diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000000..29d2f60209
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,37 @@
+## Summary
+
+*Briefly describe what this is about*
+
+
+## Branch or installer method
+
+*Please specify if you are using the current `develop` branch or which installation source you were using when the issue occurred.*
+
+ - Installer: Windows/OSX/Debian (?)
+ - Version: 0.15.1 (?)
+
+or:
+
+ - Branch: develop (?)
+
+
+## Traceback or relevant snippet from server.log
+
+```
+INSERT TRACEBACK, LOG MESSAGES ETC. HERE
+```
+
+
+## How to reproduce
+
+1. Steps
+1. To
+1. Reproduce
+
+## Screenshots
+
+*If applicable*
+
+## Real-life consequences (anything community should be aware, for instance how it affects your deployment)
+
+*If applicaple*
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000000..8ad33153d2
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,27 @@
+## Summary
+
+*Short description*
+
+## TODO
+
+If not all TODOs are marked, this PR is considered WIP (work in progress)
+
+- [ ] Have **tests** been written for the new code? If you're fixing a bug, write a regression test (or have a really good reason for not writing one... and I mean **really** good!)
+- [ ] Has documentation been written/updated?
+- [ ] New dependencies (if any) added to requirements file
+
+## Reviewer guidance
+
+*If you PR has a significant size, give the reviewer some helpful remarks*
+
+## Issues addressed
+
+List the issues solved or partly solved by the PR
+
+## Documentation
+
+*If the PR has documentation, link the file here (either .rst in your repo or if built on Read The Docs)*
+
+## Screenshots (if appropriate)
+
+*They're nice. :)*
diff --git a/.gitignore b/.gitignore
index 84d0e00a23..137bcb30c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,9 @@
# File created by Coverage
.coverage
+# PyCharm
+.idea
+
# Eclipse
.project
.pydevproject
@@ -30,6 +33,9 @@ static-updates
# MAC stuff
.DS_Store
+# oh-my-zsh
+.venv
+
# SQLite files (should probably specify the path)
*.db
*.sqlite*
@@ -38,12 +44,20 @@ static-updates
*.patch
*.pid
*.prof
+secretkey.txt
# Python compiling
*.pyc
*.pyo
+
+# Backup files
*~
+
+# Sublime editor
*.sublime-*
+
+# Ignore all .zip files!? No comment?? Needs fixing, I guess it's to avoid
+# committing local assessment items.
*.zip
# Documentation
@@ -53,6 +67,16 @@ docs/images/*
# oh-my-zsh convention for automatically
# switching on a venv
.venv
+venv/
+
+# Ignore built javascript files
+/kalite/*/static/js/*/bundles
+
+# Ignore changes to Perseus and Khan Exercises that do not come from intentional edits
+/kalite/distributed/static/js/distributed/perseus
+
+# Ignore file used to store queued video download info.
+videos_to_download.json
# Lacks documentation
locale/
diff --git a/.jshintignore b/.jshintignore
new file mode 100644
index 0000000000..21b6e83bf4
--- /dev/null
+++ b/.jshintignore
@@ -0,0 +1,8 @@
+**/*.handlebars
+**/*.less
+**/*.css
+kalite/distributed/static/js/distributed/base/backbone-tastypie.js
+kalite/distributed/static/js/distributed/perseus/**/*
+kalite/*/static/js/*/bundles/*
+static-libraries/**
+kalite/i18n/static/js/i18n
\ No newline at end of file
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000000..271a6d46a0
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,5 @@
+{
+ "sub": true,
+ "browserify": true,
+ "browser": true
+}
\ No newline at end of file
diff --git a/Gruntfile.js b/Gruntfile.js
deleted file mode 100644
index 3837fd86f1..0000000000
--- a/Gruntfile.js
+++ /dev/null
@@ -1,63 +0,0 @@
-module.exports = function(grunt) {
-
- // Project configuration.
- grunt.initConfig({
- pkg: grunt.file.readJSON('package.json'), //To read the values of the package.json file
-
- jshint: {
- files: [
- 'Gruntfile.js',
- 'kalite/coachreports/static/js/coachreports/',
- 'kalite/control_panel/static/js/control_panel/',
- 'kalite/distributed/static/js/distributed/',
- 'kalite/updates/static/js/updates/',
- 'python-packages/securesync/static/js/securesync/'
- ],
- // http://www.jshint.com/docs/options/
- options: {
- "-W041": false, // Use '===' to compare with ''.
- "-W047": false, // A trailing decimal point can be confused with a dot
-
- // Enforcing options
- bitwise: true, // Unexpected use of '&'.
- //curly: true, // Expected '{' and instead saw 'variable'.
- //eqeqeq: true, // Expected '===' and instead saw '=='.
- es3: true, // 'feature' is available in ECMAScript > 3
- //forin: true, // The body of a for in should be wrapped in an if statement to filter unwanted properties from the prototype.
- freeze: true, // Extending prototype of native object: 'Object'.
- immed: true, // Function declarations are not invocable. Wrap the whole function invocation in parens.
- latedef: 'nofunc', // 'variable' was used before it was defined.
- noarg: true, // Avoid arguments.callee.
- noempty: true, // Empty block.
- nonbsp: true, // "non-breaking whitespace" character
- nonew: true, // Do not use 'new' for side effects.
- //undef: true, // 'variable' is not defined.
- //unused: "vars", // 'variable' is defined but never used.
- //strict: true, // Missing "use strict" statement.
- trailing: true, // Trailing whitespace.
-
- // Relaxing options
- shadow: true, // 'variable' is already defined.
- sub: true, // ['property'] is better written in dot notation.
-
- // Environments
- browser: true,
- jquery: true,
- globals: {
- '_': true,
- Exercises: true,
- Khan: true,
- gettext: true,
- sprintf: true
- }
- }
- }
- });
-
- // Load the plugin that provides the "jshint" task.
- grunt.loadNpmTasks('grunt-contrib-jshint');
-
- // Default task(s).
- grunt.registerTask('default', ['jshint']);
-
-};
diff --git a/MANIFEST.in.dist b/MANIFEST.in.dist
index 7263950694..d5301d9838 100644
--- a/MANIFEST.in.dist
+++ b/MANIFEST.in.dist
@@ -3,22 +3,35 @@
include kalitectl.py
include LICENSE
-include README.md
+include README.rst
include setup.cfg
include requirements.txt
-recursive-include kalite *.html *.txt *.png *.js *.css *.gif *.less *.mo *.po *.otf *.svg *.woff *.eot *.ttf *.zip *.json *.handlebars
+recursive-include kalite *.html *.txt *.png *.js *.css *.gif *.less *.otf *.svg *.woff *.eot *.ttf *.zip *.json *.handlebars
-recursive-exclude kalite/static *
+# Get the empty DBs -- make sure they are properly generated!
+recursive-exclude kalite/database *
+recursive-include kalite/database/templates *sqlite
+recursive-include kalite/database/templates/content_items *sqlite
-exclude kalite/local_settings.py
-exclude kalite/settings/local_settings.py
-exclude kalite/private_key.pem
-exclude kalite/secrets.py
+# This can be a huge problem when creating an sdist from
+# a local development environment
+recursive-exclude kalite/static *
# Data files, these are not picked up by sdist unless listed here
recursive-include python-packages *
recursive-include static-libraries *
+
+# There are still a couple of files left here, however main part is for build
+# process
recursive-include data *
+recursive-exclude data/khan *
+# Necessary because it's a data directory so they
+# do not get automatically excluded
recursive-exclude python-packages *pyc
+
+# Docs
+recursive-include docs/_build/html *
+include docs/kalite.1.gz
+
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000..b0a1f78f41
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,113 @@
+.PHONY: clean-pyc clean-build docs clean
+
+help:
+ @echo "clean - remove all build, test, coverage and Python artifacts"
+ @echo "clean-build - remove build artifacts"
+ @echo "clean-pyc - remove Python file artifacts"
+ @echo "clean-test - remove test and coverage artifacts"
+ @echo "lint - check style with pep8"
+ @echo "test - run tests the default Python"
+ @echo "test-bdd - run BDD tests only"
+ @echo "test-nobdd - run non-BDD tests only"
+ @echo "assets - build all JS/CSS assets"
+ @echo "coverage - check code coverage quickly with the default Python"
+ @echo "docs - generate Sphinx HTML documentation, including API docs"
+ @echo "release - package and upload a release, options: format=[gztar,zip]"
+ @echo "dist - package locally, options: format=[gztar,zip]"
+ @echo "install - install the package to the active Python's site-packages"
+
+# used for release and dist targets
+format?=gztar
+
+clean: clean-build clean-pyc clean-test
+
+clean-dev-db:
+ rm -f kalite/database/data.sqlite
+
+clean-build:
+ rm -fr build/
+ rm -fr dist/
+ rm -fr .eggs/
+ rm -fr dist-packages/
+ rm -fr dist-packages-temp/
+ rm -fr kalite/database/templates
+ find . -name '*.egg-info' -exec rm -fr {} +
+ find . -name '*.egg' -exec rm -f {} +
+
+clean-pyc:
+ find . -name '*.pyc' -exec rm -f {} +
+ find . -name '*.pyo' -exec rm -f {} +
+ find . -name '*~' -exec rm -f {} +
+ find . -name '__pycache__' -exec rm -fr {} +
+
+clean-test:
+ rm -fr .tox/
+ rm -f .coverage
+ rm -fr htmlcov/
+
+lint:
+ pep8 kalite
+ jshint kalite/*/static/js/*/
+
+test:
+ bin/kalite manage test --bdd-only
+
+test-bdd: docs
+ bin/kalite manage test --bdd-only
+
+test-nobdd:
+ bin/kalite manage test --no-bdd
+
+test-all:
+ @echo "Not supported yet"
+ # tox
+
+coverage:
+ coverage run --source kalite kalitectl.py test
+ coverage report -m
+
+coverage-bdd:
+ coverage run --source kalite kalitectl.py test --bdd-only
+ coverage report -m
+
+coverage-nobdd:
+ coverage run --source kalite kalitectl.py test --no-bdd
+ coverage report -m
+
+docs:
+ # rm -f docs/ka-lite.rst
+ # rm -f docs/modules.rst
+ # sphinx-apidoc -o docs/ ka-lite-gtk
+ $(MAKE) -C docs clean
+ $(MAKE) -C docs html
+ # open docs/_build/html/index.html
+
+
+# Runs separately from the docs command for now because of Windows issues
+man:
+ cli2man bin/kalite -o docs/kalite.1.gz
+
+assets:
+ # Necessary because NPM may have wrong versions in the cache
+ npm cache clean
+ npm install --production
+ node build.js
+ bin/kalite manage compileymltojson
+ bin/kalite manage syncdb --noinput
+ bin/kalite manage migrate
+ mkdir -p kalite/database/templates/
+ cp kalite/database/data.sqlite kalite/database/templates/
+ bin/kalite manage retrievecontentpack download en --minimal --foreground --template
+
+release: dist man
+ ls -l dist
+ echo "uploading above to PyPi, using twine"
+ twine upload -s dist/*
+
+dist: clean clean-dev-db docs assets
+ python setup.py sdist --formats=$(format)
+ python setup.py sdist --formats=$(format) --static
+ ls -l dist
+
+install: clean
+ python setup.py install
diff --git a/README.md b/README.md
deleted file mode 100644
index 7223a2264a..0000000000
--- a/README.md
+++ /dev/null
@@ -1,35 +0,0 @@
-[Khan Academy](http://www.khanacademy.org/)'s core mission is to "provide a free world-class education for anyone anywhere", and as [70% of the world's population is without access to the internet](http://en.wikipedia.org/wiki/Global_Internet_usage), primarily in the developing world, providing an alternative delivery mechanism for Khan Academy content is key to fulfilling this mission.
-
-[KA Lite](http://kalite.learningequality.org/) is a lightweight [Django](https://www.djangoproject.com/) web app for serving core Khan Academy content (videos and exercises) from a local server, with points and progress-tracking, without needing internet connectivity.
-
-#### Primary use cases include:
-* For servers/**computer labs located in remote schools**, which could be slowly syncing with a central server over a cell/satellite network or via USB keys.
-* In **correctional facilities** and other environments where providing educational materials is of value, but users cannot be given general internet access.
-* **Mobile school "vans"**, which transport a server and multiple laptops/tablets between a number of schools (or orphanages, community centers, etc) in remote communities on a rotating basis, and syncing up with a central database (to download new content and upload analytics) when in an area with internet connectivity.
-
-#### We would love for you to get involved!
-* **Learn how you can contribute code on our [KA Lite GitHub Wiki](https://github.com/learningequality/ka-lite/wiki)**
-* **Report bugs by [creating issues](https://github.com/learningequality/ka-lite/wiki/Report-Bugs-by-Creating-Issues)**
-* **Read more about the project's motivation** at ["Introducing KA Lite, an offline version of Khan Academy"](http://jamiealexandre.com/blog/2012/12/12/ka-lite-offline-khan-academy/).
-
-
-Official website: http://kalite.learningequality.org/
-
----
-
-#### Documentation
-
-* Instructions for installation: [See: INSTALL.md](INSTALL.md)
-* Further documentation: [See: our wiki](https://github.com/learningequality/ka-lite/wiki)
-
----
-
-#### License information:
-
-The KA Lite sourcecode itself is open-source [MIT licensed](http://opensource.org/licenses/MIT), and the other included software and content is licensed as described in the [LICENSE](https://raw.github.com/learningequality/ka-lite/master/LICENSE) file. Please note that KA Lite is not officially affiliated with, nor maintained by, Khan Academy, but rather makes use of Khan Academy's open API and Creative Commons content, which may only be used for non-commercial purposes.
-
-#### Badges
-
-[![Build Status](https://travis-ci.org/learningequality/ka-lite.png?branch=master)](https://travis-ci.org/learningequality/ka-lite)
-[![Coverage Status](https://coveralls.io/repos/learningequality/ka-lite/badge.svg)](https://coveralls.io/r/learningequality/ka-lite)
-
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000000..ea78405938
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,70 @@
+KA Lite
+=======
+
+by `Foundation for Learning Equality `__
+
+|Build Status| |Coverage Status| |Docs|
+
+.. |Build Status| image:: https://circleci.com/gh/learningequality/ka-lite/tree/develop.svg?style=svg
+ :target: https://circleci.com/gh/learningequality/ka-lite/tree/develop
+
+.. |Coverage Status| image:: https://coveralls.io/repos/learningequality/ka-lite/badge.svg
+ :target: https://coveralls.io/r/learningequality/ka-lite
+
+.. |Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat
+ :target: http://ka-lite.readthedocs.org/
+
+`Khan Academy `__'s core mission is to
+"provide a free world-class education for anyone anywhere", and as `70%
+of the world's population is without access to the
+internet `__,
+primarily in the developing world, providing an alternative delivery
+mechanism for Khan Academy content is key to fulfilling this mission.
+
+`KA Lite `__ is a lightweight
+`Django `__ web app for serving core
+Khan Academy content (videos and exercises) from a local server, with
+points and progress-tracking, without needing internet connectivity.
+
+Primary use cases include:
+--------------------------
+
+- For servers/\ **computer labs located in remote schools**, which
+ could be slowly syncing with a central server over a cell/satellite
+ network or via USB keys.
+- In **correctional facilities** and other environments where providing
+ educational materials is of value, but users cannot be given general
+ internet access.
+- **Mobile school "vans"**, which transport a server and multiple
+ laptops/tablets between a number of schools (or orphanages, community
+ centers, etc) in remote communities on a rotating basis, and syncing
+ up with a central database (to download new content and upload
+ analytics) when in an area with internet connectivity.
+
+We would love for you to get involved!
+--------------------------------------
+
+- Learn how you can contribute code on our `KA Lite GitHub Wiki `__
+- Report bugs by `creating issues `__
+- Read more about the project's motivation at `Introducing KA Lite, an offline version of Khan
+ Academy `__.
+
+Contact Us
+^^^^^^^^^^
+
+Tell us about your project and experiences!
+
+- Email: info@learningequality.org
+- Add your project to the map: https://learningequality.org/ka-lite/map/
+
+License information
+-------------------
+
+The KA Lite sourcecode itself is open-source `MIT
+licensed `__, and the other included
+software and content is licensed as described in the
+`LICENSE `__
+file. Please note that KA Lite is not officially affiliated with, nor
+maintained by, Khan Academy, but rather makes use of Khan Academy's open
+API and Creative Commons content, which may only be used for
+non-commercial purposes.
diff --git a/build.js b/build.js
new file mode 100644
index 0000000000..b59d681521
--- /dev/null
+++ b/build.js
@@ -0,0 +1,198 @@
+var browserify = require('browserify');
+var lessify = require('node-lessify');
+var hbsfy = require("hbsfy")
+var deamdify = require("./javascript_build/deamdify");
+var fs = require("fs");
+var _ = require("underscore");
+var hintify = require("hintify");
+var colors = require("colors");
+var async = require("async");
+
+var watch = false;
+var debug = false;
+var staticfiles = false;
+
+if (process.argv.indexOf("--watch") > -1 || process.argv.indexOf("-w") > -1) {
+ watch = true;
+}
+
+if (process.argv.indexOf("--debug") > -1 || process.argv.indexOf("-d") > -1) {
+ debug = true;
+}
+
+if (process.argv.indexOf("--staticfiles") > -1 || process.argv.indexOf("-s") > -1) {
+ staticfiles = true;
+}
+
+var log = function(msg, color) {
+ console.log(color("Watchify: " + msg));
+}
+
+logging = {
+ warn: function(msg) {
+ log(msg, colors.yellow);
+ },
+
+ info: function(msg) {
+ log(msg, colors.green);
+ },
+
+ error: function(msg) {
+ log(msg, colors.red);
+ }
+};
+
+var format_jshint = function(error) {
+ return error.severity + ": in " + error.file + ", " + error.message + " line: " + error.line + " col: " + error.column;
+}
+
+var create_bundles = function (b, bundles) {
+ b.plugin('factor-bundle', { outputs: _.map(bundles, function(item) {return item.target_file;}) });
+
+ // Don't use minifyify except in production.
+ if (!debug) {
+ b.plugin('minifyify', {map: false});
+ }
+ try {
+ b.bundle(function(err, buf){
+ if (err) {
+ logging.error(err);
+ } else {
+ fs.createWriteStream('kalite' + (staticfiles ? '' : '/distributed') + '/static/js/distributed/bundles/bundle_common.js').write(buf);
+ logging.info(bundles.length + " Bundles written.");
+ }
+ });
+ }
+ catch (err) {
+ logging.error(err);
+ }
+}
+
+fs.readdir("kalite", function(err, filenames) {
+ var bundles = [];
+ var module_paths = [];
+ for (var i = 0; i < filenames.length; i++) {
+ var module_path = "kalite/" + filenames[i] + "/static/js/" + filenames[i];
+ if (fs.existsSync(module_path)) {
+ module_paths.push(module_path);
+ }
+ var bundle_path = "kalite/" + filenames[i] + "/static/js/" + filenames[i] + "/bundle_modules";
+ if (fs.existsSync(bundle_path)) {
+ var dir_bundles = fs.readdirSync(bundle_path);
+ for (var j = 0; j < dir_bundles.length; j++) {
+ bundles.push({
+ target_file: "kalite" + (staticfiles ? '' : "/" + filenames[i]) + "/static/js/" + filenames[i] + "/bundles/" + "bundle_" + dir_bundles[j],
+ bundle: bundle_path + "/" + dir_bundles[j],
+ alias: dir_bundles[j].split(".").slice(0,-1).join(".")
+ });
+ }
+ if (dir_bundles.length > 0) {
+ if (!fs.existsSync("kalite" + (staticfiles ? '' : "/" + filenames[i]) + "/static/js/" + filenames[i] + "/bundles")) {
+ fs.mkdirSync("kalite" + (staticfiles ? '' : "/" + filenames[i]) + "/static/js/" + filenames[i] + "/bundles");
+ }
+ }
+ }
+ }
+
+ logging.info("Found " + bundles.length + " bundle" + (bundles.length !== 1 ? "s" : "") + ", compiling.");
+
+ if (!fs.existsSync('kalite' + (staticfiles ? '' : '/distributed') + '/static/js/distributed/bundles/')) {
+ fs.mkdirSync('kalite' + (staticfiles ? '' : '/distributed') + '/static/js/distributed/bundles/');
+ }
+
+ var b = browserify({
+ paths: module_paths,
+ cache: {},
+ packageCache: {},
+ debug: true,
+ });
+
+ // Special transform to turn all Khan Exercise utils files into CommonJS modules using deamdify
+
+
+
+ var kalite_utils_dir = "kalite/distributed/static/js/distributed/perseus/ke/utils";
+
+ if (!fs.existsSync(kalite_utils_dir + "/../backuputils")) {
+
+ // Assume if the backup exists then we don't need to do this
+
+ logging.warn("DeAMDifying Khan Exercise Util Files");
+
+ var util_files = fs.readdirSync(kalite_utils_dir);
+
+ if (!staticfiles) {
+
+ fs.mkdirSync(kalite_utils_dir + "/../backuputils");
+
+ }
+
+ util_files = _.map(util_files, function(file_name){
+ return {
+ target_file: "kalite" + (staticfiles ? '' : '/distributed') + "/static/js/distributed/perseus/ke/utils" + "/" + file_name,
+ bundle: kalite_utils_dir + "/" + file_name,
+ alias: "khan_utils_" + file_name.split(".").slice(0,-1).join("."),
+ backup_file: kalite_utils_dir + "/../backuputils/" + file_name
+ };});
+
+ var redefine = function(err) {
+ if (!err) {
+ async.each(util_files, function(item, callback) {
+ var brow = browserify(staticfiles ? item.bundle : item.backup_file);
+ brow.transform(deamdify);
+ brow.plugin('minifyify', {map: false});
+ var out = brow.bundle()
+ out.pipe(fs.createWriteStream(item.target_file));
+ logging.info("Writing " + item.alias);
+ out.on('end', callback);
+ });
+ } else {
+ logging.error(err);
+ }
+ }
+
+ if (!staticfiles) {
+ async.each(util_files, function(item, callback) {
+ var out = fs.createReadStream(item.bundle)
+ out.pipe(fs.createWriteStream(item.backup_file));
+ out.on('end', callback);
+ }, redefine);
+ } else {
+ redefine();
+ }
+
+ } else {
+ logging.warn("Assuming that Khan Util files are already deAMDified");
+ }
+
+
+ _.each(bundles, function(item) {b.add(item.bundle, {expose: item.alias});})
+
+ // Run jshint first to avoid unnecessary errors due to Syntax.
+ b.transform(hintify);
+ b.transform(hbsfy);
+
+ b.transform(deamdify);
+ b.transform(lessify, {global: true});
+
+ if (watch) {
+ var watchify = require("watchify");
+ b = watchify(b, {
+ verbose: true
+ });
+ logging.info("Starting watcher");
+ b.on('update', function (ids) {
+ logging.info('files changed, bundle updated');
+ _.each(ids, function(id) {logging.info(id + " changed");});
+ create_bundles(b, bundles);
+ });
+ }
+
+ b.on('log', logging.info);
+ b.on('error', function(error) {
+ logging.error(error);
+ this.emit("end");
+ });
+
+ create_bundles(b, bundles);
+});
\ No newline at end of file
diff --git a/circle.yml b/circle.yml
index 913fe6591f..6588cb8970 100644
--- a/circle.yml
+++ b/circle.yml
@@ -3,17 +3,32 @@ machine:
version: 2.7.9
dependencies:
+ cache_directories:
+ - "content"
+ - "data"
+ - "sc-latest-linux"
override:
- - pip install -r requirements_test.txt
+ - pip install -r requirements_sphinx.txt
- pip install -e .
- - npm install
- - npm install -g grunt-cli
+ # This cannot be done because pip on Circle doesn't understand our sdist
+ # - make sdist
+ # - pip install dist/ka-lite-"$(python setup.py --version)".tar.gz
+ post:
+ - if [[ ! -e sc-latest-linux/bin/sc ]]; then wget https://saucelabs.com/downloads/sc-latest-linux.tar.gz && tar -xzf sc-latest-linux.tar.gz && mv sc-*-linux sc-latest-linux; fi
test:
override:
+ - make assets
- kalite start --traceback -v2
- kalite status
- kalite stop --traceback -v2
- - case $CIRCLE_NODE_INDEX in 0) kalite manage test --bdd-only ;; 1) kalite manage test --no-bdd;; esac:
+ - cd sc-*-linux && ./bin/sc -u $SAUCE_USERNAME -k $SAUCE_ACCESS_KEY --tunnel-identifier $CIRCLE_BUILD_NUM-$CIRCLE_NODE_INDEX --readyfile ~/sauce_is_ready > sc_output.txt 2>&1:
+ background: true
+ - while [ ! -e ~/sauce_is_ready ]; do sleep 1; done
+ - case $CIRCLE_NODE_INDEX in 0) make test-bdd ;; 1) make test-nobdd;; esac:
parallel: true
- - grunt jshint
\ No newline at end of file
+ # TODO: replace below with "make lint" when we're pep8
+ - npm install -g jshint
+ - jshint kalite/*/static/js/*/
+ post:
+ - killall --wait sc # wait for Sauce Connect to close the tunnel
diff --git a/data/khan/channel_data.json b/data/khan/channel_data.json
deleted file mode 100644
index a6eb028daa..0000000000
--- a/data/khan/channel_data.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "channel_name": "KA Lite",
- "head_line": "A free world-class education for anyone anywhere.",
- "tag_line": "KA Lite is a light-weight web server for viewing and interacting with core Khan Academy content (videos and exercises) without needing an Internet connection.",
- "channel_license": "CC-BY-NC-SA",
- "footer_text": "Videos © 2015 Khan Academy (Creative Commons) // Exercises © 2015 Khan Academy"
-}
diff --git a/data/khan/contents.json b/data/khan/contents.json
deleted file mode 100644
index cef824cf2a..0000000000
--- a/data/khan/contents.json
+++ /dev/null
@@ -1 +0,0 @@
-{"C-2Ln0pK3kY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C-2Ln0pK3kY.mp4/C-2Ln0pK3kY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C-2Ln0pK3kY.mp4/C-2Ln0pK3kY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C-2Ln0pK3kY.m3u8/C-2Ln0pK3kY.m3u8"}, "path": "khan/math/algebra2/complex-numbers-a2/complex_numbers/algebra-ii-imaginary-and-complex-numbers/", "duration": 595, "id": "C-2Ln0pK3kY", "title": "Algebra II: Imaginary and complex numbers", "format": "mp4", "description": "21-26, mostly imaginary and complex numbers", "slug": "algebra-ii-imaginary-and-complex-numbers", "kind": "Video", "video_id": "C-2Ln0pK3kY", "keywords": "algebra, complex, imaginary", "youtube_id": "C-2Ln0pK3kY", "readable_id": "algebra-ii-imaginary-and-complex-numbers"}, "ER49EweKwW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ER49EweKwW8.mp4/ER49EweKwW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ER49EweKwW8.mp4/ER49EweKwW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ER49EweKwW8.m3u8/ER49EweKwW8.m3u8"}, "duration": 699, "id": "ER49EweKwW8", "title": "Endocrine gland hormone review", "format": "mp4", "description": "Welcome to the Endocrine System. Get ready to learn about one of the most important ways that our body parts communicate! By Ryan Patton. ", "path": "khan/test-prep/nclex-rn/rn-endocrine-system/rn-the-endocrine-system/endocrine-gland-hormone-review/", "slug": "endocrine-gland-hormone-review", "kind": "Video", "video_id": "ER49EweKwW8", "keywords": "endocrine, gland, hormone", "youtube_id": "ER49EweKwW8", "readable_id": "endocrine-gland-hormone-review"}, "TEfyIsDRGCk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TEfyIsDRGCk.mp4/TEfyIsDRGCk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TEfyIsDRGCk.mp4/TEfyIsDRGCk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TEfyIsDRGCk.m3u8/TEfyIsDRGCk.m3u8"}, "duration": 259, "id": "TEfyIsDRGCk", "title": "Collateralized debt obligation overview", "format": "mp4", "description": "How CDOs can give different investors different levels of risk and returns with the same underlying assets", "path": "khan/economics-finance-domain/core-finance/derivative-securities/cdo-tutorial/collateralized-debt-obligation-overview/", "slug": "collateralized-debt-obligation-overview", "kind": "Video", "video_id": "TEfyIsDRGCk", "keywords": "credit, crisis, ratings, agency", "youtube_id": "TEfyIsDRGCk", "readable_id": "collateralized-debt-obligation-overview"}, "GW8ZPjGlk24": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GW8ZPjGlk24.mp4/GW8ZPjGlk24.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GW8ZPjGlk24.mp4/GW8ZPjGlk24.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GW8ZPjGlk24.m3u8/GW8ZPjGlk24.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/lin-alg-visualizations-of-left-nullspace-and-rowspace/", "duration": 1190, "id": "GW8ZPjGlk24", "title": "Visualizations of left nullspace and rowspace", "format": "mp4", "description": "Relationship between left nullspace, rowspace, column space and nullspace.", "slug": "lin-alg-visualizations-of-left-nullspace-and-rowspace", "kind": "Video", "video_id": "GW8ZPjGlk24", "keywords": "rowspace, left, nullspace", "youtube_id": "GW8ZPjGlk24", "readable_id": "lin-alg-visualizations-of-left-nullspace-and-rowspace"}, "ouAFk0Jy6TY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ouAFk0Jy6TY.mp4/ouAFk0Jy6TY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ouAFk0Jy6TY.mp4/ouAFk0Jy6TY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ouAFk0Jy6TY.m3u8/ouAFk0Jy6TY.m3u8"}, "duration": 194, "id": "ouAFk0Jy6TY", "title": "Fractions cut and copy 2 exercise example", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/fractions-cut-and-copy-2-exercise-example/", "slug": "fractions-cut-and-copy-2-exercise-example", "kind": "Video", "video_id": "ouAFk0Jy6TY", "keywords": "", "youtube_id": "ouAFk0Jy6TY", "readable_id": "fractions-cut-and-copy-2-exercise-example"}, "yyM0yIOJ2yE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yyM0yIOJ2yE.mp4/yyM0yIOJ2yE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yyM0yIOJ2yE.mp4/yyM0yIOJ2yE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yyM0yIOJ2yE.m3u8/yyM0yIOJ2yE.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/extranuclear-inheritance-1/", "duration": 468, "id": "yyM0yIOJ2yE", "title": "Extranuclear inheritance 1", "format": "mp4", "description": "", "slug": "extranuclear-inheritance-1", "kind": "Video", "video_id": "yyM0yIOJ2yE", "keywords": "", "youtube_id": "yyM0yIOJ2yE", "readable_id": "extranuclear-inheritance-1"}, "MNUVuZu6heA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MNUVuZu6heA.mp4/MNUVuZu6heA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MNUVuZu6heA.mp4/MNUVuZu6heA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MNUVuZu6heA.m3u8/MNUVuZu6heA.m3u8"}, "duration": 288, "id": "MNUVuZu6heA", "title": "Financial weapons of mass destruction", "format": "mp4", "description": "Why Warren Buffett called Credit Default Swaps financial weapons of mass destruction", "path": "khan/economics-finance-domain/core-finance/derivative-securities/credit-default-swaps-tut/financial-weapons-of-mass-destruction/", "slug": "financial-weapons-of-mass-destruction", "kind": "Video", "video_id": "MNUVuZu6heA", "keywords": "finance, cds", "youtube_id": "MNUVuZu6heA", "readable_id": "financial-weapons-of-mass-destruction"}, "W2NnNKtquaE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W2NnNKtquaE.mp4/W2NnNKtquaE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W2NnNKtquaE.mp4/W2NnNKtquaE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W2NnNKtquaE.m3u8/W2NnNKtquaE.m3u8"}, "duration": 279, "id": "W2NnNKtquaE", "title": "Geometric sequence or progression", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-sequences/geometric-sequence/", "slug": "geometric-sequence", "kind": "Video", "video_id": "W2NnNKtquaE", "keywords": "", "youtube_id": "W2NnNKtquaE", "readable_id": "geometric-sequence"}, "P6PEf9WtEvs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P6PEf9WtEvs.mp4/P6PEf9WtEvs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P6PEf9WtEvs.mp4/P6PEf9WtEvs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P6PEf9WtEvs.m3u8/P6PEf9WtEvs.m3u8"}, "duration": 197, "id": "P6PEf9WtEvs", "title": "Maslow's hierarchy of needs", "format": "mp4", "description": "Abraham Maslow's Hierarchy of Needs is a basic psychology concept in understanding the Humanistic approach to personality and behaviors. By Shreena Desai. ", "path": "khan/test-prep/mcat/behavior/theories-personality/maslow-hierarchy-of-needs/", "slug": "maslow-hierarchy-of-needs", "kind": "Video", "video_id": "P6PEf9WtEvs", "keywords": "needs, maslow", "youtube_id": "P6PEf9WtEvs", "readable_id": "maslow-hierarchy-of-needs"}, "we6uSVf4qss": {"download_urls": {}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/gricean-pragmatics/", "duration": 815, "id": "we6uSVf4qss", "title": "Language: Gricean Pragmatics", "format": "mp4", "description": "Karen explores the relationship between language and communication, looking at the question of how it is that people regularly use words to communicate more than their literal meanings.\u00a0 This video introduces us to the most philosophically influential theory on this matter, H.P. Grice\u2019s theory of pragmatics.\n\nSpeaker: Dr. Karen Lewis, Barnard College, Columbia University", "slug": "gricean-pragmatics", "kind": "Video", "video_id": "we6uSVf4qss", "keywords": "", "youtube_id": "we6uSVf4qss", "readable_id": "gricean-pragmatics"}, "PywR3Pn7ZlU": {"download_urls": {}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/ny-school/ad-reinhardt-abstract-painting-1963/", "duration": 275, "id": "PywR3Pn7ZlU", "title": "Ad Reinhardt, Abstract Painting", "format": "mp4", "description": "Ad Reinhardt, Abstract Painting, 1963, oil on canvas, 60 x 60 inches (The Museum of Modern Art) Speakers: Salman Khan & Steven Zucker", "slug": "ad-reinhardt-abstract-painting-1963", "kind": "Video", "video_id": "PywR3Pn7ZlU", "keywords": "", "youtube_id": "PywR3Pn7ZlU", "readable_id": "ad-reinhardt-abstract-painting-1963"}, "Osl6HEDZZ-E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Osl6HEDZZ-E.mp4/Osl6HEDZZ-E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Osl6HEDZZ-E.mp4/Osl6HEDZZ-E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Osl6HEDZZ-E.m3u8/Osl6HEDZZ-E.m3u8"}, "duration": 303, "id": "Osl6HEDZZ-E", "title": "Ideal gas equation example 4", "format": "mp4", "description": "Figuring out the molar mass of a mystery molecule at STP.", "path": "khan/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws/ideal-gas-example-4/", "slug": "ideal-gas-example-4", "kind": "Video", "video_id": "Osl6HEDZZ-E", "keywords": "molar, mass, ideal, gas, equation", "youtube_id": "Osl6HEDZZ-E", "readable_id": "ideal-gas-example-4"}, "WNuIhXo39_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WNuIhXo39_k.mp4/WNuIhXo39_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WNuIhXo39_k.mp4/WNuIhXo39_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WNuIhXo39_k.m3u8/WNuIhXo39_k.m3u8"}, "duration": 550, "id": "WNuIhXo39_k", "title": "Vector dot product and vector length", "format": "mp4", "description": "Definitions of the vector dot product and vector length", "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/vector-dot-product-and-vector-length/", "slug": "vector-dot-product-and-vector-length", "kind": "Video", "video_id": "WNuIhXo39_k", "keywords": "vector, dot, product, length", "youtube_id": "WNuIhXo39_k", "readable_id": "vector-dot-product-and-vector-length"}, "TbaltFbJ3wE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TbaltFbJ3wE.mp4/TbaltFbJ3wE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TbaltFbJ3wE.mp4/TbaltFbJ3wE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TbaltFbJ3wE.m3u8/TbaltFbJ3wE.m3u8"}, "duration": 138, "id": "TbaltFbJ3wE", "title": "Scalar multiplication", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/scalar-multiplication/", "slug": "scalar-multiplication", "kind": "Video", "video_id": "TbaltFbJ3wE", "keywords": "", "youtube_id": "TbaltFbJ3wE", "readable_id": "scalar-multiplication"}, "CGrbnripinU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CGrbnripinU.mp4/CGrbnripinU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CGrbnripinU.mp4/CGrbnripinU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CGrbnripinU.m3u8/CGrbnripinU.m3u8"}, "duration": 634, "id": "CGrbnripinU", "title": "Colon dysplasia", "format": "mp4", "description": "Dr. Andy Connolly shows Sal what cancerous colon tissue looks like", "path": "khan/science/health-and-medicine/healthcare-misc/colon-dysplasia/", "slug": "colon-dysplasia", "kind": "Video", "video_id": "CGrbnripinU", "keywords": "medicine, pahtology, cancer, histology, colon", "youtube_id": "CGrbnripinU", "readable_id": "colon-dysplasia"}, "-IDmLERenrU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-IDmLERenrU.mp4/-IDmLERenrU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-IDmLERenrU.mp4/-IDmLERenrU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-IDmLERenrU.m3u8/-IDmLERenrU.m3u8"}, "duration": 572, "id": "-IDmLERenrU", "title": "Shorting stock", "format": "mp4", "description": "What does it mean to short a stock?", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/shorting-stock/shorting-stock/", "slug": "shorting-stock", "kind": "Video", "video_id": "-IDmLERenrU", "keywords": "finance, short, sale, stock, market", "youtube_id": "-IDmLERenrU", "readable_id": "shorting-stock"}, "z45UEiPaE8c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z45UEiPaE8c.mp4/z45UEiPaE8c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z45UEiPaE8c.mp4/z45UEiPaE8c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z45UEiPaE8c.m3u8/z45UEiPaE8c.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/recognizing-functions-example-5/", "duration": 203, "id": "z45UEiPaE8c", "title": "Recognize functions from verbal descriptions (example 2)", "format": "mp4", "description": "", "slug": "recognizing-functions-example-5", "kind": "Video", "video_id": "z45UEiPaE8c", "keywords": "", "youtube_id": "z45UEiPaE8c", "readable_id": "recognizing-functions-example-5"}, "QkepM8Vv3kw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QkepM8Vv3kw.mp4/QkepM8Vv3kw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QkepM8Vv3kw.mp4/QkepM8Vv3kw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QkepM8Vv3kw.m3u8/QkepM8Vv3kw.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/linear-algebra-another-least-squares-example/", "duration": 805, "id": "QkepM8Vv3kw", "title": "Another least squares example", "format": "mp4", "description": "Using least squares approximation to fit a line to points", "slug": "linear-algebra-another-least-squares-example", "kind": "Video", "video_id": "QkepM8Vv3kw", "keywords": "least, squares, approximation, solution", "youtube_id": "QkepM8Vv3kw", "readable_id": "linear-algebra-another-least-squares-example"}, "XaJQse2u5TQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XaJQse2u5TQ.mp4/XaJQse2u5TQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XaJQse2u5TQ.mp4/XaJQse2u5TQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XaJQse2u5TQ.m3u8/XaJQse2u5TQ.m3u8"}, "duration": 246, "id": "XaJQse2u5TQ", "title": "Conceptual understanding of multiplying fractions and whole numbers", "format": "mp4", "description": "Here we have a nice visual explanation of how a mixed number is really a multiplication of a fraction and a whole number.", "path": "concept-whole-fraction-mult/", "slug": "concept-whole-fraction-mult", "kind": "Video", "video_id": "XaJQse2u5TQ", "keywords": "", "youtube_id": "XaJQse2u5TQ", "readable_id": "concept-whole-fraction-mult"}, "kGrk6V8tWDY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kGrk6V8tWDY.mp4/kGrk6V8tWDY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kGrk6V8tWDY.mp4/kGrk6V8tWDY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kGrk6V8tWDY.m3u8/kGrk6V8tWDY.m3u8"}, "duration": 613, "id": "kGrk6V8tWDY", "title": "Doppler effect formula for observed frequency", "format": "mp4", "description": "Doppler effect formula for observed frequency", "path": "khan/test-prep/mcat/physical-processes/sound/doppler-effect-formula-for-observed-frequency/", "slug": "doppler-effect-formula-for-observed-frequency", "kind": "Video", "video_id": "kGrk6V8tWDY", "keywords": "doppler, effect, formula", "youtube_id": "kGrk6V8tWDY", "readable_id": "doppler-effect-formula-for-observed-frequency"}, "TZ5aMFpwTp8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TZ5aMFpwTp8.mp4/TZ5aMFpwTp8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TZ5aMFpwTp8.mp4/TZ5aMFpwTp8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TZ5aMFpwTp8.m3u8/TZ5aMFpwTp8.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/mars-landing/", "duration": 61, "id": "TZ5aMFpwTp8", "title": "Preparing for landing", "format": "mp4", "description": "How hard is it to land on Mars?", "slug": "mars-landing", "kind": "Video", "video_id": "TZ5aMFpwTp8", "keywords": "", "youtube_id": "TZ5aMFpwTp8", "readable_id": "mars-landing"}, "OSrvGMacWD0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OSrvGMacWD0.mp4/OSrvGMacWD0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OSrvGMacWD0.mp4/OSrvGMacWD0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OSrvGMacWD0.m3u8/OSrvGMacWD0.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2010-may-6-4/", "duration": 247, "id": "OSrvGMacWD0", "title": "4 Rate of change in water tank", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-4", "kind": "Video", "video_id": "OSrvGMacWD0", "keywords": "", "youtube_id": "OSrvGMacWD0", "readable_id": "sat-2010-may-6-4"}, "rQSclv1Ah5s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rQSclv1Ah5s.mp4/rQSclv1Ah5s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rQSclv1Ah5s.mp4/rQSclv1Ah5s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rQSclv1Ah5s.m3u8/rQSclv1Ah5s.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/ebsteins-anomoly/", "duration": 367, "id": "rQSclv1Ah5s", "title": "Ebstein's anomoly", "format": "mp4", "description": "", "slug": "ebsteins-anomoly", "kind": "Video", "video_id": "rQSclv1Ah5s", "keywords": "", "youtube_id": "rQSclv1Ah5s", "readable_id": "ebsteins-anomoly"}, "xYfTGui7vFE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xYfTGui7vFE.mp4/xYfTGui7vFE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xYfTGui7vFE.mp4/xYfTGui7vFE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xYfTGui7vFE.m3u8/xYfTGui7vFE.m3u8"}, "duration": 308, "id": "xYfTGui7vFE", "title": "Colour: Delineating shapes and capturing atmosphere", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nNow let\u2019s get the paints out and get to grips with colour. How can you capture the feeling of a sunset over the river? Although it was one of Turner\u2019s favourite subjects, painting a sunset is a tricky task, one fraught with difficulties and always bordering on clich\u00e9. Take a look at how Mark Chaplin attempts to emulate Turner\u2019s use of colour, trying to capture the emotional feeling of a scene through colour changes both subtle and bold.\u00a0", "path": "watercolour-colour/", "slug": "watercolour-colour", "kind": "Video", "video_id": "xYfTGui7vFE", "keywords": "Tate", "youtube_id": "xYfTGui7vFE", "readable_id": "watercolour-colour"}, "3Ee_huKclEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Ee_huKclEQ.mp4/3Ee_huKclEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Ee_huKclEQ.mp4/3Ee_huKclEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Ee_huKclEQ.m3u8/3Ee_huKclEQ.m3u8"}, "duration": 300, "id": "3Ee_huKclEQ", "title": "Synthetic division example 2", "format": "mp4", "description": "Another example of applying the basic synthetic division algorithm", "path": "khan/math/algebra2/polynomial_and_rational/synthetic-division/synthetic-division-example-2/", "slug": "synthetic-division-example-2", "kind": "Video", "video_id": "3Ee_huKclEQ", "keywords": "algebra, synthetic, division", "youtube_id": "3Ee_huKclEQ", "readable_id": "synthetic-division-example-2"}, "jFd-6EPfnec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jFd-6EPfnec.mp4/jFd-6EPfnec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jFd-6EPfnec.mp4/jFd-6EPfnec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jFd-6EPfnec.m3u8/jFd-6EPfnec.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/greatest_common_divisor/greatest-common-divisor/", "duration": 378, "id": "jFd-6EPfnec", "title": "Greatest common factor explained", "format": "mp4", "description": "Here's a nice explanation of least common factor (or least common divisor) along with a few practice example exercises. Let's roll.", "slug": "greatest-common-divisor", "kind": "Video", "video_id": "jFd-6EPfnec", "keywords": "math, CC_6_NS_4", "youtube_id": "jFd-6EPfnec", "readable_id": "greatest-common-divisor"}, "g7GXj5QTnJw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g7GXj5QTnJw.mp4/g7GXj5QTnJw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g7GXj5QTnJw.mp4/g7GXj5QTnJw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g7GXj5QTnJw.m3u8/g7GXj5QTnJw.m3u8"}, "duration": 607, "id": "g7GXj5QTnJw", "title": "Oxidation and reduction in metabolism", "format": "mp4", "description": "How is metabolism similar to a galvanic cell? Apply fundamental principles of electrochemistry to understand the energy harnessed from the oxidation-reduction processes of metabolism.", "path": "khan/test-prep/mcat/biomolecules/overview-metabolism/oxidation-and-reduction-in-metabolism/", "slug": "oxidation-and-reduction-in-metabolism", "kind": "Video", "video_id": "g7GXj5QTnJw", "keywords": "", "youtube_id": "g7GXj5QTnJw", "readable_id": "oxidation-and-reduction-in-metabolism"}, "gX9aKDeAOz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gX9aKDeAOz4.mp4/gX9aKDeAOz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gX9aKDeAOz4.mp4/gX9aKDeAOz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gX9aKDeAOz4.m3u8/gX9aKDeAOz4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-8-systemic-risk/", "duration": 712, "id": "gX9aKDeAOz4", "title": "Bailout 8: Systemic risk", "format": "mp4", "description": "How the banks are connected. What happens when one bank fails.", "slug": "bailout-8-systemic-risk", "kind": "Video", "video_id": "gX9aKDeAOz4", "keywords": "paulson, lehman, aig, goldman, bailout, credit, crunch, bernanke", "youtube_id": "gX9aKDeAOz4", "readable_id": "bailout-8-systemic-risk"}, "uvgBSJPiQ8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uvgBSJPiQ8Y.mp4/uvgBSJPiQ8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uvgBSJPiQ8Y.mp4/uvgBSJPiQ8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uvgBSJPiQ8Y.m3u8/uvgBSJPiQ8Y.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/brunelleschi-ghiberti-sacrifice-of-isaac-competition-panels-1401-2/", "duration": 325, "id": "uvgBSJPiQ8Y", "title": "Brunelleschi & Ghiberti, the Sacrifice of Isaac", "format": "mp4", "description": "Brunelleschi & Ghiberti, Sacrifice of Isaac, competition panels for the second set of bronze doors for the Florence Baptistery, 1401-2 Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "brunelleschi-ghiberti-sacrifice-of-isaac-competition-panels-1401-2", "kind": "Video", "video_id": "uvgBSJPiQ8Y", "keywords": "Competition Panels, brunelleschi, ghiberti, florence, baptistery, smarthistory, khan academy, sacrifice of isaac, Abraham, Isaac, renaissance, early renaissance", "youtube_id": "uvgBSJPiQ8Y", "readable_id": "brunelleschi-ghiberti-sacrifice-of-isaac-competition-panels-1401-2"}, "qwZn852brII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qwZn852brII.mp4/qwZn852brII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qwZn852brII.mp4/qwZn852brII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qwZn852brII.m3u8/qwZn852brII.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/botticelli-la-primavera-spring-1481-1482/", "duration": 287, "id": "qwZn852brII", "title": "Botticelli, Primavera", "format": "mp4", "description": "Botticelli, La Primavera (Spring), 1481-1482, tempera on panel, 80 x 123 1/2\" (203 x 314), Uffizi, Florence Speakers: Dr. Beth Harris and Dr. Steven Zucker http://khan.smarthistory.org/botticelli-primavera.html", "slug": "botticelli-la-primavera-spring-1481-1482", "kind": "Video", "video_id": "qwZn852brII", "keywords": "Botticelli Primavera Uffizi, Smarthistory, Art History", "youtube_id": "qwZn852brII", "readable_id": "botticelli-la-primavera-spring-1481-1482"}, "YeBe-yDGVnU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YeBe-yDGVnU.mp4/YeBe-yDGVnU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YeBe-yDGVnU.mp4/YeBe-yDGVnU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YeBe-yDGVnU.m3u8/YeBe-yDGVnU.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/moholy-nagy-composition-a-xx-1924/", "duration": 255, "id": "YeBe-yDGVnU", "title": "Moholy-Nagy, Composition A.XX", "format": "mp4", "description": "L\u00e1szl\u00f3 Moholy-Nagy, Composition A.XX, 1924, oil on canvas, 135.5 x 115cm (Mus\u00e9e national d'art moderne, Centre Georges Pompidou, Paris)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "moholy-nagy-composition-a-xx-1924", "kind": "Video", "video_id": "YeBe-yDGVnU", "keywords": "Suprematism, Moholy-Nagy, Art History, Smarthistory", "youtube_id": "YeBe-yDGVnU", "readable_id": "moholy-nagy-composition-a-xx-1924"}, "eSjbEWb4Qp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eSjbEWb4Qp4.mp4/eSjbEWb4Qp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eSjbEWb4Qp4.mp4/eSjbEWb4Qp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eSjbEWb4Qp4.m3u8/eSjbEWb4Qp4.m3u8"}, "duration": 142, "id": "eSjbEWb4Qp4", "title": "Constructing circumscribing circle", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/circum-in-circles/constructing-circumscribing-circle/", "slug": "constructing-circumscribing-circle", "kind": "Video", "video_id": "eSjbEWb4Qp4", "keywords": "", "youtube_id": "eSjbEWb4Qp4", "readable_id": "constructing-circumscribing-circle"}, "3tRc6mUumFk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3tRc6mUumFk.mp4/3tRc6mUumFk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3tRc6mUumFk.mp4/3tRc6mUumFk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3tRc6mUumFk.m3u8/3tRc6mUumFk.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/super-yoga/super-yoga-plans-basic-variables-and-equations/", "duration": 439, "id": "3tRc6mUumFk", "title": "Variables and equations word problem: Putting them to work for Super Yoga", "format": "mp4", "description": "Using information from the Super Yoga word problem, explore all the possible combinations and create equations which express the possibilities. Let's figure out which plan is best!", "slug": "super-yoga-plans-basic-variables-and-equations", "kind": "Video", "video_id": "3tRc6mUumFk", "keywords": "", "youtube_id": "3tRc6mUumFk", "readable_id": "super-yoga-plans-basic-variables-and-equations"}, "jd7axD_jSPo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jd7axD_jSPo.mp4/jd7axD_jSPo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jd7axD_jSPo.mp4/jd7axD_jSPo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jd7axD_jSPo.m3u8/jd7axD_jSPo.m3u8"}, "duration": 149, "id": "jd7axD_jSPo", "title": "\"Bricks\" with Sarah B. Graff", "format": "mp4", "description": "Met curator Sarah B. Graff on life force in Two Panels with striding lions from Babylon.\n\nThe Assyrian Empire fell before the combined onslaughts of Babylonians and Medes in 614 and 612 B.C. In the empire's final days, Nabopolassar (r. 625\u2013605 B.C.), who had been in Assyrian service, established a new dynasty with its capital in Babylon. During the reign of his son, Nebuchadnezzar II (r. 604\u2013562 B.C.), the Neo-Babylonian empire reached its peak. This was largely attributable to Nebuchadnezzar's ability as a statesman and general. He maintained friendly relations with the Medes in the east while vying successfully with Egypt for the control of trade on the eastern Mediterranean coast. He is well known as the biblical conqueror who deported the Jews to Babylon after the capture of Jerusalem.\u00a0During this period Babylon became the city of splendor described by Herodotus and the Old Testament Book of Daniel. Because stone is rare in southern Mesopotamia, molded glazed bricks were used for building and Babylon became a city of brilliant color. Relief figures in white, black, blue, red, and yellow decorated the city's gates and buildings.\u00a0\n\nThe most important street in Babylon was the Processional Way, leading from the inner city through the Ishtar Gate to the Bit Akitu, or \"House of the New Year's Festival.\" The Ishtar Gate, built by Nebuchadnezzar II, was a glazed-brick structure decorated with figures of bulls and dragons, symbols of the weather god Adad and of Marduk. North of the gate the roadway was lined with glazed figures of striding lions. This relief of a lion, the animal associated with Ishtar, goddess of love and war, served to protect the street; its repeated design served as a guide for the ritual processions from the city to the temple.\n\nView this work on metmuseum.org.\u00a0\u00a0\n\nAre you an educator? Here's a\u00a0related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit\u00a0Find an Educator Resource.\n", "path": "bricks/", "slug": "bricks", "kind": "Video", "video_id": "jd7axD_jSPo", "keywords": "architecture, authority, ceramic, danger, motion, sculpture, Middle East", "youtube_id": "jd7axD_jSPo", "readable_id": "bricks"}, "jyKMEANFNi0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jyKMEANFNi0.mp4/jyKMEANFNi0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jyKMEANFNi0.mp4/jyKMEANFNi0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jyKMEANFNi0.m3u8/jyKMEANFNi0.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/place_value/understanding-place-value-1-exercise/", "duration": 209, "id": "jyKMEANFNi0", "title": "Understanding place value 1 exercise", "format": "mp4", "description": "Here we have a few example exercises in which we are asked to compare place values and determine which are larger or smaller, and by what factor of ten. Let's do it together.", "slug": "understanding-place-value-1-exercise", "kind": "Video", "video_id": "jyKMEANFNi0", "keywords": "", "youtube_id": "jyKMEANFNi0", "readable_id": "understanding-place-value-1-exercise"}, "r9aTLTN16V4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r9aTLTN16V4.mp4/r9aTLTN16V4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r9aTLTN16V4.mp4/r9aTLTN16V4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r9aTLTN16V4.m3u8/r9aTLTN16V4.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_of_matrices/linear-algebra-example-of-finding-matrix-inverse/", "duration": 382, "id": "r9aTLTN16V4", "title": "Example of finding matrix inverse", "format": "mp4", "description": "Example of calculating the inverse of a matrix", "slug": "linear-algebra-example-of-finding-matrix-inverse", "kind": "Video", "video_id": "r9aTLTN16V4", "keywords": "matrix, inverse, example", "youtube_id": "r9aTLTN16V4", "readable_id": "linear-algebra-example-of-finding-matrix-inverse"}, "rFmAWQSiqRo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rFmAWQSiqRo.mp4/rFmAWQSiqRo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rFmAWQSiqRo.mp4/rFmAWQSiqRo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rFmAWQSiqRo.m3u8/rFmAWQSiqRo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/nuclear-shielding/", "duration": 622, "id": "rFmAWQSiqRo", "title": "Nuclear shielding", "format": "mp4", "description": "", "slug": "nuclear-shielding", "kind": "Video", "video_id": "rFmAWQSiqRo", "keywords": "", "youtube_id": "rFmAWQSiqRo", "readable_id": "nuclear-shielding"}, "Dqp6xOeR3Ls": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dqp6xOeR3Ls.mp4/Dqp6xOeR3Ls.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dqp6xOeR3Ls.mp4/Dqp6xOeR3Ls.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dqp6xOeR3Ls.m3u8/Dqp6xOeR3Ls.m3u8"}, "duration": 297, "id": "Dqp6xOeR3Ls", "title": "Example 3: Solving systems by elimination", "format": "mp4", "description": "Solving systems by elimination 3", "path": "solving-systems-by-elimination-3/", "slug": "solving-systems-by-elimination-3", "kind": "Video", "video_id": "Dqp6xOeR3Ls", "keywords": "U06_L1_T3_we3, Solving, systems, by, elimination, CC_8_EE_8_b, CC_8_EE_8_c, CC_39336_A-REI_6", "youtube_id": "Dqp6xOeR3Ls", "readable_id": "solving-systems-by-elimination-3"}, "nGKffdaI4Pg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nGKffdaI4Pg.mp4/nGKffdaI4Pg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nGKffdaI4Pg.mp4/nGKffdaI4Pg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nGKffdaI4Pg.m3u8/nGKffdaI4Pg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/production-of-sound/", "duration": 226, "id": "nGKffdaI4Pg", "title": "Production of sound", "format": "mp4", "description": "", "slug": "production-of-sound", "kind": "Video", "video_id": "nGKffdaI4Pg", "keywords": "", "youtube_id": "nGKffdaI4Pg", "readable_id": "production-of-sound"}, "7Wd3N8hFfDk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Wd3N8hFfDk.mp4/7Wd3N8hFfDk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Wd3N8hFfDk.mp4/7Wd3N8hFfDk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Wd3N8hFfDk.m3u8/7Wd3N8hFfDk.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-family-obstacles/", "duration": 91, "id": "7Wd3N8hFfDk", "title": "Student story: Overcoming family obstacles to college", "format": "mp4", "description": "", "slug": "ss-family-obstacles", "kind": "Video", "video_id": "7Wd3N8hFfDk", "keywords": "", "youtube_id": "7Wd3N8hFfDk", "readable_id": "ss-family-obstacles"}, "XskxuDSG7mA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XskxuDSG7mA.mp4/XskxuDSG7mA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XskxuDSG7mA.mp4/XskxuDSG7mA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XskxuDSG7mA.m3u8/XskxuDSG7mA.m3u8"}, "duration": 305, "id": "XskxuDSG7mA", "title": "Conservation of works on paper", "format": "mp4", "description": "Learn about the work of the Getty Museum's paper conservation team.\u00a0Love art? Follow us on Google+", "path": "conservation-works-on-paper/", "slug": "conservation-works-on-paper", "kind": "Video", "video_id": "XskxuDSG7mA", "keywords": "", "youtube_id": "XskxuDSG7mA", "readable_id": "conservation-works-on-paper"}, "EuwKjpUpkhs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EuwKjpUpkhs.mp4/EuwKjpUpkhs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EuwKjpUpkhs.mp4/EuwKjpUpkhs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EuwKjpUpkhs.m3u8/EuwKjpUpkhs.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/comparing-exponentials-quadratics/", "duration": 420, "id": "EuwKjpUpkhs", "title": "Comparing exponential and quadratic models", "format": "mp4", "description": "", "slug": "comparing-exponentials-quadratics", "kind": "Video", "video_id": "EuwKjpUpkhs", "keywords": "", "youtube_id": "EuwKjpUpkhs", "readable_id": "comparing-exponentials-quadratics"}, "ay8838UZ4nM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ay8838UZ4nM.mp4/ay8838UZ4nM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ay8838UZ4nM.mp4/ay8838UZ4nM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ay8838UZ4nM.m3u8/ay8838UZ4nM.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/calculus-derivatives-2/", "duration": 570, "id": "ay8838UZ4nM", "title": "Calculus: Derivatives 2", "format": "mp4", "description": "More intuition of what a derivative is. Using the derivative to find the slope at any point along f(x)=x^2", "slug": "calculus-derivatives-2", "kind": "Video", "video_id": "ay8838UZ4nM", "keywords": "derivative, calculus, math, khan, academy", "youtube_id": "ay8838UZ4nM", "readable_id": "calculus-derivatives-2"}, "_s_-J1DFXnQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_s_-J1DFXnQ.mp4/_s_-J1DFXnQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_s_-J1DFXnQ.mp4/_s_-J1DFXnQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_s_-J1DFXnQ.m3u8/_s_-J1DFXnQ.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/robert-storr-gerhard-richter-september-2009/", "duration": 1163, "id": "_s_-J1DFXnQ", "title": "Gerhard Richter, September", "format": "mp4", "description": "Robert Storr talks about Gerhard Richter's painting \"September\".\n\nhttp://www.gerhard-richter.com/art/search/detail.php?13954\n\nF\u00fcr deutsche Untertitel bitte cc anklicken.", "slug": "robert-storr-gerhard-richter-september-2009", "kind": "Video", "video_id": "_s_-J1DFXnQ", "keywords": "Gerhard, Richter, September, Robert, Storr, painting", "youtube_id": "_s_-J1DFXnQ", "readable_id": "robert-storr-gerhard-richter-september-2009"}, "PnIoffCCyBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PnIoffCCyBI.mp4/PnIoffCCyBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PnIoffCCyBI.mp4/PnIoffCCyBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PnIoffCCyBI.m3u8/PnIoffCCyBI.m3u8"}, "path": "khan/test-prep/ap-art-history/indigenous-americas/chavin-archaeological-site-unesconhk/", "duration": 176, "id": "PnIoffCCyBI", "title": "Chavin (Archaeological Site) (UNESCO/NHK)", "format": "mp4", "description": "The archaeological site of Chavin gave its name to the culture that developed between 1500 and 300 B.C. in this high valley of the Peruvian Andes. This former place of worship is one of the earliest and best-known pre-Columbian sites. Its appearance is striking, with the complex of terraces and squares, surrounded by structures of dressed stone, and the mainly zoomorphic ornamentation. Source: UNESCO TV / \u00a9 NHK Nippon Hoso Kyokai URL: http://whc.unesco.org/en/list/330/\n", "slug": "chavin-archaeological-site-unesconhk", "kind": "Video", "video_id": "PnIoffCCyBI", "keywords": "", "youtube_id": "PnIoffCCyBI", "readable_id": "chavin-archaeological-site-unesconhk"}, "ikFUv-gdNLQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ikFUv-gdNLQ.mp4/ikFUv-gdNLQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ikFUv-gdNLQ.mp4/ikFUv-gdNLQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ikFUv-gdNLQ.m3u8/ikFUv-gdNLQ.m3u8"}, "duration": 668, "id": "ikFUv-gdNLQ", "title": "Saltatory conduction in neurons", "format": "mp4", "description": "", "path": "khan/science/health-and-medicine/nervous-system-and-sensory-infor/nervous-system-introduction/saltatory-conduction-neurons/", "slug": "saltatory-conduction-neurons", "kind": "Video", "video_id": "ikFUv-gdNLQ", "keywords": "", "youtube_id": "ikFUv-gdNLQ", "readable_id": "saltatory-conduction-neurons"}, "evdORkjbVMw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/evdORkjbVMw.mp4/evdORkjbVMw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/evdORkjbVMw.mp4/evdORkjbVMw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/evdORkjbVMw.m3u8/evdORkjbVMw.m3u8"}, "duration": 162, "id": "evdORkjbVMw", "title": "Khan Academy's Discovery Lab - Summer 2013", "format": "mp4", "description": "Khan Academy ran a hands-on, project-based learning summer program in 2013. We (and the students) had a lot of fun!\u00a0", "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-overview/", "slug": "discovery-lab-overview", "kind": "Video", "video_id": "evdORkjbVMw", "keywords": "", "youtube_id": "evdORkjbVMw", "readable_id": "discovery-lab-overview"}, "Yh4TXMVq9eg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yh4TXMVq9eg.mp4/Yh4TXMVq9eg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yh4TXMVq9eg.mp4/Yh4TXMVq9eg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yh4TXMVq9eg.m3u8/Yh4TXMVq9eg.m3u8"}, "duration": 310, "id": "Yh4TXMVq9eg", "title": "Testing solutions to inequalities", "format": "mp4", "description": "", "path": "testing-solutions-to-inequalities/", "slug": "testing-solutions-to-inequalities", "kind": "Video", "video_id": "Yh4TXMVq9eg", "keywords": "", "youtube_id": "Yh4TXMVq9eg", "readable_id": "testing-solutions-to-inequalities"}, "P6_sK8hRWCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P6_sK8hRWCA.mp4/P6_sK8hRWCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P6_sK8hRWCA.mp4/P6_sK8hRWCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P6_sK8hRWCA.m3u8/P6_sK8hRWCA.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/combining-like-terms-1/", "duration": 186, "id": "P6_sK8hRWCA", "title": "Combining like terms explained", "format": "mp4", "description": "Another good explanation (minus Chuck Norris) on the how we combine like terms in algebra. This will totally make sense.", "slug": "combining-like-terms-1", "kind": "Video", "video_id": "P6_sK8hRWCA", "keywords": "", "youtube_id": "P6_sK8hRWCA", "readable_id": "combining-like-terms-1"}, "j5c6pqAP2IA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j5c6pqAP2IA.mp4/j5c6pqAP2IA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j5c6pqAP2IA.mp4/j5c6pqAP2IA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j5c6pqAP2IA.m3u8/j5c6pqAP2IA.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/repeated-addition-example/", "duration": 129, "id": "j5c6pqAP2IA", "title": "Repeated addition example", "format": "mp4", "description": "Learn how to solve word problems by adding the same number many times.", "slug": "repeated-addition-example", "kind": "Video", "video_id": "j5c6pqAP2IA", "keywords": "", "youtube_id": "j5c6pqAP2IA", "readable_id": "repeated-addition-example"}, "ckBKDrKVIMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ckBKDrKVIMU.mp4/ckBKDrKVIMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ckBKDrKVIMU.mp4/ckBKDrKVIMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ckBKDrKVIMU.m3u8/ckBKDrKVIMU.m3u8"}, "duration": 490, "id": "ckBKDrKVIMU", "title": "Depreciation and opportunity cost of capital", "format": "mp4", "description": "How to account for things when you own the building instead of renting it", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/economic-profit-tutorial/depreciation-and-opportunity-cost-of-capital/", "slug": "depreciation-and-opportunity-cost-of-capital", "kind": "Video", "video_id": "ckBKDrKVIMU", "keywords": "microeconomics, economic, profit, depreciation", "youtube_id": "ckBKDrKVIMU", "readable_id": "depreciation-and-opportunity-cost-of-capital"}, "XTdvyM2PT_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XTdvyM2PT_4.mp4/XTdvyM2PT_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XTdvyM2PT_4.mp4/XTdvyM2PT_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XTdvyM2PT_4.m3u8/XTdvyM2PT_4.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/neighborhood-safety-and-crime/", "duration": 255, "id": "XTdvyM2PT_4", "title": "Neighborhood safety and crime", "format": "mp4", "description": "", "slug": "neighborhood-safety-and-crime", "kind": "Video", "video_id": "XTdvyM2PT_4", "keywords": "", "youtube_id": "XTdvyM2PT_4", "readable_id": "neighborhood-safety-and-crime"}, "0fWuPR1AsJ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0fWuPR1AsJ4.mp4/0fWuPR1AsJ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0fWuPR1AsJ4.mp4/0fWuPR1AsJ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0fWuPR1AsJ4.m3u8/0fWuPR1AsJ4.m3u8"}, "duration": 439, "id": "0fWuPR1AsJ4", "title": "Hypertension effects on the heart", "format": "mp4", "description": "Learn 2 major heart problems that hypertension can cause. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/circulatory-system-diseases/hypertension/hypertension-effects-on-the-heart/", "slug": "hypertension-effects-on-the-heart", "kind": "Video", "video_id": "0fWuPR1AsJ4", "keywords": "", "youtube_id": "0fWuPR1AsJ4", "readable_id": "hypertension-effects-on-the-heart"}, "5ZCKr4wTQvI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ZCKr4wTQvI.mp4/5ZCKr4wTQvI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ZCKr4wTQvI.mp4/5ZCKr4wTQvI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ZCKr4wTQvI.m3u8/5ZCKr4wTQvI.m3u8"}, "duration": 80, "id": "5ZCKr4wTQvI", "title": "Perimeter of a parallelogram", "format": "mp4", "description": "", "path": "khan/math/geometry/basic-geometry/area_non_standard/perimeter-of-a-polygon/", "slug": "perimeter-of-a-polygon", "kind": "Video", "video_id": "5ZCKr4wTQvI", "keywords": "u07_l2_t2_we1, Perimeter, of, Polygon", "youtube_id": "5ZCKr4wTQvI", "readable_id": "perimeter-of-a-polygon"}, "R0JY8oWsuOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R0JY8oWsuOY.mp4/R0JY8oWsuOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R0JY8oWsuOY.mp4/R0JY8oWsuOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R0JY8oWsuOY.m3u8/R0JY8oWsuOY.m3u8"}, "duration": 1152, "id": "R0JY8oWsuOY", "title": "Laplace/step function differential equation", "format": "mp4", "description": "Hairy differential equation involving a step function that we use the Laplace Transform to solve.", "path": "khan/math/differential-equations/laplace-transform/laplace-transform-to-solve-differential-equation/laplace-step-function-differential-equation/", "slug": "laplace-step-function-differential-equation", "kind": "Video", "video_id": "R0JY8oWsuOY", "keywords": "differential, equations, laplace, transform", "youtube_id": "R0JY8oWsuOY", "readable_id": "laplace-step-function-differential-equation"}, "ROzkyTgscGg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ROzkyTgscGg.mp4/ROzkyTgscGg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ROzkyTgscGg.mp4/ROzkyTgscGg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ROzkyTgscGg.m3u8/ROzkyTgscGg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/sp2-hybridization-jay-final/", "duration": 762, "id": "ROzkyTgscGg", "title": "Sp2 hybridization", "format": "mp4", "description": "", "slug": "sp2-hybridization-jay-final", "kind": "Video", "video_id": "ROzkyTgscGg", "keywords": "", "youtube_id": "ROzkyTgscGg", "readable_id": "sp2-hybridization-jay-final"}, "daZI2j4J_zM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/daZI2j4J_zM.mp4/daZI2j4J_zM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/daZI2j4J_zM.mp4/daZI2j4J_zM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/daZI2j4J_zM.m3u8/daZI2j4J_zM.m3u8"}, "duration": 343, "id": "daZI2j4J_zM", "title": "Hajj Stories: Preparations for the Hajj", "format": "mp4", "description": "The hajj, one of the \u201cfive pillars\u201d of Islam, is the pilgrimage to the city of Mecca, in Saudi Arabia, that all Muslims should make at least once in their lifetime if their health and financial means allow it, according to Islamic tradition. Inspired by the British Museum\u2019s videos Hajj Stories (2012), staff at the Asian Art Museum asked Bay Area Muslims who have performed the hajj to share experiences of their journeys. Learn more about the arts of the Islamic world on the\u00a0 Asian Art Museum's education website.", "path": "preparations-for-hajj/", "slug": "preparations-for-hajj", "kind": "Video", "video_id": "daZI2j4J_zM", "keywords": "hajj, Islam", "youtube_id": "daZI2j4J_zM", "readable_id": "preparations-for-hajj"}, "ZVUH4-Wsdwg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZVUH4-Wsdwg.mp4/ZVUH4-Wsdwg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZVUH4-Wsdwg.mp4/ZVUH4-Wsdwg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZVUH4-Wsdwg.m3u8/ZVUH4-Wsdwg.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/titian-christ-crowned-with-thorns-c-1570-76/", "duration": 288, "id": "ZVUH4-Wsdwg", "title": "Titian, Christ Crowned with Thorns", "format": "mp4", "description": "Titian, Christ Crowned with Thorns, ca. 1570--76, oil on canvas, 280 \u00d7 182 cm. (Alte Pinakothek, Munich) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "titian-christ-crowned-with-thorns-c-1570-76", "kind": "Video", "video_id": "ZVUH4-Wsdwg", "keywords": "", "youtube_id": "ZVUH4-Wsdwg", "readable_id": "titian-christ-crowned-with-thorns-c-1570-76"}, "STB4pbEJxc8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/STB4pbEJxc8.mp4/STB4pbEJxc8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/STB4pbEJxc8.mp4/STB4pbEJxc8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/STB4pbEJxc8.m3u8/STB4pbEJxc8.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/renaud-laplance/kauffman-renaud-laplanche-3/", "duration": 160, "id": "STB4pbEJxc8", "title": "Sailing the Seas of Entrepreneurship", "format": "mp4", "description": "Renaud Laplanche was opening his mail when the idea for Lending Club came to him. He tells the story of seeing\u00a0\nthe opportunity and creating the online Lending Club to fill the gap in the financial industries market. Laplache\u2019s\ncompetitive nature extends to one-man sailboat racing and he compares the risks and rewards of racing with setting\nthe pace as an entrepreneur.", "slug": "kauffman-renaud-laplanche-3", "kind": "Video", "video_id": "STB4pbEJxc8", "keywords": "", "youtube_id": "STB4pbEJxc8", "readable_id": "kauffman-renaud-laplanche-3"}, "Jni7E2RH43s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jni7E2RH43s.mp4/Jni7E2RH43s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jni7E2RH43s.mp4/Jni7E2RH43s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jni7E2RH43s.m3u8/Jni7E2RH43s.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-unit-circle/unit-circle-manipulative/", "duration": 252, "id": "Jni7E2RH43s", "title": "Unit circle manipulative", "format": "mp4", "description": "Walk-through of the Khan Academy Unit Circle manipulative: http://www.khanacademy.org/math/trigonometry/e/unit_circle", "slug": "unit-circle-manipulative", "kind": "Video", "video_id": "Jni7E2RH43s", "keywords": "", "youtube_id": "Jni7E2RH43s", "readable_id": "unit-circle-manipulative"}, "M6lFqkqvUgo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M6lFqkqvUgo.mp4/M6lFqkqvUgo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M6lFqkqvUgo.mp4/M6lFqkqvUgo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M6lFqkqvUgo.m3u8/M6lFqkqvUgo.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/othogonal_complements/lin-alg-representing-vectors-in-rn-using-subspace-members/", "duration": 1620, "id": "M6lFqkqvUgo", "title": "Representing vectors in rn using subspace members", "format": "mp4", "description": "Showing that any member of Rn can be represented as a unique sum of a vector in subspace V and a vector in the orthogonal complement of V.", "slug": "lin-alg-representing-vectors-in-rn-using-subspace-members", "kind": "Video", "video_id": "M6lFqkqvUgo", "keywords": "linear, algebra, orthogonal, complement", "youtube_id": "M6lFqkqvUgo", "readable_id": "lin-alg-representing-vectors-in-rn-using-subspace-members"}, "VEv7Mmx1V4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VEv7Mmx1V4w.mp4/VEv7Mmx1V4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VEv7Mmx1V4w.mp4/VEv7Mmx1V4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VEv7Mmx1V4w.m3u8/VEv7Mmx1V4w.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/st-ursula/", "duration": 139, "id": "VEv7Mmx1V4w", "title": "Reliquary bust of a companion of Saint Ursula", "format": "mp4", "description": "Exhibition curator, James Robinson (video\u00a0from the British Museum), bust from the Metropolitan Museum of Art), c. 1520-30.\n\nThis beautiful woman is most likely intended to represent one of the companions of St Ursula. According to legend St Ursula was an English princess who decided to go on a holy pilgrimage before her marriage. The legend also states that she took with her 11,000 virgin companions as company for the journey.\n\nThe troop of 11,000 virgins travelled to Cologne, Basle and Rome and made their way home back through Cologne. It was here that they met with a group of pagan Huns, whose leader wanted to marry Ursula. Ursula being already engaged and a virgin refused! This made the Huns so angry that they murdered all 11,000 of the girls by arrow fire.\n\n11,000 virgins is certainly a large party \u2013 the legend of there being 11,000 virgins became fixed in the 10th century, but this was probably through a misunderstanding of a Latin numerical inscription which read 11 rather than 11,000! Once the legend took off it became incredibly popular and indeed provided much inspiration for medieval craftsmen to create objects such as this.\n\nThe \u2018door\u2019 in the centre of the head of this reliquary opens to reveal a cavity which once held a skull relic of this unknown female saint. \u00a9 Trustees of the British Museum\n", "slug": "st-ursula", "kind": "Video", "video_id": "VEv7Mmx1V4w", "keywords": "British Museum", "youtube_id": "VEv7Mmx1V4w", "readable_id": "st-ursula"}, "67YpFYOmmQo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/67YpFYOmmQo.mp4/67YpFYOmmQo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/67YpFYOmmQo.mp4/67YpFYOmmQo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/67YpFYOmmQo.m3u8/67YpFYOmmQo.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/factoring-and-completing-square-of-higher-degree-expressions/", "duration": 574, "id": "67YpFYOmmQo", "title": "Factoring and completing square of higher degree expressions", "format": "mp4", "description": "Factoring and completing square of higher degree expressions", "slug": "factoring-and-completing-square-of-higher-degree-expressions", "kind": "Video", "video_id": "67YpFYOmmQo", "keywords": "", "youtube_id": "67YpFYOmmQo", "readable_id": "factoring-and-completing-square-of-higher-degree-expressions"}, "hpWdDmgsIRE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hpWdDmgsIRE.mp4/hpWdDmgsIRE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hpWdDmgsIRE.mp4/hpWdDmgsIRE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hpWdDmgsIRE.m3u8/hpWdDmgsIRE.m3u8"}, "duration": 1057, "id": "hpWdDmgsIRE", "title": "Contingency table chi-square test", "format": "mp4", "description": "Contingency Table Chi-Square Test", "path": "khan/math/probability/statistics-inferential/chi-square/contingency-table-chi-square-test/", "slug": "contingency-table-chi-square-test", "kind": "Video", "video_id": "hpWdDmgsIRE", "keywords": "Contingency, Table, Chi-Square, Test, CC_8_SP_4", "youtube_id": "hpWdDmgsIRE", "readable_id": "contingency-table-chi-square-test"}, "uaXgGL1dGfU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uaXgGL1dGfU.mp4/uaXgGL1dGfU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uaXgGL1dGfU.mp4/uaXgGL1dGfU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uaXgGL1dGfU.m3u8/uaXgGL1dGfU.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/nomenclature-and-properties-of-acyl-acid-halides-and-acid-anhydrides/", "duration": 620, "id": "uaXgGL1dGfU", "title": "Nomenclature and properties of acyl (acid) halides and acid anhydrides", "format": "mp4", "description": "How to name acyl (acid) chlorides and acid anhydrides and how to analyze their physical properties", "slug": "nomenclature-and-properties-of-acyl-acid-halides-and-acid-anhydrides", "kind": "Video", "video_id": "uaXgGL1dGfU", "keywords": "", "youtube_id": "uaXgGL1dGfU", "readable_id": "nomenclature-and-properties-of-acyl-acid-halides-and-acid-anhydrides"}, "MhavOq8O0Ho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MhavOq8O0Ho.mp4/MhavOq8O0Ho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MhavOq8O0Ho.mp4/MhavOq8O0Ho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MhavOq8O0Ho.m3u8/MhavOq8O0Ho.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-lung-cancer/what-is-lung-cancer/", "duration": 599, "id": "MhavOq8O0Ho", "title": "What is lung cancer?", "format": "mp4", "description": "Lung cancer is a disease where cells in the lungs multiply uncontrollably. The extra cells take up space in the lungs and impair gas exchange and the lung\u2019s ability to expel dirt. Learn how smoking, radon gas, and air pollution increase the risk of lung cancer.", "slug": "what-is-lung-cancer", "kind": "Video", "video_id": "MhavOq8O0Ho", "keywords": "", "youtube_id": "MhavOq8O0Ho", "readable_id": "what-is-lung-cancer"}, "tRHLEWSUjrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tRHLEWSUjrQ.mp4/tRHLEWSUjrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tRHLEWSUjrQ.mp4/tRHLEWSUjrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tRHLEWSUjrQ.m3u8/tRHLEWSUjrQ.m3u8"}, "duration": 184, "id": "tRHLEWSUjrQ", "title": "Finding square root of decimal", "format": "mp4", "description": "Learn how to find the square root of a decimal number. The problem solved in this video is p^2 = 0.81.", "path": "finding-square-root-of-decimal/", "slug": "finding-square-root-of-decimal", "kind": "Video", "video_id": "tRHLEWSUjrQ", "keywords": "", "youtube_id": "tRHLEWSUjrQ", "readable_id": "finding-square-root-of-decimal"}, "7TafYJLjhY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7TafYJLjhY4.mp4/7TafYJLjhY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7TafYJLjhY4.mp4/7TafYJLjhY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7TafYJLjhY4.m3u8/7TafYJLjhY4.m3u8"}, "duration": 570, "id": "7TafYJLjhY4", "title": "Thinking about heartbeats", "format": "mp4", "description": "Find out what happens when things move very slowly through the AV Node! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/thinking-about-heartbeats/", "slug": "thinking-about-heartbeats", "kind": "Video", "video_id": "7TafYJLjhY4", "keywords": "", "youtube_id": "7TafYJLjhY4", "readable_id": "thinking-about-heartbeats"}, "v9Evg2tBdRk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v9Evg2tBdRk.mp4/v9Evg2tBdRk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v9Evg2tBdRk.mp4/v9Evg2tBdRk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v9Evg2tBdRk.m3u8/v9Evg2tBdRk.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/pascals-triangle-binomial-theorem/", "duration": 500, "id": "v9Evg2tBdRk", "title": "Pascal's triangle for binomial expansion", "format": "mp4", "description": "", "slug": "pascals-triangle-binomial-theorem", "kind": "Video", "video_id": "v9Evg2tBdRk", "keywords": "", "youtube_id": "v9Evg2tBdRk", "readable_id": "pascals-triangle-binomial-theorem"}, "W-5liMGKgHA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W-5liMGKgHA.mp4/W-5liMGKgHA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W-5liMGKgHA.mp4/W-5liMGKgHA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W-5liMGKgHA.m3u8/W-5liMGKgHA.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/age_word_problems_tut/ex-1-age-word-problem/", "duration": 321, "id": "W-5liMGKgHA", "title": "Ex 1 age word problem", "format": "mp4", "description": "Imran is 18. Diya is 2. How many years will it take for Imran to be 3 times as old as Diya?", "slug": "ex-1-age-word-problem", "kind": "Video", "video_id": "W-5liMGKgHA", "keywords": "age word problems, linear equations", "youtube_id": "W-5liMGKgHA", "readable_id": "ex-1-age-word-problem"}, "Lh7NMBPFVZw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lh7NMBPFVZw.mp4/Lh7NMBPFVZw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lh7NMBPFVZw.mp4/Lh7NMBPFVZw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lh7NMBPFVZw.m3u8/Lh7NMBPFVZw.m3u8"}, "duration": 288, "id": "Lh7NMBPFVZw", "title": "Approximating square roots", "format": "mp4", "description": "Approximating square roots", "path": "approximating-square-roots-2/", "slug": "approximating-square-roots-2", "kind": "Video", "video_id": "Lh7NMBPFVZw", "keywords": "", "youtube_id": "Lh7NMBPFVZw", "readable_id": "approximating-square-roots-2"}, "U-k5N1WPk4g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U-k5N1WPk4g.mp4/U-k5N1WPk4g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U-k5N1WPk4g.mp4/U-k5N1WPk4g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U-k5N1WPk4g.m3u8/U-k5N1WPk4g.m3u8"}, "duration": 599, "id": "U-k5N1WPk4g", "title": "Domain of a function", "format": "mp4", "description": "Figuring out the domain of a function", "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain-of-a-function/", "slug": "domain-of-a-function", "kind": "Video", "video_id": "U-k5N1WPk4g", "keywords": "domain, range, algebra, function, CC_39336_F-IF_2", "youtube_id": "U-k5N1WPk4g", "readable_id": "domain-of-a-function"}, "vkDCkD88-B0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vkDCkD88-B0.mp4/vkDCkD88-B0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vkDCkD88-B0.mp4/vkDCkD88-B0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vkDCkD88-B0.m3u8/vkDCkD88-B0.m3u8"}, "path": "khan/partner-content/big-history-project/big-bang/claim-testing/how-do-we-decide-what-to-believe/", "duration": 538, "id": "vkDCkD88-B0", "title": "How Do We Decide What to Believe?", "format": "mp4", "description": "Learn to use \"claim testers\" to evaluate information and decide what you believe!", "slug": "how-do-we-decide-what-to-believe", "kind": "Video", "video_id": "vkDCkD88-B0", "keywords": "", "youtube_id": "vkDCkD88-B0", "readable_id": "how-do-we-decide-what-to-believe"}, "mN5IvS96wNk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mN5IvS96wNk.mp4/mN5IvS96wNk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mN5IvS96wNk.mp4/mN5IvS96wNk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mN5IvS96wNk.m3u8/mN5IvS96wNk.m3u8"}, "duration": 419, "id": "mN5IvS96wNk", "title": "Gel electrophoresis", "format": "mp4", "description": "Learn how gel electrophoresis separates DNA and protein fragments based on size and why one would use agarose gel electrophoresis versus SDS-PAGE. By Angela Guerrero.", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/gel-electrophoresis/", "slug": "gel-electrophoresis", "kind": "Video", "video_id": "mN5IvS96wNk", "keywords": "gel electrophoresis", "youtube_id": "mN5IvS96wNk", "readable_id": "gel-electrophoresis"}, "X7GT9JKoAbo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X7GT9JKoAbo.mp4/X7GT9JKoAbo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X7GT9JKoAbo.mp4/X7GT9JKoAbo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X7GT9JKoAbo.m3u8/X7GT9JKoAbo.m3u8"}, "duration": 913, "id": "X7GT9JKoAbo", "title": "IIT JEE trigonometry problem 1", "format": "mp4", "description": "2010 IIT JEE Paper I #29 Trigonometry problem", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-trigonometry-problem-1/", "slug": "iit-jee-trigonometry-problem-1", "kind": "Video", "video_id": "X7GT9JKoAbo", "keywords": "2010, IIT, JEE, Paper, Trigonometry, law, of, sines, cosines", "youtube_id": "X7GT9JKoAbo", "readable_id": "iit-jee-trigonometry-problem-1"}, "cLICU2cDHrs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cLICU2cDHrs.mp4/cLICU2cDHrs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cLICU2cDHrs.mp4/cLICU2cDHrs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cLICU2cDHrs.m3u8/cLICU2cDHrs.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/caravaggio-crucifixion-of-st-peter-1601/", "duration": 219, "id": "cLICU2cDHrs", "title": "Caravaggio, Crucifixion of Saint Peter", "format": "mp4", "description": "Caravaggio, Crucifixion of St. Peter, oil on canvas, 1601 (Santa Maria del Popolo, Rome)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "caravaggio-crucifixion-of-st-peter-1601", "kind": "Video", "video_id": "cLICU2cDHrs", "keywords": "Caravaggio, St. Peter, Rome, Santa Maria del Popolo, Art History, Baroque, Smarthistory", "youtube_id": "cLICU2cDHrs", "readable_id": "caravaggio-crucifixion-of-st-peter-1601"}, "BOHUX-DAdVE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BOHUX-DAdVE.mp4/BOHUX-DAdVE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BOHUX-DAdVE.mp4/BOHUX-DAdVE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BOHUX-DAdVE.m3u8/BOHUX-DAdVE.m3u8"}, "path": "khan/partner-content/big-history-project/life/other-materials5/bhp-intro-conservation-science/", "duration": 405, "id": "BOHUX-DAdVE", "title": "Introduction to Conservation Science", "format": "mp4", "description": "Sanjayan discusses the field of conservation science and considers the future of the biosphere.", "slug": "bhp-intro-conservation-science", "kind": "Video", "video_id": "BOHUX-DAdVE", "keywords": "", "youtube_id": "BOHUX-DAdVE", "readable_id": "bhp-intro-conservation-science"}, "sOXeKd-6bSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sOXeKd-6bSk.mp4/sOXeKd-6bSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sOXeKd-6bSk.mp4/sOXeKd-6bSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sOXeKd-6bSk.m3u8/sOXeKd-6bSk.m3u8"}, "duration": 208, "id": "sOXeKd-6bSk", "title": "Studio Tour: Thomas Lanigan-Schmidt", "format": "mp4", "description": "Thomas Lanigan-Schmidt brings us into his NYC studio. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-studio-tour-lanigan-schmidt/", "slug": "moma-studio-tour-lanigan-schmidt", "kind": "Video", "video_id": "sOXeKd-6bSk", "keywords": "", "youtube_id": "sOXeKd-6bSk", "readable_id": "moma-studio-tour-lanigan-schmidt"}, "7AOOlxbZN3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7AOOlxbZN3E.mp4/7AOOlxbZN3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7AOOlxbZN3E.mp4/7AOOlxbZN3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7AOOlxbZN3E.m3u8/7AOOlxbZN3E.m3u8"}, "duration": 438, "id": "7AOOlxbZN3E", "title": "Schlieffen Plan and the First Battle of the Marne", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-fighting/schlieffen-plan-and-the-first-battle-of-the-marne/", "slug": "schlieffen-plan-and-the-first-battle-of-the-marne", "kind": "Video", "video_id": "7AOOlxbZN3E", "keywords": "", "youtube_id": "7AOOlxbZN3E", "readable_id": "schlieffen-plan-and-the-first-battle-of-the-marne"}, "DA2w8lRelIc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DA2w8lRelIc.mp4/DA2w8lRelIc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DA2w8lRelIc.mp4/DA2w8lRelIc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DA2w8lRelIc.m3u8/DA2w8lRelIc.m3u8"}, "duration": 404, "id": "DA2w8lRelIc", "title": "Telling time problems with number line", "format": "mp4", "description": "Use a number line to tell time and find the duration of an event.", "path": "telling-time-problems-with-number-line/", "slug": "telling-time-problems-with-number-line", "kind": "Video", "video_id": "DA2w8lRelIc", "keywords": "", "youtube_id": "DA2w8lRelIc", "readable_id": "telling-time-problems-with-number-line"}, "uggD8mwglyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uggD8mwglyc.mp4/uggD8mwglyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uggD8mwglyc.mp4/uggD8mwglyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uggD8mwglyc.m3u8/uggD8mwglyc.m3u8"}, "duration": 336, "id": "uggD8mwglyc", "title": "Simplifying square roots", "format": "mp4", "description": "Simplifying Square Roots", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/simplifying-square-roots/", "slug": "simplifying-square-roots", "kind": "Video", "video_id": "uggD8mwglyc", "keywords": "u16, l1, t2, we1, Simplifying, Square, Roots", "youtube_id": "uggD8mwglyc", "readable_id": "simplifying-square-roots"}, "JcqCf762y9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JcqCf762y9w.mp4/JcqCf762y9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JcqCf762y9w.mp4/JcqCf762y9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JcqCf762y9w.m3u8/JcqCf762y9w.m3u8"}, "path": "khan/math/geometry/intro_euclid/lines-line-segments-and-rays/", "duration": 218, "id": "JcqCf762y9w", "title": "Intro to lines, line segments, and rays", "format": "mp4", "description": "Let's get familiar with the difference between lines, line segments, and rays. Hint: a ray is somewhere between a line and a line segment!", "slug": "lines-line-segments-and-rays", "kind": "Video", "video_id": "JcqCf762y9w", "keywords": "geometry", "youtube_id": "JcqCf762y9w", "readable_id": "lines-line-segments-and-rays"}, "CDvPPsB3nEM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CDvPPsB3nEM.mp4/CDvPPsB3nEM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CDvPPsB3nEM.mp4/CDvPPsB3nEM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CDvPPsB3nEM.m3u8/CDvPPsB3nEM.m3u8"}, "duration": 343, "id": "CDvPPsB3nEM", "title": "Applying the metric system", "format": "mp4", "description": "U06_L2_T3_we1 Applying the Metric System", "path": "khan/math/pre-algebra/rates-and-ratios/metric-system-tutorial/applying-the-metric-system/", "slug": "applying-the-metric-system", "kind": "Video", "video_id": "CDvPPsB3nEM", "keywords": "U06_L2_T3_we1, Applying, the, Metric, System", "youtube_id": "CDvPPsB3nEM", "readable_id": "applying-the-metric-system"}, "aHzd-u35LuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aHzd-u35LuA.mp4/aHzd-u35LuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aHzd-u35LuA.mp4/aHzd-u35LuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aHzd-u35LuA.m3u8/aHzd-u35LuA.m3u8"}, "duration": 275, "id": "aHzd-u35LuA", "title": "Angle to aim to get alien", "format": "mp4", "description": "", "path": "khan/math/trigonometry/basic-trigonometry/trig-application-problems/angle-to-aim-to-get-alien/", "slug": "angle-to-aim-to-get-alien", "kind": "Video", "video_id": "aHzd-u35LuA", "keywords": "", "youtube_id": "aHzd-u35LuA", "readable_id": "angle-to-aim-to-get-alien"}, "z6lL83wl31E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z6lL83wl31E.mp4/z6lL83wl31E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z6lL83wl31E.mp4/z6lL83wl31E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z6lL83wl31E.m3u8/z6lL83wl31E.m3u8"}, "duration": 194, "id": "z6lL83wl31E", "title": "Origami proof of the Pythagorean theorem", "format": "mp4", "description": "Leave your homework in the comments. Extra points for clarity and conciseness!\n\nSpecial thanks to my peeps at NYU where the idea for this video popped up during discussion.", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/origami-proof-of-the-pythagorean-theorem/", "slug": "origami-proof-of-the-pythagorean-theorem", "kind": "Video", "video_id": "z6lL83wl31E", "keywords": "pythagorean theorem, geometry, mathematics, trigonometry, origami, paper folding, proof", "youtube_id": "z6lL83wl31E", "readable_id": "origami-proof-of-the-pythagorean-theorem"}, "d8De3xcVmnw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d8De3xcVmnw.mp4/d8De3xcVmnw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d8De3xcVmnw.mp4/d8De3xcVmnw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d8De3xcVmnw.m3u8/d8De3xcVmnw.m3u8"}, "duration": 273, "id": "d8De3xcVmnw", "title": "Challenge example: Sum of integers", "format": "mp4", "description": "Sum of Consecutive Odd Integers", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/sum-of-consecutive-odd-integers/", "slug": "sum-of-consecutive-odd-integers", "kind": "Video", "video_id": "d8De3xcVmnw", "keywords": "U02_L1_T3_we2, algebra, sum, of, integers, CC_6_EE_6, CC_39336_A-REI_1, CC_39336_A-REI_3", "youtube_id": "d8De3xcVmnw", "readable_id": "sum-of-consecutive-odd-integers"}, "mr9Tow8hpCg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mr9Tow8hpCg.mp4/mr9Tow8hpCg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mr9Tow8hpCg.mp4/mr9Tow8hpCg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mr9Tow8hpCg.m3u8/mr9Tow8hpCg.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/linear-algebra-showing-that-inverses-are-linear/", "duration": 1285, "id": "mr9Tow8hpCg", "title": "Showing that inverses are linear", "format": "mp4", "description": "Showing that inverse transformations are also linear", "slug": "linear-algebra-showing-that-inverses-are-linear", "kind": "Video", "video_id": "mr9Tow8hpCg", "keywords": "inverse, invertibility, linear, transformation", "youtube_id": "mr9Tow8hpCg", "readable_id": "linear-algebra-showing-that-inverses-are-linear"}, "7PsgPJoGWig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7PsgPJoGWig.mp4/7PsgPJoGWig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7PsgPJoGWig.mp4/7PsgPJoGWig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7PsgPJoGWig.m3u8/7PsgPJoGWig.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/martini-annunciation-1333/", "duration": 274, "id": "7PsgPJoGWig", "title": "Simone Martini, Annunciation", "format": "mp4", "description": "Simone Martini, Annunciation, 1333, tempera on panel, 72 1/2 x 82 5/8\" or 184 x 210 cm. (Uffizi, Florence) Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "martini-annunciation-1333", "kind": "Video", "video_id": "7PsgPJoGWig", "keywords": "smarthistory, Art History, Annunciation, Renaissance, Uffizi, Siena", "youtube_id": "7PsgPJoGWig", "readable_id": "martini-annunciation-1333"}, "9tmtDBpqq9s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9tmtDBpqq9s.mp4/9tmtDBpqq9s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9tmtDBpqq9s.mp4/9tmtDBpqq9s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9tmtDBpqq9s.m3u8/9tmtDBpqq9s.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dec-perc-frac-pre-alg/adding-and-subtracting-three-fractions/", "duration": 156, "id": "9tmtDBpqq9s", "title": "Adding, subtracting fractions", "format": "mp4", "description": "Add and subtract negative fractions with unlike denominators.", "slug": "adding-and-subtracting-three-fractions", "kind": "Video", "video_id": "9tmtDBpqq9s", "keywords": "", "youtube_id": "9tmtDBpqq9s", "readable_id": "adding-and-subtracting-three-fractions"}, "Badvask-UDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Badvask-UDU.mp4/Badvask-UDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Badvask-UDU.mp4/Badvask-UDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Badvask-UDU.m3u8/Badvask-UDU.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/ditributive_property/the-distributive-property-2/", "duration": 131, "id": "Badvask-UDU", "title": "Distributive property practice", "format": "mp4", "description": "Rewiting expressions is a great way to show that you understand the distributive property.", "slug": "the-distributive-property-2", "kind": "Video", "video_id": "Badvask-UDU", "keywords": "U01_L4_T2_we2, The, Distributive, Property, CC_3_OA_5, CC_5_OA_1, CC_6_EE_3, CC_6_NS_4, CC_7_EE_1", "youtube_id": "Badvask-UDU", "readable_id": "the-distributive-property-2"}, "vD1OROM3Lfo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vD1OROM3Lfo.mp4/vD1OROM3Lfo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vD1OROM3Lfo.mp4/vD1OROM3Lfo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vD1OROM3Lfo.m3u8/vD1OROM3Lfo.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-28/", "duration": 628, "id": "vD1OROM3Lfo", "title": "GMAT: Data sufficiency 28", "format": "mp4", "description": "116-118, pg. 288", "slug": "gmat-data-sufficiency-28", "kind": "Video", "video_id": "vD1OROM3Lfo", "keywords": "gmat, data, sufficiency, math", "youtube_id": "vD1OROM3Lfo", "readable_id": "gmat-data-sufficiency-28"}, "RDgF0F_9PwM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RDgF0F_9PwM.mp4/RDgF0F_9PwM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RDgF0F_9PwM.mp4/RDgF0F_9PwM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RDgF0F_9PwM.m3u8/RDgF0F_9PwM.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-26-inconsistent-science/", "duration": 54, "id": "RDgF0F_9PwM", "title": "26 Inconsistent science", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-26-inconsistent-science", "kind": "Video", "video_id": "RDgF0F_9PwM", "keywords": "", "youtube_id": "RDgF0F_9PwM", "readable_id": "sat-26-inconsistent-science"}, "_5lmQ_dQOU4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_5lmQ_dQOU4.mp4/_5lmQ_dQOU4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_5lmQ_dQOU4.mp4/_5lmQ_dQOU4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_5lmQ_dQOU4.m3u8/_5lmQ_dQOU4.m3u8"}, "duration": 541, "id": "_5lmQ_dQOU4", "title": "Regulation of pyruvate dehydrogenase", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/regulation-of-pyruvate-dehydrogenase/", "slug": "regulation-of-pyruvate-dehydrogenase", "kind": "Video", "video_id": "_5lmQ_dQOU4", "keywords": "", "youtube_id": "_5lmQ_dQOU4", "readable_id": "regulation-of-pyruvate-dehydrogenase"}, "podbMDjFNAY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/podbMDjFNAY.mp4/podbMDjFNAY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/podbMDjFNAY.mp4/podbMDjFNAY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/podbMDjFNAY.m3u8/podbMDjFNAY.m3u8"}, "duration": 738, "id": "podbMDjFNAY", "title": "Decolonization and Nationalism Triumphant", "format": "mp4", "description": "In which John Green teaches you about the post-World War II breakup of most of the European empires. As you'll remember from previous installments of Crash Course, Europeans spent several centuries sailing around the world creating empires, despite the fact that most of the places they conquered were perfectly happy to carry on alone. After World War II, most of these empires collapsed. This is the story of those collapses. In most places, the end of empire was not orderly, and violence often ensued. While India was a (sort of) shining example of non-violent change, in places like The Congo, Egypt, Rwanda, Vietnam, Cambodia, and Laos, things didn't go smoothly at all. John brings you all this, plus pictures of Sea Monkeys. Sadly, they don't look anything like those awesome commercials in the comic books.", "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/decolonization-world-history-40/", "slug": "decolonization-world-history-40", "kind": "Video", "video_id": "podbMDjFNAY", "keywords": "crash course", "youtube_id": "podbMDjFNAY", "readable_id": "decolonization-world-history-40"}, "5iUh_CSjaSw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5iUh_CSjaSw.mp4/5iUh_CSjaSw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5iUh_CSjaSw.mp4/5iUh_CSjaSw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5iUh_CSjaSw.m3u8/5iUh_CSjaSw.m3u8"}, "duration": 260, "id": "5iUh_CSjaSw", "title": "Anti-Pi Rant, 3/14/14", "format": "mp4", "description": "Sorry, Pi lovers! Maybe pick a better favorite number next time?", "path": "khan/math/recreational-math/vi-hart/pi-tau/anti-pi-rant-2014/", "slug": "anti-pi-rant-2014", "kind": "Video", "video_id": "5iUh_CSjaSw", "keywords": "pi", "youtube_id": "5iUh_CSjaSw", "readable_id": "anti-pi-rant-2014"}, "wvtPCKwGZCU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wvtPCKwGZCU.mp4/wvtPCKwGZCU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wvtPCKwGZCU.mp4/wvtPCKwGZCU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wvtPCKwGZCU.m3u8/wvtPCKwGZCU.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/edgar-degas-visit-to-a-museum-c-1879-90/", "duration": 325, "id": "wvtPCKwGZCU", "title": "Degas, Visit to a Museum", "format": "mp4", "description": "Edgar Degas, Visit to a Museum, c. 1879--90, oil on canvas, 91.8 x 68 cm / 36-1/8 x 26-3/4 inches (Museum of Fine Arts, Boston)", "slug": "edgar-degas-visit-to-a-museum-c-1879-90", "kind": "Video", "video_id": "wvtPCKwGZCU", "keywords": "Edgar Degas, Degas, Visit to a Museum, 1879, 1890, Museum of Fine Arts, Boston, Paris, Louvre, Cassatt, Mary Cassatt, Lydia, looking at art, gesture, series, painting, art, Impressionism, Realism, Educational, Google Art Project, Smarthistory, Khan Academy, OER, art history, museum visitor", "youtube_id": "wvtPCKwGZCU", "readable_id": "edgar-degas-visit-to-a-museum-c-1879-90"}, "Ijret8P3kWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ijret8P3kWM.mp4/Ijret8P3kWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ijret8P3kWM.mp4/Ijret8P3kWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ijret8P3kWM.m3u8/Ijret8P3kWM.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/preload-and-afterload/active-contraction-vs-passive-recoil/", "duration": 451, "id": "Ijret8P3kWM", "title": "Active contraction vs. passive recoil", "format": "mp4", "description": "Go through the similarities and differences between the sarcomere and a slingshot! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "active-contraction-vs-passive-recoil", "kind": "Video", "video_id": "Ijret8P3kWM", "keywords": "", "youtube_id": "Ijret8P3kWM", "readable_id": "active-contraction-vs-passive-recoil"}, "UCCNoXqCGZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UCCNoXqCGZQ.mp4/UCCNoXqCGZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UCCNoXqCGZQ.mp4/UCCNoXqCGZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UCCNoXqCGZQ.m3u8/UCCNoXqCGZQ.m3u8"}, "path": "khan/math/recreational-math/math-warmup/arithmetic-warmups/exponents-warmup/", "duration": 325, "id": "UCCNoXqCGZQ", "title": "Exponentiation warmup", "format": "mp4", "description": "introduction to exponents and exponential growth", "slug": "exponents-warmup", "kind": "Video", "video_id": "UCCNoXqCGZQ", "keywords": "", "youtube_id": "UCCNoXqCGZQ", "readable_id": "exponents-warmup"}, "_RrZggEhSJA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_RrZggEhSJA.mp4/_RrZggEhSJA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_RrZggEhSJA.mp4/_RrZggEhSJA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_RrZggEhSJA.m3u8/_RrZggEhSJA.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/emotion-and-cognition-in-prejudice/", "duration": 433, "id": "_RrZggEhSJA", "title": "Emotion and cognition in prejudice", "format": "mp4", "description": "", "slug": "emotion-and-cognition-in-prejudice", "kind": "Video", "video_id": "_RrZggEhSJA", "keywords": "", "youtube_id": "_RrZggEhSJA", "readable_id": "emotion-and-cognition-in-prejudice"}, "-a_w0_VAo6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-a_w0_VAo6U.mp4/-a_w0_VAo6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-a_w0_VAo6U.mp4/-a_w0_VAo6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-a_w0_VAo6U.m3u8/-a_w0_VAo6U.m3u8"}, "duration": 167, "id": "-a_w0_VAo6U", "title": "Identifying fraction parts", "format": "mp4", "description": "Identifying Fraction Parts", "path": "khan/math/pre-algebra/fractions-pre-alg/understanding-fractions-pre-alg/identifying-fraction-parts/", "slug": "identifying-fraction-parts", "kind": "Video", "video_id": "-a_w0_VAo6U", "keywords": "U02_l1_T1_we2, Identifying, Fraction, Parts", "youtube_id": "-a_w0_VAo6U", "readable_id": "identifying-fraction-parts"}, "UAXapQvZe2w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UAXapQvZe2w.mp4/UAXapQvZe2w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UAXapQvZe2w.mp4/UAXapQvZe2w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UAXapQvZe2w.m3u8/UAXapQvZe2w.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sleep-and-consciousness/dream-theories-freud-activation-synthnesis-hypothesis/", "duration": 300, "id": "UAXapQvZe2w", "title": "Dream theories Freud, activation synthnesis hypothesis", "format": "mp4", "description": "", "slug": "dream-theories-freud-activation-synthnesis-hypothesis", "kind": "Video", "video_id": "UAXapQvZe2w", "keywords": "", "youtube_id": "UAXapQvZe2w", "readable_id": "dream-theories-freud-activation-synthnesis-hypothesis"}, "lrMVA8F-fiY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lrMVA8F-fiY.mp4/lrMVA8F-fiY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lrMVA8F-fiY.mp4/lrMVA8F-fiY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lrMVA8F-fiY.m3u8/lrMVA8F-fiY.m3u8"}, "duration": 285, "id": "lrMVA8F-fiY", "title": "The making of a Roman silver cup", "format": "mp4", "description": "Ancient Roman silversmiths developed their craft to the highest levels of refinement and beauty. Applying fire and basic tools to the shaping of precious metals, many of their sophisticated techniques are still used today. This video illustrates the making of a stunning silver cup that has survived from the first century, A.D. This cup is on view at the Getty Villa from November 19, 2014 to August 17, 2015 in the exhibition \"Ancient Luxury and the Roman Silver Treasure from Berthouville\": http://bit.ly/13Oxl7s Subscribe NOW to the Getty Museum channel: http://bit.ly/gettymuseumyoutube Love art? Follow us on Google+ to stay in touch: http://bit.ly/gettygoogleplus", "path": "roman-silver-cup/", "slug": "roman-silver-cup", "kind": "Video", "video_id": "lrMVA8F-fiY", "keywords": "", "youtube_id": "lrMVA8F-fiY", "readable_id": "roman-silver-cup"}, "cJXY3Cywrnc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cJXY3Cywrnc.mp4/cJXY3Cywrnc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cJXY3Cywrnc.mp4/cJXY3Cywrnc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cJXY3Cywrnc.m3u8/cJXY3Cywrnc.m3u8"}, "duration": 666, "id": "cJXY3Cywrnc", "title": "Peripheral chemoreceptors", "format": "mp4", "description": "Find out how the your body uses special cells that are peripheral to the brain (outside the brain) to sense levels of O2, CO2, and pH. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/breathing-control/peripheral-chemoreceptors/", "slug": "peripheral-chemoreceptors", "kind": "Video", "video_id": "cJXY3Cywrnc", "keywords": "", "youtube_id": "cJXY3Cywrnc", "readable_id": "peripheral-chemoreceptors"}, "eElHlE4j-vw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eElHlE4j-vw.mp4/eElHlE4j-vw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eElHlE4j-vw.mp4/eElHlE4j-vw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eElHlE4j-vw.m3u8/eElHlE4j-vw.m3u8"}, "duration": 646, "id": "eElHlE4j-vw", "title": "Estate tax introduction", "format": "mp4", "description": "Overview of the estate tax", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/estate-tax-introduction/", "slug": "estate-tax-introduction", "kind": "Video", "video_id": "eElHlE4j-vw", "keywords": "inheritance, death, tax", "youtube_id": "eElHlE4j-vw", "readable_id": "estate-tax-introduction"}, "Cg4KlmI_acs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Cg4KlmI_acs.mp4/Cg4KlmI_acs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Cg4KlmI_acs.mp4/Cg4KlmI_acs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Cg4KlmI_acs.m3u8/Cg4KlmI_acs.m3u8"}, "duration": 742, "id": "Cg4KlmI_acs", "title": "Fick's law of diffusion", "format": "mp4", "description": "Learn all of the different ways to maximize the amount of particles that diffuse over a short distance over time. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/gas-exchange/fick-s-law-of-diffusion/", "slug": "fick-s-law-of-diffusion", "kind": "Video", "video_id": "Cg4KlmI_acs", "keywords": "", "youtube_id": "Cg4KlmI_acs", "readable_id": "fick-s-law-of-diffusion"}, "Smd-q44ysoM": {"download_urls": {}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/raphael-school-of-athens/", "duration": 750, "id": "Smd-q44ysoM", "title": "Raphael, School of Athens", "format": "mp4", "description": "Raphael, School of Athens, fresco, 1509-1511 (Stanza della Segnatura, Papal Palace, Vatican)\n\nSpeakers: Dr. Steven Zucker, Dr. Beth Harris", "slug": "raphael-school-of-athens", "kind": "Video", "video_id": "Smd-q44ysoM", "keywords": "Raphael, School of Athens, Vatican, Vatican Museums", "youtube_id": "Smd-q44ysoM", "readable_id": "raphael-school-of-athens"}, "NW9JfMvIsxw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NW9JfMvIsxw.mp4/NW9JfMvIsxw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NW9JfMvIsxw.mp4/NW9JfMvIsxw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NW9JfMvIsxw.m3u8/NW9JfMvIsxw.m3u8"}, "duration": 718, "id": "NW9JfMvIsxw", "title": "Repeated roots of the characteristic equation", "format": "mp4", "description": "What happens when the characteristic equation only has 1 repeated root?", "path": "khan/math/differential-equations/second-order-differential-equations/complex-roots-characteristic-equation/repeated-roots-of-the-characteristic-equation/", "slug": "repeated-roots-of-the-characteristic-equation", "kind": "Video", "video_id": "NW9JfMvIsxw", "keywords": "differential, equations, reduction, of, order", "youtube_id": "NW9JfMvIsxw", "readable_id": "repeated-roots-of-the-characteristic-equation"}, "1JudNLK1-Ck": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1JudNLK1-Ck.mp4/1JudNLK1-Ck.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1JudNLK1-Ck.mp4/1JudNLK1-Ck.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1JudNLK1-Ck.m3u8/1JudNLK1-Ck.m3u8"}, "path": "khan/science/health-and-medicine/circulatory-system-diseases/blood-vessel-diseases/arteriolosclerosis-part-1/", "duration": 674, "id": "1JudNLK1-Ck", "title": "Arteriolosclerosis - part 1", "format": "mp4", "description": "See how hyaline arteriolosclerosis (Protein in the arterial wall) causes hardening of the blood vessels. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "arteriolosclerosis-part-1", "kind": "Video", "video_id": "1JudNLK1-Ck", "keywords": "", "youtube_id": "1JudNLK1-Ck", "readable_id": "arteriolosclerosis-part-1"}, "3BBqL_F9fxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3BBqL_F9fxQ.mp4/3BBqL_F9fxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3BBqL_F9fxQ.mp4/3BBqL_F9fxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3BBqL_F9fxQ.m3u8/3BBqL_F9fxQ.m3u8"}, "duration": 579, "id": "3BBqL_F9fxQ", "title": "Conservation and restoration ecology", "format": "mp4", "description": "", "path": "crash-course-ecology-12/", "slug": "crash-course-ecology-12", "kind": "Video", "video_id": "3BBqL_F9fxQ", "keywords": "", "youtube_id": "3BBqL_F9fxQ", "readable_id": "crash-course-ecology-12"}, "KiouveG278Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KiouveG278Y.mp4/KiouveG278Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KiouveG278Y.mp4/KiouveG278Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KiouveG278Y.m3u8/KiouveG278Y.m3u8"}, "duration": 376, "id": "KiouveG278Y", "title": "Autonomic nervous system effects on the heart", "format": "mp4", "description": "Carefully go through each of the four major effects that the sympathetic and parasympathetic system has on your heart: Chronotropy, Dromotropy, Inotropy, and Lusitropy. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/nerve-regulation-of-the-heart/autonomic-nervous-system-effects-on-the-heart/", "slug": "autonomic-nervous-system-effects-on-the-heart", "kind": "Video", "video_id": "KiouveG278Y", "keywords": "", "youtube_id": "KiouveG278Y", "readable_id": "autonomic-nervous-system-effects-on-the-heart"}, "tvpp2lAD9iY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tvpp2lAD9iY.mp4/tvpp2lAD9iY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tvpp2lAD9iY.mp4/tvpp2lAD9iY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tvpp2lAD9iY.m3u8/tvpp2lAD9iY.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/ny-school/robert-rauschenberg-bed-1955/", "duration": 289, "id": "tvpp2lAD9iY", "title": "Robert Rauschenberg, Bed", "format": "mp4", "description": "Robert Rauschenberg, Bed, 1955, oil and pencil on pillow, quilt, and sheet on wood supports, 191.1 x 80 x 20.3 cm (The Museum of Modern Art) \u00a9 2013 Robert Rauschenberg Foundation\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "robert-rauschenberg-bed-1955", "kind": "Video", "video_id": "tvpp2lAD9iY", "keywords": "", "youtube_id": "tvpp2lAD9iY", "readable_id": "robert-rauschenberg-bed-1955"}, "5c9N_1PEfHw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5c9N_1PEfHw.mp4/5c9N_1PEfHw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5c9N_1PEfHw.mp4/5c9N_1PEfHw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5c9N_1PEfHw.m3u8/5c9N_1PEfHw.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/constructing-linear-functions-2/", "duration": 503, "id": "5c9N_1PEfHw", "title": "Constructing linear functions example 2", "format": "mp4", "description": "Linear model for painting", "slug": "constructing-linear-functions-2", "kind": "Video", "video_id": "5c9N_1PEfHw", "keywords": "", "youtube_id": "5c9N_1PEfHw", "readable_id": "constructing-linear-functions-2"}, "yar47jvr7M8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yar47jvr7M8.mp4/yar47jvr7M8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yar47jvr7M8.mp4/yar47jvr7M8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yar47jvr7M8.m3u8/yar47jvr7M8.m3u8"}, "path": "khan/test-prep/mcat/behavior/psychological-disorders/categories-of-mental-disorders/", "duration": 979, "id": "yar47jvr7M8", "title": "Categories of mental disorders", "format": "mp4", "description": "", "slug": "categories-of-mental-disorders", "kind": "Video", "video_id": "yar47jvr7M8", "keywords": "", "youtube_id": "yar47jvr7M8", "readable_id": "categories-of-mental-disorders"}, "niTxSf60wDs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/niTxSf60wDs.mp4/niTxSf60wDs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/niTxSf60wDs.mp4/niTxSf60wDs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/niTxSf60wDs.m3u8/niTxSf60wDs.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/torsades-de-pointes/", "duration": 600, "id": "niTxSf60wDs", "title": "Torsades de pointes", "format": "mp4", "description": "", "slug": "torsades-de-pointes", "kind": "Video", "video_id": "niTxSf60wDs", "keywords": "", "youtube_id": "niTxSf60wDs", "readable_id": "torsades-de-pointes"}, "Wm-akMcsHEc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wm-akMcsHEc.mp4/Wm-akMcsHEc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wm-akMcsHEc.mp4/Wm-akMcsHEc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wm-akMcsHEc.m3u8/Wm-akMcsHEc.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/francesco-borromini-san-carlo-1638-1646/", "duration": 413, "id": "Wm-akMcsHEc", "title": "Borromini, San Carlo alle Quattro Fontane", "format": "mp4", "description": "Francesco Borromini, San Carlo alle Quattro Fontane (\"Carlino\"), Rome. Commissioned by Cardinal Francesco Barberini in 1634 for the Holy Order of the Trinity; construction began in 1638 and the church was consecrated in 1646.\n\nSpeakers: Frank Dabell, Dr. Beth Harris, and Dr. Steven Zucker", "slug": "francesco-borromini-san-carlo-1638-1646", "kind": "Video", "video_id": "Wm-akMcsHEc", "keywords": "art history, smarthistory, baroque, architecture, borromini, Rome, San Carlo, Cardinal Francesco Barberini, Holy Order of the Trinity.", "youtube_id": "Wm-akMcsHEc", "readable_id": "francesco-borromini-san-carlo-1638-1646"}, "g_ijRF_NMLk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g_ijRF_NMLk.mp4/g_ijRF_NMLk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g_ijRF_NMLk.mp4/g_ijRF_NMLk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g_ijRF_NMLk.m3u8/g_ijRF_NMLk.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-translations/drawing-image-of-translation/", "duration": 115, "id": "g_ijRF_NMLk", "title": "Drawing image of translation", "format": "mp4", "description": "Drawing image of translation", "slug": "drawing-image-of-translation", "kind": "Video", "video_id": "g_ijRF_NMLk", "keywords": "", "youtube_id": "g_ijRF_NMLk", "readable_id": "drawing-image-of-translation"}, "qMaVLzWnS80": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qMaVLzWnS80.mp4/qMaVLzWnS80.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qMaVLzWnS80.mp4/qMaVLzWnS80.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qMaVLzWnS80.m3u8/qMaVLzWnS80.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/what-is-vasculitis/", "duration": 730, "id": "qMaVLzWnS80", "title": "What is vasculitis?", "format": "mp4", "description": "Vasculitis is a group of medical conditions which cause damage to the blood vessels through inflammation. Depending on which blood vessels are affected, vasculitis can be classified as large vessel, medium vessel, or small vessel vasculitis. Learn about the signs and symptoms of vasculitis such as purpura, bloody stool and urine, and bruits.", "slug": "what-is-vasculitis", "kind": "Video", "video_id": "qMaVLzWnS80", "keywords": "", "youtube_id": "qMaVLzWnS80", "readable_id": "what-is-vasculitis"}, "iPwrDWQ7hPc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iPwrDWQ7hPc.mp4/iPwrDWQ7hPc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iPwrDWQ7hPc.mp4/iPwrDWQ7hPc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iPwrDWQ7hPc.m3u8/iPwrDWQ7hPc.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/binomial-theorem/", "duration": 795, "id": "iPwrDWQ7hPc", "title": "Binomial theorem", "format": "mp4", "description": "", "slug": "binomial-theorem", "kind": "Video", "video_id": "iPwrDWQ7hPc", "keywords": "", "youtube_id": "iPwrDWQ7hPc", "readable_id": "binomial-theorem"}, "rEiLOB4FulY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rEiLOB4FulY.mp4/rEiLOB4FulY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rEiLOB4FulY.mp4/rEiLOB4FulY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rEiLOB4FulY.m3u8/rEiLOB4FulY.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/investment-consumption/investment-vs-consumption-1/", "duration": 591, "id": "rEiLOB4FulY", "title": "Investment vs. consumption 1", "format": "mp4", "description": "The difference between investment and consumption.", "slug": "investment-vs-consumption-1", "kind": "Video", "video_id": "rEiLOB4FulY", "keywords": "investment, consumption, speculation", "youtube_id": "rEiLOB4FulY", "readable_id": "investment-vs-consumption-1"}, "0Z63Mv8hGnU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0Z63Mv8hGnU.mp4/0Z63Mv8hGnU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0Z63Mv8hGnU.mp4/0Z63Mv8hGnU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0Z63Mv8hGnU.m3u8/0Z63Mv8hGnU.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-15/", "duration": 340, "id": "0Z63Mv8hGnU", "title": "15 Possible values for expression", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-15", "kind": "Video", "video_id": "0Z63Mv8hGnU", "keywords": "", "youtube_id": "0Z63Mv8hGnU", "readable_id": "sat-getting-ready-2-15"}, "Pfg9FY1Fguc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pfg9FY1Fguc.mp4/Pfg9FY1Fguc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pfg9FY1Fguc.mp4/Pfg9FY1Fguc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pfg9FY1Fguc.m3u8/Pfg9FY1Fguc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/heart-attack-myocardial-infarct-medications/", "duration": 334, "id": "Pfg9FY1Fguc", "title": "Heart attack (myocardial infarct) medications", "format": "mp4", "description": "", "slug": "heart-attack-myocardial-infarct-medications", "kind": "Video", "video_id": "Pfg9FY1Fguc", "keywords": "", "youtube_id": "Pfg9FY1Fguc", "readable_id": "heart-attack-myocardial-infarct-medications"}, "FnrqBgot3jM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FnrqBgot3jM.mp4/FnrqBgot3jM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FnrqBgot3jM.mp4/FnrqBgot3jM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FnrqBgot3jM.m3u8/FnrqBgot3jM.m3u8"}, "duration": 183, "id": "FnrqBgot3jM", "title": "Graphing linear inequalities in two variables example 2", "format": "mp4", "description": "Graphing Linear Inequalities in Two Variables", "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphing-linear-inequalities-in-two-variables-example-2/", "slug": "graphing-linear-inequalities-in-two-variables-example-2", "kind": "Video", "video_id": "FnrqBgot3jM", "keywords": "U05, L2, T1, WE2, Graphing, Linear, Inequalities, in, Two, Variables, CC_39336_A-REI_10, CC_39336_A-REI_12", "youtube_id": "FnrqBgot3jM", "readable_id": "graphing-linear-inequalities-in-two-variables-example-2"}, "VtSjcxdmboM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VtSjcxdmboM.mp4/VtSjcxdmboM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VtSjcxdmboM.mp4/VtSjcxdmboM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VtSjcxdmboM.m3u8/VtSjcxdmboM.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/modern-veneration/", "duration": 278, "id": "VtSjcxdmboM", "title": "A look at modern veneration from the British Museum", "format": "mp4", "description": "An exploration of how veneration is still very much in evidence today -- and not always in expected places. Celebrity bodies, for instance, are revered in the global cultures of the 21st century, similar in many ways to the veneration of holy individuals in medieval Europe.\n", "slug": "modern-veneration", "kind": "Video", "video_id": "VtSjcxdmboM", "keywords": "", "youtube_id": "VtSjcxdmboM", "readable_id": "modern-veneration"}, "vKRMWewGE9A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vKRMWewGE9A.mp4/vKRMWewGE9A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vKRMWewGE9A.mp4/vKRMWewGE9A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vKRMWewGE9A.m3u8/vKRMWewGE9A.m3u8"}, "path": "khan/computing/computer-science/cryptography/crypt/perfect-secrecy/", "duration": 253, "id": "vKRMWewGE9A", "title": "Perfect secrecy", "format": "mp4", "description": "Claude Shannon's idea of perfect secrecy: no amount of computational power can help improve your ability to break the one-time pad", "slug": "perfect-secrecy", "kind": "Video", "video_id": "vKRMWewGE9A", "keywords": "perfect secrecy, claude shannon, encryption, random, cryptography", "youtube_id": "vKRMWewGE9A", "readable_id": "perfect-secrecy"}, "FDJ4D78pcbg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FDJ4D78pcbg.mp4/FDJ4D78pcbg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FDJ4D78pcbg.mp4/FDJ4D78pcbg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FDJ4D78pcbg.m3u8/FDJ4D78pcbg.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/home-buying-process/escrow/", "duration": 634, "id": "FDJ4D78pcbg", "title": "Escrow", "format": "mp4", "description": "", "slug": "escrow", "kind": "Video", "video_id": "FDJ4D78pcbg", "keywords": "", "youtube_id": "FDJ4D78pcbg", "readable_id": "escrow"}, "LhrGS4-Dd9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LhrGS4-Dd9I.mp4/LhrGS4-Dd9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LhrGS4-Dd9I.mp4/LhrGS4-Dd9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LhrGS4-Dd9I.m3u8/LhrGS4-Dd9I.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/proof-opposite-sides-of-parallelogram-congruent/", "duration": 510, "id": "LhrGS4-Dd9I", "title": "Proof: Opposite sides of parallelogram congruent", "format": "mp4", "description": "Proving that a figure is a parallelogram if and only if opposite sides are congruent", "slug": "proof-opposite-sides-of-parallelogram-congruent", "kind": "Video", "video_id": "LhrGS4-Dd9I", "keywords": "geometry", "youtube_id": "LhrGS4-Dd9I", "readable_id": "proof-opposite-sides-of-parallelogram-congruent"}, "Ruc8u1UyL7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ruc8u1UyL7s.mp4/Ruc8u1UyL7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ruc8u1UyL7s.mp4/Ruc8u1UyL7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ruc8u1UyL7s.m3u8/Ruc8u1UyL7s.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/beginners-guide-greece/diadoumenos/", "duration": 50, "id": "Ruc8u1UyL7s", "title": "Victorious athlete: The Vaison Daidoumenos", "format": "mp4", "description": "Roman version of a Greek bronze original of about 440\u2013430 BC, found at Vaison, France.\nKnown as the Daidoumenos (ribbon wearer) this statue shows a triumphant athlete tying a ribbon round his head immediately after a victory. \u00a0Winners in the ancient Olympics were allowed to set up statues of themselves at Olympia. If they won three times they could set up specially commissioned portrait statues which could cost up to ten times the average yearly wage.\n\n\u00a9 Trustees of the British Museum\n", "slug": "diadoumenos", "kind": "Video", "video_id": "Ruc8u1UyL7s", "keywords": "olympics, ancient greece,", "youtube_id": "Ruc8u1UyL7s", "readable_id": "diadoumenos"}, "C38B33ZywWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C38B33ZywWs.mp4/C38B33ZywWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C38B33ZywWs.mp4/C38B33ZywWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C38B33ZywWs.m3u8/C38B33ZywWs.m3u8"}, "duration": 555, "id": "C38B33ZywWs", "title": "Adding/subtracting negative numbers", "format": "mp4", "description": "Adding and subtracting negative numbers", "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-subtract-negatives-pre-alg/adding-subtracting-negative-numbers/", "slug": "adding-subtracting-negative-numbers", "kind": "Video", "video_id": "C38B33ZywWs", "keywords": "Math, negative, numbers, CC_7_NS_1_c", "youtube_id": "C38B33ZywWs", "readable_id": "adding-subtracting-negative-numbers"}, "4y1puNyB9e8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4y1puNyB9e8.mp4/4y1puNyB9e8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4y1puNyB9e8.mp4/4y1puNyB9e8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4y1puNyB9e8.m3u8/4y1puNyB9e8.m3u8"}, "duration": 476, "id": "4y1puNyB9e8", "title": "Expedition Rusinga\u2014uncovering our adaptive origins", "format": "mp4", "description": "On Rusinga Island in Kenya's Lake Victoria, paleontologist Will Harcourt-Smith is leading an effort to recreate the environments inhabited by primitive primates\u2014apes of the genus Proconsul. Studying the adaptive changes of our ancient ancestors helps scientists trace the origins of adaptability in modern humans.\n\nScience Bulletins is a production of the National Center for Science Literacy, Education, and Technology (NCSLET), part of the Department of Education at the American Museum of Natural History.", "path": "expedition-rusinga/", "slug": "expedition-rusinga", "kind": "Video", "video_id": "4y1puNyB9e8", "keywords": "AMNH, evolution, human, origin, Africa", "youtube_id": "4y1puNyB9e8", "readable_id": "expedition-rusinga"}, "6fHorNn2zqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6fHorNn2zqQ.mp4/6fHorNn2zqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6fHorNn2zqQ.mp4/6fHorNn2zqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6fHorNn2zqQ.m3u8/6fHorNn2zqQ.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/monet-les-nymph-as-the-water-lilies-1918-26/", "duration": 382, "id": "6fHorNn2zqQ", "title": "Monet, Water Lilies", "format": "mp4", "description": "Claude Monet, Les Nymph\u00e9as (The Water Lilies), suite of paintings on permanent exhibition at the Mus\u00e9e de l'Orangerie in Paris: Room 1: Morning, oil on two canvas panels, 200 x 425 cm, c. 1918-26 Clouds, oil on three canvas panels, 200 x 1275 cm, c. 1918-26 Green Highlights, oil on two canvas panels, 200 x 850 cm, c. 1918-26 Sunset, oil on canvas, 200 x 600 cm, c. 1918-26 Room 2: Reflection of Trees, oil on two canvas panels, 200 x 850 cm, c. 1918-26 The Morning Light, the willows, oil on three canvas panels, 200 x 1275 cm, c. 1918-26 The Morning Willows, oil on three canvas panels, 200 x 1275 cm, c. 1918-26 The Two Willows, oil on four canvas panels, 200 x 1700 cm, c. 1918-26 Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "monet-les-nymph-as-the-water-lilies-1918-26", "kind": "Video", "video_id": "6fHorNn2zqQ", "keywords": "Monet, Water Lilies, Orangerie, Paris, Impressionism, Smarthistory, Art History, Claude Monet painting", "youtube_id": "6fHorNn2zqQ", "readable_id": "monet-les-nymph-as-the-water-lilies-1918-26"}, "KvvFTPsZxU4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KvvFTPsZxU4.mp4/KvvFTPsZxU4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KvvFTPsZxU4.mp4/KvvFTPsZxU4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KvvFTPsZxU4.m3u8/KvvFTPsZxU4.m3u8"}, "duration": 291, "id": "KvvFTPsZxU4", "title": "Alternate formula for sum of n squares", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/alternate-sum-of-n-squares-formula/", "slug": "alternate-sum-of-n-squares-formula", "kind": "Video", "video_id": "KvvFTPsZxU4", "keywords": "", "youtube_id": "KvvFTPsZxU4", "readable_id": "alternate-sum-of-n-squares-formula"}, "AN2DJxMLFOw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AN2DJxMLFOw.mp4/AN2DJxMLFOw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AN2DJxMLFOw.mp4/AN2DJxMLFOw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AN2DJxMLFOw.m3u8/AN2DJxMLFOw.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/rockburne-drawing/", "duration": 236, "id": "AN2DJxMLFOw", "title": "Dorothea Rockburne: Drawing Which Makes Itself", "format": "mp4", "description": "Contemporary artist Dorothea Rockburne talks about mathematics, magic, and materials. To learn about how art changes over time, enroll in one of MoMA's courses online.", "slug": "rockburne-drawing", "kind": "Video", "video_id": "AN2DJxMLFOw", "keywords": "", "youtube_id": "AN2DJxMLFOw", "readable_id": "rockburne-drawing"}, "-6XBnjFrWBg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-6XBnjFrWBg.mp4/-6XBnjFrWBg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-6XBnjFrWBg.mp4/-6XBnjFrWBg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-6XBnjFrWBg.m3u8/-6XBnjFrWBg.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/american-progress-in-the-pacific-in-1944/", "duration": 455, "id": "-6XBnjFrWBg", "title": "American progress in the Pacific in 1944", "format": "mp4", "description": "In 1944, the Americans (and Allies) make even more progress in the Pacific. By the end of the year, they have taken positions that put them within bombing range of Japan.", "slug": "american-progress-in-the-pacific-in-1944", "kind": "Video", "video_id": "-6XBnjFrWBg", "keywords": "", "youtube_id": "-6XBnjFrWBg", "readable_id": "american-progress-in-the-pacific-in-1944"}, "x2V_Lz6AWEk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x2V_Lz6AWEk.mp4/x2V_Lz6AWEk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x2V_Lz6AWEk.mp4/x2V_Lz6AWEk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x2V_Lz6AWEk.m3u8/x2V_Lz6AWEk.m3u8"}, "duration": 29, "id": "x2V_Lz6AWEk", "title": "Tracing a magnetic field", "format": "mp4", "description": "A compass will align with the lines of force around a magnet. How could you do this in 3 dimensions?", "path": "khan/science/discoveries-projects/discoveries/magnetic-fields/tracing-magnetic-field/", "slug": "tracing-magnetic-field", "kind": "Video", "video_id": "x2V_Lz6AWEk", "keywords": "magnetic field", "youtube_id": "x2V_Lz6AWEk", "readable_id": "tracing-magnetic-field"}, "PC_FoyewoIs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PC_FoyewoIs.mp4/PC_FoyewoIs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PC_FoyewoIs.mp4/PC_FoyewoIs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PC_FoyewoIs.m3u8/PC_FoyewoIs.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/copy-of-cc-6th-coordinate-plane/coordinate-plane-word-problems-exercise/", "duration": 287, "id": "PC_FoyewoIs", "title": "Coordinate plane: word problem exercise", "format": "mp4", "description": "In this word problem, we need to plot the ordered pairs and then figure out the difference in the y coodinate between the two. This will give us our answer!", "slug": "coordinate-plane-word-problems-exercise", "kind": "Video", "video_id": "PC_FoyewoIs", "keywords": "", "youtube_id": "PC_FoyewoIs", "readable_id": "coordinate-plane-word-problems-exercise"}, "Zqt3btS1FwE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zqt3btS1FwE.mp4/Zqt3btS1FwE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zqt3btS1FwE.mp4/Zqt3btS1FwE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zqt3btS1FwE.m3u8/Zqt3btS1FwE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/photon-energy/", "duration": 558, "id": "Zqt3btS1FwE", "title": "Photon Energy E=hf", "format": "mp4", "description": "", "slug": "photon-energy", "kind": "Video", "video_id": "Zqt3btS1FwE", "keywords": "", "youtube_id": "Zqt3btS1FwE", "readable_id": "photon-energy"}, "WNZf4ip_R9s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WNZf4ip_R9s.mp4/WNZf4ip_R9s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WNZf4ip_R9s.mp4/WNZf4ip_R9s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WNZf4ip_R9s.m3u8/WNZf4ip_R9s.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/differences-in-translation-between-prokaryotes-and-eukaryotes/", "duration": 396, "id": "WNZf4ip_R9s", "title": "Differences in translation between prokaryotes and eukaryotes", "format": "mp4", "description": "", "slug": "differences-in-translation-between-prokaryotes-and-eukaryotes", "kind": "Video", "video_id": "WNZf4ip_R9s", "keywords": "", "youtube_id": "WNZf4ip_R9s", "readable_id": "differences-in-translation-between-prokaryotes-and-eukaryotes"}, "ucqaqTR6EK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ucqaqTR6EK8.mp4/ucqaqTR6EK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ucqaqTR6EK8.mp4/ucqaqTR6EK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ucqaqTR6EK8.m3u8/ucqaqTR6EK8.m3u8"}, "duration": 718, "id": "ucqaqTR6EK8", "title": "GMAT: Math 26", "format": "mp4", "description": "133-137, pg. 170", "path": "khan/test-prep/gmat/problem-solving/gmat-math-26/", "slug": "gmat-math-26", "kind": "Video", "video_id": "ucqaqTR6EK8", "keywords": "GMAT, Math, problem, solving", "youtube_id": "ucqaqTR6EK8", "readable_id": "gmat-math-26"}, "VIVIegSt81k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VIVIegSt81k.mp4/VIVIegSt81k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VIVIegSt81k.mp4/VIVIegSt81k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VIVIegSt81k.m3u8/VIVIegSt81k.m3u8"}, "duration": 248, "id": "VIVIegSt81k", "title": "Hexaflexagons", "format": "mp4", "description": "Hooraaaay flexagons! Next hexaflexagon video in one week. Happy October!More info coming soon.", "path": "khan/math/recreational-math/vi-hart/hexaflexagons/hexaflexagons/", "slug": "hexaflexagons", "kind": "Video", "video_id": "VIVIegSt81k", "keywords": "", "youtube_id": "VIVIegSt81k", "readable_id": "hexaflexagons"}, "BaYuvxbrCds": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BaYuvxbrCds.mp4/BaYuvxbrCds.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BaYuvxbrCds.mp4/BaYuvxbrCds.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BaYuvxbrCds.m3u8/BaYuvxbrCds.m3u8"}, "duration": 298, "id": "BaYuvxbrCds", "title": "Determining the line of reflection", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/hs-geo-reflections/determining-the-line-of-reflection/", "slug": "determining-the-line-of-reflection", "kind": "Video", "video_id": "BaYuvxbrCds", "keywords": "", "youtube_id": "BaYuvxbrCds", "readable_id": "determining-the-line-of-reflection"}, "2dbasvm3iG0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2dbasvm3iG0.mp4/2dbasvm3iG0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2dbasvm3iG0.mp4/2dbasvm3iG0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2dbasvm3iG0.m3u8/2dbasvm3iG0.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/comparing-fractions-pre-alg/comparing-fractions-2/", "duration": 428, "id": "2dbasvm3iG0", "title": "Comparing fractions with different denominators", "format": "mp4", "description": "Comparing fractions? Try simplifying them first then finding a common denominator. The result are two fractions you can really compare.", "slug": "comparing-fractions-2", "kind": "Video", "video_id": "2dbasvm3iG0", "keywords": "u2_l1_t5_we2, Comparing, Fractions, CC_3_NF_3, CC_3_NF_3_a, CC_3_NF_3_b, CC_6_NS_4", "youtube_id": "2dbasvm3iG0", "readable_id": "comparing-fractions-2"}, "-6hoDNZoV5g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-6hoDNZoV5g.mp4/-6hoDNZoV5g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-6hoDNZoV5g.mp4/-6hoDNZoV5g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-6hoDNZoV5g.m3u8/-6hoDNZoV5g.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/meaning-and-language/", "duration": 669, "id": "-6hoDNZoV5g", "title": "Language: Meaning and Language", "format": "mp4", "description": "Kate\u00a0explores the connection between language and meaning. This video introduces two ways in which philosophers have answered the question 'what makes a sound or some marks meaningful?'.\u00a0\n\nSpeaker: Dr. Kate Ritche, \u00a0Assistant Professor of Philosophy, City College of New York", "slug": "meaning-and-language", "kind": "Video", "video_id": "-6hoDNZoV5g", "keywords": "", "youtube_id": "-6hoDNZoV5g", "readable_id": "meaning-and-language"}, "yOAlbFVKGfk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yOAlbFVKGfk.mp4/yOAlbFVKGfk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yOAlbFVKGfk.mp4/yOAlbFVKGfk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yOAlbFVKGfk.m3u8/yOAlbFVKGfk.m3u8"}, "path": "khan/humanities/art-1010/wwi-dada/dada1/marcel-duchamp-boite-en-valise-the-red-box-series-f-1960/", "duration": 300, "id": "yOAlbFVKGfk", "title": "Duchamp, Boite-en-valise (the red box), series F", "format": "mp4", "description": "Marcel Duchamp, Boite-en-valise (the red box), series F, 1960 (Portland Art Museum) Speakers: Bruce Guenther, Dr. Beth Harris", "slug": "marcel-duchamp-boite-en-valise-the-red-box-series-f-1960", "kind": "Video", "video_id": "yOAlbFVKGfk", "keywords": "art history, duchamp, ready-mades, ready-made, dada, Smarthistory", "youtube_id": "yOAlbFVKGfk", "readable_id": "marcel-duchamp-boite-en-valise-the-red-box-series-f-1960"}, "IKRT-boQTr0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IKRT-boQTr0.mp4/IKRT-boQTr0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IKRT-boQTr0.mp4/IKRT-boQTr0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IKRT-boQTr0.m3u8/IKRT-boQTr0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/pregnancy-physiology-i/", "duration": 624, "id": "IKRT-boQTr0", "title": "Pregnancy physiology I", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "pregnancy-physiology-i", "kind": "Video", "video_id": "IKRT-boQTr0", "keywords": "", "youtube_id": "IKRT-boQTr0", "readable_id": "pregnancy-physiology-i"}, "TKI1DaquKnI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TKI1DaquKnI.mp4/TKI1DaquKnI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TKI1DaquKnI.mp4/TKI1DaquKnI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TKI1DaquKnI.m3u8/TKI1DaquKnI.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/how-did-first-humans-live/bhp-from-foraging-to-food-shopping/", "duration": 252, "id": "TKI1DaquKnI", "title": "From Foraging to Food Shopping", "format": "mp4", "description": "What was it like for hunter-gathers? What were their favorite foods that they would go the extra mile to get their hands on? How are decisions like that different from the decisions we make today?", "slug": "bhp-from-foraging-to-food-shopping", "kind": "Video", "video_id": "TKI1DaquKnI", "keywords": "", "youtube_id": "TKI1DaquKnI", "readable_id": "bhp-from-foraging-to-food-shopping"}, "leDYnoNSvD4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/leDYnoNSvD4.mp4/leDYnoNSvD4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/leDYnoNSvD4.mp4/leDYnoNSvD4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/leDYnoNSvD4.m3u8/leDYnoNSvD4.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-count-object-topic/counting-in-scenes/", "duration": 73, "id": "leDYnoNSvD4", "title": "Counting in pictures", "format": "mp4", "description": "Learn how to count the number of objects you see in pictures.", "slug": "counting-in-scenes", "kind": "Video", "video_id": "leDYnoNSvD4", "keywords": "", "youtube_id": "leDYnoNSvD4", "readable_id": "counting-in-scenes"}, "peQsBg9P4ms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/peQsBg9P4ms.mp4/peQsBg9P4ms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/peQsBg9P4ms.mp4/peQsBg9P4ms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/peQsBg9P4ms.m3u8/peQsBg9P4ms.m3u8"}, "path": "khan/science/organic-chemistry/stereochemistry-topic/chirality-r-s-system/r-s-cahn-ingold-prelog-naming-system-example-2/", "duration": 668, "id": "peQsBg9P4ms", "title": "R,S (Cahn-Ingold-Prelog) naming system example 2", "format": "mp4", "description": "R,S (Cahn-Ingold-Prelog) Naming System Example 2", "slug": "r-s-cahn-ingold-prelog-naming-system-example-2", "kind": "Video", "video_id": "peQsBg9P4ms", "keywords": "R, S Cahn Ingold Prelog Naming System Example 2", "youtube_id": "peQsBg9P4ms", "readable_id": "r-s-cahn-ingold-prelog-naming-system-example-2"}, "O3jvUZ8wvZs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O3jvUZ8wvZs.mp4/O3jvUZ8wvZs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O3jvUZ8wvZs.mp4/O3jvUZ8wvZs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O3jvUZ8wvZs.m3u8/O3jvUZ8wvZs.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/we-converting-degrees-to-radians/", "duration": 422, "id": "O3jvUZ8wvZs", "title": "Example: Converting degrees to radians", "format": "mp4", "description": "Worked example to help understand how we convert radians to degrees", "slug": "we-converting-degrees-to-radians", "kind": "Video", "video_id": "O3jvUZ8wvZs", "keywords": "radians, degrees", "youtube_id": "O3jvUZ8wvZs", "readable_id": "we-converting-degrees-to-radians"}, "TJgBEI3drUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TJgBEI3drUc.mp4/TJgBEI3drUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TJgBEI3drUc.mp4/TJgBEI3drUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TJgBEI3drUc.m3u8/TJgBEI3drUc.m3u8"}, "duration": 826, "id": "TJgBEI3drUc", "title": "The convolution and the laplace transform", "format": "mp4", "description": "Understanding how the product of the Transforms of two functions relates to their convolution.", "path": "khan/math/differential-equations/laplace-transform/convolution-integral/the-convolution-and-the-laplace-transform/", "slug": "the-convolution-and-the-laplace-transform", "kind": "Video", "video_id": "TJgBEI3drUc", "keywords": "convolution, laplace, differential, equations", "youtube_id": "TJgBEI3drUc", "readable_id": "the-convolution-and-the-laplace-transform"}, "vuGpUFjLaYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vuGpUFjLaYE.mp4/vuGpUFjLaYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vuGpUFjLaYE.mp4/vuGpUFjLaYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vuGpUFjLaYE.m3u8/vuGpUFjLaYE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/photoelectric-effect/", "duration": 624, "id": "vuGpUFjLaYE", "title": "Photoelectric effect", "format": "mp4", "description": "", "slug": "photoelectric-effect", "kind": "Video", "video_id": "vuGpUFjLaYE", "keywords": "", "youtube_id": "vuGpUFjLaYE", "readable_id": "photoelectric-effect"}, "lR8yK_aKb2Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lR8yK_aKb2Q.mp4/lR8yK_aKb2Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lR8yK_aKb2Q.mp4/lR8yK_aKb2Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lR8yK_aKb2Q.m3u8/lR8yK_aKb2Q.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/printmaking/moma-relief-printmaking/", "duration": 110, "id": "lR8yK_aKb2Q", "title": "Introduction to relief printmaking", "format": "mp4", "description": "Discover how artists create different effects with linocuts and woodcuts. Did you know that MoMA offers studio courses online? Check out the list of offerings including online courses on collage and painting techniques.", "slug": "moma-relief-printmaking", "kind": "Video", "video_id": "lR8yK_aKb2Q", "keywords": "", "youtube_id": "lR8yK_aKb2Q", "readable_id": "moma-relief-printmaking"}, "uKu566g3j7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uKu566g3j7g.mp4/uKu566g3j7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uKu566g3j7g.mp4/uKu566g3j7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uKu566g3j7g.m3u8/uKu566g3j7g.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/fatty-acid-oxidation-part-i/", "duration": 559, "id": "uKu566g3j7g", "title": "Fatty Acid Oxidation - Part I", "format": "mp4", "description": "1D: What are the three phases required for fatty acid oxidation? Where in the cell do these reactions take place? How is this process regulated?", "slug": "fatty-acid-oxidation-part-i", "kind": "Video", "video_id": "uKu566g3j7g", "keywords": "", "youtube_id": "uKu566g3j7g", "readable_id": "fatty-acid-oxidation-part-i"}, "P1Lw1NVcI8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P1Lw1NVcI8o.mp4/P1Lw1NVcI8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P1Lw1NVcI8o.mp4/P1Lw1NVcI8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P1Lw1NVcI8o.m3u8/P1Lw1NVcI8o.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/gustav-klimt-death-and-life-1910/", "duration": 215, "id": "P1Lw1NVcI8o", "title": "Klimt, Death and Life", "format": "mp4", "description": "Gustav Klimt, Death and Life, 1910, reworked 1915, oil on canvas, 178 x 198 cm (Leopold Museum, Vienna)", "slug": "gustav-klimt-death-and-life-1910", "kind": "Video", "video_id": "P1Lw1NVcI8o", "keywords": "Klimt, death, life, GAP, Google Art Project, Smarthistory, Khan Academy, Art History, Vienna, Secession, Art Nouveau, Allegory, Gustav Klimt, Death and Life, 1910, 1915", "youtube_id": "P1Lw1NVcI8o", "readable_id": "gustav-klimt-death-and-life-1910"}, "HO1dsNrzE58": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HO1dsNrzE58.mp4/HO1dsNrzE58.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HO1dsNrzE58.mp4/HO1dsNrzE58.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HO1dsNrzE58.m3u8/HO1dsNrzE58.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-of-a-strong-acid-with-a-strong-base-continued/", "duration": 617, "id": "HO1dsNrzE58", "title": "Titration of a strong acid with a strong base (continued)", "format": "mp4", "description": "", "slug": "titration-of-a-strong-acid-with-a-strong-base-continued", "kind": "Video", "video_id": "HO1dsNrzE58", "keywords": "", "youtube_id": "HO1dsNrzE58", "readable_id": "titration-of-a-strong-acid-with-a-strong-base-continued"}, "tjGGxA7AF9E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tjGGxA7AF9E.mp4/tjGGxA7AF9E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tjGGxA7AF9E.mp4/tjGGxA7AF9E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tjGGxA7AF9E.m3u8/tjGGxA7AF9E.m3u8"}, "duration": 464, "id": "tjGGxA7AF9E", "title": "Flu shift and drift", "format": "mp4", "description": "Learn how Type B Influenza virus has genetic drift, whereas Type A Influenza virus has genetic drift AND shift. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/flu-shift-and-drift/", "slug": "flu-shift-and-drift", "kind": "Video", "video_id": "tjGGxA7AF9E", "keywords": "", "youtube_id": "tjGGxA7AF9E", "readable_id": "flu-shift-and-drift"}, "RRGwdfQV8kU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RRGwdfQV8kU.mp4/RRGwdfQV8kU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RRGwdfQV8kU.mp4/RRGwdfQV8kU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RRGwdfQV8kU.m3u8/RRGwdfQV8kU.m3u8"}, "duration": 241, "id": "RRGwdfQV8kU", "title": "Theories of language development: Nativist, learning, interactionist", "format": "mp4", "description": "Learn about the nativist, learning, and interactionist theories of human language development. By Carole Yue. ", "path": "khan/test-prep/mcat/processing-the-environment/language/theories-of-language-development/", "slug": "theories-of-language-development", "kind": "Video", "video_id": "RRGwdfQV8kU", "keywords": "language, nativist, learning, interactionist", "youtube_id": "RRGwdfQV8kU", "readable_id": "theories-of-language-development"}, "6g3DPg2HqGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6g3DPg2HqGw.mp4/6g3DPg2HqGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6g3DPg2HqGw.mp4/6g3DPg2HqGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6g3DPg2HqGw.m3u8/6g3DPg2HqGw.m3u8"}, "duration": 764, "id": "6g3DPg2HqGw", "title": "IIT JEE circle hyperbola intersection", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 46 Circle Hyperbola Intersection", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-circle-hyperbola-intersection/", "slug": "iit-jee-circle-hyperbola-intersection", "kind": "Video", "video_id": "6g3DPg2HqGw", "keywords": "2010, IIT, JEE, Paper, Problem, 46, Circle, Hyperbola, Intersection", "youtube_id": "6g3DPg2HqGw", "readable_id": "iit-jee-circle-hyperbola-intersection"}, "LXrPdFn7Gn4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LXrPdFn7Gn4.mp4/LXrPdFn7Gn4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LXrPdFn7Gn4.mp4/LXrPdFn7Gn4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LXrPdFn7Gn4.m3u8/LXrPdFn7Gn4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/cap-util-inflation/inflation-deflation-capacity-utilization/", "duration": 752, "id": "LXrPdFn7Gn4", "title": "Inflation, deflation, and capacity utilization", "format": "mp4", "description": "A discussion of inflation and deflation", "slug": "inflation-deflation-capacity-utilization", "kind": "Video", "video_id": "LXrPdFn7Gn4", "keywords": "inflation, money, supply, deflation", "youtube_id": "LXrPdFn7Gn4", "readable_id": "inflation-deflation-capacity-utilization"}, "n_npNIK1kMc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n_npNIK1kMc.mp4/n_npNIK1kMc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n_npNIK1kMc.mp4/n_npNIK1kMc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n_npNIK1kMc.m3u8/n_npNIK1kMc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/magnetism-mcat/magnetism-part-1/", "duration": 645, "id": "n_npNIK1kMc", "title": "Magnetism - Part 1", "format": "mp4", "description": "", "slug": "magnetism-part-1", "kind": "Video", "video_id": "n_npNIK1kMc", "keywords": "", "youtube_id": "n_npNIK1kMc", "readable_id": "magnetism-part-1"}, "F9SMvVtKxXM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F9SMvVtKxXM.mp4/F9SMvVtKxXM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F9SMvVtKxXM.mp4/F9SMvVtKxXM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F9SMvVtKxXM.m3u8/F9SMvVtKxXM.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/ming-dynasty/eternity/", "duration": 146, "id": "F9SMvVtKxXM", "title": "\"Eternity\" with Maxwell K. Hearn", "format": "mp4", "description": "Met curator Maxwell K. Hearn on emptiness in Fang Congyi\u2019s Cloudy Mountains.\n\nFang Congyi, a Daoist priest from Jiangxi, traveled extensively in the north before settling down at the seat of the Orthodox Unity Daoist church, the Shangqing Temple on Mount Longhu (Dragon Tiger Mountain), Jiangxi province. Imbued with Daoist mysticism, he painted landscapes that \"turned the shapeless into shapes and returned things that have shapes to the shapeless.\"\n\nAccording to Daoist geomantic beliefs, a powerful life energy pulsates through mountain ranges and watercourses in patterns known as longmo (dragon veins). In Cloudy Mountains, the painter's kinetic brushwork, wound up as if in a whirlwind, charges the mountains with an expressive liveliness that defies their physical structure. The great mountain range, weightless and dematerialized, resembles a dragon ascending into the clouds.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit \"Find an Educator Resource.\u201d\n", "slug": "eternity", "kind": "Video", "video_id": "F9SMvVtKxXM", "keywords": "nature, painting, paper, transcendence, Asia", "youtube_id": "F9SMvVtKxXM", "readable_id": "eternity"}, "PEeUTQ0Gri8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PEeUTQ0Gri8.mp4/PEeUTQ0Gri8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PEeUTQ0Gri8.mp4/PEeUTQ0Gri8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PEeUTQ0Gri8.m3u8/PEeUTQ0Gri8.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-counting/counting-in-order/", "duration": 118, "id": "PEeUTQ0Gri8", "title": "Counting in order", "format": "mp4", "description": "Learn how to count without making mistakes.", "slug": "counting-in-order", "kind": "Video", "video_id": "PEeUTQ0Gri8", "keywords": "", "youtube_id": "PEeUTQ0Gri8", "readable_id": "counting-in-order"}, "q8cYGh-K6Ok": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q8cYGh-K6Ok.mp4/q8cYGh-K6Ok.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q8cYGh-K6Ok.mp4/q8cYGh-K6Ok.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q8cYGh-K6Ok.m3u8/q8cYGh-K6Ok.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/gossaert-saint-luke-painting-the-madonna/", "duration": 309, "id": "q8cYGh-K6Ok", "title": "Gossaert, Saint Luke Painting the Madonna", "format": "mp4", "description": "Jan Gossaert, Saint Luke Painting the Madonna, c. 1515-25 (Kunsthistorisches Museum, Vienna) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "gossaert-saint-luke-painting-the-madonna", "kind": "Video", "video_id": "q8cYGh-K6Ok", "keywords": "art history, smarthistory, Gossaert, Northern Renaissance, Protestant Reformation,", "youtube_id": "q8cYGh-K6Ok", "readable_id": "gossaert-saint-luke-painting-the-madonna"}, "wHPGFPIcILM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wHPGFPIcILM.mp4/wHPGFPIcILM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wHPGFPIcILM.mp4/wHPGFPIcILM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wHPGFPIcILM.m3u8/wHPGFPIcILM.m3u8"}, "duration": 445, "id": "wHPGFPIcILM", "title": "Consumption function with income dependent taxes", "format": "mp4", "description": "Thinking about a consumption function where taxes are also a function of income (which is more realistic than constant taxes)", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/consumption-function/consumption-function-with-income-dependent-taxes/", "slug": "consumption-function-with-income-dependent-taxes", "kind": "Video", "video_id": "wHPGFPIcILM", "keywords": "macroeconomics", "youtube_id": "wHPGFPIcILM", "readable_id": "consumption-function-with-income-dependent-taxes"}, "IniG1KkPS2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IniG1KkPS2c.mp4/IniG1KkPS2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IniG1KkPS2c.mp4/IniG1KkPS2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IniG1KkPS2c.m3u8/IniG1KkPS2c.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-14-fed-funds-rate/", "duration": 702, "id": "IniG1KkPS2c", "title": "Banking 14: Fed funds rate", "format": "mp4", "description": "How open market operations effect the rate at which banks lend to each other overnight.", "slug": "banking-14-fed-funds-rate", "kind": "Video", "video_id": "IniG1KkPS2c", "keywords": "federal, reserve, bernanke, target, open, market, operations", "youtube_id": "IniG1KkPS2c", "readable_id": "banking-14-fed-funds-rate"}, "SYkmadc2wOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SYkmadc2wOI.mp4/SYkmadc2wOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SYkmadc2wOI.mp4/SYkmadc2wOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SYkmadc2wOI.m3u8/SYkmadc2wOI.m3u8"}, "duration": 316, "id": "SYkmadc2wOI", "title": "Conversion between metric units", "format": "mp4", "description": "Conversion between metric units", "path": "khan/math/pre-algebra/rates-and-ratios/metric-system-tutorial/conversion-between-metric-units/", "slug": "conversion-between-metric-units", "kind": "Video", "video_id": "SYkmadc2wOI", "keywords": "U06_L2_T1_we2, Conversion, between, metric, units, CC_4_MD_1, CC_5_MD_1, CC_6_RP_3_d", "youtube_id": "SYkmadc2wOI", "readable_id": "conversion-between-metric-units"}, "pmagWO-kQ0M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pmagWO-kQ0M.mp4/pmagWO-kQ0M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pmagWO-kQ0M.mp4/pmagWO-kQ0M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pmagWO-kQ0M.m3u8/pmagWO-kQ0M.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/surface-tension-and-adhesion/", "duration": 398, "id": "pmagWO-kQ0M", "title": "Surface Tension and Adhesion", "format": "mp4", "description": "", "slug": "surface-tension-and-adhesion", "kind": "Video", "video_id": "pmagWO-kQ0M", "keywords": "", "youtube_id": "pmagWO-kQ0M", "readable_id": "surface-tension-and-adhesion"}, "YMzNkNoFzG4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YMzNkNoFzG4.mp4/YMzNkNoFzG4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YMzNkNoFzG4.mp4/YMzNkNoFzG4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YMzNkNoFzG4.m3u8/YMzNkNoFzG4.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/biological-explanations-of-social-behavior-in-animals/evolutionary-game-theory/", "duration": 277, "id": "YMzNkNoFzG4", "title": "Evolutionary game theory", "format": "mp4", "description": "", "slug": "evolutionary-game-theory", "kind": "Video", "video_id": "YMzNkNoFzG4", "keywords": "", "youtube_id": "YMzNkNoFzG4", "readable_id": "evolutionary-game-theory"}, "UFRAHIvCtzg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UFRAHIvCtzg.mp4/UFRAHIvCtzg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UFRAHIvCtzg.mp4/UFRAHIvCtzg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UFRAHIvCtzg.m3u8/UFRAHIvCtzg.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-rotations/defining-rotation-example/", "duration": 166, "id": "UFRAHIvCtzg", "title": "Defining rotation example", "format": "mp4", "description": "Defining rotation example", "slug": "defining-rotation-example", "kind": "Video", "video_id": "UFRAHIvCtzg", "keywords": "", "youtube_id": "UFRAHIvCtzg", "readable_id": "defining-rotation-example"}, "o_vMb655dFk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o_vMb655dFk.mp4/o_vMb655dFk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o_vMb655dFk.mp4/o_vMb655dFk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o_vMb655dFk.m3u8/o_vMb655dFk.m3u8"}, "duration": 268, "id": "o_vMb655dFk", "title": "Calculus BC 2008 2d", "format": "mp4", "description": "Part 2d of the 2008 Calculus BC exam free-response section", "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/calculus-bc-2008-2d/", "slug": "calculus-bc-2008-2d", "kind": "Video", "video_id": "o_vMb655dFk", "keywords": "calculus", "youtube_id": "o_vMb655dFk", "readable_id": "calculus-bc-2008-2d"}, "W74G5sNJMuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W74G5sNJMuA.mp4/W74G5sNJMuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W74G5sNJMuA.mp4/W74G5sNJMuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W74G5sNJMuA.m3u8/W74G5sNJMuA.m3u8"}, "duration": 706, "id": "W74G5sNJMuA", "title": "2000 Years of Chinese History! The Mandate of Heaven and Confucius", "format": "mp4", "description": "In which John introduces you to quite a lot of Chinese history by discussing the complicated relationship between the Confucian scholars who wrote Chinese history and the emperors (and empress) who made it. Included is a brief introduction to all the dynasties in Chinese history and an introduction to Confucius and the Confucian emphasis on filial piety, the role the mandate of heaven played in organizing China, and how China became the first modern state.", "path": "khan/humanities/history/crashcourse-worldhistory/so-thats-where-that-comes-from-2/crash-course-world-history-07/", "slug": "crash-course-world-history-07", "kind": "Video", "video_id": "W74G5sNJMuA", "keywords": "crash course", "youtube_id": "W74G5sNJMuA", "readable_id": "crash-course-world-history-07"}, "t__jNTOwePU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t__jNTOwePU.mp4/t__jNTOwePU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t__jNTOwePU.mp4/t__jNTOwePU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t__jNTOwePU.m3u8/t__jNTOwePU.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-essays/avoiding-common-admissions-essay-mistakes/", "duration": 214, "id": "t__jNTOwePU", "title": "Avoiding common admissions essay mistakes", "format": "mp4", "description": "", "slug": "avoiding-common-admissions-essay-mistakes", "kind": "Video", "video_id": "t__jNTOwePU", "keywords": "", "youtube_id": "t__jNTOwePU", "readable_id": "avoiding-common-admissions-essay-mistakes"}, "RQpBj8ebbNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RQpBj8ebbNY.mp4/RQpBj8ebbNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RQpBj8ebbNY.mp4/RQpBj8ebbNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RQpBj8ebbNY.m3u8/RQpBj8ebbNY.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/how-do-we-make-blood-clots/", "duration": 705, "id": "RQpBj8ebbNY", "title": "How do we make blood clots?", "format": "mp4", "description": "", "slug": "how-do-we-make-blood-clots", "kind": "Video", "video_id": "RQpBj8ebbNY", "keywords": "", "youtube_id": "RQpBj8ebbNY", "readable_id": "how-do-we-make-blood-clots"}, "3UiffIzCNPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3UiffIzCNPQ.mp4/3UiffIzCNPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3UiffIzCNPQ.mp4/3UiffIzCNPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3UiffIzCNPQ.m3u8/3UiffIzCNPQ.m3u8"}, "path": "khan/humanities/art-asia/korea-japan/korean-art/guardian-king-of-west/", "duration": 197, "id": "3UiffIzCNPQ", "title": "Guardian King of the West", "format": "mp4", "description": "In this video, Buddhist monk artists, Seol-min (formerly known as Jae-u) and Myung Chun discuss Korean Buddhist art and paint the Guardian King of the West, which is now in the Asian Art Museum's collection. This video also includes footage from a symbolic eye-opening ceremony, which took place at the museum on December 20, 2003. Learn more about Korean Buddhism on the Asian Art Museum's education website.\u00a0", "slug": "guardian-king-of-west", "kind": "Video", "video_id": "3UiffIzCNPQ", "keywords": "", "youtube_id": "3UiffIzCNPQ", "readable_id": "guardian-king-of-west"}, "S6d5oAS-jUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S6d5oAS-jUc.mp4/S6d5oAS-jUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S6d5oAS-jUc.mp4/S6d5oAS-jUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S6d5oAS-jUc.m3u8/S6d5oAS-jUc.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-framing-christinas-world/", "duration": 191, "id": "S6d5oAS-jUc", "title": "Framing \"Christina's World\" by Andrew Wyeth", "format": "mp4", "description": "Though we might not notice it, frames affect how we see a painting. To learn about how art changes over time, enroll in one of MoMA's courses online.", "slug": "moma-framing-christinas-world", "kind": "Video", "video_id": "S6d5oAS-jUc", "keywords": "", "youtube_id": "S6d5oAS-jUc", "readable_id": "moma-framing-christinas-world"}, "tRuvXP-H164": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tRuvXP-H164.mp4/tRuvXP-H164.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tRuvXP-H164.mp4/tRuvXP-H164.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tRuvXP-H164.m3u8/tRuvXP-H164.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/avrt-avnrt/", "duration": 643, "id": "tRuvXP-H164", "title": "Atrioventricular reentrant tachycardia (AVRT) & AV nodal reentrant tachycardia (AVNRT)", "format": "mp4", "description": "", "slug": "avrt-avnrt", "kind": "Video", "video_id": "tRuvXP-H164", "keywords": "", "youtube_id": "tRuvXP-H164", "readable_id": "avrt-avnrt"}, "T7j0V1AHvBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T7j0V1AHvBU.mp4/T7j0V1AHvBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T7j0V1AHvBU.mp4/T7j0V1AHvBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T7j0V1AHvBU.m3u8/T7j0V1AHvBU.m3u8"}, "path": "khan/humanities/medieval-world/medieval-europe/chivalry-middle-ages/", "duration": 158, "id": "T7j0V1AHvBU", "title": "Chivalry in the Middle Ages", "format": "mp4", "description": "Chivalric customs arose from the medieval knight's code of conduct, and were gradually adopted by aristocrats and society as a whole. Learn about the elements of the code and some surprising early applications, as depicted in illuminated manuscripts. Love art? Follow us on Google+", "slug": "chivalry-middle-ages", "kind": "Video", "video_id": "T7j0V1AHvBU", "keywords": "", "youtube_id": "T7j0V1AHvBU", "readable_id": "chivalry-middle-ages"}, "ExJC8AoAczE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ExJC8AoAczE.mp4/ExJC8AoAczE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ExJC8AoAczE.mp4/ExJC8AoAczE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ExJC8AoAczE.m3u8/ExJC8AoAczE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/septic-shock-diagnosis-and-treatment/", "duration": 472, "id": "ExJC8AoAczE", "title": "Septic shock: Diagnosis and treatment", "format": "mp4", "description": "", "slug": "septic-shock-diagnosis-and-treatment", "kind": "Video", "video_id": "ExJC8AoAczE", "keywords": "", "youtube_id": "ExJC8AoAczE", "readable_id": "septic-shock-diagnosis-and-treatment"}, "OZdmaf2R9ys": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OZdmaf2R9ys.mp4/OZdmaf2R9ys.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OZdmaf2R9ys.mp4/OZdmaf2R9ys.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OZdmaf2R9ys.m3u8/OZdmaf2R9ys.m3u8"}, "path": "khan/test-prep/mcat/cells/eukaryotic-cells/lysosomes-and-peroxisomes/", "duration": 343, "id": "OZdmaf2R9ys", "title": "Lysosomes and peroxisomes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "lysosomes-and-peroxisomes", "kind": "Video", "video_id": "OZdmaf2R9ys", "keywords": "", "youtube_id": "OZdmaf2R9ys", "readable_id": "lysosomes-and-peroxisomes"}, "uX1RzoE_9BI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uX1RzoE_9BI.mp4/uX1RzoE_9BI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uX1RzoE_9BI.mp4/uX1RzoE_9BI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uX1RzoE_9BI.m3u8/uX1RzoE_9BI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-asthma/what-is-asthma/", "duration": 612, "id": "uX1RzoE_9BI", "title": "What is asthma?", "format": "mp4", "description": "", "slug": "what-is-asthma", "kind": "Video", "video_id": "uX1RzoE_9BI", "keywords": "", "youtube_id": "uX1RzoE_9BI", "readable_id": "what-is-asthma"}, "OVM68-0YVWI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OVM68-0YVWI.mp4/OVM68-0YVWI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OVM68-0YVWI.mp4/OVM68-0YVWI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OVM68-0YVWI.m3u8/OVM68-0YVWI.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/mendelian-genetics/co-dominance-and-incomplete-dominance/", "duration": 209, "id": "OVM68-0YVWI", "title": "Co-dominance and Incomplete Dominance", "format": "mp4", "description": "Come learn about Co-dominance and incomplete dominance and\u00a0\nhow they differ from complete dominance. By Ross Firestone.\n", "slug": "co-dominance-and-incomplete-dominance", "kind": "Video", "video_id": "OVM68-0YVWI", "keywords": "", "youtube_id": "OVM68-0YVWI", "readable_id": "co-dominance-and-incomplete-dominance"}, "7ww5T7hCdn4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7ww5T7hCdn4.mp4/7ww5T7hCdn4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7ww5T7hCdn4.mp4/7ww5T7hCdn4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7ww5T7hCdn4.m3u8/7ww5T7hCdn4.m3u8"}, "path": "khan/test-prep/mcat/cells/embryology/egg-sperm-and-fertilization/", "duration": 695, "id": "7ww5T7hCdn4", "title": "Egg, sperm, and fertilization", "format": "mp4", "description": "", "slug": "egg-sperm-and-fertilization", "kind": "Video", "video_id": "7ww5T7hCdn4", "keywords": "", "youtube_id": "7ww5T7hCdn4", "readable_id": "egg-sperm-and-fertilization"}, "DhefUahS55o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DhefUahS55o.mp4/DhefUahS55o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DhefUahS55o.mp4/DhefUahS55o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DhefUahS55o.m3u8/DhefUahS55o.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/rembrandt-tulp/", "duration": 362, "id": "DhefUahS55o", "title": "Rembrandt, The Anatomy Lesson of Dr. Tulp", "format": "mp4", "description": "Rembrandt van Rijn, The Anatomy Lesson of Dr. Nicolaes Tulp, 1632, oil on canvas, 169.5 x 216.5 cm, (Mauritshuis, Den Haag). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "rembrandt-tulp", "kind": "Video", "video_id": "DhefUahS55o", "keywords": "Rembrandt, Tulp, surgeons, anatomy, Holland, Netherlands, Golden Age, Mauritshuis, The Hague", "youtube_id": "DhefUahS55o", "readable_id": "rembrandt-tulp"}, "6JFzI1DDyyk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6JFzI1DDyyk.mp4/6JFzI1DDyyk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6JFzI1DDyyk.mp4/6JFzI1DDyyk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6JFzI1DDyyk.m3u8/6JFzI1DDyyk.m3u8"}, "path": "khan/math/probability/descriptive-statistics/old-stats-videos/statistics-variance-of-a-population/", "duration": 743, "id": "6JFzI1DDyyk", "title": "Statistics: Variance of a population", "format": "mp4", "description": "Variance of a population.", "slug": "statistics-variance-of-a-population", "kind": "Video", "video_id": "6JFzI1DDyyk", "keywords": "statistics, variance, standard, deviation, population, CC_6_SP_3, CC_6_SP_5_c, CC_7_SP_1", "youtube_id": "6JFzI1DDyyk", "readable_id": "statistics-variance-of-a-population"}, "S3KMyYYGuPE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S3KMyYYGuPE.mp4/S3KMyYYGuPE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S3KMyYYGuPE.mp4/S3KMyYYGuPE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S3KMyYYGuPE.m3u8/S3KMyYYGuPE.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-complex-root-probability-part-2/", "duration": 504, "id": "S3KMyYYGuPE", "title": "IIT JEE complex root probability (part 2)", "format": "mp4", "description": "2010 Paper 1 problem 31 Math (part 2).avi", "slug": "iit-jee-complex-root-probability-part-2", "kind": "Video", "video_id": "S3KMyYYGuPE", "keywords": "IIT, JEE, Complex, Root, Probability", "youtube_id": "S3KMyYYGuPE", "readable_id": "iit-jee-complex-root-probability-part-2"}, "Lhop0mfeJMQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lhop0mfeJMQ.mp4/Lhop0mfeJMQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lhop0mfeJMQ.mp4/Lhop0mfeJMQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lhop0mfeJMQ.m3u8/Lhop0mfeJMQ.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-26/", "duration": 678, "id": "Lhop0mfeJMQ", "title": "GMAT: Data sufficiency 26", "format": "mp4", "description": "110-111, pg. 287", "slug": "gmat-data-sufficiency-26", "kind": "Video", "video_id": "Lhop0mfeJMQ", "keywords": "gmat, data, sufficiency", "youtube_id": "Lhop0mfeJMQ", "readable_id": "gmat-data-sufficiency-26"}, "Im_XjHgQfW0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Im_XjHgQfW0.mp4/Im_XjHgQfW0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Im_XjHgQfW0.mp4/Im_XjHgQfW0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Im_XjHgQfW0.m3u8/Im_XjHgQfW0.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/stravinsky-firebird/discover-stravinsky-firebird/", "duration": 891, "id": "Im_XjHgQfW0", "title": "Discovering Stravinsky's Firebird: The story and the music", "format": "mp4", "description": "Watch the full performance here (starting at 5:39)\u00a0", "slug": "discover-stravinsky-firebird", "kind": "Video", "video_id": "Im_XjHgQfW0", "keywords": "", "youtube_id": "Im_XjHgQfW0", "readable_id": "discover-stravinsky-firebird"}, "Qt-CWv6HEII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qt-CWv6HEII.mp4/Qt-CWv6HEII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qt-CWv6HEII.mp4/Qt-CWv6HEII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qt-CWv6HEII.m3u8/Qt-CWv6HEII.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/mortgages-tutorial/balloon-payment-mortgage/", "duration": 369, "id": "Qt-CWv6HEII", "title": "Balloon payment mortgage", "format": "mp4", "description": "", "slug": "balloon-payment-mortgage", "kind": "Video", "video_id": "Qt-CWv6HEII", "keywords": "", "youtube_id": "Qt-CWv6HEII", "readable_id": "balloon-payment-mortgage"}, "ZsjfUUJUq9s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZsjfUUJUq9s.mp4/ZsjfUUJUq9s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZsjfUUJUq9s.mp4/ZsjfUUJUq9s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZsjfUUJUq9s.m3u8/ZsjfUUJUq9s.m3u8"}, "duration": 122, "id": "ZsjfUUJUq9s", "title": "Direct variation application", "format": "mp4", "description": "Direct Variation Application", "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/direct-variation-application/", "slug": "direct-variation-application", "kind": "Video", "video_id": "ZsjfUUJUq9s", "keywords": "u15_l3_t1_we4, Direct, Variation, Application, CC_6_EE_2_c, CC_6_EE_9", "youtube_id": "ZsjfUUJUq9s", "readable_id": "direct-variation-application"}, "b9H22F0Qbgw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b9H22F0Qbgw.mp4/b9H22F0Qbgw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b9H22F0Qbgw.mp4/b9H22F0Qbgw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b9H22F0Qbgw.m3u8/b9H22F0Qbgw.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/copy-of-cc-6th-coordinate-plane/points-on-the-coordinate-plane/", "duration": 63, "id": "b9H22F0Qbgw", "title": "Coordinate plane: have all the points been graphed?", "format": "mp4", "description": "Some of the given ordered pairs are already graphed on the coordinate pane in this example, but not all of them. Can you tell which haven't?", "slug": "points-on-the-coordinate-plane", "kind": "Video", "video_id": "b9H22F0Qbgw", "keywords": "", "youtube_id": "b9H22F0Qbgw", "readable_id": "points-on-the-coordinate-plane"}, "-YpEkExjq2E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-YpEkExjq2E.mp4/-YpEkExjq2E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-YpEkExjq2E.mp4/-YpEkExjq2E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-YpEkExjq2E.m3u8/-YpEkExjq2E.m3u8"}, "duration": 252, "id": "-YpEkExjq2E", "title": "Generating equivalent fractions", "format": "mp4", "description": "Create equivalent fractions by dividing a fraction model and number line into smaller parts.", "path": "generating-equivalent-fractions/", "slug": "generating-equivalent-fractions", "kind": "Video", "video_id": "-YpEkExjq2E", "keywords": "", "youtube_id": "-YpEkExjq2E", "readable_id": "generating-equivalent-fractions"}, "VFtOcdXeP0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VFtOcdXeP0Y.mp4/VFtOcdXeP0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VFtOcdXeP0Y.mp4/VFtOcdXeP0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VFtOcdXeP0Y.m3u8/VFtOcdXeP0Y.m3u8"}, "duration": 683, "id": "VFtOcdXeP0Y", "title": "Vascular plants = Winning!", "format": "mp4", "description": "Hank introduces us to one of the most diverse and important families in the tree of life - the vascular plants. These plants have found tremendous success and the their secret is also their defining trait: conductive tissues that can take food and water from one part of a plant to another part. Though it sounds simple, the ability to move nutrients and water from one part of an organism to another was a evolutionary breakthrough for vascular plants, allowing them to grow exponentially larger, store food for lean times, and develop features that allowed them to spread farther and faster. Plants dominated the earth long before animals even showed up, and even today hold the world records for the largest, most massive, and oldest organisms on the planet.", "path": "crash-course-biology-136/", "slug": "crash-course-biology-136", "kind": "Video", "video_id": "VFtOcdXeP0Y", "keywords": "", "youtube_id": "VFtOcdXeP0Y", "readable_id": "crash-course-biology-136"}, "IvGVGxBoAdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IvGVGxBoAdU.mp4/IvGVGxBoAdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IvGVGxBoAdU.mp4/IvGVGxBoAdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IvGVGxBoAdU.m3u8/IvGVGxBoAdU.m3u8"}, "path": "khan/college-admissions/paying-for-college/financial-aid-process/applying-for-financial-aid-when-facing-immigration-challenges/", "duration": 87, "id": "IvGVGxBoAdU", "title": "Applying for financial aid when facing immigration challenges", "format": "mp4", "description": "", "slug": "applying-for-financial-aid-when-facing-immigration-challenges", "kind": "Video", "video_id": "IvGVGxBoAdU", "keywords": "", "youtube_id": "IvGVGxBoAdU", "readable_id": "applying-for-financial-aid-when-facing-immigration-challenges"}, "6NrTrBzC6dk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6NrTrBzC6dk.mp4/6NrTrBzC6dk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6NrTrBzC6dk.mp4/6NrTrBzC6dk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6NrTrBzC6dk.m3u8/6NrTrBzC6dk.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/history-of-the-alphabet-language-of-coins-3-9/", "duration": 563, "id": "6NrTrBzC6dk", "title": "History of the alphebet", "format": "mp4", "description": "The origin of letters", "slug": "history-of-the-alphabet-language-of-coins-3-9", "kind": "Video", "video_id": "6NrTrBzC6dk", "keywords": "alphabet, history of alphabet, information theory, brit cruise", "youtube_id": "6NrTrBzC6dk", "readable_id": "history-of-the-alphabet-language-of-coins-3-9"}, "sKins25SEVk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sKins25SEVk.mp4/sKins25SEVk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sKins25SEVk.mp4/sKins25SEVk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sKins25SEVk.m3u8/sKins25SEVk.m3u8"}, "path": "khan/test-prep/mcat/cells/eukaryotic-cells/epithelial-and-connective-tissue/", "duration": 440, "id": "sKins25SEVk", "title": "Epithelial and connective tissue", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "epithelial-and-connective-tissue", "kind": "Video", "video_id": "sKins25SEVk", "keywords": "", "youtube_id": "sKins25SEVk", "readable_id": "epithelial-and-connective-tissue"}, "XN48Ba9Ncr8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XN48Ba9Ncr8.mp4/XN48Ba9Ncr8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XN48Ba9Ncr8.mp4/XN48Ba9Ncr8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XN48Ba9Ncr8.m3u8/XN48Ba9Ncr8.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/representing-a-relationship-with-a-simple-equation/", "duration": 204, "id": "XN48Ba9Ncr8", "title": "Representing a relationship with a simple equation", "format": "mp4", "description": "Equations are about relationships (no, not girlfriends and boyfriends!) between the two sides of the equation. Let's again use a scale example to help us understand.", "slug": "representing-a-relationship-with-a-simple-equation", "kind": "Video", "video_id": "XN48Ba9Ncr8", "keywords": "Why, we, do, the, same, thing, to, both, sides, 2", "youtube_id": "XN48Ba9Ncr8", "readable_id": "representing-a-relationship-with-a-simple-equation"}, "dgsogHXtwyA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dgsogHXtwyA.mp4/dgsogHXtwyA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dgsogHXtwyA.mp4/dgsogHXtwyA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dgsogHXtwyA.m3u8/dgsogHXtwyA.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/france/poussin-et-in-arcadia/", "duration": 123, "id": "dgsogHXtwyA", "title": "Nicolas Poussin, Et in Arcadia Ego", "format": "mp4", "description": "Nicolas Poussin,\u00a0Et in Arcadia Ego, 1637-38, oil on canvas, 87 x 120 cm (Mus\u00e9e du Louvre). Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "poussin-et-in-arcadia", "kind": "Video", "video_id": "dgsogHXtwyA", "keywords": "", "youtube_id": "dgsogHXtwyA", "readable_id": "poussin-et-in-arcadia"}, "RomnHMWSLoE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RomnHMWSLoE.mp4/RomnHMWSLoE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RomnHMWSLoE.mp4/RomnHMWSLoE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RomnHMWSLoE.m3u8/RomnHMWSLoE.m3u8"}, "duration": 535, "id": "RomnHMWSLoE", "title": "IIT JEE circle hyperbola common tangent part 3", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 45 Circle Hyperbola Common Tangent Part 3", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-circle-hyperbola-common-tangent-part-3/", "slug": "iit-jee-circle-hyperbola-common-tangent-part-3", "kind": "Video", "video_id": "RomnHMWSLoE", "keywords": "2010, IIT, JEE, Paper, Problem, 45, Circle, Hyperbola, Common, Tangent, Part", "youtube_id": "RomnHMWSLoE", "readable_id": "iit-jee-circle-hyperbola-common-tangent-part-3"}, "dfO5SWYU6A4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dfO5SWYU6A4.mp4/dfO5SWYU6A4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dfO5SWYU6A4.mp4/dfO5SWYU6A4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dfO5SWYU6A4.m3u8/dfO5SWYU6A4.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-student-experience-overview/sscc-blended-seintro/", "duration": 30, "id": "dfO5SWYU6A4", "title": "Introduction & big ideas", "format": "mp4", "description": "", "slug": "sscc-blended-seintro", "kind": "Video", "video_id": "dfO5SWYU6A4", "keywords": "", "youtube_id": "dfO5SWYU6A4", "readable_id": "sscc-blended-seintro"}, "QNN2LFe_iD8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QNN2LFe_iD8.mp4/QNN2LFe_iD8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QNN2LFe_iD8.mp4/QNN2LFe_iD8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QNN2LFe_iD8.m3u8/QNN2LFe_iD8.m3u8"}, "duration": 415, "id": "QNN2LFe_iD8", "title": "Animating the Archives: An Introduction", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWatch the archives in action: hear about the community aspect of the South London Black Music Archive, and what inspired artist Bob and Roberta Smith to rifle through the archives of Jacob Epstein. See how remarkable stories can be unearthed and brought to life after years of being hidden away, and watch how everyone from curators and artists to visitors and volunteers can get involved with and be inspired by archives.\n\nClick here to learn more about Tate's Archives & Access Project, which is taking\u00a0the largest archive of British art in the world and making it accessible to everyone online.", "path": "animating-the-archives/", "slug": "animating-the-archives", "kind": "Video", "video_id": "QNN2LFe_iD8", "keywords": "Tate", "youtube_id": "QNN2LFe_iD8", "readable_id": "animating-the-archives"}, "kl8nvKKGvOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kl8nvKKGvOg.mp4/kl8nvKKGvOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kl8nvKKGvOg.mp4/kl8nvKKGvOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kl8nvKKGvOg.m3u8/kl8nvKKGvOg.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/stabilization-of-a-conjugate-base-hybridization/", "duration": 369, "id": "kl8nvKKGvOg", "title": "Stabilization of a conjugate base: hybridization", "format": "mp4", "description": "How increased s character in a hybrid orbital stabilizes the conjugate base", "slug": "stabilization-of-a-conjugate-base-hybridization", "kind": "Video", "video_id": "kl8nvKKGvOg", "keywords": "", "youtube_id": "kl8nvKKGvOg", "readable_id": "stabilization-of-a-conjugate-base-hybridization"}, "00fgAG6VrRQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/00fgAG6VrRQ.mp4/00fgAG6VrRQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/00fgAG6VrRQ.mp4/00fgAG6VrRQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/00fgAG6VrRQ.m3u8/00fgAG6VrRQ.m3u8"}, "duration": 386, "id": "00fgAG6VrRQ", "title": "Increasing opportunity cost", "format": "mp4", "description": "Why the opportunity cost may increase as you pursue more rabbits", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/production-possibilities/increasing-opportunity-cost/", "slug": "increasing-opportunity-cost", "kind": "Video", "video_id": "00fgAG6VrRQ", "keywords": "increasing, opportunity, cost, PPF", "youtube_id": "00fgAG6VrRQ", "readable_id": "increasing-opportunity-cost"}, "4L9dSZN5Nvg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4L9dSZN5Nvg.mp4/4L9dSZN5Nvg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4L9dSZN5Nvg.mp4/4L9dSZN5Nvg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4L9dSZN5Nvg.m3u8/4L9dSZN5Nvg.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/radius-convergence-ratio-test/", "duration": 438, "id": "4L9dSZN5Nvg", "title": "Radius of convergence using Ratio Test", "format": "mp4", "description": "", "slug": "radius-convergence-ratio-test", "kind": "Video", "video_id": "4L9dSZN5Nvg", "keywords": "", "youtube_id": "4L9dSZN5Nvg", "readable_id": "radius-convergence-ratio-test"}, "HH58VmUbOKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HH58VmUbOKM.mp4/HH58VmUbOKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HH58VmUbOKM.mp4/HH58VmUbOKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HH58VmUbOKM.m3u8/HH58VmUbOKM.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/polarization-of-light-linear-and-circular/", "duration": 870, "id": "HH58VmUbOKM", "title": "Polarization of light, linear and circular", "format": "mp4", "description": "", "slug": "polarization-of-light-linear-and-circular", "kind": "Video", "video_id": "HH58VmUbOKM", "keywords": "", "youtube_id": "HH58VmUbOKM", "readable_id": "polarization-of-light-linear-and-circular"}, "Rdd1ddubDuU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rdd1ddubDuU.mp4/Rdd1ddubDuU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rdd1ddubDuU.mp4/Rdd1ddubDuU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rdd1ddubDuU.m3u8/Rdd1ddubDuU.m3u8"}, "path": "khan/college-admissions/paying-for-college/work-study/work-study-opportunity-to-learn/", "duration": 43, "id": "Rdd1ddubDuU", "title": "Student story: Work study as an opportunity to learn", "format": "mp4", "description": "", "slug": "work-study-opportunity-to-learn", "kind": "Video", "video_id": "Rdd1ddubDuU", "keywords": "", "youtube_id": "Rdd1ddubDuU", "readable_id": "work-study-opportunity-to-learn"}, "xnLcxdM8OD8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xnLcxdM8OD8.mp4/xnLcxdM8OD8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xnLcxdM8OD8.mp4/xnLcxdM8OD8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xnLcxdM8OD8.m3u8/xnLcxdM8OD8.m3u8"}, "duration": 215, "id": "xnLcxdM8OD8", "title": "Simplifying expressions with exponents 2", "format": "mp4", "description": "Simplifying Expressions with Exponents 2", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/simplifying-expressions-with-exponents-2/", "slug": "simplifying-expressions-with-exponents-2", "kind": "Video", "video_id": "xnLcxdM8OD8", "keywords": "U07_L1_T3_we2, Simplifying, Expressions, with, Exponents, CC_6_EE_2, CC_8_EE_1, CC_8_EE_2", "youtube_id": "xnLcxdM8OD8", "readable_id": "simplifying-expressions-with-exponents-2"}, "4-LNrHGwtL0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4-LNrHGwtL0.mp4/4-LNrHGwtL0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4-LNrHGwtL0.mp4/4-LNrHGwtL0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4-LNrHGwtL0.m3u8/4-LNrHGwtL0.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-essays/ss-admissions-essay-past-mistake/", "duration": 51, "id": "4-LNrHGwtL0", "title": "Student story: Admissions essay about a past mistake", "format": "mp4", "description": "", "slug": "ss-admissions-essay-past-mistake", "kind": "Video", "video_id": "4-LNrHGwtL0", "keywords": "", "youtube_id": "4-LNrHGwtL0", "readable_id": "ss-admissions-essay-past-mistake"}, "v13fraCiLEg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v13fraCiLEg.mp4/v13fraCiLEg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v13fraCiLEg.mp4/v13fraCiLEg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v13fraCiLEg.m3u8/v13fraCiLEg.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/approximating-distance-with-rectangles/", "duration": 600, "id": "v13fraCiLEg", "title": "Approximating distance travelled", "format": "mp4", "description": "", "slug": "approximating-distance-with-rectangles", "kind": "Video", "video_id": "v13fraCiLEg", "keywords": "", "youtube_id": "v13fraCiLEg", "readable_id": "approximating-distance-with-rectangles"}, "pwHzN9aV1WY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pwHzN9aV1WY.mp4/pwHzN9aV1WY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pwHzN9aV1WY.mp4/pwHzN9aV1WY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pwHzN9aV1WY.m3u8/pwHzN9aV1WY.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/pisa-rome/pietro-cavallini-the-last-judgement/", "duration": 268, "id": "pwHzN9aV1WY", "title": "Pietro Cavallini, The Last Judgment", "format": "mp4", "description": "Pietro Cavallini, The Last Judgment, c.1293, fresco, Santa Cecilia, Rome This fresco was discovered in 1900 and represents one of the few works by Cavallini to survive.", "slug": "pietro-cavallini-the-last-judgement", "kind": "Video", "video_id": "pwHzN9aV1WY", "keywords": "Pietro Cavallini, Last Judgement, 1293, fresco, Santa Cecilia, Rome", "youtube_id": "pwHzN9aV1WY", "readable_id": "pietro-cavallini-the-last-judgement"}, "0mBwsg-wagU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0mBwsg-wagU.mp4/0mBwsg-wagU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0mBwsg-wagU.mp4/0mBwsg-wagU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0mBwsg-wagU.m3u8/0mBwsg-wagU.m3u8"}, "duration": 334, "id": "0mBwsg-wagU", "title": "Women and the expansion of America", "format": "mp4", "description": "In this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss women and their role in the expansion of America.\u00a0", "path": "expansion-america/", "slug": "expansion-america", "kind": "Video", "video_id": "0mBwsg-wagU", "keywords": "", "youtube_id": "0mBwsg-wagU", "readable_id": "expansion-america"}, "TqRReFvbpXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TqRReFvbpXA.mp4/TqRReFvbpXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TqRReFvbpXA.mp4/TqRReFvbpXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TqRReFvbpXA.m3u8/TqRReFvbpXA.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/3-digit-times-1-digit-example/", "duration": 135, "id": "TqRReFvbpXA", "title": "Multiplying: 3 digits times 1 digit (with carrying)", "format": "mp4", "description": "We're carrying numbers in this example. Everyone needs a hand now and then, right?", "slug": "3-digit-times-1-digit-example", "kind": "Video", "video_id": "TqRReFvbpXA", "keywords": "", "youtube_id": "TqRReFvbpXA", "readable_id": "3-digit-times-1-digit-example"}, "_irJM-um6HE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_irJM-um6HE.mp4/_irJM-um6HE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_irJM-um6HE.mp4/_irJM-um6HE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_irJM-um6HE.m3u8/_irJM-um6HE.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-measuring-length/measuring-lengths-with-different-units/", "duration": 174, "id": "_irJM-um6HE", "title": "Measuring lengths with different units", "format": "mp4", "description": "", "slug": "measuring-lengths-with-different-units", "kind": "Video", "video_id": "_irJM-um6HE", "keywords": "", "youtube_id": "_irJM-um6HE", "readable_id": "measuring-lengths-with-different-units"}, "oHLbXTOaw7w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oHLbXTOaw7w.mp4/oHLbXTOaw7w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oHLbXTOaw7w.mp4/oHLbXTOaw7w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oHLbXTOaw7w.m3u8/oHLbXTOaw7w.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/seeking-signs-of-past-mars-habitability/", "duration": 143, "id": "oHLbXTOaw7w", "title": "Seeking signs of habitability", "format": "mp4", "description": "", "slug": "seeking-signs-of-past-mars-habitability", "kind": "Video", "video_id": "oHLbXTOaw7w", "keywords": "", "youtube_id": "oHLbXTOaw7w", "readable_id": "seeking-signs-of-past-mars-habitability"}, "4pj0MPnrEBQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4pj0MPnrEBQ.mp4/4pj0MPnrEBQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4pj0MPnrEBQ.mp4/4pj0MPnrEBQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4pj0MPnrEBQ.m3u8/4pj0MPnrEBQ.m3u8"}, "duration": 183, "id": "4pj0MPnrEBQ", "title": "Frank Lloyd Wright, Midway Gardens", "format": "mp4", "description": "Explore one of Frank Lloyd Wright\u2019s most important but least known commissions.\u00a0To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945.", "path": "wright-midway-gardens/", "slug": "wright-midway-gardens", "kind": "Video", "video_id": "4pj0MPnrEBQ", "keywords": "", "youtube_id": "4pj0MPnrEBQ", "readable_id": "wright-midway-gardens"}, "1iTC9cBk6Ac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1iTC9cBk6Ac.mp4/1iTC9cBk6Ac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1iTC9cBk6Ac.mp4/1iTC9cBk6Ac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1iTC9cBk6Ac.m3u8/1iTC9cBk6Ac.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/beginners-renaissance-florence/contrapposto/", "duration": 571, "id": "1iTC9cBk6Ac", "title": "Contrapposto", "format": "mp4", "description": "A brief explanation of the term \"contrapposto\" comparing two ancient Greek sculptures: the New York Kouros and an ancient Roman copy of the Doryphoros (or Spear Bearer) by Polykleitos. Although these particular objects may not have been known in the Renaissance, the ideas and form of contrapposto were revived in the Italian Renaissance.\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris\n", "slug": "contrapposto", "kind": "Video", "video_id": "1iTC9cBk6Ac", "keywords": "", "youtube_id": "1iTC9cBk6Ac", "readable_id": "contrapposto"}, "2b7Qv5dtdf8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2b7Qv5dtdf8.mp4/2b7Qv5dtdf8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2b7Qv5dtdf8.mp4/2b7Qv5dtdf8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2b7Qv5dtdf8.m3u8/2b7Qv5dtdf8.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/new-topic-2015-04-17t152348757z/christus-portrait-of-a-carthusian-1446/", "duration": 410, "id": "2b7Qv5dtdf8", "title": "Christus, Portrait of a Carthusian", "format": "mp4", "description": "Petrus Christus, Portrait of a Carthusian, 1446 (Metropolitan Museum of Art). Speakers: Dr. David Drogin, Dr. Beth Harris", "slug": "christus-portrait-of-a-carthusian-1446", "kind": "Video", "video_id": "2b7Qv5dtdf8", "keywords": "Christus, Renaissance, Art, Art History, Smarthistory", "youtube_id": "2b7Qv5dtdf8", "readable_id": "christus-portrait-of-a-carthusian-1446"}, "Yu4eqwGFJK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yu4eqwGFJK8.mp4/Yu4eqwGFJK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yu4eqwGFJK8.mp4/Yu4eqwGFJK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yu4eqwGFJK8.m3u8/Yu4eqwGFJK8.m3u8"}, "duration": 221, "id": "Yu4eqwGFJK8", "title": "Constructing regular hexagon inscribed in circle", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/polygons-inscribed-in-circles/constructing-regular-hexagon-inscribed-in-circle/", "slug": "constructing-regular-hexagon-inscribed-in-circle", "kind": "Video", "video_id": "Yu4eqwGFJK8", "keywords": "", "youtube_id": "Yu4eqwGFJK8", "readable_id": "constructing-regular-hexagon-inscribed-in-circle"}, "ebGzJabI3mw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ebGzJabI3mw.mp4/ebGzJabI3mw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ebGzJabI3mw.mp4/ebGzJabI3mw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ebGzJabI3mw.m3u8/ebGzJabI3mw.m3u8"}, "duration": 282, "id": "ebGzJabI3mw", "title": "Power wires and on/off switch", "format": "mp4", "description": "In this video we show you how to switch on and off Bit-zee's electrical power.", "path": "khan/science/discoveries-projects/robots/bit-zee/connecting-bit-zee-s-power-wires-and-on-off-switch/", "slug": "connecting-bit-zee-s-power-wires-and-on-off-switch", "kind": "Video", "video_id": "ebGzJabI3mw", "keywords": "power, power wires, on/off switch, bit-zee, hack, make", "youtube_id": "ebGzJabI3mw", "readable_id": "connecting-bit-zee-s-power-wires-and-on-off-switch"}, "mwP5OHJe1ak": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mwP5OHJe1ak.mp4/mwP5OHJe1ak.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mwP5OHJe1ak.mp4/mwP5OHJe1ak.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mwP5OHJe1ak.m3u8/mwP5OHJe1ak.m3u8"}, "duration": 219, "id": "mwP5OHJe1ak", "title": "Introduction", "format": "mp4", "description": "In this video we discuss some of the key parts of Bit-zee", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-intro/", "slug": "bit-zee-intro", "kind": "Video", "video_id": "mwP5OHJe1ak", "keywords": "Bit-zee introduction", "youtube_id": "mwP5OHJe1ak", "readable_id": "bit-zee-intro"}, "8nW9L7cSop4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8nW9L7cSop4.mp4/8nW9L7cSop4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8nW9L7cSop4.mp4/8nW9L7cSop4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8nW9L7cSop4.m3u8/8nW9L7cSop4.m3u8"}, "path": "khan/humanities/history/american-civics/american-civics/ppaca-or-obamacare/", "duration": 434, "id": "8nW9L7cSop4", "title": "PPACA or \"Obamacare\"", "format": "mp4", "description": "Basic overview of what is sometimes referred to as \"Obamacare\"", "slug": "ppaca-or-obamacare", "kind": "Video", "video_id": "8nW9L7cSop4", "keywords": "PPACA, obamacare, individual, mandate", "youtube_id": "8nW9L7cSop4", "readable_id": "ppaca-or-obamacare"}, "vsgrWDLEzcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vsgrWDLEzcQ.mp4/vsgrWDLEzcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vsgrWDLEzcQ.mp4/vsgrWDLEzcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vsgrWDLEzcQ.m3u8/vsgrWDLEzcQ.m3u8"}, "duration": 308, "id": "vsgrWDLEzcQ", "title": "Classifying a quadrilateral on the coordinate plane", "format": "mp4", "description": "", "path": "khan/math/geometry/analytic-geometry-topic/geometry-problems-coordinate-pla/classfying-a-quadrilateral-on-the-coordinate-plane/", "slug": "classfying-a-quadrilateral-on-the-coordinate-plane", "kind": "Video", "video_id": "vsgrWDLEzcQ", "keywords": "", "youtube_id": "vsgrWDLEzcQ", "readable_id": "classfying-a-quadrilateral-on-the-coordinate-plane"}, "ljzn4SADuZc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ljzn4SADuZc.mp4/ljzn4SADuZc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ljzn4SADuZc.mp4/ljzn4SADuZc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ljzn4SADuZc.m3u8/ljzn4SADuZc.m3u8"}, "duration": 366, "id": "ljzn4SADuZc", "title": "Building the idea of epsilon-delta definition", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/epsilon_delta/building-the-idea-of-epsilon-delta-definition/", "slug": "building-the-idea-of-epsilon-delta-definition", "kind": "Video", "video_id": "ljzn4SADuZc", "keywords": "limits", "youtube_id": "ljzn4SADuZc", "readable_id": "building-the-idea-of-epsilon-delta-definition"}, "4zKjzl0futI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4zKjzl0futI.mp4/4zKjzl0futI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4zKjzl0futI.mp4/4zKjzl0futI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4zKjzl0futI.m3u8/4zKjzl0futI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/meet-the-skin/", "duration": 316, "id": "4zKjzl0futI", "title": "Meet the skin! (Overview)", "format": "mp4", "description": "", "slug": "meet-the-skin", "kind": "Video", "video_id": "4zKjzl0futI", "keywords": "", "youtube_id": "4zKjzl0futI", "readable_id": "meet-the-skin"}, "PYkaoQc-fLU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PYkaoQc-fLU.mp4/PYkaoQc-fLU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PYkaoQc-fLU.mp4/PYkaoQc-fLU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PYkaoQc-fLU.m3u8/PYkaoQc-fLU.m3u8"}, "duration": 429, "id": "PYkaoQc-fLU", "title": "Hypertension effects on the blood vessels", "format": "mp4", "description": "Learn about how hypertension can cause damage to the large/middle sized arteries as well as the small arteries and arterioles. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/circulatory-system-diseases/hypertension/hypertension-effects-on-the-blood-vessels/", "slug": "hypertension-effects-on-the-blood-vessels", "kind": "Video", "video_id": "PYkaoQc-fLU", "keywords": "", "youtube_id": "PYkaoQc-fLU", "readable_id": "hypertension-effects-on-the-blood-vessels"}, "pKvo0XWZtjo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pKvo0XWZtjo.mp4/pKvo0XWZtjo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pKvo0XWZtjo.mp4/pKvo0XWZtjo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pKvo0XWZtjo.m3u8/pKvo0XWZtjo.m3u8"}, "duration": 1164, "id": "pKvo0XWZtjo", "title": "States of matter", "format": "mp4", "description": "Introduction to the states or phases of matter.", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/states-of-matter/", "slug": "states-of-matter", "kind": "Video", "video_id": "pKvo0XWZtjo", "keywords": "chemistry", "youtube_id": "pKvo0XWZtjo", "readable_id": "states-of-matter"}, "rLdoKZ7w0xI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rLdoKZ7w0xI.mp4/rLdoKZ7w0xI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rLdoKZ7w0xI.mp4/rLdoKZ7w0xI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rLdoKZ7w0xI.m3u8/rLdoKZ7w0xI.m3u8"}, "duration": 647, "id": "rLdoKZ7w0xI", "title": "Variance of differences of random variables", "format": "mp4", "description": "Variance of Differences of Random Variables", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/variance-of-differences-of-random-variables/", "slug": "variance-of-differences-of-random-variables", "kind": "Video", "video_id": "rLdoKZ7w0xI", "keywords": "Variance, of, Differences, Random, Variables, expected, value", "youtube_id": "rLdoKZ7w0xI", "readable_id": "variance-of-differences-of-random-variables"}, "2_IJz1ivopQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2_IJz1ivopQ.mp4/2_IJz1ivopQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2_IJz1ivopQ.mp4/2_IJz1ivopQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2_IJz1ivopQ.m3u8/2_IJz1ivopQ.m3u8"}, "duration": 498, "id": "2_IJz1ivopQ", "title": "Special cases: Histidine, proline, glycine, cysteine", "format": "mp4", "description": "Certain amino acids stand out for their unique properties. In this video, you'll learn more about what makes histidine, proline, glycine, and cysteine unique.\u00a0 By Tracy Kovach.", "path": "khan/test-prep/mcat/biomolecules/amino-acids-and-proteins1/special-cases-histidine-proline-glycine-cysteine/", "slug": "special-cases-histidine-proline-glycine-cysteine", "kind": "Video", "video_id": "2_IJz1ivopQ", "keywords": "", "youtube_id": "2_IJz1ivopQ", "readable_id": "special-cases-histidine-proline-glycine-cysteine"}, "wDuCOxDxMzY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wDuCOxDxMzY.mp4/wDuCOxDxMzY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wDuCOxDxMzY.mp4/wDuCOxDxMzY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wDuCOxDxMzY.m3u8/wDuCOxDxMzY.m3u8"}, "duration": 277, "id": "wDuCOxDxMzY", "title": "Fed open market operations", "format": "mp4", "description": "Fed Open Market Operations", "path": "khan/economics-finance-domain/core-finance/money-and-banking/federal-reserve/fed-open-market-operations/", "slug": "fed-open-market-operations", "kind": "Video", "video_id": "wDuCOxDxMzY", "keywords": "federal, reserve, yield, banking", "youtube_id": "wDuCOxDxMzY", "readable_id": "fed-open-market-operations"}, "3HD-Ak_a6VE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3HD-Ak_a6VE.mp4/3HD-Ak_a6VE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3HD-Ak_a6VE.mp4/3HD-Ak_a6VE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3HD-Ak_a6VE.m3u8/3HD-Ak_a6VE.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/writing-numerical-inequalities-exercise/", "duration": 208, "id": "3HD-Ak_a6VE", "title": "Inequality word problems", "format": "mp4", "description": "We're writing inequalities by using information from the word problems. Woohoo!", "slug": "writing-numerical-inequalities-exercise", "kind": "Video", "video_id": "3HD-Ak_a6VE", "keywords": "", "youtube_id": "3HD-Ak_a6VE", "readable_id": "writing-numerical-inequalities-exercise"}, "leudxqivIJI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/leudxqivIJI.mp4/leudxqivIJI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/leudxqivIJI.mp4/leudxqivIJI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/leudxqivIJI.m3u8/leudxqivIJI.m3u8"}, "path": "khan/science/physics/linear-momentum/momentum-tutorial/2-dimensional-momentum-problem-part-2/", "duration": 572, "id": "leudxqivIJI", "title": "2-dimensional momentum problem (part 2)", "format": "mp4", "description": "We finish the 2-dimensional momentum problem", "slug": "2-dimensional-momentum-problem-part-2", "kind": "Video", "video_id": "leudxqivIJI", "keywords": "momentum, angle, velocity, physics", "youtube_id": "leudxqivIJI", "readable_id": "2-dimensional-momentum-problem-part-2"}, "pEsebLFxqXI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pEsebLFxqXI.mp4/pEsebLFxqXI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pEsebLFxqXI.mp4/pEsebLFxqXI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pEsebLFxqXI.m3u8/pEsebLFxqXI.m3u8"}, "duration": 141, "id": "pEsebLFxqXI", "title": "L\u00e9opold Survage, \"Colored Rhythm: Study for the Film\"", "format": "mp4", "description": "To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art.", "path": "moma-survage-rhythm/", "slug": "moma-survage-rhythm", "kind": "Video", "video_id": "pEsebLFxqXI", "keywords": "", "youtube_id": "pEsebLFxqXI", "readable_id": "moma-survage-rhythm"}, "hip59oIFSMQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hip59oIFSMQ.mp4/hip59oIFSMQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hip59oIFSMQ.mp4/hip59oIFSMQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hip59oIFSMQ.m3u8/hip59oIFSMQ.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/feininger-cathedral-for-program-of-the-state-bauhaus-in-weimar-woodcut-1919/", "duration": 371, "id": "hip59oIFSMQ", "title": "Feininger, Cathedral for the Bauhaus", "format": "mp4", "description": "Lyonel Feininger, Cathedral for Program of the State Bauhaus in Weimar, woodcut, 1919 (MoMA)\n\nSpeakers: Dr. Steven Zucker, Dr. Juliana Kreinik\n\nFor more: http://www.smarthistory.org/feiningers-cathedral.html", "slug": "feininger-cathedral-for-program-of-the-state-bauhaus-in-weimar-woodcut-1919", "kind": "Video", "video_id": "hip59oIFSMQ", "keywords": "Feininger, Cathedral, Smarthistory, Art History, Weimar", "youtube_id": "hip59oIFSMQ", "readable_id": "feininger-cathedral-for-program-of-the-state-bauhaus-in-weimar-woodcut-1919"}, "cTNnkbKoxgw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cTNnkbKoxgw.mp4/cTNnkbKoxgw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cTNnkbKoxgw.mp4/cTNnkbKoxgw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cTNnkbKoxgw.m3u8/cTNnkbKoxgw.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/biodiversity-hotspot-case-study-madagascar/", "duration": 107, "id": "cTNnkbKoxgw", "title": "Biodiversity hotspot case study: Madagascar", "format": "mp4", "description": "", "slug": "biodiversity-hotspot-case-study-madagascar", "kind": "Video", "video_id": "cTNnkbKoxgw", "keywords": "", "youtube_id": "cTNnkbKoxgw", "readable_id": "biodiversity-hotspot-case-study-madagascar"}, "Ly86lwq_2gc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ly86lwq_2gc.mp4/Ly86lwq_2gc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ly86lwq_2gc.mp4/Ly86lwq_2gc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ly86lwq_2gc.m3u8/Ly86lwq_2gc.m3u8"}, "duration": 563, "id": "Ly86lwq_2gc", "title": "Similar triangle example problems", "format": "mp4", "description": "Multiple examples looking for similarity of triangles", "path": "khan/math/geometry/similarity/triangle_similarlity/similar-triangle-example-problems/", "slug": "similar-triangle-example-problems", "kind": "Video", "video_id": "Ly86lwq_2gc", "keywords": "similarity, congruence", "youtube_id": "Ly86lwq_2gc", "readable_id": "similar-triangle-example-problems"}, "8u6gNH6xIfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8u6gNH6xIfc.mp4/8u6gNH6xIfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8u6gNH6xIfc.mp4/8u6gNH6xIfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8u6gNH6xIfc.m3u8/8u6gNH6xIfc.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/a-tale-of-two-rovers/", "duration": 480, "id": "8u6gNH6xIfc", "title": "Spirit & opportunity", "format": "mp4", "description": "", "slug": "a-tale-of-two-rovers", "kind": "Video", "video_id": "8u6gNH6xIfc", "keywords": "", "youtube_id": "8u6gNH6xIfc", "readable_id": "a-tale-of-two-rovers"}, "EwEbZI57P1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EwEbZI57P1o.mp4/EwEbZI57P1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EwEbZI57P1o.mp4/EwEbZI57P1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EwEbZI57P1o.m3u8/EwEbZI57P1o.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/log_functions/matching-exponential-functions/", "duration": 442, "id": "EwEbZI57P1o", "title": "Matching functions to their graphs", "format": "mp4", "description": "", "slug": "matching-exponential-functions", "kind": "Video", "video_id": "EwEbZI57P1o", "keywords": "", "youtube_id": "EwEbZI57P1o", "readable_id": "matching-exponential-functions"}, "xHgPtFUbAeU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xHgPtFUbAeU.mp4/xHgPtFUbAeU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xHgPtFUbAeU.mp4/xHgPtFUbAeU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xHgPtFUbAeU.m3u8/xHgPtFUbAeU.m3u8"}, "duration": 539, "id": "xHgPtFUbAeU", "title": "Addition and subtraction with significant figures", "format": "mp4", "description": "Addition and Subtraction with Significant Figures", "path": "khan/math/pre-algebra/decimals-pre-alg/sig-figs-pre-alg/addition-and-subtraction-with-significant-figures/", "slug": "addition-and-subtraction-with-significant-figures", "kind": "Video", "video_id": "xHgPtFUbAeU", "keywords": "Addition, and, Subtraction, with, Significant, Figures", "youtube_id": "xHgPtFUbAeU", "readable_id": "addition-and-subtraction-with-significant-figures"}, "8X7yEzgurP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8X7yEzgurP8.mp4/8X7yEzgurP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8X7yEzgurP8.mp4/8X7yEzgurP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8X7yEzgurP8.m3u8/8X7yEzgurP8.m3u8"}, "duration": 534, "id": "8X7yEzgurP8", "title": "Resistance in a tube", "format": "mp4", "description": "Learn how the size of a tube (it's radius) is related to its resistance to something flowing through. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/resistance-in-a-tube/", "slug": "resistance-in-a-tube", "kind": "Video", "video_id": "8X7yEzgurP8", "keywords": "", "youtube_id": "8X7yEzgurP8", "readable_id": "resistance-in-a-tube"}, "DTF2qg2McwY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DTF2qg2McwY.mp4/DTF2qg2McwY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DTF2qg2McwY.mp4/DTF2qg2McwY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DTF2qg2McwY.m3u8/DTF2qg2McwY.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-2-course-reviews/", "duration": 196, "id": "DTF2qg2McwY", "title": "2 Course reviews", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2-course-reviews", "kind": "Video", "video_id": "DTF2qg2McwY", "keywords": "", "youtube_id": "DTF2qg2McwY", "readable_id": "sat-2-course-reviews"}, "36v2EXZRzUE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/36v2EXZRzUE.mp4/36v2EXZRzUE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/36v2EXZRzUE.mp4/36v2EXZRzUE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/36v2EXZRzUE.m3u8/36v2EXZRzUE.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/u08-l1-t2-we2-reading-line-graphs/", "duration": 141, "id": "36v2EXZRzUE", "title": "Reading line graphs", "format": "mp4", "description": "A line graph is another way to visually represent data, especially data that changes over time. They are extremely useful Let's take a look at this example.", "slug": "u08-l1-t2-we2-reading-line-graphs", "kind": "Video", "video_id": "36v2EXZRzUE", "keywords": "u08_l1_t2_we2, Reading, Line, Graphs", "youtube_id": "36v2EXZRzUE", "readable_id": "u08-l1-t2-we2-reading-line-graphs"}, "kWxNQQ4hM7w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kWxNQQ4hM7w.mp4/kWxNQQ4hM7w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kWxNQQ4hM7w.mp4/kWxNQQ4hM7w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kWxNQQ4hM7w.m3u8/kWxNQQ4hM7w.m3u8"}, "duration": 173, "id": "kWxNQQ4hM7w", "title": "\"Arrival\" with Morrison Heckscher", "format": "mp4", "description": "Met curator Morrison Heckscher on form and function in Richard Morris Hunt\u2019s The Great Hall.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "arrival/", "slug": "arrival", "kind": "Video", "video_id": "kWxNQQ4hM7w", "keywords": "architecture, community, light, motion, stone, North America", "youtube_id": "kWxNQQ4hM7w", "readable_id": "arrival"}, "gYcwNXHrtlQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gYcwNXHrtlQ.mp4/gYcwNXHrtlQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gYcwNXHrtlQ.mp4/gYcwNXHrtlQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gYcwNXHrtlQ.m3u8/gYcwNXHrtlQ.m3u8"}, "path": "khan/humanities/art-asia/beginners-guide-asian-culture/hindu-art-culture/shiva/", "duration": 177, "id": "gYcwNXHrtlQ", "title": "The Hindu deity Shiva", "format": "mp4", "description": "Learn how to identify the Hindu deity Shiva and hear a story related to a depiction of Shiva in the Asian Art Museum's collection.", "slug": "shiva", "kind": "Video", "video_id": "gYcwNXHrtlQ", "keywords": "", "youtube_id": "gYcwNXHrtlQ", "readable_id": "shiva"}, "sEiQm7IzUg8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sEiQm7IzUg8.mp4/sEiQm7IzUg8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sEiQm7IzUg8.mp4/sEiQm7IzUg8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sEiQm7IzUg8.m3u8/sEiQm7IzUg8.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions/addition-of-water-acid-catalyzed-mechanism/", "duration": 803, "id": "sEiQm7IzUg8", "title": "Addition of water (acid-catalyzed) mechanism", "format": "mp4", "description": "Addition of Water (Acid-Catalyzed) Mechanism", "slug": "addition-of-water-acid-catalyzed-mechanism", "kind": "Video", "video_id": "sEiQm7IzUg8", "keywords": "Addition, of, Water, (Acid-Catalyzed), Mechanism", "youtube_id": "sEiQm7IzUg8", "readable_id": "addition-of-water-acid-catalyzed-mechanism"}, "-J-6VGxld54": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-J-6VGxld54.mp4/-J-6VGxld54.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-J-6VGxld54.mp4/-J-6VGxld54.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-J-6VGxld54.m3u8/-J-6VGxld54.m3u8"}, "path": "khan/math/pre-algebra/measurement/rectangle-area-perimeter-word-pr/length-and-width-from-perimeter-and-area/", "duration": 286, "id": "-J-6VGxld54", "title": "Area and perimeter word problem: table dimensions", "format": "mp4", "description": "If you know the area and perimeter of a rectangle, you can figure out the length and width. STILL don't believe us?Just watch.", "slug": "length-and-width-from-perimeter-and-area", "kind": "Video", "video_id": "-J-6VGxld54", "keywords": "", "youtube_id": "-J-6VGxld54", "readable_id": "length-and-width-from-perimeter-and-area"}, "S4T5K4BM3j0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S4T5K4BM3j0.mp4/S4T5K4BM3j0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S4T5K4BM3j0.mp4/S4T5K4BM3j0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S4T5K4BM3j0.m3u8/S4T5K4BM3j0.m3u8"}, "path": "khan/college-admissions/wrapping-up/introduction-wu/sal-khans-story-wrapping-up/", "duration": 231, "id": "S4T5K4BM3j0", "title": "Sal Khan's story: Wrapping up", "format": "mp4", "description": "", "slug": "sal-khans-story-wrapping-up", "kind": "Video", "video_id": "S4T5K4BM3j0", "keywords": "", "youtube_id": "S4T5K4BM3j0", "readable_id": "sal-khans-story-wrapping-up"}, "BHFuLS9NW6s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BHFuLS9NW6s.mp4/BHFuLS9NW6s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BHFuLS9NW6s.mp4/BHFuLS9NW6s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BHFuLS9NW6s.m3u8/BHFuLS9NW6s.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/gentileschi-judith/", "duration": 242, "id": "BHFuLS9NW6s", "title": "Gentileschi, Judith and Holofernes", "format": "mp4", "description": "Artemisia Gentileschi, Judith and Holofernes, 1620-21, oil on canvas, 162.5 x 199 cm (Uffizi Gallery, Florence)\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "gentileschi-judith", "kind": "Video", "video_id": "BHFuLS9NW6s", "keywords": "gentileschi, art history, baroque,", "youtube_id": "BHFuLS9NW6s", "readable_id": "gentileschi-judith"}, "S0Kak0qQFgM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S0Kak0qQFgM.mp4/S0Kak0qQFgM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S0Kak0qQFgM.mp4/S0Kak0qQFgM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S0Kak0qQFgM.m3u8/S0Kak0qQFgM.m3u8"}, "duration": 701, "id": "S0Kak0qQFgM", "title": "TB pathogenesis", "format": "mp4", "description": "Find out exactly how TB causes damage to the lungs. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/tb-pathogenesis/", "slug": "tb-pathogenesis", "kind": "Video", "video_id": "S0Kak0qQFgM", "keywords": "", "youtube_id": "S0Kak0qQFgM", "readable_id": "tb-pathogenesis"}, "ShJqEBcyiBg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ShJqEBcyiBg.mp4/ShJqEBcyiBg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ShJqEBcyiBg.mp4/ShJqEBcyiBg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ShJqEBcyiBg.m3u8/ShJqEBcyiBg.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/social-reproduction/", "duration": 312, "id": "ShJqEBcyiBg", "title": "Social reproduction", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "social-reproduction", "kind": "Video", "video_id": "ShJqEBcyiBg", "keywords": "", "youtube_id": "ShJqEBcyiBg", "readable_id": "social-reproduction"}, "dOxXl_6BDQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dOxXl_6BDQc.mp4/dOxXl_6BDQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dOxXl_6BDQc.mp4/dOxXl_6BDQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dOxXl_6BDQc.m3u8/dOxXl_6BDQc.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-hairy-trig-and-algebra-part-1/", "duration": 610, "id": "dOxXl_6BDQc", "title": "IIT JEE hairy trig and algebra (part 1)", "format": "mp4", "description": "2010 Paper 1 problem 38 Hairy Trig and Algebra", "slug": "iit-jee-hairy-trig-and-algebra-part-1", "kind": "Video", "video_id": "dOxXl_6BDQc", "keywords": "IIT, JEE, Trigonometry, law, of, cosines, quartic, roots, fourth, degree, polynomial", "youtube_id": "dOxXl_6BDQc", "readable_id": "iit-jee-hairy-trig-and-algebra-part-1"}, "qrK-FBdjGk4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qrK-FBdjGk4.mp4/qrK-FBdjGk4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qrK-FBdjGk4.mp4/qrK-FBdjGk4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qrK-FBdjGk4.m3u8/qrK-FBdjGk4.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/functions-of-the-nervous-system/", "duration": 398, "id": "qrK-FBdjGk4", "title": "Functions of the nervous system", "format": "mp4", "description": "", "slug": "functions-of-the-nervous-system", "kind": "Video", "video_id": "qrK-FBdjGk4", "keywords": "MCAT", "youtube_id": "qrK-FBdjGk4", "readable_id": "functions-of-the-nervous-system"}, "vk2GvyNmYD0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vk2GvyNmYD0.mp4/vk2GvyNmYD0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vk2GvyNmYD0.mp4/vk2GvyNmYD0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vk2GvyNmYD0.m3u8/vk2GvyNmYD0.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/american-art-wwii/grant-wood-american-gothic-1930/", "duration": 380, "id": "vk2GvyNmYD0", "title": "Wood, American Gothic", "format": "mp4", "description": "Grant Wood, American Gothic, 1930, oil on beaver board, 78 x 65.3 cm / 30-3/4 x 25-3/4 inches (The Art Institute of Chicago) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "grant-wood-american-gothic-1930", "kind": "Video", "video_id": "vk2GvyNmYD0", "keywords": "Grant Wood, American Gothic, 1930, Art Institute of Chicago, art history, Smarthistory, Google Art Project, painting, art, OER, Regionalism, American Scene, American, Iowa", "youtube_id": "vk2GvyNmYD0", "readable_id": "grant-wood-american-gothic-1930"}, "H-OoyU8Gb_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H-OoyU8Gb_Q.mp4/H-OoyU8Gb_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H-OoyU8Gb_Q.mp4/H-OoyU8Gb_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H-OoyU8Gb_Q.m3u8/H-OoyU8Gb_Q.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/osteoarthritis-vs-rheumatoid-arthritis-symptoms/", "duration": 533, "id": "H-OoyU8Gb_Q", "title": "Osteoarthritis vs rheumatoid arthritis symptoms", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "osteoarthritis-vs-rheumatoid-arthritis-symptoms", "kind": "Video", "video_id": "H-OoyU8Gb_Q", "keywords": "", "youtube_id": "H-OoyU8Gb_Q", "readable_id": "osteoarthritis-vs-rheumatoid-arthritis-symptoms"}, "jSGGHmTXA3o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jSGGHmTXA3o.mp4/jSGGHmTXA3o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jSGGHmTXA3o.mp4/jSGGHmTXA3o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jSGGHmTXA3o.m3u8/jSGGHmTXA3o.m3u8"}, "duration": 299, "id": "jSGGHmTXA3o", "title": "The Painting Techniques of Ad Reinhardt", "format": "mp4", "description": "Take time with Ad Reinhardt's black canvases and discover the rewards of contemplation. To learn more and create your own works, take our online course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/ny-school/moma-painting-technique-reinhardt/", "slug": "moma-painting-technique-reinhardt", "kind": "Video", "video_id": "jSGGHmTXA3o", "keywords": "", "youtube_id": "jSGGHmTXA3o", "readable_id": "moma-painting-technique-reinhardt"}, "OQOnc3Z1uhc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OQOnc3Z1uhc.mp4/OQOnc3Z1uhc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OQOnc3Z1uhc.mp4/OQOnc3Z1uhc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OQOnc3Z1uhc.m3u8/OQOnc3Z1uhc.m3u8"}, "duration": 760, "id": "OQOnc3Z1uhc", "title": "Water and solutions", "format": "mp4", "description": "Dihydrogen monoxide (better know as water) is the key to nearly everything. It falls from the sky, makes up 60% of our bodies, and just about every chemical process related to life takes place with it or in it. Without it, none of the chemical reactions that keep us alive would happen - none of the reactions that sustain any life form on earth would happen - and the majority of inorganic chemical reactions that shape the surface of the earth would not happen either. Every one of us uses water for all kinds of chemistry every day - our body chemistry, our food chemistry and our laundry chemistry all take place in water. \u00a0In today's Crash Course Chemistry, we use Hank's actual dirty laundry (ew) to learn about some of the properties of water that make it so special - it's polarity and dielectric property; how electrolytes can be used to classify solutions; and we discover how to calculate a solution's molarity as well as how to dilute a solution using the dilution equation.\u00a0\n\nWriter: Kim Krieger\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe", "path": "chem07-water-solutions/", "slug": "chem07-water-solutions", "kind": "Video", "video_id": "OQOnc3Z1uhc", "keywords": "", "youtube_id": "OQOnc3Z1uhc", "readable_id": "chem07-water-solutions"}, "_alU-o_qDt8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_alU-o_qDt8.mp4/_alU-o_qDt8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_alU-o_qDt8.mp4/_alU-o_qDt8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_alU-o_qDt8.m3u8/_alU-o_qDt8.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/cimabue-maesta-of-santa-trinita-1280-900-1290/", "duration": 449, "id": "_alU-o_qDt8", "title": "Cimabue, Santa Trinita Madonna", "format": "mp4", "description": "Cimabue, Maesta of Santa Trinita, 1280-1290, tempera on panel, 151 1/2 x 87 3/4\" (385 x 223 cm), Uffizi, Florence Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "cimabue-maesta-of-santa-trinita-1280-900-1290", "kind": "Video", "video_id": "_alU-o_qDt8", "keywords": "", "youtube_id": "_alU-o_qDt8", "readable_id": "cimabue-maesta-of-santa-trinita-1280-900-1290"}, "qhKJ1DG9kYY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qhKJ1DG9kYY.mp4/qhKJ1DG9kYY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qhKJ1DG9kYY.mp4/qhKJ1DG9kYY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qhKJ1DG9kYY.m3u8/qhKJ1DG9kYY.m3u8"}, "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/laplace-transform-of-l-t/", "duration": 546, "id": "qhKJ1DG9kYY", "title": "Laplace transform of t: L{t}", "format": "mp4", "description": "Determining the Laplace Transform of t", "slug": "laplace-transform-of-l-t", "kind": "Video", "video_id": "qhKJ1DG9kYY", "keywords": "differential, equations, laplace, transform", "youtube_id": "qhKJ1DG9kYY", "readable_id": "laplace-transform-of-l-t"}, "N30tN9158Kc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N30tN9158Kc.mp4/N30tN9158Kc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N30tN9158Kc.mp4/N30tN9158Kc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N30tN9158Kc.m3u8/N30tN9158Kc.m3u8"}, "duration": 552, "id": "N30tN9158Kc", "title": "Solving a quadratic by factoring", "format": "mp4", "description": "factoring quadratics", "path": "khan/math/algebra/quadratics/quadratic_odds_ends/solving-a-quadratic-by-factoring/", "slug": "solving-a-quadratic-by-factoring", "kind": "Video", "video_id": "N30tN9158Kc", "keywords": "algebra, CC_39336_A-SSE_3_a", "youtube_id": "N30tN9158Kc", "readable_id": "solving-a-quadratic-by-factoring"}, "xeLeYS7GRvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xeLeYS7GRvY.mp4/xeLeYS7GRvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xeLeYS7GRvY.mp4/xeLeYS7GRvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xeLeYS7GRvY.m3u8/xeLeYS7GRvY.m3u8"}, "duration": 207, "id": "xeLeYS7GRvY", "title": "Fractions cut and copy 1 exercise", "format": "mp4", "description": "", "path": "khan/math/arithmetic/fractions/visualizing-equivalent-fractions/fractions-cut-and-copy-1-exercise/", "slug": "fractions-cut-and-copy-1-exercise", "kind": "Video", "video_id": "xeLeYS7GRvY", "keywords": "", "youtube_id": "xeLeYS7GRvY", "readable_id": "fractions-cut-and-copy-1-exercise"}, "fS-YgKwAco8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fS-YgKwAco8.mp4/fS-YgKwAco8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fS-YgKwAco8.mp4/fS-YgKwAco8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fS-YgKwAco8.m3u8/fS-YgKwAco8.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/a-closer-look-at-the-stanford-prison-experiment/", "duration": 415, "id": "fS-YgKwAco8", "title": "A closer look at the Stanford prison experiment", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "a-closer-look-at-the-stanford-prison-experiment", "kind": "Video", "video_id": "fS-YgKwAco8", "keywords": "", "youtube_id": "fS-YgKwAco8", "readable_id": "a-closer-look-at-the-stanford-prison-experiment"}, "jiq8Baz4KzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jiq8Baz4KzU.mp4/jiq8Baz4KzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jiq8Baz4KzU.mp4/jiq8Baz4KzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jiq8Baz4KzU.m3u8/jiq8Baz4KzU.m3u8"}, "path": "khan/college-admissions/making-high-school-count/standardized-tests/ss-standardized-tests/", "duration": 45, "id": "jiq8Baz4KzU", "title": "Student story: Standardized tests", "format": "mp4", "description": "", "slug": "ss-standardized-tests", "kind": "Video", "video_id": "jiq8Baz4KzU", "keywords": "", "youtube_id": "jiq8Baz4KzU", "readable_id": "ss-standardized-tests"}, "By11dtc-IEo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/By11dtc-IEo.mp4/By11dtc-IEo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/By11dtc-IEo.mp4/By11dtc-IEo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/By11dtc-IEo.m3u8/By11dtc-IEo.m3u8"}, "duration": 145, "id": "By11dtc-IEo", "title": "DLab: Instructor reflections on the Spout Bot", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/discovery-lab-2013/spout-instructor-reflections/", "slug": "spout-instructor-reflections", "kind": "Video", "video_id": "By11dtc-IEo", "keywords": "", "youtube_id": "By11dtc-IEo", "readable_id": "spout-instructor-reflections"}, "5_4xmCLmtb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5_4xmCLmtb8.mp4/5_4xmCLmtb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5_4xmCLmtb8.mp4/5_4xmCLmtb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5_4xmCLmtb8.m3u8/5_4xmCLmtb8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/preparation-of-acyl-acid-chlorides/", "duration": 623, "id": "5_4xmCLmtb8", "title": "Preparation of acyl (acid) chlorides", "format": "mp4", "description": "How to prepare acyl (acid) chlorides using thionyl chloride", "slug": "preparation-of-acyl-acid-chlorides", "kind": "Video", "video_id": "5_4xmCLmtb8", "keywords": "", "youtube_id": "5_4xmCLmtb8", "readable_id": "preparation-of-acyl-acid-chlorides"}, "BTOHSRVqN20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BTOHSRVqN20.mp4/BTOHSRVqN20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BTOHSRVqN20.mp4/BTOHSRVqN20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BTOHSRVqN20.m3u8/BTOHSRVqN20.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/distribution-patterns/distribution-how/", "duration": 438, "id": "BTOHSRVqN20", "title": "How biodiversity is distributed globally", "format": "mp4", "description": "How biodiversity is distributed globally", "slug": "distribution-how", "kind": "Video", "video_id": "BTOHSRVqN20", "keywords": "", "youtube_id": "BTOHSRVqN20", "readable_id": "distribution-how"}, "QS1LMomm0Gk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QS1LMomm0Gk.mp4/QS1LMomm0Gk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QS1LMomm0Gk.mp4/QS1LMomm0Gk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QS1LMomm0Gk.m3u8/QS1LMomm0Gk.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-fractions/adding-fractions-with-different-signs/", "duration": 382, "id": "QS1LMomm0Gk", "title": "Adding fractions with different signs", "format": "mp4", "description": "Use a number line to add fractions with different signs.\u00a0", "slug": "adding-fractions-with-different-signs", "kind": "Video", "video_id": "QS1LMomm0Gk", "keywords": "U09_L2_T2_we2, Adding, fractions, with, different, signs, CC_4_NF_3_a, CC_4_NF_3_b, CC_4_NF_3_c, CC_5_NF_1, CC_5_NF_2", "youtube_id": "QS1LMomm0Gk", "readable_id": "adding-fractions-with-different-signs"}, "LSJuu4Qm2qQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LSJuu4Qm2qQ.mp4/LSJuu4Qm2qQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LSJuu4Qm2qQ.mp4/LSJuu4Qm2qQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LSJuu4Qm2qQ.m3u8/LSJuu4Qm2qQ.m3u8"}, "duration": 551, "id": "LSJuu4Qm2qQ", "title": "Identifying an ellipse from equation", "format": "mp4", "description": "Part 1 of identifying and graphic conic sections", "path": "khan/math/algebra2/conics_precalc/conics_precalc_eqs/identifying-conics-1/", "slug": "identifying-conics-1", "kind": "Video", "video_id": "LSJuu4Qm2qQ", "keywords": "conic, section, graphing, ellipse, hyperbola", "youtube_id": "LSJuu4Qm2qQ", "readable_id": "identifying-conics-1"}, "I3vIAzMcm4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I3vIAzMcm4Y.mp4/I3vIAzMcm4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I3vIAzMcm4Y.mp4/I3vIAzMcm4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I3vIAzMcm4Y.m3u8/I3vIAzMcm4Y.m3u8"}, "duration": 489, "id": "I3vIAzMcm4Y", "title": "Undetermined coefficients 3", "format": "mp4", "description": "Another example where the nonhomogeneous part is a polynomial", "path": "khan/math/differential-equations/second-order-differential-equations/undetermined-coefficients/undetermined-coefficients-3/", "slug": "undetermined-coefficients-3", "kind": "Video", "video_id": "I3vIAzMcm4Y", "keywords": "nonhomogeneous, differential, equations", "youtube_id": "I3vIAzMcm4Y", "readable_id": "undetermined-coefficients-3"}, "DzYwB3uSU-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DzYwB3uSU-c.mp4/DzYwB3uSU-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DzYwB3uSU-c.mp4/DzYwB3uSU-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DzYwB3uSU-c.m3u8/DzYwB3uSU-c.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/mutual-funds/open-ended-mutual-fund-part-1/", "duration": 242, "id": "DzYwB3uSU-c", "title": "Open-ended mutual fund (part 1)", "format": "mp4", "description": "Introduction to Open-Ended Mutual Funds", "slug": "open-ended-mutual-fund-part-1", "kind": "Video", "video_id": "DzYwB3uSU-c", "keywords": "Open, Ended, Mutual, Fund", "youtube_id": "DzYwB3uSU-c", "readable_id": "open-ended-mutual-fund-part-1"}, "6c8BCZd6GXU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6c8BCZd6GXU.mp4/6c8BCZd6GXU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6c8BCZd6GXU.mp4/6c8BCZd6GXU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6c8BCZd6GXU.m3u8/6c8BCZd6GXU.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/relating-social-theories-to-medicine/", "duration": 570, "id": "6c8BCZd6GXU", "title": "Relating social theories to medicine", "format": "mp4", "description": "", "slug": "relating-social-theories-to-medicine", "kind": "Video", "video_id": "6c8BCZd6GXU", "keywords": "", "youtube_id": "6c8BCZd6GXU", "readable_id": "relating-social-theories-to-medicine"}, "1ct7LUx23io": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1ct7LUx23io.mp4/1ct7LUx23io.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1ct7LUx23io.mp4/1ct7LUx23io.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1ct7LUx23io.m3u8/1ct7LUx23io.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/u_substitution/u-substitution-exponential/", "duration": 473, "id": "1ct7LUx23io", "title": "u-substitution with exponential function", "format": "mp4", "description": "", "slug": "u-substitution-exponential", "kind": "Video", "video_id": "1ct7LUx23io", "keywords": "", "youtube_id": "1ct7LUx23io", "readable_id": "u-substitution-exponential"}, "JxC2phkdY8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JxC2phkdY8Y.mp4/JxC2phkdY8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JxC2phkdY8Y.mp4/JxC2phkdY8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JxC2phkdY8Y.m3u8/JxC2phkdY8Y.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/genetic-mutations/the-effects-of-mutations/", "duration": 251, "id": "JxC2phkdY8Y", "title": "The effects of mutations", "format": "mp4", "description": "", "slug": "the-effects-of-mutations", "kind": "Video", "video_id": "JxC2phkdY8Y", "keywords": "MCAT", "youtube_id": "JxC2phkdY8Y", "readable_id": "the-effects-of-mutations"}, "H-aDABqFY6s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H-aDABqFY6s.mp4/H-aDABqFY6s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H-aDABqFY6s.mp4/H-aDABqFY6s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H-aDABqFY6s.m3u8/H-aDABqFY6s.m3u8"}, "duration": 162, "id": "H-aDABqFY6s", "title": "\"Bundle of Emotions\" with Ya\u00eblle Biro", "format": "mp4", "description": "Met curator Ya\u00eblle Biro on humanity in Seated Figure by the Djenn\u00e9 peoples of Mali and the Inland Niger Delta region.\n\nThis haunting figure huddles with its leg hugged to its chest and its head dropped on its knee. It simultaneously suggests the knotted tension of anxiety and the sublime absorption of deep prayer. Created over 700 years ago, in the Inland Niger Delta region of present-day Mali, this elegant work's intense emotional immediacy blurs the boundaries of time and place.\u00a0This terracotta sculpture comes from a site called Jenne-jeno, the oldest known city in sub-Saharan Africa. Jenne-jeno flourished in the ninth century C.E., but declined and was abandoned by 1400. Items of cast brass and forged iron, clay vessels, and figures like this one survive. They testify to what scholars contend was a richly varied and highly sophisticated urban society.\n\nA few controlled archaeological digs provide only the vaguest outlines of the original significance of the art of this time and region. Recovered terracotta figures are frequently quite detailed. They include jewelry, clothing, and body ornaments such as the parallel columns of bumps and circles on the back of this work. Sometimes they cover the entire body and seem to represent the pustules of some dreadful illness. Sculptures like this one may represent ancestors or mythic characters, or might have served as guardians. Here, the figure's shaved head and attitude of introspection resemble mourning customs still practiced by many cultures in sub-Saharan Africa. It is possible that the earlier peoples of the Inland Niger Delta had similar ritual methods to express grief over the death of loved ones.\n\nView this work on\u00a0metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "path": "bundle-of-emotions/", "slug": "bundle-of-emotions", "kind": "Video", "video_id": "H-aDABqFY6s", "keywords": "body, ceramic, sculpture, Africa", "youtube_id": "H-aDABqFY6s", "readable_id": "bundle-of-emotions"}, "ixE3APFcFdA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ixE3APFcFdA.mp4/ixE3APFcFdA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ixE3APFcFdA.mp4/ixE3APFcFdA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ixE3APFcFdA.m3u8/ixE3APFcFdA.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/dave-smith/kauffman-dave-smith-2/", "duration": 220, "id": "ixE3APFcFdA", "title": "Engineering a Solution to Every Problem", "format": "mp4", "description": "When Dave Smith came to the harsh realization and he alone was in charge of his future, he took a resourceful route to become an expert in his field. Mixing the desire to make it with the imagination to fake it, he went to great lengths to connect with TekScape IT customers and make them believe that his tiny organization was big enough to solve their trickiest problems.", "slug": "kauffman-dave-smith-2", "kind": "Video", "video_id": "ixE3APFcFdA", "keywords": "", "youtube_id": "ixE3APFcFdA", "readable_id": "kauffman-dave-smith-2"}, "epgwuzzDHsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/epgwuzzDHsQ.mp4/epgwuzzDHsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/epgwuzzDHsQ.mp4/epgwuzzDHsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/epgwuzzDHsQ.m3u8/epgwuzzDHsQ.m3u8"}, "duration": 779, "id": "epgwuzzDHsQ", "title": "Maclaurin and Taylor series intuition", "format": "mp4", "description": "Approximating a function at 0 using a polynomial", "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/maclauren-and-taylor-series-intuition/", "slug": "maclauren-and-taylor-series-intuition", "kind": "Video", "video_id": "epgwuzzDHsQ", "keywords": "calculus, taylor, maclauren, polynomial", "youtube_id": "epgwuzzDHsQ", "readable_id": "maclauren-and-taylor-series-intuition"}, "EVoZCOVzdaU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EVoZCOVzdaU.mp4/EVoZCOVzdaU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EVoZCOVzdaU.mp4/EVoZCOVzdaU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EVoZCOVzdaU.m3u8/EVoZCOVzdaU.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/experimental-philosophy/", "duration": 259, "id": "EVoZCOVzdaU", "title": "Contemporary: Experimental philosophy", "format": "mp4", "description": "In this video, Joshua Knobe describes a new philosophical tool called experimental philosophy. To explain the project, he introduces some new research from Felipe De Brigard, and he shows how it applies to a traditional problem in philosophy.\u00a0\n\nSpeaker: Dr. Joshua Knobe,\u00a0Professor of Philosophy and Cognitive Science, Yale University", "slug": "experimental-philosophy", "kind": "Video", "video_id": "EVoZCOVzdaU", "keywords": "", "youtube_id": "EVoZCOVzdaU", "readable_id": "experimental-philosophy"}, "pe8Dm_FUpdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pe8Dm_FUpdU.mp4/pe8Dm_FUpdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pe8Dm_FUpdU.mp4/pe8Dm_FUpdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pe8Dm_FUpdU.m3u8/pe8Dm_FUpdU.m3u8"}, "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/focus-and-directrix-introduction/", "duration": 247, "id": "pe8Dm_FUpdU", "title": "Focus and directrix introduction", "format": "mp4", "description": "", "slug": "focus-and-directrix-introduction", "kind": "Video", "video_id": "pe8Dm_FUpdU", "keywords": "", "youtube_id": "pe8Dm_FUpdU", "readable_id": "focus-and-directrix-introduction"}, "Xp6V_lO1ZKA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xp6V_lO1ZKA.mp4/Xp6V_lO1ZKA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xp6V_lO1ZKA.mp4/Xp6V_lO1ZKA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xp6V_lO1ZKA.m3u8/Xp6V_lO1ZKA.m3u8"}, "path": "khan/math/precalculus/prob_comb/dependent_events_precalc/monty-hall-problem/", "duration": 443, "id": "Xp6V_lO1ZKA", "title": "Probability and the Monty Hall problem", "format": "mp4", "description": "Here we have a presentation and analysis of the famous thought experiment: the \"Monty Hall\" problem! This is fun.", "slug": "monty-hall-problem", "kind": "Video", "video_id": "Xp6V_lO1ZKA", "keywords": "probability, monty, hall, lets, make, deal", "youtube_id": "Xp6V_lO1ZKA", "readable_id": "monty-hall-problem"}, "WyAtOqfCiBw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WyAtOqfCiBw.mp4/WyAtOqfCiBw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WyAtOqfCiBw.mp4/WyAtOqfCiBw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WyAtOqfCiBw.m3u8/WyAtOqfCiBw.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/a-mathematical-theory-of-communication/", "duration": 242, "id": "WyAtOqfCiBw", "title": "A mathematical theory of communication", "format": "mp4", "description": "Claude Shannon demonstrated how to generate \"english looking\" text using Markov chains.", "slug": "a-mathematical-theory-of-communication", "kind": "Video", "video_id": "WyAtOqfCiBw", "keywords": "markov chains", "youtube_id": "WyAtOqfCiBw", "readable_id": "a-mathematical-theory-of-communication"}, "xDh4grm_ZSY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xDh4grm_ZSY.mp4/xDh4grm_ZSY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xDh4grm_ZSY.mp4/xDh4grm_ZSY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xDh4grm_ZSY.m3u8/xDh4grm_ZSY.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/gas-phase/definition-of-an-ideal-gas-ideal-gas-law/", "duration": 343, "id": "xDh4grm_ZSY", "title": "Definition of an ideal gas, ideal gas law", "format": "mp4", "description": "", "slug": "definition-of-an-ideal-gas-ideal-gas-law", "kind": "Video", "video_id": "xDh4grm_ZSY", "keywords": "", "youtube_id": "xDh4grm_ZSY", "readable_id": "definition-of-an-ideal-gas-ideal-gas-law"}, "U44my48zgFE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U44my48zgFE.mp4/U44my48zgFE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U44my48zgFE.mp4/U44my48zgFE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U44my48zgFE.m3u8/U44my48zgFE.m3u8"}, "duration": 228, "id": "U44my48zgFE", "title": "More than one equal section", "format": "mp4", "description": "Use fractions to name parts of a whole.", "path": "more-than-one-equal-section/", "slug": "more-than-one-equal-section", "kind": "Video", "video_id": "U44my48zgFE", "keywords": "", "youtube_id": "U44my48zgFE", "readable_id": "more-than-one-equal-section"}, "Ht-YXje4R2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ht-YXje4R2g.mp4/Ht-YXje4R2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ht-YXje4R2g.mp4/Ht-YXje4R2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ht-YXje4R2g.m3u8/Ht-YXje4R2g.m3u8"}, "duration": 171, "id": "Ht-YXje4R2g", "title": "Simplifying with exponent properties", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/simplifying-with-exponent-properties/", "slug": "simplifying-with-exponent-properties", "kind": "Video", "video_id": "Ht-YXje4R2g", "keywords": "", "youtube_id": "Ht-YXje4R2g", "readable_id": "simplifying-with-exponent-properties"}, "il0EJrY64qE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/il0EJrY64qE.mp4/il0EJrY64qE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/il0EJrY64qE.mp4/il0EJrY64qE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/il0EJrY64qE.m3u8/il0EJrY64qE.m3u8"}, "path": "khan/math/geometry/intro_euclid/language-and-notation-of-basic-geometry/", "duration": 778, "id": "il0EJrY64qE", "title": "Basic geometry: language and labels", "format": "mp4", "description": "Before learning any new concept (mathematical or otherwise), it's important we learn and use a common language and label concepts consistently.", "slug": "language-and-notation-of-basic-geometry", "kind": "Video", "video_id": "il0EJrY64qE", "keywords": "geometry", "youtube_id": "il0EJrY64qE", "readable_id": "language-and-notation-of-basic-geometry"}, "zqb4Zvb5PNA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zqb4Zvb5PNA.mp4/zqb4Zvb5PNA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zqb4Zvb5PNA.mp4/zqb4Zvb5PNA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zqb4Zvb5PNA.m3u8/zqb4Zvb5PNA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/early-classical/artemision-zeus/", "duration": 308, "id": "zqb4Zvb5PNA", "title": "Artemision Zeus or Poseidon", "format": "mp4", "description": "Artemision Zeus or Poseidon, c. 460 B.C.E., bronze, 2.09 m high, Early Classical (Severe Style), recovered from a shipwreck off Cape Artemision, Greece in 1928 (National Archaeological Museum, Athens)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "artemision-zeus", "kind": "Video", "video_id": "zqb4Zvb5PNA", "keywords": "Early Classical, Classical, Greek, Ancient, bronze, Zeus, Poseidon, god, severe, trident, thunderbolt", "youtube_id": "zqb4Zvb5PNA", "readable_id": "artemision-zeus"}, "byj5VLuLS6c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/byj5VLuLS6c.mp4/byj5VLuLS6c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/byj5VLuLS6c.mp4/byj5VLuLS6c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/byj5VLuLS6c.m3u8/byj5VLuLS6c.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/end-systolic-pressure-volume-relationship-espvr/", "duration": 623, "id": "byj5VLuLS6c", "title": "End systolic pressure-volume relationship (ESPVR)", "format": "mp4", "description": "Find out what happens when the left ventricle is not allowed to relax, and instead you simply add and take away blood from it. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "end-systolic-pressure-volume-relationship-espvr", "kind": "Video", "video_id": "byj5VLuLS6c", "keywords": "", "youtube_id": "byj5VLuLS6c", "readable_id": "end-systolic-pressure-volume-relationship-espvr"}, "ANGRsubKS3M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ANGRsubKS3M.mp4/ANGRsubKS3M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ANGRsubKS3M.mp4/ANGRsubKS3M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ANGRsubKS3M.m3u8/ANGRsubKS3M.m3u8"}, "path": "khan/college-admissions/paying-for-college/introduction-pfc/a-message-to-parents-on-paying-for-college/", "duration": 362, "id": "ANGRsubKS3M", "title": "A message to parents on paying for college", "format": "mp4", "description": "FAFSA | CSS Profile | Federal Student Loans | Federal Parent PLUS Loans | College Scorecard & Net Price Calculator | FAFSA4caster | Additional Info on Beth Kobliner", "slug": "a-message-to-parents-on-paying-for-college", "kind": "Video", "video_id": "ANGRsubKS3M", "keywords": "", "youtube_id": "ANGRsubKS3M", "readable_id": "a-message-to-parents-on-paying-for-college"}, "dam16G6cZ8k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dam16G6cZ8k.mp4/dam16G6cZ8k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dam16G6cZ8k.mp4/dam16G6cZ8k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dam16G6cZ8k.m3u8/dam16G6cZ8k.m3u8"}, "duration": 687, "id": "dam16G6cZ8k", "title": "Optimizing profit at a shoe factory", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/optimizing-profit-at-a-shoe-factory/", "slug": "optimizing-profit-at-a-shoe-factory", "kind": "Video", "video_id": "dam16G6cZ8k", "keywords": "", "youtube_id": "dam16G6cZ8k", "readable_id": "optimizing-profit-at-a-shoe-factory"}, "0fKBhvDjuy0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0fKBhvDjuy0.mp4/0fKBhvDjuy0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0fKBhvDjuy0.mp4/0fKBhvDjuy0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0fKBhvDjuy0.m3u8/0fKBhvDjuy0.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/scale/powers-of-ten/", "duration": 541, "id": "0fKBhvDjuy0", "title": "Powers of Ten\u2122 (1977)", "format": "mp4", "description": "Powers of Ten takes us on an adventure in magnitude.", "slug": "powers-of-ten", "kind": "Video", "video_id": "0fKBhvDjuy0", "keywords": "", "youtube_id": "0fKBhvDjuy0", "readable_id": "powers-of-ten"}, "QymONNa5C6s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QymONNa5C6s.mp4/QymONNa5C6s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QymONNa5C6s.mp4/QymONNa5C6s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QymONNa5C6s.m3u8/QymONNa5C6s.m3u8"}, "duration": 654, "id": "QymONNa5C6s", "title": "Water - Liquid awesome", "format": "mp4", "description": "Hank teaches us why water is one of the most fascinating and important substances in the universe.", "path": "crash-course-biology-102/", "slug": "crash-course-biology-102", "kind": "Video", "video_id": "QymONNa5C6s", "keywords": "", "youtube_id": "QymONNa5C6s", "readable_id": "crash-course-biology-102"}, "KQ63wu7lsXo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KQ63wu7lsXo.mp4/KQ63wu7lsXo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KQ63wu7lsXo.mp4/KQ63wu7lsXo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KQ63wu7lsXo.m3u8/KQ63wu7lsXo.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/hellenistic/barberini-faun-c-220-b-c-e/", "duration": 358, "id": "KQ63wu7lsXo", "title": "Barberini Faun", "format": "mp4", "description": "Barberini Faun, c. 220 B.C.E., Hellenistic Period (Glyptothek, Munich). Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "barberini-faun-c-220-b-c-e", "kind": "Video", "video_id": "KQ63wu7lsXo", "keywords": "hellenistic, greek, art, sculpture, mythology", "youtube_id": "KQ63wu7lsXo", "readable_id": "barberini-faun-c-220-b-c-e"}, "oNgo9bbDi7Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oNgo9bbDi7Q.mp4/oNgo9bbDi7Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oNgo9bbDi7Q.mp4/oNgo9bbDi7Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oNgo9bbDi7Q.m3u8/oNgo9bbDi7Q.m3u8"}, "duration": 491, "id": "oNgo9bbDi7Q", "title": "Balanced and unbalanced forces", "format": "mp4", "description": "Primer on identifying balanced and unbalanced forces", "path": "khan/test-prep/mcat/physical-processes/normal-forces/balanced-and-unbalanced-forces/", "slug": "balanced-and-unbalanced-forces", "kind": "Video", "video_id": "oNgo9bbDi7Q", "keywords": "balanced, forces, newton's, laws, net, force", "youtube_id": "oNgo9bbDi7Q", "readable_id": "balanced-and-unbalanced-forces"}, "Muba9-W2FOQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Muba9-W2FOQ.mp4/Muba9-W2FOQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Muba9-W2FOQ.mp4/Muba9-W2FOQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Muba9-W2FOQ.m3u8/Muba9-W2FOQ.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/number-patterns/interpreting-and-graphing-relationships-between-patterns/", "duration": 273, "id": "Muba9-W2FOQ", "title": "Number patterns:: interpreting and graphing relationships", "format": "mp4", "description": "We're building in complexity as we interpret and graph the relationships between patterns in the given ordered pairs. Don't stress. We're here to help!", "slug": "interpreting-and-graphing-relationships-between-patterns", "kind": "Video", "video_id": "Muba9-W2FOQ", "keywords": "", "youtube_id": "Muba9-W2FOQ", "readable_id": "interpreting-and-graphing-relationships-between-patterns"}, "pNBxj5ad8G4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pNBxj5ad8G4.mp4/pNBxj5ad8G4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pNBxj5ad8G4.mp4/pNBxj5ad8G4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pNBxj5ad8G4.m3u8/pNBxj5ad8G4.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-15/", "duration": 144, "id": "pNBxj5ad8G4", "title": "15 Right triangle side lengths", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-15", "kind": "Video", "video_id": "pNBxj5ad8G4", "keywords": "", "youtube_id": "pNBxj5ad8G4", "readable_id": "sat-2010-may-6-15"}, "owcmu4XxrHM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/owcmu4XxrHM.mp4/owcmu4XxrHM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/owcmu4XxrHM.mp4/owcmu4XxrHM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/owcmu4XxrHM.m3u8/owcmu4XxrHM.m3u8"}, "duration": 218, "id": "owcmu4XxrHM", "title": "Interpreting futures fair value in the premarket", "format": "mp4", "description": "How to interpret the market price of a futures contract relative to the fair value in the premarket", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/interpretting-futures-fair-value-in-the-premarket/", "slug": "interpretting-futures-fair-value-in-the-premarket", "kind": "Video", "video_id": "owcmu4XxrHM", "keywords": "finance, stocks, investing, market", "youtube_id": "owcmu4XxrHM", "readable_id": "interpretting-futures-fair-value-in-the-premarket"}, "xNOZ5yjIw-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xNOZ5yjIw-c.mp4/xNOZ5yjIw-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xNOZ5yjIw-c.mp4/xNOZ5yjIw-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xNOZ5yjIw-c.m3u8/xNOZ5yjIw-c.m3u8"}, "path": "khan/college-admissions/making-high-school-count/introduction-mhsc/overview-making-high-school-count/", "duration": 162, "id": "xNOZ5yjIw-c", "title": "Overview: Making high school count", "format": "mp4", "description": "", "slug": "overview-making-high-school-count", "kind": "Video", "video_id": "xNOZ5yjIw-c", "keywords": "", "youtube_id": "xNOZ5yjIw-c", "readable_id": "overview-making-high-school-count"}, "rSadG6EtJmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rSadG6EtJmY.mp4/rSadG6EtJmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rSadG6EtJmY.mp4/rSadG6EtJmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rSadG6EtJmY.m3u8/rSadG6EtJmY.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/direct-variation-1/", "duration": 219, "id": "rSadG6EtJmY", "title": "Direct variation 1", "format": "mp4", "description": "Direct Variation 1", "slug": "direct-variation-1", "kind": "Video", "video_id": "rSadG6EtJmY", "keywords": "Direct, Variation, CC_8_F_1, CC_8_F_4, CC_8_F_5", "youtube_id": "rSadG6EtJmY", "readable_id": "direct-variation-1"}, "wuhNZejHeBg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wuhNZejHeBg.mp4/wuhNZejHeBg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wuhNZejHeBg.mp4/wuhNZejHeBg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wuhNZejHeBg.m3u8/wuhNZejHeBg.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spacemath1/lunareclipse/", "duration": 107, "id": "wuhNZejHeBg", "title": "Lunar eclipse", "format": "mp4", "description": "When the moon passes through the Earth's shadow, it causes the moon to look very unusual for a short period of time. This event is called a lunar eclipse, and it occurs roughly twice a year. ", "slug": "lunareclipse", "kind": "Video", "video_id": "wuhNZejHeBg", "keywords": "", "youtube_id": "wuhNZejHeBg", "readable_id": "lunareclipse"}, "MdIfefLcdoU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MdIfefLcdoU.mp4/MdIfefLcdoU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MdIfefLcdoU.mp4/MdIfefLcdoU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MdIfefLcdoU.m3u8/MdIfefLcdoU.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-7-bank-goes-into-bankruptcy/", "duration": 625, "id": "MdIfefLcdoU", "title": "Bailout 7: Bank goes into bankruptcy", "format": "mp4", "description": "What happens when there is no equity infusion and the bank goes in to bankruptcy.", "slug": "bailout-7-bank-goes-into-bankruptcy", "kind": "Video", "video_id": "MdIfefLcdoU", "keywords": "bailout, receivership, bankruptcy, paulson, bernanke", "youtube_id": "MdIfefLcdoU", "readable_id": "bailout-7-bank-goes-into-bankruptcy"}, "x6rAFt5FW_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x6rAFt5FW_Q.mp4/x6rAFt5FW_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x6rAFt5FW_Q.mp4/x6rAFt5FW_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x6rAFt5FW_Q.m3u8/x6rAFt5FW_Q.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/renoir-moulin-de-la-galette-1876/", "duration": 306, "id": "x6rAFt5FW_Q", "title": "Renoir, Moulin de la Galette", "format": "mp4", "description": "Pierre-Auguste Renoir, Moulin de la Galette, 1876, oil on canvas, 51 1/2 x 68 7/8 in. (131 x 175 cm), (Mus\u00e9e d'Orsay, Paris) Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "renoir-moulin-de-la-galette-1876", "kind": "Video", "video_id": "x6rAFt5FW_Q", "keywords": "Pierre-Auguste Renoir, Smarthistory, Art History, Impressionism, Renoir", "youtube_id": "x6rAFt5FW_Q", "readable_id": "renoir-moulin-de-la-galette-1876"}, "FPh6EDv0Eew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FPh6EDv0Eew.mp4/FPh6EDv0Eew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FPh6EDv0Eew.mp4/FPh6EDv0Eew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FPh6EDv0Eew.m3u8/FPh6EDv0Eew.m3u8"}, "duration": 190, "id": "FPh6EDv0Eew", "title": "Deflation", "format": "mp4", "description": "Basics of deflation", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/deflation-tutorial/deflation/", "slug": "deflation", "kind": "Video", "video_id": "FPh6EDv0Eew", "keywords": "finance, deflation", "youtube_id": "FPh6EDv0Eew", "readable_id": "deflation"}, "u2hLYcmI5y4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u2hLYcmI5y4.mp4/u2hLYcmI5y4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u2hLYcmI5y4.mp4/u2hLYcmI5y4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u2hLYcmI5y4.m3u8/u2hLYcmI5y4.m3u8"}, "path": "khan/math/arithmetic/fractions/understanding_fractions/fraction-word-problems-1-exercise/", "duration": 319, "id": "u2hLYcmI5y4", "title": "Figuring out how much pizza is left", "format": "mp4", "description": "", "slug": "fraction-word-problems-1-exercise", "kind": "Video", "video_id": "u2hLYcmI5y4", "keywords": "", "youtube_id": "u2hLYcmI5y4", "readable_id": "fraction-word-problems-1-exercise"}, "d1oNF88SAgg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d1oNF88SAgg.mp4/d1oNF88SAgg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d1oNF88SAgg.mp4/d1oNF88SAgg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d1oNF88SAgg.m3u8/d1oNF88SAgg.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/another-percent-word-problem/", "duration": 378, "id": "d1oNF88SAgg", "title": "Percent word problem example 1", "format": "mp4", "description": "We're putting a little algebra to work to find the full price when you know the discount price in this percent word problem.", "slug": "another-percent-word-problem", "kind": "Video", "video_id": "d1oNF88SAgg", "keywords": "percent, word, problem, CC_7_RP_3", "youtube_id": "d1oNF88SAgg", "readable_id": "another-percent-word-problem"}, "ONPYKR8jNn8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ONPYKR8jNn8.mp4/ONPYKR8jNn8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ONPYKR8jNn8.mp4/ONPYKR8jNn8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ONPYKR8jNn8.m3u8/ONPYKR8jNn8.m3u8"}, "duration": 241, "id": "ONPYKR8jNn8", "title": "Five Tips for Teaching with Works of Art | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses five keys strategies for teaching with works of art.\u00a0Visit MoMA Learning for more teaching and learning resources.\u00a0", "path": "tips-for-teaching/", "slug": "tips-for-teaching", "kind": "Video", "video_id": "ONPYKR8jNn8", "keywords": "", "youtube_id": "ONPYKR8jNn8", "readable_id": "tips-for-teaching"}, "RdFfIEDxo18": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RdFfIEDxo18.mp4/RdFfIEDxo18.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RdFfIEDxo18.mp4/RdFfIEDxo18.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RdFfIEDxo18.m3u8/RdFfIEDxo18.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkyne-reactions/reduction-of-alkynes/", "duration": 604, "id": "RdFfIEDxo18", "title": "Reduction of alkynes", "format": "mp4", "description": "", "slug": "reduction-of-alkynes", "kind": "Video", "video_id": "RdFfIEDxo18", "keywords": "", "youtube_id": "RdFfIEDxo18", "readable_id": "reduction-of-alkynes"}, "oxbSM2IwIBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oxbSM2IwIBo.mp4/oxbSM2IwIBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oxbSM2IwIBo.mp4/oxbSM2IwIBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oxbSM2IwIBo.m3u8/oxbSM2IwIBo.m3u8"}, "path": "khan/partner-content/big-history-project/future/looking-forward/bhp-visions-of-future/", "duration": 214, "id": "oxbSM2IwIBo", "title": "Bill Gates: Visions of the Future", "format": "mp4", "description": "Businessman and philanthropist Bill Gates looks towards a future of sustainable energy and worldwide education.", "slug": "bhp-visions-of-future", "kind": "Video", "video_id": "oxbSM2IwIBo", "keywords": "", "youtube_id": "oxbSM2IwIBo", "readable_id": "bhp-visions-of-future"}, "Z3qRkxzmYnU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z3qRkxzmYnU.mp4/Z3qRkxzmYnU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z3qRkxzmYnU.mp4/Z3qRkxzmYnU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z3qRkxzmYnU.m3u8/Z3qRkxzmYnU.m3u8"}, "duration": 108, "id": "Z3qRkxzmYnU", "title": "Division word problem example 1", "format": "mp4", "description": "", "path": "khan/math/arithmetic/multiplication-division/mult-div-word-problems/division-word-problem-example-1/", "slug": "division-word-problem-example-1", "kind": "Video", "video_id": "Z3qRkxzmYnU", "keywords": "", "youtube_id": "Z3qRkxzmYnU", "readable_id": "division-word-problem-example-1"}, "aHx3k9NhIEM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aHx3k9NhIEM.mp4/aHx3k9NhIEM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aHx3k9NhIEM.mp4/aHx3k9NhIEM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aHx3k9NhIEM.m3u8/aHx3k9NhIEM.m3u8"}, "path": "khan/humanities/art-asia/south-asia/afghanistan/hidden-treasures-afghanistan/", "duration": 203, "id": "aHx3k9NhIEM", "title": "Hidden treasures revealed", "format": "mp4", "description": "A story of daring and intrigue - archaeologists discovered the treasures of Afghanistan's nomadic ancestors but then had to hide them to keep them safe.\u00a0\u00a9 Trustees of the British Museum", "slug": "hidden-treasures-afghanistan", "kind": "Video", "video_id": "aHx3k9NhIEM", "keywords": "", "youtube_id": "aHx3k9NhIEM", "readable_id": "hidden-treasures-afghanistan"}, "S_OX3ByvBSc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S_OX3ByvBSc.mp4/S_OX3ByvBSc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S_OX3ByvBSc.mp4/S_OX3ByvBSc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S_OX3ByvBSc.m3u8/S_OX3ByvBSc.m3u8"}, "duration": 125, "id": "S_OX3ByvBSc", "title": "Evaluating expressions with two variables", "format": "mp4", "description": "We've done a few examples together where we were faced with 1 variable. Why not try one that has 2 variables?", "path": "evaluating-expressions-in-two-variables/", "slug": "evaluating-expressions-in-two-variables", "kind": "Video", "video_id": "S_OX3ByvBSc", "keywords": "", "youtube_id": "S_OX3ByvBSc", "readable_id": "evaluating-expressions-in-two-variables"}, "VrFbXxkl9JU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VrFbXxkl9JU.mp4/VrFbXxkl9JU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VrFbXxkl9JU.mp4/VrFbXxkl9JU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VrFbXxkl9JU.m3u8/VrFbXxkl9JU.m3u8"}, "duration": 821, "id": "VrFbXxkl9JU", "title": "P/E conundrum", "format": "mp4", "description": "A situation where the price to earnings ratio seems to not fairly price an asset", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/p-e-conundrum/", "slug": "p-e-conundrum", "kind": "Video", "video_id": "VrFbXxkl9JU", "keywords": "asset, p/e, enterprise, value, valuation", "youtube_id": "VrFbXxkl9JU", "readable_id": "p-e-conundrum"}, "ycBxbgjQns4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ycBxbgjQns4.mp4/ycBxbgjQns4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ycBxbgjQns4.mp4/ycBxbgjQns4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ycBxbgjQns4.m3u8/ycBxbgjQns4.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens-hundreds/subtracting-3-digits/", "duration": 192, "id": "ycBxbgjQns4", "title": "Subtracting hundreds, tens, and ones", "format": "mp4", "description": "Learn how to subtract three-digit numbers by subtracting ones, tens, and hundreds.", "slug": "subtracting-3-digits", "kind": "Video", "video_id": "ycBxbgjQns4", "keywords": "", "youtube_id": "ycBxbgjQns4", "readable_id": "subtracting-3-digits"}, "CIyAs0bxeoI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CIyAs0bxeoI.mp4/CIyAs0bxeoI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CIyAs0bxeoI.mp4/CIyAs0bxeoI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CIyAs0bxeoI.m3u8/CIyAs0bxeoI.m3u8"}, "duration": 779, "id": "CIyAs0bxeoI", "title": "ATP & respiration", "format": "mp4", "description": "In which Hank does some push ups for science and describes the \"economy\" of cellular respiration and the various processes whereby our bodies create energy in the form of ATP.", "path": "crash-course-biology-107/", "slug": "crash-course-biology-107", "kind": "Video", "video_id": "CIyAs0bxeoI", "keywords": "", "youtube_id": "CIyAs0bxeoI", "readable_id": "crash-course-biology-107"}, "4_xhiP6g2ow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4_xhiP6g2ow.mp4/4_xhiP6g2ow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4_xhiP6g2ow.mp4/4_xhiP6g2ow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4_xhiP6g2ow.m3u8/4_xhiP6g2ow.m3u8"}, "duration": 608, "id": "4_xhiP6g2ow", "title": "Three points defining a circle", "format": "mp4", "description": "Three points uniquely define a circle. The center of a circle is the circumcenter of any triangle the circle is circumscribed about.", "path": "khan/math/geometry/triangle-properties/perpendicular_bisectors/three-points-defining-a-circle/", "slug": "three-points-defining-a-circle", "kind": "Video", "video_id": "4_xhiP6g2ow", "keywords": "Three, Points, Defining, Circle", "youtube_id": "4_xhiP6g2ow", "readable_id": "three-points-defining-a-circle"}, "9VZsMY15xeU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9VZsMY15xeU.mp4/9VZsMY15xeU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9VZsMY15xeU.mp4/9VZsMY15xeU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9VZsMY15xeU.m3u8/9VZsMY15xeU.m3u8"}, "duration": 516, "id": "9VZsMY15xeU", "title": "Averages", "format": "mp4", "description": "Introduction to averages and algebra problems involving averages.", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/averages/", "slug": "averages", "kind": "Video", "video_id": "9VZsMY15xeU", "keywords": "Math, Khan, Average, Algebra, CC_6_EE_6", "youtube_id": "9VZsMY15xeU", "readable_id": "averages"}, "yUaI0JriZtY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yUaI0JriZtY.mp4/yUaI0JriZtY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yUaI0JriZtY.mp4/yUaI0JriZtY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yUaI0JriZtY.m3u8/yUaI0JriZtY.m3u8"}, "path": "khan/math/precalculus/prob_comb/basic_prob_precalc/simple-probability/", "duration": 176, "id": "yUaI0JriZtY", "title": "Finding probablity example", "format": "mp4", "description": "In order to find the probability of picking a yellow marble from a bag, we have to first determine the number of possible outcomes and how then many of them meet our constraints.", "slug": "simple-probability", "kind": "Video", "video_id": "yUaI0JriZtY", "keywords": "u08_l4_t1_we1, Simple, Probability", "youtube_id": "yUaI0JriZtY", "readable_id": "simple-probability"}, "o_Bb43LApog": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o_Bb43LApog.mp4/o_Bb43LApog.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o_Bb43LApog.mp4/o_Bb43LApog.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o_Bb43LApog.m3u8/o_Bb43LApog.m3u8"}, "path": "khan/science/health-and-medicine/lab-values/molarity-molality-osmolarity-osmolality-and-tonicity-what-s-the-difference/", "duration": 244, "id": "o_Bb43LApog", "title": "Molarity, molality, osmolarity, osmolality, and tonicity - what's the difference?", "format": "mp4", "description": "See how each of these terms tells us something different about a solution. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "molarity-molality-osmolarity-osmolality-and-tonicity-what-s-the-difference", "kind": "Video", "video_id": "o_Bb43LApog", "keywords": "", "youtube_id": "o_Bb43LApog", "readable_id": "molarity-molality-osmolarity-osmolality-and-tonicity-what-s-the-difference"}, "aCbyeNsc1Ck": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aCbyeNsc1Ck.mp4/aCbyeNsc1Ck.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aCbyeNsc1Ck.mp4/aCbyeNsc1Ck.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aCbyeNsc1Ck.m3u8/aCbyeNsc1Ck.m3u8"}, "path": "khan/college-admissions/making-high-school-count/extracurricular-and-leadership/ss-extracurriculars-that-carry-over-from-high-school-to-college/", "duration": 51, "id": "aCbyeNsc1Ck", "title": "Student story: Extracurriculars that carry over from high school to college", "format": "mp4", "description": "", "slug": "ss-extracurriculars-that-carry-over-from-high-school-to-college", "kind": "Video", "video_id": "aCbyeNsc1Ck", "keywords": "", "youtube_id": "aCbyeNsc1Ck", "readable_id": "ss-extracurriculars-that-carry-over-from-high-school-to-college"}, "Gl7bQNm92fE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gl7bQNm92fE.mp4/Gl7bQNm92fE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gl7bQNm92fE.mp4/Gl7bQNm92fE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gl7bQNm92fE.m3u8/Gl7bQNm92fE.m3u8"}, "duration": 813, "id": "Gl7bQNm92fE", "title": "Formation of imines and enamines", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/formation-of-imines-and-enamines/", "slug": "formation-of-imines-and-enamines", "kind": "Video", "video_id": "Gl7bQNm92fE", "keywords": "", "youtube_id": "Gl7bQNm92fE", "readable_id": "formation-of-imines-and-enamines"}, "asyIsn59Lnc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/asyIsn59Lnc.mp4/asyIsn59Lnc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/asyIsn59Lnc.mp4/asyIsn59Lnc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/asyIsn59Lnc.m3u8/asyIsn59Lnc.m3u8"}, "duration": 645, "id": "asyIsn59Lnc", "title": "Divergence theorem example 1", "format": "mp4", "description": "Example of calculating the flux across a surface by using the Divergence Theorem", "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem/divergence-theorem-example-1/", "slug": "divergence-theorem-example-1", "kind": "Video", "video_id": "asyIsn59Lnc", "keywords": "", "youtube_id": "asyIsn59Lnc", "readable_id": "divergence-theorem-example-1"}, "3B73j1tKkpI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3B73j1tKkpI.mp4/3B73j1tKkpI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3B73j1tKkpI.mp4/3B73j1tKkpI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3B73j1tKkpI.m3u8/3B73j1tKkpI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/pathophysiology-type-i-diabetes/", "duration": 666, "id": "3B73j1tKkpI", "title": "Pathophysiology - Type I diabetes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "pathophysiology-type-i-diabetes", "kind": "Video", "video_id": "3B73j1tKkpI", "keywords": "", "youtube_id": "3B73j1tKkpI", "readable_id": "pathophysiology-type-i-diabetes"}, "KkJ0wL9f2VY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KkJ0wL9f2VY.mp4/KkJ0wL9f2VY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KkJ0wL9f2VY.mp4/KkJ0wL9f2VY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KkJ0wL9f2VY.m3u8/KkJ0wL9f2VY.m3u8"}, "duration": 558, "id": "KkJ0wL9f2VY", "title": "Doppler effect formula when source is moving away", "format": "mp4", "description": "Doppler effect formula when source is moving away", "path": "khan/test-prep/mcat/physical-processes/sound/doppler-effect-formula-when-source-is-moving-away/", "slug": "doppler-effect-formula-when-source-is-moving-away", "kind": "Video", "video_id": "KkJ0wL9f2VY", "keywords": "doppler, effect, formula", "youtube_id": "KkJ0wL9f2VY", "readable_id": "doppler-effect-formula-when-source-is-moving-away"}, "YEQNnO64wLc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YEQNnO64wLc.mp4/YEQNnO64wLc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YEQNnO64wLc.mp4/YEQNnO64wLc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YEQNnO64wLc.m3u8/YEQNnO64wLc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/utis-in-pregnancy/", "duration": 610, "id": "YEQNnO64wLc", "title": "UTIs in pregnancy", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "utis-in-pregnancy", "kind": "Video", "video_id": "YEQNnO64wLc", "keywords": "", "youtube_id": "YEQNnO64wLc", "readable_id": "utis-in-pregnancy"}, "hRgAA8IH834": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hRgAA8IH834.mp4/hRgAA8IH834.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hRgAA8IH834.mp4/hRgAA8IH834.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hRgAA8IH834.m3u8/hRgAA8IH834.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/stress/stressors/", "duration": 411, "id": "hRgAA8IH834", "title": "Stressors", "format": "mp4", "description": "", "slug": "stressors", "kind": "Video", "video_id": "hRgAA8IH834", "keywords": "MCAT", "youtube_id": "hRgAA8IH834", "readable_id": "stressors"}, "3cnIa0fYJkY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3cnIa0fYJkY.mp4/3cnIa0fYJkY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3cnIa0fYJkY.mp4/3cnIa0fYJkY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3cnIa0fYJkY.m3u8/3cnIa0fYJkY.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/zero-identity-matrix-tutorial/identity-matrix/", "duration": 479, "id": "3cnIa0fYJkY", "title": "Identity matrix", "format": "mp4", "description": "", "slug": "identity-matrix", "kind": "Video", "video_id": "3cnIa0fYJkY", "keywords": "", "youtube_id": "3cnIa0fYJkY", "readable_id": "identity-matrix"}, "rSBbnHLR_cg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rSBbnHLR_cg.mp4/rSBbnHLR_cg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rSBbnHLR_cg.mp4/rSBbnHLR_cg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rSBbnHLR_cg.m3u8/rSBbnHLR_cg.m3u8"}, "duration": 220, "id": "rSBbnHLR_cg", "title": "Homeostasis", "format": "mp4", "description": "", "path": "homeostasis/", "slug": "homeostasis", "kind": "Video", "video_id": "rSBbnHLR_cg", "keywords": "", "youtube_id": "rSBbnHLR_cg", "readable_id": "homeostasis"}, "Ea6qS3nuvng": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ea6qS3nuvng.mp4/Ea6qS3nuvng.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ea6qS3nuvng.mp4/Ea6qS3nuvng.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ea6qS3nuvng.m3u8/Ea6qS3nuvng.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/hieronymus-bosch/bosch-last-judgment-triptych-1504-08/", "duration": 532, "id": "Ea6qS3nuvng", "title": "Bosch, the Last Judgment", "format": "mp4", "description": "Hieronymus Bosch, Last Judgment Triptych, 1504-08, Akademie f\u00fcr bildenden K\u00fcnste, Vienna, overall dimensions 163 x 250 cm, central panel 163 x 128 cm, wings 163 x 60 cm. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "bosch-last-judgment-triptych-1504-08", "kind": "Video", "video_id": "Ea6qS3nuvng", "keywords": "khan academy, smarthistory, art history, Bosch, Last Judgment, Hell, Heaven, Creation, painting, triptych, altarpiece, Vienna", "youtube_id": "Ea6qS3nuvng", "readable_id": "bosch-last-judgment-triptych-1504-08"}, "Wp2nVIzBsE8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wp2nVIzBsE8.mp4/Wp2nVIzBsE8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wp2nVIzBsE8.mp4/Wp2nVIzBsE8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wp2nVIzBsE8.m3u8/Wp2nVIzBsE8.m3u8"}, "path": "khan/math/probability/statistics-inferential/normal_distribution/ck12-org-normal-distribution-problems-z-score/", "duration": 468, "id": "Wp2nVIzBsE8", "title": "ck12.org normal distribution problems: z-score", "format": "mp4", "description": "Z-score practice", "slug": "ck12-org-normal-distribution-problems-z-score", "kind": "Video", "video_id": "Wp2nVIzBsE8", "keywords": "z-score, normal, distribution, CC_6_SP_5_c, CC_6_SP_5_d, CC_7_SP_2", "youtube_id": "Wp2nVIzBsE8", "readable_id": "ck12-org-normal-distribution-problems-z-score"}, "1wsF9GpGd00": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1wsF9GpGd00.mp4/1wsF9GpGd00.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1wsF9GpGd00.mp4/1wsF9GpGd00.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1wsF9GpGd00.m3u8/1wsF9GpGd00.m3u8"}, "path": "khan/math/probability/independent-dependent-probability/basic_set_operations/subset-strict-subset-and-superset/", "duration": 272, "id": "1wsF9GpGd00", "title": "Subset, strict subset, and superset", "format": "mp4", "description": "", "slug": "subset-strict-subset-and-superset", "kind": "Video", "video_id": "1wsF9GpGd00", "keywords": "", "youtube_id": "1wsF9GpGd00", "readable_id": "subset-strict-subset-and-superset"}, "cgccQVcFLi4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cgccQVcFLi4.mp4/cgccQVcFLi4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cgccQVcFLi4.mp4/cgccQVcFLi4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cgccQVcFLi4.m3u8/cgccQVcFLi4.m3u8"}, "duration": 853, "id": "cgccQVcFLi4", "title": "Foramen ovale and ductus arteriosus", "format": "mp4", "description": "Watch how the fetal heart allows blood to simply bypass the lungs altogether using the Foramen Ovale and the Ductus Arteriosus! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/foramen-ovale-and-ductus-arteriosus/", "slug": "foramen-ovale-and-ductus-arteriosus", "kind": "Video", "video_id": "cgccQVcFLi4", "keywords": "", "youtube_id": "cgccQVcFLi4", "readable_id": "foramen-ovale-and-ductus-arteriosus"}, "CGA8sRwqIFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CGA8sRwqIFg.mp4/CGA8sRwqIFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CGA8sRwqIFg.mp4/CGA8sRwqIFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CGA8sRwqIFg.m3u8/CGA8sRwqIFg.m3u8"}, "path": "khan/science/chemistry/chemical-bonds/types-chemical-bonds/ionic-covalent-and-metallic-bonds/", "duration": 802, "id": "CGA8sRwqIFg", "title": "Ionic, covalent, and metallic bonds", "format": "mp4", "description": "Introduction to ionic, covalent, polar covalent and metallic bonds.", "slug": "ionic-covalent-and-metallic-bonds", "kind": "Video", "video_id": "CGA8sRwqIFg", "keywords": "chemisty, bonding, covalent, ionic, bond, bonds, science", "youtube_id": "CGA8sRwqIFg", "readable_id": "ionic-covalent-and-metallic-bonds"}, "hGMwMlksZlM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hGMwMlksZlM.mp4/hGMwMlksZlM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hGMwMlksZlM.mp4/hGMwMlksZlM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hGMwMlksZlM.m3u8/hGMwMlksZlM.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/emperor-hadrian-s-private-retreat-the-maritime-theatre-at-hadrian-s-villa-tivoli/", "duration": 301, "id": "hGMwMlksZlM", "title": "Maritime Theatre at Hadrian's Villa, Tivoli", "format": "mp4", "description": "Maritime Theatre at Hadrian's Villa, Tivoli, Villa begun in 117 C.E. \n\nA conversation with Dr. Bernard Frischer and Dr. Beth Harris", "slug": "emperor-hadrian-s-private-retreat-the-maritime-theatre-at-hadrian-s-villa-tivoli", "kind": "Video", "video_id": "hGMwMlksZlM", "keywords": "", "youtube_id": "hGMwMlksZlM", "readable_id": "emperor-hadrian-s-private-retreat-the-maritime-theatre-at-hadrian-s-villa-tivoli"}, "mbc3_e5lWw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mbc3_e5lWw0.mp4/mbc3_e5lWw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mbc3_e5lWw0.mp4/mbc3_e5lWw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mbc3_e5lWw0.m3u8/mbc3_e5lWw0.m3u8"}, "duration": 324, "id": "mbc3_e5lWw0", "title": "Introduction to square roots", "format": "mp4", "description": "Learn about the square root symbol (the principal root) and what it means to find a square root. Also learn how to solve simple square root equations.", "path": "introduction-to-square-roots/", "slug": "introduction-to-square-roots", "kind": "Video", "video_id": "mbc3_e5lWw0", "keywords": "", "youtube_id": "mbc3_e5lWw0", "readable_id": "introduction-to-square-roots"}, "gl_-E6iVAg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gl_-E6iVAg4.mp4/gl_-E6iVAg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gl_-E6iVAg4.mp4/gl_-E6iVAg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gl_-E6iVAg4.m3u8/gl_-E6iVAg4.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/ditributive_property/the-distributive-property/", "duration": 296, "id": "gl_-E6iVAg4", "title": "Distributive property explained", "format": "mp4", "description": "This is a thorough explanation of the distributive law (or property) of multiplication over addition. Let's see how it works!", "slug": "the-distributive-property", "kind": "Video", "video_id": "gl_-E6iVAg4", "keywords": "U01_L4_T2_we1, The, Distributive, Property, CC_3_OA_5, CC_5_OA_1, CC_6_EE_3, CC_6_NS_4, CC_7_EE_1", "youtube_id": "gl_-E6iVAg4", "readable_id": "the-distributive-property"}, "Tczu_dvVuuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tczu_dvVuuk.mp4/Tczu_dvVuuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tczu_dvVuuk.mp4/Tczu_dvVuuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tczu_dvVuuk.m3u8/Tczu_dvVuuk.m3u8"}, "duration": 450, "id": "Tczu_dvVuuk", "title": "Illinois pension obligations", "format": "mp4", "description": "Using Illinois as an example of what happens when pension obligations are underfunded.", "path": "khan/humanities/history/american-civics/american-civics/illinois-pension-obligations/", "slug": "illinois-pension-obligations", "kind": "Video", "video_id": "Tczu_dvVuuk", "keywords": "pension, obligrations, unfunded, defined benefit plan,", "youtube_id": "Tczu_dvVuuk", "readable_id": "illinois-pension-obligations"}, "uvmz5E75ZIA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uvmz5E75ZIA.mp4/uvmz5E75ZIA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uvmz5E75ZIA.mp4/uvmz5E75ZIA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uvmz5E75ZIA.m3u8/uvmz5E75ZIA.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/utilitarianism-part-1/", "duration": 273, "id": "uvmz5E75ZIA", "title": "Ethics: Utilitarianism part 1", "format": "mp4", "description": "Julia Markovits (Cornell University) gives an introduction to the moral theory of utilitarianism. Utilitarianism is the view that the right moral action is the one that maximizes happiness for all.\n\nSpeaker: Dr. Julia Markovits, Associate Professor, Sage School of Philosophy, Cornell Universtiy", "slug": "utilitarianism-part-1", "kind": "Video", "video_id": "uvmz5E75ZIA", "keywords": "", "youtube_id": "uvmz5E75ZIA", "readable_id": "utilitarianism-part-1"}, "WR9qCSXJlyY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WR9qCSXJlyY.mp4/WR9qCSXJlyY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WR9qCSXJlyY.mp4/WR9qCSXJlyY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WR9qCSXJlyY.m3u8/WR9qCSXJlyY.m3u8"}, "duration": 335, "id": "WR9qCSXJlyY", "title": "Matrix addition and subtraction", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/matrix-addition-and-subtraction-1/", "slug": "matrix-addition-and-subtraction-1", "kind": "Video", "video_id": "WR9qCSXJlyY", "keywords": "", "youtube_id": "WR9qCSXJlyY", "readable_id": "matrix-addition-and-subtraction-1"}, "iwamZ7r2tTE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iwamZ7r2tTE.mp4/iwamZ7r2tTE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iwamZ7r2tTE.mp4/iwamZ7r2tTE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iwamZ7r2tTE.m3u8/iwamZ7r2tTE.m3u8"}, "duration": 682, "id": "iwamZ7r2tTE", "title": "GMAT: Math 47", "format": "mp4", "description": "221-225, pgs. 182-183", "path": "khan/test-prep/gmat/problem-solving/gmat-math-47/", "slug": "gmat-math-47", "kind": "Video", "video_id": "iwamZ7r2tTE", "keywords": "GMAT, Math, problem, solving", "youtube_id": "iwamZ7r2tTE", "readable_id": "gmat-math-47"}, "IjcLW7Y7Ndk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IjcLW7Y7Ndk.mp4/IjcLW7Y7Ndk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IjcLW7Y7Ndk.mp4/IjcLW7Y7Ndk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IjcLW7Y7Ndk.m3u8/IjcLW7Y7Ndk.m3u8"}, "duration": 219, "id": "IjcLW7Y7Ndk", "title": "Solving problems with pictographs 2", "format": "mp4", "description": "Use picture graphs to solve word problems.", "path": "solving-problems-with-pictographs-2/", "slug": "solving-problems-with-pictographs-2", "kind": "Video", "video_id": "IjcLW7Y7Ndk", "keywords": "", "youtube_id": "IjcLW7Y7Ndk", "readable_id": "solving-problems-with-pictographs-2"}, "Hrjr5f5pZ84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hrjr5f5pZ84.mp4/Hrjr5f5pZ84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hrjr5f5pZ84.mp4/Hrjr5f5pZ84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hrjr5f5pZ84.m3u8/Hrjr5f5pZ84.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/dividing-decimals-with-hundredths/", "duration": 277, "id": "Hrjr5f5pZ84", "title": "Dividing decimals with hundredths", "format": "mp4", "description": "Decimal divisors in the hundredths place can be a little confusing. In this video we'll show you how to move the decimal and make it a whole number. Pretty nifty! Watch.", "slug": "dividing-decimals-with-hundredths", "kind": "Video", "video_id": "Hrjr5f5pZ84", "keywords": "", "youtube_id": "Hrjr5f5pZ84", "readable_id": "dividing-decimals-with-hundredths"}, "1YYy0DEOpoU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1YYy0DEOpoU.mp4/1YYy0DEOpoU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1YYy0DEOpoU.mp4/1YYy0DEOpoU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1YYy0DEOpoU.m3u8/1YYy0DEOpoU.m3u8"}, "duration": 744, "id": "1YYy0DEOpoU", "title": "Breakdown of gas prices", "format": "mp4", "description": "Where the dollars at the pump go", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/oil-prices-tutorial/breakdown-of-gas-prices/", "slug": "breakdown-of-gas-prices", "kind": "Video", "video_id": "1YYy0DEOpoU", "keywords": "oil, gas, refining, spread, crack", "youtube_id": "1YYy0DEOpoU", "readable_id": "breakdown-of-gas-prices"}, "jl_gQ-eL3xo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jl_gQ-eL3xo.mp4/jl_gQ-eL3xo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jl_gQ-eL3xo.mp4/jl_gQ-eL3xo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jl_gQ-eL3xo.m3u8/jl_gQ-eL3xo.m3u8"}, "duration": 617, "id": "jl_gQ-eL3xo", "title": "Projectile motion with ordered set notation", "format": "mp4", "description": "Solving the second part to the projectile motion problem (with wind gust) using ordered set vector notation", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/projectile-motion-with-ordered-set-notation/", "slug": "projectile-motion-with-ordered-set-notation", "kind": "Video", "video_id": "jl_gQ-eL3xo", "keywords": "vector, vectors, ordered, set, physics, precalculus, projectile, motion", "youtube_id": "jl_gQ-eL3xo", "readable_id": "projectile-motion-with-ordered-set-notation"}, "2TTu0TvB6N0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2TTu0TvB6N0.mp4/2TTu0TvB6N0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2TTu0TvB6N0.mp4/2TTu0TvB6N0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2TTu0TvB6N0.m3u8/2TTu0TvB6N0.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/doppler-effect-for-a-moving-observer/", "duration": 316, "id": "2TTu0TvB6N0", "title": "Doppler effect for a moving observer", "format": "mp4", "description": "", "slug": "doppler-effect-for-a-moving-observer", "kind": "Video", "video_id": "2TTu0TvB6N0", "keywords": "", "youtube_id": "2TTu0TvB6N0", "readable_id": "doppler-effect-for-a-moving-observer"}, "V-5q6tKaRuM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V-5q6tKaRuM.mp4/V-5q6tKaRuM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V-5q6tKaRuM.mp4/V-5q6tKaRuM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V-5q6tKaRuM.m3u8/V-5q6tKaRuM.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/distributive-property-with-rational-terms/", "duration": 65, "id": "V-5q6tKaRuM", "title": "Applying the distributive property", "format": "mp4", "description": "In this example we are asked to expand an expression using the distributive property.", "slug": "distributive-property-with-rational-terms", "kind": "Video", "video_id": "V-5q6tKaRuM", "keywords": "", "youtube_id": "V-5q6tKaRuM", "readable_id": "distributive-property-with-rational-terms"}, "b1YtRTke_M0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b1YtRTke_M0.mp4/b1YtRTke_M0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b1YtRTke_M0.mp4/b1YtRTke_M0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b1YtRTke_M0.m3u8/b1YtRTke_M0.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/molecular-orbital-theory/intro-to-molecular-orbital-mo-theory/", "duration": 722, "id": "b1YtRTke_M0", "title": "Intro to molecular orbital (mo) theory", "format": "mp4", "description": "", "slug": "intro-to-molecular-orbital-mo-theory", "kind": "Video", "video_id": "b1YtRTke_M0", "keywords": "", "youtube_id": "b1YtRTke_M0", "readable_id": "intro-to-molecular-orbital-mo-theory"}, "WqNc6My1aNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WqNc6My1aNU.mp4/WqNc6My1aNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WqNc6My1aNU.mp4/WqNc6My1aNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WqNc6My1aNU.m3u8/WqNc6My1aNU.m3u8"}, "duration": 161, "id": "WqNc6My1aNU", "title": "Dividing polynomials with remainders example", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/dividing_polynomials/dividing-polynomials-with-remainders-example/", "slug": "dividing-polynomials-with-remainders-example", "kind": "Video", "video_id": "WqNc6My1aNU", "keywords": "", "youtube_id": "WqNc6My1aNU", "readable_id": "dividing-polynomials-with-remainders-example"}, "deKCm28TkRo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/deKCm28TkRo.mp4/deKCm28TkRo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/deKCm28TkRo.mp4/deKCm28TkRo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/deKCm28TkRo.m3u8/deKCm28TkRo.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/interpreting_linear_functions/interpreting-linear-formulas-1/", "duration": 160, "id": "deKCm28TkRo", "title": "Interpreting linear formulas example 1", "format": "mp4", "description": "Interpreting a linear formula", "slug": "interpreting-linear-formulas-1", "kind": "Video", "video_id": "deKCm28TkRo", "keywords": "", "youtube_id": "deKCm28TkRo", "readable_id": "interpreting-linear-formulas-1"}, "BI-rtfZVXy0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BI-rtfZVXy0.mp4/BI-rtfZVXy0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BI-rtfZVXy0.mp4/BI-rtfZVXy0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BI-rtfZVXy0.m3u8/BI-rtfZVXy0.m3u8"}, "duration": 574, "id": "BI-rtfZVXy0", "title": "Similar triangles", "format": "mp4", "description": "Introduction to similar triangles", "path": "khan/math/geometry/similarity/old_school_similarity/similar-triangles/", "slug": "similar-triangles", "kind": "Video", "video_id": "BI-rtfZVXy0", "keywords": "triangles, similar, geometry, math, angles, CC_7_G_5, CC_8_G_4, CC_8_G_5", "youtube_id": "BI-rtfZVXy0", "readable_id": "similar-triangles"}, "WPimvspI0_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WPimvspI0_c.mp4/WPimvspI0_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WPimvspI0_c.mp4/WPimvspI0_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WPimvspI0_c.m3u8/WPimvspI0_c.m3u8"}, "duration": 342, "id": "WPimvspI0_c", "title": "Fractions in lowest terms", "format": "mp4", "description": "Fractions in lowest terms", "path": "khan/math/pre-algebra/fractions-pre-alg/equivalent-fractions-pre-alg/fractions-in-lowest-terms/", "slug": "fractions-in-lowest-terms", "kind": "Video", "video_id": "WPimvspI0_c", "keywords": "U02_L1_T4_we2, Fractions, in, lowest, terms, CC_3_NF_3, CC_3_NF_3_a, CC_3_NF_3_b, CC_6_NS_4", "youtube_id": "WPimvspI0_c", "readable_id": "fractions-in-lowest-terms"}, "0lGXGz_lALM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0lGXGz_lALM.mp4/0lGXGz_lALM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0lGXGz_lALM.mp4/0lGXGz_lALM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0lGXGz_lALM.m3u8/0lGXGz_lALM.m3u8"}, "duration": 44, "id": "0lGXGz_lALM", "title": "Where in the world did dinosaurs live?", "format": "mp4", "description": "Fossils of dinosaurs have now been found on every continent, almost everywhere that rocks of Late Triassic, Jurassic, or Cretaceous rocks are exposed on the Earth's surface. Because dinosaurs were (and in the form of birds still are) such a diverse group or animals, they probably lived in nearly every terrestrial environment. Their fossils, whether bones, teeth, or footprints, have been found in Mesozoic rocks that are geologically interpreted to have been deposited in deserts, savannahs, forests, beaches, and swamps.", "path": "where-dinosaurs-lived/", "slug": "where-dinosaurs-lived", "kind": "Video", "video_id": "0lGXGz_lALM", "keywords": "", "youtube_id": "0lGXGz_lALM", "readable_id": "where-dinosaurs-lived"}, "fqnPabGV6A4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fqnPabGV6A4.mp4/fqnPabGV6A4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fqnPabGV6A4.mp4/fqnPabGV6A4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fqnPabGV6A4.m3u8/fqnPabGV6A4.m3u8"}, "duration": 779, "id": "fqnPabGV6A4", "title": "Simple differential equation example", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 56 Differential Equation", "path": "khan/test-prep/iit-jee-subject/iit-jee/simple-differential-equation-example/", "slug": "simple-differential-equation-example", "kind": "Video", "video_id": "fqnPabGV6A4", "keywords": "2010, IIT, JEE, Paper, Problem, 56, Differential, Equation", "youtube_id": "fqnPabGV6A4", "readable_id": "simple-differential-equation-example"}, "Vo6W4kDv0cA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vo6W4kDv0cA.mp4/Vo6W4kDv0cA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vo6W4kDv0cA.mp4/Vo6W4kDv0cA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vo6W4kDv0cA.m3u8/Vo6W4kDv0cA.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/overview-of-culture/", "duration": 259, "id": "Vo6W4kDv0cA", "title": "Overview of culture", "format": "mp4", "description": "", "slug": "overview-of-culture", "kind": "Video", "video_id": "Vo6W4kDv0cA", "keywords": "", "youtube_id": "Vo6W4kDv0cA", "readable_id": "overview-of-culture"}, "9wmvZH5lX_U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9wmvZH5lX_U.mp4/9wmvZH5lX_U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9wmvZH5lX_U.mp4/9wmvZH5lX_U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9wmvZH5lX_U.m3u8/9wmvZH5lX_U.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/harlow-monkey-experiments/", "duration": 203, "id": "9wmvZH5lX_U", "title": "Harlow monkey experiments", "format": "mp4", "description": "", "slug": "harlow-monkey-experiments", "kind": "Video", "video_id": "9wmvZH5lX_U", "keywords": "", "youtube_id": "9wmvZH5lX_U", "readable_id": "harlow-monkey-experiments"}, "bRNHz5RoXIk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bRNHz5RoXIk.mp4/bRNHz5RoXIk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bRNHz5RoXIk.mp4/bRNHz5RoXIk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bRNHz5RoXIk.m3u8/bRNHz5RoXIk.m3u8"}, "duration": 163, "id": "bRNHz5RoXIk", "title": "\"In the Void\" with Betsy Kornhauser", "format": "mp4", "description": "Met curator Betsy Kornhauser on solace in Sanford Robinson Gifford\u2019s A Gorge in the Mountains (Kauterskill Clove).\n\nFrom 1845 until his death in 1880, Gifford chose Kauterskill Clove in the Catskill Mountains as one of his favorite subjects. This painting, dated 1862, was called \"Kauterskill Falls\" in the catalogue of the 1876 New York Centennial Loan Exhibition of Paintings, as well as in the 1881 official catalogue of Gifford's work. The title has since been changed to \"Kauterskill Clove,\" for the view is from the east, looking west to Haine's Falls at the head of the clove.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "path": "in-the-void/", "slug": "in-the-void", "kind": "Video", "video_id": "bRNHz5RoXIk", "keywords": "canvas, light, memory, nature, painting, politics, North America", "youtube_id": "bRNHz5RoXIk", "readable_id": "in-the-void"}, "jDNalKBb3aA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jDNalKBb3aA.mp4/jDNalKBb3aA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jDNalKBb3aA.mp4/jDNalKBb3aA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jDNalKBb3aA.m3u8/jDNalKBb3aA.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-6-getting-an-equity-infusion/", "duration": 722, "id": "jDNalKBb3aA", "title": "Bailout 6: Getting an equity infusion", "format": "mp4", "description": "The bank gets bailed out by an equity infusion from a sovereign wealth fund.", "slug": "bailout-6-getting-an-equity-infusion", "kind": "Video", "video_id": "jDNalKBb3aA", "keywords": "bailout, paulson, bernanke, SWF, sovereign, wealth, fund, equity", "youtube_id": "jDNalKBb3aA", "readable_id": "bailout-6-getting-an-equity-infusion"}, "i7idZfS8t8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i7idZfS8t8w.mp4/i7idZfS8t8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i7idZfS8t8w.mp4/i7idZfS8t8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i7idZfS8t8w.m3u8/i7idZfS8t8w.m3u8"}, "duration": 992, "id": "i7idZfS8t8w", "title": "How to use the quadratic formula", "format": "mp4", "description": "Introduction to using the quadratic formula.", "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/using-the-quadratic-formula/", "slug": "using-the-quadratic-formula", "kind": "Video", "video_id": "i7idZfS8t8w", "keywords": "Using, the, Quadratic, Formula, CC_39336_A-REI_4_b", "youtube_id": "i7idZfS8t8w", "readable_id": "using-the-quadratic-formula"}, "Q9BtOLDr0vg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q9BtOLDr0vg.mp4/Q9BtOLDr0vg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q9BtOLDr0vg.mp4/Q9BtOLDr0vg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q9BtOLDr0vg.m3u8/Q9BtOLDr0vg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/electrolysis-of-molten-sodium-chloride/", "duration": 744, "id": "Q9BtOLDr0vg", "title": "Electrolysis of molten sodium chloride", "format": "mp4", "description": "", "slug": "electrolysis-of-molten-sodium-chloride", "kind": "Video", "video_id": "Q9BtOLDr0vg", "keywords": "", "youtube_id": "Q9BtOLDr0vg", "readable_id": "electrolysis-of-molten-sodium-chloride"}, "_7VHfuWV-Qg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_7VHfuWV-Qg.mp4/_7VHfuWV-Qg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_7VHfuWV-Qg.mp4/_7VHfuWV-Qg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_7VHfuWV-Qg.m3u8/_7VHfuWV-Qg.m3u8"}, "duration": 659, "id": "_7VHfuWV-Qg", "title": "Production possibilities frontier", "format": "mp4", "description": "Tradeoffs for a hunter gatherer and the production possibilities frontier. Ceteris Paribus", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/production-possibilities/production-possibilities-frontier/", "slug": "production-possibilities-frontier", "kind": "Video", "video_id": "_7VHfuWV-Qg", "keywords": "ceteris, paribus, tradeoffs", "youtube_id": "_7VHfuWV-Qg", "readable_id": "production-possibilities-frontier"}, "yHOrayogv1E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yHOrayogv1E.mp4/yHOrayogv1E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yHOrayogv1E.mp4/yHOrayogv1E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yHOrayogv1E.m3u8/yHOrayogv1E.m3u8"}, "path": "khan/partner-content/big-history-project/future/looking-forward/bhp-threshold9/", "duration": 153, "id": "yHOrayogv1E", "title": "Threshold 9: The Future", "format": "mp4", "description": "Big history is not yet finished. How might the lessons of the past eight thresholds inform our expectations for the future? What role will you play in shaping the next threshold of the big history?", "slug": "bhp-threshold9", "kind": "Video", "video_id": "yHOrayogv1E", "keywords": "", "youtube_id": "yHOrayogv1E", "readable_id": "bhp-threshold9"}, "SrL6TQbWKJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SrL6TQbWKJE.mp4/SrL6TQbWKJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SrL6TQbWKJE.mp4/SrL6TQbWKJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SrL6TQbWKJE.m3u8/SrL6TQbWKJE.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/left-ventricular-pressure-vs-time/", "duration": 651, "id": "SrL6TQbWKJE", "title": "Left ventricular pressure vs. time", "format": "mp4", "description": "Ever wonder exactly how the left ventricle's pressure changes over time? Find out in this color-coded video! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "left-ventricular-pressure-vs-time", "kind": "Video", "video_id": "SrL6TQbWKJE", "keywords": "", "youtube_id": "SrL6TQbWKJE", "readable_id": "left-ventricular-pressure-vs-time"}, "eVme7kuGyuo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eVme7kuGyuo.mp4/eVme7kuGyuo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eVme7kuGyuo.mp4/eVme7kuGyuo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eVme7kuGyuo.m3u8/eVme7kuGyuo.m3u8"}, "duration": 305, "id": "eVme7kuGyuo", "title": "Intuitively drawing the derivative of a function", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/intuitively-drawing-the-derivative-of-a-function/", "slug": "intuitively-drawing-the-derivative-of-a-function", "kind": "Video", "video_id": "eVme7kuGyuo", "keywords": "", "youtube_id": "eVme7kuGyuo", "readable_id": "intuitively-drawing-the-derivative-of-a-function"}, "J9BWNiOSGlc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J9BWNiOSGlc.mp4/J9BWNiOSGlc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J9BWNiOSGlc.mp4/J9BWNiOSGlc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J9BWNiOSGlc.m3u8/J9BWNiOSGlc.m3u8"}, "duration": 441, "id": "J9BWNiOSGlc", "title": "Intuition on static and kinetic friction comparisons", "format": "mp4", "description": "Why static friction is harder to overcome than kinetic friction", "path": "khan/test-prep/mcat/physical-processes/forces-on-inclined-planes/intuition-on-static-and-kinetic-friction-comparisons/", "slug": "intuition-on-static-and-kinetic-friction-comparisons", "kind": "Video", "video_id": "J9BWNiOSGlc", "keywords": "coefficient, static, kinetic, mechanics, force, newton", "youtube_id": "J9BWNiOSGlc", "readable_id": "intuition-on-static-and-kinetic-friction-comparisons"}, "3u9Ux29MSXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3u9Ux29MSXE.mp4/3u9Ux29MSXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3u9Ux29MSXE.mp4/3u9Ux29MSXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3u9Ux29MSXE.m3u8/3u9Ux29MSXE.m3u8"}, "duration": 274, "id": "3u9Ux29MSXE", "title": "Find measure of angles in a word problem", "format": "mp4", "description": "Solve this word problem to find the measure of angles. In this example you'll split up a pie (don't forget to share!)", "path": "pie-splitting/", "slug": "pie-splitting", "kind": "Video", "video_id": "3u9Ux29MSXE", "keywords": "", "youtube_id": "3u9Ux29MSXE", "readable_id": "pie-splitting"}, "MWii7tL0T84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MWii7tL0T84.mp4/MWii7tL0T84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MWii7tL0T84.mp4/MWii7tL0T84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MWii7tL0T84.m3u8/MWii7tL0T84.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/reactivity-of-carboxylic-acid-derivatives/", "duration": 543, "id": "MWii7tL0T84", "title": "Reactivity of carboxylic acid derivatives", "format": "mp4", "description": "How to analyze the reactivity of the carboxylic acid derivatives using induction and resonance effects", "slug": "reactivity-of-carboxylic-acid-derivatives", "kind": "Video", "video_id": "MWii7tL0T84", "keywords": "", "youtube_id": "MWii7tL0T84", "readable_id": "reactivity-of-carboxylic-acid-derivatives"}, "asLQmxK7ExY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/asLQmxK7ExY.mp4/asLQmxK7ExY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/asLQmxK7ExY.mp4/asLQmxK7ExY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/asLQmxK7ExY.m3u8/asLQmxK7ExY.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/caravaggio-the-supper-at-emmaus-1601/", "duration": 243, "id": "asLQmxK7ExY", "title": "Caravaggio, Supper at Emmaus", "format": "mp4", "description": "Michelangelo Merisi da Caravaggio, The Supper at Emmaus, 1601, oil on canvas, 55 x 77 inches, 141 x 196.2 cm (National Gallery, London) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "caravaggio-the-supper-at-emmaus-1601", "kind": "Video", "video_id": "asLQmxK7ExY", "keywords": "Caravaggio, Supper at Emmaus, National Gallery, London, Art History, Smarthistory, Baroque", "youtube_id": "asLQmxK7ExY", "readable_id": "caravaggio-the-supper-at-emmaus-1601"}, "CCAYcuCWOnM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CCAYcuCWOnM.mp4/CCAYcuCWOnM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CCAYcuCWOnM.mp4/CCAYcuCWOnM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CCAYcuCWOnM.m3u8/CCAYcuCWOnM.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/x-rays/", "duration": 170, "id": "CCAYcuCWOnM", "title": "X-rays (1895)", "format": "mp4", "description": "", "slug": "x-rays", "kind": "Video", "video_id": "CCAYcuCWOnM", "keywords": "", "youtube_id": "CCAYcuCWOnM", "readable_id": "x-rays"}, "eB5NVPzBCzM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eB5NVPzBCzM.mp4/eB5NVPzBCzM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eB5NVPzBCzM.mp4/eB5NVPzBCzM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eB5NVPzBCzM.m3u8/eB5NVPzBCzM.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-sal/sn1-reactions-introduction/", "duration": 802, "id": "eB5NVPzBCzM", "title": "Sn1 reactions introduction", "format": "mp4", "description": "", "slug": "sn1-reactions-introduction", "kind": "Video", "video_id": "eB5NVPzBCzM", "keywords": "", "youtube_id": "eB5NVPzBCzM", "readable_id": "sn1-reactions-introduction"}, "pb-wsUpPuI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pb-wsUpPuI8.mp4/pb-wsUpPuI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pb-wsUpPuI8.mp4/pb-wsUpPuI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pb-wsUpPuI8.m3u8/pb-wsUpPuI8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/solubility-equilibria-mcat/solubility-and-the-common-ion-effect/", "duration": 495, "id": "pb-wsUpPuI8", "title": "Solubility and the common-ion effect", "format": "mp4", "description": "", "slug": "solubility-and-the-common-ion-effect", "kind": "Video", "video_id": "pb-wsUpPuI8", "keywords": "", "youtube_id": "pb-wsUpPuI8", "readable_id": "solubility-and-the-common-ion-effect"}, "AA6RfgP-AHU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AA6RfgP-AHU.mp4/AA6RfgP-AHU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AA6RfgP-AHU.mp4/AA6RfgP-AHU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AA6RfgP-AHU.m3u8/AA6RfgP-AHU.m3u8"}, "path": "khan/math/geometry/right_triangles_topic/pyth_theor/the-pythagorean-theorem/", "duration": 646, "id": "AA6RfgP-AHU", "title": "The Pythagorean theorem intro", "format": "mp4", "description": "Introduction to the Pythagorean Theorem", "slug": "the-pythagorean-theorem", "kind": "Video", "video_id": "AA6RfgP-AHU", "keywords": "Introduction, to, the, Pythagorean, Theorem, CC_8_G_6, CC_8_G_7, CC_8_G_8", "youtube_id": "AA6RfgP-AHU", "readable_id": "the-pythagorean-theorem"}, "m-pRnFIeoNA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m-pRnFIeoNA.mp4/m-pRnFIeoNA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m-pRnFIeoNA.mp4/m-pRnFIeoNA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m-pRnFIeoNA.m3u8/m-pRnFIeoNA.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/div-fractions-fractions-pre-alg/another-dividing-fractions-example/", "duration": 77, "id": "m-pRnFIeoNA", "title": "Dividing fractions example", "format": "mp4", "description": "This is a straightforward example of dividing two fractions. We'll make super clear!", "slug": "another-dividing-fractions-example", "kind": "Video", "video_id": "m-pRnFIeoNA", "keywords": "", "youtube_id": "m-pRnFIeoNA", "readable_id": "another-dividing-fractions-example"}, "IPxQQNyCxas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IPxQQNyCxas.mp4/IPxQQNyCxas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IPxQQNyCxas.mp4/IPxQQNyCxas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IPxQQNyCxas.m3u8/IPxQQNyCxas.m3u8"}, "duration": 719, "id": "IPxQQNyCxas", "title": "Institutional roles in issuing and processing credit cards", "format": "mp4", "description": "The institutions involved in processing your credit credit and how they relate to each other", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/credit-card-interest/institutional-roles-in-issuing-and-processing-credit-cards/", "slug": "institutional-roles-in-issuing-and-processing-credit-cards", "kind": "Video", "video_id": "IPxQQNyCxas", "keywords": "credit, card, processing, visa, interchange, discount", "youtube_id": "IPxQQNyCxas", "readable_id": "institutional-roles-in-issuing-and-processing-credit-cards"}, "dpnFYrz2fCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dpnFYrz2fCE.mp4/dpnFYrz2fCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dpnFYrz2fCE.mp4/dpnFYrz2fCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dpnFYrz2fCE.m3u8/dpnFYrz2fCE.m3u8"}, "duration": 118, "id": "dpnFYrz2fCE", "title": "Serbian losses in World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/other-fronts-ww1/serbian-losses-in-world-war-i/", "slug": "serbian-losses-in-world-war-i", "kind": "Video", "video_id": "dpnFYrz2fCE", "keywords": "", "youtube_id": "dpnFYrz2fCE", "readable_id": "serbian-losses-in-world-war-i"}, "gS6s3MGZlRc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gS6s3MGZlRc.mp4/gS6s3MGZlRc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gS6s3MGZlRc.mp4/gS6s3MGZlRc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gS6s3MGZlRc.m3u8/gS6s3MGZlRc.m3u8"}, "duration": 352, "id": "gS6s3MGZlRc", "title": "Which minions can the wizard reach", "format": "mp4", "description": "", "path": "khan/math/geometry/analytic-geometry-topic/geometry-problems-coordinate-pla/minions-within-reach-of-wizard/", "slug": "minions-within-reach-of-wizard", "kind": "Video", "video_id": "gS6s3MGZlRc", "keywords": "", "youtube_id": "gS6s3MGZlRc", "readable_id": "minions-within-reach-of-wizard"}, "pP-QbnWbg_0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pP-QbnWbg_0.mp4/pP-QbnWbg_0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pP-QbnWbg_0.mp4/pP-QbnWbg_0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pP-QbnWbg_0.m3u8/pP-QbnWbg_0.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/chemcam/", "duration": 406, "id": "pP-QbnWbg_0", "title": "ChemCam", "format": "mp4", "description": "", "slug": "chemcam", "kind": "Video", "video_id": "pP-QbnWbg_0", "keywords": "", "youtube_id": "pP-QbnWbg_0", "readable_id": "chemcam"}, "AuX7nPBqDts": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AuX7nPBqDts.mp4/AuX7nPBqDts.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AuX7nPBqDts.mp4/AuX7nPBqDts.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AuX7nPBqDts.m3u8/AuX7nPBqDts.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/basic_addition/basic-addition/", "duration": 462, "id": "AuX7nPBqDts", "title": "Basic addition", "format": "mp4", "description": "Introduction to addition. Multiple visual ways to represent addition.", "slug": "basic-addition", "kind": "Video", "video_id": "AuX7nPBqDts", "keywords": "Math, Addition, Khan, Academy, CC_1_OA_1, CC_1_OA_2, CC_1_OA_3, CC_1_OA_6", "youtube_id": "AuX7nPBqDts", "readable_id": "basic-addition"}, "FNnmseBlvaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FNnmseBlvaY.mp4/FNnmseBlvaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FNnmseBlvaY.mp4/FNnmseBlvaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FNnmseBlvaY.m3u8/FNnmseBlvaY.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/combining-like-terms-3/", "duration": 279, "id": "FNnmseBlvaY", "title": "Combining like terms, but more complicated", "format": "mp4", "description": "This example of combining like terms in an expression get a little hairy. Listen closely.", "slug": "combining-like-terms-3", "kind": "Video", "video_id": "FNnmseBlvaY", "keywords": "", "youtube_id": "FNnmseBlvaY", "readable_id": "combining-like-terms-3"}, "sMOZf4GN3oc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sMOZf4GN3oc.mp4/sMOZf4GN3oc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sMOZf4GN3oc.mp4/sMOZf4GN3oc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sMOZf4GN3oc.m3u8/sMOZf4GN3oc.m3u8"}, "path": "khan/computing/computer-science/cryptography/crypt/caesar-cipher/", "duration": 157, "id": "sMOZf4GN3oc", "title": "The Caesar cipher", "format": "mp4", "description": "Brit explains the Caesar cipher, the first popular substitution cipher, and shows how it was broken with \"frequency analysis\"\n\u00a0", "slug": "caesar-cipher", "kind": "Video", "video_id": "sMOZf4GN3oc", "keywords": "caesar cipher, cipher", "youtube_id": "sMOZf4GN3oc", "readable_id": "caesar-cipher"}, "ScvuRb6vsz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ScvuRb6vsz4.mp4/ScvuRb6vsz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ScvuRb6vsz4.mp4/ScvuRb6vsz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ScvuRb6vsz4.m3u8/ScvuRb6vsz4.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/unit-conversion-example-drug-dosage/", "duration": 644, "id": "ScvuRb6vsz4", "title": "Unit conversion word problem: drug dosage", "format": "mp4", "description": "Future doctors and nurses out there, take note. This unit conversion word problem deals with converting drug dosage units, something that is commonly done in hospitals. Give it a try with us.", "slug": "unit-conversion-example-drug-dosage", "kind": "Video", "video_id": "ScvuRb6vsz4", "keywords": "drug, dosage, unit, conversion, nursing", "youtube_id": "ScvuRb6vsz4", "readable_id": "unit-conversion-example-drug-dosage"}, "qZ1ofSJBxBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qZ1ofSJBxBU.mp4/qZ1ofSJBxBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qZ1ofSJBxBU.mp4/qZ1ofSJBxBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qZ1ofSJBxBU.m3u8/qZ1ofSJBxBU.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/august-sander-portraits/", "duration": 850, "id": "qZ1ofSJBxBU", "title": "Sander, Portraits", "format": "mp4", "description": "Portraits by August Sander discussed:\nPastry Cook, gelatin silver print, 1928\nSecretary at a Radio Station, Cologne, gelatin silver print, c. 1931\nDisabled Man, gelatin silver print, 1926\n\nSpeakers: Dr. Juliana Kreinik, Dr. Beth Harris, Dr. Steven Zucker", "slug": "august-sander-portraits", "kind": "Video", "video_id": "qZ1ofSJBxBU", "keywords": "Photography, Smarthistory, Art History, August Sander", "youtube_id": "qZ1ofSJBxBU", "readable_id": "august-sander-portraits"}, "YhxVBHKB-oY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YhxVBHKB-oY.mp4/YhxVBHKB-oY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YhxVBHKB-oY.mp4/YhxVBHKB-oY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YhxVBHKB-oY.m3u8/YhxVBHKB-oY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-9-6/", "duration": 39, "id": "YhxVBHKB-oY", "title": "6 y intercept", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-6", "kind": "Video", "video_id": "YhxVBHKB-oY", "keywords": "", "youtube_id": "YhxVBHKB-oY", "readable_id": "sat-2010-may-9-6"}, "YjGE-sZhxHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YjGE-sZhxHQ.mp4/YjGE-sZhxHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YjGE-sZhxHQ.mp4/YjGE-sZhxHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YjGE-sZhxHQ.m3u8/YjGE-sZhxHQ.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/beth-schmidt-wishbone/beth-schmidt-2/", "duration": 149, "id": "YjGE-sZhxHQ", "title": "There better be an authentic need", "format": "mp4", "description": "", "slug": "beth-schmidt-2", "kind": "Video", "video_id": "YjGE-sZhxHQ", "keywords": "", "youtube_id": "YjGE-sZhxHQ", "readable_id": "beth-schmidt-2"}, "dA1u8RD49dU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dA1u8RD49dU.mp4/dA1u8RD49dU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dA1u8RD49dU.mp4/dA1u8RD49dU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dA1u8RD49dU.m3u8/dA1u8RD49dU.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-16/", "duration": 575, "id": "dA1u8RD49dU", "title": "GMAT: Math 16", "format": "mp4", "description": "87-91, pg. 163", "slug": "gmat-math-16", "kind": "Video", "video_id": "dA1u8RD49dU", "keywords": "gmat, math, problem, solving", "youtube_id": "dA1u8RD49dU", "readable_id": "gmat-math-16"}, "D5NVlAaT-OA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D5NVlAaT-OA.mp4/D5NVlAaT-OA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D5NVlAaT-OA.mp4/D5NVlAaT-OA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D5NVlAaT-OA.m3u8/D5NVlAaT-OA.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/mendelian-genetics/applying-hardy-weinberg/", "duration": 330, "id": "D5NVlAaT-OA", "title": "Applying the Hardy Weinberg equation", "format": "mp4", "description": "", "slug": "applying-hardy-weinberg", "kind": "Video", "video_id": "D5NVlAaT-OA", "keywords": "", "youtube_id": "D5NVlAaT-OA", "readable_id": "applying-hardy-weinberg"}, "t7NvlTgMsO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t7NvlTgMsO8.mp4/t7NvlTgMsO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t7NvlTgMsO8.mp4/t7NvlTgMsO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t7NvlTgMsO8.m3u8/t7NvlTgMsO8.m3u8"}, "duration": 238, "id": "t7NvlTgMsO8", "title": "Estimating limit numerically", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits_tutorial/numerically-estimating-limit/", "slug": "numerically-estimating-limit", "kind": "Video", "video_id": "t7NvlTgMsO8", "keywords": "", "youtube_id": "t7NvlTgMsO8", "readable_id": "numerically-estimating-limit"}, "3X5JMS9_EK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3X5JMS9_EK8.mp4/3X5JMS9_EK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3X5JMS9_EK8.mp4/3X5JMS9_EK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3X5JMS9_EK8.m3u8/3X5JMS9_EK8.m3u8"}, "duration": 642, "id": "3X5JMS9_EK8", "title": "The Atlantic Slave Trade", "format": "mp4", "description": "In which John Green teaches you about one of the least funny subjects in history: slavery. John investigates when and where slavery originated, how it changed over the centuries, and how Europeans and colonists in the Americas arrived at the idea that people could own other people based on skin color.\u00a0\n\nSlavery has existed as long as humans have had civilization, but the Atlantic Slave Trade was the height, or depth, of dehumanizing, brutal, chattel slavery. American slavery ended less than 150 years ago. In some parts of the world, it is still going on. So how do we reconcile that with modern life? In a desperate attempt at comic relief, Boba Fett makes an appearance.\n", "path": "khan/humanities/history/crashcourse-worldhistory/when-people-do-great-and-really-terrible-things-2/crash-course-world-history-24/", "slug": "crash-course-world-history-24", "kind": "Video", "video_id": "3X5JMS9_EK8", "keywords": "crash course", "youtube_id": "3X5JMS9_EK8", "readable_id": "crash-course-world-history-24"}, "rfm0wQObxjk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rfm0wQObxjk.mp4/rfm0wQObxjk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rfm0wQObxjk.mp4/rfm0wQObxjk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rfm0wQObxjk.m3u8/rfm0wQObxjk.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/eigen_everything/linear-algebra-proof-of-formula-for-determining-eigenvalues/", "duration": 559, "id": "rfm0wQObxjk", "title": "Proof of formula for determining eigenvalues", "format": "mp4", "description": "Proof of formula for determining Eigenvalues", "slug": "linear-algebra-proof-of-formula-for-determining-eigenvalues", "kind": "Video", "video_id": "rfm0wQObxjk", "keywords": "eigenvectors, eigenvalues", "youtube_id": "rfm0wQObxjk", "readable_id": "linear-algebra-proof-of-formula-for-determining-eigenvalues"}, "qlWZJ21O63s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qlWZJ21O63s.mp4/qlWZJ21O63s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qlWZJ21O63s.mp4/qlWZJ21O63s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qlWZJ21O63s.m3u8/qlWZJ21O63s.m3u8"}, "duration": 146, "id": "qlWZJ21O63s", "title": "Scaling down a triangle by half", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/dilations-scaling/scaling-down-a-triangle-by-half/", "slug": "scaling-down-a-triangle-by-half", "kind": "Video", "video_id": "qlWZJ21O63s", "keywords": "", "youtube_id": "qlWZJ21O63s", "readable_id": "scaling-down-a-triangle-by-half"}, "cvA4VN1dpuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cvA4VN1dpuY.mp4/cvA4VN1dpuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cvA4VN1dpuY.mp4/cvA4VN1dpuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cvA4VN1dpuY.m3u8/cvA4VN1dpuY.m3u8"}, "duration": 688, "id": "cvA4VN1dpuY", "title": "Identifying a hyperbola from an equation", "format": "mp4", "description": "Part 2 of identifying and graphing conic sections", "path": "khan/math/algebra2/conics_precalc/conics_precalc_eqs/identifying-conics-2/", "slug": "identifying-conics-2", "kind": "Video", "video_id": "cvA4VN1dpuY", "keywords": "conic, section, graphing, hyperbola", "youtube_id": "cvA4VN1dpuY", "readable_id": "identifying-conics-2"}, "wxtltXz4zs0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wxtltXz4zs0.mp4/wxtltXz4zs0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wxtltXz4zs0.mp4/wxtltXz4zs0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wxtltXz4zs0.m3u8/wxtltXz4zs0.m3u8"}, "duration": 567, "id": "wxtltXz4zs0", "title": "Mussolini becomes Prime Minister", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/mussolini-fascism/mussolini-becomes-prime-minister/", "slug": "mussolini-becomes-prime-minister", "kind": "Video", "video_id": "wxtltXz4zs0", "keywords": "", "youtube_id": "wxtltXz4zs0", "readable_id": "mussolini-becomes-prime-minister"}, "PiQxA9O7Rd8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PiQxA9O7Rd8.mp4/PiQxA9O7Rd8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PiQxA9O7Rd8.mp4/PiQxA9O7Rd8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PiQxA9O7Rd8.m3u8/PiQxA9O7Rd8.m3u8"}, "path": "khan/math/basic-geo/basic-geo-shapes/basic-geo-classifying-shapes/classifying-shapes-examples/", "duration": 135, "id": "PiQxA9O7Rd8", "title": "Categorizing geometric shapes: practice examples", "format": "mp4", "description": "Watch and do these example exercises along with us. Remember what you have learned about perpendicular lines, right, obtuse, and acute triangles.", "slug": "classifying-shapes-examples", "kind": "Video", "video_id": "PiQxA9O7Rd8", "keywords": "", "youtube_id": "PiQxA9O7Rd8", "readable_id": "classifying-shapes-examples"}, "02h9yhc7ruc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/02h9yhc7ruc.mp4/02h9yhc7ruc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/02h9yhc7ruc.mp4/02h9yhc7ruc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/02h9yhc7ruc.m3u8/02h9yhc7ruc.m3u8"}, "duration": 374, "id": "02h9yhc7ruc", "title": "Completing the square for vertex form", "format": "mp4", "description": "U10_L1_T2_we3 Completing the Square 3", "path": "khan/math/algebra/quadratics/features-of-quadratic-functions/ex3-completing-the-square/", "slug": "ex3-completing-the-square", "kind": "Video", "video_id": "02h9yhc7ruc", "keywords": "U10_L1_T2_we3, Completing, the, Square, CC_39336_A-REI_4_a, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_b", "youtube_id": "02h9yhc7ruc", "readable_id": "ex3-completing-the-square"}, "_ka1HZS-Egc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_ka1HZS-Egc.mp4/_ka1HZS-Egc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_ka1HZS-Egc.mp4/_ka1HZS-Egc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_ka1HZS-Egc.m3u8/_ka1HZS-Egc.m3u8"}, "duration": 802, "id": "_ka1HZS-Egc", "title": "Geithner plan 4", "format": "mp4", "description": "Constructing an investment where an investor gets the same upside while the program limits the downside.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/geithner-plan/geithner-plan-iii/", "slug": "geithner-plan-iii", "kind": "Video", "video_id": "_ka1HZS-Egc", "keywords": "geithner, timothy, obama, plan, bailout, TALF, TARP", "youtube_id": "_ka1HZS-Egc", "readable_id": "geithner-plan-iii"}, "KAJVMnXad7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KAJVMnXad7g.mp4/KAJVMnXad7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KAJVMnXad7g.mp4/KAJVMnXad7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KAJVMnXad7g.m3u8/KAJVMnXad7g.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/primary-and-secondary-groups/", "duration": 220, "id": "KAJVMnXad7g", "title": "Primary and secondary groups", "format": "mp4", "description": "", "slug": "primary-and-secondary-groups", "kind": "Video", "video_id": "KAJVMnXad7g", "keywords": "", "youtube_id": "KAJVMnXad7g", "readable_id": "primary-and-secondary-groups"}, "_Ucdj37XOHk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_Ucdj37XOHk.mp4/_Ucdj37XOHk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_Ucdj37XOHk.mp4/_Ucdj37XOHk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_Ucdj37XOHk.m3u8/_Ucdj37XOHk.m3u8"}, "duration": 133, "id": "_Ucdj37XOHk", "title": "Henri Toulouse-Lautrec's circus drawings", "format": "mp4", "description": "The circus was one of the great spectacles of late-19th-century Paris, and it attracted many artists. Henri de Toulouse-Lautrec frequently visited the Cirque Fernando in Paris.\u00a0See how Lautrec represented ringmasters, clowns, dancers, and riders, as he and other artists, such as Seurat and Bonnard, began to portray everyday leisure and pleasures of modern life. Love art? Follow us on Google+\u00a0at http://bit.ly/gettygoogleplus", "path": "toulouse-lautrec-circus-drawings/", "slug": "toulouse-lautrec-circus-drawings", "kind": "Video", "video_id": "_Ucdj37XOHk", "keywords": "", "youtube_id": "_Ucdj37XOHk", "readable_id": "toulouse-lautrec-circus-drawings"}, "zSVrr8K_CiI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zSVrr8K_CiI.mp4/zSVrr8K_CiI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zSVrr8K_CiI.mp4/zSVrr8K_CiI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zSVrr8K_CiI.m3u8/zSVrr8K_CiI.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/graphing-linear-functions-2/", "duration": 192, "id": "zSVrr8K_CiI", "title": "Graphing linear functions example 2", "format": "mp4", "description": "Graphing equation for filling pool", "slug": "graphing-linear-functions-2", "kind": "Video", "video_id": "zSVrr8K_CiI", "keywords": "", "youtube_id": "zSVrr8K_CiI", "readable_id": "graphing-linear-functions-2"}, "-IRkisEtzsk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-IRkisEtzsk.mp4/-IRkisEtzsk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-IRkisEtzsk.mp4/-IRkisEtzsk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-IRkisEtzsk.m3u8/-IRkisEtzsk.m3u8"}, "duration": 713, "id": "-IRkisEtzsk", "title": "Fetal circulation right before birth", "format": "mp4", "description": "Watch how the blood flows through the fetal circulation and compare it to what happens in the baby's body. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/fetal-circulation-right-before-birth/", "slug": "fetal-circulation-right-before-birth", "kind": "Video", "video_id": "-IRkisEtzsk", "keywords": "", "youtube_id": "-IRkisEtzsk", "readable_id": "fetal-circulation-right-before-birth"}, "afM6_VFaIss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/afM6_VFaIss.mp4/afM6_VFaIss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/afM6_VFaIss.mp4/afM6_VFaIss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/afM6_VFaIss.m3u8/afM6_VFaIss.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/self-versus-non-self/", "duration": 869, "id": "afM6_VFaIss", "title": "Self vs. non-self immunity", "format": "mp4", "description": "", "slug": "self-versus-non-self", "kind": "Video", "video_id": "afM6_VFaIss", "keywords": "", "youtube_id": "afM6_VFaIss", "readable_id": "self-versus-non-self"}, "ESusD8HRLBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ESusD8HRLBI.mp4/ESusD8HRLBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ESusD8HRLBI.mp4/ESusD8HRLBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ESusD8HRLBI.m3u8/ESusD8HRLBI.m3u8"}, "duration": 854, "id": "ESusD8HRLBI", "title": "Moments", "format": "mp4", "description": "Introduction to moments", "path": "khan/science/physics/torque-angular-momentum/torque-tutorial/moments/", "slug": "moments", "kind": "Video", "video_id": "ESusD8HRLBI", "keywords": "torque, moment, of, force, rotation", "youtube_id": "ESusD8HRLBI", "readable_id": "moments"}, "aDCXPdzyS0s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aDCXPdzyS0s.mp4/aDCXPdzyS0s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aDCXPdzyS0s.mp4/aDCXPdzyS0s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aDCXPdzyS0s.m3u8/aDCXPdzyS0s.m3u8"}, "duration": 275, "id": "aDCXPdzyS0s", "title": "Figuring out all the angles for congruent triangles example", "format": "mp4", "description": "Another example of using congruency to figure out a bunch of angles", "path": "khan/math/geometry/congruent-triangles/cong_triangle/figuring-out-all-the-angles-for-congruent-triangles-example/", "slug": "figuring-out-all-the-angles-for-congruent-triangles-example", "kind": "Video", "video_id": "aDCXPdzyS0s", "keywords": "Figuring, out, all, the, angles, for, congruent, triangles, example", "youtube_id": "aDCXPdzyS0s", "readable_id": "figuring-out-all-the-angles-for-congruent-triangles-example"}, "eTwnt4G5xE4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eTwnt4G5xE4.mp4/eTwnt4G5xE4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eTwnt4G5xE4.mp4/eTwnt4G5xE4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eTwnt4G5xE4.m3u8/eTwnt4G5xE4.m3u8"}, "duration": 295, "id": "eTwnt4G5xE4", "title": "Triangle angle example 2", "format": "mp4", "description": "Another example finding angles in triangles", "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/triangle-angle-example-2/", "slug": "triangle-angle-example-2", "kind": "Video", "video_id": "eTwnt4G5xE4", "keywords": "Triangle, Angle, Example, 2", "youtube_id": "eTwnt4G5xE4", "readable_id": "triangle-angle-example-2"}, "K6BKDveCd9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K6BKDveCd9w.mp4/K6BKDveCd9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K6BKDveCd9w.mp4/K6BKDveCd9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K6BKDveCd9w.m3u8/K6BKDveCd9w.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/pieter-bruegel-the-elder-the-tower-of-babel-1563/", "duration": 280, "id": "K6BKDveCd9w", "title": "Bruegel, Tower of Babel", "format": "mp4", "description": "Pieter Bruegel the Elder, The Tower of Babel, 1563, oil on panel, 114 \u00d7 155 cm (Kunsthistorisches Museum, Vienna). In the Google Art Project: http://www.googleartproject.com/collection/kunsthistorisches-museum-vienna-museum-of-fine-arts/artwork/the-tower-of-babel-pieter-bruegel-the-elder/807533/", "slug": "pieter-bruegel-the-elder-the-tower-of-babel-1563", "kind": "Video", "video_id": "K6BKDveCd9w", "keywords": "Bruegel, Tower, Babel, GAP, Google Art Project, Smarthistory, Khan Academy, Pieter Bruegel, Pieter Bruegel the Elder, Tower of Babel, 1563, Kunsthistorisches, Vienna, Vien, Netherlandish, Flemish, Renaissance, Landscape, Painted Architecture, Biblical Architecture, Art History, Painting", "youtube_id": "K6BKDveCd9w", "readable_id": "pieter-bruegel-the-elder-the-tower-of-babel-1563"}, "4BtXvopHXI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4BtXvopHXI8.mp4/4BtXvopHXI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4BtXvopHXI8.mp4/4BtXvopHXI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4BtXvopHXI8.m3u8/4BtXvopHXI8.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/3-digit-times-1-digit-example-no-carrying/", "duration": 114, "id": "4BtXvopHXI8", "title": "Multiplying: 3 digits times 1 digit", "format": "mp4", "description": "How about this example? We're going to multiply a 3 digit number by a 1 digit number. Again, no carrying involved.", "slug": "3-digit-times-1-digit-example-no-carrying", "kind": "Video", "video_id": "4BtXvopHXI8", "keywords": "", "youtube_id": "4BtXvopHXI8", "readable_id": "3-digit-times-1-digit-example-no-carrying"}, "EGNlXtjYABw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EGNlXtjYABw.mp4/EGNlXtjYABw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EGNlXtjYABw.mp4/EGNlXtjYABw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EGNlXtjYABw.m3u8/EGNlXtjYABw.m3u8"}, "duration": 1271, "id": "EGNlXtjYABw", "title": "Visualizing a column space as a plane in R3", "format": "mp4", "description": "Determining the planar equation for a column space in R3", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/visualizing-a-column-space-as-a-plane-in-r3/", "slug": "visualizing-a-column-space-as-a-plane-in-r3", "kind": "Video", "video_id": "EGNlXtjYABw", "keywords": "column, space, matrix, plane, equation", "youtube_id": "EGNlXtjYABw", "readable_id": "visualizing-a-column-space-as-a-plane-in-r3"}, "3qP8OOr7pfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3qP8OOr7pfI.mp4/3qP8OOr7pfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3qP8OOr7pfI.mp4/3qP8OOr7pfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3qP8OOr7pfI.m3u8/3qP8OOr7pfI.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds/hedge-fund-strategies-merger-arbitrage-1/", "duration": 301, "id": "3qP8OOr7pfI", "title": "Hedge fund strategies: Merger arbitrage 1", "format": "mp4", "description": "Simple case of merger arbitrage when there is an all cash acquisition", "slug": "hedge-fund-strategies-merger-arbitrage-1", "kind": "Video", "video_id": "3qP8OOr7pfI", "keywords": "finance, accounting, capital, markets", "youtube_id": "3qP8OOr7pfI", "readable_id": "hedge-fund-strategies-merger-arbitrage-1"}, "-nve3n7WD0w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-nve3n7WD0w.mp4/-nve3n7WD0w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-nve3n7WD0w.mp4/-nve3n7WD0w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-nve3n7WD0w.m3u8/-nve3n7WD0w.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-student-experience-overview/sscc-blended-environment/", "duration": 454, "id": "-nve3n7WD0w", "title": "The learning environment in the protagonist schools", "format": "mp4", "description": "", "slug": "sscc-blended-environment", "kind": "Video", "video_id": "-nve3n7WD0w", "keywords": "", "youtube_id": "-nve3n7WD0w", "readable_id": "sscc-blended-environment"}, "0TRjw-Ot9Pc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0TRjw-Ot9Pc.mp4/0TRjw-Ot9Pc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0TRjw-Ot9Pc.mp4/0TRjw-Ot9Pc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0TRjw-Ot9Pc.m3u8/0TRjw-Ot9Pc.m3u8"}, "path": "khan/humanities/art-asia/himalayas/tibet/simhavaktra-dakini/", "duration": 232, "id": "0TRjw-Ot9Pc", "title": "The Buddhist deity Simhavaktra Dakini", "format": "mp4", "description": "Simhavaktra Dakini, the ferocious lion-faced guardian of Vajrayana Buddhism, is a female \u201csky-walker\u201d\u00a0who guides human beings along the right path. This powerful spirit can remove physical hindrances and\u00a0spiritual obstacles such as pride and ego. When she is portrayed alone, like here, she dances gracefully; her\u00a0right leg is raised and bent, and her left leg would usually be planted on a prostrate demonic figure, which\u00a0in this case is missing. Originally she would have held a chopper (a curved, chopping knife) in her right\u00a0hand and a bowl made from a human skull in her left. These are also missing. She is naked except for\u00a0jewelry (originally inset with semiprecious stones), a tiger skin is wrapped around her waist, and human\u00a0skin is knotted around her shoulders.\nTogether with Makaravaktra Dakini (a crocodile-headed dakini), Simhavaktra attends Penden Lhamo, the only female goddess among the Eight Guardians of the Dharma who protect the teachings\u00a0of the Buddha. She is a special inner protectress of various lineages including the Gelukpa Order and its\u00a0two leaders, the Dalai and Panchen Lamas.\u00a0\n\nThe size and quality of this piece indicate it was an imperial object made for the Qing dynasty\u00a0(1644\u20131911) court in China. Learn more on the\u00a0Asian Art Museum's education website.\n", "slug": "simhavaktra-dakini", "kind": "Video", "video_id": "0TRjw-Ot9Pc", "keywords": "Tibet, Tibetan art", "youtube_id": "0TRjw-Ot9Pc", "readable_id": "simhavaktra-dakini"}, "NH1_sO8QY3o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NH1_sO8QY3o.mp4/NH1_sO8QY3o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NH1_sO8QY3o.mp4/NH1_sO8QY3o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NH1_sO8QY3o.m3u8/NH1_sO8QY3o.m3u8"}, "duration": 588, "id": "NH1_sO8QY3o", "title": "Visual understanding of centripetal acceleration formula", "format": "mp4", "description": "Visual understanding of how centripetal acceleration relates to velocity and radius", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/visual-understanding-of-centripetal-acceleration-formula/", "slug": "visual-understanding-of-centripetal-acceleration-formula", "kind": "Video", "video_id": "NH1_sO8QY3o", "keywords": "physics", "youtube_id": "NH1_sO8QY3o", "readable_id": "visual-understanding-of-centripetal-acceleration-formula"}, "wyWy4PouQxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wyWy4PouQxQ.mp4/wyWy4PouQxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wyWy4PouQxQ.mp4/wyWy4PouQxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wyWy4PouQxQ.m3u8/wyWy4PouQxQ.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/snow-on-friday/", "duration": 259, "id": "wyWy4PouQxQ", "title": "Snow on Friday", "format": "mp4", "description": "", "slug": "snow-on-friday", "kind": "Video", "video_id": "wyWy4PouQxQ", "keywords": "", "youtube_id": "wyWy4PouQxQ", "readable_id": "snow-on-friday"}, "jo1bjsBbcc8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jo1bjsBbcc8.mp4/jo1bjsBbcc8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jo1bjsBbcc8.mp4/jo1bjsBbcc8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jo1bjsBbcc8.m3u8/jo1bjsBbcc8.m3u8"}, "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-chassis-timelapse-mov/", "duration": 399, "id": "jo1bjsBbcc8", "title": "Chassis/frame", "format": "mp4", "description": "In this video we show you how to craft the chassis for the Bit-zee using a $3 piece of Lexan and tap light housing", "slug": "bit-zee-s-chassis-timelapse-mov", "kind": "Video", "video_id": "jo1bjsBbcc8", "keywords": "Bit-zee's body, Bit-zee's chassis, robot frame, robot structure", "youtube_id": "jo1bjsBbcc8", "readable_id": "bit-zee-s-chassis-timelapse-mov"}, "4GW-PORTvfo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4GW-PORTvfo.mp4/4GW-PORTvfo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4GW-PORTvfo.mp4/4GW-PORTvfo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4GW-PORTvfo.m3u8/4GW-PORTvfo.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/richter-betty/", "duration": 299, "id": "4GW-PORTvfo", "title": "Gerhard Richter, Betty", "format": "mp4", "description": "Salman Khan and Steven Zucker discuss Gerhard Richter's Betty, 1988, oil on canvas, 102 x 72 cm. (Saint Louis Art Museum)", "slug": "richter-betty", "kind": "Video", "video_id": "4GW-PORTvfo", "keywords": "art, art history, German, painting, contemporary, naturalism, Betty, Richter, Gerhard Richter", "youtube_id": "4GW-PORTvfo", "readable_id": "richter-betty"}, "e_Us5TGPFe0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e_Us5TGPFe0.mp4/e_Us5TGPFe0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e_Us5TGPFe0.mp4/e_Us5TGPFe0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e_Us5TGPFe0.m3u8/e_Us5TGPFe0.m3u8"}, "path": "khan/humanities/medieval-world/medieval-europe/manuscripts/", "duration": 207, "id": "e_Us5TGPFe0", "title": "Manuscripts: major works of art", "format": "mp4", "description": "Illuminated manuscripts are books from early medieval times through the Renaissance. Considered major works of art, they were written and decorated by hand with gold, silver, lapis, and other precious materials. Explore several exemplars, including the finest German illuminated manuscript of the 12th century, the Stammheim Missal, as well as other religious and secular works. Love art? Follow us on Google+", "slug": "manuscripts", "kind": "Video", "video_id": "e_Us5TGPFe0", "keywords": "", "youtube_id": "e_Us5TGPFe0", "readable_id": "manuscripts"}, "LjC-H-RAclc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LjC-H-RAclc.mp4/LjC-H-RAclc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LjC-H-RAclc.mp4/LjC-H-RAclc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LjC-H-RAclc.m3u8/LjC-H-RAclc.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/magnetism/discovery-of-magnetic-poles-two-compass-needles/", "duration": 45, "id": "LjC-H-RAclc", "title": "Compass interactions", "format": "mp4", "description": "If we float two identically magnetized needles they will always orient themselves in the same way. Why?", "slug": "discovery-of-magnetic-poles-two-compass-needles", "kind": "Video", "video_id": "LjC-H-RAclc", "keywords": "magnetic pole", "youtube_id": "LjC-H-RAclc", "readable_id": "discovery-of-magnetic-poles-two-compass-needles"}, "V7vCaxe3Rys": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V7vCaxe3Rys.mp4/V7vCaxe3Rys.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V7vCaxe3Rys.mp4/V7vCaxe3Rys.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V7vCaxe3Rys.m3u8/V7vCaxe3Rys.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-21/", "duration": 725, "id": "V7vCaxe3Rys", "title": "GMAT: Data sufficiency 21", "format": "mp4", "description": "91-94, pgs. 285-286", "slug": "gmat-data-sufficiency-21", "kind": "Video", "video_id": "V7vCaxe3Rys", "keywords": "gmat, data, sufficiency", "youtube_id": "V7vCaxe3Rys", "readable_id": "gmat-data-sufficiency-21"}, "ItA_hhRtUuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ItA_hhRtUuw.mp4/ItA_hhRtUuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ItA_hhRtUuw.mp4/ItA_hhRtUuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ItA_hhRtUuw.m3u8/ItA_hhRtUuw.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/advanced-ratios/more-advanced-ratio-problem-with-algebra-hd-version/", "duration": 598, "id": "ItA_hhRtUuw", "title": "More advanced ratio problem with algebra", "format": "mp4", "description": "More advance ratio problem with algebra.", "slug": "more-advanced-ratio-problem-with-algebra-hd-version", "kind": "Video", "video_id": "ItA_hhRtUuw", "keywords": "ratio, ratios, algebra, CC_7_RP_3", "youtube_id": "ItA_hhRtUuw", "readable_id": "more-advanced-ratio-problem-with-algebra-hd-version"}, "xjkSE9cPqzo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xjkSE9cPqzo.mp4/xjkSE9cPqzo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xjkSE9cPqzo.mp4/xjkSE9cPqzo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xjkSE9cPqzo.m3u8/xjkSE9cPqzo.m3u8"}, "path": "khan/math/differential-calculus/limits_topic/old-limits-tutorial/limit-examples-w-brain-malfunction-on-first-prob-part-4/", "duration": 902, "id": "xjkSE9cPqzo", "title": "Limit examples w/ brain malfunction on first prob (part 4)", "format": "mp4", "description": "3 interesting limit examples (correct answer for problem 1 is 3/16 (6/(4*8) NOT 6/(4+8))", "slug": "limit-examples-w-brain-malfunction-on-first-prob-part-4", "kind": "Video", "video_id": "xjkSE9cPqzo", "keywords": "calculus, CC_39336_A-REI_4, CC_39336_A-SSE_3_a", "youtube_id": "xjkSE9cPqzo", "readable_id": "limit-examples-w-brain-malfunction-on-first-prob-part-4"}, "G4CgOF4ccXk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G4CgOF4ccXk.mp4/G4CgOF4ccXk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G4CgOF4ccXk.mp4/G4CgOF4ccXk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G4CgOF4ccXk.m3u8/G4CgOF4ccXk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/fluids-part-7/", "duration": 599, "id": "G4CgOF4ccXk", "title": "Fluids (part 7)", "format": "mp4", "description": "Introduction to the study of moving fluids.", "slug": "fluids-part-7", "kind": "Video", "video_id": "G4CgOF4ccXk", "keywords": "physics, flux, viscosity, laminar, flow, pressure, fluid, motion", "youtube_id": "G4CgOF4ccXk", "readable_id": "fluids-part-7"}, "KV_XLL4K2Fw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KV_XLL4K2Fw.mp4/KV_XLL4K2Fw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KV_XLL4K2Fw.mp4/KV_XLL4K2Fw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KV_XLL4K2Fw.m3u8/KV_XLL4K2Fw.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-equation-of-a-line/finding-y-intercept-given-slope-and-point/", "duration": 120, "id": "KV_XLL4K2Fw", "title": "Finding y intercept given slope and point", "format": "mp4", "description": "", "slug": "finding-y-intercept-given-slope-and-point", "kind": "Video", "video_id": "KV_XLL4K2Fw", "keywords": "", "youtube_id": "KV_XLL4K2Fw", "readable_id": "finding-y-intercept-given-slope-and-point"}, "fJHFM2dOmiY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fJHFM2dOmiY.mp4/fJHFM2dOmiY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fJHFM2dOmiY.mp4/fJHFM2dOmiY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fJHFM2dOmiY.m3u8/fJHFM2dOmiY.m3u8"}, "duration": 134, "id": "fJHFM2dOmiY", "title": "Math block", "format": "mp4", "description": "Math blocks allow you to scale values (and much more!)", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-mathblock/", "slug": "lego-mathblock", "kind": "Video", "video_id": "fJHFM2dOmiY", "keywords": "", "youtube_id": "fJHFM2dOmiY", "readable_id": "lego-mathblock"}, "QMv4kxATfzs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QMv4kxATfzs.mp4/QMv4kxATfzs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QMv4kxATfzs.mp4/QMv4kxATfzs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QMv4kxATfzs.m3u8/QMv4kxATfzs.m3u8"}, "duration": 92, "id": "QMv4kxATfzs", "title": "Supernova clarification", "format": "mp4", "description": "Supernova clarification", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/supernova-clarification/", "slug": "supernova-clarification", "kind": "Video", "video_id": "QMv4kxATfzs", "keywords": "SuperNova, (SuperNovae), nova, massive, stars", "youtube_id": "QMv4kxATfzs", "readable_id": "supernova-clarification"}, "0BgUKHTW37E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0BgUKHTW37E.mp4/0BgUKHTW37E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0BgUKHTW37E.mp4/0BgUKHTW37E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0BgUKHTW37E.m3u8/0BgUKHTW37E.m3u8"}, "duration": 364, "id": "0BgUKHTW37E", "title": "Example 3: Solving systems by substitution", "format": "mp4", "description": "Solving systems by substitution 3", "path": "solving-systems-by-substitution-3/", "slug": "solving-systems-by-substitution-3", "kind": "Video", "video_id": "0BgUKHTW37E", "keywords": "U06_L1_T2_we3, Solving, systems, by, substitution, CC_8_EE_8_a, CC_8_EE_8_b, CC_8_EE_8_c, CC_39336_A-REI_6", "youtube_id": "0BgUKHTW37E", "readable_id": "solving-systems-by-substitution-3"}, "43j2gGEP4JI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/43j2gGEP4JI.mp4/43j2gGEP4JI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/43j2gGEP4JI.mp4/43j2gGEP4JI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/43j2gGEP4JI.m3u8/43j2gGEP4JI.m3u8"}, "path": "khan/science/discoveries-projects/lego-robotics/lego-sensors/lego-nxt-light-guitar/", "duration": 29, "id": "43j2gGEP4JI", "title": "Demo: light guitar", "format": "mp4", "description": "Light guitar in action!", "slug": "lego-nxt-light-guitar", "kind": "Video", "video_id": "43j2gGEP4JI", "keywords": "", "youtube_id": "43j2gGEP4JI", "readable_id": "lego-nxt-light-guitar"}, "wQHcz7U01M4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wQHcz7U01M4.mp4/wQHcz7U01M4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wQHcz7U01M4.mp4/wQHcz7U01M4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wQHcz7U01M4.m3u8/wQHcz7U01M4.m3u8"}, "path": "khan/partner-content/all-star-orchestra/elements-of-music/lesson-1-note-values-duration-and-time-signatures/", "duration": 176, "id": "wQHcz7U01M4", "title": "Lesson 1: Note values, duration, and time signatures", "format": "mp4", "description": "Definitions and basic concepts", "slug": "lesson-1-note-values-duration-and-time-signatures", "kind": "Video", "video_id": "wQHcz7U01M4", "keywords": "", "youtube_id": "wQHcz7U01M4", "readable_id": "lesson-1-note-values-duration-and-time-signatures"}, "XHLMUdL8feg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XHLMUdL8feg.mp4/XHLMUdL8feg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XHLMUdL8feg.mp4/XHLMUdL8feg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XHLMUdL8feg.m3u8/XHLMUdL8feg.m3u8"}, "duration": 315, "id": "XHLMUdL8feg", "title": "Thomas Hirschhorn: Flamme \u00c9ternelle", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWatch as artist Thomas Hirschhorn stages his participatory artwork Flamme \u00c9ternelle at the Palais de Tokyo in Paris. For 52 days, Hirschhorn lived within the exhibition he had created, inviting 200 French writers, poets and philosophers to join him there and share their work with the public. Without the presence, participation, and production of the audience, this piece wouldn't exist.", "path": "thomas-hirschhorn/", "slug": "thomas-hirschhorn", "kind": "Video", "video_id": "XHLMUdL8feg", "keywords": "Tate, performance art", "youtube_id": "XHLMUdL8feg", "readable_id": "thomas-hirschhorn"}, "WSpF5uvApLA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WSpF5uvApLA.mp4/WSpF5uvApLA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WSpF5uvApLA.mp4/WSpF5uvApLA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WSpF5uvApLA.m3u8/WSpF5uvApLA.m3u8"}, "duration": 310, "id": "WSpF5uvApLA", "title": "Independent and dependent systems", "format": "mp4", "description": " Independent and Dependent Systems", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/independent-and-dependent-systems/", "slug": "independent-and-dependent-systems", "kind": "Video", "video_id": "WSpF5uvApLA", "keywords": "u14_l1_t1_we4, Independent, and, Dependent, Systems, CC_8_EE_8_a, CC_8_EE_8_b, CC_39336_A-REI_6", "youtube_id": "WSpF5uvApLA", "readable_id": "independent-and-dependent-systems"}, "Rc1CezZgggM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rc1CezZgggM.mp4/Rc1CezZgggM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rc1CezZgggM.mp4/Rc1CezZgggM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rc1CezZgggM.m3u8/Rc1CezZgggM.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/synthesis-alkynes/synthesis-using-alkynes/", "duration": 709, "id": "Rc1CezZgggM", "title": "Synthesis using alkynes", "format": "mp4", "description": "", "slug": "synthesis-using-alkynes", "kind": "Video", "video_id": "Rc1CezZgggM", "keywords": "", "youtube_id": "Rc1CezZgggM", "readable_id": "synthesis-using-alkynes"}, "ZJ39gHgz_Dk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZJ39gHgz_Dk.mp4/ZJ39gHgz_Dk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZJ39gHgz_Dk.mp4/ZJ39gHgz_Dk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZJ39gHgz_Dk.m3u8/ZJ39gHgz_Dk.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/using-crayons/", "duration": 265, "id": "ZJ39gHgz_Dk", "title": "Using crayons", "format": "mp4", "description": "", "slug": "using-crayons", "kind": "Video", "video_id": "ZJ39gHgz_Dk", "keywords": "", "youtube_id": "ZJ39gHgz_Dk", "readable_id": "using-crayons"}, "ka8Yt4bTODs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ka8Yt4bTODs.mp4/ka8Yt4bTODs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ka8Yt4bTODs.mp4/ka8Yt4bTODs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ka8Yt4bTODs.m3u8/ka8Yt4bTODs.m3u8"}, "duration": 605, "id": "ka8Yt4bTODs", "title": "VSEPR for 4 electron clouds", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/vsepr-for-4-electron-clouds/", "slug": "vsepr-for-4-electron-clouds", "kind": "Video", "video_id": "ka8Yt4bTODs", "keywords": "", "youtube_id": "ka8Yt4bTODs", "readable_id": "vsepr-for-4-electron-clouds"}, "Xe6YlrCgkIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xe6YlrCgkIo.mp4/Xe6YlrCgkIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xe6YlrCgkIo.mp4/Xe6YlrCgkIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xe6YlrCgkIo.m3u8/Xe6YlrCgkIo.m3u8"}, "duration": 692, "id": "Xe6YlrCgkIo", "title": "Related rates of water pouring into cone", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/rates_of_change/related-rates-of-water-pouring-into-cone/", "slug": "related-rates-of-water-pouring-into-cone", "kind": "Video", "video_id": "Xe6YlrCgkIo", "keywords": "", "youtube_id": "Xe6YlrCgkIo", "readable_id": "related-rates-of-water-pouring-into-cone"}, "gw-4wltP5tY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gw-4wltP5tY.mp4/gw-4wltP5tY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gw-4wltP5tY.mp4/gw-4wltP5tY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gw-4wltP5tY.m3u8/gw-4wltP5tY.m3u8"}, "duration": 598, "id": "gw-4wltP5tY", "title": "Normal vector from plane equation", "format": "mp4", "description": "Figuring out a normal vector to a plane from its equation", "path": "khan/test-prep/iit-jee-subject/iit-jee/normal-vector-from-plane-equation/", "slug": "normal-vector-from-plane-equation", "kind": "Video", "video_id": "gw-4wltP5tY", "keywords": "linear, algebra, normal, vector, equation, plane", "youtube_id": "gw-4wltP5tY", "readable_id": "normal-vector-from-plane-equation"}, "vDwzmJpI4io": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vDwzmJpI4io.mp4/vDwzmJpI4io.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vDwzmJpI4io.mp4/vDwzmJpI4io.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vDwzmJpI4io.m3u8/vDwzmJpI4io.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/copy-of-khan-academy-living-room-chats/elon-musk/", "duration": 2922, "id": "vDwzmJpI4io", "title": "Elon Musk - CEO of Tesla Motors and SpaceX", "format": "mp4", "description": "", "slug": "elon-musk", "kind": "Video", "video_id": "vDwzmJpI4io", "keywords": "", "youtube_id": "vDwzmJpI4io", "readable_id": "elon-musk"}, "2f7YwCtHcgk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2f7YwCtHcgk.mp4/2f7YwCtHcgk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2f7YwCtHcgk.mp4/2f7YwCtHcgk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2f7YwCtHcgk.m3u8/2f7YwCtHcgk.m3u8"}, "duration": 859, "id": "2f7YwCtHcgk", "title": "Introduction to cellular respiration", "format": "mp4", "description": "Introduction to cellular respiration, glycolysis, the Kreb's Cycle, and the electron transport chain", "path": "khan/test-prep/mcat/biomolecules/carbohydrate-metabolism/introduction-to-cellular-respiration/", "slug": "introduction-to-cellular-respiration", "kind": "Video", "video_id": "2f7YwCtHcgk", "keywords": "cellular, respiration, glycolysis, kreb's, cycle, electron, transport, chain", "youtube_id": "2f7YwCtHcgk", "readable_id": "introduction-to-cellular-respiration"}, "iRjCDGpjJ3I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iRjCDGpjJ3I.mp4/iRjCDGpjJ3I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iRjCDGpjJ3I.mp4/iRjCDGpjJ3I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iRjCDGpjJ3I.m3u8/iRjCDGpjJ3I.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/shock-oxygen-delivery-and-metabolism/", "duration": 548, "id": "iRjCDGpjJ3I", "title": "Shock - oxygen delivery and metabolism", "format": "mp4", "description": "", "slug": "shock-oxygen-delivery-and-metabolism", "kind": "Video", "video_id": "iRjCDGpjJ3I", "keywords": "", "youtube_id": "iRjCDGpjJ3I", "readable_id": "shock-oxygen-delivery-and-metabolism"}, "ROIfbUQrSY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ROIfbUQrSY4.mp4/ROIfbUQrSY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ROIfbUQrSY4.mp4/ROIfbUQrSY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ROIfbUQrSY4.m3u8/ROIfbUQrSY4.m3u8"}, "duration": 81, "id": "ROIfbUQrSY4", "title": "Understanding square roots", "format": "mp4", "description": "Understanding Square Roots", "path": "khan/math/algebra-basics/core-algebra-foundations/square-roots-for-college/understanding-square-roots/", "slug": "understanding-square-roots", "kind": "Video", "video_id": "ROIfbUQrSY4", "keywords": "U01_L5_T1_we3, Understanding, Square, Roots, CC_8_EE_2", "youtube_id": "ROIfbUQrSY4", "readable_id": "understanding-square-roots"}, "w56Vuf9tHfA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w56Vuf9tHfA.mp4/w56Vuf9tHfA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w56Vuf9tHfA.mp4/w56Vuf9tHfA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w56Vuf9tHfA.m3u8/w56Vuf9tHfA.m3u8"}, "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/finding-focus-and-directrix-from-vertex/", "duration": 689, "id": "w56Vuf9tHfA", "title": "Finding focus and directrix from vertex", "format": "mp4", "description": "", "slug": "finding-focus-and-directrix-from-vertex", "kind": "Video", "video_id": "w56Vuf9tHfA", "keywords": "", "youtube_id": "w56Vuf9tHfA", "readable_id": "finding-focus-and-directrix-from-vertex"}, "-MYh3s__qlA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-MYh3s__qlA.mp4/-MYh3s__qlA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-MYh3s__qlA.mp4/-MYh3s__qlA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-MYh3s__qlA.m3u8/-MYh3s__qlA.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2008-may-8-15/", "duration": 169, "id": "-MYh3s__qlA", "title": "15 Sums of terms in a sequence", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-15", "kind": "Video", "video_id": "-MYh3s__qlA", "keywords": "", "youtube_id": "-MYh3s__qlA", "readable_id": "sat-2008-may-8-15"}, "10LuSfZZa3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/10LuSfZZa3E.mp4/10LuSfZZa3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/10LuSfZZa3E.mp4/10LuSfZZa3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/10LuSfZZa3E.m3u8/10LuSfZZa3E.m3u8"}, "duration": 685, "id": "10LuSfZZa3E", "title": "Snell's law example 2", "format": "mp4", "description": "Snell's Law Example 2", "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/snell-s-law-example-2/", "slug": "snell-s-law-example-2", "kind": "Video", "video_id": "10LuSfZZa3E", "keywords": "Snell's, Law, Example", "youtube_id": "10LuSfZZa3E", "readable_id": "snell-s-law-example-2"}, "xUFwzPmqt0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xUFwzPmqt0Y.mp4/xUFwzPmqt0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xUFwzPmqt0Y.mp4/xUFwzPmqt0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xUFwzPmqt0Y.m3u8/xUFwzPmqt0Y.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/electrophilic-aromatic-substitution/friedel-crafts-acylation-1/", "duration": 552, "id": "xUFwzPmqt0Y", "title": "Friedel-Crafts acylation", "format": "mp4", "description": "The mechanism of acylation", "slug": "friedel-crafts-acylation-1", "kind": "Video", "video_id": "xUFwzPmqt0Y", "keywords": "", "youtube_id": "xUFwzPmqt0Y", "readable_id": "friedel-crafts-acylation-1"}, "Jpbm5YgciqI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jpbm5YgciqI.mp4/Jpbm5YgciqI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jpbm5YgciqI.mp4/Jpbm5YgciqI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jpbm5YgciqI.m3u8/Jpbm5YgciqI.m3u8"}, "duration": 146, "id": "Jpbm5YgciqI", "title": "Studying, shoe size, and test scores scatter plots", "format": "mp4", "description": "", "path": "khan/math/probability/regression/prob-stats-scatter-plots/scatter-plot-interpreting/", "slug": "scatter-plot-interpreting", "kind": "Video", "video_id": "Jpbm5YgciqI", "keywords": "", "youtube_id": "Jpbm5YgciqI", "readable_id": "scatter-plot-interpreting"}, "rai9hJOGJLE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rai9hJOGJLE.mp4/rai9hJOGJLE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rai9hJOGJLE.mp4/rai9hJOGJLE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rai9hJOGJLE.m3u8/rai9hJOGJLE.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section3/sat-2-defying-oppression/", "duration": 210, "id": "rai9hJOGJLE", "title": "2 Defying oppression", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2-defying-oppression", "kind": "Video", "video_id": "rai9hJOGJLE", "keywords": "", "youtube_id": "rai9hJOGJLE", "readable_id": "sat-2-defying-oppression"}, "ESO-EMKJwmg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ESO-EMKJwmg.mp4/ESO-EMKJwmg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ESO-EMKJwmg.mp4/ESO-EMKJwmg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ESO-EMKJwmg.m3u8/ESO-EMKJwmg.m3u8"}, "duration": 123, "id": "ESO-EMKJwmg", "title": "\"Dive Bomber and Tank\" by Jose Clemente Orozco, 1940 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how she teaches \"Dive Bomber and Tank\" by Jose Clemente Orozco, 1940.\u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-orozco/", "slug": "teaching-orozco", "kind": "Video", "video_id": "ESO-EMKJwmg", "keywords": "", "youtube_id": "ESO-EMKJwmg", "readable_id": "teaching-orozco"}, "4GUm8ybncWY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4GUm8ybncWY.mp4/4GUm8ybncWY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4GUm8ybncWY.mp4/4GUm8ybncWY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4GUm8ybncWY.m3u8/4GUm8ybncWY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/hypoplastic-left-heart-syndrome-and-norwood-glenn-fontan/", "duration": 636, "id": "4GUm8ybncWY", "title": "Hypoplastic left heart syndrome and norwood glenn fontan", "format": "mp4", "description": "", "slug": "hypoplastic-left-heart-syndrome-and-norwood-glenn-fontan", "kind": "Video", "video_id": "4GUm8ybncWY", "keywords": "", "youtube_id": "4GUm8ybncWY", "readable_id": "hypoplastic-left-heart-syndrome-and-norwood-glenn-fontan"}, "EHR-YDwrrhM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EHR-YDwrrhM.mp4/EHR-YDwrrhM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EHR-YDwrrhM.mp4/EHR-YDwrrhM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EHR-YDwrrhM.m3u8/EHR-YDwrrhM.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/solutions-to-two-var-linear-equations/graphing-solutions-to-2-variable-linear-equations-1/", "duration": 431, "id": "EHR-YDwrrhM", "title": "Graphing solutions to two-variable linear equations example 2", "format": "mp4", "description": "Graphing solutions to 2 variable linear equations", "slug": "graphing-solutions-to-2-variable-linear-equations-1", "kind": "Video", "video_id": "EHR-YDwrrhM", "keywords": "", "youtube_id": "EHR-YDwrrhM", "readable_id": "graphing-solutions-to-2-variable-linear-equations-1"}, "86iNZaZ0S84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/86iNZaZ0S84.mp4/86iNZaZ0S84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/86iNZaZ0S84.mp4/86iNZaZ0S84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/86iNZaZ0S84.m3u8/86iNZaZ0S84.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/multiplicity-n-1-rule/", "duration": 585, "id": "86iNZaZ0S84", "title": "Multiplicity: n + 1 rule", "format": "mp4", "description": "", "slug": "multiplicity-n-1-rule", "kind": "Video", "video_id": "86iNZaZ0S84", "keywords": "", "youtube_id": "86iNZaZ0S84", "readable_id": "multiplicity-n-1-rule"}, "IXtreNuEC-Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IXtreNuEC-Q.mp4/IXtreNuEC-Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IXtreNuEC-Q.mp4/IXtreNuEC-Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IXtreNuEC-Q.m3u8/IXtreNuEC-Q.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/cubism/picasso-the-reservoir-horta-de-ebro-1909/", "duration": 255, "id": "IXtreNuEC-Q", "title": "Picasso, The Reservoir, Horta de Ebro", "format": "mp4", "description": "Pablo Picasso, The Reservoir, Horta de Ebro, oil on canvas, summer 1909, 24-1/8 x 20-1/8\" (MoMA, fractional and promised gift)", "slug": "picasso-the-reservoir-horta-de-ebro-1909", "kind": "Video", "video_id": "IXtreNuEC-Q", "keywords": "art history, Picasso, art, painting, cubism, Smarthistory, Museum of Modern Art", "youtube_id": "IXtreNuEC-Q", "readable_id": "picasso-the-reservoir-horta-de-ebro-1909"}, "PsNidCBr5II": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PsNidCBr5II.mp4/PsNidCBr5II.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PsNidCBr5II.mp4/PsNidCBr5II.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PsNidCBr5II.m3u8/PsNidCBr5II.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/linear-algebra-vector-triangle-inequality/", "duration": 1133, "id": "PsNidCBr5II", "title": "Vector triangle inequality", "format": "mp4", "description": "Proving the triangle inequality for vectors in Rn", "slug": "linear-algebra-vector-triangle-inequality", "kind": "Video", "video_id": "PsNidCBr5II", "keywords": "vector, dot, product, length", "youtube_id": "PsNidCBr5II", "readable_id": "linear-algebra-vector-triangle-inequality"}, "rO_lwjhoSiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rO_lwjhoSiU.mp4/rO_lwjhoSiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rO_lwjhoSiU.mp4/rO_lwjhoSiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rO_lwjhoSiU.m3u8/rO_lwjhoSiU.m3u8"}, "duration": 259, "id": "rO_lwjhoSiU", "title": "Conservation | Paik, \"Untitled,\" 1993", "format": "mp4", "description": "To learn more about the history of sound, video and performance art, enroll in our online courses, including\u00a0Five Puzzles of Contemporary Art.", "path": "moma-untitled-paik/", "slug": "moma-untitled-paik", "kind": "Video", "video_id": "rO_lwjhoSiU", "keywords": "", "youtube_id": "rO_lwjhoSiU", "readable_id": "moma-untitled-paik"}, "RkUdm-GiSVc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RkUdm-GiSVc.mp4/RkUdm-GiSVc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RkUdm-GiSVc.mp4/RkUdm-GiSVc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RkUdm-GiSVc.m3u8/RkUdm-GiSVc.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/burgundy-netherlands/jan-van-eyck-the-madonna-in-the-church-c-1438/", "duration": 173, "id": "RkUdm-GiSVc", "title": "Jan van Eyck, The Madonna in the Church", "format": "mp4", "description": "Jan van Eyck, The Madonna in the Church, c. 1438, oil on oak, 31 x 14 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin). In the Google Art Project: http://www.googleartproject.com/collection/gemaldegalerie/artwork/the-madonna-in-the-church-jan-van-eyck/330338/", "slug": "jan-van-eyck-the-madonna-in-the-church-c-1438", "kind": "Video", "video_id": "RkUdm-GiSVc", "keywords": "Van Eyck, Cathedral, GAP, Google Art Project, Gem\u00e4ldegalerie, Staatliche Museen zu Berlin, Berlin, Jan van Eyck, Madonna in the Church, 1438, oil on oak, Netherlandish, Northern Renaissance, Renaissance, Smarthistory, Khan Academy Educational, art history Documentary, Gothic", "youtube_id": "RkUdm-GiSVc", "readable_id": "jan-van-eyck-the-madonna-in-the-church-c-1438"}, "oFGkYA_diDA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oFGkYA_diDA.mp4/oFGkYA_diDA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oFGkYA_diDA.mp4/oFGkYA_diDA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oFGkYA_diDA.m3u8/oFGkYA_diDA.m3u8"}, "duration": 64, "id": "oFGkYA_diDA", "title": "Ape clarification", "format": "mp4", "description": "Ape Clarification - that they have no tails", "path": "khan/science/biology/her/evolution-and-natural-selection/ape-clarification/", "slug": "ape-clarification", "kind": "Video", "video_id": "oFGkYA_diDA", "keywords": "ape, great, lesser, tail, primate", "youtube_id": "oFGkYA_diDA", "readable_id": "ape-clarification"}, "cLOQJVv77w8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cLOQJVv77w8.mp4/cLOQJVv77w8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cLOQJVv77w8.mp4/cLOQJVv77w8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cLOQJVv77w8.m3u8/cLOQJVv77w8.m3u8"}, "path": "khan/partner-content/big-history-project/expansion-interconnection/exploration-interconnection/bhp-how-world-interconnected/", "duration": 643, "id": "cLOQJVv77w8", "title": "How Did the World Become Interconnected?", "format": "mp4", "description": "New trade networks caused an explosion in the trade of goods, but also of ideas, technologies, and diseases.", "slug": "bhp-how-world-interconnected", "kind": "Video", "video_id": "cLOQJVv77w8", "keywords": "", "youtube_id": "cLOQJVv77w8", "readable_id": "bhp-how-world-interconnected"}, "bhMQYdoh8EQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bhMQYdoh8EQ.mp4/bhMQYdoh8EQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bhMQYdoh8EQ.mp4/bhMQYdoh8EQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bhMQYdoh8EQ.m3u8/bhMQYdoh8EQ.m3u8"}, "duration": 410, "id": "bhMQYdoh8EQ", "title": "Digital camera connections", "format": "mp4", "description": "This video shows you how to \"hotwire\" a digital camera. This video outlines the first step in making our digital camera work in the Bit-zee robot. The required voltage for the camera was determined by adding the1.5 volt AAA batteries (there are three of them) together to get 4.5 volts (because the batteries are wired in series). Since new batteries usually have a voltage that exceeds their marked rating the camera can easily run on the 5 volts that the center terminal of our L298 motor controller provides.", "path": "khan/science/discoveries-projects/robots/bit-zee/how-to-hotwire-a-digital-camera/", "slug": "how-to-hotwire-a-digital-camera", "kind": "Video", "video_id": "bhMQYdoh8EQ", "keywords": "digital camera, hotwire, hot wire, hack a camera, hack, make, connect, control camera with an arduino", "youtube_id": "bhMQYdoh8EQ", "readable_id": "how-to-hotwire-a-digital-camera"}, "_l0Mfsu__gU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_l0Mfsu__gU.mp4/_l0Mfsu__gU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_l0Mfsu__gU.mp4/_l0Mfsu__gU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_l0Mfsu__gU.m3u8/_l0Mfsu__gU.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/ap-calculus-bc-exams-2008-1-c-d/", "duration": 560, "id": "_l0Mfsu__gU", "title": "AP Calculus BC exams: 2008 1 c&d", "format": "mp4", "description": "parts c and d of problem 1 in the 2008 AP Calculus BC free response", "slug": "ap-calculus-bc-exams-2008-1-c-d", "kind": "Video", "video_id": "_l0Mfsu__gU", "keywords": "calculus, BC, exam", "youtube_id": "_l0Mfsu__gU", "readable_id": "ap-calculus-bc-exams-2008-1-c-d"}, "CM3IoLOKP5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CM3IoLOKP5U.mp4/CM3IoLOKP5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CM3IoLOKP5U.mp4/CM3IoLOKP5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CM3IoLOKP5U.m3u8/CM3IoLOKP5U.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-intro-blended-learning/sscc-blended-learning-models/sscc-blended-flipped/", "duration": 121, "id": "CM3IoLOKP5U", "title": "The Flipped Classroom Model", "format": "mp4", "description": "", "slug": "sscc-blended-flipped", "kind": "Video", "video_id": "CM3IoLOKP5U", "keywords": "", "youtube_id": "CM3IoLOKP5U", "readable_id": "sscc-blended-flipped"}, "ZxtlcZ-d90o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZxtlcZ-d90o.mp4/ZxtlcZ-d90o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZxtlcZ-d90o.mp4/ZxtlcZ-d90o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZxtlcZ-d90o.m3u8/ZxtlcZ-d90o.m3u8"}, "duration": 670, "id": "ZxtlcZ-d90o", "title": "Short-run oil prices", "format": "mp4", "description": "Thinking about what moves oil prices", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/oil-prices-tutorial/short-run-oil-prices/", "slug": "short-run-oil-prices", "kind": "Video", "video_id": "ZxtlcZ-d90o", "keywords": "oil, gas, prices, microeconomics, macroeconomics", "youtube_id": "ZxtlcZ-d90o", "readable_id": "short-run-oil-prices"}, "-6Fu2T_RSGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-6Fu2T_RSGM.mp4/-6Fu2T_RSGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-6Fu2T_RSGM.mp4/-6Fu2T_RSGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-6Fu2T_RSGM.m3u8/-6Fu2T_RSGM.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/standard-form/point-slope-and-standard-form/", "duration": 476, "id": "-6Fu2T_RSGM", "title": "Writing equations in all forms", "format": "mp4", "description": "Point-slope and standard form", "slug": "point-slope-and-standard-form", "kind": "Video", "video_id": "-6Fu2T_RSGM", "keywords": "U04_L1_T4_we2, Point-slope, and, standard, form, CC_8_EE_8_b, CC_8_EE_8_c, CC_8_F_3", "youtube_id": "-6Fu2T_RSGM", "readable_id": "point-slope-and-standard-form"}, "0_VaUYoNV7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0_VaUYoNV7Y.mp4/0_VaUYoNV7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0_VaUYoNV7Y.mp4/0_VaUYoNV7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0_VaUYoNV7Y.m3u8/0_VaUYoNV7Y.m3u8"}, "duration": 367, "id": "0_VaUYoNV7Y", "title": "Reasoning through inequality expressions", "format": "mp4", "description": "", "path": "khan/math/algebra/linear_inequalities/structure-expressions-linear/reasoning-through-inequality-expressions/", "slug": "reasoning-through-inequality-expressions", "kind": "Video", "video_id": "0_VaUYoNV7Y", "keywords": "", "youtube_id": "0_VaUYoNV7Y", "readable_id": "reasoning-through-inequality-expressions"}, "iYVi_YVOyvs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iYVi_YVOyvs.mp4/iYVi_YVOyvs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iYVi_YVOyvs.mp4/iYVi_YVOyvs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iYVi_YVOyvs.m3u8/iYVi_YVOyvs.m3u8"}, "duration": 373, "id": "iYVi_YVOyvs", "title": "Rewriting a fraction to decimal example 2", "format": "mp4", "description": "Learn how to rewrite a fraction as a decimal. The example in this video: 6/12 --> 0.5", "path": "another-example-converting-fraction-to-decimal/", "slug": "another-example-converting-fraction-to-decimal", "kind": "Video", "video_id": "iYVi_YVOyvs", "keywords": "", "youtube_id": "iYVi_YVOyvs", "readable_id": "another-example-converting-fraction-to-decimal"}, "x7L1s_GWn3o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x7L1s_GWn3o.mp4/x7L1s_GWn3o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x7L1s_GWn3o.mp4/x7L1s_GWn3o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x7L1s_GWn3o.m3u8/x7L1s_GWn3o.m3u8"}, "duration": 241, "id": "x7L1s_GWn3o", "title": "Mounted police and crowd control at Tate Modern", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn artist Tania Bruguera\u2019s 2007 performance Tatlin\u2019s Whisper #5, unwitting gallery-goers are confronted by mounted police who ride back and forth throughout the gallery space, corralling people and controlling their movements. Visitors who expect to walk freely through the museum are presented instead with a controlled and threatening environment. In this video, the Cuban artist talks about her performance work and explains why, instead of presenting images that can be viewed at a safe distance, she wants people to personally experience the dynamics of power. Performance art has the unique power of being able to activate viewers and invite them to become part of the artwork, giving them a sense of power they might not otherwise experience in a gallery setting. But in this case Bruguera has turned performance art on its head, and instead of empowering her audience she intentionally makes them feel disempowered.\n\n\n\n\n\nWhat purpose do you think Bruguera\u2019s performance serves? Is it okay for police to corral and give orders to an audience, whether they like it or not? Do you think an experience like this gives the visitor an opportunity to think about and question the idea of state power without facing real consequences?\n", "path": "tania-bruguera-crowd-control/", "slug": "tania-bruguera-crowd-control", "kind": "Video", "video_id": "x7L1s_GWn3o", "keywords": "Tate", "youtube_id": "x7L1s_GWn3o", "readable_id": "tania-bruguera-crowd-control"}, "HuX62L3_7jo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HuX62L3_7jo.mp4/HuX62L3_7jo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HuX62L3_7jo.mp4/HuX62L3_7jo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HuX62L3_7jo.m3u8/HuX62L3_7jo.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations-alkanes-cycloalkanes/conformations-of-cyclohexane-i-chair-and-boat/", "duration": 642, "id": "HuX62L3_7jo", "title": "Conformations of cyclohexane I: Chair and boat", "format": "mp4", "description": "", "slug": "conformations-of-cyclohexane-i-chair-and-boat", "kind": "Video", "video_id": "HuX62L3_7jo", "keywords": "", "youtube_id": "HuX62L3_7jo", "readable_id": "conformations-of-cyclohexane-i-chair-and-boat"}, "Q7htxHDN8LE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q7htxHDN8LE.mp4/Q7htxHDN8LE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q7htxHDN8LE.mp4/Q7htxHDN8LE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q7htxHDN8LE.m3u8/Q7htxHDN8LE.m3u8"}, "path": "khan/math/trigonometry/basic-trigonometry/reciprocal-trig-functions/example-the-six-trig-ratios/", "duration": 285, "id": "Q7htxHDN8LE", "title": "Secant (sec), cosecant (csc) and cotangent (cot) example", "format": "mp4", "description": "Worked example where we walk through finding the major trig ratios", "slug": "example-the-six-trig-ratios", "kind": "Video", "video_id": "Q7htxHDN8LE", "keywords": "trigonometry sine cosine secant cosecant sec csc cotangent cot", "youtube_id": "Q7htxHDN8LE", "readable_id": "example-the-six-trig-ratios"}, "u5NCRHcel_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u5NCRHcel_g.mp4/u5NCRHcel_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u5NCRHcel_g.mp4/u5NCRHcel_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u5NCRHcel_g.m3u8/u5NCRHcel_g.m3u8"}, "path": "khan/science/discoveries-projects/robots/all-about-spout/sliding-spdt-switch/", "duration": 281, "id": "u5NCRHcel_g", "title": "Spout's sliding SPDT switch", "format": "mp4", "description": "", "slug": "sliding-spdt-switch", "kind": "Video", "video_id": "u5NCRHcel_g", "keywords": "", "youtube_id": "u5NCRHcel_g", "readable_id": "sliding-spdt-switch"}, "8Eb5MWwcMMY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Eb5MWwcMMY.mp4/8Eb5MWwcMMY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Eb5MWwcMMY.mp4/8Eb5MWwcMMY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Eb5MWwcMMY.m3u8/8Eb5MWwcMMY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/adding-subtracting-mixed-numbers-1-ex-1/", "duration": 141, "id": "8Eb5MWwcMMY", "title": "Adding mixed numbers", "format": "mp4", "description": "You know mixed numbers, right? A number that is both a whole number and a proper fraction? Let's add a few together. If this is new to you, no worries. We'll explain everything.", "slug": "adding-subtracting-mixed-numbers-1-ex-1", "kind": "Video", "video_id": "8Eb5MWwcMMY", "keywords": "Adding, subtracting, mixed, numbers, 1, ex", "youtube_id": "8Eb5MWwcMMY", "readable_id": "adding-subtracting-mixed-numbers-1-ex-1"}, "jroamh6SIo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jroamh6SIo0.mp4/jroamh6SIo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jroamh6SIo0.mp4/jroamh6SIo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jroamh6SIo0.m3u8/jroamh6SIo0.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/example-adding-polynomials-with-multiple-variables/", "duration": 150, "id": "jroamh6SIo0", "title": "Example: Adding polynomials with multiple variables", "format": "mp4", "description": "Basic example of simplifying a polynomial expression with multiple variables.", "slug": "example-adding-polynomials-with-multiple-variables", "kind": "Video", "video_id": "jroamh6SIo0", "keywords": "polynomial simplifying", "youtube_id": "jroamh6SIo0", "readable_id": "example-adding-polynomials-with-multiple-variables"}, "XOIhNVeLfWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XOIhNVeLfWs.mp4/XOIhNVeLfWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XOIhNVeLfWs.mp4/XOIhNVeLfWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XOIhNVeLfWs.m3u8/XOIhNVeLfWs.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/standard-form/converting-from-slope-intercept-to-standard-form/", "duration": 309, "id": "XOIhNVeLfWs", "title": "Converting from slope-intercept to standard form", "format": "mp4", "description": "Converting from slope-intercept to standard form", "slug": "converting-from-slope-intercept-to-standard-form", "kind": "Video", "video_id": "XOIhNVeLfWs", "keywords": "", "youtube_id": "XOIhNVeLfWs", "readable_id": "converting-from-slope-intercept-to-standard-form"}, "b8q6i_XPyhk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b8q6i_XPyhk.mp4/b8q6i_XPyhk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b8q6i_XPyhk.mp4/b8q6i_XPyhk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b8q6i_XPyhk.m3u8/b8q6i_XPyhk.m3u8"}, "path": "khan/math/geometry/basic-geometry/area_non_standard/area-of-a-kite/", "duration": 229, "id": "b8q6i_XPyhk", "title": "Area of a kite", "format": "mp4", "description": "Who doesn't like kites? If you were going to make your own out of a piece of cloth, then knowing the area of the kite would be helpful, right? Let's see how it's done.", "slug": "area-of-a-kite", "kind": "Video", "video_id": "b8q6i_XPyhk", "keywords": "", "youtube_id": "b8q6i_XPyhk", "readable_id": "area-of-a-kite"}, "4eNX_xFt-sU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4eNX_xFt-sU.mp4/4eNX_xFt-sU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4eNX_xFt-sU.mp4/4eNX_xFt-sU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4eNX_xFt-sU.m3u8/4eNX_xFt-sU.m3u8"}, "path": "khan/humanities/art-history-basics/beginners-art-history/the-body-in-western-sculpture/", "duration": 477, "id": "4eNX_xFt-sU", "title": "A brief history of representing of the body in Western sculpture", "format": "mp4", "description": "Speakers: Dr. Steven Zucker and Dr. Beth Harris\n", "slug": "the-body-in-western-sculpture", "kind": "Video", "video_id": "4eNX_xFt-sU", "keywords": "", "youtube_id": "4eNX_xFt-sU", "readable_id": "the-body-in-western-sculpture"}, "EQJf8Gb8pg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EQJf8Gb8pg4.mp4/EQJf8Gb8pg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EQJf8Gb8pg4.mp4/EQJf8Gb8pg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EQJf8Gb8pg4.m3u8/EQJf8Gb8pg4.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/redox-titration/", "duration": 478, "id": "EQJf8Gb8pg4", "title": "Redox titration", "format": "mp4", "description": "", "slug": "redox-titration", "kind": "Video", "video_id": "EQJf8Gb8pg4", "keywords": "", "youtube_id": "EQJf8Gb8pg4", "readable_id": "redox-titration"}, "4vuybxJvRuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4vuybxJvRuA.mp4/4vuybxJvRuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4vuybxJvRuA.mp4/4vuybxJvRuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4vuybxJvRuA.m3u8/4vuybxJvRuA.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/dvorak-symphony-9/dvorak-one/", "duration": 551, "id": "4vuybxJvRuA", "title": "Antoni\u0301n Dvor\u030ca\u0301k: Symphony No. 9 \"From the New World,\" analysis by Gerard Schwarz (part 1)", "format": "mp4", "description": "Watch the full performance here (starting at 7:15)", "slug": "dvorak-one", "kind": "Video", "video_id": "4vuybxJvRuA", "keywords": "", "youtube_id": "4vuybxJvRuA", "readable_id": "dvorak-one"}, "YdBXHm3edL8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YdBXHm3edL8.mp4/YdBXHm3edL8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YdBXHm3edL8.mp4/YdBXHm3edL8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YdBXHm3edL8.m3u8/YdBXHm3edL8.m3u8"}, "path": "khan/science/biology/human-biology/immunology/cytotoxic-t-cell-mhc-i-complexes/", "duration": 556, "id": "YdBXHm3edL8", "title": "Cytotoxic T cells and MHC I complexes", "format": "mp4", "description": "", "slug": "cytotoxic-t-cell-mhc-i-complexes", "kind": "Video", "video_id": "YdBXHm3edL8", "keywords": "", "youtube_id": "YdBXHm3edL8", "readable_id": "cytotoxic-t-cell-mhc-i-complexes"}, "NpVL1AjTv_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NpVL1AjTv_E.mp4/NpVL1AjTv_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NpVL1AjTv_E.mp4/NpVL1AjTv_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NpVL1AjTv_E.m3u8/NpVL1AjTv_E.m3u8"}, "duration": 254, "id": "NpVL1AjTv_E", "title": "Lily van der Stokker's \"non-shouting feminism\"", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nBright, chirpy, and colourful images adorn the walls of Lily van der Stokker\u2019s exhibition No Big Deal Thing at Tate St Ives. The Dutch artist, based in Amsterdam and New York, produces elaborate and decorative wall drawings that deal with seemingly banal events like paying bills, cleaning, cooking: the stuff of everyday life. Executing her drawings in a childlike and almost na\u00efve manner, van der Stokker also makes use of pattern, decoration, furniture, and the tools of domestic space.\nMerging feminism, conceptual art and pop art, van der Stokker describes her practice as \u201cnon-shouting feminism.\u201d Are her drawings really so childish and na\u00efve? Or do you think the artist is bringing these quiet, domestic elements into the gallery to make a statement about what belongs there?\n", "path": "lily-van-der-stokker/", "slug": "lily-van-der-stokker", "kind": "Video", "video_id": "NpVL1AjTv_E", "keywords": "Tate", "youtube_id": "NpVL1AjTv_E", "readable_id": "lily-van-der-stokker"}, "pLCmwHsDYqo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pLCmwHsDYqo.mp4/pLCmwHsDYqo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pLCmwHsDYqo.mp4/pLCmwHsDYqo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pLCmwHsDYqo.m3u8/pLCmwHsDYqo.m3u8"}, "duration": 383, "id": "pLCmwHsDYqo", "title": "Dividing polynomials with remainders", "format": "mp4", "description": "Dividing polynomials with remainders", "path": "khan/math/algebra2/polynomial_and_rational/dividing_polynomials/dividing-polynomials-with-remainders/", "slug": "dividing-polynomials-with-remainders", "kind": "Video", "video_id": "pLCmwHsDYqo", "keywords": "u11_l2_t6_we2, Dividing, polynomials, with, remainders, CC_6_EE_1, CC_6_EE_2_c, CC_39336_A-APR_1", "youtube_id": "pLCmwHsDYqo", "readable_id": "dividing-polynomials-with-remainders"}, "1Ex5II-jZzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1Ex5II-jZzw.mp4/1Ex5II-jZzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1Ex5II-jZzw.mp4/1Ex5II-jZzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1Ex5II-jZzw.m3u8/1Ex5II-jZzw.m3u8"}, "path": "khan/partner-content/big-history-project/big-bang/the-big-bang/bhp-questions-about-big-bang/", "duration": 172, "id": "1Ex5II-jZzw", "title": "Questions About the Big Bang", "format": "mp4", "description": "Janna Levin discusses what we know about the Big Bang, and ponders the profound questions that remain.", "slug": "bhp-questions-about-big-bang", "kind": "Video", "video_id": "1Ex5II-jZzw", "keywords": "", "youtube_id": "1Ex5II-jZzw", "readable_id": "bhp-questions-about-big-bang"}, "RQ0855yB2ZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RQ0855yB2ZM.mp4/RQ0855yB2ZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RQ0855yB2ZM.mp4/RQ0855yB2ZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RQ0855yB2ZM.m3u8/RQ0855yB2ZM.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/cole-oxbow/", "duration": 332, "id": "RQ0855yB2ZM", "title": "Thomas Cole, The Oxbow", "format": "mp4", "description": "Thomas Cole, View from Mount Holyoke, Northampton, Massachusetts, after a Thunderstorm\u2014The Oxbow, 1836, oil on canvas, 51 1/2 x 76 inches / 130.8 x 193 cm (The Metropolitan Museum of Art) Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "cole-oxbow", "kind": "Video", "video_id": "RQ0855yB2ZM", "keywords": "", "youtube_id": "RQ0855yB2ZM", "readable_id": "cole-oxbow"}, "KrXE_SzRoqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KrXE_SzRoqw.mp4/KrXE_SzRoqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KrXE_SzRoqw.mp4/KrXE_SzRoqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KrXE_SzRoqw.m3u8/KrXE_SzRoqw.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/quantum-numbers/", "duration": 720, "id": "KrXE_SzRoqw", "title": "Quantum numbers", "format": "mp4", "description": "", "slug": "quantum-numbers", "kind": "Video", "video_id": "KrXE_SzRoqw", "keywords": "", "youtube_id": "KrXE_SzRoqw", "readable_id": "quantum-numbers"}, "Fvi9A_tEmXQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Fvi9A_tEmXQ.mp4/Fvi9A_tEmXQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Fvi9A_tEmXQ.mp4/Fvi9A_tEmXQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Fvi9A_tEmXQ.m3u8/Fvi9A_tEmXQ.m3u8"}, "duration": 602, "id": "Fvi9A_tEmXQ", "title": "Probability density functions", "format": "mp4", "description": "Probability density functions for continuous random variables.", "path": "khan/math/probability/random-variables-topic/random_variables_prob_dist/probability-density-functions/", "slug": "probability-density-functions", "kind": "Video", "video_id": "Fvi9A_tEmXQ", "keywords": "random, variable, continuous, probability, density, function, CC_7_SP_7_b", "youtube_id": "Fvi9A_tEmXQ", "readable_id": "probability-density-functions"}, "D1NubiWCpQg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D1NubiWCpQg.mp4/D1NubiWCpQg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D1NubiWCpQg.mp4/D1NubiWCpQg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D1NubiWCpQg.m3u8/D1NubiWCpQg.m3u8"}, "duration": 434, "id": "D1NubiWCpQg", "title": "Newton's first law of motion concepts", "format": "mp4", "description": "A little quiz on some of the ideas in Newton's first law", "path": "khan/test-prep/mcat/physical-processes/newtons-laws-and-equilibrium/newton-s-first-law-of-motion-concepts/", "slug": "newton-s-first-law-of-motion-concepts", "kind": "Video", "video_id": "D1NubiWCpQg", "keywords": "physics, newton's, laws", "youtube_id": "D1NubiWCpQg", "readable_id": "newton-s-first-law-of-motion-concepts"}, "PF7m1fFr2eQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PF7m1fFr2eQ.mp4/PF7m1fFr2eQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PF7m1fFr2eQ.mp4/PF7m1fFr2eQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PF7m1fFr2eQ.m3u8/PF7m1fFr2eQ.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/agents-of-socialization/", "duration": 284, "id": "PF7m1fFr2eQ", "title": "Agents of socialization", "format": "mp4", "description": "", "slug": "agents-of-socialization", "kind": "Video", "video_id": "PF7m1fFr2eQ", "keywords": "", "youtube_id": "PF7m1fFr2eQ", "readable_id": "agents-of-socialization"}, "utdhIMzR6XM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/utdhIMzR6XM.mp4/utdhIMzR6XM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/utdhIMzR6XM.mp4/utdhIMzR6XM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/utdhIMzR6XM.m3u8/utdhIMzR6XM.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-4-14/", "duration": 258, "id": "utdhIMzR6XM", "title": "14 Bread combinations", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-14", "kind": "Video", "video_id": "utdhIMzR6XM", "keywords": "", "youtube_id": "utdhIMzR6XM", "readable_id": "sat-2010-may-4-14"}, "wV59XWLmv0c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wV59XWLmv0c.mp4/wV59XWLmv0c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wV59XWLmv0c.mp4/wV59XWLmv0c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wV59XWLmv0c.m3u8/wV59XWLmv0c.m3u8"}, "duration": 413, "id": "wV59XWLmv0c", "title": "Rate of change of distance between approaching cars", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/rates_of_change/rate-of-change-of-distance-between-approaching-cars/", "slug": "rate-of-change-of-distance-between-approaching-cars", "kind": "Video", "video_id": "wV59XWLmv0c", "keywords": "", "youtube_id": "wV59XWLmv0c", "readable_id": "rate-of-change-of-distance-between-approaching-cars"}, "DMDcn2j-8ig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DMDcn2j-8ig.mp4/DMDcn2j-8ig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DMDcn2j-8ig.mp4/DMDcn2j-8ig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DMDcn2j-8ig.m3u8/DMDcn2j-8ig.m3u8"}, "duration": 774, "id": "DMDcn2j-8ig", "title": "Period trend for ionization energy", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/period-trend-for-ionization-energy/", "slug": "period-trend-for-ionization-energy", "kind": "Video", "video_id": "DMDcn2j-8ig", "keywords": "", "youtube_id": "DMDcn2j-8ig", "readable_id": "period-trend-for-ionization-energy"}, "2Pz_p8Tf24g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2Pz_p8Tf24g.mp4/2Pz_p8Tf24g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2Pz_p8Tf24g.mp4/2Pz_p8Tf24g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2Pz_p8Tf24g.m3u8/2Pz_p8Tf24g.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/judaism-art/arch-of-titus-relief/", "duration": 395, "id": "2Pz_p8Tf24g", "title": "Relief from the Arch of Titus, showing The Spoils of Jerusalem being brought into Rome", "format": "mp4", "description": "Relief panel showing The Spoils of Jerusalem being brought into Rome, Arch of Titus, Rome, after 81 C.E., marble, 7 feet,10 inches high. Speakers: Dr. Steven Fine and Dr. Beth Harris", "slug": "arch-of-titus-relief", "kind": "Video", "video_id": "2Pz_p8Tf24g", "keywords": "art history, titus, ancient rome, relief sculpture, ", "youtube_id": "2Pz_p8Tf24g", "readable_id": "arch-of-titus-relief"}, "FOkQszg1-j8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FOkQszg1-j8.mp4/FOkQszg1-j8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FOkQszg1-j8.mp4/FOkQszg1-j8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FOkQszg1-j8.m3u8/FOkQszg1-j8.m3u8"}, "duration": 546, "id": "FOkQszg1-j8", "title": "Acceleration", "format": "mp4", "description": "Calculating the acceleration of a Porsche", "path": "khan/test-prep/mcat/physical-processes/acceleration-mcat/acceleration/", "slug": "acceleration", "kind": "Video", "video_id": "FOkQszg1-j8", "keywords": "physics, kinematics", "youtube_id": "FOkQszg1-j8", "readable_id": "acceleration"}, "7hCsQOKOYS8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7hCsQOKOYS8.mp4/7hCsQOKOYS8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7hCsQOKOYS8.mp4/7hCsQOKOYS8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7hCsQOKOYS8.m3u8/7hCsQOKOYS8.m3u8"}, "duration": 339, "id": "7hCsQOKOYS8", "title": "u-substitution with definite integral", "format": "mp4", "description": "Example of using u-substitution to evaluate a definite integral", "path": "khan/math/integral-calculus/integration-techniques/u_substitution/u-substitution-with-definite-integral/", "slug": "u-substitution-with-definite-integral", "kind": "Video", "video_id": "7hCsQOKOYS8", "keywords": "", "youtube_id": "7hCsQOKOYS8", "readable_id": "u-substitution-with-definite-integral"}, "i9j_VUMq5yg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i9j_VUMq5yg.mp4/i9j_VUMq5yg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i9j_VUMq5yg.mp4/i9j_VUMq5yg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i9j_VUMq5yg.m3u8/i9j_VUMq5yg.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/feel-for-equations-and-inequalit/dependent-and-independent-variables-exercise-example-1/", "duration": 130, "id": "i9j_VUMq5yg", "title": "Dependent and independent variables exercise: the basics", "format": "mp4", "description": "Here we have a problem that asks us to identify which variables are dependent and independent. Hint: independent variables are not influenced and remain unchanged by the other variable.", "slug": "dependent-and-independent-variables-exercise-example-1", "kind": "Video", "video_id": "i9j_VUMq5yg", "keywords": "", "youtube_id": "i9j_VUMq5yg", "readable_id": "dependent-and-independent-variables-exercise-example-1"}, "I9eLKDbc8og": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I9eLKDbc8og.mp4/I9eLKDbc8og.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I9eLKDbc8og.mp4/I9eLKDbc8og.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I9eLKDbc8og.m3u8/I9eLKDbc8og.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/evaluating-expressions-3-exercise/", "duration": 204, "id": "I9eLKDbc8og", "title": "Evaluating an expression in a word problem", "format": "mp4", "description": "In this example of evaluating expressions, we're dusting off some geometry. On top of that, it's a word problem. We're seeing how different concepts in math are layered on top of each to create more interesting and complex problems to solve.", "slug": "evaluating-expressions-3-exercise", "kind": "Video", "video_id": "I9eLKDbc8og", "keywords": "", "youtube_id": "I9eLKDbc8og", "readable_id": "evaluating-expressions-3-exercise"}, "HbZ2asfyHcA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HbZ2asfyHcA.mp4/HbZ2asfyHcA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HbZ2asfyHcA.mp4/HbZ2asfyHcA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HbZ2asfyHcA.m3u8/HbZ2asfyHcA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/sumerian/cuneiform/", "duration": 143, "id": "HbZ2asfyHcA", "title": "Writing Cuneiform", "format": "mp4", "description": "Excerpt from the film The Cyrus Cylinder\n\n\u00a0\n", "slug": "cuneiform", "kind": "Video", "video_id": "HbZ2asfyHcA", "keywords": "", "youtube_id": "HbZ2asfyHcA", "readable_id": "cuneiform"}, "iCYSKCJNbwM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iCYSKCJNbwM.mp4/iCYSKCJNbwM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iCYSKCJNbwM.mp4/iCYSKCJNbwM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iCYSKCJNbwM.m3u8/iCYSKCJNbwM.m3u8"}, "path": "khan/humanities/art-1010/wwi-dada/art-great-war/room-1914-1915/", "duration": 160, "id": "iCYSKCJNbwM", "title": "Room: 1914 & 1915", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Chris Stephens explores the years 1914 & 1915.\n\nLearn more about the art featured in this video:\n-\u00a0Sir Jacob Epstein, Torso in Metal from \u2018The Rock Drill\u2019, 1913\u201314\n- David Bomberg, The Mud Bath, 1914\n-\u00a0Walter Richard Sickert, Brighton Pierrots, 1915", "slug": "room-1914-1915", "kind": "Video", "video_id": "iCYSKCJNbwM", "keywords": "Tate", "youtube_id": "iCYSKCJNbwM", "readable_id": "room-1914-1915"}, "6Ofbt16AJgg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Ofbt16AJgg.mp4/6Ofbt16AJgg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Ofbt16AJgg.mp4/6Ofbt16AJgg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Ofbt16AJgg.m3u8/6Ofbt16AJgg.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/operant-conditioning-schedules-of-reinforcement/", "duration": 469, "id": "6Ofbt16AJgg", "title": "Operant conditioning: Schedules of reinforcement", "format": "mp4", "description": "", "slug": "operant-conditioning-schedules-of-reinforcement", "kind": "Video", "video_id": "6Ofbt16AJgg", "keywords": "", "youtube_id": "6Ofbt16AJgg", "readable_id": "operant-conditioning-schedules-of-reinforcement"}, "8OHEgD6YMBw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8OHEgD6YMBw.mp4/8OHEgD6YMBw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8OHEgD6YMBw.mp4/8OHEgD6YMBw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8OHEgD6YMBw.m3u8/8OHEgD6YMBw.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/linear-exponential-models/", "duration": 208, "id": "8OHEgD6YMBw", "title": "Understanding linear and exponential models", "format": "mp4", "description": "", "slug": "linear-exponential-models", "kind": "Video", "video_id": "8OHEgD6YMBw", "keywords": "", "youtube_id": "8OHEgD6YMBw", "readable_id": "linear-exponential-models"}, "ZSLMm5KNGEc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZSLMm5KNGEc.mp4/ZSLMm5KNGEc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZSLMm5KNGEc.mp4/ZSLMm5KNGEc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZSLMm5KNGEc.m3u8/ZSLMm5KNGEc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/postpartum-hemorrhage/", "duration": 398, "id": "ZSLMm5KNGEc", "title": "Postpartum hemorrhage", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "postpartum-hemorrhage", "kind": "Video", "video_id": "ZSLMm5KNGEc", "keywords": "", "youtube_id": "ZSLMm5KNGEc", "readable_id": "postpartum-hemorrhage"}, "jYOfMszfzAQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jYOfMszfzAQ.mp4/jYOfMszfzAQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jYOfMszfzAQ.mp4/jYOfMszfzAQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jYOfMszfzAQ.m3u8/jYOfMszfzAQ.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/powers-of-1-and-1/", "duration": 368, "id": "jYOfMszfzAQ", "title": "Patterns in raising 1 and -1 to different powers", "format": "mp4", "description": "Use odd and even rules to determine the sign of an exponential expression.", "slug": "powers-of-1-and-1", "kind": "Video", "video_id": "jYOfMszfzAQ", "keywords": "", "youtube_id": "jYOfMszfzAQ", "readable_id": "powers-of-1-and-1"}, "gcJeg4SdIpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gcJeg4SdIpU.mp4/gcJeg4SdIpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gcJeg4SdIpU.mp4/gcJeg4SdIpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gcJeg4SdIpU.m3u8/gcJeg4SdIpU.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/polynomial-approximation-of-functions-part-4/", "duration": 599, "id": "gcJeg4SdIpU", "title": "Polynomial approximation of functions (part 4)", "format": "mp4", "description": "Approximating cos x with a Maclaurin series.", "slug": "polynomial-approximation-of-functions-part-4", "kind": "Video", "video_id": "gcJeg4SdIpU", "keywords": "power, maclaurin, taylor, series, derivative, infinite, sum", "youtube_id": "gcJeg4SdIpU", "readable_id": "polynomial-approximation-of-functions-part-4"}, "G9DDOq7MtLk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G9DDOq7MtLk.mp4/G9DDOq7MtLk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G9DDOq7MtLk.mp4/G9DDOq7MtLk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G9DDOq7MtLk.m3u8/G9DDOq7MtLk.m3u8"}, "path": "khan/partner-content/exploratorium/expl-sound/light-to-sound/light-to-sound-introduction/", "duration": 32, "id": "G9DDOq7MtLk", "title": "Light into sound introduction", "format": "mp4", "description": "Turn sound into light and then back again with a few simple materials.", "slug": "light-to-sound-introduction", "kind": "Video", "video_id": "G9DDOq7MtLk", "keywords": "", "youtube_id": "G9DDOq7MtLk", "readable_id": "light-to-sound-introduction"}, "GacKM9yxiw4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GacKM9yxiw4.mp4/GacKM9yxiw4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GacKM9yxiw4.mp4/GacKM9yxiw4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GacKM9yxiw4.m3u8/GacKM9yxiw4.m3u8"}, "duration": 230, "id": "GacKM9yxiw4", "title": "The Painting Techniques of Barnett Newman", "format": "mp4", "description": "Learn Barnett Newman's techniques and how he reinvented the traditional figure-ground relationship. To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-painting-technique-newman/", "slug": "moma-painting-technique-newman", "kind": "Video", "video_id": "GacKM9yxiw4", "keywords": "", "youtube_id": "GacKM9yxiw4", "readable_id": "moma-painting-technique-newman"}, "UlJmX9SLGRw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UlJmX9SLGRw.mp4/UlJmX9SLGRw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UlJmX9SLGRw.mp4/UlJmX9SLGRw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UlJmX9SLGRw.m3u8/UlJmX9SLGRw.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-properties-ethers/properties-of-ethers-and-crown-ethers/", "duration": 611, "id": "UlJmX9SLGRw", "title": "Properties of ethers and crown ethers", "format": "mp4", "description": "", "slug": "properties-of-ethers-and-crown-ethers", "kind": "Video", "video_id": "UlJmX9SLGRw", "keywords": "", "youtube_id": "UlJmX9SLGRw", "readable_id": "properties-of-ethers-and-crown-ethers"}, "rVI5Sjm0xKI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rVI5Sjm0xKI.mp4/rVI5Sjm0xKI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rVI5Sjm0xKI.mp4/rVI5Sjm0xKI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rVI5Sjm0xKI.m3u8/rVI5Sjm0xKI.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/fragonard-the-swing-1767/", "duration": 201, "id": "rVI5Sjm0xKI", "title": "Fragonard, The Swing", "format": "mp4", "description": "Jean-Honor\u00e9 Fragonard, The Swing, oil on canvas, 1767 (Wallace Collection, London) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "fragonard-the-swing-1767", "kind": "Video", "video_id": "rVI5Sjm0xKI", "keywords": "Fragonard, Swing, art history, history of art, rococo, smarthistory", "youtube_id": "rVI5Sjm0xKI", "readable_id": "fragonard-the-swing-1767"}, "fAUUHCZMJH8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fAUUHCZMJH8.mp4/fAUUHCZMJH8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fAUUHCZMJH8.mp4/fAUUHCZMJH8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fAUUHCZMJH8.m3u8/fAUUHCZMJH8.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/intergenerational-and-intragenerational-mobility-social-mobility/", "duration": 212, "id": "fAUUHCZMJH8", "title": "Intergenerational and intragenerational mobility social mobility", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "intergenerational-and-intragenerational-mobility-social-mobility", "kind": "Video", "video_id": "fAUUHCZMJH8", "keywords": "", "youtube_id": "fAUUHCZMJH8", "readable_id": "intergenerational-and-intragenerational-mobility-social-mobility"}, "dbdVMThH1n8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dbdVMThH1n8.mp4/dbdVMThH1n8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dbdVMThH1n8.mp4/dbdVMThH1n8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dbdVMThH1n8.m3u8/dbdVMThH1n8.m3u8"}, "path": "khan/science/organic-chemistry/carboxylic-acids-derivatives/formation-carboxylic-acid-derivatives-sal/fisher-esterification/", "duration": 1032, "id": "dbdVMThH1n8", "title": "Fischer esterification", "format": "mp4", "description": "Fischer Esterification of Carboxylic Acids", "slug": "fisher-esterification", "kind": "Video", "video_id": "dbdVMThH1n8", "keywords": "Fisher, Esterification, of, Carboxylic, Acid, Ester", "youtube_id": "dbdVMThH1n8", "readable_id": "fisher-esterification"}, "OzLoUCCASwM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OzLoUCCASwM.mp4/OzLoUCCASwM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OzLoUCCASwM.mp4/OzLoUCCASwM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OzLoUCCASwM.m3u8/OzLoUCCASwM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/stomach/", "duration": 358, "id": "OzLoUCCASwM", "title": "Stomach", "format": "mp4", "description": "", "slug": "stomach", "kind": "Video", "video_id": "OzLoUCCASwM", "keywords": "MCAT", "youtube_id": "OzLoUCCASwM", "readable_id": "stomach"}, "K9RPyi0klYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K9RPyi0klYo.mp4/K9RPyi0klYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K9RPyi0klYo.mp4/K9RPyi0klYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K9RPyi0klYo.m3u8/K9RPyi0klYo.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/warby-parker/warby-parker-1/", "duration": 180, "id": "K9RPyi0klYo", "title": "A fix for a broken industry", "format": "mp4", "description": "", "slug": "warby-parker-1", "kind": "Video", "video_id": "K9RPyi0klYo", "keywords": "", "youtube_id": "K9RPyi0klYo", "readable_id": "warby-parker-1"}, "qLMsZKx_a8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qLMsZKx_a8s.mp4/qLMsZKx_a8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qLMsZKx_a8s.mp4/qLMsZKx_a8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qLMsZKx_a8s.m3u8/qLMsZKx_a8s.m3u8"}, "duration": 362, "id": "qLMsZKx_a8s", "title": "What is inside a tap light?", "format": "mp4", "description": "In this video we go inside a tap light to discover what is inside and how it works.", "path": "khan/science/discoveries-projects/reverse-engin/reverse-engineering/what-is-inside-a-tap-light/", "slug": "what-is-inside-a-tap-light", "kind": "Video", "video_id": "qLMsZKx_a8s", "keywords": "Tap light, led", "youtube_id": "qLMsZKx_a8s", "readable_id": "what-is-inside-a-tap-light"}, "5a6zpfl50go": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5a6zpfl50go.mp4/5a6zpfl50go.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5a6zpfl50go.mp4/5a6zpfl50go.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5a6zpfl50go.m3u8/5a6zpfl50go.m3u8"}, "duration": 510, "id": "5a6zpfl50go", "title": "Solving linear systems by graphing", "format": "mp4", "description": "Solving Linear Systems by Graphing", "path": "khan/math/algebra-basics/core-algebra-systems/core-algebra-systems-tutorial/solving-linear-systems-by-graphing/", "slug": "solving-linear-systems-by-graphing", "kind": "Video", "video_id": "5a6zpfl50go", "keywords": "Solving, Linear, Systems, by, Graphing, CC_8_EE_8_a, CC_39336_A-REI_11, CC_39336_A-REI_6", "youtube_id": "5a6zpfl50go", "readable_id": "solving-linear-systems-by-graphing"}, "Kwk62Xw6YHU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kwk62Xw6YHU.mp4/Kwk62Xw6YHU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kwk62Xw6YHU.mp4/Kwk62Xw6YHU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kwk62Xw6YHU.m3u8/Kwk62Xw6YHU.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-12-roller-coaster/", "duration": 83, "id": "Kwk62Xw6YHU", "title": "12 Roller coaster", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-12-roller-coaster", "kind": "Video", "video_id": "Kwk62Xw6YHU", "keywords": "", "youtube_id": "Kwk62Xw6YHU", "readable_id": "sat-12-roller-coaster"}, "EiZJzWPTm0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EiZJzWPTm0I.mp4/EiZJzWPTm0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EiZJzWPTm0I.mp4/EiZJzWPTm0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EiZJzWPTm0I.m3u8/EiZJzWPTm0I.m3u8"}, "duration": 512, "id": "EiZJzWPTm0I", "title": "GMAT: Math 54", "format": "mp4", "description": "248-249, pg. 186", "path": "khan/test-prep/gmat/problem-solving/gmat-math-54/", "slug": "gmat-math-54", "kind": "Video", "video_id": "EiZJzWPTm0I", "keywords": "GMAT, Math, problem, solving", "youtube_id": "EiZJzWPTm0I", "readable_id": "gmat-math-54"}, "e4qci9b2d3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e4qci9b2d3U.mp4/e4qci9b2d3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e4qci9b2d3U.mp4/e4qci9b2d3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e4qci9b2d3U.m3u8/e4qci9b2d3U.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/half-life-of-a-first-order-reaction/", "duration": 496, "id": "e4qci9b2d3U", "title": "Half-life of a first-order reaction", "format": "mp4", "description": "", "slug": "half-life-of-a-first-order-reaction", "kind": "Video", "video_id": "e4qci9b2d3U", "keywords": "", "youtube_id": "e4qci9b2d3U", "readable_id": "half-life-of-a-first-order-reaction"}, "oqI4skjr6lQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oqI4skjr6lQ.mp4/oqI4skjr6lQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oqI4skjr6lQ.mp4/oqI4skjr6lQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oqI4skjr6lQ.m3u8/oqI4skjr6lQ.m3u8"}, "duration": 606, "id": "oqI4skjr6lQ", "title": "Cytotoxic T cells", "format": "mp4", "description": "How cytotoxic T cells get activated by MHC-I/antigen complexes and then proceed to kill infected cells", "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/cytotoxic-t-cells/", "slug": "cytotoxic-t-cells", "kind": "Video", "video_id": "oqI4skjr6lQ", "keywords": "cytotoxic, cell, effor, memory", "youtube_id": "oqI4skjr6lQ", "readable_id": "cytotoxic-t-cells"}, "tUdc4bD2OZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tUdc4bD2OZU.mp4/tUdc4bD2OZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tUdc4bD2OZU.mp4/tUdc4bD2OZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tUdc4bD2OZU.m3u8/tUdc4bD2OZU.m3u8"}, "path": "khan/college-admissions/get-started/importance-of-college/ss-college-increases-confidence/", "duration": 81, "id": "tUdc4bD2OZU", "title": "Student story: College increases confidence", "format": "mp4", "description": "", "slug": "ss-college-increases-confidence", "kind": "Video", "video_id": "tUdc4bD2OZU", "keywords": "", "youtube_id": "tUdc4bD2OZU", "readable_id": "ss-college-increases-confidence"}, "77_wq8yFEf8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/77_wq8yFEf8.mp4/77_wq8yFEf8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/77_wq8yFEf8.mp4/77_wq8yFEf8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/77_wq8yFEf8.m3u8/77_wq8yFEf8.m3u8"}, "duration": 503, "id": "77_wq8yFEf8", "title": "Comparative anatomy: What makes us animals", "format": "mp4", "description": "Hank introduces us to comparative anatomy, which studies the similarities and differences in animal anatomy to support the theory of evolution and the shared ancestry of living things.", "path": "crash-course-biology-120/", "slug": "crash-course-biology-120", "kind": "Video", "video_id": "77_wq8yFEf8", "keywords": "", "youtube_id": "77_wq8yFEf8", "readable_id": "crash-course-biology-120"}, "S5LEdJfCsHM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S5LEdJfCsHM.mp4/S5LEdJfCsHM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S5LEdJfCsHM.mp4/S5LEdJfCsHM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S5LEdJfCsHM.m3u8/S5LEdJfCsHM.m3u8"}, "path": "khan/math/recreational-math/puzzles/brain-teasers/cheryls-birthday/", "duration": 569, "id": "S5LEdJfCsHM", "title": "Cheryl's birthday", "format": "mp4", "description": "Deductive reasoning problem from Singapore.", "slug": "cheryls-birthday", "kind": "Video", "video_id": "S5LEdJfCsHM", "keywords": "", "youtube_id": "S5LEdJfCsHM", "readable_id": "cheryls-birthday"}, "GLgrt_4WnMY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GLgrt_4WnMY.mp4/GLgrt_4WnMY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GLgrt_4WnMY.mp4/GLgrt_4WnMY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GLgrt_4WnMY.m3u8/GLgrt_4WnMY.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-etruria/apollo-of-veil/", "duration": 217, "id": "GLgrt_4WnMY", "title": "Apulu (Apollo of Veil)", "format": "mp4", "description": "Apulu (Apollo of Veil), from the roof of the Portonaccio temple, Italy, c. 510-500 B.C.E., painted terracotta, 5 feet, 11 inches high (Museo Nazionale di Villa Giulia, Rome). \u00a0Speakers: Dr Steven Zucker and Dr. Beth Harris", "slug": "apollo-of-veil", "kind": "Video", "video_id": "GLgrt_4WnMY", "keywords": "", "youtube_id": "GLgrt_4WnMY", "readable_id": "apollo-of-veil"}, "xWvhFIh8AaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xWvhFIh8AaI.mp4/xWvhFIh8AaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xWvhFIh8AaI.mp4/xWvhFIh8AaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xWvhFIh8AaI.m3u8/xWvhFIh8AaI.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/maurice-ravel-daphnis/", "duration": 617, "id": "xWvhFIh8AaI", "title": "Bassoon: Interview and demonstration with principal Nancy Goeres", "format": "mp4", "description": "Watch the full performance here (starting at 29:10)", "slug": "maurice-ravel-daphnis", "kind": "Video", "video_id": "xWvhFIh8AaI", "keywords": "", "youtube_id": "xWvhFIh8AaI", "readable_id": "maurice-ravel-daphnis"}, "Oc8sWN_jNF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oc8sWN_jNF4.mp4/Oc8sWN_jNF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oc8sWN_jNF4.mp4/Oc8sWN_jNF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oc8sWN_jNF4.m3u8/Oc8sWN_jNF4.m3u8"}, "duration": 483, "id": "Oc8sWN_jNF4", "title": "Doodling in math: Dragon scales", "format": "mp4", "description": "", "path": "khan/math/recreational-math/vi-hart/doodling-in-math/dragonscales/", "slug": "dragonscales", "kind": "Video", "video_id": "Oc8sWN_jNF4", "keywords": "", "youtube_id": "Oc8sWN_jNF4", "readable_id": "dragonscales"}, "5j81gyHn9i0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5j81gyHn9i0.mp4/5j81gyHn9i0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5j81gyHn9i0.mp4/5j81gyHn9i0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5j81gyHn9i0.m3u8/5j81gyHn9i0.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/integrate-partial-fraction-expan/integral-partial-fraction/", "duration": 318, "id": "5j81gyHn9i0", "title": "Dividing expressions to evaluate integral", "format": "mp4", "description": "", "slug": "integral-partial-fraction", "kind": "Video", "video_id": "5j81gyHn9i0", "keywords": "", "youtube_id": "5j81gyHn9i0", "readable_id": "integral-partial-fraction"}, "iqRTd1NY-pU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iqRTd1NY-pU.mp4/iqRTd1NY-pU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iqRTd1NY-pU.mp4/iqRTd1NY-pU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iqRTd1NY-pU.m3u8/iqRTd1NY-pU.m3u8"}, "path": "khan/science/health-and-medicine/circulatory-system/circulatory-system-introduction/arteries-arterioles-venules-and-veins/", "duration": 463, "id": "iqRTd1NY-pU", "title": "Arteries, arterioles, venules, and veins", "format": "mp4", "description": "Learn the differences between these blood vessels! Rishi is a pediatric infectious disease physician and works at Khan Academy. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "arteries-arterioles-venules-and-veins", "kind": "Video", "video_id": "iqRTd1NY-pU", "keywords": "", "youtube_id": "iqRTd1NY-pU", "readable_id": "arteries-arterioles-venules-and-veins"}, "LTZKp8nOhVU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LTZKp8nOhVU.mp4/LTZKp8nOhVU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LTZKp8nOhVU.mp4/LTZKp8nOhVU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LTZKp8nOhVU.m3u8/LTZKp8nOhVU.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/what-can-we-learn-from-the-milgram-experiment/", "duration": 261, "id": "LTZKp8nOhVU", "title": "What can we learn from the Milgram experiment", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-can-we-learn-from-the-milgram-experiment", "kind": "Video", "video_id": "LTZKp8nOhVU", "keywords": "", "youtube_id": "LTZKp8nOhVU", "readable_id": "what-can-we-learn-from-the-milgram-experiment"}, "w0nqd_HXHPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w0nqd_HXHPQ.mp4/w0nqd_HXHPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w0nqd_HXHPQ.mp4/w0nqd_HXHPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w0nqd_HXHPQ.m3u8/w0nqd_HXHPQ.m3u8"}, "duration": 557, "id": "w0nqd_HXHPQ", "title": "Unit conversion within the metric system", "format": "mp4", "description": "Metric unit conversion", "path": "khan/math/pre-algebra/rates-and-ratios/metric-system-tutorial/unit-conversion/", "slug": "unit-conversion", "kind": "Video", "video_id": "w0nqd_HXHPQ", "keywords": "Math, units, metric, conversion, CC_5_MD_1", "youtube_id": "w0nqd_HXHPQ", "readable_id": "unit-conversion"}, "ZqzAOZ9pP9Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZqzAOZ9pP9Q.mp4/ZqzAOZ9pP9Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZqzAOZ9pP9Q.mp4/ZqzAOZ9pP9Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZqzAOZ9pP9Q.m3u8/ZqzAOZ9pP9Q.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-measurement/on-volume/solid-geometry-volume/", "duration": 236, "id": "ZqzAOZ9pP9Q", "title": "Find the volume of a triangular prism and cube", "format": "mp4", "description": "In this tutorial we'll practice finding solid geometry volume. Keep paper and pencil nearby in case you want to remember the formulas.", "slug": "solid-geometry-volume", "kind": "Video", "video_id": "ZqzAOZ9pP9Q", "keywords": "volume, geometry, CC_5_MD_3, CC_5_MD_5, CC_5_MD_5_a, CC_5_MD_5_b, CC_7_G_6", "youtube_id": "ZqzAOZ9pP9Q", "readable_id": "solid-geometry-volume"}, "pYaIjA4CsKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pYaIjA4CsKo.mp4/pYaIjA4CsKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pYaIjA4CsKo.mp4/pYaIjA4CsKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pYaIjA4CsKo.m3u8/pYaIjA4CsKo.m3u8"}, "path": "khan/math/pre-algebra/exponents-radicals/orders-of-magnitude/patterns-in-zeros-exercise/", "duration": 416, "id": "pYaIjA4CsKo", "title": "Exponents and powers of zero patterns", "format": "mp4", "description": "Now that we understand how to interpret an exponent and how the patterns in zeros are related to the exponent, we can solve more complicated problems!", "slug": "patterns-in-zeros-exercise", "kind": "Video", "video_id": "pYaIjA4CsKo", "keywords": "", "youtube_id": "pYaIjA4CsKo", "readable_id": "patterns-in-zeros-exercise"}, "abuhkDhowyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/abuhkDhowyc.mp4/abuhkDhowyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/abuhkDhowyc.mp4/abuhkDhowyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/abuhkDhowyc.m3u8/abuhkDhowyc.m3u8"}, "duration": 143, "id": "abuhkDhowyc", "title": "Multiplying and dividing monomials 3", "format": "mp4", "description": "Multiplying and Dividing Monomials 3", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-monomials/multiplying-and-dividing-monomials-3/", "slug": "multiplying-and-dividing-monomials-3", "kind": "Video", "video_id": "abuhkDhowyc", "keywords": "U08_L1_T1_we3, Multiplying, and, Dividing, Monomials, CC_6_EE_1, CC_6_EE_2_c, CC_6_EE_7, CC_7_EE_4, CC_7_EE_4_a", "youtube_id": "abuhkDhowyc", "readable_id": "multiplying-and-dividing-monomials-3"}, "0zCcFSO8ouE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0zCcFSO8ouE.mp4/0zCcFSO8ouE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0zCcFSO8ouE.mp4/0zCcFSO8ouE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0zCcFSO8ouE.m3u8/0zCcFSO8ouE.m3u8"}, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/example-amplitude-and-period-transformations/", "duration": 772, "id": "0zCcFSO8ouE", "title": "Example: Amplitude and period transformations", "format": "mp4", "description": "Understanding how the amplitude and period changes as coefficients change.", "slug": "example-amplitude-and-period-transformations", "kind": "Video", "video_id": "0zCcFSO8ouE", "keywords": "amplitude, period, sin, trig", "youtube_id": "0zCcFSO8ouE", "readable_id": "example-amplitude-and-period-transformations"}, "SX_DzTb95mM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SX_DzTb95mM.mp4/SX_DzTb95mM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SX_DzTb95mM.mp4/SX_DzTb95mM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SX_DzTb95mM.m3u8/SX_DzTb95mM.m3u8"}, "duration": 605, "id": "SX_DzTb95mM", "title": "Marriage penalty", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/marriage-penalty/", "slug": "marriage-penalty", "kind": "Video", "video_id": "SX_DzTb95mM", "keywords": "", "youtube_id": "SX_DzTb95mM", "readable_id": "marriage-penalty"}, "49LcF9Zf9TI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/49LcF9Zf9TI.mp4/49LcF9Zf9TI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/49LcF9Zf9TI.mp4/49LcF9Zf9TI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/49LcF9Zf9TI.m3u8/49LcF9Zf9TI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/zero-order-reaction-with-calculus/", "duration": 593, "id": "49LcF9Zf9TI", "title": "Zero-order reaction (with calculus)", "format": "mp4", "description": "", "slug": "zero-order-reaction-with-calculus", "kind": "Video", "video_id": "49LcF9Zf9TI", "keywords": "", "youtube_id": "49LcF9Zf9TI", "readable_id": "zero-order-reaction-with-calculus"}, "b6WtwQddAcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b6WtwQddAcY.mp4/b6WtwQddAcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b6WtwQddAcY.mp4/b6WtwQddAcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b6WtwQddAcY.m3u8/b6WtwQddAcY.m3u8"}, "duration": 214, "id": "b6WtwQddAcY", "title": "Solving radical equations 2", "format": "mp4", "description": "Solving Radical Equations 2", "path": "khan/math/algebra/exponent-equations/radical_equations/solving-radical-equations-2/", "slug": "solving-radical-equations-2", "kind": "Video", "video_id": "b6WtwQddAcY", "keywords": "U07_L3_T2_we2, Solving, Radical, Equations, CC_39336_A-REI_2", "youtube_id": "b6WtwQddAcY", "readable_id": "solving-radical-equations-2"}, "DMxaK0xjIdE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DMxaK0xjIdE.mp4/DMxaK0xjIdE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DMxaK0xjIdE.mp4/DMxaK0xjIdE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DMxaK0xjIdE.m3u8/DMxaK0xjIdE.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-england/henry-fuseli-titania-and-bottom-c-1790/", "duration": 270, "id": "DMxaK0xjIdE", "title": "Fuseli, Titania and Bottom", "format": "mp4", "description": "Henry Fuseli, Titania and Bottom, c. 1790, oil on canvas, 2172 x 2756 mm (Tate Britain, London)", "slug": "henry-fuseli-titania-and-bottom-c-1790", "kind": "Video", "video_id": "DMxaK0xjIdE", "keywords": "Fuseli, Titania, GAP, Shakespeare, Google Art Project, Faeries, Khan Academy, Art History, smarthistory, romanticism, English, Royal Academy, dream, Midsummer, Night", "youtube_id": "DMxaK0xjIdE", "readable_id": "henry-fuseli-titania-and-bottom-c-1790"}, "XZRQhkii0h0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XZRQhkii0h0.mp4/XZRQhkii0h0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XZRQhkii0h0.mp4/XZRQhkii0h0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XZRQhkii0h0.m3u8/XZRQhkii0h0.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/introduction-to-exponents/", "duration": 183, "id": "XZRQhkii0h0", "title": "Introduction to exponents", "format": "mp4", "description": "Taking an exponent is basically the act of repeated multiplication. You know how to multiply, right? If so, understanding exponents is completely within your grasp!", "slug": "introduction-to-exponents", "kind": "Video", "video_id": "XZRQhkii0h0", "keywords": "", "youtube_id": "XZRQhkii0h0", "readable_id": "introduction-to-exponents"}, "MiyFReTAdCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MiyFReTAdCA.mp4/MiyFReTAdCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MiyFReTAdCA.mp4/MiyFReTAdCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MiyFReTAdCA.m3u8/MiyFReTAdCA.m3u8"}, "duration": 409, "id": "MiyFReTAdCA", "title": "Triangle similarity in pool", "format": "mp4", "description": "", "path": "khan/math/geometry/similarity/cc-solving-prob-similar-tri/triangle-similarity-in-pool/", "slug": "triangle-similarity-in-pool", "kind": "Video", "video_id": "MiyFReTAdCA", "keywords": "", "youtube_id": "MiyFReTAdCA", "readable_id": "triangle-similarity-in-pool"}, "_vBJkK4eocA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_vBJkK4eocA.mp4/_vBJkK4eocA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_vBJkK4eocA.mp4/_vBJkK4eocA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_vBJkK4eocA.m3u8/_vBJkK4eocA.m3u8"}, "duration": 549, "id": "_vBJkK4eocA", "title": "Parts of a nephron", "format": "mp4", "description": "Learn about the 5 major parts of the kidney's nephron. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/rn-blood-pressure-control/parts-of-a-nephron/", "slug": "parts-of-a-nephron", "kind": "Video", "video_id": "_vBJkK4eocA", "keywords": "", "youtube_id": "_vBJkK4eocA", "readable_id": "parts-of-a-nephron"}, "AE1pkp-_cKE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AE1pkp-_cKE.mp4/AE1pkp-_cKE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AE1pkp-_cKE.mp4/AE1pkp-_cKE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AE1pkp-_cKE.m3u8/AE1pkp-_cKE.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkyne-reactions/hydration-of-alkynes/", "duration": 477, "id": "AE1pkp-_cKE", "title": "Hydration of alkynes", "format": "mp4", "description": "", "slug": "hydration-of-alkynes", "kind": "Video", "video_id": "AE1pkp-_cKE", "keywords": "", "youtube_id": "AE1pkp-_cKE", "readable_id": "hydration-of-alkynes"}, "lY15PASM_w8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lY15PASM_w8.mp4/lY15PASM_w8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lY15PASM_w8.mp4/lY15PASM_w8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lY15PASM_w8.m3u8/lY15PASM_w8.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations-alkanes-cycloalkanes/conformations-of-cyclohexane-iii-disubstituted/", "duration": 797, "id": "lY15PASM_w8", "title": "Conformations of cyclohexane III: Disubstituted", "format": "mp4", "description": "", "slug": "conformations-of-cyclohexane-iii-disubstituted", "kind": "Video", "video_id": "lY15PASM_w8", "keywords": "", "youtube_id": "lY15PASM_w8", "readable_id": "conformations-of-cyclohexane-iii-disubstituted"}, "qGbRrM5hWq4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qGbRrM5hWq4.mp4/qGbRrM5hWq4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qGbRrM5hWq4.mp4/qGbRrM5hWq4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qGbRrM5hWq4.m3u8/qGbRrM5hWq4.m3u8"}, "path": "khan/science/discoveries-projects/robots/spider_bot/10-spider-connect-the-power-and-signal-wires-from-the-motor-controller-to-the-arduino/", "duration": 125, "id": "qGbRrM5hWq4", "title": "Motor controller connections", "format": "mp4", "description": "", "slug": "10-spider-connect-the-power-and-signal-wires-from-the-motor-controller-to-the-arduino", "kind": "Video", "video_id": "qGbRrM5hWq4", "keywords": "", "youtube_id": "qGbRrM5hWq4", "readable_id": "10-spider-connect-the-power-and-signal-wires-from-the-motor-controller-to-the-arduino"}, "nZrxs-U9d8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nZrxs-U9d8o.mp4/nZrxs-U9d8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nZrxs-U9d8o.mp4/nZrxs-U9d8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nZrxs-U9d8o.m3u8/nZrxs-U9d8o.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/visual-anti-derivative/", "duration": 267, "id": "nZrxs-U9d8o", "title": "Visually determining antiderivative", "format": "mp4", "description": "", "slug": "visual-anti-derivative", "kind": "Video", "video_id": "nZrxs-U9d8o", "keywords": "", "youtube_id": "nZrxs-U9d8o", "readable_id": "visual-anti-derivative"}, "0lY4PcCYoyE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0lY4PcCYoyE.mp4/0lY4PcCYoyE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0lY4PcCYoyE.mp4/0lY4PcCYoyE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0lY4PcCYoyE.m3u8/0lY4PcCYoyE.m3u8"}, "duration": 188, "id": "0lY4PcCYoyE", "title": "Domain and range 2", "format": "mp4", "description": "Domain and Range 2", "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain-and-range-2/", "slug": "domain-and-range-2", "kind": "Video", "video_id": "0lY4PcCYoyE", "keywords": "U03_L2_T2_we2, Domain, and, Range, CC_8_F_1, CC_39336_F-IF_1", "youtube_id": "0lY4PcCYoyE", "readable_id": "domain-and-range-2"}, "oqAYqT70EBQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oqAYqT70EBQ.mp4/oqAYqT70EBQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oqAYqT70EBQ.mp4/oqAYqT70EBQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oqAYqT70EBQ.m3u8/oqAYqT70EBQ.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/solving-logarithmic-equations_dup_1/", "duration": 208, "id": "oqAYqT70EBQ", "title": "Solving logarithmic equations", "format": "mp4", "description": " Solving Logarithmic Equations", "slug": "solving-logarithmic-equations_dup_1", "kind": "Video", "video_id": "oqAYqT70EBQ", "keywords": "u18_l2_t1_we4, Solving, Logarithmic, Equations", "youtube_id": "oqAYqT70EBQ", "readable_id": "solving-logarithmic-equations_dup_1"}, "n5cKWjZqpIE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n5cKWjZqpIE.mp4/n5cKWjZqpIE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n5cKWjZqpIE.mp4/n5cKWjZqpIE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n5cKWjZqpIE.m3u8/n5cKWjZqpIE.m3u8"}, "path": "khan/math/geometry/geometric-constructions/constructing-tangents/constructing-a-tangent-line-using-compass-and-straightedge/", "duration": 350, "id": "n5cKWjZqpIE", "title": "Constructing a tangent line using compass and straightedge", "format": "mp4", "description": "", "slug": "constructing-a-tangent-line-using-compass-and-straightedge", "kind": "Video", "video_id": "n5cKWjZqpIE", "keywords": "", "youtube_id": "n5cKWjZqpIE", "readable_id": "constructing-a-tangent-line-using-compass-and-straightedge"}, "YJBqGM29_64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YJBqGM29_64.mp4/YJBqGM29_64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YJBqGM29_64.mp4/YJBqGM29_64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YJBqGM29_64.m3u8/YJBqGM29_64.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-2-book-value/", "duration": 652, "id": "YJBqGM29_64", "title": "Bailout 2: Book value", "format": "mp4", "description": "Hypothetical bank balance sheet. What book value means.", "slug": "bailout-2-book-value", "kind": "Video", "video_id": "YJBqGM29_64", "keywords": "bailout, fed, treasury, insolvency, credit, crunch, book, value", "youtube_id": "YJBqGM29_64", "readable_id": "bailout-2-book-value"}, "HL1wuw_k984": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HL1wuw_k984.mp4/HL1wuw_k984.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HL1wuw_k984.mp4/HL1wuw_k984.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HL1wuw_k984.m3u8/HL1wuw_k984.m3u8"}, "duration": 212, "id": "HL1wuw_k984", "title": "Running distance in a week", "format": "mp4", "description": "Solve a two-step word problem by drawing a picture and creating an equation.", "path": "running-distance-in-a-week/", "slug": "running-distance-in-a-week", "kind": "Video", "video_id": "HL1wuw_k984", "keywords": "", "youtube_id": "HL1wuw_k984", "readable_id": "running-distance-in-a-week"}, "-jXFckR2yoY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-jXFckR2yoY.mp4/-jXFckR2yoY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-jXFckR2yoY.mp4/-jXFckR2yoY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-jXFckR2yoY.m3u8/-jXFckR2yoY.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/cubism/moma-picasso-glassguitarbottle/", "duration": 129, "id": "-jXFckR2yoY", "title": "Pablo Picasso, \"Guitar, Glass, and Bottle\"", "format": "mp4", "description": "To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945.", "slug": "moma-picasso-glassguitarbottle", "kind": "Video", "video_id": "-jXFckR2yoY", "keywords": "", "youtube_id": "-jXFckR2yoY", "readable_id": "moma-picasso-glassguitarbottle"}, "Nnqp_3HMlDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nnqp_3HMlDU.mp4/Nnqp_3HMlDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nnqp_3HMlDU.mp4/Nnqp_3HMlDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nnqp_3HMlDU.m3u8/Nnqp_3HMlDU.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/blood-types/", "duration": 533, "id": "Nnqp_3HMlDU", "title": "Blood types", "format": "mp4", "description": "", "slug": "blood-types", "kind": "Video", "video_id": "Nnqp_3HMlDU", "keywords": "", "youtube_id": "Nnqp_3HMlDU", "readable_id": "blood-types"}, "-kKCjwNvNkQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-kKCjwNvNkQ.mp4/-kKCjwNvNkQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-kKCjwNvNkQ.mp4/-kKCjwNvNkQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-kKCjwNvNkQ.m3u8/-kKCjwNvNkQ.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/beginning-of-world-war-ii/", "duration": 475, "id": "-kKCjwNvNkQ", "title": "Beginning of World War II", "format": "mp4", "description": "An overview of the run up to and very beginnings of World War II.", "slug": "beginning-of-world-war-ii", "kind": "Video", "video_id": "-kKCjwNvNkQ", "keywords": "", "youtube_id": "-kKCjwNvNkQ", "readable_id": "beginning-of-world-war-ii"}, "d7b38SLI6nc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d7b38SLI6nc.mp4/d7b38SLI6nc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d7b38SLI6nc.mp4/d7b38SLI6nc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d7b38SLI6nc.m3u8/d7b38SLI6nc.m3u8"}, "path": "khan/humanities/art-americas/new-topic-2015-04-22t180902849z/amazonian-people/munduruku-headdress-a-glimpse-of-life-in-the-amazon-rainforest/", "duration": 318, "id": "d7b38SLI6nc", "title": "Munduruku\u0301 Headdress: a glimpse of life in the Amazon rainforest", "format": "mp4", "description": "A conversation between Dr. Jago Cooper (Curator, Head of the Americas, The British Museum) and Dr. Steven Zucker in front of: Headdress (coifa), before 1869, Arara, Mutum and Macaw(?) feathers, cord, 40 x 24 cm, Munduruk\u00fa people, Para, Brazil (The British Museum)\nSpecial thanks to Dr. Jago Cooper, Kate Jarvis, Matthew Cock, and The British Museum\n", "slug": "munduruku-headdress-a-glimpse-of-life-in-the-amazon-rainforest", "kind": "Video", "video_id": "d7b38SLI6nc", "keywords": "", "youtube_id": "d7b38SLI6nc", "readable_id": "munduruku-headdress-a-glimpse-of-life-in-the-amazon-rainforest"}, "Dpo_-GrMpNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dpo_-GrMpNE.mp4/Dpo_-GrMpNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dpo_-GrMpNE.mp4/Dpo_-GrMpNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dpo_-GrMpNE.m3u8/Dpo_-GrMpNE.m3u8"}, "duration": 217, "id": "Dpo_-GrMpNE", "title": "Natural logarithm with a calculator", "format": "mp4", "description": "Natural Logarithm with a Calculator", "path": "khan/math/algebra2/logarithms-tutorial/natural_logarithm/natural-logarithm-with-a-calculator/", "slug": "natural-logarithm-with-a-calculator", "kind": "Video", "video_id": "Dpo_-GrMpNE", "keywords": "u18_l3_t1_we1, Natural, Logarithm, with, Calculator", "youtube_id": "Dpo_-GrMpNE", "readable_id": "natural-logarithm-with-a-calculator"}, "vSsK7Rfa3yA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vSsK7Rfa3yA.mp4/vSsK7Rfa3yA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vSsK7Rfa3yA.mp4/vSsK7Rfa3yA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vSsK7Rfa3yA.m3u8/vSsK7Rfa3yA.m3u8"}, "path": "khan/science/physics/work-and-energy/mechanical-advantage/mechanical-advantage-part-3/", "duration": 634, "id": "vSsK7Rfa3yA", "title": "Mechanical advantage (part 3)", "format": "mp4", "description": "Introduction to pulleys and wedges", "slug": "mechanical-advantage-part-3", "kind": "Video", "video_id": "vSsK7Rfa3yA", "keywords": "physics, wedge, pulley, mechanical, advantage, work, energy", "youtube_id": "vSsK7Rfa3yA", "readable_id": "mechanical-advantage-part-3"}, "zg3-miF4qeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zg3-miF4qeg.mp4/zg3-miF4qeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zg3-miF4qeg.mp4/zg3-miF4qeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zg3-miF4qeg.m3u8/zg3-miF4qeg.m3u8"}, "duration": 311, "id": "zg3-miF4qeg", "title": "Part 2 of shell method with 2 functions of y", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/part-2-of-shell-method-with-2-functions-of-y/", "slug": "part-2-of-shell-method-with-2-functions-of-y", "kind": "Video", "video_id": "zg3-miF4qeg", "keywords": "", "youtube_id": "zg3-miF4qeg", "readable_id": "part-2-of-shell-method-with-2-functions-of-y"}, "lvAYFUIEpFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lvAYFUIEpFI.mp4/lvAYFUIEpFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lvAYFUIEpFI.mp4/lvAYFUIEpFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lvAYFUIEpFI.m3u8/lvAYFUIEpFI.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/orbital-mechanics/conic-sections-intro-to-ellipses/", "duration": 854, "id": "lvAYFUIEpFI", "title": "Conic sections: Intro to ellipses", "format": "mp4", "description": "Introduction to the ellipse.", "slug": "conic-sections-intro-to-ellipses", "kind": "Video", "video_id": "lvAYFUIEpFI", "keywords": "ellipse, conic, section", "youtube_id": "lvAYFUIEpFI", "readable_id": "conic-sections-intro-to-ellipses"}, "CLQRZ2UbQ4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CLQRZ2UbQ4Q.mp4/CLQRZ2UbQ4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CLQRZ2UbQ4Q.mp4/CLQRZ2UbQ4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CLQRZ2UbQ4Q.m3u8/CLQRZ2UbQ4Q.m3u8"}, "duration": 180, "id": "CLQRZ2UbQ4Q", "title": "Evaluating expressions with unknown variables 2", "format": "mp4", "description": "A few more examples where we are asked to evaluate an expression with multiple uknown variables", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/exp_unknown_vars/evaluating-expressions-with-unknown-variables-2/", "slug": "evaluating-expressions-with-unknown-variables-2", "kind": "Video", "video_id": "CLQRZ2UbQ4Q", "keywords": "", "youtube_id": "CLQRZ2UbQ4Q", "readable_id": "evaluating-expressions-with-unknown-variables-2"}, "P2IWGlR1SHs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P2IWGlR1SHs.mp4/P2IWGlR1SHs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P2IWGlR1SHs.mp4/P2IWGlR1SHs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P2IWGlR1SHs.m3u8/P2IWGlR1SHs.m3u8"}, "duration": 469, "id": "P2IWGlR1SHs", "title": "Speculative attack on a currency", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/currency-reserves/speculative-attack-on-a-currency/", "slug": "speculative-attack-on-a-currency", "kind": "Video", "video_id": "P2IWGlR1SHs", "keywords": "Speculative, Attack, on, a, Currency", "youtube_id": "P2IWGlR1SHs", "readable_id": "speculative-attack-on-a-currency"}, "_DEScXFyI8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_DEScXFyI8s.mp4/_DEScXFyI8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_DEScXFyI8s.mp4/_DEScXFyI8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_DEScXFyI8s.m3u8/_DEScXFyI8s.m3u8"}, "duration": 441, "id": "_DEScXFyI8s", "title": "Calculating retention factors for TLC", "format": "mp4", "description": "Learn how to calculate retention factors (Rf) for thin layer chromatography (TLC). By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/calculating-retention-factors-for-tlc/", "slug": "calculating-retention-factors-for-tlc", "kind": "Video", "video_id": "_DEScXFyI8s", "keywords": "retention factors, TLC, chromatography", "youtube_id": "_DEScXFyI8s", "readable_id": "calculating-retention-factors-for-tlc"}, "oAOq55MPJpM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oAOq55MPJpM.mp4/oAOq55MPJpM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oAOq55MPJpM.mp4/oAOq55MPJpM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oAOq55MPJpM.m3u8/oAOq55MPJpM.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/standard-reduction-potentials/", "duration": 550, "id": "oAOq55MPJpM", "title": "Standard reduction potentials", "format": "mp4", "description": "", "slug": "standard-reduction-potentials", "kind": "Video", "video_id": "oAOq55MPJpM", "keywords": "", "youtube_id": "oAOq55MPJpM", "readable_id": "standard-reduction-potentials"}, "lBqShvm4QRA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lBqShvm4QRA.mp4/lBqShvm4QRA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lBqShvm4QRA.mp4/lBqShvm4QRA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lBqShvm4QRA.m3u8/lBqShvm4QRA.m3u8"}, "duration": 371, "id": "lBqShvm4QRA", "title": "Language and the brain: Aphasia and split-brain patients", "format": "mp4", "description": "Learn about language areas of the brain and the effects of damage to those parts of the brain. By Carole Yue. ", "path": "khan/test-prep/mcat/processing-the-environment/language/language-and-the-brain/", "slug": "language-and-the-brain", "kind": "Video", "video_id": "lBqShvm4QRA", "keywords": "language, brain, aphasia, split-brain", "youtube_id": "lBqShvm4QRA", "readable_id": "language-and-the-brain"}, "0w96SqrvVjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0w96SqrvVjw.mp4/0w96SqrvVjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0w96SqrvVjw.mp4/0w96SqrvVjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0w96SqrvVjw.m3u8/0w96SqrvVjw.m3u8"}, "duration": 587, "id": "0w96SqrvVjw", "title": "Biological redox reactions of alcohols and phenols", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/biologic-redox-reactions-of-alcohols-and-phenols/", "slug": "biologic-redox-reactions-of-alcohols-and-phenols", "kind": "Video", "video_id": "0w96SqrvVjw", "keywords": "", "youtube_id": "0w96SqrvVjw", "readable_id": "biologic-redox-reactions-of-alcohols-and-phenols"}, "1qifvZnpKjU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1qifvZnpKjU.mp4/1qifvZnpKjU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1qifvZnpKjU.mp4/1qifvZnpKjU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1qifvZnpKjU.m3u8/1qifvZnpKjU.m3u8"}, "path": "khan/science/health-and-medicine/circulatory-system-diseases/blood-vessel-diseases/atherosclerosis-part-1/", "duration": 774, "id": "1qifvZnpKjU", "title": "Atherosclerosis - part 1", "format": "mp4", "description": "See how Atherosclerosis (Fat in the blood vessel wall) hardens the arterial wall and makes it harder for blood to flow through. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "atherosclerosis-part-1", "kind": "Video", "video_id": "1qifvZnpKjU", "keywords": "", "youtube_id": "1qifvZnpKjU", "readable_id": "atherosclerosis-part-1"}, "5-McqAO8_Qw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5-McqAO8_Qw.mp4/5-McqAO8_Qw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5-McqAO8_Qw.mp4/5-McqAO8_Qw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5-McqAO8_Qw.m3u8/5-McqAO8_Qw.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/taste-gustation-and-smell-olfaction/olfaction-structure-and-function/", "duration": 766, "id": "5-McqAO8_Qw", "title": "Olfaction - structure and function", "format": "mp4", "description": "", "slug": "olfaction-structure-and-function", "kind": "Video", "video_id": "5-McqAO8_Qw", "keywords": "", "youtube_id": "5-McqAO8_Qw", "readable_id": "olfaction-structure-and-function"}, "NqasGo5q5yQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NqasGo5q5yQ.mp4/NqasGo5q5yQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NqasGo5q5yQ.mp4/NqasGo5q5yQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NqasGo5q5yQ.m3u8/NqasGo5q5yQ.m3u8"}, "duration": 314, "id": "NqasGo5q5yQ", "title": "Muscle innervation", "format": "mp4", "description": "Which muscles do we voluntarily control? Which muscles do we have NO control over? What's the difference between sympathetic and parasympathetic innervation? Learn about how our brain splits its control over the body into autonomic and somatic nervous systems.\u00a0 By Raja Narayan.", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/muscle-innervation/", "slug": "muscle-innervation", "kind": "Video", "video_id": "NqasGo5q5yQ", "keywords": "muscle, innervation", "youtube_id": "NqasGo5q5yQ", "readable_id": "muscle-innervation"}, "H-HfmyUzPw8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H-HfmyUzPw8.mp4/H-HfmyUzPw8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H-HfmyUzPw8.mp4/H-HfmyUzPw8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H-HfmyUzPw8.m3u8/H-HfmyUzPw8.m3u8"}, "duration": 341, "id": "H-HfmyUzPw8", "title": "Solving the troll riddle visually", "format": "mp4", "description": "Solving the system of equations visually. Now we can save the prince/princess", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/solving-the-troll-riddle-visually/", "slug": "solving-the-troll-riddle-visually", "kind": "Video", "video_id": "H-HfmyUzPw8", "keywords": "simultaneous", "youtube_id": "H-HfmyUzPw8", "readable_id": "solving-the-troll-riddle-visually"}, "ut1zmfolM9E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ut1zmfolM9E.mp4/ut1zmfolM9E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ut1zmfolM9E.mp4/ut1zmfolM9E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ut1zmfolM9E.m3u8/ut1zmfolM9E.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/operant-conditioning-positive-and-negative-reinforcement-and-punishment/", "duration": 420, "id": "ut1zmfolM9E", "title": "Operant conditioning: Positive-and-negative reinforcement and punishment", "format": "mp4", "description": "", "slug": "operant-conditioning-positive-and-negative-reinforcement-and-punishment", "kind": "Video", "video_id": "ut1zmfolM9E", "keywords": "", "youtube_id": "ut1zmfolM9E", "readable_id": "operant-conditioning-positive-and-negative-reinforcement-and-punishment"}, "s4JBqLoY3tY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s4JBqLoY3tY.mp4/s4JBqLoY3tY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s4JBqLoY3tY.mp4/s4JBqLoY3tY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s4JBqLoY3tY.m3u8/s4JBqLoY3tY.m3u8"}, "duration": 402, "id": "s4JBqLoY3tY", "title": "Divided attention, selective attention, inattentional blindness, & change blindness", "format": "mp4", "description": "Learn about divided attention, selective attention, inattentional blindness, & change blindness. By Carole Yue. ", "path": "khan/test-prep/mcat/processing-the-environment/attention-language/divided-selective-attention-inattentional-change-blindness/", "slug": "divided-selective-attention-inattentional-change-blindness", "kind": "Video", "video_id": "s4JBqLoY3tY", "keywords": "attention, selective attention, blindness", "youtube_id": "s4JBqLoY3tY", "readable_id": "divided-selective-attention-inattentional-change-blindness"}, "iIBQm3me8cs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iIBQm3me8cs.mp4/iIBQm3me8cs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iIBQm3me8cs.mp4/iIBQm3me8cs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iIBQm3me8cs.m3u8/iIBQm3me8cs.m3u8"}, "duration": 390, "id": "iIBQm3me8cs", "title": "Calculating state taxes and take home pay", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/calculating-state-taxes-and-take-home-pay/", "slug": "calculating-state-taxes-and-take-home-pay", "kind": "Video", "video_id": "iIBQm3me8cs", "keywords": "", "youtube_id": "iIBQm3me8cs", "readable_id": "calculating-state-taxes-and-take-home-pay"}, "bxGnbVOtRYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bxGnbVOtRYo.mp4/bxGnbVOtRYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bxGnbVOtRYo.mp4/bxGnbVOtRYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bxGnbVOtRYo.m3u8/bxGnbVOtRYo.m3u8"}, "duration": 393, "id": "bxGnbVOtRYo", "title": "Type III regions in three dimensions", "format": "mp4", "description": "Definition and intuition for type 3 regions", "path": "khan/math/multivariable-calculus/divergence_theorem_topic/region_types_3d/type-iii-regions-in-three-dimensions/", "slug": "type-iii-regions-in-three-dimensions", "kind": "Video", "video_id": "bxGnbVOtRYo", "keywords": "", "youtube_id": "bxGnbVOtRYo", "readable_id": "type-iii-regions-in-three-dimensions"}, "IXycPq7MnwE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IXycPq7MnwE.mp4/IXycPq7MnwE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IXycPq7MnwE.mp4/IXycPq7MnwE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IXycPq7MnwE.m3u8/IXycPq7MnwE.m3u8"}, "path": "khan/computing/computer-programming/sql/sql-basics/welcome-to-sql/", "duration": 125, "id": "IXycPq7MnwE", "title": "Welcome to SQL", "format": "mp4", "description": "", "slug": "welcome-to-sql", "kind": "Video", "video_id": "IXycPq7MnwE", "keywords": "", "youtube_id": "IXycPq7MnwE", "readable_id": "welcome-to-sql"}, "3uO_uPb9H8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3uO_uPb9H8w.mp4/3uO_uPb9H8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3uO_uPb9H8w.mp4/3uO_uPb9H8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3uO_uPb9H8w.m3u8/3uO_uPb9H8w.m3u8"}, "duration": 550, "id": "3uO_uPb9H8w", "title": "2nd order linear homogeneous differential equations 4", "format": "mp4", "description": "Another example with initial conditions!", "path": "khan/math/differential-equations/second-order-differential-equations/linear-homogeneous-2nd-order/2nd-order-linear-homogeneous-differential-equations-4/", "slug": "2nd-order-linear-homogeneous-differential-equations-4", "kind": "Video", "video_id": "3uO_uPb9H8w", "keywords": "2nd, Order, Linear, Homogeneous, Differential, Equations", "youtube_id": "3uO_uPb9H8w", "readable_id": "2nd-order-linear-homogeneous-differential-equations-4"}, "AznXSVx2xX0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AznXSVx2xX0.mp4/AznXSVx2xX0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AznXSVx2xX0.mp4/AznXSVx2xX0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AznXSVx2xX0.m3u8/AznXSVx2xX0.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/absorption-and-emission/", "duration": 630, "id": "AznXSVx2xX0", "title": "Absorption and emission", "format": "mp4", "description": "", "slug": "absorption-and-emission", "kind": "Video", "video_id": "AznXSVx2xX0", "keywords": "", "youtube_id": "AznXSVx2xX0", "readable_id": "absorption-and-emission"}, "gSEYtAjuZ-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gSEYtAjuZ-Y.mp4/gSEYtAjuZ-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gSEYtAjuZ-Y.mp4/gSEYtAjuZ-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gSEYtAjuZ-Y.m3u8/gSEYtAjuZ-Y.m3u8"}, "duration": 442, "id": "gSEYtAjuZ-Y", "title": "Histograms", "format": "mp4", "description": "Learn how to create histograms, which summarize data by sorting it into buckets.", "path": "histograms-intro/", "slug": "histograms-intro", "kind": "Video", "video_id": "gSEYtAjuZ-Y", "keywords": "", "youtube_id": "gSEYtAjuZ-Y", "readable_id": "histograms-intro"}, "jb8mFpA1YI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jb8mFpA1YI8.mp4/jb8mFpA1YI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jb8mFpA1YI8.mp4/jb8mFpA1YI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jb8mFpA1YI8.m3u8/jb8mFpA1YI8.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/multiplying-by-multiples-of-10/", "duration": 185, "id": "jb8mFpA1YI8", "title": "Multiplying by multiples of 10", "format": "mp4", "description": "Decompose multiples of ten to multiply.", "slug": "multiplying-by-multiples-of-10", "kind": "Video", "video_id": "jb8mFpA1YI8", "keywords": "", "youtube_id": "jb8mFpA1YI8", "readable_id": "multiplying-by-multiples-of-10"}, "RlLrvnnTDDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RlLrvnnTDDU.mp4/RlLrvnnTDDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RlLrvnnTDDU.mp4/RlLrvnnTDDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RlLrvnnTDDU.m3u8/RlLrvnnTDDU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/pathophysiology-type-ii-diabetes/", "duration": 464, "id": "RlLrvnnTDDU", "title": "Pathophysiology - Type II diabetes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "pathophysiology-type-ii-diabetes", "kind": "Video", "video_id": "RlLrvnnTDDU", "keywords": "", "youtube_id": "RlLrvnnTDDU", "readable_id": "pathophysiology-type-ii-diabetes"}, "wHuY97vss18": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wHuY97vss18.mp4/wHuY97vss18.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wHuY97vss18.mp4/wHuY97vss18.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wHuY97vss18.m3u8/wHuY97vss18.m3u8"}, "duration": 909, "id": "wHuY97vss18", "title": "Sums and scalar multiples of linear transformations", "format": "mp4", "description": "Sums and Scalar Multiples of Linear Transformations. Definitions of matrix addition and scalar multiplication.", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/sums-and-scalar-multiples-of-linear-transformations/", "slug": "sums-and-scalar-multiples-of-linear-transformations", "kind": "Video", "video_id": "wHuY97vss18", "keywords": "linear, transformation, algebra, matrix", "youtube_id": "wHuY97vss18", "readable_id": "sums-and-scalar-multiples-of-linear-transformations"}, "uLjvEsHi_qU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uLjvEsHi_qU.mp4/uLjvEsHi_qU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uLjvEsHi_qU.mp4/uLjvEsHi_qU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uLjvEsHi_qU.m3u8/uLjvEsHi_qU.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/egypt-art/new-kingdom/precaution/", "duration": 160, "id": "uLjvEsHi_qU", "title": "\"Precaution\" with Isabel St\u00fcnkel", "format": "mp4", "description": "Met curator Isabel St\u00fcnkel on precaution in Hippopotamus dating from Egypt\u2019s Middle Kingdom.\n\nThis well-formed statuette of a hippopotamus (popularly called \"William\") demonstrates the Egyptian artist's appreciation for the natural world. It was molded in faience, a ceramic material made of ground quartz. Beneath the blue-green glaze, the body was painted with the outlines of river plants, symbolizing the marshes in which the animal lived.\n\nThe seemingly benign appearance that this figurine presents is deceptive. To the ancient Egyptians, the hippopotamus was one of the most dangerous animals in their world. The huge creatures were a hazard for small fishing boats and other rivercraft. The beast might also be encountered on the waterways in the journey to the afterlife. As such, the hippopotamus was a force of nature that needed to be propitiated and controlled, both in this life and the next. This example was one of a pair found in a shaft associated with the tomb chapel of the steward Senbi II at Meir, an Upper Egyptian site about thirty miles south of modern Asyut. Three of its legs have been restored because they were purposely broken to prevent the creature from harming the deceased. The hippo was part of Senbi's burial equipment, which included a canopic box (also in the Metropolitan Museum), a coffin, and numerous models of boats and food production.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "slug": "precaution", "kind": "Video", "video_id": "uLjvEsHi_qU", "keywords": "ceramic, danger, death, nature, sculpture, Africa", "youtube_id": "uLjvEsHi_qU", "readable_id": "precaution"}, "UXOcWAfBdZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UXOcWAfBdZg.mp4/UXOcWAfBdZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UXOcWAfBdZg.mp4/UXOcWAfBdZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UXOcWAfBdZg.m3u8/UXOcWAfBdZg.m3u8"}, "path": "khan/science/chemistry/periodic-table/copy-of-periodic-table-of-elements/periodic-table-groups/", "duration": 500, "id": "UXOcWAfBdZg", "title": "Groups of the periodic table", "format": "mp4", "description": "", "slug": "periodic-table-groups", "kind": "Video", "video_id": "UXOcWAfBdZg", "keywords": "", "youtube_id": "UXOcWAfBdZg", "readable_id": "periodic-table-groups"}, "fuSOY9r1R6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fuSOY9r1R6w.mp4/fuSOY9r1R6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fuSOY9r1R6w.mp4/fuSOY9r1R6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fuSOY9r1R6w.m3u8/fuSOY9r1R6w.m3u8"}, "duration": 951, "id": "fuSOY9r1R6w", "title": "Vector field line integrals dependent on path direction", "format": "mp4", "description": "Showing that, unlike line integrals of scalar fields, line integrals over vector fields are path direction dependent", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/vector-field-line-integrals-dependent-on-path-direction/", "slug": "vector-field-line-integrals-dependent-on-path-direction", "kind": "Video", "video_id": "fuSOY9r1R6w", "keywords": "line, vector, integral, field, direction, curve", "youtube_id": "fuSOY9r1R6w", "readable_id": "vector-field-line-integrals-dependent-on-path-direction"}, "H5eIE7zdnvI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H5eIE7zdnvI.mp4/H5eIE7zdnvI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H5eIE7zdnvI.mp4/H5eIE7zdnvI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H5eIE7zdnvI.m3u8/H5eIE7zdnvI.m3u8"}, "duration": 365, "id": "H5eIE7zdnvI", "title": "Tangent slope as limiting value of secant slope example 2", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/tangent-slope-as-limiting-value-of-secant-slope-example-2/", "slug": "tangent-slope-as-limiting-value-of-secant-slope-example-2", "kind": "Video", "video_id": "H5eIE7zdnvI", "keywords": "", "youtube_id": "H5eIE7zdnvI", "readable_id": "tangent-slope-as-limiting-value-of-secant-slope-example-2"}, "3Xcae0OGavk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Xcae0OGavk.mp4/3Xcae0OGavk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Xcae0OGavk.mp4/3Xcae0OGavk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Xcae0OGavk.m3u8/3Xcae0OGavk.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/whole-number-representations-tut/comparing-whole-number-place-values/", "duration": 91, "id": "3Xcae0OGavk", "title": "Comparing whole number place values", "format": "mp4", "description": "Which number is bigger? Which number is smaller? Are they equal? Use your knowledge of place value to find the answer.", "slug": "comparing-whole-number-place-values", "kind": "Video", "video_id": "3Xcae0OGavk", "keywords": "", "youtube_id": "3Xcae0OGavk", "readable_id": "comparing-whole-number-place-values"}, "mDmRYfma9C0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mDmRYfma9C0.mp4/mDmRYfma9C0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mDmRYfma9C0.mp4/mDmRYfma9C0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mDmRYfma9C0.m3u8/mDmRYfma9C0.m3u8"}, "path": "khan/math/algebra/quadratics/quadratic_odds_ends/quadratic-formula-proof/", "duration": 454, "id": "mDmRYfma9C0", "title": "Quadratic formula (proof)", "format": "mp4", "description": "Deriving the quadratic formula by completing the square.", "slug": "quadratic-formula-proof", "kind": "Video", "video_id": "mDmRYfma9C0", "keywords": "quadratic, formula, algebra, completing, square, CC_39336_A-REI_4_a", "youtube_id": "mDmRYfma9C0", "readable_id": "quadratic-formula-proof"}, "BngBBmwZY1s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BngBBmwZY1s.mp4/BngBBmwZY1s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BngBBmwZY1s.mp4/BngBBmwZY1s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BngBBmwZY1s.m3u8/BngBBmwZY1s.m3u8"}, "duration": 146, "id": "BngBBmwZY1s", "title": "\"Awkward\" with Cora Michael", "format": "mp4", "description": "Met curator Cora Michael on awkwardness in Edgar Degas\u2019s Little Girl Practicing at the Bar.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "path": "awkward/", "slug": "awkward", "kind": "Video", "video_id": "BngBBmwZY1s", "keywords": "body, calm, control, drawing, paper, Europe", "youtube_id": "BngBBmwZY1s", "readable_id": "awkward"}, "ybOKAzIVp70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ybOKAzIVp70.mp4/ybOKAzIVp70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ybOKAzIVp70.mp4/ybOKAzIVp70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ybOKAzIVp70.m3u8/ybOKAzIVp70.m3u8"}, "duration": 610, "id": "ybOKAzIVp70", "title": "The Spanish Empire, silver, & runaway inflation", "format": "mp4", "description": "In which John Green explores how Spain went from being a middling European power to one of the most powerful empires on Earth, thanks to their plunder of the New World in the 16th and 17th centuries. Learn how Spain managed to destroy the two biggest pre-Columbian civilizations, mine a mountain made of silver, mishandle their economy, and lose it all by the mid-1700s. Come along for the roller coaster ride with Charles I (he was also Charles V), Philip II, Atahualpa, Moctezuma, Hern\u00e1n Cort\u00e9s, and Francisco Pizarro as Spain rises and falls, and takes two empires and China down with them.", "path": "khan/humanities/history/crashcourse-worldhistory/when-people-do-great-and-really-terrible-things-2/crash-course-world-history-25/", "slug": "crash-course-world-history-25", "kind": "Video", "video_id": "ybOKAzIVp70", "keywords": "crash course", "youtube_id": "ybOKAzIVp70", "readable_id": "crash-course-world-history-25"}, "qFFhdLlX220": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qFFhdLlX220.mp4/qFFhdLlX220.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qFFhdLlX220.mp4/qFFhdLlX220.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qFFhdLlX220.m3u8/qFFhdLlX220.m3u8"}, "duration": 256, "id": "qFFhdLlX220", "title": "Simplifying square roots comment response", "format": "mp4", "description": "Thinking about the domain of the expression to determine if we need the absolute value sign", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/simplifying-square-roots-comment-response/", "slug": "simplifying-square-roots-comment-response", "kind": "Video", "video_id": "qFFhdLlX220", "keywords": "algebra, worked, examples", "youtube_id": "qFFhdLlX220", "readable_id": "simplifying-square-roots-comment-response"}, "Nk4DmlnoLxw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nk4DmlnoLxw.mp4/Nk4DmlnoLxw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nk4DmlnoLxw.mp4/Nk4DmlnoLxw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nk4DmlnoLxw.m3u8/Nk4DmlnoLxw.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/fernand-khnopff-i-lock-my-door-upon-myself-1891/", "duration": 313, "id": "Nk4DmlnoLxw", "title": "Khnopff, I Lock My Door Upon Myself", "format": "mp4", "description": "Fernand Khnopff, I Lock My Door Upon Myself, 1891 (Neue Pinakothek, Munich) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "fernand-khnopff-i-lock-my-door-upon-myself-1891", "kind": "Video", "video_id": "Nk4DmlnoLxw", "keywords": "", "youtube_id": "Nk4DmlnoLxw", "readable_id": "fernand-khnopff-i-lock-my-door-upon-myself-1891"}, "N3jnRuzseoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N3jnRuzseoM.mp4/N3jnRuzseoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N3jnRuzseoM.mp4/N3jnRuzseoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N3jnRuzseoM.m3u8/N3jnRuzseoM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/diabetes-in-pregnancy/", "duration": 492, "id": "N3jnRuzseoM", "title": "Diabetes in pregnancy", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diabetes-in-pregnancy", "kind": "Video", "video_id": "N3jnRuzseoM", "keywords": "", "youtube_id": "N3jnRuzseoM", "readable_id": "diabetes-in-pregnancy"}, "bBQVaRnHqLs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bBQVaRnHqLs.mp4/bBQVaRnHqLs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bBQVaRnHqLs.mp4/bBQVaRnHqLs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bBQVaRnHqLs.m3u8/bBQVaRnHqLs.m3u8"}, "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/average-costs-tutorial/fixed-variable-and-marginal-cost/", "duration": 709, "id": "bBQVaRnHqLs", "title": "Fixed, variable, and marginal cost", "format": "mp4", "description": "Thinking about average fixed, variable and marginal cost", "slug": "fixed-variable-and-marginal-cost", "kind": "Video", "video_id": "bBQVaRnHqLs", "keywords": "microeconomics", "youtube_id": "bBQVaRnHqLs", "readable_id": "fixed-variable-and-marginal-cost"}, "0C2Ucb69eOM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0C2Ucb69eOM.mp4/0C2Ucb69eOM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0C2Ucb69eOM.mp4/0C2Ucb69eOM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0C2Ucb69eOM.m3u8/0C2Ucb69eOM.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/england-constable-turner/room-turner/", "duration": 226, "id": "0C2Ucb69eOM", "title": "Room: JMW Turner", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator David Brown explores the work of JMW Turner. Check out\u00a0Turner Online for an in-depth look at the artist's life and work.\n\nLearn more about the art featured in this video:\n- JMW Turner, The Shipwreck, exhibited 1805\n- JMW Turner,\u00a0Ancient Rome; Agrippina Landing with the Ashes of Germanicus, exhibited 1839", "slug": "room-turner", "kind": "Video", "video_id": "0C2Ucb69eOM", "keywords": "Tate, Turner, ", "youtube_id": "0C2Ucb69eOM", "readable_id": "room-turner"}, "rhuYuerbhIE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rhuYuerbhIE.mp4/rhuYuerbhIE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rhuYuerbhIE.mp4/rhuYuerbhIE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rhuYuerbhIE.m3u8/rhuYuerbhIE.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/oxidation-reduction-review/oxidation-states-of-carbon/", "duration": 671, "id": "rhuYuerbhIE", "title": "Oxidation states of carbon", "format": "mp4", "description": "How to assign oxidation states to carbon in different compounds", "slug": "oxidation-states-of-carbon", "kind": "Video", "video_id": "rhuYuerbhIE", "keywords": "", "youtube_id": "rhuYuerbhIE", "readable_id": "oxidation-states-of-carbon"}, "zrqzG6xKa1A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zrqzG6xKa1A.mp4/zrqzG6xKa1A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zrqzG6xKa1A.mp4/zrqzG6xKa1A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zrqzG6xKa1A.m3u8/zrqzG6xKa1A.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/angles-part-2/", "duration": 544, "id": "zrqzG6xKa1A", "title": "Angles (part 2)", "format": "mp4", "description": "More on complementary and supplementary angles. Introduction to opposite angles.", "slug": "angles-part-2", "kind": "Video", "video_id": "zrqzG6xKa1A", "keywords": "geometry, angles, opposite, complementary, supplementary, math, CC_4_MD_5, CC_4_MD_5_a, CC_4_MD_5_b, CC_7_G_5", "youtube_id": "zrqzG6xKa1A", "readable_id": "angles-part-2"}, "JbWGusfynCw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JbWGusfynCw.mp4/JbWGusfynCw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JbWGusfynCw.mp4/JbWGusfynCw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JbWGusfynCw.m3u8/JbWGusfynCw.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/michelangelo/michelangelo-piet-1498-1500/", "duration": 219, "id": "JbWGusfynCw", "title": "Michelangelo, Piet\u00e0", "format": "mp4", "description": "Michelangelo, Piet\u00e0, marble, 1498-1500 (Saint Peter's Basilica, Rome) Speakers: Dr. Beth Harris and Dr. Steven Zucker.\n\nThe\u00a0Piet\u00e0\u00a0was a popular subject among northern european artists. It means Pity or Compassion, and represents Mary sorrowfully contemplating the dead body of her son which she holds on her lap. This sculpture was commissioned by a French Cardinal living in Rome.\nLook closely and see how Michelangelo made marble seem like flesh, and look at those complicated folds of drapery. It is important here to remember how sculpture is made. It was a messy, rather loud process (which is one of the reasons that Leonardo claimed that painting was superior to sculpture!). Just like painters often mixed their own paint, Michelangelo forged many of his own tools, and often participated in the quarrying of his marble -- a dangerous job.\n\nWhen we look at the extraordinary representation of the human body here we remember that Michelangelo, like Leonardo before him, had dissected cadavers to understand how the body worked.\n", "slug": "michelangelo-piet-1498-1500", "kind": "Video", "video_id": "JbWGusfynCw", "keywords": "art, arthistory, smarthistory, rome, michelangelo, pieta, vatican, St. Peters Basilica", "youtube_id": "JbWGusfynCw", "readable_id": "michelangelo-piet-1498-1500"}, "DFfpIZKXIew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DFfpIZKXIew.mp4/DFfpIZKXIew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DFfpIZKXIew.mp4/DFfpIZKXIew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DFfpIZKXIew.m3u8/DFfpIZKXIew.m3u8"}, "duration": 662, "id": "DFfpIZKXIew", "title": "Common Core Standards: Algebra (grade 8)", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the standards for algebra, with a focus on grade 8.", "path": "common-core-standards-algebra-grade-8/", "slug": "common-core-standards-algebra-grade-8", "kind": "Video", "video_id": "DFfpIZKXIew", "keywords": "", "youtube_id": "DFfpIZKXIew", "readable_id": "common-core-standards-algebra-grade-8"}, "Mt4dpGFVsYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mt4dpGFVsYc.mp4/Mt4dpGFVsYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mt4dpGFVsYc.mp4/Mt4dpGFVsYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mt4dpGFVsYc.m3u8/Mt4dpGFVsYc.m3u8"}, "duration": 572, "id": "Mt4dpGFVsYc", "title": "Curl 1", "format": "mp4", "description": "Introduction to the curl of a vector field", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/curl/curl-1/", "slug": "curl-1", "kind": "Video", "video_id": "Mt4dpGFVsYc", "keywords": "curl, vector, field", "youtube_id": "Mt4dpGFVsYc", "readable_id": "curl-1"}, "SCBp0d6zR2I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SCBp0d6zR2I.mp4/SCBp0d6zR2I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SCBp0d6zR2I.mp4/SCBp0d6zR2I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SCBp0d6zR2I.m3u8/SCBp0d6zR2I.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens-hundreds/adding-hundreds-tens-and-ones/", "duration": 217, "id": "SCBp0d6zR2I", "title": "Adding hundreds, tens, and ones", "format": "mp4", "description": "Learn how to add three-digit numbers by adding ones, tens, and hundreds.", "slug": "adding-hundreds-tens-and-ones", "kind": "Video", "video_id": "SCBp0d6zR2I", "keywords": "", "youtube_id": "SCBp0d6zR2I", "readable_id": "adding-hundreds-tens-and-ones"}, "h0207xMD6b8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h0207xMD6b8.mp4/h0207xMD6b8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h0207xMD6b8.mp4/h0207xMD6b8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h0207xMD6b8.m3u8/h0207xMD6b8.m3u8"}, "duration": 304, "id": "h0207xMD6b8", "title": "Thrombo-emboli and thromboembolisms", "format": "mp4", "description": "Clarifying difference between a thrombus and an embolus (and between thrombosis and embolism)", "path": "khan/science/health-and-medicine/healthcare-misc/thrombo-emboli-and-thromboembolisms/", "slug": "thrombo-emboli-and-thromboembolisms", "kind": "Video", "video_id": "h0207xMD6b8", "keywords": "thrombosis, embolism", "youtube_id": "h0207xMD6b8", "readable_id": "thrombo-emboli-and-thromboembolisms"}, "6Qr99-l1Oos": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Qr99-l1Oos.mp4/6Qr99-l1Oos.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Qr99-l1Oos.mp4/6Qr99-l1Oos.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Qr99-l1Oos.m3u8/6Qr99-l1Oos.m3u8"}, "duration": 3745, "id": "6Qr99-l1Oos", "title": "Thomas Friedman - Author", "format": "mp4", "description": "Pulitzer Prize winning author Thomas Friedman shares his thoughts in a discussion with Sal.", "path": "thomas-friedman/", "slug": "thomas-friedman", "kind": "Video", "video_id": "6Qr99-l1Oos", "keywords": "", "youtube_id": "6Qr99-l1Oos", "readable_id": "thomas-friedman"}, "bAerID24QJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bAerID24QJ0.mp4/bAerID24QJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bAerID24QJ0.mp4/bAerID24QJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bAerID24QJ0.m3u8/bAerID24QJ0.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/algebra-linear-equations-1/", "duration": 447, "id": "bAerID24QJ0", "title": "Algebra: Linear equations 1", "format": "mp4", "description": "equations of the form AX=B", "slug": "algebra-linear-equations-1", "kind": "Video", "video_id": "bAerID24QJ0", "keywords": "algebra", "youtube_id": "bAerID24QJ0", "readable_id": "algebra-linear-equations-1"}, "7m0u6dxA5Xo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7m0u6dxA5Xo.mp4/7m0u6dxA5Xo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7m0u6dxA5Xo.mp4/7m0u6dxA5Xo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7m0u6dxA5Xo.m3u8/7m0u6dxA5Xo.m3u8"}, "duration": 769, "id": "7m0u6dxA5Xo", "title": "Parabolic mirrors 2", "format": "mp4", "description": "Parabolic Mirrors 2", "path": "khan/test-prep/mcat/physical-processes/spherical-mirrors/parabolic-mirrors-2/", "slug": "parabolic-mirrors-2", "kind": "Video", "video_id": "7m0u6dxA5Xo", "keywords": "Parabolic, Mirrors, real, image, optics", "youtube_id": "7m0u6dxA5Xo", "readable_id": "parabolic-mirrors-2"}, "Wu1KO07WPkk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wu1KO07WPkk.mp4/Wu1KO07WPkk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wu1KO07WPkk.mp4/Wu1KO07WPkk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wu1KO07WPkk.m3u8/Wu1KO07WPkk.m3u8"}, "duration": 181, "id": "Wu1KO07WPkk", "title": "Total seats in a theater", "format": "mp4", "description": "Solve a two-step word problem by drawing a picture and creating an equation.", "path": "total-seats-in-a-theater/", "slug": "total-seats-in-a-theater", "kind": "Video", "video_id": "Wu1KO07WPkk", "keywords": "", "youtube_id": "Wu1KO07WPkk", "readable_id": "total-seats-in-a-theater"}, "KrkbbRxdDZ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KrkbbRxdDZ8.mp4/KrkbbRxdDZ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KrkbbRxdDZ8.mp4/KrkbbRxdDZ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KrkbbRxdDZ8.m3u8/KrkbbRxdDZ8.m3u8"}, "duration": 353, "id": "KrkbbRxdDZ8", "title": "Demand curve as marginal benefit curve", "format": "mp4", "description": "Thinking about a demand curve in terms of quantity driving price", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/consumer-producer-surplus-tut/demand-curve-as-marginal-benefit-curve/", "slug": "demand-curve-as-marginal-benefit-curve", "kind": "Video", "video_id": "KrkbbRxdDZ8", "keywords": "economics, micro, supply, demand", "youtube_id": "KrkbbRxdDZ8", "readable_id": "demand-curve-as-marginal-benefit-curve"}, "lHdlHTsXbZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lHdlHTsXbZg.mp4/lHdlHTsXbZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lHdlHTsXbZg.mp4/lHdlHTsXbZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lHdlHTsXbZg.m3u8/lHdlHTsXbZg.m3u8"}, "duration": 452, "id": "lHdlHTsXbZg", "title": "Undefined and indeterminate", "format": "mp4", "description": "Why 0/0 is considered to be indeterminate", "path": "khan/math/algebra2/functions_and_graphs/undefined_indeterminate/undefined-and-indeterminate/", "slug": "undefined-and-indeterminate", "kind": "Video", "video_id": "lHdlHTsXbZg", "keywords": "undefined, indeterminate", "youtube_id": "lHdlHTsXbZg", "readable_id": "undefined-and-indeterminate"}, "xMsG9hvqzbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xMsG9hvqzbY.mp4/xMsG9hvqzbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xMsG9hvqzbY.mp4/xMsG9hvqzbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xMsG9hvqzbY.m3u8/xMsG9hvqzbY.m3u8"}, "duration": 568, "id": "xMsG9hvqzbY", "title": "Ex 3: Distributive property to simplify", "format": "mp4", "description": "Equations with Variables on Both Sides", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/complicated_equations/equations-with-variables-on-both-sides/", "slug": "equations-with-variables-on-both-sides", "kind": "Video", "video_id": "xMsG9hvqzbY", "keywords": "Variables, On, Both, Sides, equations, CC_39336_A-REI_3", "youtube_id": "xMsG9hvqzbY", "readable_id": "equations-with-variables-on-both-sides"}, "IHEPNJJlGT4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IHEPNJJlGT4.mp4/IHEPNJJlGT4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IHEPNJJlGT4.mp4/IHEPNJJlGT4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IHEPNJJlGT4.m3u8/IHEPNJJlGT4.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/6-sea-islands/", "duration": 218, "id": "IHEPNJJlGT4", "title": "6 Sea Islands", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "6-sea-islands", "kind": "Video", "video_id": "IHEPNJJlGT4", "keywords": "", "youtube_id": "IHEPNJJlGT4", "readable_id": "6-sea-islands"}, "amMkXQ1s2ns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/amMkXQ1s2ns.mp4/amMkXQ1s2ns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/amMkXQ1s2ns.mp4/amMkXQ1s2ns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/amMkXQ1s2ns.m3u8/amMkXQ1s2ns.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-design-blended-learning/sscc-leading-change/sscc-blended-innovationprocess/", "duration": 931, "id": "amMkXQ1s2ns", "title": "Driving the process of innovation", "format": "mp4", "description": "", "slug": "sscc-blended-innovationprocess", "kind": "Video", "video_id": "amMkXQ1s2ns", "keywords": "", "youtube_id": "amMkXQ1s2ns", "readable_id": "sscc-blended-innovationprocess"}, "cRboY08YG8g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cRboY08YG8g.mp4/cRboY08YG8g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cRboY08YG8g.mp4/cRboY08YG8g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cRboY08YG8g.m3u8/cRboY08YG8g.m3u8"}, "duration": 540, "id": "cRboY08YG8g", "title": "Optimizing box volume analytically", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/optimizing-box-volume-analytically/", "slug": "optimizing-box-volume-analytically", "kind": "Video", "video_id": "cRboY08YG8g", "keywords": "", "youtube_id": "cRboY08YG8g", "readable_id": "optimizing-box-volume-analytically"}, "aNkrawaaiZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aNkrawaaiZQ.mp4/aNkrawaaiZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aNkrawaaiZQ.mp4/aNkrawaaiZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aNkrawaaiZQ.m3u8/aNkrawaaiZQ.m3u8"}, "duration": 559, "id": "aNkrawaaiZQ", "title": "Pattern of US Cold War interventions", "format": "mp4", "description": "Comparing the patterns of Korea, Cuba and Vietnam", "path": "khan/humanities/history/euro-hist/cold-war/pattern-of-us-cold-war-interventions/", "slug": "pattern-of-us-cold-war-interventions", "kind": "Video", "video_id": "aNkrawaaiZQ", "keywords": "cold, war", "youtube_id": "aNkrawaaiZQ", "readable_id": "pattern-of-us-cold-war-interventions"}, "9SOSfRNCQZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9SOSfRNCQZQ.mp4/9SOSfRNCQZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9SOSfRNCQZQ.mp4/9SOSfRNCQZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9SOSfRNCQZQ.m3u8/9SOSfRNCQZQ.m3u8"}, "duration": 332, "id": "9SOSfRNCQZQ", "title": "Graphing exponential functions", "format": "mp4", "description": "Graphing Exponential Functions", "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/graphing-exponential-functions/", "slug": "graphing-exponential-functions", "kind": "Video", "video_id": "9SOSfRNCQZQ", "keywords": "u18_l1_t1_we1, Graphing, Exponential, Functions", "youtube_id": "9SOSfRNCQZQ", "readable_id": "graphing-exponential-functions"}, "GEeKOeGHddY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GEeKOeGHddY.mp4/GEeKOeGHddY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GEeKOeGHddY.mp4/GEeKOeGHddY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GEeKOeGHddY.m3u8/GEeKOeGHddY.m3u8"}, "duration": 265, "id": "GEeKOeGHddY", "title": "Multiply and simplify a radical expression 1", "format": "mp4", "description": "Multiply and Simply a Radical Expression", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/multiply-and-simplify-a-radical-expression-1/", "slug": "multiply-and-simplify-a-radical-expression-1", "kind": "Video", "video_id": "GEeKOeGHddY", "keywords": "u16_l2_t1_we1, Multiply, and, Simply, Radical, Expression", "youtube_id": "GEeKOeGHddY", "readable_id": "multiply-and-simplify-a-radical-expression-1"}, "1TK8V_qmqrk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1TK8V_qmqrk.mp4/1TK8V_qmqrk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1TK8V_qmqrk.mp4/1TK8V_qmqrk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1TK8V_qmqrk.m3u8/1TK8V_qmqrk.m3u8"}, "duration": 455, "id": "1TK8V_qmqrk", "title": "Minimizing sum of squares", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/minimizing-sum-of-squares/", "slug": "minimizing-sum-of-squares", "kind": "Video", "video_id": "1TK8V_qmqrk", "keywords": "", "youtube_id": "1TK8V_qmqrk", "readable_id": "minimizing-sum-of-squares"}, "q--2WP8wXtk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q--2WP8wXtk.mp4/q--2WP8wXtk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q--2WP8wXtk.mp4/q--2WP8wXtk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q--2WP8wXtk.m3u8/q--2WP8wXtk.m3u8"}, "path": "khan/science/chemistry/periodic-table/periodic-table-trends-bonding/atomic-radius-trend/", "duration": 580, "id": "q--2WP8wXtk", "title": "Atomic radius trends on periodic table", "format": "mp4", "description": "", "slug": "atomic-radius-trend", "kind": "Video", "video_id": "q--2WP8wXtk", "keywords": "", "youtube_id": "q--2WP8wXtk", "readable_id": "atomic-radius-trend"}, "NaO01BO8X70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NaO01BO8X70.mp4/NaO01BO8X70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NaO01BO8X70.mp4/NaO01BO8X70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NaO01BO8X70.m3u8/NaO01BO8X70.m3u8"}, "path": "khan/math/recreational-math/math-warmup/random-sample-warmup/random-sample-warmup1/", "duration": 165, "id": "NaO01BO8X70", "title": "Introduction to random sampling", "format": "mp4", "description": "Can Sal predict the ratio of white to black balls without looking at all of them?", "slug": "random-sample-warmup1", "kind": "Video", "video_id": "NaO01BO8X70", "keywords": "", "youtube_id": "NaO01BO8X70", "readable_id": "random-sample-warmup1"}, "MYkR32QOdg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MYkR32QOdg0.mp4/MYkR32QOdg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MYkR32QOdg0.mp4/MYkR32QOdg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MYkR32QOdg0.m3u8/MYkR32QOdg0.m3u8"}, "duration": 157, "id": "MYkR32QOdg0", "title": "Term and whole life insurance policies 2", "format": "mp4", "description": "What happens to the cash payout in a whole life policy when someone dies?", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/life-insurance/term-and-whole-life-insurance-policies-2/", "slug": "term-and-whole-life-insurance-policies-2", "kind": "Video", "video_id": "MYkR32QOdg0", "keywords": "life, insurance", "youtube_id": "MYkR32QOdg0", "readable_id": "term-and-whole-life-insurance-policies-2"}, "l1sBpsyRNfM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l1sBpsyRNfM.mp4/l1sBpsyRNfM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l1sBpsyRNfM.mp4/l1sBpsyRNfM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l1sBpsyRNfM.m3u8/l1sBpsyRNfM.m3u8"}, "duration": 65, "id": "l1sBpsyRNfM", "title": "Installation of Richard Serra's sculptures at MoMA", "format": "mp4", "description": "Watch Richard Serra's Torqued Ellipse IV \u00a0(1998) and Intersection II (1992) installed in the Abby Aldrich Rockefeller Sculpture Garden in 2007. To learn about how art changes over time, enroll in one of MoMA's online courses.", "path": "moma-installation-serra-sculptures/", "slug": "moma-installation-serra-sculptures", "kind": "Video", "video_id": "l1sBpsyRNfM", "keywords": "", "youtube_id": "l1sBpsyRNfM", "readable_id": "moma-installation-serra-sculptures"}, "7Fxt6E7m7bM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Fxt6E7m7bM.mp4/7Fxt6E7m7bM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Fxt6E7m7bM.mp4/7Fxt6E7m7bM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Fxt6E7m7bM.m3u8/7Fxt6E7m7bM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/ankylosing-spondylitis/", "duration": 608, "id": "7Fxt6E7m7bM", "title": "Ankylosing spondylitis", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "ankylosing-spondylitis", "kind": "Video", "video_id": "7Fxt6E7m7bM", "keywords": "", "youtube_id": "7Fxt6E7m7bM", "readable_id": "ankylosing-spondylitis"}, "91qVGeyTl44": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/91qVGeyTl44.mp4/91qVGeyTl44.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/91qVGeyTl44.mp4/91qVGeyTl44.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/91qVGeyTl44.m3u8/91qVGeyTl44.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/alternating-series-test/", "duration": 348, "id": "91qVGeyTl44", "title": "Alternating series test", "format": "mp4", "description": "", "slug": "alternating-series-test", "kind": "Video", "video_id": "91qVGeyTl44", "keywords": "", "youtube_id": "91qVGeyTl44", "readable_id": "alternating-series-test"}, "PZIoFD_Z73M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PZIoFD_Z73M.mp4/PZIoFD_Z73M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PZIoFD_Z73M.mp4/PZIoFD_Z73M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PZIoFD_Z73M.m3u8/PZIoFD_Z73M.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/heisenberg-uncertainty-principle/", "duration": 618, "id": "PZIoFD_Z73M", "title": "Heisenberg uncertainty principle", "format": "mp4", "description": "", "slug": "heisenberg-uncertainty-principle", "kind": "Video", "video_id": "PZIoFD_Z73M", "keywords": "", "youtube_id": "PZIoFD_Z73M", "readable_id": "heisenberg-uncertainty-principle"}, "jmbg-DKWuc4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jmbg-DKWuc4.mp4/jmbg-DKWuc4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jmbg-DKWuc4.mp4/jmbg-DKWuc4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jmbg-DKWuc4.m3u8/jmbg-DKWuc4.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-to-produce-difference-of-squares/", "duration": 143, "id": "jmbg-DKWuc4", "title": "Factoring to produce difference of squares", "format": "mp4", "description": "", "slug": "factoring-to-produce-difference-of-squares", "kind": "Video", "video_id": "jmbg-DKWuc4", "keywords": "", "youtube_id": "jmbg-DKWuc4", "readable_id": "factoring-to-produce-difference-of-squares"}, "M-aktLHDZEA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M-aktLHDZEA.mp4/M-aktLHDZEA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M-aktLHDZEA.mp4/M-aktLHDZEA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M-aktLHDZEA.m3u8/M-aktLHDZEA.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/overview-metabolism/atp-hydrolysis/", "duration": 335, "id": "M-aktLHDZEA", "title": "ATP hydrolysis mechanism", "format": "mp4", "description": "", "slug": "atp-hydrolysis", "kind": "Video", "video_id": "M-aktLHDZEA", "keywords": "", "youtube_id": "M-aktLHDZEA", "readable_id": "atp-hydrolysis"}, "wU9_daCwr_w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wU9_daCwr_w.mp4/wU9_daCwr_w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wU9_daCwr_w.mp4/wU9_daCwr_w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wU9_daCwr_w.m3u8/wU9_daCwr_w.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/esophagus/", "duration": 334, "id": "wU9_daCwr_w", "title": "Esophagus", "format": "mp4", "description": "", "slug": "esophagus", "kind": "Video", "video_id": "wU9_daCwr_w", "keywords": "MCAT", "youtube_id": "wU9_daCwr_w", "readable_id": "esophagus"}, "haidlj3cTAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/haidlj3cTAA.mp4/haidlj3cTAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/haidlj3cTAA.mp4/haidlj3cTAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/haidlj3cTAA.m3u8/haidlj3cTAA.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/lesion-studies-and-experimental-ablation/", "duration": 401, "id": "haidlj3cTAA", "title": "Lesion studies and experimental ablation", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "lesion-studies-and-experimental-ablation", "kind": "Video", "video_id": "haidlj3cTAA", "keywords": "", "youtube_id": "haidlj3cTAA", "readable_id": "lesion-studies-and-experimental-ablation"}, "qs0hRHfnzTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qs0hRHfnzTQ.mp4/qs0hRHfnzTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qs0hRHfnzTQ.mp4/qs0hRHfnzTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qs0hRHfnzTQ.m3u8/qs0hRHfnzTQ.m3u8"}, "duration": 568, "id": "qs0hRHfnzTQ", "title": "Conceptual clarification for 2D divergence theorem", "format": "mp4", "description": "Understanding the line integral as flux through a boundary", "path": "khan/math/multivariable-calculus/line_integrals_topic/2d_divergence_theorem/conceptual-clarification-for-2-d-divergence-theorem/", "slug": "conceptual-clarification-for-2-d-divergence-theorem", "kind": "Video", "video_id": "qs0hRHfnzTQ", "keywords": "vector, calculus", "youtube_id": "qs0hRHfnzTQ", "readable_id": "conceptual-clarification-for-2-d-divergence-theorem"}, "PWiWkqHmum0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PWiWkqHmum0.mp4/PWiWkqHmum0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PWiWkqHmum0.mp4/PWiWkqHmum0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PWiWkqHmum0.m3u8/PWiWkqHmum0.m3u8"}, "duration": 485, "id": "PWiWkqHmum0", "title": "Population standard deviation", "format": "mp4", "description": "", "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/population-standard-deviation/", "slug": "population-standard-deviation", "kind": "Video", "video_id": "PWiWkqHmum0", "keywords": "", "youtube_id": "PWiWkqHmum0", "readable_id": "population-standard-deviation"}, "tmpa8Q240XY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tmpa8Q240XY.mp4/tmpa8Q240XY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tmpa8Q240XY.mp4/tmpa8Q240XY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tmpa8Q240XY.m3u8/tmpa8Q240XY.m3u8"}, "duration": 172, "id": "tmpa8Q240XY", "title": "Simplifying first for subtracting rational expressions", "format": "mp4", "description": "Simplifying First for Subtracting Rational Expressions", "path": "khan/math/algebra2/rational-expressions/rational_expressions/simplifying-first-for-subtracting-rational-expressions/", "slug": "simplifying-first-for-subtracting-rational-expressions", "kind": "Video", "video_id": "tmpa8Q240XY", "keywords": "u15_l1_t3_we3, Simplifying, First, for, Subtracting, Rational, Expressions, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "tmpa8Q240XY", "readable_id": "simplifying-first-for-subtracting-rational-expressions"}, "vEZea0EThus": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vEZea0EThus.mp4/vEZea0EThus.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vEZea0EThus.mp4/vEZea0EThus.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vEZea0EThus.m3u8/vEZea0EThus.m3u8"}, "duration": 270, "id": "vEZea0EThus", "title": "Exponents with negative bases", "format": "mp4", "description": "Apply what we know about negative numbers to determine how negative bases with exponents are affected and what patterns develop. Also learn how order of operations affect the pattern.", "path": "exponents-with-negative-bases/", "slug": "exponents-with-negative-bases", "kind": "Video", "video_id": "vEZea0EThus", "keywords": "", "youtube_id": "vEZea0EThus", "readable_id": "exponents-with-negative-bases"}, "4dcGgUrkttY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4dcGgUrkttY.mp4/4dcGgUrkttY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4dcGgUrkttY.mp4/4dcGgUrkttY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4dcGgUrkttY.m3u8/4dcGgUrkttY.m3u8"}, "duration": 568, "id": "4dcGgUrkttY", "title": "Temperament, heredity, and genes", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/behavior-and-genetics/temperment-heredity-genes/", "slug": "temperment-heredity-genes", "kind": "Video", "video_id": "4dcGgUrkttY", "keywords": "", "youtube_id": "4dcGgUrkttY", "readable_id": "temperment-heredity-genes"}, "xyhaEvNdwrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xyhaEvNdwrQ.mp4/xyhaEvNdwrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xyhaEvNdwrQ.mp4/xyhaEvNdwrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xyhaEvNdwrQ.m3u8/xyhaEvNdwrQ.m3u8"}, "duration": 341, "id": "xyhaEvNdwrQ", "title": "\"Statue of an Emperor:\" A conservation partnership", "format": "mp4", "description": "Watch conservators from the Pergamon Museum in Berlin and the Getty Museum disassemble, clean and reassemble an ancient Roman marble sculpture. Love art? Follow us on Google+", "path": "statue-of-an-emperor-conservation-partnership/", "slug": "statue-of-an-emperor-conservation-partnership", "kind": "Video", "video_id": "xyhaEvNdwrQ", "keywords": "", "youtube_id": "xyhaEvNdwrQ", "readable_id": "statue-of-an-emperor-conservation-partnership"}, "itoNb1lb5hY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/itoNb1lb5hY.mp4/itoNb1lb5hY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/itoNb1lb5hY.mp4/itoNb1lb5hY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/itoNb1lb5hY.m3u8/itoNb1lb5hY.m3u8"}, "duration": 724, "id": "itoNb1lb5hY", "title": "Currency exchange introduction", "format": "mp4", "description": "Introduction to how exchange rates can fluctuate", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/currency-exchange-introduction/", "slug": "currency-exchange-introduction", "kind": "Video", "video_id": "itoNb1lb5hY", "keywords": "Currency, Introduction, Exchange, Yuan, Renminbi", "youtube_id": "itoNb1lb5hY", "readable_id": "currency-exchange-introduction"}, "McINBOFCGH8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/McINBOFCGH8.mp4/McINBOFCGH8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/McINBOFCGH8.mp4/McINBOFCGH8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/McINBOFCGH8.m3u8/McINBOFCGH8.m3u8"}, "duration": 342, "id": "McINBOFCGH8", "title": "45-45-90 triangle side ratios", "format": "mp4", "description": "Showing the ratios of the sides of a 45-45-90 triangle are 1:1:sqrt(2)", "path": "khan/math/geometry/right_triangles_topic/special_right_triangles/45-45-90-triangle-side-ratios/", "slug": "45-45-90-triangle-side-ratios", "kind": "Video", "video_id": "McINBOFCGH8", "keywords": "45, 90, Triangle, Side, Ratios", "youtube_id": "McINBOFCGH8", "readable_id": "45-45-90-triangle-side-ratios"}, "QVxqgxVtKbs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QVxqgxVtKbs.mp4/QVxqgxVtKbs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QVxqgxVtKbs.mp4/QVxqgxVtKbs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QVxqgxVtKbs.m3u8/QVxqgxVtKbs.m3u8"}, "duration": 337, "id": "QVxqgxVtKbs", "title": "Area of shaded region made from equilateral triangles", "format": "mp4", "description": "", "path": "khan/math/geometry/basic-geometry/perimeter_area_tutorial/area-of-shaded-region-made-from-equilateral-triangles/", "slug": "area-of-shaded-region-made-from-equilateral-triangles", "kind": "Video", "video_id": "QVxqgxVtKbs", "keywords": "", "youtube_id": "QVxqgxVtKbs", "readable_id": "area-of-shaded-region-made-from-equilateral-triangles"}, "y2RHWA7t0WM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y2RHWA7t0WM.mp4/y2RHWA7t0WM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y2RHWA7t0WM.mp4/y2RHWA7t0WM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y2RHWA7t0WM.m3u8/y2RHWA7t0WM.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/metric-system-tutorial/u-s-customary-and-metric-units/", "duration": 310, "id": "y2RHWA7t0WM", "title": "U.S. customary and metric units", "format": "mp4", "description": "U.S. Customary and Metric units", "slug": "u-s-customary-and-metric-units", "kind": "Video", "video_id": "y2RHWA7t0WM", "keywords": "U06_L2_T1_we1, U.S., Customary, and, Metric, units, CC_3_MD_2", "youtube_id": "y2RHWA7t0WM", "readable_id": "u-s-customary-and-metric-units"}, "H6RXlL7keGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H6RXlL7keGw.mp4/H6RXlL7keGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H6RXlL7keGw.mp4/H6RXlL7keGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H6RXlL7keGw.m3u8/H6RXlL7keGw.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-1/", "duration": 144, "id": "H6RXlL7keGw", "title": "1 12th term in sequence", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-1", "kind": "Video", "video_id": "H6RXlL7keGw", "keywords": "", "youtube_id": "H6RXlL7keGw", "readable_id": "2013-sat-practice-6-1"}, "Jts_mdQmbUg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jts_mdQmbUg.mp4/Jts_mdQmbUg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jts_mdQmbUg.mp4/Jts_mdQmbUg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jts_mdQmbUg.m3u8/Jts_mdQmbUg.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section3/sat-1-private-universities/", "duration": 138, "id": "Jts_mdQmbUg", "title": "1 Private universities", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-1-private-universities", "kind": "Video", "video_id": "Jts_mdQmbUg", "keywords": "", "youtube_id": "Jts_mdQmbUg", "readable_id": "sat-1-private-universities"}, "tOEz6RC0aVo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tOEz6RC0aVo.mp4/tOEz6RC0aVo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tOEz6RC0aVo.mp4/tOEz6RC0aVo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tOEz6RC0aVo.m3u8/tOEz6RC0aVo.m3u8"}, "path": "khan/test-prep/mcat/behavior/normative-and-non-normative-behavior/what-is-normal/", "duration": 476, "id": "tOEz6RC0aVo", "title": "What is normal? Exploring folkways, mores, and taboos", "format": "mp4", "description": "", "slug": "what-is-normal", "kind": "Video", "video_id": "tOEz6RC0aVo", "keywords": "", "youtube_id": "tOEz6RC0aVo", "readable_id": "what-is-normal"}, "0DBDuNYsciY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0DBDuNYsciY.mp4/0DBDuNYsciY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0DBDuNYsciY.mp4/0DBDuNYsciY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0DBDuNYsciY.m3u8/0DBDuNYsciY.m3u8"}, "duration": 196, "id": "0DBDuNYsciY", "title": "Writing a series in sigma notation", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/writing-series-sigma-notation/", "slug": "writing-series-sigma-notation", "kind": "Video", "video_id": "0DBDuNYsciY", "keywords": "", "youtube_id": "0DBDuNYsciY", "readable_id": "writing-series-sigma-notation"}, "uuDQkhx6TAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uuDQkhx6TAI.mp4/uuDQkhx6TAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uuDQkhx6TAI.mp4/uuDQkhx6TAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uuDQkhx6TAI.m3u8/uuDQkhx6TAI.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-rotations/rotating-about-arbitrary-point/", "duration": 632, "id": "uuDQkhx6TAI", "title": "Rotating about arbitrary point", "format": "mp4", "description": "Rotating about arbitrary point", "slug": "rotating-about-arbitrary-point", "kind": "Video", "video_id": "uuDQkhx6TAI", "keywords": "", "youtube_id": "uuDQkhx6TAI", "readable_id": "rotating-about-arbitrary-point"}, "t6npEWNrHGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t6npEWNrHGM.mp4/t6npEWNrHGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t6npEWNrHGM.mp4/t6npEWNrHGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t6npEWNrHGM.m3u8/t6npEWNrHGM.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/hadrian-imperial-palace/", "duration": 146, "id": "t6npEWNrHGM", "title": "Hadrian, The imperial palace, Tivoli", "format": "mp4", "description": "Hadrian built himself a vast palace in the countryside, the villa Adriana in Tivoli about 30 kilometres east of Rome. It was a huge complex, designed to accommodate thousands of people. It was his administrative capital and represents his empire in miniature. British Museum Director Neil MacGregor visits. \u00a9 Trustees of the British Museum", "slug": "hadrian-imperial-palace", "kind": "Video", "video_id": "t6npEWNrHGM", "keywords": "Hadrian, Ancient Rome,", "youtube_id": "t6npEWNrHGM", "readable_id": "hadrian-imperial-palace"}, "dgZy7Uj8cAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dgZy7Uj8cAI.mp4/dgZy7Uj8cAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dgZy7Uj8cAI.mp4/dgZy7Uj8cAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dgZy7Uj8cAI.m3u8/dgZy7Uj8cAI.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-12/", "duration": 673, "id": "dgZy7Uj8cAI", "title": "GMAT: Data sufficiency 12", "format": "mp4", "description": "55-58, pg. 282", "slug": "gmat-data-sufficiency-12", "kind": "Video", "video_id": "dgZy7Uj8cAI", "keywords": "GMAT, data, sufficiency, math", "youtube_id": "dgZy7Uj8cAI", "readable_id": "gmat-data-sufficiency-12"}, "cdY0b4ziR5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cdY0b4ziR5U.mp4/cdY0b4ziR5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cdY0b4ziR5U.mp4/cdY0b4ziR5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cdY0b4ziR5U.m3u8/cdY0b4ziR5U.m3u8"}, "duration": 88, "id": "cdY0b4ziR5U", "title": "Systems of nonlinear equations 1", "format": "mp4", "description": "", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/systems-of-nonlinear-equations-1/", "slug": "systems-of-nonlinear-equations-1", "kind": "Video", "video_id": "cdY0b4ziR5U", "keywords": "", "youtube_id": "cdY0b4ziR5U", "readable_id": "systems-of-nonlinear-equations-1"}, "bh1UrCGWz1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bh1UrCGWz1k.mp4/bh1UrCGWz1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bh1UrCGWz1k.mp4/bh1UrCGWz1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bh1UrCGWz1k.m3u8/bh1UrCGWz1k.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/infinite-series-as-limit-of-partial-sums/", "duration": 288, "id": "bh1UrCGWz1k", "title": "Infinite series as limit of partial sums", "format": "mp4", "description": "Infinite series as limit of partial sums", "slug": "infinite-series-as-limit-of-partial-sums", "kind": "Video", "video_id": "bh1UrCGWz1k", "keywords": "", "youtube_id": "bh1UrCGWz1k", "readable_id": "infinite-series-as-limit-of-partial-sums"}, "jkmwAJMERrY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jkmwAJMERrY.mp4/jkmwAJMERrY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jkmwAJMERrY.mp4/jkmwAJMERrY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jkmwAJMERrY.m3u8/jkmwAJMERrY.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/greek-debt-crisis/how-and-why-greece-would-leave-the-euro-part-3/", "duration": 501, "id": "jkmwAJMERrY", "title": "How and why Greece would leave the Euro (part 3)", "format": "mp4", "description": "The pain and mechanics of leaving the Euro", "slug": "how-and-why-greece-would-leave-the-euro-part-3", "kind": "Video", "video_id": "jkmwAJMERrY", "keywords": "euro, greece, financial, crisis", "youtube_id": "jkmwAJMERrY", "readable_id": "how-and-why-greece-would-leave-the-euro-part-3"}, "04N79tItPEA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/04N79tItPEA.mp4/04N79tItPEA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/04N79tItPEA.mp4/04N79tItPEA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/04N79tItPEA.m3u8/04N79tItPEA.m3u8"}, "path": "khan/math/geometry/basic-geometry/circum_area_circles/parts-of-a-circle/", "duration": 121, "id": "04N79tItPEA", "title": "Labeling parts of a circle", "format": "mp4", "description": "Radius, diameter, center, and circumference--all are parts of a circle. Let's go through each and make sure we understand how they are defined.", "slug": "parts-of-a-circle", "kind": "Video", "video_id": "04N79tItPEA", "keywords": "u07_l2_t3_we1, Parts, of, Circle", "youtube_id": "04N79tItPEA", "readable_id": "parts-of-a-circle"}, "CafRuKs7EfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CafRuKs7EfE.mp4/CafRuKs7EfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CafRuKs7EfE.mp4/CafRuKs7EfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CafRuKs7EfE.m3u8/CafRuKs7EfE.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/preparation-of-amides-using-dcc/", "duration": 714, "id": "CafRuKs7EfE", "title": "Preparation of amides using DCC", "format": "mp4", "description": "The mechanism for the formation of amides from carboxylic acids and amines using dicyclohexylcarbodiimide (DCC)\n\u00a0", "slug": "preparation-of-amides-using-dcc", "kind": "Video", "video_id": "CafRuKs7EfE", "keywords": "", "youtube_id": "CafRuKs7EfE", "readable_id": "preparation-of-amides-using-dcc"}, "hopq0lq-qu4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hopq0lq-qu4.mp4/hopq0lq-qu4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hopq0lq-qu4.mp4/hopq0lq-qu4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hopq0lq-qu4.m3u8/hopq0lq-qu4.m3u8"}, "duration": 285, "id": "hopq0lq-qu4", "title": "Using Khan Academy", "format": "mp4", "description": "A primer from Sal on how to use Khan Academy", "path": "using-khan-academy/", "slug": "using-khan-academy", "kind": "Video", "video_id": "hopq0lq-qu4", "keywords": "", "youtube_id": "hopq0lq-qu4", "readable_id": "using-khan-academy"}, "VTdV9JaHiIA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VTdV9JaHiIA.mp4/VTdV9JaHiIA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VTdV9JaHiIA.mp4/VTdV9JaHiIA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VTdV9JaHiIA.m3u8/VTdV9JaHiIA.m3u8"}, "duration": 420, "id": "VTdV9JaHiIA", "title": "Nazi aggression and appeasement", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/hitler-nazis/nazi-aggression-and-appeasement/", "slug": "nazi-aggression-and-appeasement", "kind": "Video", "video_id": "VTdV9JaHiIA", "keywords": "", "youtube_id": "VTdV9JaHiIA", "readable_id": "nazi-aggression-and-appeasement"}, "0mOH-qNGM7M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0mOH-qNGM7M.mp4/0mOH-qNGM7M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0mOH-qNGM7M.mp4/0mOH-qNGM7M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0mOH-qNGM7M.m3u8/0mOH-qNGM7M.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/adding-decimals-pre-alg/subtracting-decimals-old/", "duration": 512, "id": "0mOH-qNGM7M", "title": "Subtracting decimals (old)", "format": "mp4", "description": "Subtracting decimal numbers", "slug": "subtracting-decimals-old", "kind": "Video", "video_id": "0mOH-qNGM7M", "keywords": "subtraction, decimals, math, CC_5_NBT_7, CC_6_NS_3", "youtube_id": "0mOH-qNGM7M", "readable_id": "subtracting-decimals-old"}, "h8EYEJ32oQ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h8EYEJ32oQ8.mp4/h8EYEJ32oQ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h8EYEJ32oQ8.mp4/h8EYEJ32oQ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h8EYEJ32oQ8.m3u8/h8EYEJ32oQ8.m3u8"}, "path": "khan/math/probability/descriptive-statistics/central_tendency/statistics-intro-mean-median-and-mode/", "duration": 534, "id": "h8EYEJ32oQ8", "title": "Statistics intro: Mean, median and mode", "format": "mp4", "description": "This is a fantastic intro to the basics of statistics. Our focus here is to help you understand the core concepts of arithmetic mean, median, and mode.", "slug": "statistics-intro-mean-median-and-mode", "kind": "Video", "video_id": "h8EYEJ32oQ8", "keywords": "mean, median, mode", "youtube_id": "h8EYEJ32oQ8", "readable_id": "statistics-intro-mean-median-and-mode"}, "qBfc57x_RSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qBfc57x_RSg.mp4/qBfc57x_RSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qBfc57x_RSg.mp4/qBfc57x_RSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qBfc57x_RSg.m3u8/qBfc57x_RSg.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/linear-algebra-rowspace-and-left-nullspace/", "duration": 1398, "id": "qBfc57x_RSg", "title": "Rowspace and left nullspace", "format": "mp4", "description": "Rowspace and Left Nullspace", "slug": "linear-algebra-rowspace-and-left-nullspace", "kind": "Video", "video_id": "qBfc57x_RSg", "keywords": "rowspace, left, nullspace", "youtube_id": "qBfc57x_RSg", "readable_id": "linear-algebra-rowspace-and-left-nullspace"}, "S2P4I_hFnFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S2P4I_hFnFI.mp4/S2P4I_hFnFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S2P4I_hFnFI.mp4/S2P4I_hFnFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S2P4I_hFnFI.m3u8/S2P4I_hFnFI.m3u8"}, "path": "khan/humanities/medieval-world/early-christian1/basilica-of-santa-maria-maggiore-rome-5th-century-a-d/", "duration": 278, "id": "S2P4I_hFnFI", "title": "Santa Maria Maggiore", "format": "mp4", "description": "Basilica of Santa Maria Maggiore, Rome, 5th century A.D. \n\nA Smarthistory video with partner Context Travel. Speakers: Dr. Steven Zucker and Richard Bowen.", "slug": "basilica-of-santa-maria-maggiore-rome-5th-century-a-d", "kind": "Video", "video_id": "S2P4I_hFnFI", "keywords": "Smarthistory, Art History, Basilica, Santa Maria Maggiore, Context Travel, Khan Academy", "youtube_id": "S2P4I_hFnFI", "readable_id": "basilica-of-santa-maria-maggiore-rome-5th-century-a-d"}, "UXQGzgPf1LE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UXQGzgPf1LE.mp4/UXQGzgPf1LE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UXQGzgPf1LE.mp4/UXQGzgPf1LE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UXQGzgPf1LE.m3u8/UXQGzgPf1LE.m3u8"}, "duration": 352, "id": "UXQGzgPf1LE", "title": "Using the product rule and the chain rule", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/product_rule/using-the-product-rule-and-the-chain-rule/", "slug": "using-the-product-rule-and-the-chain-rule", "kind": "Video", "video_id": "UXQGzgPf1LE", "keywords": "", "youtube_id": "UXQGzgPf1LE", "readable_id": "using-the-product-rule-and-the-chain-rule"}, "wV1pllyOaj8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wV1pllyOaj8.mp4/wV1pllyOaj8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wV1pllyOaj8.mp4/wV1pllyOaj8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wV1pllyOaj8.m3u8/wV1pllyOaj8.m3u8"}, "duration": 747, "id": "wV1pllyOaj8", "title": "What is TB?", "format": "mp4", "description": "Find out the basics of TB, where it comes from and where it goes. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/what-is-tb/", "slug": "what-is-tb", "kind": "Video", "video_id": "wV1pllyOaj8", "keywords": "", "youtube_id": "wV1pllyOaj8", "readable_id": "what-is-tb"}, "yahEP620480": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yahEP620480.mp4/yahEP620480.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yahEP620480.mp4/yahEP620480.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yahEP620480.m3u8/yahEP620480.m3u8"}, "duration": 210, "id": "yahEP620480", "title": "What is inflation", "format": "mp4", "description": "The basics of what price inflation is and how the CPI-U is calculated", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/inflation-basics-tutorial/what-is-inflation/", "slug": "what-is-inflation", "kind": "Video", "video_id": "yahEP620480", "keywords": "inflation, consumer, price, index, cpi, finance, economics", "youtube_id": "yahEP620480", "readable_id": "what-is-inflation"}, "RsYgjO5BiHU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RsYgjO5BiHU.mp4/RsYgjO5BiHU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RsYgjO5BiHU.mp4/RsYgjO5BiHU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RsYgjO5BiHU.m3u8/RsYgjO5BiHU.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/arterial-stiffness/compliance-decreased-blood-pressure/", "duration": 595, "id": "RsYgjO5BiHU", "title": "Compliance - decreased blood pressure", "format": "mp4", "description": "Find out how compliance allows arteries to store elastic energy (and lower pressure). Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "compliance-decreased-blood-pressure", "kind": "Video", "video_id": "RsYgjO5BiHU", "keywords": "", "youtube_id": "RsYgjO5BiHU", "readable_id": "compliance-decreased-blood-pressure"}, "JGU74wbZMLg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JGU74wbZMLg.mp4/JGU74wbZMLg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JGU74wbZMLg.mp4/JGU74wbZMLg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JGU74wbZMLg.m3u8/JGU74wbZMLg.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/inverse-trig-functions-arcsin/", "duration": 636, "id": "JGU74wbZMLg", "title": "Inverse trig functions: arcsin", "format": "mp4", "description": "Introduction to the inverse trig function arcsin", "slug": "inverse-trig-functions-arcsin", "kind": "Video", "video_id": "JGU74wbZMLg", "keywords": "trigonometry, arcsin, arcsine, inverse, CC_39336_F-BF_4, CC_39336_F-BF_4_b, CC_39336_F-TF_3", "youtube_id": "JGU74wbZMLg", "readable_id": "inverse-trig-functions-arcsin"}, "Ld7Vxb5XV6A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ld7Vxb5XV6A.mp4/Ld7Vxb5XV6A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ld7Vxb5XV6A.mp4/Ld7Vxb5XV6A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ld7Vxb5XV6A.m3u8/Ld7Vxb5XV6A.m3u8"}, "duration": 281, "id": "Ld7Vxb5XV6A", "title": "Using algebra to find measures of angles formed from transversal", "format": "mp4", "description": "", "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/using-algebra-to-find-measures-of-angles-formed-from-transversal/", "slug": "using-algebra-to-find-measures-of-angles-formed-from-transversal", "kind": "Video", "video_id": "Ld7Vxb5XV6A", "keywords": "", "youtube_id": "Ld7Vxb5XV6A", "readable_id": "using-algebra-to-find-measures-of-angles-formed-from-transversal"}, "Wrdmw_Ioovk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wrdmw_Ioovk.mp4/Wrdmw_Ioovk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wrdmw_Ioovk.mp4/Wrdmw_Ioovk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wrdmw_Ioovk.m3u8/Wrdmw_Ioovk.m3u8"}, "duration": 122, "id": "Wrdmw_Ioovk", "title": "How do dinosaurs get their names?", "format": "mp4", "description": "Giving any living or extinct organism a scientific name is governed by a set of rules called the International Code of Zoological Nomenclature, and paleontologists who name dinosaurs must follow those rules to make the name valid. The code requires that a scientific name be composed to two parts. The first part, called the genus, is always capitalized; the second, called the species is never capitalized. Both names are always italicized, and sometimes the genus name is abbreviated (as in T. rex for Tyrannosaurus rex). The genus name may be used alone to refer to all the species in a particular genus.", "path": "dinosaur-names/", "slug": "dinosaur-names", "kind": "Video", "video_id": "Wrdmw_Ioovk", "keywords": "", "youtube_id": "Wrdmw_Ioovk", "readable_id": "dinosaur-names"}, "N21Wh4Jqftc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N21Wh4Jqftc.mp4/N21Wh4Jqftc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N21Wh4Jqftc.mp4/N21Wh4Jqftc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N21Wh4Jqftc.m3u8/N21Wh4Jqftc.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/fractions-unlike-denom-pre-alg/subtracting-fractions-with-unlike-denominators/", "duration": 264, "id": "N21Wh4Jqftc", "title": "Subtracting fractions: different denominators", "format": "mp4", "description": "If you conquered adding fractions with different denominators, then subtracting fractions will be a snap. Don't worry...we'll take it slow and explain every step.", "slug": "subtracting-fractions-with-unlike-denominators", "kind": "Video", "video_id": "N21Wh4Jqftc", "keywords": "", "youtube_id": "N21Wh4Jqftc", "readable_id": "subtracting-fractions-with-unlike-denominators"}, "xKH1Evwu150": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xKH1Evwu150.mp4/xKH1Evwu150.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xKH1Evwu150.mp4/xKH1Evwu150.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xKH1Evwu150.m3u8/xKH1Evwu150.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/linear-equation-word-problems-tu/linear-equation-word-problem-example/", "duration": 359, "id": "xKH1Evwu150", "title": "Linear equation word problem", "format": "mp4", "description": "Learn how to solve a word problem by writing an equation to model the situation. In this video, we use the linear equation 210(t-5) = 41,790.", "slug": "linear-equation-word-problem-example", "kind": "Video", "video_id": "xKH1Evwu150", "keywords": "", "youtube_id": "xKH1Evwu150", "readable_id": "linear-equation-word-problem-example"}, "diCb6JkLlQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/diCb6JkLlQE.mp4/diCb6JkLlQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/diCb6JkLlQE.mp4/diCb6JkLlQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/diCb6JkLlQE.m3u8/diCb6JkLlQE.m3u8"}, "duration": 511, "id": "diCb6JkLlQE", "title": "Acid-base definitions", "format": "mp4", "description": "", "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/acid-base-lewis-bronsted-lowry/", "slug": "acid-base-lewis-bronsted-lowry", "kind": "Video", "video_id": "diCb6JkLlQE", "keywords": "", "youtube_id": "diCb6JkLlQE", "readable_id": "acid-base-lewis-bronsted-lowry"}, "EIm1BSVCpno": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EIm1BSVCpno.mp4/EIm1BSVCpno.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EIm1BSVCpno.mp4/EIm1BSVCpno.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EIm1BSVCpno.m3u8/EIm1BSVCpno.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-emphysema/emphysema-treatment/", "duration": 621, "id": "EIm1BSVCpno", "title": "Emphysema treatment", "format": "mp4", "description": "The best way to prevent and manage emphysema is to stop smoking. Learn how drugs such as bronchodilators, antibiotics, and steroids can be used to manage the symptoms of emphysema.", "slug": "emphysema-treatment", "kind": "Video", "video_id": "EIm1BSVCpno", "keywords": "", "youtube_id": "EIm1BSVCpno", "readable_id": "emphysema-treatment"}, "5fBYs63b0mk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5fBYs63b0mk.mp4/5fBYs63b0mk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5fBYs63b0mk.mp4/5fBYs63b0mk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5fBYs63b0mk.m3u8/5fBYs63b0mk.m3u8"}, "duration": 159, "id": "5fBYs63b0mk", "title": "\"Collective Suicide\" by David Alfaro Siqueiros, 1936 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how she teaches \"Collective Suicide\" by David Alfaro Siqueiros, 1936.\u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-siqueiros/", "slug": "teaching-siqueiros", "kind": "Video", "video_id": "5fBYs63b0mk", "keywords": "", "youtube_id": "5fBYs63b0mk", "readable_id": "teaching-siqueiros"}, "Y70TTv5ZLkk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y70TTv5ZLkk.mp4/Y70TTv5ZLkk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y70TTv5ZLkk.mp4/Y70TTv5ZLkk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y70TTv5ZLkk.m3u8/Y70TTv5ZLkk.m3u8"}, "duration": 146, "id": "Y70TTv5ZLkk", "title": "Reflection and mapping points example", "format": "mp4", "description": "", "path": "khan/math/basic-geo/transformations-congruence-similarity-geo/transformations-basics/reflection-and-mapping-points-example/", "slug": "reflection-and-mapping-points-example", "kind": "Video", "video_id": "Y70TTv5ZLkk", "keywords": "", "youtube_id": "Y70TTv5ZLkk", "readable_id": "reflection-and-mapping-points-example"}, "MABWdzmZFIQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MABWdzmZFIQ.mp4/MABWdzmZFIQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MABWdzmZFIQ.mp4/MABWdzmZFIQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MABWdzmZFIQ.m3u8/MABWdzmZFIQ.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/inverse-tan-scenario/", "duration": 215, "id": "MABWdzmZFIQ", "title": "Inverse tangent scenario", "format": "mp4", "description": "", "slug": "inverse-tan-scenario", "kind": "Video", "video_id": "MABWdzmZFIQ", "keywords": "", "youtube_id": "MABWdzmZFIQ", "readable_id": "inverse-tan-scenario"}, "ByxzlyTmO_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ByxzlyTmO_4.mp4/ByxzlyTmO_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ByxzlyTmO_4.mp4/ByxzlyTmO_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ByxzlyTmO_4.m3u8/ByxzlyTmO_4.m3u8"}, "duration": 538, "id": "ByxzlyTmO_4", "title": "Madison and the War of 1812", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.", "path": "isaacson-with-cheney-khan-academy-lesson-x/", "slug": "isaacson-with-cheney-khan-academy-lesson-x", "kind": "Video", "video_id": "ByxzlyTmO_4", "keywords": "", "youtube_id": "ByxzlyTmO_4", "readable_id": "isaacson-with-cheney-khan-academy-lesson-x"}, "0isM0GF-rMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0isM0GF-rMI.mp4/0isM0GF-rMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0isM0GF-rMI.mp4/0isM0GF-rMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0isM0GF-rMI.m3u8/0isM0GF-rMI.m3u8"}, "duration": 418, "id": "0isM0GF-rMI", "title": "Factors affecting supply", "format": "mp4", "description": "How the price of inputs, price of related goods, number of suppliers technology, and expected future prices affects the supply curve", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/supply-curve-tutorial/factors-affecting-supply/", "slug": "factors-affecting-supply", "kind": "Video", "video_id": "0isM0GF-rMI", "keywords": "economics, supply, demand", "youtube_id": "0isM0GF-rMI", "readable_id": "factors-affecting-supply"}, "TkZ5IywDBnQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TkZ5IywDBnQ.mp4/TkZ5IywDBnQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TkZ5IywDBnQ.mp4/TkZ5IywDBnQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TkZ5IywDBnQ.m3u8/TkZ5IywDBnQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-lung-cancer/lung-cancer-complications/", "duration": 482, "id": "TkZ5IywDBnQ", "title": "Lung cancer complications", "format": "mp4", "description": "Learn how the mass of a tumor, the spread of cancer cells, the immune system\u2019s response, and the hormones released from cancer cells contribute to the complications of lung cancer.", "slug": "lung-cancer-complications", "kind": "Video", "video_id": "TkZ5IywDBnQ", "keywords": "", "youtube_id": "TkZ5IywDBnQ", "readable_id": "lung-cancer-complications"}, "R_aqSL-q6_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R_aqSL-q6_8.mp4/R_aqSL-q6_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R_aqSL-q6_8.mp4/R_aqSL-q6_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R_aqSL-q6_8.m3u8/R_aqSL-q6_8.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-1/", "duration": 605, "id": "R_aqSL-q6_8", "title": "Disc method: Function rotated about x-axis", "format": "mp4", "description": "Figuring out the volume of a function rotated about the x-axis.", "slug": "solid-of-revolution-part-1", "kind": "Video", "video_id": "R_aqSL-q6_8", "keywords": "calculus, volume, rotation", "youtube_id": "R_aqSL-q6_8", "readable_id": "solid-of-revolution-part-1"}, "GvmZQXbWP3g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GvmZQXbWP3g.mp4/GvmZQXbWP3g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GvmZQXbWP3g.mp4/GvmZQXbWP3g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GvmZQXbWP3g.m3u8/GvmZQXbWP3g.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-4/", "duration": 151, "id": "GvmZQXbWP3g", "title": "4 Kay's swimming brothers", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-4", "kind": "Video", "video_id": "GvmZQXbWP3g", "keywords": "", "youtube_id": "GvmZQXbWP3g", "readable_id": "2013-sat-practice-6-4"}, "UA975j_qsTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UA975j_qsTQ.mp4/UA975j_qsTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UA975j_qsTQ.mp4/UA975j_qsTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UA975j_qsTQ.m3u8/UA975j_qsTQ.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-comparing-numbers/count-by-category/", "duration": 44, "id": "UA975j_qsTQ", "title": "Count by category", "format": "mp4", "description": "Learn to count the number of things in different categories.", "slug": "count-by-category", "kind": "Video", "video_id": "UA975j_qsTQ", "keywords": "", "youtube_id": "UA975j_qsTQ", "readable_id": "count-by-category"}, "TEjZlQUuxvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TEjZlQUuxvc.mp4/TEjZlQUuxvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TEjZlQUuxvc.mp4/TEjZlQUuxvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TEjZlQUuxvc.m3u8/TEjZlQUuxvc.m3u8"}, "path": "khan/college-admissions/get-started/importance-of-college/ss-college-expands-opportunities/", "duration": 71, "id": "TEjZlQUuxvc", "title": "Student story: College expands opportunities", "format": "mp4", "description": "", "slug": "ss-college-expands-opportunities", "kind": "Video", "video_id": "TEjZlQUuxvc", "keywords": "", "youtube_id": "TEjZlQUuxvc", "readable_id": "ss-college-expands-opportunities"}, "TpIBLnRAslI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TpIBLnRAslI.mp4/TpIBLnRAslI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TpIBLnRAslI.mp4/TpIBLnRAslI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TpIBLnRAslI.m3u8/TpIBLnRAslI.m3u8"}, "duration": 515, "id": "TpIBLnRAslI", "title": "Angle bisector theorem proof", "format": "mp4", "description": "What the angle bisector theorem is and its proof", "path": "khan/math/geometry/triangle-properties/angle_bisectors/angle-bisector-theorem-proof/", "slug": "angle-bisector-theorem-proof", "kind": "Video", "video_id": "TpIBLnRAslI", "keywords": "Angle, Bisector, Theorem, Proof", "youtube_id": "TpIBLnRAslI", "readable_id": "angle-bisector-theorem-proof"}, "4I_5H5EetEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4I_5H5EetEE.mp4/4I_5H5EetEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4I_5H5EetEE.mp4/4I_5H5EetEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4I_5H5EetEE.m3u8/4I_5H5EetEE.m3u8"}, "duration": 150, "id": "4I_5H5EetEE", "title": "\"Paradox\" with Maryam Ekhtiar", "format": "mp4", "description": "Met curator Maryam Ekhtiar on contradiction in Goa Stone and Gold Case from Goa, India.\n\n\"Goa stones\" were manufactured by Jesuit priests living in Goa, a small province on India\u2019s western coast. They are manmade versions of bezoars (a mixture of gallstones and hairs found in the stomach of deer, sheep, and antelopes) that, when scraped and ingested with tea or water, were supposed to have medicinal properties. Elaborate containers of gold or silver were made for them and they were exported to Europe. An ogival trellis containing a variety of beasts, including unicorns and griffins, overlays the container. The source of these images is likely to have come to Goa through Portuguese influence in the region.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "paradox/", "slug": "paradox", "kind": "Video", "video_id": "4I_5H5EetEE", "keywords": "metal, nature, ornate, shock, stone, vessel, Asia", "youtube_id": "4I_5H5EetEE", "readable_id": "paradox"}, "BE1FK7vDVq0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BE1FK7vDVq0.mp4/BE1FK7vDVq0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BE1FK7vDVq0.mp4/BE1FK7vDVq0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BE1FK7vDVq0.m3u8/BE1FK7vDVq0.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/breaking-integral-interval/", "duration": 186, "id": "BE1FK7vDVq0", "title": "Breaking up integral interval", "format": "mp4", "description": "", "slug": "breaking-integral-interval", "kind": "Video", "video_id": "BE1FK7vDVq0", "keywords": "", "youtube_id": "BE1FK7vDVq0", "readable_id": "breaking-integral-interval"}, "-cApVwKR1Ps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-cApVwKR1Ps.mp4/-cApVwKR1Ps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-cApVwKR1Ps.mp4/-cApVwKR1Ps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-cApVwKR1Ps.m3u8/-cApVwKR1Ps.m3u8"}, "duration": 553, "id": "-cApVwKR1Ps", "title": "Part 2 of the transform of the sin(at)", "format": "mp4", "description": "Part 2 of getting the Laplace transform of sin(at)", "path": "khan/math/differential-equations/laplace-transform/laplace-transform-tutorial/laplace-transform-4/", "slug": "laplace-transform-4", "kind": "Video", "video_id": "-cApVwKR1Ps", "keywords": "Laplace, Transform", "youtube_id": "-cApVwKR1Ps", "readable_id": "laplace-transform-4"}, "0YErxSShF0A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0YErxSShF0A.mp4/0YErxSShF0A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0YErxSShF0A.mp4/0YErxSShF0A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0YErxSShF0A.m3u8/0YErxSShF0A.m3u8"}, "duration": 271, "id": "0YErxSShF0A", "title": "Compound inequalities", "format": "mp4", "description": "Compound Inequalities", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/compund-inequalities/", "slug": "compund-inequalities", "kind": "Video", "video_id": "0YErxSShF0A", "keywords": "u10_l3_t1_we1, Compund, Inequalities", "youtube_id": "0YErxSShF0A", "readable_id": "compund-inequalities"}, "9KR1bad76qg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9KR1bad76qg.mp4/9KR1bad76qg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9KR1bad76qg.mp4/9KR1bad76qg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9KR1bad76qg.m3u8/9KR1bad76qg.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/institutions/", "duration": 207, "id": "9KR1bad76qg", "title": "Social institutions", "format": "mp4", "description": "Institutions are structures of society that fulfill the needs of the society. Not only are they essential to the society's needs, they also help to build the society itself. By Sydney Brown.", "slug": "institutions", "kind": "Video", "video_id": "9KR1bad76qg", "keywords": "social institutions", "youtube_id": "9KR1bad76qg", "readable_id": "institutions"}, "0OloYD_kSbU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0OloYD_kSbU.mp4/0OloYD_kSbU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0OloYD_kSbU.mp4/0OloYD_kSbU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0OloYD_kSbU.m3u8/0OloYD_kSbU.m3u8"}, "path": "khan/test-prep/ap-art-history/introduction-ap-arthistory/why-look-at-art/", "duration": 116, "id": "0OloYD_kSbU", "title": "Why look at art?", "format": "mp4", "description": "Why look at art? This was the question we posed to several of our colleagues at a conference for museum professionals. Special thanks to Laura Mann, Anna Velez, an anonymous professional, and David Torgersen whose voices and insights are included here.", "slug": "why-look-at-art", "kind": "Video", "video_id": "0OloYD_kSbU", "keywords": "", "youtube_id": "0OloYD_kSbU", "readable_id": "why-look-at-art"}, "baifq1b1-i4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/baifq1b1-i4.mp4/baifq1b1-i4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/baifq1b1-i4.mp4/baifq1b1-i4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/baifq1b1-i4.m3u8/baifq1b1-i4.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/cranach-altdorfer/lucas-cranach-the-elder-cupid-complaining-to-venus-c-1525/", "duration": 174, "id": "baifq1b1-i4", "title": "Cranach the Elder, Cupid complaining to Venus", "format": "mp4", "description": "Lucas Cranach the Elder, Cupid complaining to Venus, c. 1525, oil on wood, 81.3 x 54.6 cm (The National Gallery, London)", "slug": "lucas-cranach-the-elder-cupid-complaining-to-venus-c-1525", "kind": "Video", "video_id": "baifq1b1-i4", "keywords": "National Gallery, London, Khan Academy, smarthistory, art history, Google Art Project, OER, Lucas Cranach the Elder, Cranach, Cupid complaining to Venus, Cupid, Venus, complaining", "youtube_id": "baifq1b1-i4", "readable_id": "lucas-cranach-the-elder-cupid-complaining-to-venus-c-1525"}, "3B-V_pG3HPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3B-V_pG3HPQ.mp4/3B-V_pG3HPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3B-V_pG3HPQ.mp4/3B-V_pG3HPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3B-V_pG3HPQ.m3u8/3B-V_pG3HPQ.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/fra-angelico-the-annunciation-c-1438-47/", "duration": 697, "id": "3B-V_pG3HPQ", "title": "Fra Angelico, The Annunciation", "format": "mp4", "description": "Fra Angelico, The Annunciation, c. 1438-47, fresco, 230 x 321 cm (Convent of San Marco, Florence). \u00a0Speakers: Dr Beth Harris and Dr. Steven Zucker", "slug": "fra-angelico-the-annunciation-c-1438-47", "kind": "Video", "video_id": "3B-V_pG3HPQ", "keywords": "art history, smarthistory, Fra Angelico, San Marco", "youtube_id": "3B-V_pG3HPQ", "readable_id": "fra-angelico-the-annunciation-c-1438-47"}, "X872rmThCF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X872rmThCF8.mp4/X872rmThCF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X872rmThCF8.mp4/X872rmThCF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X872rmThCF8.m3u8/X872rmThCF8.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/classical/caryatid-ionic-column-erechtheion-421-407-b-c-e/", "duration": 254, "id": "X872rmThCF8", "title": "Caryatid and column from the Erechtheion", "format": "mp4", "description": "Caryatid (South Porch) and Ionic Column (North Porch), Erechtheion on the Acropolis, Athens, marble, 421-407 B.C.E., Classical Period (British Museum, London); Mnesicles may have been the architect. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "caryatid-ionic-column-erechtheion-421-407-b-c-e", "kind": "Video", "video_id": "X872rmThCF8", "keywords": "athens, acropolis, erectheion, elgin marbles, british museum, Parthenon", "youtube_id": "X872rmThCF8", "readable_id": "caryatid-ionic-column-erechtheion-421-407-b-c-e"}, "u6zDpUL5RkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u6zDpUL5RkU.mp4/u6zDpUL5RkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u6zDpUL5RkU.mp4/u6zDpUL5RkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u6zDpUL5RkU.m3u8/u6zDpUL5RkU.m3u8"}, "duration": 641, "id": "u6zDpUL5RkU", "title": "Absolute value equations", "format": "mp4", "description": "Absolute Value Equations", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute-value-equations/", "slug": "absolute-value-equations", "kind": "Video", "video_id": "u6zDpUL5RkU", "keywords": "Absolute, Value, Equations", "youtube_id": "u6zDpUL5RkU", "readable_id": "absolute-value-equations"}, "Qw6NOFJCI8Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qw6NOFJCI8Q.mp4/Qw6NOFJCI8Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qw6NOFJCI8Q.mp4/Qw6NOFJCI8Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qw6NOFJCI8Q.m3u8/Qw6NOFJCI8Q.m3u8"}, "duration": 249, "id": "Qw6NOFJCI8Q", "title": "Conserving old master drawings: a balancing act", "format": "mp4", "description": "A paper conservator balances the historical integrity of a drawing while preserving the appearance intended by the artist. Watch a Getty conservator analyze and treat an old master drawing. Love art? Follow us on Google+", "path": "conserving-old-master-drawings-balancing-act/", "slug": "conserving-old-master-drawings-balancing-act", "kind": "Video", "video_id": "Qw6NOFJCI8Q", "keywords": "", "youtube_id": "Qw6NOFJCI8Q", "readable_id": "conserving-old-master-drawings-balancing-act"}, "iUzfsUOl3-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iUzfsUOl3-A.mp4/iUzfsUOl3-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iUzfsUOl3-A.mp4/iUzfsUOl3-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iUzfsUOl3-A.m3u8/iUzfsUOl3-A.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-2/", "duration": 451, "id": "iUzfsUOl3-A", "title": "Disc method (rotating f(x) about x axis)", "format": "mp4", "description": "The volume of y=sqrt(x) between x=0 and x=1 rotated around x-axis", "slug": "solid-of-revolution-part-2", "kind": "Video", "video_id": "iUzfsUOl3-A", "keywords": "volume, of, rotation, calculus, math", "youtube_id": "iUzfsUOl3-A", "readable_id": "solid-of-revolution-part-2"}, "u-jigaMJT10": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u-jigaMJT10.mp4/u-jigaMJT10.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u-jigaMJT10.mp4/u-jigaMJT10.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u-jigaMJT10.m3u8/u-jigaMJT10.m3u8"}, "duration": 343, "id": "u-jigaMJT10", "title": "Capacitors and capacitance", "format": "mp4", "description": "A basic overview of capacitors and capacitance. By David Santo Pietro. ", "path": "khan/test-prep/mcat/physical-processes/capacitors/capacitors-and-capacitance/", "slug": "capacitors-and-capacitance", "kind": "Video", "video_id": "u-jigaMJT10", "keywords": "", "youtube_id": "u-jigaMJT10", "readable_id": "capacitors-and-capacitance"}, "YEEbMd2AGag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YEEbMd2AGag.mp4/YEEbMd2AGag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YEEbMd2AGag.mp4/YEEbMd2AGag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YEEbMd2AGag.m3u8/YEEbMd2AGag.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e2-elimination-mechanism/", "duration": 448, "id": "YEEbMd2AGag", "title": "E2 elimination: Mechanism", "format": "mp4", "description": "", "slug": "e2-elimination-mechanism", "kind": "Video", "video_id": "YEEbMd2AGag", "keywords": "", "youtube_id": "YEEbMd2AGag", "readable_id": "e2-elimination-mechanism"}, "03Y76Q7tlSw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/03Y76Q7tlSw.mp4/03Y76Q7tlSw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/03Y76Q7tlSw.mp4/03Y76Q7tlSw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/03Y76Q7tlSw.m3u8/03Y76Q7tlSw.m3u8"}, "duration": 343, "id": "03Y76Q7tlSw", "title": "Polynomial end behavior example", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/polynomial-end-behavior/polynomial-end-behavior-example/", "slug": "polynomial-end-behavior-example", "kind": "Video", "video_id": "03Y76Q7tlSw", "keywords": "", "youtube_id": "03Y76Q7tlSw", "readable_id": "polynomial-end-behavior-example"}, "fYQ3GRSu4JU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fYQ3GRSu4JU.mp4/fYQ3GRSu4JU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fYQ3GRSu4JU.mp4/fYQ3GRSu4JU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fYQ3GRSu4JU.m3u8/fYQ3GRSu4JU.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/rotation-by-radians-and-quadrants/", "duration": 231, "id": "fYQ3GRSu4JU", "title": "Rotation by radians and quadrants", "format": "mp4", "description": "", "slug": "rotation-by-radians-and-quadrants", "kind": "Video", "video_id": "fYQ3GRSu4JU", "keywords": "", "youtube_id": "fYQ3GRSu4JU", "readable_id": "rotation-by-radians-and-quadrants"}, "FsE3QvWqeqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FsE3QvWqeqs.mp4/FsE3QvWqeqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FsE3QvWqeqs.mp4/FsE3QvWqeqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FsE3QvWqeqs.m3u8/FsE3QvWqeqs.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/genetics-and-parkinsons-disease/", "duration": 723, "id": "FsE3QvWqeqs", "title": "Genetics and Parkinson's disease", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "genetics-and-parkinsons-disease", "kind": "Video", "video_id": "FsE3QvWqeqs", "keywords": "", "youtube_id": "FsE3QvWqeqs", "readable_id": "genetics-and-parkinsons-disease"}, "QKUOYpsbROk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QKUOYpsbROk.mp4/QKUOYpsbROk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QKUOYpsbROk.mp4/QKUOYpsbROk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QKUOYpsbROk.m3u8/QKUOYpsbROk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-lung-cancer/lung-cancer-types/", "duration": 345, "id": "QKUOYpsbROk", "title": "Lung cancer types", "format": "mp4", "description": "There are several different types of lung cancer, such as small cell lung cancer, non-small cell lung cancer, adenocarcinoma, squamous cell carcinoma, large cell carcinoma, and carcinoid . Learn how each type of lung cancer occurs, and how common they are amongst other lung cancers.", "slug": "lung-cancer-types", "kind": "Video", "video_id": "QKUOYpsbROk", "keywords": "", "youtube_id": "QKUOYpsbROk", "readable_id": "lung-cancer-types"}, "77CApfQlTuE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/77CApfQlTuE.mp4/77CApfQlTuE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/77CApfQlTuE.mp4/77CApfQlTuE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/77CApfQlTuE.m3u8/77CApfQlTuE.m3u8"}, "duration": 344, "id": "77CApfQlTuE", "title": "Monopoly basics", "format": "mp4", "description": "Thinking about what would happen with one airline. The opposite of perfect competition", "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolies-tutorial/monopoly-basics/", "slug": "monopoly-basics", "kind": "Video", "video_id": "77CApfQlTuE", "keywords": "microeconomics", "youtube_id": "77CApfQlTuE", "readable_id": "monopoly-basics"}, "dsvLLKQCxeA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dsvLLKQCxeA.mp4/dsvLLKQCxeA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dsvLLKQCxeA.mp4/dsvLLKQCxeA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dsvLLKQCxeA.m3u8/dsvLLKQCxeA.m3u8"}, "duration": 560, "id": "dsvLLKQCxeA", "title": "Doodling in math: Dragon dungeons", "format": "mp4", "description": "", "path": "khan/math/recreational-math/vi-hart/doodling-in-math/dragondungeons/", "slug": "dragondungeons", "kind": "Video", "video_id": "dsvLLKQCxeA", "keywords": "", "youtube_id": "dsvLLKQCxeA", "readable_id": "dragondungeons"}, "GH8-URjRQpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GH8-URjRQpQ.mp4/GH8-URjRQpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GH8-URjRQpQ.mp4/GH8-URjRQpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GH8-URjRQpQ.m3u8/GH8-URjRQpQ.m3u8"}, "duration": 437, "id": "GH8-URjRQpQ", "title": "Equation of tangent line example 1", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/normal-tangent-line-eq/tangent-line-equation-example-1/", "slug": "tangent-line-equation-example-1", "kind": "Video", "video_id": "GH8-URjRQpQ", "keywords": "", "youtube_id": "GH8-URjRQpQ", "readable_id": "tangent-line-equation-example-1"}, "P7mCn-_BDH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P7mCn-_BDH4.mp4/P7mCn-_BDH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P7mCn-_BDH4.mp4/P7mCn-_BDH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P7mCn-_BDH4.m3u8/P7mCn-_BDH4.m3u8"}, "duration": 211, "id": "P7mCn-_BDH4", "title": "Conflict, time, and photography", "format": "mp4", "description": "This video brought to you by Tate.org.uk.\n\nBroadcaster and historian Dan Snow introduces an exhibition that explores the way photographs capture the lasting effects of conflicts, both in the moments after acts of violence are committed and many years later. Because they can bear withness to and capture life very nearly as we see it, photography has a unique relationship to reality among the arts. This can be seen in the evolution of photography from pure reportage to more creative forms of documentation. While the photographs in this exhibition serve to document and give proof to instances of conflict, very rarely do they show it explicitly: in some photos there isn\u2019t a single weapon, just the faces of those who served as witnesses to a trauma. By showing what no longer is there, they document and immortalise the effects of violence on the landscape, human body, and psyche, from shell-shocked soldiers in Vietnam to empty fields in Flanders.\n\nPhotographs have the power to document, to capture images and the lingering effects of events on places and people. What else can photographs encapsulate, depict, or relay?\n", "path": "dan-snow-on-conflict/", "slug": "dan-snow-on-conflict", "kind": "Video", "video_id": "P7mCn-_BDH4", "keywords": "Tate", "youtube_id": "P7mCn-_BDH4", "readable_id": "dan-snow-on-conflict"}, "GpwAsXrBJ-Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GpwAsXrBJ-Q.mp4/GpwAsXrBJ-Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GpwAsXrBJ-Q.mp4/GpwAsXrBJ-Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GpwAsXrBJ-Q.m3u8/GpwAsXrBJ-Q.m3u8"}, "path": "khan/humanities/art-1010/pop/lichtenstein-rouen-cathedral-set-v-1969/", "duration": 190, "id": "GpwAsXrBJ-Q", "title": "Lichtenstein, Rouen Cathedral Set V", "format": "mp4", "description": "Roy Lichtenstein, Rouen Cathedral Set V, 1969, oil and magna on canvas, 3 canvases: 63-5/8 x 141-7/8 x 1-3/4 inches or 161.61 x 360.36 x 4.45 cm (SFMOMA) Speakers: Dr,. Beth Harris and Dr. Steven Zucker For more: http://www.smarthistory.org/lichtensteins-rouen-cathedral-set-v.html", "slug": "lichtenstein-rouen-cathedral-set-v-1969", "kind": "Video", "video_id": "GpwAsXrBJ-Q", "keywords": "Lichtenstein, Rouen, Art History, Smarthistory, Pop Art", "youtube_id": "GpwAsXrBJ-Q", "readable_id": "lichtenstein-rouen-cathedral-set-v-1969"}, "k9cj_rZO448": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k9cj_rZO448.mp4/k9cj_rZO448.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k9cj_rZO448.mp4/k9cj_rZO448.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k9cj_rZO448.m3u8/k9cj_rZO448.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/ruffinis-ending-and-hair-follicle-receptor-2/", "duration": 452, "id": "k9cj_rZO448", "title": "Ruffini's Ending and Hair Follicle Receptor", "format": "mp4", "description": "", "slug": "ruffinis-ending-and-hair-follicle-receptor-2", "kind": "Video", "video_id": "k9cj_rZO448", "keywords": "", "youtube_id": "k9cj_rZO448", "readable_id": "ruffinis-ending-and-hair-follicle-receptor-2"}, "yA-NYmO8dDk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yA-NYmO8dDk.mp4/yA-NYmO8dDk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yA-NYmO8dDk.mp4/yA-NYmO8dDk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yA-NYmO8dDk.m3u8/yA-NYmO8dDk.m3u8"}, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/benjamin-franklin-writer/", "duration": 449, "id": "yA-NYmO8dDk", "title": "Benjamin Franklin becomes a writer", "format": "mp4", "description": "In this video, Sal and Aspen Institute President and CEO Walter Isaacson discuss Benjamin Franklin the writer.\u00a0", "slug": "benjamin-franklin-writer", "kind": "Video", "video_id": "yA-NYmO8dDk", "keywords": "", "youtube_id": "yA-NYmO8dDk", "readable_id": "benjamin-franklin-writer"}, "dfZ9_vFwCA4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dfZ9_vFwCA4.mp4/dfZ9_vFwCA4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dfZ9_vFwCA4.mp4/dfZ9_vFwCA4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dfZ9_vFwCA4.m3u8/dfZ9_vFwCA4.m3u8"}, "duration": 451, "id": "dfZ9_vFwCA4", "title": "Derivation of gas constants using molar volume and STP", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/gas-phase/derivation-of-gas-constants-using-molar-volume-and-stp/", "slug": "derivation-of-gas-constants-using-molar-volume-and-stp", "kind": "Video", "video_id": "dfZ9_vFwCA4", "keywords": "", "youtube_id": "dfZ9_vFwCA4", "readable_id": "derivation-of-gas-constants-using-molar-volume-and-stp"}, "-nrSCokEUXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-nrSCokEUXg.mp4/-nrSCokEUXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-nrSCokEUXg.mp4/-nrSCokEUXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-nrSCokEUXg.m3u8/-nrSCokEUXg.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/hesse-untitled-rope-piece-1970/", "duration": 226, "id": "-nrSCokEUXg", "title": "Hesse, Untitled (Rope Piece)", "format": "mp4", "description": "Eva Hesse, Untitled (Rope Piece), 1970, rope, latex, string, wire, variable dimensions (Whitney Museum of American Art) Speakers: Dr. Beth Harris and Dr. Steven Zucker For more: http://smarthistory.org/untitled-rope-piece.html", "slug": "hesse-untitled-rope-piece-1970", "kind": "Video", "video_id": "-nrSCokEUXg", "keywords": "Hesse, Art History, Smarthistory", "youtube_id": "-nrSCokEUXg", "readable_id": "hesse-untitled-rope-piece-1970"}, "45qlm6cfHgg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/45qlm6cfHgg.mp4/45qlm6cfHgg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/45qlm6cfHgg.mp4/45qlm6cfHgg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/45qlm6cfHgg.m3u8/45qlm6cfHgg.m3u8"}, "duration": 189, "id": "45qlm6cfHgg", "title": "Aging and cognitive abilities", "format": "mp4", "description": "Learn about how cognitive abilities change as we age.", "path": "khan/test-prep/mcat/processing-the-environment/memory/aging-and-cognitive-abilities/", "slug": "aging-and-cognitive-abilities", "kind": "Video", "video_id": "45qlm6cfHgg", "keywords": "", "youtube_id": "45qlm6cfHgg", "readable_id": "aging-and-cognitive-abilities"}, "_SpE4hQ8D_o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_SpE4hQ8D_o.mp4/_SpE4hQ8D_o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_SpE4hQ8D_o.mp4/_SpE4hQ8D_o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_SpE4hQ8D_o.m3u8/_SpE4hQ8D_o.m3u8"}, "duration": 594, "id": "_SpE4hQ8D_o", "title": "Taking percentages", "format": "mp4", "description": "Taking a percentage of a number.", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/taking-percentages/", "slug": "taking-percentages", "kind": "Video", "video_id": "_SpE4hQ8D_o", "keywords": "Percent, math, algebra, khan, CC_6_RP_3_c, CC_7_RP_3", "youtube_id": "_SpE4hQ8D_o", "readable_id": "taking-percentages"}, "VX7K8iqoiRc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VX7K8iqoiRc.mp4/VX7K8iqoiRc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VX7K8iqoiRc.mp4/VX7K8iqoiRc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VX7K8iqoiRc.m3u8/VX7K8iqoiRc.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-upper-triangular-determinant/", "duration": 487, "id": "VX7K8iqoiRc", "title": "Upper triangular determinant", "format": "mp4", "description": "The determinant of an upper triangular matrix", "slug": "linear-algebra-upper-triangular-determinant", "kind": "Video", "video_id": "VX7K8iqoiRc", "keywords": "linear, algebra, determinant", "youtube_id": "VX7K8iqoiRc", "readable_id": "linear-algebra-upper-triangular-determinant"}, "zNlL0M4jWaw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zNlL0M4jWaw.mp4/zNlL0M4jWaw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zNlL0M4jWaw.mp4/zNlL0M4jWaw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zNlL0M4jWaw.m3u8/zNlL0M4jWaw.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-learning-environments/sscc-blended-labnav/", "duration": 144, "id": "zNlL0M4jWaw", "title": "Redesigning the school day at Navigator Schools using a lab rotation model", "format": "mp4", "description": "", "slug": "sscc-blended-labnav", "kind": "Video", "video_id": "zNlL0M4jWaw", "keywords": "", "youtube_id": "zNlL0M4jWaw", "readable_id": "sscc-blended-labnav"}, "sU5MCM3npXU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sU5MCM3npXU.mp4/sU5MCM3npXU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sU5MCM3npXU.mp4/sU5MCM3npXU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sU5MCM3npXU.m3u8/sU5MCM3npXU.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/differential-equations-intro/differential-equation-from-slope-field/", "duration": 371, "id": "sU5MCM3npXU", "title": "Differential equation from slope field", "format": "mp4", "description": "", "slug": "differential-equation-from-slope-field", "kind": "Video", "video_id": "sU5MCM3npXU", "keywords": "", "youtube_id": "sU5MCM3npXU", "readable_id": "differential-equation-from-slope-field"}, "Qf3RMGXR-h8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qf3RMGXR-h8.mp4/Qf3RMGXR-h8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qf3RMGXR-h8.mp4/Qf3RMGXR-h8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qf3RMGXR-h8.m3u8/Qf3RMGXR-h8.m3u8"}, "path": "khan/math/probability/descriptive-statistics/old-stats-videos/statistics-sample-variance/", "duration": 678, "id": "Qf3RMGXR-h8", "title": "Statistics: Sample variance", "format": "mp4", "description": "Using the variance of a sample to estimate the variance of a population", "slug": "statistics-sample-variance", "kind": "Video", "video_id": "Qf3RMGXR-h8", "keywords": "statistics, sample, variance, estimator, CC_6_SP_3, CC_6_SP_4, CC_6_SP_5_a, CC_6_SP_5_c, CC_7_SP_1", "youtube_id": "Qf3RMGXR-h8", "readable_id": "statistics-sample-variance"}, "GKsygFxt4XI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GKsygFxt4XI.mp4/GKsygFxt4XI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GKsygFxt4XI.mp4/GKsygFxt4XI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GKsygFxt4XI.m3u8/GKsygFxt4XI.m3u8"}, "duration": 48, "id": "GKsygFxt4XI", "title": "How fast were dinosaurs?", "format": "mp4", "description": "Trying to estimate the speed of animals dead for more than 65 million years is difficult, but some generalizations are rather clear from the shape and size of dinosaur skeletons. For example, immense sauropods, such as Apatosaurus and Diplodocus with their massive bodies and columnar leg structure, were probably not fast runners other than in short bursts. Conversely, lighter and relatively long-limbed theropods, such as Velociraptor and ornithomimids (or \"ostrich-mimic dinosaurs) were probably capable of running at high, sustained speeds. Explore the relative speed of dinosaurs.", "path": "how-fast-dinosaurs/", "slug": "how-fast-dinosaurs", "kind": "Video", "video_id": "GKsygFxt4XI", "keywords": "", "youtube_id": "GKsygFxt4XI", "readable_id": "how-fast-dinosaurs"}, "Rsi5mzEaCPw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rsi5mzEaCPw.mp4/Rsi5mzEaCPw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rsi5mzEaCPw.mp4/Rsi5mzEaCPw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rsi5mzEaCPw.m3u8/Rsi5mzEaCPw.m3u8"}, "duration": 693, "id": "Rsi5mzEaCPw", "title": "Exploring medial triangles", "format": "mp4", "description": "What a medial triangle is and its properties", "path": "khan/math/geometry/triangle-properties/medians_centroids/exploring-medial-triangles/", "slug": "exploring-medial-triangles", "kind": "Video", "video_id": "Rsi5mzEaCPw", "keywords": "geometry", "youtube_id": "Rsi5mzEaCPw", "readable_id": "exploring-medial-triangles"}, "NEaLgGi4Vh4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NEaLgGi4Vh4.mp4/NEaLgGi4Vh4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NEaLgGi4Vh4.mp4/NEaLgGi4Vh4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NEaLgGi4Vh4.m3u8/NEaLgGi4Vh4.m3u8"}, "duration": 181, "id": "NEaLgGi4Vh4", "title": "Evaluating exponential expressions 2", "format": "mp4", "description": "Evaluating exponential expressions 2", "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/evaluating-exponential-expressions-2/", "slug": "evaluating-exponential-expressions-2", "kind": "Video", "video_id": "NEaLgGi4Vh4", "keywords": "u11_l1_t1_we2, Evaluating, exponential, expressions, CC_6_EE_1, CC_6_EE_2, CC_6_EE_2_c, CC_8_EE_1, CC_39336_A-CED_1", "youtube_id": "NEaLgGi4Vh4", "readable_id": "evaluating-exponential-expressions-2"}, "Pgq0LThW7QA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pgq0LThW7QA.mp4/Pgq0LThW7QA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pgq0LThW7QA.mp4/Pgq0LThW7QA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pgq0LThW7QA.m3u8/Pgq0LThW7QA.m3u8"}, "duration": 339, "id": "Pgq0LThW7QA", "title": "Earth's Tilt 1: The Reason for the Seasons", "format": "mp4", "description": "How can it be summer in North America and winter in Australia at the same time?!\n\nLicense: Creative Commons BY-NC-SA\nMore information at http://k12videos.mit.edu/terms-conditions", "path": "earth-s-tilt-1-the-reason-for-the-seasons/", "slug": "earth-s-tilt-1-the-reason-for-the-seasons", "kind": "Video", "video_id": "Pgq0LThW7QA", "keywords": "", "youtube_id": "Pgq0LThW7QA", "readable_id": "earth-s-tilt-1-the-reason-for-the-seasons"}, "XFuFxgbnkaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XFuFxgbnkaM.mp4/XFuFxgbnkaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XFuFxgbnkaM.mp4/XFuFxgbnkaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XFuFxgbnkaM.m3u8/XFuFxgbnkaM.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-20/", "duration": 712, "id": "XFuFxgbnkaM", "title": "GMAT: Data sufficiency 20", "format": "mp4", "description": "87-90, pg. 285", "slug": "gmat-data-sufficiency-20", "kind": "Video", "video_id": "XFuFxgbnkaM", "keywords": "gmat, data, sufficiency, math", "youtube_id": "XFuFxgbnkaM", "readable_id": "gmat-data-sufficiency-20"}, "W0VWO4asgmk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W0VWO4asgmk.mp4/W0VWO4asgmk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W0VWO4asgmk.mp4/W0VWO4asgmk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W0VWO4asgmk.m3u8/W0VWO4asgmk.m3u8"}, "duration": 457, "id": "W0VWO4asgmk", "title": "Introduction to limits", "format": "mp4", "description": "Introduction to the intuition behind limits", "path": "khan/math/differential-calculus/limits_topic/old-limits-tutorial/introduction-to-limits/", "slug": "introduction-to-limits", "kind": "Video", "video_id": "W0VWO4asgmk", "keywords": "calculus, math, limit, limits, khan, academy, CC_39336_A-CED_2, CC_39336_F-BF_1, CC_39336_F-BF_1_c, CC_39336_F-IF_2, CC_39336_F-IF_7", "youtube_id": "W0VWO4asgmk", "readable_id": "introduction-to-limits"}, "An46SYAxhtc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/An46SYAxhtc.mp4/An46SYAxhtc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/An46SYAxhtc.mp4/An46SYAxhtc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/An46SYAxhtc.m3u8/An46SYAxhtc.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-make-10/getting-to-10-by-filling-boxes/", "duration": 114, "id": "An46SYAxhtc", "title": "Getting to 10 by filling boxes", "format": "mp4", "description": "Learn how to add two numbers to make 10. This video shows two examples: 3 + ___ = 10 and 6 + ___ = 10.", "slug": "getting-to-10-by-filling-boxes", "kind": "Video", "video_id": "An46SYAxhtc", "keywords": "", "youtube_id": "An46SYAxhtc", "readable_id": "getting-to-10-by-filling-boxes"}, "dmcVzFbXMCU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dmcVzFbXMCU.mp4/dmcVzFbXMCU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dmcVzFbXMCU.mp4/dmcVzFbXMCU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dmcVzFbXMCU.m3u8/dmcVzFbXMCU.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/solving-ratio-problems-with-tables-exercise-3/", "duration": 94, "id": "dmcVzFbXMCU", "title": "Solving ratio problems with graph", "format": "mp4", "description": "In this example we'll plot points on the x and y axis to reflect the given ratios.", "slug": "solving-ratio-problems-with-tables-exercise-3", "kind": "Video", "video_id": "dmcVzFbXMCU", "keywords": "", "youtube_id": "dmcVzFbXMCU", "readable_id": "solving-ratio-problems-with-tables-exercise-3"}, "W-huWpNU-9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W-huWpNU-9w.mp4/W-huWpNU-9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W-huWpNU-9w.mp4/W-huWpNU-9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W-huWpNU-9w.m3u8/W-huWpNU-9w.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/fauvism-matisse/henri-matisse-the-red-studio-1911/", "duration": 551, "id": "W-huWpNU-9w", "title": "Matisse, The Red Studio", "format": "mp4", "description": "Henri Matisse, The Red Studio, oil on canvas, 1911 (MoMA)", "slug": "henri-matisse-the-red-studio-1911", "kind": "Video", "video_id": "W-huWpNU-9w", "keywords": "matisse, MoMA, Smarthistory, art, art history, Fauvism", "youtube_id": "W-huWpNU-9w", "readable_id": "henri-matisse-the-red-studio-1911"}, "bflHwVKgRNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bflHwVKgRNE.mp4/bflHwVKgRNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bflHwVKgRNE.mp4/bflHwVKgRNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bflHwVKgRNE.m3u8/bflHwVKgRNE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/breast-anatomy-and-lactation/", "duration": 443, "id": "bflHwVKgRNE", "title": "Breast anatomy and lactation", "format": "mp4", "description": "", "slug": "breast-anatomy-and-lactation", "kind": "Video", "video_id": "bflHwVKgRNE", "keywords": "", "youtube_id": "bflHwVKgRNE", "readable_id": "breast-anatomy-and-lactation"}, "ZoiY6ZLEKaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZoiY6ZLEKaY.mp4/ZoiY6ZLEKaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZoiY6ZLEKaY.mp4/ZoiY6ZLEKaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZoiY6ZLEKaY.m3u8/ZoiY6ZLEKaY.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/durer/albrecht-d-rer-self-portrait-1500/", "duration": 204, "id": "ZoiY6ZLEKaY", "title": "D\u00fcrer, Self-portrait (1500)", "format": "mp4", "description": "Albrecht D\u00fcrer, Self-Portrait, 1500 (Alte Pinakothek, Munich)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "albrecht-d-rer-self-portrait-1500", "kind": "Video", "video_id": "ZoiY6ZLEKaY", "keywords": "", "youtube_id": "ZoiY6ZLEKaY", "readable_id": "albrecht-d-rer-self-portrait-1500"}, "AxHAQ5l45FE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AxHAQ5l45FE.mp4/AxHAQ5l45FE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AxHAQ5l45FE.mp4/AxHAQ5l45FE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AxHAQ5l45FE.m3u8/AxHAQ5l45FE.m3u8"}, "duration": 287, "id": "AxHAQ5l45FE", "title": "Find the volume of rectangles inside rectangles", "format": "mp4", "description": "How many crates can we fit into a boxcar? We'll explain that there's more than one way to solve for the volume in this problem.", "path": "crates-in-boxcar/", "slug": "crates-in-boxcar", "kind": "Video", "video_id": "AxHAQ5l45FE", "keywords": "", "youtube_id": "AxHAQ5l45FE", "readable_id": "crates-in-boxcar"}, "beU3xkhwgs4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/beU3xkhwgs4.mp4/beU3xkhwgs4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/beU3xkhwgs4.mp4/beU3xkhwgs4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/beU3xkhwgs4.m3u8/beU3xkhwgs4.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/jannis-kounellis/", "duration": 109, "id": "beU3xkhwgs4", "title": "Jannis Kounellis, \"Da inventare sul posto (To invent on the spot)\"", "format": "mp4", "description": "Watch Jannis Kounellis combine painting music and dance.\u00a0To learn more about what artists have to say, take our online course,\u00a0Modern and Contemporary Art, 1945-1989.", "slug": "jannis-kounellis", "kind": "Video", "video_id": "beU3xkhwgs4", "keywords": "", "youtube_id": "beU3xkhwgs4", "readable_id": "jannis-kounellis"}, "UH7eOrP64q4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UH7eOrP64q4.mp4/UH7eOrP64q4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UH7eOrP64q4.mp4/UH7eOrP64q4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UH7eOrP64q4.m3u8/UH7eOrP64q4.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/dramaturgical-approach/", "duration": 212, "id": "UH7eOrP64q4", "title": "Dramaturgical approach", "format": "mp4", "description": "", "slug": "dramaturgical-approach", "kind": "Video", "video_id": "UH7eOrP64q4", "keywords": "", "youtube_id": "UH7eOrP64q4", "readable_id": "dramaturgical-approach"}, "CBEys2CTkgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CBEys2CTkgE.mp4/CBEys2CTkgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CBEys2CTkgE.mp4/CBEys2CTkgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CBEys2CTkgE.m3u8/CBEys2CTkgE.m3u8"}, "duration": 421, "id": "CBEys2CTkgE", "title": "Phospholipid structure", "format": "mp4", "description": "Learn about the detailed structure of phospholipids in the cell membrane. By Willaim Tsai. ", "path": "khan/test-prep/mcat/cells/cell-membrane-overview/phospholipid-structure/", "slug": "phospholipid-structure", "kind": "Video", "video_id": "CBEys2CTkgE", "keywords": "", "youtube_id": "CBEys2CTkgE", "readable_id": "phospholipid-structure"}, "w8QRG-Xc6oU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w8QRG-Xc6oU.mp4/w8QRG-Xc6oU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w8QRG-Xc6oU.mp4/w8QRG-Xc6oU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w8QRG-Xc6oU.m3u8/w8QRG-Xc6oU.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/part-1-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220/", "duration": 352, "id": "w8QRG-Xc6oU", "title": "Cathedral of Notre Dame de Chartres (part 1)", "format": "mp4", "description": "Part 1: Cathedral of Notre Dame de Chartres, c.1145 and 1194-c.1220 This video (1 of 3), focuses on the cathedral's pre-Gothic history, its sacred relic, and the westwerk's royal portal and jamb figures Speakers: Dr. Beth Harris and Dr. Steven Zucker For more: http://smarthistory.org/Gothic.html", "slug": "part-1-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220", "kind": "Video", "video_id": "w8QRG-Xc6oU", "keywords": "Chartres, Gothic, Art History, Smarthistory", "youtube_id": "w8QRG-Xc6oU", "readable_id": "part-1-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220"}, "YoHhP6a_3GY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YoHhP6a_3GY.mp4/YoHhP6a_3GY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YoHhP6a_3GY.mp4/YoHhP6a_3GY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YoHhP6a_3GY.m3u8/YoHhP6a_3GY.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/bottle-rocket-apps/calvin-carter-1/", "duration": 158, "id": "YoHhP6a_3GY", "title": "A 2 a.m. wake up call", "format": "mp4", "description": "", "slug": "calvin-carter-1", "kind": "Video", "video_id": "YoHhP6a_3GY", "keywords": "", "youtube_id": "YoHhP6a_3GY", "readable_id": "calvin-carter-1"}, "5CBs36jtZxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5CBs36jtZxY.mp4/5CBs36jtZxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5CBs36jtZxY.mp4/5CBs36jtZxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5CBs36jtZxY.m3u8/5CBs36jtZxY.m3u8"}, "path": "khan/science/chemistry/periodic-table/periodic-table-trends-bonding/ionization-energy-trends/", "duration": 602, "id": "5CBs36jtZxY", "title": "Ionization energy trends", "format": "mp4", "description": "", "slug": "ionization-energy-trends", "kind": "Video", "video_id": "5CBs36jtZxY", "keywords": "", "youtube_id": "5CBs36jtZxY", "readable_id": "ionization-energy-trends"}, "CLrImGKeuEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CLrImGKeuEI.mp4/CLrImGKeuEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CLrImGKeuEI.mp4/CLrImGKeuEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CLrImGKeuEI.m3u8/CLrImGKeuEI.m3u8"}, "duration": 400, "id": "CLrImGKeuEI", "title": "Example 2: Using the quadratic formula", "format": "mp4", "description": "Quadratic Formula 2", "path": "khan/math/algebra/quadratics/quadratic-formula/quadratic-formula-2/", "slug": "quadratic-formula-2", "kind": "Video", "video_id": "CLrImGKeuEI", "keywords": "U10_L1_T3_we2, Quadratic, Formula, CC_39336_A-REI_4", "youtube_id": "CLrImGKeuEI", "readable_id": "quadratic-formula-2"}, "EQvTEFCANTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EQvTEFCANTM.mp4/EQvTEFCANTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EQvTEFCANTM.mp4/EQvTEFCANTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EQvTEFCANTM.m3u8/EQvTEFCANTM.m3u8"}, "duration": 1023, "id": "EQvTEFCANTM", "title": "Photorespiration", "format": "mp4", "description": "More detail on the Calvin Cycle and Photorespiration", "path": "khan/science/biology/cellular-molecular-biology/photosynthesis/photorespiration/", "slug": "photorespiration", "kind": "Video", "video_id": "EQvTEFCANTM", "keywords": "photosynthesis, calvin, photorespiration", "youtube_id": "EQvTEFCANTM", "readable_id": "photorespiration"}, "iDBJK0y8vb0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iDBJK0y8vb0.mp4/iDBJK0y8vb0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iDBJK0y8vb0.mp4/iDBJK0y8vb0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iDBJK0y8vb0.m3u8/iDBJK0y8vb0.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/delacroix-the-death-of-sardanapalus-1827/", "duration": 223, "id": "iDBJK0y8vb0", "title": "Delacroix, The Death of Sardanapalus", "format": "mp4", "description": "Eug\u00e8ne Delacroix, The Death of Sardanapalus, 1827, oil on canvas, 12 ft 10 in x 16 ft 3 in. (3.92 x 4.96m) (Mus\u00e9e du Louvre, Paris) Speakers: Drs. Beth Harris and Steven Zucker", "slug": "delacroix-the-death-of-sardanapalus-1827", "kind": "Video", "video_id": "iDBJK0y8vb0", "keywords": "Delacroix, Sardanapalus, Romanticism, Louvre, Eug\u00e8ne Delacroix", "youtube_id": "iDBJK0y8vb0", "readable_id": "delacroix-the-death-of-sardanapalus-1827"}, "UeG_EYd-0xw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UeG_EYd-0xw.mp4/UeG_EYd-0xw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UeG_EYd-0xw.mp4/UeG_EYd-0xw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UeG_EYd-0xw.m3u8/UeG_EYd-0xw.m3u8"}, "duration": 203, "id": "UeG_EYd-0xw", "title": "Commutative property for addition", "format": "mp4", "description": "Commutative Property for Addition", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/commutative-property-for-addition/", "slug": "commutative-property-for-addition", "kind": "Video", "video_id": "UeG_EYd-0xw", "keywords": "U09_L3_T1_we1, Commutative, Property, for, Addition, CC_1_OA_3", "youtube_id": "UeG_EYd-0xw", "readable_id": "commutative-property-for-addition"}, "499MvHFrqUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/499MvHFrqUU.mp4/499MvHFrqUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/499MvHFrqUU.mp4/499MvHFrqUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/499MvHFrqUU.m3u8/499MvHFrqUU.m3u8"}, "duration": 286, "id": "499MvHFrqUU", "title": "Factoring and the distributive property 2", "format": "mp4", "description": "Factoring and the Distributive Property 2", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-simple-expressions/factoring-and-the-distributive-property-2/", "slug": "factoring-and-the-distributive-property-2", "kind": "Video", "video_id": "499MvHFrqUU", "keywords": "U09_L1_T1_we2, Factoring, and, the, Distributive, Property, CC_8_EE_7_b, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "499MvHFrqUU", "readable_id": "factoring-and-the-distributive-property-2"}, "Ez_-RwV9WVo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ez_-RwV9WVo.mp4/Ez_-RwV9WVo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ez_-RwV9WVo.mp4/Ez_-RwV9WVo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ez_-RwV9WVo.m3u8/Ez_-RwV9WVo.m3u8"}, "duration": 401, "id": "Ez_-RwV9WVo", "title": "Midpoint formula", "format": "mp4", "description": "Midpoint Formula", "path": "khan/math/geometry/analytic-geometry-topic/cc-distances-between-points/midpoint-formula/", "slug": "midpoint-formula", "kind": "Video", "video_id": "Ez_-RwV9WVo", "keywords": "Midpoint, Formula", "youtube_id": "Ez_-RwV9WVo", "readable_id": "midpoint-formula"}, "wLOEXEi7Uos": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wLOEXEi7Uos.mp4/wLOEXEi7Uos.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wLOEXEi7Uos.mp4/wLOEXEi7Uos.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wLOEXEi7Uos.m3u8/wLOEXEi7Uos.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/the-basal-ganglia-concepts-of-the-indirect-pathway/", "duration": 523, "id": "wLOEXEi7Uos", "title": "The basal ganglia - Concepts of the indirect pathway", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "the-basal-ganglia-concepts-of-the-indirect-pathway", "kind": "Video", "video_id": "wLOEXEi7Uos", "keywords": "", "youtube_id": "wLOEXEi7Uos", "readable_id": "the-basal-ganglia-concepts-of-the-indirect-pathway"}, "oIrnecBfHzg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oIrnecBfHzg.mp4/oIrnecBfHzg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oIrnecBfHzg.mp4/oIrnecBfHzg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oIrnecBfHzg.m3u8/oIrnecBfHzg.m3u8"}, "path": "khan/test-prep/mcat/cells/cytoskeleton/introduction-to-cytoskeleton/", "duration": 388, "id": "oIrnecBfHzg", "title": "Introduction to cytoskeleton", "format": "mp4", "description": "", "slug": "introduction-to-cytoskeleton", "kind": "Video", "video_id": "oIrnecBfHzg", "keywords": "", "youtube_id": "oIrnecBfHzg", "readable_id": "introduction-to-cytoskeleton"}, "Vjs8uK2ovQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vjs8uK2ovQE.mp4/Vjs8uK2ovQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vjs8uK2ovQE.mp4/Vjs8uK2ovQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vjs8uK2ovQE.m3u8/Vjs8uK2ovQE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/redox-reactions/balancing-redox-reactions1/", "duration": 842, "id": "Vjs8uK2ovQE", "title": "Balancing redox reactions in base", "format": "mp4", "description": "How to balance a redox reaction in base.", "slug": "balancing-redox-reactions1", "kind": "Video", "video_id": "Vjs8uK2ovQE", "keywords": "redox reaction", "youtube_id": "Vjs8uK2ovQE", "readable_id": "balancing-redox-reactions1"}, "pFFoAGIEyJc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pFFoAGIEyJc.mp4/pFFoAGIEyJc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pFFoAGIEyJc.mp4/pFFoAGIEyJc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pFFoAGIEyJc.m3u8/pFFoAGIEyJc.m3u8"}, "duration": 191, "id": "pFFoAGIEyJc", "title": "Solving radical equations", "format": "mp4", "description": "Solving Radical Equations", "path": "khan/math/algebra/exponent-equations/radical_equations/solving-radical-equations/", "slug": "solving-radical-equations", "kind": "Video", "video_id": "pFFoAGIEyJc", "keywords": "u16_l3_t1_we1, Solving, Radical, Equations", "youtube_id": "pFFoAGIEyJc", "readable_id": "solving-radical-equations"}, "YezsgIlcb68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YezsgIlcb68.mp4/YezsgIlcb68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YezsgIlcb68.mp4/YezsgIlcb68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YezsgIlcb68.m3u8/YezsgIlcb68.m3u8"}, "duration": 532, "id": "YezsgIlcb68", "title": "Repeated roots of the characteristic equations part 2", "format": "mp4", "description": "An example where we use initial conditions to solve a repeated-roots differential equation.", "path": "khan/math/differential-equations/second-order-differential-equations/complex-roots-characteristic-equation/repeated-roots-of-the-characterisitic-equations-part-2/", "slug": "repeated-roots-of-the-characterisitic-equations-part-2", "kind": "Video", "video_id": "YezsgIlcb68", "keywords": "differential, equation, repeated, roots, characteristic", "youtube_id": "YezsgIlcb68", "readable_id": "repeated-roots-of-the-characterisitic-equations-part-2"}, "B0eHEo-f6fc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B0eHEo-f6fc.mp4/B0eHEo-f6fc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B0eHEo-f6fc.mp4/B0eHEo-f6fc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B0eHEo-f6fc.m3u8/B0eHEo-f6fc.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/vandergoes/hugo-van-der-goes-the-adoration-of-the-kings-monforte-altar-c-1470/", "duration": 228, "id": "B0eHEo-f6fc", "title": "Van der Goes, The Adoration of the Kings", "format": "mp4", "description": "Hugo van der Goes, The Adoration of the Kings (Monforte Altar), c. 1470, oil on oak, 147 x 242 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin)", "slug": "hugo-van-der-goes-the-adoration-of-the-kings-monforte-altar-c-1470", "kind": "Video", "video_id": "B0eHEo-f6fc", "keywords": "Van der Goes, Adoration, Magi, GAP, Netherlandish, Google Art Project, Smarthistory, Khan Academy, OER, Hugo van der Goes, Adoration of the Kings, Monforte Altar, 1470, oil on oak, Gem\u00e4ldegalerie, Renaissance, Educational, art history, painting", "youtube_id": "B0eHEo-f6fc", "readable_id": "hugo-van-der-goes-the-adoration-of-the-kings-monforte-altar-c-1470"}, "Z1RpVPbHgzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z1RpVPbHgzU.mp4/Z1RpVPbHgzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z1RpVPbHgzU.mp4/Z1RpVPbHgzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z1RpVPbHgzU.m3u8/Z1RpVPbHgzU.m3u8"}, "duration": 148, "id": "Z1RpVPbHgzU", "title": "Digging through time", "format": "mp4", "description": "A conversation with Dr. Darius Arya and Dr. Beth Harris.", "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/digging-through-time/", "slug": "digging-through-time", "kind": "Video", "video_id": "Z1RpVPbHgzU", "keywords": "", "youtube_id": "Z1RpVPbHgzU", "readable_id": "digging-through-time"}, "OCD4Dr3kmmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OCD4Dr3kmmA.mp4/OCD4Dr3kmmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OCD4Dr3kmmA.mp4/OCD4Dr3kmmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OCD4Dr3kmmA.m3u8/OCD4Dr3kmmA.m3u8"}, "duration": 465, "id": "OCD4Dr3kmmA", "title": "O2 and CO2 solubility", "format": "mp4", "description": "Get an intuition for why carbon dioxide is so much more soluble than oxygen when it goes into water. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/gas-exchange/o2-and-co2-solubility/", "slug": "o2-and-co2-solubility", "kind": "Video", "video_id": "OCD4Dr3kmmA", "keywords": "", "youtube_id": "OCD4Dr3kmmA", "readable_id": "o2-and-co2-solubility"}, "YS_3XRj74oo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YS_3XRj74oo.mp4/YS_3XRj74oo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YS_3XRj74oo.mp4/YS_3XRj74oo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YS_3XRj74oo.m3u8/YS_3XRj74oo.m3u8"}, "duration": 474, "id": "YS_3XRj74oo", "title": "Quadratic inequality example 2", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/one-variable-modeling/quadratic-inequality-example-2/", "slug": "quadratic-inequality-example-2", "kind": "Video", "video_id": "YS_3XRj74oo", "keywords": "", "youtube_id": "YS_3XRj74oo", "readable_id": "quadratic-inequality-example-2"}, "I6wzan4hNc4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I6wzan4hNc4.mp4/I6wzan4hNc4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I6wzan4hNc4.mp4/I6wzan4hNc4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I6wzan4hNc4.m3u8/I6wzan4hNc4.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/aromatic-stability/aromatic-stability-ii/", "duration": 601, "id": "I6wzan4hNc4", "title": "Aromatic stability II", "format": "mp4", "description": "", "slug": "aromatic-stability-ii", "kind": "Video", "video_id": "I6wzan4hNc4", "keywords": "", "youtube_id": "I6wzan4hNc4", "readable_id": "aromatic-stability-ii"}, "C6anMRFCt4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C6anMRFCt4s.mp4/C6anMRFCt4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C6anMRFCt4s.mp4/C6anMRFCt4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C6anMRFCt4s.m3u8/C6anMRFCt4s.m3u8"}, "duration": 292, "id": "C6anMRFCt4s", "title": "Khan Academy's Discovery Lab - Summer 2012", "format": "mp4", "description": "We ran a hands-on, project-based learning summer program in 2012. Check out the highlights!", "path": "khan/science/discoveries-projects/discovery-lab-2012/khan-academy-s-discovery-lab-offers-hands-on-learning/", "slug": "khan-academy-s-discovery-lab-offers-hands-on-learning", "kind": "Video", "video_id": "C6anMRFCt4s", "keywords": "Discovery Lab, Karl Wendt, Hands-on projects,", "youtube_id": "C6anMRFCt4s", "readable_id": "khan-academy-s-discovery-lab-offers-hands-on-learning"}, "muqyereWEh4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/muqyereWEh4.mp4/muqyereWEh4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/muqyereWEh4.mp4/muqyereWEh4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/muqyereWEh4.m3u8/muqyereWEh4.m3u8"}, "duration": 233, "id": "muqyereWEh4", "title": "Identifying sequence convergence and divergence", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq-conv-diverg/identifying-sequence-convergence-divergence/", "slug": "identifying-sequence-convergence-divergence", "kind": "Video", "video_id": "muqyereWEh4", "keywords": "", "youtube_id": "muqyereWEh4", "readable_id": "identifying-sequence-convergence-divergence"}, "qbCZbP6_j48": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qbCZbP6_j48.mp4/qbCZbP6_j48.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qbCZbP6_j48.mp4/qbCZbP6_j48.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qbCZbP6_j48.m3u8/qbCZbP6_j48.m3u8"}, "duration": 786, "id": "qbCZbP6_j48", "title": "Spectrophotometry introduction", "format": "mp4", "description": "Spectrophotometry, Transmittance, Absorbance and the Beer-Lambert Law", "path": "khan/science/chemistry/chemical-equilibrium/spectrophotometry-tutorial/spectrophotometry-introduction/", "slug": "spectrophotometry-introduction", "kind": "Video", "video_id": "qbCZbP6_j48", "keywords": "Spectrophotometry, Transmittance, Absorbance, Beer-Lambert, Law", "youtube_id": "qbCZbP6_j48", "readable_id": "spectrophotometry-introduction"}, "prWSGbDW3LU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/prWSGbDW3LU.mp4/prWSGbDW3LU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/prWSGbDW3LU.mp4/prWSGbDW3LU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/prWSGbDW3LU.m3u8/prWSGbDW3LU.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/problem-of-evil-part-2/", "duration": 438, "id": "prWSGbDW3LU", "title": "Ethics: Problem of evil part 2", "format": "mp4", "description": "Part 2 of a trilogy. Here, Greg gives a response to the deductive version of the Problem of Evil on behalf of someone who believes that God exists. In thinking about this response, we need to think about whether God can make contradictions true, and whether God can have good reasons for allowing bad things to happen.\n\nSpeaker: Dr.\u00a0Greg Ganssle, Senior Fellow, Rivendell Institute, Yale University", "slug": "problem-of-evil-part-2", "kind": "Video", "video_id": "prWSGbDW3LU", "keywords": "", "youtube_id": "prWSGbDW3LU", "readable_id": "problem-of-evil-part-2"}, "pj1VvscsV0s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pj1VvscsV0s.mp4/pj1VvscsV0s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pj1VvscsV0s.mp4/pj1VvscsV0s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pj1VvscsV0s.m3u8/pj1VvscsV0s.m3u8"}, "duration": 215, "id": "pj1VvscsV0s", "title": "Where a function is not differentiable", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/where-a-function-is-not-differentiable/", "slug": "where-a-function-is-not-differentiable", "kind": "Video", "video_id": "pj1VvscsV0s", "keywords": "", "youtube_id": "pj1VvscsV0s", "readable_id": "where-a-function-is-not-differentiable"}, "4roG0EhmyDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4roG0EhmyDw.mp4/4roG0EhmyDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4roG0EhmyDw.mp4/4roG0EhmyDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4roG0EhmyDw.m3u8/4roG0EhmyDw.m3u8"}, "path": "khan/humanities/art-asia/art-japan/muromachi-period/tearoom-at-the-asian/", "duration": 236, "id": "4roG0EhmyDw", "title": "Teahouse at the Asian Art Museum", "format": "mp4", "description": "The Asian Art Museum\u2019s teahouse was designed by architect Osamu Sato as a functioning teahouse, as well as a display case. It is a three and three-quarters (sanjo daime) mat room. It is complete with an alcove for the display of a scroll and flowers, an electric-powered sunken hearth used in winter for the hot water kettle, and a functioning preparation area (mizuya) with fresh running water and drain. Its three interior ceiling levels display three different ceiling treatments.\u00a0 The teahouse has a sliding glass front that opens fully when in use for live tea demonstrations, but secures the space as a display case when not in use. It was constructed in Kyoto by the distinguished firm Nakamura Sotoji Komuten, long famous for refined traditional Japanese architecture built by specially trained, artisan carpenters and craftsmen. In September 2002, the teahouse was installed in the museum\u2019s second-floor collections gallery devoted to Japanese art. Four carpenters came from Kyoto to construct the teahouse and apply the final wall finishes. Learn more about this teahouse on the Asian Art Museum's education website.", "slug": "tearoom-at-the-asian", "kind": "Video", "video_id": "4roG0EhmyDw", "keywords": "", "youtube_id": "4roG0EhmyDw", "readable_id": "tearoom-at-the-asian"}, "x4CptY9wJBs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x4CptY9wJBs.mp4/x4CptY9wJBs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x4CptY9wJBs.mp4/x4CptY9wJBs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x4CptY9wJBs.m3u8/x4CptY9wJBs.m3u8"}, "duration": 107, "id": "x4CptY9wJBs", "title": "Tongue-tied baby dragon", "format": "mp4", "description": "Michelle and Michael talk about Bernini's Boy with a Dragon, 1614-20. This is from an imaginative tour at the Getty Center: The Supernatural in Art. Follow us on Google+ to stay in touch.", "path": "tongue-tied-baby-dragon/", "slug": "tongue-tied-baby-dragon", "kind": "Video", "video_id": "x4CptY9wJBs", "keywords": "", "youtube_id": "x4CptY9wJBs", "readable_id": "tongue-tied-baby-dragon"}, "NgsuPTLkPgs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NgsuPTLkPgs.mp4/NgsuPTLkPgs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NgsuPTLkPgs.mp4/NgsuPTLkPgs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NgsuPTLkPgs.m3u8/NgsuPTLkPgs.m3u8"}, "duration": 519, "id": "NgsuPTLkPgs", "title": "Extractions", "format": "mp4", "description": "Learn about how chemicals can be separated through acid-base extraction. By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/extractions/", "slug": "extractions", "kind": "Video", "video_id": "NgsuPTLkPgs", "keywords": "extraction", "youtube_id": "NgsuPTLkPgs", "readable_id": "extractions"}, "NigP3DjV3NY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NigP3DjV3NY.mp4/NigP3DjV3NY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NigP3DjV3NY.mp4/NigP3DjV3NY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NigP3DjV3NY.m3u8/NigP3DjV3NY.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/degas-the-dance-class-1874/", "duration": 309, "id": "NigP3DjV3NY", "title": "Degas, The Dance Class", "format": "mp4", "description": "Edgar Degas, The Dance Class, oil on canvas, 1874 (Metropolitan Museum of Art) Speakers: Dr. Steven Zucker, Dr. Beth Harris", "slug": "degas-the-dance-class-1874", "kind": "Video", "video_id": "NigP3DjV3NY", "keywords": "Edgar Degas, art history, Smarthistory, Impressionism, Ballet", "youtube_id": "NigP3DjV3NY", "readable_id": "degas-the-dance-class-1874"}, "DkZnevdbf0A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DkZnevdbf0A.mp4/DkZnevdbf0A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DkZnevdbf0A.mp4/DkZnevdbf0A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DkZnevdbf0A.m3u8/DkZnevdbf0A.m3u8"}, "path": "khan/math/geometry/intro_euclid/drawing-lines-exercise-example/", "duration": 115, "id": "DkZnevdbf0A", "title": "Drawing line segments example", "format": "mp4", "description": "Let's put our new knowledge of line segments to use in this example problem. We'll help you!", "slug": "drawing-lines-exercise-example", "kind": "Video", "video_id": "DkZnevdbf0A", "keywords": "", "youtube_id": "DkZnevdbf0A", "readable_id": "drawing-lines-exercise-example"}, "ZgDIX2GOaxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZgDIX2GOaxQ.mp4/ZgDIX2GOaxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZgDIX2GOaxQ.mp4/ZgDIX2GOaxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZgDIX2GOaxQ.m3u8/ZgDIX2GOaxQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/conductors-and-insulators/", "duration": 813, "id": "ZgDIX2GOaxQ", "title": "Conductors and Insulators", "format": "mp4", "description": "", "slug": "conductors-and-insulators", "kind": "Video", "video_id": "ZgDIX2GOaxQ", "keywords": "", "youtube_id": "ZgDIX2GOaxQ", "readable_id": "conductors-and-insulators"}, "dCOXynpDJ74": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dCOXynpDJ74.mp4/dCOXynpDJ74.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dCOXynpDJ74.mp4/dCOXynpDJ74.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dCOXynpDJ74.m3u8/dCOXynpDJ74.m3u8"}, "duration": 401, "id": "dCOXynpDJ74", "title": "The Constitution and the role of the President", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the Constitution, Article 2, and the role of the President. \u00a0There was great discussion on the executive role.", "path": "role-of-the-president/", "slug": "role-of-the-president", "kind": "Video", "video_id": "dCOXynpDJ74", "keywords": "", "youtube_id": "dCOXynpDJ74", "readable_id": "role-of-the-president"}, "fY_ejjMRYg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fY_ejjMRYg0.mp4/fY_ejjMRYg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fY_ejjMRYg0.mp4/fY_ejjMRYg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fY_ejjMRYg0.m3u8/fY_ejjMRYg0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/acetals-as-protecting-groups-and-thioacetals/", "duration": 505, "id": "fY_ejjMRYg0", "title": "Acetals as protecting groups and thioacetals", "format": "mp4", "description": "", "slug": "acetals-as-protecting-groups-and-thioacetals", "kind": "Video", "video_id": "fY_ejjMRYg0", "keywords": "", "youtube_id": "fY_ejjMRYg0", "readable_id": "acetals-as-protecting-groups-and-thioacetals"}, "7IkufOBIw5g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7IkufOBIw5g.mp4/7IkufOBIw5g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7IkufOBIw5g.mp4/7IkufOBIw5g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7IkufOBIw5g.m3u8/7IkufOBIw5g.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/integrate-partial-fraction-expan/partial-fraction-expansion-to-integrate/", "duration": 532, "id": "7IkufOBIw5g", "title": "Partial fraction expansion to evaluate integral", "format": "mp4", "description": "", "slug": "partial-fraction-expansion-to-integrate", "kind": "Video", "video_id": "7IkufOBIw5g", "keywords": "", "youtube_id": "7IkufOBIw5g", "readable_id": "partial-fraction-expansion-to-integrate"}, "yb7lVnY_VCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yb7lVnY_VCY.mp4/yb7lVnY_VCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yb7lVnY_VCY.mp4/yb7lVnY_VCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yb7lVnY_VCY.m3u8/yb7lVnY_VCY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/dividing-fractions-pre-alg/dividing-a-fraction-by-a-whole-number-word-problem/", "duration": 155, "id": "yb7lVnY_VCY", "title": "Dividing whole numbers and fractions: studying", "format": "mp4", "description": "Solve a word problem by dividing a fraction by a whole number. The example used in this video is 1/5 \u00f7 4.", "slug": "dividing-a-fraction-by-a-whole-number-word-problem", "kind": "Video", "video_id": "yb7lVnY_VCY", "keywords": "", "youtube_id": "yb7lVnY_VCY", "readable_id": "dividing-a-fraction-by-a-whole-number-word-problem"}, "3FManXv4mZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3FManXv4mZM.mp4/3FManXv4mZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3FManXv4mZM.mp4/3FManXv4mZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3FManXv4mZM.m3u8/3FManXv4mZM.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/proof-rhombus-area-half-product-of-diagonal-length/", "duration": 307, "id": "3FManXv4mZM", "title": "Proof: Rhombus area half product of diagonal length", "format": "mp4", "description": "Showing that we can find the area of a rhombus by taking half the product of the lengths of the diagonals", "slug": "proof-rhombus-area-half-product-of-diagonal-length", "kind": "Video", "video_id": "3FManXv4mZM", "keywords": "geometry", "youtube_id": "3FManXv4mZM", "readable_id": "proof-rhombus-area-half-product-of-diagonal-length"}, "EMyHmzVOgbM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EMyHmzVOgbM.mp4/EMyHmzVOgbM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EMyHmzVOgbM.mp4/EMyHmzVOgbM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EMyHmzVOgbM.m3u8/EMyHmzVOgbM.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-5-distance-between-points/", "duration": 141, "id": "EMyHmzVOgbM", "title": "5 Distance between points", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-5-distance-between-points", "kind": "Video", "video_id": "EMyHmzVOgbM", "keywords": "", "youtube_id": "EMyHmzVOgbM", "readable_id": "sat-5-distance-between-points"}, "Ip6hmC2KIug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ip6hmC2KIug.mp4/Ip6hmC2KIug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ip6hmC2KIug.mp4/Ip6hmC2KIug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ip6hmC2KIug.m3u8/Ip6hmC2KIug.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/phidias-sculpture-from-the-east-pediment-of-the-parthenon-c-448-432-b-c-e/", "duration": 299, "id": "Ip6hmC2KIug", "title": "East Pediment sculptures, Parthenon, including Helios, Horses and Dionysus (Heracles?)", "format": "mp4", "description": "Phidias (?), Sculpture from the East Pediment of the Parthenon, marble, c. 448-432 B.C.E., Classical Period (British Museum, London). Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "phidias-sculpture-from-the-east-pediment-of-the-parthenon-c-448-432-b-c-e", "kind": "Video", "video_id": "Ip6hmC2KIug", "keywords": "Parthenon, pediment, athens, acropolis, Smarthistory, art history, art, sculpture, Greece, classical, Classical antiquity", "youtube_id": "Ip6hmC2KIug", "readable_id": "phidias-sculpture-from-the-east-pediment-of-the-parthenon-c-448-432-b-c-e"}, "LyIZEnGYCI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LyIZEnGYCI8.mp4/LyIZEnGYCI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LyIZEnGYCI8.mp4/LyIZEnGYCI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LyIZEnGYCI8.m3u8/LyIZEnGYCI8.m3u8"}, "duration": 207, "id": "LyIZEnGYCI8", "title": "Mileage assumption example", "format": "mp4", "description": "", "path": "khan/math/algebra/introduction-to-algebra/units-algebra/mileage-assumption-example/", "slug": "mileage-assumption-example", "kind": "Video", "video_id": "LyIZEnGYCI8", "keywords": "", "youtube_id": "LyIZEnGYCI8", "readable_id": "mileage-assumption-example"}, "jMRYMRzowCI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jMRYMRzowCI.mp4/jMRYMRzowCI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jMRYMRzowCI.mp4/jMRYMRzowCI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jMRYMRzowCI.m3u8/jMRYMRzowCI.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-intro-blended-learning/sscc-blended-learning-models/sscc-blended-flex/", "duration": 214, "id": "jMRYMRzowCI", "title": "The Flex Model", "format": "mp4", "description": "", "slug": "sscc-blended-flex", "kind": "Video", "video_id": "jMRYMRzowCI", "keywords": "", "youtube_id": "jMRYMRzowCI", "readable_id": "sscc-blended-flex"}, "Rk8dCnKIfP4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rk8dCnKIfP4.mp4/Rk8dCnKIfP4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rk8dCnKIfP4.mp4/Rk8dCnKIfP4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rk8dCnKIfP4.m3u8/Rk8dCnKIfP4.m3u8"}, "path": "khan/humanities/history/1600s-1800s/declaration-of-independence/birth-of-the-us-constitution/", "duration": 763, "id": "Rk8dCnKIfP4", "title": "Birth of the US Constitution", "format": "mp4", "description": "In this video, Aspen Institute President and CEO Walter Isaacson\u00a0talks to Sal about \u00a0the Declaration of Independence.", "slug": "birth-of-the-us-constitution", "kind": "Video", "video_id": "Rk8dCnKIfP4", "keywords": "", "youtube_id": "Rk8dCnKIfP4", "readable_id": "birth-of-the-us-constitution"}, "f-wz_ZzSDdg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f-wz_ZzSDdg.mp4/f-wz_ZzSDdg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f-wz_ZzSDdg.mp4/f-wz_ZzSDdg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f-wz_ZzSDdg.m3u8/f-wz_ZzSDdg.m3u8"}, "duration": 292, "id": "f-wz_ZzSDdg", "title": "Multiplying and dividing rational expressions 2", "format": "mp4", "description": "Multiplying and Dividing Rational Expressions 2", "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying-and-dividing-rational-expressions-2/", "slug": "multiplying-and-dividing-rational-expressions-2", "kind": "Video", "video_id": "f-wz_ZzSDdg", "keywords": "U11_L1_T2_we2, Multiplying, and, Dividing, Rational, Expressions, CC_39336_A-APR_6, CC_39336_A-APR_7", "youtube_id": "f-wz_ZzSDdg", "readable_id": "multiplying-and-dividing-rational-expressions-2"}, "mwUyaeWxJhA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mwUyaeWxJhA.mp4/mwUyaeWxJhA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mwUyaeWxJhA.mp4/mwUyaeWxJhA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mwUyaeWxJhA.m3u8/mwUyaeWxJhA.m3u8"}, "duration": 397, "id": "mwUyaeWxJhA", "title": "Firestick farming", "format": "mp4", "description": "How the indigenous Australians used fire to change their environment", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/firestick-farming/", "slug": "firestick-farming", "kind": "Video", "video_id": "mwUyaeWxJhA", "keywords": "farming, agriculture, firestick, aborigines", "youtube_id": "mwUyaeWxJhA", "readable_id": "firestick-farming"}, "3CKpidALDEg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3CKpidALDEg.mp4/3CKpidALDEg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3CKpidALDEg.mp4/3CKpidALDEg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3CKpidALDEg.m3u8/3CKpidALDEg.m3u8"}, "duration": 325, "id": "3CKpidALDEg", "title": "Adding negative numbers on number line examples", "format": "mp4", "description": "", "path": "adding-negative-numbers-on-number-line-examples/", "slug": "adding-negative-numbers-on-number-line-examples", "kind": "Video", "video_id": "3CKpidALDEg", "keywords": "", "youtube_id": "3CKpidALDEg", "readable_id": "adding-negative-numbers-on-number-line-examples"}, "AhgR3X--bbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AhgR3X--bbY.mp4/AhgR3X--bbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AhgR3X--bbY.mp4/AhgR3X--bbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AhgR3X--bbY.m3u8/AhgR3X--bbY.m3u8"}, "duration": 255, "id": "AhgR3X--bbY", "title": "Tax brackets and progressive taxation", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/tax-brackets-and-progressive-taxation/", "slug": "tax-brackets-and-progressive-taxation", "kind": "Video", "video_id": "AhgR3X--bbY", "keywords": "", "youtube_id": "AhgR3X--bbY", "readable_id": "tax-brackets-and-progressive-taxation"}, "c4fUaD4g4mc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c4fUaD4g4mc.mp4/c4fUaD4g4mc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c4fUaD4g4mc.mp4/c4fUaD4g4mc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c4fUaD4g4mc.m3u8/c4fUaD4g4mc.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/adding-decimals-pre-alg/adding-decimals-word-problem/", "duration": 93, "id": "c4fUaD4g4mc", "title": "Adding decimals word problem", "format": "mp4", "description": "Here's a simple word problem asking us to put our adding decimals skill to work. We sound like a broken record, but be sure and ALIGN DECIMALS.", "slug": "adding-decimals-word-problem", "kind": "Video", "video_id": "c4fUaD4g4mc", "keywords": "", "youtube_id": "c4fUaD4g4mc", "readable_id": "adding-decimals-word-problem"}, "8ZlH2JswO3Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8ZlH2JswO3Q.mp4/8ZlH2JswO3Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8ZlH2JswO3Q.mp4/8ZlH2JswO3Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8ZlH2JswO3Q.m3u8/8ZlH2JswO3Q.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/rococo/watteau-cythera/", "duration": 319, "id": "8ZlH2JswO3Q", "title": "Antoine Watteau, Pilgrimage to Cythera", "format": "mp4", "description": "\u200bAntoine Watteau, Pilgrimage to Cythera, 1717, oil on canvas, 4' 3\" x 6' 4 1/2\" (Louvre, Paris).\n\u00a0oil on canvas, 4' 3\" x 6' 4 1/2\" (Louvre, Paris).\u00a0\u200bSpeakers: \u00a0Dr. Steven Zucker & Dr. Beth Harris", "slug": "watteau-cythera", "kind": "Video", "video_id": "8ZlH2JswO3Q", "keywords": "", "youtube_id": "8ZlH2JswO3Q", "readable_id": "watteau-cythera"}, "3kQ_p2EZX4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3kQ_p2EZX4Q.mp4/3kQ_p2EZX4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3kQ_p2EZX4Q.mp4/3kQ_p2EZX4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3kQ_p2EZX4Q.m3u8/3kQ_p2EZX4Q.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/leonardo-da-vinci/celebrity-art-leonardo-s-mona-lisa/", "duration": 519, "id": "3kQ_p2EZX4Q", "title": "Leonardo, Mona Lisa", "format": "mp4", "description": "Salman Khan and Beth Harris discuss Leonardo da Vinci's painting, \"Mona Lisa,\" as a symbol of Western culture and as a renaissance portrait.", "slug": "celebrity-art-leonardo-s-mona-lisa", "kind": "Video", "video_id": "3kQ_p2EZX4Q", "keywords": "", "youtube_id": "3kQ_p2EZX4Q", "readable_id": "celebrity-art-leonardo-s-mona-lisa"}, "HjBfBB9r2QM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HjBfBB9r2QM.mp4/HjBfBB9r2QM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HjBfBB9r2QM.mp4/HjBfBB9r2QM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HjBfBB9r2QM.m3u8/HjBfBB9r2QM.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/santa-sabina-rome/", "duration": 402, "id": "HjBfBB9r2QM", "title": "Basilica of Santa Sabina, Rome", "format": "mp4", "description": "Basilica of Santa Sabina, 422-432, Rome Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "santa-sabina-rome", "kind": "Video", "video_id": "HjBfBB9r2QM", "keywords": "Rome, church, architecture, Early Christian, basilica, Aventine Hill", "youtube_id": "HjBfBB9r2QM", "readable_id": "santa-sabina-rome"}, "yTGEMoaWDCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yTGEMoaWDCQ.mp4/yTGEMoaWDCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yTGEMoaWDCQ.mp4/yTGEMoaWDCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yTGEMoaWDCQ.m3u8/yTGEMoaWDCQ.m3u8"}, "duration": 1564, "id": "yTGEMoaWDCQ", "title": "Normal distribution excel exercise", "format": "mp4", "description": "(Long-26 minutes) Presentation on spreadsheet to show that the normal distribution approximates the binomial distribution for a large number of trials.", "path": "khan/math/probability/statistics-inferential/normal_distribution/normal-distribution-excel-exercise/", "slug": "normal-distribution-excel-exercise", "kind": "Video", "video_id": "yTGEMoaWDCQ", "keywords": "statistics, normal, distribution, binomial, CC_6_SP_5_d, CC_7_SP_2", "youtube_id": "yTGEMoaWDCQ", "readable_id": "normal-distribution-excel-exercise"}, "LG6g7gxupHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LG6g7gxupHg.mp4/LG6g7gxupHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LG6g7gxupHg.mp4/LG6g7gxupHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LG6g7gxupHg.m3u8/LG6g7gxupHg.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/composing-functions/modeling-with-composite-functions/", "duration": 255, "id": "LG6g7gxupHg", "title": "Modeling with function composition", "format": "mp4", "description": "", "slug": "modeling-with-composite-functions", "kind": "Video", "video_id": "LG6g7gxupHg", "keywords": "", "youtube_id": "LG6g7gxupHg", "readable_id": "modeling-with-composite-functions"}, "PxAHbuyBvBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PxAHbuyBvBY.mp4/PxAHbuyBvBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PxAHbuyBvBY.mp4/PxAHbuyBvBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PxAHbuyBvBY.m3u8/PxAHbuyBvBY.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-protection/biodiversitychampions/protecting-biodiversity-the-power-of-the-individual/", "duration": 610, "id": "PxAHbuyBvBY", "title": "Protecting biodiversity: the power of the individual", "format": "mp4", "description": "", "slug": "protecting-biodiversity-the-power-of-the-individual", "kind": "Video", "video_id": "PxAHbuyBvBY", "keywords": "", "youtube_id": "PxAHbuyBvBY", "readable_id": "protecting-biodiversity-the-power-of-the-individual"}, "GtaoP0skPWc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GtaoP0skPWc.mp4/GtaoP0skPWc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GtaoP0skPWc.mp4/GtaoP0skPWc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GtaoP0skPWc.m3u8/GtaoP0skPWc.m3u8"}, "duration": 596, "id": "GtaoP0skPWc", "title": "Introduction to interest", "format": "mp4", "description": "What interest is. Simple versus compound interest.", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/interest-basics-tutorial/introduction-to-interest/", "slug": "introduction-to-interest", "kind": "Video", "video_id": "GtaoP0skPWc", "keywords": "math, finance, interest, simple, compound, CC_7_RP_3, CC_39336_A-SSE_3_c", "youtube_id": "GtaoP0skPWc", "readable_id": "introduction-to-interest"}, "eqC8gVxxB-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eqC8gVxxB-s.mp4/eqC8gVxxB-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eqC8gVxxB-s.mp4/eqC8gVxxB-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eqC8gVxxB-s.m3u8/eqC8gVxxB-s.m3u8"}, "duration": 232, "id": "eqC8gVxxB-s", "title": "Saint Matthew from the Ebbo Gospel", "format": "mp4", "description": "Saint Matthew, folio 18 verso of the Ebbo Gospels (Gospel Book of the Archbishop of Reims) from Hautvillers, France, c. 816-35, ink and tempera on vellum, 10 1/4 x 8 1/4 (Biblioth\u00e8que Municipale, \u00c9pernay) Speakers: Dr. Nancy Ross and Jennifer Freeman", "path": "khan/humanities/medieval-world/latin-western-europe/carolingian1/saint-matthew-from-the-ebbo-gospel/", "slug": "saint-matthew-from-the-ebbo-gospel", "kind": "Video", "video_id": "eqC8gVxxB-s", "keywords": "", "youtube_id": "eqC8gVxxB-s", "readable_id": "saint-matthew-from-the-ebbo-gospel"}, "g6SJ6LBl51o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g6SJ6LBl51o.mp4/g6SJ6LBl51o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g6SJ6LBl51o.mp4/g6SJ6LBl51o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g6SJ6LBl51o.m3u8/g6SJ6LBl51o.m3u8"}, "duration": 226, "id": "g6SJ6LBl51o", "title": "The development of photography and the railroad", "format": "mp4", "description": "From the 1850s, photography and the railroad each offered new experiences to people who had never before traveled great distances. Photographs were used to allay fears of potential travelers. Love art? Follow us on Google+", "path": "development-of-photography-railroad/", "slug": "development-of-photography-railroad", "kind": "Video", "video_id": "g6SJ6LBl51o", "keywords": "", "youtube_id": "g6SJ6LBl51o", "readable_id": "development-of-photography-railroad"}, "NCF4m8BDs7w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NCF4m8BDs7w.mp4/NCF4m8BDs7w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NCF4m8BDs7w.mp4/NCF4m8BDs7w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NCF4m8BDs7w.m3u8/NCF4m8BDs7w.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/function-average-value/average-function-value-closed-interval/", "duration": 283, "id": "NCF4m8BDs7w", "title": "Average value of a function over a closed interval", "format": "mp4", "description": "", "slug": "average-function-value-closed-interval", "kind": "Video", "video_id": "NCF4m8BDs7w", "keywords": "", "youtube_id": "NCF4m8BDs7w", "readable_id": "average-function-value-closed-interval"}, "IKsi-DQU2zo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IKsi-DQU2zo.mp4/IKsi-DQU2zo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IKsi-DQU2zo.mp4/IKsi-DQU2zo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IKsi-DQU2zo.m3u8/IKsi-DQU2zo.m3u8"}, "duration": 276, "id": "IKsi-DQU2zo", "title": "Adding and subtracting rational expressions 3", "format": "mp4", "description": "U11_L1_T3_we3 Adding and Subtracting Rational Expressions 3", "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding-and-subtracting-rational-expressions-3/", "slug": "adding-and-subtracting-rational-expressions-3", "kind": "Video", "video_id": "IKsi-DQU2zo", "keywords": "U11_L1_T3_we3, Adding, and, Subtracting, Rational, Expressions, CC_39336_A-APR_7", "youtube_id": "IKsi-DQU2zo", "readable_id": "adding-and-subtracting-rational-expressions-3"}, "gvjFMvLVnG0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gvjFMvLVnG0.mp4/gvjFMvLVnG0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gvjFMvLVnG0.mp4/gvjFMvLVnG0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gvjFMvLVnG0.m3u8/gvjFMvLVnG0.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/string-instruments/violin-interview-and-demonstration-with-concertmaster-david-kim/", "duration": 347, "id": "gvjFMvLVnG0", "title": "Violin: Interview and demonstration with concertmaster David Kim", "format": "mp4", "description": "", "slug": "violin-interview-and-demonstration-with-concertmaster-david-kim", "kind": "Video", "video_id": "gvjFMvLVnG0", "keywords": "", "youtube_id": "gvjFMvLVnG0", "readable_id": "violin-interview-and-demonstration-with-concertmaster-david-kim"}, "NCu83PcEQ1U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NCu83PcEQ1U.mp4/NCu83PcEQ1U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NCu83PcEQ1U.mp4/NCu83PcEQ1U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NCu83PcEQ1U.m3u8/NCu83PcEQ1U.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/giovanni-bellini-san-zaccaria-altarpiece-1505/", "duration": 332, "id": "NCu83PcEQ1U", "title": "Giovanni Bellini, San Zaccaria Altarpiece", "format": "mp4", "description": "Giovanni Bellini, San Zaccaria Altarpiece, 1505, oil on wood transferred to canvas, 16 feet 5-1/2 inches x 7 feet 9 inches (San Zaccaria, Venice). Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "giovanni-bellini-san-zaccaria-altarpiece-1505", "kind": "Video", "video_id": "NCu83PcEQ1U", "keywords": "Bellini, San Zaccaria Altarpiece, 1505, Venice, Renaissance, art, painting", "youtube_id": "NCu83PcEQ1U", "readable_id": "giovanni-bellini-san-zaccaria-altarpiece-1505"}, "TvUCe6Bomy4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TvUCe6Bomy4.mp4/TvUCe6Bomy4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TvUCe6Bomy4.mp4/TvUCe6Bomy4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TvUCe6Bomy4.m3u8/TvUCe6Bomy4.m3u8"}, "duration": 207, "id": "TvUCe6Bomy4", "title": "Absolute value inequalities example 1", "format": "mp4", "description": "Absolute value inequalities, graph solution on number line", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/absolute-value-inequalities-example-1/", "slug": "absolute-value-inequalities-example-1", "kind": "Video", "video_id": "TvUCe6Bomy4", "keywords": "U05_L1_T2_we1, Absolute, value, inequalities", "youtube_id": "TvUCe6Bomy4", "readable_id": "absolute-value-inequalities-example-1"}, "RycF0ub2Al0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RycF0ub2Al0.mp4/RycF0ub2Al0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RycF0ub2Al0.mp4/RycF0ub2Al0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RycF0ub2Al0.m3u8/RycF0ub2Al0.m3u8"}, "duration": 287, "id": "RycF0ub2Al0", "title": "Hormone concentration metabolism and negative feedback", "format": "mp4", "description": "In this video we're going to learn about how the concentration of hormones in our blood is regulated. By Ryan Patton. ", "path": "khan/test-prep/nclex-rn/rn-endocrine-system/rn-the-endocrine-system/hormone-concentration-metabolism-negative-feedback/", "slug": "hormone-concentration-metabolism-negative-feedback", "kind": "Video", "video_id": "RycF0ub2Al0", "keywords": "hormone, metabolism, negative feedback", "youtube_id": "RycF0ub2Al0", "readable_id": "hormone-concentration-metabolism-negative-feedback"}, "GPomGcZ3_kk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GPomGcZ3_kk.mp4/GPomGcZ3_kk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GPomGcZ3_kk.mp4/GPomGcZ3_kk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GPomGcZ3_kk.m3u8/GPomGcZ3_kk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/thin-lenses/multiple-lens-systems/", "duration": 847, "id": "GPomGcZ3_kk", "title": "Multiple lens systems", "format": "mp4", "description": "", "slug": "multiple-lens-systems", "kind": "Video", "video_id": "GPomGcZ3_kk", "keywords": "", "youtube_id": "GPomGcZ3_kk", "readable_id": "multiple-lens-systems"}, "_3BnyEr5fG4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_3BnyEr5fG4.mp4/_3BnyEr5fG4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_3BnyEr5fG4.mp4/_3BnyEr5fG4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_3BnyEr5fG4.m3u8/_3BnyEr5fG4.m3u8"}, "duration": 516, "id": "_3BnyEr5fG4", "title": "Equations of sequence patterns", "format": "mp4", "description": "Equations of Sequence Patterns", "path": "khan/math/precalculus/seq_induction/seq_and_series/equations-of-sequence-patterns/", "slug": "equations-of-sequence-patterns", "kind": "Video", "video_id": "_3BnyEr5fG4", "keywords": "U03_L1_T2_we1, Equations, of, Sequence, Patterns, CC_6_EE_5, CC_6_EE_6, CC_39336_F-BF_2", "youtube_id": "_3BnyEr5fG4", "readable_id": "equations-of-sequence-patterns"}, "kkpVr5eoyVE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kkpVr5eoyVE.mp4/kkpVr5eoyVE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kkpVr5eoyVE.mp4/kkpVr5eoyVE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kkpVr5eoyVE.m3u8/kkpVr5eoyVE.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/copy-of-khan-academy-living-room-chats/sean-osullivan/", "duration": 2862, "id": "kkpVr5eoyVE", "title": "Sean O'Sullivan - Founder of SOSventures", "format": "mp4", "description": "", "slug": "sean-osullivan", "kind": "Video", "video_id": "kkpVr5eoyVE", "keywords": "", "youtube_id": "kkpVr5eoyVE", "readable_id": "sean-osullivan"}, "pkGrXzakRFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pkGrXzakRFs.mp4/pkGrXzakRFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pkGrXzakRFs.mp4/pkGrXzakRFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pkGrXzakRFs.m3u8/pkGrXzakRFs.m3u8"}, "duration": 304, "id": "pkGrXzakRFs", "title": "Sum of logarithms with same base", "format": "mp4", "description": "Sum of Logarithms with Same Base", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/sum-of-logarithms-with-same-base/", "slug": "sum-of-logarithms-with-same-base", "kind": "Video", "video_id": "pkGrXzakRFs", "keywords": "u18_l2_t2_we1, Sum, of, Logarithms, with, Same, Base", "youtube_id": "pkGrXzakRFs", "readable_id": "sum-of-logarithms-with-same-base"}, "F-zRXHAo4-U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F-zRXHAo4-U.mp4/F-zRXHAo4-U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F-zRXHAo4-U.mp4/F-zRXHAo4-U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F-zRXHAo4-U.m3u8/F-zRXHAo4-U.m3u8"}, "path": "khan/science/biology/her/tree-of-life/human-prehistory-101-epilogue/", "duration": 166, "id": "F-zRXHAo4-U", "title": "Human prehistory 101: Epilogue", "format": "mp4", "description": "", "slug": "human-prehistory-101-epilogue", "kind": "Video", "video_id": "F-zRXHAo4-U", "keywords": "Khan, prehistory, epilogue", "youtube_id": "F-zRXHAo4-U", "readable_id": "human-prehistory-101-epilogue"}, "86nb02Bx_5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/86nb02Bx_5w.mp4/86nb02Bx_5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/86nb02Bx_5w.mp4/86nb02Bx_5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/86nb02Bx_5w.m3u8/86nb02Bx_5w.m3u8"}, "path": "khan/math/probability/random-variables-topic/expected-value/expected-value-wager/", "duration": 504, "id": "86nb02Bx_5w", "title": "Expected value while fishing", "format": "mp4", "description": "", "slug": "expected-value-wager", "kind": "Video", "video_id": "86nb02Bx_5w", "keywords": "", "youtube_id": "86nb02Bx_5w", "readable_id": "expected-value-wager"}, "77mjvRkfqW4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/77mjvRkfqW4.mp4/77mjvRkfqW4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/77mjvRkfqW4.mp4/77mjvRkfqW4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/77mjvRkfqW4.m3u8/77mjvRkfqW4.m3u8"}, "duration": 651, "id": "77mjvRkfqW4", "title": "Buffers, the acid rain slayer", "format": "mp4", "description": "In this episode, Hank talks about how nutty our world is via Buffers! He defines buffers and their compositions, talks about carbonate buffering systems in nature, acid rain, pH of buffers, and titration. Plus, a really cool experiment using indicators to showcase just how awesome buffers are.\nWriters: Kim Krieger & Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem31-buffers/", "slug": "chem31-buffers", "kind": "Video", "video_id": "77mjvRkfqW4", "keywords": "", "youtube_id": "77mjvRkfqW4", "readable_id": "chem31-buffers"}, "yHo0CcDVHsk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yHo0CcDVHsk.mp4/yHo0CcDVHsk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yHo0CcDVHsk.mp4/yHo0CcDVHsk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yHo0CcDVHsk.m3u8/yHo0CcDVHsk.m3u8"}, "duration": 322, "id": "yHo0CcDVHsk", "title": "Determining the equation of a trig function", "format": "mp4", "description": "", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/trig-function-equation/", "slug": "trig-function-equation", "kind": "Video", "video_id": "yHo0CcDVHsk", "keywords": "", "youtube_id": "yHo0CcDVHsk", "readable_id": "trig-function-equation"}, "ftndEjAg6qs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ftndEjAg6qs.mp4/ftndEjAg6qs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ftndEjAg6qs.mp4/ftndEjAg6qs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ftndEjAg6qs.m3u8/ftndEjAg6qs.m3u8"}, "path": "khan/math/arithmetic/telling-time-topic/telling-time/telling-time-exercise-example-2/", "duration": 136, "id": "ftndEjAg6qs", "title": "Telling time exercise example 2", "format": "mp4", "description": "Tell time on unlabeled analog clocks.", "slug": "telling-time-exercise-example-2", "kind": "Video", "video_id": "ftndEjAg6qs", "keywords": "", "youtube_id": "ftndEjAg6qs", "readable_id": "telling-time-exercise-example-2"}, "zNtbi4OJs9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zNtbi4OJs9I.mp4/zNtbi4OJs9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zNtbi4OJs9I.mp4/zNtbi4OJs9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zNtbi4OJs9I.m3u8/zNtbi4OJs9I.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/complementary-supplementary-angl/example-using-algebra-to-find-measure-of-supplementary-angles/", "duration": 157, "id": "zNtbi4OJs9I", "title": "Find measure of supplementary angles", "format": "mp4", "description": "Watch and understand how to find the measure of two angles whose sum is 180 degrees, or supplementary angles.", "slug": "example-using-algebra-to-find-measure-of-supplementary-angles", "kind": "Video", "video_id": "zNtbi4OJs9I", "keywords": "", "youtube_id": "zNtbi4OJs9I", "readable_id": "example-using-algebra-to-find-measure-of-supplementary-angles"}, "D-oAsFIHqbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D-oAsFIHqbY.mp4/D-oAsFIHqbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D-oAsFIHqbY.mp4/D-oAsFIHqbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D-oAsFIHqbY.m3u8/D-oAsFIHqbY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/pain-and-temperature-1/", "duration": 360, "id": "D-oAsFIHqbY", "title": "Pain and temperature", "format": "mp4", "description": "Explore our senses of pain & temperature. \u00a0By Ron.", "slug": "pain-and-temperature-1", "kind": "Video", "video_id": "D-oAsFIHqbY", "keywords": "", "youtube_id": "D-oAsFIHqbY", "readable_id": "pain-and-temperature-1"}, "zltgXTlUVLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zltgXTlUVLw.mp4/zltgXTlUVLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zltgXTlUVLw.mp4/zltgXTlUVLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zltgXTlUVLw.m3u8/zltgXTlUVLw.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/recognizing-features-of-functions-2-example-2/", "duration": 233, "id": "zltgXTlUVLw", "title": "Recognizing features of functions (example 2)", "format": "mp4", "description": "", "slug": "recognizing-features-of-functions-2-example-2", "kind": "Video", "video_id": "zltgXTlUVLw", "keywords": "", "youtube_id": "zltgXTlUVLw", "readable_id": "recognizing-features-of-functions-2-example-2"}, "qGowzgZCUXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qGowzgZCUXc.mp4/qGowzgZCUXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qGowzgZCUXc.mp4/qGowzgZCUXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qGowzgZCUXc.m3u8/qGowzgZCUXc.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-blended-case-studies/sscc-blended-summitteach/", "duration": 477, "id": "qGowzgZCUXc", "title": "Case study #1: Teaching in a Flex model at Summit Public Schools", "format": "mp4", "description": "", "slug": "sscc-blended-summitteach", "kind": "Video", "video_id": "qGowzgZCUXc", "keywords": "", "youtube_id": "qGowzgZCUXc", "readable_id": "sscc-blended-summitteach"}, "nOZTe8jU2g4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nOZTe8jU2g4.mp4/nOZTe8jU2g4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nOZTe8jU2g4.mp4/nOZTe8jU2g4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nOZTe8jU2g4.m3u8/nOZTe8jU2g4.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/factoring-quadratic-expressions/factoring-trinomials-with-a-leading-1-coefficient/", "duration": 252, "id": "nOZTe8jU2g4", "title": "Example 1: Factoring quadratic expressions", "format": "mp4", "description": "Factoring trinomials with a leading 1 coefficient", "slug": "factoring-trinomials-with-a-leading-1-coefficient", "kind": "Video", "video_id": "nOZTe8jU2g4", "keywords": "u12_l2_t1_we1, Factoring, trinomials, with, leading, coefficient, CC_39336_A-SSE_1_a, CC_39336_A-SSE_1_b, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "nOZTe8jU2g4", "readable_id": "factoring-trinomials-with-a-leading-1-coefficient"}, "KpaLchFpJZ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KpaLchFpJZ8.mp4/KpaLchFpJZ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KpaLchFpJZ8.mp4/KpaLchFpJZ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KpaLchFpJZ8.m3u8/KpaLchFpJZ8.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/social-theories-overview/", "duration": 251, "id": "KpaLchFpJZ8", "title": "Social theories overview (part 1)", "format": "mp4", "description": "An overview of functionalism, conflict theory, social constructionism, and symbolic interactionism to help you keep them all straight.\u00a0 By Sydney Brown.", "slug": "social-theories-overview", "kind": "Video", "video_id": "KpaLchFpJZ8", "keywords": "social theories overview", "youtube_id": "KpaLchFpJZ8", "readable_id": "social-theories-overview"}, "7DtWXEPB_AI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7DtWXEPB_AI.mp4/7DtWXEPB_AI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7DtWXEPB_AI.mp4/7DtWXEPB_AI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7DtWXEPB_AI.m3u8/7DtWXEPB_AI.m3u8"}, "path": "khan/math/probability/descriptive-statistics/box-and-whisker-plots/range-and-mid-range/", "duration": 123, "id": "7DtWXEPB_AI", "title": "Finding the range and mid-range", "format": "mp4", "description": "The range is the difference between the largest and smallest numbers. The midrange is the average of the largest and smallest number. Practice with this problem.", "slug": "range-and-mid-range", "kind": "Video", "video_id": "7DtWXEPB_AI", "keywords": "u08_l2_t1_we2, Range, and, Mid-range", "youtube_id": "7DtWXEPB_AI", "readable_id": "range-and-mid-range"}, "3Ayt7mOd_To": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Ayt7mOd_To.mp4/3Ayt7mOd_To.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Ayt7mOd_To.mp4/3Ayt7mOd_To.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Ayt7mOd_To.m3u8/3Ayt7mOd_To.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-equation-of-a-line/slope-intercept-form-from-table/", "duration": 266, "id": "3Ayt7mOd_To", "title": "Slope-intercept form from table", "format": "mp4", "description": "", "slug": "slope-intercept-form-from-table", "kind": "Video", "video_id": "3Ayt7mOd_To", "keywords": "", "youtube_id": "3Ayt7mOd_To", "readable_id": "slope-intercept-form-from-table"}, "OZbM1h3S-aA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OZbM1h3S-aA.mp4/OZbM1h3S-aA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OZbM1h3S-aA.mp4/OZbM1h3S-aA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OZbM1h3S-aA.m3u8/OZbM1h3S-aA.m3u8"}, "duration": 715, "id": "OZbM1h3S-aA", "title": "Buddha and Ashoka", "format": "mp4", "description": "In which John relates a condensed history of India, post-Indus Valley Civilization. John explores Hinduism and the origins of Buddhism. He also gets into the reign of Ashoka, the Buddhist emperor who, in spite of Buddhism's structural disapproval of violence, managed to win a bunch of battles.", "path": "khan/humanities/history/crashcourse-worldhistory/so-thats-where-that-comes-from-2/crash-course-world-history-06/", "slug": "crash-course-world-history-06", "kind": "Video", "video_id": "OZbM1h3S-aA", "keywords": "crash course", "youtube_id": "OZbM1h3S-aA", "readable_id": "crash-course-world-history-06"}, "8Otn9DVkm-g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Otn9DVkm-g.mp4/8Otn9DVkm-g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Otn9DVkm-g.mp4/8Otn9DVkm-g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Otn9DVkm-g.m3u8/8Otn9DVkm-g.m3u8"}, "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-biosignaling/membrane-receptors/", "duration": 479, "id": "8Otn9DVkm-g", "title": "Membrane Receptors", "format": "mp4", "description": "Learn about how membrane receptors work in our body.", "slug": "membrane-receptors", "kind": "Video", "video_id": "8Otn9DVkm-g", "keywords": "", "youtube_id": "8Otn9DVkm-g", "readable_id": "membrane-receptors"}, "GFiizJ-jGVw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GFiizJ-jGVw.mp4/GFiizJ-jGVw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GFiizJ-jGVw.mp4/GFiizJ-jGVw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GFiizJ-jGVw.m3u8/GFiizJ-jGVw.m3u8"}, "duration": 364, "id": "GFiizJ-jGVw", "title": "Entgegen-Zusammen naming scheme for alkenes examples", "format": "mp4", "description": "Entgegen-Zusammen Naming Scheme for Alkenes Examples", "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-alkenes/entgegen-zusammen-naming-scheme-for-alkenes-examples/", "slug": "entgegen-zusammen-naming-scheme-for-alkenes-examples", "kind": "Video", "video_id": "GFiizJ-jGVw", "keywords": "Entgegen-Zusammen, Naming, Scheme, for, Alkenes, Examples", "youtube_id": "GFiizJ-jGVw", "readable_id": "entgegen-zusammen-naming-scheme-for-alkenes-examples"}, "F2mfEldxsPI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F2mfEldxsPI.mp4/F2mfEldxsPI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F2mfEldxsPI.mp4/F2mfEldxsPI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F2mfEldxsPI.m3u8/F2mfEldxsPI.m3u8"}, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/another-simulation-giving-evidence-that-n-1-gives-us-an-unbiased-estimate-of-variance/", "duration": 286, "id": "F2mfEldxsPI", "title": "Another simulation giving evidence that (n-1) gives us an unbiased estimate of variance", "format": "mp4", "description": "Another visualization providing evidence that dividing by n-1 truly gives an unbiased estimate of population variance. Simulation at: http://www.khanacademy.org/cs/unbiased-variance-visualization/1167453164", "slug": "another-simulation-giving-evidence-that-n-1-gives-us-an-unbiased-estimate-of-variance", "kind": "Video", "video_id": "F2mfEldxsPI", "keywords": "", "youtube_id": "F2mfEldxsPI", "readable_id": "another-simulation-giving-evidence-that-n-1-gives-us-an-unbiased-estimate-of-variance"}, "457xnJv80O0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/457xnJv80O0.mp4/457xnJv80O0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/457xnJv80O0.mp4/457xnJv80O0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/457xnJv80O0.m3u8/457xnJv80O0.m3u8"}, "path": "khan/science/organic-chemistry/stereochemistry-topic/diastereomers-meso-compounds/stereoisomers-enantiomers-diastereomers-constitutional-isomers-and-meso-compounds/", "duration": 816, "id": "457xnJv80O0", "title": "Stereoisomers, enantiomers, diastereomers, constitutional isomers and meso compounds", "format": "mp4", "description": "Stereoisomers, Enantiomers, Diastereomers, Constitutional Isomers and Meso Compounds", "slug": "stereoisomers-enantiomers-diastereomers-constitutional-isomers-and-meso-compounds", "kind": "Video", "video_id": "457xnJv80O0", "keywords": "Stereoisomers, Enantiomers, Diastereomers", "youtube_id": "457xnJv80O0", "readable_id": "stereoisomers-enantiomers-diastereomers-constitutional-isomers-and-meso-compounds"}, "SJUd5du0T08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SJUd5du0T08.mp4/SJUd5du0T08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SJUd5du0T08.mp4/SJUd5du0T08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SJUd5du0T08.m3u8/SJUd5du0T08.m3u8"}, "duration": 279, "id": "SJUd5du0T08", "title": "Seasons aren't dictated by closeness to sun", "format": "mp4", "description": "Why our closeness to the sun does not dictate the seasons", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic/seasons-aren-t-dictated-by-closeness-to-sun/", "slug": "seasons-aren-t-dictated-by-closeness-to-sun", "kind": "Video", "video_id": "SJUd5du0T08", "keywords": "perihelion, aphelion", "youtube_id": "SJUd5du0T08", "readable_id": "seasons-aren-t-dictated-by-closeness-to-sun"}, "CCsNJFsYSGs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CCsNJFsYSGs.mp4/CCsNJFsYSGs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CCsNJFsYSGs.mp4/CCsNJFsYSGs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CCsNJFsYSGs.m3u8/CCsNJFsYSGs.m3u8"}, "duration": 518, "id": "CCsNJFsYSGs", "title": "Oxidation state trends in periodic table", "format": "mp4", "description": "", "path": "khan/science/chemistry/oxidation-reduction/redox-oxidation-reduction/oxidation-state-trends-in-periodic-table/", "slug": "oxidation-state-trends-in-periodic-table", "kind": "Video", "video_id": "CCsNJFsYSGs", "keywords": "", "youtube_id": "CCsNJFsYSGs", "readable_id": "oxidation-state-trends-in-periodic-table"}, "iNW6SYDmkDI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iNW6SYDmkDI.mp4/iNW6SYDmkDI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iNW6SYDmkDI.mp4/iNW6SYDmkDI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iNW6SYDmkDI.m3u8/iNW6SYDmkDI.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/titian-pieta/", "duration": 303, "id": "iNW6SYDmkDI", "title": "Titian, Pieta", "format": "mp4", "description": "Titian and Palma il Giovane, Piet\u00e0, c. 1570-76, oil on canvas, 11'6\" x 12'9\" (Galleria Dell'Accademia, Venice)", "slug": "titian-pieta", "kind": "Video", "video_id": "iNW6SYDmkDI", "keywords": "art history, titian, venice", "youtube_id": "iNW6SYDmkDI", "readable_id": "titian-pieta"}, "iv28TEA99rg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iv28TEA99rg.mp4/iv28TEA99rg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iv28TEA99rg.mp4/iv28TEA99rg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iv28TEA99rg.m3u8/iv28TEA99rg.m3u8"}, "duration": 250, "id": "iv28TEA99rg", "title": "Breast Anatomy", "format": "mp4", "description": "Learn the basic anatomy of the breast and how it's designed to nourish a baby with milk.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "breast-anatomy/", "slug": "breast-anatomy", "kind": "Video", "video_id": "iv28TEA99rg", "keywords": "", "youtube_id": "iv28TEA99rg", "readable_id": "breast-anatomy"}, "XPf8LMu7QSw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XPf8LMu7QSw.mp4/XPf8LMu7QSw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XPf8LMu7QSw.mp4/XPf8LMu7QSw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XPf8LMu7QSw.m3u8/XPf8LMu7QSw.m3u8"}, "duration": 501, "id": "XPf8LMu7QSw", "title": "Non-linear systems of equations 2", "format": "mp4", "description": "Non-Linear Systems of Equations 2", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/non-linear-systems-of-equations-2/", "slug": "non-linear-systems-of-equations-2", "kind": "Video", "video_id": "XPf8LMu7QSw", "keywords": "U10_L2_T2_we2, Non-Linear, Systems, of, Equations, CC_39336_A-REI_10, CC_39336_F-IF_7_a", "youtube_id": "XPf8LMu7QSw", "readable_id": "non-linear-systems-of-equations-2"}, "8AwKNC1texM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8AwKNC1texM.mp4/8AwKNC1texM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8AwKNC1texM.mp4/8AwKNC1texM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8AwKNC1texM.m3u8/8AwKNC1texM.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/bond-line-structures/bond-line-structures-new/", "duration": 777, "id": "8AwKNC1texM", "title": "Bond-line structures", "format": "mp4", "description": "How to draw bond-line structures", "slug": "bond-line-structures-new", "kind": "Video", "video_id": "8AwKNC1texM", "keywords": "", "youtube_id": "8AwKNC1texM", "readable_id": "bond-line-structures-new"}, "yL8ejNmJII4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yL8ejNmJII4.mp4/yL8ejNmJII4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yL8ejNmJII4.mp4/yL8ejNmJII4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yL8ejNmJII4.m3u8/yL8ejNmJII4.m3u8"}, "duration": 265, "id": "yL8ejNmJII4", "title": "Cycle of Malnutrition", "format": "mp4", "description": "Unfortunately, malnutrition often causes problems that can lead to more malnutrition. Learn how this cycle can develop.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "cycle-of-malnutrition/", "slug": "cycle-of-malnutrition", "kind": "Video", "video_id": "yL8ejNmJII4", "keywords": "", "youtube_id": "yL8ejNmJII4", "readable_id": "cycle-of-malnutrition"}, "hZ827mfh1Jo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hZ827mfh1Jo.mp4/hZ827mfh1Jo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hZ827mfh1Jo.mp4/hZ827mfh1Jo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hZ827mfh1Jo.m3u8/hZ827mfh1Jo.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/im-t-image-of-a-transformation/", "duration": 997, "id": "hZ827mfh1Jo", "title": "im(T): Image of a transformation", "format": "mp4", "description": "Showing that the image of a subspace under a transformation is also a subspace. Definition of the image of a Transformation.", "slug": "im-t-image-of-a-transformation", "kind": "Video", "video_id": "hZ827mfh1Jo", "keywords": "image, transformation, subspace", "youtube_id": "hZ827mfh1Jo", "readable_id": "im-t-image-of-a-transformation"}, "oRRiTo8sUwk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oRRiTo8sUwk.mp4/oRRiTo8sUwk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oRRiTo8sUwk.mp4/oRRiTo8sUwk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oRRiTo8sUwk.m3u8/oRRiTo8sUwk.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/beginners-guide-imperial-china/decoding-chinese-calligraphy/", "duration": 164, "id": "oRRiTo8sUwk", "title": "Decoding Chinese calligraphy", "format": "mp4", "description": "Master Chinese calligrapher Cai Xingyi demonstrates five major scripts. Try your hand at brushpainting in this digital interactive.", "slug": "decoding-chinese-calligraphy", "kind": "Video", "video_id": "oRRiTo8sUwk", "keywords": "", "youtube_id": "oRRiTo8sUwk", "readable_id": "decoding-chinese-calligraphy"}, "Pn5YEMwQb4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pn5YEMwQb4Y.mp4/Pn5YEMwQb4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pn5YEMwQb4Y.mp4/Pn5YEMwQb4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pn5YEMwQb4Y.m3u8/Pn5YEMwQb4Y.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-at-rest/fluids-part-1/", "duration": 586, "id": "Pn5YEMwQb4Y", "title": "Fluids (part 1)", "format": "mp4", "description": "What a fluid is. Difference between liquids and gasses (both fluids).", "slug": "fluids-part-1", "kind": "Video", "video_id": "Pn5YEMwQb4Y", "keywords": "physics, chemistry, fluids, liquids, gasses, pressure", "youtube_id": "Pn5YEMwQb4Y", "readable_id": "fluids-part-1"}, "BxMCXhVdDVU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BxMCXhVdDVU.mp4/BxMCXhVdDVU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BxMCXhVdDVU.mp4/BxMCXhVdDVU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BxMCXhVdDVU.m3u8/BxMCXhVdDVU.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-intro-blended-learning/sscc-blended-learning-models/sscc-blended-4models/", "duration": 73, "id": "BxMCXhVdDVU", "title": "Four Different Blended Learning Models", "format": "mp4", "description": "", "slug": "sscc-blended-4models", "kind": "Video", "video_id": "BxMCXhVdDVU", "keywords": "", "youtube_id": "BxMCXhVdDVU", "readable_id": "sscc-blended-4models"}, "cGg1j1ZCCOs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cGg1j1ZCCOs.mp4/cGg1j1ZCCOs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cGg1j1ZCCOs.mp4/cGg1j1ZCCOs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cGg1j1ZCCOs.m3u8/cGg1j1ZCCOs.m3u8"}, "path": "khan/college-admissions/get-started/introduction-ca/sal-khans-story-college-admissions/", "duration": 115, "id": "cGg1j1ZCCOs", "title": "Sal Khan's story: College admissions", "format": "mp4", "description": "", "slug": "sal-khans-story-college-admissions", "kind": "Video", "video_id": "cGg1j1ZCCOs", "keywords": "", "youtube_id": "cGg1j1ZCCOs", "readable_id": "sal-khans-story-college-admissions"}, "he4kcTujy30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/he4kcTujy30.mp4/he4kcTujy30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/he4kcTujy30.mp4/he4kcTujy30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/he4kcTujy30.m3u8/he4kcTujy30.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimal-place-value-pre-alg/expanding-out-a-decimal-by-place-value/", "duration": 173, "id": "he4kcTujy30", "title": "Decimals: expanding out place value", "format": "mp4", "description": "Let's expand a decimal out and really try to understand what it represents.", "slug": "expanding-out-a-decimal-by-place-value", "kind": "Video", "video_id": "he4kcTujy30", "keywords": "", "youtube_id": "he4kcTujy30", "readable_id": "expanding-out-a-decimal-by-place-value"}, "NGpJPz44JYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NGpJPz44JYc.mp4/NGpJPz44JYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NGpJPz44JYc.mp4/NGpJPz44JYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NGpJPz44JYc.m3u8/NGpJPz44JYc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/fluids-part-10/", "duration": 515, "id": "NGpJPz44JYc", "title": "Fluids (part 10)", "format": "mp4", "description": "Second part of the example that uses Bernoulli's equation.", "slug": "fluids-part-10", "kind": "Video", "video_id": "NGpJPz44JYc", "keywords": "bernoulli's, equation, pressure, velocity, physics", "youtube_id": "NGpJPz44JYc", "readable_id": "fluids-part-10"}, "_ETPMszULXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_ETPMszULXc.mp4/_ETPMszULXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_ETPMszULXc.mp4/_ETPMszULXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_ETPMszULXc.m3u8/_ETPMszULXc.m3u8"}, "duration": 268, "id": "_ETPMszULXc", "title": "Two-way relative frequency tables", "format": "mp4", "description": "", "path": "two-way-relative-frequency-tables/", "slug": "two-way-relative-frequency-tables", "kind": "Video", "video_id": "_ETPMszULXc", "keywords": "", "youtube_id": "_ETPMszULXc", "readable_id": "two-way-relative-frequency-tables"}, "dOr0NKyD31Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dOr0NKyD31Q.mp4/dOr0NKyD31Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dOr0NKyD31Q.mp4/dOr0NKyD31Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dOr0NKyD31Q.m3u8/dOr0NKyD31Q.m3u8"}, "duration": 717, "id": "dOr0NKyD31Q", "title": "Discrete and continuous random variables", "format": "mp4", "description": "Defining discrete and continuous random variables. Working through examples of both discrete and continuous random variables.", "path": "khan/math/probability/random-variables-topic/random_variables_prob_dist/discrete-and-continuous-random-variables/", "slug": "discrete-and-continuous-random-variables", "kind": "Video", "video_id": "dOr0NKyD31Q", "keywords": "", "youtube_id": "dOr0NKyD31Q", "readable_id": "discrete-and-continuous-random-variables"}, "z1yJPpGC3-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z1yJPpGC3-o.mp4/z1yJPpGC3-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z1yJPpGC3-o.mp4/z1yJPpGC3-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z1yJPpGC3-o.m3u8/z1yJPpGC3-o.m3u8"}, "duration": 412, "id": "z1yJPpGC3-o", "title": "Taxes and perfectly elastic demand", "format": "mp4", "description": "Who bears the burden for a tax on a good with perfectly elastic demand", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/deadweight-loss-tutorial/taxes-and-perfectly-elastic-demand/", "slug": "taxes-and-perfectly-elastic-demand", "kind": "Video", "video_id": "z1yJPpGC3-o", "keywords": "microeconomics, elasticity, deadweight, loss, supply, demand", "youtube_id": "z1yJPpGC3-o", "readable_id": "taxes-and-perfectly-elastic-demand"}, "RjkTEyO5Zso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RjkTEyO5Zso.mp4/RjkTEyO5Zso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RjkTEyO5Zso.mp4/RjkTEyO5Zso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RjkTEyO5Zso.m3u8/RjkTEyO5Zso.m3u8"}, "duration": 965, "id": "RjkTEyO5Zso", "title": "Multiple examples graphing parabolas using roots and vertices", "format": "mp4", "description": "Multiple examples graphing parabolas using roots and vertices", "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/graphs-of-quadratic-functions/", "slug": "graphs-of-quadratic-functions", "kind": "Video", "video_id": "RjkTEyO5Zso", "keywords": "Graphs, of, Quadratic, Functions", "youtube_id": "RjkTEyO5Zso", "readable_id": "graphs-of-quadratic-functions"}, "U6RFAUmYU5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U6RFAUmYU5o.mp4/U6RFAUmYU5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U6RFAUmYU5o.mp4/U6RFAUmYU5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U6RFAUmYU5o.m3u8/U6RFAUmYU5o.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/1945-end-of-world-war-ii/", "duration": 484, "id": "U6RFAUmYU5o", "title": "1945 - End of World War II", "format": "mp4", "description": "1945 marks the end of World War II. V-E Day (Victory in Europe Day) is May 8th 1945. War doesn't end in the Pacific until August of 1945 with the atomic bombing of Hiroshima and Nagasaki.", "slug": "1945-end-of-world-war-ii", "kind": "Video", "video_id": "U6RFAUmYU5o", "keywords": "", "youtube_id": "U6RFAUmYU5o", "readable_id": "1945-end-of-world-war-ii"}, "W_YeBq1vgAs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W_YeBq1vgAs.mp4/W_YeBq1vgAs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W_YeBq1vgAs.mp4/W_YeBq1vgAs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W_YeBq1vgAs.m3u8/W_YeBq1vgAs.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/victorian-late/room-1890-1910/", "duration": 193, "id": "W_YeBq1vgAs", "title": "Room: 1890-1910", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Carol Jacobi explores the period 1890-1910.\n\nLearn more about the art featured in this video:\n-\u00a0Sir William Goscombe John, A Boy at Play, 1895\n-\u00a0Sir Alfred Gilbert, Model for \u2018Eros\u2019 on the Shaftesbury Memorial, Piccadilly Circus, 1891, cast 1925\n- Sir Thomas Brock, Eve, 1900", "slug": "room-1890-1910", "kind": "Video", "video_id": "W_YeBq1vgAs", "keywords": "Tate, ", "youtube_id": "W_YeBq1vgAs", "readable_id": "room-1890-1910"}, "TgLTzYXg530": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TgLTzYXg530.mp4/TgLTzYXg530.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TgLTzYXg530.mp4/TgLTzYXg530.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TgLTzYXg530.m3u8/TgLTzYXg530.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/avant-garde-sculpture/rodin-the-gates-of-hell-1880-1917/", "duration": 253, "id": "TgLTzYXg530", "title": "Rodin, The Gates of Hell", "format": "mp4", "description": "Auguste Rodin, The Gates of Hell\u200b, 1880-1917, plaster (Mus\u00e9e d'Orsay, Paris)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\nWhen the building, earlier on the site of the Mus\u00e9e d'Orsay in Paris, was destroyed by fire during the Commune in 1871, plans were drawn up to replace it with a museum of decorative arts. Rodin won the competition to design a great set of doors for its entry way. Although the museum was never built, Rodin continued to work on the doors. They became an ongoing project; a grand stage for his sculptural ideas. It's fitting that the plaster of this great unfinished sculpture, The Gates of Hell, is now on display at the d'Orsay, the former railway terminal that was built on this site instead of the museum of decorative arts and that, by lovely coincidence, was converted into one of the world's great art museums.", "slug": "rodin-the-gates-of-hell-1880-1917", "kind": "Video", "video_id": "TgLTzYXg530", "keywords": "Rodin, Gates of Hell, Smarthistory, Art History, Musee d'Orsay, Paris, Sculpture", "youtube_id": "TgLTzYXg530", "readable_id": "rodin-the-gates-of-hell-1880-1917"}, "imkOrmHtSJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/imkOrmHtSJ0.mp4/imkOrmHtSJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/imkOrmHtSJ0.mp4/imkOrmHtSJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/imkOrmHtSJ0.m3u8/imkOrmHtSJ0.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/colonial-americas/virgin-of-guadalupe/", "duration": 220, "id": "imkOrmHtSJ0", "title": "Virgin of Guadalupe", "format": "mp4", "description": "Virgin of Guadalupe, late 17th century, 190 cm high, oil paint, gilding, and mother of pearl on panel (Franz Mayer Museum, Mexico City). Speakers: Dr. Lauren Kilroy-Ewbank and Dr. Beth Harris", "slug": "virgin-of-guadalupe", "kind": "Video", "video_id": "imkOrmHtSJ0", "keywords": "guadalupe, new spain, art history, Mexico,", "youtube_id": "imkOrmHtSJ0", "readable_id": "virgin-of-guadalupe"}, "y4C81qAa3pY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y4C81qAa3pY.mp4/y4C81qAa3pY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y4C81qAa3pY.mp4/y4C81qAa3pY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y4C81qAa3pY.m3u8/y4C81qAa3pY.m3u8"}, "duration": 135, "id": "y4C81qAa3pY", "title": "Solving radical equations 1", "format": "mp4", "description": "Solving Radical Equations 1", "path": "khan/math/algebra/exponent-equations/radical_equations/solving-radical-equations-1/", "slug": "solving-radical-equations-1", "kind": "Video", "video_id": "y4C81qAa3pY", "keywords": "U07_L3_T2_we1, Solving, Radical, Equations, CC_39336_A-REI_2", "youtube_id": "y4C81qAa3pY", "readable_id": "solving-radical-equations-1"}, "-y9SELk3UNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-y9SELk3UNU.mp4/-y9SELk3UNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-y9SELk3UNU.mp4/-y9SELk3UNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-y9SELk3UNU.m3u8/-y9SELk3UNU.m3u8"}, "duration": 699, "id": "-y9SELk3UNU", "title": "GMAT: Math 38", "format": "mp4", "description": "190-194, pg. 178", "path": "khan/test-prep/gmat/problem-solving/gmat-math-38/", "slug": "gmat-math-38", "kind": "Video", "video_id": "-y9SELk3UNU", "keywords": "gmat, math, problem, solving", "youtube_id": "-y9SELk3UNU", "readable_id": "gmat-math-38"}, "rtUoWyIE1FM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rtUoWyIE1FM.mp4/rtUoWyIE1FM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rtUoWyIE1FM.mp4/rtUoWyIE1FM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rtUoWyIE1FM.m3u8/rtUoWyIE1FM.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/genetic-mutations/the-causes-of-genetic-mutations/", "duration": 314, "id": "rtUoWyIE1FM", "title": "The causes of genetic mutations", "format": "mp4", "description": "", "slug": "the-causes-of-genetic-mutations", "kind": "Video", "video_id": "rtUoWyIE1FM", "keywords": "MCAT", "youtube_id": "rtUoWyIE1FM", "readable_id": "the-causes-of-genetic-mutations"}, "uKHVFI2uCOU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uKHVFI2uCOU.mp4/uKHVFI2uCOU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uKHVFI2uCOU.mp4/uKHVFI2uCOU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uKHVFI2uCOU.m3u8/uKHVFI2uCOU.m3u8"}, "duration": 159, "id": "uKHVFI2uCOU", "title": "\"Nosing Around\" with Julie Jones", "format": "mp4", "description": "Met curator Julie Jones on intrigue in Nose Ornament with Spiders from ancient Peru.\n\nNose ornaments are among the earliest jewelry forms in Precolumbian America and were made in an endless variety of materials and styles; those for the elite were made of precious metal. In Peru, nose ornaments became less fashionable in the second half of the first millennium A.D. and were seldom used after about 600. This elegant, very delicate crescent nose ring from northern Peru is evidence of the high level of craftsmanship that existed among metalworkers at this time. Depicted are four spiders sitting in their web. The openwork, lacelike quality of the object was achieved by fusing the many minute parts together to create a symmetrical composition. The stylized spiders, their tiny eyes and fangs showing, are held, each in its own open space, by paired, spindly legs echoing the round bodies and joined to the web.\u00a0Spider imagery occurs in Peruvian art from the middle of the first millennium B.C.E. onward, suggesting that spiders played a role in early Andean mythology. The spiders' ability to catch and kill live prey associates them with sacrifice. Information from the sixteenth-century Inka peoples links spiders with rainfall and fertility.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "nosingaround/", "slug": "nosingaround", "kind": "Video", "video_id": "uKHVFI2uCOU", "keywords": "costume, daily life, fashion, metal, nature, ornate, Latin America & the Carribean", "youtube_id": "uKHVFI2uCOU", "readable_id": "nosingaround"}, "kjLwVqxwaIM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kjLwVqxwaIM.mp4/kjLwVqxwaIM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kjLwVqxwaIM.mp4/kjLwVqxwaIM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kjLwVqxwaIM.m3u8/kjLwVqxwaIM.m3u8"}, "duration": 583, "id": "kjLwVqxwaIM", "title": "The lymphatic system's role in immunity", "format": "mp4", "description": "Learn about how B and T cells reside in lymph nodes. Find out how that enables them to get a preview of what they need to be prepared to fight. By Patrick van Nieuwenhuizen.", "path": "khan/test-prep/nclex-rn/rn-lymphatic-system/rn-the-lymphatic-system/lymphatic-system-immunity/", "slug": "lymphatic-system-immunity", "kind": "Video", "video_id": "kjLwVqxwaIM", "keywords": "lymphatic system", "youtube_id": "kjLwVqxwaIM", "readable_id": "lymphatic-system-immunity"}, "uvA6YY4yHtM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uvA6YY4yHtM.mp4/uvA6YY4yHtM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uvA6YY4yHtM.mp4/uvA6YY4yHtM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uvA6YY4yHtM.m3u8/uvA6YY4yHtM.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/jan-vermeer-the-glass-of-wine-c-1661/", "duration": 257, "id": "uvA6YY4yHtM", "title": "Vermeer, The Glass of Wine", "format": "mp4", "description": "Jan Vermeer, The Glass of Wine, c. 1661, oil on canvas, 67.7 x 79.6 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin)", "slug": "jan-vermeer-the-glass-of-wine-c-1661", "kind": "Video", "video_id": "uvA6YY4yHtM", "keywords": "Vermeer, Wine, GAP, Jan Vermeer, Glass of Wine, 1661, Gem\u00e4ldegalerie, Dutch, Berlin, Baroque, Genre, Interior, Light, Google Art Project, Art History, Smarthistory, Khan Academy, OER, Painting, Netherlands", "youtube_id": "uvA6YY4yHtM", "readable_id": "jan-vermeer-the-glass-of-wine-c-1661"}, "8y7xP4zz0UY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8y7xP4zz0UY.mp4/8y7xP4zz0UY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8y7xP4zz0UY.mp4/8y7xP4zz0UY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8y7xP4zz0UY.m3u8/8y7xP4zz0UY.m3u8"}, "duration": 291, "id": "8y7xP4zz0UY", "title": "Cube root of a non-perfect cube", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/exponents-radicals/cube-root-tutorial/simplifying-cube-roots-1/", "slug": "simplifying-cube-roots-1", "kind": "Video", "video_id": "8y7xP4zz0UY", "keywords": "", "youtube_id": "8y7xP4zz0UY", "readable_id": "simplifying-cube-roots-1"}, "SadSIPGOeIE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SadSIPGOeIE.mp4/SadSIPGOeIE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SadSIPGOeIE.mp4/SadSIPGOeIE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SadSIPGOeIE.m3u8/SadSIPGOeIE.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/room-1990/", "duration": 207, "id": "SadSIPGOeIE", "title": "Room: 1990s", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Helen Little explores the 1990s.\n\nLearn more about the art featured in this video:\n-\u00a0Leon Kossoff, Christ Church, Spitalfields, Morning, 1990\n-\u00a0Keith Coventry, East Street Estate, 1994\n- Chris Ofili, No Woman, No Cry, 1998", "slug": "room-1990", "kind": "Video", "video_id": "SadSIPGOeIE", "keywords": "modern art, contemporary art, Tate", "youtube_id": "SadSIPGOeIE", "readable_id": "room-1990"}, "YZD5ifHZILE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YZD5ifHZILE.mp4/YZD5ifHZILE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YZD5ifHZILE.mp4/YZD5ifHZILE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YZD5ifHZILE.m3u8/YZD5ifHZILE.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/fractions-unlike-denom-pre-alg/adding-fractions-with-10-and-100-as-denominators/", "duration": 265, "id": "YZD5ifHZILE", "title": "Adding fractions with unlike denominators: units of 10", "format": "mp4", "description": "A great way to learn how to add fractions with unlike demoninators is to do so with denominators in units of 10 and 100. Like this...", "slug": "adding-fractions-with-10-and-100-as-denominators", "kind": "Video", "video_id": "YZD5ifHZILE", "keywords": "", "youtube_id": "YZD5ifHZILE", "readable_id": "adding-fractions-with-10-and-100-as-denominators"}, "SJ3TKg_3PD8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SJ3TKg_3PD8.mp4/SJ3TKg_3PD8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SJ3TKg_3PD8.mp4/SJ3TKg_3PD8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SJ3TKg_3PD8.m3u8/SJ3TKg_3PD8.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/reactions-alcohols-tutorial/biological-redox-reactions/", "duration": 586, "id": "SJ3TKg_3PD8", "title": "Biological redox reactions", "format": "mp4", "description": "", "slug": "biological-redox-reactions", "kind": "Video", "video_id": "SJ3TKg_3PD8", "keywords": "", "youtube_id": "SJ3TKg_3PD8", "readable_id": "biological-redox-reactions"}, "Nue0DINMRPM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nue0DINMRPM.mp4/Nue0DINMRPM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nue0DINMRPM.mp4/Nue0DINMRPM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nue0DINMRPM.m3u8/Nue0DINMRPM.m3u8"}, "duration": 69, "id": "Nue0DINMRPM", "title": "Standard cell", "format": "mp4", "description": "Testing out a cell which holds the metals at a constant distance. We add it to salt water and then check the deflection. Can this be used as a standard unit?", "path": "khan/science/discoveries-projects/discoveries/batteries/standard-cell/", "slug": "standard-cell", "kind": "Video", "video_id": "Nue0DINMRPM", "keywords": "battery", "youtube_id": "Nue0DINMRPM", "readable_id": "standard-cell"}, "Ri557hvwhcM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ri557hvwhcM.mp4/Ri557hvwhcM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ri557hvwhcM.mp4/Ri557hvwhcM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ri557hvwhcM.m3u8/Ri557hvwhcM.m3u8"}, "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-6-magnetic-field-due-to-current/", "duration": 582, "id": "Ri557hvwhcM", "title": "Magnetism 6: Magnetic field due to current", "format": "mp4", "description": "See how a wire carrying a current creates a magnetic field.", "slug": "magnetism-6-magnetic-field-due-to-current", "kind": "Video", "video_id": "Ri557hvwhcM", "keywords": "physics, current, magnetic, field", "youtube_id": "Ri557hvwhcM", "readable_id": "magnetism-6-magnetic-field-due-to-current"}, "HUZDPWLTZ0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HUZDPWLTZ0g.mp4/HUZDPWLTZ0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HUZDPWLTZ0g.mp4/HUZDPWLTZ0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HUZDPWLTZ0g.m3u8/HUZDPWLTZ0g.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/surrealism1/dal-metamorphosis-of-narcissus-1937/", "duration": 248, "id": "HUZDPWLTZ0g", "title": "Dali, Metamorphosis of Narcissus", "format": "mp4", "description": "Salvador Dal\u00ed, Metamorphosis of Narcissus, 1937, oil on canvas, 51.1 x 78.1 cm (Tate Modern, London) Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\n\u00a0\n\nThe ancient source of this subject is Ovid's Metamorphosis (Book 3, lines 339-507) tells of Narcissus who upon seeing his own image reflected in a pool so falls in love that he could not look away, eventually he vanishes and in his place is a \"sweet flower, gold and white, the white around the gold.\"\n\nDal\u00ed's poem, below, accompanied the painting when it was initially exhibited:\n\nNarcissus,\n\nin his immobility,\n\nabsorbed by his reflection with the digestive slowness of carnivorous plants,\n\nbecomes invisible.\n\nThere remains of him only the hallucinatingly white oval of his head,\n\nhis head again more tender,\n\nhis head, chrysalis of hidden biological designs,\n\nhis head held up by the tips of the water's fingers,\n\nat the tips of the fingers\n\nof the insensate hand,\n\nof the terrible hand,\n\nof the mortal hand\n\nof his own reflection.\n\nWhen that head slits\n\nwhen that head splits\n\nwhen that head bursts,\n\nit will be the flower,\n\nthe new Narcissus,\n\nGala - my Narcissus\n", "slug": "dal-metamorphosis-of-narcissus-1937", "kind": "Video", "video_id": "HUZDPWLTZ0g", "keywords": "Salvador Dal\u00ed, Smarthistory, Art History, Surrealism", "youtube_id": "HUZDPWLTZ0g", "readable_id": "dal-metamorphosis-of-narcissus-1937"}, "HGoZfzz6dU0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HGoZfzz6dU0.mp4/HGoZfzz6dU0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HGoZfzz6dU0.mp4/HGoZfzz6dU0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HGoZfzz6dU0.m3u8/HGoZfzz6dU0.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinatorics_precalc/zero-factorial-or-0/", "duration": 290, "id": "HGoZfzz6dU0", "title": "Zero factorial or 0!", "format": "mp4", "description": "", "slug": "zero-factorial-or-0", "kind": "Video", "video_id": "HGoZfzz6dU0", "keywords": "", "youtube_id": "HGoZfzz6dU0", "readable_id": "zero-factorial-or-0"}, "Czwrqu5czFU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Czwrqu5czFU.mp4/Czwrqu5czFU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Czwrqu5czFU.mp4/Czwrqu5czFU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Czwrqu5czFU.m3u8/Czwrqu5czFU.m3u8"}, "duration": 352, "id": "Czwrqu5czFU", "title": "Piaget's stages of cognitive development", "format": "mp4", "description": "\u200bLearn about the stages and developmental milestones in Piaget's theory of cognitive development.", "path": "khan/test-prep/mcat/processing-the-environment/cognition/piagets-stages-of-cognitive-development/", "slug": "piagets-stages-of-cognitive-development", "kind": "Video", "video_id": "Czwrqu5czFU", "keywords": "", "youtube_id": "Czwrqu5czFU", "readable_id": "piagets-stages-of-cognitive-development"}, "BPAsaeCbFZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BPAsaeCbFZQ.mp4/BPAsaeCbFZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BPAsaeCbFZQ.mp4/BPAsaeCbFZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BPAsaeCbFZQ.m3u8/BPAsaeCbFZQ.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/gothic1/bonaventura-berlinghieri-altarpiece-of-st-francis-c-1235/", "duration": 225, "id": "BPAsaeCbFZQ", "title": "Berlinghieri, St. Francis altarpiece", "format": "mp4", "description": "Bonaventura Berlinghieri, \u00a0St. Francis Altarpiece, 1235 (Church of San Francesco, Pescia, Italy). Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "bonaventura-berlinghieri-altarpiece-of-st-francis-c-1235", "kind": "Video", "video_id": "BPAsaeCbFZQ", "keywords": "Berlinghieri, Altarpiece of St. Francis, 13th Century, Altarpiece, St. Francis, Pescia, Italy, Church of San Francesco, smarthistory, Gothic Art", "youtube_id": "BPAsaeCbFZQ", "readable_id": "bonaventura-berlinghieri-altarpiece-of-st-francis-c-1235"}, "7siSvYs84fg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7siSvYs84fg.mp4/7siSvYs84fg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7siSvYs84fg.mp4/7siSvYs84fg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7siSvYs84fg.m3u8/7siSvYs84fg.m3u8"}, "duration": 274, "id": "7siSvYs84fg", "title": "Change in expected future prices and demand", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/demand-curve-tutorial/change-in-expected-future-prices-and-demand/", "slug": "change-in-expected-future-prices-and-demand", "kind": "Video", "video_id": "7siSvYs84fg", "keywords": "", "youtube_id": "7siSvYs84fg", "readable_id": "change-in-expected-future-prices-and-demand"}, "kT4Mp9EdVqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kT4Mp9EdVqs.mp4/kT4Mp9EdVqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kT4Mp9EdVqs.mp4/kT4Mp9EdVqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kT4Mp9EdVqs.m3u8/kT4Mp9EdVqs.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/matrix_multiplication/matrix-multiplication-intro/", "duration": 386, "id": "kT4Mp9EdVqs", "title": "Matrix multiplication introduction", "format": "mp4", "description": "", "slug": "matrix-multiplication-intro", "kind": "Video", "video_id": "kT4Mp9EdVqs", "keywords": "", "youtube_id": "kT4Mp9EdVqs", "readable_id": "matrix-multiplication-intro"}, "9onC3FwiQeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9onC3FwiQeg.mp4/9onC3FwiQeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9onC3FwiQeg.mp4/9onC3FwiQeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9onC3FwiQeg.m3u8/9onC3FwiQeg.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/brass/trombone-interview-and-demonstration-with-principal-joseph-alessi/", "duration": 598, "id": "9onC3FwiQeg", "title": "Trombone: Interview and demonstration with principal Joseph Alessi", "format": "mp4", "description": "", "slug": "trombone-interview-and-demonstration-with-principal-joseph-alessi", "kind": "Video", "video_id": "9onC3FwiQeg", "keywords": "", "youtube_id": "9onC3FwiQeg", "readable_id": "trombone-interview-and-demonstration-with-principal-joseph-alessi"}, "xHUsdE880so": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xHUsdE880so.mp4/xHUsdE880so.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xHUsdE880so.mp4/xHUsdE880so.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xHUsdE880so.m3u8/xHUsdE880so.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-aortic-dissection-and-aneurysm/thoracic-aortic-aneurysms/", "duration": 891, "id": "xHUsdE880so", "title": "Thoracic aortic aneurysms", "format": "mp4", "description": "", "slug": "thoracic-aortic-aneurysms", "kind": "Video", "video_id": "xHUsdE880so", "keywords": "", "youtube_id": "xHUsdE880so", "readable_id": "thoracic-aortic-aneurysms"}, "mpHMuaVW0DI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mpHMuaVW0DI.mp4/mpHMuaVW0DI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mpHMuaVW0DI.mp4/mpHMuaVW0DI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mpHMuaVW0DI.m3u8/mpHMuaVW0DI.m3u8"}, "duration": 164, "id": "mpHMuaVW0DI", "title": "Dogs cats and bears in a pet store analytic argument", "format": "mp4", "description": "", "path": "khan/math/algebra/linear_inequalities/structure-expressions-linear/dogs-cats-and-bears-in-a-pet-store-analytic-argument/", "slug": "dogs-cats-and-bears-in-a-pet-store-analytic-argument", "kind": "Video", "video_id": "mpHMuaVW0DI", "keywords": "", "youtube_id": "mpHMuaVW0DI", "readable_id": "dogs-cats-and-bears-in-a-pet-store-analytic-argument"}, "Egzqu5DWwbA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Egzqu5DWwbA.mp4/Egzqu5DWwbA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Egzqu5DWwbA.mp4/Egzqu5DWwbA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Egzqu5DWwbA.m3u8/Egzqu5DWwbA.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/dvorak-symphony-9/dvorak-two/", "duration": 689, "id": "Egzqu5DWwbA", "title": "Antoni\u0301n Dvor\u030ca\u0301k: Symphony No. 9 \"From the New World,\" analysis by Gerard Schwarz (part 2)", "format": "mp4", "description": "Watch the full performance here (starting at 7:15)\u00a0", "slug": "dvorak-two", "kind": "Video", "video_id": "Egzqu5DWwbA", "keywords": "", "youtube_id": "Egzqu5DWwbA", "readable_id": "dvorak-two"}, "O3elOBXBcCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O3elOBXBcCM.mp4/O3elOBXBcCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O3elOBXBcCM.mp4/O3elOBXBcCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O3elOBXBcCM.m3u8/O3elOBXBcCM.m3u8"}, "duration": 178, "id": "O3elOBXBcCM", "title": "\"Terrible Beauty\" with C. Griffith Mann", "format": "mp4", "description": "Met curator C. Griffith Mann on storytelling in the Master of Belmonte\u2019s Saint Michael.\n\nThe Archangel Michael is portrayed as a saint of the Church Militant. Armed with a coat of mail, a dagger, shield, and lance, he symbolizes Christ triumphant over evil. The demon at his feet is the Antichrist, whom Christ has conquered and cast out of heaven. The youthful beauty and sumptuous raiment of St. Michael combine with the rich courtly setting to form a stark visual contrast between the strength and splendor of the Church and the monstrous, defeated demon.\n\nView this work with metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "terrible-beauty/", "slug": "terrible-beauty", "kind": "Video", "video_id": "O3elOBXBcCM", "keywords": "authority, danger, metal, motion, sculpture, North America", "youtube_id": "O3elOBXBcCM", "readable_id": "terrible-beauty"}, "uMqM0I5ojs0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uMqM0I5ojs0.mp4/uMqM0I5ojs0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uMqM0I5ojs0.mp4/uMqM0I5ojs0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uMqM0I5ojs0.m3u8/uMqM0I5ojs0.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/stress/physical-effects-of-stress/", "duration": 635, "id": "uMqM0I5ojs0", "title": "Physical effects of stress", "format": "mp4", "description": "", "slug": "physical-effects-of-stress", "kind": "Video", "video_id": "uMqM0I5ojs0", "keywords": "mcat", "youtube_id": "uMqM0I5ojs0", "readable_id": "physical-effects-of-stress"}, "XyiQ2dwJHXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XyiQ2dwJHXE.mp4/XyiQ2dwJHXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XyiQ2dwJHXE.mp4/XyiQ2dwJHXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XyiQ2dwJHXE.m3u8/XyiQ2dwJHXE.m3u8"}, "duration": 554, "id": "XyiQ2dwJHXE", "title": "3D divergence theorem intuition", "format": "mp4", "description": "Intuition behind the Divergence Theorem in three dimensions", "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem/3-d-divergence-theorem-intuition/", "slug": "3-d-divergence-theorem-intuition", "kind": "Video", "video_id": "XyiQ2dwJHXE", "keywords": "", "youtube_id": "XyiQ2dwJHXE", "readable_id": "3-d-divergence-theorem-intuition"}, "LiPQuOFVHl4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LiPQuOFVHl4.mp4/LiPQuOFVHl4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LiPQuOFVHl4.mp4/LiPQuOFVHl4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LiPQuOFVHl4.m3u8/LiPQuOFVHl4.m3u8"}, "duration": 1219, "id": "LiPQuOFVHl4", "title": "Salman Khan on Charlie Rose 2013", "format": "mp4", "description": "", "path": "charlie-rose-2013/", "slug": "charlie-rose-2013", "kind": "Video", "video_id": "LiPQuOFVHl4", "keywords": "", "youtube_id": "LiPQuOFVHl4", "readable_id": "charlie-rose-2013"}, "lqv9dXXjfWE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lqv9dXXjfWE.mp4/lqv9dXXjfWE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lqv9dXXjfWE.mp4/lqv9dXXjfWE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lqv9dXXjfWE.m3u8/lqv9dXXjfWE.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-39/", "duration": 613, "id": "lqv9dXXjfWE", "title": "GMAT: Data sufficiency 39", "format": "mp4", "description": "148-150, pg. 290", "slug": "gmat-data-sufficiency-39", "kind": "Video", "video_id": "lqv9dXXjfWE", "keywords": "gmat, data, sufficiency, math", "youtube_id": "lqv9dXXjfWE", "readable_id": "gmat-data-sufficiency-39"}, "neAFEvNsiqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/neAFEvNsiqw.mp4/neAFEvNsiqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/neAFEvNsiqw.mp4/neAFEvNsiqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/neAFEvNsiqw.m3u8/neAFEvNsiqw.m3u8"}, "duration": 724, "id": "neAFEvNsiqw", "title": "Credit default swaps 2", "format": "mp4", "description": "Systemic risks of credit default swaps. Financial weapons of mass destruction.", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/credit-default-swaps-2/", "slug": "credit-default-swaps-2", "kind": "Video", "video_id": "neAFEvNsiqw", "keywords": "CDS, credit, default, swaps, buffet, financial, weapons, of, mass, destruction", "youtube_id": "neAFEvNsiqw", "readable_id": "credit-default-swaps-2"}, "STs6h1qUSGs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/STs6h1qUSGs.mp4/STs6h1qUSGs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/STs6h1qUSGs.mp4/STs6h1qUSGs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/STs6h1qUSGs.m3u8/STs6h1qUSGs.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/giovanni-bellini-saint-francis-in-the-desert-circa-1480/", "duration": 503, "id": "STs6h1qUSGs", "title": "Bellini, St. Francis", "format": "mp4", "description": "Giovanni Bellini, Saint Francis in the Desert, c. 1480, oil and tempera on poplar, 124.5 x 141.9 cm (The Frick Collection, New York) . View this work up close on the Google Art Project", "slug": "giovanni-bellini-saint-francis-in-the-desert-circa-1480", "kind": "Video", "video_id": "STs6h1qUSGs", "keywords": "Giovanni Bellini, Bellini, Saint Francis in the Desert, St. Francis, Ecstasy, Receiving the Stigmata, 1480, Frick Collection, Frick, Venice, Venetian, Renaissance, Landscape, Google Art Project, Smarthistory, Khan Academy, New York, painting, glazing, art, art history, OER", "youtube_id": "STs6h1qUSGs", "readable_id": "giovanni-bellini-saint-francis-in-the-desert-circa-1480"}, "Fc5t_5r_7IU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Fc5t_5r_7IU.mp4/Fc5t_5r_7IU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Fc5t_5r_7IU.mp4/Fc5t_5r_7IU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Fc5t_5r_7IU.m3u8/Fc5t_5r_7IU.m3u8"}, "duration": 585, "id": "Fc5t_5r_7IU", "title": "Calculating R-squared", "format": "mp4", "description": "Calculating R-Squared to see how well a regression line fits data", "path": "khan/math/probability/regression/regression-correlation/calculating-r-squared/", "slug": "calculating-r-squared", "kind": "Video", "video_id": "Fc5t_5r_7IU", "keywords": "Calculating, R-Squared, to, see, how, well, regression, line, fits, data, CC_8_SP_2, CC_8_SP_3", "youtube_id": "Fc5t_5r_7IU", "readable_id": "calculating-r-squared"}, "F2psxMnGdUw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F2psxMnGdUw.mp4/F2psxMnGdUw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F2psxMnGdUw.mp4/F2psxMnGdUw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F2psxMnGdUw.m3u8/F2psxMnGdUw.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-6/", "duration": 559, "id": "F2psxMnGdUw", "title": "Disc method: Rotating x = f(y) around the y-axis", "format": "mp4", "description": "Using the disk method around the y-axis.", "slug": "solid-of-revolution-part-6", "kind": "Video", "video_id": "F2psxMnGdUw", "keywords": "solid, revolution, volume, rotation, calculus, disk", "youtube_id": "F2psxMnGdUw", "readable_id": "solid-of-revolution-part-6"}, "HfXqyPS5bRo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HfXqyPS5bRo.mp4/HfXqyPS5bRo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HfXqyPS5bRo.mp4/HfXqyPS5bRo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HfXqyPS5bRo.m3u8/HfXqyPS5bRo.m3u8"}, "duration": 503, "id": "HfXqyPS5bRo", "title": "Thermoregulation by muscles", "format": "mp4", "description": "Why do we shiver when it's cold? How do our muscles make sure we don't freeze or have a heat stroke? Learn how the skin, brain, blood vessels, and muscles work together to maintain our core body temperature.\u00a0 By Raja Narayan.", "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/thermoregulation-by-muscles/", "slug": "thermoregulation-by-muscles", "kind": "Video", "video_id": "HfXqyPS5bRo", "keywords": "thermoregulation, muscles", "youtube_id": "HfXqyPS5bRo", "readable_id": "thermoregulation-by-muscles"}, "AOOKe2ODlWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AOOKe2ODlWM.mp4/AOOKe2ODlWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AOOKe2ODlWM.mp4/AOOKe2ODlWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AOOKe2ODlWM.m3u8/AOOKe2ODlWM.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-3-problem-solving/", "duration": 64, "id": "AOOKe2ODlWM", "title": "3 Solving simple equation", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-3-problem-solving", "kind": "Video", "video_id": "AOOKe2ODlWM", "keywords": "", "youtube_id": "AOOKe2ODlWM", "readable_id": "sat-3-problem-solving"}, "a_bKCdxLkF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a_bKCdxLkF0.mp4/a_bKCdxLkF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a_bKCdxLkF0.mp4/a_bKCdxLkF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a_bKCdxLkF0.m3u8/a_bKCdxLkF0.m3u8"}, "path": "khan/partner-content/big-history-project/agriculture-civilization/first-cities-appear/bhp-intro-to-history/", "duration": 495, "id": "a_bKCdxLkF0", "title": "Intro to History", "format": "mp4", "description": "Historians ask questions about the past to help understand the present, and gain insight to the future.", "slug": "bhp-intro-to-history", "kind": "Video", "video_id": "a_bKCdxLkF0", "keywords": "", "youtube_id": "a_bKCdxLkF0", "readable_id": "bhp-intro-to-history"}, "EkFUb3L040E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EkFUb3L040E.mp4/EkFUb3L040E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EkFUb3L040E.mp4/EkFUb3L040E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EkFUb3L040E.m3u8/EkFUb3L040E.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-iron-deficiency-anemia-and-anemia-of-chronic-disease/anemia-of-chronic-disease/", "duration": 379, "id": "EkFUb3L040E", "title": "Anemia of chronic disease", "format": "mp4", "description": "", "slug": "anemia-of-chronic-disease", "kind": "Video", "video_id": "EkFUb3L040E", "keywords": "", "youtube_id": "EkFUb3L040E", "readable_id": "anemia-of-chronic-disease"}, "LEFE1km5ROY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LEFE1km5ROY.mp4/LEFE1km5ROY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LEFE1km5ROY.mp4/LEFE1km5ROY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LEFE1km5ROY.m3u8/LEFE1km5ROY.m3u8"}, "duration": 358, "id": "LEFE1km5ROY", "title": "Stem-and-leaf plots", "format": "mp4", "description": "Stem-and-leaf Plots", "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/u08-l1-t2-we3-stem-and-leaf-plots/", "slug": "u08-l1-t2-we3-stem-and-leaf-plots", "kind": "Video", "video_id": "LEFE1km5ROY", "keywords": "u08_l1_t2_we3, Stem-and-leaf, Plots", "youtube_id": "LEFE1km5ROY", "readable_id": "u08-l1-t2-we3-stem-and-leaf-plots"}, "iKjVbO2R4_w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iKjVbO2R4_w.mp4/iKjVbO2R4_w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iKjVbO2R4_w.mp4/iKjVbO2R4_w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iKjVbO2R4_w.m3u8/iKjVbO2R4_w.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/later-zhao/buddha-338/", "duration": 123, "id": "iKjVbO2R4_w", "title": "Seated Buddha dated 338", "format": "mp4", "description": "This Buddha has a unique status among Buddhas in China. It bears an inscription on the back that is equivalent to the year 338. This is the earliest date inscribed on any Buddha sculpture from China, anywhere in the world. Listen to Michael Knight, Curator Emeritus of Chinese Art at the Asian Art Museum, discuss one of the museum's masterpieces, a seated Buddha from 338, as you view images of the object and a rendering in 3D. Learn more about this seated Buddha on the Asian Art Museum's education website.", "slug": "buddha-338", "kind": "Video", "video_id": "iKjVbO2R4_w", "keywords": "", "youtube_id": "iKjVbO2R4_w", "readable_id": "buddha-338"}, "Y2-tz27nKoQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y2-tz27nKoQ.mp4/Y2-tz27nKoQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y2-tz27nKoQ.mp4/Y2-tz27nKoQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y2-tz27nKoQ.m3u8/Y2-tz27nKoQ.m3u8"}, "duration": 265, "id": "Y2-tz27nKoQ", "title": "Converting a fraction to a repeating decimal", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/converting-a-fraction-to-a-repeating-decimal/", "slug": "converting-a-fraction-to-a-repeating-decimal", "kind": "Video", "video_id": "Y2-tz27nKoQ", "keywords": "", "youtube_id": "Y2-tz27nKoQ", "readable_id": "converting-a-fraction-to-a-repeating-decimal"}, "0uHhk7P9SNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0uHhk7P9SNo.mp4/0uHhk7P9SNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0uHhk7P9SNo.mp4/0uHhk7P9SNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0uHhk7P9SNo.m3u8/0uHhk7P9SNo.m3u8"}, "path": "khan/math/probability/independent-dependent-probability/basic_probability/describing-subsets-of-sample-spaces-exercise/", "duration": 344, "id": "0uHhk7P9SNo", "title": "Describing subsets of sample spaces exercise", "format": "mp4", "description": "", "slug": "describing-subsets-of-sample-spaces-exercise", "kind": "Video", "video_id": "0uHhk7P9SNo", "keywords": "", "youtube_id": "0uHhk7P9SNo", "readable_id": "describing-subsets-of-sample-spaces-exercise"}, "175ig2I9rt0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/175ig2I9rt0.mp4/175ig2I9rt0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/175ig2I9rt0.mp4/175ig2I9rt0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/175ig2I9rt0.m3u8/175ig2I9rt0.m3u8"}, "duration": 421, "id": "175ig2I9rt0", "title": "Bystander effect", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/social-psychology/bystander-effect/", "slug": "bystander-effect", "kind": "Video", "video_id": "175ig2I9rt0", "keywords": "", "youtube_id": "175ig2I9rt0", "readable_id": "bystander-effect"}, "UekR9J31a2o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UekR9J31a2o.mp4/UekR9J31a2o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UekR9J31a2o.mp4/UekR9J31a2o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UekR9J31a2o.m3u8/UekR9J31a2o.m3u8"}, "path": "khan/science/physics/thermodynamics/thermodynamics-part-5/", "duration": 482, "id": "UekR9J31a2o", "title": "Thermodynamics (part 5)", "format": "mp4", "description": "Example problem involving PV=nRT", "slug": "thermodynamics-part-5", "kind": "Video", "video_id": "UekR9J31a2o", "keywords": "physics, thermodynamics, mole, avogadro's, number", "youtube_id": "UekR9J31a2o", "readable_id": "thermodynamics-part-5"}, "qCdNab2WLiw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qCdNab2WLiw.mp4/qCdNab2WLiw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qCdNab2WLiw.mp4/qCdNab2WLiw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qCdNab2WLiw.m3u8/qCdNab2WLiw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pleural-effusion/transudate-vs-exudate/", "duration": 541, "id": "qCdNab2WLiw", "title": "Transudate vs exudate", "format": "mp4", "description": "In a pleural effusion, different fluids can enter the pleural cavity. Transudate is fluid pushed through the capillary due to high pressure within the capillary. Exudate is fluid that leaks around the cells of the capillaries caused by inflammation. Learn why transudative fluid does not contain proteins, why exudate does contain proteins, and how health professionals can differentiate between the two using Light\u2019s criteria.", "slug": "transudate-vs-exudate", "kind": "Video", "video_id": "qCdNab2WLiw", "keywords": "", "youtube_id": "qCdNab2WLiw", "readable_id": "transudate-vs-exudate"}, "MJIagUN4Lhw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MJIagUN4Lhw.mp4/MJIagUN4Lhw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MJIagUN4Lhw.mp4/MJIagUN4Lhw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MJIagUN4Lhw.m3u8/MJIagUN4Lhw.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/flute-interview-demo/", "duration": 547, "id": "MJIagUN4Lhw", "title": "Flute: Interview and demonstration with principal Jeffrey Khaner", "format": "mp4", "description": "", "slug": "flute-interview-demo", "kind": "Video", "video_id": "MJIagUN4Lhw", "keywords": "", "youtube_id": "MJIagUN4Lhw", "readable_id": "flute-interview-demo"}, "xH5Y3Kmx82w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xH5Y3Kmx82w.mp4/xH5Y3Kmx82w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xH5Y3Kmx82w.mp4/xH5Y3Kmx82w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xH5Y3Kmx82w.m3u8/xH5Y3Kmx82w.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system/gas-exchange/alveolar-gas-equation-part-2/", "duration": 426, "id": "xH5Y3Kmx82w", "title": "Alveolar gas equation - part 2", "format": "mp4", "description": "Find out how to calculate exactly how much oxygen is deep down inside your lungs! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "alveolar-gas-equation-part-2", "kind": "Video", "video_id": "xH5Y3Kmx82w", "keywords": "", "youtube_id": "xH5Y3Kmx82w", "readable_id": "alveolar-gas-equation-part-2"}, "r2syXj4Eb6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r2syXj4Eb6w.mp4/r2syXj4Eb6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r2syXj4Eb6w.mp4/r2syXj4Eb6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r2syXj4Eb6w.m3u8/r2syXj4Eb6w.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/percussion/piano-as-orchestral-instrument-interview-and-demonstration-with-kimberly-russ/", "duration": 394, "id": "r2syXj4Eb6w", "title": "Piano (as orchestral instrument): Interview and demonstration with Kimberly Russ", "format": "mp4", "description": "", "slug": "piano-as-orchestral-instrument-interview-and-demonstration-with-kimberly-russ", "kind": "Video", "video_id": "r2syXj4Eb6w", "keywords": "", "youtube_id": "r2syXj4Eb6w", "readable_id": "piano-as-orchestral-instrument-interview-and-demonstration-with-kimberly-russ"}, "zM_p7tfWvLU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zM_p7tfWvLU.mp4/zM_p7tfWvLU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zM_p7tfWvLU.mp4/zM_p7tfWvLU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zM_p7tfWvLU.m3u8/zM_p7tfWvLU.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/core-algebra-exponent-properties/exponent-properties-involving-products/", "duration": 840, "id": "zM_p7tfWvLU", "title": "Exponent properties involving products", "format": "mp4", "description": "Exponent Properties Involving Products", "slug": "exponent-properties-involving-products", "kind": "Video", "video_id": "zM_p7tfWvLU", "keywords": "Exponent, Properties, Involving, Products, CC_8_EE_1, CC_39336_A-SSE_3_c", "youtube_id": "zM_p7tfWvLU", "readable_id": "exponent-properties-involving-products"}, "9p3HNMe-oAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9p3HNMe-oAI.mp4/9p3HNMe-oAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9p3HNMe-oAI.mp4/9p3HNMe-oAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9p3HNMe-oAI.m3u8/9p3HNMe-oAI.m3u8"}, "duration": 461, "id": "9p3HNMe-oAI", "title": "Math mechanics of Thai banking crisis", "format": "mp4", "description": "Going through the mechanics of how a Thai financial institution can lose their shirt when their currency devalues.", "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/currency-reserves/math-mechanics-of-thai-banking-crisis/", "slug": "math-mechanics-of-thai-banking-crisis", "kind": "Video", "video_id": "9p3HNMe-oAI", "keywords": "macroeconomics, thai, currency, crisis", "youtube_id": "9p3HNMe-oAI", "readable_id": "math-mechanics-of-thai-banking-crisis"}, "SZUDoEdjTzg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SZUDoEdjTzg.mp4/SZUDoEdjTzg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SZUDoEdjTzg.mp4/SZUDoEdjTzg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SZUDoEdjTzg.m3u8/SZUDoEdjTzg.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithmic-scale-patterns/benford-s-law-explanation-sequel-to-mysteries-of-benford-s-law/", "duration": 387, "id": "SZUDoEdjTzg", "title": "Benford's law explanation (sequel to mysteries of Benford's law)", "format": "mp4", "description": "Vi and Sal talk through the intuition of Benford's law (part 2)", "slug": "benford-s-law-explanation-sequel-to-mysteries-of-benford-s-law", "kind": "Video", "video_id": "SZUDoEdjTzg", "keywords": "math, mysteries", "youtube_id": "SZUDoEdjTzg", "readable_id": "benford-s-law-explanation-sequel-to-mysteries-of-benford-s-law"}, "DzVug3LpSHk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DzVug3LpSHk.mp4/DzVug3LpSHk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DzVug3LpSHk.mp4/DzVug3LpSHk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DzVug3LpSHk.m3u8/DzVug3LpSHk.m3u8"}, "path": "khan/partner-content/big-history-project/expansion-interconnection/commerce-collective-learning/bhp-systems-exchange-trade/", "duration": 274, "id": "DzVug3LpSHk", "title": "Systems of Exchange and Trade", "format": "mp4", "description": "Wealthy Romans and Chinese silkworms: connections that reshape the world.", "slug": "bhp-systems-exchange-trade", "kind": "Video", "video_id": "DzVug3LpSHk", "keywords": "", "youtube_id": "DzVug3LpSHk", "readable_id": "bhp-systems-exchange-trade"}, "xO_1bYgoQvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xO_1bYgoQvA.mp4/xO_1bYgoQvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xO_1bYgoQvA.mp4/xO_1bYgoQvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xO_1bYgoQvA.m3u8/xO_1bYgoQvA.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multiplication_fun/multiplication-2-the-multiplication-tables/", "duration": 927, "id": "xO_1bYgoQvA", "title": "Multiplication 2: The multiplication tables", "format": "mp4", "description": "Introduction to the multiplication tables from 2-9.", "slug": "multiplication-2-the-multiplication-tables", "kind": "Video", "video_id": "xO_1bYgoQvA", "keywords": "arithmetic, multiplication, tables, CC_3_OA_7, CC_3_OA_9", "youtube_id": "xO_1bYgoQvA", "readable_id": "multiplication-2-the-multiplication-tables"}, "LccmkSz-Y-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LccmkSz-Y-w.mp4/LccmkSz-Y-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LccmkSz-Y-w.mp4/LccmkSz-Y-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LccmkSz-Y-w.m3u8/LccmkSz-Y-w.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/reactions-alcohols-tutorial/preparation-of-alkyl-halides-from-alcohols/", "duration": 534, "id": "LccmkSz-Y-w", "title": "Preparation of alkyl halides from alcohols", "format": "mp4", "description": "", "slug": "preparation-of-alkyl-halides-from-alcohols", "kind": "Video", "video_id": "LccmkSz-Y-w", "keywords": "", "youtube_id": "LccmkSz-Y-w", "readable_id": "preparation-of-alkyl-halides-from-alcohols"}, "MGF0jSP3Txo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MGF0jSP3Txo.mp4/MGF0jSP3Txo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MGF0jSP3Txo.mp4/MGF0jSP3Txo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MGF0jSP3Txo.m3u8/MGF0jSP3Txo.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/acid-and-base-catalyzed-hydrolysis-of-amides/", "duration": 707, "id": "MGF0jSP3Txo", "title": "Acid and base-catalyzed hydrolysis of amides", "format": "mp4", "description": "The mechanisms for acid and base catalyzed hydrolysis of amides", "slug": "acid-and-base-catalyzed-hydrolysis-of-amides", "kind": "Video", "video_id": "MGF0jSP3Txo", "keywords": "", "youtube_id": "MGF0jSP3Txo", "readable_id": "acid-and-base-catalyzed-hydrolysis-of-amides"}, "lZfXc4nHooo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lZfXc4nHooo.mp4/lZfXc4nHooo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lZfXc4nHooo.mp4/lZfXc4nHooo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lZfXc4nHooo.m3u8/lZfXc4nHooo.m3u8"}, "duration": 300, "id": "lZfXc4nHooo", "title": "Basic fractional exponents", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/basic-fractional-exponents/", "slug": "basic-fractional-exponents", "kind": "Video", "video_id": "lZfXc4nHooo", "keywords": "", "youtube_id": "lZfXc4nHooo", "readable_id": "basic-fractional-exponents"}, "JYQqml4-4q4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JYQqml4-4q4.mp4/JYQqml4-4q4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JYQqml4-4q4.mp4/JYQqml4-4q4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JYQqml4-4q4.m3u8/JYQqml4-4q4.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/taylor-series-at-0-maclaurin-for-e-to-the-x/", "duration": 370, "id": "JYQqml4-4q4", "title": "Taylor series at 0 (Maclaurin) for e to the x", "format": "mp4", "description": "Taylor Series at 0 (Maclaurin) for e to the x", "slug": "taylor-series-at-0-maclaurin-for-e-to-the-x", "kind": "Video", "video_id": "JYQqml4-4q4", "keywords": "Taylor, Series, at, (Maclaurin), for, to, the", "youtube_id": "JYQqml4-4q4", "readable_id": "taylor-series-at-0-maclaurin-for-e-to-the-x"}, "TxkA5UX4kis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TxkA5UX4kis.mp4/TxkA5UX4kis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TxkA5UX4kis.mp4/TxkA5UX4kis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TxkA5UX4kis.m3u8/TxkA5UX4kis.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/compressioncodes/", "duration": 256, "id": "TxkA5UX4kis", "title": "Compression codes", "format": "mp4", "description": "What is the limit of compression?", "slug": "compressioncodes", "kind": "Video", "video_id": "TxkA5UX4kis", "keywords": "", "youtube_id": "TxkA5UX4kis", "readable_id": "compressioncodes"}, "-qV__tYb4c4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-qV__tYb4c4.mp4/-qV__tYb4c4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-qV__tYb4c4.mp4/-qV__tYb4c4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-qV__tYb4c4.m3u8/-qV__tYb4c4.m3u8"}, "path": "khan/test-prep/mcat/cells/cytoskeleton/microtubules-2/", "duration": 207, "id": "-qV__tYb4c4", "title": "Microtubules", "format": "mp4", "description": "", "slug": "microtubules-2", "kind": "Video", "video_id": "-qV__tYb4c4", "keywords": "", "youtube_id": "-qV__tYb4c4", "readable_id": "microtubules-2"}, "2RC3Hsk90t8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2RC3Hsk90t8.mp4/2RC3Hsk90t8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2RC3Hsk90t8.mp4/2RC3Hsk90t8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2RC3Hsk90t8.m3u8/2RC3Hsk90t8.m3u8"}, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-threatened/local-threats-to-biodiversity/human-activities-that-threaten-biodiversity/", "duration": 771, "id": "2RC3Hsk90t8", "title": "Human activities that threaten biodiversity", "format": "mp4", "description": "", "slug": "human-activities-that-threaten-biodiversity", "kind": "Video", "video_id": "2RC3Hsk90t8", "keywords": "", "youtube_id": "2RC3Hsk90t8", "readable_id": "human-activities-that-threaten-biodiversity"}, "Iq7a2vEsT-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iq7a2vEsT-o.mp4/Iq7a2vEsT-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iq7a2vEsT-o.mp4/Iq7a2vEsT-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iq7a2vEsT-o.m3u8/Iq7a2vEsT-o.m3u8"}, "path": "khan/math/precalculus/seq_induction/precalc-geometric-sequences/converting-an-explicit-function-to-a-recursive-function/", "duration": 390, "id": "Iq7a2vEsT-o", "title": "Converting an explicit formula of a geometric sequence to a recursive formula", "format": "mp4", "description": "", "slug": "converting-an-explicit-function-to-a-recursive-function", "kind": "Video", "video_id": "Iq7a2vEsT-o", "keywords": "", "youtube_id": "Iq7a2vEsT-o", "readable_id": "converting-an-explicit-function-to-a-recursive-function"}, "IaE632EzCxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IaE632EzCxM.mp4/IaE632EzCxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IaE632EzCxM.mp4/IaE632EzCxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IaE632EzCxM.m3u8/IaE632EzCxM.m3u8"}, "duration": 709, "id": "IaE632EzCxM", "title": "Aromatic heterocycles", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/aromatic-heterocycles/", "slug": "aromatic-heterocycles", "kind": "Video", "video_id": "IaE632EzCxM", "keywords": "", "youtube_id": "IaE632EzCxM", "readable_id": "aromatic-heterocycles"}, "lGQw-W1PxBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lGQw-W1PxBE.mp4/lGQw-W1PxBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lGQw-W1PxBE.mp4/lGQw-W1PxBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lGQw-W1PxBE.m3u8/lGQw-W1PxBE.m3u8"}, "path": "khan/math/algebra2/conics_precalc/hyperbolas-precalc/conic-sections-hyperbolas-3/", "duration": 629, "id": "lGQw-W1PxBE", "title": "Conic sections: Hyperbolas 3", "format": "mp4", "description": "Part 3 of the intro to hyperbolas", "slug": "conic-sections-hyperbolas-3", "kind": "Video", "video_id": "lGQw-W1PxBE", "keywords": "conic, section, hyperbola", "youtube_id": "lGQw-W1PxBE", "readable_id": "conic-sections-hyperbolas-3"}, "ghgPq2wjQUQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ghgPq2wjQUQ.mp4/ghgPq2wjQUQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ghgPq2wjQUQ.mp4/ghgPq2wjQUQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ghgPq2wjQUQ.m3u8/ghgPq2wjQUQ.m3u8"}, "path": "khan/humanities/history/history-survey/us-history/us-history-overview-1-jamestown-to-the-civil-war/", "duration": 1108, "id": "ghgPq2wjQUQ", "title": "US History Overview 1: Jamestown to the Civil War", "format": "mp4", "description": "Jamestown to the Civil War", "slug": "us-history-overview-1-jamestown-to-the-civil-war", "kind": "Video", "video_id": "ghgPq2wjQUQ", "keywords": "american, revolution, french, and, indian, war, constitution, united, states, boston, tea, party", "youtube_id": "ghgPq2wjQUQ", "readable_id": "us-history-overview-1-jamestown-to-the-civil-war"}, "-UagBvxCReA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-UagBvxCReA.mp4/-UagBvxCReA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-UagBvxCReA.mp4/-UagBvxCReA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-UagBvxCReA.m3u8/-UagBvxCReA.m3u8"}, "path": "khan/math/competition-math/amc-10/2013-amc-10-a/2013-amc-10-a-21-amc-12-a-17/", "duration": 433, "id": "-UagBvxCReA", "title": "2013 AMC 10 A #21 / AMC 12 A #17", "format": "mp4", "description": "Video by Art of Problem Solving. \u00a0Problem from the MAA American Mathematics Competitions", "slug": "2013-amc-10-a-21-amc-12-a-17", "kind": "Video", "video_id": "-UagBvxCReA", "keywords": "", "youtube_id": "-UagBvxCReA", "readable_id": "2013-amc-10-a-21-amc-12-a-17"}, "9MuGkAjFGzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9MuGkAjFGzA.mp4/9MuGkAjFGzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9MuGkAjFGzA.mp4/9MuGkAjFGzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9MuGkAjFGzA.m3u8/9MuGkAjFGzA.m3u8"}, "duration": 105, "id": "9MuGkAjFGzA", "title": "Pair of chests, attributed to Antonio Maffei", "format": "mp4", "description": "Listen to a family-friendly commentary about an object in the J. Paul Getty Museum's collection. Part of the Animals in Art tour at the Getty Center. Love art? Follow us on Google+ to stay in touch.", "path": "pair-of-chests-antonio-maffei/", "slug": "pair-of-chests-antonio-maffei", "kind": "Video", "video_id": "9MuGkAjFGzA", "keywords": "", "youtube_id": "9MuGkAjFGzA", "readable_id": "pair-of-chests-antonio-maffei"}, "a_Wi-6SRBTc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a_Wi-6SRBTc.mp4/a_Wi-6SRBTc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a_Wi-6SRBTc.mp4/a_Wi-6SRBTc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a_Wi-6SRBTc.m3u8/a_Wi-6SRBTc.m3u8"}, "duration": 359, "id": "a_Wi-6SRBTc", "title": "Expressions with rational numbers", "format": "mp4", "description": "Compare expressions with positive and negative fractions.", "path": "rational-number-expressions/", "slug": "rational-number-expressions", "kind": "Video", "video_id": "a_Wi-6SRBTc", "keywords": "", "youtube_id": "a_Wi-6SRBTc", "readable_id": "rational-number-expressions"}, "qcMJ1pN36r4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qcMJ1pN36r4.mp4/qcMJ1pN36r4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qcMJ1pN36r4.mp4/qcMJ1pN36r4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qcMJ1pN36r4.m3u8/qcMJ1pN36r4.m3u8"}, "duration": 207, "id": "qcMJ1pN36r4", "title": "Examples relating multiplication to division", "format": "mp4", "description": "See the relationship between multiplication and division problems.", "path": "examples-relating-multiplication-to-division/", "slug": "examples-relating-multiplication-to-division", "kind": "Video", "video_id": "qcMJ1pN36r4", "keywords": "", "youtube_id": "qcMJ1pN36r4", "readable_id": "examples-relating-multiplication-to-division"}, "j_kSmmEpvQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j_kSmmEpvQk.mp4/j_kSmmEpvQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j_kSmmEpvQk.mp4/j_kSmmEpvQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j_kSmmEpvQk.m3u8/j_kSmmEpvQk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/professional-antigen-presenting-cells-apc-and-mhc-ii-complexes/", "duration": 693, "id": "j_kSmmEpvQk", "title": "Professional antigen presenting cells (APC) and MHC II complexes", "format": "mp4", "description": "How professional antigen presenting cells present parts of engulfed pathogens on MHC II complexes (major histocompatibility complexes).", "slug": "professional-antigen-presenting-cells-apc-and-mhc-ii-complexes", "kind": "Video", "video_id": "j_kSmmEpvQk", "keywords": "MHC, APC, antingen, presenting, cells", "youtube_id": "j_kSmmEpvQk", "readable_id": "professional-antigen-presenting-cells-apc-and-mhc-ii-complexes"}, "eVl5zs6Lqy0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eVl5zs6Lqy0.mp4/eVl5zs6Lqy0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eVl5zs6Lqy0.mp4/eVl5zs6Lqy0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eVl5zs6Lqy0.m3u8/eVl5zs6Lqy0.m3u8"}, "duration": 600, "id": "eVl5zs6Lqy0", "title": "Potential energy stored in a spring", "format": "mp4", "description": "Work needed to compress a spring is the same thing as the potential energy stored in the compressed spring.", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/potential-energy-stored-in-a-spring/", "slug": "potential-energy-stored-in-a-spring", "kind": "Video", "video_id": "eVl5zs6Lqy0", "keywords": "spring, hooke's, potential, energy, work, physics", "youtube_id": "eVl5zs6Lqy0", "readable_id": "potential-energy-stored-in-a-spring"}, "jabo8iTesqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jabo8iTesqQ.mp4/jabo8iTesqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jabo8iTesqQ.mp4/jabo8iTesqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jabo8iTesqQ.m3u8/jabo8iTesqQ.m3u8"}, "duration": 439, "id": "jabo8iTesqQ", "title": "Build your own motor", "format": "mp4", "description": "In this video we show you how to build a simple motor", "path": "khan/science/discoveries-projects/discoveries/electric_motor/build-your-own-motor/", "slug": "build-your-own-motor", "kind": "Video", "video_id": "jabo8iTesqQ", "keywords": "Motor, build, brushes, projects with electricity", "youtube_id": "jabo8iTesqQ", "readable_id": "build-your-own-motor"}, "XVWOlKdpF_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XVWOlKdpF_I.mp4/XVWOlKdpF_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XVWOlKdpF_I.mp4/XVWOlKdpF_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XVWOlKdpF_I.m3u8/XVWOlKdpF_I.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/hematopoiesis/", "duration": 608, "id": "XVWOlKdpF_I", "title": "Hematopoiesis", "format": "mp4", "description": "Hematopoiesis is the process of creating new blood cells in the body. All blood cells start off as hematopoietic stem cells, and then specialize (differentiate) into myeloid cells (erythrocytes, megakaryocytes, monocytes, neutrophils, basophils, or eosinophils) or lymphoid cells (T-lymphocytes and B-lymphocytes).", "slug": "hematopoiesis", "kind": "Video", "video_id": "XVWOlKdpF_I", "keywords": "", "youtube_id": "XVWOlKdpF_I", "readable_id": "hematopoiesis"}, "Kv3feYibIUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kv3feYibIUk.mp4/Kv3feYibIUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kv3feYibIUk.mp4/Kv3feYibIUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kv3feYibIUk.m3u8/Kv3feYibIUk.m3u8"}, "path": "khan/test-prep/ap-art-history/global-contemporary/hadid-maxxi/", "duration": 321, "id": "Kv3feYibIUk", "title": "Zaha Hadid, MAXXI National Museum of XXI Century Arts, Rome", "format": "mp4", "description": "Zaha Hadid, MAXXI National Museum of XXI Century Arts,\u00a01998 -- 2009 (opened 2010), Via Guido Reni, Rome.\u00a0A conversation between Dr. Beth Harris and Dr. Steven Zucker", "slug": "hadid-maxxi", "kind": "Video", "video_id": "Kv3feYibIUk", "keywords": "architecture, Rome", "youtube_id": "Kv3feYibIUk", "readable_id": "hadid-maxxi"}, "3mimxluSVBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3mimxluSVBo.mp4/3mimxluSVBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3mimxluSVBo.mp4/3mimxluSVBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3mimxluSVBo.m3u8/3mimxluSVBo.m3u8"}, "duration": 319, "id": "3mimxluSVBo", "title": "Graphical systems application problem", "format": "mp4", "description": "Graphical Systems Application Problem", "path": "graphical-systems-application-problem/", "slug": "graphical-systems-application-problem", "kind": "Video", "video_id": "3mimxluSVBo", "keywords": "u14_l1_t1_we5, Graphical, Systems, Application, Problem, CC_8_EE_8_a, CC_8_EE_8_b, CC_39336_A-REI_6, CC_39336_F-IF_7_a", "youtube_id": "3mimxluSVBo", "readable_id": "graphical-systems-application-problem"}, "2vSpWt7qC_M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2vSpWt7qC_M.mp4/2vSpWt7qC_M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2vSpWt7qC_M.mp4/2vSpWt7qC_M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2vSpWt7qC_M.m3u8/2vSpWt7qC_M.m3u8"}, "path": "khan/humanities/art-asia/korea-japan/goryeo-dynasty/korean-celadons/", "duration": 484, "id": "2vSpWt7qC_M", "title": "Reviving traditional Korean celadons", "format": "mp4", "description": "Discover Goryeo dynasty (918\u20131392) celadons, among the most renowned of Asian ceramics.\u00a0 Learn more about the Goryeo dynasty (918\u20131392) on the Asian Art Museum's education website.", "slug": "korean-celadons", "kind": "Video", "video_id": "2vSpWt7qC_M", "keywords": "", "youtube_id": "2vSpWt7qC_M", "readable_id": "korean-celadons"}, "KKJ6FVCHalA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KKJ6FVCHalA.mp4/KKJ6FVCHalA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KKJ6FVCHalA.mp4/KKJ6FVCHalA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KKJ6FVCHalA.m3u8/KKJ6FVCHalA.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2008-may-4-6/", "duration": 167, "id": "KKJ6FVCHalA", "title": "6 Divisibility of unknown number", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-6", "kind": "Video", "video_id": "KKJ6FVCHalA", "keywords": "", "youtube_id": "KKJ6FVCHalA", "readable_id": "sat-2008-may-4-6"}, "iyrOGvbSS2U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iyrOGvbSS2U.mp4/iyrOGvbSS2U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iyrOGvbSS2U.mp4/iyrOGvbSS2U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iyrOGvbSS2U.m3u8/iyrOGvbSS2U.m3u8"}, "duration": 161, "id": "iyrOGvbSS2U", "title": "Motivation for the futures exchange", "format": "mp4", "description": "How an exchange can benefit from trading futures and how it can use margin to mitigate its risk", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/motivation-for-the-futures-exchange/", "slug": "motivation-for-the-futures-exchange", "kind": "Video", "video_id": "iyrOGvbSS2U", "keywords": "Exchange, futures, margin, spread", "youtube_id": "iyrOGvbSS2U", "readable_id": "motivation-for-the-futures-exchange"}, "intPEdg4Yyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/intPEdg4Yyc.mp4/intPEdg4Yyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/intPEdg4Yyc.mp4/intPEdg4Yyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/intPEdg4Yyc.m3u8/intPEdg4Yyc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/complex-splitting/", "duration": 475, "id": "intPEdg4Yyc", "title": "Complex splitting", "format": "mp4", "description": "", "slug": "complex-splitting", "kind": "Video", "video_id": "intPEdg4Yyc", "keywords": "", "youtube_id": "intPEdg4Yyc", "readable_id": "complex-splitting"}, "lV3LBiivTxw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lV3LBiivTxw.mp4/lV3LBiivTxw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lV3LBiivTxw.mp4/lV3LBiivTxw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lV3LBiivTxw.m3u8/lV3LBiivTxw.m3u8"}, "duration": 722, "id": "lV3LBiivTxw", "title": "The fiscal cliff", "format": "mp4", "description": "Sal compares the possible outcomes of the federal budget negotiations around the \"fiscal cliff.\"", "path": "khan/humanities/history/american-civics/american-civics/the-fiscal-cliff/", "slug": "the-fiscal-cliff", "kind": "Video", "video_id": "lV3LBiivTxw", "keywords": "marquee", "youtube_id": "lV3LBiivTxw", "readable_id": "the-fiscal-cliff"}, "wRKVNiABc0w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wRKVNiABc0w.mp4/wRKVNiABc0w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wRKVNiABc0w.mp4/wRKVNiABc0w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wRKVNiABc0w.m3u8/wRKVNiABc0w.m3u8"}, "path": "khan/college-admissions/paying-for-college/loans/benefits-and-drawbacks-of-college-loans/", "duration": 201, "id": "wRKVNiABc0w", "title": "Benefits and drawbacks of college loans", "format": "mp4", "description": "", "slug": "benefits-and-drawbacks-of-college-loans", "kind": "Video", "video_id": "wRKVNiABc0w", "keywords": "", "youtube_id": "wRKVNiABc0w", "readable_id": "benefits-and-drawbacks-of-college-loans"}, "JK-8XNIoAkI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JK-8XNIoAkI.mp4/JK-8XNIoAkI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JK-8XNIoAkI.mp4/JK-8XNIoAkI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JK-8XNIoAkI.m3u8/JK-8XNIoAkI.m3u8"}, "duration": 1000, "id": "JK-8XNIoAkI", "title": "Expressing a projection on to a line as a matrix vector prod", "format": "mp4", "description": "Expressing a Projection on to a line as a Matrix Vector prod", "path": "khan/math/linear-algebra/matrix_transformations/lin_trans_examples/expressing-a-projection-on-to-a-line-as-a-matrix-vector-prod/", "slug": "expressing-a-projection-on-to-a-line-as-a-matrix-vector-prod", "kind": "Video", "video_id": "JK-8XNIoAkI", "keywords": "matrix, vector, projection, linear, transformation", "youtube_id": "JK-8XNIoAkI", "readable_id": "expressing-a-projection-on-to-a-line-as-a-matrix-vector-prod"}, "OkFdDqW9xxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OkFdDqW9xxM.mp4/OkFdDqW9xxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OkFdDqW9xxM.mp4/OkFdDqW9xxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OkFdDqW9xxM.m3u8/OkFdDqW9xxM.m3u8"}, "duration": 452, "id": "OkFdDqW9xxM", "title": "Change of base formula", "format": "mp4", "description": " Change of Base Formula", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/change-of-base-formula/", "slug": "change-of-base-formula", "kind": "Video", "video_id": "OkFdDqW9xxM", "keywords": "u18_l3_t1_we3, Change, of, Base, Formula", "youtube_id": "OkFdDqW9xxM", "readable_id": "change-of-base-formula"}, "uFiyXC_x2U0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uFiyXC_x2U0.mp4/uFiyXC_x2U0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uFiyXC_x2U0.mp4/uFiyXC_x2U0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uFiyXC_x2U0.m3u8/uFiyXC_x2U0.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/weyden/rogier-van-der-weyden-the-last-judgment-1446-52/", "duration": 522, "id": "uFiyXC_x2U0", "title": "Van der Weyden, The Last Judgment Polyptych", "format": "mp4", "description": "Rogier van der Weyden, The Last Judgment Polyptych, oil on panel partially transferred on canvas, 1446-52 (Mus\u00e9e de l'H\u00f4tel Dieu, Beaune)", "slug": "rogier-van-der-weyden-the-last-judgment-1446-52", "kind": "Video", "video_id": "uFiyXC_x2U0", "keywords": "Last Judgment, Renaissance, Northern Renaissance, Art, Art History, Smarthistory, van der Weyden", "youtube_id": "uFiyXC_x2U0", "readable_id": "rogier-van-der-weyden-the-last-judgment-1446-52"}, "-bnCHws9qmw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-bnCHws9qmw.mp4/-bnCHws9qmw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-bnCHws9qmw.mp4/-bnCHws9qmw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-bnCHws9qmw.m3u8/-bnCHws9qmw.m3u8"}, "path": "khan/humanities/art-americas/us-art-19c/civil-war-gilded-age/john-singer-sargent-carnation-lily-lily-rose-1885-86/", "duration": 256, "id": "-bnCHws9qmw", "title": "Sargent, Carnation, Lily, Lily, Rose", "format": "mp4", "description": "John Singer Sargent, Carnation, Lily, Lily, Rose, 1885-86, oil on canvas, 1740 x 1537 mm (Tate Britain, London)", "slug": "john-singer-sargent-carnation-lily-lily-rose-1885-86", "kind": "Video", "video_id": "-bnCHws9qmw", "keywords": "John Singer Sargent, Carnation, Lily, Rose, 1885, 1886, Tate, Britain, Sargent, painting, art history, OER, Google Art Project, Smarthistory, Khan Academy, Educational", "youtube_id": "-bnCHws9qmw", "readable_id": "john-singer-sargent-carnation-lily-lily-rose-1885-86"}, "7Mo4S2wyMg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Mo4S2wyMg4.mp4/7Mo4S2wyMg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Mo4S2wyMg4.mp4/7Mo4S2wyMg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Mo4S2wyMg4.m3u8/7Mo4S2wyMg4.m3u8"}, "duration": 1270, "id": "7Mo4S2wyMg4", "title": "Matrix vector products", "format": "mp4", "description": "Defining and understanding what it means to take the product of a matrix and a vector", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/matrix-vector-products/", "slug": "matrix-vector-products", "kind": "Video", "video_id": "7Mo4S2wyMg4", "keywords": "matrix, vector, product", "youtube_id": "7Mo4S2wyMg4", "readable_id": "matrix-vector-products"}, "Cum3k-Wglfw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Cum3k-Wglfw.mp4/Cum3k-Wglfw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Cum3k-Wglfw.mp4/Cum3k-Wglfw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Cum3k-Wglfw.m3u8/Cum3k-Wglfw.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/intro-to-critical-thinking/", "duration": 591, "id": "Cum3k-Wglfw", "title": "Fundamentals: Introduction to critical thinking", "format": "mp4", "description": "Geoff Pynn gets you started on the critical thinking journey. He tells you what critical thinking is, what an argument is, and what the difference between a deductive and an ampliative argument is.\u00a0\n\nSpeaker: Dr. Geoff Pynn, Assistant Professor,\u00a0Northern Illinois University", "slug": "intro-to-critical-thinking", "kind": "Video", "video_id": "Cum3k-Wglfw", "keywords": "", "youtube_id": "Cum3k-Wglfw", "readable_id": "intro-to-critical-thinking"}, "q2SYtugUdpI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q2SYtugUdpI.mp4/q2SYtugUdpI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q2SYtugUdpI.mp4/q2SYtugUdpI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q2SYtugUdpI.m3u8/q2SYtugUdpI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pneumonia/pneumonia-vs-pneumonitis/", "duration": 535, "id": "q2SYtugUdpI", "title": "Pneumonia vs. pneumonitis", "format": "mp4", "description": "Pneumonitis is a term used to describe inflammation of the lung tissues without the presence of an infection, whereas pneumonia is inflammation caused by an infection. Learn what the symptoms of pneumonitis are, and why pneumonitis is more common with bird handlers, farmers, and people who regularly use humidifiers.", "slug": "pneumonia-vs-pneumonitis", "kind": "Video", "video_id": "q2SYtugUdpI", "keywords": "", "youtube_id": "q2SYtugUdpI", "readable_id": "pneumonia-vs-pneumonitis"}, "AAmVITyDXbc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AAmVITyDXbc.mp4/AAmVITyDXbc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AAmVITyDXbc.mp4/AAmVITyDXbc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AAmVITyDXbc.m3u8/AAmVITyDXbc.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/graphing-linear-functions-1/", "duration": 330, "id": "AAmVITyDXbc", "title": "Graphing linear functions example 1", "format": "mp4", "description": "Graphing fuel as a function of distance", "slug": "graphing-linear-functions-1", "kind": "Video", "video_id": "AAmVITyDXbc", "keywords": "", "youtube_id": "AAmVITyDXbc", "readable_id": "graphing-linear-functions-1"}, "WlLFmm6xm6A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WlLFmm6xm6A.mp4/WlLFmm6xm6A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WlLFmm6xm6A.mp4/WlLFmm6xm6A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WlLFmm6xm6A.m3u8/WlLFmm6xm6A.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-protection/science-education/science-and-education-join-forces-to-protect-biodiversity/", "duration": 554, "id": "WlLFmm6xm6A", "title": "Science and education join forces to protect biodiversity", "format": "mp4", "description": "", "slug": "science-and-education-join-forces-to-protect-biodiversity", "kind": "Video", "video_id": "WlLFmm6xm6A", "keywords": "", "youtube_id": "WlLFmm6xm6A", "readable_id": "science-and-education-join-forces-to-protect-biodiversity"}, "WdDzs70Txjs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WdDzs70Txjs.mp4/WdDzs70Txjs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WdDzs70Txjs.mp4/WdDzs70Txjs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WdDzs70Txjs.m3u8/WdDzs70Txjs.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/campin-merode-altarpiece-1425-28/", "duration": 346, "id": "WdDzs70Txjs", "title": "Workshop of Campin, Annunciation Triptych (Merode Altarpiece)", "format": "mp4", "description": "Robert Campin, Merode Altarpiece, tempera and oil on panel, 1425-28 (Metropolitan Museum of Art) Speakers: Dr. Beth Harris and Dr. Steven Zucker\u00a0", "slug": "campin-merode-altarpiece-1425-28", "kind": "Video", "video_id": "WdDzs70Txjs", "keywords": "campin, Northern Renaissance, Flanders, Flemish, Netherlandish", "youtube_id": "WdDzs70Txjs", "readable_id": "campin-merode-altarpiece-1425-28"}, "3OFH8OhpN08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3OFH8OhpN08.mp4/3OFH8OhpN08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3OFH8OhpN08.mp4/3OFH8OhpN08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3OFH8OhpN08.m3u8/3OFH8OhpN08.m3u8"}, "duration": 263, "id": "3OFH8OhpN08", "title": "Whole numbers as fractions", "format": "mp4", "description": "Use fraction models and a number line to represent 3 as a fraction.", "path": "whole-numbers-as-fractions/", "slug": "whole-numbers-as-fractions", "kind": "Video", "video_id": "3OFH8OhpN08", "keywords": "", "youtube_id": "3OFH8OhpN08", "readable_id": "whole-numbers-as-fractions"}, "9JcpyE01Yzc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9JcpyE01Yzc.mp4/9JcpyE01Yzc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9JcpyE01Yzc.mp4/9JcpyE01Yzc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9JcpyE01Yzc.m3u8/9JcpyE01Yzc.m3u8"}, "duration": 154, "id": "9JcpyE01Yzc", "title": "The inlay technique of marquetry", "format": "mp4", "description": "During the 1700s, French furniture makers perfected the art of \"painting in wood,\" creating complex designs using natural and dyed veneers selected for color and grain. Watch marquetry being made. Love art? Follow us on Google+", "path": "khan/humanities/monarchy-enlightenment/rococo/inlay-technique-marquetry/", "slug": "inlay-technique-marquetry", "kind": "Video", "video_id": "9JcpyE01Yzc", "keywords": "", "youtube_id": "9JcpyE01Yzc", "readable_id": "inlay-technique-marquetry"}, "bXmODOOJcQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bXmODOOJcQU.mp4/bXmODOOJcQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bXmODOOJcQU.mp4/bXmODOOJcQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bXmODOOJcQU.m3u8/bXmODOOJcQU.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/saponification-base-promoted-ester-hydrolysis/", "duration": 476, "id": "bXmODOOJcQU", "title": "Saponification - Base promoted ester hydrolysis", "format": "mp4", "description": "", "slug": "saponification-base-promoted-ester-hydrolysis", "kind": "Video", "video_id": "bXmODOOJcQU", "keywords": "", "youtube_id": "bXmODOOJcQU", "readable_id": "saponification-base-promoted-ester-hydrolysis"}, "gGXnILbrhsM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gGXnILbrhsM.mp4/gGXnILbrhsM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gGXnILbrhsM.mp4/gGXnILbrhsM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gGXnILbrhsM.m3u8/gGXnILbrhsM.m3u8"}, "duration": 631, "id": "gGXnILbrhsM", "title": "Green's theorem example 1", "format": "mp4", "description": "Using Green's Theorem to solve a line integral of a vector field", "path": "khan/math/multivariable-calculus/line_integrals_topic/greens_theorem/green-s-theorem-example-1/", "slug": "green-s-theorem-example-1", "kind": "Video", "video_id": "gGXnILbrhsM", "keywords": "greens, theorem, line, integral, vector, field", "youtube_id": "gGXnILbrhsM", "readable_id": "green-s-theorem-example-1"}, "jW8-Ni-MeN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jW8-Ni-MeN4.mp4/jW8-Ni-MeN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jW8-Ni-MeN4.mp4/jW8-Ni-MeN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jW8-Ni-MeN4.m3u8/jW8-Ni-MeN4.m3u8"}, "path": "khan/humanities/art-africa/new-topic-2014-08-07t192054093z/sowei-mask/", "duration": 407, "id": "jW8-Ni-MeN4", "title": "Sowei mask: Spirit of Sierra Leone", "format": "mp4", "description": "Unique to the region around Sierra Leone, sowei masks are worn by senior members of the all-female Sande Society during rite-of-passage ceremonies that signify a girl's transition to adulthood.\u00a0\n\nEach mask has an individual personality and is given a name which is revealed in a dream. For many years the name of this mask was lost. However, in a special ceremony in January 2013 members of the Sierra Leonean diaspora community in London gave the mask a new name:\u00a0Gbavo, meaning \u2018crowd-puller\u2019 or \u2018to attract people\u2019s attention\u2019. The newly-named mask was then formally re-presented to the British Museum. \u00a9 Trustees of the British Museum\n", "slug": "sowei-mask", "kind": "Video", "video_id": "jW8-Ni-MeN4", "keywords": "", "youtube_id": "jW8-Ni-MeN4", "readable_id": "sowei-mask"}, "lmiXf-jilGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lmiXf-jilGE.mp4/lmiXf-jilGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lmiXf-jilGE.mp4/lmiXf-jilGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lmiXf-jilGE.m3u8/lmiXf-jilGE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/ischemic-core-and-penumbra/", "duration": 297, "id": "lmiXf-jilGE", "title": "Ischemic core and penumbra", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "ischemic-core-and-penumbra", "kind": "Video", "video_id": "lmiXf-jilGE", "keywords": "", "youtube_id": "lmiXf-jilGE", "readable_id": "ischemic-core-and-penumbra"}, "BQMyeQOLvpg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BQMyeQOLvpg.mp4/BQMyeQOLvpg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BQMyeQOLvpg.mp4/BQMyeQOLvpg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BQMyeQOLvpg.m3u8/BQMyeQOLvpg.m3u8"}, "duration": 961, "id": "BQMyeQOLvpg", "title": "A more formal understanding of functions", "format": "mp4", "description": "A more formal understanding of functions", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/a-more-formal-understanding-of-functions/", "slug": "a-more-formal-understanding-of-functions", "kind": "Video", "video_id": "BQMyeQOLvpg", "keywords": "functions", "youtube_id": "BQMyeQOLvpg", "readable_id": "a-more-formal-understanding-of-functions"}, "AVpSjvpBwqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AVpSjvpBwqY.mp4/AVpSjvpBwqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AVpSjvpBwqY.mp4/AVpSjvpBwqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AVpSjvpBwqY.m3u8/AVpSjvpBwqY.m3u8"}, "duration": 68, "id": "AVpSjvpBwqY", "title": "Scenario 2: Assess mission progress", "format": "mp4", "description": "Learn how to assess your class's overall progress on a Khan Academy mission using the Student Progress report.", "path": "assess-mission-progress/", "slug": "assess-mission-progress", "kind": "Video", "video_id": "AVpSjvpBwqY", "keywords": "", "youtube_id": "AVpSjvpBwqY", "readable_id": "assess-mission-progress"}, "6crKuLMj_b4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6crKuLMj_b4.mp4/6crKuLMj_b4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6crKuLMj_b4.mp4/6crKuLMj_b4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6crKuLMj_b4.m3u8/6crKuLMj_b4.m3u8"}, "duration": 388, "id": "6crKuLMj_b4", "title": "Battery and motor mounts for Spider", "format": "mp4", "description": "In this video we show you how to connect Spider's motors and batteries", "path": "khan/science/discoveries-projects/robots/spider_bot/3-creating-the-battery-and-motor-mounts-for-spider/", "slug": "3-creating-the-battery-and-motor-mounts-for-spider", "kind": "Video", "video_id": "6crKuLMj_b4", "keywords": "", "youtube_id": "6crKuLMj_b4", "readable_id": "3-creating-the-battery-and-motor-mounts-for-spider"}, "9s9pkVZD-Iw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9s9pkVZD-Iw.mp4/9s9pkVZD-Iw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9s9pkVZD-Iw.mp4/9s9pkVZD-Iw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9s9pkVZD-Iw.m3u8/9s9pkVZD-Iw.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/daedalic-archaic/lady-auxerre/", "duration": 183, "id": "9s9pkVZD-Iw", "title": "Lady of Auxerre", "format": "mp4", "description": "Statue of a woman, known as the \"Lady of Auxerre,\" Eleutherna, Crete(?), Greece, c. 650-625 B.C.E., Daedalic style, limestone, 75 cm high (Mus\u00e9e du Louvre)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "lady-auxerre", "kind": "Video", "video_id": "9s9pkVZD-Iw", "keywords": "Auxerre, Eleutherna, Crete, Greece, Daedalic, limestone, Louvre", "youtube_id": "9s9pkVZD-Iw", "readable_id": "lady-auxerre"}, "WvxKwRcHGHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WvxKwRcHGHg.mp4/WvxKwRcHGHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WvxKwRcHGHg.mp4/WvxKwRcHGHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WvxKwRcHGHg.m3u8/WvxKwRcHGHg.m3u8"}, "duration": 431, "id": "WvxKwRcHGHg", "title": "Squeeze theorem or sandwich theorem", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/squeeze_theorem/squeeze-sandwich-theorem/", "slug": "squeeze-sandwich-theorem", "kind": "Video", "video_id": "WvxKwRcHGHg", "keywords": "", "youtube_id": "WvxKwRcHGHg", "readable_id": "squeeze-sandwich-theorem"}, "mNXBfz1iVzc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mNXBfz1iVzc.mp4/mNXBfz1iVzc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mNXBfz1iVzc.mp4/mNXBfz1iVzc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mNXBfz1iVzc.m3u8/mNXBfz1iVzc.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/dry-ice-moves-on-mars/", "duration": 148, "id": "mNXBfz1iVzc", "title": "Dry ice experiment", "format": "mp4", "description": "", "slug": "dry-ice-moves-on-mars", "kind": "Video", "video_id": "mNXBfz1iVzc", "keywords": "", "youtube_id": "mNXBfz1iVzc", "readable_id": "dry-ice-moves-on-mars"}, "OU9sWHk_dlw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OU9sWHk_dlw.mp4/OU9sWHk_dlw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OU9sWHk_dlw.mp4/OU9sWHk_dlw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OU9sWHk_dlw.m3u8/OU9sWHk_dlw.m3u8"}, "duration": 70, "id": "OU9sWHk_dlw", "title": "Finding the determinant of a 2x2 matrix", "format": "mp4", "description": "Hint for finding the determinant of a 2x2 matrix", "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/finding-the-determinant-of-a-2x2-matrix/", "slug": "finding-the-determinant-of-a-2x2-matrix", "kind": "Video", "video_id": "OU9sWHk_dlw", "keywords": "", "youtube_id": "OU9sWHk_dlw", "readable_id": "finding-the-determinant-of-a-2x2-matrix"}, "KURufM070oI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KURufM070oI.mp4/KURufM070oI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KURufM070oI.mp4/KURufM070oI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KURufM070oI.m3u8/KURufM070oI.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-20-mississippi-river/", "duration": 59, "id": "KURufM070oI", "title": "20 Mississippi River", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-20-mississippi-river", "kind": "Video", "video_id": "KURufM070oI", "keywords": "", "youtube_id": "KURufM070oI", "readable_id": "sat-20-mississippi-river"}, "MNbat1lrJW4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MNbat1lrJW4.mp4/MNbat1lrJW4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MNbat1lrJW4.mp4/MNbat1lrJW4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MNbat1lrJW4.m3u8/MNbat1lrJW4.m3u8"}, "duration": 600, "id": "MNbat1lrJW4", "title": "Comparing population proportions 2", "format": "mp4", "description": "Comparing Population Proportions 2", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/comparing-population-proportions-2/", "slug": "comparing-population-proportions-2", "kind": "Video", "video_id": "MNbat1lrJW4", "keywords": "Comparing, Population, Proportions, CC_7_SP_3, CC_7_SP_4", "youtube_id": "MNbat1lrJW4", "readable_id": "comparing-population-proportions-2"}, "Tal_fgREll0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tal_fgREll0.mp4/Tal_fgREll0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tal_fgREll0.mp4/Tal_fgREll0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tal_fgREll0.m3u8/Tal_fgREll0.m3u8"}, "duration": 365, "id": "Tal_fgREll0", "title": "Similarity example where same side plays different roles", "format": "mp4", "description": "The same side not corresponding to itself in two similar triangles", "path": "khan/math/geometry/similarity/triangle_similarlity/similarity-example-where-same-side-plays-different-roles/", "slug": "similarity-example-where-same-side-plays-different-roles", "kind": "Video", "video_id": "Tal_fgREll0", "keywords": "geometry, similarity", "youtube_id": "Tal_fgREll0", "readable_id": "similarity-example-where-same-side-plays-different-roles"}, "BeHOvYchtBg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BeHOvYchtBg.mp4/BeHOvYchtBg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BeHOvYchtBg.mp4/BeHOvYchtBg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BeHOvYchtBg.m3u8/BeHOvYchtBg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/ka-and-acid-strength/", "duration": 558, "id": "BeHOvYchtBg", "title": "Ka and acid strength", "format": "mp4", "description": "How to write an equilibrium expression for an acid-base reaction and how to evaluate the strength of an acid using Ka", "slug": "ka-and-acid-strength", "kind": "Video", "video_id": "BeHOvYchtBg", "keywords": "", "youtube_id": "BeHOvYchtBg", "readable_id": "ka-and-acid-strength"}, "uzOXGgAgmPs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uzOXGgAgmPs.mp4/uzOXGgAgmPs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uzOXGgAgmPs.mp4/uzOXGgAgmPs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uzOXGgAgmPs.m3u8/uzOXGgAgmPs.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-example-part-3-the-home-stretch/", "duration": 759, "id": "uzOXGgAgmPs", "title": "Surface integral example part 3: The home stretch", "format": "mp4", "description": "Using a few trigonometric identities to finally calculate the value of the surface integral", "slug": "surface-integral-example-part-3-the-home-stretch", "kind": "Video", "video_id": "uzOXGgAgmPs", "keywords": "surface, integral", "youtube_id": "uzOXGgAgmPs", "readable_id": "surface-integral-example-part-3-the-home-stretch"}, "_mGszRbve9s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_mGszRbve9s.mp4/_mGszRbve9s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_mGszRbve9s.mp4/_mGszRbve9s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_mGszRbve9s.m3u8/_mGszRbve9s.m3u8"}, "duration": 642, "id": "_mGszRbve9s", "title": "Introduction to lab values and normal ranges", "format": "mp4", "description": "Find out how health professionals use short-hand for labs and the meaning of normal ranges. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/lab-values/introduction-to-lab-values-and-normal-ranges/", "slug": "introduction-to-lab-values-and-normal-ranges", "kind": "Video", "video_id": "_mGszRbve9s", "keywords": "", "youtube_id": "_mGszRbve9s", "readable_id": "introduction-to-lab-values-and-normal-ranges"}, "8VOcnNekTjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8VOcnNekTjw.mp4/8VOcnNekTjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8VOcnNekTjw.mp4/8VOcnNekTjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8VOcnNekTjw.m3u8/8VOcnNekTjw.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/dvd_player/what-is-inside-a-dvd-player-3-of-5/", "duration": 193, "id": "8VOcnNekTjw", "title": "What is inside a DVD player? (3 of 5)", "format": "mp4", "description": "In this video we explore the control board inside a DVD player.", "slug": "what-is-inside-a-dvd-player-3-of-5", "kind": "Video", "video_id": "8VOcnNekTjw", "keywords": "motor controller, central processing unit, eeprom, op-amp, operational amplifier, binary, power cables, ribbon cable, data communication, DVD sound and video processing integrated circuit, digital to analogue conversion, control board", "youtube_id": "8VOcnNekTjw", "readable_id": "what-is-inside-a-dvd-player-3-of-5"}, "CWiHA5XtqgU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CWiHA5XtqgU.mp4/CWiHA5XtqgU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CWiHA5XtqgU.mp4/CWiHA5XtqgU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CWiHA5XtqgU.m3u8/CWiHA5XtqgU.m3u8"}, "duration": 506, "id": "CWiHA5XtqgU", "title": "Long term supply curve and economic profit", "format": "mp4", "description": "Understanding the long term supply curve in terms of economic profit", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/average-costs-margin-rev/long-term-supply-curve-and-economic-profit/", "slug": "long-term-supply-curve-and-economic-profit", "kind": "Video", "video_id": "CWiHA5XtqgU", "keywords": "normal, profit, microeconomics", "youtube_id": "CWiHA5XtqgU", "readable_id": "long-term-supply-curve-and-economic-profit"}, "uzkc-qNVoOk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uzkc-qNVoOk.mp4/uzkc-qNVoOk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uzkc-qNVoOk.mp4/uzkc-qNVoOk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uzkc-qNVoOk.m3u8/uzkc-qNVoOk.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-probability/basic-probability/", "duration": 498, "id": "uzkc-qNVoOk", "title": "Probability explained", "format": "mp4", "description": "We give you an introduction to probability through the example of flipping a quarter and rolling a die.", "slug": "basic-probability", "kind": "Video", "video_id": "uzkc-qNVoOk", "keywords": "math, chance, mutually, exclusive, events, CC_7_SP_5, CC_7_SP_6, CC_7_SP_7, CC_7_SP_7_a, CC_7_SP_7_b, CC_7_SP_8", "youtube_id": "uzkc-qNVoOk", "readable_id": "basic-probability"}, "eQf_EAYGo-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eQf_EAYGo-k.mp4/eQf_EAYGo-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eQf_EAYGo-k.mp4/eQf_EAYGo-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eQf_EAYGo-k.m3u8/eQf_EAYGo-k.m3u8"}, "duration": 1133, "id": "eQf_EAYGo-k", "title": "Stoichiometry example problem 2", "format": "mp4", "description": "", "path": "khan/science/chemistry/chemical-reactions-stoichiome/stoichiometry-ideal/stoichiometry-example-problem-2/", "slug": "stoichiometry-example-problem-2", "kind": "Video", "video_id": "eQf_EAYGo-k", "keywords": "Stoichiometry, Example, Problem", "youtube_id": "eQf_EAYGo-k", "readable_id": "stoichiometry-example-problem-2"}, "_q25hz5xLdk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_q25hz5xLdk.mp4/_q25hz5xLdk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_q25hz5xLdk.mp4/_q25hz5xLdk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_q25hz5xLdk.m3u8/_q25hz5xLdk.m3u8"}, "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-vs-short-and-leverage/", "duration": 190, "id": "_q25hz5xLdk", "title": "Put vs. short and leverage", "format": "mp4", "description": "Put vs. Short and Leverage", "slug": "put-vs-short-and-leverage", "kind": "Video", "video_id": "_q25hz5xLdk", "keywords": "Put, vs., Short, and, Leverage", "youtube_id": "_q25hz5xLdk", "readable_id": "put-vs-short-and-leverage"}, "HUnF0mZmMKc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HUnF0mZmMKc.mp4/HUnF0mZmMKc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HUnF0mZmMKc.mp4/HUnF0mZmMKc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HUnF0mZmMKc.m3u8/HUnF0mZmMKc.m3u8"}, "duration": 133, "id": "HUnF0mZmMKc", "title": "Linear and nonlinear functions (example 3)", "format": "mp4", "description": "", "path": "linear-and-nonlinear-functions-example-2/", "slug": "linear-and-nonlinear-functions-example-2", "kind": "Video", "video_id": "HUnF0mZmMKc", "keywords": "", "youtube_id": "HUnF0mZmMKc", "readable_id": "linear-and-nonlinear-functions-example-2"}, "JdqT5j6CFbE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JdqT5j6CFbE.mp4/JdqT5j6CFbE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JdqT5j6CFbE.mp4/JdqT5j6CFbE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JdqT5j6CFbE.m3u8/JdqT5j6CFbE.m3u8"}, "duration": 710, "id": "JdqT5j6CFbE", "title": "Conservation of mosaics in Roman North Africa", "format": "mp4", "description": "The Getty and the Institut National du Patrimoine of Tunisia train conservation technicians to clean, monitor, and maintain mosaics so that they can be seen and studied in their original settings. Love art? Follow us on Google+", "path": "conservation-mosaics-in-roman-north-africa/", "slug": "conservation-mosaics-in-roman-north-africa", "kind": "Video", "video_id": "JdqT5j6CFbE", "keywords": "", "youtube_id": "JdqT5j6CFbE", "readable_id": "conservation-mosaics-in-roman-north-africa"}, "tVdLRnB6if8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tVdLRnB6if8.mp4/tVdLRnB6if8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tVdLRnB6if8.mp4/tVdLRnB6if8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tVdLRnB6if8.m3u8/tVdLRnB6if8.m3u8"}, "duration": 102, "id": "tVdLRnB6if8", "title": "Ancient Egyptian coffin panel prepared for the Book of the Dead exhibition at the British Museum", "format": "mp4", "description": "Conservators at the British Museum prepare a panel of an ancient Egyptian coffin for display in the exhibition Journey through the afterlife: ancient Egyptian Book of the Dead.\u00a0\u00a9 Trustees of the British Museum\u00a0", "path": "ancient-egyptian-coffin-2/", "slug": "ancient-egyptian-coffin-2", "kind": "Video", "video_id": "tVdLRnB6if8", "keywords": "", "youtube_id": "tVdLRnB6if8", "readable_id": "ancient-egyptian-coffin-2"}, "5RzDVNob0-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5RzDVNob0-0.mp4/5RzDVNob0-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5RzDVNob0-0.mp4/5RzDVNob0-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5RzDVNob0-0.m3u8/5RzDVNob0-0.m3u8"}, "duration": 135, "id": "5RzDVNob0-0", "title": "Associative law of multiplication", "format": "mp4", "description": "Associative Law of Multiplication", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/associative-law-of-multiplication/", "slug": "associative-law-of-multiplication", "kind": "Video", "video_id": "5RzDVNob0-0", "keywords": "U01_L4_T1_we6, Associative, Law, of, Multiplication, CC_3_OA_5, CC_5_MD_5_a", "youtube_id": "5RzDVNob0-0", "readable_id": "associative-law-of-multiplication"}, "igJdDN-DPgA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/igJdDN-DPgA.mp4/igJdDN-DPgA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/igJdDN-DPgA.mp4/igJdDN-DPgA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/igJdDN-DPgA.m3u8/igJdDN-DPgA.m3u8"}, "duration": 457, "id": "igJdDN-DPgA", "title": "Squeeze theorem (sandwich theorem)", "format": "mp4", "description": "Intuition (but not a proof) of the Squeeze Theorem.", "path": "khan/math/differential-calculus/limits_topic/squeeze_theorem/squeeze-theorem/", "slug": "squeeze-theorem", "kind": "Video", "video_id": "igJdDN-DPgA", "keywords": "calculus, limit, squeeze, theorem, CC_39336_F-IF_1, CC_39336_F-IF_5", "youtube_id": "igJdDN-DPgA", "readable_id": "squeeze-theorem"}, "FXSuEIMrPQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FXSuEIMrPQk.mp4/FXSuEIMrPQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FXSuEIMrPQk.mp4/FXSuEIMrPQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FXSuEIMrPQk.m3u8/FXSuEIMrPQk.m3u8"}, "duration": 875, "id": "FXSuEIMrPQk", "title": "Inflammatory response", "format": "mp4", "description": "Overview of the inflammatory response", "path": "khan/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-immunology/inflammatory-response/", "slug": "inflammatory-response", "kind": "Video", "video_id": "FXSuEIMrPQk", "keywords": "inflammatory, response, immune, system", "youtube_id": "FXSuEIMrPQk", "readable_id": "inflammatory-response"}, "UhMM68fq9FA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UhMM68fq9FA.mp4/UhMM68fq9FA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UhMM68fq9FA.mp4/UhMM68fq9FA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UhMM68fq9FA.m3u8/UhMM68fq9FA.m3u8"}, "duration": 218, "id": "UhMM68fq9FA", "title": "Units of measurement word problem: time", "format": "mp4", "description": "We're looking for the difference in time in this unit conversion word problem. We'll use a timeline to make it a little easier. Follow along.", "path": "time-word-problem/", "slug": "time-word-problem", "kind": "Video", "video_id": "UhMM68fq9FA", "keywords": "", "youtube_id": "UhMM68fq9FA", "readable_id": "time-word-problem"}, "kxS37n0ASqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kxS37n0ASqg.mp4/kxS37n0ASqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kxS37n0ASqg.mp4/kxS37n0ASqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kxS37n0ASqg.m3u8/kxS37n0ASqg.m3u8"}, "duration": 546, "id": "kxS37n0ASqg", "title": "Alpha-substitution of carboxylic acids", "format": "mp4", "description": "How to use the Hell-Volhard-Zelinksy (HVZ) reaction to synthesize alpha-amino acids. By Jay.", "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/alpha-substitution-of-carboxylic-acids/", "slug": "alpha-substitution-of-carboxylic-acids", "kind": "Video", "video_id": "kxS37n0ASqg", "keywords": "", "youtube_id": "kxS37n0ASqg", "readable_id": "alpha-substitution-of-carboxylic-acids"}, "8Ft5iHhauJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Ft5iHhauJ0.mp4/8Ft5iHhauJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Ft5iHhauJ0.mp4/8Ft5iHhauJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Ft5iHhauJ0.m3u8/8Ft5iHhauJ0.m3u8"}, "duration": 699, "id": "8Ft5iHhauJ0", "title": "Introduction to long division", "format": "mp4", "description": "Dividing into larger numbers. Introduction to long division without remainders", "path": "khan/math/arithmetic/multiplication-division/long_division/division-2/", "slug": "division-2", "kind": "Video", "video_id": "8Ft5iHhauJ0", "keywords": "long, division, CC_3_OA_2, CC_3_OA_6, CC_3_OA_7, CC_4_NBT_6, CC_4_OA_3", "youtube_id": "8Ft5iHhauJ0", "readable_id": "division-2"}, "ZA_D4O6l1lo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZA_D4O6l1lo.mp4/ZA_D4O6l1lo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZA_D4O6l1lo.mp4/ZA_D4O6l1lo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZA_D4O6l1lo.m3u8/ZA_D4O6l1lo.m3u8"}, "duration": 590, "id": "ZA_D4O6l1lo", "title": "Static and kinetic friction example", "format": "mp4", "description": "Thinking about the coefficients of static and kinetic friction", "path": "khan/test-prep/mcat/physical-processes/forces-on-inclined-planes/static-and-kinetic-friction-example/", "slug": "static-and-kinetic-friction-example", "kind": "Video", "video_id": "ZA_D4O6l1lo", "keywords": "accleration, force, newton, friction", "youtube_id": "ZA_D4O6l1lo", "readable_id": "static-and-kinetic-friction-example"}, "N44RZtJ4jj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N44RZtJ4jj4.mp4/N44RZtJ4jj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N44RZtJ4jj4.mp4/N44RZtJ4jj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N44RZtJ4jj4.m3u8/N44RZtJ4jj4.m3u8"}, "duration": 719, "id": "N44RZtJ4jj4", "title": "Generalized linear consumption function", "format": "mp4", "description": "Generalizing a linear consumption function as a function of aggregate income", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/consumption-function/generalized-linear-consumption-function/", "slug": "generalized-linear-consumption-function", "kind": "Video", "video_id": "N44RZtJ4jj4", "keywords": "macroeconomics", "youtube_id": "N44RZtJ4jj4", "readable_id": "generalized-linear-consumption-function"}, "6EY0E3z-hsU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6EY0E3z-hsU.mp4/6EY0E3z-hsU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6EY0E3z-hsU.mp4/6EY0E3z-hsU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6EY0E3z-hsU.m3u8/6EY0E3z-hsU.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-pythagorean-theorem-compass-constructions/", "duration": 755, "id": "6EY0E3z-hsU", "title": "CA Geometry: Pythagorean theorem, compass constructions", "format": "mp4", "description": "51-55, Pythagorean Theorem, compass constructions", "slug": "ca-geometry-pythagorean-theorem-compass-constructions", "kind": "Video", "video_id": "6EY0E3z-hsU", "keywords": "geometry, pythagorean, theorem, compass, construction", "youtube_id": "6EY0E3z-hsU", "readable_id": "ca-geometry-pythagorean-theorem-compass-constructions"}, "2o-Sef6wllg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2o-Sef6wllg.mp4/2o-Sef6wllg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2o-Sef6wllg.mp4/2o-Sef6wllg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2o-Sef6wllg.m3u8/2o-Sef6wllg.m3u8"}, "duration": 724, "id": "2o-Sef6wllg", "title": "Precession causing perihelion to happen later", "format": "mp4", "description": "Clarifying the effect of axial precession on the calendar and the date of perihelion and aphelion", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic/precession-causing-perihelion-to-happen-later/", "slug": "precession-causing-perihelion-to-happen-later", "kind": "Video", "video_id": "2o-Sef6wllg", "keywords": "astronomy, seasons, physics", "youtube_id": "2o-Sef6wllg", "readable_id": "precession-causing-perihelion-to-happen-later"}, "BRHfy7envyQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BRHfy7envyQ.mp4/BRHfy7envyQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BRHfy7envyQ.mp4/BRHfy7envyQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BRHfy7envyQ.m3u8/BRHfy7envyQ.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/sp-hybridization-jay-final/", "duration": 660, "id": "BRHfy7envyQ", "title": "Sp hybridization", "format": "mp4", "description": "", "slug": "sp-hybridization-jay-final", "kind": "Video", "video_id": "BRHfy7envyQ", "keywords": "", "youtube_id": "BRHfy7envyQ", "readable_id": "sp-hybridization-jay-final"}, "bGpw7NeXyBc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bGpw7NeXyBc.mp4/bGpw7NeXyBc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bGpw7NeXyBc.mp4/bGpw7NeXyBc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bGpw7NeXyBc.m3u8/bGpw7NeXyBc.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/operant-conditioning-innate-vs-learned-behaviors/", "duration": 565, "id": "bGpw7NeXyBc", "title": "Operant conditioning: Innate vs learned behaviors", "format": "mp4", "description": "", "slug": "operant-conditioning-innate-vs-learned-behaviors", "kind": "Video", "video_id": "bGpw7NeXyBc", "keywords": "", "youtube_id": "bGpw7NeXyBc", "readable_id": "operant-conditioning-innate-vs-learned-behaviors"}, "TIwGXn4NalM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TIwGXn4NalM.mp4/TIwGXn4NalM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TIwGXn4NalM.mp4/TIwGXn4NalM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TIwGXn4NalM.m3u8/TIwGXn4NalM.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/exp_unknown_vars/evaluating-expressions-where-individual-variable-values-are-unknown/", "duration": 279, "id": "TIwGXn4NalM", "title": "Evaluating expressions where individual variable values are unknown", "format": "mp4", "description": "Working through a few examples where we need to evaluate an expression, but we don't know the individual variable values", "slug": "evaluating-expressions-where-individual-variable-values-are-unknown", "kind": "Video", "video_id": "TIwGXn4NalM", "keywords": "", "youtube_id": "TIwGXn4NalM", "readable_id": "evaluating-expressions-where-individual-variable-values-are-unknown"}, "9EZuhlSNUv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9EZuhlSNUv0.mp4/9EZuhlSNUv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9EZuhlSNUv0.mp4/9EZuhlSNUv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9EZuhlSNUv0.m3u8/9EZuhlSNUv0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-bronchiolitis/bronchiolitis-pathophysiology/", "duration": 466, "id": "9EZuhlSNUv0", "title": "Bronchiolitis pathophysiology", "format": "mp4", "description": "", "slug": "bronchiolitis-pathophysiology", "kind": "Video", "video_id": "9EZuhlSNUv0", "keywords": "", "youtube_id": "9EZuhlSNUv0", "readable_id": "bronchiolitis-pathophysiology"}, "EzE53aPGbrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EzE53aPGbrQ.mp4/EzE53aPGbrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EzE53aPGbrQ.mp4/EzE53aPGbrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EzE53aPGbrQ.m3u8/EzE53aPGbrQ.m3u8"}, "duration": 494, "id": "EzE53aPGbrQ", "title": "2003 AIME II problem 5", "format": "mp4", "description": "Volume of a wedge cut from a cylindrical log", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-5/", "slug": "2003-aime-ii-problem-5", "kind": "Video", "video_id": "EzE53aPGbrQ", "keywords": "2003, AIME, II, Problem, volume, 45, degree, triangle, cylinder", "youtube_id": "EzE53aPGbrQ", "readable_id": "2003-aime-ii-problem-5"}, "U9OfQd8poTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U9OfQd8poTQ.mp4/U9OfQd8poTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U9OfQd8poTQ.mp4/U9OfQd8poTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U9OfQd8poTQ.m3u8/U9OfQd8poTQ.m3u8"}, "duration": 225, "id": "U9OfQd8poTQ", "title": "Testing solutions to equation", "format": "mp4", "description": "", "path": "testing-solutions-to-equation/", "slug": "testing-solutions-to-equation", "kind": "Video", "video_id": "U9OfQd8poTQ", "keywords": "", "youtube_id": "U9OfQd8poTQ", "readable_id": "testing-solutions-to-equation"}, "Iqws-qzyZwc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iqws-qzyZwc.mp4/Iqws-qzyZwc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iqws-qzyZwc.mp4/Iqws-qzyZwc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iqws-qzyZwc.m3u8/Iqws-qzyZwc.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-slope/slope-and-rate-of-change/", "duration": 822, "id": "Iqws-qzyZwc", "title": "Slope and rate of change", "format": "mp4", "description": "", "slug": "slope-and-rate-of-change", "kind": "Video", "video_id": "Iqws-qzyZwc", "keywords": "SlopeAndRateOfChange, CC_8_EE_6, CC_39336_F-IF_6", "youtube_id": "Iqws-qzyZwc", "readable_id": "slope-and-rate-of-change"}, "ixRtSV3CXPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ixRtSV3CXPA.mp4/ixRtSV3CXPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ixRtSV3CXPA.mp4/ixRtSV3CXPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ixRtSV3CXPA.m3u8/ixRtSV3CXPA.m3u8"}, "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/proof-volume-ratios-in-a-carnot-cycle/", "duration": 1028, "id": "ixRtSV3CXPA", "title": "Proof: Volume ratios in a carnot cycle", "format": "mp4", "description": "Proof of the volume ratios in a Carnot Cycle", "slug": "proof-volume-ratios-in-a-carnot-cycle", "kind": "Video", "video_id": "ixRtSV3CXPA", "keywords": "thermodynamics, carnot, entropy", "youtube_id": "ixRtSV3CXPA", "readable_id": "proof-volume-ratios-in-a-carnot-cycle"}, "7j6HcztlLdw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7j6HcztlLdw.mp4/7j6HcztlLdw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7j6HcztlLdw.mp4/7j6HcztlLdw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7j6HcztlLdw.m3u8/7j6HcztlLdw.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/myelodysplastic-syndrome/", "duration": 498, "id": "7j6HcztlLdw", "title": "Myelodysplastic syndrome", "format": "mp4", "description": "Myelodysplastic syndrome is sometimes referred to as \u201cpre-leukemia\u201d or a condition that occurs before leukemia (although most patients will never develop leukemia). In myelodysplastic syndrome, the gene mutation preventing the maturation of the blast cell is present, however the second gene mutation leading to uncontrolled cell replication is absent. Learn how health professionals look at blood test results and bone marrow aspirates to diagnosis this disease.", "slug": "myelodysplastic-syndrome", "kind": "Video", "video_id": "7j6HcztlLdw", "keywords": "", "youtube_id": "7j6HcztlLdw", "readable_id": "myelodysplastic-syndrome"}, "8n4nne9FQFo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8n4nne9FQFo.mp4/8n4nne9FQFo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8n4nne9FQFo.mp4/8n4nne9FQFo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8n4nne9FQFo.m3u8/8n4nne9FQFo.m3u8"}, "path": "khan/partner-content/big-history-project/agriculture-civilization/rise-of-agriculture/bhp-why-agriculture-was-so-important/", "duration": 158, "id": "8n4nne9FQFo", "title": "Threshold 7: Agriculture", "format": "mp4", "description": "When humans began farming, new, more complex ways of living were possible.", "slug": "bhp-why-agriculture-was-so-important", "kind": "Video", "video_id": "8n4nne9FQFo", "keywords": "", "youtube_id": "8n4nne9FQFo", "readable_id": "bhp-why-agriculture-was-so-important"}, "l-QFT7XNeb4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l-QFT7XNeb4.mp4/l-QFT7XNeb4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l-QFT7XNeb4.mp4/l-QFT7XNeb4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l-QFT7XNeb4.m3u8/l-QFT7XNeb4.m3u8"}, "duration": 1022, "id": "l-QFT7XNeb4", "title": "Radio interview: Sal on AirTalk talking about his new book", "format": "mp4", "description": "Sal talks with Larry Mantle about The One World School House (http://www.amazon.com/dp/1455508381?tag=khanacad-20)", "path": "sal-on-airtalk-talking-about-his-new-book/", "slug": "sal-on-airtalk-talking-about-his-new-book", "kind": "Video", "video_id": "l-QFT7XNeb4", "keywords": "", "youtube_id": "l-QFT7XNeb4", "readable_id": "sal-on-airtalk-talking-about-his-new-book"}, "EKKe7DBZVhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EKKe7DBZVhI.mp4/EKKe7DBZVhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EKKe7DBZVhI.mp4/EKKe7DBZVhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EKKe7DBZVhI.m3u8/EKKe7DBZVhI.m3u8"}, "duration": 581, "id": "EKKe7DBZVhI", "title": "Understanding calendar notation", "format": "mp4", "description": "Difference between BC, BCE, AD and CE. A little bit about the birth of Jesus as well.", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/understanding-calendar-notation/", "slug": "understanding-calendar-notation", "kind": "Video", "video_id": "EKKe7DBZVhI", "keywords": "calendar, christ", "youtube_id": "EKKe7DBZVhI", "readable_id": "understanding-calendar-notation"}, "lRHq7sMRWpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lRHq7sMRWpU.mp4/lRHq7sMRWpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lRHq7sMRWpU.mp4/lRHq7sMRWpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lRHq7sMRWpU.m3u8/lRHq7sMRWpU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/normal-sinus-rhythm-on-ecg/", "duration": 533, "id": "lRHq7sMRWpU", "title": "Normal sinus rhythm on an EKG", "format": "mp4", "description": "", "slug": "normal-sinus-rhythm-on-ecg", "kind": "Video", "video_id": "lRHq7sMRWpU", "keywords": "", "youtube_id": "lRHq7sMRWpU", "readable_id": "normal-sinus-rhythm-on-ecg"}, "XkRD9lv_y44": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XkRD9lv_y44.mp4/XkRD9lv_y44.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XkRD9lv_y44.mp4/XkRD9lv_y44.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XkRD9lv_y44.m3u8/XkRD9lv_y44.m3u8"}, "duration": 478, "id": "XkRD9lv_y44", "title": "Substitution with negative numbers", "format": "mp4", "description": "Practice substituting positive and negative values for variables.", "path": "substitution-with-negative-numbers/", "slug": "substitution-with-negative-numbers", "kind": "Video", "video_id": "XkRD9lv_y44", "keywords": "", "youtube_id": "XkRD9lv_y44", "readable_id": "substitution-with-negative-numbers"}, "TgKBc3Igx1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TgKBc3Igx1I.mp4/TgKBc3Igx1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TgKBc3Igx1I.mp4/TgKBc3Igx1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TgKBc3Igx1I.m3u8/TgKBc3Igx1I.m3u8"}, "duration": 384, "id": "TgKBc3Igx1I", "title": "Graphing a parabola by finding the roots and vertex", "format": "mp4", "description": "Graphing a parabola by finding the roots and vertex", "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/quadratic-functions-3/", "slug": "quadratic-functions-3", "kind": "Video", "video_id": "TgKBc3Igx1I", "keywords": "U10_L1_T1_we3, Quadratic, Functions, CC_39336_A-REI_4, CC_39336_A-SSE_3_b, CC_39336_F-IF_7_a, CC_39336_F-IF_8_a", "youtube_id": "TgKBc3Igx1I", "readable_id": "quadratic-functions-3"}, "HNoyVb1hr7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HNoyVb1hr7g.mp4/HNoyVb1hr7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HNoyVb1hr7g.mp4/HNoyVb1hr7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HNoyVb1hr7g.m3u8/HNoyVb1hr7g.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/henry-wallis-chatterton-1856/", "duration": 220, "id": "HNoyVb1hr7g", "title": "Wallis, Chatterton", "format": "mp4", "description": "Henry Wallis, Chatterton, 1856, oil on canvas, 622 x 933 cm (Tate Britain, London)", "slug": "henry-wallis-chatterton-1856", "kind": "Video", "video_id": "HNoyVb1hr7g", "keywords": "Poetry, Suicide, Tate Britain, Henry Wallis, Wallis, Chatterton, 1856, London, Garret, Khan Academy, smarthistory, art history, Google Art Project, OER", "youtube_id": "HNoyVb1hr7g", "readable_id": "henry-wallis-chatterton-1856"}, "kQkeayQke8A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kQkeayQke8A.mp4/kQkeayQke8A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kQkeayQke8A.mp4/kQkeayQke8A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kQkeayQke8A.m3u8/kQkeayQke8A.m3u8"}, "duration": 294, "id": "kQkeayQke8A", "title": "Comparing negatives with variables", "format": "mp4", "description": "", "path": "comparing-negatives-with-variables/", "slug": "comparing-negatives-with-variables", "kind": "Video", "video_id": "kQkeayQke8A", "keywords": "", "youtube_id": "kQkeayQke8A", "readable_id": "comparing-negatives-with-variables"}, "wf3-tRpmGmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wf3-tRpmGmY.mp4/wf3-tRpmGmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wf3-tRpmGmY.mp4/wf3-tRpmGmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wf3-tRpmGmY.m3u8/wf3-tRpmGmY.m3u8"}, "duration": 586, "id": "wf3-tRpmGmY", "title": "Observational learning: Bobo doll experiment and social cognitive theory", "format": "mp4", "description": "An explanation of the Bobo Doll Experiment, how it demonstrated learning performance distinction, and resulted in Bandura's Social Cognitive Theory. By Jeffrey Walsh. ", "path": "khan/test-prep/mcat/behavior/theories-personality/observational-learning/", "slug": "observational-learning", "kind": "Video", "video_id": "wf3-tRpmGmY", "keywords": "bobo doll experiment, observational learning, social cognitive theory", "youtube_id": "wf3-tRpmGmY", "readable_id": "observational-learning"}, "otstXFxMkl4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/otstXFxMkl4.mp4/otstXFxMkl4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/otstXFxMkl4.mp4/otstXFxMkl4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/otstXFxMkl4.m3u8/otstXFxMkl4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/frb-commentary-2-deposit-insurance/", "duration": 1039, "id": "otstXFxMkl4", "title": "FRB commentary 2: Deposit insurance", "format": "mp4", "description": "More on the weaknesses of fractional reserve banking. The FDIC and deposit insurance and its side effects.", "slug": "frb-commentary-2-deposit-insurance", "kind": "Video", "video_id": "otstXFxMkl4", "keywords": "fractional, reserve, banking", "youtube_id": "otstXFxMkl4", "readable_id": "frb-commentary-2-deposit-insurance"}, "gHTH6PKfpMc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gHTH6PKfpMc.mp4/gHTH6PKfpMc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gHTH6PKfpMc.mp4/gHTH6PKfpMc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gHTH6PKfpMc.m3u8/gHTH6PKfpMc.m3u8"}, "duration": 576, "id": "gHTH6PKfpMc", "title": "Level 4 division", "format": "mp4", "description": "Dividing a two digit number into a larger number", "path": "khan/math/arithmetic/multiplication-division/long_division/level-4-division/", "slug": "level-4-division", "kind": "Video", "video_id": "gHTH6PKfpMc", "keywords": "Division, math, CC_4_NBT_6, CC_6_NS_2", "youtube_id": "gHTH6PKfpMc", "readable_id": "level-4-division"}, "ji4ilvfmTEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ji4ilvfmTEw.mp4/ji4ilvfmTEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ji4ilvfmTEw.mp4/ji4ilvfmTEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ji4ilvfmTEw.m3u8/ji4ilvfmTEw.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/home-buying-process/title-insurance/", "duration": 389, "id": "ji4ilvfmTEw", "title": "Title insurance", "format": "mp4", "description": "", "slug": "title-insurance", "kind": "Video", "video_id": "ji4ilvfmTEw", "keywords": "", "youtube_id": "ji4ilvfmTEw", "readable_id": "title-insurance"}, "jEVfDSfO9Gw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jEVfDSfO9Gw.mp4/jEVfDSfO9Gw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jEVfDSfO9Gw.mp4/jEVfDSfO9Gw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jEVfDSfO9Gw.m3u8/jEVfDSfO9Gw.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/christian-schad-self-portrait-1927/", "duration": 210, "id": "jEVfDSfO9Gw", "title": "Schad, Self-Portrait", "format": "mp4", "description": "Christian Schad, Self-Portrait, 1927, oil on wood, 29 x 24-3/8 inches, 76 x 62 cm\n(Tate Modern, London)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "christian-schad-self-portrait-1927", "kind": "Video", "video_id": "jEVfDSfO9Gw", "keywords": "Schad, Tate Modern, Neue Sachlickeit, New Realism, Art history, smarthistory, modern art, chad", "youtube_id": "jEVfDSfO9Gw", "readable_id": "christian-schad-self-portrait-1927"}, "6dIMIBO_2mc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6dIMIBO_2mc.mp4/6dIMIBO_2mc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6dIMIBO_2mc.mp4/6dIMIBO_2mc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6dIMIBO_2mc.m3u8/6dIMIBO_2mc.m3u8"}, "duration": 308, "id": "6dIMIBO_2mc", "title": "Whether a special quadrilateral can exist", "format": "mp4", "description": "Proving whether a special quadrilateral can exist", "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/whether-a-special-quadrilateral-can-exist/", "slug": "whether-a-special-quadrilateral-can-exist", "kind": "Video", "video_id": "6dIMIBO_2mc", "keywords": "parallel, lines, transversal", "youtube_id": "6dIMIBO_2mc", "readable_id": "whether-a-special-quadrilateral-can-exist"}, "cIpEZXOAn0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cIpEZXOAn0I.mp4/cIpEZXOAn0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cIpEZXOAn0I.mp4/cIpEZXOAn0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cIpEZXOAn0I.m3u8/cIpEZXOAn0I.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/khnopff-jeanne-k-fer-1885/", "duration": 192, "id": "cIpEZXOAn0I", "title": "Khnopff, Jeanne K\u00e9fer", "format": "mp4", "description": "Fernand Khnopff, Jeanne K\u00e9fer, oil on canvas, 1885 (The Getty Center, Los Angeles) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "khnopff-jeanne-k-fer-1885", "kind": "Video", "video_id": "cIpEZXOAn0I", "keywords": "Khnopff, Symbolism, Smarthistory, Art History", "youtube_id": "cIpEZXOAn0I", "readable_id": "khnopff-jeanne-k-fer-1885"}, "sRBoFWByrJs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sRBoFWByrJs.mp4/sRBoFWByrJs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sRBoFWByrJs.mp4/sRBoFWByrJs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sRBoFWByrJs.m3u8/sRBoFWByrJs.m3u8"}, "duration": 478, "id": "sRBoFWByrJs", "title": "SALT\u2014Imaging the southern sky", "format": "mp4", "description": "When South Africa decided to build a new telescope, it went big. As in rival-the-world's-best big. With the participation of astronomy groups from all over the world, the Southern African Large Telescope, or SALT, is casting a wide eye on the southern sky. Moreover, it's inspiring future astronomers in the region. This Science Bulletins feature takes you behind the scenes as this bold new telescope brings world-class astronomy to a developing nation.", "path": "salt-imagining-southern-sky/", "slug": "salt-imagining-southern-sky", "kind": "Video", "video_id": "sRBoFWByrJs", "keywords": "", "youtube_id": "sRBoFWByrJs", "readable_id": "salt-imagining-southern-sky"}, "aoXUWSwiDzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aoXUWSwiDzE.mp4/aoXUWSwiDzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aoXUWSwiDzE.mp4/aoXUWSwiDzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aoXUWSwiDzE.m3u8/aoXUWSwiDzE.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/variable-expressions/", "duration": 747, "id": "aoXUWSwiDzE", "title": "Examples of evaluating variable expressions", "format": "mp4", "description": "", "slug": "variable-expressions", "kind": "Video", "video_id": "aoXUWSwiDzE", "keywords": "Variable, Expressions, CC_6_EE_2, CC_6_EE_2_c", "youtube_id": "aoXUWSwiDzE", "readable_id": "variable-expressions"}, "CYjAgOTVfZk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CYjAgOTVfZk.mp4/CYjAgOTVfZk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CYjAgOTVfZk.mp4/CYjAgOTVfZk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CYjAgOTVfZk.m3u8/CYjAgOTVfZk.m3u8"}, "duration": 286, "id": "CYjAgOTVfZk", "title": "Trig substitution with tangent", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/trig-substitution-with-tangent/", "slug": "trig-substitution-with-tangent", "kind": "Video", "video_id": "CYjAgOTVfZk", "keywords": "", "youtube_id": "CYjAgOTVfZk", "readable_id": "trig-substitution-with-tangent"}, "Bp-iW9YxnNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bp-iW9YxnNU.mp4/Bp-iW9YxnNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bp-iW9YxnNU.mp4/Bp-iW9YxnNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bp-iW9YxnNU.m3u8/Bp-iW9YxnNU.m3u8"}, "path": "khan/college-admissions/explore-college-options/campus-visit/visiting-campus/", "duration": 248, "id": "Bp-iW9YxnNU", "title": "Visiting campus", "format": "mp4", "description": "Campus Visit Alternative: Online Tour", "slug": "visiting-campus", "kind": "Video", "video_id": "Bp-iW9YxnNU", "keywords": "", "youtube_id": "Bp-iW9YxnNU", "readable_id": "visiting-campus"}, "LinNW-GIlP0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LinNW-GIlP0.mp4/LinNW-GIlP0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LinNW-GIlP0.mp4/LinNW-GIlP0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LinNW-GIlP0.m3u8/LinNW-GIlP0.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/wang-peng/", "duration": 298, "id": "LinNW-GIlP0", "title": "Wang Peng: Performance as politics in China and beyond", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nChinese artist Wang Peng started out as an abstract painter before turning to installations\u2014at a time when installation and performance art was banned in China. And yet the artist flourished in what could be considered a hostile environment, using the restrictions imposed upon him to play with how far his art could go instead of simply giving in to the ban. In one piece, the artist and his fellow performers blocked the entrance to a gallery by building a wall of bricks in front of it. The next day, police tore down the wall in an ironic subversion, unwittingly taking part in the performance and symbolically opening the gallery back up.\nUnderpinning Wang Peng\u2019s work is a steadfast resolve to challenge the conventions and boundaries of art. \"Your love of art should never be affected by politics,\u201d he says. Do you think that an artist can be unaffected by politics but still engage with political and social issues?\n\nLearn more about Wang Peng's performance and politics here.\n", "slug": "wang-peng", "kind": "Video", "video_id": "LinNW-GIlP0", "keywords": "Tate", "youtube_id": "LinNW-GIlP0", "readable_id": "wang-peng"}, "d22BeBhk1nY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d22BeBhk1nY.mp4/d22BeBhk1nY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d22BeBhk1nY.mp4/d22BeBhk1nY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d22BeBhk1nY.m3u8/d22BeBhk1nY.m3u8"}, "duration": 72, "id": "d22BeBhk1nY", "title": "Electromagnetic field (loop)", "format": "mp4", "description": "Applying current in various directions to a single loop of wire. Primitive electric motor?", "path": "khan/science/discoveries-projects/discoveries/electromagnet/primitive-electric-motor/", "slug": "primitive-electric-motor", "kind": "Video", "video_id": "d22BeBhk1nY", "keywords": "electric motor", "youtube_id": "d22BeBhk1nY", "readable_id": "primitive-electric-motor"}, "JrTsNuUQXzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JrTsNuUQXzU.mp4/JrTsNuUQXzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JrTsNuUQXzU.mp4/JrTsNuUQXzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JrTsNuUQXzU.m3u8/JrTsNuUQXzU.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/caravaggio-narcissus-at-the-source-1597-99/", "duration": 217, "id": "JrTsNuUQXzU", "title": "Caravaggio, Narcissus at the Source", "format": "mp4", "description": "Michelangelo Merisi da Caravaggio, Narcissus at the Source, oil on canvas, 1597-99 (Palazzo Barbarini) \n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "caravaggio-narcissus-at-the-source-1597-99", "kind": "Video", "video_id": "JrTsNuUQXzU", "keywords": "Narcissus, Caravaggio, Baroque, Italian, Narcissus at the Source, 1597", "youtube_id": "JrTsNuUQXzU", "readable_id": "caravaggio-narcissus-at-the-source-1597-99"}, "p7Fsb21B2Xg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p7Fsb21B2Xg.mp4/p7Fsb21B2Xg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p7Fsb21B2Xg.mp4/p7Fsb21B2Xg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p7Fsb21B2Xg.m3u8/p7Fsb21B2Xg.m3u8"}, "duration": 882, "id": "p7Fsb21B2Xg", "title": "Drawing dot structures", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/drawing-dot-structures/", "slug": "drawing-dot-structures", "kind": "Video", "video_id": "p7Fsb21B2Xg", "keywords": "", "youtube_id": "p7Fsb21B2Xg", "readable_id": "drawing-dot-structures"}, "qbMe4f2yvKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qbMe4f2yvKs.mp4/qbMe4f2yvKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qbMe4f2yvKs.mp4/qbMe4f2yvKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qbMe4f2yvKs.m3u8/qbMe4f2yvKs.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/converting-decimals-to-fractions-2-ex-2/", "duration": 131, "id": "qbMe4f2yvKs", "title": "Converting decimals to fractions 2 (ex 2)", "format": "mp4", "description": "", "slug": "converting-decimals-to-fractions-2-ex-2", "kind": "Video", "video_id": "qbMe4f2yvKs", "keywords": "Converting, decimals, to, fractions, 2, ex", "youtube_id": "qbMe4f2yvKs", "readable_id": "converting-decimals-to-fractions-2-ex-2"}, "ucAUriWEFo8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ucAUriWEFo8.mp4/ucAUriWEFo8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ucAUriWEFo8.mp4/ucAUriWEFo8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ucAUriWEFo8.m3u8/ucAUriWEFo8.m3u8"}, "duration": 523, "id": "ucAUriWEFo8", "title": "Shorting stock 2", "format": "mp4", "description": "More on the mechanics of shorting stock.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/shorting-stock/shorting-stock-2/", "slug": "shorting-stock-2", "kind": "Video", "video_id": "ucAUriWEFo8", "keywords": "stock, short, covering, risk, sale, market, finance", "youtube_id": "ucAUriWEFo8", "readable_id": "shorting-stock-2"}, "7f-LsuAnLMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7f-LsuAnLMA.mp4/7f-LsuAnLMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7f-LsuAnLMA.mp4/7f-LsuAnLMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7f-LsuAnLMA.m3u8/7f-LsuAnLMA.m3u8"}, "path": "khan/computing/computer-programming/html-css/css-layout-properties/css-in-the-wild-google-maps/", "duration": 133, "id": "7f-LsuAnLMA", "title": "CSS in the wild: Google Maps", "format": "mp4", "description": "", "slug": "css-in-the-wild-google-maps", "kind": "Video", "video_id": "7f-LsuAnLMA", "keywords": "", "youtube_id": "7f-LsuAnLMA", "readable_id": "css-in-the-wild-google-maps"}, "5HNMcuseBfk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5HNMcuseBfk.mp4/5HNMcuseBfk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5HNMcuseBfk.mp4/5HNMcuseBfk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5HNMcuseBfk.m3u8/5HNMcuseBfk.m3u8"}, "duration": 165, "id": "5HNMcuseBfk", "title": "\"Predestined\" with Barbara Drake Boehm", "format": "mp4", "description": "Met curator Barbara Drake Boehm on the bigger picture in Plaque with Censing Angels from medieval France.\n\nThis enameled plaque originally crowned the top of a large, double-sided altar cross. With chalk-white faces and deep brows, the angels mournfully bear witness to the Crucifixion of Jesus. Their censers proclaim his death and allude to the consecration of bread into Christ's body, since incense was burned both at funerals and during Mass. The balanced, elegiac composition, the richness of the colors, and the refinement of the vermicul\u00e9 background distinguish this object as one of the highest achievements of Limoges enamellers, renowned throughout medieval Europe.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "predestined/", "slug": "predestined", "kind": "Video", "video_id": "5HNMcuseBfk", "keywords": "belief, glass, light, metal, touch, Europe", "youtube_id": "5HNMcuseBfk", "readable_id": "predestined"}, "1jDDfkKKgmc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1jDDfkKKgmc.mp4/1jDDfkKKgmc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1jDDfkKKgmc.mp4/1jDDfkKKgmc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1jDDfkKKgmc.m3u8/1jDDfkKKgmc.m3u8"}, "duration": 982, "id": "1jDDfkKKgmc", "title": "Tau versus pi", "format": "mp4", "description": "Why Tau might be a better number to look at than Pi", "path": "khan/math/trigonometry/trig-function-graphs/long_live_tau/tau-versus-pi/", "slug": "tau-versus-pi", "kind": "Video", "video_id": "1jDDfkKKgmc", "keywords": "trigonometry, geometry, euler's, formula, identity, radian, sin, cos, sine, angle", "youtube_id": "1jDDfkKKgmc", "readable_id": "tau-versus-pi"}, "gXnHodHNusg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gXnHodHNusg.mp4/gXnHodHNusg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gXnHodHNusg.mp4/gXnHodHNusg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gXnHodHNusg.m3u8/gXnHodHNusg.m3u8"}, "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-4-part-1/", "duration": 855, "id": "gXnHodHNusg", "title": "2003 AIME II problem 4 (part 1)", "format": "mp4", "description": "", "slug": "2003-aime-ii-problem-4-part-1", "kind": "Video", "video_id": "gXnHodHNusg", "keywords": "2003, AIME, II, Problem, (part, 1), Three, dimensional, geometry", "youtube_id": "gXnHodHNusg", "readable_id": "2003-aime-ii-problem-4-part-1"}, "PkzACPGZcVk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PkzACPGZcVk.mp4/PkzACPGZcVk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PkzACPGZcVk.mp4/PkzACPGZcVk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PkzACPGZcVk.m3u8/PkzACPGZcVk.m3u8"}, "duration": 121, "id": "PkzACPGZcVk", "title": "Robert Delaunay, \"Simultaneous Contrasts: Sun and Moon\"", "format": "mp4", "description": "To learn more about how abstract artists became the radical thinkers of their time, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art.", "path": "khan/humanities/art-1010/early-abstraction/cubism/moma-simultaneous-contrasts-sun-moon/", "slug": "moma-simultaneous-contrasts-sun-moon", "kind": "Video", "video_id": "PkzACPGZcVk", "keywords": "", "youtube_id": "PkzACPGZcVk", "readable_id": "moma-simultaneous-contrasts-sun-moon"}, "eLUmpX_h9sw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eLUmpX_h9sw.mp4/eLUmpX_h9sw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eLUmpX_h9sw.mp4/eLUmpX_h9sw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eLUmpX_h9sw.m3u8/eLUmpX_h9sw.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/interpreting_linear_functions/interpreting-features-of-linear-functions-example-2/", "duration": 358, "id": "eLUmpX_h9sw", "title": "Interpreting linear tables word problems example 2", "format": "mp4", "description": "", "slug": "interpreting-features-of-linear-functions-example-2", "kind": "Video", "video_id": "eLUmpX_h9sw", "keywords": "", "youtube_id": "eLUmpX_h9sw", "readable_id": "interpreting-features-of-linear-functions-example-2"}, "w89mmoD0O4c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w89mmoD0O4c.mp4/w89mmoD0O4c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w89mmoD0O4c.mp4/w89mmoD0O4c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w89mmoD0O4c.m3u8/w89mmoD0O4c.m3u8"}, "path": "khan/partner-content/all-star-orchestra/elements-of-music/lesson-5-review-of-time-signatures-simple-compound-and-complex/", "duration": 133, "id": "w89mmoD0O4c", "title": "Lesson 5: Review of time signatures \u2013 Simple, compound, and complex", "format": "mp4", "description": "", "slug": "lesson-5-review-of-time-signatures-simple-compound-and-complex", "kind": "Video", "video_id": "w89mmoD0O4c", "keywords": "", "youtube_id": "w89mmoD0O4c", "readable_id": "lesson-5-review-of-time-signatures-simple-compound-and-complex"}, "xHuLZHasldg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xHuLZHasldg.mp4/xHuLZHasldg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xHuLZHasldg.mp4/xHuLZHasldg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xHuLZHasldg.m3u8/xHuLZHasldg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/shorthand-notation-for-galvanicvoltaic-cells/", "duration": 437, "id": "xHuLZHasldg", "title": "Shorthand notation for galvanic/voltaic cells", "format": "mp4", "description": "", "slug": "shorthand-notation-for-galvanicvoltaic-cells", "kind": "Video", "video_id": "xHuLZHasldg", "keywords": "", "youtube_id": "xHuLZHasldg", "readable_id": "shorthand-notation-for-galvanicvoltaic-cells"}, "hIAdCTNi1S8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hIAdCTNi1S8.mp4/hIAdCTNi1S8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hIAdCTNi1S8.mp4/hIAdCTNi1S8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hIAdCTNi1S8.m3u8/hIAdCTNi1S8.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/dimensional-analysis-units-algebraically/", "duration": 389, "id": "hIAdCTNi1S8", "title": "Treating units algebraically and dimensional analysis", "format": "mp4", "description": "", "slug": "dimensional-analysis-units-algebraically", "kind": "Video", "video_id": "hIAdCTNi1S8", "keywords": "", "youtube_id": "hIAdCTNi1S8", "readable_id": "dimensional-analysis-units-algebraically"}, "8G0RkfeKfBg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8G0RkfeKfBg.mp4/8G0RkfeKfBg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8G0RkfeKfBg.mp4/8G0RkfeKfBg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8G0RkfeKfBg.m3u8/8G0RkfeKfBg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/decarboxylation/", "duration": 407, "id": "8G0RkfeKfBg", "title": "Decarboxylation", "format": "mp4", "description": "The decarboxylation (loss of carbon dioxide) of malonic acid and a beta-keto acid", "slug": "decarboxylation", "kind": "Video", "video_id": "8G0RkfeKfBg", "keywords": "", "youtube_id": "8G0RkfeKfBg", "readable_id": "decarboxylation"}, "xp6Zj24h8uA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xp6Zj24h8uA.mp4/xp6Zj24h8uA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xp6Zj24h8uA.mp4/xp6Zj24h8uA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xp6Zj24h8uA.m3u8/xp6Zj24h8uA.m3u8"}, "duration": 517, "id": "xp6Zj24h8uA", "title": "Cam plants", "format": "mp4", "description": "How CAM Plants are able to fix carbon at night so they don't have to keep their stomata open during the day", "path": "khan/science/biology/cellular-molecular-biology/photosynthesis/cam-plants/", "slug": "cam-plants", "kind": "Video", "video_id": "xp6Zj24h8uA", "keywords": "CAM, C-4, crassulacean, acid, metabolism, photosynthesis", "youtube_id": "xp6Zj24h8uA", "readable_id": "cam-plants"}, "GyBS8GMynKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GyBS8GMynKQ.mp4/GyBS8GMynKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GyBS8GMynKQ.mp4/GyBS8GMynKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GyBS8GMynKQ.m3u8/GyBS8GMynKQ.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/health-care-cost/", "duration": 1012, "id": "GyBS8GMynKQ", "title": "Health care costs", "format": "mp4", "description": "We all know the US spends a lot on health care, but why are costs so high and what can we do about it? This video explains the reasons why costs have risen so rapidly and various policies proposed to contain costs and improve health care value.", "slug": "health-care-cost", "kind": "Video", "video_id": "GyBS8GMynKQ", "keywords": "", "youtube_id": "GyBS8GMynKQ", "readable_id": "health-care-cost"}, "fFdOr8U4mnI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fFdOr8U4mnI.mp4/fFdOr8U4mnI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fFdOr8U4mnI.mp4/fFdOr8U4mnI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fFdOr8U4mnI.m3u8/fFdOr8U4mnI.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/cross-topic-arithmetic/u09-l1-t2-we4-adding-real-numbers-application/", "duration": 195, "id": "fFdOr8U4mnI", "title": "Rational number word problem with decimals", "format": "mp4", "description": "Your checking account is overdrawn. Not good. Use your knowledge of decimals and adding negative and positive numbers to bring your account back into the black.", "slug": "u09-l1-t2-we4-adding-real-numbers-application", "kind": "Video", "video_id": "fFdOr8U4mnI", "keywords": "u09, l1, t2, we4, Adding, Real, Numbers, Application", "youtube_id": "fFdOr8U4mnI", "readable_id": "u09-l1-t2-we4-adding-real-numbers-application"}, "8wYvKeSK1IY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8wYvKeSK1IY.mp4/8wYvKeSK1IY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8wYvKeSK1IY.mp4/8wYvKeSK1IY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8wYvKeSK1IY.m3u8/8wYvKeSK1IY.m3u8"}, "duration": 603, "id": "8wYvKeSK1IY", "title": "Carbon 14 dating 1", "format": "mp4", "description": "Carbon 14 Dating 1", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/measuring-age-tutorial/carbon-14-dating-1/", "slug": "carbon-14-dating-1", "kind": "Video", "video_id": "8wYvKeSK1IY", "keywords": "Carbon, 14, Dating", "youtube_id": "8wYvKeSK1IY", "readable_id": "carbon-14-dating-1"}, "Hx6-m510hjU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hx6-m510hjU.mp4/Hx6-m510hjU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hx6-m510hjU.mp4/Hx6-m510hjU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hx6-m510hjU.m3u8/Hx6-m510hjU.m3u8"}, "path": "khan/partner-content/big-history-project/agriculture-civilization/rise-of-agriculture/bhp-why-agriculture-was-important/", "duration": 603, "id": "Hx6-m510hjU", "title": "Why Was Agriculture So Important?", "format": "mp4", "description": "The invention of agriculture is not just a matter of tastier food. It unlocked powerful forces that transformed history.", "slug": "bhp-why-agriculture-was-important", "kind": "Video", "video_id": "Hx6-m510hjU", "keywords": "", "youtube_id": "Hx6-m510hjU", "readable_id": "bhp-why-agriculture-was-important"}, "Cc9cLmgXp_A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Cc9cLmgXp_A.mp4/Cc9cLmgXp_A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Cc9cLmgXp_A.mp4/Cc9cLmgXp_A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Cc9cLmgXp_A.m3u8/Cc9cLmgXp_A.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/aegean-art1/mycenaean/treasury-of-atreus/", "duration": 249, "id": "Cc9cLmgXp_A", "title": "The Treasury of Atreus, c. 1300-1250 B.C.E., Mycenae, Greece", "format": "mp4", "description": "Speakers: Dr. Steven Zucker and Beth Harris", "slug": "treasury-of-atreus", "kind": "Video", "video_id": "Cc9cLmgXp_A", "keywords": "", "youtube_id": "Cc9cLmgXp_A", "readable_id": "treasury-of-atreus"}, "lmm767eIsGU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lmm767eIsGU.mp4/lmm767eIsGU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lmm767eIsGU.mp4/lmm767eIsGU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lmm767eIsGU.m3u8/lmm767eIsGU.m3u8"}, "duration": 153, "id": "lmm767eIsGU", "title": "Constructing circle inscribing triangle", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/circum-in-circles/constructing-circle-inscribing-triangle/", "slug": "constructing-circle-inscribing-triangle", "kind": "Video", "video_id": "lmm767eIsGU", "keywords": "", "youtube_id": "lmm767eIsGU", "readable_id": "constructing-circle-inscribing-triangle"}, "8sz1IPjBRS8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8sz1IPjBRS8.mp4/8sz1IPjBRS8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8sz1IPjBRS8.mp4/8sz1IPjBRS8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8sz1IPjBRS8.m3u8/8sz1IPjBRS8.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-slope/slope-and-y-intercept-intuition/", "duration": 354, "id": "8sz1IPjBRS8", "title": "Slope and y-intercept intuition", "format": "mp4", "description": "Using the \"Graph of a line\" module to understand how a line's graph changes when its slope or y-intercept is changed.", "slug": "slope-and-y-intercept-intuition", "kind": "Video", "video_id": "8sz1IPjBRS8", "keywords": "slope, y-intercept, graph", "youtube_id": "8sz1IPjBRS8", "readable_id": "slope-and-y-intercept-intuition"}, "vO1Ur38PGCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vO1Ur38PGCY.mp4/vO1Ur38PGCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vO1Ur38PGCY.mp4/vO1Ur38PGCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vO1Ur38PGCY.m3u8/vO1Ur38PGCY.m3u8"}, "duration": 302, "id": "vO1Ur38PGCY", "title": "Another example of rigid transformations for congruence", "format": "mp4", "description": "", "path": "khan/math/geometry/congruent-triangles/transformations-congruence/another-example-of-rigid-transformations-for-congruence/", "slug": "another-example-of-rigid-transformations-for-congruence", "kind": "Video", "video_id": "vO1Ur38PGCY", "keywords": "", "youtube_id": "vO1Ur38PGCY", "readable_id": "another-example-of-rigid-transformations-for-congruence"}, "JTpXK2mENH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JTpXK2mENH4.mp4/JTpXK2mENH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JTpXK2mENH4.mp4/JTpXK2mENH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JTpXK2mENH4.m3u8/JTpXK2mENH4.m3u8"}, "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-15-part-3/", "duration": 571, "id": "JTpXK2mENH4", "title": "2003 AIME II problem 15 (part 3)", "format": "mp4", "description": "Finding the sum of the absolute value of the imaginary parts of the square of the roots of a crazy polynomial", "slug": "2003-aime-ii-problem-15-part-3", "kind": "Video", "video_id": "JTpXK2mENH4", "keywords": "complex, analysis, trigonometry, competition, math", "youtube_id": "JTpXK2mENH4", "readable_id": "2003-aime-ii-problem-15-part-3"}, "_qrQKBB2jt8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_qrQKBB2jt8.mp4/_qrQKBB2jt8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_qrQKBB2jt8.mp4/_qrQKBB2jt8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_qrQKBB2jt8.m3u8/_qrQKBB2jt8.m3u8"}, "duration": 586, "id": "_qrQKBB2jt8", "title": "Another stoichiometry example in a solution", "format": "mp4", "description": "Another Stoichiometry Example in a Solution", "path": "khan/science/physics/thermodynamics/another-stoichiometry-example-in-a-solution/", "slug": "another-stoichiometry-example-in-a-solution", "kind": "Video", "video_id": "_qrQKBB2jt8", "keywords": "stoichiometry, solution, molarity", "youtube_id": "_qrQKBB2jt8", "readable_id": "another-stoichiometry-example-in-a-solution"}, "ww_yT9ckPWw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ww_yT9ckPWw.mp4/ww_yT9ckPWw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ww_yT9ckPWw.mp4/ww_yT9ckPWw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ww_yT9ckPWw.m3u8/ww_yT9ckPWw.m3u8"}, "duration": 555, "id": "ww_yT9ckPWw", "title": "Second regression example", "format": "mp4", "description": "Second Regression Example", "path": "khan/math/probability/regression/regression-correlation/second-regression-example/", "slug": "second-regression-example", "kind": "Video", "video_id": "ww_yT9ckPWw", "keywords": "Second, Regression, Example, line, least, squared, CC_8_SP_2, CC_8_SP_3", "youtube_id": "ww_yT9ckPWw", "readable_id": "second-regression-example"}, "1OtzfP8fCNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1OtzfP8fCNU.mp4/1OtzfP8fCNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1OtzfP8fCNU.mp4/1OtzfP8fCNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1OtzfP8fCNU.m3u8/1OtzfP8fCNU.m3u8"}, "duration": 514, "id": "1OtzfP8fCNU", "title": "Graphs of absolute value functions", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/graphs-of-absolute-value-functions/", "slug": "graphs-of-absolute-value-functions", "kind": "Video", "video_id": "1OtzfP8fCNU", "keywords": "", "youtube_id": "1OtzfP8fCNU", "readable_id": "graphs-of-absolute-value-functions"}, "n6xCyzOP900": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n6xCyzOP900.mp4/n6xCyzOP900.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n6xCyzOP900.mp4/n6xCyzOP900.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n6xCyzOP900.m3u8/n6xCyzOP900.m3u8"}, "path": "khan/math/probability/descriptive-statistics/central_tendency/exploring-mean-and-median-module/", "duration": 326, "id": "n6xCyzOP900", "title": "Exploring the mean and median", "format": "mp4", "description": "Watch as we use a nifty interactive module to demonstrate how moving points along a number line can help us find the mean and median.", "slug": "exploring-mean-and-median-module", "kind": "Video", "video_id": "n6xCyzOP900", "keywords": "", "youtube_id": "n6xCyzOP900", "readable_id": "exploring-mean-and-median-module"}, "ervHbKa7R5g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ervHbKa7R5g.mp4/ervHbKa7R5g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ervHbKa7R5g.mp4/ervHbKa7R5g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ervHbKa7R5g.m3u8/ervHbKa7R5g.m3u8"}, "duration": 842, "id": "ervHbKa7R5g", "title": "Geithner plan 1", "format": "mp4", "description": "Overview of the Geithner Plan and the problem it is supposed to solve.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/geithner-plan/geithner-plan-i/", "slug": "geithner-plan-i", "kind": "Video", "video_id": "ervHbKa7R5g", "keywords": "geithner, timothy, obama, plan, bailout, TALF, TARP", "youtube_id": "ervHbKa7R5g", "readable_id": "geithner-plan-i"}, "MuD06cnjtAM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MuD06cnjtAM.mp4/MuD06cnjtAM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MuD06cnjtAM.mp4/MuD06cnjtAM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MuD06cnjtAM.m3u8/MuD06cnjtAM.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/late-empire/colossus-of-constantine/", "duration": 273, "id": "MuD06cnjtAM", "title": "The Colossus of Constantine", "format": "mp4", "description": "The Colossus of Constantine, c. 312-15, Palazzo dei Conservatori, Musei Capitolini, Rome\n\nA conversation between Dr. Beth Harris and Dr. Steven Zucker in front of the Colossus of Constantine.", "slug": "colossus-of-constantine", "kind": "Video", "video_id": "MuD06cnjtAM", "keywords": "", "youtube_id": "MuD06cnjtAM", "readable_id": "colossus-of-constantine"}, "0YD5xSvseIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0YD5xSvseIw.mp4/0YD5xSvseIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0YD5xSvseIw.mp4/0YD5xSvseIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0YD5xSvseIw.m3u8/0YD5xSvseIw.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/reactions-benzene/friedel-crafts-acylation-addendum/", "duration": 50, "id": "0YD5xSvseIw", "title": "Friedel crafts acylation addendum", "format": "mp4", "description": "Friedel Crafts Acylation Addendum", "slug": "friedel-crafts-acylation-addendum", "kind": "Video", "video_id": "0YD5xSvseIw", "keywords": "Friedel, Crafts, Acylation, Addendum", "youtube_id": "0YD5xSvseIw", "readable_id": "friedel-crafts-acylation-addendum"}, "KWv5PaoHwPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KWv5PaoHwPA.mp4/KWv5PaoHwPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KWv5PaoHwPA.mp4/KWv5PaoHwPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KWv5PaoHwPA.m3u8/KWv5PaoHwPA.m3u8"}, "duration": 507, "id": "KWv5PaoHwPA", "title": "Naming alkenes examples", "format": "mp4", "description": "Naming Alkenes Examples", "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-alkenes/naming-alkenes-examples/", "slug": "naming-alkenes-examples", "kind": "Video", "video_id": "KWv5PaoHwPA", "keywords": "Naming, Alkenes, Examples", "youtube_id": "KWv5PaoHwPA", "readable_id": "naming-alkenes-examples"}, "7HUYGoJ2bD0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7HUYGoJ2bD0.mp4/7HUYGoJ2bD0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7HUYGoJ2bD0.mp4/7HUYGoJ2bD0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7HUYGoJ2bD0.m3u8/7HUYGoJ2bD0.m3u8"}, "duration": 676, "id": "7HUYGoJ2bD0", "title": "Greeks and Persians", "format": "mp4", "description": "In which John compares and contrasts Greek civilization and the Persian Empire. Of course we're glad that Greek civilization spawned modern western civilization, right? Maybe not. From Socrates and Plato to Darius and Xerxes, John explains two of the great powers of the ancient world, all WITHOUT the use of footage from 300.", "path": "khan/humanities/history/crashcourse-worldhistory/so-thats-where-that-comes-from-2/crash-course-world-history-05/", "slug": "crash-course-world-history-05", "kind": "Video", "video_id": "7HUYGoJ2bD0", "keywords": "crash course", "youtube_id": "7HUYGoJ2bD0", "readable_id": "crash-course-world-history-05"}, "kio82CqAEMw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kio82CqAEMw.mp4/kio82CqAEMw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kio82CqAEMw.mp4/kio82CqAEMw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kio82CqAEMw.m3u8/kio82CqAEMw.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-4-14/", "duration": 145, "id": "kio82CqAEMw", "title": "14 Least possible value for variable", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-14", "kind": "Video", "video_id": "kio82CqAEMw", "keywords": "", "youtube_id": "kio82CqAEMw", "readable_id": "sat-2008-may-4-14"}, "nrRJkzXl4a4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nrRJkzXl4a4.mp4/nrRJkzXl4a4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nrRJkzXl4a4.mp4/nrRJkzXl4a4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nrRJkzXl4a4.m3u8/nrRJkzXl4a4.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/the-classical-orders/", "duration": 668, "id": "nrRJkzXl4a4", "title": "The classical orders", "format": "mp4", "description": "A conversation with Dr. Steven Zucker & Dr. Beth Harris\n\nIn classical architecture, the Orders consist of variations of an assembly of parts made up of a column (usually with a base), a capital, and an entablature. These structural units may be repeated and combined to form the elevation of a building and its architectural vocabulary.\n\nThere are eight Orders in total: Doric (Greek and Roman versions), Tuscan, Ionic (Greek and Roman), Corinthian (Greek and Roman), and Composite. The simplest is the Tuscan, supposedly derived from the Etruscan-type temple. It has a base and capital and a plain column. The Doric is probably earlier, however, its Greek version having no base, as on the Parthenon. The Ionic Order, with its twin volute capitals, originated in Asia Minor in the mid-6th century B.C.E. The Corinthian Order was an Athenian invention of the 5th century B.C.E. and was later developed by the Romans. The Composite Order is a late Roman combination of elements from the Ionic and Corinthian Orders.\n\nThe Concise Oxford Dictionary of Art Terms, Michael Clarke, Deborah Clarke. \u00a9 2012 Oxford University Press. Available at Oxford Art OnlineAncient Greece\n", "slug": "the-classical-orders", "kind": "Video", "video_id": "nrRJkzXl4a4", "keywords": "art history", "youtube_id": "nrRJkzXl4a4", "readable_id": "the-classical-orders"}, "JUgrBkPteTg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JUgrBkPteTg.mp4/JUgrBkPteTg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JUgrBkPteTg.mp4/JUgrBkPteTg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JUgrBkPteTg.m3u8/JUgrBkPteTg.m3u8"}, "duration": 768, "id": "JUgrBkPteTg", "title": "Dimension of the column space or rank", "format": "mp4", "description": "Dimension of the Column Space or Rank", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/dimension-of-the-column-space-or-rank/", "slug": "dimension-of-the-column-space-or-rank", "kind": "Video", "video_id": "JUgrBkPteTg", "keywords": "column, space, matrix, dimension, rank", "youtube_id": "JUgrBkPteTg", "readable_id": "dimension-of-the-column-space-or-rank"}, "oHvLlS_Sc54": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oHvLlS_Sc54.mp4/oHvLlS_Sc54.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oHvLlS_Sc54.mp4/oHvLlS_Sc54.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oHvLlS_Sc54.m3u8/oHvLlS_Sc54.m3u8"}, "duration": 761, "id": "oHvLlS_Sc54", "title": "Taxonomy and the tree of life", "format": "mp4", "description": "The science of taxonomy and where humans fit into the tree of life", "path": "khan/science/biology/her/tree-of-life/taxonomy-and-the-tree-of-life/", "slug": "taxonomy-and-the-tree-of-life", "kind": "Video", "video_id": "oHvLlS_Sc54", "keywords": "homo, sapiens, eukaryotes, primates, mammals, chordates", "youtube_id": "oHvLlS_Sc54", "readable_id": "taxonomy-and-the-tree-of-life"}, "lzWUG4H5QBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lzWUG4H5QBo.mp4/lzWUG4H5QBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lzWUG4H5QBo.mp4/lzWUG4H5QBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lzWUG4H5QBo.m3u8/lzWUG4H5QBo.m3u8"}, "duration": 570, "id": "lzWUG4H5QBo", "title": "People and plants", "format": "mp4", "description": "Learn more about photosynthesis and cellular respiration through a classic story: Jack and the Beanstalk. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/respiratory-system/respiratory-system-introduction/people-and-plants/", "slug": "people-and-plants", "kind": "Video", "video_id": "lzWUG4H5QBo", "keywords": "", "youtube_id": "lzWUG4H5QBo", "readable_id": "people-and-plants"}, "M3PTPN7NH8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M3PTPN7NH8M.mp4/M3PTPN7NH8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M3PTPN7NH8M.mp4/M3PTPN7NH8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M3PTPN7NH8M.m3u8/M3PTPN7NH8M.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/comparing-interpreting-functions/interpreting-features-of-functions-2-example-1/", "duration": 230, "id": "M3PTPN7NH8M", "title": "Interpreting the y-intercept of a graph in context", "format": "mp4", "description": "", "slug": "interpreting-features-of-functions-2-example-1", "kind": "Video", "video_id": "M3PTPN7NH8M", "keywords": "", "youtube_id": "M3PTPN7NH8M", "readable_id": "interpreting-features-of-functions-2-example-1"}, "tOUys6vlTvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tOUys6vlTvE.mp4/tOUys6vlTvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tOUys6vlTvE.mp4/tOUys6vlTvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tOUys6vlTvE.m3u8/tOUys6vlTvE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-non-cyanotic-heart-diseases/acyanotic-heart-disasee-diagnosis/", "duration": 478, "id": "tOUys6vlTvE", "title": "Acyanotic heart disease diagnosis", "format": "mp4", "description": "How do we know a patient has an acyanotic heart disease? Learn how health care professionals use a variety of tools to diagnosis these conditions, such as stethoscopes, chest x-rays, echocardiogram, and electrocardiograms (ECG or EKG).", "slug": "acyanotic-heart-disasee-diagnosis", "kind": "Video", "video_id": "tOUys6vlTvE", "keywords": "", "youtube_id": "tOUys6vlTvE", "readable_id": "acyanotic-heart-disasee-diagnosis"}, "Jdu1scUjIHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jdu1scUjIHQ.mp4/Jdu1scUjIHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jdu1scUjIHQ.mp4/Jdu1scUjIHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jdu1scUjIHQ.m3u8/Jdu1scUjIHQ.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/ss-campus-size-selectivity-financial-aid-college-search/", "duration": 40, "id": "Jdu1scUjIHQ", "title": "Student story: Prioritizing size, selectivity, diversity and financial aid in the college search", "format": "mp4", "description": "", "slug": "ss-campus-size-selectivity-financial-aid-college-search", "kind": "Video", "video_id": "Jdu1scUjIHQ", "keywords": "", "youtube_id": "Jdu1scUjIHQ", "readable_id": "ss-campus-size-selectivity-financial-aid-college-search"}, "SQmyTmO8OKw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SQmyTmO8OKw.mp4/SQmyTmO8OKw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SQmyTmO8OKw.mp4/SQmyTmO8OKw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SQmyTmO8OKw.m3u8/SQmyTmO8OKw.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-intro/order-by-length/", "duration": 157, "id": "SQmyTmO8OKw", "title": "Order by length", "format": "mp4", "description": "", "slug": "order-by-length", "kind": "Video", "video_id": "SQmyTmO8OKw", "keywords": "", "youtube_id": "SQmyTmO8OKw", "readable_id": "order-by-length"}, "kHQCDrWTDv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kHQCDrWTDv8.mp4/kHQCDrWTDv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kHQCDrWTDv8.mp4/kHQCDrWTDv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kHQCDrWTDv8.m3u8/kHQCDrWTDv8.m3u8"}, "duration": 85, "id": "kHQCDrWTDv8", "title": "Comparing rates", "format": "mp4", "description": "", "path": "comparing-proportional-relationships-exercise-2/", "slug": "comparing-proportional-relationships-exercise-2", "kind": "Video", "video_id": "kHQCDrWTDv8", "keywords": "", "youtube_id": "kHQCDrWTDv8", "readable_id": "comparing-proportional-relationships-exercise-2"}, "yqc9zX04DXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yqc9zX04DXs.mp4/yqc9zX04DXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yqc9zX04DXs.mp4/yqc9zX04DXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yqc9zX04DXs.m3u8/yqc9zX04DXs.m3u8"}, "path": "khan/partner-content/big-history-project/future/looking-back/the-history-of-everything-ted/", "duration": 1331, "id": "yqc9zX04DXs", "title": "The History of Everything\u2014TED", "format": "mp4", "description": "David Christian gives a TED talk covering the Universe's 13.8 billion year history in 18 minutes.", "slug": "the-history-of-everything-ted", "kind": "Video", "video_id": "yqc9zX04DXs", "keywords": "", "youtube_id": "yqc9zX04DXs", "readable_id": "the-history-of-everything-ted"}, "1uWZNW5PF-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1uWZNW5PF-s.mp4/1uWZNW5PF-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1uWZNW5PF-s.mp4/1uWZNW5PF-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1uWZNW5PF-s.m3u8/1uWZNW5PF-s.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/challenging-perimeter-problem/", "duration": 596, "id": "1uWZNW5PF-s", "title": "Challenging perimeter problem", "format": "mp4", "description": "Perimeter of rectangle covered by 9 non-overlapping squares. From 2000 American Invitational Math Exam", "slug": "challenging-perimeter-problem", "kind": "Video", "video_id": "1uWZNW5PF-s", "keywords": "geometry, AIME", "youtube_id": "1uWZNW5PF-s", "readable_id": "challenging-perimeter-problem"}, "K4RE-6AolEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K4RE-6AolEw.mp4/K4RE-6AolEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K4RE-6AolEw.mp4/K4RE-6AolEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K4RE-6AolEw.m3u8/K4RE-6AolEw.m3u8"}, "duration": 460, "id": "K4RE-6AolEw", "title": "Synthesis of substituted benzene rings I", "format": "mp4", "description": "Synthesis practice problems", "path": "khan/science/organic-chemistry/aromatic-compounds/other-reactions-and-synthesis/synthesis-of-substituted-benzene-rings-i/", "slug": "synthesis-of-substituted-benzene-rings-i", "kind": "Video", "video_id": "K4RE-6AolEw", "keywords": "", "youtube_id": "K4RE-6AolEw", "readable_id": "synthesis-of-substituted-benzene-rings-i"}, "zGO-MlsdmgU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zGO-MlsdmgU.mp4/zGO-MlsdmgU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zGO-MlsdmgU.mp4/zGO-MlsdmgU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zGO-MlsdmgU.m3u8/zGO-MlsdmgU.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-preparation-epoxides/nomenclature-and-preparation-of-epoxides/", "duration": 515, "id": "zGO-MlsdmgU", "title": "Nomenclature and preparation of epoxides", "format": "mp4", "description": "", "slug": "nomenclature-and-preparation-of-epoxides", "kind": "Video", "video_id": "zGO-MlsdmgU", "keywords": "", "youtube_id": "zGO-MlsdmgU", "readable_id": "nomenclature-and-preparation-of-epoxides"}, "A3vkqYgJ93c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A3vkqYgJ93c.mp4/A3vkqYgJ93c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A3vkqYgJ93c.mp4/A3vkqYgJ93c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A3vkqYgJ93c.m3u8/A3vkqYgJ93c.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/pozzo-st-ignatius-chapel-il-gesu-rome-commissioned-in-1695/", "duration": 228, "id": "A3vkqYgJ93c", "title": "Pozzo, Saint Ignatius Chapel, Il Ges\u00f9", "format": "mp4", "description": "Andrea Pozzo, Saint Ignatius Chapel in the left transept of the church, Il Ges\u00f9, Rome (commissioned in 1695). \n\nMany artists contributed including Alessandro Algardi, Pierre Legros, Bernardino Ludovisi, Il Lorenzone and Jean-Baptiste Th\u00e9odon. \nMaterials include bronze, gold, silver, and many semiprecious stones most notably lapis lazuli. \n\nhttp://smarthistory.org/andrea-pozzos-saint-ignatius-chapel-in-church-il-gesu.html\nSpeakers: Frank Dabell, Dr. Beth Harris and Dr. Steven Zucker", "slug": "pozzo-st-ignatius-chapel-il-gesu-rome-commissioned-in-1695", "kind": "Video", "video_id": "A3vkqYgJ93c", "keywords": "rome, gesu, il gesu, baroque, smarthistory, context travel, ignatius", "youtube_id": "A3vkqYgJ93c", "readable_id": "pozzo-st-ignatius-chapel-il-gesu-rome-commissioned-in-1695"}, "5qWI2pEv0wg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5qWI2pEv0wg.mp4/5qWI2pEv0wg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5qWI2pEv0wg.mp4/5qWI2pEv0wg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5qWI2pEv0wg.m3u8/5qWI2pEv0wg.m3u8"}, "duration": 384, "id": "5qWI2pEv0wg", "title": "Hitler's Beer Hall Putsch", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/hitler-nazis/hitler-s-beer-hall-putsch/", "slug": "hitler-s-beer-hall-putsch", "kind": "Video", "video_id": "5qWI2pEv0wg", "keywords": "", "youtube_id": "5qWI2pEv0wg", "readable_id": "hitler-s-beer-hall-putsch"}, "j-rBgs_p-bg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j-rBgs_p-bg.mp4/j-rBgs_p-bg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j-rBgs_p-bg.mp4/j-rBgs_p-bg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j-rBgs_p-bg.m3u8/j-rBgs_p-bg.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/reactions-alcohols-tutorial/oxidation-of-alcohols-i-mechanism-and-oxidation-states/", "duration": 758, "id": "j-rBgs_p-bg", "title": "Oxidation of alcohols I: Mechanism and oxidation states", "format": "mp4", "description": "", "slug": "oxidation-of-alcohols-i-mechanism-and-oxidation-states", "kind": "Video", "video_id": "j-rBgs_p-bg", "keywords": "", "youtube_id": "j-rBgs_p-bg", "readable_id": "oxidation-of-alcohols-i-mechanism-and-oxidation-states"}, "gyqodNhM3EU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gyqodNhM3EU.mp4/gyqodNhM3EU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gyqodNhM3EU.mp4/gyqodNhM3EU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gyqodNhM3EU.m3u8/gyqodNhM3EU.m3u8"}, "duration": 330, "id": "gyqodNhM3EU", "title": "Mega millions jackpot probability", "format": "mp4", "description": "Probability of winning the Mega Millions jackpot", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/mega-millions-jackpot-probability/", "slug": "mega-millions-jackpot-probability", "kind": "Video", "video_id": "gyqodNhM3EU", "keywords": "probability, combinations, choose", "youtube_id": "gyqodNhM3EU", "readable_id": "mega-millions-jackpot-probability"}, "4o4P7KrkzXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4o4P7KrkzXg.mp4/4o4P7KrkzXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4o4P7KrkzXg.mp4/4o4P7KrkzXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4o4P7KrkzXg.m3u8/4o4P7KrkzXg.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_proof/stokes-theorem-proof-part-3/", "duration": 251, "id": "4o4P7KrkzXg", "title": "Stokes' theorem proof part 3", "format": "mp4", "description": "Writing our surface integral as a double integral over the domain of our parameters", "slug": "stokes-theorem-proof-part-3", "kind": "Video", "video_id": "4o4P7KrkzXg", "keywords": "", "youtube_id": "4o4P7KrkzXg", "readable_id": "stokes-theorem-proof-part-3"}, "dirBYVjDk7A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dirBYVjDk7A.mp4/dirBYVjDk7A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dirBYVjDk7A.mp4/dirBYVjDk7A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dirBYVjDk7A.m3u8/dirBYVjDk7A.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/current-capital-account/balance-of-payments-current-account/", "duration": 389, "id": "dirBYVjDk7A", "title": "Balance of payments: Current account", "format": "mp4", "description": "Understanding the United States Current Account in 2011", "slug": "balance-of-payments-current-account", "kind": "Video", "video_id": "dirBYVjDk7A", "keywords": "macroeconomics, current, account, capital, financial", "youtube_id": "dirBYVjDk7A", "readable_id": "balance-of-payments-current-account"}, "qBYa_QOWuaE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qBYa_QOWuaE.mp4/qBYa_QOWuaE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qBYa_QOWuaE.mp4/qBYa_QOWuaE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qBYa_QOWuaE.m3u8/qBYa_QOWuaE.m3u8"}, "duration": 607, "id": "qBYa_QOWuaE", "title": "Pension obligations", "format": "mp4", "description": "Thinking about pensions, defined benefit plans, defined contribution plans and how pensions tend to get underfunded", "path": "khan/humanities/history/american-civics/american-civics/pension-obligations/", "slug": "pension-obligations", "kind": "Video", "video_id": "qBYa_QOWuaE", "keywords": "pension, underfunded, defined benefit, defined contribution, marquee", "youtube_id": "qBYa_QOWuaE", "readable_id": "pension-obligations"}, "ppBJWf_Wdmc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ppBJWf_Wdmc.mp4/ppBJWf_Wdmc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ppBJWf_Wdmc.mp4/ppBJWf_Wdmc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ppBJWf_Wdmc.m3u8/ppBJWf_Wdmc.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-1a/", "duration": 448, "id": "ppBJWf_Wdmc", "title": "2011 Calculus AB free response #1a", "format": "mp4", "description": "Determining whether speed is increasing. Difference between speed and acceleration", "slug": "2011-calculus-ab-free-response-1a", "kind": "Video", "video_id": "ppBJWf_Wdmc", "keywords": "calculus, AP, 2011, advanced, placement", "youtube_id": "ppBJWf_Wdmc", "readable_id": "2011-calculus-ab-free-response-1a"}, "el6nuUsff84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/el6nuUsff84.mp4/el6nuUsff84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/el6nuUsff84.mp4/el6nuUsff84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/el6nuUsff84.m3u8/el6nuUsff84.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/electrocardioversion/", "duration": 424, "id": "el6nuUsff84", "title": "Electrocardioversion", "format": "mp4", "description": "", "slug": "electrocardioversion", "kind": "Video", "video_id": "el6nuUsff84", "keywords": "", "youtube_id": "el6nuUsff84", "readable_id": "electrocardioversion"}, "PP7T8vpT2KI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PP7T8vpT2KI.mp4/PP7T8vpT2KI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PP7T8vpT2KI.mp4/PP7T8vpT2KI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PP7T8vpT2KI.m3u8/PP7T8vpT2KI.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e2-elimination-substituted-cyclohexanes/", "duration": 775, "id": "PP7T8vpT2KI", "title": "E2 elimination: Substituted cyclohexanes", "format": "mp4", "description": "", "slug": "e2-elimination-substituted-cyclohexanes", "kind": "Video", "video_id": "PP7T8vpT2KI", "keywords": "", "youtube_id": "PP7T8vpT2KI", "readable_id": "e2-elimination-substituted-cyclohexanes"}, "SuB1gkto9LU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SuB1gkto9LU.mp4/SuB1gkto9LU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SuB1gkto9LU.mp4/SuB1gkto9LU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SuB1gkto9LU.m3u8/SuB1gkto9LU.m3u8"}, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/practice-thinking-about-number-of-solutions-to-systems/", "duration": 396, "id": "SuB1gkto9LU", "title": "Analyzing solutions to linear systems graphically 2", "format": "mp4", "description": "", "slug": "practice-thinking-about-number-of-solutions-to-systems", "kind": "Video", "video_id": "SuB1gkto9LU", "keywords": "", "youtube_id": "SuB1gkto9LU", "readable_id": "practice-thinking-about-number-of-solutions-to-systems"}, "MEN0CzGv5-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MEN0CzGv5-Y.mp4/MEN0CzGv5-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MEN0CzGv5-Y.mp4/MEN0CzGv5-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MEN0CzGv5-Y.m3u8/MEN0CzGv5-Y.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/beginners-guide-imperial-china/appreciating-chinese-calligraphy/", "duration": 243, "id": "MEN0CzGv5-Y", "title": "Appreciating Chinese calligraphy", "format": "mp4", "description": "Discover the art of Chinese calligraphy. Try your hand at brushpainting in this digital interactive.", "slug": "appreciating-chinese-calligraphy", "kind": "Video", "video_id": "MEN0CzGv5-Y", "keywords": "", "youtube_id": "MEN0CzGv5-Y", "readable_id": "appreciating-chinese-calligraphy"}, "595Tiga1gIg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/595Tiga1gIg.mp4/595Tiga1gIg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/595Tiga1gIg.mp4/595Tiga1gIg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/595Tiga1gIg.m3u8/595Tiga1gIg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/vectors-and-scalars/unit-vector-notation-part-2/", "duration": 553, "id": "595Tiga1gIg", "title": "Unit vector notation (part 2)", "format": "mp4", "description": "More on unit vector notation. Showing that adding the x and y components of two vectors is equivalent to adding the vectors visually using the head-to-tail method", "slug": "unit-vector-notation-part-2", "kind": "Video", "video_id": "595Tiga1gIg", "keywords": "adding, vectors, physics, calculus", "youtube_id": "595Tiga1gIg", "readable_id": "unit-vector-notation-part-2"}, "6nVysrZQnOQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6nVysrZQnOQ.mp4/6nVysrZQnOQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6nVysrZQnOQ.mp4/6nVysrZQnOQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6nVysrZQnOQ.m3u8/6nVysrZQnOQ.m3u8"}, "duration": 999, "id": "6nVysrZQnOQ", "title": "Radius of observable universe", "format": "mp4", "description": "Radius of Observable Universe", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/radius-of-observable-universe/", "slug": "radius-of-observable-universe", "kind": "Video", "video_id": "6nVysrZQnOQ", "keywords": "Radius, of, Observable, Universe, cosmos, cosmology, astronomy", "youtube_id": "6nVysrZQnOQ", "readable_id": "radius-of-observable-universe"}, "lMfJSBsng3Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lMfJSBsng3Y.mp4/lMfJSBsng3Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lMfJSBsng3Y.mp4/lMfJSBsng3Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lMfJSBsng3Y.m3u8/lMfJSBsng3Y.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-may-2010-4-1/", "duration": 69, "id": "lMfJSBsng3Y", "title": "1 Constructing and solving simple equation", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-may-2010-4-1", "kind": "Video", "video_id": "lMfJSBsng3Y", "keywords": "", "youtube_id": "lMfJSBsng3Y", "readable_id": "sat-may-2010-4-1"}, "91x5bPf2Eag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/91x5bPf2Eag.mp4/91x5bPf2Eag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/91x5bPf2Eag.mp4/91x5bPf2Eag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/91x5bPf2Eag.m3u8/91x5bPf2Eag.m3u8"}, "path": "khan/humanities/art-asia/art-japan/japanese-art/samurai-armor/", "duration": 330, "id": "91x5bPf2Eag", "title": "A brief history of samurai armor", "format": "mp4", "description": "Learn about samurai armor by exploring artworks in the Asian Art Museum's collection. Learn more about samurai armor on the Asian Art Museum's education website.", "slug": "samurai-armor", "kind": "Video", "video_id": "91x5bPf2Eag", "keywords": "", "youtube_id": "91x5bPf2Eag", "readable_id": "samurai-armor"}, "XjoJ9UF2hqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XjoJ9UF2hqg.mp4/XjoJ9UF2hqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XjoJ9UF2hqg.mp4/XjoJ9UF2hqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XjoJ9UF2hqg.m3u8/XjoJ9UF2hqg.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/collateralized-debt-obligation-cdo/", "duration": 582, "id": "XjoJ9UF2hqg", "title": "Collateralized debt obligation (CDO)", "format": "mp4", "description": "Introduction to collateralized debt obligations (to be listen to after series on mortgage-backed securities.", "slug": "collateralized-debt-obligation-cdo", "kind": "Video", "video_id": "XjoJ9UF2hqg", "keywords": "finance, CDO, MBS, khan, academy", "youtube_id": "XjoJ9UF2hqg", "readable_id": "collateralized-debt-obligation-cdo"}, "ascpn9AjCIk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ascpn9AjCIk.mp4/ascpn9AjCIk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ascpn9AjCIk.mp4/ascpn9AjCIk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ascpn9AjCIk.m3u8/ascpn9AjCIk.m3u8"}, "path": "khan/humanities/art-americas/us-art-19c/romanticism-us/fitz-henry-lane-owl-s-head-penobscot-bay-maine-1862/", "duration": 207, "id": "ascpn9AjCIk", "title": "Lane, Owl's Head, Penobscot Bay, Maine", "format": "mp4", "description": "Fitz Henry Lane, Owl's Head, Penobscot Bay, Maine, 1862, oil on canvas, 40 x 66.36 cm / 15-3/4 x 26-1/8 inches (Museum of Fine Arts, Boston)", "slug": "fitz-henry-lane-owl-s-head-penobscot-bay-maine-1862", "kind": "Video", "video_id": "ascpn9AjCIk", "keywords": "GAP, Maine, American Painting, American Art, Fitz Henry Lane, Owl's Head, Penobscot Bay, 1862, Museum of Fine Arts, Boston, Khan Academy, smarthistory, art history, Google Art Project, OER, painting, landscape, ship, shore, calm, luminist", "youtube_id": "ascpn9AjCIk", "readable_id": "fitz-henry-lane-owl-s-head-penobscot-bay-maine-1862"}, "e9cKwLhM0VU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e9cKwLhM0VU.mp4/e9cKwLhM0VU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e9cKwLhM0VU.mp4/e9cKwLhM0VU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e9cKwLhM0VU.m3u8/e9cKwLhM0VU.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-decisions-overview/sscc-blended-hardsoftintro/", "duration": 48, "id": "e9cKwLhM0VU", "title": "Hardware, software and space: intro and big ideas", "format": "mp4", "description": "", "slug": "sscc-blended-hardsoftintro", "kind": "Video", "video_id": "e9cKwLhM0VU", "keywords": "", "youtube_id": "e9cKwLhM0VU", "readable_id": "sscc-blended-hardsoftintro"}, "FHptu3tcJnM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FHptu3tcJnM.mp4/FHptu3tcJnM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FHptu3tcJnM.mp4/FHptu3tcJnM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FHptu3tcJnM.m3u8/FHptu3tcJnM.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/electrophilic-aromatic-substitution/friedel-crafts-alkylation/", "duration": 823, "id": "FHptu3tcJnM", "title": "Friedel-Crafts alkylation", "format": "mp4", "description": "The mechanism of alkylation", "slug": "friedel-crafts-alkylation", "kind": "Video", "video_id": "FHptu3tcJnM", "keywords": "", "youtube_id": "FHptu3tcJnM", "readable_id": "friedel-crafts-alkylation"}, "W-OskAegz5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W-OskAegz5o.mp4/W-OskAegz5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W-OskAegz5o.mp4/W-OskAegz5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W-OskAegz5o.m3u8/W-OskAegz5o.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/intro-to-channel-capacity-information-theory/", "duration": 354, "id": "W-OskAegz5o", "title": "Introduction to channel capacity", "format": "mp4", "description": "Introduction to Channel Capacity & Message Space", "slug": "intro-to-channel-capacity-information-theory", "kind": "Video", "video_id": "W-OskAegz5o", "keywords": "channel capacity", "youtube_id": "W-OskAegz5o", "readable_id": "intro-to-channel-capacity-information-theory"}, "cDq1_R-J51w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cDq1_R-J51w.mp4/cDq1_R-J51w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cDq1_R-J51w.mp4/cDq1_R-J51w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cDq1_R-J51w.m3u8/cDq1_R-J51w.m3u8"}, "duration": 299, "id": "cDq1_R-J51w", "title": "Components of attitudes", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/theories-of-attitude-and-behavior-change/components-of-attitude/", "slug": "components-of-attitude", "kind": "Video", "video_id": "cDq1_R-J51w", "keywords": "", "youtube_id": "cDq1_R-J51w", "readable_id": "components-of-attitude"}, "3NYhESueUfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3NYhESueUfE.mp4/3NYhESueUfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3NYhESueUfE.mp4/3NYhESueUfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3NYhESueUfE.m3u8/3NYhESueUfE.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/bottle-rocket-apps/calvin-carter-4/", "duration": 116, "id": "3NYhESueUfE", "title": "Making money making apps", "format": "mp4", "description": "", "slug": "calvin-carter-4", "kind": "Video", "video_id": "3NYhESueUfE", "keywords": "", "youtube_id": "3NYhESueUfE", "readable_id": "calvin-carter-4"}, "dN5XRW7T0cc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dN5XRW7T0cc.mp4/dN5XRW7T0cc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dN5XRW7T0cc.mp4/dN5XRW7T0cc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dN5XRW7T0cc.m3u8/dN5XRW7T0cc.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/part-2-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220/", "duration": 205, "id": "dN5XRW7T0cc", "title": "Cathedral of Notre Dame de Chartres (part 2)", "format": "mp4", "description": "Part 2: Cathedral of Notre Dame de Chartres, c.1145 and 1194-c.1220 This video (2 of 3), focuses on the cathedral's interior, its stained glass, nave, aisles, elevation, and choir Speakers: Dr. Beth Harris and Dr. Steven Zucker For more: http://smarthistory.org/Gothic.html", "slug": "part-2-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220", "kind": "Video", "video_id": "dN5XRW7T0cc", "keywords": "", "youtube_id": "dN5XRW7T0cc", "readable_id": "part-2-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220"}, "VQniy8iq9EQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VQniy8iq9EQ.mp4/VQniy8iq9EQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VQniy8iq9EQ.mp4/VQniy8iq9EQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VQniy8iq9EQ.m3u8/VQniy8iq9EQ.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/sir-edward-coley-burne-jones-the-golden-stairs-1880/", "duration": 191, "id": "VQniy8iq9EQ", "title": "Burne-Jones, The Golden Stairs", "format": "mp4", "description": "Sir Edward Coley Burne-Jones, The Golden Stairs, 1880, oil on canvas\n2692 x 1168 mm (Tate Britain, London)", "slug": "sir-edward-coley-burne-jones-the-golden-stairs-1880", "kind": "Video", "video_id": "VQniy8iq9EQ", "keywords": "Burne-Jones, Golden Stairs, Pre-Raphaelite, Music, Aesthetic movement, Khan Academy, smarthistory, art history, Google Art Project, OER, Tate Britain, London", "youtube_id": "VQniy8iq9EQ", "readable_id": "sir-edward-coley-burne-jones-the-golden-stairs-1880"}, "DRg2VCo8lP0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DRg2VCo8lP0.mp4/DRg2VCo8lP0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DRg2VCo8lP0.mp4/DRg2VCo8lP0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DRg2VCo8lP0.m3u8/DRg2VCo8lP0.m3u8"}, "path": "khan/math/pre-algebra/measurement/area-basics/rectangle-area-as-product-of-dimensions-same-as-counting-unit-squares/", "duration": 320, "id": "DRg2VCo8lP0", "title": "Rectangle area as product of dimensions same as counting unit squares", "format": "mp4", "description": "Use unit squares to see why multiplying side-lengths can also find the area of rectangles. \u00a0\u00a0", "slug": "rectangle-area-as-product-of-dimensions-same-as-counting-unit-squares", "kind": "Video", "video_id": "DRg2VCo8lP0", "keywords": "", "youtube_id": "DRg2VCo8lP0", "readable_id": "rectangle-area-as-product-of-dimensions-same-as-counting-unit-squares"}, "INqaHHZGt8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/INqaHHZGt8w.mp4/INqaHHZGt8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/INqaHHZGt8w.mp4/INqaHHZGt8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/INqaHHZGt8w.m3u8/INqaHHZGt8w.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/copy-of-cc-6th-coordinate-plane/reflecting-points-exercise/", "duration": 215, "id": "INqaHHZGt8w", "title": "Coordinate plane: reflecting points", "format": "mp4", "description": "Just like looking at a mirror image of yourself, but flipped....a reflection point is the mirror point on the opposite axis. Watch this tutorial and reflect :)", "slug": "reflecting-points-exercise", "kind": "Video", "video_id": "INqaHHZGt8w", "keywords": "", "youtube_id": "INqaHHZGt8w", "readable_id": "reflecting-points-exercise"}, "8r8Vp_1iB4k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8r8Vp_1iB4k.mp4/8r8Vp_1iB4k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8r8Vp_1iB4k.mp4/8r8Vp_1iB4k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8r8Vp_1iB4k.m3u8/8r8Vp_1iB4k.m3u8"}, "duration": 437, "id": "8r8Vp_1iB4k", "title": "Slope of a line secant to a curve", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/secant-line-slope-tangent/slope-of-a-line-secant-to-a-curve/", "slug": "slope-of-a-line-secant-to-a-curve", "kind": "Video", "video_id": "8r8Vp_1iB4k", "keywords": "", "youtube_id": "8r8Vp_1iB4k", "readable_id": "slope-of-a-line-secant-to-a-curve"}, "cdxMX-gajac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cdxMX-gajac.mp4/cdxMX-gajac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cdxMX-gajac.mp4/cdxMX-gajac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cdxMX-gajac.m3u8/cdxMX-gajac.m3u8"}, "path": "khan/partner-content/cas-biodiversity/how-is-biodiversity-studied/biodiversity-fieldwork/biodiversity-expeditions-field-methods/", "duration": 648, "id": "cdxMX-gajac", "title": "Field Methods for Documenting Biodiversity", "format": "mp4", "description": "", "slug": "biodiversity-expeditions-field-methods", "kind": "Video", "video_id": "cdxMX-gajac", "keywords": "", "youtube_id": "cdxMX-gajac", "readable_id": "biodiversity-expeditions-field-methods"}, "X1E7I7_r3Cw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X1E7I7_r3Cw.mp4/X1E7I7_r3Cw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X1E7I7_r3Cw.mp4/X1E7I7_r3Cw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X1E7I7_r3Cw.m3u8/X1E7I7_r3Cw.m3u8"}, "duration": 530, "id": "X1E7I7_r3Cw", "title": "What was up with Pythagoras?", "format": "mp4", "description": "Pythagoras had a problem with beans and irrationality. What really happened? I don't know! The square root of two is irrational, and beans are delicious.", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/what-was-up-with-pythagoras/", "slug": "what-was-up-with-pythagoras", "kind": "Video", "video_id": "X1E7I7_r3Cw", "keywords": "pythagoras, pythagoreans, sqrt 2, square root, irrational numbers, rational numbers, ratio, mathematics, numbers, proof", "youtube_id": "X1E7I7_r3Cw", "readable_id": "what-was-up-with-pythagoras"}, "j_s5p0mLZ7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j_s5p0mLZ7s.mp4/j_s5p0mLZ7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j_s5p0mLZ7s.mp4/j_s5p0mLZ7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j_s5p0mLZ7s.m3u8/j_s5p0mLZ7s.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/shock-hemodynamics/", "duration": 460, "id": "j_s5p0mLZ7s", "title": "Shock - hemodynamics", "format": "mp4", "description": "", "slug": "shock-hemodynamics", "kind": "Video", "video_id": "j_s5p0mLZ7s", "keywords": "", "youtube_id": "j_s5p0mLZ7s", "readable_id": "shock-hemodynamics"}, "rccqylTloMs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rccqylTloMs.mp4/rccqylTloMs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rccqylTloMs.mp4/rccqylTloMs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rccqylTloMs.m3u8/rccqylTloMs.m3u8"}, "path": "khan/math/differential-calculus/limits_topic/calculus-estimating-limits-graph/2-sided-limit-from-graph/", "duration": 166, "id": "rccqylTloMs", "title": "Two-sided limit from graph", "format": "mp4", "description": "", "slug": "2-sided-limit-from-graph", "kind": "Video", "video_id": "rccqylTloMs", "keywords": "", "youtube_id": "rccqylTloMs", "readable_id": "2-sided-limit-from-graph"}, "QzDO44oZWtE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QzDO44oZWtE.mp4/QzDO44oZWtE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QzDO44oZWtE.mp4/QzDO44oZWtE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QzDO44oZWtE.m3u8/QzDO44oZWtE.m3u8"}, "duration": 685, "id": "QzDO44oZWtE", "title": "Bitcoin: Transaction block chains", "format": "mp4", "description": "The mechanics of a bitcoin transaction block chain, which is a construct that is generated by bitcoin miners and functions as a global ledger for recording and validating bitcoins.", "path": "bitcoin-transaction-block-chains/", "slug": "bitcoin-transaction-block-chains", "kind": "Video", "video_id": "QzDO44oZWtE", "keywords": "bitcoin, currency", "youtube_id": "QzDO44oZWtE", "readable_id": "bitcoin-transaction-block-chains"}, "lWDtFHDVqqk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lWDtFHDVqqk.mp4/lWDtFHDVqqk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lWDtFHDVqqk.mp4/lWDtFHDVqqk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lWDtFHDVqqk.m3u8/lWDtFHDVqqk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-at-rest/fluids-part-2/", "duration": 612, "id": "lWDtFHDVqqk", "title": "Fluids (part 2)", "format": "mp4", "description": "Pressure and Pascal's Principal.", "slug": "fluids-part-2", "kind": "Video", "video_id": "lWDtFHDVqqk", "keywords": "physics, chemistry, pascal's, pressure, work, fluid, liquid", "youtube_id": "lWDtFHDVqqk", "readable_id": "fluids-part-2"}, "QEA30X4ysvg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QEA30X4ysvg.mp4/QEA30X4ysvg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QEA30X4ysvg.mp4/QEA30X4ysvg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QEA30X4ysvg.m3u8/QEA30X4ysvg.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/high-renaissance1/raphael-galatea-c-1513/", "duration": 263, "id": "QEA30X4ysvg", "title": "Raphael, Galatea", "format": "mp4", "description": "Raphael, Galatea, c. 1513, fresco, Villa Farnesina, Rome, 9' 8\" x 7' 5\"", "slug": "raphael-galatea-c-1513", "kind": "Video", "video_id": "QEA30X4ysvg", "keywords": "art history, Raphael (Painter), khan academy, Smarthistory, Villa Farnesina, Rome, Renaissance", "youtube_id": "QEA30X4ysvg", "readable_id": "raphael-galatea-c-1513"}, "fy_muPF0390": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fy_muPF0390.mp4/fy_muPF0390.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fy_muPF0390.mp4/fy_muPF0390.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fy_muPF0390.m3u8/fy_muPF0390.m3u8"}, "duration": 685, "id": "fy_muPF0390", "title": "Blood pressure changes over time", "format": "mp4", "description": "See how increasing resistance in the blood vessels can cause blood pressure to rise over time. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/blood-pressure-changes-over-time/", "slug": "blood-pressure-changes-over-time", "kind": "Video", "video_id": "fy_muPF0390", "keywords": "", "youtube_id": "fy_muPF0390", "readable_id": "blood-pressure-changes-over-time"}, "ljROszF_rqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ljROszF_rqs.mp4/ljROszF_rqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ljROszF_rqs.mp4/ljROszF_rqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ljROszF_rqs.m3u8/ljROszF_rqs.m3u8"}, "duration": 322, "id": "ljROszF_rqs", "title": "Linear function example: spending money", "format": "mp4", "description": "Application problem with graph", "path": "application-problem-with-graph/", "slug": "application-problem-with-graph", "kind": "Video", "video_id": "ljROszF_rqs", "keywords": "u13_l1_t2_we4, Application, problem, with, graph, CC_8_EE_7, CC_8_F_1, CC_8_F_4, CC_8_F_5", "youtube_id": "ljROszF_rqs", "readable_id": "application-problem-with-graph"}, "52ZlXsFJULI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/52ZlXsFJULI.mp4/52ZlXsFJULI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/52ZlXsFJULI.mp4/52ZlXsFJULI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/52ZlXsFJULI.m3u8/52ZlXsFJULI.m3u8"}, "duration": 590, "id": "52ZlXsFJULI", "title": "Adding and subtracting fractions", "format": "mp4", "description": "How to add and subtract fractions.", "path": "khan/math/pre-algebra/fractions-pre-alg/fractions-unlike-denom-pre-alg/adding-and-subtracting-fractions/", "slug": "adding-and-subtracting-fractions", "kind": "Video", "video_id": "52ZlXsFJULI", "keywords": "Math, fractions, adding, subtracting, CC_4_MD_2, CC_4_NF_3_a, CC_4_NF_3_b, CC_4_NF_3_d, CC_5_NF_1, CC_5_NF_2, CC_7_NS_1, CC_7_NS_1_d", "youtube_id": "52ZlXsFJULI", "readable_id": "adding-and-subtracting-fractions"}, "OnlHXSBv0M4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OnlHXSBv0M4.mp4/OnlHXSBv0M4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OnlHXSBv0M4.mp4/OnlHXSBv0M4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OnlHXSBv0M4.m3u8/OnlHXSBv0M4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/diagnosis-of-pregnancy/", "duration": 719, "id": "OnlHXSBv0M4", "title": "Diagnosis of pregnancy", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diagnosis-of-pregnancy", "kind": "Video", "video_id": "OnlHXSBv0M4", "keywords": "", "youtube_id": "OnlHXSBv0M4", "readable_id": "diagnosis-of-pregnancy"}, "DRz9B6SHWQ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DRz9B6SHWQ4.mp4/DRz9B6SHWQ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DRz9B6SHWQ4.mp4/DRz9B6SHWQ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DRz9B6SHWQ4.m3u8/DRz9B6SHWQ4.m3u8"}, "duration": 187, "id": "DRz9B6SHWQ4", "title": "Prototype board", "format": "mp4", "description": "In this video we attach Bit-zee's bread board", "path": "khan/science/discoveries-projects/robots/bit-zee/attaching-bit-zee-s-prototype-board/", "slug": "attaching-bit-zee-s-prototype-board", "kind": "Video", "video_id": "DRz9B6SHWQ4", "keywords": "bread board, prototype board, connections, bit-zee", "youtube_id": "DRz9B6SHWQ4", "readable_id": "attaching-bit-zee-s-prototype-board"}, "XOxsjdB4-ZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XOxsjdB4-ZQ.mp4/XOxsjdB4-ZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XOxsjdB4-ZQ.mp4/XOxsjdB4-ZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XOxsjdB4-ZQ.m3u8/XOxsjdB4-ZQ.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-levels/genetic/genes-and-biodiversity/", "duration": 401, "id": "XOxsjdB4-ZQ", "title": "Genes and biodiversity", "format": "mp4", "description": "How does the gene pool contribute to biodiversity? Learn how\u00a0genetic diversity within populations contributes to species survival.\u00a0", "slug": "genes-and-biodiversity", "kind": "Video", "video_id": "XOxsjdB4-ZQ", "keywords": "", "youtube_id": "XOxsjdB4-ZQ", "readable_id": "genes-and-biodiversity"}, "KuSQHz9vAD8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KuSQHz9vAD8.mp4/KuSQHz9vAD8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KuSQHz9vAD8.mp4/KuSQHz9vAD8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KuSQHz9vAD8.m3u8/KuSQHz9vAD8.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-reflections/drawing-line-of-reflection/", "duration": 148, "id": "KuSQHz9vAD8", "title": "Drawing line of reflection", "format": "mp4", "description": "Drawing line of reflection", "slug": "drawing-line-of-reflection", "kind": "Video", "video_id": "KuSQHz9vAD8", "keywords": "", "youtube_id": "KuSQHz9vAD8", "readable_id": "drawing-line-of-reflection"}, "auQU-9KNG74": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/auQU-9KNG74.mp4/auQU-9KNG74.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/auQU-9KNG74.mp4/auQU-9KNG74.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/auQU-9KNG74.m3u8/auQU-9KNG74.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/factoring-simple-expressions/factoring-and-the-distributive-property/", "duration": 185, "id": "auQU-9KNG74", "title": "Factoring and the distributive property", "format": "mp4", "description": "Factoring and the Distributive Property", "slug": "factoring-and-the-distributive-property", "kind": "Video", "video_id": "auQU-9KNG74", "keywords": "U09_L1_T1_we1, Factoring, and, the, Distributive, Property, CC_8_EE_7_b, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "auQU-9KNG74", "readable_id": "factoring-and-the-distributive-property"}, "oipQBY7F4YY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oipQBY7F4YY.mp4/oipQBY7F4YY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oipQBY7F4YY.mp4/oipQBY7F4YY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oipQBY7F4YY.m3u8/oipQBY7F4YY.m3u8"}, "duration": 1021, "id": "oipQBY7F4YY", "title": "Salman Khan at Rice University's 2012 commencement", "format": "mp4", "description": "Rice commencement speaker Salman Khan's address to the graduates focused on contributions of a different kind: He urged the students to do everything they can to \"increase the net happiness in the world.\"Khan is the founder of the Khan Academy, a free online education platform and not-for-profit organization that has made waves in the field of education. In 2004, Khan's online tutorials for a young cousin gained a wider audience, and five years later he turned his collection of free educational videos into the online Khan Academy. Today, his more than 3,200 online tutorials attract 6 million viewers every month, and Time magazine recently named him one of the world's 100 most influential people.For more: http://news.rice.edu/2012/05/12/khan-urges-graduates-to-increase-the-positivity-in-the-world/", "path": "salman-khan-at-rice-university-s-2012-commencement/", "slug": "salman-khan-at-rice-university-s-2012-commencement", "kind": "Video", "video_id": "oipQBY7F4YY", "keywords": "Salman Khan (Film Actor), Salman Khan, Graduation (Field Of Study), College, University, Student, School, Campus, Education, Rice University, Houston, Texas, Commencement, Rice, Students, Khan Academy, marquee", "youtube_id": "oipQBY7F4YY", "readable_id": "salman-khan-at-rice-university-s-2012-commencement"}, "GZx3U0dbASg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GZx3U0dbASg.mp4/GZx3U0dbASg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GZx3U0dbASg.mp4/GZx3U0dbASg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GZx3U0dbASg.m3u8/GZx3U0dbASg.m3u8"}, "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/scale-earth-galaxy-tutorial/scale-of-earth-and-sun/", "duration": 571, "id": "GZx3U0dbASg", "title": "Scale of earth and sun", "format": "mp4", "description": "Scale of Earth and Sun", "slug": "scale-of-earth-and-sun", "kind": "Video", "video_id": "GZx3U0dbASg", "keywords": "Scale, of, Earth, and, Sun", "youtube_id": "GZx3U0dbASg", "readable_id": "scale-of-earth-and-sun"}, "slIX9EDcHgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/slIX9EDcHgE.mp4/slIX9EDcHgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/slIX9EDcHgE.mp4/slIX9EDcHgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/slIX9EDcHgE.m3u8/slIX9EDcHgE.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/subtracting-2-digit-numbers-without-regrouping/", "duration": 156, "id": "slIX9EDcHgE", "title": "Subtracting two-digit numbers without regrouping", "format": "mp4", "description": "Learn how to subtract 23 from 65 by thinking about tens and ones.", "slug": "subtracting-2-digit-numbers-without-regrouping", "kind": "Video", "video_id": "slIX9EDcHgE", "keywords": "", "youtube_id": "slIX9EDcHgE", "readable_id": "subtracting-2-digit-numbers-without-regrouping"}, "N8h45mDI80s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N8h45mDI80s.mp4/N8h45mDI80s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N8h45mDI80s.mp4/N8h45mDI80s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N8h45mDI80s.m3u8/N8h45mDI80s.m3u8"}, "duration": 184, "id": "N8h45mDI80s", "title": "Call option as leverage", "format": "mp4", "description": "Call Option as Leverage", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/call-option-as-leverage/", "slug": "call-option-as-leverage", "kind": "Video", "video_id": "N8h45mDI80s", "keywords": "Call, Option, as, Leverage", "youtube_id": "N8h45mDI80s", "readable_id": "call-option-as-leverage"}, "jFazrvLodrA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jFazrvLodrA.mp4/jFazrvLodrA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jFazrvLodrA.mp4/jFazrvLodrA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jFazrvLodrA.m3u8/jFazrvLodrA.m3u8"}, "duration": 248, "id": "jFazrvLodrA", "title": "Connection between even and odd numbers and functions", "format": "mp4", "description": "A possible reason why even functions are called \"even\" and odd functions are called \"odd\"", "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/connection-between-even-and-odd-numbers-and-functions/", "slug": "connection-between-even-and-odd-numbers-and-functions", "kind": "Video", "video_id": "jFazrvLodrA", "keywords": "even, odd, functions, CC_39336_F-BF_3", "youtube_id": "jFazrvLodrA", "readable_id": "connection-between-even-and-odd-numbers-and-functions"}, "LJqNdG6Y2cM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LJqNdG6Y2cM.mp4/LJqNdG6Y2cM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LJqNdG6Y2cM.mp4/LJqNdG6Y2cM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LJqNdG6Y2cM.m3u8/LJqNdG6Y2cM.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/integration_by_parts/integration-by-parts-of-e-x-cos-x-1/", "duration": 437, "id": "LJqNdG6Y2cM", "title": "Integration by parts of (e^x)(cos x)", "format": "mp4", "description": "", "slug": "integration-by-parts-of-e-x-cos-x-1", "kind": "Video", "video_id": "LJqNdG6Y2cM", "keywords": "", "youtube_id": "LJqNdG6Y2cM", "readable_id": "integration-by-parts-of-e-x-cos-x-1"}, "q3qvkZxhchE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q3qvkZxhchE.mp4/q3qvkZxhchE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q3qvkZxhchE.mp4/q3qvkZxhchE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q3qvkZxhchE.m3u8/q3qvkZxhchE.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/same-integration-bounds/", "duration": 151, "id": "q3qvkZxhchE", "title": "Definite integral from and to same point", "format": "mp4", "description": "", "slug": "same-integration-bounds", "kind": "Video", "video_id": "q3qvkZxhchE", "keywords": "", "youtube_id": "q3qvkZxhchE", "readable_id": "same-integration-bounds"}, "R-NeYKSEqns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R-NeYKSEqns.mp4/R-NeYKSEqns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R-NeYKSEqns.mp4/R-NeYKSEqns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R-NeYKSEqns.m3u8/R-NeYKSEqns.m3u8"}, "path": "khan/math/probability/independent-dependent-probability/dependent_probability/independent-dependent-probability/", "duration": 408, "id": "R-NeYKSEqns", "title": "Analyzing event probability for independence", "format": "mp4", "description": "", "slug": "independent-dependent-probability", "kind": "Video", "video_id": "R-NeYKSEqns", "keywords": "", "youtube_id": "R-NeYKSEqns", "readable_id": "independent-dependent-probability"}, "1t42z5U2uoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1t42z5U2uoc.mp4/1t42z5U2uoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1t42z5U2uoc.mp4/1t42z5U2uoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1t42z5U2uoc.m3u8/1t42z5U2uoc.m3u8"}, "duration": 219, "id": "1t42z5U2uoc", "title": "Futures margin mechanics", "format": "mp4", "description": "Understanding the mechanics of margin for futures. Initial and maintenance margin", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/futures-margin-mechanics/", "slug": "futures-margin-mechanics", "kind": "Video", "video_id": "1t42z5U2uoc", "keywords": "futures, margin, initial, maintenance, call", "youtube_id": "1t42z5U2uoc", "readable_id": "futures-margin-mechanics"}, "5K8U9QOj_TE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5K8U9QOj_TE.mp4/5K8U9QOj_TE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5K8U9QOj_TE.mp4/5K8U9QOj_TE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5K8U9QOj_TE.m3u8/5K8U9QOj_TE.m3u8"}, "duration": 77, "id": "5K8U9QOj_TE", "title": "Earth's magnetic field (how to measure)", "format": "mp4", "description": "How can we describe the strength of the Earth's magnetic field using a magnet and a compass? What does this tell us?", "path": "khan/science/discoveries-projects/discoveries/measure-magnets/earth-s-magnetic-field-/", "slug": "earth-s-magnetic-field-", "kind": "Video", "video_id": "5K8U9QOj_TE", "keywords": "Earth's magnetic field", "youtube_id": "5K8U9QOj_TE", "readable_id": "earth-s-magnetic-field-"}, "JuWYLAtz3Y4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JuWYLAtz3Y4.mp4/JuWYLAtz3Y4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JuWYLAtz3Y4.mp4/JuWYLAtz3Y4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JuWYLAtz3Y4.m3u8/JuWYLAtz3Y4.m3u8"}, "duration": 734, "id": "JuWYLAtz3Y4", "title": "Bitcoin: The money supply", "format": "mp4", "description": "The mechanisms by which the supply of bitcoins is controlled.", "path": "bitcoin-the-money-supply/", "slug": "bitcoin-the-money-supply", "kind": "Video", "video_id": "JuWYLAtz3Y4", "keywords": "bitcoin, currency", "youtube_id": "JuWYLAtz3Y4", "readable_id": "bitcoin-the-money-supply"}, "-83vVeSC2_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-83vVeSC2_g.mp4/-83vVeSC2_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-83vVeSC2_g.mp4/-83vVeSC2_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-83vVeSC2_g.m3u8/-83vVeSC2_g.m3u8"}, "duration": 342, "id": "-83vVeSC2_g", "title": "Functionalism", "format": "mp4", "description": "Functionalism is a theory of society that focuses on the structures that create the society and on how the society is able to remain stable. By Sydney Brown. ", "path": "khan/test-prep/mcat/society-and-culture/social-structures/functionalism/", "slug": "functionalism", "kind": "Video", "video_id": "-83vVeSC2_g", "keywords": "funtionalism", "youtube_id": "-83vVeSC2_g", "readable_id": "functionalism"}, "FsO3A07Abak": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FsO3A07Abak.mp4/FsO3A07Abak.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FsO3A07Abak.mp4/FsO3A07Abak.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FsO3A07Abak.m3u8/FsO3A07Abak.m3u8"}, "path": "khan/humanities/art-asia/art-japan/japanese-art/conserving-gan-ku-tiger-scroll/", "duration": 312, "id": "FsO3A07Abak", "title": "Conserving the Gan Ku Tiger scroll painting at the British Museum", "format": "mp4", "description": "\u00a9 Trustees of the British Museum", "slug": "conserving-gan-ku-tiger-scroll", "kind": "Video", "video_id": "FsO3A07Abak", "keywords": "", "youtube_id": "FsO3A07Abak", "readable_id": "conserving-gan-ku-tiger-scroll"}, "obmqVC07vRs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/obmqVC07vRs.mp4/obmqVC07vRs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/obmqVC07vRs.mp4/obmqVC07vRs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/obmqVC07vRs.m3u8/obmqVC07vRs.m3u8"}, "path": "khan/partner-content/big-history-project/acceleration/changing-economies/bhp-how-modern-world-created/", "duration": 682, "id": "obmqVC07vRs", "title": "How Was the Modern World Created?", "format": "mp4", "description": "Three forces of change gather momentum and help create the modern world, transforming the biosphere.", "slug": "bhp-how-modern-world-created", "kind": "Video", "video_id": "obmqVC07vRs", "keywords": "", "youtube_id": "obmqVC07vRs", "readable_id": "bhp-how-modern-world-created"}, "XLoLvz0r550": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XLoLvz0r550.mp4/XLoLvz0r550.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XLoLvz0r550.mp4/XLoLvz0r550.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XLoLvz0r550.m3u8/XLoLvz0r550.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/transport-of-sperm-via-erection-and-ejaculation/", "duration": 654, "id": "XLoLvz0r550", "title": "Transport of sperm via erection and ejaculation", "format": "mp4", "description": "", "slug": "transport-of-sperm-via-erection-and-ejaculation", "kind": "Video", "video_id": "XLoLvz0r550", "keywords": "", "youtube_id": "XLoLvz0r550", "readable_id": "transport-of-sperm-via-erection-and-ejaculation"}, "EAa3J_nDkoI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EAa3J_nDkoI.mp4/EAa3J_nDkoI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EAa3J_nDkoI.mp4/EAa3J_nDkoI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EAa3J_nDkoI.m3u8/EAa3J_nDkoI.m3u8"}, "duration": 344, "id": "EAa3J_nDkoI", "title": "Limit example 1", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/algebraic-limits/limit-example-1/", "slug": "limit-example-1", "kind": "Video", "video_id": "EAa3J_nDkoI", "keywords": "", "youtube_id": "EAa3J_nDkoI", "readable_id": "limit-example-1"}, "UhIwMAhZpCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UhIwMAhZpCo.mp4/UhIwMAhZpCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UhIwMAhZpCo.mp4/UhIwMAhZpCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UhIwMAhZpCo.m3u8/UhIwMAhZpCo.m3u8"}, "duration": 401, "id": "UhIwMAhZpCo", "title": "Lifecycle of massive stars", "format": "mp4", "description": "Lifecycle of Massive Stars", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/lifecycle-of-massive-stars/", "slug": "lifecycle-of-massive-stars", "kind": "Video", "video_id": "UhIwMAhZpCo", "keywords": "Lifecycle, of, Massive, Stars", "youtube_id": "UhIwMAhZpCo", "readable_id": "lifecycle-of-massive-stars"}, "aJy5_p_LAhQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aJy5_p_LAhQ.mp4/aJy5_p_LAhQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aJy5_p_LAhQ.mp4/aJy5_p_LAhQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aJy5_p_LAhQ.m3u8/aJy5_p_LAhQ.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/bottom-up-versus-top-down-processing/", "duration": 267, "id": "aJy5_p_LAhQ", "title": "Bottom-up vs. top-down processing", "format": "mp4", "description": "", "slug": "bottom-up-versus-top-down-processing", "kind": "Video", "video_id": "aJy5_p_LAhQ", "keywords": "", "youtube_id": "aJy5_p_LAhQ", "readable_id": "bottom-up-versus-top-down-processing"}, "NRS2ZJVVzOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NRS2ZJVVzOI.mp4/NRS2ZJVVzOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NRS2ZJVVzOI.mp4/NRS2ZJVVzOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NRS2ZJVVzOI.m3u8/NRS2ZJVVzOI.m3u8"}, "path": "khan/math/basic-geo/basic-geo-shapes/basic-geo-classifying-shapes/recog-triangles-example/", "duration": 143, "id": "NRS2ZJVVzOI", "title": "Categorizing triangles", "format": "mp4", "description": "Let's practice categorizing triangles in this example exercise.", "slug": "recog-triangles-example", "kind": "Video", "video_id": "NRS2ZJVVzOI", "keywords": "", "youtube_id": "NRS2ZJVVzOI", "readable_id": "recog-triangles-example"}, "VsW6NXZIUCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VsW6NXZIUCQ.mp4/VsW6NXZIUCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VsW6NXZIUCQ.mp4/VsW6NXZIUCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VsW6NXZIUCQ.m3u8/VsW6NXZIUCQ.m3u8"}, "path": "khan/science/health-and-medicine/lab-values/tonicity-comparing-2-solutions/", "duration": 663, "id": "VsW6NXZIUCQ", "title": "Tonicity - comparing 2 solutions", "format": "mp4", "description": "Find out how tonicity is determined by ions that don't move across membranes and how it affects the movement of water. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "tonicity-comparing-2-solutions", "kind": "Video", "video_id": "VsW6NXZIUCQ", "keywords": "", "youtube_id": "VsW6NXZIUCQ", "readable_id": "tonicity-comparing-2-solutions"}, "FfN8uQqLa_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FfN8uQqLa_c.mp4/FfN8uQqLa_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FfN8uQqLa_c.mp4/FfN8uQqLa_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FfN8uQqLa_c.m3u8/FfN8uQqLa_c.m3u8"}, "path": "khan/science/discoveries-projects/robots/all-about-spout/spout_light_circuit/", "duration": 32, "id": "FfN8uQqLa_c", "title": "Spout lights", "format": "mp4", "description": "", "slug": "spout_light_circuit", "kind": "Video", "video_id": "FfN8uQqLa_c", "keywords": "", "youtube_id": "FfN8uQqLa_c", "readable_id": "spout_light_circuit"}, "swFohliPgmQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/swFohliPgmQ.mp4/swFohliPgmQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/swFohliPgmQ.mp4/swFohliPgmQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/swFohliPgmQ.m3u8/swFohliPgmQ.m3u8"}, "duration": 254, "id": "swFohliPgmQ", "title": "Systems of nonlinear equations 3", "format": "mp4", "description": "", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/systems-of-nonlinear-equations-3/", "slug": "systems-of-nonlinear-equations-3", "kind": "Video", "video_id": "swFohliPgmQ", "keywords": "", "youtube_id": "swFohliPgmQ", "readable_id": "systems-of-nonlinear-equations-3"}, "ONBJo7dXJm8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ONBJo7dXJm8.mp4/ONBJo7dXJm8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ONBJo7dXJm8.mp4/ONBJo7dXJm8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ONBJo7dXJm8.m3u8/ONBJo7dXJm8.m3u8"}, "path": "khan/science/chemistry/chemical-equilibrium/equilibrium-constant/keq-intuition-mathy-and-not-necessary-to-progress/", "duration": 772, "id": "ONBJo7dXJm8", "title": "Keq intuition (mathy and not necessary to progress)", "format": "mp4", "description": "A probabilistic look at how molecules react to develop the intuition behind the equilibrium constant formula.", "slug": "keq-intuition-mathy-and-not-necessary-to-progress", "kind": "Video", "video_id": "ONBJo7dXJm8", "keywords": "chemistry", "youtube_id": "ONBJo7dXJm8", "readable_id": "keq-intuition-mathy-and-not-necessary-to-progress"}, "RgklPQ8rbkg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RgklPQ8rbkg.mp4/RgklPQ8rbkg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RgklPQ8rbkg.mp4/RgklPQ8rbkg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RgklPQ8rbkg.m3u8/RgklPQ8rbkg.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/binary-addition/", "duration": 168, "id": "RgklPQ8rbkg", "title": "Adding in binary", "format": "mp4", "description": "", "slug": "binary-addition", "kind": "Video", "video_id": "RgklPQ8rbkg", "keywords": "", "youtube_id": "RgklPQ8rbkg", "readable_id": "binary-addition"}, "2ZgBJxT9pbU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2ZgBJxT9pbU.mp4/2ZgBJxT9pbU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2ZgBJxT9pbU.mp4/2ZgBJxT9pbU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2ZgBJxT9pbU.m3u8/2ZgBJxT9pbU.m3u8"}, "duration": 703, "id": "2ZgBJxT9pbU", "title": "Impact velocity from given height", "format": "mp4", "description": "Determining how fast something will be traveling upon impact when it is released from a given height", "path": "khan/science/physics/one-dimensional-motion/kinematic_formulas/impact-velocity-from-given-height/", "slug": "impact-velocity-from-given-height", "kind": "Video", "video_id": "2ZgBJxT9pbU", "keywords": "projectile, motion", "youtube_id": "2ZgBJxT9pbU", "readable_id": "impact-velocity-from-given-height"}, "ZF_cZ-GX9PI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZF_cZ-GX9PI.mp4/ZF_cZ-GX9PI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZF_cZ-GX9PI.mp4/ZF_cZ-GX9PI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZF_cZ-GX9PI.m3u8/ZF_cZ-GX9PI.m3u8"}, "duration": 161, "id": "ZF_cZ-GX9PI", "title": "Compound inequalities 4", "format": "mp4", "description": "Compound Inequalities 4", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/compound-inequalities-4/", "slug": "compound-inequalities-4", "kind": "Video", "video_id": "ZF_cZ-GX9PI", "keywords": "u10_l3_t1_we4, Compound, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "ZF_cZ-GX9PI", "readable_id": "compound-inequalities-4"}, "jiJdNWzETSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jiJdNWzETSk.mp4/jiJdNWzETSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jiJdNWzETSk.mp4/jiJdNWzETSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jiJdNWzETSk.m3u8/jiJdNWzETSk.m3u8"}, "duration": 543, "id": "jiJdNWzETSk", "title": "Naming alkyl halides", "format": "mp4", "description": "Naming Alkyl Halides", "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-sal/naming-alkyl-halides/", "slug": "naming-alkyl-halides", "kind": "Video", "video_id": "jiJdNWzETSk", "keywords": "Naming, Alkyl, Halides", "youtube_id": "jiJdNWzETSk", "readable_id": "naming-alkyl-halides"}, "5GOhM3jq9Fc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5GOhM3jq9Fc.mp4/5GOhM3jq9Fc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5GOhM3jq9Fc.mp4/5GOhM3jq9Fc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5GOhM3jq9Fc.m3u8/5GOhM3jq9Fc.m3u8"}, "duration": 259, "id": "5GOhM3jq9Fc", "title": "Average height of a building's floor", "format": "mp4", "description": "Use a picture and understanding of multiplcation to solve a division word problem. \u00a0Watch out for unnecessary information.", "path": "average-height-of-a-building-s-floor/", "slug": "average-height-of-a-building-s-floor", "kind": "Video", "video_id": "5GOhM3jq9Fc", "keywords": "", "youtube_id": "5GOhM3jq9Fc", "readable_id": "average-height-of-a-building-s-floor"}, "BJSk1joCQsM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BJSk1joCQsM.mp4/BJSk1joCQsM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BJSk1joCQsM.mp4/BJSk1joCQsM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BJSk1joCQsM.m3u8/BJSk1joCQsM.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-area-circumference-volume/", "duration": 653, "id": "BJSk1joCQsM", "title": "CA Geometry: Area, circumference, volume", "format": "mp4", "description": "31-35, area, circumference and volume", "slug": "ca-geometry-area-circumference-volume", "kind": "Video", "video_id": "BJSk1joCQsM", "keywords": "geometry, area, circumference, volume", "youtube_id": "BJSk1joCQsM", "readable_id": "ca-geometry-area-circumference-volume"}, "HRuLhY0NAMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HRuLhY0NAMI.mp4/HRuLhY0NAMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HRuLhY0NAMI.mp4/HRuLhY0NAMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HRuLhY0NAMI.m3u8/HRuLhY0NAMI.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/dispersion/", "duration": 135, "id": "HRuLhY0NAMI", "title": "Dispersion", "format": "mp4", "description": "", "slug": "dispersion", "kind": "Video", "video_id": "HRuLhY0NAMI", "keywords": "MCAT", "youtube_id": "HRuLhY0NAMI", "readable_id": "dispersion"}, "EOiCa4i3oKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EOiCa4i3oKo.mp4/EOiCa4i3oKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EOiCa4i3oKo.mp4/EOiCa4i3oKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EOiCa4i3oKo.m3u8/EOiCa4i3oKo.m3u8"}, "duration": 31, "id": "EOiCa4i3oKo", "title": "Robot construction", "format": "mp4", "description": "Basic construction to get started", "path": "khan/science/discoveries-projects/lego-robotics/lego-antbot/lego-antbot-build/", "slug": "lego-antbot-build", "kind": "Video", "video_id": "EOiCa4i3oKo", "keywords": "", "youtube_id": "EOiCa4i3oKo", "readable_id": "lego-antbot-build"}, "rco7DMcy-oE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rco7DMcy-oE.mp4/rco7DMcy-oE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rco7DMcy-oE.mp4/rco7DMcy-oE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rco7DMcy-oE.m3u8/rco7DMcy-oE.m3u8"}, "duration": 205, "id": "rco7DMcy-oE", "title": "More rational exponents and exponent laws", "format": "mp4", "description": "More Rational Exponents and Exponent Laws", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/more-rational-exponents-and-exponent-laws/", "slug": "more-rational-exponents-and-exponent-laws", "kind": "Video", "video_id": "rco7DMcy-oE", "keywords": "u16_l1_t3_we4, More, Rational, Exponents, and, Exponent, Laws", "youtube_id": "rco7DMcy-oE", "readable_id": "more-rational-exponents-and-exponent-laws"}, "LG6H_8BU-f4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LG6H_8BU-f4.mp4/LG6H_8BU-f4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LG6H_8BU-f4.mp4/LG6H_8BU-f4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LG6H_8BU-f4.m3u8/LG6H_8BU-f4.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/factors-that-influence-obedience-and-conformity/", "duration": 465, "id": "LG6H_8BU-f4", "title": "Factors that influence obedience and conformity", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "factors-that-influence-obedience-and-conformity", "kind": "Video", "video_id": "LG6H_8BU-f4", "keywords": "", "youtube_id": "LG6H_8BU-f4", "readable_id": "factors-that-influence-obedience-and-conformity"}, "VBf3plXRonw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VBf3plXRonw.mp4/VBf3plXRonw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VBf3plXRonw.mp4/VBf3plXRonw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VBf3plXRonw.m3u8/VBf3plXRonw.m3u8"}, "path": "khan/test-prep/mcat/cells/prokaryotes-bacteria/bacterial-genetic-recombination/", "duration": 266, "id": "VBf3plXRonw", "title": "Bacterial genetic recombination", "format": "mp4", "description": "", "slug": "bacterial-genetic-recombination", "kind": "Video", "video_id": "VBf3plXRonw", "keywords": "", "youtube_id": "VBf3plXRonw", "readable_id": "bacterial-genetic-recombination"}, "fW1u-OFbA1M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fW1u-OFbA1M.mp4/fW1u-OFbA1M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fW1u-OFbA1M.mp4/fW1u-OFbA1M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fW1u-OFbA1M.m3u8/fW1u-OFbA1M.m3u8"}, "path": "khan/math/algebra/quadratics/features-of-quadratic-functions/modeling-mosquitos-with-quadratics/", "duration": 519, "id": "fW1u-OFbA1M", "title": "Modeling mosquitos with quadratics", "format": "mp4", "description": "", "slug": "modeling-mosquitos-with-quadratics", "kind": "Video", "video_id": "fW1u-OFbA1M", "keywords": "", "youtube_id": "fW1u-OFbA1M", "readable_id": "modeling-mosquitos-with-quadratics"}, "KrP-_4jsk8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KrP-_4jsk8o.mp4/KrP-_4jsk8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KrP-_4jsk8o.mp4/KrP-_4jsk8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KrP-_4jsk8o.m3u8/KrP-_4jsk8o.m3u8"}, "duration": 205, "id": "KrP-_4jsk8o", "title": "Reconsecrating the stupa", "format": "mp4", "description": "Mark Fenn, Associate Head of Conservation at the Asian Art Museum, gives a behind-the-scenes glimpse into the reconsecration of a stupa in the Asian Art Museum's collection.\u00a0", "path": "reconsecrating-the-stupa/", "slug": "reconsecrating-the-stupa", "kind": "Video", "video_id": "KrP-_4jsk8o", "keywords": "", "youtube_id": "KrP-_4jsk8o", "readable_id": "reconsecrating-the-stupa"}, "I9S5CvSqb5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I9S5CvSqb5A.mp4/I9S5CvSqb5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I9S5CvSqb5A.mp4/I9S5CvSqb5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I9S5CvSqb5A.m3u8/I9S5CvSqb5A.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-count-object-topic/how-many-objects-1/", "duration": 63, "id": "I9S5CvSqb5A", "title": "Counting whales, sheep, and flowers", "format": "mp4", "description": "Learn how to count animals. Animals in these pictures are organized neatly.", "slug": "how-many-objects-1", "kind": "Video", "video_id": "I9S5CvSqb5A", "keywords": "", "youtube_id": "I9S5CvSqb5A", "readable_id": "how-many-objects-1"}, "6n0yxfWNFR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6n0yxfWNFR4.mp4/6n0yxfWNFR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6n0yxfWNFR4.mp4/6n0yxfWNFR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6n0yxfWNFR4.m3u8/6n0yxfWNFR4.m3u8"}, "path": "khan/math/algebra/algebra-functions/average_rate_of_change/average-rate-of-change-when-function-defined-by-equation/", "duration": 304, "id": "6n0yxfWNFR4", "title": "Finding average rate of change from equation", "format": "mp4", "description": "", "slug": "average-rate-of-change-when-function-defined-by-equation", "kind": "Video", "video_id": "6n0yxfWNFR4", "keywords": "", "youtube_id": "6n0yxfWNFR4", "readable_id": "average-rate-of-change-when-function-defined-by-equation"}, "Oo2vGhVkvDo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oo2vGhVkvDo.mp4/Oo2vGhVkvDo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oo2vGhVkvDo.mp4/Oo2vGhVkvDo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oo2vGhVkvDo.m3u8/Oo2vGhVkvDo.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-subtract-negatives-pre-alg/negative-number-word-problems-1/", "duration": 262, "id": "Oo2vGhVkvDo", "title": "Negative number word problem", "format": "mp4", "description": "Use a number line to solve a word problem that includes a negative number.", "slug": "negative-number-word-problems-1", "kind": "Video", "video_id": "Oo2vGhVkvDo", "keywords": "", "youtube_id": "Oo2vGhVkvDo", "readable_id": "negative-number-word-problems-1"}, "6F32MMvcDNs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6F32MMvcDNs.mp4/6F32MMvcDNs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6F32MMvcDNs.mp4/6F32MMvcDNs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6F32MMvcDNs.m3u8/6F32MMvcDNs.m3u8"}, "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/spout-tail/", "duration": 511, "id": "6F32MMvcDNs", "title": "Spout antennae and tail", "format": "mp4", "description": "", "slug": "spout-tail", "kind": "Video", "video_id": "6F32MMvcDNs", "keywords": "", "youtube_id": "6F32MMvcDNs", "readable_id": "spout-tail"}, "P4DiY4DvvmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P4DiY4DvvmY.mp4/P4DiY4DvvmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P4DiY4DvvmY.mp4/P4DiY4DvvmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P4DiY4DvvmY.m3u8/P4DiY4DvvmY.m3u8"}, "duration": 423, "id": "P4DiY4DvvmY", "title": "Oxidation of alcohols (examples)", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/oxidation-of-alcohols-example/", "slug": "oxidation-of-alcohols-example", "kind": "Video", "video_id": "P4DiY4DvvmY", "keywords": "", "youtube_id": "P4DiY4DvvmY", "readable_id": "oxidation-of-alcohols-example"}, "GzTr-OnMI-E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GzTr-OnMI-E.mp4/GzTr-OnMI-E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GzTr-OnMI-E.mp4/GzTr-OnMI-E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GzTr-OnMI-E.m3u8/GzTr-OnMI-E.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/east-west-divan/", "duration": 240, "id": "GzTr-OnMI-E", "title": "East-West Divan at the Venice Biennale", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nThe Venice Biennale art fair is home to a number of national exhibitions as well as smaller shows, often representing people and places that wouldn't normally get a look in. Former Tate curator Jemima Montagu presents an exhibition of work by artists from Iran, Afghanistan, and Pakistan. She talks about the thriving visual culture of the region and misconceptions surrounding it.", "slug": "east-west-divan", "kind": "Video", "video_id": "GzTr-OnMI-E", "keywords": "Tate", "youtube_id": "GzTr-OnMI-E", "readable_id": "east-west-divan"}, "UV6mzD2Yc98": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UV6mzD2Yc98.mp4/UV6mzD2Yc98.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UV6mzD2Yc98.mp4/UV6mzD2Yc98.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UV6mzD2Yc98.m3u8/UV6mzD2Yc98.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-18-sound-of-sap/", "duration": 77, "id": "UV6mzD2Yc98", "title": "18 Sound of sap", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-18-sound-of-sap", "kind": "Video", "video_id": "UV6mzD2Yc98", "keywords": "", "youtube_id": "UV6mzD2Yc98", "readable_id": "sat-18-sound-of-sap"}, "kRGLC1Q9VCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kRGLC1Q9VCQ.mp4/kRGLC1Q9VCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kRGLC1Q9VCQ.mp4/kRGLC1Q9VCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kRGLC1Q9VCQ.m3u8/kRGLC1Q9VCQ.m3u8"}, "duration": 211, "id": "kRGLC1Q9VCQ", "title": "Shelby Harris' classroom in Kuna (2013)", "format": "mp4", "description": "", "path": "khan-academy-idaho-shelby-harris-kuna-id/", "slug": "khan-academy-idaho-shelby-harris-kuna-id", "kind": "Video", "video_id": "kRGLC1Q9VCQ", "keywords": "TEACH documentary, davis guggenheim, idaho, kuna, shelby harris", "youtube_id": "kRGLC1Q9VCQ", "readable_id": "khan-academy-idaho-shelby-harris-kuna-id"}, "XoEn1LfVoTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XoEn1LfVoTo.mp4/XoEn1LfVoTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XoEn1LfVoTo.mp4/XoEn1LfVoTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XoEn1LfVoTo.m3u8/XoEn1LfVoTo.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/equations-2/", "duration": 521, "id": "XoEn1LfVoTo", "title": "Solving a more complicated equation", "format": "mp4", "description": "This example demonstrates how we solve an equation expressed such: ax + b = c. It's a little more complicated than previous examples, but you can do it!", "slug": "equations-2", "kind": "Video", "video_id": "XoEn1LfVoTo", "keywords": "Equations, algebra, basic, CC_7_EE_1, CC_7_EE_4_a", "youtube_id": "XoEn1LfVoTo", "readable_id": "equations-2"}, "29P6bar7nHc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/29P6bar7nHc.mp4/29P6bar7nHc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/29P6bar7nHc.mp4/29P6bar7nHc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/29P6bar7nHc.m3u8/29P6bar7nHc.m3u8"}, "duration": 236, "id": "29P6bar7nHc", "title": "Comparing absolute values on number line", "format": "mp4", "description": "", "path": "comparing-absolute-values-on-number-line/", "slug": "comparing-absolute-values-on-number-line", "kind": "Video", "video_id": "29P6bar7nHc", "keywords": "", "youtube_id": "29P6bar7nHc", "readable_id": "comparing-absolute-values-on-number-line"}, "p0jCw2sqZgs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p0jCw2sqZgs.mp4/p0jCw2sqZgs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p0jCw2sqZgs.mp4/p0jCw2sqZgs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p0jCw2sqZgs.m3u8/p0jCw2sqZgs.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/understanding-multiplication-through-area-models/", "duration": 298, "id": "p0jCw2sqZgs", "title": "Multiplying: understanding by using area models", "format": "mp4", "description": "If you're like us, you're a visual learner. Seeing a multiplication problem visualized using an area model really helps. Check it out!", "slug": "understanding-multiplication-through-area-models", "kind": "Video", "video_id": "p0jCw2sqZgs", "keywords": "", "youtube_id": "p0jCw2sqZgs", "readable_id": "understanding-multiplication-through-area-models"}, "wQ34EIfd-5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wQ34EIfd-5A.mp4/wQ34EIfd-5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wQ34EIfd-5A.mp4/wQ34EIfd-5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wQ34EIfd-5A.m3u8/wQ34EIfd-5A.m3u8"}, "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-4-part-2/", "duration": 418, "id": "wQ34EIfd-5A", "title": "2003 AIME II problem 4 (part 2)", "format": "mp4", "description": "", "slug": "2003-aime-ii-problem-4-part-2", "kind": "Video", "video_id": "wQ34EIfd-5A", "keywords": "2003, AIME, II, Problem, (part, 2), Three, Dimensional, Geometry", "youtube_id": "wQ34EIfd-5A", "readable_id": "2003-aime-ii-problem-4-part-2"}, "8bXRar4YiYA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8bXRar4YiYA.mp4/8bXRar4YiYA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8bXRar4YiYA.mp4/8bXRar4YiYA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8bXRar4YiYA.m3u8/8bXRar4YiYA.m3u8"}, "path": "khan/science/organic-chemistry/stereochemistry-topic/optical-activity/optical-activity-ii-calculations/", "duration": 405, "id": "8bXRar4YiYA", "title": "Optical activity II: Calculations", "format": "mp4", "description": "", "slug": "optical-activity-ii-calculations", "kind": "Video", "video_id": "8bXRar4YiYA", "keywords": "", "youtube_id": "8bXRar4YiYA", "readable_id": "optical-activity-ii-calculations"}, "ZfMl8oAL2Rs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZfMl8oAL2Rs.mp4/ZfMl8oAL2Rs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZfMl8oAL2Rs.mp4/ZfMl8oAL2Rs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZfMl8oAL2Rs.m3u8/ZfMl8oAL2Rs.m3u8"}, "duration": 52, "id": "ZfMl8oAL2Rs", "title": "Foil leaf electroscope", "format": "mp4", "description": "Foil Leaf Electroscope. Aluminum leaves repel in the presence of a charged object", "path": "khan/science/discoveries-projects/discoveries/electrostatics/foil-leaf-electroscope/", "slug": "foil-leaf-electroscope", "kind": "Video", "video_id": "ZfMl8oAL2Rs", "keywords": "electroscope", "youtube_id": "ZfMl8oAL2Rs", "readable_id": "foil-leaf-electroscope"}, "ktAOsTe511k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ktAOsTe511k.mp4/ktAOsTe511k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ktAOsTe511k.mp4/ktAOsTe511k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ktAOsTe511k.m3u8/ktAOsTe511k.m3u8"}, "duration": 416, "id": "ktAOsTe511k", "title": "Making money from cows and ostriches", "format": "mp4", "description": "", "path": "khan/math/algebra/systems-of-eq-and-ineq/modeling-constraints/making-money-from-cows-and-ostriches/", "slug": "making-money-from-cows-and-ostriches", "kind": "Video", "video_id": "ktAOsTe511k", "keywords": "", "youtube_id": "ktAOsTe511k", "readable_id": "making-money-from-cows-and-ostriches"}, "QA2TBiIsdT0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QA2TBiIsdT0.mp4/QA2TBiIsdT0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QA2TBiIsdT0.mp4/QA2TBiIsdT0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QA2TBiIsdT0.m3u8/QA2TBiIsdT0.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/renting-v-buying/renting-vs-buying-a-home-part-2/", "duration": 549, "id": "QA2TBiIsdT0", "title": "Renting vs. buying a home (part 2)", "format": "mp4", "description": "Factoring in appreciation and depreciation into the rent vs. buy decision.", "slug": "renting-vs-buying-a-home-part-2", "kind": "Video", "video_id": "QA2TBiIsdT0", "keywords": "personal, finance, renting, buying, home, economics, interest, appreciation", "youtube_id": "QA2TBiIsdT0", "readable_id": "renting-vs-buying-a-home-part-2"}, "7BkcNLOf56w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7BkcNLOf56w.mp4/7BkcNLOf56w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7BkcNLOf56w.mp4/7BkcNLOf56w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7BkcNLOf56w.m3u8/7BkcNLOf56w.m3u8"}, "path": "khan/math/precalculus/prob_comb/dependent_events_precalc/dependent-probability-example-2/", "duration": 394, "id": "7BkcNLOf56w", "title": "Dependent probability example 2", "format": "mp4", "description": "It's important to practice these probability problems as they get more complex eventually. Take a stab on this one...with our help, of course.", "slug": "dependent-probability-example-2", "kind": "Video", "video_id": "7BkcNLOf56w", "keywords": "coin, unfair, CC_7_SP_5, CC_7_SP_6, CC_7_SP_7, CC_7_SP_7_b, CC_7_SP_8, CC_7_SP_8_a, CC_7_SP_8_b", "youtube_id": "7BkcNLOf56w", "readable_id": "dependent-probability-example-2"}, "qpbaglogObM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qpbaglogObM.mp4/qpbaglogObM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qpbaglogObM.mp4/qpbaglogObM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qpbaglogObM.m3u8/qpbaglogObM.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-statistics/using-mean-to-find-missing-value/", "duration": 303, "id": "qpbaglogObM", "title": "Using mean to find missing value", "format": "mp4", "description": "Can you find the value of a missing piece of data if you know the mean?", "slug": "using-mean-to-find-missing-value", "kind": "Video", "video_id": "qpbaglogObM", "keywords": "", "youtube_id": "qpbaglogObM", "readable_id": "using-mean-to-find-missing-value"}, "kO8-RPIkuLE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kO8-RPIkuLE.mp4/kO8-RPIkuLE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kO8-RPIkuLE.mp4/kO8-RPIkuLE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kO8-RPIkuLE.m3u8/kO8-RPIkuLE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/heart-attack-myocardial-infarct-diagnosis/", "duration": 645, "id": "kO8-RPIkuLE", "title": "Heart attack (myocardial infarct) diagnosis", "format": "mp4", "description": "", "slug": "heart-attack-myocardial-infarct-diagnosis", "kind": "Video", "video_id": "kO8-RPIkuLE", "keywords": "", "youtube_id": "kO8-RPIkuLE", "readable_id": "heart-attack-myocardial-infarct-diagnosis"}, "p_61XhXdlxI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p_61XhXdlxI.mp4/p_61XhXdlxI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p_61XhXdlxI.mp4/p_61XhXdlxI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p_61XhXdlxI.m3u8/p_61XhXdlxI.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-monomials/multiplying-and-dividing-monomials-1/", "duration": 112, "id": "p_61XhXdlxI", "title": "Multiplying and dividing monomials 1", "format": "mp4", "description": "Multiplying and Dividing Monomials 1", "slug": "multiplying-and-dividing-monomials-1", "kind": "Video", "video_id": "p_61XhXdlxI", "keywords": "U08_L1_T1_we1, Multiplying, and, Dividing, Monomials, CC_6_EE_1, CC_6_EE_2_c, CC_6_EE_7, CC_7_EE_4, CC_7_EE_4_a", "youtube_id": "p_61XhXdlxI", "readable_id": "multiplying-and-dividing-monomials-1"}, "Lz7mV3jz324": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lz7mV3jz324.mp4/Lz7mV3jz324.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lz7mV3jz324.mp4/Lz7mV3jz324.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lz7mV3jz324.m3u8/Lz7mV3jz324.m3u8"}, "duration": 153, "id": "Lz7mV3jz324", "title": "Room: 1910-1914", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Chris Stephens explores the period 1910-1914.\n\nLearn more about the art featured in this video:\n-\u00a0Henri Gaudier-Brzeska, Red Stone Dancer, 1913\n-\u00a0Sir Jacob Epstein, Female Figure in Flenite, 1913\n-\u00a0Christopher Richard Wynne Nevinson, The Arrival, 1913\n- Mabel Nicholson, Family, Group, 1911", "path": "room-1910-1914/", "slug": "room-1910-1914", "kind": "Video", "video_id": "Lz7mV3jz324", "keywords": "Tate", "youtube_id": "Lz7mV3jz324", "readable_id": "room-1910-1914"}, "RjzzgiUpaQY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RjzzgiUpaQY.mp4/RjzzgiUpaQY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RjzzgiUpaQY.mp4/RjzzgiUpaQY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RjzzgiUpaQY.m3u8/RjzzgiUpaQY.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/extranuclear-inheritance-2/", "duration": 834, "id": "RjzzgiUpaQY", "title": "Extranuclear inheritance 2", "format": "mp4", "description": "", "slug": "extranuclear-inheritance-2", "kind": "Video", "video_id": "RjzzgiUpaQY", "keywords": "", "youtube_id": "RjzzgiUpaQY", "readable_id": "extranuclear-inheritance-2"}, "m1ZTnl4CNQg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m1ZTnl4CNQg.mp4/m1ZTnl4CNQg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m1ZTnl4CNQg.mp4/m1ZTnl4CNQg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m1ZTnl4CNQg.m3u8/m1ZTnl4CNQg.m3u8"}, "path": "khan/math/geometry/basic-geometry/volume_tutorial/surface-area-from-net/", "duration": 259, "id": "m1ZTnl4CNQg", "title": "Finding surface area: nets of polyhedra", "format": "mp4", "description": "Now we shift our focus towards surface area (which is the sum of all the areas of all the shapes that cover the surface of the object). Let's apply it to the polyhedra net we learned about in the previous video. We'll walk you through it.", "slug": "surface-area-from-net", "kind": "Video", "video_id": "m1ZTnl4CNQg", "keywords": "", "youtube_id": "m1ZTnl4CNQg", "readable_id": "surface-area-from-net"}, "VjmFKle7xIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VjmFKle7xIw.mp4/VjmFKle7xIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VjmFKle7xIw.mp4/VjmFKle7xIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VjmFKle7xIw.m3u8/VjmFKle7xIw.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law-of-sines/", "duration": 358, "id": "VjmFKle7xIw", "title": "Law of sines", "format": "mp4", "description": "", "slug": "law-of-sines", "kind": "Video", "video_id": "VjmFKle7xIw", "keywords": "", "youtube_id": "VjmFKle7xIw", "readable_id": "law-of-sines"}, "0XSSPow5oAc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0XSSPow5oAc.mp4/0XSSPow5oAc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0XSSPow5oAc.mp4/0XSSPow5oAc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0XSSPow5oAc.m3u8/0XSSPow5oAc.m3u8"}, "duration": 662, "id": "0XSSPow5oAc", "title": "Chiral examples 1", "format": "mp4", "description": "Chiral Examples 1", "path": "khan/science/organic-chemistry/stereochemistry-topic/chirality-r-s-system/chiral-examples-1/", "slug": "chiral-examples-1", "kind": "Video", "video_id": "0XSSPow5oAc", "keywords": "Chiral, Examples", "youtube_id": "0XSSPow5oAc", "readable_id": "chiral-examples-1"}, "QhiVnFvshZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QhiVnFvshZg.mp4/QhiVnFvshZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QhiVnFvshZg.mp4/QhiVnFvshZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QhiVnFvshZg.m3u8/QhiVnFvshZg.m3u8"}, "duration": 897, "id": "QhiVnFvshZg", "title": "Circulatory system and the heart", "format": "mp4", "description": "Introduction to the circulatory system and the heart", "path": "khan/science/health-and-medicine/circulatory-system/circulatory-system-introduction/circulatory-system-and-the-heart/", "slug": "circulatory-system-and-the-heart", "kind": "Video", "video_id": "QhiVnFvshZg", "keywords": "heart, blood, vein, artery, pulmonary, atrium, ventricle", "youtube_id": "QhiVnFvshZg", "readable_id": "circulatory-system-and-the-heart"}, "lnJRkY0mZh4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lnJRkY0mZh4.mp4/lnJRkY0mZh4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lnJRkY0mZh4.mp4/lnJRkY0mZh4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lnJRkY0mZh4.m3u8/lnJRkY0mZh4.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/rococo/boucher-madame-de-pompadour-1750/", "duration": 186, "id": "lnJRkY0mZh4", "title": "Boucher, Madame de Pompadour", "format": "mp4", "description": "Fran\u00e7ois Boucher, Madame de Pompadour, oil on canvas, 1750 (extention of canvas and additional painting likely added by Boucher later, Fogg Museum", "slug": "boucher-madame-de-pompadour-1750", "kind": "Video", "video_id": "lnJRkY0mZh4", "keywords": "Smarthistory, Art, Art History, Fogg Art Museum, Boucher, Rococo, Louis XV", "youtube_id": "lnJRkY0mZh4", "readable_id": "boucher-madame-de-pompadour-1750"}, "4Y2cY5YGxI4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Y2cY5YGxI4.mp4/4Y2cY5YGxI4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Y2cY5YGxI4.mp4/4Y2cY5YGxI4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Y2cY5YGxI4.m3u8/4Y2cY5YGxI4.m3u8"}, "path": "khan/science/chemistry/chemical-reactions-stoichiome/empirical-molecular-formula/molecular-mass-percentage/", "duration": 539, "id": "4Y2cY5YGxI4", "title": "Molecular mass percentage", "format": "mp4", "description": "", "slug": "molecular-mass-percentage", "kind": "Video", "video_id": "4Y2cY5YGxI4", "keywords": "", "youtube_id": "4Y2cY5YGxI4", "readable_id": "molecular-mass-percentage"}, "iUQR0enP7RQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iUQR0enP7RQ.mp4/iUQR0enP7RQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iUQR0enP7RQ.mp4/iUQR0enP7RQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iUQR0enP7RQ.m3u8/iUQR0enP7RQ.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/inverse-matrix-part-1/", "duration": 854, "id": "iUQR0enP7RQ", "title": "Idea behind inverting a 2x2 matrix", "format": "mp4", "description": "What the inverse of a matrix is. Examples of inverting a 2x2 matrix.", "slug": "inverse-matrix-part-1", "kind": "Video", "video_id": "iUQR0enP7RQ", "keywords": "matrix, inverse, identity, inverting, matrices", "youtube_id": "iUQR0enP7RQ", "readable_id": "inverse-matrix-part-1"}, "GwycEivqYYI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GwycEivqYYI.mp4/GwycEivqYYI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GwycEivqYYI.mp4/GwycEivqYYI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GwycEivqYYI.m3u8/GwycEivqYYI.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/multistep-word-problems-tut/multistep-word-problems-example-1/", "duration": 220, "id": "GwycEivqYYI", "title": "Multi-step word problem with decimals and subtraction", "format": "mp4", "description": "First visualize this word problem then use subtraction and multiplication of decimals and fractions to get at the answer.", "slug": "multistep-word-problems-example-1", "kind": "Video", "video_id": "GwycEivqYYI", "keywords": "", "youtube_id": "GwycEivqYYI", "readable_id": "multistep-word-problems-example-1"}, "BSQr7Ii_vbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BSQr7Ii_vbY.mp4/BSQr7Ii_vbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BSQr7Ii_vbY.mp4/BSQr7Ii_vbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BSQr7Ii_vbY.m3u8/BSQr7Ii_vbY.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/morisot-the-mother-and-sister-of-the-artist-c-1869-1870/", "duration": 216, "id": "BSQr7Ii_vbY", "title": "Morisot, The Mother and Sister of the Artist", "format": "mp4", "description": "Berthe Morisot, The Mother and Sister of the Artist, c. 1869/1870, oil on canvas\n39 3/4 x 32 3/16 in. (101 x 81.8 cm), (National Gallery of Art)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker\n\nhttp://smarthistory.org/morisots-mother-and-sister-of-the-artist.html", "slug": "morisot-the-mother-and-sister-of-the-artist-c-1869-1870", "kind": "Video", "video_id": "BSQr7Ii_vbY", "keywords": "Morisot, Impressionism, Berthe Morisot, Smarthistory, Art History, National Gallery", "youtube_id": "BSQr7Ii_vbY", "readable_id": "morisot-the-mother-and-sister-of-the-artist-c-1869-1870"}, "D-EIh7NJvtQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D-EIh7NJvtQ.mp4/D-EIh7NJvtQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D-EIh7NJvtQ.mp4/D-EIh7NJvtQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D-EIh7NJvtQ.m3u8/D-EIh7NJvtQ.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/angle_basics/angle-measurement-and-circle-arcs/", "duration": 457, "id": "D-EIh7NJvtQ", "title": "Angle measurement and circle arcs", "format": "mp4", "description": "Did you know that the measurement of an angle is realted to the arc of a circle? Yes, indeed! Watch.", "slug": "angle-measurement-and-circle-arcs", "kind": "Video", "video_id": "D-EIh7NJvtQ", "keywords": "", "youtube_id": "D-EIh7NJvtQ", "readable_id": "angle-measurement-and-circle-arcs"}, "QX2YLR09Q78": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QX2YLR09Q78.mp4/QX2YLR09Q78.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QX2YLR09Q78.mp4/QX2YLR09Q78.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QX2YLR09Q78.m3u8/QX2YLR09Q78.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/fluids-part-9/", "duration": 609, "id": "QX2YLR09Q78", "title": "Fluids (part 9)", "format": "mp4", "description": "Second part of the Bernoulli's Equation proof. Beginning of a problem that uses the equation.", "slug": "fluids-part-9", "kind": "Video", "video_id": "QX2YLR09Q78", "keywords": "Bernoulli's, equation, fluid, motion, physics", "youtube_id": "QX2YLR09Q78", "readable_id": "fluids-part-9"}, "TzSMvEiEuo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TzSMvEiEuo0.mp4/TzSMvEiEuo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TzSMvEiEuo0.mp4/TzSMvEiEuo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TzSMvEiEuo0.m3u8/TzSMvEiEuo0.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/room-1940/", "duration": 149, "id": "TzSMvEiEuo0", "title": "Room: 1940s", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Chris Stephens explores the 1940s.\n\nLearn more about the art featured in this video:\n-\u00a0Francis Bacon, Three Studies for Figures at the Base of a Crucifixion,\u00a01944\n-\u00a0Sir Jacob Epstein, Jacob and the Angel.\u00a01940\u20131", "slug": "room-1940", "kind": "Video", "video_id": "TzSMvEiEuo0", "keywords": "Tate", "youtube_id": "TzSMvEiEuo0", "readable_id": "room-1940"}, "SGKHQqHXmpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SGKHQqHXmpQ.mp4/SGKHQqHXmpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SGKHQqHXmpQ.mp4/SGKHQqHXmpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SGKHQqHXmpQ.m3u8/SGKHQqHXmpQ.m3u8"}, "duration": 280, "id": "SGKHQqHXmpQ", "title": "Asthma", "format": "mp4", "description": "Take a glimpse into your lungs to understand what happens when you have an asthma attack. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "asthma/", "slug": "asthma", "kind": "Video", "video_id": "SGKHQqHXmpQ", "keywords": "", "youtube_id": "SGKHQqHXmpQ", "readable_id": "asthma"}, "DiBXxWBrV24": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DiBXxWBrV24.mp4/DiBXxWBrV24.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DiBXxWBrV24.mp4/DiBXxWBrV24.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DiBXxWBrV24.m3u8/DiBXxWBrV24.m3u8"}, "path": "khan/science/physics/work-and-energy/mechanical-advantage/mechanical-advantage-part-2/", "duration": 410, "id": "DiBXxWBrV24", "title": "Mechanical advantage (part 2)", "format": "mp4", "description": "More on mechanical advantage, levers and moments.", "slug": "mechanical-advantage-part-2", "kind": "Video", "video_id": "DiBXxWBrV24", "keywords": "mechanical, advantage, moment, level, physics, work", "youtube_id": "DiBXxWBrV24", "readable_id": "mechanical-advantage-part-2"}, "yBrp8uvNAhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yBrp8uvNAhI.mp4/yBrp8uvNAhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yBrp8uvNAhI.mp4/yBrp8uvNAhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yBrp8uvNAhI.m3u8/yBrp8uvNAhI.m3u8"}, "duration": 818, "id": "yBrp8uvNAhI", "title": "Orbitals", "format": "mp4", "description": "An introduction to orbitals", "path": "khan/science/chemistry/electronic-structure-of-atoms/electron-configurations-jay-sal/orbitals/", "slug": "orbitals", "kind": "Video", "video_id": "yBrp8uvNAhI", "keywords": "chemistry, atomic, orbitals", "youtube_id": "yBrp8uvNAhI", "readable_id": "orbitals"}, "mkyPZjkdU2Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mkyPZjkdU2Q.mp4/mkyPZjkdU2Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mkyPZjkdU2Q.mp4/mkyPZjkdU2Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mkyPZjkdU2Q.m3u8/mkyPZjkdU2Q.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/roc-and-economic-growth/", "duration": 346, "id": "mkyPZjkdU2Q", "title": "Critically looking at data on ROC and economic growth over millenia", "format": "mp4", "description": "", "slug": "roc-and-economic-growth", "kind": "Video", "video_id": "mkyPZjkdU2Q", "keywords": "", "youtube_id": "mkyPZjkdU2Q", "readable_id": "roc-and-economic-growth"}, "L8NrBjd1aNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L8NrBjd1aNo.mp4/L8NrBjd1aNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L8NrBjd1aNo.mp4/L8NrBjd1aNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L8NrBjd1aNo.m3u8/L8NrBjd1aNo.m3u8"}, "duration": 136, "id": "L8NrBjd1aNo", "title": "Batteries/power", "format": "mp4", "description": "In this video we install 8 AA batteries in Bit-zee's frame using zip ties.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-batteries/", "slug": "bit-zee-s-batteries", "kind": "Video", "video_id": "L8NrBjd1aNo", "keywords": "Batteries, Bit-zee, robot power", "youtube_id": "L8NrBjd1aNo", "readable_id": "bit-zee-s-batteries"}, "fY0jAVfmcqM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fY0jAVfmcqM.mp4/fY0jAVfmcqM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fY0jAVfmcqM.mp4/fY0jAVfmcqM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fY0jAVfmcqM.m3u8/fY0jAVfmcqM.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/earth-and-form-solar-system/bhp-threshold4/", "duration": 170, "id": "fY0jAVfmcqM", "title": "Threshold 4: Earth & Solar System", "format": "mp4", "description": "Clouds of diverse, chemical matter spun around our Sun, coming together to form our Earth and Solar System.", "slug": "bhp-threshold4", "kind": "Video", "video_id": "fY0jAVfmcqM", "keywords": "", "youtube_id": "fY0jAVfmcqM", "readable_id": "bhp-threshold4"}, "wYAhlTHIBT4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wYAhlTHIBT4.mp4/wYAhlTHIBT4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wYAhlTHIBT4.mp4/wYAhlTHIBT4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wYAhlTHIBT4.m3u8/wYAhlTHIBT4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/housing-price-conundrum-part-2/", "duration": 534, "id": "wYAhlTHIBT4", "title": "Housing price conundrum (part 2)", "format": "mp4", "description": "How lower lending standards led to housing price inflation.", "slug": "housing-price-conundrum-part-2", "kind": "Video", "video_id": "wYAhlTHIBT4", "keywords": "economics, housing, prices, bubble, lending", "youtube_id": "wYAhlTHIBT4", "readable_id": "housing-price-conundrum-part-2"}, "YUEkOBvJSNg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YUEkOBvJSNg.mp4/YUEkOBvJSNg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YUEkOBvJSNg.mp4/YUEkOBvJSNg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YUEkOBvJSNg.m3u8/YUEkOBvJSNg.m3u8"}, "duration": 749, "id": "YUEkOBvJSNg", "title": "Chair and boat shapes for cyclohexane", "format": "mp4", "description": "Chair and Boat Shapes for Cyclohexane", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations/chair-and-boat-shapes-for-cyclohexane/", "slug": "chair-and-boat-shapes-for-cyclohexane", "kind": "Video", "video_id": "YUEkOBvJSNg", "keywords": "Chair, and, Boat, Shapes, for, Cyclohexane", "youtube_id": "YUEkOBvJSNg", "readable_id": "chair-and-boat-shapes-for-cyclohexane"}, "QV0jsTiobU4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QV0jsTiobU4.mp4/QV0jsTiobU4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QV0jsTiobU4.mp4/QV0jsTiobU4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QV0jsTiobU4.m3u8/QV0jsTiobU4.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-simpler-4x4-determinant/", "duration": 553, "id": "QV0jsTiobU4", "title": "Simpler 4x4 determinant", "format": "mp4", "description": "Calculating a 4x4 determinant by putting in in upper triangular form first.", "slug": "linear-algebra-simpler-4x4-determinant", "kind": "Video", "video_id": "QV0jsTiobU4", "keywords": "linear, algebra, determinant", "youtube_id": "QV0jsTiobU4", "readable_id": "linear-algebra-simpler-4x4-determinant"}, "YOlP6xmw7zU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YOlP6xmw7zU.mp4/YOlP6xmw7zU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YOlP6xmw7zU.mp4/YOlP6xmw7zU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YOlP6xmw7zU.m3u8/YOlP6xmw7zU.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-11/", "duration": 688, "id": "YOlP6xmw7zU", "title": "GMAT: Math 11", "format": "mp4", "description": "61-64, pg. 160", "slug": "gmat-math-11", "kind": "Video", "video_id": "YOlP6xmw7zU", "keywords": "gmat, math, problem, solving", "youtube_id": "YOlP6xmw7zU", "readable_id": "gmat-math-11"}, "ixf33dQDlXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ixf33dQDlXc.mp4/ixf33dQDlXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ixf33dQDlXc.mp4/ixf33dQDlXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ixf33dQDlXc.m3u8/ixf33dQDlXc.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-levels/genetic/ecosystem-biodiversity/", "duration": 254, "id": "ixf33dQDlXc", "title": "Ecosystem biodiversity", "format": "mp4", "description": "Are all coral reefs the same?\u00a0 Each regional ecosystem has its own\u00a0assemblage of species and each contributes uniquely to global\u00a0biodiversity. Explore why ecosystem diversity is important for\u00a0conservation decisions.", "slug": "ecosystem-biodiversity", "kind": "Video", "video_id": "ixf33dQDlXc", "keywords": "", "youtube_id": "ixf33dQDlXc", "readable_id": "ecosystem-biodiversity"}, "zqduFg0s5Q4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zqduFg0s5Q4.mp4/zqduFg0s5Q4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zqduFg0s5Q4.mp4/zqduFg0s5Q4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zqduFg0s5Q4.m3u8/zqduFg0s5Q4.m3u8"}, "duration": 435, "id": "zqduFg0s5Q4", "title": "Intuition for grams", "format": "mp4", "description": "In this video, we think about what what mass really means. We also examine the masses of real objects in grams and kilograms.", "path": "intuition-for-grams/", "slug": "intuition-for-grams", "kind": "Video", "video_id": "zqduFg0s5Q4", "keywords": "", "youtube_id": "zqduFg0s5Q4", "readable_id": "intuition-for-grams"}, "U7fKAYqfpC8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U7fKAYqfpC8.mp4/U7fKAYqfpC8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U7fKAYqfpC8.mp4/U7fKAYqfpC8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U7fKAYqfpC8.m3u8/U7fKAYqfpC8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pulmonary-hypertension/pulmonary-hypertension-diagnosis/", "duration": 264, "id": "U7fKAYqfpC8", "title": "Pulmonary hypertension diagnosis", "format": "mp4", "description": "", "slug": "pulmonary-hypertension-diagnosis", "kind": "Video", "video_id": "U7fKAYqfpC8", "keywords": "", "youtube_id": "U7fKAYqfpC8", "readable_id": "pulmonary-hypertension-diagnosis"}, "p5L8JFxKrRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p5L8JFxKrRM.mp4/p5L8JFxKrRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p5L8JFxKrRM.mp4/p5L8JFxKrRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p5L8JFxKrRM.m3u8/p5L8JFxKrRM.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-learning-environments/sscc-blended-flexsummit/", "duration": 281, "id": "p5L8JFxKrRM", "title": "Redesigning the school day at Summit Public Schools using a flex model", "format": "mp4", "description": "", "slug": "sscc-blended-flexsummit", "kind": "Video", "video_id": "p5L8JFxKrRM", "keywords": "", "youtube_id": "p5L8JFxKrRM", "readable_id": "sscc-blended-flexsummit"}, "9vI1kP-9zpw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9vI1kP-9zpw.mp4/9vI1kP-9zpw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9vI1kP-9zpw.mp4/9vI1kP-9zpw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9vI1kP-9zpw.m3u8/9vI1kP-9zpw.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/fauvism-matisse/henri-matisse-the-piano-lesson-1916/", "duration": 247, "id": "9vI1kP-9zpw", "title": "Matisse, Piano Lesson", "format": "mp4", "description": "Henri Matisse, The Piano Lesson, 1916 (The Museum of Modern Art) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "henri-matisse-the-piano-lesson-1916", "kind": "Video", "video_id": "9vI1kP-9zpw", "keywords": "matisse, piano lesson, Smarthistory, Khan Academy, Henri Matisse", "youtube_id": "9vI1kP-9zpw", "readable_id": "henri-matisse-the-piano-lesson-1916"}, "D6mivA_8L8U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D6mivA_8L8U.mp4/D6mivA_8L8U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D6mivA_8L8U.mp4/D6mivA_8L8U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D6mivA_8L8U.m3u8/D6mivA_8L8U.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying_polynomials/more-multiplying-polynomials/", "duration": 154, "id": "D6mivA_8L8U", "title": "Multiplying polynomials example 3", "format": "mp4", "description": "More multiplying polynomials", "slug": "more-multiplying-polynomials", "kind": "Video", "video_id": "D6mivA_8L8U", "keywords": "u11_l3_t2_we3, More, multiplying, polynomials, CC_39336_A-APR_1", "youtube_id": "D6mivA_8L8U", "readable_id": "more-multiplying-polynomials"}, "i-sAB-Z2_bE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i-sAB-Z2_bE.mp4/i-sAB-Z2_bE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i-sAB-Z2_bE.mp4/i-sAB-Z2_bE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i-sAB-Z2_bE.m3u8/i-sAB-Z2_bE.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/visualizing-equiv-fracs-pre-alg/equivalent-fraction-word-problem-example-2/", "duration": 121, "id": "i-sAB-Z2_bE", "title": "Equivalent fraction word problem example 2", "format": "mp4", "description": "How do you find an equivalent fraction? If you know the denominator of both fractions, and the numerator of one of them...you can figure out the rest We'll show you in this word problem.", "slug": "equivalent-fraction-word-problem-example-2", "kind": "Video", "video_id": "i-sAB-Z2_bE", "keywords": "", "youtube_id": "i-sAB-Z2_bE", "readable_id": "equivalent-fraction-word-problem-example-2"}, "OFXY9-pec1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OFXY9-pec1I.mp4/OFXY9-pec1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OFXY9-pec1I.mp4/OFXY9-pec1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OFXY9-pec1I.m3u8/OFXY9-pec1I.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/rosetta-stone-196-b-c-e/", "duration": 236, "id": "OFXY9-pec1I", "title": "Ptolemaic: Rosetta Stone", "format": "mp4", "description": "Rosetta Stone, 196 B.C.E., granite, 114.4 cm x 72.3 x 27.9 cm or 45 x 28.5 x 11 inches, Ptolemaic Period (British Museum, London). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "rosetta-stone-196-b-c-e", "kind": "Video", "video_id": "OFXY9-pec1I", "keywords": "rosetta stone, egypt, napoleon, smarthistory, art history, hieroglyphics, translation", "youtube_id": "OFXY9-pec1I", "readable_id": "rosetta-stone-196-b-c-e"}, "9ZnvDzfMRps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9ZnvDzfMRps.mp4/9ZnvDzfMRps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9ZnvDzfMRps.mp4/9ZnvDzfMRps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9ZnvDzfMRps.m3u8/9ZnvDzfMRps.m3u8"}, "path": "khan/college-admissions/explore-college-options/introduction-eco/overview-exploring-college-options/", "duration": 154, "id": "9ZnvDzfMRps", "title": "Overview: Exploring college options", "format": "mp4", "description": "", "slug": "overview-exploring-college-options", "kind": "Video", "video_id": "9ZnvDzfMRps", "keywords": "", "youtube_id": "9ZnvDzfMRps", "readable_id": "overview-exploring-college-options"}, "9ASWQi14FlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9ASWQi14FlE.mp4/9ASWQi14FlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9ASWQi14FlE.mp4/9ASWQi14FlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9ASWQi14FlE.m3u8/9ASWQi14FlE.m3u8"}, "duration": 621, "id": "9ASWQi14FlE", "title": "Recognizing points on a circle", "format": "mp4", "description": "", "path": "khan/math/geometry/analytic-geometry-topic/geometry-problems-coordinate-pla/recognizing-points-on-a-circle/", "slug": "recognizing-points-on-a-circle", "kind": "Video", "video_id": "9ASWQi14FlE", "keywords": "", "youtube_id": "9ASWQi14FlE", "readable_id": "recognizing-points-on-a-circle"}, "eLyLbaXfJXo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eLyLbaXfJXo.mp4/eLyLbaXfJXo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eLyLbaXfJXo.mp4/eLyLbaXfJXo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eLyLbaXfJXo.m3u8/eLyLbaXfJXo.m3u8"}, "path": "khan/math/probability/descriptive-statistics/central_tendency/comparing-means-and-medians/", "duration": 389, "id": "eLyLbaXfJXo", "title": "Means and medians of different distributions", "format": "mp4", "description": "", "slug": "comparing-means-and-medians", "kind": "Video", "video_id": "eLyLbaXfJXo", "keywords": "", "youtube_id": "eLyLbaXfJXo", "readable_id": "comparing-means-and-medians"}, "F5RyVWI4Onk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F5RyVWI4Onk.mp4/F5RyVWI4Onk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F5RyVWI4Onk.mp4/F5RyVWI4Onk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F5RyVWI4Onk.m3u8/F5RyVWI4Onk.m3u8"}, "duration": 157, "id": "F5RyVWI4Onk", "title": "Optimal potatoes", "format": "mp4", "description": "With Thanksgiving just around the corner here in the US, it is important to know how to arrange mathed potatoes on your plate for maximum gravy. Also shown are bread spheres, butter prism, and gelatinous cranberry cylinder. \n\nGreen Bean Matherole: http://youtu.be/XwIs1nlDQ2I\nBorromean Onion Rings: http://youtu.be/4tsjCND2ZfM\nTurduckenen-duckenen: http://youtu.be/pjrI91J6jOw", "path": "khan/math/recreational-math/vi-hart/thanksgiving-math/optimal-potatoes/", "slug": "optimal-potatoes", "kind": "Video", "video_id": "F5RyVWI4Onk", "keywords": "", "youtube_id": "F5RyVWI4Onk", "readable_id": "optimal-potatoes"}, "6u6uDIKWZgU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6u6uDIKWZgU.mp4/6u6uDIKWZgU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6u6uDIKWZgU.mp4/6u6uDIKWZgU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6u6uDIKWZgU.m3u8/6u6uDIKWZgU.m3u8"}, "duration": 177, "id": "6u6uDIKWZgU", "title": "Afghanistan: returning ivories", "format": "mp4", "description": "Find out about the remarkable story of these ivories from Afghanistan.\u00a0\u00a9 Trustees of the British Museum", "path": "returning-ivories/", "slug": "returning-ivories", "kind": "Video", "video_id": "6u6uDIKWZgU", "keywords": "", "youtube_id": "6u6uDIKWZgU", "readable_id": "returning-ivories"}, "3ckdqEsQJaw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3ckdqEsQJaw.mp4/3ckdqEsQJaw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3ckdqEsQJaw.mp4/3ckdqEsQJaw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3ckdqEsQJaw.m3u8/3ckdqEsQJaw.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/jason-christiansen/jason-christiansen-3/", "duration": 178, "id": "3ckdqEsQJaw", "title": "Turning a Hobby into a Bright Business", "format": "mp4", "description": "Jason Christiansen has heard all the familiar comparisons between running a business and being a team player, but as a former major league baseball player, he steps to the plate with a unique perspective. Christiansen talks about building Rigid Industries and how the company deals with imitation product lines and compares the pressure of standing on the mound to standing before his team of employees.", "slug": "jason-christiansen-3", "kind": "Video", "video_id": "3ckdqEsQJaw", "keywords": "", "youtube_id": "3ckdqEsQJaw", "readable_id": "jason-christiansen-3"}, "K8wwaXkT29Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K8wwaXkT29Y.mp4/K8wwaXkT29Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K8wwaXkT29Y.mp4/K8wwaXkT29Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K8wwaXkT29Y.m3u8/K8wwaXkT29Y.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2009-may-3-11/", "duration": 77, "id": "K8wwaXkT29Y", "title": "11 Solving for parabola constant", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-11", "kind": "Video", "video_id": "K8wwaXkT29Y", "keywords": "", "youtube_id": "K8wwaXkT29Y", "readable_id": "sat-2009-may-3-11"}, "cLP7INqs3JM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cLP7INqs3JM.mp4/cLP7INqs3JM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cLP7INqs3JM.mp4/cLP7INqs3JM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cLP7INqs3JM.m3u8/cLP7INqs3JM.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/introduction-to-rational-and-irrational-numbers/", "duration": 355, "id": "cLP7INqs3JM", "title": "Introduction to rational and irrational numbers", "format": "mp4", "description": "Learn what rational and irrational numbers are and how to tell them apart.", "slug": "introduction-to-rational-and-irrational-numbers", "kind": "Video", "video_id": "cLP7INqs3JM", "keywords": "", "youtube_id": "cLP7INqs3JM", "readable_id": "introduction-to-rational-and-irrational-numbers"}, "h7dD-8eD5oA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h7dD-8eD5oA.mp4/h7dD-8eD5oA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h7dD-8eD5oA.mp4/h7dD-8eD5oA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h7dD-8eD5oA.m3u8/h7dD-8eD5oA.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/piccolo-interview-and-demonstration-with-nadine-asin/", "duration": 590, "id": "h7dD-8eD5oA", "title": "Piccolo: Interview and demonstration with Nadine Asin", "format": "mp4", "description": "", "slug": "piccolo-interview-and-demonstration-with-nadine-asin", "kind": "Video", "video_id": "h7dD-8eD5oA", "keywords": "", "youtube_id": "h7dD-8eD5oA", "readable_id": "piccolo-interview-and-demonstration-with-nadine-asin"}, "jCByVqB4iJQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jCByVqB4iJQ.mp4/jCByVqB4iJQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jCByVqB4iJQ.mp4/jCByVqB4iJQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jCByVqB4iJQ.m3u8/jCByVqB4iJQ.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/fauvism-matisse/matisse-blue-window/", "duration": 158, "id": "jCByVqB4iJQ", "title": "Matisse, \"The Blue Window\"", "format": "mp4", "description": "Learn about Matisse\u2019s search for essential form in The Blue Window.\u00a0To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945.", "slug": "matisse-blue-window", "kind": "Video", "video_id": "jCByVqB4iJQ", "keywords": "", "youtube_id": "jCByVqB4iJQ", "readable_id": "matisse-blue-window"}, "meibWcbGqt4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/meibWcbGqt4.mp4/meibWcbGqt4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/meibWcbGqt4.mp4/meibWcbGqt4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/meibWcbGqt4.m3u8/meibWcbGqt4.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/change_of_basis/lin-alg-invertible-change-of-basis-matrix/", "duration": 814, "id": "meibWcbGqt4", "title": "Invertible change of basis matrix", "format": "mp4", "description": "Using an invertible change of basis matrix to go between different coordinate systems", "slug": "lin-alg-invertible-change-of-basis-matrix", "kind": "Video", "video_id": "meibWcbGqt4", "keywords": "change, of, basis, matrix, coordinate, system", "youtube_id": "meibWcbGqt4", "readable_id": "lin-alg-invertible-change-of-basis-matrix"}, "dD71fFNwVJw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dD71fFNwVJw.mp4/dD71fFNwVJw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dD71fFNwVJw.mp4/dD71fFNwVJw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dD71fFNwVJw.m3u8/dD71fFNwVJw.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/scientific-notation-3-new/", "duration": 267, "id": "dD71fFNwVJw", "title": "Multiplying in scientific notation example", "format": "mp4", "description": "Multiplying in scientific notation example", "slug": "scientific-notation-3-new", "kind": "Video", "video_id": "dD71fFNwVJw", "keywords": "u11_l1_t4_we3, Scientific, Notation, CC_5_NBT_2, CC_8_EE_3, CC_8_EE_4", "youtube_id": "dD71fFNwVJw", "readable_id": "scientific-notation-3-new"}, "GluohfOedQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GluohfOedQE.mp4/GluohfOedQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GluohfOedQE.mp4/GluohfOedQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GluohfOedQE.m3u8/GluohfOedQE.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-deductive-reasoning/", "duration": 617, "id": "GluohfOedQE", "title": "CA Geometry: Deductive reasoning", "format": "mp4", "description": "1-3, deductive reasoning and congruent angles", "slug": "ca-geometry-deductive-reasoning", "kind": "Video", "video_id": "GluohfOedQE", "keywords": "geometry, congruent, deductive, reasoning", "youtube_id": "GluohfOedQE", "readable_id": "ca-geometry-deductive-reasoning"}, "Fdu5-aNJTzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Fdu5-aNJTzU.mp4/Fdu5-aNJTzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Fdu5-aNJTzU.mp4/Fdu5-aNJTzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Fdu5-aNJTzU.m3u8/Fdu5-aNJTzU.m3u8"}, "duration": 656, "id": "Fdu5-aNJTzU", "title": "Epsilon-delta limit definition 2", "format": "mp4", "description": "Using the epsilon delta definition to prove a limit", "path": "khan/math/differential-calculus/limits_topic/epsilon_delta/epsilon-delta-limit-definition-2/", "slug": "epsilon-delta-limit-definition-2", "kind": "Video", "video_id": "Fdu5-aNJTzU", "keywords": "epsilon, delta, limit, definition, CC_39336_A-CED_2, CC_39336_A-CED_3, CC_39336_A-CED_4", "youtube_id": "Fdu5-aNJTzU", "readable_id": "epsilon-delta-limit-definition-2"}, "Z9KoBRGc3_s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z9KoBRGc3_s.mp4/Z9KoBRGc3_s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z9KoBRGc3_s.mp4/Z9KoBRGc3_s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z9KoBRGc3_s.m3u8/Z9KoBRGc3_s.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/bali/balinese-shadow-theater/", "duration": 301, "id": "Z9KoBRGc3_s", "title": "Balinese shadow theater", "format": "mp4", "description": "Watch an excerpt from the Hindu epic, the\u00a0Mahabharata. Performed Shadowmaster I Wayan Nartha.", "slug": "balinese-shadow-theater", "kind": "Video", "video_id": "Z9KoBRGc3_s", "keywords": "", "youtube_id": "Z9KoBRGc3_s", "readable_id": "balinese-shadow-theater"}, "tkJZCP-FMPE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tkJZCP-FMPE.mp4/tkJZCP-FMPE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tkJZCP-FMPE.mp4/tkJZCP-FMPE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tkJZCP-FMPE.m3u8/tkJZCP-FMPE.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-9-7/", "duration": 90, "id": "tkJZCP-FMPE", "title": "7 Circumference of circle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-7", "kind": "Video", "video_id": "tkJZCP-FMPE", "keywords": "", "youtube_id": "tkJZCP-FMPE", "readable_id": "sat-2010-may-9-7"}, "UjX4ExCixWY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UjX4ExCixWY.mp4/UjX4ExCixWY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UjX4ExCixWY.mp4/UjX4ExCixWY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UjX4ExCixWY.m3u8/UjX4ExCixWY.m3u8"}, "path": "khan/humanities/medieval-world/early-christian1/sarcophagus-of-junius-bassus-marble-359-c-e/", "duration": 267, "id": "UjX4ExCixWY", "title": "Sarcophagus of Junius Bassus", "format": "mp4", "description": "Sarcophagus of Junius Bassus, marble, 359 C.E. (Treasury of Saint Peter's Basilica)\n\nPlease note that due to photography restrictions, the images used in the video above\nshow the plaster cast on display in the Vatican Museum. Nevertheless, the audio conversation\nwas recorded in the treasury in Saint Peter's Basilica, in front of the original sarcophagus.\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker \n\nhttp://www.smarthistory.org/sarcophagus-of-junius-bassus.html", "slug": "sarcophagus-of-junius-bassus-marble-359-c-e", "kind": "Video", "video_id": "UjX4ExCixWY", "keywords": "Sarcophagus, Basilica of St. Peters, Early Christian Art, Smarthistory, Art History", "youtube_id": "UjX4ExCixWY", "readable_id": "sarcophagus-of-junius-bassus-marble-359-c-e"}, "1FQPXtN7MeI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1FQPXtN7MeI.mp4/1FQPXtN7MeI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1FQPXtN7MeI.mp4/1FQPXtN7MeI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1FQPXtN7MeI.m3u8/1FQPXtN7MeI.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/uv-vis-spectroscopy/", "duration": 672, "id": "1FQPXtN7MeI", "title": "UV-Vis spectroscopy", "format": "mp4", "description": "", "slug": "uv-vis-spectroscopy", "kind": "Video", "video_id": "1FQPXtN7MeI", "keywords": "", "youtube_id": "1FQPXtN7MeI", "readable_id": "uv-vis-spectroscopy"}, "F_BI7rBhfos": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F_BI7rBhfos.mp4/F_BI7rBhfos.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F_BI7rBhfos.mp4/F_BI7rBhfos.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F_BI7rBhfos.m3u8/F_BI7rBhfos.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/my-big-history/introduction-to-thresholds-of-increasing-complexity/", "duration": 136, "id": "F_BI7rBhfos", "title": "Introduction to Thresholds of Increasing Complexity", "format": "mp4", "description": "Eight dramatic transitions drive Big History's 13.8 billion year story.\u00a0", "slug": "introduction-to-thresholds-of-increasing-complexity", "kind": "Video", "video_id": "F_BI7rBhfos", "keywords": "", "youtube_id": "F_BI7rBhfos", "readable_id": "introduction-to-thresholds-of-increasing-complexity"}, "jHlaOqbabB4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jHlaOqbabB4.mp4/jHlaOqbabB4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jHlaOqbabB4.mp4/jHlaOqbabB4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jHlaOqbabB4.m3u8/jHlaOqbabB4.m3u8"}, "duration": 353, "id": "jHlaOqbabB4", "title": "Hajj Stories: Performing the Hajj (Part 2 of 2)", "format": "mp4", "description": "The hajj, one of the \u201cfive pillars\u201d of Islam, is the pilgrimage to the city of Mecca, in Saudi Arabia, that all Muslims should make at least once in their lifetime if their health and financial means allow it, according to Islamic tradition. Inspired by the British Museum\u2019s video Hajj Stories (2012), staff at the Asian Art Museum asked Bay Area Muslims who have performed the hajj to share experiences of their journeys. Learn more about the arts of the Islamic world on the\u00a0 Asian Art Museum's education website.", "path": "performing-hajj-2/", "slug": "performing-hajj-2", "kind": "Video", "video_id": "jHlaOqbabB4", "keywords": "", "youtube_id": "jHlaOqbabB4", "readable_id": "performing-hajj-2"}, "U5xnGyw2llY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U5xnGyw2llY.mp4/U5xnGyw2llY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U5xnGyw2llY.mp4/U5xnGyw2llY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U5xnGyw2llY.m3u8/U5xnGyw2llY.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carbohydrates-5d/carbohydrates-absolute-configuration-epimers-common-names/", "duration": 675, "id": "U5xnGyw2llY", "title": "Carbohydrates - absolute configuration, epimers, common names", "format": "mp4", "description": "", "slug": "carbohydrates-absolute-configuration-epimers-common-names", "kind": "Video", "video_id": "U5xnGyw2llY", "keywords": "", "youtube_id": "U5xnGyw2llY", "readable_id": "carbohydrates-absolute-configuration-epimers-common-names"}, "p9B4s0N5yk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p9B4s0N5yk8.mp4/p9B4s0N5yk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p9B4s0N5yk8.mp4/p9B4s0N5yk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p9B4s0N5yk8.m3u8/p9B4s0N5yk8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/chemical-equivalence/", "duration": 644, "id": "p9B4s0N5yk8", "title": "Chemical equivalence", "format": "mp4", "description": "", "slug": "chemical-equivalence", "kind": "Video", "video_id": "p9B4s0N5yk8", "keywords": "", "youtube_id": "p9B4s0N5yk8", "readable_id": "chemical-equivalence"}, "09Cx7xuIXig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/09Cx7xuIXig.mp4/09Cx7xuIXig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/09Cx7xuIXig.mp4/09Cx7xuIXig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/09Cx7xuIXig.m3u8/09Cx7xuIXig.m3u8"}, "path": "khan/math/probability/descriptive-statistics/box-and-whisker-plots/constructing-a-box-and-whisker-plot/", "duration": 498, "id": "09Cx7xuIXig", "title": "Constructing a box and whisker plot", "format": "mp4", "description": "Here's a word problem that's perfectly suited for a box and whiskers plot to help analyze data. Let's construct one together, shall we?", "slug": "constructing-a-box-and-whisker-plot", "kind": "Video", "video_id": "09Cx7xuIXig", "keywords": "box, whisker, plot", "youtube_id": "09Cx7xuIXig", "readable_id": "constructing-a-box-and-whisker-plot"}, "x-GV2v0dRNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x-GV2v0dRNE.mp4/x-GV2v0dRNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x-GV2v0dRNE.mp4/x-GV2v0dRNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x-GV2v0dRNE.m3u8/x-GV2v0dRNE.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/linear-algebra-determinant-of-transpose/", "duration": 850, "id": "x-GV2v0dRNE", "title": "Determinant of transpose", "format": "mp4", "description": "Proof by induction that transposing a matrix does not change its determinant", "slug": "linear-algebra-determinant-of-transpose", "kind": "Video", "video_id": "x-GV2v0dRNE", "keywords": "transpose, determinant, linear, algebra, matrix", "youtube_id": "x-GV2v0dRNE", "readable_id": "linear-algebra-determinant-of-transpose"}, "EmTvdKkAUtE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EmTvdKkAUtE.mp4/EmTvdKkAUtE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EmTvdKkAUtE.mp4/EmTvdKkAUtE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EmTvdKkAUtE.m3u8/EmTvdKkAUtE.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function-introduction/linear-function-graphs/", "duration": 709, "id": "EmTvdKkAUtE", "title": "Evaluating with function notation", "format": "mp4", "description": "Linear Function Graphs", "slug": "linear-function-graphs", "kind": "Video", "video_id": "EmTvdKkAUtE", "keywords": "Linear, Function, Graphs, CC_39336_F-IF_7_a", "youtube_id": "EmTvdKkAUtE", "readable_id": "linear-function-graphs"}, "4bZyfvKazzQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4bZyfvKazzQ.mp4/4bZyfvKazzQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4bZyfvKazzQ.mp4/4bZyfvKazzQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4bZyfvKazzQ.m3u8/4bZyfvKazzQ.m3u8"}, "duration": 249, "id": "4bZyfvKazzQ", "title": "Area between curves", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/solid_revolution_topic/area-between-curves/area-between-curves/", "slug": "area-between-curves", "kind": "Video", "video_id": "4bZyfvKazzQ", "keywords": "", "youtube_id": "4bZyfvKazzQ", "readable_id": "area-between-curves"}, "ql8wVEetJkQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ql8wVEetJkQ.mp4/ql8wVEetJkQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ql8wVEetJkQ.mp4/ql8wVEetJkQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ql8wVEetJkQ.m3u8/ql8wVEetJkQ.m3u8"}, "path": "khan/humanities/art-asia/art-japan/edo-period/hunting-for-fireflies/", "duration": 146, "id": "ql8wVEetJkQ", "title": "Hunting for fireflies", "format": "mp4", "description": "Melinda Takeuchi, Professor in the Department of East Asian Languages and Cultures and the Department of Art History at Stanford University, discusses the coded meanings behind a woodblock print in the Asian Art Museum's collection.", "slug": "hunting-for-fireflies", "kind": "Video", "video_id": "ql8wVEetJkQ", "keywords": "woodblock prints", "youtube_id": "ql8wVEetJkQ", "readable_id": "hunting-for-fireflies"}, "SfWrVNyP9E8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SfWrVNyP9E8.mp4/SfWrVNyP9E8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SfWrVNyP9E8.mp4/SfWrVNyP9E8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SfWrVNyP9E8.m3u8/SfWrVNyP9E8.m3u8"}, "duration": 252, "id": "SfWrVNyP9E8", "title": "Shell method with two functions of x", "format": "mp4", "description": "Using the shell method to rotate around a vertical line.", "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/shell-method-with-two-functions-of-x/", "slug": "shell-method-with-two-functions-of-x", "kind": "Video", "video_id": "SfWrVNyP9E8", "keywords": "", "youtube_id": "SfWrVNyP9E8", "readable_id": "shell-method-with-two-functions-of-x"}, "0xvaYVoBwzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0xvaYVoBwzU.mp4/0xvaYVoBwzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0xvaYVoBwzU.mp4/0xvaYVoBwzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0xvaYVoBwzU.m3u8/0xvaYVoBwzU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pneumonia/pneumonia-diagnosis-and-treatment/", "duration": 615, "id": "0xvaYVoBwzU", "title": "Pneumonia diagnosis and treatment", "format": "mp4", "description": "How do we know a patient has pneumonia? Learn what the lungs in chest x-rays look like, what a bronchoscopy is, and what certain blood tests mean!", "slug": "pneumonia-diagnosis-and-treatment", "kind": "Video", "video_id": "0xvaYVoBwzU", "keywords": "", "youtube_id": "0xvaYVoBwzU", "readable_id": "pneumonia-diagnosis-and-treatment"}, "XFI7GK4Nv-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XFI7GK4Nv-s.mp4/XFI7GK4Nv-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XFI7GK4Nv-s.mp4/XFI7GK4Nv-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XFI7GK4Nv-s.m3u8/XFI7GK4Nv-s.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/arc-length-as-fraction-of-circumference/", "duration": 179, "id": "XFI7GK4Nv-s", "title": "Arc length as fraction of circumference", "format": "mp4", "description": "", "slug": "arc-length-as-fraction-of-circumference", "kind": "Video", "video_id": "XFI7GK4Nv-s", "keywords": "", "youtube_id": "XFI7GK4Nv-s", "readable_id": "arc-length-as-fraction-of-circumference"}, "ZAbrCJxk8fs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZAbrCJxk8fs.mp4/ZAbrCJxk8fs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZAbrCJxk8fs.mp4/ZAbrCJxk8fs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZAbrCJxk8fs.m3u8/ZAbrCJxk8fs.m3u8"}, "path": "khan/test-prep/mcat/cells/transport-across-a-cell-membrane/passive-transport-by-facilitated-diffusion/", "duration": 316, "id": "ZAbrCJxk8fs", "title": "Passive Transport by Facilitated Diffusion", "format": "mp4", "description": "", "slug": "passive-transport-by-facilitated-diffusion", "kind": "Video", "video_id": "ZAbrCJxk8fs", "keywords": "", "youtube_id": "ZAbrCJxk8fs", "readable_id": "passive-transport-by-facilitated-diffusion"}, "OGVJfcSckUs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OGVJfcSckUs.mp4/OGVJfcSckUs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OGVJfcSckUs.mp4/OGVJfcSckUs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OGVJfcSckUs.m3u8/OGVJfcSckUs.m3u8"}, "duration": 256, "id": "OGVJfcSckUs", "title": "Basics of US income tax rate schedule", "format": "mp4", "description": "Understanding that a marginal tax rate does not apply to all of income", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/basics-of-us-income-tax-rate-schedule/", "slug": "basics-of-us-income-tax-rate-schedule", "kind": "Video", "video_id": "OGVJfcSckUs", "keywords": "finance, education", "youtube_id": "OGVJfcSckUs", "readable_id": "basics-of-us-income-tax-rate-schedule"}, "KM_maukQebY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KM_maukQebY.mp4/KM_maukQebY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KM_maukQebY.mp4/KM_maukQebY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KM_maukQebY.m3u8/KM_maukQebY.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/deffect-2013-07-03t144454851z/ortho-para-directors-ii/", "duration": 518, "id": "KM_maukQebY", "title": "Ortho-para directors II", "format": "mp4", "description": "Strong Activators", "slug": "ortho-para-directors-ii", "kind": "Video", "video_id": "KM_maukQebY", "keywords": "", "youtube_id": "KM_maukQebY", "readable_id": "ortho-para-directors-ii"}, "ayP43bc7kww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ayP43bc7kww.mp4/ayP43bc7kww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ayP43bc7kww.mp4/ayP43bc7kww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ayP43bc7kww.m3u8/ayP43bc7kww.m3u8"}, "duration": 357, "id": "ayP43bc7kww", "title": "Behavior influences attitude", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/theories-of-attitude-and-behavior-change/behavior-influences-attitude/", "slug": "behavior-influences-attitude", "kind": "Video", "video_id": "ayP43bc7kww", "keywords": "", "youtube_id": "ayP43bc7kww", "readable_id": "behavior-influences-attitude"}, "5ABpqVSx33I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ABpqVSx33I.mp4/5ABpqVSx33I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ABpqVSx33I.mp4/5ABpqVSx33I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ABpqVSx33I.m3u8/5ABpqVSx33I.m3u8"}, "path": "khan/math/probability/statistics-inferential/hypothesis-testing/z-statistics-vs-t-statistics/", "duration": 399, "id": "5ABpqVSx33I", "title": "Z-statistics vs. T-statistics", "format": "mp4", "description": "Z-statistics vs. T-statistics", "slug": "z-statistics-vs-t-statistics", "kind": "Video", "video_id": "5ABpqVSx33I", "keywords": "Z-statistics, vs., T-statistics, t-distribution", "youtube_id": "5ABpqVSx33I", "readable_id": "z-statistics-vs-t-statistics"}, "p3fdeXgErns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p3fdeXgErns.mp4/p3fdeXgErns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p3fdeXgErns.mp4/p3fdeXgErns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p3fdeXgErns.m3u8/p3fdeXgErns.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-17-nobel-prize/", "duration": 114, "id": "p3fdeXgErns", "title": "17 Nobel prize", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-17-nobel-prize", "kind": "Video", "video_id": "p3fdeXgErns", "keywords": "", "youtube_id": "p3fdeXgErns", "readable_id": "sat-17-nobel-prize"}, "tuVd355R-OQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tuVd355R-OQ.mp4/tuVd355R-OQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tuVd355R-OQ.mp4/tuVd355R-OQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tuVd355R-OQ.m3u8/tuVd355R-OQ.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/two-step-equations/", "duration": 830, "id": "tuVd355R-OQ", "title": "Example: two-step equations", "format": "mp4", "description": "Let's practice some two step equations, some of which require merging terms and using the distributive property.", "slug": "two-step-equations", "kind": "Video", "video_id": "tuVd355R-OQ", "keywords": "Two, Step, Equations, CC_39336_A-REI_3", "youtube_id": "tuVd355R-OQ", "readable_id": "two-step-equations"}, "H95wT4wT95w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H95wT4wT95w.mp4/H95wT4wT95w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H95wT4wT95w.mp4/H95wT4wT95w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H95wT4wT95w.m3u8/H95wT4wT95w.m3u8"}, "path": "khan/humanities/art-americas/us-art-19c/romanticism-us/washington-allston-elijah-in-the-desert-1818/", "duration": 279, "id": "H95wT4wT95w", "title": "Allston, Elijah in the Desert", "format": "mp4", "description": "Washington Allston, Elijah in the Desert, 1818, oil on canvas, 125.09 x 184.78 cm / 49 1/4 x 72 3/4 inches (Museum of Fine Arts, Boston)", "slug": "washington-allston-elijah-in-the-desert-1818", "kind": "Video", "video_id": "H95wT4wT95w", "keywords": "Romanticism, Khan Academy, smarthistory, art history, Google Art Project, OER, Washington Allston, Allston, Elijah in the Desert, Elijah, 1818, Museum of Fine Arts, Boston, American, Landscape", "youtube_id": "H95wT4wT95w", "readable_id": "washington-allston-elijah-in-the-desert-1818"}, "Zuugb3qq0Zg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zuugb3qq0Zg.mp4/Zuugb3qq0Zg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zuugb3qq0Zg.mp4/Zuugb3qq0Zg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zuugb3qq0Zg.m3u8/Zuugb3qq0Zg.m3u8"}, "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/mausoleum-of-the-first-qin-emperor-unescotbs/", "duration": 121, "id": "Zuugb3qq0Zg", "title": "Terra cotta warriors from the Mausoleum of the First Qin Emperor (UNESCO/TBS)", "format": "mp4", "description": "No doubt thousands of statues still remain to be unearthed at this archaeological site, which was not discovered until 1974. Qin (d. 210 B.C.), the first unifier of China, is buried, surrounded by the famous terracotta warriors, at the centre of a complex designed to mirror the urban plan of the capital, Xianyan. The small figures are all different; with their horses, chariots and weapons, they are masterpieces of realism and also of great historical interest. Source: UNESCO TV / \u00a9 TBS Produced by TBS Supported by Sony URL: http://whc.unesco.org/en/list/441/", "slug": "mausoleum-of-the-first-qin-emperor-unescotbs", "kind": "Video", "video_id": "Zuugb3qq0Zg", "keywords": "", "youtube_id": "Zuugb3qq0Zg", "readable_id": "mausoleum-of-the-first-qin-emperor-unescotbs"}, "iFCIgn3Q9XE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iFCIgn3Q9XE.mp4/iFCIgn3Q9XE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iFCIgn3Q9XE.mp4/iFCIgn3Q9XE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iFCIgn3Q9XE.m3u8/iFCIgn3Q9XE.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/beethoven-fifth-symphony/ludwig-van-beethoven-symphony-no-5-analysis-by-gerard-schwarz-mov-2/", "duration": 451, "id": "iFCIgn3Q9XE", "title": "Ludwig van Beethoven: Symphony No. 5 Analysis by Gerard Schwarz (part 2)", "format": "mp4", "description": "Watch the full performance here (starting at 10:40)\u200b", "slug": "ludwig-van-beethoven-symphony-no-5-analysis-by-gerard-schwarz-mov-2", "kind": "Video", "video_id": "iFCIgn3Q9XE", "keywords": "", "youtube_id": "iFCIgn3Q9XE", "readable_id": "ludwig-van-beethoven-symphony-no-5-analysis-by-gerard-schwarz-mov-2"}, "J0u_MugpslU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J0u_MugpslU.mp4/J0u_MugpslU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J0u_MugpslU.mp4/J0u_MugpslU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J0u_MugpslU.m3u8/J0u_MugpslU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2009-may-3-6/", "duration": 133, "id": "J0u_MugpslU", "title": "6 Solving for 2x", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-6", "kind": "Video", "video_id": "J0u_MugpslU", "keywords": "", "youtube_id": "J0u_MugpslU", "readable_id": "sat-2009-may-3-6"}, "Uc2Tm4Lr7uI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Uc2Tm4Lr7uI.mp4/Uc2Tm4Lr7uI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Uc2Tm4Lr7uI.mp4/Uc2Tm4Lr7uI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Uc2Tm4Lr7uI.m3u8/Uc2Tm4Lr7uI.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/advanced-ratios/multiple-rates-word-problem/", "duration": 388, "id": "Uc2Tm4Lr7uI", "title": "Multiple rates word problem", "format": "mp4", "description": "Sometimes you'll need to solve for multiple parts of the equation before getting at the answer. Here we solve for average speed, but first we have to determine total distance and total time.", "slug": "multiple-rates-word-problem", "kind": "Video", "video_id": "Uc2Tm4Lr7uI", "keywords": "", "youtube_id": "Uc2Tm4Lr7uI", "readable_id": "multiple-rates-word-problem"}, "5b4rP0DKd_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5b4rP0DKd_k.mp4/5b4rP0DKd_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5b4rP0DKd_k.mp4/5b4rP0DKd_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5b4rP0DKd_k.m3u8/5b4rP0DKd_k.m3u8"}, "duration": 270, "id": "5b4rP0DKd_k", "title": "An introduction to George Washington", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss George Washington and his involvement in the founding of the United States of America.", "path": "george-washington-intro/", "slug": "george-washington-intro", "kind": "Video", "video_id": "5b4rP0DKd_k", "keywords": "", "youtube_id": "5b4rP0DKd_k", "readable_id": "george-washington-intro"}, "EbmgLiSVACU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EbmgLiSVACU.mp4/EbmgLiSVACU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EbmgLiSVACU.mp4/EbmgLiSVACU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EbmgLiSVACU.m3u8/EbmgLiSVACU.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/simplifying-a-complicated-expression-into-scientific-notation/", "duration": 352, "id": "EbmgLiSVACU", "title": "Simplifying a complicated expression into scientific notation", "format": "mp4", "description": "", "slug": "simplifying-a-complicated-expression-into-scientific-notation", "kind": "Video", "video_id": "EbmgLiSVACU", "keywords": "", "youtube_id": "EbmgLiSVACU", "readable_id": "simplifying-a-complicated-expression-into-scientific-notation"}, "tG8JvkYsfyE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tG8JvkYsfyE.mp4/tG8JvkYsfyE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tG8JvkYsfyE.mp4/tG8JvkYsfyE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tG8JvkYsfyE.m3u8/tG8JvkYsfyE.m3u8"}, "duration": 513, "id": "tG8JvkYsfyE", "title": "Hajj Stories: Performing the Hajj (Part 1 of 2)", "format": "mp4", "description": "The hajj, one of the \u201cfive pillars\u201d of Islam, is the pilgrimage to the city of Mecca, in Saudi Arabia, that all Muslims should make at least once in their lifetime if their health and financial means allow it, according to Islamic tradition. Inspired by the British Museum\u2019s videos Hajj Stories (2012), staff at the Asian Art Museum asked Bay Area Muslims who have performed the hajj to share experiences of their journeys. Learn more about the arts of the Islamic world on the\u00a0 Asian Art Museum's education website.", "path": "performing-hajj/", "slug": "performing-hajj", "kind": "Video", "video_id": "tG8JvkYsfyE", "keywords": "Islam, hajj", "youtube_id": "tG8JvkYsfyE", "readable_id": "performing-hajj"}, "2oHUkHYtQoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2oHUkHYtQoM.mp4/2oHUkHYtQoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2oHUkHYtQoM.mp4/2oHUkHYtQoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2oHUkHYtQoM.m3u8/2oHUkHYtQoM.m3u8"}, "duration": 255, "id": "2oHUkHYtQoM", "title": "Approximating equation of tangent line word problem", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/secant-line-slope-tangent/approximating-equation-of-tangent-line-word-problem-1/", "slug": "approximating-equation-of-tangent-line-word-problem-1", "kind": "Video", "video_id": "2oHUkHYtQoM", "keywords": "", "youtube_id": "2oHUkHYtQoM", "readable_id": "approximating-equation-of-tangent-line-word-problem-1"}, "6sP3kV-zgZk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6sP3kV-zgZk.mp4/6sP3kV-zgZk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6sP3kV-zgZk.mp4/6sP3kV-zgZk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6sP3kV-zgZk.m3u8/6sP3kV-zgZk.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermodynamics-mcat/first-law-of-thermodynamics-problem-solving/", "duration": 454, "id": "6sP3kV-zgZk", "title": "First law of thermodynamics problem solving", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "first-law-of-thermodynamics-problem-solving", "kind": "Video", "video_id": "6sP3kV-zgZk", "keywords": "", "youtube_id": "6sP3kV-zgZk", "readable_id": "first-law-of-thermodynamics-problem-solving"}, "bQioHx12JuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bQioHx12JuY.mp4/bQioHx12JuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bQioHx12JuY.mp4/bQioHx12JuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bQioHx12JuY.m3u8/bQioHx12JuY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/meet-the-placenta/", "duration": 749, "id": "bQioHx12JuY", "title": "Meet the placenta!", "format": "mp4", "description": "Learn how the needs of the fetus are met by the placenta, which is a special organ that belongs to both the mother and the fetus! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "meet-the-placenta", "kind": "Video", "video_id": "bQioHx12JuY", "keywords": "", "youtube_id": "bQioHx12JuY", "readable_id": "meet-the-placenta"}, "A_ESfuN1Pkg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A_ESfuN1Pkg.mp4/A_ESfuN1Pkg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A_ESfuN1Pkg.mp4/A_ESfuN1Pkg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A_ESfuN1Pkg.m3u8/A_ESfuN1Pkg.m3u8"}, "duration": 279, "id": "A_ESfuN1Pkg", "title": "Introduction to complex numbers", "format": "mp4", "description": "", "path": "khan/math/algebra2/complex-numbers-a2/complex_numbers/introduction-to-complex-numbers/", "slug": "introduction-to-complex-numbers", "kind": "Video", "video_id": "A_ESfuN1Pkg", "keywords": "", "youtube_id": "A_ESfuN1Pkg", "readable_id": "introduction-to-complex-numbers"}, "MmRgMAZyYN0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MmRgMAZyYN0.mp4/MmRgMAZyYN0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MmRgMAZyYN0.mp4/MmRgMAZyYN0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MmRgMAZyYN0.m3u8/MmRgMAZyYN0.m3u8"}, "duration": 903, "id": "MmRgMAZyYN0", "title": "Communism", "format": "mp4", "description": "Overview of Communism and Marxist-Leninist States", "path": "khan/humanities/history/euro-hist/cold-war/communism/", "slug": "communism", "kind": "Video", "video_id": "MmRgMAZyYN0", "keywords": "Marx, Lenin, capitalism", "youtube_id": "MmRgMAZyYN0", "readable_id": "communism"}, "P-1mWGeJjmg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P-1mWGeJjmg.mp4/P-1mWGeJjmg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P-1mWGeJjmg.mp4/P-1mWGeJjmg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P-1mWGeJjmg.m3u8/P-1mWGeJjmg.m3u8"}, "duration": 601, "id": "P-1mWGeJjmg", "title": "Capacitors in parallel", "format": "mp4", "description": "The effect on voltage and current when capacitors are constructed in parallel in a circuit. By David Santo Pietro. ", "path": "khan/test-prep/mcat/physical-processes/capacitors/capacitors-parallel/", "slug": "capacitors-parallel", "kind": "Video", "video_id": "P-1mWGeJjmg", "keywords": "capacitor, parallel, circuit", "youtube_id": "P-1mWGeJjmg", "readable_id": "capacitors-parallel"}, "zqRxV9ICn4I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zqRxV9ICn4I.mp4/zqRxV9ICn4I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zqRxV9ICn4I.mp4/zqRxV9ICn4I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zqRxV9ICn4I.m3u8/zqRxV9ICn4I.m3u8"}, "duration": 597, "id": "zqRxV9ICn4I", "title": "Open-ended mutual funds", "format": "mp4", "description": "Mutual fund basic", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/mutual-funds/open-ended-mutual-funds/", "slug": "open-ended-mutual-funds", "kind": "Video", "video_id": "zqRxV9ICn4I", "keywords": "finance, economics, investing", "youtube_id": "zqRxV9ICn4I", "readable_id": "open-ended-mutual-funds"}, "LNSB0N6esPU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LNSB0N6esPU.mp4/LNSB0N6esPU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LNSB0N6esPU.mp4/LNSB0N6esPU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LNSB0N6esPU.m3u8/LNSB0N6esPU.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/x-and-y-intercepts/introduction-to-intercepts/", "duration": 393, "id": "LNSB0N6esPU", "title": "Introduction to intercepts", "format": "mp4", "description": "Introduction to intercepts", "slug": "introduction-to-intercepts", "kind": "Video", "video_id": "LNSB0N6esPU", "keywords": "", "youtube_id": "LNSB0N6esPU", "readable_id": "introduction-to-intercepts"}, "ShpI3gPgLBA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ShpI3gPgLBA.mp4/ShpI3gPgLBA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ShpI3gPgLBA.mp4/ShpI3gPgLBA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ShpI3gPgLBA.m3u8/ShpI3gPgLBA.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/u_substitution/doing-u-substitution-twice-second-time-with-w/", "duration": 537, "id": "ShpI3gPgLBA", "title": "Doing u-substitution twice (second time with w)", "format": "mp4", "description": "Example where we do substitution twice to get the integral into a reasonable form", "slug": "doing-u-substitution-twice-second-time-with-w", "kind": "Video", "video_id": "ShpI3gPgLBA", "keywords": "", "youtube_id": "ShpI3gPgLBA", "readable_id": "doing-u-substitution-twice-second-time-with-w"}, "S4iQ46ISqRQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S4iQ46ISqRQ.mp4/S4iQ46ISqRQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S4iQ46ISqRQ.mp4/S4iQ46ISqRQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S4iQ46ISqRQ.m3u8/S4iQ46ISqRQ.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/lakeshia-grant/lakeshia-grant-0/", "duration": 180, "id": "S4iQ46ISqRQ", "title": "Being Heard and Giving Others a Voice", "format": "mp4", "description": "LaKeshia Grant founded Virtual Enterprise Architects as a place where she would have a voice and create an environment where others could be heard. She discusses her industry and encourages would-be entrepreneurs to incorporate their core values in their business. Grant\u2019s mother may not know exactly what the information technology business does, but she instilled a strong work ethic and the spirit of entrepreneurship in her daughter.", "slug": "lakeshia-grant-0", "kind": "Video", "video_id": "S4iQ46ISqRQ", "keywords": "", "youtube_id": "S4iQ46ISqRQ", "readable_id": "lakeshia-grant-0"}, "1POuMECG_tw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1POuMECG_tw.mp4/1POuMECG_tw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1POuMECG_tw.mp4/1POuMECG_tw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1POuMECG_tw.m3u8/1POuMECG_tw.m3u8"}, "duration": 340, "id": "1POuMECG_tw", "title": "John Myatt on Glenn Brown", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nThe inspiration for artist Glenn Brown's extraordinary paintings lies in the art of appropriation. His hand printed images taken directly from books, postcards, old masters, and science fiction illustrations undergo audacious transitions; they become flat, colours shift and the originals become a memory. In this film, John Myatt, a renowned art forger whose exploits have even landed him a spell in prison, takes a trip to Tate Liverpool to contemplate Brown's work.", "path": "glenn-brown/", "slug": "glenn-brown", "kind": "Video", "video_id": "1POuMECG_tw", "keywords": "Tate", "youtube_id": "1POuMECG_tw", "readable_id": "glenn-brown"}, "43AS7bPUORc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/43AS7bPUORc.mp4/43AS7bPUORc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/43AS7bPUORc.mp4/43AS7bPUORc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/43AS7bPUORc.m3u8/43AS7bPUORc.m3u8"}, "duration": 453, "id": "43AS7bPUORc", "title": "Disc method around y-axis", "format": "mp4", "description": "Finding the volume of a figure that is rotated around the y-axis using the disc method", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/disc-method-around-y-axis/", "slug": "disc-method-around-y-axis", "kind": "Video", "video_id": "43AS7bPUORc", "keywords": "", "youtube_id": "43AS7bPUORc", "readable_id": "disc-method-around-y-axis"}, "pPnxPrhf6Ww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pPnxPrhf6Ww.mp4/pPnxPrhf6Ww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pPnxPrhf6Ww.mp4/pPnxPrhf6Ww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pPnxPrhf6Ww.m3u8/pPnxPrhf6Ww.m3u8"}, "path": "khan/math/probability/descriptive-statistics/central_tendency/comparing-distribution-means/", "duration": 469, "id": "pPnxPrhf6Ww", "title": "Comparing means of distributions", "format": "mp4", "description": "", "slug": "comparing-distribution-means", "kind": "Video", "video_id": "pPnxPrhf6Ww", "keywords": "", "youtube_id": "pPnxPrhf6Ww", "readable_id": "comparing-distribution-means"}, "nnl3x1wo25g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nnl3x1wo25g.mp4/nnl3x1wo25g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nnl3x1wo25g.mp4/nnl3x1wo25g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nnl3x1wo25g.m3u8/nnl3x1wo25g.m3u8"}, "duration": 213, "id": "nnl3x1wo25g", "title": "American call options", "format": "mp4", "description": "American Call Options", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/american-call-options/", "slug": "american-call-options", "kind": "Video", "video_id": "nnl3x1wo25g", "keywords": "American, Call, Options", "youtube_id": "nnl3x1wo25g", "readable_id": "american-call-options"}, "P9lTAUtnreo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P9lTAUtnreo.mp4/P9lTAUtnreo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P9lTAUtnreo.mp4/P9lTAUtnreo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P9lTAUtnreo.m3u8/P9lTAUtnreo.m3u8"}, "path": "khan/partner-content/big-history-project/big-bang/how-did-big-bang-change/bhp-view-of-the-universe-change/", "duration": 662, "id": "P9lTAUtnreo", "title": "How Did Our View of the Universe Change?", "format": "mp4", "description": "Geocentric to heliocentric, and beyond. An overview of the major changes in the way people have viewed the Universe.", "slug": "bhp-view-of-the-universe-change", "kind": "Video", "video_id": "P9lTAUtnreo", "keywords": "", "youtube_id": "P9lTAUtnreo", "readable_id": "bhp-view-of-the-universe-change"}, "6D_yOm6bjkw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6D_yOm6bjkw.mp4/6D_yOm6bjkw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6D_yOm6bjkw.mp4/6D_yOm6bjkw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6D_yOm6bjkw.m3u8/6D_yOm6bjkw.m3u8"}, "path": "khan/test-prep/mcat/behavior/psychological-disorders/biological-basis-of-schizophrenia/", "duration": 818, "id": "6D_yOm6bjkw", "title": "Biological basis of schizophrenia", "format": "mp4", "description": "", "slug": "biological-basis-of-schizophrenia", "kind": "Video", "video_id": "6D_yOm6bjkw", "keywords": "", "youtube_id": "6D_yOm6bjkw", "readable_id": "biological-basis-of-schizophrenia"}, "n0DLSIOYBsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n0DLSIOYBsQ.mp4/n0DLSIOYBsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n0DLSIOYBsQ.mp4/n0DLSIOYBsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n0DLSIOYBsQ.m3u8/n0DLSIOYBsQ.m3u8"}, "duration": 372, "id": "n0DLSIOYBsQ", "title": "Pythagorean trig identity from unit circle", "format": "mp4", "description": "", "path": "khan/math/trigonometry/less-basic-trigonometry/pythagorean-identity/pythagorean-trig-identity-from-unit-circle/", "slug": "pythagorean-trig-identity-from-unit-circle", "kind": "Video", "video_id": "n0DLSIOYBsQ", "keywords": "", "youtube_id": "n0DLSIOYBsQ", "readable_id": "pythagorean-trig-identity-from-unit-circle"}, "ItW5CxLsLSo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ItW5CxLsLSo.mp4/ItW5CxLsLSo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ItW5CxLsLSo.mp4/ItW5CxLsLSo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ItW5CxLsLSo.m3u8/ItW5CxLsLSo.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-ex2-part-2-evaluating-integral/", "duration": 591, "id": "ItW5CxLsLSo", "title": "Surface integral ex2 part 2: Evaluating integral", "format": "mp4", "description": "Evaluating the surface integral", "slug": "surface-integral-ex2-part-2-evaluating-integral", "kind": "Video", "video_id": "ItW5CxLsLSo", "keywords": "surface, integral", "youtube_id": "ItW5CxLsLSo", "readable_id": "surface-integral-ex2-part-2-evaluating-integral"}, "WBWV_uvgC6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WBWV_uvgC6w.mp4/WBWV_uvgC6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WBWV_uvgC6w.mp4/WBWV_uvgC6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WBWV_uvgC6w.m3u8/WBWV_uvgC6w.m3u8"}, "duration": 648, "id": "WBWV_uvgC6w", "title": "GMAT: Math 29", "format": "mp4", "description": "148-153, pgs. 172-173", "path": "khan/test-prep/gmat/problem-solving/gmat-math-29/", "slug": "gmat-math-29", "kind": "Video", "video_id": "WBWV_uvgC6w", "keywords": "gmat, math, problem, solving", "youtube_id": "WBWV_uvgC6w", "readable_id": "gmat-math-29"}, "9E1cA3j_xY8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9E1cA3j_xY8.mp4/9E1cA3j_xY8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9E1cA3j_xY8.mp4/9E1cA3j_xY8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9E1cA3j_xY8.m3u8/9E1cA3j_xY8.m3u8"}, "path": "khan/humanities/art-1010/wwi-dada/dada1/hannah-h-ch-cut-with-the-kitchen-knife-1919-20/", "duration": 721, "id": "9E1cA3j_xY8", "title": "H\u00f6ch, Cut with the Kitchen Knife Dada Through the Last Weimar Beer-Belly Cultural Epoch of Germany", "format": "mp4", "description": "Hannah H\u00f6ch, Cut with the Kitchen Knife Dada Through the Last Weimar Beer-Belly Cultural Epoch of Germany, collage, mixed media, 1919-1920", "slug": "hannah-h-ch-cut-with-the-kitchen-knife-1919-20", "kind": "Video", "video_id": "9E1cA3j_xY8", "keywords": "Hannah H\u00f6ch, Dada, Photomontage, Cut with the Kitchen Knife, German art", "youtube_id": "9E1cA3j_xY8", "readable_id": "hannah-h-ch-cut-with-the-kitchen-knife-1919-20"}, "dNoeLF6I52s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dNoeLF6I52s.mp4/dNoeLF6I52s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dNoeLF6I52s.mp4/dNoeLF6I52s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dNoeLF6I52s.m3u8/dNoeLF6I52s.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/spain/vel-zquez-los-borrachos-the-drunks-1628-1629/", "duration": 288, "id": "dNoeLF6I52s", "title": "Vel\u00e1zquez Los Borrachos or the Triumph of Bacchus", "format": "mp4", "description": "Diego Rodr\u00edguez de Silva y Vel\u00e1zquez, Los Borrachos (The Drunks) or The Triumph of Bacchus, 1628-1629, 165 x 225 cm (Museo Nacional del Prado, Madrid). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "vel-zquez-los-borrachos-the-drunks-1628-1629", "kind": "Video", "video_id": "dNoeLF6I52s", "keywords": "art history, Smarthistory, Velazquez, Madrid, Prado, Spanish art, Baroque art", "youtube_id": "dNoeLF6I52s", "readable_id": "vel-zquez-los-borrachos-the-drunks-1628-1629"}, "rDjWrNRKfvg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rDjWrNRKfvg.mp4/rDjWrNRKfvg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rDjWrNRKfvg.mp4/rDjWrNRKfvg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rDjWrNRKfvg.m3u8/rDjWrNRKfvg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/liver/", "duration": 388, "id": "rDjWrNRKfvg", "title": "Liver", "format": "mp4", "description": "", "slug": "liver", "kind": "Video", "video_id": "rDjWrNRKfvg", "keywords": "MCAT", "youtube_id": "rDjWrNRKfvg", "readable_id": "liver"}, "zopoN2i7ALQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zopoN2i7ALQ.mp4/zopoN2i7ALQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zopoN2i7ALQ.mp4/zopoN2i7ALQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zopoN2i7ALQ.m3u8/zopoN2i7ALQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/myosin-and-actin/", "duration": 578, "id": "zopoN2i7ALQ", "title": "Myosin and actin", "format": "mp4", "description": "How myosin and actin interact to produce mechanical force. ", "slug": "myosin-and-actin", "kind": "Video", "video_id": "zopoN2i7ALQ", "keywords": "myosin, actin, muscle", "youtube_id": "zopoN2i7ALQ", "readable_id": "myosin-and-actin"}, "BM-My1AheLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BM-My1AheLw.mp4/BM-My1AheLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BM-My1AheLw.mp4/BM-My1AheLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BM-My1AheLw.m3u8/BM-My1AheLw.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/steric-number-sp3-hybridization/", "duration": 587, "id": "BM-My1AheLw", "title": "Steric number and sp3 hybridization", "format": "mp4", "description": "", "slug": "steric-number-sp3-hybridization", "kind": "Video", "video_id": "BM-My1AheLw", "keywords": "", "youtube_id": "BM-My1AheLw", "readable_id": "steric-number-sp3-hybridization"}, "Lru0vKmkzR8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lru0vKmkzR8.mp4/Lru0vKmkzR8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lru0vKmkzR8.mp4/Lru0vKmkzR8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lru0vKmkzR8.m3u8/Lru0vKmkzR8.m3u8"}, "duration": 594, "id": "Lru0vKmkzR8", "title": "Interest as rent for money", "format": "mp4", "description": "Thinking about interest as the price of money. Looking at money from a supply and demand perspective", "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/interest-price-of-money-tutorial/interest-as-rent-for-money/", "slug": "interest-as-rent-for-money", "kind": "Video", "video_id": "Lru0vKmkzR8", "keywords": "microeconomics, macroeconomics", "youtube_id": "Lru0vKmkzR8", "readable_id": "interest-as-rent-for-money"}, "36dg_h4gwNk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/36dg_h4gwNk.mp4/36dg_h4gwNk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/36dg_h4gwNk.mp4/36dg_h4gwNk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/36dg_h4gwNk.m3u8/36dg_h4gwNk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-emphysema/centriacinar-panacinar-emphysema/", "duration": 283, "id": "36dg_h4gwNk", "title": "Centriacinar emphysema vs panacinar emphysema", "format": "mp4", "description": "Centriacinar and panacinar are different classifications of disease emphysema based on the location of the damaged lung tissue. Learn how inflammation can give rise to centriacinar emphysema, and how a deficiency in alpha-1-antitrypsin can lead to panacinar emphysema.", "slug": "centriacinar-panacinar-emphysema", "kind": "Video", "video_id": "36dg_h4gwNk", "keywords": "", "youtube_id": "36dg_h4gwNk", "readable_id": "centriacinar-panacinar-emphysema"}, "Ot1We4_EfRE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ot1We4_EfRE.mp4/Ot1We4_EfRE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ot1We4_EfRE.mp4/Ot1We4_EfRE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ot1We4_EfRE.m3u8/Ot1We4_EfRE.m3u8"}, "duration": 573, "id": "Ot1We4_EfRE", "title": "ADH effects on blood pressure", "format": "mp4", "description": "See how ADH acts on blood vessels and the kidney to raise blood pressure. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/adh-effects-on-blood-pressure/", "slug": "adh-effects-on-blood-pressure", "kind": "Video", "video_id": "Ot1We4_EfRE", "keywords": "", "youtube_id": "Ot1We4_EfRE", "readable_id": "adh-effects-on-blood-pressure"}, "JAXyLhvZ-Vg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JAXyLhvZ-Vg.mp4/JAXyLhvZ-Vg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JAXyLhvZ-Vg.mp4/JAXyLhvZ-Vg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JAXyLhvZ-Vg.m3u8/JAXyLhvZ-Vg.m3u8"}, "duration": 620, "id": "JAXyLhvZ-Vg", "title": "Divergence 1", "format": "mp4", "description": "Introduction to the divergence of a vector field.", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/divergence/divergence-1/", "slug": "divergence-1", "kind": "Video", "video_id": "JAXyLhvZ-Vg", "keywords": "vector, field, divergence", "youtube_id": "JAXyLhvZ-Vg", "readable_id": "divergence-1"}, "lrIUaN_UKYs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lrIUaN_UKYs.mp4/lrIUaN_UKYs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lrIUaN_UKYs.mp4/lrIUaN_UKYs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lrIUaN_UKYs.m3u8/lrIUaN_UKYs.m3u8"}, "duration": 450, "id": "lrIUaN_UKYs", "title": "LED eyes", "format": "mp4", "description": "In this video we create and wire Bit-zee's tri-color LED eyes", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-eyes/", "slug": "bit-zee-s-eyes", "kind": "Video", "video_id": "lrIUaN_UKYs", "keywords": "Bottle cap, eyes, LEDs, Arduino, make, hack, diy, bit-zee", "youtube_id": "lrIUaN_UKYs", "readable_id": "bit-zee-s-eyes"}, "R0EQg9vgbQw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R0EQg9vgbQw.mp4/R0EQg9vgbQw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R0EQg9vgbQw.mp4/R0EQg9vgbQw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R0EQg9vgbQw.m3u8/R0EQg9vgbQw.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formula-proofs/proof-angle-addition-sine/", "duration": 506, "id": "R0EQg9vgbQw", "title": "Proof of angle addition formula for sine", "format": "mp4", "description": "", "slug": "proof-angle-addition-sine", "kind": "Video", "video_id": "R0EQg9vgbQw", "keywords": "", "youtube_id": "R0EQg9vgbQw", "readable_id": "proof-angle-addition-sine"}, "-QHff5pRdM8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-QHff5pRdM8.mp4/-QHff5pRdM8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-QHff5pRdM8.mp4/-QHff5pRdM8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-QHff5pRdM8.m3u8/-QHff5pRdM8.m3u8"}, "duration": 529, "id": "-QHff5pRdM8", "title": "Categorizing numbers", "format": "mp4", "description": "Learn how to classify numbers as whole numbers, integers, rational numbers, and irrational numbers.", "path": "categorizing-numbers/", "slug": "categorizing-numbers", "kind": "Video", "video_id": "-QHff5pRdM8", "keywords": "", "youtube_id": "-QHff5pRdM8", "readable_id": "categorizing-numbers"}, "STcsaKuW-24": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/STcsaKuW-24.mp4/STcsaKuW-24.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/STcsaKuW-24.mp4/STcsaKuW-24.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/STcsaKuW-24.m3u8/STcsaKuW-24.m3u8"}, "path": "khan/math/algebra/quadratics/factoring_quadratics/example-4-solving-a-quadratic-equation-by-factoring/", "duration": 501, "id": "STcsaKuW-24", "title": "Finding dimensions of triangle from area", "format": "mp4", "description": "Applications Problem Factoring Quadratics", "slug": "example-4-solving-a-quadratic-equation-by-factoring", "kind": "Video", "video_id": "STcsaKuW-24", "keywords": "u12_l3_t1_we3, Applications, Problem, Factoring, Quadratics, CC_39336_A-REI_4, CC_39336_A-SSE_3_a", "youtube_id": "STcsaKuW-24", "readable_id": "example-4-solving-a-quadratic-equation-by-factoring"}, "tUqyJgmGY7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tUqyJgmGY7k.mp4/tUqyJgmGY7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tUqyJgmGY7k.mp4/tUqyJgmGY7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tUqyJgmGY7k.m3u8/tUqyJgmGY7k.m3u8"}, "duration": 372, "id": "tUqyJgmGY7k", "title": "Euler line", "format": "mp4", "description": "The magic and mystery of the Euler Line", "path": "khan/math/geometry/triangle-properties/triangle_property_review/euler-line/", "slug": "euler-line", "kind": "Video", "video_id": "tUqyJgmGY7k", "keywords": "nine, point, circle", "youtube_id": "tUqyJgmGY7k", "readable_id": "euler-line"}, "5dlE_wobLoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5dlE_wobLoM.mp4/5dlE_wobLoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5dlE_wobLoM.mp4/5dlE_wobLoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5dlE_wobLoM.m3u8/5dlE_wobLoM.m3u8"}, "path": "khan/science/discoveries-projects/robots/all-about-spout/spout-current-reversing-switch/", "duration": 180, "id": "5dlE_wobLoM", "title": "Spout's reversing circuit and final assembly", "format": "mp4", "description": "", "slug": "spout-current-reversing-switch", "kind": "Video", "video_id": "5dlE_wobLoM", "keywords": "", "youtube_id": "5dlE_wobLoM", "readable_id": "spout-current-reversing-switch"}, "4PPMnI8-Zsc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4PPMnI8-Zsc.mp4/4PPMnI8-Zsc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4PPMnI8-Zsc.mp4/4PPMnI8-Zsc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4PPMnI8-Zsc.m3u8/4PPMnI8-Zsc.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-more-proofs/", "duration": 732, "id": "4PPMnI8-Zsc", "title": "CA Geometry: More proofs", "format": "mp4", "description": "7-10, more proofs (10 continued in next video)", "slug": "ca-geometry-more-proofs", "kind": "Video", "video_id": "4PPMnI8-Zsc", "keywords": "geometry, proofs", "youtube_id": "4PPMnI8-Zsc", "readable_id": "ca-geometry-more-proofs"}, "CJRQ8gOjq4E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CJRQ8gOjq4E.mp4/CJRQ8gOjq4E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CJRQ8gOjq4E.mp4/CJRQ8gOjq4E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CJRQ8gOjq4E.m3u8/CJRQ8gOjq4E.m3u8"}, "duration": 626, "id": "CJRQ8gOjq4E", "title": "Organic chemistry naming examples 2", "format": "mp4", "description": "Organic Chemistry Naming Examples 2", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/organic-chemistry-naming-examples-2/", "slug": "organic-chemistry-naming-examples-2", "kind": "Video", "video_id": "CJRQ8gOjq4E", "keywords": "Organic, Chemistry, Naming, Examples", "youtube_id": "CJRQ8gOjq4E", "readable_id": "organic-chemistry-naming-examples-2"}, "EblnaLMjdNg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EblnaLMjdNg.mp4/EblnaLMjdNg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EblnaLMjdNg.mp4/EblnaLMjdNg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EblnaLMjdNg.m3u8/EblnaLMjdNg.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/rococo/unlocking-18th-c-french-mechanical-table/", "duration": 160, "id": "EblnaLMjdNg", "title": "Unlocking an 18th-century French mechanical table", "format": "mp4", "description": "Discover how an affluent lady of 18th-century France may have used this ornate mechanical table for leisure and work. With a turn of a key, this table transforms into a desk with compartments. Learn about how it operates and its many features. Love art? Follow us on Google+", "slug": "unlocking-18th-c-french-mechanical-table", "kind": "Video", "video_id": "EblnaLMjdNg", "keywords": "", "youtube_id": "EblnaLMjdNg", "readable_id": "unlocking-18th-c-french-mechanical-table"}, "0-pHx5rKKqI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0-pHx5rKKqI.mp4/0-pHx5rKKqI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0-pHx5rKKqI.mp4/0-pHx5rKKqI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0-pHx5rKKqI.m3u8/0-pHx5rKKqI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/overview-of-sensation-and-meissners-corpuscles/", "duration": 483, "id": "0-pHx5rKKqI", "title": "Overview of Sensation and Meissner's Corpuscle", "format": "mp4", "description": "", "slug": "overview-of-sensation-and-meissners-corpuscles", "kind": "Video", "video_id": "0-pHx5rKKqI", "keywords": "", "youtube_id": "0-pHx5rKKqI", "readable_id": "overview-of-sensation-and-meissners-corpuscles"}, "EgtB1aF3MIU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EgtB1aF3MIU.mp4/EgtB1aF3MIU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EgtB1aF3MIU.mp4/EgtB1aF3MIU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EgtB1aF3MIU.m3u8/EgtB1aF3MIU.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-5-values-on-number-line/", "duration": 102, "id": "EgtB1aF3MIU", "title": "5 Values on number line", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-5-values-on-number-line", "kind": "Video", "video_id": "EgtB1aF3MIU", "keywords": "", "youtube_id": "EgtB1aF3MIU", "readable_id": "sat-5-values-on-number-line"}, "9h3IjkVNKYA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9h3IjkVNKYA.mp4/9h3IjkVNKYA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9h3IjkVNKYA.mp4/9h3IjkVNKYA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9h3IjkVNKYA.m3u8/9h3IjkVNKYA.m3u8"}, "duration": 142, "id": "9h3IjkVNKYA", "title": "\"Fine Dining\" with Chris Lightfoot", "format": "mp4", "description": "Met curator Chris Lightfoot on ancient luxuries in Silver spoon and fork dating from Imperial Rome.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "path": "fine-dining/", "slug": "fine-dining", "kind": "Video", "video_id": "9h3IjkVNKYA", "keywords": "daily life, decorative arts, ingenuity, metal, practicality, Europe", "youtube_id": "9h3IjkVNKYA", "readable_id": "fine-dining"}, "9_3OxtdqmqE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9_3OxtdqmqE.mp4/9_3OxtdqmqE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9_3OxtdqmqE.mp4/9_3OxtdqmqE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9_3OxtdqmqE.m3u8/9_3OxtdqmqE.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/proof-corresponding-angle-equivalence-implies-parallel-lines/", "duration": 318, "id": "9_3OxtdqmqE", "title": "Proof: Corresponding angle equivalence implies parallel lines", "format": "mp4", "description": "Proof by contradiction that corresponding angle equivalence implies parallel lines", "slug": "proof-corresponding-angle-equivalence-implies-parallel-lines", "kind": "Video", "video_id": "9_3OxtdqmqE", "keywords": "transversal", "youtube_id": "9_3OxtdqmqE", "readable_id": "proof-corresponding-angle-equivalence-implies-parallel-lines"}, "0njioQqIxKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0njioQqIxKY.mp4/0njioQqIxKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0njioQqIxKY.mp4/0njioQqIxKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0njioQqIxKY.m3u8/0njioQqIxKY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/add-and-subtract-fracs-pre-alg/subtracting-fractions-word-problem-1/", "duration": 184, "id": "0njioQqIxKY", "title": "Word problem: What fraction of an hour should the piano still be practiced?", "format": "mp4", "description": "Better get practicing, Pedro! You have exactly (a fraction) more of an hour to practice the piano.", "slug": "subtracting-fractions-word-problem-1", "kind": "Video", "video_id": "0njioQqIxKY", "keywords": "", "youtube_id": "0njioQqIxKY", "readable_id": "subtracting-fractions-word-problem-1"}, "4j13InegUPk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4j13InegUPk.mp4/4j13InegUPk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4j13InegUPk.mp4/4j13InegUPk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4j13InegUPk.m3u8/4j13InegUPk.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/william-holman-hunt-claudio-and-isabella-1850/", "duration": 288, "id": "4j13InegUPk", "title": "Hunt, Claudio and Isabella", "format": "mp4", "description": "William Holman Hunt, Claudio and Isabella, 1850, oil on mahogany, 758 x 426 x 10 mm (Tate Britain) From William Shakespeare's Measure for Measure, Act III, scene 1 (a room in a prison): ISABELLA What says my brother? CLAUDIO Death is a fearful thing. ISABELLA And shamed life a hateful. CLAUDIO Ay, but to die, and go we know not where; To lie in cold obstruction and to rot; This sensible warm motion to become A kneaded clod; and the delighted spirit To bathe in fiery floods, or to reside In thrilling region of thick-ribbed ice; To be imprison'd in the viewless winds, And blown with restless violence round about The pendent world; or to be worse than worst Of those that lawless and incertain thought Imagine howling: 'tis too horrible! The weariest and most loathed worldly life That age, ache, penury and imprisonment Can lay on nature is a paradise To what we fear of death. ISABELLA Alas, alas!", "slug": "william-holman-hunt-claudio-and-isabella-1850", "kind": "Video", "video_id": "4j13InegUPk", "keywords": "Hunt Claudio and Isabella, smarthistory, art history, Pre-Raphaelite, Tate Britain", "youtube_id": "4j13InegUPk", "readable_id": "william-holman-hunt-claudio-and-isabella-1850"}, "ZSESJ8TeGSI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZSESJ8TeGSI.mp4/ZSESJ8TeGSI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZSESJ8TeGSI.mp4/ZSESJ8TeGSI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZSESJ8TeGSI.m3u8/ZSESJ8TeGSI.m3u8"}, "duration": 596, "id": "ZSESJ8TeGSI", "title": "2003 AIME II problem 9", "format": "mp4", "description": "Sum of polynomial evaluated at roots of another polynomial", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-9/", "slug": "2003-aime-ii-problem-9", "kind": "Video", "video_id": "ZSESJ8TeGSI", "keywords": "polynomial, root, sums", "youtube_id": "ZSESJ8TeGSI", "readable_id": "2003-aime-ii-problem-9"}, "wluZFFkJ2io": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wluZFFkJ2io.mp4/wluZFFkJ2io.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wluZFFkJ2io.mp4/wluZFFkJ2io.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wluZFFkJ2io.m3u8/wluZFFkJ2io.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/mortgages-tutorial/hybrid-arm/", "duration": 298, "id": "wluZFFkJ2io", "title": "Hybrid ARM", "format": "mp4", "description": "", "slug": "hybrid-arm", "kind": "Video", "video_id": "wluZFFkJ2io", "keywords": "", "youtube_id": "wluZFFkJ2io", "readable_id": "hybrid-arm"}, "qrxvbRA2xCI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qrxvbRA2xCI.mp4/qrxvbRA2xCI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qrxvbRA2xCI.mp4/qrxvbRA2xCI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qrxvbRA2xCI.m3u8/qrxvbRA2xCI.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/gale-crater/", "duration": 157, "id": "qrxvbRA2xCI", "title": "Destination: Gale crater", "format": "mp4", "description": "Details on the landing site: Gale Crater", "slug": "gale-crater", "kind": "Video", "video_id": "qrxvbRA2xCI", "keywords": "", "youtube_id": "qrxvbRA2xCI", "readable_id": "gale-crater"}, "TugWqiUjOU4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TugWqiUjOU4.mp4/TugWqiUjOU4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TugWqiUjOU4.mp4/TugWqiUjOU4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TugWqiUjOU4.m3u8/TugWqiUjOU4.m3u8"}, "duration": 307, "id": "TugWqiUjOU4", "title": "Example with trig functions and ratios", "format": "mp4", "description": "", "path": "khan/math/trigonometry/basic-trigonometry/cc-trig-ratios-similarity/example-with-trig-functions-and-ratios/", "slug": "example-with-trig-functions-and-ratios", "kind": "Video", "video_id": "TugWqiUjOU4", "keywords": "", "youtube_id": "TugWqiUjOU4", "readable_id": "example-with-trig-functions-and-ratios"}, "m44llkkWI0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m44llkkWI0g.mp4/m44llkkWI0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m44llkkWI0g.mp4/m44llkkWI0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m44llkkWI0g.m3u8/m44llkkWI0g.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-19/", "duration": 783, "id": "m44llkkWI0g", "title": "GMAT: Math 19", "format": "mp4", "description": "100-105, pg. 165", "slug": "gmat-math-19", "kind": "Video", "video_id": "m44llkkWI0g", "keywords": "gmat, math, problem, solving", "youtube_id": "m44llkkWI0g", "readable_id": "gmat-math-19"}, "RSMtgI8yyfg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RSMtgI8yyfg.mp4/RSMtgI8yyfg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RSMtgI8yyfg.mp4/RSMtgI8yyfg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RSMtgI8yyfg.m3u8/RSMtgI8yyfg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pulmonary-hypertension/pulmonary-hypertension-treatment/", "duration": 429, "id": "RSMtgI8yyfg", "title": "Pulmonary hypertension treatment", "format": "mp4", "description": "", "slug": "pulmonary-hypertension-treatment", "kind": "Video", "video_id": "RSMtgI8yyfg", "keywords": "", "youtube_id": "RSMtgI8yyfg", "readable_id": "pulmonary-hypertension-treatment"}, "92aLiyeQj0w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/92aLiyeQj0w.mp4/92aLiyeQj0w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/92aLiyeQj0w.mp4/92aLiyeQj0w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/92aLiyeQj0w.m3u8/92aLiyeQj0w.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/angle_basics/measuring-angles-in-degrees/", "duration": 502, "id": "92aLiyeQj0w", "title": "Measuring angles in degrees", "format": "mp4", "description": "Let's come up with an exact way to measure an angle using a protractor. We'll also learn about acute angles. Not to be confused with augly angles :)", "slug": "measuring-angles-in-degrees", "kind": "Video", "video_id": "92aLiyeQj0w", "keywords": "geometry, degrees, angles", "youtube_id": "92aLiyeQj0w", "readable_id": "measuring-angles-in-degrees"}, "P0nMnPPdW_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P0nMnPPdW_k.mp4/P0nMnPPdW_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P0nMnPPdW_k.mp4/P0nMnPPdW_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P0nMnPPdW_k.m3u8/P0nMnPPdW_k.m3u8"}, "path": "khan/science/biology/her/heredity-and-genetics/alleles-and-genes/", "duration": 498, "id": "P0nMnPPdW_k", "title": "Alleles and genes", "format": "mp4", "description": "", "slug": "alleles-and-genes", "kind": "Video", "video_id": "P0nMnPPdW_k", "keywords": "", "youtube_id": "P0nMnPPdW_k", "readable_id": "alleles-and-genes"}, "Vh70PyitQzo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vh70PyitQzo.mp4/Vh70PyitQzo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vh70PyitQzo.mp4/Vh70PyitQzo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vh70PyitQzo.m3u8/Vh70PyitQzo.m3u8"}, "duration": 186, "id": "Vh70PyitQzo", "title": "Concave lenses", "format": "mp4", "description": "Concave Lenses", "path": "khan/test-prep/mcat/physical-processes/thin-lenses/concave-lenses/", "slug": "concave-lenses", "kind": "Video", "video_id": "Vh70PyitQzo", "keywords": "Concave, Lenses, Optics", "youtube_id": "Vh70PyitQzo", "readable_id": "concave-lenses"}, "VJgVdzicv_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VJgVdzicv_I.mp4/VJgVdzicv_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VJgVdzicv_I.mp4/VJgVdzicv_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VJgVdzicv_I.m3u8/VJgVdzicv_I.m3u8"}, "duration": 541, "id": "VJgVdzicv_I", "title": "Simple fractional reserve accounting (part 1)", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/factional-reserve-accounting/simple-fractional-reserve-accounting-part-1/", "slug": "simple-fractional-reserve-accounting-part-1", "kind": "Video", "video_id": "VJgVdzicv_I", "keywords": "Simple, Fractional, Reserve, Accounting, part, 1", "youtube_id": "VJgVdzicv_I", "readable_id": "simple-fractional-reserve-accounting-part-1"}, "HvYUKRMT0VI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HvYUKRMT0VI.mp4/HvYUKRMT0VI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HvYUKRMT0VI.mp4/HvYUKRMT0VI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HvYUKRMT0VI.m3u8/HvYUKRMT0VI.m3u8"}, "path": "khan/science/physics/thermodynamics/thermodynamics-part-3/", "duration": 624, "id": "HvYUKRMT0VI", "title": "Thermodynamics (part 3)", "format": "mp4", "description": "Introduction to Kelvin. Example of a problem involving the ideal gas law", "slug": "thermodynamics-part-3", "kind": "Video", "video_id": "HvYUKRMT0VI", "keywords": "physics, chemistry, thermodynamics, kelvin, temperature, ideal, gas, law", "youtube_id": "HvYUKRMT0VI", "readable_id": "thermodynamics-part-3"}, "udbZ-jPasGs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/udbZ-jPasGs.mp4/udbZ-jPasGs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/udbZ-jPasGs.mp4/udbZ-jPasGs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/udbZ-jPasGs.m3u8/udbZ-jPasGs.m3u8"}, "duration": 150, "id": "udbZ-jPasGs", "title": "\"Line\" with Sheila Canby", "format": "mp4", "description": "Met curator Sheila Canby on the economy of line in Groom and Rider from Tabriz, Iran.\n\nThe subject of horseman and groom is common in Safavid art. The rider\u2019s handsome appearance and elegant posture embody the ideal of youthful beauty, while the groom\u2019s sprightly step and animated expression add liveliness to the drawing. Although the minimal ornamentation suggests that this was a preliminary sketch, the precision of the line and the attention to texture allow it to stand on its own as a finished work.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a\u00a0related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "path": "line/", "slug": "line", "kind": "Video", "video_id": "udbZ-jPasGs", "keywords": "book, confidence, control, drawing, paper, simplicity, writing, Middle East", "youtube_id": "udbZ-jPasGs", "readable_id": "line"}, "8AkQvv-uceg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8AkQvv-uceg.mp4/8AkQvv-uceg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8AkQvv-uceg.mp4/8AkQvv-uceg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8AkQvv-uceg.m3u8/8AkQvv-uceg.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-6-19/", "duration": 200, "id": "8AkQvv-uceg", "title": "19 True statements based on constraints", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-19", "kind": "Video", "video_id": "8AkQvv-uceg", "keywords": "", "youtube_id": "8AkQvv-uceg", "readable_id": "sat-2010-may-6-19"}, "yX3JpmEgNHo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yX3JpmEgNHo.mp4/yX3JpmEgNHo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yX3JpmEgNHo.mp4/yX3JpmEgNHo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yX3JpmEgNHo.m3u8/yX3JpmEgNHo.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-4d/", "duration": 346, "id": "yX3JpmEgNHo", "title": "2011 Calculus AB free response #4d", "format": "mp4", "description": "Mean Value Theorem and differentiability", "slug": "2011-calculus-ab-free-response-4d", "kind": "Video", "video_id": "yX3JpmEgNHo", "keywords": "AP, advanced, placement, calculus", "youtube_id": "yX3JpmEgNHo", "readable_id": "2011-calculus-ab-free-response-4d"}, "tOuCdKqO6-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tOuCdKqO6-s.mp4/tOuCdKqO6-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tOuCdKqO6-s.mp4/tOuCdKqO6-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tOuCdKqO6-s.m3u8/tOuCdKqO6-s.m3u8"}, "path": "khan/math/pre-algebra/exponents-radicals/negative-exponents-tutorial/zero-negative-and-fractional-exponents/", "duration": 844, "id": "tOuCdKqO6-s", "title": "Zero, negative, and fractional exponents", "format": "mp4", "description": "Zero, Negative, and Fractional Exponents", "slug": "zero-negative-and-fractional-exponents", "kind": "Video", "video_id": "tOuCdKqO6-s", "keywords": "Zero, Negative, and, Fractional, Exponents, CC_39336_A-SSE_3_c", "youtube_id": "tOuCdKqO6-s", "readable_id": "zero-negative-and-fractional-exponents"}, "aYqq79xS8rk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aYqq79xS8rk.mp4/aYqq79xS8rk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aYqq79xS8rk.mp4/aYqq79xS8rk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aYqq79xS8rk.m3u8/aYqq79xS8rk.m3u8"}, "duration": 155, "id": "aYqq79xS8rk", "title": "\"French Dressing\" with Harold Koda", "format": "mp4", "description": "Met curator Harold Koda on the genius of design in Paul Poiret\u2019s Paris.\n\nView this work on metmuseum.org.\n", "path": "frenchdressing/", "slug": "frenchdressing", "kind": "Video", "video_id": "aYqq79xS8rk", "keywords": "body, costume, fashion, ingenuity, simplicity, textile, Europe", "youtube_id": "aYqq79xS8rk", "readable_id": "frenchdressing"}, "Ad0aaYixFJg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ad0aaYixFJg.mp4/Ad0aaYixFJg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ad0aaYixFJg.mp4/Ad0aaYixFJg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ad0aaYixFJg.m3u8/Ad0aaYixFJg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/experimental-determination-of-rate-laws/", "duration": 748, "id": "Ad0aaYixFJg", "title": "Experimental determination of rate laws", "format": "mp4", "description": "", "slug": "experimental-determination-of-rate-laws", "kind": "Video", "video_id": "Ad0aaYixFJg", "keywords": "", "youtube_id": "Ad0aaYixFJg", "readable_id": "experimental-determination-of-rate-laws"}, "N-mt2tiRJ7U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N-mt2tiRJ7U.mp4/N-mt2tiRJ7U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N-mt2tiRJ7U.mp4/N-mt2tiRJ7U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N-mt2tiRJ7U.m3u8/N-mt2tiRJ7U.m3u8"}, "path": "khan/humanities/art-1010/pop/oldenburg-floor-cake-1962/", "duration": 210, "id": "N-mt2tiRJ7U", "title": "Oldenburg, Floor Cake", "format": "mp4", "description": "Claes Oldenburg, Floor Cake, 1962, synthetic polymer paint and latex on canvas filled with foam rubber and cardboard boxes, 58.375 x 114.25 x 58.375 in. (148.2 x 290.2 x 148.2 cm) (MoMA) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "oldenburg-floor-cake-1962", "kind": "Video", "video_id": "N-mt2tiRJ7U", "keywords": "Oldenburg, Cake, Smartistory, Art History, Pop Art", "youtube_id": "N-mt2tiRJ7U", "readable_id": "oldenburg-floor-cake-1962"}, "zntNi3-ybfQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zntNi3-ybfQ.mp4/zntNi3-ybfQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zntNi3-ybfQ.mp4/zntNi3-ybfQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zntNi3-ybfQ.m3u8/zntNi3-ybfQ.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/subspace_basis/linear-algebra-basis-of-a-subspace/", "duration": 1140, "id": "zntNi3-ybfQ", "title": "Basis of a subspace", "format": "mp4", "description": "Understanding the definition of a basis of a subspace", "slug": "linear-algebra-basis-of-a-subspace", "kind": "Video", "video_id": "zntNi3-ybfQ", "keywords": "Linear, Algebra, Vectors, span, combination, basis, subspace", "youtube_id": "zntNi3-ybfQ", "readable_id": "linear-algebra-basis-of-a-subspace"}, "aAfMps_VyOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aAfMps_VyOY.mp4/aAfMps_VyOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aAfMps_VyOY.mp4/aAfMps_VyOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aAfMps_VyOY.m3u8/aAfMps_VyOY.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/housing-price-conundrum-part-3/", "duration": 588, "id": "aAfMps_VyOY", "title": "Housing price conundrum (part 3)", "format": "mp4", "description": "Why did lending standards become more and more lax from 2000 to 2006?", "slug": "housing-price-conundrum-part-3", "kind": "Video", "video_id": "aAfMps_VyOY", "keywords": "economics, housing, prices, lending, standards, appreciation, bubble", "youtube_id": "aAfMps_VyOY", "readable_id": "housing-price-conundrum-part-3"}, "tp_qdvgXtVc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tp_qdvgXtVc.mp4/tp_qdvgXtVc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tp_qdvgXtVc.mp4/tp_qdvgXtVc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tp_qdvgXtVc.m3u8/tp_qdvgXtVc.m3u8"}, "duration": 738, "id": "tp_qdvgXtVc", "title": "Pulmonary TB", "format": "mp4", "description": "Learn the effects that TB has on the lungs and some important clinical clues.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/pulmonary-tb/", "slug": "pulmonary-tb", "kind": "Video", "video_id": "tp_qdvgXtVc", "keywords": "", "youtube_id": "tp_qdvgXtVc", "readable_id": "pulmonary-tb"}, "XmswXY1IoMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XmswXY1IoMk.mp4/XmswXY1IoMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XmswXY1IoMk.mp4/XmswXY1IoMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XmswXY1IoMk.m3u8/XmswXY1IoMk.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2009-may-3-01/", "duration": 38, "id": "XmswXY1IoMk", "title": "1 Student spending", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-01", "kind": "Video", "video_id": "XmswXY1IoMk", "keywords": "", "youtube_id": "XmswXY1IoMk", "readable_id": "sat-2009-may-3-01"}, "tGOjNzOQZek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tGOjNzOQZek.mp4/tGOjNzOQZek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tGOjNzOQZek.mp4/tGOjNzOQZek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tGOjNzOQZek.m3u8/tGOjNzOQZek.m3u8"}, "duration": 131, "id": "tGOjNzOQZek", "title": "\"Girl Before a Mirror\" by Pablo Picasso, 1932 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how she teaches \"Girl Before a Mirror\" by Pablo Picasso, 1932.\u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-picasso/", "slug": "teaching-picasso", "kind": "Video", "video_id": "tGOjNzOQZek", "keywords": "", "youtube_id": "tGOjNzOQZek", "readable_id": "teaching-picasso"}, "X1bmedVziGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X1bmedVziGw.mp4/X1bmedVziGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X1bmedVziGw.mp4/X1bmedVziGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X1bmedVziGw.m3u8/X1bmedVziGw.m3u8"}, "duration": 624, "id": "X1bmedVziGw", "title": "Mitosis: Splitting up is complicated", "format": "mp4", "description": "Hank describes mitosis and cytokinesis - the series of processes our cells go through to divide into two identical copies.", "path": "crash-course-biology-112a/", "slug": "crash-course-biology-112a", "kind": "Video", "video_id": "X1bmedVziGw", "keywords": "", "youtube_id": "X1bmedVziGw", "readable_id": "crash-course-biology-112a"}, "Se-ekDNhCDk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Se-ekDNhCDk.mp4/Se-ekDNhCDk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Se-ekDNhCDk.mp4/Se-ekDNhCDk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Se-ekDNhCDk.m3u8/Se-ekDNhCDk.m3u8"}, "duration": 491, "id": "Se-ekDNhCDk", "title": "Organic chemistry naming examples 3", "format": "mp4", "description": "Organic Chemistry Naming Examples 3", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/organic-chemistry-naming-examples-3/", "slug": "organic-chemistry-naming-examples-3", "kind": "Video", "video_id": "Se-ekDNhCDk", "keywords": "Organic, Chemistry, Naming, Examples", "youtube_id": "Se-ekDNhCDk", "readable_id": "organic-chemistry-naming-examples-3"}, "_60sKaoRmhU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_60sKaoRmhU.mp4/_60sKaoRmhU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_60sKaoRmhU.mp4/_60sKaoRmhU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_60sKaoRmhU.m3u8/_60sKaoRmhU.m3u8"}, "duration": 1128, "id": "_60sKaoRmhU", "title": "Introduction to the line integral", "format": "mp4", "description": "Introduction to the Line Integral", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals/introduction-to-the-line-integral/", "slug": "introduction-to-the-line-integral", "kind": "Video", "video_id": "_60sKaoRmhU", "keywords": "line, integral, calculus", "youtube_id": "_60sKaoRmhU", "readable_id": "introduction-to-the-line-integral"}, "nQ7QSV4JRSs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nQ7QSV4JRSs.mp4/nQ7QSV4JRSs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nQ7QSV4JRSs.mp4/nQ7QSV4JRSs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nQ7QSV4JRSs.m3u8/nQ7QSV4JRSs.m3u8"}, "duration": 410, "id": "nQ7QSV4JRSs", "title": "Alcohols", "format": "mp4", "description": "Naming alcohols", "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/alcohol-nomenclature-properties/alcohols/", "slug": "alcohols", "kind": "Video", "video_id": "nQ7QSV4JRSs", "keywords": "naming, alcohols, organic, chemistry", "youtube_id": "nQ7QSV4JRSs", "readable_id": "alcohols"}, "RD_Mh_SDz3s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RD_Mh_SDz3s.mp4/RD_Mh_SDz3s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RD_Mh_SDz3s.mp4/RD_Mh_SDz3s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RD_Mh_SDz3s.m3u8/RD_Mh_SDz3s.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/giorgione-three-philosophers/", "duration": 259, "id": "RD_Mh_SDz3s", "title": "Giorgione, Three Philosophers", "format": "mp4", "description": "Giorgione, Three Philosophers, c. 1506 (Kunsthistorisches Museum, Vienna) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "giorgione-three-philosophers", "kind": "Video", "video_id": "RD_Mh_SDz3s", "keywords": "", "youtube_id": "RD_Mh_SDz3s", "readable_id": "giorgione-three-philosophers"}, "q7eF5Ci944U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q7eF5Ci944U.mp4/q7eF5Ci944U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q7eF5Ci944U.mp4/q7eF5Ci944U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q7eF5Ci944U.m3u8/q7eF5Ci944U.m3u8"}, "duration": 417, "id": "q7eF5Ci944U", "title": "Perpendicular radius bisects chord", "format": "mp4", "description": "Simple proof using RSH postulate to show that a radius perpendicular to a chord bisects it", "path": "khan/math/geometry/cc-geometry-circles/area-inscribed-triangle/perpendicular-radius-bisects-chord/", "slug": "perpendicular-radius-bisects-chord", "kind": "Video", "video_id": "q7eF5Ci944U", "keywords": "geometry", "youtube_id": "q7eF5Ci944U", "readable_id": "perpendicular-radius-bisects-chord"}, "368K0iQv8nE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/368K0iQv8nE.mp4/368K0iQv8nE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/368K0iQv8nE.mp4/368K0iQv8nE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/368K0iQv8nE.m3u8/368K0iQv8nE.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/spitzer_telescope/", "duration": 383, "id": "368K0iQv8nE", "title": "Spitzer telescope", "format": "mp4", "description": "400 years of Astronomy using Telescopes. To commemorate this International Year of Astronomy, three of NASA's flagship observatories have put a new spin on how we see the Pinwheel Galaxy!", "slug": "spitzer_telescope", "kind": "Video", "video_id": "368K0iQv8nE", "keywords": "", "youtube_id": "368K0iQv8nE", "readable_id": "spitzer_telescope"}, "XAW9d3XU3qI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XAW9d3XU3qI.mp4/XAW9d3XU3qI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XAW9d3XU3qI.mp4/XAW9d3XU3qI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XAW9d3XU3qI.m3u8/XAW9d3XU3qI.m3u8"}, "duration": 300, "id": "XAW9d3XU3qI", "title": "How many truffle eating guests attended a party", "format": "mp4", "description": "Solve a two-step word problem by drawing a picture and creating an equation.", "path": "how-many-truffle-eating-guests-attended-a-party/", "slug": "how-many-truffle-eating-guests-attended-a-party", "kind": "Video", "video_id": "XAW9d3XU3qI", "keywords": "", "youtube_id": "XAW9d3XU3qI", "readable_id": "how-many-truffle-eating-guests-attended-a-party"}, "uzvopM4PZLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uzvopM4PZLw.mp4/uzvopM4PZLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uzvopM4PZLw.mp4/uzvopM4PZLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uzvopM4PZLw.m3u8/uzvopM4PZLw.m3u8"}, "duration": 273, "id": "uzvopM4PZLw", "title": "The fundamental theorem of arithmetic", "format": "mp4", "description": "Ben Eater and Sal walk through the \"Fundamental theorem of arithmetic\" module: http://www.khanacademy.org/math/arithmetic/factors-multiples/e/the_fundamental_theorem_of_arithmetic", "path": "khan/math/pre-algebra/factors-multiples/prime_factorization/the-fundamental-theorem-of-arithmetic/", "slug": "the-fundamental-theorem-of-arithmetic", "kind": "Video", "video_id": "uzvopM4PZLw", "keywords": "fundamental, theorem, of, arithmetic", "youtube_id": "uzvopM4PZLw", "readable_id": "the-fundamental-theorem-of-arithmetic"}, "_0TqG8-N8DI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_0TqG8-N8DI.mp4/_0TqG8-N8DI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_0TqG8-N8DI.mp4/_0TqG8-N8DI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_0TqG8-N8DI.m3u8/_0TqG8-N8DI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/oxidation-of-aldehydes-using-tollens-reagent/", "duration": 561, "id": "_0TqG8-N8DI", "title": "Oxidation of aldehydes using Tollens' reagent", "format": "mp4", "description": "", "slug": "oxidation-of-aldehydes-using-tollens-reagent", "kind": "Video", "video_id": "_0TqG8-N8DI", "keywords": "", "youtube_id": "_0TqG8-N8DI", "readable_id": "oxidation-of-aldehydes-using-tollens-reagent"}, "qD6ct0VS15c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qD6ct0VS15c.mp4/qD6ct0VS15c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qD6ct0VS15c.mp4/qD6ct0VS15c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qD6ct0VS15c.m3u8/qD6ct0VS15c.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/titian-venus-of-urbino-1538/", "duration": 242, "id": "qD6ct0VS15c", "title": "Titian, Venus of Urbino", "format": "mp4", "description": "Titian, Venus of Urbino, 1538, oil on canvas, 119.20 x 165.50 cm (Galleria degli Uffizi, Florence)", "slug": "titian-venus-of-urbino-1538", "kind": "Video", "video_id": "qD6ct0VS15c", "keywords": "Art History, Renaissance, Venice, Venetian Art, Khan Academy, Tiziano, Nude, Titian, Venus, Urbino, smarthistory, Google Art Project, OER, Uffizi", "youtube_id": "qD6ct0VS15c", "readable_id": "titian-venus-of-urbino-1538"}, "Iya-2bS14ho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iya-2bS14ho.mp4/Iya-2bS14ho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iya-2bS14ho.mp4/Iya-2bS14ho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iya-2bS14ho.m3u8/Iya-2bS14ho.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system/rn-the-respiratory-system/thermoregulation-in-the-lungs/", "duration": 293, "id": "Iya-2bS14ho", "title": "Thermoregulation in the lungs", "format": "mp4", "description": "", "slug": "thermoregulation-in-the-lungs", "kind": "Video", "video_id": "Iya-2bS14ho", "keywords": "MCAT", "youtube_id": "Iya-2bS14ho", "readable_id": "thermoregulation-in-the-lungs"}, "hKkBlcnU9pw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hKkBlcnU9pw.mp4/hKkBlcnU9pw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hKkBlcnU9pw.mp4/hKkBlcnU9pw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hKkBlcnU9pw.m3u8/hKkBlcnU9pw.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/abs-value-pre-alg/comparing-absolute-values/", "duration": 247, "id": "hKkBlcnU9pw", "title": "Comparing absolute values", "format": "mp4", "description": "When we compare numbers we use the concepts of greater than (>), less than (<), and equal to (=). The same is true of absolute values.", "slug": "comparing-absolute-values", "kind": "Video", "video_id": "hKkBlcnU9pw", "keywords": "finance, education, absolute, values", "youtube_id": "hKkBlcnU9pw", "readable_id": "comparing-absolute-values"}, "Jh4UsA2see0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jh4UsA2see0.mp4/Jh4UsA2see0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jh4UsA2see0.mp4/Jh4UsA2see0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jh4UsA2see0.m3u8/Jh4UsA2see0.m3u8"}, "duration": 582, "id": "Jh4UsA2see0", "title": "Ecosystem ecology: Links in the chain", "format": "mp4", "description": "", "path": "crash-course-ecology-07/", "slug": "crash-course-ecology-07", "kind": "Video", "video_id": "Jh4UsA2see0", "keywords": "", "youtube_id": "Jh4UsA2see0", "readable_id": "crash-course-ecology-07"}, "I-uzVCJCRpE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I-uzVCJCRpE.mp4/I-uzVCJCRpE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I-uzVCJCRpE.mp4/I-uzVCJCRpE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I-uzVCJCRpE.m3u8/I-uzVCJCRpE.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/beta-lactam-antibiotics/", "duration": 554, "id": "I-uzVCJCRpE", "title": "Beta-lactam antibiotics", "format": "mp4", "description": "The mechanism of action of beta-lactam antibiotics", "slug": "beta-lactam-antibiotics", "kind": "Video", "video_id": "I-uzVCJCRpE", "keywords": "", "youtube_id": "I-uzVCJCRpE", "readable_id": "beta-lactam-antibiotics"}, "QnWQezGy1Tc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QnWQezGy1Tc.mp4/QnWQezGy1Tc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QnWQezGy1Tc.mp4/QnWQezGy1Tc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QnWQezGy1Tc.m3u8/QnWQezGy1Tc.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/14-apparel-manufacturers/", "duration": 58, "id": "QnWQezGy1Tc", "title": "14 Apparel manufacturers", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "14-apparel-manufacturers", "kind": "Video", "video_id": "QnWQezGy1Tc", "keywords": "", "youtube_id": "QnWQezGy1Tc", "readable_id": "14-apparel-manufacturers"}, "GZ1ogxruLJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GZ1ogxruLJM.mp4/GZ1ogxruLJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GZ1ogxruLJM.mp4/GZ1ogxruLJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GZ1ogxruLJM.m3u8/GZ1ogxruLJM.m3u8"}, "duration": 589, "id": "GZ1ogxruLJM", "title": "Figuring out coordinate of bended figure using trig", "format": "mp4", "description": "", "path": "khan/math/trigonometry/basic-trigonometry/trig-application-problems/figuring-out-coordinate-of-bended-figure-using-trig/", "slug": "figuring-out-coordinate-of-bended-figure-using-trig", "kind": "Video", "video_id": "GZ1ogxruLJM", "keywords": "", "youtube_id": "GZ1ogxruLJM", "readable_id": "figuring-out-coordinate-of-bended-figure-using-trig"}, "kJIqoTw_Og8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kJIqoTw_Og8.mp4/kJIqoTw_Og8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kJIqoTw_Og8.mp4/kJIqoTw_Og8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kJIqoTw_Og8.m3u8/kJIqoTw_Og8.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/comparing_linear_functions/comparing-features-of-functions-6/", "duration": 226, "id": "kJIqoTw_Og8", "title": "Comparing linear functions word problems 3", "format": "mp4", "description": "", "slug": "comparing-features-of-functions-6", "kind": "Video", "video_id": "kJIqoTw_Og8", "keywords": "", "youtube_id": "kJIqoTw_Og8", "readable_id": "comparing-features-of-functions-6"}, "03yq7XsErqo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/03yq7XsErqo.mp4/03yq7XsErqo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/03yq7XsErqo.mp4/03yq7XsErqo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/03yq7XsErqo.m3u8/03yq7XsErqo.m3u8"}, "duration": 69, "id": "03yq7XsErqo", "title": "Evaluating a polynomial at a given value", "format": "mp4", "description": "Evaluating a polynomial at a given value", "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/evaluating-a-polynomial-at-a-given-value/", "slug": "evaluating-a-polynomial-at-a-given-value", "kind": "Video", "video_id": "03yq7XsErqo", "keywords": "u11_l2_t1_we2, Evaluating, polynomial, at, given, value, CC_39336_A-REI_4", "youtube_id": "03yq7XsErqo", "readable_id": "evaluating-a-polynomial-at-a-given-value"}, "7D6urvlVjJ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7D6urvlVjJ4.mp4/7D6urvlVjJ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7D6urvlVjJ4.mp4/7D6urvlVjJ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7D6urvlVjJ4.m3u8/7D6urvlVjJ4.m3u8"}, "duration": 331, "id": "7D6urvlVjJ4", "title": "Khan Academy at Marlborough School", "format": "mp4", "description": "", "path": "marlborough/", "slug": "marlborough", "kind": "Video", "video_id": "7D6urvlVjJ4", "keywords": "Marlborough", "youtube_id": "7D6urvlVjJ4", "readable_id": "marlborough"}, "c9LwwQK5588": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c9LwwQK5588.mp4/c9LwwQK5588.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c9LwwQK5588.mp4/c9LwwQK5588.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c9LwwQK5588.m3u8/c9LwwQK5588.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/types-of-diabetes/", "duration": 358, "id": "c9LwwQK5588", "title": "Types of diabetes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "types-of-diabetes", "kind": "Video", "video_id": "c9LwwQK5588", "keywords": "", "youtube_id": "c9LwwQK5588", "readable_id": "types-of-diabetes"}, "KzZF1lP4Rbk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KzZF1lP4Rbk.mp4/KzZF1lP4Rbk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KzZF1lP4Rbk.mp4/KzZF1lP4Rbk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KzZF1lP4Rbk.m3u8/KzZF1lP4Rbk.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/phidias-parthenon-frieze-c-438-32-b-c-e/", "duration": 322, "id": "KzZF1lP4Rbk", "title": "Parthenon frieze", "format": "mp4", "description": "Phidias(?), Parthenon Frieze, c. 438-32 B.C.E., pentelic marble, Classical Period (420 linear feet of the 525 that complete the frieze are in the British Museum). \n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "phidias-parthenon-frieze-c-438-32-b-c-e", "kind": "Video", "video_id": "KzZF1lP4Rbk", "keywords": "parthenon, elgin marbles, british museum, art history, history of art, frieze, pan-athenaic procession, athens", "youtube_id": "KzZF1lP4Rbk", "readable_id": "phidias-parthenon-frieze-c-438-32-b-c-e"}, "uL3grek6D54": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uL3grek6D54.mp4/uL3grek6D54.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uL3grek6D54.mp4/uL3grek6D54.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uL3grek6D54.m3u8/uL3grek6D54.m3u8"}, "path": "khan/test-prep/mcat/behavior/psychological-disorders/biological-basis-of-parkinsons-disease/", "duration": 466, "id": "uL3grek6D54", "title": "Biological basis of parkinson's disease", "format": "mp4", "description": "", "slug": "biological-basis-of-parkinsons-disease", "kind": "Video", "video_id": "uL3grek6D54", "keywords": "", "youtube_id": "uL3grek6D54", "readable_id": "biological-basis-of-parkinsons-disease"}, "ourH3ueWNmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ourH3ueWNmA.mp4/ourH3ueWNmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ourH3ueWNmA.mp4/ourH3ueWNmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ourH3ueWNmA.m3u8/ourH3ueWNmA.m3u8"}, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-teens/teens-and-ten/", "duration": 180, "id": "ourH3ueWNmA", "title": "Teens as sums with 10", "format": "mp4", "description": "", "slug": "teens-and-ten", "kind": "Video", "video_id": "ourH3ueWNmA", "keywords": "", "youtube_id": "ourH3ueWNmA", "readable_id": "teens-and-ten"}, "gdE46YSedvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gdE46YSedvE.mp4/gdE46YSedvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gdE46YSedvE.mp4/gdE46YSedvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gdE46YSedvE.m3u8/gdE46YSedvE.m3u8"}, "duration": 439, "id": "gdE46YSedvE", "title": "Frequency tables and dot plots", "format": "mp4", "description": "In this video, we organize data into frequency tables and dot plots (sometimes called line plots).", "path": "frequency-tables-and-dot-plots/", "slug": "frequency-tables-and-dot-plots", "kind": "Video", "video_id": "gdE46YSedvE", "keywords": "", "youtube_id": "gdE46YSedvE", "readable_id": "frequency-tables-and-dot-plots"}, "1Y39f7MAL5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1Y39f7MAL5I.mp4/1Y39f7MAL5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1Y39f7MAL5I.mp4/1Y39f7MAL5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1Y39f7MAL5I.m3u8/1Y39f7MAL5I.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-14/", "duration": 117, "id": "1Y39f7MAL5I", "title": "14 Running distance ratio", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-14", "kind": "Video", "video_id": "1Y39f7MAL5I", "keywords": "", "youtube_id": "1Y39f7MAL5I", "readable_id": "sat-2010-may-6-14"}, "Z-gq3nV2mmM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z-gq3nV2mmM.mp4/Z-gq3nV2mmM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z-gq3nV2mmM.mp4/Z-gq3nV2mmM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z-gq3nV2mmM.m3u8/Z-gq3nV2mmM.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2012/khan-dl-week-2-philip-and-miles/", "duration": 64, "id": "Z-gq3nV2mmM", "title": "DLab: Students present their computer science project", "format": "mp4", "description": "", "slug": "khan-dl-week-2-philip-and-miles", "kind": "Video", "video_id": "Z-gq3nV2mmM", "keywords": "", "youtube_id": "Z-gq3nV2mmM", "readable_id": "khan-dl-week-2-philip-and-miles"}, "bYgL6ovZE64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bYgL6ovZE64.mp4/bYgL6ovZE64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bYgL6ovZE64.mp4/bYgL6ovZE64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bYgL6ovZE64.m3u8/bYgL6ovZE64.m3u8"}, "path": "khan/college-admissions/get-started/importance-of-college/ss-college-offers-exposure-to-diversity/", "duration": 47, "id": "bYgL6ovZE64", "title": "Student story: College offers exposure to diversity", "format": "mp4", "description": "", "slug": "ss-college-offers-exposure-to-diversity", "kind": "Video", "video_id": "bYgL6ovZE64", "keywords": "", "youtube_id": "bYgL6ovZE64", "readable_id": "ss-college-offers-exposure-to-diversity"}, "jNUz0P5MG9M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jNUz0P5MG9M.mp4/jNUz0P5MG9M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jNUz0P5MG9M.mp4/jNUz0P5MG9M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jNUz0P5MG9M.m3u8/jNUz0P5MG9M.m3u8"}, "duration": 63, "id": "jNUz0P5MG9M", "title": "Analyzing proportional relationships from a table", "format": "mp4", "description": "Given a table of ratios, watch as we test them for equivalence and determine whether the relationship is proportional.", "path": "analyzing-and-identifying-proportional-relationships-ex3/", "slug": "analyzing-and-identifying-proportional-relationships-ex3", "kind": "Video", "video_id": "jNUz0P5MG9M", "keywords": "", "youtube_id": "jNUz0P5MG9M", "readable_id": "analyzing-and-identifying-proportional-relationships-ex3"}, "n9UvuzI2fq0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n9UvuzI2fq0.mp4/n9UvuzI2fq0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n9UvuzI2fq0.mp4/n9UvuzI2fq0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n9UvuzI2fq0.m3u8/n9UvuzI2fq0.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-5a/", "duration": 419, "id": "n9UvuzI2fq0", "title": "2011 Calculus AB free response #5a", "format": "mp4", "description": "Using a tangent line to extrapolate a function from a known initial condition", "slug": "2011-calculus-ab-free-response-5a", "kind": "Video", "video_id": "n9UvuzI2fq0", "keywords": "ap, advanced, placement, exam", "youtube_id": "n9UvuzI2fq0", "readable_id": "2011-calculus-ab-free-response-5a"}, "C7ducZoLKgw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C7ducZoLKgw.mp4/C7ducZoLKgw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C7ducZoLKgw.mp4/C7ducZoLKgw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C7ducZoLKgw.m3u8/C7ducZoLKgw.m3u8"}, "duration": 483, "id": "C7ducZoLKgw", "title": "Fundamental theorem of calculus", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/fundamental-theorem-of-calculus/fundamental-theorem-of-calculus/", "slug": "fundamental-theorem-of-calculus", "kind": "Video", "video_id": "C7ducZoLKgw", "keywords": "", "youtube_id": "C7ducZoLKgw", "readable_id": "fundamental-theorem-of-calculus"}, "WbyODj_OiZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WbyODj_OiZU.mp4/WbyODj_OiZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WbyODj_OiZU.mp4/WbyODj_OiZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WbyODj_OiZU.m3u8/WbyODj_OiZU.m3u8"}, "duration": 300, "id": "WbyODj_OiZU", "title": "Modeling a forgetting curve", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/differentiation-application/modeling-a-forgetting-curve/", "slug": "modeling-a-forgetting-curve", "kind": "Video", "video_id": "WbyODj_OiZU", "keywords": "", "youtube_id": "WbyODj_OiZU", "readable_id": "modeling-a-forgetting-curve"}, "C5-lz0hcqsE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C5-lz0hcqsE.mp4/C5-lz0hcqsE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C5-lz0hcqsE.mp4/C5-lz0hcqsE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C5-lz0hcqsE.m3u8/C5-lz0hcqsE.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/separable-equations/separable-differential-equations/", "duration": 720, "id": "C5-lz0hcqsE", "title": "Old separable differential equations introduction", "format": "mp4", "description": "Introduction to separable differential equations.", "slug": "separable-differential-equations", "kind": "Video", "video_id": "C5-lz0hcqsE", "keywords": "separable, differential, equations", "youtube_id": "C5-lz0hcqsE", "readable_id": "separable-differential-equations"}, "EnwWxMZVBeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EnwWxMZVBeg.mp4/EnwWxMZVBeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EnwWxMZVBeg.mp4/EnwWxMZVBeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EnwWxMZVBeg.m3u8/EnwWxMZVBeg.m3u8"}, "duration": 651, "id": "EnwWxMZVBeg", "title": "Introduction to radians", "format": "mp4", "description": "Understanding the definition and motivation for radians and the relationship between radians and degrees", "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/introduction-to-radians/", "slug": "introduction-to-radians", "kind": "Video", "video_id": "EnwWxMZVBeg", "keywords": "radians, degrees", "youtube_id": "EnwWxMZVBeg", "readable_id": "introduction-to-radians"}, "o1IFePaNENQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o1IFePaNENQ.mp4/o1IFePaNENQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o1IFePaNENQ.mp4/o1IFePaNENQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o1IFePaNENQ.m3u8/o1IFePaNENQ.m3u8"}, "duration": 610, "id": "o1IFePaNENQ", "title": "Paris Peace Conference and Treaty of Versailles", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/ww1-aftermath/paris-peace-conference-and-treaty-of-versailles/", "slug": "paris-peace-conference-and-treaty-of-versailles", "kind": "Video", "video_id": "o1IFePaNENQ", "keywords": "", "youtube_id": "o1IFePaNENQ", "readable_id": "paris-peace-conference-and-treaty-of-versailles"}, "KSrnZMAfwTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KSrnZMAfwTM.mp4/KSrnZMAfwTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KSrnZMAfwTM.mp4/KSrnZMAfwTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KSrnZMAfwTM.m3u8/KSrnZMAfwTM.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/number-patterns/math-patterns-example-1/", "duration": 218, "id": "KSrnZMAfwTM", "title": "Math patterns example 1", "format": "mp4", "description": "Part of our exploration of math is learning to identify patterns among numbers. Can you see the pattern in this example?", "slug": "math-patterns-example-1", "kind": "Video", "video_id": "KSrnZMAfwTM", "keywords": "", "youtube_id": "KSrnZMAfwTM", "readable_id": "math-patterns-example-1"}, "vmS3cTaxKdA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vmS3cTaxKdA.mp4/vmS3cTaxKdA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vmS3cTaxKdA.mp4/vmS3cTaxKdA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vmS3cTaxKdA.m3u8/vmS3cTaxKdA.m3u8"}, "duration": 155, "id": "vmS3cTaxKdA", "title": "Generalizing disc method around x-axis", "format": "mp4", "description": "Generalizing what we did in the last video for f(x) to get the \"formula\" for using the disc method around the x-axis", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/generalizing-disc-method-around-x-axis/", "slug": "generalizing-disc-method-around-x-axis", "kind": "Video", "video_id": "vmS3cTaxKdA", "keywords": "", "youtube_id": "vmS3cTaxKdA", "readable_id": "generalizing-disc-method-around-x-axis"}, "3JqIbemBlss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3JqIbemBlss.mp4/3JqIbemBlss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3JqIbemBlss.mp4/3JqIbemBlss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3JqIbemBlss.m3u8/3JqIbemBlss.m3u8"}, "path": "khan/college-admissions/making-high-school-count/standardized-tests/deciding-to-retake-sat/", "duration": 157, "id": "3JqIbemBlss", "title": "Deciding whether to retake the SAT", "format": "mp4", "description": "", "slug": "deciding-to-retake-sat", "kind": "Video", "video_id": "3JqIbemBlss", "keywords": "", "youtube_id": "3JqIbemBlss", "readable_id": "deciding-to-retake-sat"}, "ltdN7LnWJPY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ltdN7LnWJPY.mp4/ltdN7LnWJPY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ltdN7LnWJPY.mp4/ltdN7LnWJPY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ltdN7LnWJPY.m3u8/ltdN7LnWJPY.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/ephemeral/", "duration": 154, "id": "ltdN7LnWJPY", "title": "\"Ephemeral\" with Alice Cooney Frelinghuysen", "format": "mp4", "description": "Met curator Alice Cooney Frelinghuysen on transience in Louis Comfort Tiffany\u2019s Hair Ornament.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "slug": "ephemeral", "kind": "Video", "video_id": "ltdN7LnWJPY", "keywords": "costume, fashion, gemstones, metal, nature, ornate, North America", "youtube_id": "ltdN7LnWJPY", "readable_id": "ephemeral"}, "Mboz5JIIwSU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mboz5JIIwSU.mp4/Mboz5JIIwSU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mboz5JIIwSU.mp4/Mboz5JIIwSU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mboz5JIIwSU.m3u8/Mboz5JIIwSU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-6-3/", "duration": 40, "id": "Mboz5JIIwSU", "title": "3 Value of 2 variable expression", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-3", "kind": "Video", "video_id": "Mboz5JIIwSU", "keywords": "", "youtube_id": "Mboz5JIIwSU", "readable_id": "sat-2010-may-6-3"}, "UYShebe44Xs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UYShebe44Xs.mp4/UYShebe44Xs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UYShebe44Xs.mp4/UYShebe44Xs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UYShebe44Xs.m3u8/UYShebe44Xs.m3u8"}, "duration": 345, "id": "UYShebe44Xs", "title": "Taxes for factoring in negative externalities", "format": "mp4", "description": "How to factor in negative externalities through taxation", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/externalities-topic/taxes-for-factoring-in-negative-externalities/", "slug": "taxes-for-factoring-in-negative-externalities", "kind": "Video", "video_id": "UYShebe44Xs", "keywords": "microeconomics", "youtube_id": "UYShebe44Xs", "readable_id": "taxes-for-factoring-in-negative-externalities"}, "4HnyNMhkBs0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4HnyNMhkBs0.mp4/4HnyNMhkBs0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4HnyNMhkBs0.mp4/4HnyNMhkBs0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4HnyNMhkBs0.m3u8/4HnyNMhkBs0.m3u8"}, "duration": 241, "id": "4HnyNMhkBs0", "title": "Mass problems", "format": "mp4", "description": "Solve word problems involving mass. \u00a0Estimate the mass of items.", "path": "mass-problems/", "slug": "mass-problems", "kind": "Video", "video_id": "4HnyNMhkBs0", "keywords": "", "youtube_id": "4HnyNMhkBs0", "readable_id": "mass-problems"}, "wgnJevkTEdw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wgnJevkTEdw.mp4/wgnJevkTEdw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wgnJevkTEdw.mp4/wgnJevkTEdw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wgnJevkTEdw.m3u8/wgnJevkTEdw.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-13-inflation-rate/", "duration": 44, "id": "wgnJevkTEdw", "title": "13 Inflation rate", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-13-inflation-rate", "kind": "Video", "video_id": "wgnJevkTEdw", "keywords": "", "youtube_id": "wgnJevkTEdw", "readable_id": "sat-13-inflation-rate"}, "-1KeL9wVfOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-1KeL9wVfOY.mp4/-1KeL9wVfOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-1KeL9wVfOY.mp4/-1KeL9wVfOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-1KeL9wVfOY.m3u8/-1KeL9wVfOY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system/rn-the-endocrine-system/terpenes-to-steroid2/", "duration": 270, "id": "-1KeL9wVfOY", "title": "From terpenes to steroids part 2: Squalene, cholesterol, and steroids", "format": "mp4", "description": "", "slug": "terpenes-to-steroid2", "kind": "Video", "video_id": "-1KeL9wVfOY", "keywords": "terpene, steroid, squalene, cholesterol", "youtube_id": "-1KeL9wVfOY", "readable_id": "terpenes-to-steroid2"}, "aNeCGxJVG7w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aNeCGxJVG7w.mp4/aNeCGxJVG7w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aNeCGxJVG7w.mp4/aNeCGxJVG7w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aNeCGxJVG7w.m3u8/aNeCGxJVG7w.m3u8"}, "duration": 202, "id": "aNeCGxJVG7w", "title": "Dividing mixed numbers and fractions", "format": "mp4", "description": "Dividing Mixed Numbers and Fractions", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-mult-div-pre-alg/dividing-mixed-numbers-and-fractions/", "slug": "dividing-mixed-numbers-and-fractions", "kind": "Video", "video_id": "aNeCGxJVG7w", "keywords": "U02_L2_T3_we4, Dividing, Mixed, Numbers, and, Fractions, CC_5_NF_7, CC_6_NS_1", "youtube_id": "aNeCGxJVG7w", "readable_id": "dividing-mixed-numbers-and-fractions"}, "5LqNm9d2__I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5LqNm9d2__I.mp4/5LqNm9d2__I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5LqNm9d2__I.mp4/5LqNm9d2__I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5LqNm9d2__I.m3u8/5LqNm9d2__I.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/necessary-sufficient-conditions/", "duration": 195, "id": "5LqNm9d2__I", "title": "Fundamentals: Necessary and sufficient conditions", "format": "mp4", "description": "In this video, Kelley discusses one of the most basic tools in the philosophers' tool kit: the distinction between necessary and sufficient conditions. Through the use of ordinary language glosses and plenty of examples this mighty distinction is brought down to earth and presented in a ready-to-use fashion.\n\nSpeaker:\u00a0Kelly Schiffman", "slug": "necessary-sufficient-conditions", "kind": "Video", "video_id": "5LqNm9d2__I", "keywords": "", "youtube_id": "5LqNm9d2__I", "readable_id": "necessary-sufficient-conditions"}, "-YEtWOxweRg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-YEtWOxweRg.mp4/-YEtWOxweRg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-YEtWOxweRg.mp4/-YEtWOxweRg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-YEtWOxweRg.m3u8/-YEtWOxweRg.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-myeloproliferative-disorders/what-is-primary-myelofibrosis/", "duration": 464, "id": "-YEtWOxweRg", "title": "What is primary myelofibrosis?", "format": "mp4", "description": "Learn what is primary myelofibrosis as well as how to identify its signs and symptoms, diagnose it, and treat it. By Raja Narayan.\n\nVisit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-primary-myelofibrosis", "kind": "Video", "video_id": "-YEtWOxweRg", "keywords": "", "youtube_id": "-YEtWOxweRg", "readable_id": "what-is-primary-myelofibrosis"}, "upO6Mh862PI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/upO6Mh862PI.mp4/upO6Mh862PI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/upO6Mh862PI.mp4/upO6Mh862PI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/upO6Mh862PI.m3u8/upO6Mh862PI.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/ap-calculus-bc-exams-2008-1-a/", "duration": 534, "id": "upO6Mh862PI", "title": "AP Calculus BC exams: 2008 1 a", "format": "mp4", "description": "Part 1a of the 2008 BC free response", "slug": "ap-calculus-bc-exams-2008-1-a", "kind": "Video", "video_id": "upO6Mh862PI", "keywords": "calculus, BC, exam", "youtube_id": "upO6Mh862PI", "readable_id": "ap-calculus-bc-exams-2008-1-a"}, "aOeKj-w-3fY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aOeKj-w-3fY.mp4/aOeKj-w-3fY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aOeKj-w-3fY.mp4/aOeKj-w-3fY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aOeKj-w-3fY.m3u8/aOeKj-w-3fY.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/robert-storr-gerhard-richter-the-cage-paintings/", "duration": 868, "id": "aOeKj-w-3fY", "title": "Gerhard Richter, The Cage Paintings (1-6)", "format": "mp4", "description": "Robert Storr talks about Gerhard Richter's Cage paintings.", "slug": "robert-storr-gerhard-richter-the-cage-paintings", "kind": "Video", "video_id": "aOeKj-w-3fY", "keywords": "Gerhard, Richter, Robert Storr, Painting, Cage, Cage Paintings", "youtube_id": "aOeKj-w-3fY", "readable_id": "robert-storr-gerhard-richter-the-cage-paintings"}, "3m-464MqBJY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3m-464MqBJY.mp4/3m-464MqBJY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3m-464MqBJY.mp4/3m-464MqBJY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3m-464MqBJY.m3u8/3m-464MqBJY.m3u8"}, "duration": 482, "id": "3m-464MqBJY", "title": "Visual sensory information", "format": "mp4", "description": "In this video, I explore our sense of vision. By Ronald Sahyouni. ", "path": "khan/test-prep/mcat/processing-the-environment/sight/vision-summary/", "slug": "vision-summary", "kind": "Video", "video_id": "3m-464MqBJY", "keywords": "vision", "youtube_id": "3m-464MqBJY", "readable_id": "vision-summary"}, "7CmbItRjM-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7CmbItRjM-Y.mp4/7CmbItRjM-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7CmbItRjM-Y.mp4/7CmbItRjM-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7CmbItRjM-Y.m3u8/7CmbItRjM-Y.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/single-slit-interference/", "duration": 900, "id": "7CmbItRjM-Y", "title": "Single Slit Interference", "format": "mp4", "description": "", "slug": "single-slit-interference", "kind": "Video", "video_id": "7CmbItRjM-Y", "keywords": "", "youtube_id": "7CmbItRjM-Y", "readable_id": "single-slit-interference"}, "-z2yk8yxv08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-z2yk8yxv08.mp4/-z2yk8yxv08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-z2yk8yxv08.mp4/-z2yk8yxv08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-z2yk8yxv08.m3u8/-z2yk8yxv08.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-sal/curly-arrow-conventions/", "duration": 419, "id": "-z2yk8yxv08", "title": "Curly arrow conventions in organic chemistry", "format": "mp4", "description": "", "slug": "curly-arrow-conventions", "kind": "Video", "video_id": "-z2yk8yxv08", "keywords": "", "youtube_id": "-z2yk8yxv08", "readable_id": "curly-arrow-conventions"}, "mi5cWPjhJ2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mi5cWPjhJ2c.mp4/mi5cWPjhJ2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mi5cWPjhJ2c.mp4/mi5cWPjhJ2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mi5cWPjhJ2c.m3u8/mi5cWPjhJ2c.m3u8"}, "duration": 55, "id": "mi5cWPjhJ2c", "title": "Increase strength of magnet", "format": "mp4", "description": "How can we increase the strength of a bar magnet using a piece of steel? Why is it stronger?", "path": "khan/science/discoveries-projects/discoveries/magnetic-fields/increase-strength-of-magnet/", "slug": "increase-strength-of-magnet", "kind": "Video", "video_id": "mi5cWPjhJ2c", "keywords": "permability", "youtube_id": "mi5cWPjhJ2c", "readable_id": "increase-strength-of-magnet"}, "MtwvLru62Qw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MtwvLru62Qw.mp4/MtwvLru62Qw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MtwvLru62Qw.mp4/MtwvLru62Qw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MtwvLru62Qw.m3u8/MtwvLru62Qw.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-sal/e2-e1-sn2-sn1-reactions-example-3/", "duration": 798, "id": "MtwvLru62Qw", "title": "E2 E1 Sn2 Sn1 reactions example 3", "format": "mp4", "description": "E2 E1 Sn2 Sn1 Reactions Example 3", "slug": "e2-e1-sn2-sn1-reactions-example-3", "kind": "Video", "video_id": "MtwvLru62Qw", "keywords": "E2, E1, Sn2, Sn1, Reactions, Example", "youtube_id": "MtwvLru62Qw", "readable_id": "e2-e1-sn2-sn1-reactions-example-3"}, "KL6sMOn7ULo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KL6sMOn7ULo.mp4/KL6sMOn7ULo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KL6sMOn7ULo.mp4/KL6sMOn7ULo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KL6sMOn7ULo.m3u8/KL6sMOn7ULo.m3u8"}, "duration": 260, "id": "KL6sMOn7ULo", "title": "Fashion meets art: Simone Rocha inspired by Louise Bourgeois", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nFashion designer Simone Rocha shares her admiration for the work of artist Louise Bourgeois, whose sculptures\u2013like Maman (1999), a gigantic spider made of steel\u2013inspire Rocha to use new forms and materials in her garments. Watch how Rocha and Bourgeois use their art to think about ideas of texture, materiality, and how works of art can relate to the human body.", "path": "simone-rocha-inspired-by-bourgeois/", "slug": "simone-rocha-inspired-by-bourgeois", "kind": "Video", "video_id": "KL6sMOn7ULo", "keywords": "Tate, Louise Bourgeois", "youtube_id": "KL6sMOn7ULo", "readable_id": "simone-rocha-inspired-by-bourgeois"}, "fbwW9mHFcgk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fbwW9mHFcgk.mp4/fbwW9mHFcgk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fbwW9mHFcgk.mp4/fbwW9mHFcgk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fbwW9mHFcgk.m3u8/fbwW9mHFcgk.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/flanders-1/rubens-arrival-or-disembarkation-of-marie-de-medici-at-marseilles-1621-25/", "duration": 324, "id": "fbwW9mHFcgk", "title": "Rubens, Arrival (or Disembarkation) of Marie de Medici at Marseilles, Medici Cycle", "format": "mp4", "description": "Peter Paul Rubens, Arrival (or Disembarkation) of Marie de Medici at Marseilles,1621-25, oil on canvas, 394 x 295 cm (Mus\u00e9e du Louvre, Paris) Speakers: Drs. Beth Harris and Steven Zucker", "slug": "rubens-arrival-or-disembarkation-of-marie-de-medici-at-marseilles-1621-25", "kind": "Video", "video_id": "fbwW9mHFcgk", "keywords": "Rubens, Marie de Medici, Smarthistory, Art History, Louvre", "youtube_id": "fbwW9mHFcgk", "readable_id": "rubens-arrival-or-disembarkation-of-marie-de-medici-at-marseilles-1621-25"}, "sZG-zHkGR4U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sZG-zHkGR4U.mp4/sZG-zHkGR4U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sZG-zHkGR4U.mp4/sZG-zHkGR4U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sZG-zHkGR4U.m3u8/sZG-zHkGR4U.m3u8"}, "duration": 197, "id": "sZG-zHkGR4U", "title": "Work as the transfer of energy", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/work-as-the-transfer-of-energy/", "slug": "work-as-the-transfer-of-energy", "kind": "Video", "video_id": "sZG-zHkGR4U", "keywords": "", "youtube_id": "sZG-zHkGR4U", "readable_id": "work-as-the-transfer-of-energy"}, "AaR1mPrdbTc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AaR1mPrdbTc.mp4/AaR1mPrdbTc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AaR1mPrdbTc.mp4/AaR1mPrdbTc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AaR1mPrdbTc.m3u8/AaR1mPrdbTc.m3u8"}, "duration": 452, "id": "AaR1mPrdbTc", "title": "Introduction to inflation", "format": "mp4", "description": "Basics of price inflation and the CPI (consumer price index)", "path": "khan/economics-finance-domain/macroeconomics/inflation-topic/cost-of-living-tutorial/introduction-to-inflation/", "slug": "introduction-to-inflation", "kind": "Video", "video_id": "AaR1mPrdbTc", "keywords": "macroeconomics, CPI", "youtube_id": "AaR1mPrdbTc", "readable_id": "introduction-to-inflation"}, "tVNRn4srPUI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tVNRn4srPUI.mp4/tVNRn4srPUI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tVNRn4srPUI.mp4/tVNRn4srPUI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tVNRn4srPUI.m3u8/tVNRn4srPUI.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-iron-deficiency-anemia-and-anemia-of-chronic-disease/chronic-disease-vs-iron-deficiency-anemia/", "duration": 329, "id": "tVNRn4srPUI", "title": "Chronic disease vs iron deficiency anemia", "format": "mp4", "description": "", "slug": "chronic-disease-vs-iron-deficiency-anemia", "kind": "Video", "video_id": "tVNRn4srPUI", "keywords": "", "youtube_id": "tVNRn4srPUI", "readable_id": "chronic-disease-vs-iron-deficiency-anemia"}, "3oznnP6SkSc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3oznnP6SkSc.mp4/3oznnP6SkSc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3oznnP6SkSc.mp4/3oznnP6SkSc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3oznnP6SkSc.m3u8/3oznnP6SkSc.m3u8"}, "duration": 474, "id": "3oznnP6SkSc", "title": "After the Fall: The Conservation of Tullio Lombardo's \"Adam\"", "format": "mp4", "description": "Conservators, scientists, and curators tell the story behind the unprecedented conservation of Tullio Lombardo's Adam.\n\nThe life-size marble statue of Adam, carved by Tullio Lombardo (Italian, ca. 1455\u20131532), is among the most important works of art from Renaissance Venice to be found outside that city today. Made in the early 1490s for the tomb of Doge Andrea Vendramin, it is the only signed sculpture from that monumental complex. The serene, idealized figure, inspired by ancient sculpture, is deceptively complex. Carefully manipulating composition and finish, Tullio created God's perfect human being, but also the anxious victim of the serpent's wiles.\n\nIn 2002, Adam was gravely damaged in an accident. Committed to returning it to public view, the Museum undertook a conservation treatment that has restored the sculpture to its original appearance to the fullest extent possible.\n\nThe exhibition allows Adam to be viewed in the round and explains this unprecedented twelve-year research and conservation project. It also inaugurates a new permanent gallery for Venetian and northern Italian sculpture. The installation of this gallery was made possible by Assunta Sommella Peluso, Ignazio Peluso, Ada Peluso, and Romano I. Peluso.\nLearn more about the exhibition on\u00a0metmuseum.org.\n\nFor more information, including production credits, view this video on MetMedia.\n", "path": "after-the-fall-the-lombardo/", "slug": "after-the-fall-the-lombardo", "kind": "Video", "video_id": "3oznnP6SkSc", "keywords": "", "youtube_id": "3oznnP6SkSc", "readable_id": "after-the-fall-the-lombardo"}, "vSiu8qzHV6c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vSiu8qzHV6c.mp4/vSiu8qzHV6c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vSiu8qzHV6c.mp4/vSiu8qzHV6c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vSiu8qzHV6c.m3u8/vSiu8qzHV6c.m3u8"}, "duration": 213, "id": "vSiu8qzHV6c", "title": "The Painting Techniques of Mark Rothko", "format": "mp4", "description": "Explore the complex veils of color that form Mark Rothko's abstract paintings. To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-painting-technique-rothko/", "slug": "moma-painting-technique-rothko", "kind": "Video", "video_id": "vSiu8qzHV6c", "keywords": "", "youtube_id": "vSiu8qzHV6c", "readable_id": "moma-painting-technique-rothko"}, "vAYoAH98Gag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vAYoAH98Gag.mp4/vAYoAH98Gag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vAYoAH98Gag.mp4/vAYoAH98Gag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vAYoAH98Gag.m3u8/vAYoAH98Gag.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/stabilization-of-a-conjugate-base-solvation/", "duration": 269, "id": "vAYoAH98Gag", "title": "Stabilization of a conjugate base: solvation", "format": "mp4", "description": "How the solvent affects the stability of a conjugate base", "slug": "stabilization-of-a-conjugate-base-solvation", "kind": "Video", "video_id": "vAYoAH98Gag", "keywords": "", "youtube_id": "vAYoAH98Gag", "readable_id": "stabilization-of-a-conjugate-base-solvation"}, "osIFa9zcI-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/osIFa9zcI-w.mp4/osIFa9zcI-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/osIFa9zcI-w.mp4/osIFa9zcI-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/osIFa9zcI-w.m3u8/osIFa9zcI-w.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-more-fewer-20/comparison-word-problems/", "duration": 203, "id": "osIFa9zcI-w", "title": "Comparison word problems", "format": "mp4", "description": "", "slug": "comparison-word-problems", "kind": "Video", "video_id": "osIFa9zcI-w", "keywords": "", "youtube_id": "osIFa9zcI-w", "readable_id": "comparison-word-problems"}, "-y90WYn8nzk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-y90WYn8nzk.mp4/-y90WYn8nzk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-y90WYn8nzk.mp4/-y90WYn8nzk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-y90WYn8nzk.m3u8/-y90WYn8nzk.m3u8"}, "path": "khan/humanities/art-history-for-teachers/course-materials/using-smarthistory/", "duration": 163, "id": "-y90WYn8nzk", "title": "Art history (Smarthistory) on Khanacademy.org", "format": "mp4", "description": "", "slug": "using-smarthistory", "kind": "Video", "video_id": "-y90WYn8nzk", "keywords": "", "youtube_id": "-y90WYn8nzk", "readable_id": "using-smarthistory"}, "-yfjQGg-aMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-yfjQGg-aMA.mp4/-yfjQGg-aMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-yfjQGg-aMA.mp4/-yfjQGg-aMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-yfjQGg-aMA.m3u8/-yfjQGg-aMA.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/veneziano-saint-lucy-altarpiece-1445-47/", "duration": 200, "id": "-yfjQGg-aMA", "title": "Veneziano, St. Lucy Altarpiece", "format": "mp4", "description": "Domenico Veneziano, Saint Lucy Altarpiece, 1445-47, tempera on wood panel, 82 1/4 x 85\" or 209 x 216 cm (Galleria degli Uffizi, Florence) Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "veneziano-saint-lucy-altarpiece-1445-47", "kind": "Video", "video_id": "-yfjQGg-aMA", "keywords": "art history, Sacra Conversazione, smarthistory, Uffizi, Art History Gabriele Veneziano", "youtube_id": "-yfjQGg-aMA", "readable_id": "veneziano-saint-lucy-altarpiece-1445-47"}, "ETzUpoqZIHY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ETzUpoqZIHY.mp4/ETzUpoqZIHY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ETzUpoqZIHY.mp4/ETzUpoqZIHY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ETzUpoqZIHY.m3u8/ETzUpoqZIHY.m3u8"}, "duration": 441, "id": "ETzUpoqZIHY", "title": "Parallax in observing stars", "format": "mp4", "description": "Parallax in Observing Stars", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-parallax-tutorial/parallax-in-observing-stars/", "slug": "parallax-in-observing-stars", "kind": "Video", "video_id": "ETzUpoqZIHY", "keywords": "Parallax, in, Observing, Stars", "youtube_id": "ETzUpoqZIHY", "readable_id": "parallax-in-observing-stars"}, "-VQf_hJOEvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-VQf_hJOEvM.mp4/-VQf_hJOEvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-VQf_hJOEvM.mp4/-VQf_hJOEvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-VQf_hJOEvM.m3u8/-VQf_hJOEvM.m3u8"}, "duration": 458, "id": "-VQf_hJOEvM", "title": "Constructing linear and exponential functions from graph", "format": "mp4", "description": "", "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/constructing-linear-and-exponential-functions-from-graph/", "slug": "constructing-linear-and-exponential-functions-from-graph", "kind": "Video", "video_id": "-VQf_hJOEvM", "keywords": "", "youtube_id": "-VQf_hJOEvM", "readable_id": "constructing-linear-and-exponential-functions-from-graph"}, "LohXZt7QzCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LohXZt7QzCM.mp4/LohXZt7QzCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LohXZt7QzCM.mp4/LohXZt7QzCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LohXZt7QzCM.m3u8/LohXZt7QzCM.m3u8"}, "duration": 307, "id": "LohXZt7QzCM", "title": "Fractions as division by power of 10", "format": "mp4", "description": "Keep in mind that a fraction is nothing more than a division problem. So if the denominator is 10 (or 100...or 1000), then all we need to do move the decimal in the numerator that number of zeros to the left.", "path": "fractions-as-division-by-powers-of-10/", "slug": "fractions-as-division-by-powers-of-10", "kind": "Video", "video_id": "LohXZt7QzCM", "keywords": "", "youtube_id": "LohXZt7QzCM", "readable_id": "fractions-as-division-by-powers-of-10"}, "uGpLS_pr7oc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uGpLS_pr7oc.mp4/uGpLS_pr7oc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uGpLS_pr7oc.mp4/uGpLS_pr7oc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uGpLS_pr7oc.m3u8/uGpLS_pr7oc.m3u8"}, "duration": 731, "id": "uGpLS_pr7oc", "title": "Term and whole life insurance policies", "format": "mp4", "description": "Overview of the difference between term and whole life insurance policies", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/life-insurance/term-and-whole-life-insurance-policies/", "slug": "term-and-whole-life-insurance-policies", "kind": "Video", "video_id": "uGpLS_pr7oc", "keywords": "personal, finance", "youtube_id": "uGpLS_pr7oc", "readable_id": "term-and-whole-life-insurance-policies"}, "XzYNh2wpO0A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XzYNh2wpO0A.mp4/XzYNh2wpO0A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XzYNh2wpO0A.mp4/XzYNh2wpO0A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XzYNh2wpO0A.m3u8/XzYNh2wpO0A.m3u8"}, "duration": 75, "id": "XzYNh2wpO0A", "title": "Testing solutions for a system of inequalities", "format": "mp4", "description": "Testing Solutions for a System of Inequalities", "path": "khan/math/algebra/systems-of-eq-and-ineq/system-of-inequalities/testing-solutions-for-a-system-of-inequalities/", "slug": "testing-solutions-for-a-system-of-inequalities", "kind": "Video", "video_id": "XzYNh2wpO0A", "keywords": "u14_l1_t2_we2, Testing, Solutions, for, System, of, Inequalities, CC_39336_A-CED_3, CC_39336_A-REI_12", "youtube_id": "XzYNh2wpO0A", "readable_id": "testing-solutions-for-a-system-of-inequalities"}, "FaF3v-ezbSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FaF3v-ezbSk.mp4/FaF3v-ezbSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FaF3v-ezbSk.mp4/FaF3v-ezbSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FaF3v-ezbSk.m3u8/FaF3v-ezbSk.m3u8"}, "duration": 594, "id": "FaF3v-ezbSk", "title": "Unit vector notation", "format": "mp4", "description": "Expressing a vector as the scaled sum of unit vectors", "path": "khan/test-prep/mcat/physical-processes/vectors-and-scalars/unit-vector-notation/", "slug": "unit-vector-notation", "kind": "Video", "video_id": "FaF3v-ezbSk", "keywords": "unit, vector, physics, calculus, vectors", "youtube_id": "FaF3v-ezbSk", "readable_id": "unit-vector-notation"}, "x6xtezhuCZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x6xtezhuCZ4.mp4/x6xtezhuCZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x6xtezhuCZ4.mp4/x6xtezhuCZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x6xtezhuCZ4.m3u8/x6xtezhuCZ4.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/multiplying-fractions-pre-alg/multiplying-a-fraction-by-a-fraction/", "duration": 306, "id": "x6xtezhuCZ4", "title": "Multiplying two fractions: an explanation", "format": "mp4", "description": "This video will help you think about what it means to multiply two fractions. By drawing the problem and \"seeing\" the answer, you'll better understand how we arrived at it.", "slug": "multiplying-a-fraction-by-a-fraction", "kind": "Video", "video_id": "x6xtezhuCZ4", "keywords": "", "youtube_id": "x6xtezhuCZ4", "readable_id": "multiplying-a-fraction-by-a-fraction"}, "SEzDiejb1a0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SEzDiejb1a0.mp4/SEzDiejb1a0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SEzDiejb1a0.mp4/SEzDiejb1a0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SEzDiejb1a0.m3u8/SEzDiejb1a0.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/wall-painting/villa-of-mysteries/", "duration": 553, "id": "SEzDiejb1a0", "title": "Dionysiac frieze, Villa of Mysteries, Pompeii", "format": "mp4", "description": "Dionysian Cult Cycle (?), Villa of Mysteries, before 79 C.E., fresco, Pompeii, Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "villa-of-mysteries", "kind": "Video", "video_id": "SEzDiejb1a0", "keywords": "", "youtube_id": "SEzDiejb1a0", "readable_id": "villa-of-mysteries"}, "AbUkraQIYv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AbUkraQIYv8.mp4/AbUkraQIYv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AbUkraQIYv8.mp4/AbUkraQIYv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AbUkraQIYv8.m3u8/AbUkraQIYv8.m3u8"}, "path": "khan/humanities/becoming-modern/intro-becoming-modern/where-are-the-women/", "duration": 349, "id": "AbUkraQIYv8", "title": "Unlock Art: Where are the Women?", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nBy calling attention to identity, sexuality, politics, and history, women artists have dominated the art debates for the last several decades. Despite this, only a small percentage of gallery collections and displays belong to women artists, even today. So how do we go about talking about women in art history? Learn more about the changing role of female artists in a male dominated art world over the centuries. Join Jemima Kirke as she guides us through a history of women in art, exploring the ways in which they have been represented, underrepresented, and sometimes misrepresented.\nShould there exist a separate Women\u2019s Art History to tell this story, or is it simply a matter of inserting women into existing narratives? What about removing the label altogether, and referring to women artists as just artists? Would this ignore an important component of identity or recognise that women and men can be artists in equal measure?\u00a0How can women artists be sufficiently recognised without distancing them from art history as we know it?\n", "slug": "where-are-the-women", "kind": "Video", "video_id": "AbUkraQIYv8", "keywords": "Tate", "youtube_id": "AbUkraQIYv8", "readable_id": "where-are-the-women"}, "6kUUJJV_MNA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6kUUJJV_MNA.mp4/6kUUJJV_MNA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6kUUJJV_MNA.mp4/6kUUJJV_MNA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6kUUJJV_MNA.m3u8/6kUUJJV_MNA.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/donatello-david-bronze-c-1440s/", "duration": 444, "id": "6kUUJJV_MNA", "title": "Donatello, David", "format": "mp4", "description": "Donatello, David, bronze, late 1420s to the 1460s, likely the 1440s (Museo Nazionale del Bargello, Florence)\u00a0", "slug": "donatello-david-bronze-c-1440s", "kind": "Video", "video_id": "6kUUJJV_MNA", "keywords": "donatello, david, florence, bargello, italian renaissance, renaissance, Goliath, contrapposto, art, history, art history, history of art, Milan, Florentine Republic, Medici, Palazzo Medici, lost wax casting, nude", "youtube_id": "6kUUJJV_MNA", "readable_id": "donatello-david-bronze-c-1440s"}, "xGiILI906C4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xGiILI906C4.mp4/xGiILI906C4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xGiILI906C4.mp4/xGiILI906C4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xGiILI906C4.m3u8/xGiILI906C4.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-ex3-part-2-evaluating-the-outside-surface/", "duration": 550, "id": "xGiILI906C4", "title": "Surface integral ex3 part 2: Evaluating the outside surface", "format": "mp4", "description": "Evaluating the surface integral over the outside of the chopped cylinder", "slug": "surface-integral-ex3-part-2-evaluating-the-outside-surface", "kind": "Video", "video_id": "xGiILI906C4", "keywords": "surface, integral, calculus", "youtube_id": "xGiILI906C4", "readable_id": "surface-integral-ex3-part-2-evaluating-the-outside-surface"}, "-Zlq5tNl94M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-Zlq5tNl94M.mp4/-Zlq5tNl94M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-Zlq5tNl94M.mp4/-Zlq5tNl94M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-Zlq5tNl94M.m3u8/-Zlq5tNl94M.m3u8"}, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-tens/rep-quantity-with-digits/", "duration": 259, "id": "-Zlq5tNl94M", "title": "Place value example with 42", "format": "mp4", "description": "Learn to see 42 as 4 tens and 2 ones.", "slug": "rep-quantity-with-digits", "kind": "Video", "video_id": "-Zlq5tNl94M", "keywords": "", "youtube_id": "-Zlq5tNl94M", "readable_id": "rep-quantity-with-digits"}, "qTGJMnTWrrw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qTGJMnTWrrw.mp4/qTGJMnTWrrw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qTGJMnTWrrw.mp4/qTGJMnTWrrw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qTGJMnTWrrw.m3u8/qTGJMnTWrrw.m3u8"}, "duration": 498, "id": "qTGJMnTWrrw", "title": "Introduction to the Protestant Reformation: Setting the stage (part 1)", "format": "mp4", "description": "Speakers: Dr. Steven Zucker & Dr. Beth Harris", "path": "khan/humanities/renaissance-reformation/protestant-reformation1/protestant-reformation-1/", "slug": "protestant-reformation-1", "kind": "Video", "video_id": "qTGJMnTWrrw", "keywords": "history, Protestant Reformation, Martin Luther", "youtube_id": "qTGJMnTWrrw", "readable_id": "protestant-reformation-1"}, "H3tg4bH5JuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H3tg4bH5JuY.mp4/H3tg4bH5JuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H3tg4bH5JuY.mp4/H3tg4bH5JuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H3tg4bH5JuY.m3u8/H3tg4bH5JuY.m3u8"}, "path": "khan/economics-finance-domain/core-finance/interest-tutorial/personal-bankruptcy-tut/personal-bankruptcy-chapters-7-and-13/", "duration": 802, "id": "H3tg4bH5JuY", "title": "Personal bankruptcy: Chapters 7 and 13", "format": "mp4", "description": "Chapter 7 and Chapter 13 personal bankruptcy. This video was sponsored by Visa, but I had complete editorial freedom as to its contents.", "slug": "personal-bankruptcy-chapters-7-and-13", "kind": "Video", "video_id": "H3tg4bH5JuY", "keywords": "bankruptcy, 22, personal", "youtube_id": "H3tg4bH5JuY", "readable_id": "personal-bankruptcy-chapters-7-and-13"}, "ft5gJbqdzfY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ft5gJbqdzfY.mp4/ft5gJbqdzfY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ft5gJbqdzfY.mp4/ft5gJbqdzfY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ft5gJbqdzfY.m3u8/ft5gJbqdzfY.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-may-9-2013-spring-break-over-commanding-resumes/", "duration": 123, "id": "ft5gJbqdzfY", "title": "'Spring Break' over: commanding resumes", "format": "mp4", "description": "Curiosity gets new software and new capabilities for the long trek to Mt. Sharp.", "slug": "curiosity-rover-report-may-9-2013-spring-break-over-commanding-resumes", "kind": "Video", "video_id": "ft5gJbqdzfY", "keywords": "", "youtube_id": "ft5gJbqdzfY", "readable_id": "curiosity-rover-report-may-9-2013-spring-break-over-commanding-resumes"}, "SbpoyXTpC84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SbpoyXTpC84.mp4/SbpoyXTpC84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SbpoyXTpC84.mp4/SbpoyXTpC84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SbpoyXTpC84.m3u8/SbpoyXTpC84.m3u8"}, "duration": 462, "id": "SbpoyXTpC84", "title": "Example: 9 card hands", "format": "mp4", "description": "Thinking about how many ways we can construct a hand of 9 cards", "path": "khan/math/precalculus/prob_comb/combinations/permutations-and-combinations-3/", "slug": "permutations-and-combinations-3", "kind": "Video", "video_id": "SbpoyXTpC84", "keywords": "U12_L2_T3_we3, Permutations, and, Combinations", "youtube_id": "SbpoyXTpC84", "readable_id": "permutations-and-combinations-3"}, "K5rmfHlHy20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K5rmfHlHy20.mp4/K5rmfHlHy20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K5rmfHlHy20.mp4/K5rmfHlHy20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K5rmfHlHy20.m3u8/K5rmfHlHy20.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-subtract-100/adding-two-digit-numbers-without-regrouping/", "duration": 154, "id": "K5rmfHlHy20", "title": "Adding two-digit numbers without regrouping", "format": "mp4", "description": "Learn to add 23 + 45 thinking about place value.", "slug": "adding-two-digit-numbers-without-regrouping", "kind": "Video", "video_id": "K5rmfHlHy20", "keywords": "", "youtube_id": "K5rmfHlHy20", "readable_id": "adding-two-digit-numbers-without-regrouping"}, "8U8egQjcPaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8U8egQjcPaI.mp4/8U8egQjcPaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8U8egQjcPaI.mp4/8U8egQjcPaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8U8egQjcPaI.m3u8/8U8egQjcPaI.m3u8"}, "duration": 672, "id": "8U8egQjcPaI", "title": "Rent control and deadweight loss", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/deadweight-loss-tutorial/rent-control-dead-weight-cost/", "slug": "rent-control-dead-weight-cost", "kind": "Video", "video_id": "8U8egQjcPaI", "keywords": "", "youtube_id": "8U8egQjcPaI", "readable_id": "rent-control-dead-weight-cost"}, "Id2E72P8Fe0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Id2E72P8Fe0.mp4/Id2E72P8Fe0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Id2E72P8Fe0.mp4/Id2E72P8Fe0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Id2E72P8Fe0.m3u8/Id2E72P8Fe0.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/insulin-and-glucagon/", "duration": 703, "id": "Id2E72P8Fe0", "title": "Insulin and glucagon", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "insulin-and-glucagon", "kind": "Video", "video_id": "Id2E72P8Fe0", "keywords": "", "youtube_id": "Id2E72P8Fe0", "readable_id": "insulin-and-glucagon"}, "MKErxh58RME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MKErxh58RME.mp4/MKErxh58RME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MKErxh58RME.mp4/MKErxh58RME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MKErxh58RME.m3u8/MKErxh58RME.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/comparing_linear_functions/comparing-features-of-functions-2/", "duration": 284, "id": "MKErxh58RME", "title": "Comparing linear functions word problems 1", "format": "mp4", "description": "", "slug": "comparing-features-of-functions-2", "kind": "Video", "video_id": "MKErxh58RME", "keywords": "", "youtube_id": "MKErxh58RME", "readable_id": "comparing-features-of-functions-2"}, "dtQyiDMoub4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dtQyiDMoub4.mp4/dtQyiDMoub4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dtQyiDMoub4.mp4/dtQyiDMoub4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dtQyiDMoub4.m3u8/dtQyiDMoub4.m3u8"}, "duration": 159, "id": "dtQyiDMoub4", "title": "Finding arc length from radian angle measure", "format": "mp4", "description": "", "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/arc-length-from-angle-measure/", "slug": "arc-length-from-angle-measure", "kind": "Video", "video_id": "dtQyiDMoub4", "keywords": "", "youtube_id": "dtQyiDMoub4", "readable_id": "arc-length-from-angle-measure"}, "4kbv2Gaw-9U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4kbv2Gaw-9U.mp4/4kbv2Gaw-9U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4kbv2Gaw-9U.mp4/4kbv2Gaw-9U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4kbv2Gaw-9U.m3u8/4kbv2Gaw-9U.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/gentile-adoration/", "duration": 370, "id": "4kbv2Gaw-9U", "title": "Gentile da Fabriano, Adoration of the Magi", "format": "mp4", "description": "Gentile da Fabriano, Adoration of the Magi, 1423, tempera on panel, 283 x 300 cm (Uffizi Gallery, Florence)\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "gentile-adoration", "kind": "Video", "video_id": "4kbv2Gaw-9U", "keywords": "", "youtube_id": "4kbv2Gaw-9U", "readable_id": "gentile-adoration"}, "naRUWPvsQbQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/naRUWPvsQbQ.mp4/naRUWPvsQbQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/naRUWPvsQbQ.mp4/naRUWPvsQbQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/naRUWPvsQbQ.m3u8/naRUWPvsQbQ.m3u8"}, "duration": 493, "id": "naRUWPvsQbQ", "title": "Rectangular and trapezoidal Riemann approximations", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/rectangular-and-trapezoidal-riemann-approximations/", "slug": "rectangular-and-trapezoidal-riemann-approximations", "kind": "Video", "video_id": "naRUWPvsQbQ", "keywords": "", "youtube_id": "naRUWPvsQbQ", "readable_id": "rectangular-and-trapezoidal-riemann-approximations"}, "BD2avz0161k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BD2avz0161k.mp4/BD2avz0161k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BD2avz0161k.mp4/BD2avz0161k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BD2avz0161k.m3u8/BD2avz0161k.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-20/", "duration": 322, "id": "BD2avz0161k", "title": "20 Units digits of products", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-20", "kind": "Video", "video_id": "BD2avz0161k", "keywords": "", "youtube_id": "BD2avz0161k", "readable_id": "sat-getting-ready-2-20"}, "PDKPsHuz80k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PDKPsHuz80k.mp4/PDKPsHuz80k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PDKPsHuz80k.mp4/PDKPsHuz80k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PDKPsHuz80k.m3u8/PDKPsHuz80k.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-blended-hardware/sscc-blended-hardwareinfrastructure/", "duration": 366, "id": "PDKPsHuz80k", "title": "Putting the right hardware and infrastructure in place", "format": "mp4", "description": "", "slug": "sscc-blended-hardwareinfrastructure", "kind": "Video", "video_id": "PDKPsHuz80k", "keywords": "", "youtube_id": "PDKPsHuz80k", "readable_id": "sscc-blended-hardwareinfrastructure"}, "5YEGpb7tXOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5YEGpb7tXOo.mp4/5YEGpb7tXOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5YEGpb7tXOo.mp4/5YEGpb7tXOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5YEGpb7tXOo.m3u8/5YEGpb7tXOo.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/two-portraits/", "duration": 145, "id": "5YEGpb7tXOo", "title": "Two portraits, two views", "format": "mp4", "description": "Sheila Canby, curator of the exhibition Shah Abbas the remaking of Iran, discusses two very different portraits of Shah 'Abbas giving an insight into his character.\u00a0\u00a9 Trustees of the British Museum", "slug": "two-portraits", "kind": "Video", "video_id": "5YEGpb7tXOo", "keywords": "", "youtube_id": "5YEGpb7tXOo", "readable_id": "two-portraits"}, "vflZuk-_Hz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vflZuk-_Hz4.mp4/vflZuk-_Hz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vflZuk-_Hz4.mp4/vflZuk-_Hz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vflZuk-_Hz4.m3u8/vflZuk-_Hz4.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/abductive-arguments/", "duration": 375, "id": "vflZuk-_Hz4", "title": "Fundamentals: Abductive arguments", "format": "mp4", "description": "In this video, Geoff Pynn follows up on his introduction to critical thinking by exploring how abductive arguments give us reason to believe their conclusions. Good abductive arguments don't guarantee their conclusions, but give us very good reasons to believe their conclusions. This sort of inference is called \"inference to the best explanation.\"\n\nSpeaker: Dr. Geoff Pynn, Assistant Professor, Northern Illinois University", "slug": "abductive-arguments", "kind": "Video", "video_id": "vflZuk-_Hz4", "keywords": "", "youtube_id": "vflZuk-_Hz4", "readable_id": "abductive-arguments"}, "DRtLXagrMHw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DRtLXagrMHw.mp4/DRtLXagrMHw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DRtLXagrMHw.mp4/DRtLXagrMHw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DRtLXagrMHw.m3u8/DRtLXagrMHw.m3u8"}, "duration": 427, "id": "DRtLXagrMHw", "title": "Cosmological time scale 1", "format": "mp4", "description": "Cosmological Time Scale 1", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/cosmos-time-scale-tutorial/cosmological-time-scale-1/", "slug": "cosmological-time-scale-1", "kind": "Video", "video_id": "DRtLXagrMHw", "keywords": "Cosmological, Time, Scale", "youtube_id": "DRtLXagrMHw", "readable_id": "cosmological-time-scale-1"}, "GBbTouUAWKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GBbTouUAWKs.mp4/GBbTouUAWKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GBbTouUAWKs.mp4/GBbTouUAWKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GBbTouUAWKs.m3u8/GBbTouUAWKs.m3u8"}, "duration": 454, "id": "GBbTouUAWKs", "title": "Hydrocarbon derivatives", "format": "mp4", "description": "Functional groups? Functional groups within functional groups? Hank takes today's Crash Course video to discuss some confusing ideas about Hydrocarbon Derivatives, but then makes it all make more sense.\nWriters: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n\u00a0", "path": "chem43-hydrocarbon-derivatives/", "slug": "chem43-hydrocarbon-derivatives", "kind": "Video", "video_id": "GBbTouUAWKs", "keywords": "", "youtube_id": "GBbTouUAWKs", "readable_id": "chem43-hydrocarbon-derivatives"}, "lD7BHl5W86Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lD7BHl5W86Q.mp4/lD7BHl5W86Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lD7BHl5W86Q.mp4/lD7BHl5W86Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lD7BHl5W86Q.m3u8/lD7BHl5W86Q.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/xu-bing/", "duration": 368, "id": "lD7BHl5W86Q", "title": "An installation by Xu Bing at the British Museum", "format": "mp4", "description": "Discover the secrets behind this shadow-and-light box installation by contemporary artist Xu Bing, inspired by a Chinese painting in the Museum's collection. Xu Bing's installation at the British Museum is 5 meters tall and is made using materials such as hemp fibers, dry plants, corn husks, crumpled paper and debris sourced from sites across London.\u00a0\u00a9 Trustees of the British Museum", "slug": "xu-bing", "kind": "Video", "video_id": "lD7BHl5W86Q", "keywords": "", "youtube_id": "lD7BHl5W86Q", "readable_id": "xu-bing"}, "T9Nw66RCMhg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T9Nw66RCMhg.mp4/T9Nw66RCMhg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T9Nw66RCMhg.mp4/T9Nw66RCMhg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T9Nw66RCMhg.m3u8/T9Nw66RCMhg.m3u8"}, "path": "khan/science/biology/her/tree-of-life/human-prehistory-101-part-2-weathering-the-storm/", "duration": 205, "id": "T9Nw66RCMhg", "title": "Human prehistory 101 part 2: Weathering the storm", "format": "mp4", "description": "Third in a series of videos that introduces human prehistory, this video describes how early humans continued to defy the odds and populated the Americas during the last ice age.", "slug": "human-prehistory-101-part-2-weathering-the-storm", "kind": "Video", "video_id": "T9Nw66RCMhg", "keywords": "genetics, dna, testing, kit, genome, test, prehistory, ancestry, genomics", "youtube_id": "T9Nw66RCMhg", "readable_id": "human-prehistory-101-part-2-weathering-the-storm"}, "z-SU7P-gIoQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z-SU7P-gIoQ.mp4/z-SU7P-gIoQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z-SU7P-gIoQ.mp4/z-SU7P-gIoQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z-SU7P-gIoQ.m3u8/z-SU7P-gIoQ.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/properties-matrix-multiplication/commutative-property-matrix-multiplication/", "duration": 452, "id": "z-SU7P-gIoQ", "title": "Is matrix multiplication commutative", "format": "mp4", "description": "", "slug": "commutative-property-matrix-multiplication", "kind": "Video", "video_id": "z-SU7P-gIoQ", "keywords": "", "youtube_id": "z-SU7P-gIoQ", "readable_id": "commutative-property-matrix-multiplication"}, "ND-Bbp_q46s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ND-Bbp_q46s.mp4/ND-Bbp_q46s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ND-Bbp_q46s.mp4/ND-Bbp_q46s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ND-Bbp_q46s.m3u8/ND-Bbp_q46s.m3u8"}, "duration": 410, "id": "ND-Bbp_q46s", "title": "New operator definitions", "format": "mp4", "description": "Getting comfortable with evaluating newly defined function operators", "path": "khan/math/algebra2/functions_and_graphs/new_operators/new-operator-definitions/", "slug": "new-operator-definitions", "kind": "Video", "video_id": "ND-Bbp_q46s", "keywords": "algebra, operators, function, SAT", "youtube_id": "ND-Bbp_q46s", "readable_id": "new-operator-definitions"}, "tC1SfxRvtmM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tC1SfxRvtmM.mp4/tC1SfxRvtmM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tC1SfxRvtmM.mp4/tC1SfxRvtmM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tC1SfxRvtmM.m3u8/tC1SfxRvtmM.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/evaluate-a-formula-using-substitution/", "duration": 75, "id": "tC1SfxRvtmM", "title": "Evaluating an expression using substitution", "format": "mp4", "description": "In this example we have a formula for converting Celsius temperature to Fahrenheit. Let's substitute the variable with a value (Celsius temp) to get the degrees in Fahrenheit. Great problem to practice with us!", "slug": "evaluate-a-formula-using-substitution", "kind": "Video", "video_id": "tC1SfxRvtmM", "keywords": "u10_l1_t4_we1, Evaluate, formula, using, substitution, CC_6_EE_2_c, CC_6_EE_6, CC_6_EE_9, CC_7_EE_4, CC_8_EE_7, CC_8_EE_7_a, CC_39336_A-CED_1", "youtube_id": "tC1SfxRvtmM", "readable_id": "evaluate-a-formula-using-substitution"}, "1r0zOCtrAwo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1r0zOCtrAwo.mp4/1r0zOCtrAwo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1r0zOCtrAwo.mp4/1r0zOCtrAwo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1r0zOCtrAwo.m3u8/1r0zOCtrAwo.m3u8"}, "duration": 554, "id": "1r0zOCtrAwo", "title": "Polymers", "format": "mp4", "description": "Did you know that Polymers save the lives of Elephants? Well, now you do! The world of Polymers is so amazingly integrated into our daily lives that we sometimes forget how amazing they are. Here, Hank talks about how they were developed an the different types of Polymers that are common in the world today, including some that may surprise you.\nWriters: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem45-polymers/", "slug": "chem45-polymers", "kind": "Video", "video_id": "1r0zOCtrAwo", "keywords": "", "youtube_id": "1r0zOCtrAwo", "readable_id": "chem45-polymers"}, "2ZSDevuR4UY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2ZSDevuR4UY.mp4/2ZSDevuR4UY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2ZSDevuR4UY.mp4/2ZSDevuR4UY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2ZSDevuR4UY.m3u8/2ZSDevuR4UY.m3u8"}, "duration": 376, "id": "2ZSDevuR4UY", "title": "The 14th Amendment", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "reconstruction-amendments-14th-amendment/", "slug": "reconstruction-amendments-14th-amendment", "kind": "Video", "video_id": "2ZSDevuR4UY", "keywords": "", "youtube_id": "2ZSDevuR4UY", "readable_id": "reconstruction-amendments-14th-amendment"}, "497oIjqRPco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/497oIjqRPco.mp4/497oIjqRPco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/497oIjqRPco.mp4/497oIjqRPco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/497oIjqRPco.m3u8/497oIjqRPco.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/multiplying-and-dividing-in-scientific-notation/", "duration": 173, "id": "497oIjqRPco", "title": "Multiplying and dividing in scientific notation", "format": "mp4", "description": "", "slug": "multiplying-and-dividing-in-scientific-notation", "kind": "Video", "video_id": "497oIjqRPco", "keywords": "", "youtube_id": "497oIjqRPco", "readable_id": "multiplying-and-dividing-in-scientific-notation"}, "gRntusF_tVI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gRntusF_tVI.mp4/gRntusF_tVI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gRntusF_tVI.mp4/gRntusF_tVI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gRntusF_tVI.m3u8/gRntusF_tVI.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/systems_of_linear_equations_word_problems/using-a-system-of-equations-to-find-the-price-of-apples-and-oranges/", "duration": 306, "id": "gRntusF_tVI", "title": "Systems of equations word problems example 2", "format": "mp4", "description": "", "slug": "using-a-system-of-equations-to-find-the-price-of-apples-and-oranges", "kind": "Video", "video_id": "gRntusF_tVI", "keywords": "", "youtube_id": "gRntusF_tVI", "readable_id": "using-a-system-of-equations-to-find-the-price-of-apples-and-oranges"}, "z0-1gBy1ykE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z0-1gBy1ykE.mp4/z0-1gBy1ykE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z0-1gBy1ykE.mp4/z0-1gBy1ykE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z0-1gBy1ykE.m3u8/z0-1gBy1ykE.m3u8"}, "duration": 200, "id": "z0-1gBy1ykE", "title": "Example: Converting radians to degrees", "format": "mp4", "description": "Worked example showing how to convert radians to degrees", "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/we-converting-radians-to-degrees/", "slug": "we-converting-radians-to-degrees", "kind": "Video", "video_id": "z0-1gBy1ykE", "keywords": "radians, degrees", "youtube_id": "z0-1gBy1ykE", "readable_id": "we-converting-radians-to-degrees"}, "8x1-TeDxblU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8x1-TeDxblU.mp4/8x1-TeDxblU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8x1-TeDxblU.mp4/8x1-TeDxblU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8x1-TeDxblU.m3u8/8x1-TeDxblU.m3u8"}, "duration": 778, "id": "8x1-TeDxblU", "title": "Cupcake economics 3", "format": "mp4", "description": "Using our spreadsheet to show why prices decrease when utilization is low and prices increase when utilization is high.", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/cap-util-inflation/cupcake-economics-3/", "slug": "cupcake-economics-3", "kind": "Video", "video_id": "8x1-TeDxblU", "keywords": "economics, finance, inflation, deflation, income, statement", "youtube_id": "8x1-TeDxblU", "readable_id": "cupcake-economics-3"}, "-UZuG3XpAd0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-UZuG3XpAd0.mp4/-UZuG3XpAd0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-UZuG3XpAd0.mp4/-UZuG3XpAd0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-UZuG3XpAd0.m3u8/-UZuG3XpAd0.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/donatello-mary-magdalene/", "duration": 246, "id": "-UZuG3XpAd0", "title": "Donatello, Mary Magdalene", "format": "mp4", "description": "Donatello, Mary Magdalene, c. 1455, wood, 188 cm (Museo dell'Opera del Duomo, Florence)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "donatello-mary-magdalene", "kind": "Video", "video_id": "-UZuG3XpAd0", "keywords": "art history, renaissance", "youtube_id": "-UZuG3XpAd0", "readable_id": "donatello-mary-magdalene"}, "u1SAo2GiX8A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u1SAo2GiX8A.mp4/u1SAo2GiX8A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u1SAo2GiX8A.mp4/u1SAo2GiX8A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u1SAo2GiX8A.m3u8/u1SAo2GiX8A.m3u8"}, "duration": 235, "id": "u1SAo2GiX8A", "title": "Example 4: Factoring by grouping", "format": "mp4", "description": "Factoring Trinomials by Grouping 4", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-by-grouping/factoring-trinomials-by-grouping-4/", "slug": "factoring-trinomials-by-grouping-4", "kind": "Video", "video_id": "u1SAo2GiX8A", "keywords": "U09_L1_T3_we1, Factoring, Trinomials, by, Grouping, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "u1SAo2GiX8A", "readable_id": "factoring-trinomials-by-grouping-4"}, "Av_Us6xHkUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Av_Us6xHkUc.mp4/Av_Us6xHkUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Av_Us6xHkUc.mp4/Av_Us6xHkUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Av_Us6xHkUc.m3u8/Av_Us6xHkUc.m3u8"}, "duration": 235, "id": "Av_Us6xHkUc", "title": "Doodle music", "format": "mp4", "description": "A visual and musical expression of mathematical symmetry groups. The transformations done to the video are equivalent to the transformations done to the notes.\n\nThese type of repeating patterns are called frieze patterns. A couple wallpaper groups are also represented.", "path": "khan/math/recreational-math/vi-hart/singing/doodle-music/", "slug": "doodle-music", "kind": "Video", "video_id": "Av_Us6xHkUc", "keywords": "doodling, mathematics, art, pattern, symmetry, frieze, music, doodle", "youtube_id": "Av_Us6xHkUc", "readable_id": "doodle-music"}, "OmVBfdmWItk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OmVBfdmWItk.mp4/OmVBfdmWItk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OmVBfdmWItk.mp4/OmVBfdmWItk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OmVBfdmWItk.m3u8/OmVBfdmWItk.m3u8"}, "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/spout-tools/", "duration": 86, "id": "OmVBfdmWItk", "title": "Spout tools", "format": "mp4", "description": "", "slug": "spout-tools", "kind": "Video", "video_id": "OmVBfdmWItk", "keywords": "", "youtube_id": "OmVBfdmWItk", "readable_id": "spout-tools"}, "YTuh7BmTNQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YTuh7BmTNQc.mp4/YTuh7BmTNQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YTuh7BmTNQc.mp4/YTuh7BmTNQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YTuh7BmTNQc.m3u8/YTuh7BmTNQc.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-time-management-obstacles/", "duration": 55, "id": "YTuh7BmTNQc", "title": "Student story: Overcoming time management obstacles to college", "format": "mp4", "description": "", "slug": "ss-time-management-obstacles", "kind": "Video", "video_id": "YTuh7BmTNQc", "keywords": "", "youtube_id": "YTuh7BmTNQc", "readable_id": "ss-time-management-obstacles"}, "3ebYvMC12HI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3ebYvMC12HI.mp4/3ebYvMC12HI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3ebYvMC12HI.mp4/3ebYvMC12HI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3ebYvMC12HI.m3u8/3ebYvMC12HI.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/classical/erechtheion/", "duration": 488, "id": "3ebYvMC12HI", "title": "The Erechtheion", "format": "mp4", "description": "The Erechtheion, 421-405 B.C.E. (Classical Greek), Acropolis, Athens\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "erechtheion", "kind": "Video", "video_id": "3ebYvMC12HI", "keywords": "Erechtheion, Greece, Greek, Arcopolis, Athens, ancient, caryatid, Erechtheum, King Erechtheus, Zeus, Athena, Poseidon", "youtube_id": "3ebYvMC12HI", "readable_id": "erechtheion"}, "rdaxI6ekLLQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rdaxI6ekLLQ.mp4/rdaxI6ekLLQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rdaxI6ekLLQ.mp4/rdaxI6ekLLQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rdaxI6ekLLQ.m3u8/rdaxI6ekLLQ.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/neolithic-art-china/rhinoceros-vessel/", "duration": 183, "id": "rdaxI6ekLLQ", "title": "Ritual vessel in the shape of a rhinoceros", "format": "mp4", "description": "Few Chinese vessels made during the Bronze Age (approx. 1500\u2013221 B.C.E.) were in the form of animals, and most of those featured surface decorations of other animals, like tigers or dragons. Listen to Jay Xu, Director of the Asian Art Museum, discuss one of the museum's masterpieces, a ritual vessel in the shape of a rhinoceros, as you view the object in 3D. Learn more about this ritual vessel on the Asian Art Museum's education website.", "slug": "rhinoceros-vessel", "kind": "Video", "video_id": "rdaxI6ekLLQ", "keywords": "", "youtube_id": "rdaxI6ekLLQ", "readable_id": "rhinoceros-vessel"}, "MT4akJsAmb0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MT4akJsAmb0.mp4/MT4akJsAmb0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MT4akJsAmb0.mp4/MT4akJsAmb0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MT4akJsAmb0.m3u8/MT4akJsAmb0.m3u8"}, "duration": 850, "id": "MT4akJsAmb0", "title": "Allocative efficiency and marginal benefit", "format": "mp4", "description": "Marginal Utility and maximization", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/production-possibilities/allocative-efficiency-and-marginal-benefit/", "slug": "allocative-efficiency-and-marginal-benefit", "kind": "Video", "video_id": "MT4akJsAmb0", "keywords": "productive, allocative, efficiency, marginal, cost, benefit", "youtube_id": "MT4akJsAmb0", "readable_id": "allocative-efficiency-and-marginal-benefit"}, "Qod67l16LfQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qod67l16LfQ.mp4/Qod67l16LfQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qod67l16LfQ.mp4/Qod67l16LfQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qod67l16LfQ.m3u8/Qod67l16LfQ.m3u8"}, "duration": 599, "id": "Qod67l16LfQ", "title": "GMAT: Math 23", "format": "mp4", "description": "120-123, pg. 168", "path": "khan/test-prep/gmat/problem-solving/gmat-math-23/", "slug": "gmat-math-23", "kind": "Video", "video_id": "Qod67l16LfQ", "keywords": "GMAT, Math, problem, solving", "youtube_id": "Qod67l16LfQ", "readable_id": "gmat-math-23"}, "zOrkcZ1dlHk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zOrkcZ1dlHk.mp4/zOrkcZ1dlHk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zOrkcZ1dlHk.mp4/zOrkcZ1dlHk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zOrkcZ1dlHk.m3u8/zOrkcZ1dlHk.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-16-possible-values-for-t/", "duration": 273, "id": "zOrkcZ1dlHk", "title": "16 Possible values for t", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-16-possible-values-for-t", "kind": "Video", "video_id": "zOrkcZ1dlHk", "keywords": "", "youtube_id": "zOrkcZ1dlHk", "readable_id": "sat-16-possible-values-for-t"}, "WfMfs6naKkE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WfMfs6naKkE.mp4/WfMfs6naKkE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WfMfs6naKkE.mp4/WfMfs6naKkE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WfMfs6naKkE.m3u8/WfMfs6naKkE.m3u8"}, "duration": 699, "id": "WfMfs6naKkE", "title": "6th graders learn to build a Spider robot", "format": "mp4", "description": "Vicki Lombardi's 6th grade students at Santa Rita Elementary in Los Altos School district learn how to build a Spider robot.\n\nRead more at: http://lasdilearn.blogspot.com/2013/02/third-graders-building-robots-mission.html", "path": "khan/science/discoveries-projects/robots/spider_bot/santa_rita_spider_bots/", "slug": "santa_rita_spider_bots", "kind": "Video", "video_id": "WfMfs6naKkE", "keywords": "spider, spider bot, make, hack, robot, project based learning, hands-on projects, Khan Academy, Arduino", "youtube_id": "WfMfs6naKkE", "readable_id": "santa_rita_spider_bots"}, "A-ykhY_IoaU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A-ykhY_IoaU.mp4/A-ykhY_IoaU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A-ykhY_IoaU.mp4/A-ykhY_IoaU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A-ykhY_IoaU.m3u8/A-ykhY_IoaU.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-making-5-9/making-5/", "duration": 246, "id": "A-ykhY_IoaU", "title": "Making 5", "format": "mp4", "description": "Learn how to add numbers to make 5.", "slug": "making-5", "kind": "Video", "video_id": "A-ykhY_IoaU", "keywords": "", "youtube_id": "A-ykhY_IoaU", "readable_id": "making-5"}, "E7OkUomRq1Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E7OkUomRq1Q.mp4/E7OkUomRq1Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E7OkUomRq1Q.mp4/E7OkUomRq1Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E7OkUomRq1Q.m3u8/E7OkUomRq1Q.m3u8"}, "duration": 778, "id": "E7OkUomRq1Q", "title": "Complex determinant example", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 53 Complex Determinant", "path": "khan/test-prep/iit-jee-subject/iit-jee/complex-determinant-example/", "slug": "complex-determinant-example", "kind": "Video", "video_id": "E7OkUomRq1Q", "keywords": "2010, IIT, JEE, Paper, Problem, 53, Complex, Determinant", "youtube_id": "E7OkUomRq1Q", "readable_id": "complex-determinant-example"}, "1LxhXqD3_CE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1LxhXqD3_CE.mp4/1LxhXqD3_CE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1LxhXqD3_CE.mp4/1LxhXqD3_CE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1LxhXqD3_CE.m3u8/1LxhXqD3_CE.m3u8"}, "duration": 447, "id": "1LxhXqD3_CE", "title": "Generalized Taylor series approximation", "format": "mp4", "description": "Approximating a function around a non-zero x value", "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/generalized-taylor-series-approximation/", "slug": "generalized-taylor-series-approximation", "kind": "Video", "video_id": "1LxhXqD3_CE", "keywords": "taylor, maclaurin, function, approximation", "youtube_id": "1LxhXqD3_CE", "readable_id": "generalized-taylor-series-approximation"}, "ZGIPntpFCOc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZGIPntpFCOc.mp4/ZGIPntpFCOc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZGIPntpFCOc.mp4/ZGIPntpFCOc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZGIPntpFCOc.m3u8/ZGIPntpFCOc.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/home-buying-process/titles-and-deeds-in-real-estate/", "duration": 546, "id": "ZGIPntpFCOc", "title": "Titles and deeds in real estate", "format": "mp4", "description": "", "slug": "titles-and-deeds-in-real-estate", "kind": "Video", "video_id": "ZGIPntpFCOc", "keywords": "", "youtube_id": "ZGIPntpFCOc", "readable_id": "titles-and-deeds-in-real-estate"}, "JPoQeuWybIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JPoQeuWybIo.mp4/JPoQeuWybIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JPoQeuWybIo.mp4/JPoQeuWybIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JPoQeuWybIo.m3u8/JPoQeuWybIo.m3u8"}, "duration": 337, "id": "JPoQeuWybIo", "title": "Mark Rothko", "format": "mp4", "description": "Explore the power of abstraction through Mark Rothko's luminous and introspective paintings. To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-mark-rothko/", "slug": "moma-mark-rothko", "kind": "Video", "video_id": "JPoQeuWybIo", "keywords": "", "youtube_id": "JPoQeuWybIo", "readable_id": "moma-mark-rothko"}, "oMNaQjtXSGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oMNaQjtXSGc.mp4/oMNaQjtXSGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oMNaQjtXSGc.mp4/oMNaQjtXSGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oMNaQjtXSGc.m3u8/oMNaQjtXSGc.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/self-presentation-and-interacting-with-others/george-herbert-mead-the-i-and-the-me/", "duration": 328, "id": "oMNaQjtXSGc", "title": "George Herbert Mead- The I and the Me", "format": "mp4", "description": "", "slug": "george-herbert-mead-the-i-and-the-me", "kind": "Video", "video_id": "oMNaQjtXSGc", "keywords": "", "youtube_id": "oMNaQjtXSGc", "readable_id": "george-herbert-mead-the-i-and-the-me"}, "4h54s7BBPpA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4h54s7BBPpA.mp4/4h54s7BBPpA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4h54s7BBPpA.mp4/4h54s7BBPpA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4h54s7BBPpA.m3u8/4h54s7BBPpA.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain-of-a-radical-function/", "duration": 107, "id": "4h54s7BBPpA", "title": "Domain of a radical function", "format": "mp4", "description": "Domain of a Radical Function", "slug": "domain-of-a-radical-function", "kind": "Video", "video_id": "4h54s7BBPpA", "keywords": "u17_l2_t3_we2, Domain, of, Radical, Function", "youtube_id": "4h54s7BBPpA", "readable_id": "domain-of-a-radical-function"}, "rU222pVq520": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rU222pVq520.mp4/rU222pVq520.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rU222pVq520.mp4/rU222pVq520.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rU222pVq520.m3u8/rU222pVq520.m3u8"}, "duration": 236, "id": "rU222pVq520", "title": "Limit by factoring cubic expression", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/algebraic-limits/limit-factoring-cubic/", "slug": "limit-factoring-cubic", "kind": "Video", "video_id": "rU222pVq520", "keywords": "", "youtube_id": "rU222pVq520", "readable_id": "limit-factoring-cubic"}, "62NoiGwZmd4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/62NoiGwZmd4.mp4/62NoiGwZmd4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/62NoiGwZmd4.mp4/62NoiGwZmd4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/62NoiGwZmd4.m3u8/62NoiGwZmd4.m3u8"}, "duration": 123, "id": "62NoiGwZmd4", "title": "Properties of numbers 1", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/properties-of-numbers-1/", "slug": "properties-of-numbers-1", "kind": "Video", "video_id": "62NoiGwZmd4", "keywords": "", "youtube_id": "62NoiGwZmd4", "readable_id": "properties-of-numbers-1"}, "5AWob_z74Ks": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5AWob_z74Ks.mp4/5AWob_z74Ks.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5AWob_z74Ks.mp4/5AWob_z74Ks.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5AWob_z74Ks.m3u8/5AWob_z74Ks.m3u8"}, "duration": 1511, "id": "5AWob_z74Ks", "title": "Defining the angle between vectors", "format": "mp4", "description": "Introducing the idea of an angle between two vectors", "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/defining-the-angle-between-vectors/", "slug": "defining-the-angle-between-vectors", "kind": "Video", "video_id": "5AWob_z74Ks", "keywords": "Linear, Algebra, Vectors, dot, product, angle", "youtube_id": "5AWob_z74Ks", "readable_id": "defining-the-angle-between-vectors"}, "nlUG4OKN1IY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nlUG4OKN1IY.mp4/nlUG4OKN1IY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nlUG4OKN1IY.mp4/nlUG4OKN1IY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nlUG4OKN1IY.m3u8/nlUG4OKN1IY.m3u8"}, "duration": 1128, "id": "nlUG4OKN1IY", "title": "Using the Laplace transform to solve a nonhomogeneous eq", "format": "mp4", "description": "Solving a non-homogeneous differential equation using the Laplace Transform", "path": "khan/math/differential-equations/laplace-transform/laplace-transform-to-solve-differential-equation/using-the-laplace-transform-to-solve-a-nonhomogenous-eq/", "slug": "using-the-laplace-transform-to-solve-a-nonhomogenous-eq", "kind": "Video", "video_id": "nlUG4OKN1IY", "keywords": "laplace, transform, differential, equations", "youtube_id": "nlUG4OKN1IY", "readable_id": "using-the-laplace-transform-to-solve-a-nonhomogenous-eq"}, "0v1C5x1ALI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0v1C5x1ALI8.mp4/0v1C5x1ALI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0v1C5x1ALI8.mp4/0v1C5x1ALI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0v1C5x1ALI8.m3u8/0v1C5x1ALI8.m3u8"}, "path": "khan/test-prep/mcat/cells/cellular-development/mitochondria-apoptosis-and-oxidative-stress/", "duration": 692, "id": "0v1C5x1ALI8", "title": "Mitochondria, apoptosis, and oxidative stress", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "mitochondria-apoptosis-and-oxidative-stress", "kind": "Video", "video_id": "0v1C5x1ALI8", "keywords": "", "youtube_id": "0v1C5x1ALI8", "readable_id": "mitochondria-apoptosis-and-oxidative-stress"}, "vlUVwfRarNQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vlUVwfRarNQ.mp4/vlUVwfRarNQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vlUVwfRarNQ.mp4/vlUVwfRarNQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vlUVwfRarNQ.m3u8/vlUVwfRarNQ.m3u8"}, "path": "khan/college-admissions/paying-for-college/financial-aid-packages/financial-aid-package-components-part-1/", "duration": 439, "id": "vlUVwfRarNQ", "title": "Financial aid package components: Part 1", "format": "mp4", "description": "", "slug": "financial-aid-package-components-part-1", "kind": "Video", "video_id": "vlUVwfRarNQ", "keywords": "", "youtube_id": "vlUVwfRarNQ", "readable_id": "financial-aid-package-components-part-1"}, "C1pHvEAKmLA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C1pHvEAKmLA.mp4/C1pHvEAKmLA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C1pHvEAKmLA.mp4/C1pHvEAKmLA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C1pHvEAKmLA.m3u8/C1pHvEAKmLA.m3u8"}, "duration": 170, "id": "C1pHvEAKmLA", "title": "More on final and intermediate GDP contributions", "format": "mp4", "description": "What happens when a good is not finished in a period", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/circular-econ-gdp-tutorial/more-on-final-and-intermediate-gdp-contributions/", "slug": "more-on-final-and-intermediate-gdp-contributions", "kind": "Video", "video_id": "C1pHvEAKmLA", "keywords": "macroeconomics", "youtube_id": "C1pHvEAKmLA", "readable_id": "more-on-final-and-intermediate-gdp-contributions"}, "WtCCobhLqng": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WtCCobhLqng.mp4/WtCCobhLqng.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WtCCobhLqng.mp4/WtCCobhLqng.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WtCCobhLqng.m3u8/WtCCobhLqng.m3u8"}, "duration": 826, "id": "WtCCobhLqng", "title": "Biological Molecules - you are what you eat", "format": "mp4", "description": "Hank talks about the molecules that make up every living thing - carbohydrates, lipids, and proteins - and how we find them in our environment and in the food that we eat.", "path": "crash-course-biology-103/", "slug": "crash-course-biology-103", "kind": "Video", "video_id": "WtCCobhLqng", "keywords": "", "youtube_id": "WtCCobhLqng", "readable_id": "crash-course-biology-103"}, "v5Oz9kVptCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v5Oz9kVptCY.mp4/v5Oz9kVptCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v5Oz9kVptCY.mp4/v5Oz9kVptCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v5Oz9kVptCY.m3u8/v5Oz9kVptCY.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-24-museum-funding/", "duration": 72, "id": "v5Oz9kVptCY", "title": "24 Museum funding", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-24-museum-funding", "kind": "Video", "video_id": "v5Oz9kVptCY", "keywords": "", "youtube_id": "v5Oz9kVptCY", "readable_id": "sat-24-museum-funding"}, "DtCfOMl3qo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DtCfOMl3qo0.mp4/DtCfOMl3qo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DtCfOMl3qo0.mp4/DtCfOMl3qo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DtCfOMl3qo0.m3u8/DtCfOMl3qo0.m3u8"}, "duration": 396, "id": "DtCfOMl3qo0", "title": "Calculating federal taxes and take home pay", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/calculating-federal-taxes-and-take-home-pay/", "slug": "calculating-federal-taxes-and-take-home-pay", "kind": "Video", "video_id": "DtCfOMl3qo0", "keywords": "", "youtube_id": "DtCfOMl3qo0", "readable_id": "calculating-federal-taxes-and-take-home-pay"}, "dWxcQZBM3eQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dWxcQZBM3eQ.mp4/dWxcQZBM3eQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dWxcQZBM3eQ.mp4/dWxcQZBM3eQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dWxcQZBM3eQ.m3u8/dWxcQZBM3eQ.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/early-medieval/sutton-hoo-ship-burial-c-700/", "duration": 263, "id": "dWxcQZBM3eQ", "title": "Sutton Hoo ship burial", "format": "mp4", "description": "Sutton Hoo Ship Burial, c. 700 (British Museum, London)\n\nMultiple bronze, gold and silver objects of Anglo Saxon origin, found in Suffolk, England, including: a helmet, sceptre, sword, hanging bowl, bowls and spoons, shoulder clasps, a belt buckle, and purse lid.\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "sutton-hoo-ship-burial-c-700", "kind": "Video", "video_id": "dWxcQZBM3eQ", "keywords": "sutton Hoo, Medieval, Art History, Anglo-Saxon, British Museum, Smarthistory", "youtube_id": "dWxcQZBM3eQ", "readable_id": "sutton-hoo-ship-burial-c-700"}, "G-T_6hCdMQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G-T_6hCdMQc.mp4/G-T_6hCdMQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G-T_6hCdMQc.mp4/G-T_6hCdMQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G-T_6hCdMQc.m3u8/G-T_6hCdMQc.m3u8"}, "duration": 731, "id": "G-T_6hCdMQc", "title": "Basic trigonometry II", "format": "mp4", "description": "A few more examples using SOH CAH TOA", "path": "khan/math/trigonometry/basic-trigonometry/basic_trig_ratios/basic-trigonometry-ii/", "slug": "basic-trigonometry-ii", "kind": "Video", "video_id": "G-T_6hCdMQc", "keywords": "trig, sin, cos, tan", "youtube_id": "G-T_6hCdMQc", "readable_id": "basic-trigonometry-ii"}, "j9ZPMlVHJVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j9ZPMlVHJVs.mp4/j9ZPMlVHJVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j9ZPMlVHJVs.mp4/j9ZPMlVHJVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j9ZPMlVHJVs.m3u8/j9ZPMlVHJVs.m3u8"}, "path": "khan/math/probability/statistics-inferential/anova/anova-2-calculating-ssw-and-ssb-total-sum-of-squares-within-and-between-avi/", "duration": 800, "id": "j9ZPMlVHJVs", "title": "ANOVA 2: Calculating SSW and SSB (total sum of squares within and between)", "format": "mp4", "description": "Analysis of Variance 2 - Calculating SSW and SSB (Total Sum of Squares Within and Between).avi", "slug": "anova-2-calculating-ssw-and-ssb-total-sum-of-squares-within-and-between-avi", "kind": "Video", "video_id": "j9ZPMlVHJVs", "keywords": "ANOVA, Calculating, SSW, and, SSB, (Total, Sum, of, Squares, Within, Between).avi, CC_7_SP_3, CC_7_SP_4", "youtube_id": "j9ZPMlVHJVs", "readable_id": "anova-2-calculating-ssw-and-ssb-total-sum-of-squares-within-and-between-avi"}, "wRf6XiEZ_Y8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wRf6XiEZ_Y8.mp4/wRf6XiEZ_Y8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wRf6XiEZ_Y8.mp4/wRf6XiEZ_Y8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wRf6XiEZ_Y8.m3u8/wRf6XiEZ_Y8.m3u8"}, "duration": 1482, "id": "wRf6XiEZ_Y8", "title": "Khan Academy Vision and Social Return", "format": "mp4", "description": "An overview of the Khan Academy today and what I see as its potential social impact", "path": "khan-academy-vision-and-social-return/", "slug": "khan-academy-vision-and-social-return", "kind": "Video", "video_id": "wRf6XiEZ_Y8", "keywords": "Khan, Academy, Vision, and, Social, Return", "youtube_id": "wRf6XiEZ_Y8", "readable_id": "khan-academy-vision-and-social-return"}, "9AoDucUmO20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9AoDucUmO20.mp4/9AoDucUmO20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9AoDucUmO20.mp4/9AoDucUmO20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9AoDucUmO20.m3u8/9AoDucUmO20.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/polynomial-approximations-of-functions-part-5/", "duration": 564, "id": "9AoDucUmO20", "title": "Polynomial approximations of functions (part 5)", "format": "mp4", "description": "MacLaurin representation of sin x", "slug": "polynomial-approximations-of-functions-part-5", "kind": "Video", "video_id": "9AoDucUmO20", "keywords": "math, calculus, series, maclaurin, taylor, sin", "youtube_id": "9AoDucUmO20", "readable_id": "polynomial-approximations-of-functions-part-5"}, "X-m0JDCw6TE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X-m0JDCw6TE.mp4/X-m0JDCw6TE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X-m0JDCw6TE.mp4/X-m0JDCw6TE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X-m0JDCw6TE.m3u8/X-m0JDCw6TE.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/overview-of-the-functions-of-the-cerebral-cortex/", "duration": 344, "id": "X-m0JDCw6TE", "title": "Overview of the functions of the cerebral cortex", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "overview-of-the-functions-of-the-cerebral-cortex", "kind": "Video", "video_id": "X-m0JDCw6TE", "keywords": "", "youtube_id": "X-m0JDCw6TE", "readable_id": "overview-of-the-functions-of-the-cerebral-cortex"}, "J-ftiWffNTc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J-ftiWffNTc.mp4/J-ftiWffNTc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J-ftiWffNTc.mp4/J-ftiWffNTc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J-ftiWffNTc.m3u8/J-ftiWffNTc.m3u8"}, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-threatened/local-threats-to-biodiversity/introduced-species-and-biodiversity/", "duration": 596, "id": "J-ftiWffNTc", "title": "Introduced species and biodiversity", "format": "mp4", "description": "", "slug": "introduced-species-and-biodiversity", "kind": "Video", "video_id": "J-ftiWffNTc", "keywords": "", "youtube_id": "J-ftiWffNTc", "readable_id": "introduced-species-and-biodiversity"}, "8SsC5st4LnI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8SsC5st4LnI.mp4/8SsC5st4LnI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8SsC5st4LnI.mp4/8SsC5st4LnI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8SsC5st4LnI.m3u8/8SsC5st4LnI.m3u8"}, "duration": 1085, "id": "8SsC5st4LnI", "title": "Taylor polynomials", "format": "mp4", "description": "Approximating a function with a Taylor Polynomial", "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/taylor-polynomials/", "slug": "taylor-polynomials", "kind": "Video", "video_id": "8SsC5st4LnI", "keywords": "taylor, series, polynomial, approximation", "youtube_id": "8SsC5st4LnI", "readable_id": "taylor-polynomials"}, "Qwet4cIpnCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qwet4cIpnCM.mp4/Qwet4cIpnCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qwet4cIpnCM.mp4/Qwet4cIpnCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qwet4cIpnCM.m3u8/Qwet4cIpnCM.m3u8"}, "duration": 579, "id": "Qwet4cIpnCM", "title": "Intro to 30-60-90 triangles", "format": "mp4", "description": "A few more 45-45-90 examples and an introduction to 30-60-90 triangles.", "path": "khan/math/geometry/right_triangles_topic/special_right_triangles/intro-to-30-60-90-triangles/", "slug": "intro-to-30-60-90-triangles", "kind": "Video", "video_id": "Qwet4cIpnCM", "keywords": "Geometry, Math, Khan", "youtube_id": "Qwet4cIpnCM", "readable_id": "intro-to-30-60-90-triangles"}, "TvSKeTFsaj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TvSKeTFsaj4.mp4/TvSKeTFsaj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TvSKeTFsaj4.mp4/TvSKeTFsaj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TvSKeTFsaj4.m3u8/TvSKeTFsaj4.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-word-probs-pre-alg/solving-percent-problems/", "duration": 377, "id": "TvSKeTFsaj4", "title": "Solving percent problems", "format": "mp4", "description": "We'll use algebra to solve this percent problem.", "slug": "solving-percent-problems", "kind": "Video", "video_id": "TvSKeTFsaj4", "keywords": "U05_L2_T1_we1, Solving, Percent, Problems", "youtube_id": "TvSKeTFsaj4", "readable_id": "solving-percent-problems"}, "tSNtCg7o7bA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tSNtCg7o7bA.mp4/tSNtCg7o7bA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tSNtCg7o7bA.mp4/tSNtCg7o7bA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tSNtCg7o7bA.m3u8/tSNtCg7o7bA.m3u8"}, "path": "khan/math/algebra/quadratics/quadratic_odds_ends/ca-algebra-i-quadratic-equation/", "duration": 614, "id": "tSNtCg7o7bA", "title": "CA Algebra I: Quadratic equation", "format": "mp4", "description": "53-57, Quadratic Equation", "slug": "ca-algebra-i-quadratic-equation", "kind": "Video", "video_id": "tSNtCg7o7bA", "keywords": "algebra, quadratic, equation", "youtube_id": "tSNtCg7o7bA", "readable_id": "ca-algebra-i-quadratic-equation"}, "pT6tFia8eaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pT6tFia8eaY.mp4/pT6tFia8eaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pT6tFia8eaY.mp4/pT6tFia8eaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pT6tFia8eaY.m3u8/pT6tFia8eaY.m3u8"}, "duration": 506, "id": "pT6tFia8eaY", "title": "Mussolini becomes absolute dictator (Il Duce)", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/mussolini-fascism/mussolini-becomes-absolute-dictator-il-duce/", "slug": "mussolini-becomes-absolute-dictator-il-duce", "kind": "Video", "video_id": "pT6tFia8eaY", "keywords": "", "youtube_id": "pT6tFia8eaY", "readable_id": "mussolini-becomes-absolute-dictator-il-duce"}, "FcLeaD3UII4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FcLeaD3UII4.mp4/FcLeaD3UII4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FcLeaD3UII4.mp4/FcLeaD3UII4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FcLeaD3UII4.m3u8/FcLeaD3UII4.m3u8"}, "duration": 234, "id": "FcLeaD3UII4", "title": "Applying the fundamental theorem of calculus", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/fundamental-theorem-of-calculus/applying-the-fundamental-theorem-of-calculus/", "slug": "applying-the-fundamental-theorem-of-calculus", "kind": "Video", "video_id": "FcLeaD3UII4", "keywords": "", "youtube_id": "FcLeaD3UII4", "readable_id": "applying-the-fundamental-theorem-of-calculus"}, "HUn4XwV7o9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HUn4XwV7o9I.mp4/HUn4XwV7o9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HUn4XwV7o9I.mp4/HUn4XwV7o9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HUn4XwV7o9I.m3u8/HUn4XwV7o9I.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/solutions-graphs-two-variable-equations/ordered-pair-solutions-of-equations/", "duration": 89, "id": "HUn4XwV7o9I", "title": "Ordered pair solutions to equations", "format": "mp4", "description": "Ordered pair solutions of equations", "slug": "ordered-pair-solutions-of-equations", "kind": "Video", "video_id": "HUn4XwV7o9I", "keywords": "u13_l1_t2_we3, Ordered, pair, solutions, of, equations, CC_8_EE_7_a, CC_39336_A-REI_10", "youtube_id": "HUn4XwV7o9I", "readable_id": "ordered-pair-solutions-of-equations"}, "_01wqwsb66E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_01wqwsb66E.mp4/_01wqwsb66E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_01wqwsb66E.mp4/_01wqwsb66E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_01wqwsb66E.m3u8/_01wqwsb66E.m3u8"}, "duration": 193, "id": "_01wqwsb66E", "title": "Monomial greatest common factor", "format": "mp4", "description": "Monomial Greatest Common Factor", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-monomials/monomial-greatest-common-factor/", "slug": "monomial-greatest-common-factor", "kind": "Video", "video_id": "_01wqwsb66E", "keywords": "u12_l1_t1_we1, Monomial, Greatest, Common, Factor, CC_39336_A-SSE_1_a", "youtube_id": "_01wqwsb66E", "readable_id": "monomial-greatest-common-factor"}, "S9xdJgPWO-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S9xdJgPWO-w.mp4/S9xdJgPWO-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S9xdJgPWO-w.mp4/S9xdJgPWO-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S9xdJgPWO-w.m3u8/S9xdJgPWO-w.m3u8"}, "duration": 605, "id": "S9xdJgPWO-w", "title": "Blue Cross and Blue Shield", "format": "mp4", "description": "Sal and Dr. Baker talk a bit about Blue Cross and Blue Shield", "path": "khan/science/health-and-medicine/health-care-system/blue-cross-and-blue-shield/", "slug": "blue-cross-and-blue-shield", "kind": "Video", "video_id": "S9xdJgPWO-w", "keywords": "Blue, Cross, and, Shield", "youtube_id": "S9xdJgPWO-w", "readable_id": "blue-cross-and-blue-shield"}, "A00qfA9bE84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A00qfA9bE84.mp4/A00qfA9bE84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A00qfA9bE84.mp4/A00qfA9bE84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A00qfA9bE84.m3u8/A00qfA9bE84.m3u8"}, "path": "khan/humanities/art-americas/early-cultures/olmec/face/", "duration": 170, "id": "A00qfA9bE84", "title": "\"Face\" with Joanne Pillsbury", "format": "mp4", "description": "Met curator Joanne Pillsbury on immortality in Mask by the Olmec peoples of ancient Mexico.\n\nDepicting a typical Olmec face with slanted, almond-shaped eyes and a toothless, slightly downturned mouth, this mask is rendered with simplicity and elegance. Its harmonious proportions are indicative of the sophistication attained by Olmec sculptors. The smooth, highly polished planes of cheek, forehead, and chin plus the almost fleshy quality of the nose and parted lips belie the incredible hardness of the jadeite cobble from which the mask was made. The face itself is neither human nor supernatural but, rather, an idealized type that incorporates otherworldly aspects\u2014such as the mouth, with its reference to the so-called were-jaguar, a powerful mythic being with human and jaguar traits.\n\nMasks of this size in stone have not been excavated in archaeological sites and it is difficult to determine their function. Lacking holes for eyes and nose, it could not have been worn over a living face, but there are attachment holes along the edges by means of which it might have been used as a costume element or adhered as a face to a mummy or a sacred bundle. There is a polished, circular depression on the back of the mask.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "slug": "face", "kind": "Video", "video_id": "A00qfA9bE84", "keywords": "dignity, mystery, sculpture, simplicity, stone, transcendence, Latin America & the Carribean", "youtube_id": "A00qfA9bE84", "readable_id": "face"}, "KyUptMWcmZI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KyUptMWcmZI.mp4/KyUptMWcmZI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KyUptMWcmZI.mp4/KyUptMWcmZI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KyUptMWcmZI.m3u8/KyUptMWcmZI.m3u8"}, "duration": 43, "id": "KyUptMWcmZI", "title": "How fast did dinosaurs grow, and how long did they live?", "format": "mp4", "description": "Until recently, paleontologists could only guess the maturity rate and lifespan of dinosaurs. Recent research involving microscopic analyses of the cellular structure of dinosaur bone has revolutionized our answers to these mysteries. Dinosaur bones contain growth rings, somewhat like the rings in tree trunks, which reveal yearly periods of rapid and slow growth. These studies, done in conjunction with paleontologists at AMNH, document that that Tyrannosaurus, which attained a weight of more than 10,000 pounds as an adult, reached sexual maturity at about 20 years of age and lived for up to 28 years.", "path": "how-fast-dinosaurs-grew/", "slug": "how-fast-dinosaurs-grew", "kind": "Video", "video_id": "KyUptMWcmZI", "keywords": "", "youtube_id": "KyUptMWcmZI", "readable_id": "how-fast-dinosaurs-grew"}, "RXgj09NXNWo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RXgj09NXNWo.mp4/RXgj09NXNWo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RXgj09NXNWo.mp4/RXgj09NXNWo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RXgj09NXNWo.m3u8/RXgj09NXNWo.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/basic-equation-practice/missing-steps/", "duration": 114, "id": "RXgj09NXNWo", "title": "Figuring out missing algebraic step", "format": "mp4", "description": "", "slug": "missing-steps", "kind": "Video", "video_id": "RXgj09NXNWo", "keywords": "", "youtube_id": "RXgj09NXNWo", "readable_id": "missing-steps"}, "akm5H2JsccI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/akm5H2JsccI.mp4/akm5H2JsccI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/akm5H2JsccI.mp4/akm5H2JsccI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/akm5H2JsccI.m3u8/akm5H2JsccI.m3u8"}, "duration": 499, "id": "akm5H2JsccI", "title": "The periodic table - valence electrons", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/periodic-table-valence-electrons/", "slug": "periodic-table-valence-electrons", "kind": "Video", "video_id": "akm5H2JsccI", "keywords": "", "youtube_id": "akm5H2JsccI", "readable_id": "periodic-table-valence-electrons"}, "JoC_x3Hzkkc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JoC_x3Hzkkc.mp4/JoC_x3Hzkkc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JoC_x3Hzkkc.mp4/JoC_x3Hzkkc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JoC_x3Hzkkc.m3u8/JoC_x3Hzkkc.m3u8"}, "path": "khan/humanities/art-asia/south-asia/buddhist-art2/varanasi/", "duration": 201, "id": "JoC_x3Hzkkc", "title": "Varanasi: sacred city", "format": "mp4", "description": "A short documentary about one of India's most sacred cities, Varanasi. Learn more about Varanasi on the Asian Art Museum's education website.", "slug": "varanasi", "kind": "Video", "video_id": "JoC_x3Hzkkc", "keywords": "", "youtube_id": "JoC_x3Hzkkc", "readable_id": "varanasi"}, "Qs0J-O0HCbA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qs0J-O0HCbA.mp4/Qs0J-O0HCbA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qs0J-O0HCbA.mp4/Qs0J-O0HCbA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qs0J-O0HCbA.m3u8/Qs0J-O0HCbA.m3u8"}, "duration": 653, "id": "Qs0J-O0HCbA", "title": "The Dark Ages...how dark were they, really?", "format": "mp4", "description": "John Green teaches you about the so-called Dark Ages, which it turns out weren't as uniformly dark as you may have been led to believe. While Europe was indeed having some issues, many other parts of the world were thriving and relatively enlightened. John covers European Feudalism, the cultural blossoming of the Islamic world, and the scientific and artistic advances in China, all during these \"Dark Ages.\" Along the way, John will raise questions about the validity of Europe's status as a continent, reveal the best and worst years of his life, and frankly state that science and religion were once able to coexist.", "path": "khan/humanities/history/crashcourse-worldhistory/whats-god-got-to-do-with-it-2/crash-course-world-history-14/", "slug": "crash-course-world-history-14", "kind": "Video", "video_id": "Qs0J-O0HCbA", "keywords": "crash course", "youtube_id": "Qs0J-O0HCbA", "readable_id": "crash-course-world-history-14"}, "fLKOBQ6cZHA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fLKOBQ6cZHA.mp4/fLKOBQ6cZHA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fLKOBQ6cZHA.mp4/fLKOBQ6cZHA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fLKOBQ6cZHA.m3u8/fLKOBQ6cZHA.m3u8"}, "duration": 990, "id": "fLKOBQ6cZHA", "title": "Red blood cells", "format": "mp4", "description": "Oxygen uptake by hemoglobin in red blood cells", "path": "khan/science/health-and-medicine/hematologic-system/hematologic-system-introduction/red-blood-cells/", "slug": "red-blood-cells", "kind": "Video", "video_id": "fLKOBQ6cZHA", "keywords": "red, blood, cell, hemoglobin", "youtube_id": "fLKOBQ6cZHA", "readable_id": "red-blood-cells"}, "U2iZ83oIZH0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U2iZ83oIZH0.mp4/U2iZ83oIZH0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U2iZ83oIZH0.mp4/U2iZ83oIZH0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U2iZ83oIZH0.m3u8/U2iZ83oIZH0.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/babylonian/ishtar-gate-and-processional-way-reconstruction-babylon-c-575-b-c-e/", "duration": 410, "id": "U2iZ83oIZH0", "title": "Ishtar gate and Processional Way", "format": "mp4", "description": "Reconstruction of the Ishtar Gate and Processional Way, Babylon, c. 575 B.C.E., glazed mud brick (Pergamon Museum, Berlin)", "slug": "ishtar-gate-and-processional-way-reconstruction-babylon-c-575-b-c-e", "kind": "Video", "video_id": "U2iZ83oIZH0", "keywords": "dragons, aurochs, lion, Seven Wonders, Robert Koldewey, Reconstruction, Khan Academy, Google Art Project, Smarthistory, Art History, OER, Ishtar, Gate, Nebuchadnezzar II, Nebuchadnezzar, Biblical, Processional Way, Babylon, 575 B.C.E., glazed brick, Pergamon Museum, Berlin, faince, Ancient, Babylonia, tower of Babel", "youtube_id": "U2iZ83oIZH0", "readable_id": "ishtar-gate-and-processional-way-reconstruction-babylon-c-575-b-c-e"}, "3iNCb7P_bdY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3iNCb7P_bdY.mp4/3iNCb7P_bdY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3iNCb7P_bdY.mp4/3iNCb7P_bdY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3iNCb7P_bdY.m3u8/3iNCb7P_bdY.m3u8"}, "duration": 83, "id": "3iNCb7P_bdY", "title": "Reverse electrodes (polarity)", "format": "mp4", "description": "What happens to the deflection when we attach the penny and zinc in the opposite direction?", "path": "khan/science/discoveries-projects/discoveries/batteries/reverse-polarity/", "slug": "reverse-polarity", "kind": "Video", "video_id": "3iNCb7P_bdY", "keywords": "polarity", "youtube_id": "3iNCb7P_bdY", "readable_id": "reverse-polarity"}, "1JT9oODsClE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1JT9oODsClE.mp4/1JT9oODsClE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1JT9oODsClE.mp4/1JT9oODsClE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1JT9oODsClE.m3u8/1JT9oODsClE.m3u8"}, "duration": 870, "id": "1JT9oODsClE", "title": "Large sample proportion hypothesis testing", "format": "mp4", "description": "Large Sample Proportion Hypothesis Testing", "path": "khan/math/probability/statistics-inferential/hypothesis-testing/large-sample-proportion-hypothesis-testing/", "slug": "large-sample-proportion-hypothesis-testing", "kind": "Video", "video_id": "1JT9oODsClE", "keywords": "Large, Sample, Proportion, Hypothesis, Testing", "youtube_id": "1JT9oODsClE", "readable_id": "large-sample-proportion-hypothesis-testing"}, "haS083Zbib4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/haS083Zbib4.mp4/haS083Zbib4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/haS083Zbib4.mp4/haS083Zbib4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/haS083Zbib4.m3u8/haS083Zbib4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/home-buying-process/types-of-escrow-in-real-estate/", "duration": 395, "id": "haS083Zbib4", "title": "Types of escrow in real estate", "format": "mp4", "description": "", "slug": "types-of-escrow-in-real-estate", "kind": "Video", "video_id": "haS083Zbib4", "keywords": "", "youtube_id": "haS083Zbib4", "readable_id": "types-of-escrow-in-real-estate"}, "2tyEjbFaXdA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2tyEjbFaXdA.mp4/2tyEjbFaXdA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2tyEjbFaXdA.mp4/2tyEjbFaXdA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2tyEjbFaXdA.m3u8/2tyEjbFaXdA.m3u8"}, "path": "khan/humanities/art-asia/art-japan/edo-period/pleasure-quarter/", "duration": 142, "id": "2tyEjbFaXdA", "title": "Street scene in the pleasure quarter of Edo Japan", "format": "mp4", "description": "Discover the cast of characters in a woodblock print of the Yoshiwara pleasure quarter in Edo Japan (present-day Tokyo).", "slug": "pleasure-quarter", "kind": "Video", "video_id": "2tyEjbFaXdA", "keywords": "", "youtube_id": "2tyEjbFaXdA", "readable_id": "pleasure-quarter"}, "yOf3kDD3WIA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yOf3kDD3WIA.mp4/yOf3kDD3WIA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yOf3kDD3WIA.mp4/yOf3kDD3WIA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yOf3kDD3WIA.m3u8/yOf3kDD3WIA.m3u8"}, "duration": 628, "id": "yOf3kDD3WIA", "title": "What is afterload?", "format": "mp4", "description": "Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/what-is-afterload/", "slug": "what-is-afterload", "kind": "Video", "video_id": "yOf3kDD3WIA", "keywords": "", "youtube_id": "yOf3kDD3WIA", "readable_id": "what-is-afterload"}, "9YjXGLWMvCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9YjXGLWMvCM.mp4/9YjXGLWMvCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9YjXGLWMvCM.mp4/9YjXGLWMvCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9YjXGLWMvCM.m3u8/9YjXGLWMvCM.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/reading-bar-charts-1/", "duration": 52, "id": "9YjXGLWMvCM", "title": "Reading bar charts: basic example", "format": "mp4", "description": "Let's start with this bar chart that brings back the days of Harry Potter! Putting our toes in the water on this one...", "slug": "reading-bar-charts-1", "kind": "Video", "video_id": "9YjXGLWMvCM", "keywords": "", "youtube_id": "9YjXGLWMvCM", "readable_id": "reading-bar-charts-1"}, "C_mKAFpLY74": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C_mKAFpLY74.mp4/C_mKAFpLY74.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C_mKAFpLY74.mp4/C_mKAFpLY74.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C_mKAFpLY74.m3u8/C_mKAFpLY74.m3u8"}, "duration": 155, "id": "C_mKAFpLY74", "title": "Conservation of Jackson Pollock's Mural", "format": "mp4", "description": "See how Getty conservators Laura Rivers and Yvonne Szafran worked to bring Jackson Pollock's Mural back to the appearance it had when he first painted it, seventy years ago.\u00a0Love art?\u00a0Follow us on Google+", "path": "conservation-pollock-mural/", "slug": "conservation-pollock-mural", "kind": "Video", "video_id": "C_mKAFpLY74", "keywords": "", "youtube_id": "C_mKAFpLY74", "readable_id": "conservation-pollock-mural"}, "r4bH66vYjss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r4bH66vYjss.mp4/r4bH66vYjss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r4bH66vYjss.mp4/r4bH66vYjss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r4bH66vYjss.m3u8/r4bH66vYjss.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/linear-algebra-vector-examples/", "duration": 1533, "id": "r4bH66vYjss", "title": "Vector examples", "format": "mp4", "description": "Visually understanding basic vector operations", "slug": "linear-algebra-vector-examples", "kind": "Video", "video_id": "r4bH66vYjss", "keywords": "Linear, Algebra, Vectors", "youtube_id": "r4bH66vYjss", "readable_id": "linear-algebra-vector-examples"}, "YOT8ryWzwbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YOT8ryWzwbY.mp4/YOT8ryWzwbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YOT8ryWzwbY.mp4/YOT8ryWzwbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YOT8ryWzwbY.m3u8/YOT8ryWzwbY.m3u8"}, "duration": 361, "id": "YOT8ryWzwbY", "title": "More on elasticity of demand", "format": "mp4", "description": "Looking a bit deeper at why elasticity changes despite having a linear demand curve", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/more-on-elasticity-of-demand/", "slug": "more-on-elasticity-of-demand", "kind": "Video", "video_id": "YOT8ryWzwbY", "keywords": "economics, elasticity, demand", "youtube_id": "YOT8ryWzwbY", "readable_id": "more-on-elasticity-of-demand"}, "4xtXBsYENzg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4xtXBsYENzg.mp4/4xtXBsYENzg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4xtXBsYENzg.mp4/4xtXBsYENzg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4xtXBsYENzg.m3u8/4xtXBsYENzg.m3u8"}, "duration": 881, "id": "4xtXBsYENzg", "title": "Your immune system: Natural born killer", "format": "mp4", "description": "Hank tells us about the team of deadly ninja assassins that is tasked with protecting our bodies from all the bad guys that want to kill us - also known as our immune system.", "path": "crash-course-biology-131/", "slug": "crash-course-biology-131", "kind": "Video", "video_id": "4xtXBsYENzg", "keywords": "", "youtube_id": "4xtXBsYENzg", "readable_id": "crash-course-biology-131"}, "SL7J8hPKEWY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SL7J8hPKEWY.mp4/SL7J8hPKEWY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SL7J8hPKEWY.mp4/SL7J8hPKEWY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SL7J8hPKEWY.m3u8/SL7J8hPKEWY.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/discrete-logarithm-problem/", "duration": 116, "id": "SL7J8hPKEWY", "title": "The discrete logarithm problem", "format": "mp4", "description": "A mathematical lock using modular arithmetic", "slug": "discrete-logarithm-problem", "kind": "Video", "video_id": "SL7J8hPKEWY", "keywords": "discrete logarithm, logarithm", "youtube_id": "SL7J8hPKEWY", "readable_id": "discrete-logarithm-problem"}, "wToSIQJ2o_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wToSIQJ2o_8.mp4/wToSIQJ2o_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wToSIQJ2o_8.mp4/wToSIQJ2o_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wToSIQJ2o_8.m3u8/wToSIQJ2o_8.m3u8"}, "duration": 585, "id": "wToSIQJ2o_8", "title": "Parametric equations 2", "format": "mp4", "description": "Eliminating the parameter", "path": "khan/math/precalculus/parametric_equations/parametric/parametric-equations-2/", "slug": "parametric-equations-2", "kind": "Video", "video_id": "wToSIQJ2o_8", "keywords": "parametric, equation, physics, CC_39336_F-BF_1_c", "youtube_id": "wToSIQJ2o_8", "readable_id": "parametric-equations-2"}, "TgDk06Qayxw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TgDk06Qayxw.mp4/TgDk06Qayxw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TgDk06Qayxw.mp4/TgDk06Qayxw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TgDk06Qayxw.m3u8/TgDk06Qayxw.m3u8"}, "duration": 499, "id": "TgDk06Qayxw", "title": "SSS to show a radius is perpendicular to a chord that it bisects", "format": "mp4", "description": "More on the difference between a theorem and axiom. Proving a cool result using SSS", "path": "khan/math/geometry/cc-geometry-circles/area-inscribed-triangle/sss-to-show-a-radius-is-perpendicular-to-a-chord-that-it-bisects/", "slug": "sss-to-show-a-radius-is-perpendicular-to-a-chord-that-it-bisects", "kind": "Video", "video_id": "TgDk06Qayxw", "keywords": "side, theorem, axiom, postulate", "youtube_id": "TgDk06Qayxw", "readable_id": "sss-to-show-a-radius-is-perpendicular-to-a-chord-that-it-bisects"}, "G6OoxGmJzuc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G6OoxGmJzuc.mp4/G6OoxGmJzuc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G6OoxGmJzuc.mp4/G6OoxGmJzuc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G6OoxGmJzuc.m3u8/G6OoxGmJzuc.m3u8"}, "duration": 719, "id": "G6OoxGmJzuc", "title": "IIT JEE symmetric and skew-symmetric matrices", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 42 Symmetric and Skew-Symmetric Matrices", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-symmetric-and-skew-symmetric-matrices/", "slug": "iit-jee-symmetric-and-skew-symmetric-matrices", "kind": "Video", "video_id": "G6OoxGmJzuc", "keywords": "2010, IIT, JEE, Paper, Problem, 42, Symmetric, and, Skew-Symmetric, Matrices", "youtube_id": "G6OoxGmJzuc", "readable_id": "iit-jee-symmetric-and-skew-symmetric-matrices"}, "fpq0eICjuSI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fpq0eICjuSI.mp4/fpq0eICjuSI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fpq0eICjuSI.mp4/fpq0eICjuSI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fpq0eICjuSI.m3u8/fpq0eICjuSI.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/reactions-benzene/electrophilic-aromatic-substitution/", "duration": 677, "id": "fpq0eICjuSI", "title": "Electrophilic aromatic substitution", "format": "mp4", "description": "Electrophilic Aromatic Substitution", "slug": "electrophilic-aromatic-substitution", "kind": "Video", "video_id": "fpq0eICjuSI", "keywords": "Electrophilic, Aromatic, Substitution, electrophile, base", "youtube_id": "fpq0eICjuSI", "readable_id": "electrophilic-aromatic-substitution"}, "Xg8_iSkJpAE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xg8_iSkJpAE.mp4/Xg8_iSkJpAE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xg8_iSkJpAE.mp4/Xg8_iSkJpAE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xg8_iSkJpAE.m3u8/Xg8_iSkJpAE.m3u8"}, "path": "khan/math/probability/statistics-inferential/anova/anova-3-hypothesis-test-with-f-statistic/", "duration": 614, "id": "Xg8_iSkJpAE", "title": "ANOVA 3: Hypothesis test with F-statistic", "format": "mp4", "description": "Analysis of Variance 3 -Hypothesis Test with F-Statistic", "slug": "anova-3-hypothesis-test-with-f-statistic", "kind": "Video", "video_id": "Xg8_iSkJpAE", "keywords": "Analysis, of, Variance, -Hypothesis, Test, with, F-Statistic, (ANOVA), CC_7_SP_3, CC_7_SP_4", "youtube_id": "Xg8_iSkJpAE", "readable_id": "anova-3-hypothesis-test-with-f-statistic"}, "_DKe8gHlnEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_DKe8gHlnEQ.mp4/_DKe8gHlnEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_DKe8gHlnEQ.mp4/_DKe8gHlnEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_DKe8gHlnEQ.m3u8/_DKe8gHlnEQ.m3u8"}, "duration": 437, "id": "_DKe8gHlnEQ", "title": "Capstone exponent properties example", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/capstone-exponent-properties-example/", "slug": "capstone-exponent-properties-example", "kind": "Video", "video_id": "_DKe8gHlnEQ", "keywords": "", "youtube_id": "_DKe8gHlnEQ", "readable_id": "capstone-exponent-properties-example"}, "GuaozMpFS3w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GuaozMpFS3w.mp4/GuaozMpFS3w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GuaozMpFS3w.mp4/GuaozMpFS3w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GuaozMpFS3w.m3u8/GuaozMpFS3w.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/organic-hybridization-practice/", "duration": 621, "id": "GuaozMpFS3w", "title": "Organic hybridization practice", "format": "mp4", "description": "", "slug": "organic-hybridization-practice", "kind": "Video", "video_id": "GuaozMpFS3w", "keywords": "", "youtube_id": "GuaozMpFS3w", "readable_id": "organic-hybridization-practice"}, "ewEorPD4kdA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ewEorPD4kdA.mp4/ewEorPD4kdA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ewEorPD4kdA.mp4/ewEorPD4kdA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ewEorPD4kdA.m3u8/ewEorPD4kdA.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/ditributive_property/distributive-property-example-1/", "duration": 339, "id": "ewEorPD4kdA", "title": "Distributive property algebraic expressions", "format": "mp4", "description": "Here we have some algebraic expressions to which we need to apply the distributive property. Now we're beginning to see how useful this property can be!", "slug": "distributive-property-example-1", "kind": "Video", "video_id": "ewEorPD4kdA", "keywords": "Distributive, Property", "youtube_id": "ewEorPD4kdA", "readable_id": "distributive-property-example-1"}, "2Zk6u7Uk5ow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2Zk6u7Uk5ow.mp4/2Zk6u7Uk5ow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2Zk6u7Uk5ow.mp4/2Zk6u7Uk5ow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2Zk6u7Uk5ow.m3u8/2Zk6u7Uk5ow.m3u8"}, "duration": 192, "id": "2Zk6u7Uk5ow", "title": "Opposite of a number", "format": "mp4", "description": "", "path": "opposite-of-a-number/", "slug": "opposite-of-a-number", "kind": "Video", "video_id": "2Zk6u7Uk5ow", "keywords": "", "youtube_id": "2Zk6u7Uk5ow", "readable_id": "opposite-of-a-number"}, "C5G2Js2_Ep4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C5G2Js2_Ep4.mp4/C5G2Js2_Ep4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C5G2Js2_Ep4.mp4/C5G2Js2_Ep4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C5G2Js2_Ep4.m3u8/C5G2Js2_Ep4.m3u8"}, "duration": 327, "id": "C5G2Js2_Ep4", "title": "Equation of normal line", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/normal-tangent-line-eq/normal-line-equation/", "slug": "normal-line-equation", "kind": "Video", "video_id": "C5G2Js2_Ep4", "keywords": "", "youtube_id": "C5G2Js2_Ep4", "readable_id": "normal-line-equation"}, "Pb04ntcDJcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pb04ntcDJcQ.mp4/Pb04ntcDJcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pb04ntcDJcQ.mp4/Pb04ntcDJcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pb04ntcDJcQ.m3u8/Pb04ntcDJcQ.m3u8"}, "duration": 729, "id": "Pb04ntcDJcQ", "title": "Exact equations example 1", "format": "mp4", "description": "First example of solving an exact differential equation.", "path": "khan/math/differential-equations/first-order-differential-equations/exact-equations/exact-equations-example-1/", "slug": "exact-equations-example-1", "kind": "Video", "video_id": "Pb04ntcDJcQ", "keywords": "exact, differential, equations", "youtube_id": "Pb04ntcDJcQ", "readable_id": "exact-equations-example-1"}, "_0YdFG17fQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_0YdFG17fQc.mp4/_0YdFG17fQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_0YdFG17fQc.mp4/_0YdFG17fQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_0YdFG17fQc.m3u8/_0YdFG17fQc.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/quarton/pieta-villeneuve/", "duration": 351, "id": "_0YdFG17fQc", "title": "Enguerrand Quarton(?), Piet\u00e0 of Villeneuve-l\u00e8s-Avignon", "format": "mp4", "description": "Enguerrand Quarton(?), Piet\u00e0 of Villeneuve-l\u00e8s-Avignon, c. 1455, oil on wood, 163 x 219 cm (Mus\u00e9e du Louvre)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "pieta-villeneuve", "kind": "Video", "video_id": "_0YdFG17fQc", "keywords": "", "youtube_id": "_0YdFG17fQc", "readable_id": "pieta-villeneuve"}, "GMjwjXKt0SE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GMjwjXKt0SE.mp4/GMjwjXKt0SE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GMjwjXKt0SE.mp4/GMjwjXKt0SE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GMjwjXKt0SE.m3u8/GMjwjXKt0SE.m3u8"}, "path": "khan/college-admissions/paying-for-college/financial-aid-packages/financial-aid-package-example-part-2/", "duration": 438, "id": "GMjwjXKt0SE", "title": "Financial aid package example: Part 2", "format": "mp4", "description": "", "slug": "financial-aid-package-example-part-2", "kind": "Video", "video_id": "GMjwjXKt0SE", "keywords": "", "youtube_id": "GMjwjXKt0SE", "readable_id": "financial-aid-package-example-part-2"}, "1kEaBXshX90": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1kEaBXshX90.mp4/1kEaBXshX90.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1kEaBXshX90.mp4/1kEaBXshX90.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1kEaBXshX90.m3u8/1kEaBXshX90.m3u8"}, "duration": 679, "id": "1kEaBXshX90", "title": "Fungi: Death Becomes Them", "format": "mp4", "description": "Death is what fungi are all about. By feasting on the deceased remains of almost all organisms on the planet, converting the organic matter back into soil from which new life will spring, they perform perhaps the most vital function in the global food web. Fungi, which thrive on death, make all life possible.", "path": "crash-course-biology-138/", "slug": "crash-course-biology-138", "kind": "Video", "video_id": "1kEaBXshX90", "keywords": "", "youtube_id": "1kEaBXshX90", "readable_id": "crash-course-biology-138"}, "L3SIooVHV8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L3SIooVHV8E.mp4/L3SIooVHV8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L3SIooVHV8E.mp4/L3SIooVHV8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L3SIooVHV8E.m3u8/L3SIooVHV8E.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/the-pergamon-altar-c-200-150-b-c-e/", "duration": 530, "id": "L3SIooVHV8E", "title": "Great Altar of Zeus and Athena at Pergamon", "format": "mp4", "description": "The Pergamon Altar, c. 200-150 B.C.E., 35.64 x 33.4 meters, Hellenistic Period (Pergamon Museum, Berlin). Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "the-pergamon-altar-c-200-150-b-c-e", "kind": "Video", "video_id": "L3SIooVHV8E", "keywords": "Smarthistory, Ancient greek art, Athena, Zeus, Gigantomachy, Berlin, Pergamon Museum, Hellenistic, Khan Academy, art history, Google Art Project, OER", "youtube_id": "L3SIooVHV8E", "readable_id": "the-pergamon-altar-c-200-150-b-c-e"}, "KMMAL3v0lA0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KMMAL3v0lA0.mp4/KMMAL3v0lA0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KMMAL3v0lA0.mp4/KMMAL3v0lA0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KMMAL3v0lA0.m3u8/KMMAL3v0lA0.m3u8"}, "duration": 284, "id": "KMMAL3v0lA0", "title": "Alliances leading to World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-tutorial/alliances-leading-to-world-war-i/", "slug": "alliances-leading-to-world-war-i", "kind": "Video", "video_id": "KMMAL3v0lA0", "keywords": "", "youtube_id": "KMMAL3v0lA0", "readable_id": "alliances-leading-to-world-war-i"}, "J2Qz-7ZWDAE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J2Qz-7ZWDAE.mp4/J2Qz-7ZWDAE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J2Qz-7ZWDAE.mp4/J2Qz-7ZWDAE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J2Qz-7ZWDAE.m3u8/J2Qz-7ZWDAE.m3u8"}, "duration": 252, "id": "J2Qz-7ZWDAE", "title": "Specifying planes in three dimensions", "format": "mp4", "description": "", "path": "khan/math/geometry/intro_euclid/specifying-planes-in-three-dimensions/", "slug": "specifying-planes-in-three-dimensions", "kind": "Video", "video_id": "J2Qz-7ZWDAE", "keywords": "", "youtube_id": "J2Qz-7ZWDAE", "readable_id": "specifying-planes-in-three-dimensions"}, "SWbis2zWIvo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SWbis2zWIvo.mp4/SWbis2zWIvo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SWbis2zWIvo.mp4/SWbis2zWIvo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SWbis2zWIvo.m3u8/SWbis2zWIvo.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/linear-algebra-coordinates-with-respect-to-orthonormal-bases/", "duration": 928, "id": "SWbis2zWIvo", "title": "Coordinates with respect to orthonormal bases", "format": "mp4", "description": "Seeing that orthonormal bases make for good coordinate systems", "slug": "linear-algebra-coordinates-with-respect-to-orthonormal-bases", "kind": "Video", "video_id": "SWbis2zWIvo", "keywords": "orthonormal, coordinates", "youtube_id": "SWbis2zWIvo", "readable_id": "linear-algebra-coordinates-with-respect-to-orthonormal-bases"}, "hYzN0w8FatU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hYzN0w8FatU.mp4/hYzN0w8FatU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hYzN0w8FatU.mp4/hYzN0w8FatU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hYzN0w8FatU.m3u8/hYzN0w8FatU.m3u8"}, "duration": 148, "id": "hYzN0w8FatU", "title": "Severe contango generally bearish", "format": "mp4", "description": "Thinking about why a severe contango could be bearish", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/severe-contango-generally-bearish/", "slug": "severe-contango-generally-bearish", "kind": "Video", "video_id": "hYzN0w8FatU", "keywords": "contango, backwardation, finance, commodities", "youtube_id": "hYzN0w8FatU", "readable_id": "severe-contango-generally-bearish"}, "n_4UNkeqk8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n_4UNkeqk8s.mp4/n_4UNkeqk8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n_4UNkeqk8s.mp4/n_4UNkeqk8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n_4UNkeqk8s.m3u8/n_4UNkeqk8s.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/neo-classicism/family/", "duration": 171, "id": "n_4UNkeqk8s", "title": "\"Family\" with Perrin Stein", "format": "mp4", "description": "Met curator Perrin Stein on subjectivity in Jacques-Louis David\u2019s Study for The Lictors Bringing Brutus the Bodies of his Sons.\n\nThis sheet is a compositional study for The Lictors Bringing Brutus the Bodies of his Sons (Mus\u00e9e du Louvre, Paris), painted by David on the eve of the French Revolution and exhibited shortly after the Fall of the Bastille. As with many of his iconic Neoclassical canvases, the subject was drawn from Roman history but found great resonance in the context of contemporary events. The canvas depicts an episode from the life of Lucius Junius Brutus, who put to an end the brutal r\u00e9gime of Tarquin, Rome\u2019s last king, and established the first Roman Empire, only to later find his two sons embroiled in a royalist conspiracy. True to his political convictions, Brutus condemned his sons to death. The novelty of David\u2019s painting is its focus, not on the executions, but on the wrenching domestic aftermath.\u00a0David\u2019s Neoclassical style is fully formed here and can be seen in the clean geometry of the architectural setting, the arrangement of the figures in a relief-like plane, the linear treatment of the forms, and the cool monochrome palette. The poses of the main figures, from the brooding Brutus cast in shadow at the left, to his anguished wife and daughters to the right, as well as the furniture and accessories, are all based on antiquities copied by the artist while he was a student in Rome.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\u00a0\n", "slug": "family", "kind": "Video", "video_id": "n_4UNkeqk8s", "keywords": "death, drawing, family, paper, politics, Europe", "youtube_id": "n_4UNkeqk8s", "readable_id": "family"}, "_-I3HdmyYfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_-I3HdmyYfE.mp4/_-I3HdmyYfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_-I3HdmyYfE.mp4/_-I3HdmyYfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_-I3HdmyYfE.m3u8/_-I3HdmyYfE.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-preparation-alkynes/alkyne-acidity-and-alkylation/", "duration": 475, "id": "_-I3HdmyYfE", "title": "Alkyne acidity and alkylation", "format": "mp4", "description": "", "slug": "alkyne-acidity-and-alkylation", "kind": "Video", "video_id": "_-I3HdmyYfE", "keywords": "", "youtube_id": "_-I3HdmyYfE", "readable_id": "alkyne-acidity-and-alkylation"}, "9hryH94KFJA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9hryH94KFJA.mp4/9hryH94KFJA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9hryH94KFJA.mp4/9hryH94KFJA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9hryH94KFJA.m3u8/9hryH94KFJA.m3u8"}, "path": "khan/math/geometry/analytic-geometry-topic/parallel-and-perpendicular/equations-of-parallel-and-perpendicular-lines/", "duration": 553, "id": "9hryH94KFJA", "title": "Equations of parallel and perpendicular lines", "format": "mp4", "description": "Equations of Parallel and Perpendicular Lines", "slug": "equations-of-parallel-and-perpendicular-lines", "kind": "Video", "video_id": "9hryH94KFJA", "keywords": "Equations, of, Parallel, and, Perpendicular, Lines", "youtube_id": "9hryH94KFJA", "readable_id": "equations-of-parallel-and-perpendicular-lines"}, "M7yd8F3eay4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M7yd8F3eay4.mp4/M7yd8F3eay4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M7yd8F3eay4.mp4/M7yd8F3eay4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M7yd8F3eay4.m3u8/M7yd8F3eay4.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/paul-klee-twittering-machine-1922/", "duration": 251, "id": "M7yd8F3eay4", "title": "Klee, Twittering Machine", "format": "mp4", "description": "Paul Klee, Twittering Machine (Die Zwitscher-Maschine), 1922, 25 1/4 x 19\" watercolor,\nink, and gouache on paper (MoMA)\n\nSpeakers: Dr. Juliana Kreinik and Dr. Steven Zucker", "slug": "paul-klee-twittering-machine-1922", "kind": "Video", "video_id": "M7yd8F3eay4", "keywords": "Paul Klee, Twittering Machine, Dada, Swiss art, Smarthistory, art history, modern art, 20th century art", "youtube_id": "M7yd8F3eay4", "readable_id": "paul-klee-twittering-machine-1922"}, "uY2ZOsCnXIA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uY2ZOsCnXIA.mp4/uY2ZOsCnXIA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uY2ZOsCnXIA.mp4/uY2ZOsCnXIA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uY2ZOsCnXIA.m3u8/uY2ZOsCnXIA.m3u8"}, "path": "khan/science/biology/human-biology/muscles/anatomy-of-a-muscle-cell/", "duration": 992, "id": "uY2ZOsCnXIA", "title": "Anatomy of a skeletal muscle fiber", "format": "mp4", "description": "Understanding the structure of a muscle fiber", "slug": "anatomy-of-a-muscle-cell", "kind": "Video", "video_id": "uY2ZOsCnXIA", "keywords": "muscle, anatomy", "youtube_id": "uY2ZOsCnXIA", "readable_id": "anatomy-of-a-muscle-cell"}, "POrFhETplGs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/POrFhETplGs.mp4/POrFhETplGs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/POrFhETplGs.mp4/POrFhETplGs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/POrFhETplGs.m3u8/POrFhETplGs.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/electromagnet/electromagnetic-field-above-vs-below/", "duration": 27, "id": "POrFhETplGs", "title": "Electromagnetic field (above vs. below)", "format": "mp4", "description": "Testing the direction of force when the current carrying wire is above vs. below a compass. What does this tell us?", "slug": "electromagnetic-field-above-vs-below", "kind": "Video", "video_id": "POrFhETplGs", "keywords": "electromagnetism", "youtube_id": "POrFhETplGs", "readable_id": "electromagnetic-field-above-vs-below"}, "QefQbkN2CNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QefQbkN2CNE.mp4/QefQbkN2CNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QefQbkN2CNE.mp4/QefQbkN2CNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QefQbkN2CNE.m3u8/QefQbkN2CNE.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/chatelet-part-1/", "duration": 234, "id": "QefQbkN2CNE", "title": "Early Modern: \u00c9milie du Ch\u00e2telet part 1", "format": "mp4", "description": "In this first of two videos, Andrew Janiak introduces Emilie Du Chatelet, a French philosopher, and her contribution to the debate about the principle of sufficient reason. This video is a part of a series of videos coming from Project Vox (Duke), a project recovering the lost voices of women philosophers.\n\nSpeaker: Dr. Andrew Janiak,\u00a0Creed C. Black Associate Professor of Philosophy, Duke University", "slug": "chatelet-part-1", "kind": "Video", "video_id": "QefQbkN2CNE", "keywords": "", "youtube_id": "QefQbkN2CNE", "readable_id": "chatelet-part-1"}, "zscrs94_pFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zscrs94_pFc.mp4/zscrs94_pFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zscrs94_pFc.mp4/zscrs94_pFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zscrs94_pFc.m3u8/zscrs94_pFc.m3u8"}, "duration": 151, "id": "zscrs94_pFc", "title": "The Gates Notes: Insights into students' progress", "format": "mp4", "description": "How Khan Academy is helping teachers free up classroom time, track student's progress, and pinpoint their needs", "path": "the-gates-notes-insights-into-students-progress/", "slug": "the-gates-notes-insights-into-students-progress", "kind": "Video", "video_id": "zscrs94_pFc", "keywords": "Gates, Salman, Khan, Shantanu, Sinha, Dashboard", "youtube_id": "zscrs94_pFc", "readable_id": "the-gates-notes-insights-into-students-progress"}, "s91Dptx52GU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s91Dptx52GU.mp4/s91Dptx52GU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s91Dptx52GU.mp4/s91Dptx52GU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s91Dptx52GU.m3u8/s91Dptx52GU.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-levels/biodiversity-tree-of-life/understanding-the-past-to-preserve-the-future/", "duration": 430, "id": "s91Dptx52GU", "title": "Understanding the past to preserve the future", "format": "mp4", "description": "", "slug": "understanding-the-past-to-preserve-the-future", "kind": "Video", "video_id": "s91Dptx52GU", "keywords": "", "youtube_id": "s91Dptx52GU", "readable_id": "understanding-the-past-to-preserve-the-future"}, "0jK5x_hsTvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0jK5x_hsTvY.mp4/0jK5x_hsTvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0jK5x_hsTvY.mp4/0jK5x_hsTvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0jK5x_hsTvY.m3u8/0jK5x_hsTvY.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/absolute-threshold-of-sensation/", "duration": 283, "id": "0jK5x_hsTvY", "title": "Absolute threshold of sensation", "format": "mp4", "description": "", "slug": "absolute-threshold-of-sensation", "kind": "Video", "video_id": "0jK5x_hsTvY", "keywords": "", "youtube_id": "0jK5x_hsTvY", "readable_id": "absolute-threshold-of-sensation"}, "8RSTQl0bQuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8RSTQl0bQuw.mp4/8RSTQl0bQuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8RSTQl0bQuw.mp4/8RSTQl0bQuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8RSTQl0bQuw.m3u8/8RSTQl0bQuw.m3u8"}, "path": "khan/math/probability/regression/regression-correlation/proof-part-4-minimizing-squared-error-to-regression-line/", "duration": 258, "id": "8RSTQl0bQuw", "title": "Proof (part 4) minimizing squared error to regression line", "format": "mp4", "description": "Proof (Part 4) Minimizing Squared Error to Regression Line", "slug": "proof-part-4-minimizing-squared-error-to-regression-line", "kind": "Video", "video_id": "8RSTQl0bQuw", "keywords": "Proof, (Part, 4), Minimizing, Squared, Error, to, Regression, Line, CC_8_SP_2, CC_8_SP_3", "youtube_id": "8RSTQl0bQuw", "readable_id": "proof-part-4-minimizing-squared-error-to-regression-line"}, "i-Rb4_n929k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i-Rb4_n929k.mp4/i-Rb4_n929k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i-Rb4_n929k.mp4/i-Rb4_n929k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i-Rb4_n929k.m3u8/i-Rb4_n929k.m3u8"}, "duration": 335, "id": "i-Rb4_n929k", "title": "Evaluating integral for washer method around vertical line", "format": "mp4", "description": "Evaluating integral set up in the last video using washer method.", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/evaluating-integral-for-washer-method-around-vertical-line/", "slug": "evaluating-integral-for-washer-method-around-vertical-line", "kind": "Video", "video_id": "i-Rb4_n929k", "keywords": "", "youtube_id": "i-Rb4_n929k", "readable_id": "evaluating-integral-for-washer-method-around-vertical-line"}, "KL0i1RSnpfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KL0i1RSnpfI.mp4/KL0i1RSnpfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KL0i1RSnpfI.mp4/KL0i1RSnpfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KL0i1RSnpfI.m3u8/KL0i1RSnpfI.m3u8"}, "duration": 349, "id": "KL0i1RSnpfI", "title": "How we know about the earth's core", "format": "mp4", "description": "S-wave shadow and P-wave detection patterns give us information about the core", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/how-we-know-about-the-earth-s-core/", "slug": "how-we-know-about-the-earth-s-core", "kind": "Video", "video_id": "KL0i1RSnpfI", "keywords": "geology, seismology", "youtube_id": "KL0i1RSnpfI", "readable_id": "how-we-know-about-the-earth-s-core"}, "6d97X9sE4MQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6d97X9sE4MQ.mp4/6d97X9sE4MQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6d97X9sE4MQ.mp4/6d97X9sE4MQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6d97X9sE4MQ.m3u8/6d97X9sE4MQ.m3u8"}, "duration": 201, "id": "6d97X9sE4MQ", "title": "John Humble's photographs of Los Angeles", "format": "mp4", "description": "Photographer John Humble has been documenting the Los Angeles landscape since the 1970s. Love art? Follow us on Google+\u00a0All images \u00a9John Humble, courtesy the Jan Kesner Gallery.", "path": "humble-photographs-los-angeles/", "slug": "humble-photographs-los-angeles", "kind": "Video", "video_id": "6d97X9sE4MQ", "keywords": "", "youtube_id": "6d97X9sE4MQ", "readable_id": "humble-photographs-los-angeles"}, "Toss6Hzf5n0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Toss6Hzf5n0.mp4/Toss6Hzf5n0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Toss6Hzf5n0.mp4/Toss6Hzf5n0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Toss6Hzf5n0.m3u8/Toss6Hzf5n0.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/1940-axis-gains-momentum-in-world-war-ii/", "duration": 374, "id": "Toss6Hzf5n0", "title": "1940 - Axis gains momentum in World War II", "format": "mp4", "description": "In this second video giving an overview of World War II, we see Germany and the Axis powers only continue to gain momentum in 1940.", "slug": "1940-axis-gains-momentum-in-world-war-ii", "kind": "Video", "video_id": "Toss6Hzf5n0", "keywords": "", "youtube_id": "Toss6Hzf5n0", "readable_id": "1940-axis-gains-momentum-in-world-war-ii"}, "oqCfqIcbE10": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oqCfqIcbE10.mp4/oqCfqIcbE10.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oqCfqIcbE10.mp4/oqCfqIcbE10.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oqCfqIcbE10.m3u8/oqCfqIcbE10.m3u8"}, "duration": 333, "id": "oqCfqIcbE10", "title": "u-substitution example 3", "format": "mp4", "description": "Manipulating the expression to make u-substitution a little more obvious.", "path": "khan/math/integral-calculus/integration-techniques/u_substitution/u-substitution-example-3/", "slug": "u-substitution-example-3", "kind": "Video", "video_id": "oqCfqIcbE10", "keywords": "", "youtube_id": "oqCfqIcbE10", "readable_id": "u-substitution-example-3"}, "VZB1P4uNFAw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VZB1P4uNFAw.mp4/VZB1P4uNFAw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VZB1P4uNFAw.mp4/VZB1P4uNFAw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VZB1P4uNFAw.m3u8/VZB1P4uNFAw.m3u8"}, "path": "khan/partner-content/big-history-project/expansion-interconnection/other-materials8/bhp-recreating-pangaea/", "duration": 256, "id": "VZB1P4uNFAw", "title": "Re-Creating Pangaea", "format": "mp4", "description": "When Columbus sailed to the Americas, there was a wave of interconnection that rippled across the world. Unfortunately, this interconnection Included deadly microorganisms.", "slug": "bhp-recreating-pangaea", "kind": "Video", "video_id": "VZB1P4uNFAw", "keywords": "", "youtube_id": "VZB1P4uNFAw", "readable_id": "bhp-recreating-pangaea"}, "Mioqyv_IW3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mioqyv_IW3E.mp4/Mioqyv_IW3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mioqyv_IW3E.mp4/Mioqyv_IW3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mioqyv_IW3E.m3u8/Mioqyv_IW3E.m3u8"}, "duration": 224, "id": "Mioqyv_IW3E", "title": "Basic cash flow statement", "format": "mp4", "description": "Using a cash flow statement to reconcile net income with change in cash", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/financial-statements-tutorial/basic-cash-flow-statement/", "slug": "basic-cash-flow-statement", "kind": "Video", "video_id": "Mioqyv_IW3E", "keywords": "cash, flow, cashflow, income, statement, balance, sheet, financial, accounting", "youtube_id": "Mioqyv_IW3E", "readable_id": "basic-cash-flow-statement"}, "wQ1QGZ6gJ8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wQ1QGZ6gJ8w.mp4/wQ1QGZ6gJ8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wQ1QGZ6gJ8w.mp4/wQ1QGZ6gJ8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wQ1QGZ6gJ8w.m3u8/wQ1QGZ6gJ8w.m3u8"}, "duration": 665, "id": "wQ1QGZ6gJ8w", "title": "Basics of Metabolism", "format": "mp4", "description": "Explore some fundamental activities of a cell, which include both constructing and taking apart important molecules that store energy. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "basics-of-metabolism/", "slug": "basics-of-metabolism", "kind": "Video", "video_id": "wQ1QGZ6gJ8w", "keywords": "", "youtube_id": "wQ1QGZ6gJ8w", "readable_id": "basics-of-metabolism"}, "PLjyj1FJqig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PLjyj1FJqig.mp4/PLjyj1FJqig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PLjyj1FJqig.mp4/PLjyj1FJqig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PLjyj1FJqig.m3u8/PLjyj1FJqig.m3u8"}, "duration": 231, "id": "PLjyj1FJqig", "title": "Interest rate swap 1", "format": "mp4", "description": "The basic dynamic of an interest rate swap", "path": "khan/economics-finance-domain/core-finance/derivative-securities/interest-rate-swaps-tut/interest-rate-swap-1/", "slug": "interest-rate-swap-1", "kind": "Video", "video_id": "PLjyj1FJqig", "keywords": "LIBOR, fixed, variable, rate, interest", "youtube_id": "PLjyj1FJqig", "readable_id": "interest-rate-swap-1"}, "_saunfB-wCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_saunfB-wCQ.mp4/_saunfB-wCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_saunfB-wCQ.mp4/_saunfB-wCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_saunfB-wCQ.m3u8/_saunfB-wCQ.m3u8"}, "path": "khan/science/health-and-medicine/lab-values/molarity-vs-osmolarity/", "duration": 692, "id": "_saunfB-wCQ", "title": "Molarity vs. osmolarity", "format": "mp4", "description": "Learn about osmoles and figure out how to calculate osmolarity really easily. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "molarity-vs-osmolarity", "kind": "Video", "video_id": "_saunfB-wCQ", "keywords": "", "youtube_id": "_saunfB-wCQ", "readable_id": "molarity-vs-osmolarity"}, "NYd6wzYkQIM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NYd6wzYkQIM.mp4/NYd6wzYkQIM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NYd6wzYkQIM.mp4/NYd6wzYkQIM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NYd6wzYkQIM.m3u8/NYd6wzYkQIM.m3u8"}, "duration": 800, "id": "NYd6wzYkQIM", "title": "Sampling distribution of the sample mean 2", "format": "mp4", "description": "More on the Central Limit Theorem and the Sampling Distribution of the Sample Mean", "path": "khan/math/probability/statistics-inferential/sampling_distribution/sampling-distribution-of-the-sample-mean-2/", "slug": "sampling-distribution-of-the-sample-mean-2", "kind": "Video", "video_id": "NYd6wzYkQIM", "keywords": "Central, Limit, Theorem, Sampling, Distribution, Sample, Mean, CC_6_SP_2, CC_6_SP_4, CC_6_SP_5_c, CC_6_SP_5_d, CC_7_SP_1", "youtube_id": "NYd6wzYkQIM", "readable_id": "sampling-distribution-of-the-sample-mean-2"}, "mz2eVthmNn4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mz2eVthmNn4.mp4/mz2eVthmNn4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mz2eVthmNn4.mp4/mz2eVthmNn4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mz2eVthmNn4.m3u8/mz2eVthmNn4.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-aug-17-/", "duration": 81, "id": "mz2eVthmNn4", "title": "Systems check", "format": "mp4", "description": "Aug 9th 2012)", "slug": "curiosity-rover-report-aug-17-", "kind": "Video", "video_id": "mz2eVthmNn4", "keywords": "", "youtube_id": "mz2eVthmNn4", "readable_id": "curiosity-rover-report-aug-17-"}, "Kgii4IcKCOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kgii4IcKCOg.mp4/Kgii4IcKCOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kgii4IcKCOg.mp4/Kgii4IcKCOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kgii4IcKCOg.m3u8/Kgii4IcKCOg.m3u8"}, "duration": 623, "id": "Kgii4IcKCOg", "title": "Animal behavior", "format": "mp4", "description": "Hank and his cat Cameo help teach us about animal behavior and how we can discover why animals do the things they do.", "path": "crash-course-biology-124/", "slug": "crash-course-biology-124", "kind": "Video", "video_id": "Kgii4IcKCOg", "keywords": "", "youtube_id": "Kgii4IcKCOg", "readable_id": "crash-course-biology-124"}, "Ngv0Be9NxAw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ngv0Be9NxAw.mp4/Ngv0Be9NxAw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ngv0Be9NxAw.mp4/Ngv0Be9NxAw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ngv0Be9NxAw.m3u8/Ngv0Be9NxAw.m3u8"}, "duration": 680, "id": "Ngv0Be9NxAw", "title": "Cross elasticity of demand", "format": "mp4", "description": "Price of one good impacting quantity demanded of another", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/cross-elasticity-of-demand/", "slug": "cross-elasticity-of-demand", "kind": "Video", "video_id": "Ngv0Be9NxAw", "keywords": "cross, elasticity, economics", "youtube_id": "Ngv0Be9NxAw", "readable_id": "cross-elasticity-of-demand"}, "T4iRq8_ZmAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T4iRq8_ZmAA.mp4/T4iRq8_ZmAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T4iRq8_ZmAA.mp4/T4iRq8_ZmAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T4iRq8_ZmAA.m3u8/T4iRq8_ZmAA.m3u8"}, "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zees-motor-controller/", "duration": 602, "id": "T4iRq8_ZmAA", "title": "Motor controller", "format": "mp4", "description": "In this video we take you step by step through building the L298 Motor driver. This controller allows you to use your Arduino to control the hair dryer motors used to move the Bit-zee bot.", "slug": "bit-zees-motor-controller", "kind": "Video", "video_id": "T4iRq8_ZmAA", "keywords": "Motor controller, L297, Bit-zee bot, motor driver,", "youtube_id": "T4iRq8_ZmAA", "readable_id": "bit-zees-motor-controller"}, "CFygKiTB-4A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CFygKiTB-4A.mp4/CFygKiTB-4A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CFygKiTB-4A.mp4/CFygKiTB-4A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CFygKiTB-4A.m3u8/CFygKiTB-4A.m3u8"}, "duration": 635, "id": "CFygKiTB-4A", "title": "2-dimensional momentum problem", "format": "mp4", "description": "An example of conservation of momentum in two dimensions.", "path": "khan/science/physics/linear-momentum/momentum-tutorial/2-dimensional-momentum-problem/", "slug": "2-dimensional-momentum-problem", "kind": "Video", "video_id": "CFygKiTB-4A", "keywords": "momentum, vectors, vector, physics, dimensions", "youtube_id": "CFygKiTB-4A", "readable_id": "2-dimensional-momentum-problem"}, "nh3_IGxHA5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nh3_IGxHA5A.mp4/nh3_IGxHA5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nh3_IGxHA5A.mp4/nh3_IGxHA5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nh3_IGxHA5A.m3u8/nh3_IGxHA5A.m3u8"}, "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/graphing-a-quadratic-function/", "duration": 424, "id": "nh3_IGxHA5A", "title": "Graphing a parabola with a table of values", "format": "mp4", "description": "Graphing a parabola with a table of values", "slug": "graphing-a-quadratic-function", "kind": "Video", "video_id": "nh3_IGxHA5A", "keywords": "u17_l2_t2_we2, Graphing, Quadratic, Function , parabola", "youtube_id": "nh3_IGxHA5A", "readable_id": "graphing-a-quadratic-function"}, "YNriRslOk9A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YNriRslOk9A.mp4/YNriRslOk9A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YNriRslOk9A.mp4/YNriRslOk9A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YNriRslOk9A.m3u8/YNriRslOk9A.m3u8"}, "duration": 1160, "id": "YNriRslOk9A", "title": "Limiting reactant example problem 1", "format": "mp4", "description": "Limiting Reactant Example Problem 1 ", "path": "khan/test-prep/mcat/physical-processes/stoichiometry/limiting-reactant-example-problem-1/", "slug": "limiting-reactant-example-problem-1", "kind": "Video", "video_id": "YNriRslOk9A", "keywords": "Limiting, Reactant, Example, Problem", "youtube_id": "YNriRslOk9A", "readable_id": "limiting-reactant-example-problem-1"}, "nUXDltQfqSA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nUXDltQfqSA.mp4/nUXDltQfqSA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nUXDltQfqSA.mp4/nUXDltQfqSA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nUXDltQfqSA.m3u8/nUXDltQfqSA.m3u8"}, "duration": 426, "id": "nUXDltQfqSA", "title": "Lithography process", "format": "mp4", "description": "Learn how the lithographic process maintains the subtle hand of the artist. Did you know that MoMA offers studio courses online? To learn more, check out the list of online course offerings.", "path": "khan/humanities/art-history-basics/artists-materials-techniques/printmaking/moma-lithography-process/", "slug": "moma-lithography-process", "kind": "Video", "video_id": "nUXDltQfqSA", "keywords": "", "youtube_id": "nUXDltQfqSA", "readable_id": "moma-lithography-process"}, "1jWJQkxZiiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1jWJQkxZiiU.mp4/1jWJQkxZiiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1jWJQkxZiiU.mp4/1jWJQkxZiiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1jWJQkxZiiU.m3u8/1jWJQkxZiiU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-9-10/", "duration": 96, "id": "1jWJQkxZiiU", "title": "10 Adding numbers in different representations", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-10", "kind": "Video", "video_id": "1jWJQkxZiiU", "keywords": "", "youtube_id": "1jWJQkxZiiU", "readable_id": "sat-2010-may-9-10"}, "mVkAvYhgW8c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mVkAvYhgW8c.mp4/mVkAvYhgW8c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mVkAvYhgW8c.mp4/mVkAvYhgW8c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mVkAvYhgW8c.m3u8/mVkAvYhgW8c.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/vermeer-the-art-of-painting/", "duration": 296, "id": "mVkAvYhgW8c", "title": "Johannes Vermeer, The Art of Painting", "format": "mp4", "description": "Johannes Vermeer, The Art of Painting, 1666-69, oil on canvas, 130\u00a0x 110\u00a0cm (Kunsthistorisches Museum, Vienna).\u00a0Speakers: Dr. Steven Zucker & Dr. Beth Harris\n", "slug": "vermeer-the-art-of-painting", "kind": "Video", "video_id": "mVkAvYhgW8c", "keywords": "", "youtube_id": "mVkAvYhgW8c", "readable_id": "vermeer-the-art-of-painting"}, "yenSUBmGrdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yenSUBmGrdU.mp4/yenSUBmGrdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yenSUBmGrdU.mp4/yenSUBmGrdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yenSUBmGrdU.m3u8/yenSUBmGrdU.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/el-salahi/", "duration": 291, "id": "yenSUBmGrdU", "title": "Ibrahim El-Salahi", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nA major figure in Arab and African modernism, artist Ibrahim El-Salahi discusses his work Reborn Sounds of Childhood Dreams I\u00a0(1962-3), a large-scale oil painting at Tate. In 2013, Tate Modern presented the UK's first major exhibition of El-Salahi's work, bringing together 100 pieces from across more than five decades of his international career. Take a look at some highlights from one of the most significant figures in African art and learn more about how he belongs to a broader, global art history as well.", "slug": "el-salahi", "kind": "Video", "video_id": "yenSUBmGrdU", "keywords": "Tate", "youtube_id": "yenSUBmGrdU", "readable_id": "el-salahi"}, "khRX1Oo93AY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/khRX1Oo93AY.mp4/khRX1Oo93AY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/khRX1Oo93AY.mp4/khRX1Oo93AY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/khRX1Oo93AY.m3u8/khRX1Oo93AY.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/upward-and-downward-mobility-meritocracy/", "duration": 396, "id": "khRX1Oo93AY", "title": "Upward and downward mobility, meritocracy", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "upward-and-downward-mobility-meritocracy", "kind": "Video", "video_id": "khRX1Oo93AY", "keywords": "", "youtube_id": "khRX1Oo93AY", "readable_id": "upward-and-downward-mobility-meritocracy"}, "jlID_mIJXi4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jlID_mIJXi4.mp4/jlID_mIJXi4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jlID_mIJXi4.mp4/jlID_mIJXi4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jlID_mIJXi4.m3u8/jlID_mIJXi4.m3u8"}, "duration": 251, "id": "jlID_mIJXi4", "title": "Evaluating composite functions example", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/composing-functions/evaluating-composite-functions-example-1/", "slug": "evaluating-composite-functions-example-1", "kind": "Video", "video_id": "jlID_mIJXi4", "keywords": "", "youtube_id": "jlID_mIJXi4", "readable_id": "evaluating-composite-functions-example-1"}, "eEUvRrhmcxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eEUvRrhmcxM.mp4/eEUvRrhmcxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eEUvRrhmcxM.mp4/eEUvRrhmcxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eEUvRrhmcxM.m3u8/eEUvRrhmcxM.m3u8"}, "path": "khan/science/biology/her/heredity-and-genetics/introduction-to-heredity/", "duration": 1047, "id": "eEUvRrhmcxM", "title": "Introduction to heredity", "format": "mp4", "description": "Heredity and Classical Genetics. Dominant and recessive traits. Heterozygous and homozygous genotypes.", "slug": "introduction-to-heredity", "kind": "Video", "video_id": "eEUvRrhmcxM", "keywords": "biology, heredity, genetics, genotype, phenotype, dominant, recessive", "youtube_id": "eEUvRrhmcxM", "readable_id": "introduction-to-heredity"}, "fXyDY6ah7k4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fXyDY6ah7k4.mp4/fXyDY6ah7k4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fXyDY6ah7k4.mp4/fXyDY6ah7k4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fXyDY6ah7k4.m3u8/fXyDY6ah7k4.m3u8"}, "duration": 168, "id": "fXyDY6ah7k4", "title": "De Wain Valentine and polyester resin", "format": "mp4", "description": "Artist De Wain Valentine developed the polyester MasKast Resin to create his large-scale sculptures. Learn more in this short video. Love art? Follow us on Google+", "path": "valentine-and-polyester-resin/", "slug": "valentine-and-polyester-resin", "kind": "Video", "video_id": "fXyDY6ah7k4", "keywords": "", "youtube_id": "fXyDY6ah7k4", "readable_id": "valentine-and-polyester-resin"}, "nuUkcbAId6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nuUkcbAId6o.mp4/nuUkcbAId6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nuUkcbAId6o.mp4/nuUkcbAId6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nuUkcbAId6o.m3u8/nuUkcbAId6o.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/symbol-rate-information-theory/", "duration": 285, "id": "nuUkcbAId6o", "title": "Symbol rate", "format": "mp4", "description": "Introduction to Symbol Rate (Baud)", "slug": "symbol-rate-information-theory", "kind": "Video", "video_id": "nuUkcbAId6o", "keywords": "symbol rate", "youtube_id": "nuUkcbAId6o", "readable_id": "symbol-rate-information-theory"}, "naVFTNWVlQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/naVFTNWVlQU.mp4/naVFTNWVlQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/naVFTNWVlQU.mp4/naVFTNWVlQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/naVFTNWVlQU.m3u8/naVFTNWVlQU.m3u8"}, "duration": 265, "id": "naVFTNWVlQU", "title": "Order of steps exercise example", "format": "mp4", "description": "", "path": "khan/math/algebra/quadratics/quadratics-square-root/order-of-steps-exercise-example/", "slug": "order-of-steps-exercise-example", "kind": "Video", "video_id": "naVFTNWVlQU", "keywords": "", "youtube_id": "naVFTNWVlQU", "readable_id": "order-of-steps-exercise-example"}, "ncgAfzRSJrI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ncgAfzRSJrI.mp4/ncgAfzRSJrI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ncgAfzRSJrI.mp4/ncgAfzRSJrI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ncgAfzRSJrI.m3u8/ncgAfzRSJrI.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/andrea-pisano-reliefs-for-the-florence-campanile-c-1336/", "duration": 359, "id": "ncgAfzRSJrI", "title": "Andrea Pisano's reliefs on the Campanile in Florence", "format": "mp4", "description": "Andrea Pisano, Reliefs for the Campanile in Florence, c. 1336\n\n\nSpeakers: David Drogin and Beth Harris", "slug": "andrea-pisano-reliefs-for-the-florence-campanile-c-1336", "kind": "Video", "video_id": "ncgAfzRSJrI", "keywords": "campanile, florence, art, art history, smarthistory", "youtube_id": "ncgAfzRSJrI", "readable_id": "andrea-pisano-reliefs-for-the-florence-campanile-c-1336"}, "Nqts8zW8RxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nqts8zW8RxM.mp4/Nqts8zW8RxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nqts8zW8RxM.mp4/Nqts8zW8RxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nqts8zW8RxM.m3u8/Nqts8zW8RxM.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/dividing-decimals/", "duration": 332, "id": "Nqts8zW8RxM", "title": "Dividing by a multi-digit decimal", "format": "mp4", "description": "Let's do one more decimal division problem together but change it up. This is one with a decimal divisor and will require you to shift the decimal first.", "slug": "dividing-decimals", "kind": "Video", "video_id": "Nqts8zW8RxM", "keywords": "U03_L2_T2_we3, Dividing, Decimals, CC_5_NBT_7, CC_6_NS_3", "youtube_id": "Nqts8zW8RxM", "readable_id": "dividing-decimals"}, "Y9FyokN7WlM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y9FyokN7WlM.mp4/Y9FyokN7WlM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y9FyokN7WlM.mp4/Y9FyokN7WlM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y9FyokN7WlM.m3u8/Y9FyokN7WlM.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/creation-complex-elements/bhp-what-did-stars-give-us/", "duration": 551, "id": "Y9FyokN7WlM", "title": "What Did Stars Give Us?", "format": "mp4", "description": "Aging and dying stars generate extremely hot temperatures, hot enough to create entirely new elements.", "slug": "bhp-what-did-stars-give-us", "kind": "Video", "video_id": "Y9FyokN7WlM", "keywords": "", "youtube_id": "Y9FyokN7WlM", "readable_id": "bhp-what-did-stars-give-us"}, "4AxZ-6MOznY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4AxZ-6MOznY.mp4/4AxZ-6MOznY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4AxZ-6MOznY.mp4/4AxZ-6MOznY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4AxZ-6MOznY.m3u8/4AxZ-6MOznY.m3u8"}, "duration": 573, "id": "4AxZ-6MOznY", "title": "Structure of the earth", "format": "mp4", "description": "Structure of the Earth - crust, mantle, core", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/structure-of-the-earth/", "slug": "structure-of-the-earth", "kind": "Video", "video_id": "4AxZ-6MOznY", "keywords": "geology, lithosphere, asthenosphere", "youtube_id": "4AxZ-6MOznY", "readable_id": "structure-of-the-earth"}, "8-ccnvn9DxI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8-ccnvn9DxI.mp4/8-ccnvn9DxI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8-ccnvn9DxI.mp4/8-ccnvn9DxI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8-ccnvn9DxI.m3u8/8-ccnvn9DxI.m3u8"}, "duration": 855, "id": "8-ccnvn9DxI", "title": "Formation of acetals", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/formation-of-acetals/", "slug": "formation-of-acetals", "kind": "Video", "video_id": "8-ccnvn9DxI", "keywords": "", "youtube_id": "8-ccnvn9DxI", "readable_id": "formation-of-acetals"}, "4ywTWCaLmXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4ywTWCaLmXE.mp4/4ywTWCaLmXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4ywTWCaLmXE.mp4/4ywTWCaLmXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4ywTWCaLmXE.m3u8/4ywTWCaLmXE.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/find-an-unknown-in-a-proportion-2/", "duration": 348, "id": "4ywTWCaLmXE", "title": "Solve a proportion with unknown variable word problem", "format": "mp4", "description": "Need to increase a recipe by 2 or 3 times in order to feed more guests? Ok, to do that you would need to construct proportions and solve for variables. We'll demonstrate here.", "slug": "find-an-unknown-in-a-proportion-2", "kind": "Video", "video_id": "4ywTWCaLmXE", "keywords": "U04_L2_T1_we3, t2, Find, an, Unknown, in, Proportion, CC_7_RP_2", "youtube_id": "4ywTWCaLmXE", "readable_id": "find-an-unknown-in-a-proportion-2"}, "ypxHVqE26gI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ypxHVqE26gI.mp4/ypxHVqE26gI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ypxHVqE26gI.mp4/ypxHVqE26gI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ypxHVqE26gI.m3u8/ypxHVqE26gI.m3u8"}, "duration": 551, "id": "ypxHVqE26gI", "title": "Translating expressions with parentheses", "format": "mp4", "description": "Interpret written statements, and write them as mathematical expressions.", "path": "translating-expressions-with-parentheses/", "slug": "translating-expressions-with-parentheses", "kind": "Video", "video_id": "ypxHVqE26gI", "keywords": "", "youtube_id": "ypxHVqE26gI", "readable_id": "translating-expressions-with-parentheses"}, "cqK3uRoPtk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cqK3uRoPtk0.mp4/cqK3uRoPtk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cqK3uRoPtk0.mp4/cqK3uRoPtk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cqK3uRoPtk0.m3u8/cqK3uRoPtk0.m3u8"}, "path": "khan/math/probability/random-variables-topic/random_variables_prob_dist/discrete-probability-distribution/", "duration": 408, "id": "cqK3uRoPtk0", "title": "Constructing a probability distribution for random variable", "format": "mp4", "description": "", "slug": "discrete-probability-distribution", "kind": "Video", "video_id": "cqK3uRoPtk0", "keywords": "", "youtube_id": "cqK3uRoPtk0", "readable_id": "discrete-probability-distribution"}, "HhNZPOl1-Bo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HhNZPOl1-Bo.mp4/HhNZPOl1-Bo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HhNZPOl1-Bo.mp4/HhNZPOl1-Bo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HhNZPOl1-Bo.m3u8/HhNZPOl1-Bo.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction/diels-alder-iii-stereochemistry-of-dienophile/", "duration": 596, "id": "HhNZPOl1-Bo", "title": "Diels-Alder III: Stereochemistry of dienophile", "format": "mp4", "description": "", "slug": "diels-alder-iii-stereochemistry-of-dienophile", "kind": "Video", "video_id": "HhNZPOl1-Bo", "keywords": "", "youtube_id": "HhNZPOl1-Bo", "readable_id": "diels-alder-iii-stereochemistry-of-dienophile"}, "Zps2uH8aWVU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zps2uH8aWVU.mp4/Zps2uH8aWVU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zps2uH8aWVU.mp4/Zps2uH8aWVU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zps2uH8aWVU.m3u8/Zps2uH8aWVU.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/southern-blot/", "duration": 310, "id": "Zps2uH8aWVU", "title": "Southern blot", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "southern-blot", "kind": "Video", "video_id": "Zps2uH8aWVU", "keywords": "", "youtube_id": "Zps2uH8aWVU", "readable_id": "southern-blot"}, "Icp9eIVMBwU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Icp9eIVMBwU.mp4/Icp9eIVMBwU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Icp9eIVMBwU.mp4/Icp9eIVMBwU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Icp9eIVMBwU.m3u8/Icp9eIVMBwU.m3u8"}, "duration": 56, "id": "Icp9eIVMBwU", "title": "What were the biggest and smallest dinosaurs?", "format": "mp4", "description": "There's little doubt that the largest animals ever to live on land were sauropods, which includes\u00a0Apatosaurus\u00a0(formerly \"Brontosaurus\"),\u00a0Diplodocus, and\u00a0Brachiosaurus. But deciding which was the largest depends on what one means\u2014longest or heaviest? Based on fairly complete skeletons, the sauropods\u00a0Argentinosaurus\u00a0and\u00a0Seismosaurus, which were up to 50 meters long, are the longest dinosaurs yet discovered.\nAmong dinosaurs that aren't birds, or non-avian dinosaurs, the\u00a0Compsognathus longus, an Early Jurassic, chicken-sized meat-eater from Western Europe is the smallest yet discovered. It measures only 70 centimeters long, including the tail, and probably weighed about three kilograms.", "path": "dinosaur-size/", "slug": "dinosaur-size", "kind": "Video", "video_id": "Icp9eIVMBwU", "keywords": "", "youtube_id": "Icp9eIVMBwU", "readable_id": "dinosaur-size"}, "sMA116kzyK4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sMA116kzyK4.mp4/sMA116kzyK4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sMA116kzyK4.mp4/sMA116kzyK4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sMA116kzyK4.m3u8/sMA116kzyK4.m3u8"}, "path": "khan/science/health-and-medicine/current-issues-in-health-and-medicine/ebola-outbreak/r-nought-and-vaccine-coverage/", "duration": 517, "id": "sMA116kzyK4", "title": "R nought and vaccine coverage", "format": "mp4", "description": "Dr. Rishi Desai is a pediatric infectious disease physician and former epidemiologist with the Centers for Disease Control and Prevention (CDC)", "slug": "r-nought-and-vaccine-coverage", "kind": "Video", "video_id": "sMA116kzyK4", "keywords": "", "youtube_id": "sMA116kzyK4", "readable_id": "r-nought-and-vaccine-coverage"}, "Ux2E6uhEVk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ux2E6uhEVk0.mp4/Ux2E6uhEVk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ux2E6uhEVk0.mp4/Ux2E6uhEVk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ux2E6uhEVk0.m3u8/Ux2E6uhEVk0.m3u8"}, "duration": 215, "id": "Ux2E6uhEVk0", "title": "Symbolic interactionism", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/society-and-culture/social-structures/symbolic-interactionism/", "slug": "symbolic-interactionism", "kind": "Video", "video_id": "Ux2E6uhEVk0", "keywords": "symbolic interactionism", "youtube_id": "Ux2E6uhEVk0", "readable_id": "symbolic-interactionism"}, "nrOg85VPQgw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nrOg85VPQgw.mp4/nrOg85VPQgw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nrOg85VPQgw.mp4/nrOg85VPQgw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nrOg85VPQgw.m3u8/nrOg85VPQgw.m3u8"}, "duration": 473, "id": "nrOg85VPQgw", "title": "Virtual image", "format": "mp4", "description": "Virtual Image", "path": "khan/test-prep/mcat/physical-processes/spherical-mirrors/virtual-image/", "slug": "virtual-image", "kind": "Video", "video_id": "nrOg85VPQgw", "keywords": "Virtual, Image, optics, mirror", "youtube_id": "nrOg85VPQgw", "readable_id": "virtual-image"}, "ysVcAYo7UPI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ysVcAYo7UPI.mp4/ysVcAYo7UPI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ysVcAYo7UPI.mp4/ysVcAYo7UPI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ysVcAYo7UPI.m3u8/ysVcAYo7UPI.m3u8"}, "duration": 320, "id": "ysVcAYo7UPI", "title": "Introduction to i and imaginary numbers", "format": "mp4", "description": "Introduction to i and imaginary numbers", "path": "khan/math/precalculus/imaginary_complex_precalc/i_precalc/introduction-to-i-and-imaginary-numbers/", "slug": "introduction-to-i-and-imaginary-numbers", "kind": "Video", "video_id": "ysVcAYo7UPI", "keywords": "imaginary, unit, complex, numbers, exponents", "youtube_id": "ysVcAYo7UPI", "readable_id": "introduction-to-i-and-imaginary-numbers"}, "TpLlJ8-AnQM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TpLlJ8-AnQM.mp4/TpLlJ8-AnQM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TpLlJ8-AnQM.mp4/TpLlJ8-AnQM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TpLlJ8-AnQM.m3u8/TpLlJ8-AnQM.m3u8"}, "duration": 191, "id": "TpLlJ8-AnQM", "title": "Open market operations and quantitative easing overview", "format": "mp4", "description": "Basic difference between traditional open market operations and quantitative easing.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/federal-reserve/open-market-operations-and-quantitative-easing-overview/", "slug": "open-market-operations-and-quantitative-easing-overview", "kind": "Video", "video_id": "TpLlJ8-AnQM", "keywords": "federal, reserve, economics", "youtube_id": "TpLlJ8-AnQM", "readable_id": "open-market-operations-and-quantitative-easing-overview"}, "LOf8bfjiLow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LOf8bfjiLow.mp4/LOf8bfjiLow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LOf8bfjiLow.mp4/LOf8bfjiLow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LOf8bfjiLow.m3u8/LOf8bfjiLow.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/zero-identity-matrix-tutorial/zero-matrix/", "duration": 282, "id": "LOf8bfjiLow", "title": "Zero matrix", "format": "mp4", "description": "", "slug": "zero-matrix", "kind": "Video", "video_id": "LOf8bfjiLow", "keywords": "", "youtube_id": "LOf8bfjiLow", "readable_id": "zero-matrix"}, "L72h7bk6HZs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L72h7bk6HZs.mp4/L72h7bk6HZs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L72h7bk6HZs.mp4/L72h7bk6HZs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L72h7bk6HZs.m3u8/L72h7bk6HZs.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/institutions-government-economy-and-health-and-medicine/", "duration": 292, "id": "L72h7bk6HZs", "title": "Social institutions - government, economy, health and medicine", "format": "mp4", "description": "", "slug": "institutions-government-economy-and-health-and-medicine", "kind": "Video", "video_id": "L72h7bk6HZs", "keywords": "", "youtube_id": "L72h7bk6HZs", "readable_id": "institutions-government-economy-and-health-and-medicine"}, "WdAFrBpP1Bw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WdAFrBpP1Bw.mp4/WdAFrBpP1Bw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WdAFrBpP1Bw.mp4/WdAFrBpP1Bw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WdAFrBpP1Bw.m3u8/WdAFrBpP1Bw.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/sluter/claus-sluter-with-claus-de-werve-mourners-tomb-of-philip-the-installed-1410/", "duration": 203, "id": "WdAFrBpP1Bw", "title": "Claus Sluter and Claus de Werve, Mourners, from the Tomb of Philip the Bold", "format": "mp4", "description": "Claus Sluter (with Claus de Werve), Mourners, Tomb of Philip the Bold, Duke of Burgundy, 1410 (Museum of Fine Arts, Dijon) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "claus-sluter-with-claus-de-werve-mourners-tomb-of-philip-the-installed-1410", "kind": "Video", "video_id": "WdAFrBpP1Bw", "keywords": "", "youtube_id": "WdAFrBpP1Bw", "readable_id": "claus-sluter-with-claus-de-werve-mourners-tomb-of-philip-the-installed-1410"}, "kITJ6qH7jS0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kITJ6qH7jS0.mp4/kITJ6qH7jS0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kITJ6qH7jS0.mp4/kITJ6qH7jS0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kITJ6qH7jS0.m3u8/kITJ6qH7jS0.m3u8"}, "path": "khan/math/pre-algebra/exponents-radicals/exponent-properties/exponent-rules-part-1/", "duration": 583, "id": "kITJ6qH7jS0", "title": "Exponent rules part 1", "format": "mp4", "description": "Introduction to exponent rules", "slug": "exponent-rules-part-1", "kind": "Video", "video_id": "kITJ6qH7jS0", "keywords": "Math, exponents, exponent, rules, Khan, Academy, CC_8_EE_1", "youtube_id": "kITJ6qH7jS0", "readable_id": "exponent-rules-part-1"}, "YUQXdnZPdxE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YUQXdnZPdxE.mp4/YUQXdnZPdxE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YUQXdnZPdxE.mp4/YUQXdnZPdxE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YUQXdnZPdxE.m3u8/YUQXdnZPdxE.m3u8"}, "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-variable-block/", "duration": 485, "id": "YUQXdnZPdxE", "title": "Variable block (counter)", "format": "mp4", "description": "Store values using the variable block (build a counter)", "slug": "lego-variable-block", "kind": "Video", "video_id": "YUQXdnZPdxE", "keywords": "", "youtube_id": "YUQXdnZPdxE", "readable_id": "lego-variable-block"}, "Yaeze9u6Cv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yaeze9u6Cv8.mp4/Yaeze9u6Cv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yaeze9u6Cv8.mp4/Yaeze9u6Cv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yaeze9u6Cv8.m3u8/Yaeze9u6Cv8.m3u8"}, "duration": 252, "id": "Yaeze9u6Cv8", "title": "Solving rational equations 1", "format": "mp4", "description": "Solving Rational Equations 1", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/solving-rational-equations-1/", "slug": "solving-rational-equations-1", "kind": "Video", "video_id": "Yaeze9u6Cv8", "keywords": "U11_L2_T1_we1, Solving, Rational, Equations, CC_39336_A-APR_7, CC_39336_A-REI_2", "youtube_id": "Yaeze9u6Cv8", "readable_id": "solving-rational-equations-1"}, "Uq5Wzs96tiw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Uq5Wzs96tiw.mp4/Uq5Wzs96tiw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Uq5Wzs96tiw.mp4/Uq5Wzs96tiw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Uq5Wzs96tiw.m3u8/Uq5Wzs96tiw.m3u8"}, "duration": 731, "id": "Uq5Wzs96tiw", "title": "Budget line", "format": "mp4", "description": "What I can buy with my income", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial/budget-line/", "slug": "budget-line", "kind": "Video", "video_id": "Uq5Wzs96tiw", "keywords": "microeconomics, real, income, relative, price", "youtube_id": "Uq5Wzs96tiw", "readable_id": "budget-line"}, "GdfP-loRfm0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GdfP-loRfm0.mp4/GdfP-loRfm0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GdfP-loRfm0.mp4/GdfP-loRfm0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GdfP-loRfm0.m3u8/GdfP-loRfm0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/post-stroke-inflammation/", "duration": 360, "id": "GdfP-loRfm0", "title": "Post stroke inflammation", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "post-stroke-inflammation", "kind": "Video", "video_id": "GdfP-loRfm0", "keywords": "", "youtube_id": "GdfP-loRfm0", "readable_id": "post-stroke-inflammation"}, "_X_QwpXsdOs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_X_QwpXsdOs.mp4/_X_QwpXsdOs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_X_QwpXsdOs.mp4/_X_QwpXsdOs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_X_QwpXsdOs.m3u8/_X_QwpXsdOs.m3u8"}, "duration": 677, "id": "_X_QwpXsdOs", "title": "\"Shifting\" transform by multiplying function by exponential", "format": "mp4", "description": "A grab bag of things to know about the Laplace Transform.", "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/more-laplace-transform-tools/", "slug": "more-laplace-transform-tools", "kind": "Video", "video_id": "_X_QwpXsdOs", "keywords": "laplace, transform, differential, equations", "youtube_id": "_X_QwpXsdOs", "readable_id": "more-laplace-transform-tools"}, "zmQrI4786cc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zmQrI4786cc.mp4/zmQrI4786cc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zmQrI4786cc.mp4/zmQrI4786cc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zmQrI4786cc.m3u8/zmQrI4786cc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2008-may-8-14/", "duration": 206, "id": "zmQrI4786cc", "title": "14 Equation of diameter of circle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-14", "kind": "Video", "video_id": "zmQrI4786cc", "keywords": "", "youtube_id": "zmQrI4786cc", "readable_id": "sat-2008-may-8-14"}, "7d6S8y2kYSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7d6S8y2kYSg.mp4/7d6S8y2kYSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7d6S8y2kYSg.mp4/7d6S8y2kYSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7d6S8y2kYSg.m3u8/7d6S8y2kYSg.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/fauvism-matisse/matisse-luxe-calme-et-volupt-1904/", "duration": 206, "id": "7d6S8y2kYSg", "title": "Matisse, Luxe, calme et volupt\u00e9", "format": "mp4", "description": "Henri Matisse, Luxe, calme et volupt\u00e9, 1904, oil on canvas, 37 x 46 inches (Muse\u00e9 d'Orsay, Paris)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\nPainted while the artist stayed with the pointillist painter, Signac, at his home in Saint-Tropez on the C\u00f4te d'Azur. Matisse's title comes from Charles Baudelaire's\npoem, L'invitation au voyage (Invitation To A Voyage) from his collection, The Flowers of Evil. Luxe, calme et volupt\u00e9 translates just as it sounds in English, Luxury, calm, and voluptuous(ness)", "slug": "matisse-luxe-calme-et-volupt-1904", "kind": "Video", "video_id": "7d6S8y2kYSg", "keywords": "Matisse, Musee d'Orsay, Paris, Fauvism, Art History", "youtube_id": "7d6S8y2kYSg", "readable_id": "matisse-luxe-calme-et-volupt-1904"}, "JQ_Wojqtn7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JQ_Wojqtn7c.mp4/JQ_Wojqtn7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JQ_Wojqtn7c.mp4/JQ_Wojqtn7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JQ_Wojqtn7c.m3u8/JQ_Wojqtn7c.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/magnetism/floating-magnet-poles/", "duration": 34, "id": "JQ_Wojqtn7c", "title": "Floating magnet", "format": "mp4", "description": "Can you use a magnet as a compass? How can you find North vs. South pole?", "slug": "floating-magnet-poles", "kind": "Video", "video_id": "JQ_Wojqtn7c", "keywords": "magnetic poles", "youtube_id": "JQ_Wojqtn7c", "readable_id": "floating-magnet-poles"}, "Aa1CMokCch4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Aa1CMokCch4.mp4/Aa1CMokCch4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Aa1CMokCch4.mp4/Aa1CMokCch4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Aa1CMokCch4.m3u8/Aa1CMokCch4.m3u8"}, "duration": 564, "id": "Aa1CMokCch4", "title": "Alcohol properties", "format": "mp4", "description": "Alcohol Properties", "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/alcohol-nomenclature-properties/alcohol-properties/", "slug": "alcohol-properties", "kind": "Video", "video_id": "Aa1CMokCch4", "keywords": "Alcohol, Properties", "youtube_id": "Aa1CMokCch4", "readable_id": "alcohol-properties"}, "Ij_ERo1Ashc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ij_ERo1Ashc.mp4/Ij_ERo1Ashc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ij_ERo1Ashc.mp4/Ij_ERo1Ashc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ij_ERo1Ashc.m3u8/Ij_ERo1Ashc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-myocarditis-and-pericarditis/causes-of-pericarditis/", "duration": 611, "id": "Ij_ERo1Ashc", "title": "Causes of pericarditis", "format": "mp4", "description": "", "slug": "causes-of-pericarditis", "kind": "Video", "video_id": "Ij_ERo1Ashc", "keywords": "", "youtube_id": "Ij_ERo1Ashc", "readable_id": "causes-of-pericarditis"}, "LMO-o9zZWC0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LMO-o9zZWC0.mp4/LMO-o9zZWC0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LMO-o9zZWC0.mp4/LMO-o9zZWC0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LMO-o9zZWC0.m3u8/LMO-o9zZWC0.m3u8"}, "duration": 236, "id": "LMO-o9zZWC0", "title": "Suzanne Lacy: Silver Action", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\n\"It's a truly participatory work,\" says artist Suzanne Lacy of her performance\u00a0Silver Action, in which hundreds of women over sixty gathered within the gallery, shared their stories of activism and protest, and drew the audience in.\u00a0", "path": "suzanne-lacy-silver-action/", "slug": "suzanne-lacy-silver-action", "kind": "Video", "video_id": "LMO-o9zZWC0", "keywords": "Tate, performance art", "youtube_id": "LMO-o9zZWC0", "readable_id": "suzanne-lacy-silver-action"}, "qkVX03qMzb4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qkVX03qMzb4.mp4/qkVX03qMzb4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qkVX03qMzb4.mp4/qkVX03qMzb4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qkVX03qMzb4.m3u8/qkVX03qMzb4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pertussis/complications-of-pertussis/", "duration": 337, "id": "qkVX03qMzb4", "title": "Pertussis complications", "format": "mp4", "description": "", "slug": "complications-of-pertussis", "kind": "Video", "video_id": "qkVX03qMzb4", "keywords": "", "youtube_id": "qkVX03qMzb4", "readable_id": "complications-of-pertussis"}, "WScwPIPqZa0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WScwPIPqZa0.mp4/WScwPIPqZa0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WScwPIPqZa0.mp4/WScwPIPqZa0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WScwPIPqZa0.m3u8/WScwPIPqZa0.m3u8"}, "path": "khan/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws/ideal-gas-equation-pv-nrt/", "duration": 562, "id": "WScwPIPqZa0", "title": "Ideal gas equation: PV = nRT", "format": "mp4", "description": "Intuition behind the ideal gas equation: PV=nRT.", "slug": "ideal-gas-equation-pv-nrt", "kind": "Video", "video_id": "WScwPIPqZa0", "keywords": "ideal, gas, law, pressure, volume, temperature", "youtube_id": "WScwPIPqZa0", "readable_id": "ideal-gas-equation-pv-nrt"}, "juc6Kd8jnJc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/juc6Kd8jnJc.mp4/juc6Kd8jnJc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/juc6Kd8jnJc.mp4/juc6Kd8jnJc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/juc6Kd8jnJc.m3u8/juc6Kd8jnJc.m3u8"}, "duration": 145, "id": "juc6Kd8jnJc", "title": "Camilo Vergara documents the changing urban landscape", "format": "mp4", "description": "In 1967, Camilo Vergara recorded a dilapidated building in South Bend, Indiana. Vergara believes that the changing nature of buildings can reveal the social history of poor American neighborhoods. Love art? Follow us on Google+", "path": "vergara-changing-urban-landscape/", "slug": "vergara-changing-urban-landscape", "kind": "Video", "video_id": "juc6Kd8jnJc", "keywords": "", "youtube_id": "juc6Kd8jnJc", "readable_id": "vergara-changing-urban-landscape"}, "4CAQN-nc8Ac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4CAQN-nc8Ac.mp4/4CAQN-nc8Ac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4CAQN-nc8Ac.mp4/4CAQN-nc8Ac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4CAQN-nc8Ac.m3u8/4CAQN-nc8Ac.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/population-dynamics/", "duration": 541, "id": "4CAQN-nc8Ac", "title": "Population dynamics", "format": "mp4", "description": "", "slug": "population-dynamics", "kind": "Video", "video_id": "4CAQN-nc8Ac", "keywords": "", "youtube_id": "4CAQN-nc8Ac", "readable_id": "population-dynamics"}, "vhfjEpQWWeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vhfjEpQWWeE.mp4/vhfjEpQWWeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vhfjEpQWWeE.mp4/vhfjEpQWWeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vhfjEpQWWeE.m3u8/vhfjEpQWWeE.m3u8"}, "duration": 733, "id": "vhfjEpQWWeE", "title": "Laplace transform of the dirac delta function", "format": "mp4", "description": "Figuring out the Laplace Transform of the Dirac Delta Function", "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/laplace-transform-of-the-dirac-delta-function/", "slug": "laplace-transform-of-the-dirac-delta-function", "kind": "Video", "video_id": "vhfjEpQWWeE", "keywords": "differential, equations, laplace, transform, dirac", "youtube_id": "vhfjEpQWWeE", "readable_id": "laplace-transform-of-the-dirac-delta-function"}, "X9rTIwc1wRU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X9rTIwc1wRU.mp4/X9rTIwc1wRU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X9rTIwc1wRU.mp4/X9rTIwc1wRU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X9rTIwc1wRU.m3u8/X9rTIwc1wRU.m3u8"}, "path": "khan/math/algebra/quadratics/quadratic_odds_ends/algebra-ii-shifting-quadratic-graphs/", "duration": 691, "id": "X9rTIwc1wRU", "title": "Examples: Graphing and interpreting quadratics", "format": "mp4", "description": "36-38, shifting quadratic graphs and finding x-intercepts (roots)", "slug": "algebra-ii-shifting-quadratic-graphs", "kind": "Video", "video_id": "X9rTIwc1wRU", "keywords": "shifting, quadartic, graph, roots", "youtube_id": "X9rTIwc1wRU", "readable_id": "algebra-ii-shifting-quadratic-graphs"}, "sYQ5CSyACpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sYQ5CSyACpc.mp4/sYQ5CSyACpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sYQ5CSyACpc.mp4/sYQ5CSyACpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sYQ5CSyACpc.m3u8/sYQ5CSyACpc.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/claude-monet-gare-st-lazare-1877/", "duration": 336, "id": "sYQ5CSyACpc", "title": "Monet, Gare St. Lazare", "format": "mp4", "description": "Claude Monet, Gare St. Lazare, 1877 (Musee d'Orsay)", "slug": "claude-monet-gare-st-lazare-1877", "kind": "Video", "video_id": "sYQ5CSyACpc", "keywords": "monet, impressionism, art, art history, smarthistory, gare st lazare", "youtube_id": "sYQ5CSyACpc", "readable_id": "claude-monet-gare-st-lazare-1877"}, "711pdW8TbbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/711pdW8TbbY.mp4/711pdW8TbbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/711pdW8TbbY.mp4/711pdW8TbbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/711pdW8TbbY.m3u8/711pdW8TbbY.m3u8"}, "duration": 670, "id": "711pdW8TbbY", "title": "Extraneous solutions to radical equations", "format": "mp4", "description": "Extraneous Solutions to Radical Equations", "path": "khan/math/algebra/exponent-equations/radical_equations/extraneous-solutions-to-radical-equations/", "slug": "extraneous-solutions-to-radical-equations", "kind": "Video", "video_id": "711pdW8TbbY", "keywords": "Extraneous, Solutions, to, Radical, Equations, CC_39336_A-REI_2", "youtube_id": "711pdW8TbbY", "readable_id": "extraneous-solutions-to-radical-equations"}, "3M8bwwafMxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3M8bwwafMxY.mp4/3M8bwwafMxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3M8bwwafMxY.mp4/3M8bwwafMxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3M8bwwafMxY.m3u8/3M8bwwafMxY.m3u8"}, "duration": 746, "id": "3M8bwwafMxY", "title": "Islam, the Quran, and the Five Pillars all without a flamewar", "format": "mp4", "description": "In which John Green teaches you the history of Islam, including the revelation of the Qu'ran to Muhammad, the five pillars of Islam, how the Islamic empire got its start, the Rightly Guided Caliphs, and more. Learn about hadiths, Abu Bakr, and whether the Umma has anything to do with Uma Thurman (spoiler alert: it doesn't). Also, learn a little about the split between Sunni and Shia Muslims, and how to tell if this year's Ramadan is going to be difficult for your Muslim friends. Let's try to keep the flame wars out of this reasoned discussion.", "path": "khan/humanities/history/crashcourse-worldhistory/whats-god-got-to-do-with-it-2/crash-course-world-history-13/", "slug": "crash-course-world-history-13", "kind": "Video", "video_id": "3M8bwwafMxY", "keywords": "crash course", "youtube_id": "3M8bwwafMxY", "readable_id": "crash-course-world-history-13"}, "KjQ1KN5GgoE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KjQ1KN5GgoE.mp4/KjQ1KN5GgoE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KjQ1KN5GgoE.mp4/KjQ1KN5GgoE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KjQ1KN5GgoE.m3u8/KjQ1KN5GgoE.m3u8"}, "duration": 154, "id": "KjQ1KN5GgoE", "title": "Example with tangent and radius", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/central-inscribed-circumscribed/example-with-tangent-and-radius/", "slug": "example-with-tangent-and-radius", "kind": "Video", "video_id": "KjQ1KN5GgoE", "keywords": "", "youtube_id": "KjQ1KN5GgoE", "readable_id": "example-with-tangent-and-radius"}, "OhRr26AfFBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OhRr26AfFBU.mp4/OhRr26AfFBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OhRr26AfFBU.mp4/OhRr26AfFBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OhRr26AfFBU.m3u8/OhRr26AfFBU.m3u8"}, "path": "khan/math/probability/statistics-inferential/normal_distribution/ck12-org-normal-distribution-problems-empirical-rule/", "duration": 625, "id": "OhRr26AfFBU", "title": "ck12.org normal distribution problems: Empirical rule", "format": "mp4", "description": "Using the empirical rule (or 68-95-99.7 rule) to estimate probabilities for normal distributions", "slug": "ck12-org-normal-distribution-problems-empirical-rule", "kind": "Video", "video_id": "OhRr26AfFBU", "keywords": "empirical, rule, normal, distribution, CC_6_SP_5_c, CC_6_SP_5_d", "youtube_id": "OhRr26AfFBU", "readable_id": "ck12-org-normal-distribution-problems-empirical-rule"}, "Um92GZLCQ_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Um92GZLCQ_Q.mp4/Um92GZLCQ_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Um92GZLCQ_Q.mp4/Um92GZLCQ_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Um92GZLCQ_Q.m3u8/Um92GZLCQ_Q.m3u8"}, "duration": 901, "id": "Um92GZLCQ_Q", "title": "Allende and Pinochet in Chile", "format": "mp4", "description": "Outline of the 1973 Allende Coup in Chile and Pinochet's Junta (this video under CC-BY-SA)", "path": "khan/humanities/history/euro-hist/cold-war/allende-and-pinochet-in-chile/", "slug": "allende-and-pinochet-in-chile", "kind": "Video", "video_id": "Um92GZLCQ_Q", "keywords": "cia, nixon, kissinger, allende, pinochet", "youtube_id": "Um92GZLCQ_Q", "readable_id": "allende-and-pinochet-in-chile"}, "JiE_kNk3ucI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JiE_kNk3ucI.mp4/JiE_kNk3ucI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JiE_kNk3ucI.mp4/JiE_kNk3ucI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JiE_kNk3ucI.m3u8/JiE_kNk3ucI.m3u8"}, "duration": 650, "id": "JiE_kNk3ucI", "title": "Intergalactic scale", "format": "mp4", "description": "Intergalactic Scale", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/scale-earth-galaxy-tutorial/intergalactic-scale/", "slug": "intergalactic-scale", "kind": "Video", "video_id": "JiE_kNk3ucI", "keywords": "Intergalactic, Scale, Cosmology, Astronomy, Observable, Universe", "youtube_id": "JiE_kNk3ucI", "readable_id": "intergalactic-scale"}, "dHXzusNSF60": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dHXzusNSF60.mp4/dHXzusNSF60.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dHXzusNSF60.mp4/dHXzusNSF60.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dHXzusNSF60.m3u8/dHXzusNSF60.m3u8"}, "duration": 425, "id": "dHXzusNSF60", "title": "United States enters World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/american-entry-world-war-i/united-states-enters-world-war-i/", "slug": "united-states-enters-world-war-i", "kind": "Video", "video_id": "dHXzusNSF60", "keywords": "", "youtube_id": "dHXzusNSF60", "readable_id": "united-states-enters-world-war-i"}, "daCT_24RnIY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/daCT_24RnIY.mp4/daCT_24RnIY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/daCT_24RnIY.mp4/daCT_24RnIY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/daCT_24RnIY.m3u8/daCT_24RnIY.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-measurement/on-volume/measuring-volume-as-area-times-length/", "duration": 442, "id": "daCT_24RnIY", "title": "Volume: measuring as area times length", "format": "mp4", "description": "Sometimes, we can't just count the number of cubes to find the volume because there are too many. In those situations, you need another way of measuring volume. This video gives you the solution.", "slug": "measuring-volume-as-area-times-length", "kind": "Video", "video_id": "daCT_24RnIY", "keywords": "", "youtube_id": "daCT_24RnIY", "readable_id": "measuring-volume-as-area-times-length"}, "KSclrkk_Ako": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KSclrkk_Ako.mp4/KSclrkk_Ako.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KSclrkk_Ako.mp4/KSclrkk_Ako.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KSclrkk_Ako.m3u8/KSclrkk_Ako.m3u8"}, "duration": 602, "id": "KSclrkk_Ako", "title": "Types of hormones", "format": "mp4", "description": "There are three major types of hormones, based on structure, in our body. Lets find out a little more about them. By Ryan Patton. ", "path": "khan/test-prep/nclex-rn/rn-endocrine-system/rn-the-endocrine-system/types-of-hormones/", "slug": "types-of-hormones", "kind": "Video", "video_id": "KSclrkk_Ako", "keywords": "hormones", "youtube_id": "KSclrkk_Ako", "readable_id": "types-of-hormones"}, "Dfkq9SOWxY8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dfkq9SOWxY8.mp4/Dfkq9SOWxY8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dfkq9SOWxY8.mp4/Dfkq9SOWxY8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dfkq9SOWxY8.m3u8/Dfkq9SOWxY8.m3u8"}, "duration": 171, "id": "Dfkq9SOWxY8", "title": "China buys US bonds", "format": "mp4", "description": "China buys US Bonds", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/china-buys-us-bonds/", "slug": "china-buys-us-bonds", "kind": "Video", "video_id": "Dfkq9SOWxY8", "keywords": "China, buys, US, Bonds", "youtube_id": "Dfkq9SOWxY8", "readable_id": "china-buys-us-bonds"}, "0uCslW40VHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0uCslW40VHQ.mp4/0uCslW40VHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0uCslW40VHQ.mp4/0uCslW40VHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0uCslW40VHQ.m3u8/0uCslW40VHQ.m3u8"}, "duration": 161, "id": "0uCslW40VHQ", "title": "Evaluating an expression with exponents", "format": "mp4", "description": "We're going to put our order of operations knowledge to work as we evaluate this expression. Exponents, specifically, are our focus here.", "path": "evaluating-exponential-expressions/", "slug": "evaluating-exponential-expressions", "kind": "Video", "video_id": "0uCslW40VHQ", "keywords": "u11_l1_t1_we1, Evaluating, exponential, expressions, CC_6_EE_1, CC_8_EE_1", "youtube_id": "0uCslW40VHQ", "readable_id": "evaluating-exponential-expressions"}, "ZlhrXO1-osA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZlhrXO1-osA.mp4/ZlhrXO1-osA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZlhrXO1-osA.mp4/ZlhrXO1-osA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZlhrXO1-osA.m3u8/ZlhrXO1-osA.m3u8"}, "duration": 164, "id": "ZlhrXO1-osA", "title": "Whole number and fraction multiplication concept", "format": "mp4", "description": "A mixed number is simply a whole number/fraction multiplication problem. Let us explain.", "path": "fraction-whole-multiplication-concept/", "slug": "fraction-whole-multiplication-concept", "kind": "Video", "video_id": "ZlhrXO1-osA", "keywords": "", "youtube_id": "ZlhrXO1-osA", "readable_id": "fraction-whole-multiplication-concept"}, "ad5e-jy-eqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ad5e-jy-eqs.mp4/ad5e-jy-eqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ad5e-jy-eqs.mp4/ad5e-jy-eqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ad5e-jy-eqs.m3u8/ad5e-jy-eqs.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-alcohols-tutorial/preparation-of-alcohols-using-nabh4/", "duration": 756, "id": "ad5e-jy-eqs", "title": "Preparation of alcohols using NaBH4", "format": "mp4", "description": "", "slug": "preparation-of-alcohols-using-nabh4", "kind": "Video", "video_id": "ad5e-jy-eqs", "keywords": "", "youtube_id": "ad5e-jy-eqs", "readable_id": "preparation-of-alcohols-using-nabh4"}, "7Bxp98ChqT0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Bxp98ChqT0.mp4/7Bxp98ChqT0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Bxp98ChqT0.mp4/7Bxp98ChqT0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Bxp98ChqT0.m3u8/7Bxp98ChqT0.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2008-may-4-4/", "duration": 120, "id": "7Bxp98ChqT0", "title": "4 Negative numbers and absolute value", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-4", "kind": "Video", "video_id": "7Bxp98ChqT0", "keywords": "", "youtube_id": "7Bxp98ChqT0", "readable_id": "sat-2008-may-4-4"}, "6KmeGpjeLZ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6KmeGpjeLZ0.mp4/6KmeGpjeLZ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6KmeGpjeLZ0.mp4/6KmeGpjeLZ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6KmeGpjeLZ0.m3u8/6KmeGpjeLZ0.m3u8"}, "duration": 485, "id": "6KmeGpjeLZ0", "title": "Vi and Sal talk about the mysteries of Benford's law", "format": "mp4", "description": "Vi Hart visits Khan Academy and talks about Benford's Law with Sal", "path": "khan/math/algebra2/logarithms-tutorial/logarithmic-scale-patterns/vi-and-sal-talk-about-the-mysteries-of-benford-s-law/", "slug": "vi-and-sal-talk-about-the-mysteries-of-benford-s-law", "kind": "Video", "video_id": "6KmeGpjeLZ0", "keywords": "benford, math, numbers", "youtube_id": "6KmeGpjeLZ0", "readable_id": "vi-and-sal-talk-about-the-mysteries-of-benford-s-law"}, "3oeLGKeNPj0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3oeLGKeNPj0.mp4/3oeLGKeNPj0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3oeLGKeNPj0.mp4/3oeLGKeNPj0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3oeLGKeNPj0.m3u8/3oeLGKeNPj0.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/arnold-b-cklin-self-portrait-with-death-playing-the-fiddle-1872/", "duration": 179, "id": "3oeLGKeNPj0", "title": "B\u00f6cklin, Self-Portrait with Death Playing the Fiddle", "format": "mp4", "description": "Arnold B\u00f6cklin, Self-Portrait with Death Playing the Fiddle, 1872, oil on canvas, 75 x 61 cm (Alte Nationalgalerie, Berlin)", "slug": "arnold-b-cklin-self-portrait-with-death-playing-the-fiddle-1872", "kind": "Video", "video_id": "3oeLGKeNPj0", "keywords": "Arnold B\u00f6cklin, B\u00f6cklin, Bocklin Self-Portrait, Death Playing the Fiddle, 1872, Alte Nationalgalerie, painting, German, art, Google Art Project, Smarthistory, Khan Academy, OER, art history, violin", "youtube_id": "3oeLGKeNPj0", "readable_id": "arnold-b-cklin-self-portrait-with-death-playing-the-fiddle-1872"}, "tx2Niw7aJJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tx2Niw7aJJ8.mp4/tx2Niw7aJJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tx2Niw7aJJ8.mp4/tx2Niw7aJJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tx2Niw7aJJ8.m3u8/tx2Niw7aJJ8.m3u8"}, "duration": 111, "id": "tx2Niw7aJJ8", "title": "Multiplication estimation example", "format": "mp4", "description": "Estimating the product of two, 2-digit numbers", "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/multiplying-whole-numbers-and-applications-4/", "slug": "multiplying-whole-numbers-and-applications-4", "kind": "Video", "video_id": "tx2Niw7aJJ8", "keywords": "U01_L3_T1_we4, Multiplying, Whole, Numbers, and, Applications, CC_3_NBT_1, CC_3_OA_8, CC_4_NBT_3, CC_4_NBT_5, CC_4_OA_3, CC_5_NBT_5", "youtube_id": "tx2Niw7aJJ8", "readable_id": "multiplying-whole-numbers-and-applications-4"}, "Mu2pqXgArxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mu2pqXgArxY.mp4/Mu2pqXgArxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mu2pqXgArxY.mp4/Mu2pqXgArxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mu2pqXgArxY.m3u8/Mu2pqXgArxY.m3u8"}, "path": "khan/college-admissions/making-high-school-count/standardized-tests/overview-of-act/", "duration": 211, "id": "Mu2pqXgArxY", "title": "Overview of the ACT", "format": "mp4", "description": "Official ACT Website", "slug": "overview-of-act", "kind": "Video", "video_id": "Mu2pqXgArxY", "keywords": "", "youtube_id": "Mu2pqXgArxY", "readable_id": "overview-of-act"}, "Dru0RHgfp2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dru0RHgfp2g.mp4/Dru0RHgfp2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dru0RHgfp2g.mp4/Dru0RHgfp2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dru0RHgfp2g.m3u8/Dru0RHgfp2g.m3u8"}, "duration": 694, "id": "Dru0RHgfp2g", "title": "Identifying circles and parabolas from equations", "format": "mp4", "description": "Let's identify (and graph) a couple of more conics!", "path": "khan/math/algebra2/conics_precalc/conics_precalc_eqs/conic-identification-3/", "slug": "conic-identification-3", "kind": "Video", "video_id": "Dru0RHgfp2g", "keywords": "conic, sections, parabola, circle", "youtube_id": "Dru0RHgfp2g", "readable_id": "conic-identification-3"}, "DaQlieZH1kk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DaQlieZH1kk.mp4/DaQlieZH1kk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DaQlieZH1kk.mp4/DaQlieZH1kk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DaQlieZH1kk.m3u8/DaQlieZH1kk.m3u8"}, "duration": 247, "id": "DaQlieZH1kk", "title": "Multiplying: 2 digit numbers", "format": "mp4", "description": "The trick here to remember your place value as you multiply and then add the numbers. We'll demonstrate and make it perfectly clear!", "path": "multiplying-2-digit-numbers/", "slug": "multiplying-2-digit-numbers", "kind": "Video", "video_id": "DaQlieZH1kk", "keywords": "", "youtube_id": "DaQlieZH1kk", "readable_id": "multiplying-2-digit-numbers"}, "ogg_ZxSeNQ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ogg_ZxSeNQ0.mp4/ogg_ZxSeNQ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ogg_ZxSeNQ0.mp4/ogg_ZxSeNQ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ogg_ZxSeNQ0.m3u8/ogg_ZxSeNQ0.m3u8"}, "duration": 353, "id": "ogg_ZxSeNQ0", "title": "Pythagorean theorem and radii of circles", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/equation-of-a-circle/pythagorean-theorem-and-radii-of-circles/", "slug": "pythagorean-theorem-and-radii-of-circles", "kind": "Video", "video_id": "ogg_ZxSeNQ0", "keywords": "", "youtube_id": "ogg_ZxSeNQ0", "readable_id": "pythagorean-theorem-and-radii-of-circles"}, "tDi9BD__gRY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tDi9BD__gRY.mp4/tDi9BD__gRY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tDi9BD__gRY.mp4/tDi9BD__gRY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tDi9BD__gRY.m3u8/tDi9BD__gRY.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-behavior/proximity-and-the-mere-exposure-effect/", "duration": 388, "id": "tDi9BD__gRY", "title": "Proximity and the mere exposure effect", "format": "mp4", "description": "", "slug": "proximity-and-the-mere-exposure-effect", "kind": "Video", "video_id": "tDi9BD__gRY", "keywords": "", "youtube_id": "tDi9BD__gRY", "readable_id": "proximity-and-the-mere-exposure-effect"}, "tzR9jUCSniQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tzR9jUCSniQ.mp4/tzR9jUCSniQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tzR9jUCSniQ.mp4/tzR9jUCSniQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tzR9jUCSniQ.m3u8/tzR9jUCSniQ.m3u8"}, "duration": 594, "id": "tzR9jUCSniQ", "title": "IIT JEE trigonometric maximum", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 48 Trigonometric Maximum", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-trigonometric-maximum/", "slug": "iit-jee-trigonometric-maximum", "kind": "Video", "video_id": "tzR9jUCSniQ", "keywords": "2010, IIT, JEE, Paper, Problem, 48, Trigonometric, Maximum", "youtube_id": "tzR9jUCSniQ", "readable_id": "iit-jee-trigonometric-maximum"}, "4qdD4Ny34cc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4qdD4Ny34cc.mp4/4qdD4Ny34cc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4qdD4Ny34cc.mp4/4qdD4Ny34cc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4qdD4Ny34cc.m3u8/4qdD4Ny34cc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/movement-signs-and-symptoms-of-parkinsons-disease/", "duration": 626, "id": "4qdD4Ny34cc", "title": "Movement signs and symptoms of Parkinson's disease", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "movement-signs-and-symptoms-of-parkinsons-disease", "kind": "Video", "video_id": "4qdD4Ny34cc", "keywords": "", "youtube_id": "4qdD4Ny34cc", "readable_id": "movement-signs-and-symptoms-of-parkinsons-disease"}, "TZrKrNVhbjI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TZrKrNVhbjI.mp4/TZrKrNVhbjI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TZrKrNVhbjI.mp4/TZrKrNVhbjI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TZrKrNVhbjI.m3u8/TZrKrNVhbjI.m3u8"}, "duration": 222, "id": "TZrKrNVhbjI", "title": "Transpose of a matrix", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/transpose-of-a-matrix/", "slug": "transpose-of-a-matrix", "kind": "Video", "video_id": "TZrKrNVhbjI", "keywords": "", "youtube_id": "TZrKrNVhbjI", "readable_id": "transpose-of-a-matrix"}, "OLO64d4Y1qI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OLO64d4Y1qI.mp4/OLO64d4Y1qI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OLO64d4Y1qI.mp4/OLO64d4Y1qI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OLO64d4Y1qI.m3u8/OLO64d4Y1qI.m3u8"}, "duration": 219, "id": "OLO64d4Y1qI", "title": "u-substitution with ln(x)", "format": "mp4", "description": "Doing u-substitution with ln(x)", "path": "khan/math/integral-calculus/integration-techniques/u_substitution/u-substitution-with-ln-x/", "slug": "u-substitution-with-ln-x", "kind": "Video", "video_id": "OLO64d4Y1qI", "keywords": "", "youtube_id": "OLO64d4Y1qI", "readable_id": "u-substitution-with-ln-x"}, "HDntI7zfBNs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HDntI7zfBNs.mp4/HDntI7zfBNs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HDntI7zfBNs.mp4/HDntI7zfBNs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HDntI7zfBNs.m3u8/HDntI7zfBNs.m3u8"}, "duration": 609, "id": "HDntI7zfBNs", "title": "Total distance traveled by a particle", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/motion-along-line-derivatives/total-distance-traveled-by-a-particle/", "slug": "total-distance-traveled-by-a-particle", "kind": "Video", "video_id": "HDntI7zfBNs", "keywords": "", "youtube_id": "HDntI7zfBNs", "readable_id": "total-distance-traveled-by-a-particle"}, "Xu1lBwJw1OU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xu1lBwJw1OU.mp4/Xu1lBwJw1OU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xu1lBwJw1OU.mp4/Xu1lBwJw1OU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xu1lBwJw1OU.m3u8/Xu1lBwJw1OU.m3u8"}, "duration": 196, "id": "Xu1lBwJw1OU", "title": "Angle of sun with the ground based on shadow", "format": "mp4", "description": "", "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/angle-sun-with-ground/", "slug": "angle-sun-with-ground", "kind": "Video", "video_id": "Xu1lBwJw1OU", "keywords": "", "youtube_id": "Xu1lBwJw1OU", "readable_id": "angle-sun-with-ground"}, "rD25slnTqAE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rD25slnTqAE.mp4/rD25slnTqAE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rD25slnTqAE.mp4/rD25slnTqAE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rD25slnTqAE.m3u8/rD25slnTqAE.m3u8"}, "duration": 296, "id": "rD25slnTqAE", "title": "Corporate debt versus traditional mortgages", "format": "mp4", "description": "Understanding how most corporate debt is different than most personal mortgages", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial/corporate-debt-versus-traditional-mortgages/", "slug": "corporate-debt-versus-traditional-mortgages", "kind": "Video", "video_id": "rD25slnTqAE", "keywords": "education, finance, capital, markets", "youtube_id": "rD25slnTqAE", "readable_id": "corporate-debt-versus-traditional-mortgages"}, "XGZvvQ8BmjY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XGZvvQ8BmjY.mp4/XGZvvQ8BmjY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XGZvvQ8BmjY.mp4/XGZvvQ8BmjY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XGZvvQ8BmjY.m3u8/XGZvvQ8BmjY.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/mantegna-dead-christ-c-1490/", "duration": 235, "id": "XGZvvQ8BmjY", "title": "Mantegna, Dead Christ", "format": "mp4", "description": "Andrea Mantegna, Dead Christ, tempera on canvas, c. 1480 - 1500 (Pinacoteca di Brera, Milan) Speakers: Dr. Steven Zucker and Dr. Beth Harris http://www.smarthistory.org/mantegna-dead-christ.html", "slug": "mantegna-dead-christ-c-1490", "kind": "Video", "video_id": "XGZvvQ8BmjY", "keywords": "Art History", "youtube_id": "XGZvvQ8BmjY", "readable_id": "mantegna-dead-christ-c-1490"}, "-p_-0n2f35o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-p_-0n2f35o.mp4/-p_-0n2f35o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-p_-0n2f35o.mp4/-p_-0n2f35o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-p_-0n2f35o.m3u8/-p_-0n2f35o.m3u8"}, "duration": 596, "id": "-p_-0n2f35o", "title": "Vygotsky sociocultural development", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/vygotsky-sociocultural-development/", "slug": "vygotsky-sociocultural-development", "kind": "Video", "video_id": "-p_-0n2f35o", "keywords": "", "youtube_id": "-p_-0n2f35o", "readable_id": "vygotsky-sociocultural-development"}, "nA5niH5e31Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nA5niH5e31Q.mp4/nA5niH5e31Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nA5niH5e31Q.mp4/nA5niH5e31Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nA5niH5e31Q.m3u8/nA5niH5e31Q.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/fauvism-matisse/reading-matisse/", "duration": 181, "id": "nA5niH5e31Q", "title": "\"Reading Matisse\" with Rebecca Rabinow", "format": "mp4", "description": "Met curator Rebecca Rabinow on disquiet in Henri Matisse\u2019s The illustrated book, \u201cJazz.\u201d\n\nView this work on metmuseum.org\n", "slug": "reading-matisse", "kind": "Video", "video_id": "nA5niH5e31Q", "keywords": "book, motion, paper, politics, print, shock, Europe", "youtube_id": "nA5niH5e31Q", "readable_id": "reading-matisse"}, "oG7C7U3FhhQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oG7C7U3FhhQ.mp4/oG7C7U3FhhQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oG7C7U3FhhQ.mp4/oG7C7U3FhhQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oG7C7U3FhhQ.m3u8/oG7C7U3FhhQ.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/bass-clarinet-interview-and-demonstration-with-james-ognibene/", "duration": 544, "id": "oG7C7U3FhhQ", "title": "Bass Clarinet: Interview and demonstration with James Ognibene", "format": "mp4", "description": "", "slug": "bass-clarinet-interview-and-demonstration-with-james-ognibene", "kind": "Video", "video_id": "oG7C7U3FhhQ", "keywords": "", "youtube_id": "oG7C7U3FhhQ", "readable_id": "bass-clarinet-interview-and-demonstration-with-james-ognibene"}, "HLGCq2h4ihY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HLGCq2h4ihY.mp4/HLGCq2h4ihY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HLGCq2h4ihY.mp4/HLGCq2h4ihY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HLGCq2h4ihY.m3u8/HLGCq2h4ihY.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/mult-div-by-10-dec-pre-alg/dividing-decimals-2-1/", "duration": 111, "id": "HLGCq2h4ihY", "title": "Dividing a decimal by a power of 10: shortcut", "format": "mp4", "description": "Holy cow! A shortcut? Yep. For each ten you multiply or divide by, just shift that decimal to the right or left. Watch this and be amazed.", "slug": "dividing-decimals-2-1", "kind": "Video", "video_id": "HLGCq2h4ihY", "keywords": "U03_L2_T2_we4.1, Dividing, Decimals, 2.1, CC_5_NBT_7, CC_6_NS_3", "youtube_id": "HLGCq2h4ihY", "readable_id": "dividing-decimals-2-1"}, "0zExhHh7_Ic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0zExhHh7_Ic.mp4/0zExhHh7_Ic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0zExhHh7_Ic.mp4/0zExhHh7_Ic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0zExhHh7_Ic.m3u8/0zExhHh7_Ic.m3u8"}, "duration": 259, "id": "0zExhHh7_Ic", "title": "Slope of a secant line example 1", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/secant-line-slope-tangent/slope-of-a-secant-line/", "slug": "slope-of-a-secant-line", "kind": "Video", "video_id": "0zExhHh7_Ic", "keywords": "", "youtube_id": "0zExhHh7_Ic", "readable_id": "slope-of-a-secant-line"}, "qBkj-AYYg7w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qBkj-AYYg7w.mp4/qBkj-AYYg7w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qBkj-AYYg7w.mp4/qBkj-AYYg7w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qBkj-AYYg7w.m3u8/qBkj-AYYg7w.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/ad-hominem/", "duration": 492, "id": "qBkj-AYYg7w", "title": "Fallacies: Ad hominem", "format": "mp4", "description": "In this video, Paul Henne describes the ad hominem fallacy, which is an informal fallacy that arises when someone attacks the person making the argument rather than their argument. He also describes the four subtypes of this fallacy.\n\nSpeaker: Paul Henne", "slug": "ad-hominem", "kind": "Video", "video_id": "qBkj-AYYg7w", "keywords": "", "youtube_id": "qBkj-AYYg7w", "readable_id": "ad-hominem"}, "WqsJNtBEKtg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WqsJNtBEKtg.mp4/WqsJNtBEKtg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WqsJNtBEKtg.mp4/WqsJNtBEKtg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WqsJNtBEKtg.m3u8/WqsJNtBEKtg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/using-the-nernst-equation/", "duration": 690, "id": "WqsJNtBEKtg", "title": "Using the Nernst equation", "format": "mp4", "description": "", "slug": "using-the-nernst-equation", "kind": "Video", "video_id": "WqsJNtBEKtg", "keywords": "", "youtube_id": "WqsJNtBEKtg", "readable_id": "using-the-nernst-equation"}, "roap32sTgPk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/roap32sTgPk.mp4/roap32sTgPk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/roap32sTgPk.mp4/roap32sTgPk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/roap32sTgPk.m3u8/roap32sTgPk.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-10-moral-hazard/", "duration": 727, "id": "roap32sTgPk", "title": "Bailout 10: Moral hazard", "format": "mp4", "description": "Alternate plans and moral hazard.", "slug": "bailout-10-moral-hazard", "kind": "Video", "video_id": "roap32sTgPk", "keywords": "fed, bailout, paulsen, bernanke, credit, crunch, lehman, aig", "youtube_id": "roap32sTgPk", "readable_id": "bailout-10-moral-hazard"}, "gfVY7cW7VLQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gfVY7cW7VLQ.mp4/gfVY7cW7VLQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gfVY7cW7VLQ.mp4/gfVY7cW7VLQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gfVY7cW7VLQ.m3u8/gfVY7cW7VLQ.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/lin-alg-example-using-orthogonal-change-of-basis-matrix-to-find-transformation-matrix/", "duration": 1624, "id": "gfVY7cW7VLQ", "title": "Example using orthogonal change-of-basis matrix to find transformation matrix", "format": "mp4", "description": "Example using orthogonal change-of-basis matrix to find transformation matrix", "slug": "lin-alg-example-using-orthogonal-change-of-basis-matrix-to-find-transformation-matrix", "kind": "Video", "video_id": "gfVY7cW7VLQ", "keywords": "orthogonal, matrix", "youtube_id": "gfVY7cW7VLQ", "readable_id": "lin-alg-example-using-orthogonal-change-of-basis-matrix-to-find-transformation-matrix"}, "O4Qnsubo2tg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O4Qnsubo2tg.mp4/O4Qnsubo2tg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O4Qnsubo2tg.mp4/O4Qnsubo2tg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O4Qnsubo2tg.m3u8/O4Qnsubo2tg.m3u8"}, "path": "khan/math/precalculus/prob_comb/independent_events_precalc/events-and-outcomes-2/", "duration": 315, "id": "O4Qnsubo2tg", "title": "Die rolling probability", "format": "mp4", "description": "We're thinking about the probability of rolling doubles on a pair of dice. Let's create a grid of all possible outcomes.", "slug": "events-and-outcomes-2", "kind": "Video", "video_id": "O4Qnsubo2tg", "keywords": "U12_L2_T1_we2, Events, and, Outcomes, CC_7_SP_5, CC_7_SP_6, CC_7_SP_7, CC_7_SP_7_a, CC_7_SP_7_b, CC_7_SP_8, CC_7_SP_8_a, CC_7_SP_8_b", "youtube_id": "O4Qnsubo2tg", "readable_id": "events-and-outcomes-2"}, "ntUjJENYiLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ntUjJENYiLw.mp4/ntUjJENYiLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ntUjJENYiLw.mp4/ntUjJENYiLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ntUjJENYiLw.m3u8/ntUjJENYiLw.m3u8"}, "duration": 675, "id": "ntUjJENYiLw", "title": "Archdukes, Cynicism, and World War I", "format": "mp4", "description": "In which John Green teaches you about the war that was supposed to end all wars. Instead, it solved nothing and set the stage for the world to be back at war just a couple of decades later. As an added bonus, World War I changed the way people look at the world, and normalized cynicism and irony. John will teach you how the assassination of an Austrian Archduke kicked off a new kind of war that involved more nations and more people than any war that came before. New technology like machine guns, airplanes, tanks, and poison gas made the killing more efficient than ever. Trench warfare and modern weapons led to battles in which tens of thousands of soldiers were killed in a day, with no ground gained for either side. World War I washed away the last vestiges of 19th century Romanticism and paved the way for the 20th century modernism that we all know and find to be cold and off-putting. While there may not be much upside to WWI, at least it inspired George M. Cohan to write the awesome song, \"Over There.\"", "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-36/", "slug": "crash-course-world-history-36", "kind": "Video", "video_id": "ntUjJENYiLw", "keywords": "crash course", "youtube_id": "ntUjJENYiLw", "readable_id": "crash-course-world-history-36"}, "cbz01PPQ5ow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cbz01PPQ5ow.mp4/cbz01PPQ5ow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cbz01PPQ5ow.mp4/cbz01PPQ5ow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cbz01PPQ5ow.m3u8/cbz01PPQ5ow.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-immigration-obstacles/", "duration": 58, "id": "cbz01PPQ5ow", "title": "Student story: Overcoming immigration obstacles to college", "format": "mp4", "description": "", "slug": "ss-immigration-obstacles", "kind": "Video", "video_id": "cbz01PPQ5ow", "keywords": "", "youtube_id": "cbz01PPQ5ow", "readable_id": "ss-immigration-obstacles"}, "xMj3jzFDZ38": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xMj3jzFDZ38.mp4/xMj3jzFDZ38.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xMj3jzFDZ38.mp4/xMj3jzFDZ38.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xMj3jzFDZ38.m3u8/xMj3jzFDZ38.m3u8"}, "path": "khan/computing/computer-science/cryptography/random-algorithms-probability/fermat-primality-test-prime-adventure-part-10/", "duration": 429, "id": "xMj3jzFDZ38", "title": "Fermat primality test", "format": "mp4", "description": "A quick outline of how & why it works.", "slug": "fermat-primality-test-prime-adventure-part-10", "kind": "Video", "video_id": "xMj3jzFDZ38", "keywords": "primes", "youtube_id": "xMj3jzFDZ38", "readable_id": "fermat-primality-test-prime-adventure-part-10"}, "coDfeoi2zcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/coDfeoi2zcQ.mp4/coDfeoi2zcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/coDfeoi2zcQ.mp4/coDfeoi2zcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/coDfeoi2zcQ.m3u8/coDfeoi2zcQ.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/vector-basic/subtracting-vectors-exercise-example/", "duration": 104, "id": "coDfeoi2zcQ", "title": "Subtracting vectors exercise example", "format": "mp4", "description": "", "slug": "subtracting-vectors-exercise-example", "kind": "Video", "video_id": "coDfeoi2zcQ", "keywords": "", "youtube_id": "coDfeoi2zcQ", "readable_id": "subtracting-vectors-exercise-example"}, "CuGg-Tf8lPI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CuGg-Tf8lPI.mp4/CuGg-Tf8lPI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CuGg-Tf8lPI.mp4/CuGg-Tf8lPI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CuGg-Tf8lPI.m3u8/CuGg-Tf8lPI.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/oxidation-reduction-review/comparing-formal-charges-to-oxidation-states/", "duration": 346, "id": "CuGg-Tf8lPI", "title": "Comparing formal charges to oxidation states", "format": "mp4", "description": "How formal charges and oxidation states are both ways of counting electrons", "slug": "comparing-formal-charges-to-oxidation-states", "kind": "Video", "video_id": "CuGg-Tf8lPI", "keywords": "", "youtube_id": "CuGg-Tf8lPI", "readable_id": "comparing-formal-charges-to-oxidation-states"}, "N9VIsauE0RA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N9VIsauE0RA.mp4/N9VIsauE0RA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N9VIsauE0RA.mp4/N9VIsauE0RA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N9VIsauE0RA.m3u8/N9VIsauE0RA.m3u8"}, "duration": 452, "id": "N9VIsauE0RA", "title": "Investment and consumption", "format": "mp4", "description": "Difference between every day and economic notions of investment and consumption", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/gdp-components-tutorial/investment-and-consumption/", "slug": "investment-and-consumption", "kind": "Video", "video_id": "N9VIsauE0RA", "keywords": "macroeconomics", "youtube_id": "N9VIsauE0RA", "readable_id": "investment-and-consumption"}, "CHfU9EDwOwU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CHfU9EDwOwU.mp4/CHfU9EDwOwU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CHfU9EDwOwU.mp4/CHfU9EDwOwU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CHfU9EDwOwU.m3u8/CHfU9EDwOwU.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/yuan-dynasty/buddha-of-medicine-bhaishajyaguru-yaoshi-fo-c-1319/", "duration": 337, "id": "CHfU9EDwOwU", "title": "Buddha of Medicine Bhaishajyaguru (Yaoshi fo)", "format": "mp4", "description": "Buddha of Medicine Bhaishajyaguru (Yaoshi fo), c. 1319, Yuan dynasty, water-based pigments on clay mixed with straw, 24 feet, 8 inches x 49 feet 7 inches / 751.8 cm x 1511.3 cm (Metropolitan Museum of Art, New York). In the Google Art Project: http://www.googleartproject.com/collection/the-metropolitan-museum-of-art/artwork/buddha-of-medicine-bhaishajyaguru-yaoshi-fo-unknown/650012/#", "slug": "buddha-of-medicine-bhaishajyaguru-yaoshi-fo-c-1319", "kind": "Video", "video_id": "CHfU9EDwOwU", "keywords": "Buddha, Medicine, Bhaishajyaguru, Yaoshi fo, 1319, Yuan dynasty, Metropolitan Museum of Art, New York, Buddhism, China, Chinese, art, sculpture, Bodhisattva, Wall painting, art history, painting, Khan Academy, Google Art Project, Smarthistory, OER", "youtube_id": "CHfU9EDwOwU", "readable_id": "buddha-of-medicine-bhaishajyaguru-yaoshi-fo-c-1319"}, "oOkNS-vvnhQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oOkNS-vvnhQ.mp4/oOkNS-vvnhQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oOkNS-vvnhQ.mp4/oOkNS-vvnhQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oOkNS-vvnhQ.m3u8/oOkNS-vvnhQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-emphysema/dlco/", "duration": 603, "id": "oOkNS-vvnhQ", "title": "Diffusing capacity of the lung for carbon monoxide (DLCO)", "format": "mp4", "description": "Diffusing capacity of the lungs for carbon monoxide (DLCO) is a medical test that determines how much oxygen travels from the alveoli of the lungs to the blood stream. Learn what DLCO is, how DLCO a good measure of lung disease severity, and why we use carbon monoxide instead of oxygen or carbon dioxide.", "slug": "dlco", "kind": "Video", "video_id": "oOkNS-vvnhQ", "keywords": "", "youtube_id": "oOkNS-vvnhQ", "readable_id": "dlco"}, "sz_HYdpOuhY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sz_HYdpOuhY.mp4/sz_HYdpOuhY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sz_HYdpOuhY.mp4/sz_HYdpOuhY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sz_HYdpOuhY.m3u8/sz_HYdpOuhY.m3u8"}, "path": "khan/humanities/art-oceania/melanesia/playing-from-memory/", "duration": 143, "id": "sz_HYdpOuhY", "title": "\"Playing from Memory\" with Eric Kjellgren", "format": "mp4", "description": "Met curator Eric Kjellgren on communication in Slit Gong (Atingting kon) by the Tin Mweleun peoples of Ambrym Island in Vanuatu.\n\nThe towering slit gongs of northern Vanuatu are among the largest musical instruments in the world. Found primarily on Ambrym, Malekula, and neighboring islands, they are carved from the trunks of breadfruit trees, which are also an important food source. In each village, a number of gongs, comprising a sort of informal orchestra, stand on the village dancing ground. Gong orchestras are played at major social and religious events such as initiations, funerals, and dances. When playing, the musician stands in front of the gong and strikes the lip of the slit with a clublike wooden beater. As the gong ensemble is played, rhythms of immense variety and complexity can be produced by the carefully coordinated actions of multiple drummers.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\u00a0\n", "slug": "playing-from-memory", "kind": "Video", "video_id": "sz_HYdpOuhY", "keywords": "community, memory, music, musical instrument, wood, Australia & Oceania", "youtube_id": "sz_HYdpOuhY", "readable_id": "playing-from-memory"}, "jG7vhMMXagQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jG7vhMMXagQ.mp4/jG7vhMMXagQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jG7vhMMXagQ.mp4/jG7vhMMXagQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jG7vhMMXagQ.m3u8/jG7vhMMXagQ.m3u8"}, "path": "khan/math/recreational-math/vi-hart/pi-tau/pi-is-still-wrong/", "duration": 317, "id": "jG7vhMMXagQ", "title": "Pi is (still) wrong.", "format": "mp4", "description": "Please excuse the simple math and spelling errors. You shouldn't believe anything I say without double-checking even at the best of times.\n\nGo here: http://tauday.com/\nand here: http://www.math.utah.edu/~palais/pi.html\n\nMe: http://vihart.com", "slug": "pi-is-still-wrong", "kind": "Video", "video_id": "jG7vhMMXagQ", "keywords": "pi, tau, pie, pi day, trigonometry, trig, math, mathematics, Magritte, charlie sheen", "youtube_id": "jG7vhMMXagQ", "readable_id": "pi-is-still-wrong"}, "ZFt_v7Asy1s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZFt_v7Asy1s.mp4/ZFt_v7Asy1s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZFt_v7Asy1s.mp4/ZFt_v7Asy1s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZFt_v7Asy1s.m3u8/ZFt_v7Asy1s.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-7/", "duration": 133, "id": "ZFt_v7Asy1s", "title": "7 Exponential equation with different bases", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-7", "kind": "Video", "video_id": "ZFt_v7Asy1s", "keywords": "", "youtube_id": "ZFt_v7Asy1s", "readable_id": "sat-getting-ready-2-7"}, "wfY2vx3P0cE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wfY2vx3P0cE.mp4/wfY2vx3P0cE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wfY2vx3P0cE.mp4/wfY2vx3P0cE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wfY2vx3P0cE.m3u8/wfY2vx3P0cE.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/warby-parker/warby-parker-3/", "duration": 177, "id": "wfY2vx3P0cE", "title": "Starting and staying in business with friends", "format": "mp4", "description": "", "slug": "warby-parker-3", "kind": "Video", "video_id": "wfY2vx3P0cE", "keywords": "", "youtube_id": "wfY2vx3P0cE", "readable_id": "warby-parker-3"}, "vFctYRhK2M0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vFctYRhK2M0.mp4/vFctYRhK2M0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vFctYRhK2M0.mp4/vFctYRhK2M0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vFctYRhK2M0.m3u8/vFctYRhK2M0.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/null-space-3-relation-to-linear-independence/", "duration": 695, "id": "vFctYRhK2M0", "title": "Null space 3: Relation to linear independence", "format": "mp4", "description": "Understanding how the null space of a matrix relates to the linear independence of its column vectors", "slug": "null-space-3-relation-to-linear-independence", "kind": "Video", "video_id": "vFctYRhK2M0", "keywords": "nullspace, null, space, subspace, matrix, vector", "youtube_id": "vFctYRhK2M0", "readable_id": "null-space-3-relation-to-linear-independence"}, "gR8-vRg6Yp0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gR8-vRg6Yp0.mp4/gR8-vRg6Yp0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gR8-vRg6Yp0.mp4/gR8-vRg6Yp0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gR8-vRg6Yp0.m3u8/gR8-vRg6Yp0.m3u8"}, "duration": 439, "id": "gR8-vRg6Yp0", "title": "Structure in exponential expression", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/advanced-structure-in-expression/structure-in-exponential-expression/", "slug": "structure-in-exponential-expression", "kind": "Video", "video_id": "gR8-vRg6Yp0", "keywords": "", "youtube_id": "gR8-vRg6Yp0", "readable_id": "structure-in-exponential-expression"}, "SPGRkexI_cs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SPGRkexI_cs.mp4/SPGRkexI_cs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SPGRkexI_cs.mp4/SPGRkexI_cs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SPGRkexI_cs.m3u8/SPGRkexI_cs.m3u8"}, "duration": 1233, "id": "SPGRkexI_cs", "title": "The lungs and pulmonary system", "format": "mp4", "description": "The pulmonary system including the lungs, larynx, trachea, bronchi, bronchioles, alveoli and thoracic diaphragm", "path": "khan/science/health-and-medicine/respiratory-system/respiratory-system-introduction/the-lungs-and-pulmonary-system/", "slug": "the-lungs-and-pulmonary-system", "kind": "Video", "video_id": "SPGRkexI_cs", "keywords": "pulmonary, lungs, larynx, trachea, bronchi, bronchioles, alveoli, diaphragm", "youtube_id": "SPGRkexI_cs", "readable_id": "the-lungs-and-pulmonary-system"}, "zDsarxZhhvs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zDsarxZhhvs.mp4/zDsarxZhhvs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zDsarxZhhvs.mp4/zDsarxZhhvs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zDsarxZhhvs.m3u8/zDsarxZhhvs.m3u8"}, "duration": 833, "id": "zDsarxZhhvs", "title": "Conformations of butane", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/conformations-of-butane-1/", "slug": "conformations-of-butane-1", "kind": "Video", "video_id": "zDsarxZhhvs", "keywords": "", "youtube_id": "zDsarxZhhvs", "readable_id": "conformations-of-butane-1"}, "CAjiDkoZntI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CAjiDkoZntI.mp4/CAjiDkoZntI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CAjiDkoZntI.mp4/CAjiDkoZntI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CAjiDkoZntI.m3u8/CAjiDkoZntI.m3u8"}, "path": "khan/partner-content/big-history-project/life/what-is-life/bhp-minithresholds-of-life/", "duration": 348, "id": "CAjiDkoZntI", "title": "Mini Thresholds Of Life", "format": "mp4", "description": "Travel through time in a rowboat to consider some of the \"mini-thresholds\" in the development of life on Earth.", "slug": "bhp-minithresholds-of-life", "kind": "Video", "video_id": "CAjiDkoZntI", "keywords": "", "youtube_id": "CAjiDkoZntI", "readable_id": "bhp-minithresholds-of-life"}, "wgkRH5Uoavk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wgkRH5Uoavk.mp4/wgkRH5Uoavk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wgkRH5Uoavk.mp4/wgkRH5Uoavk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wgkRH5Uoavk.m3u8/wgkRH5Uoavk.m3u8"}, "duration": 687, "id": "wgkRH5Uoavk", "title": "Error or remainder of a Taylor polynomial approximation", "format": "mp4", "description": "Understanding the properties of the remainder or error function for an Nth degree Taylor approximation of a function", "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/error-or-remainder-of-a-taylor-polynomial-approximation/", "slug": "error-or-remainder-of-a-taylor-polynomial-approximation", "kind": "Video", "video_id": "wgkRH5Uoavk", "keywords": "taylor, BC, calculus, AP, advanced, placement", "youtube_id": "wgkRH5Uoavk", "readable_id": "error-or-remainder-of-a-taylor-polynomial-approximation"}, "NWJN80g1YVQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NWJN80g1YVQ.mp4/NWJN80g1YVQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NWJN80g1YVQ.mp4/NWJN80g1YVQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NWJN80g1YVQ.m3u8/NWJN80g1YVQ.m3u8"}, "duration": 329, "id": "NWJN80g1YVQ", "title": "Kurt Schwitters' archives and artists in captivity", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nFrom 1940 to 1941,\u00a0 during the second world war, thousands of German and Austrian nationals were interned in Great Britain. Among the many in the Hutchinson internment camp was German painter and sculptor Kurt Schwitters, who continued to work despite facing difficult conditions and a lack of materials. Bolstered by the strong artistic and intellectual community that developed within the camp, Schwitters continued to paint, sculpt, and craft using materials as diverse as old wood from a piano, vinyl, and even porridge! Artistic exhibitions and even a theatre were developed in the camp, and the imprisoned artistic community flourished. By chance, art historian Klaus Hinrichsen was interned with Schwitters, and as such he produced a careful series of documents that captured their time\u2013and Schwitters\u2019 work\u2013in the internment camp.\nBy a very lucky twist of fate, Schwitters was interned with not only a community of fellow artists but also a master archivist in the form of Hinrichsen, who made sure to preserve Schwitters\u2019 work and process. This fortuitous archive remains as a testament to what artists can produce even if in confinement. Can you think of any other artists that produced great work in the face of difficulty?\n\nSee more of Kurt Schwitters' work in the Tate collection here.\n\n\n", "path": "schwitters-interned/", "slug": "schwitters-interned", "kind": "Video", "video_id": "NWJN80g1YVQ", "keywords": "Tate", "youtube_id": "NWJN80g1YVQ", "readable_id": "schwitters-interned"}, "fzF2AgL35qE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fzF2AgL35qE.mp4/fzF2AgL35qE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fzF2AgL35qE.mp4/fzF2AgL35qE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fzF2AgL35qE.m3u8/fzF2AgL35qE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-throat-conditions/what-is-a-tonsillectomy/", "duration": 473, "id": "fzF2AgL35qE", "title": "What is a tonsillectomy?", "format": "mp4", "description": "", "slug": "what-is-a-tonsillectomy", "kind": "Video", "video_id": "fzF2AgL35qE", "keywords": "", "youtube_id": "fzF2AgL35qE", "readable_id": "what-is-a-tonsillectomy"}, "7XaftdE_h60": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7XaftdE_h60.mp4/7XaftdE_h60.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7XaftdE_h60.mp4/7XaftdE_h60.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7XaftdE_h60.m3u8/7XaftdE_h60.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/flow-through-the-heart/", "duration": 471, "id": "7XaftdE_h60", "title": "Flow through the heart", "format": "mp4", "description": "Learn how blood flows through the heart, and understand the difference between systemic and pulmonary blood flow. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "flow-through-the-heart", "kind": "Video", "video_id": "7XaftdE_h60", "keywords": "", "youtube_id": "7XaftdE_h60", "readable_id": "flow-through-the-heart"}, "nENvd7Zj1Qs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nENvd7Zj1Qs.mp4/nENvd7Zj1Qs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nENvd7Zj1Qs.mp4/nENvd7Zj1Qs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nENvd7Zj1Qs.m3u8/nENvd7Zj1Qs.m3u8"}, "path": "khan/test-prep/ap-art-history/west-and-central-asia/bamiyan-ten-years-on/", "duration": 68, "id": "nENvd7Zj1Qs", "title": "Bamiyan: Ten years on", "format": "mp4", "description": "", "slug": "bamiyan-ten-years-on", "kind": "Video", "video_id": "nENvd7Zj1Qs", "keywords": "", "youtube_id": "nENvd7Zj1Qs", "readable_id": "bamiyan-ten-years-on"}, "LFA_qmGuY2A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LFA_qmGuY2A.mp4/LFA_qmGuY2A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LFA_qmGuY2A.mp4/LFA_qmGuY2A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LFA_qmGuY2A.m3u8/LFA_qmGuY2A.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/giorgione-the-tempest/", "duration": 355, "id": "LFA_qmGuY2A", "title": "Giorgione, The Tempest", "format": "mp4", "description": "Giorgione, The Tempest, c. 1506-8 (Accademia, Venice) Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "giorgione-the-tempest", "kind": "Video", "video_id": "LFA_qmGuY2A", "keywords": "Giorgione", "youtube_id": "LFA_qmGuY2A", "readable_id": "giorgione-the-tempest"}, "gqSpWPONekE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gqSpWPONekE.mp4/gqSpWPONekE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gqSpWPONekE.mp4/gqSpWPONekE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gqSpWPONekE.m3u8/gqSpWPONekE.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/vincent-van-gogh-self-portrait-dedicated-to-paul-gauguin-1888/", "duration": 169, "id": "gqSpWPONekE", "title": "Van Gogh, Self-Portrait Dedicated to Paul Gauguin", "format": "mp4", "description": "Vincent van Gogh, Self-Portrait Dedicated to Paul Gauguin, 1888, oil on canvas, 24 x 19-11/16 inches (Fogg, Harvard Art Museums) Speakers: Dr. Beth Harris and Dr. Steven Zucker http://smarthistory.org/van-gogh-self-portrait-dedicated-to-paul-gauguin.html", "slug": "vincent-van-gogh-self-portrait-dedicated-to-paul-gauguin-1888", "kind": "Video", "video_id": "gqSpWPONekE", "keywords": "Vincent van Gogh, Van Gogh, Paul Gauguin, Gauguin, Post-Impressionism, Self-Portrait, Fogg, Subjectivity", "youtube_id": "gqSpWPONekE", "readable_id": "vincent-van-gogh-self-portrait-dedicated-to-paul-gauguin-1888"}, "UKM8BnpZr94": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UKM8BnpZr94.mp4/UKM8BnpZr94.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UKM8BnpZr94.mp4/UKM8BnpZr94.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UKM8BnpZr94.m3u8/UKM8BnpZr94.m3u8"}, "path": "khan/math/geometry/transformations/rigid-transformations-intro/using-rotation-widget/", "duration": 85, "id": "UKM8BnpZr94", "title": "Using rotation widget", "format": "mp4", "description": "Using rotation widget", "slug": "using-rotation-widget", "kind": "Video", "video_id": "UKM8BnpZr94", "keywords": "", "youtube_id": "UKM8BnpZr94", "readable_id": "using-rotation-widget"}, "ukPjc3Oyad4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ukPjc3Oyad4.mp4/ukPjc3Oyad4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ukPjc3Oyad4.mp4/ukPjc3Oyad4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ukPjc3Oyad4.m3u8/ukPjc3Oyad4.m3u8"}, "duration": 417, "id": "ukPjc3Oyad4", "title": "Area of triangle in grid", "format": "mp4", "description": "Area of triangle in grid", "path": "area-of-triangle-in-grid/", "slug": "area-of-triangle-in-grid", "kind": "Video", "video_id": "ukPjc3Oyad4", "keywords": "", "youtube_id": "ukPjc3Oyad4", "readable_id": "area-of-triangle-in-grid"}, "NZlJJ4a40Ww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NZlJJ4a40Ww.mp4/NZlJJ4a40Ww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NZlJJ4a40Ww.mp4/NZlJJ4a40Ww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NZlJJ4a40Ww.m3u8/NZlJJ4a40Ww.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pulmonary-hypertension/pulmonary-hypertension-diagnosis-swan-ganz-catheterization/", "duration": 176, "id": "NZlJJ4a40Ww", "title": "Pulmonary hypertension diagnosis Swan Ganz catheterization", "format": "mp4", "description": "", "slug": "pulmonary-hypertension-diagnosis-swan-ganz-catheterization", "kind": "Video", "video_id": "NZlJJ4a40Ww", "keywords": "", "youtube_id": "NZlJJ4a40Ww", "readable_id": "pulmonary-hypertension-diagnosis-swan-ganz-catheterization"}, "S34NM0Po0eA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S34NM0Po0eA.mp4/S34NM0Po0eA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S34NM0Po0eA.mp4/S34NM0Po0eA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S34NM0Po0eA.m3u8/S34NM0Po0eA.m3u8"}, "duration": 354, "id": "S34NM0Po0eA", "title": "Fractional exponents with numerators other than 1", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/fractional-exponents-with-numerators-other-than-1/", "slug": "fractional-exponents-with-numerators-other-than-1", "kind": "Video", "video_id": "S34NM0Po0eA", "keywords": "", "youtube_id": "S34NM0Po0eA", "readable_id": "fractional-exponents-with-numerators-other-than-1"}, "6EdsBabSZ4g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6EdsBabSZ4g.mp4/6EdsBabSZ4g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6EdsBabSZ4g.mp4/6EdsBabSZ4g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6EdsBabSZ4g.m3u8/6EdsBabSZ4g.m3u8"}, "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/plate-tectonics-evidence-of-plate-movement/", "duration": 798, "id": "6EdsBabSZ4g", "title": "Plate tectonics: Evidence of plate movement", "format": "mp4", "description": "Plate Tectonics -- Evidence of plate movement", "slug": "plate-tectonics-evidence-of-plate-movement", "kind": "Video", "video_id": "6EdsBabSZ4g", "keywords": "Plate, Tectonics, Evidence, of, movement, magnetic, field, marquee", "youtube_id": "6EdsBabSZ4g", "readable_id": "plate-tectonics-evidence-of-plate-movement"}, "g6nGcnVB8BM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g6nGcnVB8BM.mp4/g6nGcnVB8BM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g6nGcnVB8BM.mp4/g6nGcnVB8BM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g6nGcnVB8BM.m3u8/g6nGcnVB8BM.m3u8"}, "duration": 262, "id": "g6nGcnVB8BM", "title": "Solving radical equations 3", "format": "mp4", "description": "Solving Radical Equations 3", "path": "khan/math/algebra/exponent-equations/radical_equations/solving-radical-equations-3/", "slug": "solving-radical-equations-3", "kind": "Video", "video_id": "g6nGcnVB8BM", "keywords": "U07_L3_T2_we3, Solving, Radical, Equations, CC_8_EE_2, CC_39336_A-REI_2", "youtube_id": "g6nGcnVB8BM", "readable_id": "solving-radical-equations-3"}, "BHkw9_GWPJA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BHkw9_GWPJA.mp4/BHkw9_GWPJA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BHkw9_GWPJA.mp4/BHkw9_GWPJA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BHkw9_GWPJA.m3u8/BHkw9_GWPJA.m3u8"}, "duration": 392, "id": "BHkw9_GWPJA", "title": "Signal detection theory - part 1", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/signal-detection-theory-part-1/", "slug": "signal-detection-theory-part-1", "kind": "Video", "video_id": "BHkw9_GWPJA", "keywords": "", "youtube_id": "BHkw9_GWPJA", "readable_id": "signal-detection-theory-part-1"}, "eRImmzuExyg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eRImmzuExyg.mp4/eRImmzuExyg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eRImmzuExyg.mp4/eRImmzuExyg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eRImmzuExyg.m3u8/eRImmzuExyg.m3u8"}, "duration": 640, "id": "eRImmzuExyg", "title": "Wealth destruction 2", "format": "mp4", "description": "How bubbles destroy wealth.", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/wealth-destruction-2/", "slug": "wealth-destruction-2", "kind": "Video", "video_id": "eRImmzuExyg", "keywords": "bailout, paulson, credit, crisis, bernanke, bubble, housing", "youtube_id": "eRImmzuExyg", "readable_id": "wealth-destruction-2"}, "XkD1RPDYWK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XkD1RPDYWK8.mp4/XkD1RPDYWK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XkD1RPDYWK8.mp4/XkD1RPDYWK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XkD1RPDYWK8.m3u8/XkD1RPDYWK8.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/welcome-to-big-history/bhp-big-bang-crashcourse/", "duration": 836, "id": "XkD1RPDYWK8", "title": "Crash Course Big History: The Big Bang", "format": "mp4", "description": "Crash Course is a fast, funny, irreverent look at history. In this episode, brothers John and Hank Green gives us their take on what makes Big History so darn important.\u00a0", "slug": "bhp-big-bang-crashcourse", "kind": "Video", "video_id": "XkD1RPDYWK8", "keywords": "", "youtube_id": "XkD1RPDYWK8", "readable_id": "bhp-big-bang-crashcourse"}, "3rkDpqp-mw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3rkDpqp-mw0.mp4/3rkDpqp-mw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3rkDpqp-mw0.mp4/3rkDpqp-mw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3rkDpqp-mw0.m3u8/3rkDpqp-mw0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/solubility-equilibria-mcat/solubility-from-the-solubility-product-constant/", "duration": 568, "id": "3rkDpqp-mw0", "title": "Solubility from the solubility product constant", "format": "mp4", "description": "", "slug": "solubility-from-the-solubility-product-constant", "kind": "Video", "video_id": "3rkDpqp-mw0", "keywords": "", "youtube_id": "3rkDpqp-mw0", "readable_id": "solubility-from-the-solubility-product-constant"}, "9JX2s90_RNQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9JX2s90_RNQ.mp4/9JX2s90_RNQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9JX2s90_RNQ.mp4/9JX2s90_RNQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9JX2s90_RNQ.m3u8/9JX2s90_RNQ.m3u8"}, "duration": 687, "id": "9JX2s90_RNQ", "title": "Improper integral with two infinite bounds", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/improper-integrals-tutorial/improper-integral-with-two-infinite-bounds/", "slug": "improper-integral-with-two-infinite-bounds", "kind": "Video", "video_id": "9JX2s90_RNQ", "keywords": "", "youtube_id": "9JX2s90_RNQ", "readable_id": "improper-integral-with-two-infinite-bounds"}, "SEtkn9S-WHY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SEtkn9S-WHY.mp4/SEtkn9S-WHY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SEtkn9S-WHY.mp4/SEtkn9S-WHY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SEtkn9S-WHY.m3u8/SEtkn9S-WHY.m3u8"}, "duration": 675, "id": "SEtkn9S-WHY", "title": "GMAT: Math 27", "format": "mp4", "description": "138-142, pg. 171", "path": "khan/test-prep/gmat/problem-solving/gmat-math-27/", "slug": "gmat-math-27", "kind": "Video", "video_id": "SEtkn9S-WHY", "keywords": "gmat, math, problem, solving", "youtube_id": "SEtkn9S-WHY", "readable_id": "gmat-math-27"}, "BAFOOQxiwkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BAFOOQxiwkU.mp4/BAFOOQxiwkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BAFOOQxiwkU.mp4/BAFOOQxiwkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BAFOOQxiwkU.m3u8/BAFOOQxiwkU.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/evaluating-power-series-for-mystery-function/", "duration": 369, "id": "BAFOOQxiwkU", "title": "Evaluating power series for mystery function", "format": "mp4", "description": "", "slug": "evaluating-power-series-for-mystery-function", "kind": "Video", "video_id": "BAFOOQxiwkU", "keywords": "", "youtube_id": "BAFOOQxiwkU", "readable_id": "evaluating-power-series-for-mystery-function"}, "eK7Gp6AWnuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eK7Gp6AWnuY.mp4/eK7Gp6AWnuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eK7Gp6AWnuY.mp4/eK7Gp6AWnuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eK7Gp6AWnuY.m3u8/eK7Gp6AWnuY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/estrogen/", "duration": 438, "id": "eK7Gp6AWnuY", "title": "Estrogen", "format": "mp4", "description": "", "slug": "estrogen", "kind": "Video", "video_id": "eK7Gp6AWnuY", "keywords": "", "youtube_id": "eK7Gp6AWnuY", "readable_id": "estrogen"}, "ICQCUTiC0mI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ICQCUTiC0mI.mp4/ICQCUTiC0mI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ICQCUTiC0mI.mp4/ICQCUTiC0mI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ICQCUTiC0mI.m3u8/ICQCUTiC0mI.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/thinking-aloud/", "duration": 190, "id": "ICQCUTiC0mI", "title": "\"Thinking Aloud\" with Carmen Bambach", "format": "mp4", "description": "Met curator Carmen Bambach on the presence of genius in Michelangelo Buonarroti\u2019s Studies for the Libyan Sibyl (recto); Studies for the Libyan Sibyl and a small Sketch for a Seated Figure (verso).\n\nThis is the most magnificent drawing by Michelangelo in the United States. A male studio assistant posed for the anatomical study, which was preparatory for the Libyan Sibyl, one of the female seers frescoed on the ceiling of the Sistine Chapel (Vatican Palace) in 1508-12. In the fresco, the figure is clothed except for her powerful shoulders and arms, and has an elaborately braided coiffure. Michelangelo used the present sheet to explore the elements that were crucial in the elegant resolution of the figure's pose, especially the counterpoint twist of shoulders and hips and the manner of weight-bearing on her toe. Recent research shows that this sheet of studies was owned by the Buonarroti family soon after Michelangelo's death. The \"no. 21\" inscribed on the verso of the sheet (at lower center) fits precisely into a numerical sequence found on many other drawings by the artist that have this early Buonarroti family provenance.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "slug": "thinking-aloud", "kind": "Video", "video_id": "ICQCUTiC0mI", "keywords": "body, drawing, motion, paper, touch, writing, youth, Europe", "youtube_id": "ICQCUTiC0mI", "readable_id": "thinking-aloud"}, "XaqsqtWiJMw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XaqsqtWiJMw.mp4/XaqsqtWiJMw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XaqsqtWiJMw.mp4/XaqsqtWiJMw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XaqsqtWiJMw.m3u8/XaqsqtWiJMw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pleural-effusion/pleural-effusion-diagnosis-and-treatment/", "duration": 789, "id": "XaqsqtWiJMw", "title": "Pleural effusion diagnosis and treatment", "format": "mp4", "description": "How do we know a patient has a pleural effusion? Health professionals use x-rays, and computed tomography (CT scans) to look for extra fluid inside the body. Learn how pleural effusions are treated using techniques such as a thoracentesis, pleurodesis, and pleuroperitoneal shunts.", "slug": "pleural-effusion-diagnosis-and-treatment", "kind": "Video", "video_id": "XaqsqtWiJMw", "keywords": "", "youtube_id": "XaqsqtWiJMw", "readable_id": "pleural-effusion-diagnosis-and-treatment"}, "jH5qflAe3C8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jH5qflAe3C8.mp4/jH5qflAe3C8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jH5qflAe3C8.mp4/jH5qflAe3C8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jH5qflAe3C8.m3u8/jH5qflAe3C8.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/modeling-with-differential-equations/applying-newtons-law-of-cooling-to-warm-oatmeal/", "duration": 743, "id": "jH5qflAe3C8", "title": "Applying Newton's Law of Cooling to warm oatmeal", "format": "mp4", "description": "", "slug": "applying-newtons-law-of-cooling-to-warm-oatmeal", "kind": "Video", "video_id": "jH5qflAe3C8", "keywords": "", "youtube_id": "jH5qflAe3C8", "readable_id": "applying-newtons-law-of-cooling-to-warm-oatmeal"}, "1S4DtuMY88I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1S4DtuMY88I.mp4/1S4DtuMY88I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1S4DtuMY88I.mp4/1S4DtuMY88I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1S4DtuMY88I.m3u8/1S4DtuMY88I.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/standing-waves-in-tubes-part-2/", "duration": 597, "id": "1S4DtuMY88I", "title": "Standing waves in tubes (part 2)", "format": "mp4", "description": "", "slug": "standing-waves-in-tubes-part-2", "kind": "Video", "video_id": "1S4DtuMY88I", "keywords": "", "youtube_id": "1S4DtuMY88I", "readable_id": "standing-waves-in-tubes-part-2"}, "HGsg7OZiHhE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HGsg7OZiHhE.mp4/HGsg7OZiHhE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HGsg7OZiHhE.mp4/HGsg7OZiHhE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HGsg7OZiHhE.m3u8/HGsg7OZiHhE.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2012/khan-dl-week-2-arshia/", "duration": 123, "id": "HGsg7OZiHhE", "title": "DLab: A student presents her Lego robot", "format": "mp4", "description": "", "slug": "khan-dl-week-2-arshia", "kind": "Video", "video_id": "HGsg7OZiHhE", "keywords": "", "youtube_id": "HGsg7OZiHhE", "readable_id": "khan-dl-week-2-arshia"}, "06z7Q8TWPyU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/06z7Q8TWPyU.mp4/06z7Q8TWPyU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/06z7Q8TWPyU.mp4/06z7Q8TWPyU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/06z7Q8TWPyU.m3u8/06z7Q8TWPyU.m3u8"}, "duration": 615, "id": "06z7Q8TWPyU", "title": "Cosmic background radiation 2", "format": "mp4", "description": "Cosmic Background Radiation 2 - Redshift of the Cosmic Background Radiation", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/cosmic-background-radiation-2/", "slug": "cosmic-background-radiation-2", "kind": "Video", "video_id": "06z7Q8TWPyU", "keywords": "Cosmic, Background, Radiation, Microwave, redshift, big, bang", "youtube_id": "06z7Q8TWPyU", "readable_id": "cosmic-background-radiation-2"}, "LHnHXS51J4E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LHnHXS51J4E.mp4/LHnHXS51J4E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LHnHXS51J4E.mp4/LHnHXS51J4E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LHnHXS51J4E.m3u8/LHnHXS51J4E.m3u8"}, "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/instincts-arousal-needs-drives-drive-reduction-and-cognitive-theories/", "duration": 237, "id": "LHnHXS51J4E", "title": "Instincts, Arousal, Needs, Drives: Drive-Reduction and Cognitive Theories", "format": "mp4", "description": "", "slug": "instincts-arousal-needs-drives-drive-reduction-and-cognitive-theories", "kind": "Video", "video_id": "LHnHXS51J4E", "keywords": "", "youtube_id": "LHnHXS51J4E", "readable_id": "instincts-arousal-needs-drives-drive-reduction-and-cognitive-theories"}, "OFBI_rNDZE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OFBI_rNDZE0.mp4/OFBI_rNDZE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OFBI_rNDZE0.mp4/OFBI_rNDZE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OFBI_rNDZE0.m3u8/OFBI_rNDZE0.m3u8"}, "duration": 173, "id": "OFBI_rNDZE0", "title": "Scaling up a unit vector", "format": "mp4", "description": "", "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/scaling-unit-vector/", "slug": "scaling-unit-vector", "kind": "Video", "video_id": "OFBI_rNDZE0", "keywords": "", "youtube_id": "OFBI_rNDZE0", "readable_id": "scaling-unit-vector"}, "cczABrLd_uA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cczABrLd_uA.mp4/cczABrLd_uA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cczABrLd_uA.mp4/cczABrLd_uA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cczABrLd_uA.m3u8/cczABrLd_uA.m3u8"}, "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolies-tutorial/monopolist-optimizing-price-part-1-total-revenue/", "duration": 431, "id": "cczABrLd_uA", "title": "Monopolist optimizing price: Total revenue.", "format": "mp4", "description": "Starting to think about how a monopolist would rationally optimize profits", "slug": "monopolist-optimizing-price-part-1-total-revenue", "kind": "Video", "video_id": "cczABrLd_uA", "keywords": "microeconomics", "youtube_id": "cczABrLd_uA", "readable_id": "monopolist-optimizing-price-part-1-total-revenue"}, "-rke7RmxwfY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-rke7RmxwfY.mp4/-rke7RmxwfY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-rke7RmxwfY.mp4/-rke7RmxwfY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-rke7RmxwfY.m3u8/-rke7RmxwfY.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/fauvism-matisse/conserving-henri-matisses-the-swimming-pool/", "duration": 422, "id": "-rke7RmxwfY", "title": "Conserving Henri Matisse's \"The Swimming Pool\"", "format": "mp4", "description": "Explore the process of conserving Matisse's The Swimming Pool, one of the artist's most beloved cut-out masterpieces and a centerpiece of the Henri Matisse: The Cut-Outs exhibition at MoMA.\u00a0Create your own cut-outs and collages and learn about Matisse's life in the online courses Modern Art: 1880-1945 and Experimenting with Collage.", "slug": "conserving-henri-matisses-the-swimming-pool", "kind": "Video", "video_id": "-rke7RmxwfY", "keywords": "Matisse", "youtube_id": "-rke7RmxwfY", "readable_id": "conserving-henri-matisses-the-swimming-pool"}, "X3bqQI7-sCg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X3bqQI7-sCg.mp4/X3bqQI7-sCg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X3bqQI7-sCg.mp4/X3bqQI7-sCg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X3bqQI7-sCg.m3u8/X3bqQI7-sCg.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/1941-axis-momentum-accelerates-in-ww2/", "duration": 732, "id": "X3bqQI7-sCg", "title": "1941 Axis momentum accelerates in WW2", "format": "mp4", "description": "In 1941, the Axis gains further momentum with control of most of Continential Europe. Hitler decides to break pact and invade Stalin's Soviet Union. United States enters World War II after Japanese attack on Pearl Harbor.", "slug": "1941-axis-momentum-accelerates-in-ww2", "kind": "Video", "video_id": "X3bqQI7-sCg", "keywords": "", "youtube_id": "X3bqQI7-sCg", "readable_id": "1941-axis-momentum-accelerates-in-ww2"}, "kpCJyQ2usJ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kpCJyQ2usJ4.mp4/kpCJyQ2usJ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kpCJyQ2usJ4.mp4/kpCJyQ2usJ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kpCJyQ2usJ4.m3u8/kpCJyQ2usJ4.m3u8"}, "duration": 607, "id": "kpCJyQ2usJ4", "title": "The beauty of algebra", "format": "mp4", "description": "Why the abstraction of mathematics is so fundamental", "path": "khan/math/algebra/introduction-to-algebra/overview_hist_alg/the-beauty-of-algebra/", "slug": "the-beauty-of-algebra", "kind": "Video", "video_id": "kpCJyQ2usJ4", "keywords": "algebra, why, applications, marquee", "youtube_id": "kpCJyQ2usJ4", "readable_id": "the-beauty-of-algebra"}, "co4cHIJJux4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/co4cHIJJux4.mp4/co4cHIJJux4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/co4cHIJJux4.mp4/co4cHIJJux4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/co4cHIJJux4.m3u8/co4cHIJJux4.m3u8"}, "duration": 473, "id": "co4cHIJJux4", "title": "How the Constitution deals with civil liberties and privacy in an age of technological change", "format": "mp4", "description": "The Constitution is the supreme law of the United States of America. \u00a0One of the most interesting question that American society and the U.S. Supreme Court is confronting today - how to translate an 18th century Constitution into the 21st century.\nJeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\n", "path": "how-the-constitution-deals-with-civil-liberties-and-privacy-in-an-age-of-technological-change/", "slug": "how-the-constitution-deals-with-civil-liberties-and-privacy-in-an-age-of-technological-change", "kind": "Video", "video_id": "co4cHIJJux4", "keywords": "", "youtube_id": "co4cHIJJux4", "readable_id": "how-the-constitution-deals-with-civil-liberties-and-privacy-in-an-age-of-technological-change"}, "-XRQovTI04Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-XRQovTI04Q.mp4/-XRQovTI04Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-XRQovTI04Q.mp4/-XRQovTI04Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-XRQovTI04Q.m3u8/-XRQovTI04Q.m3u8"}, "duration": 331, "id": "-XRQovTI04Q", "title": "Proving a sequence converges", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq-conv-diverg/proving-a-sequence-converges/", "slug": "proving-a-sequence-converges", "kind": "Video", "video_id": "-XRQovTI04Q", "keywords": "", "youtube_id": "-XRQovTI04Q", "readable_id": "proving-a-sequence-converges"}, "u1eGSL6J6Fo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u1eGSL6J6Fo.mp4/u1eGSL6J6Fo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u1eGSL6J6Fo.mp4/u1eGSL6J6Fo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u1eGSL6J6Fo.m3u8/u1eGSL6J6Fo.m3u8"}, "duration": 983, "id": "u1eGSL6J6Fo", "title": "sp3 hybridized orbitals and sigma bonds", "format": "mp4", "description": "sp3 Hybridized Orbitals and Sigma Bonds", "path": "khan/science/organic-chemistry/gen-chem-review/hybrid-orbitals-jay/sp3-hybridized-orbitals-and-sigma-bonds/", "slug": "sp3-hybridized-orbitals-and-sigma-bonds", "kind": "Video", "video_id": "u1eGSL6J6Fo", "keywords": "sp3, Hybridized, Orbitals, and, Sigma, Bonds", "youtube_id": "u1eGSL6J6Fo", "readable_id": "sp3-hybridized-orbitals-and-sigma-bonds"}, "agjG7kgixJs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/agjG7kgixJs.mp4/agjG7kgixJs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/agjG7kgixJs.mp4/agjG7kgixJs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/agjG7kgixJs.m3u8/agjG7kgixJs.m3u8"}, "duration": 527, "id": "agjG7kgixJs", "title": "The history of atomic chemistry", "format": "mp4", "description": "How did we get here? Well, in terms of Atomic Chemistry, Hank takes us on a tour of the folks that were part of the long chain of other folks who helped us get to these deeper understandings of the world. From Leucippus to Heisenberg to you - yes, YOU - the story of Atomic Chemistry is all wibbly-wobbly... and amazing.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem37-history-of-atomic-chemistry/", "slug": "chem37-history-of-atomic-chemistry", "kind": "Video", "video_id": "agjG7kgixJs", "keywords": "", "youtube_id": "agjG7kgixJs", "readable_id": "chem37-history-of-atomic-chemistry"}, "VtqrKxJmBn4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VtqrKxJmBn4.mp4/VtqrKxJmBn4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VtqrKxJmBn4.mp4/VtqrKxJmBn4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VtqrKxJmBn4.m3u8/VtqrKxJmBn4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cardiomyopathy/hypertrophic-cardiomyopathy-pathophysiology-and-diagnosis/", "duration": 793, "id": "VtqrKxJmBn4", "title": "Hypertrophic cardiomyopathy: Pathophysiology and diagnosis", "format": "mp4", "description": "", "slug": "hypertrophic-cardiomyopathy-pathophysiology-and-diagnosis", "kind": "Video", "video_id": "VtqrKxJmBn4", "keywords": "", "youtube_id": "VtqrKxJmBn4", "readable_id": "hypertrophic-cardiomyopathy-pathophysiology-and-diagnosis"}, "R1y2m2OB1x0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R1y2m2OB1x0.mp4/R1y2m2OB1x0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R1y2m2OB1x0.mp4/R1y2m2OB1x0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R1y2m2OB1x0.m3u8/R1y2m2OB1x0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-myocarditis-and-pericarditis/diagnosis-of-myocarditis-and-pericarditis-part-2/", "duration": 823, "id": "R1y2m2OB1x0", "title": "Diagnosis of myocarditis and pericarditis (part 2)", "format": "mp4", "description": "", "slug": "diagnosis-of-myocarditis-and-pericarditis-part-2", "kind": "Video", "video_id": "R1y2m2OB1x0", "keywords": "", "youtube_id": "R1y2m2OB1x0", "readable_id": "diagnosis-of-myocarditis-and-pericarditis-part-2"}, "d2cnQ5ahHgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d2cnQ5ahHgE.mp4/d2cnQ5ahHgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d2cnQ5ahHgE.mp4/d2cnQ5ahHgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d2cnQ5ahHgE.m3u8/d2cnQ5ahHgE.m3u8"}, "duration": 313, "id": "d2cnQ5ahHgE", "title": "Compound inequalities 2", "format": "mp4", "description": "Compound Inequalities 2", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/compund-inequalities-2/", "slug": "compund-inequalities-2", "kind": "Video", "video_id": "d2cnQ5ahHgE", "keywords": "u10_l3_t1_we2, Compund, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "d2cnQ5ahHgE", "readable_id": "compund-inequalities-2"}, "hAAIgNzBGg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hAAIgNzBGg0.mp4/hAAIgNzBGg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hAAIgNzBGg0.mp4/hAAIgNzBGg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hAAIgNzBGg0.m3u8/hAAIgNzBGg0.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-5b/", "duration": 498, "id": "hAAIgNzBGg0", "title": "2011 Calculus AB free response #5b", "format": "mp4", "description": "Using the second derivative to judge whether an approximation with the tangent line is an overestimate or underestimate", "slug": "2011-calculus-ab-free-response-5b", "kind": "Video", "video_id": "hAAIgNzBGg0", "keywords": "AP, Advanced, Placement, exam", "youtube_id": "hAAIgNzBGg0", "readable_id": "2011-calculus-ab-free-response-5b"}, "qG3HnRccrQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qG3HnRccrQU.mp4/qG3HnRccrQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qG3HnRccrQU.mp4/qG3HnRccrQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qG3HnRccrQU.m3u8/qG3HnRccrQU.m3u8"}, "duration": 550, "id": "qG3HnRccrQU", "title": "Sum of interior angles of a polygon", "format": "mp4", "description": "Showing a generalized way to find the sum of the interior angles of any polygon", "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/sum-of-interior-angles-of-a-polygon/", "slug": "sum-of-interior-angles-of-a-polygon", "kind": "Video", "video_id": "qG3HnRccrQU", "keywords": "Sum, of, Interior, Angles, Any, Polygon, t2", "youtube_id": "qG3HnRccrQU", "readable_id": "sum-of-interior-angles-of-a-polygon"}, "2xFXOEa-xCk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2xFXOEa-xCk.mp4/2xFXOEa-xCk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2xFXOEa-xCk.mp4/2xFXOEa-xCk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2xFXOEa-xCk.m3u8/2xFXOEa-xCk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/osteoarthritis-vs-rheumatoid-arthritis-treatments/", "duration": 456, "id": "2xFXOEa-xCk", "title": "Osteoarthritis vs rheumatoid arthritis treatments", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "osteoarthritis-vs-rheumatoid-arthritis-treatments", "kind": "Video", "video_id": "2xFXOEa-xCk", "keywords": "", "youtube_id": "2xFXOEa-xCk", "readable_id": "osteoarthritis-vs-rheumatoid-arthritis-treatments"}, "QsdWvHKKSlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QsdWvHKKSlE.mp4/QsdWvHKKSlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QsdWvHKKSlE.mp4/QsdWvHKKSlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QsdWvHKKSlE.m3u8/QsdWvHKKSlE.m3u8"}, "duration": 249, "id": "QsdWvHKKSlE", "title": "Poetry meets art: George the Poet inspired by Paul Graham", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nIn this film, spoken word performer George The Poet is drawn in by Paul Graham's\u00a0photograph of a woman\u00a0sitting lonely on a New York sidewalk. Listen as he delivers a moving original performance inspired by the photograph, telling a story of identity and empathy through the eyes of this unknown woman.", "path": "george-the-poet-inspired-by-paul-graham/", "slug": "george-the-poet-inspired-by-paul-graham", "kind": "Video", "video_id": "QsdWvHKKSlE", "keywords": "Tate", "youtube_id": "QsdWvHKKSlE", "readable_id": "george-the-poet-inspired-by-paul-graham"}, "CcUBNRLDgrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CcUBNRLDgrQ.mp4/CcUBNRLDgrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CcUBNRLDgrQ.mp4/CcUBNRLDgrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CcUBNRLDgrQ.m3u8/CcUBNRLDgrQ.m3u8"}, "path": "khan/college-admissions/making-high-school-count/standardized-tests/deciding-to-retake-act/", "duration": 108, "id": "CcUBNRLDgrQ", "title": "Deciding whether to retake the ACT", "format": "mp4", "description": "Official ACT Website", "slug": "deciding-to-retake-act", "kind": "Video", "video_id": "CcUBNRLDgrQ", "keywords": "", "youtube_id": "CcUBNRLDgrQ", "readable_id": "deciding-to-retake-act"}, "H4BstqvgBow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H4BstqvgBow.mp4/H4BstqvgBow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H4BstqvgBow.mp4/H4BstqvgBow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H4BstqvgBow.m3u8/H4BstqvgBow.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/decimal-to-binary/", "duration": 232, "id": "H4BstqvgBow", "title": "Converting from decimal to binary", "format": "mp4", "description": "", "slug": "decimal-to-binary", "kind": "Video", "video_id": "H4BstqvgBow", "keywords": "", "youtube_id": "H4BstqvgBow", "readable_id": "decimal-to-binary"}, "JaScdH47PYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JaScdH47PYg.mp4/JaScdH47PYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JaScdH47PYg.mp4/JaScdH47PYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JaScdH47PYg.m3u8/JaScdH47PYg.m3u8"}, "duration": 152, "id": "JaScdH47PYg", "title": "Identifying percent amount and base", "format": "mp4", "description": "Identifying Percent Amount and Base", "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/identifying-percent-amount-and-base/", "slug": "identifying-percent-amount-and-base", "kind": "Video", "video_id": "JaScdH47PYg", "keywords": "u5_l2_t1_we1, Identifying, Percent, Amount, and, Base, CC_6_RP_3_c", "youtube_id": "JaScdH47PYg", "readable_id": "identifying-percent-amount-and-base"}, "6bsu9w9iIQY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6bsu9w9iIQY.mp4/6bsu9w9iIQY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6bsu9w9iIQY.mp4/6bsu9w9iIQY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6bsu9w9iIQY.m3u8/6bsu9w9iIQY.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/batteries/electrolye-temperature-test/", "duration": 97, "id": "6bsu9w9iIQY", "title": "Electrolyte (temperature test)", "format": "mp4", "description": "Here we experiment with hot vs. cold vinegar as our electrolyte. Does the deflection in our galvanometer depend on temperature? Why?", "slug": "electrolye-temperature-test", "kind": "Video", "video_id": "6bsu9w9iIQY", "keywords": "electrolyte", "youtube_id": "6bsu9w9iIQY", "readable_id": "electrolye-temperature-test"}, "gAbadNuQEjI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gAbadNuQEjI.mp4/gAbadNuQEjI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gAbadNuQEjI.mp4/gAbadNuQEjI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gAbadNuQEjI.m3u8/gAbadNuQEjI.m3u8"}, "duration": 859, "id": "gAbadNuQEjI", "title": "Vector transformations", "format": "mp4", "description": "Introduction to the notion of vector transformations", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/vector-transformations/", "slug": "vector-transformations", "kind": "Video", "video_id": "gAbadNuQEjI", "keywords": "vector, transformations, linear, algebra", "youtube_id": "gAbadNuQEjI", "readable_id": "vector-transformations"}, "Yv94eGD7cUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yv94eGD7cUU.mp4/Yv94eGD7cUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yv94eGD7cUU.mp4/Yv94eGD7cUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yv94eGD7cUU.m3u8/Yv94eGD7cUU.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/amino-acids-and-proteins1/central-dogma-revisited/", "duration": 372, "id": "Yv94eGD7cUU", "title": "Central dogma - revisited", "format": "mp4", "description": "New discoveries have expanded on or even contradicted the original Central dogma of molecular biology as proposed by Watson and Crick. These discoveries include multiple alternate pathways of the molecules as well as different types of RNA that you'll need to know. By Tracy Kovach.", "slug": "central-dogma-revisited", "kind": "Video", "video_id": "Yv94eGD7cUU", "keywords": "", "youtube_id": "Yv94eGD7cUU", "readable_id": "central-dogma-revisited"}, "u6O0YHyarlI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u6O0YHyarlI.mp4/u6O0YHyarlI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u6O0YHyarlI.mp4/u6O0YHyarlI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u6O0YHyarlI.m3u8/u6O0YHyarlI.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-proof-by-contradiction/", "duration": 716, "id": "u6O0YHyarlI", "title": "CA Geometry: Proof by contradiction", "format": "mp4", "description": "4-6, proof by contradiction", "slug": "ca-geometry-proof-by-contradiction", "kind": "Video", "video_id": "u6O0YHyarlI", "keywords": "geometry, proof, by, contradiction", "youtube_id": "u6O0YHyarlI", "readable_id": "ca-geometry-proof-by-contradiction"}, "VjLEoo3hIoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VjLEoo3hIoM.mp4/VjLEoo3hIoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VjLEoo3hIoM.mp4/VjLEoo3hIoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VjLEoo3hIoM.m3u8/VjLEoo3hIoM.m3u8"}, "path": "khan/math/precalculus/prob_comb/dependent_events_precalc/introduction-to-dependent-probability/", "duration": 398, "id": "VjLEoo3hIoM", "title": "Dependent probability introduction", "format": "mp4", "description": "Let's get you started with a great explanation of dependent probability using a scenario involving a casino game.", "slug": "introduction-to-dependent-probability", "kind": "Video", "video_id": "VjLEoo3hIoM", "keywords": "dependent, replacement, probability, independent, events", "youtube_id": "VjLEoo3hIoM", "readable_id": "introduction-to-dependent-probability"}, "nMrJ6nbOQhQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nMrJ6nbOQhQ.mp4/nMrJ6nbOQhQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nMrJ6nbOQhQ.mp4/nMrJ6nbOQhQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nMrJ6nbOQhQ.m3u8/nMrJ6nbOQhQ.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/trig-and-u-substitution-together-part-1/", "duration": 535, "id": "nMrJ6nbOQhQ", "title": "Trig and u substitution together (part 1)", "format": "mp4", "description": "", "slug": "trig-and-u-substitution-together-part-1", "kind": "Video", "video_id": "nMrJ6nbOQhQ", "keywords": "", "youtube_id": "nMrJ6nbOQhQ", "readable_id": "trig-and-u-substitution-together-part-1"}, "lSoaMCNKfAg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lSoaMCNKfAg.mp4/lSoaMCNKfAg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lSoaMCNKfAg.mp4/lSoaMCNKfAg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lSoaMCNKfAg.m3u8/lSoaMCNKfAg.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/linear-algebra-transpose-of-a-vector/", "duration": 726, "id": "lSoaMCNKfAg", "title": "Transpose of a vector", "format": "mp4", "description": "Transpose of a column vector. Matrix-matrix products using vectors", "slug": "linear-algebra-transpose-of-a-vector", "kind": "Video", "video_id": "lSoaMCNKfAg", "keywords": "matrix, vector, transpose", "youtube_id": "lSoaMCNKfAg", "readable_id": "linear-algebra-transpose-of-a-vector"}, "jJyRrIZ595c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jJyRrIZ595c.mp4/jJyRrIZ595c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jJyRrIZ595c.mp4/jJyRrIZ595c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jJyRrIZ595c.m3u8/jJyRrIZ595c.m3u8"}, "duration": 623, "id": "jJyRrIZ595c", "title": "Complex roots of the characteristic equations 2", "format": "mp4", "description": "What happens when the characteristic equation has complex roots?", "path": "khan/math/differential-equations/second-order-differential-equations/complex-roots-characteristic-equation/complex-roots-of-the-characteristic-equations-2/", "slug": "complex-roots-of-the-characteristic-equations-2", "kind": "Video", "video_id": "jJyRrIZ595c", "keywords": "complex, roots, characteristic, equation, differential, equations", "youtube_id": "jJyRrIZ595c", "readable_id": "complex-roots-of-the-characteristic-equations-2"}, "XtAB9GOfLiM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XtAB9GOfLiM.mp4/XtAB9GOfLiM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XtAB9GOfLiM.mp4/XtAB9GOfLiM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XtAB9GOfLiM.m3u8/XtAB9GOfLiM.m3u8"}, "path": "khan/science/physics/two-dimensional-motion/optimal-projectile-angle/optimal-angle-for-a-projectile-part-2-hangtime/", "duration": 252, "id": "XtAB9GOfLiM", "title": "Optimal angle for a projectile part 2: Hangtime", "format": "mp4", "description": "Optimal angle for a projectile part 2 - Hangtime", "slug": "optimal-angle-for-a-projectile-part-2-hangtime", "kind": "Video", "video_id": "XtAB9GOfLiM", "keywords": "Optimal, angle, for, projectile, part, Hangtime", "youtube_id": "XtAB9GOfLiM", "readable_id": "optimal-angle-for-a-projectile-part-2-hangtime"}, "17jymDn0W6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/17jymDn0W6U.mp4/17jymDn0W6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/17jymDn0W6U.mp4/17jymDn0W6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/17jymDn0W6U.m3u8/17jymDn0W6U.m3u8"}, "duration": 391, "id": "17jymDn0W6U", "title": "The known Universe", "format": "mp4", "description": "The known Universe takes viewers from the Himalayas through our atmosphere and the inky black of space to the afterglow of the Big Bang. Every star, planet, and quasar seen in the film is possible because of the world's most complete four-dimensional map of the universe, the Digital Universe Atlas that is maintained and updated by astrophysicists at the American Museum of Natural History.", "path": "known-universe/", "slug": "known-universe", "kind": "Video", "video_id": "17jymDn0W6U", "keywords": "", "youtube_id": "17jymDn0W6U", "readable_id": "known-universe"}, "B2dCeTPDEKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B2dCeTPDEKY.mp4/B2dCeTPDEKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B2dCeTPDEKY.mp4/B2dCeTPDEKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B2dCeTPDEKY.m3u8/B2dCeTPDEKY.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/the-choice/", "duration": 152, "id": "B2dCeTPDEKY", "title": "\"The Choice\" with Walter Liedtke", "format": "mp4", "description": "Met curator Walter Liedtke on reflection in Rembrandt van Rijn\u2019s Aristotle with a Bust of Homer.\n\nAristotle (384\u2013322 B.C.E.) rests his hand reflectively on a bust of Homer, the blind epic poet of the Iliad and the Odyssey. A medallion representing Alexander the Great, whom Aristotle tutored, hangs from the heavy gold chain. The philosopher contemplates material rewards as opposed to spiritual values, with the play of light and shadow on his features suggesting the motions of his mind. Painted for the great Sicilian collector Antonio Ruffo, the picture also refers to Aristotle's comparison of touch and sight as a means of acquiring knowledge.\u00a0\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "slug": "the-choice", "kind": "Video", "video_id": "B2dCeTPDEKY", "keywords": "canvas, memory, painting, touch, Europe", "youtube_id": "B2dCeTPDEKY", "readable_id": "the-choice"}, "pQWwP7YYH6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pQWwP7YYH6o.mp4/pQWwP7YYH6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pQWwP7YYH6o.mp4/pQWwP7YYH6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pQWwP7YYH6o.m3u8/pQWwP7YYH6o.m3u8"}, "path": "khan/science/physics/thermodynamics/carnot-efficiency-2-reversing-the-cycle/", "duration": 841, "id": "pQWwP7YYH6o", "title": "Carnot efficiency 2: Reversing the cycle", "format": "mp4", "description": "Seeing how we can scale and or reverse a Carnot Engine (to make a refrigerator)", "slug": "carnot-efficiency-2-reversing-the-cycle", "kind": "Video", "video_id": "pQWwP7YYH6o", "keywords": "thermodynamics, carnot, entropy", "youtube_id": "pQWwP7YYH6o", "readable_id": "carnot-efficiency-2-reversing-the-cycle"}, "a-R8qpea6lc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a-R8qpea6lc.mp4/a-R8qpea6lc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a-R8qpea6lc.mp4/a-R8qpea6lc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a-R8qpea6lc.m3u8/a-R8qpea6lc.m3u8"}, "duration": 195, "id": "a-R8qpea6lc", "title": "US and Japanese quantitative easing", "format": "mp4", "description": "Comparing quantitative easing in Japan to \"credit easing\" in the United States", "path": "khan/economics-finance-domain/core-finance/money-and-banking/federal-reserve/us-and-japanese-quantitative-easing/", "slug": "us-and-japanese-quantitative-easing", "kind": "Video", "video_id": "a-R8qpea6lc", "keywords": "bernanke, federal, reserve", "youtube_id": "a-R8qpea6lc", "readable_id": "us-and-japanese-quantitative-easing"}, "xGE3sEz6U9Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xGE3sEz6U9Y.mp4/xGE3sEz6U9Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xGE3sEz6U9Y.mp4/xGE3sEz6U9Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xGE3sEz6U9Y.m3u8/xGE3sEz6U9Y.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/weak-base-equilibrium/", "duration": 682, "id": "xGE3sEz6U9Y", "title": "Weak base equilibrium", "format": "mp4", "description": "", "slug": "weak-base-equilibrium", "kind": "Video", "video_id": "xGE3sEz6U9Y", "keywords": "", "youtube_id": "xGE3sEz6U9Y", "readable_id": "weak-base-equilibrium"}, "NaAwVrOEyss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NaAwVrOEyss.mp4/NaAwVrOEyss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NaAwVrOEyss.mp4/NaAwVrOEyss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NaAwVrOEyss.m3u8/NaAwVrOEyss.m3u8"}, "duration": 611, "id": "NaAwVrOEyss", "title": "Neuron graded potential mechanism", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/neuron-graded-potential-mechanism/", "slug": "neuron-graded-potential-mechanism", "kind": "Video", "video_id": "NaAwVrOEyss", "keywords": "", "youtube_id": "NaAwVrOEyss", "readable_id": "neuron-graded-potential-mechanism"}, "9cZDuVVPkTU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9cZDuVVPkTU.mp4/9cZDuVVPkTU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9cZDuVVPkTU.mp4/9cZDuVVPkTU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9cZDuVVPkTU.m3u8/9cZDuVVPkTU.m3u8"}, "duration": 335, "id": "9cZDuVVPkTU", "title": "Women in colonial America", "format": "mp4", "description": "In this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss women in colonial America.\u00a0", "path": "overview/", "slug": "overview", "kind": "Video", "video_id": "9cZDuVVPkTU", "keywords": "", "youtube_id": "9cZDuVVPkTU", "readable_id": "overview"}, "nujMFiByBjg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nujMFiByBjg.mp4/nujMFiByBjg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nujMFiByBjg.mp4/nujMFiByBjg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nujMFiByBjg.m3u8/nujMFiByBjg.m3u8"}, "duration": 115, "id": "nujMFiByBjg", "title": "Madison and the Louisiana Purchase", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-ix/", "slug": "isaacson-with-cheney-khan-academy-lesson-ix", "kind": "Video", "video_id": "nujMFiByBjg", "keywords": "", "youtube_id": "nujMFiByBjg", "readable_id": "isaacson-with-cheney-khan-academy-lesson-ix"}, "PPyqEsyVmIQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PPyqEsyVmIQ.mp4/PPyqEsyVmIQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PPyqEsyVmIQ.mp4/PPyqEsyVmIQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PPyqEsyVmIQ.m3u8/PPyqEsyVmIQ.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/wall-painting/painted-garden-villa-of-livia/", "duration": 244, "id": "PPyqEsyVmIQ", "title": "Empire: Painted Garden, Villa of Livia", "format": "mp4", "description": "Painted Garden, Villa of Livia, fresco, 30-20 B.C.E. (Museo Nazionale Romano, Palazzo Massimo, Rome) Plant species include: umbrella pine, oak, red fir, quince, pomegranate, myrtle, oleander, date palm, strawberry, laurel, viburnum, holm oak, boxwood, cypress, ivy, acanthus, rose, poppy, chrysanthemum, chamomile, fern, violet, and iris.", "slug": "painted-garden-villa-of-livia", "kind": "Video", "video_id": "PPyqEsyVmIQ", "keywords": "Roman, Painting, First Style, Second Style, 1st Style, 2nd Style, Garden, Villa, Livia, fresco, 30 B.C.E., Museo Nazionale Romano, Palazzo Massimo, Rome, triclinium, Prima Porta, Augustus, dining room, below ground, archaeology, excavation, umbrella pine, oak, red fir, quince, pomegranate, myrtle, oleander, date palm, strawberry, laurel, viburnum, holm oak, boxwood, cypress, ivy, acanthus, rose, poppie, chrysanthemum, chamomile, fern, violet, iris, art history, smarthistory, Khan Academy", "youtube_id": "PPyqEsyVmIQ", "readable_id": "painted-garden-villa-of-livia"}, "RaeSwi80g3Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RaeSwi80g3Q.mp4/RaeSwi80g3Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RaeSwi80g3Q.mp4/RaeSwi80g3Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RaeSwi80g3Q.m3u8/RaeSwi80g3Q.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/moma-tiffany-vase/", "duration": 122, "id": "RaeSwi80g3Q", "title": "Louis Comfort Tiffany, Vase", "format": "mp4", "description": "For more information please visit\u00a0http://www.moma.org/1913", "slug": "moma-tiffany-vase", "kind": "Video", "video_id": "RaeSwi80g3Q", "keywords": "", "youtube_id": "RaeSwi80g3Q", "readable_id": "moma-tiffany-vase"}, "N8GQQJZQrUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N8GQQJZQrUc.mp4/N8GQQJZQrUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N8GQQJZQrUc.mp4/N8GQQJZQrUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N8GQQJZQrUc.m3u8/N8GQQJZQrUc.m3u8"}, "duration": 63, "id": "N8GQQJZQrUc", "title": "Art Terms in Action: Viscosity", "format": "mp4", "description": "To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.\u00a0", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-viscosity/", "slug": "moma-art-term-viscosity", "kind": "Video", "video_id": "N8GQQJZQrUc", "keywords": "", "youtube_id": "N8GQQJZQrUc", "readable_id": "moma-art-term-viscosity"}, "ceM2u6IABWU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ceM2u6IABWU.mp4/ceM2u6IABWU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ceM2u6IABWU.mp4/ceM2u6IABWU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ceM2u6IABWU.m3u8/ceM2u6IABWU.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-20-22/", "duration": 224, "id": "ceM2u6IABWU", "title": "CAHSEE practice: Problems 20-22", "format": "mp4", "description": "CAHSEE Practice: Problems 20-22", "slug": "cahsee-practice-problems-20-22", "kind": "Video", "video_id": "ceM2u6IABWU", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "ceM2u6IABWU", "readable_id": "cahsee-practice-problems-20-22"}, "pjrI91J6jOw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pjrI91J6jOw.mp4/pjrI91J6jOw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pjrI91J6jOw.mp4/pjrI91J6jOw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pjrI91J6jOw.m3u8/pjrI91J6jOw.m3u8"}, "duration": 254, "id": "pjrI91J6jOw", "title": "Thanksgiving turduckenen-duckenen", "format": "mp4", "description": "Forget turducken... I'm stuffing my turkey with two ducks, stuffed with four hens, stuffed with eight quail eggs. Honestly, I do not recommend trying this yourself.\n\nSo what's your favourite naming scheme: breadth-first, depth-first, or inordered binary tree traversal?\n\nMathed Potatoes: http://youtu.be/F5RyVWI4Onk\nGreen Bean Matherole: http://youtu.be/XwIs1nlDQ2I\nBorromean Onion Rings: http://youtu.be/4tsjCND2ZfM", "path": "khan/math/recreational-math/vi-hart/thanksgiving-math/thanksgiving-turduckenen-duckenen/", "slug": "thanksgiving-turduckenen-duckenen", "kind": "Video", "video_id": "pjrI91J6jOw", "keywords": "marquee", "youtube_id": "pjrI91J6jOw", "readable_id": "thanksgiving-turduckenen-duckenen"}, "04gQ0bQu6xk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/04gQ0bQu6xk.mp4/04gQ0bQu6xk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/04gQ0bQu6xk.mp4/04gQ0bQu6xk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/04gQ0bQu6xk.m3u8/04gQ0bQu6xk.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/meiosis/chromosomal-crossover-in-meiosis-i/", "duration": 736, "id": "04gQ0bQu6xk", "title": "Chromosomal crossover in Meiosis I", "format": "mp4", "description": "Chromosomal crossover in Meiosis I", "slug": "chromosomal-crossover-in-meiosis-i", "kind": "Video", "video_id": "04gQ0bQu6xk", "keywords": "", "youtube_id": "04gQ0bQu6xk", "readable_id": "chromosomal-crossover-in-meiosis-i"}, "iokGgmrOj4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iokGgmrOj4Q.mp4/iokGgmrOj4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iokGgmrOj4Q.mp4/iokGgmrOj4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iokGgmrOj4Q.m3u8/iokGgmrOj4Q.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/persian/cyrus-cylinder/", "duration": 938, "id": "iokGgmrOj4Q", "title": "The Cyrus Cylinder and Ancient Persia", "format": "mp4", "description": "The Cyrus Cylinder is one of the most famous objects to have survived from the ancient world. It was inscribed in Babylonian cuneiform on the orders of Persian King Cyrus the Great (559-530 B.C.E.) after he captured Babylon in 539 B.C.E.\u00a0It was found in Babylon in modern Iraq in 1879 during a British Museum excavation.\nCyrus claims to have achieved this with the aid of Marduk, the god of Babylon. He then describes measures of relief he brought to the inhabitants of the city, and tells how he returned a number of images of gods, which Nabonidus had collected in Babylon, to their proper temples throughout Mesopotamia and western Iran. At the same time he arranged for the restoration of these temples, and organized the return to their homelands of a number of people who had been held in Babylonia by the Babylonian kings. Although the Jews are not mentioned in this document, their return to Palestine following their deportation by Nebuchadnezzar II, was part of this policy.\n\nThe cylinder is often referred to as the first bill of human rights as it appears to encourage freedom of worship throughout the Persian Empire and to allow deported people to return to their homelands, but it in fact reflects a long tradition in Mesopotamia where, from as early as the third millennium B.C.E., kings began their reigns with declarations of reforms.\u00a0\n", "slug": "cyrus-cylinder", "kind": "Video", "video_id": "iokGgmrOj4Q", "keywords": "", "youtube_id": "iokGgmrOj4Q", "readable_id": "cyrus-cylinder"}, "AK0NZITv5Ns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AK0NZITv5Ns.mp4/AK0NZITv5Ns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AK0NZITv5Ns.mp4/AK0NZITv5Ns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AK0NZITv5Ns.m3u8/AK0NZITv5Ns.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-add-20/adding-within-20-example/", "duration": 199, "id": "AK0NZITv5Ns", "title": "Adding 8 + 7", "format": "mp4", "description": "Learn how to add 8 + 7 by making a group of ten.", "slug": "adding-within-20-example", "kind": "Video", "video_id": "AK0NZITv5Ns", "keywords": "", "youtube_id": "AK0NZITv5Ns", "readable_id": "adding-within-20-example"}, "ay1QGPg2R98": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ay1QGPg2R98.mp4/ay1QGPg2R98.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ay1QGPg2R98.mp4/ay1QGPg2R98.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ay1QGPg2R98.m3u8/ay1QGPg2R98.m3u8"}, "duration": 238, "id": "ay1QGPg2R98", "title": "Italy backs out of Triple Alliance", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/other-fronts-ww1/italy-backs-out-of-triple-alliance/", "slug": "italy-backs-out-of-triple-alliance", "kind": "Video", "video_id": "ay1QGPg2R98", "keywords": "", "youtube_id": "ay1QGPg2R98", "readable_id": "italy-backs-out-of-triple-alliance"}, "tn53EdOr6Rw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tn53EdOr6Rw.mp4/tn53EdOr6Rw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tn53EdOr6Rw.mp4/tn53EdOr6Rw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tn53EdOr6Rw.m3u8/tn53EdOr6Rw.m3u8"}, "duration": 182, "id": "tn53EdOr6Rw", "title": "Negative fractional exponent examples", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/negative-fractional-exponent-examples/", "slug": "negative-fractional-exponent-examples", "kind": "Video", "video_id": "tn53EdOr6Rw", "keywords": "", "youtube_id": "tn53EdOr6Rw", "readable_id": "negative-fractional-exponent-examples"}, "Mb9TudBudWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mb9TudBudWk.mp4/Mb9TudBudWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mb9TudBudWk.mp4/Mb9TudBudWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mb9TudBudWk.m3u8/Mb9TudBudWk.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/hormones-body-mass-and-obesity/", "duration": 278, "id": "Mb9TudBudWk", "title": "Hormones, body mass, and obesity", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "hormones-body-mass-and-obesity", "kind": "Video", "video_id": "Mb9TudBudWk", "keywords": "", "youtube_id": "Mb9TudBudWk", "readable_id": "hormones-body-mass-and-obesity"}, "0NyeDUhKwBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0NyeDUhKwBE.mp4/0NyeDUhKwBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0NyeDUhKwBE.mp4/0NyeDUhKwBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0NyeDUhKwBE.m3u8/0NyeDUhKwBE.m3u8"}, "duration": 506, "id": "0NyeDUhKwBE", "title": "Integrating factors 2", "format": "mp4", "description": "Now that we've made the equation exact, let's solve it!", "path": "khan/math/differential-equations/first-order-differential-equations/exact-equations/integrating-factors-2/", "slug": "integrating-factors-2", "kind": "Video", "video_id": "0NyeDUhKwBE", "keywords": "integrating, factor, exact, differential, equations", "youtube_id": "0NyeDUhKwBE", "readable_id": "integrating-factors-2"}, "9vlsBN3pFE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9vlsBN3pFE0.mp4/9vlsBN3pFE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9vlsBN3pFE0.mp4/9vlsBN3pFE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9vlsBN3pFE0.m3u8/9vlsBN3pFE0.m3u8"}, "duration": 494, "id": "9vlsBN3pFE0", "title": "IIT JEE divisible determinants", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 44 Divisible Determinants 2", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-divisible-determinants/", "slug": "iit-jee-divisible-determinants", "kind": "Video", "video_id": "9vlsBN3pFE0", "keywords": "2010, IIT, JEE, Paper, Problem, 44, Divisible, Determinants", "youtube_id": "9vlsBN3pFE0", "readable_id": "iit-jee-divisible-determinants"}, "stfSnPaaK04": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/stfSnPaaK04.mp4/stfSnPaaK04.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/stfSnPaaK04.mp4/stfSnPaaK04.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/stfSnPaaK04.m3u8/stfSnPaaK04.m3u8"}, "duration": 211, "id": "stfSnPaaK04", "title": "Velocity of money rather than quantity driving prices", "format": "mp4", "description": "How velocity of money can drive price increases", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/deflation-tutorial/velocity-of-money-rather-than-quantity-driving-prices/", "slug": "velocity-of-money-rather-than-quantity-driving-prices", "kind": "Video", "video_id": "stfSnPaaK04", "keywords": "finance, economics", "youtube_id": "stfSnPaaK04", "readable_id": "velocity-of-money-rather-than-quantity-driving-prices"}, "PqRx4OV5jhM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PqRx4OV5jhM.mp4/PqRx4OV5jhM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PqRx4OV5jhM.mp4/PqRx4OV5jhM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PqRx4OV5jhM.m3u8/PqRx4OV5jhM.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/egon-schiele-hermits-1912/", "duration": 236, "id": "PqRx4OV5jhM", "title": "Schiele, Hermits", "format": "mp4", "description": "Egon Schiele, Hermits, 1912, oil on canvas, 71-1/4 x 71-1/4 inches (Leopold Museum, Vienna)", "slug": "egon-schiele-hermits-1912", "kind": "Video", "video_id": "PqRx4OV5jhM", "keywords": "Schiele, Hermits, GAP, Egon Schiele, 1912, Leopold Museum, Vienna, Expressionism, Modernism, Klimt, painting, Figurative, Google Art Project, Smarthistory, Khan Academy, OER, art history", "youtube_id": "PqRx4OV5jhM", "readable_id": "egon-schiele-hermits-1912"}, "978yjrvshH0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/978yjrvshH0.mp4/978yjrvshH0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/978yjrvshH0.mp4/978yjrvshH0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/978yjrvshH0.m3u8/978yjrvshH0.m3u8"}, "duration": 218, "id": "978yjrvshH0", "title": "Madison and Thomas Jefferson: Their friendship, commonalities, and differences", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-v/", "slug": "isaacson-with-cheney-khan-academy-lesson-v", "kind": "Video", "video_id": "978yjrvshH0", "keywords": "", "youtube_id": "978yjrvshH0", "readable_id": "isaacson-with-cheney-khan-academy-lesson-v"}, "nL6LMX8-bPY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nL6LMX8-bPY.mp4/nL6LMX8-bPY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nL6LMX8-bPY.mp4/nL6LMX8-bPY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nL6LMX8-bPY.m3u8/nL6LMX8-bPY.m3u8"}, "duration": 126, "id": "nL6LMX8-bPY", "title": "What causes precession and other orbital changes", "format": "mp4", "description": "What causes precession and other orbital changes", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic/what-causes-precession-and-other-orbital-changes/", "slug": "what-causes-precession-and-other-orbital-changes", "kind": "Video", "video_id": "nL6LMX8-bPY", "keywords": "precession, obliquity, elliptic, orbit, Milankovitch, Cycles", "youtube_id": "nL6LMX8-bPY", "readable_id": "what-causes-precession-and-other-orbital-changes"}, "gplD1LV-lAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gplD1LV-lAA.mp4/gplD1LV-lAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gplD1LV-lAA.mp4/gplD1LV-lAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gplD1LV-lAA.m3u8/gplD1LV-lAA.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/price-return-relationship/", "duration": 510, "id": "gplD1LV-lAA", "title": "Inverse relationship between capital price and returns", "format": "mp4", "description": "", "slug": "price-return-relationship", "kind": "Video", "video_id": "gplD1LV-lAA", "keywords": "", "youtube_id": "gplD1LV-lAA", "readable_id": "price-return-relationship"}, "Yu00YJ3tAlo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yu00YJ3tAlo.mp4/Yu00YJ3tAlo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yu00YJ3tAlo.mp4/Yu00YJ3tAlo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yu00YJ3tAlo.m3u8/Yu00YJ3tAlo.m3u8"}, "duration": 194, "id": "Yu00YJ3tAlo", "title": "Dividing multivariable polynomial with monomial", "format": "mp4", "description": "Dividing multivariable polynomial with monomial", "path": "khan/math/algebra2/polynomial_and_rational/dividing_polynomials/dividing-multivariable-polynomial-with-monomial/", "slug": "dividing-multivariable-polynomial-with-monomial", "kind": "Video", "video_id": "Yu00YJ3tAlo", "keywords": "u11_l3_t2_we4, Dividing, multivariable, polynomial, with, monomial, CC_39336_A-APR_1", "youtube_id": "Yu00YJ3tAlo", "readable_id": "dividing-multivariable-polynomial-with-monomial"}, "JVcbDb3e-6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVcbDb3e-6w.mp4/JVcbDb3e-6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVcbDb3e-6w.mp4/JVcbDb3e-6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVcbDb3e-6w.m3u8/JVcbDb3e-6w.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/home-buying-process/making-an-offer-on-a-home/", "duration": 508, "id": "JVcbDb3e-6w", "title": "Making an offer on a home", "format": "mp4", "description": "", "slug": "making-an-offer-on-a-home", "kind": "Video", "video_id": "JVcbDb3e-6w", "keywords": "", "youtube_id": "JVcbDb3e-6w", "readable_id": "making-an-offer-on-a-home"}, "J0tYHmuig-U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J0tYHmuig-U.mp4/J0tYHmuig-U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J0tYHmuig-U.mp4/J0tYHmuig-U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J0tYHmuig-U.m3u8/J0tYHmuig-U.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-cystic-fibrosis/cystic-fibrosis-diagnosis/", "duration": 273, "id": "J0tYHmuig-U", "title": "Cystic fibrosis diagnosis", "format": "mp4", "description": "", "slug": "cystic-fibrosis-diagnosis", "kind": "Video", "video_id": "J0tYHmuig-U", "keywords": "", "youtube_id": "J0tYHmuig-U", "readable_id": "cystic-fibrosis-diagnosis"}, "aF6EHTtyYqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aF6EHTtyYqw.mp4/aF6EHTtyYqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aF6EHTtyYqw.mp4/aF6EHTtyYqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aF6EHTtyYqw.m3u8/aF6EHTtyYqw.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/appeal-to-the-people/", "duration": 266, "id": "aF6EHTtyYqw", "title": "Fallacies: Appeal to the people", "format": "mp4", "description": "In this video, Jordan MacKenzie discusses a type of informal fallacy known as the argumentum ad populum fallacy, or the appeal to the people fallacy. This fallacy occurs when one attempts to establish the truth of a conclusion by appealing to the fact that the conclusion is widely believed to be true.\n\nSpeaker: Jordan MacKenzie, University of North Carolina at Chapel Hill", "slug": "appeal-to-the-people", "kind": "Video", "video_id": "aF6EHTtyYqw", "keywords": "", "youtube_id": "aF6EHTtyYqw", "readable_id": "appeal-to-the-people"}, "5xp9lI_fXDo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5xp9lI_fXDo.mp4/5xp9lI_fXDo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5xp9lI_fXDo.mp4/5xp9lI_fXDo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5xp9lI_fXDo.m3u8/5xp9lI_fXDo.m3u8"}, "duration": 266, "id": "5xp9lI_fXDo", "title": "Cooperativity", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/enzyme-kinetics/cooperativity/", "slug": "cooperativity", "kind": "Video", "video_id": "5xp9lI_fXDo", "keywords": "", "youtube_id": "5xp9lI_fXDo", "readable_id": "cooperativity"}, "gh_3hch2YNM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gh_3hch2YNM.mp4/gh_3hch2YNM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gh_3hch2YNM.mp4/gh_3hch2YNM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gh_3hch2YNM.m3u8/gh_3hch2YNM.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-9-constitutional-convention/", "duration": 176, "id": "gh_3hch2YNM", "title": "9 Constitutional Convention", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-9-constitutional-convention", "kind": "Video", "video_id": "gh_3hch2YNM", "keywords": "", "youtube_id": "gh_3hch2YNM", "readable_id": "sat-9-constitutional-convention"}, "oahoaGC8Jfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oahoaGC8Jfc.mp4/oahoaGC8Jfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oahoaGC8Jfc.mp4/oahoaGC8Jfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oahoaGC8Jfc.m3u8/oahoaGC8Jfc.m3u8"}, "duration": 354, "id": "oahoaGC8Jfc", "title": "Heat Transfer", "format": "mp4", "description": "Understanding conductive, convective, and radiative heat transfer using a thermal camera.", "path": "heat-transfer/", "slug": "heat-transfer", "kind": "Video", "video_id": "oahoaGC8Jfc", "keywords": "", "youtube_id": "oahoaGC8Jfc", "readable_id": "heat-transfer"}, "o6KlpIWhbcw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o6KlpIWhbcw.mp4/o6KlpIWhbcw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o6KlpIWhbcw.mp4/o6KlpIWhbcw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o6KlpIWhbcw.m3u8/o6KlpIWhbcw.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-class-triangle-party/", "duration": 265, "id": "o6KlpIWhbcw", "title": "Doodling in math: Triangle party", "format": "mp4", "description": "Triangles!", "slug": "doodling-in-math-class-triangle-party", "kind": "Video", "video_id": "o6KlpIWhbcw", "keywords": "doodling, mathematics, fractals, math, triangles, trigonometry, koch, vi hart, doodle, geometry, Triangle", "youtube_id": "o6KlpIWhbcw", "readable_id": "doodling-in-math-class-triangle-party"}, "MALIJQ3Q_zs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MALIJQ3Q_zs.mp4/MALIJQ3Q_zs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MALIJQ3Q_zs.mp4/MALIJQ3Q_zs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MALIJQ3Q_zs.m3u8/MALIJQ3Q_zs.m3u8"}, "duration": 200, "id": "MALIJQ3Q_zs", "title": "Switch block (nested)", "format": "mp4", "description": "We can combine switch blocks for more advanced behavior", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-switchstatements/", "slug": "lego-switchstatements", "kind": "Video", "video_id": "MALIJQ3Q_zs", "keywords": "", "youtube_id": "MALIJQ3Q_zs", "readable_id": "lego-switchstatements"}, "8p6R5yJjAGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8p6R5yJjAGE.mp4/8p6R5yJjAGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8p6R5yJjAGE.mp4/8p6R5yJjAGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8p6R5yJjAGE.m3u8/8p6R5yJjAGE.m3u8"}, "duration": 677, "id": "8p6R5yJjAGE", "title": "Properties of alcohols", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/properties-of-alcohols/", "slug": "properties-of-alcohols", "kind": "Video", "video_id": "8p6R5yJjAGE", "keywords": "", "youtube_id": "8p6R5yJjAGE", "readable_id": "properties-of-alcohols"}, "8WmVmmPkpTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8WmVmmPkpTM.mp4/8WmVmmPkpTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8WmVmmPkpTM.mp4/8WmVmmPkpTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8WmVmmPkpTM.m3u8/8WmVmmPkpTM.m3u8"}, "duration": 189, "id": "8WmVmmPkpTM", "title": "Room: 2000s and beyond", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Helen Little explores art in the new millennium.\n\nLearn more about the art featured in this video:\n-\u00a0Lynette Yiadom-Boakye, 10pm Saturday, 2012\n- Richard Wright, Untitled Figure 1, 2002", "path": "room-2000/", "slug": "room-2000", "kind": "Video", "video_id": "8WmVmmPkpTM", "keywords": "Tate, Contemporary Art, Modern Art", "youtube_id": "8WmVmmPkpTM", "readable_id": "room-2000"}, "wjCRcXQ3EHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wjCRcXQ3EHg.mp4/wjCRcXQ3EHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wjCRcXQ3EHg.mp4/wjCRcXQ3EHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wjCRcXQ3EHg.m3u8/wjCRcXQ3EHg.m3u8"}, "duration": 195, "id": "wjCRcXQ3EHg", "title": "Philip Rosedale - Evolving ideas vs. new ideas", "format": "mp4", "description": "Philip Rosedale, Founder of Coffee and Power, draws the distinction between companies that offer products distinguished by differentiation versus those that offer something fundamentally new. Philip goes on to discuss what drives him as an entrepreneur.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/philip-rosedale/kauffman-philip-rosedale3/", "slug": "kauffman-philip-rosedale3", "kind": "Video", "video_id": "wjCRcXQ3EHg", "keywords": "", "youtube_id": "wjCRcXQ3EHg", "readable_id": "kauffman-philip-rosedale3"}, "2fzYE-Emar0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2fzYE-Emar0.mp4/2fzYE-Emar0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2fzYE-Emar0.mp4/2fzYE-Emar0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2fzYE-Emar0.m3u8/2fzYE-Emar0.m3u8"}, "path": "khan/math/probability/statistics-inferential/normal_distribution/ck12-org-exercise-standard-normal-distribution-and-the-empirical-rule/", "duration": 496, "id": "2fzYE-Emar0", "title": "ck12.org exercise: Standard normal distribution and the empirical rule", "format": "mp4", "description": "Using the Empirical Rule with a standard normal distribution", "slug": "ck12-org-exercise-standard-normal-distribution-and-the-empirical-rule", "kind": "Video", "video_id": "2fzYE-Emar0", "keywords": "standard, normal, distribution, empirical, rule, CC_6_SP_5_c, CC_6_SP_5_d", "youtube_id": "2fzYE-Emar0", "readable_id": "ck12-org-exercise-standard-normal-distribution-and-the-empirical-rule"}, "icUBgcwp8QE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/icUBgcwp8QE.mp4/icUBgcwp8QE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/icUBgcwp8QE.mp4/icUBgcwp8QE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/icUBgcwp8QE.m3u8/icUBgcwp8QE.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/transcription-2/", "duration": 523, "id": "icUBgcwp8QE", "title": "Transcription 2", "format": "mp4", "description": "", "slug": "transcription-2", "kind": "Video", "video_id": "icUBgcwp8QE", "keywords": "", "youtube_id": "icUBgcwp8QE", "readable_id": "transcription-2"}, "9bs1iQ14LJY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9bs1iQ14LJY.mp4/9bs1iQ14LJY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9bs1iQ14LJY.mp4/9bs1iQ14LJY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9bs1iQ14LJY.m3u8/9bs1iQ14LJY.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/seurat-bathers-at-asni-res-1884/", "duration": 386, "id": "9bs1iQ14LJY", "title": "Seurat, Bathers at Asni\u00e8res", "format": "mp4", "description": "Georges Seurat, Bathers at Asni\u00e8res, 1884, oil on canvas, 6.6 x 9.8 ft (National Gallery, London) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "seurat-bathers-at-asni-res-1884", "kind": "Video", "video_id": "9bs1iQ14LJY", "keywords": "smarthistory, seurat, Art History, Post-Impressionism, Pointillism, Neo-Impressionism, History Of Art", "youtube_id": "9bs1iQ14LJY", "readable_id": "seurat-bathers-at-asni-res-1884"}, "HXg_a9oJ5nA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HXg_a9oJ5nA.mp4/HXg_a9oJ5nA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HXg_a9oJ5nA.mp4/HXg_a9oJ5nA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HXg_a9oJ5nA.m3u8/HXg_a9oJ5nA.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/number-patterns/interpreting-relationships-between-patterns/", "duration": 271, "id": "HXg_a9oJ5nA", "title": "Number patterns: interpreting relationships", "format": "mp4", "description": "Examining the points on a number line and interpreting the patterns to discover the relationships.", "slug": "interpreting-relationships-between-patterns", "kind": "Video", "video_id": "HXg_a9oJ5nA", "keywords": "", "youtube_id": "HXg_a9oJ5nA", "readable_id": "interpreting-relationships-between-patterns"}, "jciijU8Mj_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jciijU8Mj_Y.mp4/jciijU8Mj_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jciijU8Mj_Y.mp4/jciijU8Mj_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jciijU8Mj_Y.m3u8/jciijU8Mj_Y.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-1/", "duration": 593, "id": "jciijU8Mj_Y", "title": "GMAT: Math 1", "format": "mp4", "description": "1-6, pg. 152", "slug": "gmat-math-1", "kind": "Video", "video_id": "jciijU8Mj_Y", "keywords": "GMAT, math, problem, solving", "youtube_id": "jciijU8Mj_Y", "readable_id": "gmat-math-1"}, "RbLcxozAfeY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RbLcxozAfeY.mp4/RbLcxozAfeY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RbLcxozAfeY.mp4/RbLcxozAfeY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RbLcxozAfeY.m3u8/RbLcxozAfeY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2009-may-3-8/", "duration": 126, "id": "RbLcxozAfeY", "title": "8 Pounds of muscle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-8", "kind": "Video", "video_id": "RbLcxozAfeY", "keywords": "", "youtube_id": "RbLcxozAfeY", "readable_id": "sat-2009-may-3-8"}, "Lq-zp5_OgSY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lq-zp5_OgSY.mp4/Lq-zp5_OgSY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lq-zp5_OgSY.mp4/Lq-zp5_OgSY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lq-zp5_OgSY.m3u8/Lq-zp5_OgSY.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-21-correction/", "duration": 200, "id": "Lq-zp5_OgSY", "title": "GMAT: Data sufficiency 21 (correction)", "format": "mp4", "description": "94, pg. 286", "slug": "gmat-data-sufficiency-21-correction", "kind": "Video", "video_id": "Lq-zp5_OgSY", "keywords": "gmat, math, data, sufficiency", "youtube_id": "Lq-zp5_OgSY", "readable_id": "gmat-data-sufficiency-21-correction"}, "xljS9fFv3EU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xljS9fFv3EU.mp4/xljS9fFv3EU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xljS9fFv3EU.mp4/xljS9fFv3EU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xljS9fFv3EU.m3u8/xljS9fFv3EU.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-29-toxic-chemicals/", "duration": 142, "id": "xljS9fFv3EU", "title": "29 Toxic chemicals", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-29-toxic-chemicals", "kind": "Video", "video_id": "xljS9fFv3EU", "keywords": "", "youtube_id": "xljS9fFv3EU", "readable_id": "sat-29-toxic-chemicals"}, "UbUdyE1_b9g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UbUdyE1_b9g.mp4/UbUdyE1_b9g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UbUdyE1_b9g.mp4/UbUdyE1_b9g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UbUdyE1_b9g.m3u8/UbUdyE1_b9g.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/add-and-subtract-fracs-pre-alg/subtracting-fractions/", "duration": 146, "id": "UbUdyE1_b9g", "title": "Subtracting fractions with like denominators", "format": "mp4", "description": "Just like when we added...subtracting fractions is pretty straightforward when the two fractions have like denominators.", "slug": "subtracting-fractions", "kind": "Video", "video_id": "UbUdyE1_b9g", "keywords": "U02_L3_T2_we1, Subtracting, Fractions", "youtube_id": "UbUdyE1_b9g", "readable_id": "subtracting-fractions"}, "2-oQA64myZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2-oQA64myZQ.mp4/2-oQA64myZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2-oQA64myZQ.mp4/2-oQA64myZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2-oQA64myZQ.m3u8/2-oQA64myZQ.m3u8"}, "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-39/", "duration": 704, "id": "2-oQA64myZQ", "title": "USA vs USSR Fight! The Cold War", "format": "mp4", "description": "In which John Green teaches you about the Cold War, which was occasionally hot, but on average, it was cool. In the sense of its temperature. It was by no means cool, man. After World War II, there were basically two big geopolitical powers left to divide up the world. And divide they did. The United States and the Soviet Union divvied up Europe in the aftermath of the war, and then proceeded to spend the next 45 years fighting over the rest of the world. It was the great ideological struggle, with the US on the side of capitalism and profit, and the USSR pushing Communism, so-called. While both sides presented themselves as the good guy in this situation, the reality is that there are no good guys. Both parties to the Cold War engaged in forcible regime changes, built up vast nuclear arsenals, and basically got up to dirty tricks. If you had to pick a bad guy though, I would point out that the USSR had no intention of bringing Laika the Cosmonaut Dog home alive. That poor dog never had a shot.", "slug": "crash-course-world-history-39", "kind": "Video", "video_id": "2-oQA64myZQ", "keywords": "crash course", "youtube_id": "2-oQA64myZQ", "readable_id": "crash-course-world-history-39"}, "H9BWRYJNIv4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H9BWRYJNIv4.mp4/H9BWRYJNIv4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H9BWRYJNIv4.mp4/H9BWRYJNIv4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H9BWRYJNIv4.m3u8/H9BWRYJNIv4.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_of_matrices/linear-algebra-nxn-determinant/", "duration": 1120, "id": "H9BWRYJNIv4", "title": "n x n determinant", "format": "mp4", "description": "Defining the determinant for nxn matrices. An exampled of a 4x4 determinant.", "slug": "linear-algebra-nxn-determinant", "kind": "Video", "video_id": "H9BWRYJNIv4", "keywords": "determinant, example", "youtube_id": "H9BWRYJNIv4", "readable_id": "linear-algebra-nxn-determinant"}, "Oges5YqDLHY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oges5YqDLHY.mp4/Oges5YqDLHY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oges5YqDLHY.mp4/Oges5YqDLHY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oges5YqDLHY.m3u8/Oges5YqDLHY.m3u8"}, "duration": 640, "id": "Oges5YqDLHY", "title": "Angiotensin 2 raises blood pressure", "format": "mp4", "description": "See how Angiotensin 2 effects 4 target \"organs\" to increase blood pressure. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/angiotensin-2-raises-blood-pressure/", "slug": "angiotensin-2-raises-blood-pressure", "kind": "Video", "video_id": "Oges5YqDLHY", "keywords": "", "youtube_id": "Oges5YqDLHY", "readable_id": "angiotensin-2-raises-blood-pressure"}, "0gzSreH8nUI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0gzSreH8nUI.mp4/0gzSreH8nUI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0gzSreH8nUI.mp4/0gzSreH8nUI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0gzSreH8nUI.m3u8/0gzSreH8nUI.m3u8"}, "duration": 365, "id": "0gzSreH8nUI", "title": "Finding more angles", "format": "mp4", "description": "Example of angle hunting!", "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/finding-more-angles/", "slug": "finding-more-angles", "kind": "Video", "video_id": "0gzSreH8nUI", "keywords": "Finding, more, angles", "youtube_id": "0gzSreH8nUI", "readable_id": "finding-more-angles"}, "8I_KtODUekU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8I_KtODUekU.mp4/8I_KtODUekU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8I_KtODUekU.mp4/8I_KtODUekU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8I_KtODUekU.m3u8/8I_KtODUekU.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/estimating-infinite-series/estimating-infinite-sum-integrals/", "duration": 417, "id": "8I_KtODUekU", "title": "Estimating infinite series using integrals", "format": "mp4", "description": "", "slug": "estimating-infinite-sum-integrals", "kind": "Video", "video_id": "8I_KtODUekU", "keywords": "", "youtube_id": "8I_KtODUekU", "readable_id": "estimating-infinite-sum-integrals"}, "YKzHdQKX9RA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YKzHdQKX9RA.mp4/YKzHdQKX9RA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YKzHdQKX9RA.mp4/YKzHdQKX9RA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YKzHdQKX9RA.m3u8/YKzHdQKX9RA.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/bernini-david-1623-24/", "duration": 235, "id": "YKzHdQKX9RA", "title": "Bernini, David", "format": "mp4", "description": "Gian Lorenzo Bernini, David, 1623-24, marble (Galleria Borghese, Rome)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "bernini-david-1623-24", "kind": "Video", "video_id": "YKzHdQKX9RA", "keywords": "bernini, david, Khan Academy, Smarthistory, Art History, Baroque, Rome", "youtube_id": "YKzHdQKX9RA", "readable_id": "bernini-david-1623-24"}, "xq0JmEIxakA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xq0JmEIxakA.mp4/xq0JmEIxakA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xq0JmEIxakA.mp4/xq0JmEIxakA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xq0JmEIxakA.m3u8/xq0JmEIxakA.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/molecular-orbital-theory/mo-theory-for-diels-alder/", "duration": 772, "id": "xq0JmEIxakA", "title": "MO theory for Diels-Alder", "format": "mp4", "description": "", "slug": "mo-theory-for-diels-alder", "kind": "Video", "video_id": "xq0JmEIxakA", "keywords": "", "youtube_id": "xq0JmEIxakA", "readable_id": "mo-theory-for-diels-alder"}, "xHWKYFhhtJQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xHWKYFhhtJQ.mp4/xHWKYFhhtJQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xHWKYFhhtJQ.mp4/xHWKYFhhtJQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xHWKYFhhtJQ.m3u8/xHWKYFhhtJQ.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/binary-multiplication/", "duration": 260, "id": "xHWKYFhhtJQ", "title": "Multiplying in binary", "format": "mp4", "description": "", "slug": "binary-multiplication", "kind": "Video", "video_id": "xHWKYFhhtJQ", "keywords": "", "youtube_id": "xHWKYFhhtJQ", "readable_id": "binary-multiplication"}, "aAfBSJObd6Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aAfBSJObd6Y.mp4/aAfBSJObd6Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aAfBSJObd6Y.mp4/aAfBSJObd6Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aAfBSJObd6Y.m3u8/aAfBSJObd6Y.m3u8"}, "duration": 1253, "id": "aAfBSJObd6Y", "title": "Carnot cycle and Carnot engine", "format": "mp4", "description": "Introduction to the Carnot cycle and Carnot heat engine", "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/carnot-cycle-and-carnot-engine/", "slug": "carnot-cycle-and-carnot-engine", "kind": "Video", "video_id": "aAfBSJObd6Y", "keywords": "thermodynamics, carnot, entropy", "youtube_id": "aAfBSJObd6Y", "readable_id": "carnot-cycle-and-carnot-engine"}, "QmfoIvgIVlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QmfoIvgIVlE.mp4/QmfoIvgIVlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QmfoIvgIVlE.mp4/QmfoIvgIVlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QmfoIvgIVlE.m3u8/QmfoIvgIVlE.m3u8"}, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-angle-basics/constructing-angles/", "duration": 161, "id": "QmfoIvgIVlE", "title": "Constructing angles", "format": "mp4", "description": "As opposed to measuring an angle using a protractor, in this example we're constructing an angle. Same idea here, just a slightly different application. You got this.", "slug": "constructing-angles", "kind": "Video", "video_id": "QmfoIvgIVlE", "keywords": "", "youtube_id": "QmfoIvgIVlE", "readable_id": "constructing-angles"}, "E1j8W64NQ0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E1j8W64NQ0Y.mp4/E1j8W64NQ0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E1j8W64NQ0Y.mp4/E1j8W64NQ0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E1j8W64NQ0Y.m3u8/E1j8W64NQ0Y.m3u8"}, "duration": 360, "id": "E1j8W64NQ0Y", "title": "Applying rational equations 2", "format": "mp4", "description": "Applying Rational Equations 2", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/applying-rational-equations-2/", "slug": "applying-rational-equations-2", "kind": "Video", "video_id": "E1j8W64NQ0Y", "keywords": "U11_L2_T2_we2, Applying, Rational, Equations, CC_39336_A-APR_7, CC_39336_A-CED_1", "youtube_id": "E1j8W64NQ0Y", "readable_id": "applying-rational-equations-2"}, "DuYgVVU_BwY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DuYgVVU_BwY.mp4/DuYgVVU_BwY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DuYgVVU_BwY.mp4/DuYgVVU_BwY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DuYgVVU_BwY.m3u8/DuYgVVU_BwY.m3u8"}, "duration": 550, "id": "DuYgVVU_BwY", "title": "Graphing logarithmic functions", "format": "mp4", "description": " Graphing Logarithmic Functions", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/graphing-logarithmic-functions/", "slug": "graphing-logarithmic-functions", "kind": "Video", "video_id": "DuYgVVU_BwY", "keywords": "u18_l2_t1_we3, Graphing, Logarithmic, Functions", "youtube_id": "DuYgVVU_BwY", "readable_id": "graphing-logarithmic-functions"}, "ZXUpfcTvSaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZXUpfcTvSaI.mp4/ZXUpfcTvSaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZXUpfcTvSaI.mp4/ZXUpfcTvSaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZXUpfcTvSaI.m3u8/ZXUpfcTvSaI.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/what-goes-into-a-medical-bill/", "duration": 740, "id": "ZXUpfcTvSaI", "title": "Understanding your medical bill", "format": "mp4", "description": "Have you ever been confused by a medical bill? What happens after you visit the doctor? This video explains how medical costs are calculated and paid for by public and private insurance. \u00a0Learn more about the path of that bill, how it\u2019s processed, and who pays for what.\u00a0", "slug": "what-goes-into-a-medical-bill", "kind": "Video", "video_id": "ZXUpfcTvSaI", "keywords": "", "youtube_id": "ZXUpfcTvSaI", "readable_id": "what-goes-into-a-medical-bill"}, "owKAHXf1y1A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/owKAHXf1y1A.mp4/owKAHXf1y1A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/owKAHXf1y1A.mp4/owKAHXf1y1A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/owKAHXf1y1A.m3u8/owKAHXf1y1A.m3u8"}, "duration": 1142, "id": "owKAHXf1y1A", "title": "Introduction to parametrizing a surface with two parameters", "format": "mp4", "description": "Introduction to Parametrizing a Surface with Two Parameters", "path": "khan/math/multivariable-calculus/surface-integrals/surface_parametrization/introduction-to-parametrizing-a-surface-with-two-parameters/", "slug": "introduction-to-parametrizing-a-surface-with-two-parameters", "kind": "Video", "video_id": "owKAHXf1y1A", "keywords": "Introduction, to, Parametrizing, Surface, with, Two, Parameters", "youtube_id": "owKAHXf1y1A", "readable_id": "introduction-to-parametrizing-a-surface-with-two-parameters"}, "QI6x0KNxiCs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QI6x0KNxiCs.mp4/QI6x0KNxiCs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QI6x0KNxiCs.mp4/QI6x0KNxiCs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QI6x0KNxiCs.m3u8/QI6x0KNxiCs.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/mult-div-concept/the-idea-of-division/", "duration": 481, "id": "QI6x0KNxiCs", "title": "The idea of division", "format": "mp4", "description": "Use an array and understanding of multiplication to divide.", "slug": "the-idea-of-division", "kind": "Video", "video_id": "QI6x0KNxiCs", "keywords": "", "youtube_id": "QI6x0KNxiCs", "readable_id": "the-idea-of-division"}, "2s3aJfRr9gE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2s3aJfRr9gE.mp4/2s3aJfRr9gE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2s3aJfRr9gE.mp4/2s3aJfRr9gE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2s3aJfRr9gE.m3u8/2s3aJfRr9gE.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/information-entropy/", "duration": 425, "id": "2s3aJfRr9gE", "title": "Information entropy", "format": "mp4", "description": "Finally we arrive at our quantitative measure of entropy", "slug": "information-entropy", "kind": "Video", "video_id": "2s3aJfRr9gE", "keywords": "", "youtube_id": "2s3aJfRr9gE", "readable_id": "information-entropy"}, "y-O_B-wWivQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y-O_B-wWivQ.mp4/y-O_B-wWivQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y-O_B-wWivQ.mp4/y-O_B-wWivQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y-O_B-wWivQ.m3u8/y-O_B-wWivQ.m3u8"}, "path": "khan/math/basic-geo/basic-geo-lines/basic-geo-measuring-segments/measuring-segments/", "duration": 89, "id": "y-O_B-wWivQ", "title": "Measuring Line Segments", "format": "mp4", "description": "In this example of measuring a line segment, the numbers span across the positive and negative. Remember, line segments and points are the foundations of geometry, so this is an important concept.", "slug": "measuring-segments", "kind": "Video", "video_id": "y-O_B-wWivQ", "keywords": "", "youtube_id": "y-O_B-wWivQ", "readable_id": "measuring-segments"}, "vnNlvnnBX0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vnNlvnnBX0I.mp4/vnNlvnnBX0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vnNlvnnBX0I.mp4/vnNlvnnBX0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vnNlvnnBX0I.m3u8/vnNlvnnBX0I.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/exponential-decay-and-semi-log-plots/", "duration": 616, "id": "vnNlvnnBX0I", "title": "Exponential decay and semi-log plots", "format": "mp4", "description": "", "slug": "exponential-decay-and-semi-log-plots", "kind": "Video", "video_id": "vnNlvnnBX0I", "keywords": "", "youtube_id": "vnNlvnnBX0I", "readable_id": "exponential-decay-and-semi-log-plots"}, "jOw5_m54Bxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jOw5_m54Bxg.mp4/jOw5_m54Bxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jOw5_m54Bxg.mp4/jOw5_m54Bxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jOw5_m54Bxg.m3u8/jOw5_m54Bxg.m3u8"}, "duration": 226, "id": "jOw5_m54Bxg", "title": "Zach Kaplan - CEO of Inventables", "format": "mp4", "description": "Zach Kaplan, CEO of Inventables, discusses how the revolution of digital manufacturing and desktop publishing can impact a new generation of entrepreneurs.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/zach-kaplan/kauffman-zach-kaplan2/", "slug": "kauffman-zach-kaplan2", "kind": "Video", "video_id": "jOw5_m54Bxg", "keywords": "Zach Kaplan, Kauffman, Inventables", "youtube_id": "jOw5_m54Bxg", "readable_id": "kauffman-zach-kaplan2"}, "fGwSr7AolMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fGwSr7AolMI.mp4/fGwSr7AolMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fGwSr7AolMI.mp4/fGwSr7AolMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fGwSr7AolMI.m3u8/fGwSr7AolMI.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-8-13/", "duration": 154, "id": "fGwSr7AolMI", "title": "13 Strange function definition", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-13", "kind": "Video", "video_id": "fGwSr7AolMI", "keywords": "", "youtube_id": "fGwSr7AolMI", "readable_id": "sat-2008-may-8-13"}, "av947KCWf2U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/av947KCWf2U.mp4/av947KCWf2U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/av947KCWf2U.mp4/av947KCWf2U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/av947KCWf2U.m3u8/av947KCWf2U.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/ratio-test-convergence/", "duration": 539, "id": "av947KCWf2U", "title": "Ratio test", "format": "mp4", "description": "", "slug": "ratio-test-convergence", "kind": "Video", "video_id": "av947KCWf2U", "keywords": "", "youtube_id": "av947KCWf2U", "readable_id": "ratio-test-convergence"}, "eYBlfxGIk28": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eYBlfxGIk28.mp4/eYBlfxGIk28.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eYBlfxGIk28.mp4/eYBlfxGIk28.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eYBlfxGIk28.m3u8/eYBlfxGIk28.m3u8"}, "duration": 574, "id": "eYBlfxGIk28", "title": "Mortgage-backed securities II", "format": "mp4", "description": "Part II of the introduction to mortgage-backed securities", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/mortgage-backed-securities-ii/", "slug": "mortgage-backed-securities-ii", "kind": "Video", "video_id": "eYBlfxGIk28", "keywords": "finance, mortgage-backed, security, MBS, Khan", "youtube_id": "eYBlfxGIk28", "readable_id": "mortgage-backed-securities-ii"}, "Z0B1IyDeNLI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z0B1IyDeNLI.mp4/Z0B1IyDeNLI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z0B1IyDeNLI.mp4/Z0B1IyDeNLI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z0B1IyDeNLI.m3u8/Z0B1IyDeNLI.m3u8"}, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-fractions-of-shapes/filling-rectangles-with-squares/", "duration": 91, "id": "Z0B1IyDeNLI", "title": "Filling rectangles with squares", "format": "mp4", "description": "Learn how to fill rectangles with squares.", "slug": "filling-rectangles-with-squares", "kind": "Video", "video_id": "Z0B1IyDeNLI", "keywords": "", "youtube_id": "Z0B1IyDeNLI", "readable_id": "filling-rectangles-with-squares"}, "glEP04Pzap8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/glEP04Pzap8.mp4/glEP04Pzap8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/glEP04Pzap8.mp4/glEP04Pzap8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/glEP04Pzap8.m3u8/glEP04Pzap8.m3u8"}, "duration": 354, "id": "glEP04Pzap8", "title": "Dogs cats and bears in a pet store visual argument", "format": "mp4", "description": "", "path": "khan/math/algebra/linear_inequalities/structure-expressions-linear/dogs-cats-and-bears-in-a-pet-store-visual-argument/", "slug": "dogs-cats-and-bears-in-a-pet-store-visual-argument", "kind": "Video", "video_id": "glEP04Pzap8", "keywords": "", "youtube_id": "glEP04Pzap8", "readable_id": "dogs-cats-and-bears-in-a-pet-store-visual-argument"}, "-oFlAhtear4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-oFlAhtear4.mp4/-oFlAhtear4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-oFlAhtear4.mp4/-oFlAhtear4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-oFlAhtear4.m3u8/-oFlAhtear4.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimal-place-value-pre-alg/understanding-decimal-place-value-exercise/", "duration": 67, "id": "-oFlAhtear4", "title": "Decimals: choosing a number to represent place value", "format": "mp4", "description": "Let's decide the number of each place value to make the given decimal. We can do it together!", "slug": "understanding-decimal-place-value-exercise", "kind": "Video", "video_id": "-oFlAhtear4", "keywords": "", "youtube_id": "-oFlAhtear4", "readable_id": "understanding-decimal-place-value-exercise"}, "yfR36PMWegg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yfR36PMWegg.mp4/yfR36PMWegg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yfR36PMWegg.mp4/yfR36PMWegg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yfR36PMWegg.m3u8/yfR36PMWegg.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/photosynthesis/photosynthesis-light-reactions-and-photophosphorylation/", "duration": 1131, "id": "yfR36PMWegg", "title": "Photosynthesis: Light reactions and photophosphorylation", "format": "mp4", "description": "More detail on the light reactions and photophosphorylation", "slug": "photosynthesis-light-reactions-and-photophosphorylation", "kind": "Video", "video_id": "yfR36PMWegg", "keywords": "chlorophyll, photosynthesis, light, reactions, photophophorylation", "youtube_id": "yfR36PMWegg", "readable_id": "photosynthesis-light-reactions-and-photophosphorylation"}, "aj34f2Bg9Vw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aj34f2Bg9Vw.mp4/aj34f2Bg9Vw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aj34f2Bg9Vw.mp4/aj34f2Bg9Vw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aj34f2Bg9Vw.m3u8/aj34f2Bg9Vw.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-calculation-example/", "duration": 470, "id": "aj34f2Bg9Vw", "title": "Titration calculation example", "format": "mp4", "description": "", "slug": "titration-calculation-example", "kind": "Video", "video_id": "aj34f2Bg9Vw", "keywords": "", "youtube_id": "aj34f2Bg9Vw", "readable_id": "titration-calculation-example"}, "DKh16Th8x6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DKh16Th8x6o.mp4/DKh16Th8x6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DKh16Th8x6o.mp4/DKh16Th8x6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DKh16Th8x6o.m3u8/DKh16Th8x6o.m3u8"}, "path": "khan/math/pre-algebra/exponents-radicals/cube-root-tutorial/finding-cube-roots/", "duration": 258, "id": "DKh16Th8x6o", "title": "Finding cube roots", "format": "mp4", "description": "Learn how to find the cube root of -512.", "slug": "finding-cube-roots", "kind": "Video", "video_id": "DKh16Th8x6o", "keywords": "u16_l1_t2_we2, Finding, Cube, Roots", "youtube_id": "DKh16Th8x6o", "readable_id": "finding-cube-roots"}, "fwSGKbmuHFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fwSGKbmuHFI.mp4/fwSGKbmuHFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fwSGKbmuHFI.mp4/fwSGKbmuHFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fwSGKbmuHFI.m3u8/fwSGKbmuHFI.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-jay/sn1-sn2-e1-e2-reactions-secondary-alkyl-halides/", "duration": 656, "id": "fwSGKbmuHFI", "title": "Sn1 Sn2 E1 E2 reactions: Secondary alkyl halides", "format": "mp4", "description": "", "slug": "sn1-sn2-e1-e2-reactions-secondary-alkyl-halides", "kind": "Video", "video_id": "fwSGKbmuHFI", "keywords": "", "youtube_id": "fwSGKbmuHFI", "readable_id": "sn1-sn2-e1-e2-reactions-secondary-alkyl-halides"}, "S7CLLRHe8ik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S7CLLRHe8ik.mp4/S7CLLRHe8ik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S7CLLRHe8ik.mp4/S7CLLRHe8ik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S7CLLRHe8ik.m3u8/S7CLLRHe8ik.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/number-patterns/figuring-out-days-of-the-week/", "duration": 322, "id": "S7CLLRHe8ik", "title": "Using factors and multiples to figure out days of the week", "format": "mp4", "description": "Can you help us think of a mathematical way to determine what day of the week a certain number day falls on? You may say no....but wait! Watch this.", "slug": "figuring-out-days-of-the-week", "kind": "Video", "video_id": "S7CLLRHe8ik", "keywords": "", "youtube_id": "S7CLLRHe8ik", "readable_id": "figuring-out-days-of-the-week"}, "mIStB5X4U8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mIStB5X4U8M.mp4/mIStB5X4U8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mIStB5X4U8M.mp4/mIStB5X4U8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mIStB5X4U8M.m3u8/mIStB5X4U8M.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/prime_numbers/prime-numbers/", "duration": 493, "id": "mIStB5X4U8M", "title": "Prime numbers", "format": "mp4", "description": "What does it mean to be a prime number? Let's progress though some whole numbers and ask ourselves if they meet the criteria. What is the criteria you ask? Watch.", "slug": "prime-numbers", "kind": "Video", "video_id": "mIStB5X4U8M", "keywords": "prime, numbers, CC_4_OA_4", "youtube_id": "mIStB5X4U8M", "readable_id": "prime-numbers"}, "mZ-U7Qpkz8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mZ-U7Qpkz8Y.mp4/mZ-U7Qpkz8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mZ-U7Qpkz8Y.mp4/mZ-U7Qpkz8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mZ-U7Qpkz8Y.m3u8/mZ-U7Qpkz8Y.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/introduction-to-infrared-spectroscopy/", "duration": 565, "id": "mZ-U7Qpkz8Y", "title": "Introduction to infrared spectroscopy", "format": "mp4", "description": "", "slug": "introduction-to-infrared-spectroscopy", "kind": "Video", "video_id": "mZ-U7Qpkz8Y", "keywords": "", "youtube_id": "mZ-U7Qpkz8Y", "readable_id": "introduction-to-infrared-spectroscopy"}, "SPVqgkOZMAc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SPVqgkOZMAc.mp4/SPVqgkOZMAc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SPVqgkOZMAc.mp4/SPVqgkOZMAc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SPVqgkOZMAc.m3u8/SPVqgkOZMAc.m3u8"}, "duration": 508, "id": "SPVqgkOZMAc", "title": "2nd order linear homogeneous differential equations 2", "format": "mp4", "description": "Let's find the general solution!", "path": "khan/math/differential-equations/second-order-differential-equations/linear-homogeneous-2nd-order/2nd-order-linear-homogeneous-differential-equations-2/", "slug": "2nd-order-linear-homogeneous-differential-equations-2", "kind": "Video", "video_id": "SPVqgkOZMAc", "keywords": "2nd, Order, Linear, Homogeneous, Differential, Equations", "youtube_id": "SPVqgkOZMAc", "readable_id": "2nd-order-linear-homogeneous-differential-equations-2"}, "jvp0mtr1kFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jvp0mtr1kFM.mp4/jvp0mtr1kFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jvp0mtr1kFM.mp4/jvp0mtr1kFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jvp0mtr1kFM.m3u8/jvp0mtr1kFM.m3u8"}, "duration": 377, "id": "jvp0mtr1kFM", "title": "Examples rounding to the nearest 10 and 100", "format": "mp4", "description": "Round up to four-digit numbers to the nearest ten and hundred.", "path": "examples-rounding-to-the-nearest-10-and-100/", "slug": "examples-rounding-to-the-nearest-10-and-100", "kind": "Video", "video_id": "jvp0mtr1kFM", "keywords": "", "youtube_id": "jvp0mtr1kFM", "readable_id": "examples-rounding-to-the-nearest-10-and-100"}, "a1AhZoWTLUI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a1AhZoWTLUI.mp4/a1AhZoWTLUI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a1AhZoWTLUI.mp4/a1AhZoWTLUI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a1AhZoWTLUI.m3u8/a1AhZoWTLUI.m3u8"}, "duration": 697, "id": "a1AhZoWTLUI", "title": "Communists, Nationalists, and China's Revolutions", "format": "mp4", "description": "In which John Green teaches you about China's Revolutions. While the rest of the world was off having a couple of World Wars, China was busily uprooting the dynastic system that had ruled there for millennia. Most revolutions have some degree of tumult associated with them, but China's 20th century revolutions were REALLY disruptive. In 1911 and 1912, Chinese nationalists brought 3000 years of dynastic rule to an end. China plunged into chaos as warlords staked out regions of the country for themselves. The nationalists and communists joined forces briefly to bring the nation back together under the Chinese Republic, and then they quickly split and started fighting the Chinese Civil War. The fight between nationalists and communists went on for decades, and was interrupted by an alliance to fight the invading Japanese during World War II. After the World War II ended, the Chinese Civil War was back on. Mao and the communists were ultimately victorious, and Chiang Kai-Shek ended up in Taiwan. And then it got weird. Mao spent years repeatedly trying to purify the Communist Party and build up the new People's Republic of China with Rectifications, Anti Campaigns, Five Year Plans. the Great Leap Forward, and the Cultural Revolution. These had mixed results, to say the least. John will cover all this and more in this week's Crash Course World History.", "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-37/", "slug": "crash-course-world-history-37", "kind": "Video", "video_id": "a1AhZoWTLUI", "keywords": "crash course", "youtube_id": "a1AhZoWTLUI", "readable_id": "crash-course-world-history-37"}, "Y2B6j7poiKI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y2B6j7poiKI.mp4/Y2B6j7poiKI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y2B6j7poiKI.mp4/Y2B6j7poiKI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y2B6j7poiKI.m3u8/Y2B6j7poiKI.m3u8"}, "duration": 395, "id": "Y2B6j7poiKI", "title": "4 lifestyle changes to help manage hypertension", "format": "mp4", "description": "Remember that a good diet, exercise, losing weight, and quitting smoking can lower blood pressure! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/circulatory-system-diseases/hypertension/4-lifestyle-changes-to-help-manage-hypertension/", "slug": "4-lifestyle-changes-to-help-manage-hypertension", "kind": "Video", "video_id": "Y2B6j7poiKI", "keywords": "", "youtube_id": "Y2B6j7poiKI", "readable_id": "4-lifestyle-changes-to-help-manage-hypertension"}, "ahyWUV7AwKw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ahyWUV7AwKw.mp4/ahyWUV7AwKw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ahyWUV7AwKw.mp4/ahyWUV7AwKw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ahyWUV7AwKw.m3u8/ahyWUV7AwKw.m3u8"}, "duration": 201, "id": "ahyWUV7AwKw", "title": "Video games and violence", "format": "mp4", "description": "", "path": "khan/math/probability/statistical-studies/categorical-data/video-games-and-violence-bivariate-data/", "slug": "video-games-and-violence-bivariate-data", "kind": "Video", "video_id": "ahyWUV7AwKw", "keywords": "", "youtube_id": "ahyWUV7AwKw", "readable_id": "video-games-and-violence-bivariate-data"}, "vWsmp4o-qVg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vWsmp4o-qVg.mp4/vWsmp4o-qVg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vWsmp4o-qVg.mp4/vWsmp4o-qVg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vWsmp4o-qVg.m3u8/vWsmp4o-qVg.m3u8"}, "duration": 371, "id": "vWsmp4o-qVg", "title": "Space weather: Storms from the Sun", "format": "mp4", "description": "Space weather is direct product of our local star, the Sun. The Sun continuously sheds its skin, blowing a fierce wind of charged particles in all directions, including Earth's. From time to time, storms on the Sun's surface\u2014solar flares, coronal mass ejections\u2014toss off added masses of energy and ions. When that turbulence slams into Earth, it produces space weather. The consequences can be spectacular, from colorful auroras to satellite, power and communications failures.", "path": "space-weather/", "slug": "space-weather", "kind": "Video", "video_id": "vWsmp4o-qVg", "keywords": "", "youtube_id": "vWsmp4o-qVg", "readable_id": "space-weather"}, "rEtuPhl6930": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rEtuPhl6930.mp4/rEtuPhl6930.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rEtuPhl6930.mp4/rEtuPhl6930.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rEtuPhl6930.m3u8/rEtuPhl6930.m3u8"}, "duration": 463, "id": "rEtuPhl6930", "title": "Exponent rules part 2", "format": "mp4", "description": "2 more exponent rules with an introduction to composite problems", "path": "khan/math/pre-algebra/exponents-radicals/exponent-properties/exponent-rules-part-2/", "slug": "exponent-rules-part-2", "kind": "Video", "video_id": "rEtuPhl6930", "keywords": "Math, exponents, algebra, exponent, rules, khan, academy, CC_8_EE_1", "youtube_id": "rEtuPhl6930", "readable_id": "exponent-rules-part-2"}, "VnTlKcIigyY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VnTlKcIigyY.mp4/VnTlKcIigyY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VnTlKcIigyY.mp4/VnTlKcIigyY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VnTlKcIigyY.m3u8/VnTlKcIigyY.m3u8"}, "duration": 598, "id": "VnTlKcIigyY", "title": "Corporations and limited liability", "format": "mp4", "description": "Why people set up corporations", "path": "khan/economics-finance-domain/core-finance/taxes-topic/corporate-taxation/corporations-and-limited-liability/", "slug": "corporations-and-limited-liability", "kind": "Video", "video_id": "VnTlKcIigyY", "keywords": "limited, liability, corporations", "youtube_id": "VnTlKcIigyY", "readable_id": "corporations-and-limited-liability"}, "wRxzDOloS3o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wRxzDOloS3o.mp4/wRxzDOloS3o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wRxzDOloS3o.mp4/wRxzDOloS3o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wRxzDOloS3o.m3u8/wRxzDOloS3o.m3u8"}, "duration": 735, "id": "wRxzDOloS3o", "title": "3D path counting brain teaser", "format": "mp4", "description": "Extending the path counting to three dimensions", "path": "khan/math/recreational-math/puzzles/brain-teasers/3-d-path-counting-brain-teaser/", "slug": "3-d-path-counting-brain-teaser", "kind": "Video", "video_id": "wRxzDOloS3o", "keywords": "brain, teaser, trinomial, path, counting, dimension", "youtube_id": "wRxzDOloS3o", "readable_id": "3-d-path-counting-brain-teaser"}, "E5PndKebh70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E5PndKebh70.mp4/E5PndKebh70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E5PndKebh70.mp4/E5PndKebh70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E5PndKebh70.m3u8/E5PndKebh70.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/pressure-in-the-left-heart-part-3/", "duration": 782, "id": "E5PndKebh70", "title": "Pressure in the left heart - part 3", "format": "mp4", "description": "Watch the pressure in the left heart go up and down with every heart beat! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "pressure-in-the-left-heart-part-3", "kind": "Video", "video_id": "E5PndKebh70", "keywords": "", "youtube_id": "E5PndKebh70", "readable_id": "pressure-in-the-left-heart-part-3"}, "_nzaMQKpPLM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_nzaMQKpPLM.mp4/_nzaMQKpPLM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_nzaMQKpPLM.mp4/_nzaMQKpPLM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_nzaMQKpPLM.m3u8/_nzaMQKpPLM.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/ir-spectra-for-hydrocarbons/", "duration": 782, "id": "_nzaMQKpPLM", "title": "IR spectra for hydrocarbons", "format": "mp4", "description": "", "slug": "ir-spectra-for-hydrocarbons", "kind": "Video", "video_id": "_nzaMQKpPLM", "keywords": "", "youtube_id": "_nzaMQKpPLM", "readable_id": "ir-spectra-for-hydrocarbons"}, "Muh0cQVr4xk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Muh0cQVr4xk.mp4/Muh0cQVr4xk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Muh0cQVr4xk.mp4/Muh0cQVr4xk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Muh0cQVr4xk.m3u8/Muh0cQVr4xk.m3u8"}, "duration": 268, "id": "Muh0cQVr4xk", "title": "Mercy Otis Warren", "format": "mp4", "description": "In this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss Mercy Otis Warren and her role in the founding of the United States of America.", "path": "mercy-warren-intro/", "slug": "mercy-warren-intro", "kind": "Video", "video_id": "Muh0cQVr4xk", "keywords": "", "youtube_id": "Muh0cQVr4xk", "readable_id": "mercy-warren-intro"}, "hoa1RBk4dTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hoa1RBk4dTo.mp4/hoa1RBk4dTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hoa1RBk4dTo.mp4/hoa1RBk4dTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hoa1RBk4dTo.m3u8/hoa1RBk4dTo.m3u8"}, "path": "khan/math/geometry/basic-geometry/cross-sections/vertical-slice-of-rectangular-pyramid/", "duration": 210, "id": "hoa1RBk4dTo", "title": "Slice a rectangular pyramid", "format": "mp4", "description": "What happens when you slice vertically into a rectangular pyramid? What kind of geometric shape results?", "slug": "vertical-slice-of-rectangular-pyramid", "kind": "Video", "video_id": "hoa1RBk4dTo", "keywords": "", "youtube_id": "hoa1RBk4dTo", "readable_id": "vertical-slice-of-rectangular-pyramid"}, "c38H6UKt3_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c38H6UKt3_I.mp4/c38H6UKt3_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c38H6UKt3_I.mp4/c38H6UKt3_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c38H6UKt3_I.m3u8/c38H6UKt3_I.m3u8"}, "duration": 783, "id": "c38H6UKt3_I", "title": "Introduction to waves", "format": "mp4", "description": "Introduction to transverse and longitudinal waves", "path": "khan/science/physics/mechanical-waves-and-sound/mechanical-waves/introduction-to-waves/", "slug": "introduction-to-waves", "kind": "Video", "video_id": "c38H6UKt3_I", "keywords": "wave, transverse, compression, longitudinal", "youtube_id": "c38H6UKt3_I", "readable_id": "introduction-to-waves"}, "V0xounKGEXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V0xounKGEXs.mp4/V0xounKGEXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V0xounKGEXs.mp4/V0xounKGEXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V0xounKGEXs.m3u8/V0xounKGEXs.m3u8"}, "path": "khan/math/geometry/analytic-geometry-topic/parallel-and-perpendicular/parallel-and-perpendicular-lines-intro/", "duration": 128, "id": "V0xounKGEXs", "title": "Parallel and perpendicular lines intro", "format": "mp4", "description": "Do the two lines intersect or stay apart? If they intersect, do they do so thereby creating a 90 degree angle? These are the kinds of questions we ask ourselves when we learn about parallel and perpendicular lines.", "slug": "parallel-and-perpendicular-lines-intro", "kind": "Video", "video_id": "V0xounKGEXs", "keywords": "", "youtube_id": "V0xounKGEXs", "readable_id": "parallel-and-perpendicular-lines-intro"}, "ZMLFfTX615w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZMLFfTX615w.mp4/ZMLFfTX615w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZMLFfTX615w.mp4/ZMLFfTX615w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZMLFfTX615w.m3u8/ZMLFfTX615w.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/multiplying-binomials/", "duration": 347, "id": "ZMLFfTX615w", "title": "FOIL for multiplying binomials", "format": "mp4", "description": "FOIL method for multiplying binomials", "slug": "multiplying-binomials", "kind": "Video", "video_id": "ZMLFfTX615w", "keywords": "u11_l2_t3_we3, Multiplying, Binomials, CC_39336_A-APR_1", "youtube_id": "ZMLFfTX615w", "readable_id": "multiplying-binomials"}, "LKv0hRyiGCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LKv0hRyiGCY.mp4/LKv0hRyiGCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LKv0hRyiGCY.mp4/LKv0hRyiGCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LKv0hRyiGCY.m3u8/LKv0hRyiGCY.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/brunelleschi-pazzi-chapel-santa-croce-florence-completed-1460s/", "duration": 203, "id": "LKv0hRyiGCY", "title": "Brunelleschi, Pazzi Chapel", "format": "mp4", "description": "Filippo Brunelleschi, Pazzi Chapel, Santa Croce, Florence, begun 1420s, completed 1460s Speakers: Dr. Beth Harris and Dt. Steven Zucker", "slug": "brunelleschi-pazzi-chapel-santa-croce-florence-completed-1460s", "kind": "Video", "video_id": "LKv0hRyiGCY", "keywords": "smarthistory, khan academy, santa croce, florence, brunelleschi, pazzi chapel, Renaissance, architecture, Early Renaissance", "youtube_id": "LKv0hRyiGCY", "readable_id": "brunelleschi-pazzi-chapel-santa-croce-florence-completed-1460s"}, "R5CRZONOHCU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R5CRZONOHCU.mp4/R5CRZONOHCU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R5CRZONOHCU.mp4/R5CRZONOHCU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R5CRZONOHCU.m3u8/R5CRZONOHCU.m3u8"}, "duration": 613, "id": "R5CRZONOHCU", "title": "Acceleration due to gravity at the space station", "format": "mp4", "description": "What is the acceleration due to gravity at the space station", "path": "khan/science/physics/newton-gravitation/gravity-newtonian/acceleration-due-to-gravity-at-the-space-station/", "slug": "acceleration-due-to-gravity-at-the-space-station", "kind": "Video", "video_id": "R5CRZONOHCU", "keywords": "newton, law, gravitation", "youtube_id": "R5CRZONOHCU", "readable_id": "acceleration-due-to-gravity-at-the-space-station"}, "_E9fG8BYcBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_E9fG8BYcBo.mp4/_E9fG8BYcBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_E9fG8BYcBo.mp4/_E9fG8BYcBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_E9fG8BYcBo.m3u8/_E9fG8BYcBo.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decomposing-fractions-pre-alg/decomposing-a-fraction-visually/", "duration": 299, "id": "_E9fG8BYcBo", "title": "Decomposing a fraction visually", "format": "mp4", "description": "It helps to visually understand what decomposing a fraction looks like. We're pretty sure you're going to like this.", "slug": "decomposing-a-fraction-visually", "kind": "Video", "video_id": "_E9fG8BYcBo", "keywords": "", "youtube_id": "_E9fG8BYcBo", "readable_id": "decomposing-a-fraction-visually"}, "EtTGyLsR7lk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EtTGyLsR7lk.mp4/EtTGyLsR7lk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EtTGyLsR7lk.mp4/EtTGyLsR7lk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EtTGyLsR7lk.m3u8/EtTGyLsR7lk.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/second-empire/charles-garnier-the-paris-op-ra-1860-75/", "duration": 289, "id": "EtTGyLsR7lk", "title": "Garnier, Paris Op\u00e9ra", "format": "mp4", "description": "Charles Garnier, The Paris Op\u00e9ra, 1860-75", "slug": "charles-garnier-the-paris-op-ra-1860-75", "kind": "Video", "video_id": "EtTGyLsR7lk", "keywords": "Garnier, Paris Opera, Smarthistory, Art History, Paris, Opera, Haussmann", "youtube_id": "EtTGyLsR7lk", "readable_id": "charles-garnier-the-paris-op-ra-1860-75"}, "fRTx45FJWto": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fRTx45FJWto.mp4/fRTx45FJWto.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fRTx45FJWto.mp4/fRTx45FJWto.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fRTx45FJWto.m3u8/fRTx45FJWto.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-5/", "duration": 659, "id": "fRTx45FJWto", "title": "GMAT: Math 5", "format": "mp4", "description": "24-29, pgs. 155-156", "slug": "gmat-math-5", "kind": "Video", "video_id": "fRTx45FJWto", "keywords": "GMAT, math, problem, solving", "youtube_id": "fRTx45FJWto", "readable_id": "gmat-math-5"}, "2VeqrZ_PMiY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2VeqrZ_PMiY.mp4/2VeqrZ_PMiY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2VeqrZ_PMiY.mp4/2VeqrZ_PMiY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2VeqrZ_PMiY.m3u8/2VeqrZ_PMiY.m3u8"}, "duration": 224, "id": "2VeqrZ_PMiY", "title": "Substitution method 2", "format": "mp4", "description": "Substitution Method 2", "path": "substitution-method-2/", "slug": "substitution-method-2", "kind": "Video", "video_id": "2VeqrZ_PMiY", "keywords": "u14_l2_t1_we2, Substitution, Method, CC_8_EE_8_a, CC_8_EE_8_b, CC_8_F_3, CC_39336_A-REI_6", "youtube_id": "2VeqrZ_PMiY", "readable_id": "substitution-method-2"}, "HBJSxi9Pgo8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HBJSxi9Pgo8.mp4/HBJSxi9Pgo8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HBJSxi9Pgo8.mp4/HBJSxi9Pgo8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HBJSxi9Pgo8.m3u8/HBJSxi9Pgo8.m3u8"}, "duration": 317, "id": "HBJSxi9Pgo8", "title": "Conservation of sculpture and decorative arts", "format": "mp4", "description": "Learn about the work of the Getty Museum's object conservation team. Love art? Follow us on Google+", "path": "conservation-of-sculpture-decorative-arts/", "slug": "conservation-of-sculpture-decorative-arts", "kind": "Video", "video_id": "HBJSxi9Pgo8", "keywords": "", "youtube_id": "HBJSxi9Pgo8", "readable_id": "conservation-of-sculpture-decorative-arts"}, "H1E_Nwj2dro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H1E_Nwj2dro.mp4/H1E_Nwj2dro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H1E_Nwj2dro.mp4/H1E_Nwj2dro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H1E_Nwj2dro.m3u8/H1E_Nwj2dro.m3u8"}, "duration": 59, "id": "H1E_Nwj2dro", "title": "Can we clone extinct dinosaurs from DNA preserved in their fossils?", "format": "mp4", "description": "Paleontologists and molecular biologists have searched for a couple of decades to find and replicate DNA from some non-avian dinosaur fossil. But to date, no results have been obtained, either from fossil bones or teeth preserved in sediments or from a fossil preserved in amber, as was done in the film, Jurassic Park.\nTo successfully isolate DNA from a long-extinct dinosaur, let alone clone one, scientists would have to overcome numerous serious challenges, including contamination and deterioration of the original DNA.", "path": "clone-dinosaurs/", "slug": "clone-dinosaurs", "kind": "Video", "video_id": "H1E_Nwj2dro", "keywords": "", "youtube_id": "H1E_Nwj2dro", "readable_id": "clone-dinosaurs"}, "FvsSPJoJB3k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FvsSPJoJB3k.mp4/FvsSPJoJB3k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FvsSPJoJB3k.mp4/FvsSPJoJB3k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FvsSPJoJB3k.m3u8/FvsSPJoJB3k.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/apollonius-boxer-at-rest-c-100-b-c-e/", "duration": 254, "id": "FvsSPJoJB3k", "title": "Apollonius, Seated Boxer", "format": "mp4", "description": "Apollonius, Boxer at Rest, c. 100 B.C.E., bronze, Hellenistic Period (Palazzo Massimo, Museo Nazionale Romano, Rome). Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "apollonius-boxer-at-rest-c-100-b-c-e", "kind": "Video", "video_id": "FvsSPJoJB3k", "keywords": "Apollonius, Boxer at Rest, Boxer, Boxing, 100 B.C.E., bronze, Palazzo Massimo, Museo Nazionale Romano, Rome, Greek, Hellenistic, sculpture, art, art history", "youtube_id": "FvsSPJoJB3k", "readable_id": "apollonius-boxer-at-rest-c-100-b-c-e"}, "wRBMmiNHQaE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wRBMmiNHQaE.mp4/wRBMmiNHQaE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wRBMmiNHQaE.mp4/wRBMmiNHQaE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wRBMmiNHQaE.m3u8/wRBMmiNHQaE.m3u8"}, "duration": 291, "id": "wRBMmiNHQaE", "title": "Proof: Vertical angles are equal", "format": "mp4", "description": "Proving that vertical angles are equal", "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/proof-vertical-angles-are-equal/", "slug": "proof-vertical-angles-are-equal", "kind": "Video", "video_id": "wRBMmiNHQaE", "keywords": "Proof, Vertical, Angles, are, Equal", "youtube_id": "wRBMmiNHQaE", "readable_id": "proof-vertical-angles-are-equal"}, "be9rz_HOnXI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/be9rz_HOnXI.mp4/be9rz_HOnXI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/be9rz_HOnXI.mp4/be9rz_HOnXI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/be9rz_HOnXI.m3u8/be9rz_HOnXI.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/giotto-the-entombment-of-mary-1310/", "duration": 236, "id": "be9rz_HOnXI", "title": "Giotto, The Entombment of Mary", "format": "mp4", "description": "Giotto, The Entombment of Mary, 1310, tempera on poplar, 75 x 179 cm (Gem\u00e4ldegalerie, Kaiser Friedrich-Museums-Verein, Berlin)", "slug": "giotto-the-entombment-of-mary-1310", "kind": "Video", "video_id": "be9rz_HOnXI", "keywords": "Giotto, Entombment, GAP, Google Art Project, Khan Academy, Smarthistory, Gem\u00e4ldegalerie, Tuscany, Italian, Proto-Renaissance, Medieval, Middle Ages, 14th century, fourteenth century, Italy, chiaroscuro, emotion, OER", "youtube_id": "be9rz_HOnXI", "readable_id": "giotto-the-entombment-of-mary-1310"}, "NDwX4zm_0kc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NDwX4zm_0kc.mp4/NDwX4zm_0kc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NDwX4zm_0kc.mp4/NDwX4zm_0kc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NDwX4zm_0kc.m3u8/NDwX4zm_0kc.m3u8"}, "duration": 325, "id": "NDwX4zm_0kc", "title": "Martha Washington", "format": "mp4", "description": "In this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss Martha Washington and her involvement in the founding of the United States of America.", "path": "martha-washinton-intro/", "slug": "martha-washinton-intro", "kind": "Video", "video_id": "NDwX4zm_0kc", "keywords": "", "youtube_id": "NDwX4zm_0kc", "readable_id": "martha-washinton-intro"}, "1iAxhc6EflI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1iAxhc6EflI.mp4/1iAxhc6EflI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1iAxhc6EflI.mp4/1iAxhc6EflI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1iAxhc6EflI.m3u8/1iAxhc6EflI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/collision-theory/", "duration": 528, "id": "1iAxhc6EflI", "title": "Collision theory", "format": "mp4", "description": "", "slug": "collision-theory", "kind": "Video", "video_id": "1iAxhc6EflI", "keywords": "", "youtube_id": "1iAxhc6EflI", "readable_id": "collision-theory"}, "ssY1dFl7d30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ssY1dFl7d30.mp4/ssY1dFl7d30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ssY1dFl7d30.mp4/ssY1dFl7d30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ssY1dFl7d30.m3u8/ssY1dFl7d30.m3u8"}, "duration": 65, "id": "ssY1dFl7d30", "title": "Multiplying monomials", "format": "mp4", "description": "Multiplying Monomials", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-monomials/multiplying-monomials/", "slug": "multiplying-monomials", "kind": "Video", "video_id": "ssY1dFl7d30", "keywords": "u11_l2_t3_we1, Multiplying, Monomials, CC_3_G_2, CC_3_MD_7, CC_7_EE_1, CC_8_EE_1, CC_39336_A-APR_1", "youtube_id": "ssY1dFl7d30", "readable_id": "multiplying-monomials"}, "gKywkLHV6Ko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gKywkLHV6Ko.mp4/gKywkLHV6Ko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gKywkLHV6Ko.mp4/gKywkLHV6Ko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gKywkLHV6Ko.m3u8/gKywkLHV6Ko.m3u8"}, "duration": 209, "id": "gKywkLHV6Ko", "title": "Percent word problem example 3", "format": "mp4", "description": "You're given the percent in this example and asked to find the whole number represented by the percent.", "path": "percent-word-problems-1-example-2/", "slug": "percent-word-problems-1-example-2", "kind": "Video", "video_id": "gKywkLHV6Ko", "keywords": "", "youtube_id": "gKywkLHV6Ko", "readable_id": "percent-word-problems-1-example-2"}, "vDqOoI-4Z6M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vDqOoI-4Z6M.mp4/vDqOoI-4Z6M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vDqOoI-4Z6M.mp4/vDqOoI-4Z6M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vDqOoI-4Z6M.m3u8/vDqOoI-4Z6M.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/feel-for-equations-and-inequalit/variables-expressions-and-equations/", "duration": 415, "id": "vDqOoI-4Z6M", "title": "Variables, expressions, and equations", "format": "mp4", "description": "This video will give you a great understanding of variables, expressions, and equations. If you've struggled with them before, this one may just do the trick!", "slug": "variables-expressions-and-equations", "kind": "Video", "video_id": "vDqOoI-4Z6M", "keywords": "Variables, Expressions, and, Equations", "youtube_id": "vDqOoI-4Z6M", "readable_id": "variables-expressions-and-equations"}, "nLi5-KKcmY0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nLi5-KKcmY0.mp4/nLi5-KKcmY0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nLi5-KKcmY0.mp4/nLi5-KKcmY0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nLi5-KKcmY0.m3u8/nLi5-KKcmY0.m3u8"}, "duration": 724, "id": "nLi5-KKcmY0", "title": "Fall of Rome the Roman Empire... in the 15th Century", "format": "mp4", "description": "In which John Green teaches you about the fall of the Roman Empire, which happened considerably later than you may have been told. While the Western Roman Empire fell to barbarians in 476 CE, the Byzantines in Constantinople continued the Eastern Empire nicely, calling themselves Romans for a further 1000 years. Find out what Justinian and the rest of the Byzantine emperors were up to over there, and how the Roman Empire dragged out its famous Decline well into medieval times. In addition to all this, you'll learn about ancient sports riots and hipster barbarians, too.", "path": "khan/humanities/history/crashcourse-worldhistory/whats-god-got-to-do-with-it-2/crash-course-world-history-12/", "slug": "crash-course-world-history-12", "kind": "Video", "video_id": "nLi5-KKcmY0", "keywords": "crash course", "youtube_id": "nLi5-KKcmY0", "readable_id": "crash-course-world-history-12"}, "9wOalujeZf4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9wOalujeZf4.mp4/9wOalujeZf4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9wOalujeZf4.mp4/9wOalujeZf4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9wOalujeZf4.m3u8/9wOalujeZf4.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/graphs-using-slope-intercept-form/", "duration": 671, "id": "9wOalujeZf4", "title": "Slope-intercept equation from a graph examples", "format": "mp4", "description": "", "slug": "graphs-using-slope-intercept-form", "kind": "Video", "video_id": "9wOalujeZf4", "keywords": "Graphs, Using, Slope, Intercept, Form, CC_39336_F-IF_7_a", "youtube_id": "9wOalujeZf4", "readable_id": "graphs-using-slope-intercept-form"}, "ZiqHJwzv_HI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZiqHJwzv_HI.mp4/ZiqHJwzv_HI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZiqHJwzv_HI.mp4/ZiqHJwzv_HI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZiqHJwzv_HI.m3u8/ZiqHJwzv_HI.m3u8"}, "duration": 227, "id": "ZiqHJwzv_HI", "title": "Measure of circumscribed angle", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/central-inscribed-circumscribed/measure-of-circumscribed-angle/", "slug": "measure-of-circumscribed-angle", "kind": "Video", "video_id": "ZiqHJwzv_HI", "keywords": "", "youtube_id": "ZiqHJwzv_HI", "readable_id": "measure-of-circumscribed-angle"}, "MT4niL7TCLY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MT4niL7TCLY.mp4/MT4niL7TCLY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MT4niL7TCLY.mp4/MT4niL7TCLY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MT4niL7TCLY.m3u8/MT4niL7TCLY.m3u8"}, "duration": 126, "id": "MT4niL7TCLY", "title": "Louis Raemaekers, \"Tegen de Tariefwet, Vliegt niet in't Web!\"", "format": "mp4", "description": "For more information, please visit\u00a0http://www.moma.org/1913", "path": "raemaekers-tegen-de-tariefwet/", "slug": "raemaekers-tegen-de-tariefwet", "kind": "Video", "video_id": "MT4niL7TCLY", "keywords": "", "youtube_id": "MT4niL7TCLY", "readable_id": "raemaekers-tegen-de-tariefwet"}, "sMrm4g6Aj4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sMrm4g6Aj4Y.mp4/sMrm4g6Aj4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sMrm4g6Aj4Y.mp4/sMrm4g6Aj4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sMrm4g6Aj4Y.m3u8/sMrm4g6Aj4Y.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/aromatic-stability/aromatic-stability-v/", "duration": 567, "id": "sMrm4g6Aj4Y", "title": "Aromatic stability V", "format": "mp4", "description": "", "slug": "aromatic-stability-v", "kind": "Video", "video_id": "sMrm4g6Aj4Y", "keywords": "", "youtube_id": "sMrm4g6Aj4Y", "readable_id": "aromatic-stability-v"}, "BWs-ONRDDG4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BWs-ONRDDG4.mp4/BWs-ONRDDG4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BWs-ONRDDG4.mp4/BWs-ONRDDG4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BWs-ONRDDG4.m3u8/BWs-ONRDDG4.m3u8"}, "duration": 563, "id": "BWs-ONRDDG4", "title": "Cepheid variables 1", "format": "mp4", "description": "Cepheid Variables 1", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/cepheid-variables/cepheid-variables-1/", "slug": "cepheid-variables-1", "kind": "Video", "video_id": "BWs-ONRDDG4", "keywords": "Cepheid, Variables, Henrietta, Swan, leavitt, magellanic, cloud", "youtube_id": "BWs-ONRDDG4", "readable_id": "cepheid-variables-1"}, "xoUppFlif04": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xoUppFlif04.mp4/xoUppFlif04.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xoUppFlif04.mp4/xoUppFlif04.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xoUppFlif04.m3u8/xoUppFlif04.m3u8"}, "path": "khan/science/physics/oscillatory-motion/harmonic-motion/harmonic-motion-part-2-calculus/", "duration": 586, "id": "xoUppFlif04", "title": "Harmonic motion part 2 (calculus)", "format": "mp4", "description": "We test whether Acos(wt) can describe the motion of the mass on a spring by substituting into the differential equation F=-kx", "slug": "harmonic-motion-part-2-calculus", "kind": "Video", "video_id": "xoUppFlif04", "keywords": "Harmonic, Motion, Differential, Equation, spring", "youtube_id": "xoUppFlif04", "readable_id": "harmonic-motion-part-2-calculus"}, "lK5nCBCr9-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lK5nCBCr9-A.mp4/lK5nCBCr9-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lK5nCBCr9-A.mp4/lK5nCBCr9-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lK5nCBCr9-A.m3u8/lK5nCBCr9-A.m3u8"}, "path": "khan/math/algebra/algebra-functions/average_rate_of_change/average-rate-of-change-example-2/", "duration": 259, "id": "lK5nCBCr9-A", "title": "Average rate of change word problem example", "format": "mp4", "description": "", "slug": "average-rate-of-change-example-2", "kind": "Video", "video_id": "lK5nCBCr9-A", "keywords": "", "youtube_id": "lK5nCBCr9-A", "readable_id": "average-rate-of-change-example-2"}, "Tmt4zrDK3dA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tmt4zrDK3dA.mp4/Tmt4zrDK3dA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tmt4zrDK3dA.mp4/Tmt4zrDK3dA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tmt4zrDK3dA.m3u8/Tmt4zrDK3dA.m3u8"}, "duration": 529, "id": "Tmt4zrDK3dA", "title": "Species", "format": "mp4", "description": "What a species is and isn't. Ligers, tiglons, mule, hinnies, and dogs", "path": "khan/science/biology/her/tree-of-life/species/", "slug": "species", "kind": "Video", "video_id": "Tmt4zrDK3dA", "keywords": "taxonomy", "youtube_id": "Tmt4zrDK3dA", "readable_id": "species"}, "qjZnIpZ-EcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qjZnIpZ-EcY.mp4/qjZnIpZ-EcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qjZnIpZ-EcY.mp4/qjZnIpZ-EcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qjZnIpZ-EcY.m3u8/qjZnIpZ-EcY.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e1-elimination-regioselectivity-and-stereoselectivity/", "duration": 627, "id": "qjZnIpZ-EcY", "title": "E1 elimination: Regioselectivity and stereoselectivity", "format": "mp4", "description": "", "slug": "e1-elimination-regioselectivity-and-stereoselectivity", "kind": "Video", "video_id": "qjZnIpZ-EcY", "keywords": "", "youtube_id": "qjZnIpZ-EcY", "readable_id": "e1-elimination-regioselectivity-and-stereoselectivity"}, "3KbEACrLCJU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3KbEACrLCJU.mp4/3KbEACrLCJU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3KbEACrLCJU.mp4/3KbEACrLCJU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3KbEACrLCJU.m3u8/3KbEACrLCJU.m3u8"}, "path": "khan/partner-content/exploratorium/light-and-color/colored-shadows/colored-shadows-yellow-and-cyan-solution/", "duration": 63, "id": "3KbEACrLCJU", "title": "Yellow and cyan solution", "format": "mp4", "description": "Each color you see comes from the pencil blocking one of the lights and the other two filling in the shadow.", "slug": "colored-shadows-yellow-and-cyan-solution", "kind": "Video", "video_id": "3KbEACrLCJU", "keywords": "", "youtube_id": "3KbEACrLCJU", "readable_id": "colored-shadows-yellow-and-cyan-solution"}, "jWVdmanh8w4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jWVdmanh8w4.mp4/jWVdmanh8w4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jWVdmanh8w4.mp4/jWVdmanh8w4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jWVdmanh8w4.m3u8/jWVdmanh8w4.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/creation-complex-elements/bhp-new-chemical-elements/", "duration": 171, "id": "jWVdmanh8w4", "title": "Threshold 3: New Chemical Elements", "format": "mp4", "description": "Large stars die, and then explode into massive supernovae. This scatters all the elements of the periodic table throughout the Universe, which results in Threshold 3.", "slug": "bhp-new-chemical-elements", "kind": "Video", "video_id": "jWVdmanh8w4", "keywords": "", "youtube_id": "jWVdmanh8w4", "readable_id": "bhp-new-chemical-elements"}, "yQtUyBrRBx4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yQtUyBrRBx4.mp4/yQtUyBrRBx4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yQtUyBrRBx4.mp4/yQtUyBrRBx4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yQtUyBrRBx4.m3u8/yQtUyBrRBx4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets/equity-vs-debt/", "duration": 834, "id": "yQtUyBrRBx4", "title": "Equity vs. debt", "format": "mp4", "description": "Debt vs. Equity. Market Capitalization, Asset Value, and Enterprise Value.", "slug": "equity-vs-debt", "kind": "Video", "video_id": "yQtUyBrRBx4", "keywords": "equity, debt, ipo, enterprise, value, asset, liability", "youtube_id": "yQtUyBrRBx4", "readable_id": "equity-vs-debt"}, "mBMAMIFw9n4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mBMAMIFw9n4.mp4/mBMAMIFw9n4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mBMAMIFw9n4.mp4/mBMAMIFw9n4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mBMAMIFw9n4.m3u8/mBMAMIFw9n4.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/cosmological-argument-part-2/", "duration": 415, "id": "mBMAMIFw9n4", "title": "Religion: Cosmological argument part 2", "format": "mp4", "description": "Part 2 of a pair. Tim moves on to the version of the Cosmological Argument for the existence of God called 'the Modal Argument.' The idea is that all the contingent facts about the world need to be explained by some necessary fact, and that necessary fact is that God exists.\n\nSpeaker: Dr.\u00a0Timothy Yenter, Assistant Professor of Philosophy, University of Mississippi", "slug": "cosmological-argument-part-2", "kind": "Video", "video_id": "mBMAMIFw9n4", "keywords": "", "youtube_id": "mBMAMIFw9n4", "readable_id": "cosmological-argument-part-2"}, "J4DdH8VBn88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J4DdH8VBn88.mp4/J4DdH8VBn88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J4DdH8VBn88.mp4/J4DdH8VBn88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J4DdH8VBn88.m3u8/J4DdH8VBn88.m3u8"}, "path": "khan/partner-content/exploratorium/exploratorium-chemistry/penny-battery/penny-battery-challenge-1/", "duration": 31, "id": "J4DdH8VBn88", "title": "Challenge: Design a more powerful battery", "format": "mp4", "description": "So now you know how to light a red LED. What about a blue one? Hint: a blue LED requires more power.", "slug": "penny-battery-challenge-1", "kind": "Video", "video_id": "J4DdH8VBn88", "keywords": "", "youtube_id": "J4DdH8VBn88", "readable_id": "penny-battery-challenge-1"}, "gm87omItizk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gm87omItizk.mp4/gm87omItizk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gm87omItizk.mp4/gm87omItizk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gm87omItizk.m3u8/gm87omItizk.m3u8"}, "duration": 199, "id": "gm87omItizk", "title": "Volume in unit cubes by decomposing shape", "format": "mp4", "description": "Find the volume of an irregular 3D figure made up a unit cubes by dividing the figure into two rectangular prisms and finding the volume of each part.", "path": "volume-in-unit-cubes-by-decomposing-shape/", "slug": "volume-in-unit-cubes-by-decomposing-shape", "kind": "Video", "video_id": "gm87omItizk", "keywords": "", "youtube_id": "gm87omItizk", "readable_id": "volume-in-unit-cubes-by-decomposing-shape"}, "WR2R_wrdEVY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WR2R_wrdEVY.mp4/WR2R_wrdEVY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WR2R_wrdEVY.mp4/WR2R_wrdEVY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WR2R_wrdEVY.m3u8/WR2R_wrdEVY.m3u8"}, "duration": 86, "id": "WR2R_wrdEVY", "title": "Constructing a perpendicular bisector using a compass and straightedge", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/geo-bisectors/constructing-a-perpendicular-bisector-using-a-compass-and-straightedge/", "slug": "constructing-a-perpendicular-bisector-using-a-compass-and-straightedge", "kind": "Video", "video_id": "WR2R_wrdEVY", "keywords": "", "youtube_id": "WR2R_wrdEVY", "readable_id": "constructing-a-perpendicular-bisector-using-a-compass-and-straightedge"}, "G8lI6niHjKU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G8lI6niHjKU.mp4/G8lI6niHjKU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G8lI6niHjKU.mp4/G8lI6niHjKU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G8lI6niHjKU.m3u8/G8lI6niHjKU.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2012/khan-dl-week-3-vannesa-melvin-greta/", "duration": 135, "id": "G8lI6niHjKU", "title": "DLab: Students present their reverse engineering project", "format": "mp4", "description": "", "slug": "khan-dl-week-3-vannesa-melvin-greta", "kind": "Video", "video_id": "G8lI6niHjKU", "keywords": "", "youtube_id": "G8lI6niHjKU", "readable_id": "khan-dl-week-3-vannesa-melvin-greta"}, "y_9X9LpqDBs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y_9X9LpqDBs.mp4/y_9X9LpqDBs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y_9X9LpqDBs.mp4/y_9X9LpqDBs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y_9X9LpqDBs.m3u8/y_9X9LpqDBs.m3u8"}, "duration": 250, "id": "y_9X9LpqDBs", "title": "Kurt Schwitters' wartime portraits", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nAfter his work was condemned as \u201cdegenerate\u201d by the Nazi government, German painter, sculptor, typographer, and writer Kurt Schwitters chose to leave Germany in 1937, escaping first to Norway and eventually to Britain. He was one of many German exiles, including a significant number of artists, who were interned in a camp on the Isle of Man during the Second World War. During his time in the camp and for many years later, Schwitters made hundreds of portraits in an effort to earn a living and document the lives and faces of those not on the front line.\n\nAfter his release in 1941 he became closely involved with the London art scene, and continued to make portraits of those around him. Take a look at how Schwitters captured the effects of conflict on those beyond the field of battle. What role do you think artists have in documenting not just conflicts and events, but the state of society around them?\u00a0\n\nLearn more about Kurt Schwitters here.\n", "path": "kurt-schwitters-portraits/", "slug": "kurt-schwitters-portraits", "kind": "Video", "video_id": "y_9X9LpqDBs", "keywords": "Tate", "youtube_id": "y_9X9LpqDBs", "readable_id": "kurt-schwitters-portraits"}, "enr7JqvehJs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/enr7JqvehJs.mp4/enr7JqvehJs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/enr7JqvehJs.mp4/enr7JqvehJs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/enr7JqvehJs.m3u8/enr7JqvehJs.m3u8"}, "duration": 586, "id": "enr7JqvehJs", "title": "Calculating dot and cross products with unit vector notation", "format": "mp4", "description": "Calculating the dot and cross products when vectors are presented in their x, y, and z (or i,j, and k) components.", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/calculating-dot-and-cross-products-with-unit-vector-notation/", "slug": "calculating-dot-and-cross-products-with-unit-vector-notation", "kind": "Video", "video_id": "enr7JqvehJs", "keywords": "vector, dot, cross, product", "youtube_id": "enr7JqvehJs", "readable_id": "calculating-dot-and-cross-products-with-unit-vector-notation"}, "tFhBAeZVTMw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tFhBAeZVTMw.mp4/tFhBAeZVTMw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tFhBAeZVTMw.mp4/tFhBAeZVTMw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tFhBAeZVTMw.m3u8/tFhBAeZVTMw.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/area-of-a-parallelogram/", "duration": 342, "id": "tFhBAeZVTMw", "title": "Area of a parallelogram", "format": "mp4", "description": "Guess what's interesting about the opposite sides of a parallelogram? That's right....they are parallel! Let's find the area--base times height", "slug": "area-of-a-parallelogram", "kind": "Video", "video_id": "tFhBAeZVTMw", "keywords": "geometry", "youtube_id": "tFhBAeZVTMw", "readable_id": "area-of-a-parallelogram"}, "gZu9Hhz23EY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gZu9Hhz23EY.mp4/gZu9Hhz23EY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gZu9Hhz23EY.mp4/gZu9Hhz23EY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gZu9Hhz23EY.m3u8/gZu9Hhz23EY.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/proton-nmr-practice-2/", "duration": 811, "id": "gZu9Hhz23EY", "title": "Proton NMR practice 2", "format": "mp4", "description": "", "slug": "proton-nmr-practice-2", "kind": "Video", "video_id": "gZu9Hhz23EY", "keywords": "", "youtube_id": "gZu9Hhz23EY", "readable_id": "proton-nmr-practice-2"}, "__pl88NO9Jw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/__pl88NO9Jw.mp4/__pl88NO9Jw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/__pl88NO9Jw.mp4/__pl88NO9Jw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/__pl88NO9Jw.m3u8/__pl88NO9Jw.m3u8"}, "duration": 263, "id": "__pl88NO9Jw", "title": "Bronze doors, Saint Michael's, Hildesheim, commissioned by Bishop Bernward, 1015", "format": "mp4", "description": "Bronze doors, 1015, commissioned by Bishop Bernward for Saint Michael's, Hildesheim (Germany).\n\nA conversation with Dr. Nancy Ross and Jennifer Freeman.\n", "path": "khan/humanities/medieval-world/latin-western-europe/ottonian1/saint-michaels-hildesheim/", "slug": "saint-michaels-hildesheim", "kind": "Video", "video_id": "__pl88NO9Jw", "keywords": "art history, ottonian, medieval art", "youtube_id": "__pl88NO9Jw", "readable_id": "saint-michaels-hildesheim"}, "xp6ibuI8UuQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xp6ibuI8UuQ.mp4/xp6ibuI8UuQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xp6ibuI8UuQ.mp4/xp6ibuI8UuQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xp6ibuI8UuQ.m3u8/xp6ibuI8UuQ.m3u8"}, "duration": 774, "id": "xp6ibuI8UuQ", "title": "Visualizing vectors in 2 dimensions", "format": "mp4", "description": "Visualizing, adding and breaking down vectors in 2 dimensions", "path": "khan/test-prep/mcat/physical-processes/vectors-and-scalars/visualizing-vectors-in-2-dimensions/", "slug": "visualizing-vectors-in-2-dimensions", "kind": "Video", "video_id": "xp6ibuI8UuQ", "keywords": "physics, vectors, dimensions, components", "youtube_id": "xp6ibuI8UuQ", "readable_id": "visualizing-vectors-in-2-dimensions"}, "Iarv4xiYFA4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iarv4xiYFA4.mp4/Iarv4xiYFA4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iarv4xiYFA4.mp4/Iarv4xiYFA4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iarv4xiYFA4.m3u8/Iarv4xiYFA4.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-4-15/", "duration": 117, "id": "Iarv4xiYFA4", "title": "15 Area of tilted square", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-15", "kind": "Video", "video_id": "Iarv4xiYFA4", "keywords": "", "youtube_id": "Iarv4xiYFA4", "readable_id": "sat-2010-may-4-15"}, "tDdtAF3WtIY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tDdtAF3WtIY.mp4/tDdtAF3WtIY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tDdtAF3WtIY.mp4/tDdtAF3WtIY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tDdtAF3WtIY.m3u8/tDdtAF3WtIY.m3u8"}, "path": "khan/math/recreational-math/math-warmup/probabilty-warmup/problem-of-points2/", "duration": 129, "id": "tDdtAF3WtIY", "title": "Problem of Points 2", "format": "mp4", "description": "", "slug": "problem-of-points2", "kind": "Video", "video_id": "tDdtAF3WtIY", "keywords": "", "youtube_id": "tDdtAF3WtIY", "readable_id": "problem-of-points2"}, "8mAZYv5wIcE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8mAZYv5wIcE.mp4/8mAZYv5wIcE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8mAZYv5wIcE.mp4/8mAZYv5wIcE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8mAZYv5wIcE.m3u8/8mAZYv5wIcE.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/linear-algebra-least-squares-examples/", "duration": 1130, "id": "8mAZYv5wIcE", "title": "Least squares examples", "format": "mp4", "description": "An example using the least squares solution to an unsolvable system", "slug": "linear-algebra-least-squares-examples", "kind": "Video", "video_id": "8mAZYv5wIcE", "keywords": "least, squares, approximation, solution", "youtube_id": "8mAZYv5wIcE", "readable_id": "linear-algebra-least-squares-examples"}, "F_ySQvjtAxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F_ySQvjtAxQ.mp4/F_ySQvjtAxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F_ySQvjtAxQ.mp4/F_ySQvjtAxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F_ySQvjtAxQ.m3u8/F_ySQvjtAxQ.m3u8"}, "duration": 999, "id": "F_ySQvjtAxQ", "title": "French invasion of Russia", "format": "mp4", "description": "Napoleon's disastrous invasion of Russia", "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/french-invasion-of-russia/", "slug": "french-invasion-of-russia", "kind": "Video", "video_id": "F_ySQvjtAxQ", "keywords": "Napoleon, Russia, Invasion", "youtube_id": "F_ySQvjtAxQ", "readable_id": "french-invasion-of-russia"}, "xLYVo_k0_us": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xLYVo_k0_us.mp4/xLYVo_k0_us.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xLYVo_k0_us.mp4/xLYVo_k0_us.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xLYVo_k0_us.m3u8/xLYVo_k0_us.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/writing-expressions-2/", "duration": 165, "id": "xLYVo_k0_us", "title": "Writing algebraic expressions", "format": "mp4", "description": "These sentences describe or represent algebraic expressions. See if you can translate them for solving. We'll do it together.", "slug": "writing-expressions-2", "kind": "Video", "video_id": "xLYVo_k0_us", "keywords": "", "youtube_id": "xLYVo_k0_us", "readable_id": "writing-expressions-2"}, "1hihcoJPzz0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1hihcoJPzz0.mp4/1hihcoJPzz0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1hihcoJPzz0.mp4/1hihcoJPzz0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1hihcoJPzz0.m3u8/1hihcoJPzz0.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-4-11/", "duration": 178, "id": "1hihcoJPzz0", "title": "11 Computing with set members", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-11", "kind": "Video", "video_id": "1hihcoJPzz0", "keywords": "", "youtube_id": "1hihcoJPzz0", "readable_id": "sat-2008-may-4-11"}, "5EWjlpc0S00": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5EWjlpc0S00.mp4/5EWjlpc0S00.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5EWjlpc0S00.mp4/5EWjlpc0S00.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5EWjlpc0S00.m3u8/5EWjlpc0S00.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-at-rest/fluids-part-3/", "duration": 594, "id": "5EWjlpc0S00", "title": "Fluids (part 3)", "format": "mp4", "description": "Pressure in a fluid at depth", "slug": "fluids-part-3", "kind": "Video", "video_id": "5EWjlpc0S00", "keywords": "physics, chemistry, density, pressure", "youtube_id": "5EWjlpc0S00", "readable_id": "fluids-part-3"}, "q3N1IqBoKSo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q3N1IqBoKSo.mp4/q3N1IqBoKSo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q3N1IqBoKSo.mp4/q3N1IqBoKSo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q3N1IqBoKSo.m3u8/q3N1IqBoKSo.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/donatello-madonna-of-the-clouds-c-1425-35/", "duration": 274, "id": "q3N1IqBoKSo", "title": "Donatello, Madonna of the Clouds", "format": "mp4", "description": "Donatello, Madonna of the Clouds, c. 1425--35, marble, 33.1 x 32 cm / 13 1/16 x 12 5/8 inches (Museum of Fine Arts, Boston)", "slug": "donatello-madonna-of-the-clouds-c-1425-35", "kind": "Video", "video_id": "q3N1IqBoKSo", "keywords": "Donatello, MFA, Boston, Renaissance, Italy, Relief, Sculpture, Florence, Italian, Madonna of the Clouds, Madonna, Clouds, Khan Academy, smarthistory, art history, Google Art Project, OER, painting", "youtube_id": "q3N1IqBoKSo", "readable_id": "donatello-madonna-of-the-clouds-c-1425-35"}, "KoYZErFpZ5Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KoYZErFpZ5Q.mp4/KoYZErFpZ5Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KoYZErFpZ5Q.mp4/KoYZErFpZ5Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KoYZErFpZ5Q.m3u8/KoYZErFpZ5Q.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-functions-special-angles/solving-triangle-unit-circle/", "duration": 474, "id": "KoYZErFpZ5Q", "title": "Solving triangle in unit circle", "format": "mp4", "description": "", "slug": "solving-triangle-unit-circle", "kind": "Video", "video_id": "KoYZErFpZ5Q", "keywords": "", "youtube_id": "KoYZErFpZ5Q", "readable_id": "solving-triangle-unit-circle"}, "k2_PdizIgN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k2_PdizIgN4.mp4/k2_PdizIgN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k2_PdizIgN4.mp4/k2_PdizIgN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k2_PdizIgN4.m3u8/k2_PdizIgN4.m3u8"}, "duration": 374, "id": "k2_PdizIgN4", "title": "Spider's power switch", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/spider_bot/6-connect-spider-s-power-switch-and-run-the-power-wires-to-the-motor-controller/", "slug": "6-connect-spider-s-power-switch-and-run-the-power-wires-to-the-motor-controller", "kind": "Video", "video_id": "k2_PdizIgN4", "keywords": "", "youtube_id": "k2_PdizIgN4", "readable_id": "6-connect-spider-s-power-switch-and-run-the-power-wires-to-the-motor-controller"}, "6LurHwFfrIA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6LurHwFfrIA.mp4/6LurHwFfrIA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6LurHwFfrIA.mp4/6LurHwFfrIA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6LurHwFfrIA.m3u8/6LurHwFfrIA.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/masaccio-madonna-enthroned-1426/", "duration": 330, "id": "6LurHwFfrIA", "title": "Masaccio, Virgin and Child Enthroned", "format": "mp4", "description": "Masaccio (Tommaso di Ser Giovanni di Simone), Virgin and Child Enthroned, 1426, tempera on panel (National Gallery, London). Ser Giuliano degli Scarsi, a notary from Pisa commissioned this altarpiece for the chapel of Saint Julian in Santa Maria del Carmine, Pisa Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "masaccio-madonna-enthroned-1426", "kind": "Video", "video_id": "6LurHwFfrIA", "keywords": "Masaccio, Madonna Enthroned, National Gallery, London, Art History, Smarthistory", "youtube_id": "6LurHwFfrIA", "readable_id": "masaccio-madonna-enthroned-1426"}, "JyArK4jw3XU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JyArK4jw3XU.mp4/JyArK4jw3XU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JyArK4jw3XU.mp4/JyArK4jw3XU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JyArK4jw3XU.m3u8/JyArK4jw3XU.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/integrating-scaled-function/", "duration": 321, "id": "JyArK4jw3XU", "title": "Integrating scaled version of function", "format": "mp4", "description": "", "slug": "integrating-scaled-function", "kind": "Video", "video_id": "JyArK4jw3XU", "keywords": "", "youtube_id": "JyArK4jw3XU", "readable_id": "integrating-scaled-function"}, "SCo1m7OEqac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SCo1m7OEqac.mp4/SCo1m7OEqac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SCo1m7OEqac.mp4/SCo1m7OEqac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SCo1m7OEqac.m3u8/SCo1m7OEqac.m3u8"}, "duration": 761, "id": "SCo1m7OEqac", "title": "Preload stretches out the heart cells", "format": "mp4", "description": "Find out why stretching a heart cell in diastole affects how forcefully it contracts in systole. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/preload-and-afterload/preload-stretches-out-the-heart-cells/", "slug": "preload-stretches-out-the-heart-cells", "kind": "Video", "video_id": "SCo1m7OEqac", "keywords": "", "youtube_id": "SCo1m7OEqac", "readable_id": "preload-stretches-out-the-heart-cells"}, "mLE-SlOZToc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mLE-SlOZToc.mp4/mLE-SlOZToc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mLE-SlOZToc.mp4/mLE-SlOZToc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mLE-SlOZToc.m3u8/mLE-SlOZToc.m3u8"}, "path": "khan/math/precalculus/prob_comb/basic_prob_precalc/probability-1-module-examples/", "duration": 596, "id": "mLE-SlOZToc", "title": "Finding probablity example 2", "format": "mp4", "description": "In this example we are figuring out the probability of randomly picking a non-blue marble from a bag. Again, we'll have to think about the possible outcomes first.", "slug": "probability-1-module-examples", "kind": "Video", "video_id": "mLE-SlOZToc", "keywords": "probability, CC_7_SP_6, CC_7_SP_7_a, CC_7_SP_7_b", "youtube_id": "mLE-SlOZToc", "readable_id": "probability-1-module-examples"}, "qTXZ6UrO54U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qTXZ6UrO54U.mp4/qTXZ6UrO54U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qTXZ6UrO54U.mp4/qTXZ6UrO54U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qTXZ6UrO54U.m3u8/qTXZ6UrO54U.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/principles-of-bioenergetics/gibbs-free-energy-an-analogy/", "duration": 559, "id": "qTXZ6UrO54U", "title": "An analogy for Gibbs free energy", "format": "mp4", "description": "", "slug": "gibbs-free-energy-an-analogy", "kind": "Video", "video_id": "qTXZ6UrO54U", "keywords": "", "youtube_id": "qTXZ6UrO54U", "readable_id": "gibbs-free-energy-an-analogy"}, "OhUkMQtBGmE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OhUkMQtBGmE.mp4/OhUkMQtBGmE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OhUkMQtBGmE.mp4/OhUkMQtBGmE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OhUkMQtBGmE.m3u8/OhUkMQtBGmE.m3u8"}, "path": "khan/math/probability/regression/regression-correlation/fitting-a-line-to-data/", "duration": 468, "id": "OhUkMQtBGmE", "title": "Fitting a line to data", "format": "mp4", "description": "", "slug": "fitting-a-line-to-data", "kind": "Video", "video_id": "OhUkMQtBGmE", "keywords": "Fitting, Line, to, Data, CC_8_SP_2, CC_8_SP_3", "youtube_id": "OhUkMQtBGmE", "readable_id": "fitting-a-line-to-data"}, "slm6D2VEXYs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/slm6D2VEXYs.mp4/slm6D2VEXYs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/slm6D2VEXYs.mp4/slm6D2VEXYs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/slm6D2VEXYs.m3u8/slm6D2VEXYs.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/photosynthesis/photosynthesis-calvin-cycle/", "duration": 808, "id": "slm6D2VEXYs", "title": "Photosynthesis: Calvin cycle", "format": "mp4", "description": "The Calvin Cycle or the light-independent (dark) reactions of photosythesis", "slug": "photosynthesis-calvin-cycle", "kind": "Video", "video_id": "slm6D2VEXYs", "keywords": "photosynthesis, dark, reactions, calvin, cycle", "youtube_id": "slm6D2VEXYs", "readable_id": "photosynthesis-calvin-cycle"}, "8iwauKeqm2w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8iwauKeqm2w.mp4/8iwauKeqm2w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8iwauKeqm2w.mp4/8iwauKeqm2w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8iwauKeqm2w.m3u8/8iwauKeqm2w.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/naming-aromatic/naming-benzene-derivatives/", "duration": 689, "id": "8iwauKeqm2w", "title": "Naming benzene derivatives", "format": "mp4", "description": "", "slug": "naming-benzene-derivatives", "kind": "Video", "video_id": "8iwauKeqm2w", "keywords": "", "youtube_id": "8iwauKeqm2w", "readable_id": "naming-benzene-derivatives"}, "Q7HbtnOyKMg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q7HbtnOyKMg.mp4/Q7HbtnOyKMg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q7HbtnOyKMg.mp4/Q7HbtnOyKMg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q7HbtnOyKMg.m3u8/Q7HbtnOyKMg.m3u8"}, "duration": 630, "id": "Q7HbtnOyKMg", "title": "Wealth destruction 1", "format": "mp4", "description": "How bubbles destroy wealth.", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/wealth-destruction-1/", "slug": "wealth-destruction-1", "kind": "Video", "video_id": "Q7HbtnOyKMg", "keywords": "bailout, paulson, credit, crisis, bernanke, bubble, housing", "youtube_id": "Q7HbtnOyKMg", "readable_id": "wealth-destruction-1"}, "VIfQh71XwMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VIfQh71XwMM.mp4/VIfQh71XwMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VIfQh71XwMM.mp4/VIfQh71XwMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VIfQh71XwMM.m3u8/VIfQh71XwMM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/osteoarthritis-vs-rheumatoid-arthritis-pathophysiology/", "duration": 585, "id": "VIfQh71XwMM", "title": "Osteoarthritis vs rheumatoid arthritis pathophysiology", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "osteoarthritis-vs-rheumatoid-arthritis-pathophysiology", "kind": "Video", "video_id": "VIfQh71XwMM", "keywords": "", "youtube_id": "VIfQh71XwMM", "readable_id": "osteoarthritis-vs-rheumatoid-arthritis-pathophysiology"}, "62ZlRO8BCUw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/62ZlRO8BCUw.mp4/62ZlRO8BCUw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/62ZlRO8BCUw.mp4/62ZlRO8BCUw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/62ZlRO8BCUw.m3u8/62ZlRO8BCUw.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/linda-jeschofnig/kauffman-linda-jeschofnig-2/", "duration": 160, "id": "62ZlRO8BCUw", "title": "A Passion for Science Education", "format": "mp4", "description": "A passion for science education led Linda Jeschognig from her life in accounting to a second act as an entrepreneur. She talks about the inspiration behind Hands-on Labs and overcoming the obstacles with a company created to send kits containing hydrochloric acid, cobalt nitrate and other hazardous elements to college chemistry students. Along the way, Jeschofnig has gained support and reached out to guide other women on the entrepreneurial path.", "slug": "kauffman-linda-jeschofnig-2", "kind": "Video", "video_id": "62ZlRO8BCUw", "keywords": "", "youtube_id": "62ZlRO8BCUw", "readable_id": "kauffman-linda-jeschofnig-2"}, "dHi9ctwDUnc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dHi9ctwDUnc.mp4/dHi9ctwDUnc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dHi9ctwDUnc.mp4/dHi9ctwDUnc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dHi9ctwDUnc.m3u8/dHi9ctwDUnc.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/bohr-effect-vs-haldane-effect/", "duration": 833, "id": "dHi9ctwDUnc", "title": "Bohr effect vs. Haldane effect", "format": "mp4", "description": "Take a close look at how some friendly competition for Hemoglobin allows the body to more efficiently move oxygen and carbon Dioxide around. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "bohr-effect-vs-haldane-effect", "kind": "Video", "video_id": "dHi9ctwDUnc", "keywords": "", "youtube_id": "dHi9ctwDUnc", "readable_id": "bohr-effect-vs-haldane-effect"}, "I1KmEWmmozc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I1KmEWmmozc.mp4/I1KmEWmmozc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I1KmEWmmozc.mp4/I1KmEWmmozc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I1KmEWmmozc.m3u8/I1KmEWmmozc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-4-16/", "duration": 187, "id": "I1KmEWmmozc", "title": "16 Shortest path", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-16", "kind": "Video", "video_id": "I1KmEWmmozc", "keywords": "", "youtube_id": "I1KmEWmmozc", "readable_id": "sat-2008-may-4-16"}, "x3EMTQQjoA0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x3EMTQQjoA0.mp4/x3EMTQQjoA0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x3EMTQQjoA0.mp4/x3EMTQQjoA0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x3EMTQQjoA0.m3u8/x3EMTQQjoA0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/placenta-accreta/", "duration": 466, "id": "x3EMTQQjoA0", "title": "Placenta accreta", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "placenta-accreta", "kind": "Video", "video_id": "x3EMTQQjoA0", "keywords": "", "youtube_id": "x3EMTQQjoA0", "readable_id": "placenta-accreta"}, "ahaHgqwt_LA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ahaHgqwt_LA.mp4/ahaHgqwt_LA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ahaHgqwt_LA.mp4/ahaHgqwt_LA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ahaHgqwt_LA.m3u8/ahaHgqwt_LA.m3u8"}, "duration": 412, "id": "ahaHgqwt_LA", "title": "Long term supply curve", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/supply-curve-tutorial/long-term-supply-curve-1/", "slug": "long-term-supply-curve-1", "kind": "Video", "video_id": "ahaHgqwt_LA", "keywords": "", "youtube_id": "ahaHgqwt_LA", "readable_id": "long-term-supply-curve-1"}, "Mmev06nabvk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mmev06nabvk.mp4/Mmev06nabvk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mmev06nabvk.mp4/Mmev06nabvk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mmev06nabvk.m3u8/Mmev06nabvk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/the-basal-ganglia-the-direct-pathway/", "duration": 647, "id": "Mmev06nabvk", "title": "The basal ganglia - The direct pathway", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "the-basal-ganglia-the-direct-pathway", "kind": "Video", "video_id": "Mmev06nabvk", "keywords": "", "youtube_id": "Mmev06nabvk", "readable_id": "the-basal-ganglia-the-direct-pathway"}, "ZPRMFBN8p4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZPRMFBN8p4Q.mp4/ZPRMFBN8p4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZPRMFBN8p4Q.mp4/ZPRMFBN8p4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZPRMFBN8p4Q.m3u8/ZPRMFBN8p4Q.m3u8"}, "path": "khan/partner-content/all-star-orchestra/elements-of-music/lesson-2-rhythm-dotted-notes-ties-and-rests/", "duration": 266, "id": "ZPRMFBN8p4Q", "title": "Lesson 2: Rhythm, dotted notes, ties, and rests", "format": "mp4", "description": "", "slug": "lesson-2-rhythm-dotted-notes-ties-and-rests", "kind": "Video", "video_id": "ZPRMFBN8p4Q", "keywords": "", "youtube_id": "ZPRMFBN8p4Q", "readable_id": "lesson-2-rhythm-dotted-notes-ties-and-rests"}, "AQr0rNyUnFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AQr0rNyUnFM.mp4/AQr0rNyUnFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AQr0rNyUnFM.mp4/AQr0rNyUnFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AQr0rNyUnFM.m3u8/AQr0rNyUnFM.m3u8"}, "duration": 588, "id": "AQr0rNyUnFM", "title": "Neuron graded potential description", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/neuron-graded-potential-description/", "slug": "neuron-graded-potential-description", "kind": "Video", "video_id": "AQr0rNyUnFM", "keywords": "", "youtube_id": "AQr0rNyUnFM", "readable_id": "neuron-graded-potential-description"}, "HPRFmu7JsKU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HPRFmu7JsKU.mp4/HPRFmu7JsKU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HPRFmu7JsKU.mp4/HPRFmu7JsKU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HPRFmu7JsKU.m3u8/HPRFmu7JsKU.m3u8"}, "path": "khan/math/algebra2/conics_precalc/hyperbolas-precalc/proof-hyperbola-foci/", "duration": 890, "id": "HPRFmu7JsKU", "title": "Proof: Hyperbola foci", "format": "mp4", "description": "Proof of the hyperbola foci formula", "slug": "proof-hyperbola-foci", "kind": "Video", "video_id": "HPRFmu7JsKU", "keywords": "hyperbola, foci, focuses, conic", "youtube_id": "HPRFmu7JsKU", "readable_id": "proof-hyperbola-foci"}, "-0qEDcZZS9E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-0qEDcZZS9E.mp4/-0qEDcZZS9E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-0qEDcZZS9E.mp4/-0qEDcZZS9E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-0qEDcZZS9E.m3u8/-0qEDcZZS9E.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/rect-form/vector-components-from-initial-and-terminal-points/", "duration": 381, "id": "-0qEDcZZS9E", "title": "Vector components from initial and terminal points", "format": "mp4", "description": "", "slug": "vector-components-from-initial-and-terminal-points", "kind": "Video", "video_id": "-0qEDcZZS9E", "keywords": "", "youtube_id": "-0qEDcZZS9E", "readable_id": "vector-components-from-initial-and-terminal-points"}, "yIQUhXa-n-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yIQUhXa-n-M.mp4/yIQUhXa-n-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yIQUhXa-n-M.mp4/yIQUhXa-n-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yIQUhXa-n-M.m3u8/yIQUhXa-n-M.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivatives-inverse-functions/derivative-inverse-sine/", "duration": 296, "id": "yIQUhXa-n-M", "title": "Derivative of inverse sine", "format": "mp4", "description": "", "slug": "derivative-inverse-sine", "kind": "Video", "video_id": "yIQUhXa-n-M", "keywords": "", "youtube_id": "yIQUhXa-n-M", "readable_id": "derivative-inverse-sine"}, "9T6ZPYYu_Dk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9T6ZPYYu_Dk.mp4/9T6ZPYYu_Dk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9T6ZPYYu_Dk.mp4/9T6ZPYYu_Dk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9T6ZPYYu_Dk.m3u8/9T6ZPYYu_Dk.m3u8"}, "duration": 588, "id": "9T6ZPYYu_Dk", "title": "Return on capital", "format": "mp4", "description": "Introduction to return on capital and cost of capital. Using these concepts to decide where to invest.", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/investment-consumption/return-on-capital/", "slug": "return-on-capital", "kind": "Video", "video_id": "9T6ZPYYu_Dk", "keywords": "finance, ROC, ROIC", "youtube_id": "9T6ZPYYu_Dk", "readable_id": "return-on-capital"}, "FSpSrZQzzVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FSpSrZQzzVs.mp4/FSpSrZQzzVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FSpSrZQzzVs.mp4/FSpSrZQzzVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FSpSrZQzzVs.m3u8/FSpSrZQzzVs.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dec-perc-frac-pre-alg/adding-and-subtracting-a-decimal-percentage-and-fraction/", "duration": 269, "id": "FSpSrZQzzVs", "title": "Adding, subtracting numbers in different formats", "format": "mp4", "description": "In this example, we solve an addition problem with numbers in different formats: a percentage, decimal, and mixed number. First, we'll get them all in the same format...which makes it a while easier to solve!", "slug": "adding-and-subtracting-a-decimal-percentage-and-fraction", "kind": "Video", "video_id": "FSpSrZQzzVs", "keywords": "", "youtube_id": "FSpSrZQzzVs", "readable_id": "adding-and-subtracting-a-decimal-percentage-and-fraction"}, "sdM6aGhKdTI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sdM6aGhKdTI.mp4/sdM6aGhKdTI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sdM6aGhKdTI.mp4/sdM6aGhKdTI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sdM6aGhKdTI.m3u8/sdM6aGhKdTI.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/institutional-critique-hans-haacke-s-seurat-s-les-poseuses-small-version-1884-1975-1975/", "duration": 398, "id": "sdM6aGhKdTI", "title": "Hans Haacke, Seurat's 'Les Poseuses' (small version)", "format": "mp4", "description": "Beth Harris, Sal Khan and Steven Zucker discuss art and institutional critique in relation to Hans Haacke's Seurat's 'Les Poseuses' (small version), 1884-1975 from 1975.", "slug": "institutional-critique-hans-haacke-s-seurat-s-les-poseuses-small-version-1884-1975-1975", "kind": "Video", "video_id": "sdM6aGhKdTI", "keywords": "", "youtube_id": "sdM6aGhKdTI", "readable_id": "institutional-critique-hans-haacke-s-seurat-s-les-poseuses-small-version-1884-1975-1975"}, "rcRg_gO7-7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rcRg_gO7-7E.mp4/rcRg_gO7-7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rcRg_gO7-7E.mp4/rcRg_gO7-7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rcRg_gO7-7E.m3u8/rcRg_gO7-7E.m3u8"}, "duration": 173, "id": "rcRg_gO7-7E", "title": "Series as sum of sequence", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/series-as-sum-of-sequence/", "slug": "series-as-sum-of-sequence", "kind": "Video", "video_id": "rcRg_gO7-7E", "keywords": "", "youtube_id": "rcRg_gO7-7E", "readable_id": "series-as-sum-of-sequence"}, "EKvHQc3QEow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EKvHQc3QEow.mp4/EKvHQc3QEow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EKvHQc3QEow.mp4/EKvHQc3QEow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EKvHQc3QEow.m3u8/EKvHQc3QEow.m3u8"}, "duration": 547, "id": "EKvHQc3QEow", "title": "Newton, Leibniz, and Usain Bolt", "format": "mp4", "description": "Why we study differential calculus", "path": "khan/math/differential-calculus/taking-derivatives/intro_differential_calc/newton-leibniz-and-usain-bolt/", "slug": "newton-leibniz-and-usain-bolt", "kind": "Video", "video_id": "EKvHQc3QEow", "keywords": "math, calculus, marquee", "youtube_id": "EKvHQc3QEow", "readable_id": "newton-leibniz-and-usain-bolt"}, "Gv_1viYhEoU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gv_1viYhEoU.mp4/Gv_1viYhEoU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gv_1viYhEoU.mp4/Gv_1viYhEoU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gv_1viYhEoU.m3u8/Gv_1viYhEoU.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sleep-and-consciousness/hypnosis-and-meditation/", "duration": 269, "id": "Gv_1viYhEoU", "title": "Hypnosis and meditation", "format": "mp4", "description": "", "slug": "hypnosis-and-meditation", "kind": "Video", "video_id": "Gv_1viYhEoU", "keywords": "", "youtube_id": "Gv_1viYhEoU", "readable_id": "hypnosis-and-meditation"}, "k2fdtepbkz8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k2fdtepbkz8.mp4/k2fdtepbkz8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k2fdtepbkz8.mp4/k2fdtepbkz8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k2fdtepbkz8.m3u8/k2fdtepbkz8.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/greek-pottery/exekias-attic-black-figure-amphora-with-ajax-and-achilles-playing-a-game/", "duration": 403, "id": "k2fdtepbkz8", "title": "Attic Black-Figure: Exekias, amphora with Ajax and Achilles playing a game", "format": "mp4", "description": "A conversation between Dr. Beth Harris and Dr. Steven Zucker in front of an Attic black figure amphora by Exekias (potter and painter), archaic period, c. 540-530 B.C.E., 61.1 cm high, found Vulci (Gregorian Etruscan Museum, Vatican)", "slug": "exekias-attic-black-figure-amphora-with-ajax-and-achilles-playing-a-game", "kind": "Video", "video_id": "k2fdtepbkz8", "keywords": "", "youtube_id": "k2fdtepbkz8", "readable_id": "exekias-attic-black-figure-amphora-with-ajax-and-achilles-playing-a-game"}, "i-NNWI8Ccas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i-NNWI8Ccas.mp4/i-NNWI8Ccas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i-NNWI8Ccas.mp4/i-NNWI8Ccas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i-NNWI8Ccas.m3u8/i-NNWI8Ccas.m3u8"}, "duration": 478, "id": "i-NNWI8Ccas", "title": "Birth of stars", "format": "mp4", "description": "Birth of Stars", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/birth-of-stars/", "slug": "birth-of-stars", "kind": "Video", "video_id": "i-NNWI8Ccas", "keywords": "Birth, of, Stars, stellar, evoluation", "youtube_id": "i-NNWI8Ccas", "readable_id": "birth-of-stars"}, "R48KimqkYTA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R48KimqkYTA.mp4/R48KimqkYTA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R48KimqkYTA.mp4/R48KimqkYTA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R48KimqkYTA.m3u8/R48KimqkYTA.m3u8"}, "duration": 229, "id": "R48KimqkYTA", "title": "More solving problems with bar graphs", "format": "mp4", "description": "Interpret bar graphs to answer questions about a context.", "path": "more-solving-problems-with-bar-graphs/", "slug": "more-solving-problems-with-bar-graphs", "kind": "Video", "video_id": "R48KimqkYTA", "keywords": "", "youtube_id": "R48KimqkYTA", "readable_id": "more-solving-problems-with-bar-graphs"}, "bEm2olQ3iJA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bEm2olQ3iJA.mp4/bEm2olQ3iJA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bEm2olQ3iJA.mp4/bEm2olQ3iJA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bEm2olQ3iJA.m3u8/bEm2olQ3iJA.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-interviews/ss-admissions-interview/", "duration": 71, "id": "bEm2olQ3iJA", "title": "Student story: Admissions interview", "format": "mp4", "description": "", "slug": "ss-admissions-interview", "kind": "Video", "video_id": "bEm2olQ3iJA", "keywords": "", "youtube_id": "bEm2olQ3iJA", "readable_id": "ss-admissions-interview"}, "xks4cETlN58": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xks4cETlN58.mp4/xks4cETlN58.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xks4cETlN58.mp4/xks4cETlN58.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xks4cETlN58.m3u8/xks4cETlN58.m3u8"}, "duration": 314, "id": "xks4cETlN58", "title": "Limits with two horizontal asymptotes", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits-infinity/limits-with-two-horizontal-asymptotes/", "slug": "limits-with-two-horizontal-asymptotes", "kind": "Video", "video_id": "xks4cETlN58", "keywords": "", "youtube_id": "xks4cETlN58", "readable_id": "limits-with-two-horizontal-asymptotes"}, "ALLSsIDhFdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ALLSsIDhFdU.mp4/ALLSsIDhFdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ALLSsIDhFdU.mp4/ALLSsIDhFdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ALLSsIDhFdU.m3u8/ALLSsIDhFdU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/signal-characteristics-shape/", "duration": 557, "id": "ALLSsIDhFdU", "title": "Signal characteristics - shape", "format": "mp4", "description": "", "slug": "signal-characteristics-shape", "kind": "Video", "video_id": "ALLSsIDhFdU", "keywords": "", "youtube_id": "ALLSsIDhFdU", "readable_id": "signal-characteristics-shape"}, "KdDIIYqXmjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KdDIIYqXmjw.mp4/KdDIIYqXmjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KdDIIYqXmjw.mp4/KdDIIYqXmjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KdDIIYqXmjw.m3u8/KdDIIYqXmjw.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/england-france-tyrol/pacher-st-wolfgang-altarpiece-c-1479-8/", "duration": 375, "id": "KdDIIYqXmjw", "title": "Pacher, St. Wolfgang Altarpiece", "format": "mp4", "description": "Michael Pacher, St. Wolfgang Altarpiece, c. 1479-81 (Church of St. Wolfgang, St. Wolfgang, Austria) Speakers: Dr. Steven Zucker & Dr. Beth Harris. Find related images here.", "slug": "pacher-st-wolfgang-altarpiece-c-1479-8", "kind": "Video", "video_id": "KdDIIYqXmjw", "keywords": "", "youtube_id": "KdDIIYqXmjw", "readable_id": "pacher-st-wolfgang-altarpiece-c-1479-8"}, "8QihetGj3pg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8QihetGj3pg.mp4/8QihetGj3pg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8QihetGj3pg.mp4/8QihetGj3pg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8QihetGj3pg.m3u8/8QihetGj3pg.m3u8"}, "duration": 432, "id": "8QihetGj3pg", "title": "Adding vectors", "format": "mp4", "description": "", "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/adding-vectors/", "slug": "adding-vectors", "kind": "Video", "video_id": "8QihetGj3pg", "keywords": "", "youtube_id": "8QihetGj3pg", "readable_id": "adding-vectors"}, "z_guKLKwjgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z_guKLKwjgY.mp4/z_guKLKwjgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z_guKLKwjgY.mp4/z_guKLKwjgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z_guKLKwjgY.m3u8/z_guKLKwjgY.m3u8"}, "path": "khan/humanities/becoming-modern/early-photography/emerson-naturalistic-photography/", "duration": 455, "id": "z_guKLKwjgY", "title": "P.H. Emerson's naturalistic photography", "format": "mp4", "description": "P.H. Emerson (1856-1936) believed that \"nothing in nature has a hard outline\" and attempted to emulate natural eyesight wherein the subject is sharp and everything else gradually falls out of focus. Love art? Follow us on Google+", "slug": "emerson-naturalistic-photography", "kind": "Video", "video_id": "z_guKLKwjgY", "keywords": "", "youtube_id": "z_guKLKwjgY", "readable_id": "emerson-naturalistic-photography"}, "h_pWZBOR4ec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h_pWZBOR4ec.mp4/h_pWZBOR4ec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h_pWZBOR4ec.mp4/h_pWZBOR4ec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h_pWZBOR4ec.m3u8/h_pWZBOR4ec.m3u8"}, "path": "khan/humanities/art-history-basics/beginners-art-history/the-skill-of-describing/", "duration": 223, "id": "h_pWZBOR4ec", "title": "The skill of describing", "format": "mp4", "description": "Describing a work of art is the first step to interpreting it.", "slug": "the-skill-of-describing", "kind": "Video", "video_id": "h_pWZBOR4ec", "keywords": "art history, van gogh, starrry night,", "youtube_id": "h_pWZBOR4ec", "readable_id": "the-skill-of-describing"}, "126N4hox9YA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/126N4hox9YA.mp4/126N4hox9YA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/126N4hox9YA.mp4/126N4hox9YA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/126N4hox9YA.m3u8/126N4hox9YA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/electronegativity-and-chemical-bonds/", "duration": 699, "id": "126N4hox9YA", "title": "Electronegativity and bonding", "format": "mp4", "description": "Electronegativity differences in bonding", "slug": "electronegativity-and-chemical-bonds", "kind": "Video", "video_id": "126N4hox9YA", "keywords": "", "youtube_id": "126N4hox9YA", "readable_id": "electronegativity-and-chemical-bonds"}, "79duxPXpyKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/79duxPXpyKQ.mp4/79duxPXpyKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/79duxPXpyKQ.mp4/79duxPXpyKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/79duxPXpyKQ.m3u8/79duxPXpyKQ.m3u8"}, "path": "khan/math/probability/statistics-inferential/normal_distribution/ck12-org-normal-distribution-problems-qualitative-sense-of-normal-distributions/", "duration": 653, "id": "79duxPXpyKQ", "title": "ck12.org normal distribution problems: Qualitative sense of normal distributions", "format": "mp4", "description": "Discussion of how \"normal\" a distribution might be", "slug": "ck12-org-normal-distribution-problems-qualitative-sense-of-normal-distributions", "kind": "Video", "video_id": "79duxPXpyKQ", "keywords": "normal, distribution, CC_6_SP_5_c, CC_6_SP_5_d, CC_7_SP_2", "youtube_id": "79duxPXpyKQ", "readable_id": "ck12-org-normal-distribution-problems-qualitative-sense-of-normal-distributions"}, "Ye13MIPv6n0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ye13MIPv6n0.mp4/Ye13MIPv6n0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ye13MIPv6n0.mp4/Ye13MIPv6n0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ye13MIPv6n0.m3u8/Ye13MIPv6n0.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/intuition-why-we-divide-both-sides/", "duration": 194, "id": "Ye13MIPv6n0", "title": "Dividing from both sides of an equation", "format": "mp4", "description": "Let's get a conceptual understanding of why one needs to divide both sides of an equation to solve for a variable.", "slug": "intuition-why-we-divide-both-sides", "kind": "Video", "video_id": "Ye13MIPv6n0", "keywords": "algebra, equations", "youtube_id": "Ye13MIPv6n0", "readable_id": "intuition-why-we-divide-both-sides"}, "aubZU0iWtgI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aubZU0iWtgI.mp4/aubZU0iWtgI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aubZU0iWtgI.mp4/aubZU0iWtgI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aubZU0iWtgI.m3u8/aubZU0iWtgI.m3u8"}, "duration": 1139, "id": "aubZU0iWtgI", "title": "Diffusion and osmosis", "format": "mp4", "description": "Diffusion and Osmosis", "path": "khan/test-prep/mcat/cells/transport-across-a-cell-membrane/diffusion-and-osmosis/", "slug": "diffusion-and-osmosis", "kind": "Video", "video_id": "aubZU0iWtgI", "keywords": "diffusion, osmosis, hypertonic, hypotonic, solute, solvent, solution", "youtube_id": "aubZU0iWtgI", "readable_id": "diffusion-and-osmosis"}, "bYyxwxEqTQo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bYyxwxEqTQo.mp4/bYyxwxEqTQo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bYyxwxEqTQo.mp4/bYyxwxEqTQo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bYyxwxEqTQo.m3u8/bYyxwxEqTQo.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/titian-bacchus-and-ariadne-1523-24/", "duration": 211, "id": "bYyxwxEqTQo", "title": "Titian, Bacchus and Ariadne", "format": "mp4", "description": "Titian, Bacchus and Ariadne, 1523-24, oil on canvas now atop board, 69-1/2 x 75 inches (National Gallery, London). Speakers: Dr. Beth Harris and Dr. Steven Zucker\u00a0\n\nPart of a mythological cycle painted by Titian and Giovanni Bellini and commissioned by Alfonso d'Este, Duke of Ferrara that includes The Feast of the Gods and the Andrians. Originally hung in the studiolo or Camerini d'Alabastro of the Duke's Ferranese castle.\u00a0\n", "slug": "titian-bacchus-and-ariadne-1523-24", "kind": "Video", "video_id": "bYyxwxEqTQo", "keywords": "Titian, Bacchus and Ariadne, Bacchus, Smarthistory, Venetian Art Art history, Italian art, Renaissance", "youtube_id": "bYyxwxEqTQo", "readable_id": "titian-bacchus-and-ariadne-1523-24"}, "ayRpoJgph0E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ayRpoJgph0E.mp4/ayRpoJgph0E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ayRpoJgph0E.mp4/ayRpoJgph0E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ayRpoJgph0E.m3u8/ayRpoJgph0E.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-number-patterns/relationships-between-patterns/", "duration": 156, "id": "ayRpoJgph0E", "title": "Number patterns: Seeing relationships", "format": "mp4", "description": "Laying the foundation for algebraic thinking by learning to recognize the relationships between patterns and graphing out those relationships.", "slug": "relationships-between-patterns", "kind": "Video", "video_id": "ayRpoJgph0E", "keywords": "", "youtube_id": "ayRpoJgph0E", "readable_id": "relationships-between-patterns"}, "1KL8HAm3uSY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1KL8HAm3uSY.mp4/1KL8HAm3uSY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1KL8HAm3uSY.mp4/1KL8HAm3uSY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1KL8HAm3uSY.m3u8/1KL8HAm3uSY.m3u8"}, "path": "khan/test-prep/mcat/cells/embryology/implantation/", "duration": 290, "id": "1KL8HAm3uSY", "title": "Implantation", "format": "mp4", "description": "", "slug": "implantation", "kind": "Video", "video_id": "1KL8HAm3uSY", "keywords": "", "youtube_id": "1KL8HAm3uSY", "readable_id": "implantation"}, "mUfp0KaXSj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mUfp0KaXSj4.mp4/mUfp0KaXSj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mUfp0KaXSj4.mp4/mUfp0KaXSj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mUfp0KaXSj4.m3u8/mUfp0KaXSj4.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/estimating-infinite-series/integrals-estimating-p-series/", "duration": 534, "id": "mUfp0KaXSj4", "title": "Using integrals to place bounds on infinite sum", "format": "mp4", "description": "", "slug": "integrals-estimating-p-series", "kind": "Video", "video_id": "mUfp0KaXSj4", "keywords": "", "youtube_id": "mUfp0KaXSj4", "readable_id": "integrals-estimating-p-series"}, "FmjSUyyc-3M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FmjSUyyc-3M.mp4/FmjSUyyc-3M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FmjSUyyc-3M.mp4/FmjSUyyc-3M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FmjSUyyc-3M.m3u8/FmjSUyyc-3M.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/marcel-duchamp-fountain-1917/", "duration": 192, "id": "FmjSUyyc-3M", "title": "Duchamp, Fountain", "format": "mp4", "description": "Marcel Duchamp, Fountain, 1917/1964, porcelain urinal, paint, San Francisco Museum of Modern Art. Speakers:\u00a0\u00a0Dr. Beth Harris and Dr. Steven Zucker", "slug": "marcel-duchamp-fountain-1917", "kind": "Video", "video_id": "FmjSUyyc-3M", "keywords": "", "youtube_id": "FmjSUyyc-3M", "readable_id": "marcel-duchamp-fountain-1917"}, "8BCcfgQPYlI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8BCcfgQPYlI.mp4/8BCcfgQPYlI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8BCcfgQPYlI.mp4/8BCcfgQPYlI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8BCcfgQPYlI.m3u8/8BCcfgQPYlI.m3u8"}, "duration": 315, "id": "8BCcfgQPYlI", "title": "Galway Education Centre's Maths Camp (Ireland)", "format": "mp4", "description": "", "path": "ireland_galwayinaction/", "slug": "ireland_galwayinaction", "kind": "Video", "video_id": "8BCcfgQPYlI", "keywords": "", "youtube_id": "8BCcfgQPYlI", "readable_id": "ireland_galwayinaction"}, "FOyH5ZCW7ZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FOyH5ZCW7ZU.mp4/FOyH5ZCW7ZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FOyH5ZCW7ZU.mp4/FOyH5ZCW7ZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FOyH5ZCW7ZU.m3u8/FOyH5ZCW7ZU.m3u8"}, "duration": 328, "id": "FOyH5ZCW7ZU", "title": "Intro to drawing with blocks", "format": "mp4", "description": "", "path": "intro-to-drawing-with-blocks/", "slug": "intro-to-drawing-with-blocks", "kind": "Video", "video_id": "FOyH5ZCW7ZU", "keywords": "", "youtube_id": "FOyH5ZCW7ZU", "readable_id": "intro-to-drawing-with-blocks"}, "nYFuxTXDj90": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nYFuxTXDj90.mp4/nYFuxTXDj90.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nYFuxTXDj90.mp4/nYFuxTXDj90.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nYFuxTXDj90.m3u8/nYFuxTXDj90.m3u8"}, "duration": 626, "id": "nYFuxTXDj90", "title": "Beginnings of life", "format": "mp4", "description": "Life and photosynthesis start to thrive in the Archean Eon", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/history-life-earth-tutorial/beginnings-of-life/", "slug": "beginnings-of-life", "kind": "Video", "video_id": "nYFuxTXDj90", "keywords": "life, photosynthesis, prokaryote, eukaryote, arhchean, hades, hadean, eon", "youtube_id": "nYFuxTXDj90", "readable_id": "beginnings-of-life"}, "WreIjcz4X_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WreIjcz4X_k.mp4/WreIjcz4X_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WreIjcz4X_k.mp4/WreIjcz4X_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WreIjcz4X_k.m3u8/WreIjcz4X_k.m3u8"}, "duration": 226, "id": "WreIjcz4X_k", "title": "Zach Kaplan - Digital manufacturing revolution", "format": "mp4", "description": "Zach Kaplan, CEO of Inventables, talks about how his early education helped shape his entrepreneurial roots and describes how a popular movie taught him an important lesson in entrepreneurship. He then recalls the moment when he had to decide between starting a company and taking a job.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/zach-kaplan/kauffman-zach-kaplan1/", "slug": "kauffman-zach-kaplan1", "kind": "Video", "video_id": "WreIjcz4X_k", "keywords": "Zach Kaplan, Kauffman, Inventables", "youtube_id": "WreIjcz4X_k", "readable_id": "kauffman-zach-kaplan1"}, "ku4KOFQ-bB4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ku4KOFQ-bB4.mp4/ku4KOFQ-bB4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ku4KOFQ-bB4.mp4/ku4KOFQ-bB4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ku4KOFQ-bB4.m3u8/ku4KOFQ-bB4.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/number-systems-introduction/", "duration": 600, "id": "ku4KOFQ-bB4", "title": "Introduction to number systems and binary", "format": "mp4", "description": "", "slug": "number-systems-introduction", "kind": "Video", "video_id": "ku4KOFQ-bB4", "keywords": "", "youtube_id": "ku4KOFQ-bB4", "readable_id": "number-systems-introduction"}, "s5smas8uum4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s5smas8uum4.mp4/s5smas8uum4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s5smas8uum4.mp4/s5smas8uum4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s5smas8uum4.m3u8/s5smas8uum4.m3u8"}, "duration": 704, "id": "s5smas8uum4", "title": "Depolarization waves flowing through the heart", "format": "mp4", "description": "Get a clearer idea of what a \"Depolarization Wave\" means and how it goes from cell to cell through the entire heart! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/depolarization-waves-flowing-through-the-heart/", "slug": "depolarization-waves-flowing-through-the-heart", "kind": "Video", "video_id": "s5smas8uum4", "keywords": "", "youtube_id": "s5smas8uum4", "readable_id": "depolarization-waves-flowing-through-the-heart"}, "dX0JyJRTXm4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dX0JyJRTXm4.mp4/dX0JyJRTXm4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dX0JyJRTXm4.mp4/dX0JyJRTXm4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dX0JyJRTXm4.m3u8/dX0JyJRTXm4.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/examples-leveraging-definite-integral/", "duration": 382, "id": "dX0JyJRTXm4", "title": "Examples leveraging integration properties", "format": "mp4", "description": "", "slug": "examples-leveraging-definite-integral", "kind": "Video", "video_id": "dX0JyJRTXm4", "keywords": "", "youtube_id": "dX0JyJRTXm4", "readable_id": "examples-leveraging-definite-integral"}, "BgFJD7oCmDE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BgFJD7oCmDE.mp4/BgFJD7oCmDE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BgFJD7oCmDE.mp4/BgFJD7oCmDE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BgFJD7oCmDE.m3u8/BgFJD7oCmDE.m3u8"}, "duration": 147, "id": "BgFJD7oCmDE", "title": "Polyalphabetic cipher", "format": "mp4", "description": "Brit introduces the polyalphabetic cipher, which creates a lighter fingerprint than the Caesar cipher.", "path": "khan/computing/computer-science/cryptography/crypt/polyalphabetic-cipher/", "slug": "polyalphabetic-cipher", "kind": "Video", "video_id": "BgFJD7oCmDE", "keywords": "cryptography, polyalphabetic, cipher", "youtube_id": "BgFJD7oCmDE", "readable_id": "polyalphabetic-cipher"}, "7PgYb0c_3KE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7PgYb0c_3KE.mp4/7PgYb0c_3KE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7PgYb0c_3KE.mp4/7PgYb0c_3KE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7PgYb0c_3KE.m3u8/7PgYb0c_3KE.m3u8"}, "path": "khan/science/discoveries-projects/robots/spider_bot/2-hacking-spiders-click-n-stick/", "duration": 222, "id": "7PgYb0c_3KE", "title": "Spider's click n' stick", "format": "mp4", "description": "In this video we show you how to hack a click n' stick tap light to make a body for Spider", "slug": "2-hacking-spiders-click-n-stick", "kind": "Video", "video_id": "7PgYb0c_3KE", "keywords": "hack, tap light, click n' stick, spider, diy, make, hack, robot, small, inexpensive", "youtube_id": "7PgYb0c_3KE", "readable_id": "2-hacking-spiders-click-n-stick"}, "7jzCJJIc59E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7jzCJJIc59E.mp4/7jzCJJIc59E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7jzCJJIc59E.mp4/7jzCJJIc59E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7jzCJJIc59E.m3u8/7jzCJJIc59E.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/prime-number-theorem-the-density-of-primes/", "duration": 406, "id": "7jzCJJIc59E", "title": "The prime number theorem", "format": "mp4", "description": "How can we estimate the number of primes up to x?", "slug": "prime-number-theorem-the-density-of-primes", "kind": "Video", "video_id": "7jzCJJIc59E", "keywords": "prime number, prime number theorem, prime density, natural logarithm", "youtube_id": "7jzCJJIc59E", "readable_id": "prime-number-theorem-the-density-of-primes"}, "5ui43_O0RVQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ui43_O0RVQ.mp4/5ui43_O0RVQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ui43_O0RVQ.mp4/5ui43_O0RVQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ui43_O0RVQ.m3u8/5ui43_O0RVQ.m3u8"}, "duration": 862, "id": "5ui43_O0RVQ", "title": "Flu surveillance", "format": "mp4", "description": "Find out how many people get hospitalized and die from the flu each year, and learn how we can use the internet to keep tabs on the flu! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/flu-surveillance/", "slug": "flu-surveillance", "kind": "Video", "video_id": "5ui43_O0RVQ", "keywords": "", "youtube_id": "5ui43_O0RVQ", "readable_id": "flu-surveillance"}, "5ZdxnFspyP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ZdxnFspyP8.mp4/5ZdxnFspyP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ZdxnFspyP8.mp4/5ZdxnFspyP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ZdxnFspyP8.m3u8/5ZdxnFspyP8.m3u8"}, "duration": 127, "id": "5ZdxnFspyP8", "title": "Subtracting polynomials", "format": "mp4", "description": "Subtracting Polynomials", "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/subtracting-polynomials/", "slug": "subtracting-polynomials", "kind": "Video", "video_id": "5ZdxnFspyP8", "keywords": "u11_l2_t2_we3, Subtracting, Polynomials", "youtube_id": "5ZdxnFspyP8", "readable_id": "subtracting-polynomials"}, "RBbJKOOZ6FY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RBbJKOOZ6FY.mp4/RBbJKOOZ6FY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RBbJKOOZ6FY.mp4/RBbJKOOZ6FY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RBbJKOOZ6FY.m3u8/RBbJKOOZ6FY.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/structural-constitutional-isomers-new/", "duration": 592, "id": "RBbJKOOZ6FY", "title": "Structural (constitutional) isomers", "format": "mp4", "description": "How to draw structural isomers using bond-line structures", "slug": "structural-constitutional-isomers-new", "kind": "Video", "video_id": "RBbJKOOZ6FY", "keywords": "", "youtube_id": "RBbJKOOZ6FY", "readable_id": "structural-constitutional-isomers-new"}, "e4MSN6IImpI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e4MSN6IImpI.mp4/e4MSN6IImpI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e4MSN6IImpI.mp4/e4MSN6IImpI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e4MSN6IImpI.m3u8/e4MSN6IImpI.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-class-binary-trees/", "duration": 228, "id": "e4MSN6IImpI", "title": "Doodling in math: Binary trees", "format": "mp4", "description": "Thank you to all the people I know whose math classes do not require such pastimes!More videos/info: http://vihart.com/doodlingDoodling Snakes + Graphs: ttp://www.youtube.com/watch?v=heKK95DAKmsDoodling Stars: http://www.youtube.com/watch?v=CfJzrmS9UfYhttp://vihart.com", "slug": "doodling-in-math-class-binary-trees", "kind": "Video", "video_id": "e4MSN6IImpI", "keywords": "math, doodles, mathematics, doodling, school, sierpinski's triangle, cellular automata, binary trees", "youtube_id": "e4MSN6IImpI", "readable_id": "doodling-in-math-class-binary-trees"}, "jdytgW5wKa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jdytgW5wKa4.mp4/jdytgW5wKa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jdytgW5wKa4.mp4/jdytgW5wKa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jdytgW5wKa4.m3u8/jdytgW5wKa4.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-plasma-cell-dyscrasias/what-is-multiple-myeloma/", "duration": 611, "id": "jdytgW5wKa4", "title": "What is multiple myeloma?", "format": "mp4", "description": "", "slug": "what-is-multiple-myeloma", "kind": "Video", "video_id": "jdytgW5wKa4", "keywords": "", "youtube_id": "jdytgW5wKa4", "readable_id": "what-is-multiple-myeloma"}, "trgXI-RCFJk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/trgXI-RCFJk.mp4/trgXI-RCFJk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/trgXI-RCFJk.mp4/trgXI-RCFJk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/trgXI-RCFJk.m3u8/trgXI-RCFJk.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/how-dna-is-replicated-2/", "duration": 529, "id": "trgXI-RCFJk", "title": "How DNA is replicated 2", "format": "mp4", "description": "", "slug": "how-dna-is-replicated-2", "kind": "Video", "video_id": "trgXI-RCFJk", "keywords": "", "youtube_id": "trgXI-RCFJk", "readable_id": "how-dna-is-replicated-2"}, "pWtt0AvU0KA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pWtt0AvU0KA.mp4/pWtt0AvU0KA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pWtt0AvU0KA.mp4/pWtt0AvU0KA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pWtt0AvU0KA.m3u8/pWtt0AvU0KA.m3u8"}, "duration": 840, "id": "pWtt0AvU0KA", "title": "Proof of fundamental theorem of calculus", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/fundamental-theorem-of-calculus/proof-of-fundamental-theorem-of-calculus/", "slug": "proof-of-fundamental-theorem-of-calculus", "kind": "Video", "video_id": "pWtt0AvU0KA", "keywords": "", "youtube_id": "pWtt0AvU0KA", "readable_id": "proof-of-fundamental-theorem-of-calculus"}, "b3xMC6zdrvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b3xMC6zdrvM.mp4/b3xMC6zdrvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b3xMC6zdrvM.mp4/b3xMC6zdrvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b3xMC6zdrvM.m3u8/b3xMC6zdrvM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/pacemakers/", "duration": 457, "id": "b3xMC6zdrvM", "title": "Pacemakers", "format": "mp4", "description": "", "slug": "pacemakers", "kind": "Video", "video_id": "b3xMC6zdrvM", "keywords": "", "youtube_id": "b3xMC6zdrvM", "readable_id": "pacemakers"}, "esJ5MbAHswc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/esJ5MbAHswc.mp4/esJ5MbAHswc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/esJ5MbAHswc.mp4/esJ5MbAHswc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/esJ5MbAHswc.m3u8/esJ5MbAHswc.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/functional-groups/identifying-functional-groups/", "duration": 558, "id": "esJ5MbAHswc", "title": "Identifying functional groups", "format": "mp4", "description": "How to identify functional groups present in organic compounds", "slug": "identifying-functional-groups", "kind": "Video", "video_id": "esJ5MbAHswc", "keywords": "", "youtube_id": "esJ5MbAHswc", "readable_id": "identifying-functional-groups"}, "dnYyMHSSb8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dnYyMHSSb8M.mp4/dnYyMHSSb8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dnYyMHSSb8M.mp4/dnYyMHSSb8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dnYyMHSSb8M.m3u8/dnYyMHSSb8M.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/half-life-of-radioactive-isotopes/", "duration": 407, "id": "dnYyMHSSb8M", "title": "Half-life plot", "format": "mp4", "description": "", "slug": "half-life-of-radioactive-isotopes", "kind": "Video", "video_id": "dnYyMHSSb8M", "keywords": "", "youtube_id": "dnYyMHSSb8M", "readable_id": "half-life-of-radioactive-isotopes"}, "3HvIKsQb6es": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3HvIKsQb6es.mp4/3HvIKsQb6es.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3HvIKsQb6es.mp4/3HvIKsQb6es.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3HvIKsQb6es.m3u8/3HvIKsQb6es.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/nerve-regulation-of-the-heart/changing-the-heart-rate-chronotropic-effect/", "duration": 722, "id": "3HvIKsQb6es", "title": "Changing the heart rate - chronotropic effect", "format": "mp4", "description": "Find out exactly how your autonomic nervous system has a chronotropic effect (i.e. timing) that changes speed of your heartbeat! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "changing-the-heart-rate-chronotropic-effect", "kind": "Video", "video_id": "3HvIKsQb6es", "keywords": "", "youtube_id": "3HvIKsQb6es", "readable_id": "changing-the-heart-rate-chronotropic-effect"}, "EAR9RAMg9NY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EAR9RAMg9NY.mp4/EAR9RAMg9NY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EAR9RAMg9NY.mp4/EAR9RAMg9NY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EAR9RAMg9NY.m3u8/EAR9RAMg9NY.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/polykleitos-doryphoros-spear-bearer/", "duration": 308, "id": "EAR9RAMg9NY", "title": "Polykleitos, Doryphoros (Spear Bearer)", "format": "mp4", "description": "Polykleitos, Doryphoros (Spear-Bearer), Early Classical Period, Roman marble copy after a Greek bronze original from c. 450-440 B.C.E. (Museo Archaeologico Nazionale, Naples). Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "polykleitos-doryphoros-spear-bearer", "kind": "Video", "video_id": "EAR9RAMg9NY", "keywords": "art history, smarthistory, khan academy, doryphoros, polykleitos, ancient greek art, classical art, contrapposto, Canon", "youtube_id": "EAR9RAMg9NY", "readable_id": "polykleitos-doryphoros-spear-bearer"}, "pyDPJENZOs0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pyDPJENZOs0.mp4/pyDPJENZOs0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pyDPJENZOs0.mp4/pyDPJENZOs0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pyDPJENZOs0.m3u8/pyDPJENZOs0.m3u8"}, "duration": 695, "id": "pyDPJENZOs0", "title": "Charlemagne and the Carolingian revival (2 of 2)", "format": "mp4", "description": "A brief introduction to Charlemagne's military campaigns and the cultural revival that he supported. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "path": "khan/humanities/medieval-world/latin-western-europe/carolingian1/charlemagne-and-the-carolingian-revival/", "slug": "charlemagne-and-the-carolingian-revival", "kind": "Video", "video_id": "pyDPJENZOs0", "keywords": "charlemagne, Carolingian, medieval", "youtube_id": "pyDPJENZOs0", "readable_id": "charlemagne-and-the-carolingian-revival"}, "pPM72fPwIjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pPM72fPwIjw.mp4/pPM72fPwIjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pPM72fPwIjw.mp4/pPM72fPwIjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pPM72fPwIjw.m3u8/pPM72fPwIjw.m3u8"}, "duration": 204, "id": "pPM72fPwIjw", "title": "Proof that sum of rational and irrational is irrational", "format": "mp4", "description": "", "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/proof-that-sum-of-rational-and-irrational-is-irrational/", "slug": "proof-that-sum-of-rational-and-irrational-is-irrational", "kind": "Video", "video_id": "pPM72fPwIjw", "keywords": "", "youtube_id": "pPM72fPwIjw", "readable_id": "proof-that-sum-of-rational-and-irrational-is-irrational"}, "TYXCcTchLnI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TYXCcTchLnI.mp4/TYXCcTchLnI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TYXCcTchLnI.mp4/TYXCcTchLnI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TYXCcTchLnI.m3u8/TYXCcTchLnI.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/athenian-agora/", "duration": 280, "id": "TYXCcTchLnI", "title": "The Athenian Agora and the experiment in democracy", "format": "mp4", "description": "Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "athenian-agora", "kind": "Video", "video_id": "TYXCcTchLnI", "keywords": "athens, classical, democracy, Greece,", "youtube_id": "TYXCcTchLnI", "readable_id": "athenian-agora"}, "Iz6IVf8frjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iz6IVf8frjw.mp4/Iz6IVf8frjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iz6IVf8frjw.mp4/Iz6IVf8frjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iz6IVf8frjw.m3u8/Iz6IVf8frjw.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/logarithm-exponential-deductions/", "duration": 359, "id": "Iz6IVf8frjw", "title": "Deducing with logarithmic and exponential form", "format": "mp4", "description": "", "slug": "logarithm-exponential-deductions", "kind": "Video", "video_id": "Iz6IVf8frjw", "keywords": "", "youtube_id": "Iz6IVf8frjw", "readable_id": "logarithm-exponential-deductions"}, "vBlR2xNAGmo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vBlR2xNAGmo.mp4/vBlR2xNAGmo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vBlR2xNAGmo.mp4/vBlR2xNAGmo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vBlR2xNAGmo.m3u8/vBlR2xNAGmo.m3u8"}, "path": "khan/math/geometry/basic-geometry/koch_snowflake/area-of-koch-snowflake-part-2-advanced/", "duration": 392, "id": "vBlR2xNAGmo", "title": "Area of Koch snowflake (part 2) - advanced", "format": "mp4", "description": "Summing an infinite geometric series to finally find the finite area of a Koch Snowflake", "slug": "area-of-koch-snowflake-part-2-advanced", "kind": "Video", "video_id": "vBlR2xNAGmo", "keywords": "area, infinite, sum, sequence", "youtube_id": "vBlR2xNAGmo", "readable_id": "area-of-koch-snowflake-part-2-advanced"}, "YbNVUhW-HJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YbNVUhW-HJM.mp4/YbNVUhW-HJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YbNVUhW-HJM.mp4/YbNVUhW-HJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YbNVUhW-HJM.m3u8/YbNVUhW-HJM.m3u8"}, "duration": 365, "id": "YbNVUhW-HJM", "title": "How many people can a blimp carry", "format": "mp4", "description": "", "path": "khan/math/geometry/basic-geometry/volume_tutorial/density-example-blimp/", "slug": "density-example-blimp", "kind": "Video", "video_id": "YbNVUhW-HJM", "keywords": "", "youtube_id": "YbNVUhW-HJM", "readable_id": "density-example-blimp"}, "zjhepBLtqug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zjhepBLtqug.mp4/zjhepBLtqug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zjhepBLtqug.mp4/zjhepBLtqug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zjhepBLtqug.m3u8/zjhepBLtqug.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/arrhenius-equation/", "duration": 564, "id": "zjhepBLtqug", "title": "Arrhenius equation", "format": "mp4", "description": "", "slug": "arrhenius-equation", "kind": "Video", "video_id": "zjhepBLtqug", "keywords": "", "youtube_id": "zjhepBLtqug", "readable_id": "arrhenius-equation"}, "oYoQpDtBLac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oYoQpDtBLac.mp4/oYoQpDtBLac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oYoQpDtBLac.mp4/oYoQpDtBLac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oYoQpDtBLac.m3u8/oYoQpDtBLac.m3u8"}, "duration": 296, "id": "oYoQpDtBLac", "title": "cis-trans and E-Z naming scheme for alkenes", "format": "mp4", "description": "Cis-Trans and E-Z Naming Scheme for Alkenes", "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-alkenes/cis-trans-and-e-z-naming-scheme-for-alkenes/", "slug": "cis-trans-and-e-z-naming-scheme-for-alkenes", "kind": "Video", "video_id": "oYoQpDtBLac", "keywords": "Cis-Trans, and, E-Z, Naming, Scheme, for, Alkenes", "youtube_id": "oYoQpDtBLac", "readable_id": "cis-trans-and-e-z-naming-scheme-for-alkenes"}, "d1XTOsnNlgg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d1XTOsnNlgg.mp4/d1XTOsnNlgg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d1XTOsnNlgg.mp4/d1XTOsnNlgg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d1XTOsnNlgg.m3u8/d1XTOsnNlgg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-introduction/", "duration": 530, "id": "d1XTOsnNlgg", "title": "Titration introduction", "format": "mp4", "description": "", "slug": "titration-introduction", "kind": "Video", "video_id": "d1XTOsnNlgg", "keywords": "", "youtube_id": "d1XTOsnNlgg", "readable_id": "titration-introduction"}, "KXDOOmquZag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KXDOOmquZag.mp4/KXDOOmquZag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KXDOOmquZag.mp4/KXDOOmquZag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KXDOOmquZag.m3u8/KXDOOmquZag.m3u8"}, "duration": 240, "id": "KXDOOmquZag", "title": "Dot plot and distribution word problem", "format": "mp4", "description": "Let's examine the distribution of a dot plot to draw conclusions about the times of Olympic swimmers.", "path": "comparing-swim-times-at-the-olympics/", "slug": "comparing-swim-times-at-the-olympics", "kind": "Video", "video_id": "KXDOOmquZag", "keywords": "", "youtube_id": "KXDOOmquZag", "readable_id": "comparing-swim-times-at-the-olympics"}, "pbLiN8D9gAk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pbLiN8D9gAk.mp4/pbLiN8D9gAk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pbLiN8D9gAk.mp4/pbLiN8D9gAk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pbLiN8D9gAk.m3u8/pbLiN8D9gAk.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/writing-and-using-inequalities-3/", "duration": 121, "id": "pbLiN8D9gAk", "title": "Constructing, solving two-step inequality example", "format": "mp4", "description": "Let's tackle this word problem together. We'll interpret the information and then construct a linear inequality to solve it.", "slug": "writing-and-using-inequalities-3", "kind": "Video", "video_id": "pbLiN8D9gAk", "keywords": "U05_L1_T3_we3, Writing, and, using, inequalities, CC_6_EE_6, CC_6_EE_8, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "pbLiN8D9gAk", "readable_id": "writing-and-using-inequalities-3"}, "NG7nbAcAFNc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NG7nbAcAFNc.mp4/NG7nbAcAFNc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NG7nbAcAFNc.mp4/NG7nbAcAFNc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NG7nbAcAFNc.m3u8/NG7nbAcAFNc.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/getting-ea-arterial-elastance-from-the-pv-loop/", "duration": 681, "id": "NG7nbAcAFNc", "title": "Getting Ea (arterial elastance) from the PV loop", "format": "mp4", "description": "Find out how to use the PV loop to draw the Ea (Arterial Elastance) line, and what it represents. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "getting-ea-arterial-elastance-from-the-pv-loop", "kind": "Video", "video_id": "NG7nbAcAFNc", "keywords": "", "youtube_id": "NG7nbAcAFNc", "readable_id": "getting-ea-arterial-elastance-from-the-pv-loop"}, "LeZsfzlbje4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LeZsfzlbje4.mp4/LeZsfzlbje4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LeZsfzlbje4.mp4/LeZsfzlbje4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LeZsfzlbje4.m3u8/LeZsfzlbje4.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-explore-bridge-building/", "duration": 189, "id": "LeZsfzlbje4", "title": "DLab: Bridge building project", "format": "mp4", "description": "", "slug": "discovery-lab-explore-bridge-building", "kind": "Video", "video_id": "LeZsfzlbje4", "keywords": "", "youtube_id": "LeZsfzlbje4", "readable_id": "discovery-lab-explore-bridge-building"}, "WffVdYETdng": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WffVdYETdng.mp4/WffVdYETdng.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WffVdYETdng.mp4/WffVdYETdng.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WffVdYETdng.m3u8/WffVdYETdng.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-unit-circle/matching-ratios-trig-functions/", "duration": 417, "id": "WffVdYETdng", "title": "Matching ratios to trig functions", "format": "mp4", "description": "", "slug": "matching-ratios-trig-functions", "kind": "Video", "video_id": "WffVdYETdng", "keywords": "", "youtube_id": "WffVdYETdng", "readable_id": "matching-ratios-trig-functions"}, "tCV9VyIIaw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tCV9VyIIaw0.mp4/tCV9VyIIaw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tCV9VyIIaw0.mp4/tCV9VyIIaw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tCV9VyIIaw0.m3u8/tCV9VyIIaw0.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/restricting-trig-function-domain/", "duration": 360, "id": "tCV9VyIIaw0", "title": "Restricting domain of trig function to make invertible", "format": "mp4", "description": "", "slug": "restricting-trig-function-domain", "kind": "Video", "video_id": "tCV9VyIIaw0", "keywords": "", "youtube_id": "tCV9VyIIaw0", "readable_id": "restricting-trig-function-domain"}, "pkEiHZAtoro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pkEiHZAtoro.mp4/pkEiHZAtoro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pkEiHZAtoro.mp4/pkEiHZAtoro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pkEiHZAtoro.m3u8/pkEiHZAtoro.m3u8"}, "duration": 348, "id": "pkEiHZAtoro", "title": "Opportunity cost", "format": "mp4", "description": "Opportunity cost (and marginal cost) based on the PPF", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/production-possibilities/opportunity-cost/", "slug": "opportunity-cost", "kind": "Video", "video_id": "pkEiHZAtoro", "keywords": "economics, opportunity, marginal, cost, PPF", "youtube_id": "pkEiHZAtoro", "readable_id": "opportunity-cost"}, "U8GzssRfVMc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U8GzssRfVMc.mp4/U8GzssRfVMc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U8GzssRfVMc.mp4/U8GzssRfVMc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U8GzssRfVMc.m3u8/U8GzssRfVMc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-8-9/", "duration": 168, "id": "U8GzssRfVMc", "title": "9 Painting red cubes blue", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-9", "kind": "Video", "video_id": "U8GzssRfVMc", "keywords": "", "youtube_id": "U8GzssRfVMc", "readable_id": "sat-2008-may-8-9"}, "rTF_WrVSPPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rTF_WrVSPPQ.mp4/rTF_WrVSPPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rTF_WrVSPPQ.mp4/rTF_WrVSPPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rTF_WrVSPPQ.m3u8/rTF_WrVSPPQ.m3u8"}, "duration": 140, "id": "rTF_WrVSPPQ", "title": "Paint Analysis of Jackson Pollock's Mural", "format": "mp4", "description": "Getty scientist Alan Phenix deploys the latest technology to uncover the hidden secrets of Jackson Pollock's Mural.\u00a0Love art? Follow us on Google+", "path": "pollock-paint-analysis/", "slug": "pollock-paint-analysis", "kind": "Video", "video_id": "rTF_WrVSPPQ", "keywords": "", "youtube_id": "rTF_WrVSPPQ", "readable_id": "pollock-paint-analysis"}, "a8LzhzcEunY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a8LzhzcEunY.mp4/a8LzhzcEunY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a8LzhzcEunY.mp4/a8LzhzcEunY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a8LzhzcEunY.m3u8/a8LzhzcEunY.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-behavior/similarity/", "duration": 202, "id": "a8LzhzcEunY", "title": "Similarity", "format": "mp4", "description": "", "slug": "similarity", "kind": "Video", "video_id": "a8LzhzcEunY", "keywords": "", "youtube_id": "a8LzhzcEunY", "readable_id": "similarity"}, "yQsCMnz9wO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yQsCMnz9wO8.mp4/yQsCMnz9wO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yQsCMnz9wO8.mp4/yQsCMnz9wO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yQsCMnz9wO8.m3u8/yQsCMnz9wO8.m3u8"}, "duration": 161, "id": "yQsCMnz9wO8", "title": "Clarification of confidence interval of difference of means", "format": "mp4", "description": "Clarification of Confidence Interval of Difference of Means", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/clarification-of-confidence-interval-of-difference-of-means/", "slug": "clarification-of-confidence-interval-of-difference-of-means", "kind": "Video", "video_id": "yQsCMnz9wO8", "keywords": "Clarification, of, Confidence, Interval, Difference, Means, CC_7_SP_2, CC_7_SP_3, CC_7_SP_4", "youtube_id": "yQsCMnz9wO8", "readable_id": "clarification-of-confidence-interval-of-difference-of-means"}, "HYYGGKChMDE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HYYGGKChMDE.mp4/HYYGGKChMDE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HYYGGKChMDE.mp4/HYYGGKChMDE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HYYGGKChMDE.m3u8/HYYGGKChMDE.m3u8"}, "duration": 221, "id": "HYYGGKChMDE", "title": "Unit cost problem using fractions", "format": "mp4", "description": "In this example, we show how unit cost can be determined using an equation with fractions.", "path": "unit-cost-with-fractions-1/", "slug": "unit-cost-with-fractions-1", "kind": "Video", "video_id": "HYYGGKChMDE", "keywords": "", "youtube_id": "HYYGGKChMDE", "readable_id": "unit-cost-with-fractions-1"}, "LkjyVZMyMaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LkjyVZMyMaY.mp4/LkjyVZMyMaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LkjyVZMyMaY.mp4/LkjyVZMyMaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LkjyVZMyMaY.m3u8/LkjyVZMyMaY.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/britain-18c/britain-ageof-revolution/room-1780-1810/", "duration": 197, "id": "LkjyVZMyMaY", "title": "Room: 1780-1810", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Greg Sullivan explores the period 1780-1810.\n\nLearn more about the art featured in this video:\n- Philip James De Loutherbourg, The Battle of Camperdown, 1799\n-\u00a0Thomas Daniell, Sir Charles Warre Malet, Concluding a Treaty in 1790 in Durbar with the Peshwa of the Maratha Empire,\u00a01805\n-\u00a0Johan Zoffany, Colonel Mordaunt\u2019s Cock Match, 1784\u20136", "slug": "room-1780-1810", "kind": "Video", "video_id": "LkjyVZMyMaY", "keywords": "Tate, ", "youtube_id": "LkjyVZMyMaY", "readable_id": "room-1780-1810"}, "u5vM4rtUSQg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u5vM4rtUSQg.mp4/u5vM4rtUSQg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u5vM4rtUSQg.mp4/u5vM4rtUSQg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u5vM4rtUSQg.m3u8/u5vM4rtUSQg.m3u8"}, "duration": 363, "id": "u5vM4rtUSQg", "title": "Lindau Gospels cover", "format": "mp4", "description": "Jeweled upper cover of the Lindau Gospels, c. 880, Court School of Charles the Bald, 350 x 275 mm, cover may have been made in the Royal Abbey of St. Denis (Morgan Library and Museum, New York)\n\nSpeakers: Dr. Nancy Ross and Dr. Steven Zucker", "path": "khan/humanities/medieval-world/latin-western-europe/carolingian1/lindau-gospels-cover/", "slug": "lindau-gospels-cover", "kind": "Video", "video_id": "u5vM4rtUSQg", "keywords": "medieval, book, cover, binding, gems, jewels, Lindau, Morgan, Gospels", "youtube_id": "u5vM4rtUSQg", "readable_id": "lindau-gospels-cover"}, "lfRt0Y7e5Ow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lfRt0Y7e5Ow.mp4/lfRt0Y7e5Ow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lfRt0Y7e5Ow.mp4/lfRt0Y7e5Ow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lfRt0Y7e5Ow.m3u8/lfRt0Y7e5Ow.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/baroque-rococo-introduction/", "duration": 558, "id": "lfRt0Y7e5Ow", "title": "Baroque and Rococo", "format": "mp4", "description": "A video from the Utah System of Higher Education (with special thanks to Dr. Nancy Ross)", "slug": "baroque-rococo-introduction", "kind": "Video", "video_id": "lfRt0Y7e5Ow", "keywords": "Baroque, Rococo, art, Romanticism, Realism, Impressionism", "youtube_id": "lfRt0Y7e5Ow", "readable_id": "baroque-rococo-introduction"}, "PEMkfgrifDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PEMkfgrifDw.mp4/PEMkfgrifDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PEMkfgrifDw.mp4/PEMkfgrifDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PEMkfgrifDw.m3u8/PEMkfgrifDw.m3u8"}, "duration": 617, "id": "PEMkfgrifDw", "title": "Market equilibrium", "format": "mp4", "description": "Equilibrium price and quantity for supply and demand", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/market-equilibrium-tutorial/market-equilibrium/", "slug": "market-equilibrium", "kind": "Video", "video_id": "PEMkfgrifDw", "keywords": "supply, demand, economics", "youtube_id": "PEMkfgrifDw", "readable_id": "market-equilibrium"}, "mqsIJucBn6c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mqsIJucBn6c.mp4/mqsIJucBn6c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mqsIJucBn6c.mp4/mqsIJucBn6c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mqsIJucBn6c.m3u8/mqsIJucBn6c.m3u8"}, "duration": 148, "id": "mqsIJucBn6c", "title": "Number patterns: visualizing sequence relationships", "format": "mp4", "description": "Now we're visually plotting ordered pairs based on sequence relationships. The sequence is based on given rules. You're good at following rules, right? Of course you are!", "path": "sequence-relationship-example/", "slug": "sequence-relationship-example", "kind": "Video", "video_id": "mqsIJucBn6c", "keywords": "", "youtube_id": "mqsIJucBn6c", "readable_id": "sequence-relationship-example"}, "GEId0GonOZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GEId0GonOZM.mp4/GEId0GonOZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GEId0GonOZM.mp4/GEId0GonOZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GEId0GonOZM.m3u8/GEId0GonOZM.m3u8"}, "duration": 120, "id": "GEId0GonOZM", "title": "Difference between inductive and deductive reasoning", "format": "mp4", "description": "Deductive Reasoning 1", "path": "khan/math/precalculus/seq_induction/deductive-and-inductive-reasoning/deductive-reasoning-1/", "slug": "deductive-reasoning-1", "kind": "Video", "video_id": "GEId0GonOZM", "keywords": "U12_L1_T4_we1, Deductive, Reasoning, CC_6_EE_9", "youtube_id": "GEId0GonOZM", "readable_id": "deductive-reasoning-1"}, "ait3g1h8Wp8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ait3g1h8Wp8.mp4/ait3g1h8Wp8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ait3g1h8Wp8.mp4/ait3g1h8Wp8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ait3g1h8Wp8.m3u8/ait3g1h8Wp8.m3u8"}, "duration": 228, "id": "ait3g1h8Wp8", "title": "Peter Kennard's political photomontages", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nShocking and often made of contradictory images, the photomontages of artist Peter Kennard leave a mark on their viewers. For the past four decades Kennard has consistently challenged power structures and injustice, from his anti-nuclear works of the 1980s to the powerful images he created in response to the wars in Iraq and Afghanistan. Kennard has created a legacy of powerful work that stands as an open confrontation to political injustice. He creates montages using images of war, conflict, and what he calls \u201ccollateral damage\u201d\u2014usually in the form of human beings\u2014to protest, comment, and reflect upon global conflicts. Join Kennard on a tour of his studio as he explains his work.\nPhotomontage is a technique in which two or more images are cut and joined together to create a new one. What do you think makes Kennard\u2019s montages so powerful?\n\nSee more powerful photographs and collages by Peter Kennard here.\n", "path": "peter-kennard-studio-visit/", "slug": "peter-kennard-studio-visit", "kind": "Video", "video_id": "ait3g1h8Wp8", "keywords": "Tate", "youtube_id": "ait3g1h8Wp8", "readable_id": "peter-kennard-studio-visit"}, "Loy1zLkbuF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Loy1zLkbuF0.mp4/Loy1zLkbuF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Loy1zLkbuF0.mp4/Loy1zLkbuF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Loy1zLkbuF0.m3u8/Loy1zLkbuF0.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/conformity-and-obedience/", "duration": 358, "id": "Loy1zLkbuF0", "title": "Conformity and obedience", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "conformity-and-obedience", "kind": "Video", "video_id": "Loy1zLkbuF0", "keywords": "", "youtube_id": "Loy1zLkbuF0", "readable_id": "conformity-and-obedience"}, "iulx0z1lz8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iulx0z1lz8M.mp4/iulx0z1lz8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iulx0z1lz8M.mp4/iulx0z1lz8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iulx0z1lz8M.m3u8/iulx0z1lz8M.m3u8"}, "duration": 334, "id": "iulx0z1lz8M", "title": "Example 1: Using the quadratic formula", "format": "mp4", "description": "Quadratic Formula 1", "path": "khan/math/algebra/quadratics/quadratic-formula/quadratic-formula-1/", "slug": "quadratic-formula-1", "kind": "Video", "video_id": "iulx0z1lz8M", "keywords": "U10_L1_T3_we1, Quadratic, Formula, CC_39336_A-REI_4", "youtube_id": "iulx0z1lz8M", "readable_id": "quadratic-formula-1"}, "uk7gS3cZVp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uk7gS3cZVp4.mp4/uk7gS3cZVp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uk7gS3cZVp4.mp4/uk7gS3cZVp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uk7gS3cZVp4.m3u8/uk7gS3cZVp4.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/graphing-a-line-in-slope-intercept-form/", "duration": 181, "id": "uk7gS3cZVp4", "title": "Graph from slope-intercept equation example", "format": "mp4", "description": "Graphing a line in slope intercept form", "slug": "graphing-a-line-in-slope-intercept-form", "kind": "Video", "video_id": "uk7gS3cZVp4", "keywords": "U04_L1_T3_we1, Graphing, line, in, slope, intercept, form, CC_8_EE_6, CC_8_F_3, CC_8_F_5, CC_39336_F-IF_4, CC_39336_F-IF_7, CC_39336_F-IF_7_a", "youtube_id": "uk7gS3cZVp4", "readable_id": "graphing-a-line-in-slope-intercept-form"}, "T6G0ewxKkCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T6G0ewxKkCQ.mp4/T6G0ewxKkCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T6G0ewxKkCQ.mp4/T6G0ewxKkCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T6G0ewxKkCQ.m3u8/T6G0ewxKkCQ.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/moma-brancusi-pogany/", "duration": 121, "id": "T6G0ewxKkCQ", "title": "Constantin Brancusi, \"Mlle Pogany\"", "format": "mp4", "description": "To learn more about how abstract artists became the radical thinkers of their time, take our online course, Modern Art, 1880-1945.", "slug": "moma-brancusi-pogany", "kind": "Video", "video_id": "T6G0ewxKkCQ", "keywords": "", "youtube_id": "T6G0ewxKkCQ", "readable_id": "moma-brancusi-pogany"}, "-U8Fl45-DFw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-U8Fl45-DFw.mp4/-U8Fl45-DFw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-U8Fl45-DFw.mp4/-U8Fl45-DFw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-U8Fl45-DFw.m3u8/-U8Fl45-DFw.m3u8"}, "duration": 287, "id": "-U8Fl45-DFw", "title": "Martin Creed", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCatch up with artist Martin Creed as he stages a performance piece at Tate Britain. Work No. 850 consists of runners dodging visitors as they sprint through the gallery as fast as they can. It happens every thirty seconds, jolting this normally serene space for an instant. In this video, Creed tells us about some of the ideas behind the piece, how it makes him laugh, and why he thinks that art is \"just a word.\"", "path": "martin-creed/", "slug": "martin-creed", "kind": "Video", "video_id": "-U8Fl45-DFw", "keywords": "Tate, performance art", "youtube_id": "-U8Fl45-DFw", "readable_id": "martin-creed"}, "ygDkZqKOZWU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ygDkZqKOZWU.mp4/ygDkZqKOZWU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ygDkZqKOZWU.mp4/ygDkZqKOZWU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ygDkZqKOZWU.m3u8/ygDkZqKOZWU.m3u8"}, "path": "khan/science/organic-chemistry/stereochemistry-topic/chirality-absolute-configuration/r-s-system-for-cyclic-compounds/", "duration": 741, "id": "ygDkZqKOZWU", "title": "R,S system for cyclic compounds", "format": "mp4", "description": "", "slug": "r-s-system-for-cyclic-compounds", "kind": "Video", "video_id": "ygDkZqKOZWU", "keywords": "", "youtube_id": "ygDkZqKOZWU", "readable_id": "r-s-system-for-cyclic-compounds"}, "_YXF7WDpWpg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_YXF7WDpWpg.mp4/_YXF7WDpWpg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_YXF7WDpWpg.mp4/_YXF7WDpWpg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_YXF7WDpWpg.m3u8/_YXF7WDpWpg.m3u8"}, "duration": 194, "id": "_YXF7WDpWpg", "title": "Units of measurement word problem: making change", "format": "mp4", "description": "To \"make change\" means to be able to give people the correct amount back in dollars and cents when paying for something. This is one of the most common and important skills haivng to do with unit conversion. Let's do it!", "path": "change-from-buying-apples/", "slug": "change-from-buying-apples", "kind": "Video", "video_id": "_YXF7WDpWpg", "keywords": "", "youtube_id": "_YXF7WDpWpg", "readable_id": "change-from-buying-apples"}, "j3OqfduWdhc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j3OqfduWdhc.mp4/j3OqfduWdhc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j3OqfduWdhc.mp4/j3OqfduWdhc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j3OqfduWdhc.m3u8/j3OqfduWdhc.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/american-art-wwii/motion/", "duration": 161, "id": "j3OqfduWdhc", "title": "\"Motion\" with Marla Prather", "format": "mp4", "description": "Met curator Marla Prather on motion in Alexander Calder\u2019s Mobile.\n\nAlexander Calder was born to a family of sculptors. His grandfather, Alexander Milne Calder (1846-1923), studied with Thomas Eakins and is famous for the elaborate sculptural decorations of Philadelphia's City Hall. Calder himself had studied to be an engineer at the Stevens Institute of Technology before attending the Art Students League in New York. Like many aspiring artists of his generation, Calder then spent time in Paris where he was inspired by Joan Mir\u00f3's work and absorbed the playfulness of Dada. Indeed, it was the French artist Marcel Duchamp who christened Calder's hanging sculptures \"mobiles.\" For works such as this one, Calder cut sheet metal into various shapes and assembled these elements in a chain-linked system so that the flat metal pieces move in response to currents of air.\n\nThis particular mobile was included in the 1942 exhibition \"Artists for Victory\" at the Metropolitan where the sculpture committee awarded it a prize and recommended it be added to the collection.\n\nView this work on\u00a0metmuseum.org.\n", "slug": "motion", "kind": "Video", "video_id": "j3OqfduWdhc", "keywords": "control, metal, motion, nature, sculpture, simplicity, North America", "youtube_id": "j3OqfduWdhc", "readable_id": "motion"}, "fyJkXBvcA2Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fyJkXBvcA2Q.mp4/fyJkXBvcA2Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fyJkXBvcA2Q.mp4/fyJkXBvcA2Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fyJkXBvcA2Q.m3u8/fyJkXBvcA2Q.m3u8"}, "duration": 585, "id": "fyJkXBvcA2Q", "title": "Laplace transform of cos t and polynomials", "format": "mp4", "description": "Laplace transform of cosine and polynomials!", "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/laplace-transform-6/", "slug": "laplace-transform-6", "kind": "Video", "video_id": "fyJkXBvcA2Q", "keywords": "laplace, transform", "youtube_id": "fyJkXBvcA2Q", "readable_id": "laplace-transform-6"}, "C89z5GncK88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C89z5GncK88.mp4/C89z5GncK88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C89z5GncK88.mp4/C89z5GncK88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C89z5GncK88.m3u8/C89z5GncK88.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/robert-motherwell-elegy-to-the-spanish-republic-no-57-1957-60/", "duration": 241, "id": "C89z5GncK88", "title": "Robert Motherwell, Elegy to the Spanish Republic No. 57", "format": "mp4", "description": "Robert Motherwell, Elegy to the Spanish Republic No. 57, 1957-60, oil on canvas, 84 x 109-1/8 inches (San Francisco Museum of Modern Art)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "robert-motherwell-elegy-to-the-spanish-republic-no-57-1957-60", "kind": "Video", "video_id": "C89z5GncK88", "keywords": "Motherwell, Elegy, Spanish Civil War, Abstract Expressionism, painting, art, modernism, abstraction", "youtube_id": "C89z5GncK88", "readable_id": "robert-motherwell-elegy-to-the-spanish-republic-no-57-1957-60"}, "zOZiuAOuOkA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zOZiuAOuOkA.mp4/zOZiuAOuOkA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zOZiuAOuOkA.mp4/zOZiuAOuOkA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zOZiuAOuOkA.m3u8/zOZiuAOuOkA.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/cassatt-the-loge-1882/", "duration": 207, "id": "zOZiuAOuOkA", "title": "Cassatt, The Loge", "format": "mp4", "description": "Mary Cassatt, The Loge, oil on canvas, 1882. 31-7/16 x 25-1/8 inches (National Gallery of Art)\n\nSpeakers: Beth Harris and Steven Zucker", "slug": "cassatt-the-loge-1882", "kind": "Video", "video_id": "zOZiuAOuOkA", "keywords": "Cassatt, Impressionism, Art, Art History, Smarthistory, National Gallery", "youtube_id": "zOZiuAOuOkA", "readable_id": "cassatt-the-loge-1882"}, "VuJEidLhY1E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VuJEidLhY1E.mp4/VuJEidLhY1E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VuJEidLhY1E.mp4/VuJEidLhY1E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VuJEidLhY1E.m3u8/VuJEidLhY1E.m3u8"}, "duration": 561, "id": "VuJEidLhY1E", "title": "How many bags of potato chips do people eat?", "format": "mp4", "description": "Using elimination to solve a system of equations", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/how-many-bags-of-potato-chips-do-people-eat/", "slug": "how-many-bags-of-potato-chips-do-people-eat", "kind": "Video", "video_id": "VuJEidLhY1E", "keywords": "", "youtube_id": "VuJEidLhY1E", "readable_id": "how-many-bags-of-potato-chips-do-people-eat"}, "0t4MF9ZoppM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0t4MF9ZoppM.mp4/0t4MF9ZoppM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0t4MF9ZoppM.mp4/0t4MF9ZoppM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0t4MF9ZoppM.m3u8/0t4MF9ZoppM.m3u8"}, "path": "khan/humanities/history/1600s-1800s/french-revolution-tutorial/french-revolution-part-2/", "duration": 891, "id": "0t4MF9ZoppM", "title": "French Revolution (part 2)", "format": "mp4", "description": "Royals try to escape. Champ De Mars Massacre. Declaration of Pillnitz. Movement towards becoming a Republic.", "slug": "french-revolution-part-2", "kind": "Video", "video_id": "0t4MF9ZoppM", "keywords": "pillnitz, champ, mars, french, revolution", "youtube_id": "0t4MF9ZoppM", "readable_id": "french-revolution-part-2"}, "Uwpdiq9mYME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Uwpdiq9mYME.mp4/Uwpdiq9mYME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Uwpdiq9mYME.mp4/Uwpdiq9mYME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Uwpdiq9mYME.m3u8/Uwpdiq9mYME.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/greek-pottery/dipylon-vase/", "duration": 253, "id": "Uwpdiq9mYME", "title": "Geometric: Dipylon Amphora", "format": "mp4", "description": "Dipylon Amphora, c. 755-750 B.C.E., ceramic, 160 cm (National Archaeological Museum, Athens)\u00a0Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "dipylon-vase", "kind": "Video", "video_id": "Uwpdiq9mYME", "keywords": "", "youtube_id": "Uwpdiq9mYME", "readable_id": "dipylon-vase"}, "SJVhtIGAkKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SJVhtIGAkKs.mp4/SJVhtIGAkKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SJVhtIGAkKs.mp4/SJVhtIGAkKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SJVhtIGAkKs.m3u8/SJVhtIGAkKs.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/eulers-method-tutorial/eulers-method-program-code/", "duration": 668, "id": "SJVhtIGAkKs", "title": "Euler's method program code", "format": "mp4", "description": "", "slug": "eulers-method-program-code", "kind": "Video", "video_id": "SJVhtIGAkKs", "keywords": "", "youtube_id": "SJVhtIGAkKs", "readable_id": "eulers-method-program-code"}, "h3iIi56Yae8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h3iIi56Yae8.mp4/h3iIi56Yae8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h3iIi56Yae8.mp4/h3iIi56Yae8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h3iIi56Yae8.m3u8/h3iIi56Yae8.m3u8"}, "duration": 727, "id": "h3iIi56Yae8", "title": "Alcohol nomenclature", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/alcohol-nomenclature-rules/", "slug": "alcohol-nomenclature-rules", "kind": "Video", "video_id": "h3iIi56Yae8", "keywords": "", "youtube_id": "h3iIi56Yae8", "readable_id": "alcohol-nomenclature-rules"}, "NguAe9lf_wk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NguAe9lf_wk.mp4/NguAe9lf_wk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NguAe9lf_wk.mp4/NguAe9lf_wk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NguAe9lf_wk.m3u8/NguAe9lf_wk.m3u8"}, "duration": 419, "id": "NguAe9lf_wk", "title": "Genes and health\u2014moving beyond race", "format": "mp4", "description": "Many diseases have both genetic and environmental causes. Scientists often take traditional racial boundaries into account when researching why certain populations seem predisposed to certain diseases. But work on asthma at the University of California\u2013San Francisco is going beyond current concepts of race to consider human genetic variation\u2014how our species has diversified in the past 150,000 years\u2014to hone in on inherited components that may play a role in disease prevalence.", "path": "genes-and-healthmoving-beyond-race/", "slug": "genes-and-healthmoving-beyond-race", "kind": "Video", "video_id": "NguAe9lf_wk", "keywords": "", "youtube_id": "NguAe9lf_wk", "readable_id": "genes-and-healthmoving-beyond-race"}, "IW8OnV8J2Qw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IW8OnV8J2Qw.mp4/IW8OnV8J2Qw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IW8OnV8J2Qw.mp4/IW8OnV8J2Qw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IW8OnV8J2Qw.m3u8/IW8OnV8J2Qw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/pacinians-corpuscle-and-merkels-disk/", "duration": 438, "id": "IW8OnV8J2Qw", "title": "Pacinian's Corpuscle and Merkel's Disk", "format": "mp4", "description": "", "slug": "pacinians-corpuscle-and-merkels-disk", "kind": "Video", "video_id": "IW8OnV8J2Qw", "keywords": "", "youtube_id": "IW8OnV8J2Qw", "readable_id": "pacinians-corpuscle-and-merkels-disk"}, "a5sFUXkxyGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a5sFUXkxyGc.mp4/a5sFUXkxyGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a5sFUXkxyGc.mp4/a5sFUXkxyGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a5sFUXkxyGc.m3u8/a5sFUXkxyGc.m3u8"}, "duration": 753, "id": "a5sFUXkxyGc", "title": "Depreciation", "format": "mp4", "description": "Depreciation a capital asset", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/depreciation/", "slug": "depreciation", "kind": "Video", "video_id": "a5sFUXkxyGc", "keywords": "accounting, depreciation, and, amortization, income, statement", "youtube_id": "a5sFUXkxyGc", "readable_id": "depreciation"}, "UPgpYH9ZtMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UPgpYH9ZtMA.mp4/UPgpYH9ZtMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UPgpYH9ZtMA.mp4/UPgpYH9ZtMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UPgpYH9ZtMA.m3u8/UPgpYH9ZtMA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carbohydrates-5d/carbohydrates-cyclic-structures-and-anomers/", "duration": 671, "id": "UPgpYH9ZtMA", "title": "Carbohydrates - cyclic structures and anomers", "format": "mp4", "description": "", "slug": "carbohydrates-cyclic-structures-and-anomers", "kind": "Video", "video_id": "UPgpYH9ZtMA", "keywords": "", "youtube_id": "UPgpYH9ZtMA", "readable_id": "carbohydrates-cyclic-structures-and-anomers"}, "ZHkO4p8Ec0o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZHkO4p8Ec0o.mp4/ZHkO4p8Ec0o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZHkO4p8Ec0o.mp4/ZHkO4p8Ec0o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZHkO4p8Ec0o.m3u8/ZHkO4p8Ec0o.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-4-10/", "duration": 207, "id": "ZHkO4p8Ec0o", "title": "10 Trucks in parking lot", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-10", "kind": "Video", "video_id": "ZHkO4p8Ec0o", "keywords": "", "youtube_id": "ZHkO4p8Ec0o", "readable_id": "sat-2008-may-4-10"}, "qpsaHE_uZic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qpsaHE_uZic.mp4/qpsaHE_uZic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qpsaHE_uZic.mp4/qpsaHE_uZic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qpsaHE_uZic.m3u8/qpsaHE_uZic.m3u8"}, "duration": 301, "id": "qpsaHE_uZic", "title": "Theories of selective attention", "format": "mp4", "description": "Learn about the three major theories of selective attention. By Carole Yue. ", "path": "khan/test-prep/mcat/processing-the-environment/attention-language/selective-attention/", "slug": "selective-attention", "kind": "Video", "video_id": "qpsaHE_uZic", "keywords": "selective attention", "youtube_id": "qpsaHE_uZic", "readable_id": "selective-attention"}, "rC165FcI4Yg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rC165FcI4Yg.mp4/rC165FcI4Yg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rC165FcI4Yg.mp4/rC165FcI4Yg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rC165FcI4Yg.m3u8/rC165FcI4Yg.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/electrophilic-aromatic-substitution/nitration/", "duration": 503, "id": "rC165FcI4Yg", "title": "Nitration", "format": "mp4", "description": "Nitration of Benzene to form Nitrobenzene", "slug": "nitration", "kind": "Video", "video_id": "rC165FcI4Yg", "keywords": "", "youtube_id": "rC165FcI4Yg", "readable_id": "nitration"}, "NQFiGK0M69s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NQFiGK0M69s.mp4/NQFiGK0M69s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NQFiGK0M69s.mp4/NQFiGK0M69s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NQFiGK0M69s.m3u8/NQFiGK0M69s.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/c-section/", "duration": 686, "id": "NQFiGK0M69s", "title": "C-section", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "c-section", "kind": "Video", "video_id": "NQFiGK0M69s", "keywords": "", "youtube_id": "NQFiGK0M69s", "readable_id": "c-section"}, "jHPr-CuvHhs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jHPr-CuvHhs.mp4/jHPr-CuvHhs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jHPr-CuvHhs.mp4/jHPr-CuvHhs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jHPr-CuvHhs.m3u8/jHPr-CuvHhs.m3u8"}, "path": "khan/computing/computer-programming/html-css/intro-to-html/making-webpages-intro/", "duration": 168, "id": "jHPr-CuvHhs", "title": "Welcome to the web!", "format": "mp4", "description": "", "slug": "making-webpages-intro", "kind": "Video", "video_id": "jHPr-CuvHhs", "keywords": "", "youtube_id": "jHPr-CuvHhs", "readable_id": "making-webpages-intro"}, "eCJ76hz7jPM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eCJ76hz7jPM.mp4/eCJ76hz7jPM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eCJ76hz7jPM.mp4/eCJ76hz7jPM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eCJ76hz7jPM.m3u8/eCJ76hz7jPM.m3u8"}, "duration": 303, "id": "eCJ76hz7jPM", "title": "Significant figures", "format": "mp4", "description": "Introduction to significant figures", "path": "khan/math/pre-algebra/decimals-pre-alg/sig-figs-pre-alg/significant-figures/", "slug": "significant-figures", "kind": "Video", "video_id": "eCJ76hz7jPM", "keywords": "significant, figures, digits", "youtube_id": "eCJ76hz7jPM", "readable_id": "significant-figures"}, "u1R4CFUxj9c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u1R4CFUxj9c.mp4/u1R4CFUxj9c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u1R4CFUxj9c.mp4/u1R4CFUxj9c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u1R4CFUxj9c.m3u8/u1R4CFUxj9c.m3u8"}, "duration": 322, "id": "u1R4CFUxj9c", "title": "Film meets art: Chris Nolan inspired by Francis Bacon", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nChristopher Nolan, who directed\u00a0The Dark Knight\u00a0(2008), talks about his longstanding fascination with the work of artist\u00a0Francis Bacon. See how Bacon's warped and fleshy figures inspired the look of the Joker, and hear why Nolan turns to art to help shape his creative vision when words fail him.", "path": "chris-nolan-inspired-by-francis-bacon/", "slug": "chris-nolan-inspired-by-francis-bacon", "kind": "Video", "video_id": "u1R4CFUxj9c", "keywords": "Tate", "youtube_id": "u1R4CFUxj9c", "readable_id": "chris-nolan-inspired-by-francis-bacon"}, "pvEfyJc4QPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pvEfyJc4QPA.mp4/pvEfyJc4QPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pvEfyJc4QPA.mp4/pvEfyJc4QPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pvEfyJc4QPA.m3u8/pvEfyJc4QPA.m3u8"}, "duration": 183, "id": "pvEfyJc4QPA", "title": "Bread mold kills bacteria", "format": "mp4", "description": "How the penicillin in bread mold kills bacteria.", "path": "bread-mold-kills-bacteria/", "slug": "bread-mold-kills-bacteria", "kind": "Video", "video_id": "pvEfyJc4QPA", "keywords": "penicilin, mold, bacteria, biology, k-12 (education)", "youtube_id": "pvEfyJc4QPA", "readable_id": "bread-mold-kills-bacteria"}, "Ewif2XGL2a8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ewif2XGL2a8.mp4/Ewif2XGL2a8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ewif2XGL2a8.mp4/Ewif2XGL2a8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ewif2XGL2a8.m3u8/Ewif2XGL2a8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-myocarditis-and-pericarditis/causes-of-myocarditis/", "duration": 531, "id": "Ewif2XGL2a8", "title": "Causes of myocarditis", "format": "mp4", "description": "", "slug": "causes-of-myocarditis", "kind": "Video", "video_id": "Ewif2XGL2a8", "keywords": "", "youtube_id": "Ewif2XGL2a8", "readable_id": "causes-of-myocarditis"}, "udgNvPpDb2I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/udgNvPpDb2I.mp4/udgNvPpDb2I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/udgNvPpDb2I.mp4/udgNvPpDb2I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/udgNvPpDb2I.m3u8/udgNvPpDb2I.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/burgundy-netherlands/ghent-altarpiece-closed/", "duration": 318, "id": "udgNvPpDb2I", "title": "Van Eyck, Ghent Altarpiece (1 of 2)", "format": "mp4", "description": "Jan van Eyck, Ghent Altarpiece (closed), completed 1432, oil on wood, 11\u2019 5\u201d x 7\u2019 6\u201d (Saint Bavo Cathedral, Ghent, Belgium).\u00a0Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "ghent-altarpiece-closed", "kind": "Video", "video_id": "udgNvPpDb2I", "keywords": "", "youtube_id": "udgNvPpDb2I", "readable_id": "ghent-altarpiece-closed"}, "_eAWDuLYVfg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_eAWDuLYVfg.mp4/_eAWDuLYVfg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_eAWDuLYVfg.mp4/_eAWDuLYVfg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_eAWDuLYVfg.m3u8/_eAWDuLYVfg.m3u8"}, "duration": 281, "id": "_eAWDuLYVfg", "title": "Possible transformations example", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/properties-definitions-of-translations/possible-transformations-example/", "slug": "possible-transformations-example", "kind": "Video", "video_id": "_eAWDuLYVfg", "keywords": "", "youtube_id": "_eAWDuLYVfg", "readable_id": "possible-transformations-example"}, "6YRGEsQWZzY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6YRGEsQWZzY.mp4/6YRGEsQWZzY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6YRGEsQWZzY.mp4/6YRGEsQWZzY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6YRGEsQWZzY.m3u8/6YRGEsQWZzY.m3u8"}, "duration": 502, "id": "6YRGEsQWZzY", "title": "First order homogeneous equations 2", "format": "mp4", "description": "Another example of using substitution to solve a first order homogeneous differential equations.", "path": "khan/math/differential-equations/first-order-differential-equations/homogeneous-equations/first-order-homogenous-equations-2/", "slug": "first-order-homogenous-equations-2", "kind": "Video", "video_id": "6YRGEsQWZzY", "keywords": "homogeneous, differential, equations", "youtube_id": "6YRGEsQWZzY", "readable_id": "first-order-homogenous-equations-2"}, "XF9CaqdhmJo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XF9CaqdhmJo.mp4/XF9CaqdhmJo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XF9CaqdhmJo.mp4/XF9CaqdhmJo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XF9CaqdhmJo.m3u8/XF9CaqdhmJo.m3u8"}, "duration": 229, "id": "XF9CaqdhmJo", "title": "How the U.S. Supreme Court approaches questions involving privacy and technology", "format": "mp4", "description": "Neal Katyal, Fmr. Acting Solicitor General of the United States in conversation with Jeffrey Rosen of the National Constitution Center.", "path": "us-supreme-court-privacy-technology/", "slug": "us-supreme-court-privacy-technology", "kind": "Video", "video_id": "XF9CaqdhmJo", "keywords": "", "youtube_id": "XF9CaqdhmJo", "readable_id": "us-supreme-court-privacy-technology"}, "YZBStgZGyDY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YZBStgZGyDY.mp4/YZBStgZGyDY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YZBStgZGyDY.mp4/YZBStgZGyDY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YZBStgZGyDY.m3u8/YZBStgZGyDY.m3u8"}, "duration": 364, "id": "YZBStgZGyDY", "title": "Solving equations with the distributive property", "format": "mp4", "description": "Solving Equations with the Distributive Property", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/complicated_equations/solving-equations-with-the-distributive-property/", "slug": "solving-equations-with-the-distributive-property", "kind": "Video", "video_id": "YZBStgZGyDY", "keywords": "U02_L1_T2_we1, Solving, Equations, with, the, Distributive, Property, CC_6_EE_3, CC_8_EE_7, CC_8_EE_7_b, CC_39336_A-REI_1, CC_39336_A-REI_3", "youtube_id": "YZBStgZGyDY", "readable_id": "solving-equations-with-the-distributive-property"}, "8iKsY8C5VW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8iKsY8C5VW8.mp4/8iKsY8C5VW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8iKsY8C5VW8.mp4/8iKsY8C5VW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8iKsY8C5VW8.m3u8/8iKsY8C5VW8.m3u8"}, "path": "khan/math/probability/independent-dependent-probability/dependent_probability/analyzing-dependent-probability/", "duration": 570, "id": "8iKsY8C5VW8", "title": "Analyzing dependent probability", "format": "mp4", "description": "", "slug": "analyzing-dependent-probability", "kind": "Video", "video_id": "8iKsY8C5VW8", "keywords": "", "youtube_id": "8iKsY8C5VW8", "readable_id": "analyzing-dependent-probability"}, "N0L00FZnhtg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N0L00FZnhtg.mp4/N0L00FZnhtg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N0L00FZnhtg.mp4/N0L00FZnhtg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N0L00FZnhtg.m3u8/N0L00FZnhtg.m3u8"}, "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolistic-competition-oligop/oligopolies-duopolies-collusion-and-cartels/", "duration": 506, "id": "N0L00FZnhtg", "title": "Oligopolies, duopolies, collusion, and cartels", "format": "mp4", "description": "Thinking about when oligopolies behave more like monopolies or perfect competitors", "slug": "oligopolies-duopolies-collusion-and-cartels", "kind": "Video", "video_id": "N0L00FZnhtg", "keywords": "microeconomics, OPEC", "youtube_id": "N0L00FZnhtg", "readable_id": "oligopolies-duopolies-collusion-and-cartels"}, "irYfbY_jryY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/irYfbY_jryY.mp4/irYfbY_jryY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/irYfbY_jryY.mp4/irYfbY_jryY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/irYfbY_jryY.m3u8/irYfbY_jryY.m3u8"}, "path": "khan/humanities/art-americas/new-topic-2015-04-22t180902849z/amazonian-people/kayap-headdress-a-glimpse-of-life-in-the-amazon-rainforest/", "duration": 316, "id": "irYfbY_jryY", "title": "Kayap\u00f3 Headdress: a glimpse of life in the Amazon rainforest", "format": "mp4", "description": "Headdress, 20th century, feathers (Anodorhynchus hyacinthinus and Psarocolius decumanus) and plant materials, approximately 1 m x 60 cm, Kayap\u00f3 (Cayapo) people, Para, Brazil (The British Museum)\nSpeakers: Dr. Jago Cooper (Curator, Head of the Americas, \u00a0The British Museum) and Dr. Steven Zucker\n\nSpecial thanks to Dr. Jago Cooper, Matthew Cock, Kate Jarvis and The British Museum\n", "slug": "kayap-headdress-a-glimpse-of-life-in-the-amazon-rainforest", "kind": "Video", "video_id": "irYfbY_jryY", "keywords": "", "youtube_id": "irYfbY_jryY", "readable_id": "kayap-headdress-a-glimpse-of-life-in-the-amazon-rainforest"}, "o-ZbdYVGehI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o-ZbdYVGehI.mp4/o-ZbdYVGehI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o-ZbdYVGehI.mp4/o-ZbdYVGehI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o-ZbdYVGehI.m3u8/o-ZbdYVGehI.m3u8"}, "duration": 145, "id": "o-ZbdYVGehI", "title": "Example: Factoring a fourth degree expression", "format": "mp4", "description": "Factoring Special Products 2", "path": "khan/math/algebra2/polynomial_and_rational/factoring-higher-deg-polynomials/factoring-special-products-2/", "slug": "factoring-special-products-2", "kind": "Video", "video_id": "o-ZbdYVGehI", "keywords": "U09_L2_T1_we2, Factoring, Special, Products, CC_39336_A-SSE_2", "youtube_id": "o-ZbdYVGehI", "readable_id": "factoring-special-products-2"}, "wbfDqHk-ryM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wbfDqHk-ryM.mp4/wbfDqHk-ryM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wbfDqHk-ryM.mp4/wbfDqHk-ryM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wbfDqHk-ryM.m3u8/wbfDqHk-ryM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/hypovolemic-shock/", "duration": 578, "id": "wbfDqHk-ryM", "title": "Hypovolemic shock", "format": "mp4", "description": "", "slug": "hypovolemic-shock", "kind": "Video", "video_id": "wbfDqHk-ryM", "keywords": "", "youtube_id": "wbfDqHk-ryM", "readable_id": "hypovolemic-shock"}, "5flvVD_tnRw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5flvVD_tnRw.mp4/5flvVD_tnRw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5flvVD_tnRw.mp4/5flvVD_tnRw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5flvVD_tnRw.m3u8/5flvVD_tnRw.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/english-horn-pedro/", "duration": 554, "id": "5flvVD_tnRw", "title": "English Horn: Interview and demonstration with Pedro Diaz", "format": "mp4", "description": "", "slug": "english-horn-pedro", "kind": "Video", "video_id": "5flvVD_tnRw", "keywords": "", "youtube_id": "5flvVD_tnRw", "readable_id": "english-horn-pedro"}, "ye28W_OygOw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ye28W_OygOw.mp4/ye28W_OygOw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ye28W_OygOw.mp4/ye28W_OygOw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ye28W_OygOw.m3u8/ye28W_OygOw.m3u8"}, "duration": 228, "id": "ye28W_OygOw", "title": "Autonomic vs somatic nervous system", "format": "mp4", "description": "Understand the different divisions of the brain that control our muscles.\u00a0 By Raja Narayan.", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/autonomic-somatic-nervous-system/", "slug": "autonomic-somatic-nervous-system", "kind": "Video", "video_id": "ye28W_OygOw", "keywords": "autonomic nervous system, somatic nervous system", "youtube_id": "ye28W_OygOw", "readable_id": "autonomic-somatic-nervous-system"}, "sTLsPHluQdM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sTLsPHluQdM.mp4/sTLsPHluQdM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sTLsPHluQdM.mp4/sTLsPHluQdM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sTLsPHluQdM.m3u8/sTLsPHluQdM.m3u8"}, "path": "khan/humanities/art-asia/beginners-guide-asian-culture/hindu-art-culture/ganesha-deity/", "duration": 176, "id": "sTLsPHluQdM", "title": "The Hindu deity Ganesha", "format": "mp4", "description": "Hear the origin story of the Hindu deity Ganesha and learn how to identify depictions of Ganesha with the use of artworks in the Asian Art Museum's collection. Discover more about Ganesha on the Asian Art Museum's education website.", "slug": "ganesha-deity", "kind": "Video", "video_id": "sTLsPHluQdM", "keywords": "", "youtube_id": "sTLsPHluQdM", "readable_id": "ganesha-deity"}, "K3QjyP1OwYk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K3QjyP1OwYk.mp4/K3QjyP1OwYk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K3QjyP1OwYk.mp4/K3QjyP1OwYk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K3QjyP1OwYk.m3u8/K3QjyP1OwYk.m3u8"}, "duration": 532, "id": "K3QjyP1OwYk", "title": "Common Core Standards: Geometry", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the geometry standards.", "path": "common-core-standards-geometry/", "slug": "common-core-standards-geometry", "kind": "Video", "video_id": "K3QjyP1OwYk", "keywords": "", "youtube_id": "K3QjyP1OwYk", "readable_id": "common-core-standards-geometry"}, "LIFHYUGrYqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LIFHYUGrYqw.mp4/LIFHYUGrYqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LIFHYUGrYqw.mp4/LIFHYUGrYqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LIFHYUGrYqw.m3u8/LIFHYUGrYqw.m3u8"}, "duration": 71, "id": "LIFHYUGrYqw", "title": "Triple bonds cause linear configurations", "format": "mp4", "description": "", "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/alcohol-nomenclature-properties/triple-bond-linear/", "slug": "triple-bond-linear", "kind": "Video", "video_id": "LIFHYUGrYqw", "keywords": "", "youtube_id": "LIFHYUGrYqw", "readable_id": "triple-bond-linear"}, "znE4Nq9NJCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/znE4Nq9NJCQ.mp4/znE4Nq9NJCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/znE4Nq9NJCQ.mp4/znE4Nq9NJCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/znE4Nq9NJCQ.m3u8/znE4Nq9NJCQ.m3u8"}, "duration": 611, "id": "znE4Nq9NJCQ", "title": "Undetermined coefficients 1", "format": "mp4", "description": "Using the method of undetermined coefficients to solve nonhomogeneous linear differential equations.", "path": "khan/math/differential-equations/second-order-differential-equations/undetermined-coefficients/undetermined-coefficients-1/", "slug": "undetermined-coefficients-1", "kind": "Video", "video_id": "znE4Nq9NJCQ", "keywords": "undetermined, coefficients, nonhomogeneous, differential, equations", "youtube_id": "znE4Nq9NJCQ", "readable_id": "undetermined-coefficients-1"}, "o1Y0G8Z67iU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o1Y0G8Z67iU.mp4/o1Y0G8Z67iU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o1Y0G8Z67iU.mp4/o1Y0G8Z67iU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o1Y0G8Z67iU.m3u8/o1Y0G8Z67iU.m3u8"}, "duration": 472, "id": "o1Y0G8Z67iU", "title": "Medicare sustainability", "format": "mp4", "description": "How medicare is funded and why it is even less sustainable than social security", "path": "khan/humanities/history/american-civics/american-civics/medicare-sustainability/", "slug": "medicare-sustainability", "kind": "Video", "video_id": "o1Y0G8Z67iU", "keywords": "medicare, social, security, medicaid", "youtube_id": "o1Y0G8Z67iU", "readable_id": "medicare-sustainability"}, "4JqH55rLGKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4JqH55rLGKY.mp4/4JqH55rLGKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4JqH55rLGKY.mp4/4JqH55rLGKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4JqH55rLGKY.m3u8/4JqH55rLGKY.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/reading-pie-graphs-circle-graphs/", "duration": 189, "id": "4JqH55rLGKY", "title": "Reading pie graphs (circle graphs)", "format": "mp4", "description": "Reading Pie Graphs (Circle Graphs)", "slug": "reading-pie-graphs-circle-graphs", "kind": "Video", "video_id": "4JqH55rLGKY", "keywords": "u08_l1_t2_we1, Reading, Pie, Graphs, (Circle, Graphs)", "youtube_id": "4JqH55rLGKY", "readable_id": "reading-pie-graphs-circle-graphs"}, "H7nrVDV8ahc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H7nrVDV8ahc.mp4/H7nrVDV8ahc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H7nrVDV8ahc.mp4/H7nrVDV8ahc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H7nrVDV8ahc.m3u8/H7nrVDV8ahc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/exponential-decay-formula-proof-can-skip-involves-calculus/", "duration": 742, "id": "H7nrVDV8ahc", "title": "Exponential decay formula proof (can skip, involves calculus)", "format": "mp4", "description": "Showing that N(t)=Ne^(-kt) describes the amount of a radioactive substance we have at time T. For students with background in Calculus. Not necessary for intro chemistry class.", "slug": "exponential-decay-formula-proof-can-skip-involves-calculus", "kind": "Video", "video_id": "H7nrVDV8ahc", "keywords": "radioactive, decay, chemistry, physics", "youtube_id": "H7nrVDV8ahc", "readable_id": "exponential-decay-formula-proof-can-skip-involves-calculus"}, "SauhB2fYQkM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SauhB2fYQkM.mp4/SauhB2fYQkM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SauhB2fYQkM.mp4/SauhB2fYQkM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SauhB2fYQkM.m3u8/SauhB2fYQkM.m3u8"}, "duration": 882, "id": "SauhB2fYQkM", "title": "Role of the sarcoplasmic reticulum in muscle cells", "format": "mp4", "description": "The role of the sarcoplasmic reticulum in controlling calcium ion concentrations within the muscle cell.", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/role-of-the-sarcoplasmic-reticulum-in-muscle-cells/", "slug": "role-of-the-sarcoplasmic-reticulum-in-muscle-cells", "kind": "Video", "video_id": "SauhB2fYQkM", "keywords": "sarcoplasmic, reticulum, muscle, contraction, motor, neuron", "youtube_id": "SauhB2fYQkM", "readable_id": "role-of-the-sarcoplasmic-reticulum-in-muscle-cells"}, "BZmtnCqTWik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BZmtnCqTWik.mp4/BZmtnCqTWik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BZmtnCqTWik.mp4/BZmtnCqTWik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BZmtnCqTWik.m3u8/BZmtnCqTWik.m3u8"}, "path": "khan/humanities/history/1600s-1800s/french-revolution-tutorial/french-revolution-part-3-reign-of-terror/", "duration": 1409, "id": "BZmtnCqTWik", "title": "French Revolution (part 3) - Reign of Terror", "format": "mp4", "description": "The Reign of Terror", "slug": "french-revolution-part-3-reign-of-terror", "kind": "Video", "video_id": "BZmtnCqTWik", "keywords": "guillotine, reign, of, terror, french, revolution", "youtube_id": "BZmtnCqTWik", "readable_id": "french-revolution-part-3-reign-of-terror"}, "7S1MLJOG-5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7S1MLJOG-5A.mp4/7S1MLJOG-5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7S1MLJOG-5A.mp4/7S1MLJOG-5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7S1MLJOG-5A.m3u8/7S1MLJOG-5A.m3u8"}, "duration": 183, "id": "7S1MLJOG-5A", "title": "Perimeter and area of a non-standard polygon", "format": "mp4", "description": "Perimeter and Area of a Non-Standard Polygon", "path": "khan/math/geometry/basic-geometry/area_non_standard/perimeter-and-area-of-a-non-standard-polygon/", "slug": "perimeter-and-area-of-a-non-standard-polygon", "kind": "Video", "video_id": "7S1MLJOG-5A", "keywords": "u07_l2_t2_we3, Perimeter, and, Area, of, Non-Standard, Polygon", "youtube_id": "7S1MLJOG-5A", "readable_id": "perimeter-and-area-of-a-non-standard-polygon"}, "MxyQgpgc7Ds": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MxyQgpgc7Ds.mp4/MxyQgpgc7Ds.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MxyQgpgc7Ds.mp4/MxyQgpgc7Ds.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MxyQgpgc7Ds.m3u8/MxyQgpgc7Ds.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/england-constable-turner/john-constable-view-on-the-stour-near-dedham/", "duration": 227, "id": "MxyQgpgc7Ds", "title": "Constable, View on the Stour near Dedham", "format": "mp4", "description": "John Constable, View on the Stour near Dedham, 1822, oil on canvas, 51 x 74 inches (The Huntington Library, Art Collections, and Botanical Gardens, San Marino, CA) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "john-constable-view-on-the-stour-near-dedham", "kind": "Video", "video_id": "MxyQgpgc7Ds", "keywords": "Romanticism, Constable, English, England, painting, landscape, Dedham", "youtube_id": "MxyQgpgc7Ds", "readable_id": "john-constable-view-on-the-stour-near-dedham"}, "hrhD77JhtOA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hrhD77JhtOA.mp4/hrhD77JhtOA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hrhD77JhtOA.mp4/hrhD77JhtOA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hrhD77JhtOA.m3u8/hrhD77JhtOA.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/what-are-disciplines/bhp-intro-to-cosmology/", "duration": 383, "id": "hrhD77JhtOA", "title": "Ways of Knowing \u2013 Introduction to Cosmology", "format": "mp4", "description": "The history of the Universe decorates the night sky. Learn how to watch this history by studying cosmic light emissions.", "slug": "bhp-intro-to-cosmology", "kind": "Video", "video_id": "hrhD77JhtOA", "keywords": "", "youtube_id": "hrhD77JhtOA", "readable_id": "bhp-intro-to-cosmology"}, "Me_041nrRZk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Me_041nrRZk.mp4/Me_041nrRZk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Me_041nrRZk.mp4/Me_041nrRZk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Me_041nrRZk.m3u8/Me_041nrRZk.m3u8"}, "duration": 301, "id": "Me_041nrRZk", "title": "Evolution and natural selection", "format": "mp4", "description": "Learn the fundamental principles about how natural selection can drive the process of evolution.\u00a0 By Ross Firestone.", "path": "khan/test-prep/mcat/biomolecules/evolution-population-dynmaics/evolution-natural-selection/", "slug": "evolution-natural-selection", "kind": "Video", "video_id": "Me_041nrRZk", "keywords": "", "youtube_id": "Me_041nrRZk", "readable_id": "evolution-natural-selection"}, "MyvRxKM0xns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MyvRxKM0xns.mp4/MyvRxKM0xns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MyvRxKM0xns.mp4/MyvRxKM0xns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MyvRxKM0xns.m3u8/MyvRxKM0xns.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-basic-trigonometry/", "duration": 664, "id": "MyvRxKM0xns", "title": "CA Geometry: Basic trigonometry", "format": "mp4", "description": "61-65, basic trigonometry", "slug": "ca-geometry-basic-trigonometry", "kind": "Video", "video_id": "MyvRxKM0xns", "keywords": "geometry, trigonometry", "youtube_id": "MyvRxKM0xns", "readable_id": "ca-geometry-basic-trigonometry"}, "JEHejQphIYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JEHejQphIYc.mp4/JEHejQphIYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JEHejQphIYc.mp4/JEHejQphIYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JEHejQphIYc.m3u8/JEHejQphIYc.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/multiplying-decimals/", "duration": 172, "id": "JEHejQphIYc", "title": "Multiplying decimals example", "format": "mp4", "description": "Multiplying decimals? Try multiplying without the decimals first, them add them back in. We'll show you.", "slug": "multiplying-decimals", "kind": "Video", "video_id": "JEHejQphIYc", "keywords": "U03_L2_T2_we1, Multiplying, Decimals, CC_5_NBT_7, CC_6_NS_3", "youtube_id": "JEHejQphIYc", "readable_id": "multiplying-decimals"}, "VejCw2NlE60": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VejCw2NlE60.mp4/VejCw2NlE60.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VejCw2NlE60.mp4/VejCw2NlE60.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VejCw2NlE60.m3u8/VejCw2NlE60.m3u8"}, "duration": 342, "id": "VejCw2NlE60", "title": "Circumcenter of a right triangle", "format": "mp4", "description": "Showing that the midpoint of the hypotenuse is the circumcenter", "path": "khan/math/geometry/triangle-properties/perpendicular_bisectors/circumcenter-of-a-right-triangle/", "slug": "circumcenter-of-a-right-triangle", "kind": "Video", "video_id": "VejCw2NlE60", "keywords": "geometry", "youtube_id": "VejCw2NlE60", "readable_id": "circumcenter-of-a-right-triangle"}, "ISPxJ6JXT8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ISPxJ6JXT8o.mp4/ISPxJ6JXT8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ISPxJ6JXT8o.mp4/ISPxJ6JXT8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ISPxJ6JXT8o.m3u8/ISPxJ6JXT8o.m3u8"}, "duration": 339, "id": "ISPxJ6JXT8o", "title": "Example 1: Factoring by grouping", "format": "mp4", "description": "Factoring trinomials with a non-1 leading coefficient by grouping", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-by-grouping/factoring-trinomials-with-a-non-1-leading-coefficient-by-grouping/", "slug": "factoring-trinomials-with-a-non-1-leading-coefficient-by-grouping", "kind": "Video", "video_id": "ISPxJ6JXT8o", "keywords": "u12_l2_t1_we3, Factoring, trinomials, with, non-1, leading, coefficient, by, grouping, CC_39336_A-SSE_1_a, CC_39336_A-SSE_1_b, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "ISPxJ6JXT8o", "readable_id": "factoring-trinomials-with-a-non-1-leading-coefficient-by-grouping"}, "lsvqJfvWRfs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lsvqJfvWRfs.mp4/lsvqJfvWRfs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lsvqJfvWRfs.mp4/lsvqJfvWRfs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lsvqJfvWRfs.m3u8/lsvqJfvWRfs.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/lipids-as-cofactors-and-signaling-molecules/", "duration": 463, "id": "lsvqJfvWRfs", "title": "Lipids as cofactors and signaling molecules", "format": "mp4", "description": "", "slug": "lipids-as-cofactors-and-signaling-molecules", "kind": "Video", "video_id": "lsvqJfvWRfs", "keywords": "", "youtube_id": "lsvqJfvWRfs", "readable_id": "lipids-as-cofactors-and-signaling-molecules"}, "-YfemQNTkvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-YfemQNTkvA.mp4/-YfemQNTkvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-YfemQNTkvA.mp4/-YfemQNTkvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-YfemQNTkvA.m3u8/-YfemQNTkvA.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/mass-spectrometer/", "duration": 690, "id": "-YfemQNTkvA", "title": "Mass spectrometer", "format": "mp4", "description": "", "slug": "mass-spectrometer", "kind": "Video", "video_id": "-YfemQNTkvA", "keywords": "", "youtube_id": "-YfemQNTkvA", "readable_id": "mass-spectrometer"}, "U2ovEuEUxXQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U2ovEuEUxXQ.mp4/U2ovEuEUxXQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U2ovEuEUxXQ.mp4/U2ovEuEUxXQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U2ovEuEUxXQ.m3u8/U2ovEuEUxXQ.m3u8"}, "duration": 349, "id": "U2ovEuEUxXQ", "title": "Equivalent fractions", "format": "mp4", "description": "Introduces the concept of equivalent fractions", "path": "khan/math/pre-algebra/fractions-pre-alg/equivalent-fractions-pre-alg/equivalent-fractions/", "slug": "equivalent-fractions", "kind": "Video", "video_id": "U2ovEuEUxXQ", "keywords": "fractions, math, CC_3_NF_3, CC_3_NF_3_a, CC_3_NF_3_b, CC_3_NF_3_c, CC_3_NF_3_d, CC_4_NF_1", "youtube_id": "U2ovEuEUxXQ", "readable_id": "equivalent-fractions"}, "gYpokkRFvO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gYpokkRFvO8.mp4/gYpokkRFvO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gYpokkRFvO8.mp4/gYpokkRFvO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gYpokkRFvO8.m3u8/gYpokkRFvO8.m3u8"}, "duration": 418, "id": "gYpokkRFvO8", "title": "Bernoulli's equation of total energy", "format": "mp4", "description": "Learn how total energy of a fluid helps explain why fluids can move from low pressure to high pressure! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/arterial-stiffness/bernoulli-s-equation-of-total-energy/", "slug": "bernoulli-s-equation-of-total-energy", "kind": "Video", "video_id": "gYpokkRFvO8", "keywords": "", "youtube_id": "gYpokkRFvO8", "readable_id": "bernoulli-s-equation-of-total-energy"}, "hk6rA-iY1c0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hk6rA-iY1c0.mp4/hk6rA-iY1c0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hk6rA-iY1c0.mp4/hk6rA-iY1c0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hk6rA-iY1c0.m3u8/hk6rA-iY1c0.m3u8"}, "path": "khan/humanities/art-asia/beginners-guide-asian-culture/hindu-art-culture/festival-of-durga/", "duration": 244, "id": "hk6rA-iY1c0", "title": "Festival of the Goddess Durga", "format": "mp4", "description": "Learn about a vibrant festival in India for the Hindu deity Durga, and discover related artworks in the Asian Art Museum's collection. For more information: education.asianart.org", "slug": "festival-of-durga", "kind": "Video", "video_id": "hk6rA-iY1c0", "keywords": "", "youtube_id": "hk6rA-iY1c0", "readable_id": "festival-of-durga"}, "J1twbrHel3o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J1twbrHel3o.mp4/J1twbrHel3o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J1twbrHel3o.mp4/J1twbrHel3o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J1twbrHel3o.m3u8/J1twbrHel3o.m3u8"}, "duration": 915, "id": "J1twbrHel3o", "title": "Standard error of the mean", "format": "mp4", "description": "Standard Error of the Mean (a.k.a. the standard deviation of the sampling distribution of the sample mean!)", "path": "khan/math/probability/statistics-inferential/sampling_distribution/standard-error-of-the-mean/", "slug": "standard-error-of-the-mean", "kind": "Video", "video_id": "J1twbrHel3o", "keywords": "standard, error, of, the, mean, deviation, sampling, distribution, sample, CC_6_SP_2, CC_6_SP_4, CC_6_SP_5_c, CC_6_SP_5_d, CC_7_SP_2", "youtube_id": "J1twbrHel3o", "readable_id": "standard-error-of-the-mean"}, "V-rko8jgJ9o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V-rko8jgJ9o.mp4/V-rko8jgJ9o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V-rko8jgJ9o.mp4/V-rko8jgJ9o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V-rko8jgJ9o.m3u8/V-rko8jgJ9o.m3u8"}, "duration": 934, "id": "V-rko8jgJ9o", "title": "P/E discussion", "format": "mp4", "description": "Discussion of the price-to-earnings ratio", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/p-e-discussion/", "slug": "p-e-discussion", "kind": "Video", "video_id": "V-rko8jgJ9o", "keywords": "price, to, earnings, p/e, stocks, investing, valuation", "youtube_id": "V-rko8jgJ9o", "readable_id": "p-e-discussion"}, "VMtXfhvQRTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VMtXfhvQRTo.mp4/VMtXfhvQRTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VMtXfhvQRTo.mp4/VMtXfhvQRTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VMtXfhvQRTo.m3u8/VMtXfhvQRTo.m3u8"}, "duration": 662, "id": "VMtXfhvQRTo", "title": "The Renaissance: Was it a Thing?", "format": "mp4", "description": "In which John Green teaches you about the European Renaissance. European learning changed the world in the 15th and 16th century, but was it a cultural revolution, or an evolution? We'd argue that any cultural shift that occurs over a couple of hundred years isn't too overwhelming to the people who live through it. In retrospect though, the cultural bloom in Europe during this time was pretty impressive. In addition to investigating what caused the Renaissance and who benefitted from the changes that occurred, John will tell you just how the Ninja Turtles got mixed up in all this.", "path": "khan/humanities/history/crashcourse-worldhistory/when-people-do-great-and-really-terrible-things-2/crash-course-world-history-22/", "slug": "crash-course-world-history-22", "kind": "Video", "video_id": "VMtXfhvQRTo", "keywords": "crash course", "youtube_id": "VMtXfhvQRTo", "readable_id": "crash-course-world-history-22"}, "xR4AnXDBnsw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xR4AnXDBnsw.mp4/xR4AnXDBnsw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xR4AnXDBnsw.mp4/xR4AnXDBnsw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xR4AnXDBnsw.m3u8/xR4AnXDBnsw.m3u8"}, "duration": 354, "id": "xR4AnXDBnsw", "title": "Evaluating simple definite integral", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/definite_integrals/evaluating-simple-definite-integral/", "slug": "evaluating-simple-definite-integral", "kind": "Video", "video_id": "xR4AnXDBnsw", "keywords": "", "youtube_id": "xR4AnXDBnsw", "readable_id": "evaluating-simple-definite-integral"}, "R5YiO6rKr-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R5YiO6rKr-w.mp4/R5YiO6rKr-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R5YiO6rKr-w.mp4/R5YiO6rKr-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R5YiO6rKr-w.m3u8/R5YiO6rKr-w.m3u8"}, "path": "khan/test-prep/mcat/cells/cellular-development/telomeres-and-cell-senescence/", "duration": 653, "id": "R5YiO6rKr-w", "title": "Telomeres and cell senescence", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "telomeres-and-cell-senescence", "kind": "Video", "video_id": "R5YiO6rKr-w", "keywords": "", "youtube_id": "R5YiO6rKr-w", "readable_id": "telomeres-and-cell-senescence"}, "MpRUEGD2-_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MpRUEGD2-_c.mp4/MpRUEGD2-_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MpRUEGD2-_c.mp4/MpRUEGD2-_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MpRUEGD2-_c.m3u8/MpRUEGD2-_c.m3u8"}, "duration": 428, "id": "MpRUEGD2-_c", "title": "Infinite solutions to systems", "format": "mp4", "description": "Consistent, but dependent systems of equations", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/infinite-solutions-to-systems/", "slug": "infinite-solutions-to-systems", "kind": "Video", "video_id": "MpRUEGD2-_c", "keywords": "", "youtube_id": "MpRUEGD2-_c", "readable_id": "infinite-solutions-to-systems"}, "RFesGHsuFZw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RFesGHsuFZw.mp4/RFesGHsuFZw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RFesGHsuFZw.mp4/RFesGHsuFZw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RFesGHsuFZw.m3u8/RFesGHsuFZw.m3u8"}, "duration": 346, "id": "RFesGHsuFZw", "title": "Congruent triangle proof example", "format": "mp4", "description": "Proving that a point is the midpoint via triangle congruency", "path": "khan/math/geometry/congruent-triangles/cong_triangle/congruent-triangle-proof-example/", "slug": "congruent-triangle-proof-example", "kind": "Video", "video_id": "RFesGHsuFZw", "keywords": "geometry", "youtube_id": "RFesGHsuFZw", "readable_id": "congruent-triangle-proof-example"}, "bNNrlzel4Gw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bNNrlzel4Gw.mp4/bNNrlzel4Gw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bNNrlzel4Gw.mp4/bNNrlzel4Gw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bNNrlzel4Gw.m3u8/bNNrlzel4Gw.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens/understanding-place-value-when-subtracting-tens/", "duration": 157, "id": "bNNrlzel4Gw", "title": "Understanding place value when subtracting tens", "format": "mp4", "description": "Learn how to subtract 40 from 65 by thinking about place value.", "slug": "understanding-place-value-when-subtracting-tens", "kind": "Video", "video_id": "bNNrlzel4Gw", "keywords": "", "youtube_id": "bNNrlzel4Gw", "readable_id": "understanding-place-value-when-subtracting-tens"}, "6t9ogglXNIM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6t9ogglXNIM.mp4/6t9ogglXNIM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6t9ogglXNIM.mp4/6t9ogglXNIM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6t9ogglXNIM.m3u8/6t9ogglXNIM.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-hairy-trig-and-algebra-part-2/", "duration": 594, "id": "6t9ogglXNIM", "title": "IIT JEE hairy trig and algebra (part 2)", "format": "mp4", "description": "2010 IIT JEE Paper 1 #38 Hairy Trig and Algebra (Part 2)", "slug": "iit-jee-hairy-trig-and-algebra-part-2", "kind": "Video", "video_id": "6t9ogglXNIM", "keywords": "2010, IIT, JEE, Paper, #38, Hairy, Trig, and, Algebra, (Part, 2)", "youtube_id": "6t9ogglXNIM", "readable_id": "iit-jee-hairy-trig-and-algebra-part-2"}, "UY5S4xntyRk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UY5S4xntyRk.mp4/UY5S4xntyRk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UY5S4xntyRk.mp4/UY5S4xntyRk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UY5S4xntyRk.m3u8/UY5S4xntyRk.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2008-may-8-1/", "duration": 85, "id": "UY5S4xntyRk", "title": "1 Rounding", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-1", "kind": "Video", "video_id": "UY5S4xntyRk", "keywords": "", "youtube_id": "UY5S4xntyRk", "readable_id": "sat-2008-may-8-1"}, "sCVyvfOLI6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sCVyvfOLI6U.mp4/sCVyvfOLI6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sCVyvfOLI6U.mp4/sCVyvfOLI6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sCVyvfOLI6U.m3u8/sCVyvfOLI6U.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/converting-fractions-to-decimals-ex2/", "duration": 93, "id": "sCVyvfOLI6U", "title": "Fraction to decimal example", "format": "mp4", "description": "This is a great example of converting a fraction to a decimal. Use a scratch pad so you can follow along.", "slug": "converting-fractions-to-decimals-ex2", "kind": "Video", "video_id": "sCVyvfOLI6U", "keywords": "Converting, fractions, to, decimals, ex2", "youtube_id": "sCVyvfOLI6U", "readable_id": "converting-fractions-to-decimals-ex2"}, "PYd99ItlLEc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PYd99ItlLEc.mp4/PYd99ItlLEc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PYd99ItlLEc.mp4/PYd99ItlLEc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PYd99ItlLEc.m3u8/PYd99ItlLEc.m3u8"}, "duration": 323, "id": "PYd99ItlLEc", "title": "Introduction to negative exponents", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/introduction-to-negative-exponents/", "slug": "introduction-to-negative-exponents", "kind": "Video", "video_id": "PYd99ItlLEc", "keywords": "", "youtube_id": "PYd99ItlLEc", "readable_id": "introduction-to-negative-exponents"}, "m1DOnLhVuX4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m1DOnLhVuX4.mp4/m1DOnLhVuX4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m1DOnLhVuX4.mp4/m1DOnLhVuX4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m1DOnLhVuX4.m3u8/m1DOnLhVuX4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/complications-after-a-heart-attack-myocardial-infarction/", "duration": 548, "id": "m1DOnLhVuX4", "title": "Complications after a heart attack (myocardial infarction)", "format": "mp4", "description": "", "slug": "complications-after-a-heart-attack-myocardial-infarction", "kind": "Video", "video_id": "m1DOnLhVuX4", "keywords": "", "youtube_id": "m1DOnLhVuX4", "readable_id": "complications-after-a-heart-attack-myocardial-infarction"}, "q3d7488qjgs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q3d7488qjgs.mp4/q3d7488qjgs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q3d7488qjgs.mp4/q3d7488qjgs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q3d7488qjgs.m3u8/q3d7488qjgs.m3u8"}, "duration": 194, "id": "q3d7488qjgs", "title": "Danny O'Neill - Finding the perfect customer", "format": "mp4", "description": "Danny O\u2019Neill, President of The Roasterie, discusses the importance of finding your perfect customer.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/danny-oneill/kauffman-danny-oneill3/", "slug": "kauffman-danny-oneill3", "kind": "Video", "video_id": "q3d7488qjgs", "keywords": "", "youtube_id": "q3d7488qjgs", "readable_id": "kauffman-danny-oneill3"}, "XXrmBhpRG2U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XXrmBhpRG2U.mp4/XXrmBhpRG2U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XXrmBhpRG2U.mp4/XXrmBhpRG2U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XXrmBhpRG2U.m3u8/XXrmBhpRG2U.m3u8"}, "duration": 1033, "id": "XXrmBhpRG2U", "title": "Burke and Norfolk: Photographs from the war In Afghanistan", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn October 2010, photographer Simon Norfolk began a series of new photographs in Afghanistan, which takes its cue from the work of nineteenth-century British photographer John Burke. Norfolk's photographs re-imagine and respond to Burke's Afghan war scenes, but are transposed into the context of contemporary conflict.\nConceived as a collaborative project with Burke across time, Norfolk\u2019s new body of work is presented alongside Burke's original portfolios. In doing so, these photographs go beyond documentary and begin to speak not only to each other, but to their viewers in new and thought-provoking ways. Could Burke\u2019s 150-year-old photographs have something to say about modern warfare in Afghanistan? Or could Norfolk\u2019s new images shed light on a 19th century conflict?\n", "path": "photographs-from-the-war-in-afghanistan/", "slug": "photographs-from-the-war-in-afghanistan", "kind": "Video", "video_id": "XXrmBhpRG2U", "keywords": "Tate", "youtube_id": "XXrmBhpRG2U", "readable_id": "photographs-from-the-war-in-afghanistan"}, "f15zA0PhSek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f15zA0PhSek.mp4/f15zA0PhSek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f15zA0PhSek.mp4/f15zA0PhSek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f15zA0PhSek.m3u8/f15zA0PhSek.m3u8"}, "duration": 533, "id": "f15zA0PhSek", "title": "Variables on both sides", "format": "mp4", "description": "Equations with the variable on both sides.", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/basic-equation-practice/equations-3/", "slug": "equations-3", "kind": "Video", "video_id": "f15zA0PhSek", "keywords": "algebra, solving, equations, CC_7_EE_1, CC_7_EE_4_a", "youtube_id": "f15zA0PhSek", "readable_id": "equations-3"}, "ZS157czfx4E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZS157czfx4E.mp4/ZS157czfx4E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZS157czfx4E.mp4/ZS157czfx4E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZS157czfx4E.m3u8/ZS157czfx4E.m3u8"}, "duration": 395, "id": "ZS157czfx4E", "title": "Comparing with multiplication: money and distance", "format": "mp4", "description": "When comparing it's often helpful to start by using letters to represent numbers. Watch this video as we walk you through 2 examples involving money and distance.", "path": "comparisons-subtraction-division/", "slug": "comparisons-subtraction-division", "kind": "Video", "video_id": "ZS157czfx4E", "keywords": "", "youtube_id": "ZS157czfx4E", "readable_id": "comparisons-subtraction-division"}, "EVSkf7l7EuI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EVSkf7l7EuI.mp4/EVSkf7l7EuI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EVSkf7l7EuI.mp4/EVSkf7l7EuI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EVSkf7l7EuI.m3u8/EVSkf7l7EuI.m3u8"}, "duration": 494, "id": "EVSkf7l7EuI", "title": "Risks of Keynesian thinking", "format": "mp4", "description": "Why Keynesian thinking might not be ideal sometimes", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/keynesian-thinking/risks-of-keynesian-thinking/", "slug": "risks-of-keynesian-thinking", "kind": "Video", "video_id": "EVSkf7l7EuI", "keywords": "macroeconomics, keynes", "youtube_id": "EVSkf7l7EuI", "readable_id": "risks-of-keynesian-thinking"}, "JoL2pO3O0rg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JoL2pO3O0rg.mp4/JoL2pO3O0rg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JoL2pO3O0rg.mp4/JoL2pO3O0rg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JoL2pO3O0rg.m3u8/JoL2pO3O0rg.m3u8"}, "duration": 609, "id": "JoL2pO3O0rg", "title": "Black holes", "format": "mp4", "description": "Black Holes", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/black-holes/", "slug": "black-holes", "kind": "Video", "video_id": "JoL2pO3O0rg", "keywords": "Black, Holes, Event, Horizon, singularity, marquee", "youtube_id": "JoL2pO3O0rg", "readable_id": "black-holes"}, "Ay0B6Kh9Y3Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ay0B6Kh9Y3Q.mp4/Ay0B6Kh9Y3Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ay0B6Kh9Y3Q.mp4/Ay0B6Kh9Y3Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ay0B6Kh9Y3Q.m3u8/Ay0B6Kh9Y3Q.m3u8"}, "duration": 392, "id": "Ay0B6Kh9Y3Q", "title": "Fractional exponent expressions 3", "format": "mp4", "description": "Fractional Exponent Expressions 3", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/fractional-exponent-expressions-3/", "slug": "fractional-exponent-expressions-3", "kind": "Video", "video_id": "Ay0B6Kh9Y3Q", "keywords": "U07_L3_T4_we3, Fractional, Exponent, Expressions, CC_6_EE_2_c, CC_6_EE_3, CC_7_NS_2, CC_7_NS_2_a, CC_7_NS_2_c, CC_7_NS_3, CC_8_EE_1", "youtube_id": "Ay0B6Kh9Y3Q", "readable_id": "fractional-exponent-expressions-3"}, "16aKF_eDGdw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/16aKF_eDGdw.mp4/16aKF_eDGdw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/16aKF_eDGdw.mp4/16aKF_eDGdw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/16aKF_eDGdw.m3u8/16aKF_eDGdw.m3u8"}, "duration": 239, "id": "16aKF_eDGdw", "title": "Calculating integral with shell method", "format": "mp4", "description": "Evaluating integral set up with shell method for two functions.", "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/calculating-integral-with-shell-method/", "slug": "calculating-integral-with-shell-method", "kind": "Video", "video_id": "16aKF_eDGdw", "keywords": "", "youtube_id": "16aKF_eDGdw", "readable_id": "calculating-integral-with-shell-method"}, "oIz6VyZew6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oIz6VyZew6w.mp4/oIz6VyZew6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oIz6VyZew6w.mp4/oIz6VyZew6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oIz6VyZew6w.m3u8/oIz6VyZew6w.m3u8"}, "duration": 771, "id": "oIz6VyZew6w", "title": "Pentose phosphate pathway", "format": "mp4", "description": "What is the Pentose Phosphate Pathway? Why is it important?", "path": "khan/test-prep/mcat/biomolecules/carbohydrate-metabolism/pentose-phosphate-pathway/", "slug": "pentose-phosphate-pathway", "kind": "Video", "video_id": "oIz6VyZew6w", "keywords": "", "youtube_id": "oIz6VyZew6w", "readable_id": "pentose-phosphate-pathway"}, "CH6FQhlZn6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CH6FQhlZn6k.mp4/CH6FQhlZn6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CH6FQhlZn6k.mp4/CH6FQhlZn6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CH6FQhlZn6k.m3u8/CH6FQhlZn6k.m3u8"}, "duration": 982, "id": "CH6FQhlZn6k", "title": "Napoleon forced to abdicate", "format": "mp4", "description": "The Sixth Coalition forces Napoleon into exile on Elba", "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/napoleon-forced-to-abdicate/", "slug": "napoleon-forced-to-abdicate", "kind": "Video", "video_id": "CH6FQhlZn6k", "keywords": "napoleon, abdicate, exite, elba", "youtube_id": "CH6FQhlZn6k", "readable_id": "napoleon-forced-to-abdicate"}, "IiBC4ngwH6E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IiBC4ngwH6E.mp4/IiBC4ngwH6E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IiBC4ngwH6E.mp4/IiBC4ngwH6E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IiBC4ngwH6E.m3u8/IiBC4ngwH6E.m3u8"}, "duration": 331, "id": "IiBC4ngwH6E", "title": "Chain rule definition and example", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-definition-and-example/", "slug": "chain-rule-definition-and-example", "kind": "Video", "video_id": "IiBC4ngwH6E", "keywords": "", "youtube_id": "IiBC4ngwH6E", "readable_id": "chain-rule-definition-and-example"}, "EUn3yJsc4Cs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EUn3yJsc4Cs.mp4/EUn3yJsc4Cs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EUn3yJsc4Cs.mp4/EUn3yJsc4Cs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EUn3yJsc4Cs.m3u8/EUn3yJsc4Cs.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-type-of-college/comparing-public-vs-private-colleges/", "duration": 87, "id": "EUn3yJsc4Cs", "title": "Comparing public vs private colleges", "format": "mp4", "description": "Filter by public vs. private options using College Board's college search tool", "slug": "comparing-public-vs-private-colleges", "kind": "Video", "video_id": "EUn3yJsc4Cs", "keywords": "", "youtube_id": "EUn3yJsc4Cs", "readable_id": "comparing-public-vs-private-colleges"}, "ngJifVCOmgg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ngJifVCOmgg.mp4/ngJifVCOmgg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ngJifVCOmgg.mp4/ngJifVCOmgg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ngJifVCOmgg.m3u8/ngJifVCOmgg.m3u8"}, "path": "khan/partner-content/exploratorium/expl-sound/light-to-sound/transmitter/", "duration": 170, "id": "ngJifVCOmgg", "title": "Build the transmitter", "format": "mp4", "description": "The electrical signal from a radio is converted to light with the help of a 9V battery.", "slug": "transmitter", "kind": "Video", "video_id": "ngJifVCOmgg", "keywords": "", "youtube_id": "ngJifVCOmgg", "readable_id": "transmitter"}, "PpJMTpTukzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PpJMTpTukzE.mp4/PpJMTpTukzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PpJMTpTukzE.mp4/PpJMTpTukzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PpJMTpTukzE.m3u8/PpJMTpTukzE.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-22-car-headlights/", "duration": 113, "id": "PpJMTpTukzE", "title": "22 Car headlights", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-22-car-headlights", "kind": "Video", "video_id": "PpJMTpTukzE", "keywords": "", "youtube_id": "PpJMTpTukzE", "readable_id": "sat-22-car-headlights"}, "f3TQEpL7dk4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f3TQEpL7dk4.mp4/f3TQEpL7dk4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f3TQEpL7dk4.mp4/f3TQEpL7dk4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f3TQEpL7dk4.m3u8/f3TQEpL7dk4.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-17/", "duration": 640, "id": "f3TQEpL7dk4", "title": "GMAT: Math 17", "format": "mp4", "description": "92-95, pg. 164", "slug": "gmat-math-17", "kind": "Video", "video_id": "f3TQEpL7dk4", "keywords": "gmat, math, problem, solving", "youtube_id": "f3TQEpL7dk4", "readable_id": "gmat-math-17"}, "d4FklnPgjv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d4FklnPgjv8.mp4/d4FklnPgjv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d4FklnPgjv8.mp4/d4FklnPgjv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d4FklnPgjv8.m3u8/d4FklnPgjv8.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-9-9/", "duration": 139, "id": "d4FklnPgjv8", "title": "9 quadrilateral area", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-9", "kind": "Video", "video_id": "d4FklnPgjv8", "keywords": "", "youtube_id": "d4FklnPgjv8", "readable_id": "sat-2010-may-9-9"}, "3mier94pbnU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3mier94pbnU.mp4/3mier94pbnU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3mier94pbnU.mp4/3mier94pbnU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3mier94pbnU.m3u8/3mier94pbnU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/work-and-energy-part-2/", "duration": 591, "id": "3mier94pbnU", "title": "Work and energy (part 2)", "format": "mp4", "description": "More on work. Introduction to Kinetic and Potential Energies.", "slug": "work-and-energy-part-2", "kind": "Video", "video_id": "3mier94pbnU", "keywords": "physics, potential, kinetic, energy, work", "youtube_id": "3mier94pbnU", "readable_id": "work-and-energy-part-2"}, "EX1eFeaTiYM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EX1eFeaTiYM.mp4/EX1eFeaTiYM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EX1eFeaTiYM.mp4/EX1eFeaTiYM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EX1eFeaTiYM.m3u8/EX1eFeaTiYM.m3u8"}, "duration": 411, "id": "EX1eFeaTiYM", "title": "Hedge fund structure and fees", "format": "mp4", "description": "Understanding how hedge funds are structured and how the managers get paid", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds/hedge-fund-structure-and-fees/", "slug": "hedge-fund-structure-and-fees", "kind": "Video", "video_id": "EX1eFeaTiYM", "keywords": "hedge, fund, accounting", "youtube_id": "EX1eFeaTiYM", "readable_id": "hedge-fund-structure-and-fees"}, "wlB0x9W-qBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wlB0x9W-qBU.mp4/wlB0x9W-qBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wlB0x9W-qBU.mp4/wlB0x9W-qBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wlB0x9W-qBU.m3u8/wlB0x9W-qBU.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/kinematic_formulas/deriving-displacement-as-a-function-of-time-acceleration-and-initial-velocity/", "duration": 598, "id": "wlB0x9W-qBU", "title": "Deriving displacement as a function of time, acceleration, and initial velocity", "format": "mp4", "description": "Deriving displacement as a function of time, constant acceleration and initial velocity", "slug": "deriving-displacement-as-a-function-of-time-acceleration-and-initial-velocity", "kind": "Video", "video_id": "wlB0x9W-qBU", "keywords": "physics, distance, speed, kinematics, formula", "youtube_id": "wlB0x9W-qBU", "readable_id": "deriving-displacement-as-a-function-of-time-acceleration-and-initial-velocity"}, "W-itq-SYw0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W-itq-SYw0I.mp4/W-itq-SYw0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W-itq-SYw0I.mp4/W-itq-SYw0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W-itq-SYw0I.m3u8/W-itq-SYw0I.m3u8"}, "duration": 400, "id": "W-itq-SYw0I", "title": "Quadrilateral similarity by showing congruent angles", "format": "mp4", "description": "", "path": "khan/math/geometry/similarity/similarity-and-transformations/quadrilateral-similarity-by-showing-congruent-angles/", "slug": "quadrilateral-similarity-by-showing-congruent-angles", "kind": "Video", "video_id": "W-itq-SYw0I", "keywords": "", "youtube_id": "W-itq-SYw0I", "readable_id": "quadrilateral-similarity-by-showing-congruent-angles"}, "01c12NaUQDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/01c12NaUQDw.mp4/01c12NaUQDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/01c12NaUQDw.mp4/01c12NaUQDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/01c12NaUQDw.m3u8/01c12NaUQDw.m3u8"}, "duration": 168, "id": "01c12NaUQDw", "title": "Inverse of a 2x2 matrix", "format": "mp4", "description": "Example of calculating the inverse of a 2x2 matrix", "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/inverse-of-a-2x2-matrix/", "slug": "inverse-of-a-2x2-matrix", "kind": "Video", "video_id": "01c12NaUQDw", "keywords": "", "youtube_id": "01c12NaUQDw", "readable_id": "inverse-of-a-2x2-matrix"}, "o3Ym-tAtCvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o3Ym-tAtCvc.mp4/o3Ym-tAtCvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o3Ym-tAtCvc.mp4/o3Ym-tAtCvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o3Ym-tAtCvc.m3u8/o3Ym-tAtCvc.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/collective-learning/bhp-collective-learning-at-scale/", "duration": 123, "id": "o3Ym-tAtCvc", "title": "Collective Learning at Scale", "format": "mp4", "description": "Learn why humans, more than any other species, have made such a profound impression on the biosphere.", "slug": "bhp-collective-learning-at-scale", "kind": "Video", "video_id": "o3Ym-tAtCvc", "keywords": "", "youtube_id": "o3Ym-tAtCvc", "readable_id": "bhp-collective-learning-at-scale"}, "WWHJqnfmhQ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WWHJqnfmhQ8.mp4/WWHJqnfmhQ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WWHJqnfmhQ8.mp4/WWHJqnfmhQ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WWHJqnfmhQ8.m3u8/WWHJqnfmhQ8.m3u8"}, "duration": 70, "id": "WWHJqnfmhQ8", "title": "What Is a fossil?", "format": "mp4", "description": "Fossils are naturally-preserved physical traces of long-dead organisms. Usually, these traces consist of an organism's hard parts, such as bones, teeth, shells, or wood. Occasionally, when conditions are optimal, soft parts of organisms can also fossilize, such as impressions of skin, body outlines, and, more commonly, leaves. Other traces of objects made by organisms, such as footprints, burrows, and nests, also qualify to be called fossils. Most definitions of fossils require that the organism's body part or other physical trace be more than 10,000 years old in order to truly be called a fossil.", "path": "what-is-a-fossil/", "slug": "what-is-a-fossil", "kind": "Video", "video_id": "WWHJqnfmhQ8", "keywords": "", "youtube_id": "WWHJqnfmhQ8", "readable_id": "what-is-a-fossil"}, "rCGHUXSd15s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rCGHUXSd15s.mp4/rCGHUXSd15s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rCGHUXSd15s.mp4/rCGHUXSd15s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rCGHUXSd15s.m3u8/rCGHUXSd15s.m3u8"}, "duration": 330, "id": "rCGHUXSd15s", "title": "Justification for |a - b| = |b - a|", "format": "mp4", "description": "This is a more formal justification for why |a - b| = |b - a| than we saw in previous videos.", "path": "justification-for-a-b-b-a/", "slug": "justification-for-a-b-b-a", "kind": "Video", "video_id": "rCGHUXSd15s", "keywords": "", "youtube_id": "rCGHUXSd15s", "readable_id": "justification-for-a-b-b-a"}, "OhAAi3DZ984": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OhAAi3DZ984.mp4/OhAAi3DZ984.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OhAAi3DZ984.mp4/OhAAi3DZ984.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OhAAi3DZ984.m3u8/OhAAi3DZ984.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/using-a-pka-table/", "duration": 544, "id": "OhAAi3DZ984", "title": "Using a pKa table", "format": "mp4", "description": "How to use a pKa table to determine relative acid strengths", "slug": "using-a-pka-table", "kind": "Video", "video_id": "OhAAi3DZ984", "keywords": "", "youtube_id": "OhAAi3DZ984", "readable_id": "using-a-pka-table"}, "jXJpbpvcMDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jXJpbpvcMDU.mp4/jXJpbpvcMDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jXJpbpvcMDU.mp4/jXJpbpvcMDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jXJpbpvcMDU.m3u8/jXJpbpvcMDU.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/zarina-hashmi/", "duration": 211, "id": "jXJpbpvcMDU", "title": "Zarina Hashmi", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nZarina Hashmi left India in 1958. Around the same time, her family were subject to relocation from Delhi to Karachi following the partition of India and Pakistan. As a result, exile and the loss of the family home are embedded in her work, which often evokes physical and psychological spaces relating to memories of childhood and later life. Hear the artist speak about her piece Letters from Home\u00a0(2004), a set of woodcuts in which handwritten letters from her sister Rani are overlaid by maps and floorplans that represent the artist's travels and places where she has lived, exploring the relationship with her native language and origins.", "slug": "zarina-hashmi", "kind": "Video", "video_id": "jXJpbpvcMDU", "keywords": "Tate", "youtube_id": "jXJpbpvcMDU", "readable_id": "zarina-hashmi"}, "fvC0dm2wzIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fvC0dm2wzIo.mp4/fvC0dm2wzIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fvC0dm2wzIo.mp4/fvC0dm2wzIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fvC0dm2wzIo.m3u8/fvC0dm2wzIo.m3u8"}, "path": "khan/math/algebra2/rational-expressions/rational-function-graphing/horizontal-vertical-asymptotes/", "duration": 664, "id": "fvC0dm2wzIo", "title": "Horizontal and vertical asymptotes of function", "format": "mp4", "description": "", "slug": "horizontal-vertical-asymptotes", "kind": "Video", "video_id": "fvC0dm2wzIo", "keywords": "", "youtube_id": "fvC0dm2wzIo", "readable_id": "horizontal-vertical-asymptotes"}, "RdehfQJ8i_0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RdehfQJ8i_0.mp4/RdehfQJ8i_0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RdehfQJ8i_0.mp4/RdehfQJ8i_0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RdehfQJ8i_0.m3u8/RdehfQJ8i_0.m3u8"}, "duration": 415, "id": "RdehfQJ8i_0", "title": "Experimental probability", "format": "mp4", "description": "Based on past experience, we can make reasonable estimates of the likelihood of future events.", "path": "experimental-probability/", "slug": "experimental-probability", "kind": "Video", "video_id": "RdehfQJ8i_0", "keywords": "", "youtube_id": "RdehfQJ8i_0", "readable_id": "experimental-probability"}, "DvYs1HILq1g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DvYs1HILq1g.mp4/DvYs1HILq1g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DvYs1HILq1g.mp4/DvYs1HILq1g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DvYs1HILq1g.m3u8/DvYs1HILq1g.m3u8"}, "duration": 664, "id": "DvYs1HILq1g", "title": "Oxidation and reduction", "format": "mp4", "description": "", "path": "khan/science/chemistry/oxidation-reduction/redox-oxidation-reduction/introduction-to-oxidation-and-reduction/", "slug": "introduction-to-oxidation-and-reduction", "kind": "Video", "video_id": "DvYs1HILq1g", "keywords": "", "youtube_id": "DvYs1HILq1g", "readable_id": "introduction-to-oxidation-and-reduction"}, "nLY2bzRfQyo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nLY2bzRfQyo.mp4/nLY2bzRfQyo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nLY2bzRfQyo.mp4/nLY2bzRfQyo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nLY2bzRfQyo.m3u8/nLY2bzRfQyo.m3u8"}, "path": "khan/math/pre-algebra/measurement/perimeter/comparing-area-and-perimeter/", "duration": 334, "id": "nLY2bzRfQyo", "title": "Comparing areas and perimeters of rectangles", "format": "mp4", "description": "Compare the areas and perimeters of rectangles to a given rectangle.", "slug": "comparing-area-and-perimeter", "kind": "Video", "video_id": "nLY2bzRfQyo", "keywords": "", "youtube_id": "nLY2bzRfQyo", "readable_id": "comparing-area-and-perimeter"}, "0c7dt2SQfLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0c7dt2SQfLw.mp4/0c7dt2SQfLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0c7dt2SQfLw.mp4/0c7dt2SQfLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0c7dt2SQfLw.m3u8/0c7dt2SQfLw.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_of_matrices/linear-algebra-3x3-determinant/", "duration": 601, "id": "0c7dt2SQfLw", "title": "3 x 3 determinant", "format": "mp4", "description": "Determinants: Finding the determinant of a 3x3 matrix", "slug": "linear-algebra-3x3-determinant", "kind": "Video", "video_id": "0c7dt2SQfLw", "keywords": "determinant", "youtube_id": "0c7dt2SQfLw", "readable_id": "linear-algebra-3x3-determinant"}, "qk-9Ez3xICY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qk-9Ez3xICY.mp4/qk-9Ez3xICY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qk-9Ez3xICY.mp4/qk-9Ez3xICY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qk-9Ez3xICY.m3u8/qk-9Ez3xICY.m3u8"}, "path": "khan/humanities/art-asia/south-asia/buddhist-art2/bodh-gaya/", "duration": 181, "id": "qk-9Ez3xICY", "title": "Bodh Gaya: center of the Buddhist world", "format": "mp4", "description": "Discover Bodh Gaya, one of several sights in India associated with the birth of Buddhism. Learn more about Bodh Gaya on the Asian Art Museum's education website.\u00a0", "slug": "bodh-gaya", "kind": "Video", "video_id": "qk-9Ez3xICY", "keywords": "", "youtube_id": "qk-9Ez3xICY", "readable_id": "bodh-gaya"}, "bJF9R8_-0O0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bJF9R8_-0O0.mp4/bJF9R8_-0O0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bJF9R8_-0O0.mp4/bJF9R8_-0O0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bJF9R8_-0O0.m3u8/bJF9R8_-0O0.m3u8"}, "path": "khan/math/basic-geo/basic-geo-lines/basic-geo-measuring-segments/congruent-segments/", "duration": 61, "id": "bJF9R8_-0O0", "title": "Congruent line segments", "format": "mp4", "description": "Let's take line segments a little further. How do we know if line segments are congruent? Let's watch this example of counting points to see if they have the exact same length.", "slug": "congruent-segments", "kind": "Video", "video_id": "bJF9R8_-0O0", "keywords": "", "youtube_id": "bJF9R8_-0O0", "readable_id": "congruent-segments"}, "sXOIIEZh6qg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sXOIIEZh6qg.mp4/sXOIIEZh6qg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sXOIIEZh6qg.mp4/sXOIIEZh6qg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sXOIIEZh6qg.m3u8/sXOIIEZh6qg.m3u8"}, "path": "khan/science/chemistry/chemical-reactions-stoichiome/empirical-molecular-formula/another-mass-composition-problem/", "duration": 401, "id": "sXOIIEZh6qg", "title": "Another mass composition problem", "format": "mp4", "description": "Another exercise converting a mass composition to an empirical formula.", "slug": "another-mass-composition-problem", "kind": "Video", "video_id": "sXOIIEZh6qg", "keywords": "empirical, formula, chemistry, science, mole", "youtube_id": "sXOIIEZh6qg", "readable_id": "another-mass-composition-problem"}, "TXGhMDbbnzQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TXGhMDbbnzQ.mp4/TXGhMDbbnzQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TXGhMDbbnzQ.mp4/TXGhMDbbnzQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TXGhMDbbnzQ.m3u8/TXGhMDbbnzQ.m3u8"}, "path": "khan/math/probability/statistical-studies/categorical-data/analyzing-trends-categorical-data/", "duration": 534, "id": "TXGhMDbbnzQ", "title": "Analyzing trends in categorical data", "format": "mp4", "description": "", "slug": "analyzing-trends-categorical-data", "kind": "Video", "video_id": "TXGhMDbbnzQ", "keywords": "", "youtube_id": "TXGhMDbbnzQ", "readable_id": "analyzing-trends-categorical-data"}, "a-e8fzqv3CE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a-e8fzqv3CE.mp4/a-e8fzqv3CE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a-e8fzqv3CE.mp4/a-e8fzqv3CE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a-e8fzqv3CE.m3u8/a-e8fzqv3CE.m3u8"}, "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/re-visual-multiplication-and-48-2-9-3/", "duration": 199, "id": "a-e8fzqv3CE", "title": "Re: Visual multiplication and 48/2(9+3)", "format": "mp4", "description": "A quick response to some mathy things going around.", "slug": "re-visual-multiplication-and-48-2-9-3", "kind": "Video", "video_id": "a-e8fzqv3CE", "keywords": "mathematics, multiplication", "youtube_id": "a-e8fzqv3CE", "readable_id": "re-visual-multiplication-and-48-2-9-3"}, "73eSiVcg4tQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/73eSiVcg4tQ.mp4/73eSiVcg4tQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/73eSiVcg4tQ.mp4/73eSiVcg4tQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/73eSiVcg4tQ.m3u8/73eSiVcg4tQ.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-1-b-c/", "duration": 459, "id": "73eSiVcg4tQ", "title": "2011 Calculus BC free response #1 (b & c)", "format": "mp4", "description": "Position and slope of particle's path at a given time", "slug": "2011-calculus-bc-free-response-1-b-c", "kind": "Video", "video_id": "73eSiVcg4tQ", "keywords": "vector, AP", "youtube_id": "73eSiVcg4tQ", "readable_id": "2011-calculus-bc-free-response-1-b-c"}, "9M-B5qU7ezY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9M-B5qU7ezY.mp4/9M-B5qU7ezY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9M-B5qU7ezY.mp4/9M-B5qU7ezY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9M-B5qU7ezY.m3u8/9M-B5qU7ezY.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/direct-variation-models/", "duration": 671, "id": "9M-B5qU7ezY", "title": "Direct variation models", "format": "mp4", "description": "Direct Variation Models", "slug": "direct-variation-models", "kind": "Video", "video_id": "9M-B5qU7ezY", "keywords": "Direct, Variation, Models, CC_39336_F-LE_1_b", "youtube_id": "9M-B5qU7ezY", "readable_id": "direct-variation-models"}, "xaz5ftvZCyI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xaz5ftvZCyI.mp4/xaz5ftvZCyI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xaz5ftvZCyI.mp4/xaz5ftvZCyI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xaz5ftvZCyI.m3u8/xaz5ftvZCyI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/review-of-b-cells-cd4-t-cells-and-cd8-t-cells/", "duration": 667, "id": "xaz5ftvZCyI", "title": "Review of B cells, CD4+ T cells and CD8+ T cells", "format": "mp4", "description": "Review of B cells, CD4+ T cells and CD8+ T cells", "slug": "review-of-b-cells-cd4-t-cells-and-cd8-t-cells", "kind": "Video", "video_id": "xaz5ftvZCyI", "keywords": "plasma, cell, helper, effector, memory, cytotoxic", "youtube_id": "xaz5ftvZCyI", "readable_id": "review-of-b-cells-cd4-t-cells-and-cd8-t-cells"}, "FsS0nLKoaoo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FsS0nLKoaoo.mp4/FsS0nLKoaoo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FsS0nLKoaoo.mp4/FsS0nLKoaoo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FsS0nLKoaoo.m3u8/FsS0nLKoaoo.m3u8"}, "duration": 276, "id": "FsS0nLKoaoo", "title": "What's all the matter? Atoms and Molecules", "format": "mp4", "description": "Atoms, elements and molecules. Understanding the building blocks of matter.", "path": "atoms-and-molecules/", "slug": "atoms-and-molecules", "kind": "Video", "video_id": "FsS0nLKoaoo", "keywords": "atoms", "youtube_id": "FsS0nLKoaoo", "readable_id": "atoms-and-molecules"}, "h72iwhmB6zc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h72iwhmB6zc.mp4/h72iwhmB6zc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h72iwhmB6zc.mp4/h72iwhmB6zc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h72iwhmB6zc.m3u8/h72iwhmB6zc.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/end-diastolic-pressure-volume-relationship-edpvr/", "duration": 598, "id": "h72iwhmB6zc", "title": "End diastolic pressure-volume relationship (EDPVR)", "format": "mp4", "description": "Find out what happens when the left ventricle is not allowed to contract, and instead you simply add and take away blood from it. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "end-diastolic-pressure-volume-relationship-edpvr", "kind": "Video", "video_id": "h72iwhmB6zc", "keywords": "", "youtube_id": "h72iwhmB6zc", "readable_id": "end-diastolic-pressure-volume-relationship-edpvr"}, "hk_21n8ITqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hk_21n8ITqg.mp4/hk_21n8ITqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hk_21n8ITqg.mp4/hk_21n8ITqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hk_21n8ITqg.m3u8/hk_21n8ITqg.m3u8"}, "duration": 685, "id": "hk_21n8ITqg", "title": "Samurai, Daimyo, Matthew Perry, and Nationalism", "format": "mp4", "description": "In which John Green teaches you about Nationalism. Nationalism was everywhere in the 19th century, as people all over the world carved new nation-states out of old empires. Nationalist leaders changed the way people thought of themselves and the places they lived by reinventing education, military service, and the relationship between government and governed. In Japan, the traditional feudal society underwent a long transformation over the course of about 300 years to become a modern nation-state. John follows the course of Japanese history from the emergence of the Tokugawa Shogunate to the Meiji Restoration, and covers Nationalism in many other countries along the way. All this, plus a special guest appearance, plus the return of an old friend on a extra-special episode of Crash Course.", "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-34/", "slug": "crash-course-world-history-34", "kind": "Video", "video_id": "hk_21n8ITqg", "keywords": "crash course", "youtube_id": "hk_21n8ITqg", "readable_id": "crash-course-world-history-34"}, "-h3Oqhl8fPg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-h3Oqhl8fPg.mp4/-h3Oqhl8fPg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-h3Oqhl8fPg.mp4/-h3Oqhl8fPg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-h3Oqhl8fPg.m3u8/-h3Oqhl8fPg.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/multiplication-6-multiple-digit-numbers/", "duration": 627, "id": "-h3Oqhl8fPg", "title": "Multiplying multiple digit numbers", "format": "mp4", "description": "Working our way up to multiplying multiple-digit numbers with each other. We'll go slow so you can follow along.", "slug": "multiplication-6-multiple-digit-numbers", "kind": "Video", "video_id": "-h3Oqhl8fPg", "keywords": "multiplication", "youtube_id": "-h3Oqhl8fPg", "readable_id": "multiplication-6-multiple-digit-numbers"}, "2DI_X16I4-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2DI_X16I4-s.mp4/2DI_X16I4-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2DI_X16I4-s.mp4/2DI_X16I4-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2DI_X16I4-s.m3u8/2DI_X16I4-s.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/how-does-the-body-adapt-to-starvation/", "duration": 895, "id": "2DI_X16I4-s", "title": "How does the body adapt to starvation?", "format": "mp4", "description": "1D: How does the body utilize the major energy storage fuels? What are ketones? Why can't fatty acids be converted to glucose?", "slug": "how-does-the-body-adapt-to-starvation", "kind": "Video", "video_id": "2DI_X16I4-s", "keywords": "", "youtube_id": "2DI_X16I4-s", "readable_id": "how-does-the-body-adapt-to-starvation"}, "cuwMrVoG2V8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cuwMrVoG2V8.mp4/cuwMrVoG2V8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cuwMrVoG2V8.mp4/cuwMrVoG2V8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cuwMrVoG2V8.m3u8/cuwMrVoG2V8.m3u8"}, "duration": 626, "id": "cuwMrVoG2V8", "title": "Why doesn't the heart rip?", "format": "mp4", "description": "Understand LaPlace's law to see the effect that pressure, radius, and wall thickness each have on the \"wall stress\" in the left ventricle. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/why-doesn-t-the-heart-rip/", "slug": "why-doesn-t-the-heart-rip", "kind": "Video", "video_id": "cuwMrVoG2V8", "keywords": "", "youtube_id": "cuwMrVoG2V8", "readable_id": "why-doesn-t-the-heart-rip"}, "12Rvts2NR7M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/12Rvts2NR7M.mp4/12Rvts2NR7M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/12Rvts2NR7M.mp4/12Rvts2NR7M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/12Rvts2NR7M.m3u8/12Rvts2NR7M.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-sal/comparing-e2-e1-sn2-sn1-reactions/", "duration": 746, "id": "12Rvts2NR7M", "title": "Comparing E2, E1, Sn2, Sn1 reactions", "format": "mp4", "description": "Comparing E2 E1 Sn2 Sn1 Reactions", "slug": "comparing-e2-e1-sn2-sn1-reactions", "kind": "Video", "video_id": "12Rvts2NR7M", "keywords": "Comparing, E2, E1, Sn2, Sn1, Reactions, organic, chemistry", "youtube_id": "12Rvts2NR7M", "readable_id": "comparing-e2-e1-sn2-sn1-reactions"}, "g8sxNa-E-H0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g8sxNa-E-H0.mp4/g8sxNa-E-H0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g8sxNa-E-H0.mp4/g8sxNa-E-H0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g8sxNa-E-H0.m3u8/g8sxNa-E-H0.m3u8"}, "duration": 670, "id": "g8sxNa-E-H0", "title": "Theodor Herzl and the birth of political Zionism", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/middle-east-20th-century/theodor-herzl-and-the-birth-of-political-zionism/", "slug": "theodor-herzl-and-the-birth-of-political-zionism", "kind": "Video", "video_id": "g8sxNa-E-H0", "keywords": "", "youtube_id": "g8sxNa-E-H0", "readable_id": "theodor-herzl-and-the-birth-of-political-zionism"}, "AFF8FXxt5os": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AFF8FXxt5os.mp4/AFF8FXxt5os.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AFF8FXxt5os.mp4/AFF8FXxt5os.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AFF8FXxt5os.m3u8/AFF8FXxt5os.m3u8"}, "duration": 692, "id": "AFF8FXxt5os", "title": "Using a line integral to find the work done by a vector field example", "format": "mp4", "description": "Using a line integral to find the work done by a vector field example", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/using-a-line-integral-to-find-the-work-done-by-a-vector-field-example/", "slug": "using-a-line-integral-to-find-the-work-done-by-a-vector-field-example", "kind": "Video", "video_id": "AFF8FXxt5os", "keywords": "line, integral, work, vector, field, example", "youtube_id": "AFF8FXxt5os", "readable_id": "using-a-line-integral-to-find-the-work-done-by-a-vector-field-example"}, "gibe5vJfq5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gibe5vJfq5w.mp4/gibe5vJfq5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gibe5vJfq5w.mp4/gibe5vJfq5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gibe5vJfq5w.m3u8/gibe5vJfq5w.m3u8"}, "path": "khan/humanities/art-asia/art-japan/nara-period/brahma-and-indra/", "duration": 205, "id": "gibe5vJfq5w", "title": "Standing Brahma and standing Indra", "format": "mp4", "description": "Brahma and Indra, or Bonten and Taishakuten as they are known in Japanese, were Hindu deities brought into Buddhism as attendants of the Buddha or of bodhisattvas. The Asian Art Museum's Bonten and Taishakuten are the only large-scale, matched Japanese hollow dry lacquer sculptures from the Nara period in a U.S. collection. Even in Japan, sculptures like these are extremely rare and most have been designated as National Treasures or Important Cultural Properties. Learn more about the Hindu deity Brahma.", "slug": "brahma-and-indra", "kind": "Video", "video_id": "gibe5vJfq5w", "keywords": "", "youtube_id": "gibe5vJfq5w", "readable_id": "brahma-and-indra"}, "cc8sUv2SuaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cc8sUv2SuaY.mp4/cc8sUv2SuaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cc8sUv2SuaY.mp4/cc8sUv2SuaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cc8sUv2SuaY.m3u8/cc8sUv2SuaY.m3u8"}, "duration": 1118, "id": "cc8sUv2SuaY", "title": "The kidney and nephron", "format": "mp4", "description": "Overview of how the nephrons in the kidney filter blood and reabsorb water and other molecules.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/the-kidney-and-nephron/", "slug": "the-kidney-and-nephron", "kind": "Video", "video_id": "cc8sUv2SuaY", "keywords": "renal, kidney, nephron", "youtube_id": "cc8sUv2SuaY", "readable_id": "the-kidney-and-nephron"}, "wUNWjd4bMmw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wUNWjd4bMmw.mp4/wUNWjd4bMmw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wUNWjd4bMmw.mp4/wUNWjd4bMmw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wUNWjd4bMmw.m3u8/wUNWjd4bMmw.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/composing-functions/function-composition/", "duration": 375, "id": "wUNWjd4bMmw", "title": "Introduction to function composition", "format": "mp4", "description": "", "slug": "function-composition", "kind": "Video", "video_id": "wUNWjd4bMmw", "keywords": "", "youtube_id": "wUNWjd4bMmw", "readable_id": "function-composition"}, "w49ddHSDGUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w49ddHSDGUA.mp4/w49ddHSDGUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w49ddHSDGUA.mp4/w49ddHSDGUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w49ddHSDGUA.m3u8/w49ddHSDGUA.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-picture-graphs/picture-graphs/", "duration": 168, "id": "w49ddHSDGUA", "title": "Picture graphs", "format": "mp4", "description": "Read and interpret a picture graph.\u00a0", "slug": "picture-graphs", "kind": "Video", "video_id": "w49ddHSDGUA", "keywords": "", "youtube_id": "w49ddHSDGUA", "readable_id": "picture-graphs"}, "pDZIvyeqX1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pDZIvyeqX1o.mp4/pDZIvyeqX1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pDZIvyeqX1o.mp4/pDZIvyeqX1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pDZIvyeqX1o.m3u8/pDZIvyeqX1o.m3u8"}, "duration": 385, "id": "pDZIvyeqX1o", "title": "Common orthocenter and centroid", "format": "mp4", "description": "Showing that a triangle with the same point as the orthocenter and centroid is equilateral", "path": "khan/math/geometry/triangle-properties/altitudes/common-orthocenter-and-centroid/", "slug": "common-orthocenter-and-centroid", "kind": "Video", "video_id": "pDZIvyeqX1o", "keywords": "geometry", "youtube_id": "pDZIvyeqX1o", "readable_id": "common-orthocenter-and-centroid"}, "vv6WBeqw2Nc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vv6WBeqw2Nc.mp4/vv6WBeqw2Nc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vv6WBeqw2Nc.mp4/vv6WBeqw2Nc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vv6WBeqw2Nc.m3u8/vv6WBeqw2Nc.m3u8"}, "duration": 603, "id": "vv6WBeqw2Nc", "title": "Calcium puts myosin to work", "format": "mp4", "description": "See exactly how Calcium binds Troponin-C and allows Myosin to do some work. ", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/calcium-puts-myosin-to-work/", "slug": "calcium-puts-myosin-to-work", "kind": "Video", "video_id": "vv6WBeqw2Nc", "keywords": "calcium, myosin", "youtube_id": "vv6WBeqw2Nc", "readable_id": "calcium-puts-myosin-to-work"}, "AGFO-ROxH_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AGFO-ROxH_I.mp4/AGFO-ROxH_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AGFO-ROxH_I.mp4/AGFO-ROxH_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AGFO-ROxH_I.m3u8/AGFO-ROxH_I.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/converting-units-of-length/", "duration": 484, "id": "AGFO-ROxH_I", "title": "Unit measurement word problem: running laps (US customary)", "format": "mp4", "description": "Remember that it's always easier to convert everything to like units before tackling a unit conversion word problem. That way your comparing apples to apples. Go for it...we'll explain as we work through it!", "slug": "converting-units-of-length", "kind": "Video", "video_id": "AGFO-ROxH_I", "keywords": "U06_L1_T1_we3, Converting, units, of, length, CC_4_MD_1, CC_5_MD_1, CC_6_RP_3_d", "youtube_id": "AGFO-ROxH_I", "readable_id": "converting-units-of-length"}, "6JQNEww5DF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6JQNEww5DF8.mp4/6JQNEww5DF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6JQNEww5DF8.mp4/6JQNEww5DF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6JQNEww5DF8.m3u8/6JQNEww5DF8.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-11/", "duration": 95, "id": "6JQNEww5DF8", "title": "12 Equivalent expressions", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-11", "kind": "Video", "video_id": "6JQNEww5DF8", "keywords": "", "youtube_id": "6JQNEww5DF8", "readable_id": "sat-2010-may-6-11"}, "u00I3MCrspU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u00I3MCrspU.mp4/u00I3MCrspU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u00I3MCrspU.mp4/u00I3MCrspU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u00I3MCrspU.m3u8/u00I3MCrspU.m3u8"}, "duration": 237, "id": "u00I3MCrspU", "title": "Finding the determinant of a 3x3 matrix method 2", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/finding-the-determinant-of-a-3x3-matrix-method-2/", "slug": "finding-the-determinant-of-a-3x3-matrix-method-2", "kind": "Video", "video_id": "u00I3MCrspU", "keywords": "", "youtube_id": "u00I3MCrspU", "readable_id": "finding-the-determinant-of-a-3x3-matrix-method-2"}, "iHBz77E625o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iHBz77E625o.mp4/iHBz77E625o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iHBz77E625o.mp4/iHBz77E625o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iHBz77E625o.m3u8/iHBz77E625o.m3u8"}, "path": "khan/partner-content/exploratorium/exploratorium-chemistry/penny-battery/penny-battery-wow/", "duration": 19, "id": "iHBz77E625o", "title": "Penny battery introduction", "format": "mp4", "description": "You can make a simple battery, powerful enough to light an LED, with the change in your pockets!", "slug": "penny-battery-wow", "kind": "Video", "video_id": "iHBz77E625o", "keywords": "penny, battery, LED, Exploratorium", "youtube_id": "iHBz77E625o", "readable_id": "penny-battery-wow"}, "lCsjJbZHhHU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lCsjJbZHhHU.mp4/lCsjJbZHhHU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lCsjJbZHhHU.mp4/lCsjJbZHhHU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lCsjJbZHhHU.m3u8/lCsjJbZHhHU.m3u8"}, "duration": 381, "id": "lCsjJbZHhHU", "title": "Real coordinate spaces", "format": "mp4", "description": "", "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/real-coordinate-spaces/", "slug": "real-coordinate-spaces", "kind": "Video", "video_id": "lCsjJbZHhHU", "keywords": "", "youtube_id": "lCsjJbZHhHU", "readable_id": "real-coordinate-spaces"}, "ah39bUxYDEg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ah39bUxYDEg.mp4/ah39bUxYDEg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ah39bUxYDEg.mp4/ah39bUxYDEg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ah39bUxYDEg.m3u8/ah39bUxYDEg.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-17-19/", "duration": 343, "id": "ah39bUxYDEg", "title": "CAHSEE practice: Problems 17-19", "format": "mp4", "description": "CAHSEE Practice: Problems 17-19", "slug": "cahsee-practice-problems-17-19", "kind": "Video", "video_id": "ah39bUxYDEg", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "ah39bUxYDEg", "readable_id": "cahsee-practice-problems-17-19"}, "PZQTxPbvO64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PZQTxPbvO64.mp4/PZQTxPbvO64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PZQTxPbvO64.mp4/PZQTxPbvO64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PZQTxPbvO64.m3u8/PZQTxPbvO64.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/liao-dynasty/divinity/", "duration": 166, "id": "PZQTxPbvO64", "title": "\"Divinity\" with Denise Leidy", "format": "mp4", "description": "Met curator Denise Leidy on ugliness and divinity in Arhat (Luohan) dating from China\u2019s Liao dynasty.\u00a0\n\nThis nearly life-size sculpture and its companion piece\u00a0are part of a group of about sixteen works that have been known in the West since 1913. They are thought to have come from a cave in Yixian, in Hebei province, and they represent arhats (or luohans, as they are known in China). Arhats were thought to have achieved an advanced (although not perfected) state of spiritual development, and they eventually became recognized as protectors of Buddhism. Both works are justifiably acclaimed as masterpieces of ceramic sculpture, both for their size and for the quality of their glaze, a three-toned or colored glaze known as sancai. The discovery of an ancient kiln in a village near Beijing in 1983 and its subsequent excavation in 1985 yielded much information that could be used to date these extraordinary sculptures. It seems reasonable, therefore, to date the more technically challenging, life-size works slightly later, probably to the late tenth or eleventh century.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find and educator resource.\n", "slug": "divinity", "kind": "Video", "video_id": "PZQTxPbvO64", "keywords": "belief, body, calm, ceramic, sculpture, transcendence, Asia", "youtube_id": "PZQTxPbvO64", "readable_id": "divinity"}, "bAU1MLRwh7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bAU1MLRwh7c.mp4/bAU1MLRwh7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bAU1MLRwh7c.mp4/bAU1MLRwh7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bAU1MLRwh7c.m3u8/bAU1MLRwh7c.m3u8"}, "duration": 228, "id": "bAU1MLRwh7c", "title": "Back-of-envelope office space conundrum", "format": "mp4", "description": "Back of the envelope calculation of which office space to rent", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/investment-consumption/back-of-envelope-office-space-conundrum/", "slug": "back-of-envelope-office-space-conundrum", "kind": "Video", "video_id": "bAU1MLRwh7c", "keywords": "finance, lease", "youtube_id": "bAU1MLRwh7c", "readable_id": "back-of-envelope-office-space-conundrum"}, "PhO2gshIVuE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PhO2gshIVuE.mp4/PhO2gshIVuE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PhO2gshIVuE.mp4/PhO2gshIVuE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PhO2gshIVuE.m3u8/PhO2gshIVuE.m3u8"}, "duration": 3898, "id": "PhO2gshIVuE", "title": "Authors@Google: Salman Khan", "format": "mp4", "description": "Salman Khan spoke to Googlers in Mountain View, California on March 15, 2011 about Khan Academy: A World Class Education to Anyone, Anywhere.\n\nSalman Khan is the founder and faculty of Khan Academy http://www.khanacademy.org/ a not-for-profit educational organization. With the stated mission \"of providing a high quality education to anyone, anywhere\", the Academy supplies a free online collection of over 2,000 videos on mathematics, history, finance, physics, chemistry, astronomy, and economics.\n\nIn late 2004, Khan began tutoring his cousin in mathematics using Yahoo!'s Doodle notepad. When other relatives and friends sought his tutorial, he decided it would be more practical to distribute the tutorials on YouTube. Their popularity there and the testimonials of appreciative students prompted Khan to quit his job in finance in 2009 and focus on the Academy full-time.\n\nKhan Academy's channel on YouTube http://www.youtube.com/user/khanacademy has 45+ million views so far and it's one of YouTube's most successful academic partners.\n\nIn September 2010, Google announced they would be providing the Khan Academy with $2 million to support the creation of more courses and to enable the Khan Academy to translate their core library into the world's most widely spoken languages, as part of Project 10^100, http://www.project10tothe100.com/.\n\nKhan is aiming at making nothing less than \"tens of thousands\" of tutorials offering the \"first free, world-class virtual school where anyone can learn anything.\"", "path": "authors-google-salman-khan/", "slug": "authors-google-salman-khan", "kind": "Video", "video_id": "PhO2gshIVuE", "keywords": "Khan Academy, Salman Khan, online education, Project 10^100", "youtube_id": "PhO2gshIVuE", "readable_id": "authors-google-salman-khan"}, "kOTdVMM9Lwg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kOTdVMM9Lwg.mp4/kOTdVMM9Lwg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kOTdVMM9Lwg.mp4/kOTdVMM9Lwg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kOTdVMM9Lwg.m3u8/kOTdVMM9Lwg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-laryngeal-conditions/laryngomalacia/", "duration": 291, "id": "kOTdVMM9Lwg", "title": "Laryngomalacia", "format": "mp4", "description": "", "slug": "laryngomalacia", "kind": "Video", "video_id": "kOTdVMM9Lwg", "keywords": "", "youtube_id": "kOTdVMM9Lwg", "readable_id": "laryngomalacia"}, "DrRsXhln4S8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DrRsXhln4S8.mp4/DrRsXhln4S8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DrRsXhln4S8.mp4/DrRsXhln4S8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DrRsXhln4S8.m3u8/DrRsXhln4S8.m3u8"}, "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem_proof/divergence-theorem-proof-part-5/", "duration": 192, "id": "DrRsXhln4S8", "title": "Divergence theorem proof (part 5)", "format": "mp4", "description": "Home stretch. Proving the Type I part", "slug": "divergence-theorem-proof-part-5", "kind": "Video", "video_id": "DrRsXhln4S8", "keywords": "", "youtube_id": "DrRsXhln4S8", "readable_id": "divergence-theorem-proof-part-5"}, "Yp0EhcVBxNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yp0EhcVBxNU.mp4/Yp0EhcVBxNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yp0EhcVBxNU.mp4/Yp0EhcVBxNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yp0EhcVBxNU.m3u8/Yp0EhcVBxNU.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/vector-basic/classifying-vectors-and-quantities-example/", "duration": 196, "id": "Yp0EhcVBxNU", "title": "Classifying vectors and quantities example", "format": "mp4", "description": "", "slug": "classifying-vectors-and-quantities-example", "kind": "Video", "video_id": "Yp0EhcVBxNU", "keywords": "", "youtube_id": "Yp0EhcVBxNU", "readable_id": "classifying-vectors-and-quantities-example"}, "AmOO4j0E408": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AmOO4j0E408.mp4/AmOO4j0E408.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AmOO4j0E408.mp4/AmOO4j0E408.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AmOO4j0E408.m3u8/AmOO4j0E408.m3u8"}, "path": "khan/science/biology/her/heredity-and-genetics/dna-deoxyribonucleic-acid/", "duration": 782, "id": "AmOO4j0E408", "title": "DNA", "format": "mp4", "description": "", "slug": "dna-deoxyribonucleic-acid", "kind": "Video", "video_id": "AmOO4j0E408", "keywords": "", "youtube_id": "AmOO4j0E408", "readable_id": "dna-deoxyribonucleic-acid"}, "vKMNRcctwL4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vKMNRcctwL4.mp4/vKMNRcctwL4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vKMNRcctwL4.mp4/vKMNRcctwL4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vKMNRcctwL4.m3u8/vKMNRcctwL4.m3u8"}, "duration": 973, "id": "vKMNRcctwL4", "title": "2003 AIME II problem 13", "format": "mp4", "description": "Probability of moving to a vertex", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-13/", "slug": "2003-aime-ii-problem-13", "kind": "Video", "video_id": "vKMNRcctwL4", "keywords": "probability, map, aime", "youtube_id": "vKMNRcctwL4", "readable_id": "2003-aime-ii-problem-13"}, "fucyI7Ouj2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fucyI7Ouj2c.mp4/fucyI7Ouj2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fucyI7Ouj2c.mp4/fucyI7Ouj2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fucyI7Ouj2c.m3u8/fucyI7Ouj2c.m3u8"}, "duration": 907, "id": "fucyI7Ouj2c", "title": "Enthalpy", "format": "mp4", "description": "Understanding why enthalpy can be viewed as \"heat content\" in a constant pressure system.", "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/enthalpy/", "slug": "enthalpy", "kind": "Video", "video_id": "fucyI7Ouj2c", "keywords": "enthalpy, thermodynamics, chemistry", "youtube_id": "fucyI7Ouj2c", "readable_id": "enthalpy"}, "4M62l7m1FJ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4M62l7m1FJ4.mp4/4M62l7m1FJ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4M62l7m1FJ4.mp4/4M62l7m1FJ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4M62l7m1FJ4.m3u8/4M62l7m1FJ4.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/example-calculator-to-evaluate-inverse-trig-function/", "duration": 208, "id": "4M62l7m1FJ4", "title": "Example: Calculator to evaluate inverse trig function", "format": "mp4", "description": "Example using calculator to evaluate inverse tangent function", "slug": "example-calculator-to-evaluate-inverse-trig-function", "kind": "Video", "video_id": "4M62l7m1FJ4", "keywords": "inverse trig tangent arctan tan arctangent", "youtube_id": "4M62l7m1FJ4", "readable_id": "example-calculator-to-evaluate-inverse-trig-function"}, "AqMT_zB9rP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AqMT_zB9rP8.mp4/AqMT_zB9rP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AqMT_zB9rP8.mp4/AqMT_zB9rP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AqMT_zB9rP8.m3u8/AqMT_zB9rP8.m3u8"}, "duration": 130, "id": "AqMT_zB9rP8", "title": "Subtracting polynomials with multiple variables", "format": "mp4", "description": "Subtracting polynomials with multiple variables", "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/subtracting-polynomials-with-multiple-variables/", "slug": "subtracting-polynomials-with-multiple-variables", "kind": "Video", "video_id": "AqMT_zB9rP8", "keywords": "u11_l3_t2_we2, Subtracting, polynomials, with, multiple, variables, CC_39336_A-APR_1", "youtube_id": "AqMT_zB9rP8", "readable_id": "subtracting-polynomials-with-multiple-variables"}, "OwPSuHXmiPw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OwPSuHXmiPw.mp4/OwPSuHXmiPw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OwPSuHXmiPw.mp4/OwPSuHXmiPw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OwPSuHXmiPw.m3u8/OwPSuHXmiPw.m3u8"}, "duration": 902, "id": "OwPSuHXmiPw", "title": "Margin of error 1", "format": "mp4", "description": "Finding the 95% confidence interval for the proportion of a population voting for a candidate.", "path": "khan/math/probability/statistics-inferential/margin-of-error/margin-of-error-1/", "slug": "margin-of-error-1", "kind": "Video", "video_id": "OwPSuHXmiPw", "keywords": "margin, of, error, confindence, interval, sampling, distribution, sample, mean, standard, deviation, CC_7_SP_1, CC_7_SP_2", "youtube_id": "OwPSuHXmiPw", "readable_id": "margin-of-error-1"}, "HDgRsZedjI4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HDgRsZedjI4.mp4/HDgRsZedjI4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HDgRsZedjI4.mp4/HDgRsZedjI4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HDgRsZedjI4.m3u8/HDgRsZedjI4.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/deanova-cavendish-part-2/", "duration": 206, "id": "HDgRsZedjI4", "title": "Early Modern: Margaret Cavendish part 2", "format": "mp4", "description": "In the second of two videos, Adela Deanova introduces Margaret Cavendish, an early modern English philosopher, and discusses the background to her critique of experimental philosophy. This video is a part of a series of videos coming from Project Vox (Duke), a project recovering the lost voices of women philosophers.\n\nSpeaker: Adela Deanova, Duke University", "slug": "deanova-cavendish-part-2", "kind": "Video", "video_id": "HDgRsZedjI4", "keywords": "", "youtube_id": "HDgRsZedjI4", "readable_id": "deanova-cavendish-part-2"}, "_2OIPwDEWFQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_2OIPwDEWFQ.mp4/_2OIPwDEWFQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_2OIPwDEWFQ.mp4/_2OIPwDEWFQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_2OIPwDEWFQ.m3u8/_2OIPwDEWFQ.m3u8"}, "duration": 712, "id": "_2OIPwDEWFQ", "title": "Taxonomy: Life's filing system", "format": "mp4", "description": "Hank tells us the background story and explains the importance of the science of classifying living things, also known as taxonomy.", "path": "crash-course-biology-118/", "slug": "crash-course-biology-118", "kind": "Video", "video_id": "_2OIPwDEWFQ", "keywords": "", "youtube_id": "_2OIPwDEWFQ", "readable_id": "crash-course-biology-118"}, "OvRAIlok3fA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OvRAIlok3fA.mp4/OvRAIlok3fA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OvRAIlok3fA.mp4/OvRAIlok3fA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OvRAIlok3fA.m3u8/OvRAIlok3fA.m3u8"}, "duration": 676, "id": "OvRAIlok3fA", "title": "GMAT: Math 50", "format": "mp4", "description": "232-236, pgs. 184-185", "path": "khan/test-prep/gmat/problem-solving/gmat-math-50/", "slug": "gmat-math-50", "kind": "Video", "video_id": "OvRAIlok3fA", "keywords": "GMAT, Math", "youtube_id": "OvRAIlok3fA", "readable_id": "gmat-math-50"}, "2Bq2xopLew8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2Bq2xopLew8.mp4/2Bq2xopLew8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2Bq2xopLew8.mp4/2Bq2xopLew8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2Bq2xopLew8.m3u8/2Bq2xopLew8.m3u8"}, "duration": 528, "id": "2Bq2xopLew8", "title": "What is actually in lymph", "format": "mp4", "description": "Learn about the differences between lymph and blood. Find out what is actually in lymph, and how it might be different across your body. By Patrick van Nieuwenhuizen. ", "path": "khan/test-prep/nclex-rn/rn-lymphatic-system/rn-the-lymphatic-system/what-is-lymph/", "slug": "what-is-lymph", "kind": "Video", "video_id": "2Bq2xopLew8", "keywords": "lymph", "youtube_id": "2Bq2xopLew8", "readable_id": "what-is-lymph"}, "OB8b8aDGLgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OB8b8aDGLgE.mp4/OB8b8aDGLgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OB8b8aDGLgE.mp4/OB8b8aDGLgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OB8b8aDGLgE.m3u8/OB8b8aDGLgE.m3u8"}, "duration": 654, "id": "OB8b8aDGLgE", "title": "Gradient of a scalar field", "format": "mp4", "description": "Intuition of the gradient of a scalar field (temperature in a room) in 3 dimensions.", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/gradient/gradient-of-a-scalar-field/", "slug": "gradient-of-a-scalar-field", "kind": "Video", "video_id": "OB8b8aDGLgE", "keywords": "gradient, scalar, field", "youtube_id": "OB8b8aDGLgE", "readable_id": "gradient-of-a-scalar-field"}, "NnjN9GGfV6E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NnjN9GGfV6E.mp4/NnjN9GGfV6E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NnjN9GGfV6E.mp4/NnjN9GGfV6E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NnjN9GGfV6E.m3u8/NnjN9GGfV6E.m3u8"}, "path": "khan/humanities/medieval-world/medieval-book/making-medieval-book/an-introduction-to-medieval-scripts/", "duration": 284, "id": "NnjN9GGfV6E", "title": "An introduction to Medieval scripts", "format": "mp4", "description": "Can you tell the difference between Carolingian Minuscule and Gothic script? Watch this video and you'll learn how. A conversation with Dr. Erik Kwakkel and Dr. Beth Harris about medieval scripts at the National Library of the Netherlands, in The Hague.", "slug": "an-introduction-to-medieval-scripts", "kind": "Video", "video_id": "NnjN9GGfV6E", "keywords": "art history, middle ages, manuscripts, erik kwakkel, ", "youtube_id": "NnjN9GGfV6E", "readable_id": "an-introduction-to-medieval-scripts"}, "-EmOwwmAR6I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-EmOwwmAR6I.mp4/-EmOwwmAR6I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-EmOwwmAR6I.mp4/-EmOwwmAR6I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-EmOwwmAR6I.m3u8/-EmOwwmAR6I.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/rs-bromochlorofluoro-jay/", "duration": 267, "id": "-EmOwwmAR6I", "title": "R,S system for bromochlorofluoromethane", "format": "mp4", "description": "", "slug": "rs-bromochlorofluoro-jay", "kind": "Video", "video_id": "-EmOwwmAR6I", "keywords": "", "youtube_id": "-EmOwwmAR6I", "readable_id": "rs-bromochlorofluoro-jay"}, "S_YIUXy-WFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S_YIUXy-WFM.mp4/S_YIUXy-WFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S_YIUXy-WFM.mp4/S_YIUXy-WFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S_YIUXy-WFM.m3u8/S_YIUXy-WFM.m3u8"}, "duration": 290, "id": "S_YIUXy-WFM", "title": "Finding where the derivative is equal to the average change", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/mean_value_theorem/finding-where-the-derivative-is-equal-to-the-average-change/", "slug": "finding-where-the-derivative-is-equal-to-the-average-change", "kind": "Video", "video_id": "S_YIUXy-WFM", "keywords": "", "youtube_id": "S_YIUXy-WFM", "readable_id": "finding-where-the-derivative-is-equal-to-the-average-change"}, "pXWPtZVFk9k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pXWPtZVFk9k.mp4/pXWPtZVFk9k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pXWPtZVFk9k.mp4/pXWPtZVFk9k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pXWPtZVFk9k.m3u8/pXWPtZVFk9k.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2009-may-3-14/", "duration": 154, "id": "pXWPtZVFk9k", "title": "14 Substituting variables", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-14", "kind": "Video", "video_id": "pXWPtZVFk9k", "keywords": "", "youtube_id": "pXWPtZVFk9k", "readable_id": "sat-2009-may-3-14"}, "-DlCeZw9RFw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-DlCeZw9RFw.mp4/-DlCeZw9RFw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-DlCeZw9RFw.mp4/-DlCeZw9RFw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-DlCeZw9RFw.m3u8/-DlCeZw9RFw.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spacemath1/conjunctions/", "duration": 186, "id": "-DlCeZw9RFw", "title": "Conjunctions", "format": "mp4", "description": "The three brightest planets in the night sky on May 26th, 2013 lined up for a beautiful sunset conjunction.", "slug": "conjunctions", "kind": "Video", "video_id": "-DlCeZw9RFw", "keywords": "", "youtube_id": "-DlCeZw9RFw", "readable_id": "conjunctions"}, "jBE80sA2ciY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jBE80sA2ciY.mp4/jBE80sA2ciY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jBE80sA2ciY.mp4/jBE80sA2ciY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jBE80sA2ciY.m3u8/jBE80sA2ciY.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction/diels-alder-vi-more-regiochemistry/", "duration": 678, "id": "jBE80sA2ciY", "title": "Diels-Alder VI: More regiochemistry", "format": "mp4", "description": "", "slug": "diels-alder-vi-more-regiochemistry", "kind": "Video", "video_id": "jBE80sA2ciY", "keywords": "", "youtube_id": "jBE80sA2ciY", "readable_id": "diels-alder-vi-more-regiochemistry"}, "Ce4BGV1DVVg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ce4BGV1DVVg.mp4/Ce4BGV1DVVg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ce4BGV1DVVg.mp4/Ce4BGV1DVVg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ce4BGV1DVVg.m3u8/Ce4BGV1DVVg.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/acid-strength-anion-size-and-bond-energy/", "duration": 347, "id": "Ce4BGV1DVVg", "title": "Acid strength, anion size, and bond energy", "format": "mp4", "description": "How anion size and bond dissociation energies affect acidity", "slug": "acid-strength-anion-size-and-bond-energy", "kind": "Video", "video_id": "Ce4BGV1DVVg", "keywords": "", "youtube_id": "Ce4BGV1DVVg", "readable_id": "acid-strength-anion-size-and-bond-energy"}, "R4qy9beFpHw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R4qy9beFpHw.mp4/R4qy9beFpHw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R4qy9beFpHw.mp4/R4qy9beFpHw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R4qy9beFpHw.m3u8/R4qy9beFpHw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/valvular-heart-disease-causes/", "duration": 528, "id": "R4qy9beFpHw", "title": "Valvular heart disease causes", "format": "mp4", "description": "", "slug": "valvular-heart-disease-causes", "kind": "Video", "video_id": "R4qy9beFpHw", "keywords": "", "youtube_id": "R4qy9beFpHw", "readable_id": "valvular-heart-disease-causes"}, "sPIOgGHhlYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sPIOgGHhlYo.mp4/sPIOgGHhlYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sPIOgGHhlYo.mp4/sPIOgGHhlYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sPIOgGHhlYo.m3u8/sPIOgGHhlYo.m3u8"}, "duration": 709, "id": "sPIOgGHhlYo", "title": "Old & Odd: Archaea, Bacteria & Protists", "format": "mp4", "description": "Hank veers away from human anatomy to teach us about the (mostly) single-celled organisms that make up two of the three taxonomic domains of life, and one of the four kingdoms: Archaea, Bacteria, and Protists. They are by far the most abundant organisms on Earth, and are our oldest, oddest relatives.", "path": "crash-course-biology-134/", "slug": "crash-course-biology-134", "kind": "Video", "video_id": "sPIOgGHhlYo", "keywords": "", "youtube_id": "sPIOgGHhlYo", "readable_id": "crash-course-biology-134"}, "QiluvhVryI0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QiluvhVryI0.mp4/QiluvhVryI0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QiluvhVryI0.mp4/QiluvhVryI0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QiluvhVryI0.m3u8/QiluvhVryI0.m3u8"}, "duration": 189, "id": "QiluvhVryI0", "title": "Futures fair value in the pre-market", "format": "mp4", "description": "What is the Futures Fair Value and how to traders use it as an indicator for stock price direction at market opening", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/futures-fair-value-in-the-pre-market/", "slug": "futures-fair-value-in-the-pre-market", "kind": "Video", "video_id": "QiluvhVryI0", "keywords": "finance, futures, market, pre-opening", "youtube_id": "QiluvhVryI0", "readable_id": "futures-fair-value-in-the-pre-market"}, "fh8gkPW_6g4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fh8gkPW_6g4.mp4/fh8gkPW_6g4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fh8gkPW_6g4.mp4/fh8gkPW_6g4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fh8gkPW_6g4.m3u8/fh8gkPW_6g4.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/rounding_whole_numbers/rounding-whole-numbers-2/", "duration": 148, "id": "fh8gkPW_6g4", "title": "Rounding whole numbers example 2", "format": "mp4", "description": "Another rounding exercise using whole numbers. Having fun yet? We are!", "slug": "rounding-whole-numbers-2", "kind": "Video", "video_id": "fh8gkPW_6g4", "keywords": "U01_L1_T2_we2, Rounding, Whole, Numbers, CC_3_OA_8, CC_4_NBT_3, CC_4_OA_3", "youtube_id": "fh8gkPW_6g4", "readable_id": "rounding-whole-numbers-2"}, "dJAc0mc9VYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dJAc0mc9VYo.mp4/dJAc0mc9VYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dJAc0mc9VYo.mp4/dJAc0mc9VYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dJAc0mc9VYo.m3u8/dJAc0mc9VYo.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2009-may-3-17/", "duration": 97, "id": "dJAc0mc9VYo", "title": "17 Fraction of circumference", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-17", "kind": "Video", "video_id": "dJAc0mc9VYo", "keywords": "", "youtube_id": "dJAc0mc9VYo", "readable_id": "sat-2009-may-3-17"}, "grmmM_KhQ4U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/grmmM_KhQ4U.mp4/grmmM_KhQ4U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/grmmM_KhQ4U.mp4/grmmM_KhQ4U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/grmmM_KhQ4U.m3u8/grmmM_KhQ4U.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/systems_of_linear_equations_word_problems/understanding-systems-of-equations-example/", "duration": 255, "id": "grmmM_KhQ4U", "title": "Systems of equations word problems example 4", "format": "mp4", "description": "", "slug": "understanding-systems-of-equations-example", "kind": "Video", "video_id": "grmmM_KhQ4U", "keywords": "", "youtube_id": "grmmM_KhQ4U", "readable_id": "understanding-systems-of-equations-example"}, "X9ypryY7hrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X9ypryY7hrQ.mp4/X9ypryY7hrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X9ypryY7hrQ.mp4/X9ypryY7hrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X9ypryY7hrQ.m3u8/X9ypryY7hrQ.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-cleavage-ethers/williamson-ether-synthesis/", "duration": 429, "id": "X9ypryY7hrQ", "title": "Williamson ether synthesis", "format": "mp4", "description": "", "slug": "williamson-ether-synthesis", "kind": "Video", "video_id": "X9ypryY7hrQ", "keywords": "", "youtube_id": "X9ypryY7hrQ", "readable_id": "williamson-ether-synthesis"}, "yTMZsxSBv_0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yTMZsxSBv_0.mp4/yTMZsxSBv_0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yTMZsxSBv_0.mp4/yTMZsxSBv_0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yTMZsxSBv_0.m3u8/yTMZsxSBv_0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/diagnosing-strokes-by-history-and-physical-exam/", "duration": 292, "id": "yTMZsxSBv_0", "title": "Diagnosing strokes by history and physical exam", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diagnosing-strokes-by-history-and-physical-exam", "kind": "Video", "video_id": "yTMZsxSBv_0", "keywords": "", "youtube_id": "yTMZsxSBv_0", "readable_id": "diagnosing-strokes-by-history-and-physical-exam"}, "doe_zZDjU5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/doe_zZDjU5c.mp4/doe_zZDjU5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/doe_zZDjU5c.mp4/doe_zZDjU5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/doe_zZDjU5c.m3u8/doe_zZDjU5c.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carbohydrates-5d/carbohydrates-naming-and-classification/", "duration": 627, "id": "doe_zZDjU5c", "title": "Carbohydrates - naming and classification", "format": "mp4", "description": "", "slug": "carbohydrates-naming-and-classification", "kind": "Video", "video_id": "doe_zZDjU5c", "keywords": "", "youtube_id": "doe_zZDjU5c", "readable_id": "carbohydrates-naming-and-classification"}, "pzHEtjAUVtY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pzHEtjAUVtY.mp4/pzHEtjAUVtY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pzHEtjAUVtY.mp4/pzHEtjAUVtY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pzHEtjAUVtY.m3u8/pzHEtjAUVtY.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-jay/sn1-sn2-e1-e2-reactions-primary-and-tertiary-alkyl-halides/", "duration": 551, "id": "pzHEtjAUVtY", "title": "Sn1 Sn2 E1 E2 reactions: Primary and tertiary alkyl halides", "format": "mp4", "description": "", "slug": "sn1-sn2-e1-e2-reactions-primary-and-tertiary-alkyl-halides", "kind": "Video", "video_id": "pzHEtjAUVtY", "keywords": "", "youtube_id": "pzHEtjAUVtY", "readable_id": "sn1-sn2-e1-e2-reactions-primary-and-tertiary-alkyl-halides"}, "TEXSW-o8674": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TEXSW-o8674.mp4/TEXSW-o8674.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TEXSW-o8674.mp4/TEXSW-o8674.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TEXSW-o8674.m3u8/TEXSW-o8674.m3u8"}, "path": "khan/math/algebra/algebra-functions/average_rate_of_change/average-rate-of-change-example-1/", "duration": 135, "id": "TEXSW-o8674", "title": "Finding average rate of change from graph", "format": "mp4", "description": "", "slug": "average-rate-of-change-example-1", "kind": "Video", "video_id": "TEXSW-o8674", "keywords": "", "youtube_id": "TEXSW-o8674", "readable_id": "average-rate-of-change-example-1"}, "W3a2QIm3cXM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W3a2QIm3cXM.mp4/W3a2QIm3cXM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W3a2QIm3cXM.mp4/W3a2QIm3cXM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W3a2QIm3cXM.m3u8/W3a2QIm3cXM.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/bernini-bust-of-medusa-c-1644-48/", "duration": 175, "id": "W3a2QIm3cXM", "title": "Bernini, Bust of Medusa", "format": "mp4", "description": "Gian Lorenzo Bernini, Bust of Medusa, marble, c. 1644-48 (Capitoline Museum)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\n\u00a0\n\nMedusa, one of the three Gorgons, daughter of Phorcys and Ceto. She was the only one of the Gorgons who was subject to mortality. She is celebrated for her personal charms and the beauty of her locks. Neptune became enamoured of her, and obtained her favours in the temple of Minerva. This violation of the sanctity of the temple provoked Minerva, and she changed the beautiful locks of Medusa, which had inspired Neptune\u2019s love to serpents.\n\nAccording to Apollodorus, Medusa and her sisters came into the world with snakes on their heads, instead of hair, with yellow wings and brazen hands. Their bodies were also covered with impenetrable scales, and their very looks had the power of killing or turning to stones. Perseus rendered his name immortal by his conquest of Medusa. He cut off her head, and the blood that dropped from the wound produced the innumerable serpents that infest Africa. The conqueror placed Medusa's head on the shield of Minerva, which he had used in his expedition. The head still retained the same petrifying power as before, as it was fatally known in the court of Cepheus. . . . Some suppose that the Gorgons were a nation of women, whom Perseus conquered.(From\u00a0Lempri\u00e9re\u2019s Classical Dictionary of Proper names mentioned in Ancient Authors Writ Large. Ed. J. Lempri\u00e9re and F.A. Wright. London: Routledge & Kegan Paul. As quoted by\u00a0Modern American Poetry site, Department of English, University of Illinois)\n", "slug": "bernini-bust-of-medusa-c-1644-48", "kind": "Video", "video_id": "W3a2QIm3cXM", "keywords": "Bernini, Medusa, Capitoline Museum, Art History, Smarthistory, Art", "youtube_id": "W3a2QIm3cXM", "readable_id": "bernini-bust-of-medusa-c-1644-48"}, "gnCL_0uA6Ds": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gnCL_0uA6Ds.mp4/gnCL_0uA6Ds.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gnCL_0uA6Ds.mp4/gnCL_0uA6Ds.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gnCL_0uA6Ds.m3u8/gnCL_0uA6Ds.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/unit_conversion/application-problems-involving-units-of-weight/", "duration": 428, "id": "gnCL_0uA6Ds", "title": "Unit measurement word problem: weight (US customary)", "format": "mp4", "description": "We're moving between units of weight in this word problem. Ever get in an elevator with a bunch people and wonder to yourself, \"How many people can this elevator safely hold?\" Yeah, us too. You can solve that problem now.", "slug": "application-problems-involving-units-of-weight", "kind": "Video", "video_id": "gnCL_0uA6Ds", "keywords": "U06_L1_T2_we3, Application, problems, involving, units, of, weight, CC_4_MD_1, CC_5_MD_1, CC_6_RP_3_d", "youtube_id": "gnCL_0uA6Ds", "readable_id": "application-problems-involving-units-of-weight"}, "RFn-IGlayAg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RFn-IGlayAg.mp4/RFn-IGlayAg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RFn-IGlayAg.mp4/RFn-IGlayAg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RFn-IGlayAg.m3u8/RFn-IGlayAg.m3u8"}, "duration": 679, "id": "RFn-IGlayAg", "title": "Richter scale", "format": "mp4", "description": "The basics of the logarithmic Richter and Moment Magnitude Scales to measure earthquakes", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/richter-scale/", "slug": "richter-scale", "kind": "Video", "video_id": "RFn-IGlayAg", "keywords": "geology", "youtube_id": "RFn-IGlayAg", "readable_id": "richter-scale"}, "Pr_-cUA_PY8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pr_-cUA_PY8.mp4/Pr_-cUA_PY8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pr_-cUA_PY8.mp4/Pr_-cUA_PY8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pr_-cUA_PY8.m3u8/Pr_-cUA_PY8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/diabetic-nephropathy-clinical-presentation-treatment/", "duration": 605, "id": "Pr_-cUA_PY8", "title": "Diabetic nephropathy - Clinical presentation & treatment", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diabetic-nephropathy-clinical-presentation-treatment", "kind": "Video", "video_id": "Pr_-cUA_PY8", "keywords": "", "youtube_id": "Pr_-cUA_PY8", "readable_id": "diabetic-nephropathy-clinical-presentation-treatment"}, "tnoPnyvVjyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tnoPnyvVjyc.mp4/tnoPnyvVjyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tnoPnyvVjyc.mp4/tnoPnyvVjyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tnoPnyvVjyc.m3u8/tnoPnyvVjyc.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-4a/", "duration": 288, "id": "tnoPnyvVjyc", "title": "2011 Calculus AB free response #4a", "format": "mp4", "description": "Taking derivatives and integrals of strangely defined functions", "slug": "2011-calculus-ab-free-response-4a", "kind": "Video", "video_id": "tnoPnyvVjyc", "keywords": "advanced, placement, calculus, ap, exam", "youtube_id": "tnoPnyvVjyc", "readable_id": "2011-calculus-ab-free-response-4a"}, "eeoZMM14ph4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eeoZMM14ph4.mp4/eeoZMM14ph4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eeoZMM14ph4.mp4/eeoZMM14ph4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eeoZMM14ph4.m3u8/eeoZMM14ph4.m3u8"}, "duration": 355, "id": "eeoZMM14ph4", "title": "Conservation and installation of cosmological painting", "format": "mp4", "description": "View the conservation and installation of a large cosmological painting\u00a0in the Asian Art Museum's collection. Learn more about art conservation at the Asian Art Museum's Conservation Center.", "path": "conservation-cosmological/", "slug": "conservation-cosmological", "kind": "Video", "video_id": "eeoZMM14ph4", "keywords": "", "youtube_id": "eeoZMM14ph4", "readable_id": "conservation-cosmological"}, "4qoE3OVy4Vo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4qoE3OVy4Vo.mp4/4qoE3OVy4Vo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4qoE3OVy4Vo.mp4/4qoE3OVy4Vo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4qoE3OVy4Vo.m3u8/4qoE3OVy4Vo.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/subculture-vs-counterculture/", "duration": 211, "id": "4qoE3OVy4Vo", "title": "Subculture vs counterculture", "format": "mp4", "description": "", "slug": "subculture-vs-counterculture", "kind": "Video", "video_id": "4qoE3OVy4Vo", "keywords": "", "youtube_id": "4qoE3OVy4Vo", "readable_id": "subculture-vs-counterculture"}, "RuPMsK0mQC8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RuPMsK0mQC8.mp4/RuPMsK0mQC8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RuPMsK0mQC8.mp4/RuPMsK0mQC8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RuPMsK0mQC8.m3u8/RuPMsK0mQC8.m3u8"}, "path": "khan/economics-finance-domain/core-finance/interest-tutorial/credit-card-interest/annual-percentage-rate-apr-and-effective-apr/", "duration": 450, "id": "RuPMsK0mQC8", "title": "Annual percentage rate (APR) and effective APR", "format": "mp4", "description": "The difference between APR and effective APR", "slug": "annual-percentage-rate-apr-and-effective-apr", "kind": "Video", "video_id": "RuPMsK0mQC8", "keywords": "APR, annual, percentage, rate, effective", "youtube_id": "RuPMsK0mQC8", "readable_id": "annual-percentage-rate-apr-and-effective-apr"}, "RD0waXH62AI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RD0waXH62AI.mp4/RD0waXH62AI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RD0waXH62AI.mp4/RD0waXH62AI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RD0waXH62AI.m3u8/RD0waXH62AI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/where-do-our-nails-and-hair-come-from/", "duration": 518, "id": "RD0waXH62AI", "title": "Where do our nails and hair come from?", "format": "mp4", "description": "", "slug": "where-do-our-nails-and-hair-come-from", "kind": "Video", "video_id": "RD0waXH62AI", "keywords": "", "youtube_id": "RD0waXH62AI", "readable_id": "where-do-our-nails-and-hair-come-from"}, "dlpmllTx5MY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dlpmllTx5MY.mp4/dlpmllTx5MY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dlpmllTx5MY.mp4/dlpmllTx5MY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dlpmllTx5MY.m3u8/dlpmllTx5MY.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/old-projectile-motion/projectile-motion-part-5/", "duration": 573, "id": "dlpmllTx5MY", "title": "Projectile motion (part 5)", "format": "mp4", "description": "How fast was the ball that you threw upwards?", "slug": "projectile-motion-part-5", "kind": "Video", "video_id": "dlpmllTx5MY", "keywords": "Physics, projectile, acceleration, velocity, khan", "youtube_id": "dlpmllTx5MY", "readable_id": "projectile-motion-part-5"}, "HXIj16mjfgk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HXIj16mjfgk.mp4/HXIj16mjfgk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HXIj16mjfgk.mp4/HXIj16mjfgk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HXIj16mjfgk.m3u8/HXIj16mjfgk.m3u8"}, "duration": 226, "id": "HXIj16mjfgk", "title": "Example: Basic grouping", "format": "mp4", "description": "Factoring Trinomials by Grouping 1", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-by-grouping/factoring-trinomials-by-grouping-1/", "slug": "factoring-trinomials-by-grouping-1", "kind": "Video", "video_id": "HXIj16mjfgk", "keywords": "U09_L1_T2_we1, Factoring, Trinomials, by, Grouping, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "HXIj16mjfgk", "readable_id": "factoring-trinomials-by-grouping-1"}, "ZgzpTx-s9Zo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZgzpTx-s9Zo.mp4/ZgzpTx-s9Zo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZgzpTx-s9Zo.mp4/ZgzpTx-s9Zo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZgzpTx-s9Zo.m3u8/ZgzpTx-s9Zo.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-add-20/adding-within-20/", "duration": 233, "id": "ZgzpTx-s9Zo", "title": "Adding 7 + 6", "format": "mp4", "description": "Learn how to add 7 + 6 using the number line.", "slug": "adding-within-20", "kind": "Video", "video_id": "ZgzpTx-s9Zo", "keywords": "", "youtube_id": "ZgzpTx-s9Zo", "readable_id": "adding-within-20"}, "9x1vnGfIE8k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9x1vnGfIE8k.mp4/9x1vnGfIE8k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9x1vnGfIE8k.mp4/9x1vnGfIE8k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9x1vnGfIE8k.m3u8/9x1vnGfIE8k.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/dvorak-symphony-9/dvorak-four/", "duration": 511, "id": "9x1vnGfIE8k", "title": "Antoni\u0301n Dvor\u030ca\u0301k: Symphony No. 9 \"From the New World,\" analysis by Gerard Schwarz (part 4)", "format": "mp4", "description": "Watch the full performance here (starting at 7:15)", "slug": "dvorak-four", "kind": "Video", "video_id": "9x1vnGfIE8k", "keywords": "", "youtube_id": "9x1vnGfIE8k", "readable_id": "dvorak-four"}, "09VLUSkaZU8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/09VLUSkaZU8.mp4/09VLUSkaZU8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/09VLUSkaZU8.mp4/09VLUSkaZU8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/09VLUSkaZU8.m3u8/09VLUSkaZU8.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/definite-integral-shifted-function/", "duration": 266, "id": "09VLUSkaZU8", "title": "Definite integral of shifted function", "format": "mp4", "description": "", "slug": "definite-integral-shifted-function", "kind": "Video", "video_id": "09VLUSkaZU8", "keywords": "", "youtube_id": "09VLUSkaZU8", "readable_id": "definite-integral-shifted-function"}, "DGRnSnPSOqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DGRnSnPSOqg.mp4/DGRnSnPSOqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DGRnSnPSOqg.mp4/DGRnSnPSOqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DGRnSnPSOqg.m3u8/DGRnSnPSOqg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-nose-sinus-upper-respiratory/sinusitis-diagnosis-and-treatment/", "duration": 532, "id": "DGRnSnPSOqg", "title": "Sinusitis diagnosis and treatment", "format": "mp4", "description": "", "slug": "sinusitis-diagnosis-and-treatment", "kind": "Video", "video_id": "DGRnSnPSOqg", "keywords": "", "youtube_id": "DGRnSnPSOqg", "readable_id": "sinusitis-diagnosis-and-treatment"}, "n34dqyVCXs4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n34dqyVCXs4.mp4/n34dqyVCXs4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n34dqyVCXs4.mp4/n34dqyVCXs4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n34dqyVCXs4.m3u8/n34dqyVCXs4.m3u8"}, "duration": 153, "id": "n34dqyVCXs4", "title": "Sum of functions", "format": "mp4", "description": "Sum of Functions", "path": "khan/math/algebra2/functions_and_graphs/function_expressions/sum-of-functions/", "slug": "sum-of-functions", "kind": "Video", "video_id": "n34dqyVCXs4", "keywords": "u17_l3_t1_we1, Sum, of, Functions", "youtube_id": "n34dqyVCXs4", "readable_id": "sum-of-functions"}, "wsL4Uh0BrQw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wsL4Uh0BrQw.mp4/wsL4Uh0BrQw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wsL4Uh0BrQw.mp4/wsL4Uh0BrQw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wsL4Uh0BrQw.m3u8/wsL4Uh0BrQw.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/rembrandt-van-rijn-bathsheba-at-her-bath-1654/", "duration": 243, "id": "wsL4Uh0BrQw", "title": "Rembrandt, Bathsheba at her Bath", "format": "mp4", "description": "Rembrandt van Rijn, Bathsheba at Her Bath, 1654, oil on canvas, 56 x 56 in (142 x 142 cm) , Mus\u00e9e du Louvre, Paris Speakers: Drs. Beth Harris and Steven Zucker", "slug": "rembrandt-van-rijn-bathsheba-at-her-bath-1654", "kind": "Video", "video_id": "wsL4Uh0BrQw", "keywords": "rembrandt, bathsheba, Louvre, Art History, Smarthistory", "youtube_id": "wsL4Uh0BrQw", "readable_id": "rembrandt-van-rijn-bathsheba-at-her-bath-1654"}, "3_otNr9kRuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3_otNr9kRuY.mp4/3_otNr9kRuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3_otNr9kRuY.mp4/3_otNr9kRuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3_otNr9kRuY.m3u8/3_otNr9kRuY.m3u8"}, "duration": 129, "id": "3_otNr9kRuY", "title": "Example: Probability through counting outcomes", "format": "mp4", "description": "The probability of getting exactly 2 heads when flipping three coins. Thinking about this by visualy depicting all of the outcomes.", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/events-and-outcomes-3/", "slug": "events-and-outcomes-3", "kind": "Video", "video_id": "3_otNr9kRuY", "keywords": "U12_L2_T1_we3, Events, and, Outcomes, CC_7_SP_5, CC_7_SP_6, CC_7_SP_7, CC_7_SP_7_a, CC_7_SP_7_b, CC_7_SP_8", "youtube_id": "3_otNr9kRuY", "readable_id": "events-and-outcomes-3"}, "VST_U297pH0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VST_U297pH0.mp4/VST_U297pH0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VST_U297pH0.mp4/VST_U297pH0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VST_U297pH0.m3u8/VST_U297pH0.m3u8"}, "duration": 204, "id": "VST_U297pH0", "title": "Put payoff diagram", "format": "mp4", "description": "Put Payoff Diagram", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-payoff-diagram/", "slug": "put-payoff-diagram", "kind": "Video", "video_id": "VST_U297pH0", "keywords": "Put, Payoff, Diagram", "youtube_id": "VST_U297pH0", "readable_id": "put-payoff-diagram"}, "QlQjCQ5SXco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QlQjCQ5SXco.mp4/QlQjCQ5SXco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QlQjCQ5SXco.mp4/QlQjCQ5SXco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QlQjCQ5SXco.m3u8/QlQjCQ5SXco.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/moholy-nagy-climbing-the-mast-1928/", "duration": 236, "id": "QlQjCQ5SXco", "title": "Moholy-Nagy, Climbing the Mast", "format": "mp4", "description": "L\u00e1szl\u00f3 Moholy-Nagy, Climbing the Mast, 1928, gelatin silver print, 5.4 x 28 cm or 13 15/16 x 11 inches (Metropolitan Museum of Art)\n\nSpeakers: Dr. Juliana Kreinik and Dr. Vanessa Rocco\n\nView this on Smarthistory.org: http://smarthistory.khanacademy.org/laszlo-moholy-nagy-climbing-the-mast.html", "slug": "moholy-nagy-climbing-the-mast-1928", "kind": "Video", "video_id": "QlQjCQ5SXco", "keywords": "", "youtube_id": "QlQjCQ5SXco", "readable_id": "moholy-nagy-climbing-the-mast-1928"}, "6CFE60iP2Ug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6CFE60iP2Ug.mp4/6CFE60iP2Ug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6CFE60iP2Ug.mp4/6CFE60iP2Ug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6CFE60iP2Ug.m3u8/6CFE60iP2Ug.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/standard-form/standard-form-for-linear-equations/", "duration": 487, "id": "6CFE60iP2Ug", "title": "Standard form for linear equations", "format": "mp4", "description": "Standard form for linear equations", "slug": "standard-form-for-linear-equations", "kind": "Video", "video_id": "6CFE60iP2Ug", "keywords": "", "youtube_id": "6CFE60iP2Ug", "readable_id": "standard-form-for-linear-equations"}, "4bmPvB15aYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4bmPvB15aYU.mp4/4bmPvB15aYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4bmPvB15aYU.mp4/4bmPvB15aYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4bmPvB15aYU.m3u8/4bmPvB15aYU.m3u8"}, "duration": 485, "id": "4bmPvB15aYU", "title": "Technology in World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-fighting/technology-in-world-war-i/", "slug": "technology-in-world-war-i", "kind": "Video", "video_id": "4bmPvB15aYU", "keywords": "", "youtube_id": "4bmPvB15aYU", "readable_id": "technology-in-world-war-i"}, "q71hYD9Xhek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q71hYD9Xhek.mp4/q71hYD9Xhek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q71hYD9Xhek.mp4/q71hYD9Xhek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q71hYD9Xhek.m3u8/q71hYD9Xhek.m3u8"}, "path": "khan/college-admissions/wrapping-up/post-college-acceptance/selecting-your-college/", "duration": 82, "id": "q71hYD9Xhek", "title": "Selecting your college", "format": "mp4", "description": "", "slug": "selecting-your-college", "kind": "Video", "video_id": "q71hYD9Xhek", "keywords": "", "youtube_id": "q71hYD9Xhek", "readable_id": "selecting-your-college"}, "1V9wVmO0Tfg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1V9wVmO0Tfg.mp4/1V9wVmO0Tfg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1V9wVmO0Tfg.mp4/1V9wVmO0Tfg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1V9wVmO0Tfg.m3u8/1V9wVmO0Tfg.m3u8"}, "duration": 672, "id": "1V9wVmO0Tfg", "title": "Hubble's law", "format": "mp4", "description": "Hubble's Law", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/hubble-s-law/", "slug": "hubble-s-law", "kind": "Video", "video_id": "1V9wVmO0Tfg", "keywords": "Hubble's, Law", "youtube_id": "1V9wVmO0Tfg", "readable_id": "hubble-s-law"}, "smuhAjyRbw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/smuhAjyRbw0.mp4/smuhAjyRbw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/smuhAjyRbw0.mp4/smuhAjyRbw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/smuhAjyRbw0.m3u8/smuhAjyRbw0.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/moral-status/", "duration": 418, "id": "smuhAjyRbw0", "title": "Ethics: Moral status", "format": "mp4", "description": "Jeff discusses the nature of moral status. What does it take for someone to be a subject of moral concern? Do they have to be human? Rational? Sentient? Alive? And how does our answer to this question affect how we should act in everyday life?\n\nSpeaker: Dr. Jeff Sebo, Research Fellow, Department of Bioethics, The National Institutes of Health", "slug": "moral-status", "kind": "Video", "video_id": "smuhAjyRbw0", "keywords": "", "youtube_id": "smuhAjyRbw0", "readable_id": "moral-status"}, "vR9jFC6wwYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vR9jFC6wwYo.mp4/vR9jFC6wwYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vR9jFC6wwYo.mp4/vR9jFC6wwYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vR9jFC6wwYo.m3u8/vR9jFC6wwYo.m3u8"}, "duration": 173, "id": "vR9jFC6wwYo", "title": "\"Pensive\" with Soyoung Lee", "format": "mp4", "description": "Met curator Soyoung Lee on contemplation in Pensive Bodhisattva from Korea\u2019s Three Kingdoms period.\n\nImages of the pensive bodhisattva were produced throughout Asia. In Korea, the type emerged as an important Buddhist icon during the sixth and seventh centuries, particularly in the kingdoms of Baekje and Silla. This seated figure is among the best preserved and most spectacular. It is infused with a subtle yet palpable energy that is articulated in details such as the pliant and lifelike fingers and toes. The deity\u2019s braided hair has a dramatic linear pattern. His crown is topped with an orb-and-crescent motif, indicating Central Asian influence.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "pensive/", "slug": "pensive", "kind": "Video", "video_id": "vR9jFC6wwYo", "keywords": "calm, comassion, metal, sculpture, transcendence, Asia", "youtube_id": "vR9jFC6wwYo", "readable_id": "pensive"}, "rgvysb9emcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rgvysb9emcQ.mp4/rgvysb9emcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rgvysb9emcQ.mp4/rgvysb9emcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rgvysb9emcQ.m3u8/rgvysb9emcQ.m3u8"}, "duration": 790, "id": "rgvysb9emcQ", "title": "Graphs of linear equations", "format": "mp4", "description": "", "path": "graphs-of-linear-equations/", "slug": "graphs-of-linear-equations", "kind": "Video", "video_id": "rgvysb9emcQ", "keywords": "Graphs, Of, Linear, Equations, CC_39336_A-CED_2, CC_39336_F-IF_7_a", "youtube_id": "rgvysb9emcQ", "readable_id": "graphs-of-linear-equations"}, "0cHCpgQD_8k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0cHCpgQD_8k.mp4/0cHCpgQD_8k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0cHCpgQD_8k.mp4/0cHCpgQD_8k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0cHCpgQD_8k.m3u8/0cHCpgQD_8k.m3u8"}, "duration": 415, "id": "0cHCpgQD_8k", "title": "Median and range puzzle", "format": "mp4", "description": "Try these interesting median and range challenge problems!", "path": "median-and-range-puzzle/", "slug": "median-and-range-puzzle", "kind": "Video", "video_id": "0cHCpgQD_8k", "keywords": "", "youtube_id": "0cHCpgQD_8k", "readable_id": "median-and-range-puzzle"}, "Ubp-Dz5uGUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ubp-Dz5uGUk.mp4/Ubp-Dz5uGUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ubp-Dz5uGUk.mp4/Ubp-Dz5uGUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ubp-Dz5uGUk.m3u8/Ubp-Dz5uGUk.m3u8"}, "duration": 296, "id": "Ubp-Dz5uGUk", "title": "Genetic Shift and Drift", "format": "mp4", "description": "The flu virus has the unique ability to change in two different ways, causing genetic shift and drift. Learn exactly how these two mechanisms differ from one another\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "genetic-shift-and-drift/", "slug": "genetic-shift-and-drift", "kind": "Video", "video_id": "Ubp-Dz5uGUk", "keywords": "", "youtube_id": "Ubp-Dz5uGUk", "readable_id": "genetic-shift-and-drift"}, "fslMG-pmCeU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fslMG-pmCeU.mp4/fslMG-pmCeU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fslMG-pmCeU.mp4/fslMG-pmCeU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fslMG-pmCeU.m3u8/fslMG-pmCeU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2009-may-3-1/", "duration": 127, "id": "fslMG-pmCeU", "title": "18 Functions", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-1", "kind": "Video", "video_id": "fslMG-pmCeU", "keywords": "", "youtube_id": "fslMG-pmCeU", "readable_id": "sat-2009-may-3-1"}, "ie0waMJxnTs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ie0waMJxnTs.mp4/ie0waMJxnTs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ie0waMJxnTs.mp4/ie0waMJxnTs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ie0waMJxnTs.m3u8/ie0waMJxnTs.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-together-apart/adding-fruit/", "duration": 137, "id": "ie0waMJxnTs", "title": "Pieces of fruit", "format": "mp4", "description": "Learn how to add fruit (by putting fruit together) and sutract fruit (by taking fruit away). Examples used are 5+3 and 5-3.", "slug": "adding-fruit", "kind": "Video", "video_id": "ie0waMJxnTs", "keywords": "", "youtube_id": "ie0waMJxnTs", "readable_id": "adding-fruit"}, "3YBirle0jII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3YBirle0jII.mp4/3YBirle0jII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3YBirle0jII.mp4/3YBirle0jII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3YBirle0jII.m3u8/3YBirle0jII.m3u8"}, "duration": 208, "id": "3YBirle0jII", "title": "Flu Vaccine Excuses", "format": "mp4", "description": "Learn some common excuses for not getting the flu vaccine, and some key information relevant to each one. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "flu-vaccine-excuses/", "slug": "flu-vaccine-excuses", "kind": "Video", "video_id": "3YBirle0jII", "keywords": "", "youtube_id": "3YBirle0jII", "readable_id": "flu-vaccine-excuses"}, "NWffcD7jcEo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NWffcD7jcEo.mp4/NWffcD7jcEo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NWffcD7jcEo.mp4/NWffcD7jcEo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NWffcD7jcEo.m3u8/NWffcD7jcEo.m3u8"}, "duration": 353, "id": "NWffcD7jcEo", "title": "Khan Academy in Tal Sztainer's classroom (Philadelphia, 2011-12)", "format": "mp4", "description": "", "path": "khan-academy-in-my-classroom-philadelphia-2011-12/", "slug": "khan-academy-in-my-classroom-philadelphia-2011-12", "kind": "Video", "video_id": "NWffcD7jcEo", "keywords": "olney, lack of resources, computers, charter, funding", "youtube_id": "NWffcD7jcEo", "readable_id": "khan-academy-in-my-classroom-philadelphia-2011-12"}, "vrGNXAGmfCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vrGNXAGmfCM.mp4/vrGNXAGmfCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vrGNXAGmfCM.mp4/vrGNXAGmfCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vrGNXAGmfCM.m3u8/vrGNXAGmfCM.m3u8"}, "duration": 206, "id": "vrGNXAGmfCM", "title": "Floating exchange effect on China", "format": "mp4", "description": "Floating Exchange Effect on China", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/floating-exchange-effect-on-china/", "slug": "floating-exchange-effect-on-china", "kind": "Video", "video_id": "vrGNXAGmfCM", "keywords": "Floating, Exchange, Effect, on, China", "youtube_id": "vrGNXAGmfCM", "readable_id": "floating-exchange-effect-on-china"}, "XsD7mqFDJs0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XsD7mqFDJs0.mp4/XsD7mqFDJs0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XsD7mqFDJs0.mp4/XsD7mqFDJs0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XsD7mqFDJs0.m3u8/XsD7mqFDJs0.m3u8"}, "duration": 375, "id": "XsD7mqFDJs0", "title": "Real GDP driving price", "format": "mp4", "description": "Thinking about how high utilization could drive price as another justification for an upward sloping short-run aggregate supply curve", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/historic-ad-as-scenarios/real-gdp-driving-price/", "slug": "real-gdp-driving-price", "kind": "Video", "video_id": "XsD7mqFDJs0", "keywords": "macroeconomics, AD-AS, model", "youtube_id": "XsD7mqFDJs0", "readable_id": "real-gdp-driving-price"}, "f3ySpxX9oeM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f3ySpxX9oeM.mp4/f3ySpxX9oeM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f3ySpxX9oeM.mp4/f3ySpxX9oeM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f3ySpxX9oeM.m3u8/f3ySpxX9oeM.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/div-fractions-fractions-pre-alg/conceptual-understanding-of-dividing-fractions-by-fractions/", "duration": 342, "id": "f3ySpxX9oeM", "title": "Understanding division of fractions", "format": "mp4", "description": "Using a number line, we'll explain the rule of \"invert and multiply\" when dividing two fractions.", "slug": "conceptual-understanding-of-dividing-fractions-by-fractions", "kind": "Video", "video_id": "f3ySpxX9oeM", "keywords": "", "youtube_id": "f3ySpxX9oeM", "readable_id": "conceptual-understanding-of-dividing-fractions-by-fractions"}, "DMCowipIXgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DMCowipIXgE.mp4/DMCowipIXgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DMCowipIXgE.mp4/DMCowipIXgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DMCowipIXgE.m3u8/DMCowipIXgE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/placenta-previa/", "duration": 541, "id": "DMCowipIXgE", "title": "Placenta previa", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "placenta-previa", "kind": "Video", "video_id": "DMCowipIXgE", "keywords": "", "youtube_id": "DMCowipIXgE", "readable_id": "placenta-previa"}, "bzseeIVEslA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bzseeIVEslA.mp4/bzseeIVEslA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bzseeIVEslA.mp4/bzseeIVEslA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bzseeIVEslA.m3u8/bzseeIVEslA.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/analyzing_the_solutions_to_systems_of_equations/understanding-systems-of-equations-example-2/", "duration": 132, "id": "bzseeIVEslA", "title": "Solving systems of two linear equations example", "format": "mp4", "description": "", "slug": "understanding-systems-of-equations-example-2", "kind": "Video", "video_id": "bzseeIVEslA", "keywords": "", "youtube_id": "bzseeIVEslA", "readable_id": "understanding-systems-of-equations-example-2"}, "Rm6LkuZfEis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rm6LkuZfEis.mp4/Rm6LkuZfEis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rm6LkuZfEis.mp4/Rm6LkuZfEis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rm6LkuZfEis.m3u8/Rm6LkuZfEis.m3u8"}, "duration": 94, "id": "Rm6LkuZfEis", "title": "Snake-haired monster", "format": "mp4", "description": "Benjamin and Riley talk about Vincenzo Gemito's Medusa, 1911: This is from an imaginative\u00a0tour at the Getty Center: The Supernatural in Art.\u00a0Love art? Follow us on Google+ to stay in touch.", "path": "snake-haired-monster/", "slug": "snake-haired-monster", "kind": "Video", "video_id": "Rm6LkuZfEis", "keywords": "", "youtube_id": "Rm6LkuZfEis", "readable_id": "snake-haired-monster"}, "Sl5UvcedhKc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Sl5UvcedhKc.mp4/Sl5UvcedhKc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Sl5UvcedhKc.mp4/Sl5UvcedhKc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Sl5UvcedhKc.m3u8/Sl5UvcedhKc.m3u8"}, "duration": 267, "id": "Sl5UvcedhKc", "title": "Opening of Kingdom of Ife exhibition", "format": "mp4", "description": "A special gathering of dignitaries and chiefs to mark the opening of the exhibition Kingdom of Ife: sculptures from West Africa. \u00a9 Trustees of the British Museum\n", "path": "ife-remembered/", "slug": "ife-remembered", "kind": "Video", "video_id": "Sl5UvcedhKc", "keywords": "", "youtube_id": "Sl5UvcedhKc", "readable_id": "ife-remembered"}, "Axox0C6aoTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Axox0C6aoTo.mp4/Axox0C6aoTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Axox0C6aoTo.mp4/Axox0C6aoTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Axox0C6aoTo.m3u8/Axox0C6aoTo.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/campin/robert-campin-christ-and-the-virgin-c-1430-35/", "duration": 183, "id": "Axox0C6aoTo", "title": "Campin, Christ and the Virgin", "format": "mp4", "description": "Robert Campin (also called the Master of Fl\u00e9malle), Christ and the Virgin, c. 1430-35, oil and gold on panel, 11-1/4 x 17-15/16 inches / 28.6 x 45.6 cm (Philadelphia Museum of Art)", "slug": "robert-campin-christ-and-the-virgin-c-1430-35", "kind": "Video", "video_id": "Axox0C6aoTo", "keywords": "Campin, Khan Academy, Smarthistory, Art History, Northern Renaissance, Christ, Virgin Mary, Google Art Project, Jesus, Flemish, Netherlandish, renaissance, northern, faces", "youtube_id": "Axox0C6aoTo", "readable_id": "robert-campin-christ-and-the-virgin-c-1430-35"}, "sTp4cI9VyCU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sTp4cI9VyCU.mp4/sTp4cI9VyCU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sTp4cI9VyCU.mp4/sTp4cI9VyCU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sTp4cI9VyCU.m3u8/sTp4cI9VyCU.m3u8"}, "duration": 473, "id": "sTp4cI9VyCU", "title": "Total final velocity for projectile", "format": "mp4", "description": "Calculating the total final velocity for a projectile landing at a different altitude (mistake near end: I write 29.03 when it should be 26.03 m/s and the final total magnitude should be 26.55 m/s 78.7 degrees below horizontal", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/total-final-velocity-for-projectile/", "slug": "total-final-velocity-for-projectile", "kind": "Video", "video_id": "sTp4cI9VyCU", "keywords": "physics, kinematics, projectile, motion", "youtube_id": "sTp4cI9VyCU", "readable_id": "total-final-velocity-for-projectile"}, "KNr52iFk7n4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KNr52iFk7n4.mp4/KNr52iFk7n4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KNr52iFk7n4.mp4/KNr52iFk7n4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KNr52iFk7n4.m3u8/KNr52iFk7n4.m3u8"}, "duration": 137, "id": "KNr52iFk7n4", "title": "Constructing an angle bisector using a compass and straightedge", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/geo-bisectors/constructing-an-angle-bisector-using-a-compass-and-straightedge/", "slug": "constructing-an-angle-bisector-using-a-compass-and-straightedge", "kind": "Video", "video_id": "KNr52iFk7n4", "keywords": "", "youtube_id": "KNr52iFk7n4", "readable_id": "constructing-an-angle-bisector-using-a-compass-and-straightedge"}, "InaCCSVotYw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/InaCCSVotYw.mp4/InaCCSVotYw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/InaCCSVotYw.mp4/InaCCSVotYw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/InaCCSVotYw.m3u8/InaCCSVotYw.m3u8"}, "duration": 391, "id": "InaCCSVotYw", "title": "Interferometry: Sizing up the Stars", "format": "mp4", "description": "If technology, cost, and terrain permitted, scientists seeking key data on stars in our galaxy would have loved to construct a behemoth 330 m wide telescope atop Mount Wilson, just northeast of Los Angeles. Instead, they arranged six smaller telescopes over an identical area, synchronizing the light to achieve an equally superlative resolution. Called the Center for High Angular Resolution Astronomy (CHARA), the array uses the technique of interferometry to spot details the size of a nickel seen from 16,000 km away. Hear from project astronomers why the labyrinthine engineering required for CHARA\u2019s renowned precision is a small sacrifice for the valuable data it gleans on the properties and life cycles of stars.", "path": "interferometry/", "slug": "interferometry", "kind": "Video", "video_id": "InaCCSVotYw", "keywords": "", "youtube_id": "InaCCSVotYw", "readable_id": "interferometry"}, "zhL5DCizj5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zhL5DCizj5c.mp4/zhL5DCizj5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zhL5DCizj5c.mp4/zhL5DCizj5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zhL5DCizj5c.m3u8/zhL5DCizj5c.m3u8"}, "path": "khan/partner-content/big-history-project/acceleration/bhp-acceleration/bhp-industrial-revolution-crashcourse/", "duration": 665, "id": "zhL5DCizj5c", "title": "Crash Course World History: The Industrial Revolution", "format": "mp4", "description": "n which John Green wraps up revolutions month with what is arguably the most revolutionary of modern revolutions, the Industrial Revolution.", "slug": "bhp-industrial-revolution-crashcourse", "kind": "Video", "video_id": "zhL5DCizj5c", "keywords": "", "youtube_id": "zhL5DCizj5c", "readable_id": "bhp-industrial-revolution-crashcourse"}, "rAof9Ld5sOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rAof9Ld5sOg.mp4/rAof9Ld5sOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rAof9Ld5sOg.mp4/rAof9Ld5sOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rAof9Ld5sOg.m3u8/rAof9Ld5sOg.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/calculus-derivatives-1/", "duration": 564, "id": "rAof9Ld5sOg", "title": "Calculus: Derivatives 1", "format": "mp4", "description": "Finding the slope of a tangent line to a curve (the derivative). Introduction to Calculus.", "slug": "calculus-derivatives-1", "kind": "Video", "video_id": "rAof9Ld5sOg", "keywords": "calculus, math, derivative, khan, academy", "youtube_id": "rAof9Ld5sOg", "readable_id": "calculus-derivatives-1"}, "3281cSAuk2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3281cSAuk2g.mp4/3281cSAuk2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3281cSAuk2g.mp4/3281cSAuk2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3281cSAuk2g.m3u8/3281cSAuk2g.m3u8"}, "duration": 603, "id": "3281cSAuk2g", "title": "The amazing life and strange death of Captain Cook", "format": "mp4", "description": "In which John Green teaches you about the life and death of one of history's great explorers, Captain James Cook of the British Navy. He charted large swaths of the Pacific ocean, laid claim to Australia and New Zealand, and died a bizarre death in the Sandwich Islands, which are now called the Hawaiian Islands. Exactly how and why Captain Cook was killed in Hawaii is a long-running historical debate. John presents two interpretations of the event, and talks about what the differing interpretations say about history. It turns out how the story is told depends on who is doing the storytelling, and people from different backgrounds can interpret events in very different ways. Also, there is a celebration and a moustache involved in this episode, so you definitely don't want to miss it.", "path": "khan/humanities/history/crashcourse-worldhistory/when-people-do-great-and-really-terrible-things-2/crash-course-world-history-027/", "slug": "crash-course-world-history-027", "kind": "Video", "video_id": "3281cSAuk2g", "keywords": "", "youtube_id": "3281cSAuk2g", "readable_id": "crash-course-world-history-027"}, "W3flX500w5g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W3flX500w5g.mp4/W3flX500w5g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W3flX500w5g.mp4/W3flX500w5g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W3flX500w5g.m3u8/W3flX500w5g.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/linear-models-1/", "duration": 532, "id": "W3flX500w5g", "title": "Linear models example 1", "format": "mp4", "description": "Linear model for book reading", "slug": "linear-models-1", "kind": "Video", "video_id": "W3flX500w5g", "keywords": "", "youtube_id": "W3flX500w5g", "readable_id": "linear-models-1"}, "HtvikVD9aa0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HtvikVD9aa0.mp4/HtvikVD9aa0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HtvikVD9aa0.mp4/HtvikVD9aa0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HtvikVD9aa0.m3u8/HtvikVD9aa0.m3u8"}, "duration": 238, "id": "HtvikVD9aa0", "title": "Derivative intuition module", "format": "mp4", "description": "Sal walking through the derivative intuition module made by Ben Eater", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/derivative-intuition-module/", "slug": "derivative-intuition-module", "kind": "Video", "video_id": "HtvikVD9aa0", "keywords": "calculus, derivative, tangent, line", "youtube_id": "HtvikVD9aa0", "readable_id": "derivative-intuition-module"}, "rHonltF77zI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rHonltF77zI.mp4/rHonltF77zI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rHonltF77zI.mp4/rHonltF77zI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rHonltF77zI.m3u8/rHonltF77zI.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/linear-algebra-the-gram-schmidt-process/", "duration": 1164, "id": "rHonltF77zI", "title": "The Gram-Schmidt process", "format": "mp4", "description": "Finding an orthonormal basis for a subspace using the Gram-Schmidt Process", "slug": "linear-algebra-the-gram-schmidt-process", "kind": "Video", "video_id": "rHonltF77zI", "keywords": "gram, schmidt, orthonormal", "youtube_id": "rHonltF77zI", "readable_id": "linear-algebra-the-gram-schmidt-process"}, "TUOQZjotyAQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TUOQZjotyAQ.mp4/TUOQZjotyAQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TUOQZjotyAQ.mp4/TUOQZjotyAQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TUOQZjotyAQ.m3u8/TUOQZjotyAQ.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-3-book-value-vs-market-value/", "duration": 632, "id": "TUOQZjotyAQ", "title": "Bailout 3: Book value vs. market value", "format": "mp4", "description": "What it means when the market value of a stock is different from its book value.", "slug": "bailout-3-book-value-vs-market-value", "kind": "Video", "video_id": "TUOQZjotyAQ", "keywords": "bailout, fed, treasury, insolvency, credit, crunch", "youtube_id": "TUOQZjotyAQ", "readable_id": "bailout-3-book-value-vs-market-value"}, "FYTfo4y91TI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FYTfo4y91TI.mp4/FYTfo4y91TI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FYTfo4y91TI.mp4/FYTfo4y91TI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FYTfo4y91TI.m3u8/FYTfo4y91TI.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/functional-groups/functional-groups-first/", "duration": 443, "id": "FYTfo4y91TI", "title": "Functional groups", "format": "mp4", "description": "An overview of some common functional groups", "slug": "functional-groups-first", "kind": "Video", "video_id": "FYTfo4y91TI", "keywords": "", "youtube_id": "FYTfo4y91TI", "readable_id": "functional-groups-first"}, "dlMquB1efp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dlMquB1efp4.mp4/dlMquB1efp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dlMquB1efp4.mp4/dlMquB1efp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dlMquB1efp4.m3u8/dlMquB1efp4.m3u8"}, "duration": 644, "id": "dlMquB1efp4", "title": "Article I of the U.S. Constitution", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.", "path": "article-i-one-of-the-us-constitution/", "slug": "article-i-one-of-the-us-constitution", "kind": "Video", "video_id": "dlMquB1efp4", "keywords": "", "youtube_id": "dlMquB1efp4", "readable_id": "article-i-one-of-the-us-constitution"}, "VNB-OVWlRbk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VNB-OVWlRbk.mp4/VNB-OVWlRbk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VNB-OVWlRbk.mp4/VNB-OVWlRbk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VNB-OVWlRbk.m3u8/VNB-OVWlRbk.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/beethoven-fifth-symphony/beethoven-fourth-movement/", "duration": 822, "id": "VNB-OVWlRbk", "title": "Ludwig van Beethoven: Symphony No. 5, analysis by Gerard Schwarz (part 3 & 4 )", "format": "mp4", "description": "Watch the full performance starting at 10:40", "slug": "beethoven-fourth-movement", "kind": "Video", "video_id": "VNB-OVWlRbk", "keywords": "", "youtube_id": "VNB-OVWlRbk", "readable_id": "beethoven-fourth-movement"}, "t8m0NalQtEk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t8m0NalQtEk.mp4/t8m0NalQtEk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t8m0NalQtEk.mp4/t8m0NalQtEk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t8m0NalQtEk.m3u8/t8m0NalQtEk.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/multiplication-5-2-digit-times-a-2-digit-number/", "duration": 675, "id": "t8m0NalQtEk", "title": "2-digit times a 2-digit number", "format": "mp4", "description": "Multiplying a 2-digit number times a 2-digit number", "slug": "multiplication-5-2-digit-times-a-2-digit-number", "kind": "Video", "video_id": "t8m0NalQtEk", "keywords": "multiplication, CC_4_NBT_5", "youtube_id": "t8m0NalQtEk", "readable_id": "multiplication-5-2-digit-times-a-2-digit-number"}, "LSIgi9krswU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LSIgi9krswU.mp4/LSIgi9krswU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LSIgi9krswU.mp4/LSIgi9krswU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LSIgi9krswU.m3u8/LSIgi9krswU.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/absolute-relative-maxima-minima/identifying-relative-extrema/", "duration": 188, "id": "LSIgi9krswU", "title": "Identifying relative minimum and maximum values", "format": "mp4", "description": "", "slug": "identifying-relative-extrema", "kind": "Video", "video_id": "LSIgi9krswU", "keywords": "", "youtube_id": "LSIgi9krswU", "readable_id": "identifying-relative-extrema"}, "CTKMK1ZGLuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CTKMK1ZGLuk.mp4/CTKMK1ZGLuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CTKMK1ZGLuk.mp4/CTKMK1ZGLuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CTKMK1ZGLuk.m3u8/CTKMK1ZGLuk.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/multiplying-fractions-pre-alg/multiplying-fractions/", "duration": 146, "id": "CTKMK1ZGLuk", "title": "Multiplying two fractions: example", "format": "mp4", "description": "Let's practice multiplying two fractions together. We'll learn to simplify the answer, too.", "slug": "multiplying-fractions", "kind": "Video", "video_id": "CTKMK1ZGLuk", "keywords": "U02_L2_T1_we1, Multiplying, Fractions, CC_5_NF_6, CC_7_NS_2, CC_7_NS_2_c", "youtube_id": "CTKMK1ZGLuk", "readable_id": "multiplying-fractions"}, "7beFNpp4FxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7beFNpp4FxY.mp4/7beFNpp4FxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7beFNpp4FxY.mp4/7beFNpp4FxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7beFNpp4FxY.m3u8/7beFNpp4FxY.m3u8"}, "duration": 168, "id": "7beFNpp4FxY", "title": "Conservation | Pollock, \"One: Number 31, 1950\"", "format": "mp4", "description": "You can experiment with Pollock's famous painting technique and those of other Abstract Expressionist artists by enrolling in our online course: Materials and Techniques of Postwar Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-pollock-one-number-31-1950/", "slug": "moma-pollock-one-number-31-1950", "kind": "Video", "video_id": "7beFNpp4FxY", "keywords": "", "youtube_id": "7beFNpp4FxY", "readable_id": "moma-pollock-one-number-31-1950"}, "Rtje3kbC9lM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rtje3kbC9lM.mp4/Rtje3kbC9lM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rtje3kbC9lM.mp4/Rtje3kbC9lM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rtje3kbC9lM.m3u8/Rtje3kbC9lM.m3u8"}, "duration": 245, "id": "Rtje3kbC9lM", "title": "Multiplying and dividing monomials 2", "format": "mp4", "description": "Multiplying and Dividing Monomials 2", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-monomials/multiplying-and-dividing-monomials-2/", "slug": "multiplying-and-dividing-monomials-2", "kind": "Video", "video_id": "Rtje3kbC9lM", "keywords": "U08_L1_T1_we2, Multiplying, and, Dividing, Monomials, CC_6_EE_1, CC_6_EE_2_c, CC_6_EE_7, CC_7_EE_4, CC_7_EE_4_a, CC_8_G_9", "youtube_id": "Rtje3kbC9lM", "readable_id": "multiplying-and-dividing-monomials-2"}, "jQ-fS2lsslU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jQ-fS2lsslU.mp4/jQ-fS2lsslU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jQ-fS2lsslU.mp4/jQ-fS2lsslU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jQ-fS2lsslU.m3u8/jQ-fS2lsslU.m3u8"}, "duration": 575, "id": "jQ-fS2lsslU", "title": "Functions as graphs", "format": "mp4", "description": null, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/functions-as-graphs/", "slug": "functions-as-graphs", "kind": "Video", "video_id": "jQ-fS2lsslU", "keywords": "Functions, As, Graphs, CC_8_F_1, CC_39336_F-IF_7_b", "youtube_id": "jQ-fS2lsslU", "readable_id": "functions-as-graphs"}, "GAmzwIkGFgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GAmzwIkGFgE.mp4/GAmzwIkGFgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GAmzwIkGFgE.mp4/GAmzwIkGFgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GAmzwIkGFgE.m3u8/GAmzwIkGFgE.m3u8"}, "duration": 567, "id": "GAmzwIkGFgE", "title": "Regression line example", "format": "mp4", "description": "Regression Line Example", "path": "khan/math/probability/regression/regression-correlation/regression-line-example/", "slug": "regression-line-example", "kind": "Video", "video_id": "GAmzwIkGFgE", "keywords": "Regression, Line, Example, Least, Squares, CC_8_SP_2, CC_8_SP_3", "youtube_id": "GAmzwIkGFgE", "readable_id": "regression-line-example"}, "Mm-IxK1GrYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mm-IxK1GrYE.mp4/Mm-IxK1GrYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mm-IxK1GrYE.mp4/Mm-IxK1GrYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mm-IxK1GrYE.m3u8/Mm-IxK1GrYE.m3u8"}, "path": "khan/science/biology/her/tree-of-life/human-prehistory-101-prologue/", "duration": 281, "id": "Mm-IxK1GrYE", "title": "Human prehistory 101: Prologue", "format": "mp4", "description": "Award winning video introduces human prehistory starting over 200,000 years ago. Who were our first human ancestors? Where did they live?", "slug": "human-prehistory-101-prologue", "kind": "Video", "video_id": "Mm-IxK1GrYE", "keywords": "genetics, DNA, ancestry, education, genes, chimpanzee, neanderthal, testing, kit, test, ancestor, genomics", "youtube_id": "Mm-IxK1GrYE", "readable_id": "human-prehistory-101-prologue"}, "mVFbGjnysP0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mVFbGjnysP0.mp4/mVFbGjnysP0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mVFbGjnysP0.mp4/mVFbGjnysP0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mVFbGjnysP0.m3u8/mVFbGjnysP0.m3u8"}, "path": "khan/partner-content/all-star-orchestra/elements-of-music/lesson-4-meters-in-6-9-and-12/", "duration": 204, "id": "mVFbGjnysP0", "title": "Lesson 4: Meters in 6, 9, and 12", "format": "mp4", "description": "", "slug": "lesson-4-meters-in-6-9-and-12", "kind": "Video", "video_id": "mVFbGjnysP0", "keywords": "", "youtube_id": "mVFbGjnysP0", "readable_id": "lesson-4-meters-in-6-9-and-12"}, "nZu7IZLhJRI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nZu7IZLhJRI.mp4/nZu7IZLhJRI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nZu7IZLhJRI.mp4/nZu7IZLhJRI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nZu7IZLhJRI.m3u8/nZu7IZLhJRI.m3u8"}, "duration": 728, "id": "nZu7IZLhJRI", "title": "Part 2 of proof of Heron's formula", "format": "mp4", "description": "Showing that the expression in part 1 is identical to Heron's Formula", "path": "khan/math/geometry/basic-geometry/heron_formula_tutorial/part-2-of-the-proof-of-heron-s-formula/", "slug": "part-2-of-the-proof-of-heron-s-formula", "kind": "Video", "video_id": "nZu7IZLhJRI", "keywords": "Heron's, Formula, geometry, triangle, area", "youtube_id": "nZu7IZLhJRI", "readable_id": "part-2-of-the-proof-of-heron-s-formula"}, "xPb6HLM3xEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xPb6HLM3xEQ.mp4/xPb6HLM3xEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xPb6HLM3xEQ.mp4/xPb6HLM3xEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xPb6HLM3xEQ.m3u8/xPb6HLM3xEQ.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/ap-calculus-bc-exams-2008-1-b-c/", "duration": 574, "id": "xPb6HLM3xEQ", "title": "AP Calculus BC exams: 2008 1 b&c", "format": "mp4", "description": "Parts b and c of problem 1 (free response)", "slug": "ap-calculus-bc-exams-2008-1-b-c", "kind": "Video", "video_id": "xPb6HLM3xEQ", "keywords": "calculus, BC, exam", "youtube_id": "xPb6HLM3xEQ", "readable_id": "ap-calculus-bc-exams-2008-1-b-c"}, "q5ArmxIXU4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q5ArmxIXU4s.mp4/q5ArmxIXU4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q5ArmxIXU4s.mp4/q5ArmxIXU4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q5ArmxIXU4s.m3u8/q5ArmxIXU4s.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/social-theories-overview-part-2/", "duration": 249, "id": "q5ArmxIXU4s", "title": "Social theories overview (part 2)", "format": "mp4", "description": "", "slug": "social-theories-overview-part-2", "kind": "Video", "video_id": "q5ArmxIXU4s", "keywords": "", "youtube_id": "q5ArmxIXU4s", "readable_id": "social-theories-overview-part-2"}, "4LSktB7Pk_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4LSktB7Pk_c.mp4/4LSktB7Pk_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4LSktB7Pk_c.mp4/4LSktB7Pk_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4LSktB7Pk_c.m3u8/4LSktB7Pk_c.m3u8"}, "duration": 611, "id": "4LSktB7Pk_c", "title": "Present value 2", "format": "mp4", "description": "More choices as to when you get your money.", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/present-value/present-value-2/", "slug": "present-value-2", "kind": "Video", "video_id": "4LSktB7Pk_c", "keywords": "present, value, discount, cash, flow", "youtube_id": "4LSktB7Pk_c", "readable_id": "present-value-2"}, "ir-ISPDjGno": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ir-ISPDjGno.mp4/ir-ISPDjGno.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ir-ISPDjGno.mp4/ir-ISPDjGno.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ir-ISPDjGno.m3u8/ir-ISPDjGno.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/r-greater-but-less-inequality/", "duration": 548, "id": "ir-ISPDjGno", "title": "Return on capital and economic growth", "format": "mp4", "description": "", "slug": "r-greater-but-less-inequality", "kind": "Video", "video_id": "ir-ISPDjGno", "keywords": "", "youtube_id": "ir-ISPDjGno", "readable_id": "r-greater-but-less-inequality"}, "zmBV87XA52Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zmBV87XA52Q.mp4/zmBV87XA52Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zmBV87XA52Q.mp4/zmBV87XA52Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zmBV87XA52Q.m3u8/zmBV87XA52Q.m3u8"}, "path": "khan/humanities/history/history-survey/us-history/us-history-overview-2-reconstruction-to-the-great-depression/", "duration": 863, "id": "zmBV87XA52Q", "title": "US History overview 2: Reconstruction to the Great Depression", "format": "mp4", "description": "Reconstruction to the Great Depression", "slug": "us-history-overview-2-reconstruction-to-the-great-depression", "kind": "Video", "video_id": "zmBV87XA52Q", "keywords": "depression, spanish, american, war, cuba, jim, crow", "youtube_id": "zmBV87XA52Q", "readable_id": "us-history-overview-2-reconstruction-to-the-great-depression"}, "2GD5PBK_Bto": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2GD5PBK_Bto.mp4/2GD5PBK_Bto.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2GD5PBK_Bto.mp4/2GD5PBK_Bto.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2GD5PBK_Bto.m3u8/2GD5PBK_Bto.m3u8"}, "duration": 136, "id": "2GD5PBK_Bto", "title": "Marina Abramovi\u0107", "format": "mp4", "description": "Can performance art be re-performed? How can it be collected by the museum? To explore what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "khan/humanities/global-culture/conceptual-performance/moma-abramovic-live/", "slug": "moma-abramovic-live", "kind": "Video", "video_id": "2GD5PBK_Bto", "keywords": "", "youtube_id": "2GD5PBK_Bto", "readable_id": "moma-abramovic-live"}, "2jH_z9ra9L0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2jH_z9ra9L0.mp4/2jH_z9ra9L0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2jH_z9ra9L0.mp4/2jH_z9ra9L0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2jH_z9ra9L0.m3u8/2jH_z9ra9L0.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-sal/sn1-sn2-solvent-effects/", "duration": 471, "id": "2jH_z9ra9L0", "title": "Sn1 and Sn2 solvents effects", "format": "mp4", "description": "", "slug": "sn1-sn2-solvent-effects", "kind": "Video", "video_id": "2jH_z9ra9L0", "keywords": "", "youtube_id": "2jH_z9ra9L0", "readable_id": "sn1-sn2-solvent-effects"}, "_pqXW2SeS4c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_pqXW2SeS4c.mp4/_pqXW2SeS4c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_pqXW2SeS4c.mp4/_pqXW2SeS4c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_pqXW2SeS4c.m3u8/_pqXW2SeS4c.m3u8"}, "duration": 173, "id": "_pqXW2SeS4c", "title": "\"Originality\" with Dita Amory", "format": "mp4", "description": "Met curator Dita Amory on originality in Rembrandt van Rijn\u2019s The Last Supper, after Leonardo da Vinci.\n\nThis unusually large red-chalk drawing by Rembrandt is closely based on an early print after Leonardo da Vinci's famous mural of the Last Supper in Santa Maria delle Grazia, Milan. Far from slavishly replicating his model, Rembrandt has recast all the figures, intensifying their reactions to Christ's words, and has condensed the space they occupy. The Lehman sheet is one of three drawings by Rembrandt based on Leonardo's \"Last Supper,\" a work that profoundly captured his imagination.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "originality/", "slug": "originality", "kind": "Video", "video_id": "_pqXW2SeS4c", "keywords": "community, confidence, drawing, motion, paper, Europe", "youtube_id": "_pqXW2SeS4c", "readable_id": "originality"}, "Y5cSGxdDHz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y5cSGxdDHz4.mp4/Y5cSGxdDHz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y5cSGxdDHz4.mp4/Y5cSGxdDHz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y5cSGxdDHz4.m3u8/Y5cSGxdDHz4.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/old-projectile-motion/projectile-motion-part-3/", "duration": 544, "id": "Y5cSGxdDHz4", "title": "Projectile motion (part 3)", "format": "mp4", "description": "An example of solving for the final velocity when you know the change in distance, time, initial velocity, and acceleration", "slug": "projectile-motion-part-3", "kind": "Video", "video_id": "Y5cSGxdDHz4", "keywords": "physics, projectile, motion, acceleration, velocity, khan", "youtube_id": "Y5cSGxdDHz4", "readable_id": "projectile-motion-part-3"}, "6Kw2nIwWYL0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Kw2nIwWYL0.mp4/6Kw2nIwWYL0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Kw2nIwWYL0.mp4/6Kw2nIwWYL0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Kw2nIwWYL0.m3u8/6Kw2nIwWYL0.m3u8"}, "duration": 562, "id": "6Kw2nIwWYL0", "title": "Breaking down vectors into components", "format": "mp4", "description": "", "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/mag-dir-vec-sums/", "slug": "mag-dir-vec-sums", "kind": "Video", "video_id": "6Kw2nIwWYL0", "keywords": "", "youtube_id": "6Kw2nIwWYL0", "readable_id": "mag-dir-vec-sums"}, "5SHOKpT2bwg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5SHOKpT2bwg.mp4/5SHOKpT2bwg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5SHOKpT2bwg.mp4/5SHOKpT2bwg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5SHOKpT2bwg.m3u8/5SHOKpT2bwg.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/renaud-laplance/kauffman-renaud-laplanche-2/", "duration": 197, "id": "5SHOKpT2bwg", "title": "Building Trust and Confidence", "format": "mp4", "description": "Renaud Laplanche was opening his mail when the idea for Lending Club came to him. He tells the story of seeing\nthe opportunity and creating the online Lending Club to fill the gap in the financial industries market. Laplache\u2019s\u00a0\ncompetitive nature extends to one-man sailboat racing and he compares the risks and rewards of racing with setting\u00a0\nthe pace as an entrepreneur.", "slug": "kauffman-renaud-laplanche-2", "kind": "Video", "video_id": "5SHOKpT2bwg", "keywords": "", "youtube_id": "5SHOKpT2bwg", "readable_id": "kauffman-renaud-laplanche-2"}, "5B8XluiqdHM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5B8XluiqdHM.mp4/5B8XluiqdHM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5B8XluiqdHM.mp4/5B8XluiqdHM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5B8XluiqdHM.m3u8/5B8XluiqdHM.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/linear-algebra-projections-onto-subspaces/", "duration": 1046, "id": "5B8XluiqdHM", "title": "Projections onto subspaces", "format": "mp4", "description": "Projections onto subspaces", "slug": "linear-algebra-projections-onto-subspaces", "kind": "Video", "video_id": "5B8XluiqdHM", "keywords": "subspace, projection", "youtube_id": "5B8XluiqdHM", "readable_id": "linear-algebra-projections-onto-subspaces"}, "do1HDIdfQkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/do1HDIdfQkU.mp4/do1HDIdfQkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/do1HDIdfQkU.mp4/do1HDIdfQkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/do1HDIdfQkU.m3u8/do1HDIdfQkU.m3u8"}, "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/demand-curve-tutorial/changes-in-income-population-or-preferences/", "duration": 213, "id": "do1HDIdfQkU", "title": "Changes in income, population, or preferences", "format": "mp4", "description": "How demand can be affected by changes in income, population or preferences", "slug": "changes-in-income-population-or-preferences", "kind": "Video", "video_id": "do1HDIdfQkU", "keywords": "economics, supply, and, demand", "youtube_id": "do1HDIdfQkU", "readable_id": "changes-in-income-population-or-preferences"}, "lPWfIq5DzqI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lPWfIq5DzqI.mp4/lPWfIq5DzqI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lPWfIq5DzqI.mp4/lPWfIq5DzqI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lPWfIq5DzqI.m3u8/lPWfIq5DzqI.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/lin_trans_examples/linear-transformation-examples-rotations-in-r2/", "duration": 1072, "id": "lPWfIq5DzqI", "title": "Linear transformation examples: Rotations in R2", "format": "mp4", "description": "Linear Transformation Examples: Rotations in R2", "slug": "linear-transformation-examples-rotations-in-r2", "kind": "Video", "video_id": "lPWfIq5DzqI", "keywords": "linear, transformation, matrices", "youtube_id": "lPWfIq5DzqI", "readable_id": "linear-transformation-examples-rotations-in-r2"}, "onmNaDrxwmo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/onmNaDrxwmo.mp4/onmNaDrxwmo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/onmNaDrxwmo.mp4/onmNaDrxwmo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/onmNaDrxwmo.m3u8/onmNaDrxwmo.m3u8"}, "path": "khan/math/algebra2/rational-expressions/rational-function-graphing/example-rational-functions-graphs/", "duration": 367, "id": "onmNaDrxwmo", "title": "Matching rational functions to their graphs", "format": "mp4", "description": "", "slug": "example-rational-functions-graphs", "kind": "Video", "video_id": "onmNaDrxwmo", "keywords": "", "youtube_id": "onmNaDrxwmo", "readable_id": "example-rational-functions-graphs"}, "2WEKGlvcVEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2WEKGlvcVEw.mp4/2WEKGlvcVEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2WEKGlvcVEw.mp4/2WEKGlvcVEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2WEKGlvcVEw.m3u8/2WEKGlvcVEw.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-rube-goldberg-the-design-process/", "duration": 98, "id": "2WEKGlvcVEw", "title": "DLab: Building a Rube Goldberg machine", "format": "mp4", "description": "", "slug": "discovery-lab-rube-goldberg-the-design-process", "kind": "Video", "video_id": "2WEKGlvcVEw", "keywords": "", "youtube_id": "2WEKGlvcVEw", "readable_id": "discovery-lab-rube-goldberg-the-design-process"}, "KZibsVxUOrw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KZibsVxUOrw.mp4/KZibsVxUOrw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KZibsVxUOrw.mp4/KZibsVxUOrw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KZibsVxUOrw.m3u8/KZibsVxUOrw.m3u8"}, "duration": 583, "id": "KZibsVxUOrw", "title": "International commerce, snorkeling camels, and the Indian Ocean Trade", "format": "mp4", "description": "In which John Green teaches you the history of the Indian Ocean Trade. John weaves a tale of swashbuckling adventure, replete with trade in books, ivory, and timber. Along the way, John manages to cover advances in seafaring technology, just how the monsoons work, and there's even a disembowelment for you Fangoria fans.", "path": "khan/humanities/history/crashcourse-worldhistory/road-trip-conquest-trade-2/crash-course-world-history-18/", "slug": "crash-course-world-history-18", "kind": "Video", "video_id": "KZibsVxUOrw", "keywords": "crash course", "youtube_id": "KZibsVxUOrw", "readable_id": "crash-course-world-history-18"}, "xL98lBuAn1A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xL98lBuAn1A.mp4/xL98lBuAn1A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xL98lBuAn1A.mp4/xL98lBuAn1A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xL98lBuAn1A.m3u8/xL98lBuAn1A.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-myocarditis-and-pericarditis/what-is-myocarditis-and-pericarditis/", "duration": 406, "id": "xL98lBuAn1A", "title": "What is myocarditis and pericarditis?", "format": "mp4", "description": "", "slug": "what-is-myocarditis-and-pericarditis", "kind": "Video", "video_id": "xL98lBuAn1A", "keywords": "", "youtube_id": "xL98lBuAn1A", "readable_id": "what-is-myocarditis-and-pericarditis"}, "PQsgXNggV7Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PQsgXNggV7Q.mp4/PQsgXNggV7Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PQsgXNggV7Q.mp4/PQsgXNggV7Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PQsgXNggV7Q.m3u8/PQsgXNggV7Q.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/div-fractions-fractions-pre-alg/dividing-fractions-word-problem/", "duration": 128, "id": "PQsgXNggV7Q", "title": "Dividing whole numbers and fractions: t-shirts", "format": "mp4", "description": "Dividing a whole number by a fraction? Turn the tables and multiply by the reciprocal of the fraction. Boom!", "slug": "dividing-fractions-word-problem", "kind": "Video", "video_id": "PQsgXNggV7Q", "keywords": "U02_L2_T3_we5, Dividing, Fractions, Word, Problem", "youtube_id": "PQsgXNggV7Q", "readable_id": "dividing-fractions-word-problem"}, "X-VCk3WrGlM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X-VCk3WrGlM.mp4/X-VCk3WrGlM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X-VCk3WrGlM.mp4/X-VCk3WrGlM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X-VCk3WrGlM.m3u8/X-VCk3WrGlM.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions/markovnikov-s-rule-and-carbocations/", "duration": 549, "id": "X-VCk3WrGlM", "title": "Markovnikov's rule and carbocations", "format": "mp4", "description": "Markovnikov's Rule and Carbocations. Figuring out which addition reaction is more likely.", "slug": "markovnikov-s-rule-and-carbocations", "kind": "Video", "video_id": "X-VCk3WrGlM", "keywords": "Markovnikov's, Rule, and, Carbocations", "youtube_id": "X-VCk3WrGlM", "readable_id": "markovnikov-s-rule-and-carbocations"}, "MeVFZjT-ABM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MeVFZjT-ABM.mp4/MeVFZjT-ABM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MeVFZjT-ABM.mp4/MeVFZjT-ABM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MeVFZjT-ABM.m3u8/MeVFZjT-ABM.m3u8"}, "duration": 470, "id": "MeVFZjT-ABM", "title": "L'H\u00f4pital's rule example 3", "format": "mp4", "description": "L'H\u00f4pital's Rule Example 3", "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/l-hopital-s-rule-example-3/", "slug": "l-hopital-s-rule-example-3", "kind": "Video", "video_id": "MeVFZjT-ABM", "keywords": "L'Hopital's, Rule, Example", "youtube_id": "MeVFZjT-ABM", "readable_id": "l-hopital-s-rule-example-3"}, "BXzR-hdSFUY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BXzR-hdSFUY.mp4/BXzR-hdSFUY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BXzR-hdSFUY.mp4/BXzR-hdSFUY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BXzR-hdSFUY.m3u8/BXzR-hdSFUY.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/manet-corner-of-a-caf-concert-1878-80/", "duration": 224, "id": "BXzR-hdSFUY", "title": "Manet, Corner of a Caf\u00e9-Concert", "format": "mp4", "description": "Edouard Manet, Corner of a Caf\u00e9-Concert, 1878-80, 97.1 x 77.5 cm (National Gallery, London)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "manet-corner-of-a-caf-concert-1878-80", "kind": "Video", "video_id": "BXzR-hdSFUY", "keywords": "Manet, Realism, Impressionism, art history, smarthistory, National Gallery, London, Cafe", "youtube_id": "BXzR-hdSFUY", "readable_id": "manet-corner-of-a-caf-concert-1878-80"}, "NhkfQEkmwlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NhkfQEkmwlE.mp4/NhkfQEkmwlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NhkfQEkmwlE.mp4/NhkfQEkmwlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NhkfQEkmwlE.m3u8/NhkfQEkmwlE.m3u8"}, "path": "khan/college-admissions/making-high-school-count/standardized-tests/overview-of-sat/", "duration": 171, "id": "NhkfQEkmwlE", "title": "Overview of the SAT", "format": "mp4", "description": "Official SAT Website\u00a0| Khan Academy SAT Prep\u00a0", "slug": "overview-of-sat", "kind": "Video", "video_id": "NhkfQEkmwlE", "keywords": "", "youtube_id": "NhkfQEkmwlE", "readable_id": "overview-of-sat"}, "pBZ-RiT5nEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pBZ-RiT5nEE.mp4/pBZ-RiT5nEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pBZ-RiT5nEE.mp4/pBZ-RiT5nEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pBZ-RiT5nEE.m3u8/pBZ-RiT5nEE.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/intermolecular-forces-and-molecular-bonds/", "duration": 516, "id": "pBZ-RiT5nEE", "title": "Intermolecular forces", "format": "mp4", "description": "Identifying the intermolecular forces present between molecules", "slug": "intermolecular-forces-and-molecular-bonds", "kind": "Video", "video_id": "pBZ-RiT5nEE", "keywords": "", "youtube_id": "pBZ-RiT5nEE", "readable_id": "intermolecular-forces-and-molecular-bonds"}, "FERlpfxuS6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FERlpfxuS6o.mp4/FERlpfxuS6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FERlpfxuS6o.mp4/FERlpfxuS6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FERlpfxuS6o.m3u8/FERlpfxuS6o.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-9-15/", "duration": 270, "id": "FERlpfxuS6o", "title": "15 Linear model", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-15", "kind": "Video", "video_id": "FERlpfxuS6o", "keywords": "", "youtube_id": "FERlpfxuS6o", "readable_id": "sat-2010-may-9-15"}, "HbIdp5DURJA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HbIdp5DURJA.mp4/HbIdp5DURJA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HbIdp5DURJA.mp4/HbIdp5DURJA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HbIdp5DURJA.m3u8/HbIdp5DURJA.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/copy-of-balancing-chemical-equations/visually-understanding-balancing-chemical-equations/", "duration": 277, "id": "HbIdp5DURJA", "title": "Visually understanding balancing chemical equations", "format": "mp4", "description": "", "slug": "visually-understanding-balancing-chemical-equations", "kind": "Video", "video_id": "HbIdp5DURJA", "keywords": "", "youtube_id": "HbIdp5DURJA", "readable_id": "visually-understanding-balancing-chemical-equations"}, "Q59w-ACX30M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q59w-ACX30M.mp4/Q59w-ACX30M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q59w-ACX30M.mp4/Q59w-ACX30M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q59w-ACX30M.m3u8/Q59w-ACX30M.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-6/", "duration": 637, "id": "Q59w-ACX30M", "title": "GMAT: Math 6", "format": "mp4", "description": "30-35, pg. 156", "slug": "gmat-math-6", "kind": "Video", "video_id": "Q59w-ACX30M", "keywords": "GMAT, problem, solving, math", "youtube_id": "Q59w-ACX30M", "readable_id": "gmat-math-6"}, "tQcB9BLUoVI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tQcB9BLUoVI.mp4/tQcB9BLUoVI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tQcB9BLUoVI.mp4/tQcB9BLUoVI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tQcB9BLUoVI.m3u8/tQcB9BLUoVI.m3u8"}, "path": "khan/science/physics/thermodynamics/thermodynamics-part-1/", "duration": 589, "id": "tQcB9BLUoVI", "title": "Thermodynamics (part 1)", "format": "mp4", "description": "Intuition of how gases generate pressure in a container and why pressure x volume is proportional to the combined kinetic energy of the molecules in the volume.", "slug": "thermodynamics-part-1", "kind": "Video", "video_id": "tQcB9BLUoVI", "keywords": "physics, chemistry, thermodynamics, pressure, volume, Boyle's, Law", "youtube_id": "tQcB9BLUoVI", "readable_id": "thermodynamics-part-1"}, "mMzbr5rm4j8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mMzbr5rm4j8.mp4/mMzbr5rm4j8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mMzbr5rm4j8.mp4/mMzbr5rm4j8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mMzbr5rm4j8.m3u8/mMzbr5rm4j8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/concentration-cell/", "duration": 578, "id": "mMzbr5rm4j8", "title": "Concentration cell", "format": "mp4", "description": "", "slug": "concentration-cell", "kind": "Video", "video_id": "mMzbr5rm4j8", "keywords": "", "youtube_id": "mMzbr5rm4j8", "readable_id": "concentration-cell"}, "Dnxm4UQPDTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dnxm4UQPDTo.mp4/Dnxm4UQPDTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dnxm4UQPDTo.mp4/Dnxm4UQPDTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dnxm4UQPDTo.m3u8/Dnxm4UQPDTo.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/pentecost-and-mission-to-the-apostles-tympanum-v-zelay/", "duration": 369, "id": "Dnxm4UQPDTo", "title": "Pentecost and Mission to the Apostles Tympanum, V\u00e9zelay", "format": "mp4", "description": "Pentecost and Mission to the Apostles Tympanum, central portal of the narthex, Basilica Ste-Madeleine, V\u00e9zelay, France, 1120-32 Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "pentecost-and-mission-to-the-apostles-tympanum-v-zelay", "kind": "Video", "video_id": "Dnxm4UQPDTo", "keywords": "Pentecost, sculpture, crusades, Mission, Apostles, Tympanum, portal, narthex, Basilica Ste-Madeleine, V\u00e9zelay, France, 1120", "youtube_id": "Dnxm4UQPDTo", "readable_id": "pentecost-and-mission-to-the-apostles-tympanum-v-zelay"}, "CzDA0WCdWHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CzDA0WCdWHQ.mp4/CzDA0WCdWHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CzDA0WCdWHQ.mp4/CzDA0WCdWHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CzDA0WCdWHQ.m3u8/CzDA0WCdWHQ.m3u8"}, "duration": 262, "id": "CzDA0WCdWHQ", "title": "Simple merger arbitrage with share acquisition", "format": "mp4", "description": "Showing how a merger arbitrage player might act if they were sure that a transaction would go through", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/mergers-acquisitions/simple-merger-arb-with-share-acquisition/", "slug": "simple-merger-arb-with-share-acquisition", "kind": "Video", "video_id": "CzDA0WCdWHQ", "keywords": "hedge, funds, capital, markets, finance", "youtube_id": "CzDA0WCdWHQ", "readable_id": "simple-merger-arb-with-share-acquisition"}, "R_-V6usZJsc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R_-V6usZJsc.mp4/R_-V6usZJsc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R_-V6usZJsc.mp4/R_-V6usZJsc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R_-V6usZJsc.m3u8/R_-V6usZJsc.m3u8"}, "duration": 202, "id": "R_-V6usZJsc", "title": "Chinese inflation", "format": "mp4", "description": "Chinese inflation", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/chinese-inflation/", "slug": "chinese-inflation", "kind": "Video", "video_id": "R_-V6usZJsc", "keywords": "Chinese, inflation", "youtube_id": "R_-V6usZJsc", "readable_id": "chinese-inflation"}, "yZqVJtDO7gc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yZqVJtDO7gc.mp4/yZqVJtDO7gc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yZqVJtDO7gc.mp4/yZqVJtDO7gc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yZqVJtDO7gc.m3u8/yZqVJtDO7gc.m3u8"}, "duration": 294, "id": "yZqVJtDO7gc", "title": "More on equivalent fractions", "format": "mp4", "description": "Important: if you multiply a fraction's numerator and the denominator by the same number, you'll end up with an equivalent fraction. Got it? Maybe? No problem, we'll help!", "path": "more-equivalent-fractions/", "slug": "more-equivalent-fractions", "kind": "Video", "video_id": "yZqVJtDO7gc", "keywords": "", "youtube_id": "yZqVJtDO7gc", "readable_id": "more-equivalent-fractions"}, "roUGDG1rhPI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/roUGDG1rhPI.mp4/roUGDG1rhPI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/roUGDG1rhPI.mp4/roUGDG1rhPI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/roUGDG1rhPI.m3u8/roUGDG1rhPI.m3u8"}, "duration": 659, "id": "roUGDG1rhPI", "title": "Ether naming and introduction", "format": "mp4", "description": "Ether Naming and Introduction", "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-properties-ethers/ether-naming-and-introduction/", "slug": "ether-naming-and-introduction", "kind": "Video", "video_id": "roUGDG1rhPI", "keywords": "Ether, Naming, aprotic, boiling, melting, point", "youtube_id": "roUGDG1rhPI", "readable_id": "ether-naming-and-introduction"}, "IGs7IB48Fvg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IGs7IB48Fvg.mp4/IGs7IB48Fvg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IGs7IB48Fvg.mp4/IGs7IB48Fvg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IGs7IB48Fvg.m3u8/IGs7IB48Fvg.m3u8"}, "duration": 84, "id": "IGs7IB48Fvg", "title": "Polynomials 2", "format": "mp4", "description": "Polynomials 2", "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/polynomials-2/", "slug": "polynomials-2", "kind": "Video", "video_id": "IGs7IB48Fvg", "keywords": "U08_L2_T1_we2, Polynomials, CC_6_EE_2_c, CC_39336_A-APR_1", "youtube_id": "IGs7IB48Fvg", "readable_id": "polynomials-2"}, "hgQaorvCcnk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hgQaorvCcnk.mp4/hgQaorvCcnk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hgQaorvCcnk.mp4/hgQaorvCcnk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hgQaorvCcnk.m3u8/hgQaorvCcnk.m3u8"}, "duration": 174, "id": "hgQaorvCcnk", "title": "\"Predator\" with Fiona Kidd", "format": "mp4", "description": "Met curator Fiona Kidd on portable wealth in Clasp with an eagle and its prey\u00a0dating from the Parthian Empire.\n\nThis solid gold ornament is in the form of a roundel with two projecting elements that have slots for the attachment of a strap. The rim of the roundel, consisting of eighteen thumbnail-shaped cells for turquoise inlay in the manner of some Sarmatian roundels, frames the openwork figure of an eagle in high relief. Grasping a small, crouching animal in its talons, the bird perches in three-quarter view, facing right, with its chest extended and the rest of its body receding into the background. Its wings are outspread, the one on the left seen emerging from behind the swelling of the chest and the one on the right receding into the back plane. The body and legs carry ridges and linear patterning to suggest the texture of feathers. The bird's head is in profile, with a cell for the prominent ear, a protrusion at the eye area, a curved beak, and a downcurved line for the mouth. The entire figure is worked in the round, although the back is distorted and not as carefully finished as the front.\u00a0The eagle's prey has been variously identified as an antelope, a goat, and a hare. Turquoise is inlaid in its large ear and in several places on its body. The tabs on either side of the roundel have cells for inlays at the corners in the form of debased acanthus leaves.\n\nThis piece is one of a pair; its mate, in the British Museum, London, depicts an eagle facing the opposite way. It was thought by Ernst Herzfeld to be part of a treasure found in 1910\u201311 in a chamber tomb near Nihavend in Iran. Herzfeld speculated that this trove had belonged to an aristocratic Parthian family and had originally included a group of Roman gold coins of the first to second century C.E.\u00a0that surfaced independently in modern times. Another related piece of jewelry, found in excavations at Dalverzin Tepe in Iran, can be dated archaeologically to the first century C.E.\n\nView this work on metmuseum.org.\u00a0\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "predator/", "slug": "predator", "kind": "Video", "video_id": "hgQaorvCcnk", "keywords": "fashion, metal, motion, ornate, Middle East", "youtube_id": "hgQaorvCcnk", "readable_id": "predator"}, "GiGLhXFBtRg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GiGLhXFBtRg.mp4/GiGLhXFBtRg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GiGLhXFBtRg.mp4/GiGLhXFBtRg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GiGLhXFBtRg.m3u8/GiGLhXFBtRg.m3u8"}, "duration": 539, "id": "GiGLhXFBtRg", "title": "Triangle medians and centroids", "format": "mp4", "description": "Seeing that the centroid is 2/3 of the way along every median", "path": "khan/math/geometry/triangle-properties/medians_centroids/triangle-medians-and-centroids/", "slug": "triangle-medians-and-centroids", "kind": "Video", "video_id": "GiGLhXFBtRg", "keywords": "geometry, centroid, median, CC_8_G_5", "youtube_id": "GiGLhXFBtRg", "readable_id": "triangle-medians-and-centroids"}, "c9O6MHssHtw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c9O6MHssHtw.mp4/c9O6MHssHtw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c9O6MHssHtw.mp4/c9O6MHssHtw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c9O6MHssHtw.m3u8/c9O6MHssHtw.m3u8"}, "duration": 638, "id": "c9O6MHssHtw", "title": "Common Core Standards: Multiplying and dividing negative numbers", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the standards for multiplying and dividing negative numbers.", "path": "ccc-multiplying-and-dividing-negative-numbers/", "slug": "ccc-multiplying-and-dividing-negative-numbers", "kind": "Video", "video_id": "c9O6MHssHtw", "keywords": "", "youtube_id": "c9O6MHssHtw", "readable_id": "ccc-multiplying-and-dividing-negative-numbers"}, "TjYbFdSY0LA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TjYbFdSY0LA.mp4/TjYbFdSY0LA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TjYbFdSY0LA.mp4/TjYbFdSY0LA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TjYbFdSY0LA.m3u8/TjYbFdSY0LA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/what-is-skin/", "duration": 668, "id": "TjYbFdSY0LA", "title": "What is skin? (Epidermis)", "format": "mp4", "description": "", "slug": "what-is-skin", "kind": "Video", "video_id": "TjYbFdSY0LA", "keywords": "", "youtube_id": "TjYbFdSY0LA", "readable_id": "what-is-skin"}, "p-cZzHxVoG8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p-cZzHxVoG8.mp4/p-cZzHxVoG8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p-cZzHxVoG8.mp4/p-cZzHxVoG8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p-cZzHxVoG8.m3u8/p-cZzHxVoG8.m3u8"}, "duration": 216, "id": "p-cZzHxVoG8", "title": "Giles Shih - Making an idea into a business", "format": "mp4", "description": "Giles Shih, President and CEO of BioResource International, talks about his company\u2019s origins including founding along with his father. Giles also advises entrepreneurs to get out there and learn as you go.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/giles-shih/kauffman-giles-shih3/", "slug": "kauffman-giles-shih3", "kind": "Video", "video_id": "p-cZzHxVoG8", "keywords": "", "youtube_id": "p-cZzHxVoG8", "readable_id": "kauffman-giles-shih3"}, "3OAfLjxQUg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3OAfLjxQUg4.mp4/3OAfLjxQUg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3OAfLjxQUg4.mp4/3OAfLjxQUg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3OAfLjxQUg4.m3u8/3OAfLjxQUg4.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/distribution-patterns/distributionwhy/", "duration": 649, "id": "3OAfLjxQUg4", "title": "Why biodiversity is distributed unevenly", "format": "mp4", "description": "Why is biodiversity distributed unevenly?", "slug": "distributionwhy", "kind": "Video", "video_id": "3OAfLjxQUg4", "keywords": "", "youtube_id": "3OAfLjxQUg4", "readable_id": "distributionwhy"}, "sHbX58y5D4U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sHbX58y5D4U.mp4/sHbX58y5D4U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sHbX58y5D4U.mp4/sHbX58y5D4U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sHbX58y5D4U.m3u8/sHbX58y5D4U.m3u8"}, "duration": 152, "id": "sHbX58y5D4U", "title": "Constructing a scatter plot", "format": "mp4", "description": "", "path": "khan/math/probability/regression/prob-stats-scatter-plots/constructing-scatter-plot/", "slug": "constructing-scatter-plot", "kind": "Video", "video_id": "sHbX58y5D4U", "keywords": "", "youtube_id": "sHbX58y5D4U", "readable_id": "constructing-scatter-plot"}, "tdp22elrY7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tdp22elrY7s.mp4/tdp22elrY7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tdp22elrY7s.mp4/tdp22elrY7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tdp22elrY7s.m3u8/tdp22elrY7s.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/botticelli-the-birth-of-venus-1483-85/", "duration": 240, "id": "tdp22elrY7s", "title": "Botticelli, Birth of Venus", "format": "mp4", "description": "Sandro Botticelli, The Birth of Venus, 1483-85, tempera on panel, 68 x 109 5/8\" (172.5 x 278.5 cm), Galeria degli Uffizi, Florence Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "botticelli-the-birth-of-venus-1483-85", "kind": "Video", "video_id": "tdp22elrY7s", "keywords": "Botticelli, Venus, Birth of Venus, Smarthistory, Khan Academy, Uffizi, Florence, Renaissance", "youtube_id": "tdp22elrY7s", "readable_id": "botticelli-the-birth-of-venus-1483-85"}, "Pn24jP0YbTI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pn24jP0YbTI.mp4/Pn24jP0YbTI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pn24jP0YbTI.mp4/Pn24jP0YbTI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pn24jP0YbTI.m3u8/Pn24jP0YbTI.m3u8"}, "duration": 1121, "id": "Pn24jP0YbTI", "title": "MIT 2012 Commencement Address", "format": "mp4", "description": "Salman Khan gives commencement address at MIT (2012)", "path": "mit-2012-commencement-address/", "slug": "mit-2012-commencement-address", "kind": "Video", "video_id": "Pn24jP0YbTI", "keywords": "khan, academy, mit, commencement, marquee", "youtube_id": "Pn24jP0YbTI", "readable_id": "mit-2012-commencement-address"}, "3-xfmbdzkqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3-xfmbdzkqc.mp4/3-xfmbdzkqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3-xfmbdzkqc.mp4/3-xfmbdzkqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3-xfmbdzkqc.m3u8/3-xfmbdzkqc.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/eigen_everything/linear-algebra-finding-eigenvectors-and-eigenspaces-example/", "duration": 874, "id": "3-xfmbdzkqc", "title": "Finding eigenvectors and eigenspaces example", "format": "mp4", "description": "Finding the eigenvectors and eigenspaces of a 2x2 matrix", "slug": "linear-algebra-finding-eigenvectors-and-eigenspaces-example", "kind": "Video", "video_id": "3-xfmbdzkqc", "keywords": "eigenvalue, eigenvector, eigenspace", "youtube_id": "3-xfmbdzkqc", "readable_id": "linear-algebra-finding-eigenvectors-and-eigenspaces-example"}, "QiwfF83NWNA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QiwfF83NWNA.mp4/QiwfF83NWNA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QiwfF83NWNA.mp4/QiwfF83NWNA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QiwfF83NWNA.m3u8/QiwfF83NWNA.m3u8"}, "duration": 380, "id": "QiwfF83NWNA", "title": "Calculating i raised to arbitrary exponents", "format": "mp4", "description": "Calculating i raised to arbitrarily high exponents", "path": "khan/math/precalculus/imaginary_complex_precalc/i_precalc/calculating-i-raised-to-arbitrary-exponents/", "slug": "calculating-i-raised-to-arbitrary-exponents", "kind": "Video", "video_id": "QiwfF83NWNA", "keywords": "complex, imaginary, numbers", "youtube_id": "QiwfF83NWNA", "readable_id": "calculating-i-raised-to-arbitrary-exponents"}, "PPvd4X3Wv5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PPvd4X3Wv5I.mp4/PPvd4X3Wv5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PPvd4X3Wv5I.mp4/PPvd4X3Wv5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PPvd4X3Wv5I.m3u8/PPvd4X3Wv5I.m3u8"}, "duration": 191, "id": "PPvd4X3Wv5I", "title": "Ex 1: Multi step equation", "format": "mp4", "description": "Turning a rational equation into a linear equation.", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/ex-1-multi-step-equation/", "slug": "ex-1-multi-step-equation", "kind": "Video", "video_id": "PPvd4X3Wv5I", "keywords": "", "youtube_id": "PPvd4X3Wv5I", "readable_id": "ex-1-multi-step-equation"}, "DIjlllgq3dc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DIjlllgq3dc.mp4/DIjlllgq3dc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DIjlllgq3dc.mp4/DIjlllgq3dc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DIjlllgq3dc.m3u8/DIjlllgq3dc.m3u8"}, "duration": 310, "id": "DIjlllgq3dc", "title": "Example: Lottery probability", "format": "mp4", "description": "What is the probability of winning a 4-number lottery?", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/permutations-and-combinations-4/", "slug": "permutations-and-combinations-4", "kind": "Video", "video_id": "DIjlllgq3dc", "keywords": "U12_L2_T4_we1, Permutations, and, Combinations", "youtube_id": "DIjlllgq3dc", "readable_id": "permutations-and-combinations-4"}, "8_fT1BsTmt4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8_fT1BsTmt4.mp4/8_fT1BsTmt4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8_fT1BsTmt4.mp4/8_fT1BsTmt4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8_fT1BsTmt4.m3u8/8_fT1BsTmt4.m3u8"}, "duration": 268, "id": "8_fT1BsTmt4", "title": "Borrowing once example 2", "format": "mp4", "description": "", "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/borrowing-once-example-2/", "slug": "borrowing-once-example-2", "kind": "Video", "video_id": "8_fT1BsTmt4", "keywords": "", "youtube_id": "8_fT1BsTmt4", "readable_id": "borrowing-once-example-2"}, "EXLVMGSDQbI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EXLVMGSDQbI.mp4/EXLVMGSDQbI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EXLVMGSDQbI.mp4/EXLVMGSDQbI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EXLVMGSDQbI.m3u8/EXLVMGSDQbI.m3u8"}, "duration": 254, "id": "EXLVMGSDQbI", "title": "Maximizing function at value", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/mean_value_theorem/maximizing-function-at-value/", "slug": "maximizing-function-at-value", "kind": "Video", "video_id": "EXLVMGSDQbI", "keywords": "", "youtube_id": "EXLVMGSDQbI", "readable_id": "maximizing-function-at-value"}, "ZXJMwIDx29Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZXJMwIDx29Q.mp4/ZXJMwIDx29Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZXJMwIDx29Q.mp4/ZXJMwIDx29Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZXJMwIDx29Q.m3u8/ZXJMwIDx29Q.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/the-wise-and-foolish-virgins-late-11th-century-early-12th-century/", "duration": 345, "id": "ZXJMwIDx29Q", "title": "Wise and Foolish Virgins, Sant Quirze de Pedret", "format": "mp4", "description": "Circle of the Master of Pedret, The Wise and Foolish Virgins, south apse of the Epistle, Sant Quirze de Pedret, late 11th century to the beginning of 12th century, fresco transferred to canvas\n325 x 315 x 320 cm (Museu Nacional d'Art de Catalunya, Barcelona)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "the-wise-and-foolish-virgins-late-11th-century-early-12th-century", "kind": "Video", "video_id": "ZXJMwIDx29Q", "keywords": "Romanesque, wise and foolish virgins, fresco, NMAC, smarthistory, art history, history of art, Middle Ages, Barcelona", "youtube_id": "ZXJMwIDx29Q", "readable_id": "the-wise-and-foolish-virgins-late-11th-century-early-12th-century"}, "kFp7D0UxNxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kFp7D0UxNxU.mp4/kFp7D0UxNxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kFp7D0UxNxU.mp4/kFp7D0UxNxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kFp7D0UxNxU.m3u8/kFp7D0UxNxU.m3u8"}, "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/longmen-grottoes-unesconhk/", "duration": 172, "id": "kFp7D0UxNxU", "title": "Longmen Grottoes (UNESCO/NHK)", "format": "mp4", "description": "The grottoes and niches of Longmen contain the largest and most impressive collection of Chinese art of the late Northern Wei and Tang Dynasties (316-907). These works, entirely devoted to the Buddhist religion, represent the high point of Chinese stone carving.", "slug": "longmen-grottoes-unesconhk", "kind": "Video", "video_id": "kFp7D0UxNxU", "keywords": "", "youtube_id": "kFp7D0UxNxU", "readable_id": "longmen-grottoes-unesconhk"}, "EqNzr56h1Ic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EqNzr56h1Ic.mp4/EqNzr56h1Ic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EqNzr56h1Ic.mp4/EqNzr56h1Ic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EqNzr56h1Ic.m3u8/EqNzr56h1Ic.m3u8"}, "duration": 607, "id": "EqNzr56h1Ic", "title": "Finding area using similarity and congruence", "format": "mp4", "description": "Example of using similarity and congruence to find the area of a triangle", "path": "khan/math/geometry/similarity/cc-solving-prob-similar-tri/finding-area-using-similarity-and-congruence/", "slug": "finding-area-using-similarity-and-congruence", "kind": "Video", "video_id": "EqNzr56h1Ic", "keywords": "Finding, Area, Using, Similarity, and, Congruence", "youtube_id": "EqNzr56h1Ic", "readable_id": "finding-area-using-similarity-and-congruence"}, "Pms4cBWwPSU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pms4cBWwPSU.mp4/Pms4cBWwPSU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pms4cBWwPSU.mp4/Pms4cBWwPSU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pms4cBWwPSU.m3u8/Pms4cBWwPSU.m3u8"}, "duration": 519, "id": "Pms4cBWwPSU", "title": "Thinking about the sign of expressions", "format": "mp4", "description": "Some examples that test our understanding of what happens when we multply or divided a bunch of positive or negative numbers.", "path": "thinking-about-the-sign-of-expressions/", "slug": "thinking-about-the-sign-of-expressions", "kind": "Video", "video_id": "Pms4cBWwPSU", "keywords": "", "youtube_id": "Pms4cBWwPSU", "readable_id": "thinking-about-the-sign-of-expressions"}, "0sCttufU-jQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0sCttufU-jQ.mp4/0sCttufU-jQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0sCttufU-jQ.mp4/0sCttufU-jQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0sCttufU-jQ.m3u8/0sCttufU-jQ.m3u8"}, "duration": 510, "id": "0sCttufU-jQ", "title": "Proving a limit using epsilon-delta definition", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/epsilon_delta/proving-a-limit-using-epsilon-delta-definition/", "slug": "proving-a-limit-using-epsilon-delta-definition", "kind": "Video", "video_id": "0sCttufU-jQ", "keywords": "", "youtube_id": "0sCttufU-jQ", "readable_id": "proving-a-limit-using-epsilon-delta-definition"}, "oEgeUk_Ix2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oEgeUk_Ix2c.mp4/oEgeUk_Ix2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oEgeUk_Ix2c.mp4/oEgeUk_Ix2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oEgeUk_Ix2c.m3u8/oEgeUk_Ix2c.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/powers-of-fractions/", "duration": 107, "id": "oEgeUk_Ix2c", "title": "Powers of fractions", "format": "mp4", "description": "Just like whole numbers with exponents, fractions are repeatedly multiplied. If you know how to multiply factions, you're over half way there.", "slug": "powers-of-fractions", "kind": "Video", "video_id": "oEgeUk_Ix2c", "keywords": "", "youtube_id": "oEgeUk_Ix2c", "readable_id": "powers-of-fractions"}, "Ht35BfnTSiM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ht35BfnTSiM.mp4/Ht35BfnTSiM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ht35BfnTSiM.mp4/Ht35BfnTSiM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ht35BfnTSiM.m3u8/Ht35BfnTSiM.m3u8"}, "duration": 281, "id": "Ht35BfnTSiM", "title": "Takhti: a modern Iranian hero, exhibition at the British Museum", "format": "mp4", "description": "Venetia Porter, British Museum curator, explains different elements of a contemporary piece depicting Takhti, the modern day Iranian wrestler. \u00a9 Trustees of the British Museum", "path": "takhti/", "slug": "takhti", "kind": "Video", "video_id": "Ht35BfnTSiM", "keywords": "", "youtube_id": "Ht35BfnTSiM", "readable_id": "takhti"}, "OQEWArXaCeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OQEWArXaCeg.mp4/OQEWArXaCeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OQEWArXaCeg.mp4/OQEWArXaCeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OQEWArXaCeg.m3u8/OQEWArXaCeg.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/durer/d-rer-self-portrait-1498/", "duration": 134, "id": "OQEWArXaCeg", "title": "D\u00fcrer, Self-portrait (1498)", "format": "mp4", "description": "Albrecht D\u00fcrer, Self-portrait, 1498, oil on panel, 52 x 41 cm \n(Museo Nacional del Prado, Madrid)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\nhttp://www.smarthistory.org/durer-self-portrait.html", "slug": "d-rer-self-portrait-1498", "kind": "Video", "video_id": "OQEWArXaCeg", "keywords": "art, durer, smarthistory, art history, self-portrait", "youtube_id": "OQEWArXaCeg", "readable_id": "d-rer-self-portrait-1498"}, "7WloKabLhII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7WloKabLhII.mp4/7WloKabLhII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7WloKabLhII.mp4/7WloKabLhII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7WloKabLhII.m3u8/7WloKabLhII.m3u8"}, "path": "khan/math/pre-algebra/measurement/volume-introduction-rectangular/measuring-volume-with-unit-cubes/", "duration": 133, "id": "7WloKabLhII", "title": "Volume: measuring with unit cubes", "format": "mp4", "description": "Volume is usually measured in cubic feet (or inches, or centimeters, etc). Let's practice counting cubic feet in order to find the volume.", "slug": "measuring-volume-with-unit-cubes", "kind": "Video", "video_id": "7WloKabLhII", "keywords": "", "youtube_id": "7WloKabLhII", "readable_id": "measuring-volume-with-unit-cubes"}, "4htSVI5E9AQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4htSVI5E9AQ.mp4/4htSVI5E9AQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4htSVI5E9AQ.mp4/4htSVI5E9AQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4htSVI5E9AQ.m3u8/4htSVI5E9AQ.m3u8"}, "duration": 435, "id": "4htSVI5E9AQ", "title": "Neuron resting potential description", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/neuron-resting-potential-description/", "slug": "neuron-resting-potential-description", "kind": "Video", "video_id": "4htSVI5E9AQ", "keywords": "", "youtube_id": "4htSVI5E9AQ", "readable_id": "neuron-resting-potential-description"}, "6y5oO6NfGHw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6y5oO6NfGHw.mp4/6y5oO6NfGHw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6y5oO6NfGHw.mp4/6y5oO6NfGHw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6y5oO6NfGHw.m3u8/6y5oO6NfGHw.m3u8"}, "duration": 666, "id": "6y5oO6NfGHw", "title": "Calorimetry", "format": "mp4", "description": "Today's episode dives into the HOW of enthalpy. How we calculate it, and how we determine it experimentally...even if our determinations here at Crash Course Chemistry are somewhat shoddy.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem19-calorimetry/", "slug": "chem19-calorimetry", "kind": "Video", "video_id": "6y5oO6NfGHw", "keywords": "", "youtube_id": "6y5oO6NfGHw", "readable_id": "chem19-calorimetry"}, "Rx1HtFtc1cM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rx1HtFtc1cM.mp4/Rx1HtFtc1cM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rx1HtFtc1cM.mp4/Rx1HtFtc1cM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rx1HtFtc1cM.m3u8/Rx1HtFtc1cM.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/gros-napoleon-bonaparte-visiting-the-pest-house-in-jaffa-1804/", "duration": 217, "id": "Rx1HtFtc1cM", "title": "Gros, Napoleon Bonaparte Visiting the Plague-Stricken in Jaffa", "format": "mp4", "description": "Baron Antoine-Jean Gros, Napoleon Bonaparte Visiting the Pest House in Jaffa, 1804, oil on canvas, 209 x 280 inches (Mus\u00e9e du Louvre, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\nNote: Gros was a student of the Neo-Classical painter David, however, this painting, sometimes also titled, \u00a0Napoleon Visiting the Pest House in Jaffa, is a proto-Romantic painting that points to the later style of Gericault and Delacroix.\u00a0Gros was trained in David's studio between 1785-1792, and is most well known for recording Napoleon's military campaigns, which proved to be ideal subjects for exploring the exotic, violent, and heroic. In this painting, which measures more than 17 feet high and 23 feet wide, Gros depicted a legendary episode from Napoleon's campaigns in Egypt (1798-1801). On March 21, 1799, \u00a0in a make-shift hospital in Jaffa, Napoleon visited his troops who were stricken with the Bubonic Plague. Gros depicts Napoleon attempting to calm the growing panic about contagion by fearlessly \u00a0touching the sores of one of the plague victims. Like earlier neoclassical paintings such as David's Death of Marat, Gros combines Christian iconography, in this case Christ healing the sick, with a contemporary subject. He also draws on the art of classical antiquity, by depicting Napoleon in the same position as the ancient Greek sculpture, the Apollo Belvedere. In this way, he imbues Napoleon with divine qualities while simultaneously showing him as a military hero. But in contrast to David, Gros uses warm, sensual colors and focuses on the dead and dying who occupy the foreground of the painting. We see the same approach later in Delacroix's painting ofLiberty Leading the People (1830). Napoleon was a master at using art to manipulate his public image. In reality he had ordered the death of the prisoners who he could not afford to house or feed, and poisoned his troops who were dying from the plague as he retreated from Jaffa.\n", "slug": "gros-napoleon-bonaparte-visiting-the-pest-house-in-jaffa-1804", "kind": "Video", "video_id": "Rx1HtFtc1cM", "keywords": "Gros, Jaffa, Napoleon, Romanticism, Louvre, smarthistory, art history", "youtube_id": "Rx1HtFtc1cM", "readable_id": "gros-napoleon-bonaparte-visiting-the-pest-house-in-jaffa-1804"}, "8lUB2sAQkzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8lUB2sAQkzw.mp4/8lUB2sAQkzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8lUB2sAQkzw.mp4/8lUB2sAQkzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8lUB2sAQkzw.m3u8/8lUB2sAQkzw.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/enzymes/the-induced-fit-model-of-enzyme-catalysis/", "duration": 404, "id": "8lUB2sAQkzw", "title": "Induced fit model of enzyme catalysis", "format": "mp4", "description": "Get a better appreciation for how enzymes and substrates bind together. By Ross Firestone.", "slug": "the-induced-fit-model-of-enzyme-catalysis", "kind": "Video", "video_id": "8lUB2sAQkzw", "keywords": "", "youtube_id": "8lUB2sAQkzw", "readable_id": "the-induced-fit-model-of-enzyme-catalysis"}, "ios3QL9t9LQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ios3QL9t9LQ.mp4/ios3QL9t9LQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ios3QL9t9LQ.mp4/ios3QL9t9LQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ios3QL9t9LQ.m3u8/ios3QL9t9LQ.m3u8"}, "duration": 253, "id": "ios3QL9t9LQ", "title": "Subtracting in scientific notation", "format": "mp4", "description": "Learn how to subtract numbers written in scientific notation. The problem solved in this video is 4.1 * 10^-2 - 2.6*10^-3.", "path": "subtracting-in-scientific-notation/", "slug": "subtracting-in-scientific-notation", "kind": "Video", "video_id": "ios3QL9t9LQ", "keywords": "", "youtube_id": "ios3QL9t9LQ", "readable_id": "subtracting-in-scientific-notation"}, "VkrOYs2LFNk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VkrOYs2LFNk.mp4/VkrOYs2LFNk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VkrOYs2LFNk.mp4/VkrOYs2LFNk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VkrOYs2LFNk.m3u8/VkrOYs2LFNk.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/stabilization-of-a-conjugate-base-electronegativity-new/", "duration": 252, "id": "VkrOYs2LFNk", "title": "Stabilization of a conjugate base: electronegativity", "format": "mp4", "description": "How electronegativity affects the stabilization of a conjugate base (when comparing elements in the same period)", "slug": "stabilization-of-a-conjugate-base-electronegativity-new", "kind": "Video", "video_id": "VkrOYs2LFNk", "keywords": "", "youtube_id": "VkrOYs2LFNk", "readable_id": "stabilization-of-a-conjugate-base-electronegativity-new"}, "FZ2APP6-grU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FZ2APP6-grU.mp4/FZ2APP6-grU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FZ2APP6-grU.mp4/FZ2APP6-grU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FZ2APP6-grU.m3u8/FZ2APP6-grU.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/inequalities/", "duration": 129, "id": "FZ2APP6-grU", "title": "Constructing and solving a one-step inequality", "format": "mp4", "description": "Inequalities are more than abstract concepts and exercises. They help solve real life problems. Here's an example.", "slug": "inequalities", "kind": "Video", "video_id": "FZ2APP6-grU", "keywords": "Inequalities, CC_6_EE_8, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-REI_3", "youtube_id": "FZ2APP6-grU", "readable_id": "inequalities"}, "W6gKc7Yjig8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W6gKc7Yjig8.mp4/W6gKc7Yjig8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W6gKc7Yjig8.mp4/W6gKc7Yjig8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W6gKc7Yjig8.m3u8/W6gKc7Yjig8.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/private-health-insurance/", "duration": 778, "id": "W6gKc7Yjig8", "title": "Private health insurance", "format": "mp4", "description": "Approximately half of Americans rely on their employers to help obtain and pay for health coverage. This video explains the history of private insurance, how risk-sharing works, and the incentives for employers and employees to share the responsibility of health care coverage.\u00a0", "slug": "private-health-insurance", "kind": "Video", "video_id": "W6gKc7Yjig8", "keywords": "", "youtube_id": "W6gKc7Yjig8", "readable_id": "private-health-insurance"}, "st_gQzP4QxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/st_gQzP4QxY.mp4/st_gQzP4QxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/st_gQzP4QxY.mp4/st_gQzP4QxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/st_gQzP4QxY.m3u8/st_gQzP4QxY.m3u8"}, "duration": 601, "id": "st_gQzP4QxY", "title": "Speciation: Of ligers & men", "format": "mp4", "description": "Hank explains speciation - the evolutionary process by which new biological species arise - in terms of finches, ligers, mules, and dogs.\u00a0", "path": "crash-course-biology-114/", "slug": "crash-course-biology-114", "kind": "Video", "video_id": "st_gQzP4QxY", "keywords": "", "youtube_id": "st_gQzP4QxY", "readable_id": "crash-course-biology-114"}, "hy_bDS3aHO4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hy_bDS3aHO4.mp4/hy_bDS3aHO4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hy_bDS3aHO4.mp4/hy_bDS3aHO4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hy_bDS3aHO4.m3u8/hy_bDS3aHO4.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/adding-decimals-pre-alg/subtracting-decimals-word-problem/", "duration": 139, "id": "hy_bDS3aHO4", "title": "Adding and subtracting decimals word problem", "format": "mp4", "description": "Let's get fancy and practice adding and subtracting decimals in the same word problem.", "slug": "subtracting-decimals-word-problem", "kind": "Video", "video_id": "hy_bDS3aHO4", "keywords": "U03_L2_T1_we3, Subtracting, Decimals, Word, Problem, CC_5_NBT_7, CC_6_NS_3", "youtube_id": "hy_bDS3aHO4", "readable_id": "subtracting-decimals-word-problem"}, "CFvVkPNV7cI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CFvVkPNV7cI.mp4/CFvVkPNV7cI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CFvVkPNV7cI.mp4/CFvVkPNV7cI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CFvVkPNV7cI.m3u8/CFvVkPNV7cI.m3u8"}, "path": "khan/college-admissions/applying-to-college/college-application-process/applying-to-the-right-number-of-colleges/", "duration": 97, "id": "CFvVkPNV7cI", "title": "Applying to the right number of colleges", "format": "mp4", "description": "", "slug": "applying-to-the-right-number-of-colleges", "kind": "Video", "video_id": "CFvVkPNV7cI", "keywords": "", "youtube_id": "CFvVkPNV7cI", "readable_id": "applying-to-the-right-number-of-colleges"}, "qyQGBJIYC5s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qyQGBJIYC5s.mp4/qyQGBJIYC5s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qyQGBJIYC5s.mp4/qyQGBJIYC5s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qyQGBJIYC5s.m3u8/qyQGBJIYC5s.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/flanders-1/rubens-elevation/", "duration": 513, "id": "qyQGBJIYC5s", "title": "Peter Paul Rubens, Elevation of the Cross", "format": "mp4", "description": "Peter Paul Rubens, Elevation of the Cross, 1610, oil on wood, 15 feet 1-7/8 inches x 11 feet 1-1/2 inches (originally for Saint Walpurgis (destroyed),\u00a0now in Antwerp Cathedral)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris\n", "slug": "rubens-elevation", "kind": "Video", "video_id": "qyQGBJIYC5s", "keywords": "", "youtube_id": "qyQGBJIYC5s", "readable_id": "rubens-elevation"}, "70aWb6xBrbg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/70aWb6xBrbg.mp4/70aWb6xBrbg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/70aWb6xBrbg.mp4/70aWb6xBrbg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/70aWb6xBrbg.m3u8/70aWb6xBrbg.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/nasa-viking-mission/", "duration": 262, "id": "70aWb6xBrbg", "title": "Viking mission", "format": "mp4", "description": "Overview of the Viking mission", "slug": "nasa-viking-mission", "kind": "Video", "video_id": "70aWb6xBrbg", "keywords": "", "youtube_id": "70aWb6xBrbg", "readable_id": "nasa-viking-mission"}, "xf1okjCwdOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xf1okjCwdOg.mp4/xf1okjCwdOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xf1okjCwdOg.mp4/xf1okjCwdOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xf1okjCwdOg.m3u8/xf1okjCwdOg.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/cerebellum/", "duration": 427, "id": "xf1okjCwdOg", "title": "Cerebellum", "format": "mp4", "description": "", "slug": "cerebellum", "kind": "Video", "video_id": "xf1okjCwdOg", "keywords": "MCAT", "youtube_id": "xf1okjCwdOg", "readable_id": "cerebellum"}, "lBDT2w5Wl84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lBDT2w5Wl84.mp4/lBDT2w5Wl84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lBDT2w5Wl84.mp4/lBDT2w5Wl84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lBDT2w5Wl84.m3u8/lBDT2w5Wl84.m3u8"}, "duration": 484, "id": "lBDT2w5Wl84", "title": "Real GDP and nominal GDP", "format": "mp4", "description": "Using real GDP as a measure of actual productivity growth", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/real-nominal-gdp-tutorial/real-gdp-and-nominal-gdp/", "slug": "real-gdp-and-nominal-gdp", "kind": "Video", "video_id": "lBDT2w5Wl84", "keywords": "macroeconomics", "youtube_id": "lBDT2w5Wl84", "readable_id": "real-gdp-and-nominal-gdp"}, "rRjGX8ms01o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rRjGX8ms01o.mp4/rRjGX8ms01o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rRjGX8ms01o.mp4/rRjGX8ms01o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rRjGX8ms01o.m3u8/rRjGX8ms01o.m3u8"}, "path": "khan/partner-content/big-history-project/life/what-is-life/bhp-evolution-epic-crashcourse/", "duration": 874, "id": "rRjGX8ms01o", "title": "Crash Course Big History: The Evolutionary Epic", "format": "mp4", "description": "Poof and you\u2019re gone! Extinction events are no joke. The Greens and Emily Graslie talk about why they are such a big deal, and what they have to do with evolution.\u00a0", "slug": "bhp-evolution-epic-crashcourse", "kind": "Video", "video_id": "rRjGX8ms01o", "keywords": "", "youtube_id": "rRjGX8ms01o", "readable_id": "bhp-evolution-epic-crashcourse"}, "ZKvatbn4a_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZKvatbn4a_I.mp4/ZKvatbn4a_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZKvatbn4a_I.mp4/ZKvatbn4a_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZKvatbn4a_I.m3u8/ZKvatbn4a_I.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-asthma/asthma-pathophysiology/", "duration": 466, "id": "ZKvatbn4a_I", "title": "Asthma pathophysiology", "format": "mp4", "description": "", "slug": "asthma-pathophysiology", "kind": "Video", "video_id": "ZKvatbn4a_I", "keywords": "", "youtube_id": "ZKvatbn4a_I", "readable_id": "asthma-pathophysiology"}, "rLIEeUP_e-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rLIEeUP_e-Y.mp4/rLIEeUP_e-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rLIEeUP_e-Y.mp4/rLIEeUP_e-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rLIEeUP_e-Y.m3u8/rLIEeUP_e-Y.m3u8"}, "path": "khan/science/health-and-medicine/hematologic-system/bleeding-and-impaired-hemostasis/introduction-to-hemostasis/", "duration": 385, "id": "rLIEeUP_e-Y", "title": "Hemostasis", "format": "mp4", "description": "Hemostasis is the process which stops bleeding after an injury. Blood vessels are repaired by the creation of a platelet plug during primary hemostasis, and the platelet plug is further reinforced by the conversion of fibrin to fibrinogen during secondary hemostasis.", "slug": "introduction-to-hemostasis", "kind": "Video", "video_id": "rLIEeUP_e-Y", "keywords": "", "youtube_id": "rLIEeUP_e-Y", "readable_id": "introduction-to-hemostasis"}, "NuLlNAdrom4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NuLlNAdrom4.mp4/NuLlNAdrom4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NuLlNAdrom4.mp4/NuLlNAdrom4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NuLlNAdrom4.m3u8/NuLlNAdrom4.m3u8"}, "duration": 546, "id": "NuLlNAdrom4", "title": "Taxation and dead weight loss", "format": "mp4", "description": "The effect of taxation on the equilibrium price and quantity", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/deadweight-loss-tutorial/taxation-and-dead-weight-loss/", "slug": "taxation-and-dead-weight-loss", "kind": "Video", "video_id": "NuLlNAdrom4", "keywords": "microeconomics, supply, demand", "youtube_id": "NuLlNAdrom4", "readable_id": "taxation-and-dead-weight-loss"}, "KPeS2gdizhQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KPeS2gdizhQ.mp4/KPeS2gdizhQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KPeS2gdizhQ.mp4/KPeS2gdizhQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KPeS2gdizhQ.m3u8/KPeS2gdizhQ.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/understanding-function-inverses-example/", "duration": 137, "id": "KPeS2gdizhQ", "title": "Understanding function inverses example", "format": "mp4", "description": "Understanding function inverses example", "slug": "understanding-function-inverses-example", "kind": "Video", "video_id": "KPeS2gdizhQ", "keywords": "", "youtube_id": "KPeS2gdizhQ", "readable_id": "understanding-function-inverses-example"}, "kpG7xySkivg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kpG7xySkivg.mp4/kpG7xySkivg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kpG7xySkivg.mp4/kpG7xySkivg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kpG7xySkivg.m3u8/kpG7xySkivg.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-determinant-after-row-operations/", "duration": 625, "id": "kpG7xySkivg", "title": "Determinant after row operations", "format": "mp4", "description": "What happens to the determinant when we perform a row operation", "slug": "linear-algebra-determinant-after-row-operations", "kind": "Video", "video_id": "kpG7xySkivg", "keywords": "linear, algebra, determinant", "youtube_id": "kpG7xySkivg", "readable_id": "linear-algebra-determinant-after-row-operations"}, "9eSPhvhuInw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9eSPhvhuInw.mp4/9eSPhvhuInw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9eSPhvhuInw.mp4/9eSPhvhuInw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9eSPhvhuInw.m3u8/9eSPhvhuInw.m3u8"}, "duration": 308, "id": "9eSPhvhuInw", "title": "Negative signs in numerators and denominators", "format": "mp4", "description": "Negative signs in numerators and denominators", "path": "negative-signs-in-numerators-and-denominators/", "slug": "negative-signs-in-numerators-and-denominators", "kind": "Video", "video_id": "9eSPhvhuInw", "keywords": "", "youtube_id": "9eSPhvhuInw", "readable_id": "negative-signs-in-numerators-and-denominators"}, "JUGmviJC_pk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JUGmviJC_pk.mp4/JUGmviJC_pk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JUGmviJC_pk.mp4/JUGmviJC_pk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JUGmviJC_pk.m3u8/JUGmviJC_pk.m3u8"}, "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/negative-and-positive-exponents/", "duration": 139, "id": "JUGmviJC_pk", "title": "Negative and positive exponents", "format": "mp4", "description": "Negative and Positive Exponents", "slug": "negative-and-positive-exponents", "kind": "Video", "video_id": "JUGmviJC_pk", "keywords": "u11, l1, t1, we3, Negative, and, Positive, Exponents", "youtube_id": "JUGmviJC_pk", "readable_id": "negative-and-positive-exponents"}, "dqmaxkxInZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dqmaxkxInZ4.mp4/dqmaxkxInZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dqmaxkxInZ4.mp4/dqmaxkxInZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dqmaxkxInZ4.m3u8/dqmaxkxInZ4.m3u8"}, "duration": 446, "id": "dqmaxkxInZ4", "title": "Getting a new heart", "format": "mp4", "description": "Think through the result of getting a new heart, and how the heart can still maintain homeostasis when the nerves are no longer around. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/nerve-regulation-of-the-heart/getting-a-new-heart/", "slug": "getting-a-new-heart", "kind": "Video", "video_id": "dqmaxkxInZ4", "keywords": "", "youtube_id": "dqmaxkxInZ4", "readable_id": "getting-a-new-heart"}, "Vx5uoZAkxng": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vx5uoZAkxng.mp4/Vx5uoZAkxng.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vx5uoZAkxng.mp4/Vx5uoZAkxng.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vx5uoZAkxng.m3u8/Vx5uoZAkxng.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/ratio-word-problem-exercise-example-1/", "duration": 124, "id": "Vx5uoZAkxng", "title": "Ratio word problem: boys to girls", "format": "mp4", "description": "In this example, we are given a ratio and then asked to apply that ratio to solve a problem. No problem!", "slug": "ratio-word-problem-exercise-example-1", "kind": "Video", "video_id": "Vx5uoZAkxng", "keywords": "", "youtube_id": "Vx5uoZAkxng", "readable_id": "ratio-word-problem-exercise-example-1"}, "mDttV5UmJ1Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mDttV5UmJ1Q.mp4/mDttV5UmJ1Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mDttV5UmJ1Q.mp4/mDttV5UmJ1Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mDttV5UmJ1Q.m3u8/mDttV5UmJ1Q.m3u8"}, "duration": 131, "id": "mDttV5UmJ1Q", "title": "Add Spout's tail", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-10/", "slug": "solderless-spout-10", "kind": "Video", "video_id": "mDttV5UmJ1Q", "keywords": "", "youtube_id": "mDttV5UmJ1Q", "readable_id": "solderless-spout-10"}, "bJ_09eoCmag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bJ_09eoCmag.mp4/bJ_09eoCmag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bJ_09eoCmag.mp4/bJ_09eoCmag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bJ_09eoCmag.m3u8/bJ_09eoCmag.m3u8"}, "duration": 992, "id": "bJ_09eoCmag", "title": "Determining a position vector-valued function for a parametrization of two parameters", "format": "mp4", "description": "Determining a Position Vector-Valued Function for a Parametrization of Two Parameters", "path": "khan/math/multivariable-calculus/surface-integrals/surface_parametrization/determining-a-position-vector-valued-function-for-a-parametrization-of-two-parameters/", "slug": "determining-a-position-vector-valued-function-for-a-parametrization-of-two-parameters", "kind": "Video", "video_id": "bJ_09eoCmag", "keywords": "Determining, Position, Vector-Valued, Function, for, Parametrization, of, Two, Parameters", "youtube_id": "bJ_09eoCmag", "readable_id": "determining-a-position-vector-valued-function-for-a-parametrization-of-two-parameters"}, "katx69CGBwo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/katx69CGBwo.mp4/katx69CGBwo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/katx69CGBwo.mp4/katx69CGBwo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/katx69CGBwo.m3u8/katx69CGBwo.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/new-topic-2014-10-02t171114060z/the-harrowing-of-hell-c-1440-70/", "duration": 319, "id": "katx69CGBwo", "title": "The Harrowing of Hell", "format": "mp4", "description": "The Harrowing of Hell, c. 1440-70, carved painted and gilt alabaster, 58.3 x 31.5 cm (Victoria and Albert Museum) Speakers: Dr. Nancy Ross and Dr. Paul Binski", "slug": "the-harrowing-of-hell-c-1440-70", "kind": "Video", "video_id": "katx69CGBwo", "keywords": "art history,", "youtube_id": "katx69CGBwo", "readable_id": "the-harrowing-of-hell-c-1440-70"}, "IFFxSBx-P0U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IFFxSBx-P0U.mp4/IFFxSBx-P0U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IFFxSBx-P0U.mp4/IFFxSBx-P0U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IFFxSBx-P0U.m3u8/IFFxSBx-P0U.m3u8"}, "duration": 128, "id": "IFFxSBx-P0U", "title": "Protecting art in an earthquake: seismic isolator technology", "format": "mp4", "description": "What might happen to a fragile work of art during an earthquake? Learn how the Getty Museum's seismic isolator technology protects inherently unstable objects. Love art? Follow us on Google+", "path": "protecting-art-earthquake-seismic-isolator-technology/", "slug": "protecting-art-earthquake-seismic-isolator-technology", "kind": "Video", "video_id": "IFFxSBx-P0U", "keywords": "", "youtube_id": "IFFxSBx-P0U", "readable_id": "protecting-art-earthquake-seismic-isolator-technology"}, "a1lVOO9Y080": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a1lVOO9Y080.mp4/a1lVOO9Y080.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a1lVOO9Y080.mp4/a1lVOO9Y080.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a1lVOO9Y080.m3u8/a1lVOO9Y080.m3u8"}, "duration": 657, "id": "a1lVOO9Y080", "title": "Credit default swaps", "format": "mp4", "description": "Introduction to credit default swaps", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/credit-default-swaps/", "slug": "credit-default-swaps", "kind": "Video", "video_id": "a1lVOO9Y080", "keywords": "credit, default, swap, aig", "youtube_id": "a1lVOO9Y080", "readable_id": "credit-default-swaps"}, "2axaRJQkfVk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2axaRJQkfVk.mp4/2axaRJQkfVk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2axaRJQkfVk.mp4/2axaRJQkfVk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2axaRJQkfVk.m3u8/2axaRJQkfVk.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-2-c-d/", "duration": 447, "id": "2axaRJQkfVk", "title": "2011 Calculus AB free response #2 (c & d)", "format": "mp4", "description": "Second fundamental theorem of calculus application", "slug": "2011-calculus-ab-free-response-2-c-d", "kind": "Video", "video_id": "2axaRJQkfVk", "keywords": "advanced, placement, exam", "youtube_id": "2axaRJQkfVk", "readable_id": "2011-calculus-ab-free-response-2-c-d"}, "9V1bipPkCTU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9V1bipPkCTU.mp4/9V1bipPkCTU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9V1bipPkCTU.mp4/9V1bipPkCTU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9V1bipPkCTU.m3u8/9V1bipPkCTU.m3u8"}, "duration": 632, "id": "9V1bipPkCTU", "title": "Bitcoin: Proof of work", "format": "mp4", "description": "An explanation of cryptographic proof-of-work protocols, which are used in various cryptographic applications and in bitcoin mining.", "path": "bitcoin-proof-of-work/", "slug": "bitcoin-proof-of-work", "kind": "Video", "video_id": "9V1bipPkCTU", "keywords": "bitcoin, currency", "youtube_id": "9V1bipPkCTU", "readable_id": "bitcoin-proof-of-work"}, "Weymq89kwAw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Weymq89kwAw.mp4/Weymq89kwAw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Weymq89kwAw.mp4/Weymq89kwAw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Weymq89kwAw.m3u8/Weymq89kwAw.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-magician-s-guess/", "duration": 102, "id": "Weymq89kwAw", "title": "DLab: Magician's guess simulation", "format": "mp4", "description": "", "slug": "discovery-lab-magician-s-guess", "kind": "Video", "video_id": "Weymq89kwAw", "keywords": "", "youtube_id": "Weymq89kwAw", "readable_id": "discovery-lab-magician-s-guess"}, "-W3RkgvLrGI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-W3RkgvLrGI.mp4/-W3RkgvLrGI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-W3RkgvLrGI.mp4/-W3RkgvLrGI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-W3RkgvLrGI.m3u8/-W3RkgvLrGI.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/old-projectile-motion/projectile-motion-part-4/", "duration": 537, "id": "-W3RkgvLrGI", "title": "Projectile motion (part 4)", "format": "mp4", "description": "Solving for time when you are given the change in distance, acceleration, and initial velocity", "slug": "projectile-motion-part-4", "kind": "Video", "video_id": "-W3RkgvLrGI", "keywords": "physics, accleration, time, velocity, khan", "youtube_id": "-W3RkgvLrGI", "readable_id": "projectile-motion-part-4"}, "bIFdW0NZ9W4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bIFdW0NZ9W4.mp4/bIFdW0NZ9W4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bIFdW0NZ9W4.mp4/bIFdW0NZ9W4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bIFdW0NZ9W4.m3u8/bIFdW0NZ9W4.m3u8"}, "duration": 204, "id": "bIFdW0NZ9W4", "title": "Negative fractional exponent examples 2", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/negative-fractional-exponent-examples-2/", "slug": "negative-fractional-exponent-examples-2", "kind": "Video", "video_id": "bIFdW0NZ9W4", "keywords": "", "youtube_id": "bIFdW0NZ9W4", "readable_id": "negative-fractional-exponent-examples-2"}, "qGmJ4F3b5W8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qGmJ4F3b5W8.mp4/qGmJ4F3b5W8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qGmJ4F3b5W8.mp4/qGmJ4F3b5W8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qGmJ4F3b5W8.m3u8/qGmJ4F3b5W8.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/graphical-relations-and-functions/", "duration": 247, "id": "qGmJ4F3b5W8", "title": "Graphical relations and functions", "format": "mp4", "description": "Graphical Relations and Functions", "slug": "graphical-relations-and-functions", "kind": "Video", "video_id": "qGmJ4F3b5W8", "keywords": "u17_l1_t1_we3, Graphical, Relations, and, Functions", "youtube_id": "qGmJ4F3b5W8", "readable_id": "graphical-relations-and-functions"}, "6V9x0d5wRpI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6V9x0d5wRpI.mp4/6V9x0d5wRpI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6V9x0d5wRpI.mp4/6V9x0d5wRpI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6V9x0d5wRpI.m3u8/6V9x0d5wRpI.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/rococo/lisabeth-louise-vigee-le-brun-madame-perregaux-1789/", "duration": 104, "id": "6V9x0d5wRpI", "title": "Vig\u00e9e Le Brun, Madame Perregaux", "format": "mp4", "description": "\u00c9lisabeth-Louise Vig\u00e9e Le Brun, Madame Perregaux, 1789, oil on oak panel,\n99.6 x 78.5 cm (Wallace Collection, London)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "lisabeth-louise-vigee-le-brun-madame-perregaux-1789", "kind": "Video", "video_id": "6V9x0d5wRpI", "keywords": "smarthistory, Elisabeth-Louise Vigee Le Brun, Le Brun, Vigee Le Brun, Madame Perregaux, French painting, 18th century art, art history, Wallace Collection, London", "youtube_id": "6V9x0d5wRpI", "readable_id": "lisabeth-louise-vigee-le-brun-madame-perregaux-1789"}, "Yiy84xYQ3es": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yiy84xYQ3es.mp4/Yiy84xYQ3es.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yiy84xYQ3es.mp4/Yiy84xYQ3es.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yiy84xYQ3es.m3u8/Yiy84xYQ3es.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/halogenation/", "duration": 493, "id": "Yiy84xYQ3es", "title": "Halogenation", "format": "mp4", "description": "", "slug": "halogenation", "kind": "Video", "video_id": "Yiy84xYQ3es", "keywords": "", "youtube_id": "Yiy84xYQ3es", "readable_id": "halogenation"}, "mI84WDfhuYA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mI84WDfhuYA.mp4/mI84WDfhuYA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mI84WDfhuYA.mp4/mI84WDfhuYA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mI84WDfhuYA.m3u8/mI84WDfhuYA.m3u8"}, "duration": 242, "id": "mI84WDfhuYA", "title": "Unit conversion: ordering metric distances", "format": "mp4", "description": "Although not all countries use the metric system, almost all do use it some. Let's see if you can help us order these metric distances. It's a great lesson on the powers of 10, too!", "path": "ordering-metric-distances/", "slug": "ordering-metric-distances", "kind": "Video", "video_id": "mI84WDfhuYA", "keywords": "", "youtube_id": "mI84WDfhuYA", "readable_id": "ordering-metric-distances"}, "CEdXvoAv_oM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CEdXvoAv_oM.mp4/CEdXvoAv_oM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CEdXvoAv_oM.mp4/CEdXvoAv_oM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CEdXvoAv_oM.m3u8/CEdXvoAv_oM.m3u8"}, "duration": 287, "id": "CEdXvoAv_oM", "title": "Slow sock on Lubricon VI", "format": "mp4", "description": "What would happen to a slowly moving frozen sock on a frictionless planet", "path": "khan/test-prep/mcat/physical-processes/normal-forces/slow-sock-on-lubricon-vi/", "slug": "slow-sock-on-lubricon-vi", "kind": "Video", "video_id": "CEdXvoAv_oM", "keywords": "newton's, first, law", "youtube_id": "CEdXvoAv_oM", "readable_id": "slow-sock-on-lubricon-vi"}, "i0VS3eEGjiQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i0VS3eEGjiQ.mp4/i0VS3eEGjiQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i0VS3eEGjiQ.mp4/i0VS3eEGjiQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i0VS3eEGjiQ.m3u8/i0VS3eEGjiQ.m3u8"}, "duration": 416, "id": "i0VS3eEGjiQ", "title": "Proving that the centroid is 2-3rds along the median", "format": "mp4", "description": "Showing that the centroid divides each median into segments with a 2:1 ratio (or that the centroid is 2/3 along the median)", "path": "khan/math/geometry/triangle-properties/medians_centroids/proving-that-the-centroid-is-2-3rds-along-the-median/", "slug": "proving-that-the-centroid-is-2-3rds-along-the-median", "kind": "Video", "video_id": "i0VS3eEGjiQ", "keywords": "geometry, triangle", "youtube_id": "i0VS3eEGjiQ", "readable_id": "proving-that-the-centroid-is-2-3rds-along-the-median"}, "BRVPlDCMgMg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BRVPlDCMgMg.mp4/BRVPlDCMgMg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BRVPlDCMgMg.mp4/BRVPlDCMgMg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BRVPlDCMgMg.m3u8/BRVPlDCMgMg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/second-order-reaction-with-calculus/", "duration": 434, "id": "BRVPlDCMgMg", "title": "Second-order reaction (with calculus)", "format": "mp4", "description": "", "slug": "second-order-reaction-with-calculus", "kind": "Video", "video_id": "BRVPlDCMgMg", "keywords": "", "youtube_id": "BRVPlDCMgMg", "readable_id": "second-order-reaction-with-calculus"}, "yIWKrQTznXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yIWKrQTznXc.mp4/yIWKrQTznXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yIWKrQTznXc.mp4/yIWKrQTznXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yIWKrQTznXc.m3u8/yIWKrQTznXc.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/emotion/autonomic-nervous-system-ans-and-physiologic-markers-of-emotion/", "duration": 636, "id": "yIWKrQTznXc", "title": "Autonomic nervous system (ANS) and physiologic markers of emotion", "format": "mp4", "description": "", "slug": "autonomic-nervous-system-ans-and-physiologic-markers-of-emotion", "kind": "Video", "video_id": "yIWKrQTznXc", "keywords": "", "youtube_id": "yIWKrQTznXc", "readable_id": "autonomic-nervous-system-ans-and-physiologic-markers-of-emotion"}, "8In5PK1yUAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8In5PK1yUAA.mp4/8In5PK1yUAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8In5PK1yUAA.mp4/8In5PK1yUAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8In5PK1yUAA.m3u8/8In5PK1yUAA.m3u8"}, "duration": 243, "id": "8In5PK1yUAA", "title": "Carry trade basics", "format": "mp4", "description": "The mechanics of the carry trade", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/carry-trade-basics/", "slug": "carry-trade-basics", "kind": "Video", "video_id": "8In5PK1yUAA", "keywords": "finance, macro, economics, japan, iceland", "youtube_id": "8In5PK1yUAA", "readable_id": "carry-trade-basics"}, "fGok2nHOjnI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fGok2nHOjnI.mp4/fGok2nHOjnI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fGok2nHOjnI.mp4/fGok2nHOjnI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fGok2nHOjnI.m3u8/fGok2nHOjnI.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-within-20/sea-monsters-and-superheroes/", "duration": 218, "id": "fGok2nHOjnI", "title": "Sea monsters and superheroes", "format": "mp4", "description": "", "slug": "sea-monsters-and-superheroes", "kind": "Video", "video_id": "fGok2nHOjnI", "keywords": "", "youtube_id": "fGok2nHOjnI", "readable_id": "sea-monsters-and-superheroes"}, "Qcd0IhW_85I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qcd0IhW_85I.mp4/Qcd0IhW_85I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qcd0IhW_85I.mp4/Qcd0IhW_85I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qcd0IhW_85I.m3u8/Qcd0IhW_85I.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/bohr-model-radii-derivation-using-physics/", "duration": 652, "id": "Qcd0IhW_85I", "title": "Bohr model radii (derivation using physics)", "format": "mp4", "description": "", "slug": "bohr-model-radii-derivation-using-physics", "kind": "Video", "video_id": "Qcd0IhW_85I", "keywords": "", "youtube_id": "Qcd0IhW_85I", "readable_id": "bohr-model-radii-derivation-using-physics"}, "OcUMAHfo9MA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OcUMAHfo9MA.mp4/OcUMAHfo9MA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OcUMAHfo9MA.mp4/OcUMAHfo9MA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OcUMAHfo9MA.m3u8/OcUMAHfo9MA.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/caravaggio-contarelli-chapel-san-luigi-dei-francesi-rome/", "duration": 270, "id": "OcUMAHfo9MA", "title": "Caravaggio, Contarelli Chapel, San Luigi dei Francesi", "format": "mp4", "description": "Caravaggio, Calling of St. Matthew, c. 1599-1600, oil on canvas (Contarelli Chapel, San Luigi dei Francesi, Rome). A Smarthistory video by Beth Harris and Steven Zucker", "slug": "caravaggio-contarelli-chapel-san-luigi-dei-francesi-rome", "kind": "Video", "video_id": "OcUMAHfo9MA", "keywords": "Rome, Caravaggio, Calling of St. Matthew, Contarelli Chapel, Baroque art, Smarthistory", "youtube_id": "OcUMAHfo9MA", "readable_id": "caravaggio-contarelli-chapel-san-luigi-dei-francesi-rome"}, "KIFdiufU8lc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KIFdiufU8lc.mp4/KIFdiufU8lc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KIFdiufU8lc.mp4/KIFdiufU8lc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KIFdiufU8lc.m3u8/KIFdiufU8lc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-10/", "duration": 134, "id": "KIFdiufU8lc", "title": "10 Finding angle measure", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-10", "kind": "Video", "video_id": "KIFdiufU8lc", "keywords": "", "youtube_id": "KIFdiufU8lc", "readable_id": "sat-2010-may-6-10"}, "G37qpVUzB1g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G37qpVUzB1g.mp4/G37qpVUzB1g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G37qpVUzB1g.mp4/G37qpVUzB1g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G37qpVUzB1g.m3u8/G37qpVUzB1g.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/babylonian/babylonian-mind/", "duration": 207, "id": "G37qpVUzB1g", "title": "The Babylonian mind", "format": "mp4", "description": "Trace the legacy of Babylonian discoveries and ideas, including their mathematical system based on 60 and their desire to predict the future. With British Museum curator Irving Finkel. \u00a9 Trustees of the British Museum", "slug": "babylonian-mind", "kind": "Video", "video_id": "G37qpVUzB1g", "keywords": "British Museum", "youtube_id": "G37qpVUzB1g", "readable_id": "babylonian-mind"}, "XDjbNykJ28E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XDjbNykJ28E.mp4/XDjbNykJ28E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XDjbNykJ28E.mp4/XDjbNykJ28E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XDjbNykJ28E.m3u8/XDjbNykJ28E.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-word-problem-1/", "duration": 276, "id": "XDjbNykJ28E", "title": "Multiplying fractions word problem: pigging out on pumpkin pie", "format": "mp4", "description": "Oops! Someone tried to solve this problem and made a mistake. See if you can spot the error.", "slug": "multiplying-fractions-word-problem-1", "kind": "Video", "video_id": "XDjbNykJ28E", "keywords": "", "youtube_id": "XDjbNykJ28E", "readable_id": "multiplying-fractions-word-problem-1"}, "21vbBiCVijE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/21vbBiCVijE.mp4/21vbBiCVijE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/21vbBiCVijE.mp4/21vbBiCVijE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/21vbBiCVijE.m3u8/21vbBiCVijE.m3u8"}, "duration": 478, "id": "21vbBiCVijE", "title": "Incenter and incircles of a triangle", "format": "mp4", "description": "Using angle bisectors to find the incenter and incircle of a triangle", "path": "khan/math/geometry/triangle-properties/angle_bisectors/incenter-and-incircles-of-a-triangle/", "slug": "incenter-and-incircles-of-a-triangle", "kind": "Video", "video_id": "21vbBiCVijE", "keywords": "Incenter, and, incircles, of, a, triangle", "youtube_id": "21vbBiCVijE", "readable_id": "incenter-and-incircles-of-a-triangle"}, "6U9f8Q3Y_SY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6U9f8Q3Y_SY.mp4/6U9f8Q3Y_SY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6U9f8Q3Y_SY.mp4/6U9f8Q3Y_SY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6U9f8Q3Y_SY.m3u8/6U9f8Q3Y_SY.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/batteries/electrolyte-salt-test/", "duration": 64, "id": "6U9f8Q3Y_SY", "title": "Electrolyte (salt test)", "format": "mp4", "description": "What happens to the deflection when we add salt to an electrolyte? Why?", "slug": "electrolyte-salt-test", "kind": "Video", "video_id": "6U9f8Q3Y_SY", "keywords": "electrolye", "youtube_id": "6U9f8Q3Y_SY", "readable_id": "electrolyte-salt-test"}, "0mWq45973ok": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0mWq45973ok.mp4/0mWq45973ok.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0mWq45973ok.mp4/0mWq45973ok.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0mWq45973ok.m3u8/0mWq45973ok.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-3/", "duration": 115, "id": "0mWq45973ok", "title": "3 Letter symmetry", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-3", "kind": "Video", "video_id": "0mWq45973ok", "keywords": "", "youtube_id": "0mWq45973ok", "readable_id": "sat-getting-ready-2-3"}, "NR3779ef9yQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NR3779ef9yQ.mp4/NR3779ef9yQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NR3779ef9yQ.mp4/NR3779ef9yQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NR3779ef9yQ.m3u8/NR3779ef9yQ.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/mendelian-genetics/an-introduction-to-mendelian-genetics/", "duration": 310, "id": "NR3779ef9yQ", "title": "An Introduction to Mendelian Genetics", "format": "mp4", "description": "An introduction to Mendelian Genetics and inheritance. By Ross Firestone.\nAn introduction to Mendelian Genetics and inheritance.\n\n\u00a0\n", "slug": "an-introduction-to-mendelian-genetics", "kind": "Video", "video_id": "NR3779ef9yQ", "keywords": "", "youtube_id": "NR3779ef9yQ", "readable_id": "an-introduction-to-mendelian-genetics"}, "BTnAlNSgNsY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BTnAlNSgNsY.mp4/BTnAlNSgNsY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BTnAlNSgNsY.mp4/BTnAlNSgNsY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BTnAlNSgNsY.m3u8/BTnAlNSgNsY.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/complementary-supplementary-angl/complementary-and-supplementary-angles/", "duration": 511, "id": "BTnAlNSgNsY", "title": "Complementary and supplementary angles", "format": "mp4", "description": "Let's add some tools to our geometry tool belt. Here's a thorough explanation of complementary and supplementary angles, as well as definitions of adjacent and straight angles.", "slug": "complementary-and-supplementary-angles", "kind": "Video", "video_id": "BTnAlNSgNsY", "keywords": "geometry", "youtube_id": "BTnAlNSgNsY", "readable_id": "complementary-and-supplementary-angles"}, "jN03g05TSWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jN03g05TSWM.mp4/jN03g05TSWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jN03g05TSWM.mp4/jN03g05TSWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jN03g05TSWM.m3u8/jN03g05TSWM.m3u8"}, "duration": 533, "id": "jN03g05TSWM", "title": "Detectable civilizations in our galaxy 2", "format": "mp4", "description": "Why do we even care about the Drake Equation. Thinking about the fraction of a planet's life when a civilization might be detectable.", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/life-in-universe-topic/detectable-civilizations-in-our-galaxy-2/", "slug": "detectable-civilizations-in-our-galaxy-2", "kind": "Video", "video_id": "jN03g05TSWM", "keywords": "SETI, drake, civilization", "youtube_id": "jN03g05TSWM", "readable_id": "detectable-civilizations-in-our-galaxy-2"}, "2439OIVBgPg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2439OIVBgPg.mp4/2439OIVBgPg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2439OIVBgPg.mp4/2439OIVBgPg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2439OIVBgPg.m3u8/2439OIVBgPg.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/introduction-to-angles-old/", "duration": 595, "id": "2439OIVBgPg", "title": "Introduction to angles (old)", "format": "mp4", "description": "What an angle is. Angles in a circle. Complementary and supplementary angles.", "slug": "introduction-to-angles-old", "kind": "Video", "video_id": "2439OIVBgPg", "keywords": "angles, geometry, supplementary, complementary, math, CC_4_G_1, CC_4_G_2, CC_4_MD_5", "youtube_id": "2439OIVBgPg", "readable_id": "introduction-to-angles-old"}, "a1Ye5RcWOqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a1Ye5RcWOqg.mp4/a1Ye5RcWOqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a1Ye5RcWOqg.mp4/a1Ye5RcWOqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a1Ye5RcWOqg.m3u8/a1Ye5RcWOqg.m3u8"}, "duration": 647, "id": "a1Ye5RcWOqg", "title": "Comparing population proportions 1", "format": "mp4", "description": "Comparing Population Proportions 1", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/comparing-population-proportions-1/", "slug": "comparing-population-proportions-1", "kind": "Video", "video_id": "a1Ye5RcWOqg", "keywords": "Comparing, Population, Proportions, CC_7_SP_3, CC_7_SP_4", "youtube_id": "a1Ye5RcWOqg", "readable_id": "comparing-population-proportions-1"}, "JvDpYlyKkNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JvDpYlyKkNU.mp4/JvDpYlyKkNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JvDpYlyKkNU.mp4/JvDpYlyKkNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JvDpYlyKkNU.m3u8/JvDpYlyKkNU.m3u8"}, "duration": 231, "id": "JvDpYlyKkNU", "title": "Radius and center for a circle equation in standard form", "format": "mp4", "description": "", "path": "khan/math/algebra2/conics_precalc/circles-tutorial-precalc/radius-and-center-for-a-circle-equation-in-standard-form/", "slug": "radius-and-center-for-a-circle-equation-in-standard-form", "kind": "Video", "video_id": "JvDpYlyKkNU", "keywords": "", "youtube_id": "JvDpYlyKkNU", "readable_id": "radius-and-center-for-a-circle-equation-in-standard-form"}, "fyshrv6YDVY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fyshrv6YDVY.mp4/fyshrv6YDVY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fyshrv6YDVY.mp4/fyshrv6YDVY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fyshrv6YDVY.m3u8/fyshrv6YDVY.m3u8"}, "duration": 87, "id": "fyshrv6YDVY", "title": "Logarithmic equations", "format": "mp4", "description": "Logarithmic Equations", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/logarithmic-equations/", "slug": "logarithmic-equations", "kind": "Video", "video_id": "fyshrv6YDVY", "keywords": "u18_l2_t1_we1, Logarithmic, Equations", "youtube_id": "fyshrv6YDVY", "readable_id": "logarithmic-equations"}, "c6-FJRda_Vc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c6-FJRda_Vc.mp4/c6-FJRda_Vc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c6-FJRda_Vc.mp4/c6-FJRda_Vc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c6-FJRda_Vc.m3u8/c6-FJRda_Vc.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/proportionality-constant-for-direct-variation/", "duration": 104, "id": "c6-FJRda_Vc", "title": "Proportionality constant for direct variation", "format": "mp4", "description": "Proportionality Constant for Direct Variation", "slug": "proportionality-constant-for-direct-variation", "kind": "Video", "video_id": "c6-FJRda_Vc", "keywords": "u15_l3_t1_we3, Proportionality, Constant, for, Direct, Variation, CC_6_EE_2_c, CC_6_EE_9", "youtube_id": "c6-FJRda_Vc", "readable_id": "proportionality-constant-for-direct-variation"}, "IuBoeDihLUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IuBoeDihLUc.mp4/IuBoeDihLUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IuBoeDihLUc.mp4/IuBoeDihLUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IuBoeDihLUc.m3u8/IuBoeDihLUc.m3u8"}, "duration": 641, "id": "IuBoeDihLUc", "title": "Mass and weight clarification", "format": "mp4", "description": "Difference between mass and weight", "path": "khan/science/physics/newton-gravitation/gravity-newtonian/mass-and-weight-clarification/", "slug": "mass-and-weight-clarification", "kind": "Video", "video_id": "IuBoeDihLUc", "keywords": "physics, mass, weight, slug, pound, kilogram, newton", "youtube_id": "IuBoeDihLUc", "readable_id": "mass-and-weight-clarification"}, "usnv1_xRCvs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/usnv1_xRCvs.mp4/usnv1_xRCvs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/usnv1_xRCvs.mp4/usnv1_xRCvs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/usnv1_xRCvs.m3u8/usnv1_xRCvs.m3u8"}, "path": "khan/test-prep/mcat/behavior/behavior-and-genetics/twin-studies-and-adoption-studies/", "duration": 592, "id": "usnv1_xRCvs", "title": "Twin studies and adoption studies", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "twin-studies-and-adoption-studies", "kind": "Video", "video_id": "usnv1_xRCvs", "keywords": "", "youtube_id": "usnv1_xRCvs", "readable_id": "twin-studies-and-adoption-studies"}, "x7wZCtFWblE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x7wZCtFWblE.mp4/x7wZCtFWblE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x7wZCtFWblE.mp4/x7wZCtFWblE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x7wZCtFWblE.m3u8/x7wZCtFWblE.m3u8"}, "duration": 258, "id": "x7wZCtFWblE", "title": "Behavioral theory", "format": "mp4", "description": "Explore the contributions two major behavioral theorists have made to the Behavioral Theory of Personality. By Shreena Desai. ", "path": "khan/test-prep/mcat/behavior/theories-personality/behavioral-theory/", "slug": "behavioral-theory", "kind": "Video", "video_id": "x7wZCtFWblE", "keywords": "behavioral theory", "youtube_id": "x7wZCtFWblE", "readable_id": "behavioral-theory"}, "PySVsEUnrng": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PySVsEUnrng.mp4/PySVsEUnrng.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PySVsEUnrng.mp4/PySVsEUnrng.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PySVsEUnrng.m3u8/PySVsEUnrng.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/dna-repair-2/", "duration": 558, "id": "PySVsEUnrng", "title": "DNA repair 2", "format": "mp4", "description": "", "slug": "dna-repair-2", "kind": "Video", "video_id": "PySVsEUnrng", "keywords": "", "youtube_id": "PySVsEUnrng", "readable_id": "dna-repair-2"}, "th06SCNNZ60": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/th06SCNNZ60.mp4/th06SCNNZ60.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/th06SCNNZ60.mp4/th06SCNNZ60.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/th06SCNNZ60.m3u8/th06SCNNZ60.m3u8"}, "duration": 1009, "id": "th06SCNNZ60", "title": "Roth IRAs", "format": "mp4", "description": "Introduction to Roth IRA's", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/ira-401ks/roth-iras/", "slug": "roth-iras", "kind": "Video", "video_id": "th06SCNNZ60", "keywords": "Roth, IRA", "youtube_id": "th06SCNNZ60", "readable_id": "roth-iras"}, "8VgmBe3ulb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8VgmBe3ulb8.mp4/8VgmBe3ulb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8VgmBe3ulb8.mp4/8VgmBe3ulb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8VgmBe3ulb8.m3u8/8VgmBe3ulb8.m3u8"}, "duration": 745, "id": "8VgmBe3ulb8", "title": "Recognizing odd and even functions", "format": "mp4", "description": "Even and odd functions", "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/recognizing-odd-and-even-functions/", "slug": "recognizing-odd-and-even-functions", "kind": "Video", "video_id": "8VgmBe3ulb8", "keywords": "even, odd, functions, CC_39336_F-BF_3", "youtube_id": "8VgmBe3ulb8", "readable_id": "recognizing-odd-and-even-functions"}, "oC_-oUOEaVM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oC_-oUOEaVM.mp4/oC_-oUOEaVM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oC_-oUOEaVM.mp4/oC_-oUOEaVM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oC_-oUOEaVM.m3u8/oC_-oUOEaVM.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/evidence-that-dna-is-genetic-material-2/", "duration": 616, "id": "oC_-oUOEaVM", "title": "Evidence that DNA is genetic material 2", "format": "mp4", "description": "", "slug": "evidence-that-dna-is-genetic-material-2", "kind": "Video", "video_id": "oC_-oUOEaVM", "keywords": "", "youtube_id": "oC_-oUOEaVM", "readable_id": "evidence-that-dna-is-genetic-material-2"}, "QRPRmRAOCog": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QRPRmRAOCog.mp4/QRPRmRAOCog.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QRPRmRAOCog.mp4/QRPRmRAOCog.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QRPRmRAOCog.m3u8/QRPRmRAOCog.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/gene-control/oncogenes/", "duration": 421, "id": "QRPRmRAOCog", "title": "Oncogenes", "format": "mp4", "description": "", "slug": "oncogenes", "kind": "Video", "video_id": "QRPRmRAOCog", "keywords": "", "youtube_id": "QRPRmRAOCog", "readable_id": "oncogenes"}, "RywHs4kKxjA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RywHs4kKxjA.mp4/RywHs4kKxjA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RywHs4kKxjA.mp4/RywHs4kKxjA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RywHs4kKxjA.m3u8/RywHs4kKxjA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-nose-sinus-upper-respiratory/what-is-sinusitis/", "duration": 547, "id": "RywHs4kKxjA", "title": "What is sinusitis?", "format": "mp4", "description": "", "slug": "what-is-sinusitis", "kind": "Video", "video_id": "RywHs4kKxjA", "keywords": "", "youtube_id": "RywHs4kKxjA", "readable_id": "what-is-sinusitis"}, "E_Hwhp74Rhc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E_Hwhp74Rhc.mp4/E_Hwhp74Rhc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E_Hwhp74Rhc.mp4/E_Hwhp74Rhc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E_Hwhp74Rhc.m3u8/E_Hwhp74Rhc.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-example-part-1-parameterizing-the-unit-sphere/", "duration": 665, "id": "E_Hwhp74Rhc", "title": "Surface integral example part 1: Parameterizing the unit sphere", "format": "mp4", "description": "Visualizing a suitable parameterization", "slug": "surface-integral-example-part-1-parameterizing-the-unit-sphere", "kind": "Video", "video_id": "E_Hwhp74Rhc", "keywords": "vector, calculus, surface, integral", "youtube_id": "E_Hwhp74Rhc", "readable_id": "surface-integral-example-part-1-parameterizing-the-unit-sphere"}, "3yBYXNW1Nls": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3yBYXNW1Nls.mp4/3yBYXNW1Nls.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3yBYXNW1Nls.mp4/3yBYXNW1Nls.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3yBYXNW1Nls.m3u8/3yBYXNW1Nls.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-functions-special-angles/trig-functions-special-angles/", "duration": 582, "id": "3yBYXNW1Nls", "title": "Finding trig functions of special angles example", "format": "mp4", "description": "", "slug": "trig-functions-special-angles", "kind": "Video", "video_id": "3yBYXNW1Nls", "keywords": "", "youtube_id": "3yBYXNW1Nls", "readable_id": "trig-functions-special-angles"}, "DLD23lPv8eo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DLD23lPv8eo.mp4/DLD23lPv8eo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DLD23lPv8eo.mp4/DLD23lPv8eo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DLD23lPv8eo.m3u8/DLD23lPv8eo.m3u8"}, "duration": 813, "id": "DLD23lPv8eo", "title": "What is preload?", "format": "mp4", "description": "Some say Preload = End-Diastolic Pressure, others say Preload = End-Diastolic Volume, so which one is it? Watch and find out! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/what-is-preload/", "slug": "what-is-preload", "kind": "Video", "video_id": "DLD23lPv8eo", "keywords": "", "youtube_id": "DLD23lPv8eo", "readable_id": "what-is-preload"}, "ZgFXL6SEUiI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZgFXL6SEUiI.mp4/ZgFXL6SEUiI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZgFXL6SEUiI.mp4/ZgFXL6SEUiI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZgFXL6SEUiI.m3u8/ZgFXL6SEUiI.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/addition-and-subtraction-of-polynomials/", "duration": 959, "id": "ZgFXL6SEUiI", "title": "Addition and subtraction of polynomials", "format": "mp4", "description": "Addition and Subtraction of Polynomials", "slug": "addition-and-subtraction-of-polynomials", "kind": "Video", "video_id": "ZgFXL6SEUiI", "keywords": "Addition, and, Subtraction, of, Polynomials, CC_39336_A-APR_1", "youtube_id": "ZgFXL6SEUiI", "readable_id": "addition-and-subtraction-of-polynomials"}, "4HkbFUoX0iI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4HkbFUoX0iI.mp4/4HkbFUoX0iI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4HkbFUoX0iI.mp4/4HkbFUoX0iI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4HkbFUoX0iI.m3u8/4HkbFUoX0iI.m3u8"}, "duration": 151, "id": "4HkbFUoX0iI", "title": "Power connector for the Arduino", "format": "mp4", "description": "In this video we show you how to create a power connector for your arduino.", "path": "khan/science/discoveries-projects/robots/bit-zee/making-a-power-connector-for-the-arduino/", "slug": "making-a-power-connector-for-the-arduino", "kind": "Video", "video_id": "4HkbFUoX0iI", "keywords": "Arduino power connector, hack, make, diy", "youtube_id": "4HkbFUoX0iI", "readable_id": "making-a-power-connector-for-the-arduino"}, "_HFTRQRpzFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_HFTRQRpzFM.mp4/_HFTRQRpzFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_HFTRQRpzFM.mp4/_HFTRQRpzFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_HFTRQRpzFM.m3u8/_HFTRQRpzFM.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/fundamental-theorem-of-algebra/possible-real-roots/", "duration": 226, "id": "_HFTRQRpzFM", "title": "Possible number of real roots", "format": "mp4", "description": "", "slug": "possible-real-roots", "kind": "Video", "video_id": "_HFTRQRpzFM", "keywords": "", "youtube_id": "_HFTRQRpzFM", "readable_id": "possible-real-roots"}, "1ul8g55dYA4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1ul8g55dYA4.mp4/1ul8g55dYA4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1ul8g55dYA4.mp4/1ul8g55dYA4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1ul8g55dYA4.m3u8/1ul8g55dYA4.m3u8"}, "duration": 543, "id": "1ul8g55dYA4", "title": "Bhaskara's proof of the Pythagorean theorem", "format": "mp4", "description": "An elegant visual proof of the Pythagorean Theorem developed by the 12th century Indian mathematician Bhaskara.", "path": "khan/math/geometry/right_triangles_topic/pythagorean_proofs/bhaskara-s-proof-of-pythagorean-theorem-avi/", "slug": "bhaskara-s-proof-of-pythagorean-theorem-avi", "kind": "Video", "video_id": "1ul8g55dYA4", "keywords": "", "youtube_id": "1ul8g55dYA4", "readable_id": "bhaskara-s-proof-of-pythagorean-theorem-avi"}, "tEHF3JB2ZqE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tEHF3JB2ZqE.mp4/tEHF3JB2ZqE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tEHF3JB2ZqE.mp4/tEHF3JB2ZqE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tEHF3JB2ZqE.m3u8/tEHF3JB2ZqE.m3u8"}, "duration": 636, "id": "tEHF3JB2ZqE", "title": "Coal, steam, and the Industrial Revolution", "format": "mp4", "description": "In which John Green wraps up revolutions month with what is arguably the most revolutionary of modern revolutions, the Industrial Revolution. While very few leaders were beheaded in the course of this one, it changed the lives of more people more dramatically than any of the political revolutions we've discussed. So, why did the Industrial Revolution happen around 1750 in the United Kingdom? Coal. Easily accessible coal, it turns out. All this, plus you'll finally learn the difference between James Watt and Thomas Newcomen, and will never again be caught telling people that your blender has a 900 Newcomen motor.", "path": "khan/humanities/history/crashcourse-worldhistory/you-aint-the-boss-of-me-2/crash-course-world-history-32/", "slug": "crash-course-world-history-32", "kind": "Video", "video_id": "tEHF3JB2ZqE", "keywords": "crash course", "youtube_id": "tEHF3JB2ZqE", "readable_id": "crash-course-world-history-32"}, "bmjg7lq4m4o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bmjg7lq4m4o.mp4/bmjg7lq4m4o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bmjg7lq4m4o.mp4/bmjg7lq4m4o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bmjg7lq4m4o.m3u8/bmjg7lq4m4o.m3u8"}, "path": "khan/science/chemistry/chemical-reactions-stoichiome/empirical-molecular-formula/empirical-molecular-and-structural-formulas/", "duration": 410, "id": "bmjg7lq4m4o", "title": "Empirical, molecular, and structural formulas", "format": "mp4", "description": "", "slug": "empirical-molecular-and-structural-formulas", "kind": "Video", "video_id": "bmjg7lq4m4o", "keywords": "", "youtube_id": "bmjg7lq4m4o", "readable_id": "empirical-molecular-and-structural-formulas"}, "eTDaJ4ebK28": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eTDaJ4ebK28.mp4/eTDaJ4ebK28.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eTDaJ4ebK28.mp4/eTDaJ4ebK28.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eTDaJ4ebK28.m3u8/eTDaJ4ebK28.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/inverse-trig-functions-arccos/", "duration": 818, "id": "eTDaJ4ebK28", "title": "Inverse trig functions: arccos", "format": "mp4", "description": "Understanding the inverse cosine or arccos function", "slug": "inverse-trig-functions-arccos", "kind": "Video", "video_id": "eTDaJ4ebK28", "keywords": "trigonometry, arccos, inverse, CC_39336_F-BF_4", "youtube_id": "eTDaJ4ebK28", "readable_id": "inverse-trig-functions-arccos"}, "F8RCR_1jIAk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F8RCR_1jIAk.mp4/F8RCR_1jIAk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F8RCR_1jIAk.mp4/F8RCR_1jIAk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F8RCR_1jIAk.m3u8/F8RCR_1jIAk.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes-cycloalkanes-bicyclic/alkane-and-cycloalkane-nomenclature-i/", "duration": 761, "id": "F8RCR_1jIAk", "title": "Alkane and cycloalkane nomenclature i", "format": "mp4", "description": "", "slug": "alkane-and-cycloalkane-nomenclature-i", "kind": "Video", "video_id": "F8RCR_1jIAk", "keywords": "", "youtube_id": "F8RCR_1jIAk", "readable_id": "alkane-and-cycloalkane-nomenclature-i"}, "9bE-n0n2BBA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9bE-n0n2BBA.mp4/9bE-n0n2BBA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9bE-n0n2BBA.mp4/9bE-n0n2BBA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9bE-n0n2BBA.m3u8/9bE-n0n2BBA.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/tang-dynasty/chinese-buddhist-cave-shrines/", "duration": 276, "id": "9bE-n0n2BBA", "title": "Chinese Buddhist cave shrines", "format": "mp4", "description": "This video explores ancient Buddhist cave shrines in China, including why the sites were created and the major sponsors and patrons. Learn more about Chinese Buddhist cave shrines on the Asian Art Museum's education website.\u00a0", "slug": "chinese-buddhist-cave-shrines", "kind": "Video", "video_id": "9bE-n0n2BBA", "keywords": "", "youtube_id": "9bE-n0n2BBA", "readable_id": "chinese-buddhist-cave-shrines"}, "NRsM8kXtT5s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NRsM8kXtT5s.mp4/NRsM8kXtT5s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NRsM8kXtT5s.mp4/NRsM8kXtT5s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NRsM8kXtT5s.m3u8/NRsM8kXtT5s.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/ring-opening-reactions-epoxides/ring-opening-reactions-of-epoxides-acid-catalyzed/", "duration": 522, "id": "NRsM8kXtT5s", "title": "Ring opening reactions of epoxides: Acid-catalyzed", "format": "mp4", "description": "", "slug": "ring-opening-reactions-of-epoxides-acid-catalyzed", "kind": "Video", "video_id": "NRsM8kXtT5s", "keywords": "", "youtube_id": "NRsM8kXtT5s", "readable_id": "ring-opening-reactions-of-epoxides-acid-catalyzed"}, "xMz9WFvox9g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xMz9WFvox9g.mp4/xMz9WFvox9g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xMz9WFvox9g.mp4/xMz9WFvox9g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xMz9WFvox9g.m3u8/xMz9WFvox9g.m3u8"}, "path": "khan/math/pre-algebra/measurement/volume-introduction-rectangular/how-we-measure-volume/", "duration": 471, "id": "xMz9WFvox9g", "title": "Volume: how to measure it", "format": "mp4", "description": "Volume is a measurement in the 3rd dimension. This means that it not only has width and height, but it has depth as well. Let's watch this video in which we get a great explanation of how we measure volume.", "slug": "how-we-measure-volume", "kind": "Video", "video_id": "xMz9WFvox9g", "keywords": "", "youtube_id": "xMz9WFvox9g", "readable_id": "how-we-measure-volume"}, "VO40SpSBjbc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VO40SpSBjbc.mp4/VO40SpSBjbc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VO40SpSBjbc.mp4/VO40SpSBjbc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VO40SpSBjbc.m3u8/VO40SpSBjbc.m3u8"}, "duration": 1140, "id": "VO40SpSBjbc", "title": "Cuban Missile Crisis", "format": "mp4", "description": "Overview of the Cuban Missile Crisis", "path": "khan/humanities/history/euro-hist/cold-war/cuban-missile-crisis/", "slug": "cuban-missile-crisis", "kind": "Video", "video_id": "VO40SpSBjbc", "keywords": "JFK, krushchev, cold, war, jupiter, fidel, castro", "youtube_id": "VO40SpSBjbc", "readable_id": "cuban-missile-crisis"}, "0h5Jd7sgQWY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0h5Jd7sgQWY.mp4/0h5Jd7sgQWY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0h5Jd7sgQWY.mp4/0h5Jd7sgQWY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0h5Jd7sgQWY.m3u8/0h5Jd7sgQWY.m3u8"}, "duration": 1397, "id": "0h5Jd7sgQWY", "title": "Viruses", "format": "mp4", "description": "Introduction to viruses", "path": "khan/science/biology/her/tree-of-life/viruses/", "slug": "viruses", "kind": "Video", "video_id": "0h5Jd7sgQWY", "keywords": "biology, virus, viruses", "youtube_id": "0h5Jd7sgQWY", "readable_id": "viruses"}, "hoRISaqp1Po": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hoRISaqp1Po.mp4/hoRISaqp1Po.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hoRISaqp1Po.mp4/hoRISaqp1Po.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hoRISaqp1Po.m3u8/hoRISaqp1Po.m3u8"}, "duration": 226, "id": "hoRISaqp1Po", "title": "Tangent slope as limiting value of secant slope example 3", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/tangent-slope-as-limiting-value-of-secant-slope-example-3/", "slug": "tangent-slope-as-limiting-value-of-secant-slope-example-3", "kind": "Video", "video_id": "hoRISaqp1Po", "keywords": "", "youtube_id": "hoRISaqp1Po", "readable_id": "tangent-slope-as-limiting-value-of-secant-slope-example-3"}, "HpdMJaKaXXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HpdMJaKaXXc.mp4/HpdMJaKaXXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HpdMJaKaXXc.mp4/HpdMJaKaXXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HpdMJaKaXXc.m3u8/HpdMJaKaXXc.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/introduction-to-ratios-new-hd-version/", "duration": 853, "id": "HpdMJaKaXXc", "title": "Introduction to ratios", "format": "mp4", "description": "What a ratio is. Simple ratio problems.", "slug": "introduction-to-ratios-new-hd-version", "kind": "Video", "video_id": "HpdMJaKaXXc", "keywords": "ratio, ratios, math", "youtube_id": "HpdMJaKaXXc", "readable_id": "introduction-to-ratios-new-hd-version"}, "A2fB3JOH9rQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A2fB3JOH9rQ.mp4/A2fB3JOH9rQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A2fB3JOH9rQ.mp4/A2fB3JOH9rQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A2fB3JOH9rQ.m3u8/A2fB3JOH9rQ.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-8/", "duration": 215, "id": "A2fB3JOH9rQ", "title": "8 Comparing percent discounts", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-8", "kind": "Video", "video_id": "A2fB3JOH9rQ", "keywords": "", "youtube_id": "A2fB3JOH9rQ", "readable_id": "sat-getting-ready-2-8"}, "ZuUWp0-gBMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZuUWp0-gBMU.mp4/ZuUWp0-gBMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZuUWp0-gBMU.mp4/ZuUWp0-gBMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZuUWp0-gBMU.m3u8/ZuUWp0-gBMU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2010-may-4-18/", "duration": 393, "id": "ZuUWp0-gBMU", "title": "18 Greatest number meeting constraints", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-18", "kind": "Video", "video_id": "ZuUWp0-gBMU", "keywords": "", "youtube_id": "ZuUWp0-gBMU", "readable_id": "sat-2010-may-4-18"}, "SfgD7Sm08ns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SfgD7Sm08ns.mp4/SfgD7Sm08ns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SfgD7Sm08ns.mp4/SfgD7Sm08ns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SfgD7Sm08ns.m3u8/SfgD7Sm08ns.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-within-20/exercising-gorillas/", "duration": 332, "id": "SfgD7Sm08ns", "title": "Exercising gorillas", "format": "mp4", "description": "", "slug": "exercising-gorillas", "kind": "Video", "video_id": "SfgD7Sm08ns", "keywords": "", "youtube_id": "SfgD7Sm08ns", "readable_id": "exercising-gorillas"}, "hFZPl_t2GLU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hFZPl_t2GLU.mp4/hFZPl_t2GLU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hFZPl_t2GLU.mp4/hFZPl_t2GLU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hFZPl_t2GLU.m3u8/hFZPl_t2GLU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/treating-type-ii-diabetes-a-practical-approach/", "duration": 143, "id": "hFZPl_t2GLU", "title": "Treating type II diabetes - A practical approach", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "treating-type-ii-diabetes-a-practical-approach", "kind": "Video", "video_id": "hFZPl_t2GLU", "keywords": "", "youtube_id": "hFZPl_t2GLU", "readable_id": "treating-type-ii-diabetes-a-practical-approach"}, "Wyxz0fgp6-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wyxz0fgp6-A.mp4/Wyxz0fgp6-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wyxz0fgp6-A.mp4/Wyxz0fgp6-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wyxz0fgp6-A.m3u8/Wyxz0fgp6-A.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/what-is-valvular-heart-disease/", "duration": 641, "id": "Wyxz0fgp6-A", "title": "What is valvular heart disease?", "format": "mp4", "description": "", "slug": "what-is-valvular-heart-disease", "kind": "Video", "video_id": "Wyxz0fgp6-A", "keywords": "", "youtube_id": "Wyxz0fgp6-A", "readable_id": "what-is-valvular-heart-disease"}, "JC_TVyAMYE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JC_TVyAMYE0.mp4/JC_TVyAMYE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JC_TVyAMYE0.mp4/JC_TVyAMYE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JC_TVyAMYE0.m3u8/JC_TVyAMYE0.m3u8"}, "duration": 245, "id": "JC_TVyAMYE0", "title": "Sensory adaptation and amplification", "format": "mp4", "description": "Sensory adaptation and amplification are discussed in this video to differentiate the two.\u00a0 By Ronald Sahyouni.", "path": "khan/test-prep/mcat/processing-the-environment/somatosensation/sensory-adaptation-and-amplification/", "slug": "sensory-adaptation-and-amplification", "kind": "Video", "video_id": "JC_TVyAMYE0", "keywords": "sensory adaptation, amplification", "youtube_id": "JC_TVyAMYE0", "readable_id": "sensory-adaptation-and-amplification"}, "MN4SWiEEqKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MN4SWiEEqKo.mp4/MN4SWiEEqKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MN4SWiEEqKo.mp4/MN4SWiEEqKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MN4SWiEEqKo.m3u8/MN4SWiEEqKo.m3u8"}, "duration": 730, "id": "MN4SWiEEqKo", "title": "Chinese Central Bank buying treasuries", "format": "mp4", "description": "Chinese Central Bank Buying Treasuries", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/chinese-central-bank-buying-treasuries/", "slug": "chinese-central-bank-buying-treasuries", "kind": "Video", "video_id": "MN4SWiEEqKo", "keywords": "Chinese, Central, Bank, Buying, Treasuries, yuan, renminbi", "youtube_id": "MN4SWiEEqKo", "readable_id": "chinese-central-bank-buying-treasuries"}, "3szFVS5p_7A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3szFVS5p_7A.mp4/3szFVS5p_7A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3szFVS5p_7A.mp4/3szFVS5p_7A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3szFVS5p_7A.m3u8/3szFVS5p_7A.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/regrouping-decimals-pre-alg/regrouping-with-decimals/", "duration": 255, "id": "3szFVS5p_7A", "title": "Regrouping with decimals", "format": "mp4", "description": "We're doing more regrouping but this time using decimals. Just remember those place values!", "slug": "regrouping-with-decimals", "kind": "Video", "video_id": "3szFVS5p_7A", "keywords": "", "youtube_id": "3szFVS5p_7A", "readable_id": "regrouping-with-decimals"}, "Dui5V8TZYbE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dui5V8TZYbE.mp4/Dui5V8TZYbE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dui5V8TZYbE.mp4/Dui5V8TZYbE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dui5V8TZYbE.m3u8/Dui5V8TZYbE.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/late-empire/tetrarchs/", "duration": 369, "id": "Dui5V8TZYbE", "title": "Portraits of the Four Tetrarchs", "format": "mp4", "description": "Portraits of the Four Tetrarchs, from Constantinople, c. 305, porphyry, 4' 3\" high (St. Marks, Venice). Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "tetrarchs", "kind": "Video", "video_id": "Dui5V8TZYbE", "keywords": "", "youtube_id": "Dui5V8TZYbE", "readable_id": "tetrarchs"}, "HB52UTcAv0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HB52UTcAv0g.mp4/HB52UTcAv0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HB52UTcAv0g.mp4/HB52UTcAv0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HB52UTcAv0g.m3u8/HB52UTcAv0g.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/adding-like-rational-terms/", "duration": 74, "id": "HB52UTcAv0g", "title": "Adding expressions", "format": "mp4", "description": "So what if we add not just numbers or variables..but expressions? Here's a simple example to get you thinking about this.", "slug": "adding-like-rational-terms", "kind": "Video", "video_id": "HB52UTcAv0g", "keywords": "", "youtube_id": "HB52UTcAv0g", "readable_id": "adding-like-rational-terms"}, "Qc4xQ-iiPKk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qc4xQ-iiPKk.mp4/Qc4xQ-iiPKk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qc4xQ-iiPKk.mp4/Qc4xQ-iiPKk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qc4xQ-iiPKk.m3u8/Qc4xQ-iiPKk.m3u8"}, "duration": 172, "id": "Qc4xQ-iiPKk", "title": "Tim Noble and Sue Webster, Dark Stuff, at the British Museum", "format": "mp4", "description": "Tim Noble and Sue Webster describe themselves as artists of circumstance. Walking through the Egyptian galleries they were inspired as to how to use the mice, shrews and toads they had collected. Curator Neal Spencer highlights the appropriateness of such a display, given that in Ancient Egypt animals were bred, slaughtered and mummified in their millions. \u00a9 Trustees of the British Museum", "path": "noble-webster-dark-stuff/", "slug": "noble-webster-dark-stuff", "kind": "Video", "video_id": "Qc4xQ-iiPKk", "keywords": "", "youtube_id": "Qc4xQ-iiPKk", "readable_id": "noble-webster-dark-stuff"}, "d_Q3mgcIiCw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d_Q3mgcIiCw.mp4/d_Q3mgcIiCw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d_Q3mgcIiCw.mp4/d_Q3mgcIiCw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d_Q3mgcIiCw.m3u8/d_Q3mgcIiCw.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/ss-location-college-search/", "duration": 59, "id": "d_Q3mgcIiCw", "title": "Student story: Prioritizing location in the college search", "format": "mp4", "description": "", "slug": "ss-location-college-search", "kind": "Video", "video_id": "d_Q3mgcIiCw", "keywords": "", "youtube_id": "d_Q3mgcIiCw", "readable_id": "ss-location-college-search"}, "hZLcV_wIqus": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hZLcV_wIqus.mp4/hZLcV_wIqus.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hZLcV_wIqus.mp4/hZLcV_wIqus.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hZLcV_wIqus.m3u8/hZLcV_wIqus.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/digestion-mobilization-and-transport-of-fats-part-ii/", "duration": 885, "id": "hZLcV_wIqus", "title": "Digestion, Mobilization, and Transport of Fats - Part II", "format": "mp4", "description": "1D: How are fats digested, mobilized, and transported inside the body in the fed and fasted states?", "slug": "digestion-mobilization-and-transport-of-fats-part-ii", "kind": "Video", "video_id": "hZLcV_wIqus", "keywords": "", "youtube_id": "hZLcV_wIqus", "readable_id": "digestion-mobilization-and-transport-of-fats-part-ii"}, "G37C5vKCwH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G37C5vKCwH4.mp4/G37C5vKCwH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G37C5vKCwH4.mp4/G37C5vKCwH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G37C5vKCwH4.m3u8/G37C5vKCwH4.m3u8"}, "path": "khan/humanities/art-1010/minimalism-earthworks/donald-judd-untitled-1969/", "duration": 230, "id": "G37C5vKCwH4", "title": "Donald Judd, Untitled", "format": "mp4", "description": "Donald Judd, Untitled\u00a0, 1969, ten copper units, each 9 x 40 x 31 inches with 9 inch intervals (Guggenheim Museum, New York).Speakers: Dr. Shana Gallagher-Lindsay, Dr. Beth Harris", "slug": "donald-judd-untitled-1969", "kind": "Video", "video_id": "G37C5vKCwH4", "keywords": "Donald Judd, Khan Academy, Smarthistory, Minimalism", "youtube_id": "G37C5vKCwH4", "readable_id": "donald-judd-untitled-1969"}, "QHT2VMayiz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QHT2VMayiz4.mp4/QHT2VMayiz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QHT2VMayiz4.mp4/QHT2VMayiz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QHT2VMayiz4.m3u8/QHT2VMayiz4.m3u8"}, "duration": 165, "id": "QHT2VMayiz4", "title": "\"Drama\" with Peter Barnet", "format": "mp4", "description": "Met curator Peter Barnet on theatricality in Plaque with the Journey to Emmaus and Noli Me Tangere.\n\nTwo appearances of the risen Christ are represented on this ivory plaque. Christ's encounter with two disciples on the road from Jerusalem to Emmaus is depicted at the top. According to the Gospel of Luke, the disciples, \"their faces full of gloom,\" lamented Christ's crucifixion to a stranger they met on the road. Knowing that he was not recognized, Christ explained that it was preordained that the Messiah must suffer in order to redeem humankind (Luke 24:13-27). The figures are not placed in an illusionistic setting but are portrayed against a neutral background. The travelers are equipped with appropriate traveling gear\u2014staff, water gourd, and purse\u2014and their spirited discussion is emphasized by their lively stride.\n\nIn the lower register, Christ appears to Mary Magdalene, who, according to the Gospel of John, stood weeping outside Jesus' empty tomb. Seeing Christ and thinking he was the gardener, she said, \"If it you, sir, who removed him, tell me where you have laid him, and I will take him away.\" Jesus said, \"Mary!\" She turned to him and said, \"Rabbuni!\" (Hebrew for \"My Master\"). Jesus said, \"Noli me tangere [Do not touch me] for I have not as yet ascended to the Father\" (John 20:11-17). The drama of both these narratives is effectively conveyed through the vigorous, elongated bodies, gesturing heads, and large hands. The swirling drapery with pearled borders similarly emphasizes the action. The plaque was part of a larger composition representing scenes from the life of Christ, but its context remains unknown.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\u00a0\n", "path": "drama/", "slug": "drama", "kind": "Video", "video_id": "QHT2VMayiz4", "keywords": "belief, ivory, motion, sculpture, Europe", "youtube_id": "QHT2VMayiz4", "readable_id": "drama"}, "_k3aWF6_b4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_k3aWF6_b4w.mp4/_k3aWF6_b4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_k3aWF6_b4w.mp4/_k3aWF6_b4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_k3aWF6_b4w.m3u8/_k3aWF6_b4w.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/multiplication-7-old-video-giving-more-examples/", "duration": 377, "id": "_k3aWF6_b4w", "title": "Multiplication 7: Old video giving more examples", "format": "mp4", "description": "2 examples of multiplying a 3 digit number times a 2 digit number. 1 example of multiplying a 3 digit number times a 3 digit number.", "slug": "multiplication-7-old-video-giving-more-examples", "kind": "Video", "video_id": "_k3aWF6_b4w", "keywords": "multiplication, CC_4_NBT_5, CC_6_NS_3", "youtube_id": "_k3aWF6_b4w", "readable_id": "multiplication-7-old-video-giving-more-examples"}, "MRv20I13vqM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MRv20I13vqM.mp4/MRv20I13vqM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MRv20I13vqM.mp4/MRv20I13vqM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MRv20I13vqM.m3u8/MRv20I13vqM.m3u8"}, "path": "khan/humanities/art-1010/wwi-dada/dada1/duchamp-s-shovel-art-as-concept/", "duration": 608, "id": "MRv20I13vqM", "title": "Art as concept: Duchamp, In Advance of the Broken Arm", "format": "mp4", "description": "Marcel Duchamp, In Advance of the Broken Arm, 1964 (fourth version, after lost original of November 1915) (MoMA). A conversation with Sal Khan & Steven Zucker.", "slug": "duchamp-s-shovel-art-as-concept", "kind": "Video", "video_id": "MRv20I13vqM", "keywords": "smarthistory, MoMA, Museum of Modern Art, Art History, Duchamp, Ready-Mades, Khan Academy", "youtube_id": "MRv20I13vqM", "readable_id": "duchamp-s-shovel-art-as-concept"}, "STyoP3rCmb0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/STyoP3rCmb0.mp4/STyoP3rCmb0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/STyoP3rCmb0.mp4/STyoP3rCmb0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/STyoP3rCmb0.m3u8/STyoP3rCmb0.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/multiplying-decimals-pre-alg/intro-to-multiplying-decimals/", "duration": 230, "id": "STyoP3rCmb0", "title": "Introduction to multiplying decimals", "format": "mp4", "description": "Multiplying decimals can be confusing because there's always the question as to where the decimals goes in the answer. We're about to show you so you'll never have to question it again!", "slug": "intro-to-multiplying-decimals", "kind": "Video", "video_id": "STyoP3rCmb0", "keywords": "", "youtube_id": "STyoP3rCmb0", "readable_id": "intro-to-multiplying-decimals"}, "983Tu9rlP54": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/983Tu9rlP54.mp4/983Tu9rlP54.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/983Tu9rlP54.mp4/983Tu9rlP54.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/983Tu9rlP54.m3u8/983Tu9rlP54.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/gustav-klimt-beethoven-frieze-vienna-secession-1902/", "duration": 448, "id": "983Tu9rlP54", "title": "Gustav Klimt, Beethoven Frieze", "format": "mp4", "description": "Gustav Klimt, Beethoven Frieze, Vienna Secession, 1902 A conversation with Khan Academy's Dr. Steven Zucker and Dr. Beth Harris\n\nIn the News: The heirs of the Austrian Jewish collector who owned this work before World War II recently lost their case to recover it.\u00a0 Learn more:\u00a0March 7, 2015 New York Times article\n", "slug": "gustav-klimt-beethoven-frieze-vienna-secession-1902", "kind": "Video", "video_id": "983Tu9rlP54", "keywords": "art history, smarthistory, khan academy, Gustav Klimt, Klimt, Vienna, Secession, Beethoven, Beethoven Frieze", "youtube_id": "983Tu9rlP54", "readable_id": "gustav-klimt-beethoven-frieze-vienna-secession-1902"}, "v-k5L0BPOmc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v-k5L0BPOmc.mp4/v-k5L0BPOmc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v-k5L0BPOmc.mp4/v-k5L0BPOmc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v-k5L0BPOmc.m3u8/v-k5L0BPOmc.m3u8"}, "duration": 330, "id": "v-k5L0BPOmc", "title": "Direct inverse and joint variation", "format": "mp4", "description": "Direct Inverse and Joint Variation", "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/direct-inverse-and-joint-variation/", "slug": "direct-inverse-and-joint-variation", "kind": "Video", "video_id": "v-k5L0BPOmc", "keywords": "u15_l3_t1_we2, Direct, Inverse, and, Joint, Variation, CC_6_EE_9", "youtube_id": "v-k5L0BPOmc", "readable_id": "direct-inverse-and-joint-variation"}, "-V51ZjxFeH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-V51ZjxFeH4.mp4/-V51ZjxFeH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-V51ZjxFeH4.mp4/-V51ZjxFeH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-V51ZjxFeH4.m3u8/-V51ZjxFeH4.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/beginners-renaissance-florence/orsanmichele-florence-1349-loggia-1380-1404-upper-stories/", "duration": 293, "id": "-V51ZjxFeH4", "title": "Orsanmichele", "format": "mp4", "description": "Orsanmichele, Florence, 1349 loggia (1380-1404 upper stories)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "orsanmichele-florence-1349-loggia-1380-1404-upper-stories", "kind": "Video", "video_id": "-V51ZjxFeH4", "keywords": "smarthistory, Art History, Florence, Orsanmichele, Donatello, Renaissance, Humanism", "youtube_id": "-V51ZjxFeH4", "readable_id": "orsanmichele-florence-1349-loggia-1380-1404-upper-stories"}, "oa1SEjP9KAQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oa1SEjP9KAQ.mp4/oa1SEjP9KAQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oa1SEjP9KAQ.mp4/oa1SEjP9KAQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oa1SEjP9KAQ.m3u8/oa1SEjP9KAQ.m3u8"}, "duration": 222, "id": "oa1SEjP9KAQ", "title": "Manipulating formula example", "format": "mp4", "description": "", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solving_for_variable/manipulating-formula-example/", "slug": "manipulating-formula-example", "kind": "Video", "video_id": "oa1SEjP9KAQ", "keywords": "", "youtube_id": "oa1SEjP9KAQ", "readable_id": "manipulating-formula-example"}, "YM2G4ATOcpw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YM2G4ATOcpw.mp4/YM2G4ATOcpw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YM2G4ATOcpw.mp4/YM2G4ATOcpw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YM2G4ATOcpw.m3u8/YM2G4ATOcpw.m3u8"}, "duration": 249, "id": "YM2G4ATOcpw", "title": "Finding width from perimeter and length", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/measurement/rectangle-area-perimeter-word-pr/find-width-from-perimeter/", "slug": "find-width-from-perimeter", "kind": "Video", "video_id": "YM2G4ATOcpw", "keywords": "", "youtube_id": "YM2G4ATOcpw", "readable_id": "find-width-from-perimeter"}, "gndFqgEPNOs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gndFqgEPNOs.mp4/gndFqgEPNOs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gndFqgEPNOs.mp4/gndFqgEPNOs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gndFqgEPNOs.m3u8/gndFqgEPNOs.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/mainland-se-asia/shiva-and-parvati/", "duration": 174, "id": "gndFqgEPNOs", "title": "The Hindu deities Shiva and Parvati", "format": "mp4", "description": "Apart from their damaged limbs, these 1,000-year-old Cambodian sculptures survive in excellent condition, and the fact that they have remained together makes them rare. These statues would have been in the inner sanctuary of a Hindu temple, a huge stone complex built up like a step pyramid, with the sanctuary at the top. Images of Shiva acting out his power in the world might be found on the outside of an ancient Cambodian temple, but inside the temple the deity would be shown standing upright and still, conveying a sense of resolute calm to all who gazed upon him. Learn more about the deities Shiva and Parvati on the Asian Art Museum's education website.\n\nThe third eye in the middle of the forehead of the male figure identifies him as the Hindu deity Shiva. His wife is Parvati. Both these deities can be represented in supernatural forms with multiple arms, and both have violent and frightening forms as well. Here, however, they are shown in the guise of a graceful young man and woman. Before and after the period of these sculptures, Angkorian art usually emphasized the power and remoteness of the gods. In the late 900s, however, and continuing for several generations, gentleness and sensitivity were sometimes emphasized. Notice here the carefully calculated contrast of minutely textured clothing and jewelry with the expanses of smooth, soft skin. The sculptor has also taken advantage of the different color tonalities of the two pieces of stone. Scientific study has shown that they came from different parts of a single quarry.", "slug": "shiva-and-parvati", "kind": "Video", "video_id": "gndFqgEPNOs", "keywords": "", "youtube_id": "gndFqgEPNOs", "readable_id": "shiva-and-parvati"}, "21680hPTfUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/21680hPTfUc.mp4/21680hPTfUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/21680hPTfUc.mp4/21680hPTfUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/21680hPTfUc.m3u8/21680hPTfUc.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-7/", "duration": 602, "id": "21680hPTfUc", "title": "GMAT: Data sufficiency 7", "format": "mp4", "description": "33-36, pg. 280", "slug": "gmat-data-sufficiency-7", "kind": "Video", "video_id": "21680hPTfUc", "keywords": "GMAT, data, sufficiency, math", "youtube_id": "21680hPTfUc", "readable_id": "gmat-data-sufficiency-7"}, "UP9xy2eVj7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UP9xy2eVj7s.mp4/UP9xy2eVj7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UP9xy2eVj7s.mp4/UP9xy2eVj7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UP9xy2eVj7s.m3u8/UP9xy2eVj7s.m3u8"}, "duration": 450, "id": "UP9xy2eVj7s", "title": "FICA tax", "format": "mp4", "description": "How the FICA tax is calculated and what it stands for", "path": "khan/humanities/history/american-civics/american-civics/fica-tax/", "slug": "fica-tax", "kind": "Video", "video_id": "UP9xy2eVj7s", "keywords": "FICA, federal, insurance, contributions, act", "youtube_id": "UP9xy2eVj7s", "readable_id": "fica-tax"}, "Z1rqLNz8Zo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z1rqLNz8Zo0.mp4/Z1rqLNz8Zo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z1rqLNz8Zo0.mp4/Z1rqLNz8Zo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z1rqLNz8Zo0.m3u8/Z1rqLNz8Zo0.m3u8"}, "path": "khan/test-prep/ap-art-history/indigenous-americas/coyolxauhqui-monolith/", "duration": 330, "id": "Z1rqLNz8Zo0", "title": "Coyolxauhqui Stone", "format": "mp4", "description": "Coyolxauhqui Monolith (Aztec), c. 1500, volcanic stone, found Templo Mayor, Tenochtitlan, excavated 1978 (Museo del Templo Mayor, Mexico City)\nSpeakers: Dr. Beth Harris and Dr. Lauren Kilroy-Ewbank\n", "slug": "coyolxauhqui-monolith", "kind": "Video", "video_id": "Z1rqLNz8Zo0", "keywords": "Mexica, Aztec, Pre-Columbian, Mesoamerica, sculpture, Coyolxauhqui, Mexico City", "youtube_id": "Z1rqLNz8Zo0", "readable_id": "coyolxauhqui-monolith"}, "PvSx8oJ7PrM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PvSx8oJ7PrM.mp4/PvSx8oJ7PrM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PvSx8oJ7PrM.mp4/PvSx8oJ7PrM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PvSx8oJ7PrM.m3u8/PvSx8oJ7PrM.m3u8"}, "duration": 160, "id": "PvSx8oJ7PrM", "title": "Place value relationships example", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/order-of-operations/place_value/place-value-relationships-example/", "slug": "place-value-relationships-example", "kind": "Video", "video_id": "PvSx8oJ7PrM", "keywords": "", "youtube_id": "PvSx8oJ7PrM", "readable_id": "place-value-relationships-example"}, "n8Ic2Oj-zvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n8Ic2Oj-zvA.mp4/n8Ic2Oj-zvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n8Ic2Oj-zvA.mp4/n8Ic2Oj-zvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n8Ic2Oj-zvA.m3u8/n8Ic2Oj-zvA.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/vector-basic/vector-representations-example/", "duration": 156, "id": "n8Ic2Oj-zvA", "title": "Vector representations exercise example", "format": "mp4", "description": "", "slug": "vector-representations-example", "kind": "Video", "video_id": "n8Ic2Oj-zvA", "keywords": "", "youtube_id": "n8Ic2Oj-zvA", "readable_id": "vector-representations-example"}, "RwFWKaK4rBM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RwFWKaK4rBM.mp4/RwFWKaK4rBM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RwFWKaK4rBM.mp4/RwFWKaK4rBM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RwFWKaK4rBM.m3u8/RwFWKaK4rBM.m3u8"}, "duration": 159, "id": "RwFWKaK4rBM", "title": "\"Faith\" with Luke Syson", "format": "mp4", "description": "Met curator Luke Syson on faith in Antonio Rossellino\u2019s Madonna and Child with Angels.\n\nAntonio Rossellino was among the most gifted sculptors of his generation, and his reliefs of the Virgin and Child are justly celebrated. This example, carved from mottled brown marble about 1455\u201360, is particularly successful. The Virgin sits on an elaborate throne, with scrolled armrests projecting in high relief. Both she and the Christ Child in her arms seem strangely subdued, perhaps contemplating Christ's future suffering. The protective, caressing gesture of the Virgin's left hand is especially poignant.\n\nThe surface is richly contoured and decorated, and the concern for finish extends to the background, which is enlivened by the heads and feathery wings of seraphim. Typical of painters of the period is the sculptor's attention to ornamental detail: the fringe of the Virgin's mantle, the haloes, and the strands of hair of both Virgin and Child are delicately highlighted with touches of gilding.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "faith/", "slug": "faith", "kind": "Video", "video_id": "RwFWKaK4rBM", "keywords": "belief, body, family, sculpture, stone, touch, transcendence, Europe", "youtube_id": "RwFWKaK4rBM", "readable_id": "faith"}, "8i0j3j16yFk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8i0j3j16yFk.mp4/8i0j3j16yFk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8i0j3j16yFk.mp4/8i0j3j16yFk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8i0j3j16yFk.m3u8/8i0j3j16yFk.m3u8"}, "path": "khan/science/physics/newton-gravitation/gravity-newtonian/gravitation-part-2/", "duration": 496, "id": "8i0j3j16yFk", "title": "Gravitation (part 2)", "format": "mp4", "description": "A little bit more on gravity", "slug": "gravitation-part-2", "kind": "Video", "video_id": "8i0j3j16yFk", "keywords": "newton, law, of, gravity, gravitational, constant, mass, force", "youtube_id": "8i0j3j16yFk", "readable_id": "gravitation-part-2"}, "M8TOJrI6cJc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M8TOJrI6cJc.mp4/M8TOJrI6cJc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M8TOJrI6cJc.mp4/M8TOJrI6cJc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M8TOJrI6cJc.m3u8/M8TOJrI6cJc.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-14/", "duration": 630, "id": "M8TOJrI6cJc", "title": "GMAT: Math 14", "format": "mp4", "description": "76-80, pg. 162", "slug": "gmat-math-14", "kind": "Video", "video_id": "M8TOJrI6cJc", "keywords": "gmat, math, problem, solving", "youtube_id": "M8TOJrI6cJc", "readable_id": "gmat-math-14"}, "xo4VpX2IIMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xo4VpX2IIMk.mp4/xo4VpX2IIMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xo4VpX2IIMk.mp4/xo4VpX2IIMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xo4VpX2IIMk.m3u8/xo4VpX2IIMk.m3u8"}, "path": "khan/math/pre-algebra/measurement/area-basics/calculating-the-square-footage-of-a-house/", "duration": 364, "id": "xo4VpX2IIMk", "title": "Calculating the square footage of a house", "format": "mp4", "description": "Decompose an irregular shape to find area of entire figure.", "slug": "calculating-the-square-footage-of-a-house", "kind": "Video", "video_id": "xo4VpX2IIMk", "keywords": "", "youtube_id": "xo4VpX2IIMk", "readable_id": "calculating-the-square-footage-of-a-house"}, "81SseQCpGws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/81SseQCpGws.mp4/81SseQCpGws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/81SseQCpGws.mp4/81SseQCpGws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/81SseQCpGws.m3u8/81SseQCpGws.m3u8"}, "duration": 240, "id": "81SseQCpGws", "title": "Graphical slope of a line", "format": "mp4", "description": "Graphical Slope of a Line", "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-slope/graphical-slope-of-a-line/", "slug": "graphical-slope-of-a-line", "kind": "Video", "video_id": "81SseQCpGws", "keywords": "u13_l2_t1_we1, Graphical, Slope, of, Line, CC_8_EE_5, CC_8_EE_6, CC_8_F_5", "youtube_id": "81SseQCpGws", "readable_id": "graphical-slope-of-a-line"}, "Bf04LcSBpDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bf04LcSBpDw.mp4/Bf04LcSBpDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bf04LcSBpDw.mp4/Bf04LcSBpDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bf04LcSBpDw.m3u8/Bf04LcSBpDw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/labor/", "duration": 687, "id": "Bf04LcSBpDw", "title": "Labor", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "labor", "kind": "Video", "video_id": "Bf04LcSBpDw", "keywords": "", "youtube_id": "Bf04LcSBpDw", "readable_id": "labor"}, "Nb6EQUS8hDo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nb6EQUS8hDo.mp4/Nb6EQUS8hDo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nb6EQUS8hDo.mp4/Nb6EQUS8hDo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nb6EQUS8hDo.m3u8/Nb6EQUS8hDo.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/lucian-freud-standing-by-the-rags-1988-89/", "duration": 225, "id": "Nb6EQUS8hDo", "title": "Freud, Standing by the Rags", "format": "mp4", "description": "Lucian Freud, Standing by the Rags, 1988-89, oil on canvas, 66.5 x 54.5 in. (168.9 x 138.4 cm), (Tate Britain, London)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "lucian-freud-standing-by-the-rags-1988-89", "kind": "Video", "video_id": "Nb6EQUS8hDo", "keywords": "smarthistory, Lucian Freud, Standing by the Rags, Tate Britain, 20th century painting", "youtube_id": "Nb6EQUS8hDo", "readable_id": "lucian-freud-standing-by-the-rags-1988-89"}, "AAWsuFXojgo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AAWsuFXojgo.mp4/AAWsuFXojgo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AAWsuFXojgo.mp4/AAWsuFXojgo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AAWsuFXojgo.m3u8/AAWsuFXojgo.m3u8"}, "duration": 573, "id": "AAWsuFXojgo", "title": "Elasticity of supply", "format": "mp4", "description": "Thinking about elasticity of supply", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/elasticity-of-supply/", "slug": "elasticity-of-supply", "kind": "Video", "video_id": "AAWsuFXojgo", "keywords": "economics, elasticity", "youtube_id": "AAWsuFXojgo", "readable_id": "elasticity-of-supply"}, "FttqXKdw_Xk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FttqXKdw_Xk.mp4/FttqXKdw_Xk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FttqXKdw_Xk.mp4/FttqXKdw_Xk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FttqXKdw_Xk.m3u8/FttqXKdw_Xk.m3u8"}, "duration": 870, "id": "FttqXKdw_Xk", "title": "Increasing the heart's force of contraction", "format": "mp4", "description": "Find out exactly how stretch increases force of contraction in end-diastole, whereas more calcium increased force of contraction in end-systole. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/increasing-the-heart-s-force-of-contraction/", "slug": "increasing-the-heart-s-force-of-contraction", "kind": "Video", "video_id": "FttqXKdw_Xk", "keywords": "", "youtube_id": "FttqXKdw_Xk", "readable_id": "increasing-the-heart-s-force-of-contraction"}, "XR52dXLyz-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XR52dXLyz-M.mp4/XR52dXLyz-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XR52dXLyz-M.mp4/XR52dXLyz-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XR52dXLyz-M.m3u8/XR52dXLyz-M.m3u8"}, "duration": 461, "id": "XR52dXLyz-M", "title": "Specular and diffuse reflection 2", "format": "mp4", "description": "Specular and Diffuse Reflection 2", "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/specular-and-diffuse-reflection-2/", "slug": "specular-and-diffuse-reflection-2", "kind": "Video", "video_id": "XR52dXLyz-M", "keywords": "Specular, and, Diffuse, Reflection", "youtube_id": "XR52dXLyz-M", "readable_id": "specular-and-diffuse-reflection-2"}, "2yjSAarzWF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2yjSAarzWF8.mp4/2yjSAarzWF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2yjSAarzWF8.mp4/2yjSAarzWF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2yjSAarzWF8.m3u8/2yjSAarzWF8.m3u8"}, "duration": 133, "id": "2yjSAarzWF8", "title": "Comparing side lengths after dilation", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/dilations-scaling/comparing-side-lengths-after-dilation/", "slug": "comparing-side-lengths-after-dilation", "kind": "Video", "video_id": "2yjSAarzWF8", "keywords": "", "youtube_id": "2yjSAarzWF8", "readable_id": "comparing-side-lengths-after-dilation"}, "QWX39H9kKvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QWX39H9kKvE.mp4/QWX39H9kKvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QWX39H9kKvE.mp4/QWX39H9kKvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QWX39H9kKvE.m3u8/QWX39H9kKvE.m3u8"}, "duration": 119, "id": "QWX39H9kKvE", "title": "Performing a rotation to match figures", "format": "mp4", "description": "", "path": "khan/math/basic-geo/transformations-congruence-similarity-geo/transformations-basics/performing-a-rotation-to-match-figures/", "slug": "performing-a-rotation-to-match-figures", "kind": "Video", "video_id": "QWX39H9kKvE", "keywords": "", "youtube_id": "QWX39H9kKvE", "readable_id": "performing-a-rotation-to-match-figures"}, "I3kQJvR7ZIg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I3kQJvR7ZIg.mp4/I3kQJvR7ZIg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I3kQJvR7ZIg.mp4/I3kQJvR7ZIg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I3kQJvR7ZIg.m3u8/I3kQJvR7ZIg.m3u8"}, "duration": 416, "id": "I3kQJvR7ZIg", "title": "Metric system: units of distance", "format": "mp4", "description": "The great thing about the metric system is that everything is measured in terms of ten. You've heard of meters, kilometers, centimeters, and millimeters, right? Let's get their definitions down pat.", "path": "metric-distance/", "slug": "metric-distance", "kind": "Video", "video_id": "I3kQJvR7ZIg", "keywords": "", "youtube_id": "I3kQJvR7ZIg", "readable_id": "metric-distance"}, "7BFx8pt2aTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7BFx8pt2aTQ.mp4/7BFx8pt2aTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7BFx8pt2aTQ.mp4/7BFx8pt2aTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7BFx8pt2aTQ.m3u8/7BFx8pt2aTQ.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/linear-algebra-introduction-to-orthonormal-bases/", "duration": 676, "id": "7BFx8pt2aTQ", "title": "Introduction to orthonormal bases", "format": "mp4", "description": "Looking at sets and bases that are orthonormal -- or where all the vectors have length 1 and are orthogonal to each other.", "slug": "linear-algebra-introduction-to-orthonormal-bases", "kind": "Video", "video_id": "7BFx8pt2aTQ", "keywords": "orthonormal, basis, orthogonal, set, normal, normailzed", "youtube_id": "7BFx8pt2aTQ", "readable_id": "linear-algebra-introduction-to-orthonormal-bases"}, "riXcZT2ICjA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/riXcZT2ICjA.mp4/riXcZT2ICjA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/riXcZT2ICjA.mp4/riXcZT2ICjA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/riXcZT2ICjA.m3u8/riXcZT2ICjA.m3u8"}, "path": "khan/math/differential-calculus/limits_topic/limits_tutorial/introduction-to-limits-hd/", "duration": 692, "id": "riXcZT2ICjA", "title": "Introduction to limits", "format": "mp4", "description": "Introduction to limits", "slug": "introduction-to-limits-hd", "kind": "Video", "video_id": "riXcZT2ICjA", "keywords": "calculus, CC_39336_A-CED_2, CC_39336_A-REI_3", "youtube_id": "riXcZT2ICjA", "readable_id": "introduction-to-limits-hd"}, "XyDMsotfJhE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XyDMsotfJhE.mp4/XyDMsotfJhE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XyDMsotfJhE.mp4/XyDMsotfJhE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XyDMsotfJhE.m3u8/XyDMsotfJhE.m3u8"}, "duration": 260, "id": "XyDMsotfJhE", "title": "Completing the square to write equation in standard form of a circle", "format": "mp4", "description": "", "path": "khan/math/algebra2/conics_precalc/circles-tutorial-precalc/completing-the-square-to-write-equation-in-standard-form-of-a-circle/", "slug": "completing-the-square-to-write-equation-in-standard-form-of-a-circle", "kind": "Video", "video_id": "XyDMsotfJhE", "keywords": "", "youtube_id": "XyDMsotfJhE", "readable_id": "completing-the-square-to-write-equation-in-standard-form-of-a-circle"}, "nwULacjb78c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nwULacjb78c.mp4/nwULacjb78c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nwULacjb78c.mp4/nwULacjb78c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nwULacjb78c.m3u8/nwULacjb78c.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial/sn1-reaction-mechanism/", "duration": 700, "id": "nwULacjb78c", "title": "Sn1 reaction: Mechanism", "format": "mp4", "description": "", "slug": "sn1-reaction-mechanism", "kind": "Video", "video_id": "nwULacjb78c", "keywords": "", "youtube_id": "nwULacjb78c", "readable_id": "sn1-reaction-mechanism"}, "P3IlneCNm8A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P3IlneCNm8A.mp4/P3IlneCNm8A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P3IlneCNm8A.mp4/P3IlneCNm8A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P3IlneCNm8A.m3u8/P3IlneCNm8A.m3u8"}, "duration": 357, "id": "P3IlneCNm8A", "title": "Graphs of functions and their derivatives example 1", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/graphs-of-functions-and-their-derivatives-example-1/", "slug": "graphs-of-functions-and-their-derivatives-example-1", "kind": "Video", "video_id": "P3IlneCNm8A", "keywords": "", "youtube_id": "P3IlneCNm8A", "readable_id": "graphs-of-functions-and-their-derivatives-example-1"}, "mJ1P4A-KA8k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mJ1P4A-KA8k.mp4/mJ1P4A-KA8k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mJ1P4A-KA8k.mp4/mJ1P4A-KA8k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mJ1P4A-KA8k.m3u8/mJ1P4A-KA8k.m3u8"}, "duration": 115, "id": "mJ1P4A-KA8k", "title": "Exponent example 2", "format": "mp4", "description": "", "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/understanding-exponents/", "slug": "understanding-exponents", "kind": "Video", "video_id": "mJ1P4A-KA8k", "keywords": "U01_L5_T1_we1, Understanding, Exponents, CC_6_EE_1", "youtube_id": "mJ1P4A-KA8k", "readable_id": "understanding-exponents"}, "sJmLjUj_h68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sJmLjUj_h68.mp4/sJmLjUj_h68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sJmLjUj_h68.mp4/sJmLjUj_h68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sJmLjUj_h68.m3u8/sJmLjUj_h68.m3u8"}, "path": "khan/math/pre-algebra/measurement/perimeter/perimeter-of-a-shape/", "duration": 123, "id": "sJmLjUj_h68", "title": "Perimeter of a shape", "format": "mp4", "description": "Find perimeter of various shapes.\u00a0", "slug": "perimeter-of-a-shape", "kind": "Video", "video_id": "sJmLjUj_h68", "keywords": "", "youtube_id": "sJmLjUj_h68", "readable_id": "perimeter-of-a-shape"}, "AtlhAhONHyM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AtlhAhONHyM.mp4/AtlhAhONHyM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AtlhAhONHyM.mp4/AtlhAhONHyM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AtlhAhONHyM.m3u8/AtlhAhONHyM.m3u8"}, "duration": 849, "id": "AtlhAhONHyM", "title": "Renin production in the kidneys", "format": "mp4", "description": "Learn the three major triggers for Renin production by the Juxtaglomerular cells. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/renin-production-in-the-kidneys/", "slug": "renin-production-in-the-kidneys", "kind": "Video", "video_id": "AtlhAhONHyM", "keywords": "", "youtube_id": "AtlhAhONHyM", "readable_id": "renin-production-in-the-kidneys"}, "8uLzMKrO1FU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8uLzMKrO1FU.mp4/8uLzMKrO1FU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8uLzMKrO1FU.mp4/8uLzMKrO1FU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8uLzMKrO1FU.m3u8/8uLzMKrO1FU.m3u8"}, "duration": 240, "id": "8uLzMKrO1FU", "title": "Switch block", "format": "mp4", "description": "Control robot behavior based on some condition", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-switchblock/", "slug": "lego-switchblock", "kind": "Video", "video_id": "8uLzMKrO1FU", "keywords": "", "youtube_id": "8uLzMKrO1FU", "readable_id": "lego-switchblock"}, "v-H_7o7EMoU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v-H_7o7EMoU.mp4/v-H_7o7EMoU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v-H_7o7EMoU.mp4/v-H_7o7EMoU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v-H_7o7EMoU.m3u8/v-H_7o7EMoU.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-3-c/", "duration": 399, "id": "v-H_7o7EMoU", "title": "2011 Calculus AB free response #3 (c)", "format": "mp4", "description": "Disk method to find the volume of a solid generated by rotation of a function", "slug": "2011-calculus-ab-free-response-3-c", "kind": "Video", "video_id": "v-H_7o7EMoU", "keywords": "solid, rotation, disk, method", "youtube_id": "v-H_7o7EMoU", "readable_id": "2011-calculus-ab-free-response-3-c"}, "X7B_tH4O-_s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X7B_tH4O-_s.mp4/X7B_tH4O-_s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X7B_tH4O-_s.mp4/X7B_tH4O-_s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X7B_tH4O-_s.m3u8/X7B_tH4O-_s.m3u8"}, "duration": 837, "id": "X7B_tH4O-_s", "title": "Factor by grouping and factoring completely", "format": "mp4", "description": "Factor by Grouping and Factoring Completely", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-by-grouping/factor-by-grouping-and-factoring-completely/", "slug": "factor-by-grouping-and-factoring-completely", "kind": "Video", "video_id": "X7B_tH4O-_s", "keywords": "Factor, by, Grouping, and, Factoring, Completely, CC_39336_A-REI_4_b, CC_39336_A-SSE_2, CC_39336_F-IF_8_a", "youtube_id": "X7B_tH4O-_s", "readable_id": "factor-by-grouping-and-factoring-completely"}, "aT2UN7y1rhc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aT2UN7y1rhc.mp4/aT2UN7y1rhc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aT2UN7y1rhc.mp4/aT2UN7y1rhc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aT2UN7y1rhc.m3u8/aT2UN7y1rhc.m3u8"}, "duration": 118, "id": "aT2UN7y1rhc", "title": "Constructing scatter plot exercise example", "format": "mp4", "description": "", "path": "khan/math/probability/regression/prob-stats-scatter-plots/constructing-scatter-plot-exercise-example/", "slug": "constructing-scatter-plot-exercise-example", "kind": "Video", "video_id": "aT2UN7y1rhc", "keywords": "", "youtube_id": "aT2UN7y1rhc", "readable_id": "constructing-scatter-plot-exercise-example"}, "Ig7RSc-93Bs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ig7RSc-93Bs.mp4/Ig7RSc-93Bs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ig7RSc-93Bs.mp4/Ig7RSc-93Bs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ig7RSc-93Bs.m3u8/Ig7RSc-93Bs.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/alg-basics-absolute-value/absolute-value-word-problems-exercise/", "duration": 232, "id": "Ig7RSc-93Bs", "title": "Absolute value word problems", "format": "mp4", "description": "Here are a few word problems that ask us to apply our new absolute value knowledge. As with all word problems, read them a couple of times before jumping to an answer.", "slug": "absolute-value-word-problems-exercise", "kind": "Video", "video_id": "Ig7RSc-93Bs", "keywords": "", "youtube_id": "Ig7RSc-93Bs", "readable_id": "absolute-value-word-problems-exercise"}, "hC6zx9WAiC4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hC6zx9WAiC4.mp4/hC6zx9WAiC4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hC6zx9WAiC4.mp4/hC6zx9WAiC4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hC6zx9WAiC4.m3u8/hC6zx9WAiC4.m3u8"}, "duration": 344, "id": "hC6zx9WAiC4", "title": "Volume of a cone", "format": "mp4", "description": "", "path": "khan/math/geometry/basic-geometry/volume_tutorial/volume-cone-example/", "slug": "volume-cone-example", "kind": "Video", "video_id": "hC6zx9WAiC4", "keywords": "", "youtube_id": "hC6zx9WAiC4", "readable_id": "volume-cone-example"}, "OwDXViQn6tw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OwDXViQn6tw.mp4/OwDXViQn6tw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OwDXViQn6tw.mp4/OwDXViQn6tw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OwDXViQn6tw.m3u8/OwDXViQn6tw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-myocarditis-and-pericarditis/diagnosis-of-myocarditis-and-pericarditis-part-1/", "duration": 768, "id": "OwDXViQn6tw", "title": "Diagnosis of myocarditis and pericarditis (part 1)", "format": "mp4", "description": "", "slug": "diagnosis-of-myocarditis-and-pericarditis-part-1", "kind": "Video", "video_id": "OwDXViQn6tw", "keywords": "", "youtube_id": "OwDXViQn6tw", "readable_id": "diagnosis-of-myocarditis-and-pericarditis-part-1"}, "vce3BZFo27Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vce3BZFo27Y.mp4/vce3BZFo27Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vce3BZFo27Y.mp4/vce3BZFo27Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vce3BZFo27Y.m3u8/vce3BZFo27Y.m3u8"}, "duration": 523, "id": "vce3BZFo27Y", "title": "Drug-resistant TB", "format": "mp4", "description": "Learn the different types of drug-resistant TB \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/drug-resistant-tb/", "slug": "drug-resistant-tb", "kind": "Video", "video_id": "vce3BZFo27Y", "keywords": "", "youtube_id": "vce3BZFo27Y", "readable_id": "drug-resistant-tb"}, "947j2zXm8WA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/947j2zXm8WA.mp4/947j2zXm8WA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/947j2zXm8WA.mp4/947j2zXm8WA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/947j2zXm8WA.m3u8/947j2zXm8WA.m3u8"}, "duration": 41, "id": "947j2zXm8WA", "title": "Are any dinosaurs still alive today?", "format": "mp4", "description": "Many, shared, evolutionary characteristics can be found in the skeletons of birds and other dinosaurs. One can follow the development of these evolutionary innovations by following along the evolutionary tree of dinosaurs from larger groups into successively smaller ones.\u00a0In an evolutionary sense, birds are a living group of dinosaurs because they descended from the common ancestor of all dinosaurs. Other than birds, however, there is no scientific evidence that any dinosaurs, such as Tyrannosaurus, Velociraptor, Apatosaurus, Stegosaurus, or Triceratops, are still alive. These, and all other nonavian dinosaurs became extinct at least 65 million years ago at the end of the Cretaceous Period.\n", "path": "dinosaurs-alive-today/", "slug": "dinosaurs-alive-today", "kind": "Video", "video_id": "947j2zXm8WA", "keywords": "", "youtube_id": "947j2zXm8WA", "readable_id": "dinosaurs-alive-today"}, "63yYbOnJt-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/63yYbOnJt-o.mp4/63yYbOnJt-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/63yYbOnJt-o.mp4/63yYbOnJt-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/63yYbOnJt-o.m3u8/63yYbOnJt-o.m3u8"}, "duration": 164, "id": "63yYbOnJt-o", "title": "\"Bicycle Wheel\" by Marcel Duchamp, 1951 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how she teaches \"Bicycle Wheel\" by Marcel Duchamp, 1951. \u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-duchamp/", "slug": "teaching-duchamp", "kind": "Video", "video_id": "63yYbOnJt-o", "keywords": "", "youtube_id": "63yYbOnJt-o", "readable_id": "teaching-duchamp"}, "AnwPH5yU8rY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AnwPH5yU8rY.mp4/AnwPH5yU8rY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AnwPH5yU8rY.mp4/AnwPH5yU8rY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AnwPH5yU8rY.m3u8/AnwPH5yU8rY.m3u8"}, "duration": 558, "id": "AnwPH5yU8rY", "title": "Understanding the pressure-volume loop", "format": "mp4", "description": "Figure out how all of those physiology terms: end-systolic, end-diastolic, pulse pressure, stroke volume, and ejection fraction, can be easily figured out using the pressure-volume loop. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/understanding-the-pressure-volume-loop/", "slug": "understanding-the-pressure-volume-loop", "kind": "Video", "video_id": "AnwPH5yU8rY", "keywords": "", "youtube_id": "AnwPH5yU8rY", "readable_id": "understanding-the-pressure-volume-loop"}, "RNxwasijbAo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RNxwasijbAo.mp4/RNxwasijbAo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RNxwasijbAo.mp4/RNxwasijbAo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RNxwasijbAo.m3u8/RNxwasijbAo.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/mult-div-concept/multiplication-intro/", "duration": 213, "id": "RNxwasijbAo", "title": "Intro to multiplication", "format": "mp4", "description": "Use arrays and repeated addition to visualize multiplication.\u00a0", "slug": "multiplication-intro", "kind": "Video", "video_id": "RNxwasijbAo", "keywords": "", "youtube_id": "RNxwasijbAo", "readable_id": "multiplication-intro"}, "DcnuU3Xj-cY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DcnuU3Xj-cY.mp4/DcnuU3Xj-cY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DcnuU3Xj-cY.mp4/DcnuU3Xj-cY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DcnuU3Xj-cY.m3u8/DcnuU3Xj-cY.m3u8"}, "duration": 172, "id": "DcnuU3Xj-cY", "title": "\"Over the Top\" with Beth Carver Wees", "format": "mp4", "description": "Met curator Beth Carver Wees on opulence in The Adams Vase, designed by Paulding Farnham and manufactured by Tiffany & Co.\n\nCommissioned in honor of Edward Dean Adams, chairman of the board of the American Cotton Oil Company, this bejeweled and enameled gold vase was designed to resemble the cotton plant. The overall form and coloration emulate those of the bell-shaped cotton flower, and the rock-crystal cover represents the white boll. Upon the completion of the vase, Tiffany & Co. proudly produced a booklet detailing the process of its creation.\n\nView this work on metmuseum.org.\n", "path": "overthetop/", "slug": "overthetop", "kind": "Video", "video_id": "DcnuU3Xj-cY", "keywords": "authority, gemstones, metal, ornate, politics, vessel, North America", "youtube_id": "DcnuU3Xj-cY", "readable_id": "overthetop"}, "15zliAL4llE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/15zliAL4llE.mp4/15zliAL4llE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/15zliAL4llE.mp4/15zliAL4llE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/15zliAL4llE.m3u8/15zliAL4llE.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/old-projectile-motion/projectile-motion-part-1/", "duration": 547, "id": "15zliAL4llE", "title": "Projectile motion (part 1)", "format": "mp4", "description": "Using the equations of motion to figure out things about falling objects", "slug": "projectile-motion-part-1", "kind": "Video", "video_id": "15zliAL4llE", "keywords": "physics, projectile, acceleration, gravity, velocity", "youtube_id": "15zliAL4llE", "readable_id": "projectile-motion-part-1"}, "lVacrVMmJX8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lVacrVMmJX8.mp4/lVacrVMmJX8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lVacrVMmJX8.mp4/lVacrVMmJX8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lVacrVMmJX8.m3u8/lVacrVMmJX8.m3u8"}, "duration": 464, "id": "lVacrVMmJX8", "title": "Central chemoreceptors", "format": "mp4", "description": "Find out how the your body uses special cells that are central to the brain (inside the brain) to sense levels of CO2 and pH. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/breathing-control/central-chemoreceptors/", "slug": "central-chemoreceptors", "kind": "Video", "video_id": "lVacrVMmJX8", "keywords": "", "youtube_id": "lVacrVMmJX8", "readable_id": "central-chemoreceptors"}, "ihXlnX3gJTU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ihXlnX3gJTU.mp4/ihXlnX3gJTU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ihXlnX3gJTU.mp4/ihXlnX3gJTU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ihXlnX3gJTU.m3u8/ihXlnX3gJTU.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e2-elimination-stereospecificity/", "duration": 481, "id": "ihXlnX3gJTU", "title": "E2 elimination: Stereospecificity", "format": "mp4", "description": "", "slug": "e2-elimination-stereospecificity", "kind": "Video", "video_id": "ihXlnX3gJTU", "keywords": "", "youtube_id": "ihXlnX3gJTU", "readable_id": "e2-elimination-stereospecificity"}, "i8caGm9Fmh0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i8caGm9Fmh0.mp4/i8caGm9Fmh0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i8caGm9Fmh0.mp4/i8caGm9Fmh0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i8caGm9Fmh0.m3u8/i8caGm9Fmh0.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/infrared-waves/", "duration": 323, "id": "i8caGm9Fmh0", "title": "Infrared waves (1800)", "format": "mp4", "description": "", "slug": "infrared-waves", "kind": "Video", "video_id": "i8caGm9Fmh0", "keywords": "", "youtube_id": "i8caGm9Fmh0", "readable_id": "infrared-waves"}, "OhJKDqZgNXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OhJKDqZgNXg.mp4/OhJKDqZgNXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OhJKDqZgNXg.mp4/OhJKDqZgNXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OhJKDqZgNXg.m3u8/OhJKDqZgNXg.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/classical/myron-discobolus-discus-thrower-roman-copy-of-an-ancient-greek-bronze-from-c-450-b-c-e/", "duration": 226, "id": "OhJKDqZgNXg", "title": "Myron, Discobolus (Discus Thrower), Roman copy of an ancient Greek bronze", "format": "mp4", "description": "Myron, Discobolus (Discus Thrower), Roman copy of an ancient Greek bronze from c. 450 B.C.E., Classical Period (Palazzo Massimo alle Terme). \n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "myron-discobolus-discus-thrower-roman-copy-of-an-ancient-greek-bronze-from-c-450-b-c-e", "kind": "Video", "video_id": "OhJKDqZgNXg", "keywords": "", "youtube_id": "OhJKDqZgNXg", "readable_id": "myron-discobolus-discus-thrower-roman-copy-of-an-ancient-greek-bronze-from-c-450-b-c-e"}, "Hhc96U_HvQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hhc96U_HvQE.mp4/Hhc96U_HvQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hhc96U_HvQE.mp4/Hhc96U_HvQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hhc96U_HvQE.m3u8/Hhc96U_HvQE.m3u8"}, "duration": 719, "id": "Hhc96U_HvQE", "title": "Matrix product associativity", "format": "mp4", "description": "Showing that matrix products are associative", "path": "khan/math/linear-algebra/matrix_transformations/composition_of_transformations/matrix-product-associativity/", "slug": "matrix-product-associativity", "kind": "Video", "video_id": "Hhc96U_HvQE", "keywords": "associate, matrix, products", "youtube_id": "Hhc96U_HvQE", "readable_id": "matrix-product-associativity"}, "ac0Kq3jSsp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ac0Kq3jSsp4.mp4/ac0Kq3jSsp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ac0Kq3jSsp4.mp4/ac0Kq3jSsp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ac0Kq3jSsp4.m3u8/ac0Kq3jSsp4.m3u8"}, "duration": 1056, "id": "ac0Kq3jSsp4", "title": "Harvard Business School Class Day 2014", "format": "mp4", "description": "", "path": "hbs-khan-graduation/", "slug": "hbs-khan-graduation", "kind": "Video", "video_id": "ac0Kq3jSsp4", "keywords": "", "youtube_id": "ac0Kq3jSsp4", "readable_id": "hbs-khan-graduation"}, "r5L-riaIJjI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r5L-riaIJjI.mp4/r5L-riaIJjI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r5L-riaIJjI.mp4/r5L-riaIJjI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r5L-riaIJjI.m3u8/r5L-riaIJjI.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/inequality-good-or-bad/", "duration": 512, "id": "r5L-riaIJjI", "title": "Is rising inequality necessarily bad?", "format": "mp4", "description": "", "slug": "inequality-good-or-bad", "kind": "Video", "video_id": "r5L-riaIJjI", "keywords": "", "youtube_id": "r5L-riaIJjI", "readable_id": "inequality-good-or-bad"}, "46CTJnzK23M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/46CTJnzK23M.mp4/46CTJnzK23M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/46CTJnzK23M.mp4/46CTJnzK23M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/46CTJnzK23M.m3u8/46CTJnzK23M.m3u8"}, "duration": 144, "id": "46CTJnzK23M", "title": "Antony Gormley's Case for an Angel I at the British Museum", "format": "mp4", "description": "Antony Gormley speaks of how the British Museum\u00a0has been the foundation of what sculpture means to him. Neil MacGregor (Director of the British Museum) reflects on\u00a0how Gormley's work and countless examples in the Museum's sculpture\u00a0collection, one of the greatest in the world, have\u00a0the aspiration to be much more than just human. \u00a9 Trustees of the British Museum", "path": "case-for-angel-1/", "slug": "case-for-angel-1", "kind": "Video", "video_id": "46CTJnzK23M", "keywords": "", "youtube_id": "46CTJnzK23M", "readable_id": "case-for-angel-1"}, "bGNMXfaNR5Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bGNMXfaNR5Q.mp4/bGNMXfaNR5Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bGNMXfaNR5Q.mp4/bGNMXfaNR5Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bGNMXfaNR5Q.m3u8/bGNMXfaNR5Q.m3u8"}, "duration": 1008, "id": "bGNMXfaNR5Q", "title": "Mean value theorem", "format": "mp4", "description": "Intuition behind the Mean Value Theorem", "path": "khan/math/differential-calculus/derivative_applications/mean_value_theorem/mean-value-theorem/", "slug": "mean-value-theorem", "kind": "Video", "video_id": "bGNMXfaNR5Q", "keywords": "calculus, mean, value, theorem, CC_39336_F-IF_6", "youtube_id": "bGNMXfaNR5Q", "readable_id": "mean-value-theorem"}, "O33b6B12YxI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O33b6B12YxI.mp4/O33b6B12YxI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O33b6B12YxI.mp4/O33b6B12YxI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O33b6B12YxI.m3u8/O33b6B12YxI.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial/nucleophile-electrophile-and-the-schwartz-rules/", "duration": 566, "id": "O33b6B12YxI", "title": "Nucleophile/electrophile and the schwartz rules", "format": "mp4", "description": "", "slug": "nucleophile-electrophile-and-the-schwartz-rules", "kind": "Video", "video_id": "O33b6B12YxI", "keywords": "", "youtube_id": "O33b6B12YxI", "readable_id": "nucleophile-electrophile-and-the-schwartz-rules"}, "zTLxxezKUT8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zTLxxezKUT8.mp4/zTLxxezKUT8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zTLxxezKUT8.mp4/zTLxxezKUT8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zTLxxezKUT8.m3u8/zTLxxezKUT8.m3u8"}, "duration": 218, "id": "zTLxxezKUT8", "title": "Using expressions to understand relationships", "format": "mp4", "description": "", "path": "khan/math/algebra/linear_inequalities/structure-expressions-linear/using-expressions-to-understand-relationships/", "slug": "using-expressions-to-understand-relationships", "kind": "Video", "video_id": "zTLxxezKUT8", "keywords": "", "youtube_id": "zTLxxezKUT8", "readable_id": "using-expressions-to-understand-relationships"}, "LhFXw1xmaSM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LhFXw1xmaSM.mp4/LhFXw1xmaSM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LhFXw1xmaSM.mp4/LhFXw1xmaSM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LhFXw1xmaSM.m3u8/LhFXw1xmaSM.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/substance-use-disorders/", "duration": 451, "id": "LhFXw1xmaSM", "title": "Substance use disorders", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "substance-use-disorders", "kind": "Video", "video_id": "LhFXw1xmaSM", "keywords": "", "youtube_id": "LhFXw1xmaSM", "readable_id": "substance-use-disorders"}, "ST6mSB-RvE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ST6mSB-RvE0.mp4/ST6mSB-RvE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ST6mSB-RvE0.mp4/ST6mSB-RvE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ST6mSB-RvE0.m3u8/ST6mSB-RvE0.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-myeloproliferative-disorders/what-is-chronic-myelogenous-leukemia/", "duration": 590, "id": "ST6mSB-RvE0", "title": "What is chronic myelogenous leukemia?", "format": "mp4", "description": "Learn what is chronic myelogenous leukemia as well as how to identify its signs and symptoms, diagnose it, and treat it. By Raja Narayan.\n\nVisit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-chronic-myelogenous-leukemia", "kind": "Video", "video_id": "ST6mSB-RvE0", "keywords": "", "youtube_id": "ST6mSB-RvE0", "readable_id": "what-is-chronic-myelogenous-leukemia"}, "incKJchBCLo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/incKJchBCLo.mp4/incKJchBCLo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/incKJchBCLo.mp4/incKJchBCLo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/incKJchBCLo.m3u8/incKJchBCLo.m3u8"}, "duration": 752, "id": "incKJchBCLo", "title": "Subtraction 2", "format": "mp4", "description": "Different ways to view subtraction", "path": "khan/math/arithmetic/addition-subtraction/two_dig_add_sub/subtraction-2/", "slug": "subtraction-2", "kind": "Video", "video_id": "incKJchBCLo", "keywords": "subtraction, difference, take, away, CC_1_OA_6, CC_2_OA_1", "youtube_id": "incKJchBCLo", "readable_id": "subtraction-2"}, "kZoFI_fcC74": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kZoFI_fcC74.mp4/kZoFI_fcC74.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kZoFI_fcC74.mp4/kZoFI_fcC74.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kZoFI_fcC74.m3u8/kZoFI_fcC74.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/one-step-equation-intuition-exercise-intro/", "duration": 111, "id": "kZoFI_fcC74", "title": "One step equation intuition introduction", "format": "mp4", "description": "To find the value of a variable, you sometimes have to get it on one side of the equation alone. To do that, you'll need to do something to BOTH sides of the equation. Watch. We'll explain why we do this.", "slug": "one-step-equation-intuition-exercise-intro", "kind": "Video", "video_id": "kZoFI_fcC74", "keywords": "", "youtube_id": "kZoFI_fcC74", "readable_id": "one-step-equation-intuition-exercise-intro"}, "ntxMOKXHlfo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ntxMOKXHlfo.mp4/ntxMOKXHlfo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ntxMOKXHlfo.mp4/ntxMOKXHlfo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ntxMOKXHlfo.m3u8/ntxMOKXHlfo.m3u8"}, "duration": 534, "id": "ntxMOKXHlfo", "title": "Monetary and fiscal policy", "format": "mp4", "description": "Basic mechanics of monetary and fiscal policy", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/monetary-fiscal-policy/monetary-and-fiscal-policy/", "slug": "monetary-and-fiscal-policy", "kind": "Video", "video_id": "ntxMOKXHlfo", "keywords": "macroeconomics", "youtube_id": "ntxMOKXHlfo", "readable_id": "monetary-and-fiscal-policy"}, "FdD0Wu032R4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FdD0Wu032R4.mp4/FdD0Wu032R4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FdD0Wu032R4.mp4/FdD0Wu032R4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FdD0Wu032R4.m3u8/FdD0Wu032R4.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-52-53/", "duration": 108, "id": "FdD0Wu032R4", "title": "CAHSEE practice: Problems 52-53", "format": "mp4", "description": "CAHSEE Practice: Problems 52-53", "slug": "cahsee-practice-problems-52-53", "kind": "Video", "video_id": "FdD0Wu032R4", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "FdD0Wu032R4", "readable_id": "cahsee-practice-problems-52-53"}, "REeBUSYRzRo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/REeBUSYRzRo.mp4/REeBUSYRzRo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/REeBUSYRzRo.mp4/REeBUSYRzRo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/REeBUSYRzRo.m3u8/REeBUSYRzRo.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/late-classical/lysippos-apoxyomenos-scraper-c-330-b-c-e-roman-copy/", "duration": 256, "id": "REeBUSYRzRo", "title": "Lysippos, Apoxyomenos (Scraper)", "format": "mp4", "description": "\u00a0Lysippos,\u00a0Apoxyomenos (Scraper, Roman copy after a bronze statue from c. 330 B.C.E., 6' 9\" high (Vatican Museums).\u00a0", "slug": "lysippos-apoxyomenos-scraper-c-330-b-c-e-roman-copy", "kind": "Video", "video_id": "REeBUSYRzRo", "keywords": "lysippos, Apoxyomenos, art history", "youtube_id": "REeBUSYRzRo", "readable_id": "lysippos-apoxyomenos-scraper-c-330-b-c-e-roman-copy"}, "1exN1kFX2wI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1exN1kFX2wI.mp4/1exN1kFX2wI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1exN1kFX2wI.mp4/1exN1kFX2wI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1exN1kFX2wI.m3u8/1exN1kFX2wI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/sheehan-syndrome/", "duration": 290, "id": "1exN1kFX2wI", "title": "Sheehan syndrome", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "sheehan-syndrome", "kind": "Video", "video_id": "1exN1kFX2wI", "keywords": "", "youtube_id": "1exN1kFX2wI", "readable_id": "sheehan-syndrome"}, "SfbjqVyQljk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SfbjqVyQljk.mp4/SfbjqVyQljk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SfbjqVyQljk.mp4/SfbjqVyQljk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SfbjqVyQljk.m3u8/SfbjqVyQljk.m3u8"}, "duration": 71, "id": "SfbjqVyQljk", "title": "Adding complex numbers", "format": "mp4", "description": "Adding Complex Numbers", "path": "khan/math/algebra2/complex-numbers-a2/complex_numbers/adding-complex-numbers/", "slug": "adding-complex-numbers", "kind": "Video", "video_id": "SfbjqVyQljk", "keywords": "u16_l4_t2_we1, Adding, Complex, Numbers", "youtube_id": "SfbjqVyQljk", "readable_id": "adding-complex-numbers"}, "CZdziIlYIfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CZdziIlYIfI.mp4/CZdziIlYIfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CZdziIlYIfI.mp4/CZdziIlYIfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CZdziIlYIfI.m3u8/CZdziIlYIfI.m3u8"}, "duration": 943, "id": "CZdziIlYIfI", "title": "Challenging definite integration", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 52 Periodic Definite Integral. The second term at about minute 14 should have a positive sign. Luckily, it doesn't effect the final answer!", "path": "khan/math/integral-calculus/integration-techniques/integration_by_parts/periodic-definite-integral/", "slug": "periodic-definite-integral", "kind": "Video", "video_id": "CZdziIlYIfI", "keywords": "2010, IIT, JEE, Paper, Problem, 52, Periodic, Definite, Integral, integration, by, parts", "youtube_id": "CZdziIlYIfI", "readable_id": "periodic-definite-integral"}, "heKK95DAKms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/heKK95DAKms.mp4/heKK95DAKms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/heKK95DAKms.mp4/heKK95DAKms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/heKK95DAKms.m3u8/heKK95DAKms.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-class-snakes-graphs/", "duration": 265, "id": "heKK95DAKms", "title": "Doodling in math: Snakes and graphs", "format": "mp4", "description": "More videos/info: http://vihart.com/doodlingDoodling Stars: http://www.youtube.com/watch?v=CfJzrmS9UfYDoodling Binary Trees: http://www.youtube.com/watch?v=e4MSN6IImpIhttp://vihart.com", "slug": "doodling-in-math-class-snakes-graphs", "kind": "Video", "video_id": "heKK95DAKms", "keywords": "math, doodles, mathematics, doodling, school, stars, graph theory, borromean rings, ouroboros, snakes, dark mark, topology, knot theory", "youtube_id": "heKK95DAKms", "readable_id": "doodling-in-math-class-snakes-graphs"}, "1kbZ1JAoi5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1kbZ1JAoi5o.mp4/1kbZ1JAoi5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1kbZ1JAoi5o.mp4/1kbZ1JAoi5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1kbZ1JAoi5o.m3u8/1kbZ1JAoi5o.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/self-presentation-and-interacting-with-others/animal-communication/", "duration": 262, "id": "1kbZ1JAoi5o", "title": "Animal communication", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "animal-communication", "kind": "Video", "video_id": "1kbZ1JAoi5o", "keywords": "", "youtube_id": "1kbZ1JAoi5o", "readable_id": "animal-communication"}, "zIcBK9t06YU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zIcBK9t06YU.mp4/zIcBK9t06YU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zIcBK9t06YU.mp4/zIcBK9t06YU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zIcBK9t06YU.m3u8/zIcBK9t06YU.m3u8"}, "duration": 165, "id": "zIcBK9t06YU", "title": "Mark Halberstadt: College Hero", "format": "mp4", "description": "Learn how Mark used Khan Academy to build the confidence to go back to school.", "path": "mark-halberstadt-college-hero/", "slug": "mark-halberstadt-college-hero", "kind": "Video", "video_id": "zIcBK9t06YU", "keywords": "", "youtube_id": "zIcBK9t06YU", "readable_id": "mark-halberstadt-college-hero"}, "On3c86V5A_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/On3c86V5A_E.mp4/On3c86V5A_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/On3c86V5A_E.mp4/On3c86V5A_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/On3c86V5A_E.m3u8/On3c86V5A_E.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-7-giving-out-loans-without-giving-out-gold/", "duration": 509, "id": "On3c86V5A_E", "title": "Banking 7: Giving out loans without giving out gold", "format": "mp4", "description": "How banks can give out loans without ever giving out gold.", "slug": "banking-7-giving-out-loans-without-giving-out-gold", "kind": "Video", "video_id": "On3c86V5A_E", "keywords": "banking, loans, finance, economics", "youtube_id": "On3c86V5A_E", "readable_id": "banking-7-giving-out-loans-without-giving-out-gold"}, "LOiw5aBrm4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LOiw5aBrm4Y.mp4/LOiw5aBrm4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LOiw5aBrm4Y.mp4/LOiw5aBrm4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LOiw5aBrm4Y.m3u8/LOiw5aBrm4Y.m3u8"}, "duration": 632, "id": "LOiw5aBrm4Y", "title": "Government's financial condition", "format": "mp4", "description": "Difference between debt and operating costs. Seeing how large obligations are for social security and medicare", "path": "khan/humanities/history/american-civics/american-civics/government-s-financial-condition/", "slug": "government-s-financial-condition", "kind": "Video", "video_id": "LOiw5aBrm4Y", "keywords": "finance, economics, budget, deficit, debt", "youtube_id": "LOiw5aBrm4Y", "readable_id": "government-s-financial-condition"}, "mFJ9tHJA2Sw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mFJ9tHJA2Sw.mp4/mFJ9tHJA2Sw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mFJ9tHJA2Sw.mp4/mFJ9tHJA2Sw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mFJ9tHJA2Sw.m3u8/mFJ9tHJA2Sw.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/william-hogarth-s-marriage-a-la-mode-c-1743/", "duration": 732, "id": "mFJ9tHJA2Sw", "title": "William Hogarth, Marriage A-la-Mode (including T\u00eate \u00e0 T\u00eate)", "format": "mp4", "description": "William Hogarth, Marriage A-la-Mode, c. 1743, oil on canvas, 69.9 x 90.8 cm (The National Gallery, London)\n1. The Marriage Settlement\n2. The T\u00eate \u00e0 T\u00eate\n3, The Inspection\n4. The Toilette\n5. The Bagnio\n6. The Lady's Death\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "william-hogarth-s-marriage-a-la-mode-c-1743", "kind": "Video", "video_id": "mFJ9tHJA2Sw", "keywords": "Hogarth, prints, engraving, painting, English, satire", "youtube_id": "mFJ9tHJA2Sw", "readable_id": "william-hogarth-s-marriage-a-la-mode-c-1743"}, "wl2iQAuQl7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wl2iQAuQl7Y.mp4/wl2iQAuQl7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wl2iQAuQl7Y.mp4/wl2iQAuQl7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wl2iQAuQl7Y.m3u8/wl2iQAuQl7Y.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/comparing_linear_functions/comparing-features-of-functions-3/", "duration": 156, "id": "wl2iQAuQl7Y", "title": "Comparing linear functions 2", "format": "mp4", "description": "", "slug": "comparing-features-of-functions-3", "kind": "Video", "video_id": "wl2iQAuQl7Y", "keywords": "", "youtube_id": "wl2iQAuQl7Y", "readable_id": "comparing-features-of-functions-3"}, "4lbVBMLZ1jQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4lbVBMLZ1jQ.mp4/4lbVBMLZ1jQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4lbVBMLZ1jQ.mp4/4lbVBMLZ1jQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4lbVBMLZ1jQ.m3u8/4lbVBMLZ1jQ.m3u8"}, "duration": 613, "id": "4lbVBMLZ1jQ", "title": "Physical properties of aldehydes and ketones", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/physical-properties-of-aldehydes-and-ketones/", "slug": "physical-properties-of-aldehydes-and-ketones", "kind": "Video", "video_id": "4lbVBMLZ1jQ", "keywords": "", "youtube_id": "4lbVBMLZ1jQ", "readable_id": "physical-properties-of-aldehydes-and-ketones"}, "TDpQ5xL1EEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TDpQ5xL1EEE.mp4/TDpQ5xL1EEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TDpQ5xL1EEE.mp4/TDpQ5xL1EEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TDpQ5xL1EEE.m3u8/TDpQ5xL1EEE.m3u8"}, "duration": 150, "id": "TDpQ5xL1EEE", "title": "Click n' stick base & batteries", "format": "mp4", "description": "In this video we show you how to connect Spider's motors to his tap light base.", "path": "khan/science/discoveries-projects/robots/spider_bot/4-attach-spider-s-click-n-stick-base-to-the-batteries/", "slug": "4-attach-spider-s-click-n-stick-base-to-the-batteries", "kind": "Video", "video_id": "TDpQ5xL1EEE", "keywords": "", "youtube_id": "TDpQ5xL1EEE", "readable_id": "4-attach-spider-s-click-n-stick-base-to-the-batteries"}, "AsqEkF7hcII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AsqEkF7hcII.mp4/AsqEkF7hcII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AsqEkF7hcII.mp4/AsqEkF7hcII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AsqEkF7hcII.m3u8/AsqEkF7hcII.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/stoichiometry/the-mole-and-avogadro-s-number/", "duration": 584, "id": "AsqEkF7hcII", "title": "The mole and Avogadro's number", "format": "mp4", "description": "Introduction to the idea of a mole as a number (vs. an animal).", "slug": "the-mole-and-avogadro-s-number", "kind": "Video", "video_id": "AsqEkF7hcII", "keywords": "mole, chemistry, avogadro's, number", "youtube_id": "AsqEkF7hcII", "readable_id": "the-mole-and-avogadro-s-number"}, "KRFiAlo7t1E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KRFiAlo7t1E.mp4/KRFiAlo7t1E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KRFiAlo7t1E.mp4/KRFiAlo7t1E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KRFiAlo7t1E.m3u8/KRFiAlo7t1E.m3u8"}, "duration": 498, "id": "KRFiAlo7t1E", "title": "Explicit and recursive definitions of sequences", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-sequences/explicit-and-recursive-definitions-of-sequences/", "slug": "explicit-and-recursive-definitions-of-sequences", "kind": "Video", "video_id": "KRFiAlo7t1E", "keywords": "", "youtube_id": "KRFiAlo7t1E", "readable_id": "explicit-and-recursive-definitions-of-sequences"}, "gZMvA2Apg2A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gZMvA2Apg2A.mp4/gZMvA2Apg2A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gZMvA2Apg2A.mp4/gZMvA2Apg2A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gZMvA2Apg2A.m3u8/gZMvA2Apg2A.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/social-support/", "duration": 217, "id": "gZMvA2Apg2A", "title": "Social support", "format": "mp4", "description": "", "slug": "social-support", "kind": "Video", "video_id": "gZMvA2Apg2A", "keywords": "", "youtube_id": "gZMvA2Apg2A", "readable_id": "social-support"}, "gcnk8TnzsLc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gcnk8TnzsLc.mp4/gcnk8TnzsLc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gcnk8TnzsLc.mp4/gcnk8TnzsLc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gcnk8TnzsLc.m3u8/gcnk8TnzsLc.m3u8"}, "duration": 250, "id": "gcnk8TnzsLc", "title": "Multiplying and dividing rational expressions 3", "format": "mp4", "description": "Multiplying and Dividing Rational Expressions 3", "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying-and-dividing-rational-expressions-3/", "slug": "multiplying-and-dividing-rational-expressions-3", "kind": "Video", "video_id": "gcnk8TnzsLc", "keywords": "U11_L1_T2_we3.1, Multiplying, and, Dividing, Rational, Expressions, CC_39336_A-APR_6, CC_39336_A-APR_7", "youtube_id": "gcnk8TnzsLc", "readable_id": "multiplying-and-dividing-rational-expressions-3"}, "_y_Q3_B2Vh8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_y_Q3_B2Vh8.mp4/_y_Q3_B2Vh8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_y_Q3_B2Vh8.mp4/_y_Q3_B2Vh8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_y_Q3_B2Vh8.m3u8/_y_Q3_B2Vh8.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/why-we-do-the-same-thing-to-both-sides-two-step-equations/", "duration": 312, "id": "_y_Q3_B2Vh8", "title": "Solving two-step equations", "format": "mp4", "description": "Here's how we solve a two step equation. It begins with the concept of equality: what we do to one side of the equation must be done to the other.", "slug": "why-we-do-the-same-thing-to-both-sides-two-step-equations", "kind": "Video", "video_id": "_y_Q3_B2Vh8", "keywords": "Why, we, do, the, same, thing, to, both, sides, two, step, equations", "youtube_id": "_y_Q3_B2Vh8", "readable_id": "why-we-do-the-same-thing-to-both-sides-two-step-equations"}, "j7WcgW4BpqE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j7WcgW4BpqE.mp4/j7WcgW4BpqE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j7WcgW4BpqE.mp4/j7WcgW4BpqE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j7WcgW4BpqE.m3u8/j7WcgW4BpqE.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/other-materials1/one-student-of-big-history/", "duration": 182, "id": "j7WcgW4BpqE", "title": "One Student of Big History", "format": "mp4", "description": "Did you know Bill Gates was a big history student? Here he explains why it's his favorite course of all time.", "slug": "one-student-of-big-history", "kind": "Video", "video_id": "j7WcgW4BpqE", "keywords": "", "youtube_id": "j7WcgW4BpqE", "readable_id": "one-student-of-big-history"}, "6xEO4BeawzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6xEO4BeawzA.mp4/6xEO4BeawzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6xEO4BeawzA.mp4/6xEO4BeawzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6xEO4BeawzA.m3u8/6xEO4BeawzA.m3u8"}, "duration": 627, "id": "6xEO4BeawzA", "title": "Complex roots of the characteristic equations 1", "format": "mp4", "description": "What happens when the characteristic equations has complex roots?!", "path": "khan/math/differential-equations/second-order-differential-equations/complex-roots-characteristic-equation/complex-roots-of-the-characteristic-equations-1/", "slug": "complex-roots-of-the-characteristic-equations-1", "kind": "Video", "video_id": "6xEO4BeawzA", "keywords": "Complex, roots, of, the, characteristic, equations", "youtube_id": "6xEO4BeawzA", "readable_id": "complex-roots-of-the-characteristic-equations-1"}, "A-Q79HlORtM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A-Q79HlORtM.mp4/A-Q79HlORtM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A-Q79HlORtM.mp4/A-Q79HlORtM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A-Q79HlORtM.m3u8/A-Q79HlORtM.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/early-classical/charioteer-delphi/", "duration": 218, "id": "A-Q79HlORtM", "title": "Charioteer of Delphi", "format": "mp4", "description": "Charioteer of Delphi, c. 478-474 B.C.E., bronze (lost wax cast) with silver, glass and copper inlay, 1.8 m high (Delphi Archaeological Museum)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\nInscription on base:\n\"Dedicated by Polyzalus, younger brother of Gelon, tyrant of Gela and later of Syracuse, and of Hieron\"\n\nUncovered in 1896 near the Temple of Apollo at Delphi\u00a0", "slug": "charioteer-delphi", "kind": "Video", "video_id": "A-Q79HlORtM", "keywords": "", "youtube_id": "A-Q79HlORtM", "readable_id": "charioteer-delphi"}, "15fz6Wo84IA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/15fz6Wo84IA.mp4/15fz6Wo84IA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/15fz6Wo84IA.mp4/15fz6Wo84IA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/15fz6Wo84IA.m3u8/15fz6Wo84IA.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/proton-nmr-practice-3/", "duration": 443, "id": "15fz6Wo84IA", "title": "Proton NMR practice 3", "format": "mp4", "description": "", "slug": "proton-nmr-practice-3", "kind": "Video", "video_id": "15fz6Wo84IA", "keywords": "", "youtube_id": "15fz6Wo84IA", "readable_id": "proton-nmr-practice-3"}, "QW5zeVy8aE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QW5zeVy8aE0.mp4/QW5zeVy8aE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QW5zeVy8aE0.mp4/QW5zeVy8aE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QW5zeVy8aE0.m3u8/QW5zeVy8aE0.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/tour-of-the-ems-06-ultraviolet-waves/", "duration": 220, "id": "QW5zeVy8aE0", "title": "Ultraviolet waves (1801)", "format": "mp4", "description": "", "slug": "tour-of-the-ems-06-ultraviolet-waves", "kind": "Video", "video_id": "QW5zeVy8aE0", "keywords": "", "youtube_id": "QW5zeVy8aE0", "readable_id": "tour-of-the-ems-06-ultraviolet-waves"}, "zVsGtU8lIWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zVsGtU8lIWs.mp4/zVsGtU8lIWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zVsGtU8lIWs.mp4/zVsGtU8lIWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zVsGtU8lIWs.m3u8/zVsGtU8lIWs.m3u8"}, "duration": 323, "id": "zVsGtU8lIWs", "title": "Preimage of a set", "format": "mp4", "description": "Definition of preimage of a set", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/preimage-of-a-set/", "slug": "preimage-of-a-set", "kind": "Video", "video_id": "zVsGtU8lIWs", "keywords": "preimage, image, of, set", "youtube_id": "zVsGtU8lIWs", "readable_id": "preimage-of-a-set"}, "Ybw6N0dQIaE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ybw6N0dQIaE.mp4/Ybw6N0dQIaE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ybw6N0dQIaE.mp4/Ybw6N0dQIaE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ybw6N0dQIaE.m3u8/Ybw6N0dQIaE.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-blended-software/sscc-blended-buildsoftware/", "duration": 178, "id": "Ybw6N0dQIaE", "title": "Building customized software and solutions", "format": "mp4", "description": "", "slug": "sscc-blended-buildsoftware", "kind": "Video", "video_id": "Ybw6N0dQIaE", "keywords": "", "youtube_id": "Ybw6N0dQIaE", "readable_id": "sscc-blended-buildsoftware"}, "oeyCaB_sj-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oeyCaB_sj-0.mp4/oeyCaB_sj-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oeyCaB_sj-0.mp4/oeyCaB_sj-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oeyCaB_sj-0.m3u8/oeyCaB_sj-0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/cyanotic-heart-diseases-diagnosis-and-treatment/", "duration": 228, "id": "oeyCaB_sj-0", "title": "Cyanotic heart diseases - Diagnosis and treatment", "format": "mp4", "description": "", "slug": "cyanotic-heart-diseases-diagnosis-and-treatment", "kind": "Video", "video_id": "oeyCaB_sj-0", "keywords": "", "youtube_id": "oeyCaB_sj-0", "readable_id": "cyanotic-heart-diseases-diagnosis-and-treatment"}, "YWE9HuV0lo8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YWE9HuV0lo8.mp4/YWE9HuV0lo8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YWE9HuV0lo8.mp4/YWE9HuV0lo8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YWE9HuV0lo8.m3u8/YWE9HuV0lo8.m3u8"}, "duration": 319, "id": "YWE9HuV0lo8", "title": "Bottlenecks and the environment", "format": "mp4", "description": "Learn about how changes in the environment can change the way natural selection behaves. What happens when a population's environment changes drastically?\u00a0 By Ross Firestone.", "path": "khan/test-prep/mcat/biomolecules/evolution-population-dynmaics/bottlenecks-the-environment/", "slug": "bottlenecks-the-environment", "kind": "Video", "video_id": "YWE9HuV0lo8", "keywords": "", "youtube_id": "YWE9HuV0lo8", "readable_id": "bottlenecks-the-environment"}, "8T4F7WboWPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8T4F7WboWPQ.mp4/8T4F7WboWPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8T4F7WboWPQ.mp4/8T4F7WboWPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8T4F7WboWPQ.m3u8/8T4F7WboWPQ.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/binary-to-hexadecimal/", "duration": 327, "id": "8T4F7WboWPQ", "title": "Converting directly from binary to hexadecimal", "format": "mp4", "description": "", "slug": "binary-to-hexadecimal", "kind": "Video", "video_id": "8T4F7WboWPQ", "keywords": "", "youtube_id": "8T4F7WboWPQ", "readable_id": "binary-to-hexadecimal"}, "YsS9kk2cr94": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YsS9kk2cr94.mp4/YsS9kk2cr94.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YsS9kk2cr94.mp4/YsS9kk2cr94.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YsS9kk2cr94.m3u8/YsS9kk2cr94.m3u8"}, "duration": 457, "id": "YsS9kk2cr94", "title": "The Constitution and the Constitutional Convention", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the Constitutional Convention and the replacement of the Articles of Confederation, the Virginia Plan and national government vs. states rights.", "path": "constitutional-convention/", "slug": "constitutional-convention", "kind": "Video", "video_id": "YsS9kk2cr94", "keywords": "", "youtube_id": "YsS9kk2cr94", "readable_id": "constitutional-convention"}, "l4hMDy_JMEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l4hMDy_JMEQ.mp4/l4hMDy_JMEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l4hMDy_JMEQ.mp4/l4hMDy_JMEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l4hMDy_JMEQ.m3u8/l4hMDy_JMEQ.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/hotspot-case-study-mesoamerica/", "duration": 118, "id": "l4hMDy_JMEQ", "title": "Biodiversity hotspot case study: Mesoamerica", "format": "mp4", "description": "", "slug": "hotspot-case-study-mesoamerica", "kind": "Video", "video_id": "l4hMDy_JMEQ", "keywords": "", "youtube_id": "l4hMDy_JMEQ", "readable_id": "hotspot-case-study-mesoamerica"}, "og9baLjHRH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/og9baLjHRH4.mp4/og9baLjHRH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/og9baLjHRH4.mp4/og9baLjHRH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/og9baLjHRH4.m3u8/og9baLjHRH4.m3u8"}, "path": "khan/partner-content/big-history-project/life/life-and-big-history/bhp-origin-of-life_crashcourse/", "duration": 778, "id": "og9baLjHRH4", "title": "Crash Course Big History: The Origin of Life", "format": "mp4", "description": "", "slug": "bhp-origin-of-life_crashcourse", "kind": "Video", "video_id": "og9baLjHRH4", "keywords": "", "youtube_id": "og9baLjHRH4", "readable_id": "bhp-origin-of-life_crashcourse"}, "gpIJcqY0weE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gpIJcqY0weE.mp4/gpIJcqY0weE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gpIJcqY0weE.mp4/gpIJcqY0weE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gpIJcqY0weE.m3u8/gpIJcqY0weE.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-11/", "duration": 579, "id": "gpIJcqY0weE", "title": "GMAT: Data sufficiency 11", "format": "mp4", "description": "51-54, pgs. 281-282", "slug": "gmat-data-sufficiency-11", "kind": "Video", "video_id": "gpIJcqY0weE", "keywords": "gmat, data, sufficiency", "youtube_id": "gpIJcqY0weE", "readable_id": "gmat-data-sufficiency-11"}, "5lXw5_4R2B4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5lXw5_4R2B4.mp4/5lXw5_4R2B4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5lXw5_4R2B4.mp4/5lXw5_4R2B4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5lXw5_4R2B4.m3u8/5lXw5_4R2B4.m3u8"}, "duration": 203, "id": "5lXw5_4R2B4", "title": "Adding up resistance problem", "format": "mp4", "description": "Here's a chance to see if you can combine what you know to add up resistance in series AND in parallel. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/adding-up-resistance-problem/", "slug": "adding-up-resistance-problem", "kind": "Video", "video_id": "5lXw5_4R2B4", "keywords": "", "youtube_id": "5lXw5_4R2B4", "readable_id": "adding-up-resistance-problem"}, "oKRly5xc0_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oKRly5xc0_g.mp4/oKRly5xc0_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oKRly5xc0_g.mp4/oKRly5xc0_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oKRly5xc0_g.m3u8/oKRly5xc0_g.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/hans-haacke/", "duration": 185, "id": "oKRly5xc0_g", "title": "Hans Haacke: \"A Breed Apart\" in South Africa", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nSince the early 1960s, German-American artist Hans Haacke has been producing controversial work, often seeking to expose systems of power and influence. While some artists might work to engage with local concerns, Haacke brings his art and its topics to a global scale. In this video, he explains his 1978 photographic series A Breed Apart, a group of montages which targets former car manufacturer British Leyland and for its insidious campaigns and actions in apartheid\u2014or racially segregated\u2014South Africa. By juxtaposing slick advertising shots with images of Leyland vehicles \u201cin action,\u201d as he puts it, against the black indigenous population of South Africa, Haacke highlighted the incongruities of the company\u2019s stance.\n\n\n\n\n\n\u201cI believe it is necessary for the public... the voters... to become aware of these interdependencies, and come up with, hopefully, an alternative,\u201d says Haacke. Do you think art and artists have a responsibility to inform and activate the public?\n\nLearn more about Hans Haacke and his politically engaged works of art here.\n", "slug": "hans-haacke", "kind": "Video", "video_id": "oKRly5xc0_g", "keywords": "Tate", "youtube_id": "oKRly5xc0_g", "readable_id": "hans-haacke"}, "Uteoh0PtWwI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Uteoh0PtWwI.mp4/Uteoh0PtWwI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Uteoh0PtWwI.mp4/Uteoh0PtWwI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Uteoh0PtWwI.m3u8/Uteoh0PtWwI.m3u8"}, "duration": 222, "id": "Uteoh0PtWwI", "title": "Matching radical functions with graphs exercise example", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/shifting-reflecting-functions/radical-function-graphs-exercise/", "slug": "radical-function-graphs-exercise", "kind": "Video", "video_id": "Uteoh0PtWwI", "keywords": "", "youtube_id": "Uteoh0PtWwI", "readable_id": "radical-function-graphs-exercise"}, "ONc7qR1uCPo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ONc7qR1uCPo.mp4/ONc7qR1uCPo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ONc7qR1uCPo.mp4/ONc7qR1uCPo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ONc7qR1uCPo.m3u8/ONc7qR1uCPo.m3u8"}, "duration": 574, "id": "ONc7qR1uCPo", "title": "The global carbon cycle", "format": "mp4", "description": "In this final episode of Crash Course Chemistry, Hank takes us on a tour of the The Global Carbon Cycle and how it all works. From Carbon Fixation to Redox Reactions, it's all contained within!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem46-global-carbon-cycle/", "slug": "chem46-global-carbon-cycle", "kind": "Video", "video_id": "ONc7qR1uCPo", "keywords": "", "youtube_id": "ONc7qR1uCPo", "readable_id": "chem46-global-carbon-cycle"}, "5YfO4CshL7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5YfO4CshL7Y.mp4/5YfO4CshL7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5YfO4CshL7Y.mp4/5YfO4CshL7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5YfO4CshL7Y.m3u8/5YfO4CshL7Y.m3u8"}, "duration": 394, "id": "5YfO4CshL7Y", "title": "Short sale basics", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/housing/mortgages-tutorial/short-sale-basics/", "slug": "short-sale-basics", "kind": "Video", "video_id": "5YfO4CshL7Y", "keywords": "", "youtube_id": "5YfO4CshL7Y", "readable_id": "short-sale-basics"}, "mfRafWtmOcU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mfRafWtmOcU.mp4/mfRafWtmOcU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mfRafWtmOcU.mp4/mfRafWtmOcU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mfRafWtmOcU.m3u8/mfRafWtmOcU.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/plate-tectonics-important/bhp-our-shifting-world/", "duration": 268, "id": "mfRafWtmOcU", "title": "Our Shifting Globe", "format": "mp4", "description": "Every volcanic eruption and earthquakes are a reminder that Earth is very much alive and in motion.", "slug": "bhp-our-shifting-world", "kind": "Video", "video_id": "mfRafWtmOcU", "keywords": "", "youtube_id": "mfRafWtmOcU", "readable_id": "bhp-our-shifting-world"}, "fk_CyvXeLcs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fk_CyvXeLcs.mp4/fk_CyvXeLcs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fk_CyvXeLcs.mp4/fk_CyvXeLcs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fk_CyvXeLcs.m3u8/fk_CyvXeLcs.m3u8"}, "duration": 242, "id": "fk_CyvXeLcs", "title": "Daido Moriyama", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nPrinting Show is a recreation of Daido Moriyama's 1974 performance of the same name. At this event, participants created their own limited-edition photobook of images by Moriyama, arranging the images in whatever order they chose. Listen as Moriyama shares why, nearly 40 years on, this kind of collaboration with the audience still excites him.", "path": "daido-moriyama-printing-show/", "slug": "daido-moriyama-printing-show", "kind": "Video", "video_id": "fk_CyvXeLcs", "keywords": "Tate, performance art", "youtube_id": "fk_CyvXeLcs", "readable_id": "daido-moriyama-printing-show"}, "FJIZPvE3O1A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FJIZPvE3O1A.mp4/FJIZPvE3O1A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FJIZPvE3O1A.mp4/FJIZPvE3O1A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FJIZPvE3O1A.m3u8/FJIZPvE3O1A.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-circle-area-chords-tangent/", "duration": 606, "id": "FJIZPvE3O1A", "title": "CA Geometry: Circle area chords tangent", "format": "mp4", "description": "71-75, area, chords, tangents of circles", "slug": "ca-geometry-circle-area-chords-tangent", "kind": "Video", "video_id": "FJIZPvE3O1A", "keywords": "geometry, circle", "youtube_id": "FJIZPvE3O1A", "readable_id": "ca-geometry-circle-area-chords-tangent"}, "V3FvaClh6LY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V3FvaClh6LY.mp4/V3FvaClh6LY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V3FvaClh6LY.mp4/V3FvaClh6LY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V3FvaClh6LY.m3u8/V3FvaClh6LY.m3u8"}, "duration": 85, "id": "V3FvaClh6LY", "title": "Proportion validity example", "format": "mp4", "description": "Understanding Proportions", "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/understanding-proportions/", "slug": "understanding-proportions", "kind": "Video", "video_id": "V3FvaClh6LY", "keywords": "U04_L2_T1_we1, Understanding, Proportions, CC_7_RP_2, CC_7_RP_2_a", "youtube_id": "V3FvaClh6LY", "readable_id": "understanding-proportions"}, "Zn-GbH2S0Dk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zn-GbH2S0Dk.mp4/Zn-GbH2S0Dk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zn-GbH2S0Dk.mp4/Zn-GbH2S0Dk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zn-GbH2S0Dk.m3u8/Zn-GbH2S0Dk.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/algebra-linear-equations-3/", "duration": 403, "id": "Zn-GbH2S0Dk", "title": "Algebra: Linear equations 3", "format": "mp4", "description": "Linear equations with multiple variable and constant terms", "slug": "algebra-linear-equations-3", "kind": "Video", "video_id": "Zn-GbH2S0Dk", "keywords": "algebra", "youtube_id": "Zn-GbH2S0Dk", "readable_id": "algebra-linear-equations-3"}, "g_dStt4st2I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g_dStt4st2I.mp4/g_dStt4st2I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g_dStt4st2I.mp4/g_dStt4st2I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g_dStt4st2I.m3u8/g_dStt4st2I.m3u8"}, "path": "khan/math/geometry/geometric-constructions/constructing-tangents/another-example-using-compass-and-straightedge-for-tangent-line/", "duration": 335, "id": "g_dStt4st2I", "title": "Another example using compass and straightedge for tangent line", "format": "mp4", "description": "", "slug": "another-example-using-compass-and-straightedge-for-tangent-line", "kind": "Video", "video_id": "g_dStt4st2I", "keywords": "", "youtube_id": "g_dStt4st2I", "readable_id": "another-example-using-compass-and-straightedge-for-tangent-line"}, "HB48COey2O8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HB48COey2O8.mp4/HB48COey2O8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HB48COey2O8.mp4/HB48COey2O8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HB48COey2O8.m3u8/HB48COey2O8.m3u8"}, "duration": 272, "id": "HB48COey2O8", "title": "FOIL method for multiplying binomials example 2", "format": "mp4", "description": "FOIL method for multiplying binomials example 2", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/multiplying-polynomials1/", "slug": "multiplying-polynomials1", "kind": "Video", "video_id": "HB48COey2O8", "keywords": "U08_L2_T3_we1, Multiplying, Polynomials1, CC_7_EE_4_a, CC_39336_A-APR_1", "youtube_id": "HB48COey2O8", "readable_id": "multiplying-polynomials1"}, "AwulrWkLy3Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AwulrWkLy3Q.mp4/AwulrWkLy3Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AwulrWkLy3Q.mp4/AwulrWkLy3Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AwulrWkLy3Q.m3u8/AwulrWkLy3Q.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2008-may-4-17/", "duration": 221, "id": "AwulrWkLy3Q", "title": "17 Intersection of perpendicular lines", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-17", "kind": "Video", "video_id": "AwulrWkLy3Q", "keywords": "", "youtube_id": "AwulrWkLy3Q", "readable_id": "sat-2008-may-4-17"}, "78tnNYNISOc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/78tnNYNISOc.mp4/78tnNYNISOc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/78tnNYNISOc.mp4/78tnNYNISOc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/78tnNYNISOc.m3u8/78tnNYNISOc.m3u8"}, "duration": 420, "id": "78tnNYNISOc", "title": "Vertical asymptote of natural log", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits-infinity/vertical-asymptote-natural-log/", "slug": "vertical-asymptote-natural-log", "kind": "Video", "video_id": "78tnNYNISOc", "keywords": "", "youtube_id": "78tnNYNISOc", "readable_id": "vertical-asymptote-natural-log"}, "8EmhGOQ-DNQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8EmhGOQ-DNQ.mp4/8EmhGOQ-DNQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8EmhGOQ-DNQ.mp4/8EmhGOQ-DNQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8EmhGOQ-DNQ.m3u8/8EmhGOQ-DNQ.m3u8"}, "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/snowflakes-starflakes-and-swirlflakes/", "duration": 244, "id": "8EmhGOQ-DNQ", "title": "Snowflakes, starflakes, and swirlflakes", "format": "mp4", "description": "Unusual variations on the paper snowflake.", "slug": "snowflakes-starflakes-and-swirlflakes", "kind": "Video", "video_id": "8EmhGOQ-DNQ", "keywords": "", "youtube_id": "8EmhGOQ-DNQ", "readable_id": "snowflakes-starflakes-and-swirlflakes"}, "MzY6PTY0Bks": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MzY6PTY0Bks.mp4/MzY6PTY0Bks.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MzY6PTY0Bks.mp4/MzY6PTY0Bks.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MzY6PTY0Bks.m3u8/MzY6PTY0Bks.m3u8"}, "path": "khan/math/recreational-math/math-warmup/arithmetic-warmups/addition-warmup/", "duration": 174, "id": "MzY6PTY0Bks", "title": "Addition with carrying warmup", "format": "mp4", "description": "", "slug": "addition-warmup", "kind": "Video", "video_id": "MzY6PTY0Bks", "keywords": "", "youtube_id": "MzY6PTY0Bks", "readable_id": "addition-warmup"}, "wwjtuZ5vTvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wwjtuZ5vTvc.mp4/wwjtuZ5vTvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wwjtuZ5vTvc.mp4/wwjtuZ5vTvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wwjtuZ5vTvc.m3u8/wwjtuZ5vTvc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-at-rest/fluids-part-6/", "duration": 581, "id": "wwjtuZ5vTvc", "title": "Fluids (part 6)", "format": "mp4", "description": "A couple of problems involving Archimedes' principle and buoyant forces.", "slug": "fluids-part-6", "kind": "Video", "video_id": "wwjtuZ5vTvc", "keywords": "physics, fluid, liquid, archimedes, buoyant, force, example", "youtube_id": "wwjtuZ5vTvc", "readable_id": "fluids-part-6"}, "wPZIa3SjPF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wPZIa3SjPF0.mp4/wPZIa3SjPF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wPZIa3SjPF0.mp4/wPZIa3SjPF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wPZIa3SjPF0.m3u8/wPZIa3SjPF0.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/quadrilateral-types-exercise/", "duration": 169, "id": "wPZIa3SjPF0", "title": "Quadrilaterals: find the type exercise", "format": "mp4", "description": "Take a look at the given data and determine what type of quadrilateral we have.", "slug": "quadrilateral-types-exercise", "kind": "Video", "video_id": "wPZIa3SjPF0", "keywords": "", "youtube_id": "wPZIa3SjPF0", "readable_id": "quadrilateral-types-exercise"}, "3tyrkxruz88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3tyrkxruz88.mp4/3tyrkxruz88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3tyrkxruz88.mp4/3tyrkxruz88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3tyrkxruz88.m3u8/3tyrkxruz88.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/electron-configurations-for-the-third-and-fourth-periods/", "duration": 788, "id": "3tyrkxruz88", "title": "Electron configurations for the third and fourth periods", "format": "mp4", "description": "", "slug": "electron-configurations-for-the-third-and-fourth-periods", "kind": "Video", "video_id": "3tyrkxruz88", "keywords": "", "youtube_id": "3tyrkxruz88", "readable_id": "electron-configurations-for-the-third-and-fourth-periods"}, "8ToCxaB7EOE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8ToCxaB7EOE.mp4/8ToCxaB7EOE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8ToCxaB7EOE.mp4/8ToCxaB7EOE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8ToCxaB7EOE.m3u8/8ToCxaB7EOE.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/basic-geo-shapes-on-a-plane/analyzing-polygon-on-the-coordinate-plane/", "duration": 317, "id": "8ToCxaB7EOE", "title": "Parallelogram on the coordinate plane", "format": "mp4", "description": "Remember our discussion of the coordinate plane? Sure you do! Let's graph the given coordinates of three of the polygon vertices, and find where the 4th vertex is.", "slug": "analyzing-polygon-on-the-coordinate-plane", "kind": "Video", "video_id": "8ToCxaB7EOE", "keywords": "", "youtube_id": "8ToCxaB7EOE", "readable_id": "analyzing-polygon-on-the-coordinate-plane"}, "L-_MvjcH0xk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L-_MvjcH0xk.mp4/L-_MvjcH0xk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L-_MvjcH0xk.mp4/L-_MvjcH0xk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L-_MvjcH0xk.m3u8/L-_MvjcH0xk.m3u8"}, "duration": 762, "id": "L-_MvjcH0xk", "title": "Anatomy of a muscle cell", "format": "mp4", "description": "Understanding the structure of a muscle cell. By Raja Narayan. ", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/anatomy-of-a-muscle-cell-1/", "slug": "anatomy-of-a-muscle-cell-1", "kind": "Video", "video_id": "L-_MvjcH0xk", "keywords": "", "youtube_id": "L-_MvjcH0xk", "readable_id": "anatomy-of-a-muscle-cell-1"}, "6WMZ7J0wwMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6WMZ7J0wwMI.mp4/6WMZ7J0wwMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6WMZ7J0wwMI.mp4/6WMZ7J0wwMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6WMZ7J0wwMI.m3u8/6WMZ7J0wwMI.m3u8"}, "duration": 461, "id": "6WMZ7J0wwMI", "title": "Exponential growth functions", "format": "mp4", "description": "Exponential Growth Functions", "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/exponential-growth-functions/", "slug": "exponential-growth-functions", "kind": "Video", "video_id": "6WMZ7J0wwMI", "keywords": "Exponential, Growth, Functions, CC_39336_F-IF_8_b, CC_39336_F-LE_1_c", "youtube_id": "6WMZ7J0wwMI", "readable_id": "exponential-growth-functions"}, "z_QeYCg4yJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z_QeYCg4yJ8.mp4/z_QeYCg4yJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z_QeYCg4yJ8.mp4/z_QeYCg4yJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z_QeYCg4yJ8.m3u8/z_QeYCg4yJ8.m3u8"}, "duration": 493, "id": "z_QeYCg4yJ8", "title": "Primaries and caucuses", "format": "mp4", "description": "How states choose their delegates for the national party conventions (video content under CC-BY-SA license)", "path": "khan/humanities/history/american-civics/american-civics/primaries-and-caucuses/", "slug": "primaries-and-caucuses", "kind": "Video", "video_id": "z_QeYCg4yJ8", "keywords": "primary, caucus, politics", "youtube_id": "z_QeYCg4yJ8", "readable_id": "primaries-and-caucuses"}, "yT-BpKlHMps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yT-BpKlHMps.mp4/yT-BpKlHMps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yT-BpKlHMps.mp4/yT-BpKlHMps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yT-BpKlHMps.m3u8/yT-BpKlHMps.m3u8"}, "duration": 278, "id": "yT-BpKlHMps", "title": "Social facilitation and social loafing", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/social-psychology/social-facilitation-and-social-loafing/", "slug": "social-facilitation-and-social-loafing", "kind": "Video", "video_id": "yT-BpKlHMps", "keywords": "", "youtube_id": "yT-BpKlHMps", "readable_id": "social-facilitation-and-social-loafing"}, "CnXuSCaCNBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CnXuSCaCNBo.mp4/CnXuSCaCNBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CnXuSCaCNBo.mp4/CnXuSCaCNBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CnXuSCaCNBo.m3u8/CnXuSCaCNBo.m3u8"}, "duration": 737, "id": "CnXuSCaCNBo", "title": "Bacterial meningitis", "format": "mp4", "description": "Dr. Charles Prober discusses prudent prescribing of antibiotics in the context of bacterial meningitis with 4th year medical student Morgan Theis", "path": "khan/science/health-and-medicine/healthcare-misc/bacterial-meningitis/", "slug": "bacterial-meningitis", "kind": "Video", "video_id": "CnXuSCaCNBo", "keywords": "medicine", "youtube_id": "CnXuSCaCNBo", "readable_id": "bacterial-meningitis"}, "cxs1d3N60UI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cxs1d3N60UI.mp4/cxs1d3N60UI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cxs1d3N60UI.mp4/cxs1d3N60UI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cxs1d3N60UI.m3u8/cxs1d3N60UI.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap/the-seated-scribe-c-2620-2500-b-c-e/", "duration": 181, "id": "cxs1d3N60UI", "title": "Old Kingdom: Seated Scribe", "format": "mp4", "description": "The Seated Scribe\u200b, c. 2620-2500 B.C.E., c. 4th Dynasty, Old Kingdom, painted limestone with rock crystal, magnesite, and copper/arsenic inlay for the eyes and wood for the nipples, found in Saqqara (Mus\u00e9e du Louvre, Paris). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "the-seated-scribe-c-2620-2500-b-c-e", "kind": "Video", "video_id": "cxs1d3N60UI", "keywords": "Seated Scribe, Louvre, smarthistory, art history, ancient egypt, egypt, scribe", "youtube_id": "cxs1d3N60UI", "readable_id": "the-seated-scribe-c-2620-2500-b-c-e"}, "T0zpF_j7Mvo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T0zpF_j7Mvo.mp4/T0zpF_j7Mvo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T0zpF_j7Mvo.mp4/T0zpF_j7Mvo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T0zpF_j7Mvo.m3u8/T0zpF_j7Mvo.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/kinematic_formulas/plotting-projectile-displacement-acceleration-and-velocity/", "duration": 978, "id": "T0zpF_j7Mvo", "title": "Plotting projectile displacement, acceleration, and velocity", "format": "mp4", "description": "Plotting projectile displacement, acceleration, and velocity as a function to change in time", "slug": "plotting-projectile-displacement-acceleration-and-velocity", "kind": "Video", "video_id": "T0zpF_j7Mvo", "keywords": "physics, projectile, motion, parabola", "youtube_id": "T0zpF_j7Mvo", "readable_id": "plotting-projectile-displacement-acceleration-and-velocity"}, "duomXwMSPv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/duomXwMSPv8.mp4/duomXwMSPv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/duomXwMSPv8.mp4/duomXwMSPv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/duomXwMSPv8.m3u8/duomXwMSPv8.m3u8"}, "path": "khan/math/competition-math/amc-10/2013-amc-10-a/2013-amc-10-a-24/", "duration": 389, "id": "duomXwMSPv8", "title": "2013 AMC 10 A #24", "format": "mp4", "description": "Video by\u00a0Art of Problem Solving. \u00a0Problem from the MAA\u00a0American Mathematics Competitions", "slug": "2013-amc-10-a-24", "kind": "Video", "video_id": "duomXwMSPv8", "keywords": "", "youtube_id": "duomXwMSPv8", "readable_id": "2013-amc-10-a-24"}, "9uxvm-USEYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9uxvm-USEYE.mp4/9uxvm-USEYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9uxvm-USEYE.mp4/9uxvm-USEYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9uxvm-USEYE.m3u8/9uxvm-USEYE.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/implicit-derivative-of-x-y-2-x-y-1/", "duration": 296, "id": "9uxvm-USEYE", "title": "Implicit derivative of (x-y)^2 = x + y - 1", "format": "mp4", "description": "", "slug": "implicit-derivative-of-x-y-2-x-y-1", "kind": "Video", "video_id": "9uxvm-USEYE", "keywords": "", "youtube_id": "9uxvm-USEYE", "readable_id": "implicit-derivative-of-x-y-2-x-y-1"}, "MeU-KzdCBps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MeU-KzdCBps.mp4/MeU-KzdCBps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MeU-KzdCBps.mp4/MeU-KzdCBps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MeU-KzdCBps.m3u8/MeU-KzdCBps.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/introduction-to-slope/", "duration": 416, "id": "MeU-KzdCBps", "title": "Introduction to slope", "format": "mp4", "description": "Introduction to slope", "slug": "introduction-to-slope", "kind": "Video", "video_id": "MeU-KzdCBps", "keywords": "", "youtube_id": "MeU-KzdCBps", "readable_id": "introduction-to-slope"}, "i_0DXxNeaQ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i_0DXxNeaQ0.mp4/i_0DXxNeaQ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i_0DXxNeaQ0.mp4/i_0DXxNeaQ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i_0DXxNeaQ0.m3u8/i_0DXxNeaQ0.m3u8"}, "path": "khan/math/recreational-math/vi-hart/singing/what-is-up-with-noises-the-science-and-mathematics-of-sound-frequency-and-pitch/", "duration": 769, "id": "i_0DXxNeaQ0", "title": "What is up with noises? (The science and mathematics of sound, frequency, and pitch)", "format": "mp4", "description": "Accuracy not guaranteed. Get Audacity and play! http://audacity.sourceforge.net/\n\nCorrection: it is the \"Basilar\" membrane, which is what I say, but somehow between recording the script and actually drawing the stuff I got confused and thought I just pronounced my Vs poorly. Always sad to have such a simple and glaring error in something I put hundreds of hours of work into, but a \"Vasilar\" membrane can be the kind that a Vi draws to explain Viola Vibrations, I guess! Making up new words is just so prolightfully awstastic.\n\nProps to my Bro for excellent and creative swing pushing, and to my Mamma for filming it.\n\nExtra special thanks to my generous donators, without whom I would not have been able to create this video. Because of your support, I have the equipment, time, and take-out Thai food necessary for doing stuff like this.", "slug": "what-is-up-with-noises-the-science-and-mathematics-of-sound-frequency-and-pitch", "kind": "Video", "video_id": "i_0DXxNeaQ0", "keywords": "science, mathematics, sound, pitch, frequency, audio, ears, sound wave, music", "youtube_id": "i_0DXxNeaQ0", "readable_id": "what-is-up-with-noises-the-science-and-mathematics-of-sound-frequency-and-pitch"}, "Z8j5RDOibV4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z8j5RDOibV4.mp4/Z8j5RDOibV4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z8j5RDOibV4.mp4/Z8j5RDOibV4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z8j5RDOibV4.m3u8/Z8j5RDOibV4.m3u8"}, "duration": 298, "id": "Z8j5RDOibV4", "title": "Dividing complex numbers", "format": "mp4", "description": "Dividing Complex Numbers", "path": "khan/math/precalculus/imaginary_complex_precalc/multiplying-dividing-complex/dividing-complex-numbers/", "slug": "dividing-complex-numbers", "kind": "Video", "video_id": "Z8j5RDOibV4", "keywords": "u16_l4_t2_we5, Dividing, Complex, Numbers", "youtube_id": "Z8j5RDOibV4", "readable_id": "dividing-complex-numbers"}, "WhGOmAwuQTE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WhGOmAwuQTE.mp4/WhGOmAwuQTE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WhGOmAwuQTE.mp4/WhGOmAwuQTE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WhGOmAwuQTE.m3u8/WhGOmAwuQTE.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/ny-school/ed-kienholz-and-nancy-reddin-kienholz-useful-art-5-the-western-hotel-1992/", "duration": 343, "id": "WhGOmAwuQTE", "title": "Ed Kienholz and Nancy Reddin Kienholz Useful Art #5: The Western Hotel, 1992", "format": "mp4", "description": "Ed Kienholz and Nancy Reddin Kienholz, Useful Art #5: The Western Hotel, 1992\n(Portland Art Museum)\n\nSpeakers: Tina Olsen, Bruce Guenther", "slug": "ed-kienholz-and-nancy-reddin-kienholz-useful-art-5-the-western-hotel-1992", "kind": "Video", "video_id": "WhGOmAwuQTE", "keywords": "Final, Kienholz", "youtube_id": "WhGOmAwuQTE", "readable_id": "ed-kienholz-and-nancy-reddin-kienholz-useful-art-5-the-western-hotel-1992"}, "_TnPWbtoLs8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_TnPWbtoLs8.mp4/_TnPWbtoLs8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_TnPWbtoLs8.mp4/_TnPWbtoLs8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_TnPWbtoLs8.m3u8/_TnPWbtoLs8.m3u8"}, "path": "khan/college-admissions/paying-for-college/grants-and-scholarships/ss-searching-for-scholarships/", "duration": 52, "id": "_TnPWbtoLs8", "title": "Student story: Searching for scholarships", "format": "mp4", "description": "", "slug": "ss-searching-for-scholarships", "kind": "Video", "video_id": "_TnPWbtoLs8", "keywords": "", "youtube_id": "_TnPWbtoLs8", "readable_id": "ss-searching-for-scholarships"}, "X36GTLhw3Gw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X36GTLhw3Gw.mp4/X36GTLhw3Gw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X36GTLhw3Gw.mp4/X36GTLhw3Gw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X36GTLhw3Gw.m3u8/X36GTLhw3Gw.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/reverse-chain-rule/reverse-chain-rule-introduction/", "duration": 356, "id": "X36GTLhw3Gw", "title": "Reverse chain rule introduction", "format": "mp4", "description": "", "slug": "reverse-chain-rule-introduction", "kind": "Video", "video_id": "X36GTLhw3Gw", "keywords": "", "youtube_id": "X36GTLhw3Gw", "readable_id": "reverse-chain-rule-introduction"}, "bXMgVSrP27Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bXMgVSrP27Q.mp4/bXMgVSrP27Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bXMgVSrP27Q.mp4/bXMgVSrP27Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bXMgVSrP27Q.m3u8/bXMgVSrP27Q.m3u8"}, "duration": 347, "id": "bXMgVSrP27Q", "title": "Total interest from multiple loans", "format": "mp4", "description": "", "path": "khan/math/algebra/systems-of-eq-and-ineq/modeling-constraints/total-interest-from-multiple-loans/", "slug": "total-interest-from-multiple-loans", "kind": "Video", "video_id": "bXMgVSrP27Q", "keywords": "", "youtube_id": "bXMgVSrP27Q", "readable_id": "total-interest-from-multiple-loans"}, "EbRxaBShveI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EbRxaBShveI.mp4/EbRxaBShveI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EbRxaBShveI.mp4/EbRxaBShveI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EbRxaBShveI.m3u8/EbRxaBShveI.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkyne-reactions/hydrohalogenation-of-alkynes/", "duration": 609, "id": "EbRxaBShveI", "title": "Hydrohalogenation of alkynes", "format": "mp4", "description": "", "slug": "hydrohalogenation-of-alkynes", "kind": "Video", "video_id": "EbRxaBShveI", "keywords": "", "youtube_id": "EbRxaBShveI", "readable_id": "hydrohalogenation-of-alkynes"}, "sCHiJVnyo4g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sCHiJVnyo4g.mp4/sCHiJVnyo4g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sCHiJVnyo4g.mp4/sCHiJVnyo4g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sCHiJVnyo4g.m3u8/sCHiJVnyo4g.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-4-roaming-deer/", "duration": 186, "id": "sCHiJVnyo4g", "title": "4 Roaming deer", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-4-roaming-deer", "kind": "Video", "video_id": "sCHiJVnyo4g", "keywords": "", "youtube_id": "sCHiJVnyo4g", "readable_id": "sat-4-roaming-deer"}, "IL3UCuXrUzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IL3UCuXrUzE.mp4/IL3UCuXrUzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IL3UCuXrUzE.mp4/IL3UCuXrUzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IL3UCuXrUzE.m3u8/IL3UCuXrUzE.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/slope-intercept-form/", "duration": 540, "id": "IL3UCuXrUzE", "title": "Slope-intercept form", "format": "mp4", "description": "Slope-intercept form", "slug": "slope-intercept-form", "kind": "Video", "video_id": "IL3UCuXrUzE", "keywords": "", "youtube_id": "IL3UCuXrUzE", "readable_id": "slope-intercept-form"}, "oxSzkIftog8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oxSzkIftog8.mp4/oxSzkIftog8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oxSzkIftog8.mp4/oxSzkIftog8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oxSzkIftog8.m3u8/oxSzkIftog8.m3u8"}, "path": "khan/math/geometry/transformations/rigid-transformations-intro/translation-example/", "duration": 97, "id": "oxSzkIftog8", "title": "Translation example", "format": "mp4", "description": "Translation example", "slug": "translation-example", "kind": "Video", "video_id": "oxSzkIftog8", "keywords": "", "youtube_id": "oxSzkIftog8", "readable_id": "translation-example"}, "cTyNpXB92bQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cTyNpXB92bQ.mp4/cTyNpXB92bQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cTyNpXB92bQ.mp4/cTyNpXB92bQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cTyNpXB92bQ.m3u8/cTyNpXB92bQ.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/lin-alg-a-projection-onto-a-subspace-is-a-linear-transforma/", "duration": 975, "id": "cTyNpXB92bQ", "title": "A projection onto a subspace is a linear transformation", "format": "mp4", "description": "Showing that a projection onto a subspace is a linear transformation", "slug": "lin-alg-a-projection-onto-a-subspace-is-a-linear-transforma", "kind": "Video", "video_id": "cTyNpXB92bQ", "keywords": "subspace, linear, transformation", "youtube_id": "cTyNpXB92bQ", "readable_id": "lin-alg-a-projection-onto-a-subspace-is-a-linear-transforma"}, "UlHo2cxKA84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UlHo2cxKA84.mp4/UlHo2cxKA84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UlHo2cxKA84.mp4/UlHo2cxKA84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UlHo2cxKA84.m3u8/UlHo2cxKA84.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-2/", "duration": 692, "id": "UlHo2cxKA84", "title": "GMAT: Math 2", "format": "mp4", "description": "7-11, pg. 153", "slug": "gmat-math-2", "kind": "Video", "video_id": "UlHo2cxKA84", "keywords": "GMAT, math, problem, solving", "youtube_id": "UlHo2cxKA84", "readable_id": "gmat-math-2"}, "mVlCXkht6hg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mVlCXkht6hg.mp4/mVlCXkht6hg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mVlCXkht6hg.mp4/mVlCXkht6hg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mVlCXkht6hg.m3u8/mVlCXkht6hg.m3u8"}, "duration": 429, "id": "mVlCXkht6hg", "title": "Modeling annual temperature variation with trigonometry", "format": "mp4", "description": "", "path": "khan/math/trigonometry/trig-function-graphs/modeling-periodic-functions/modeling-temperature-fluxtuations/", "slug": "modeling-temperature-fluxtuations", "kind": "Video", "video_id": "mVlCXkht6hg", "keywords": "", "youtube_id": "mVlCXkht6hg", "readable_id": "modeling-temperature-fluxtuations"}, "SnbXQTTHGs4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SnbXQTTHGs4.mp4/SnbXQTTHGs4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SnbXQTTHGs4.mp4/SnbXQTTHGs4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SnbXQTTHGs4.m3u8/SnbXQTTHGs4.m3u8"}, "duration": 556, "id": "SnbXQTTHGs4", "title": "Basics of chromatography", "format": "mp4", "description": "Understand the basic principles of different kinds of chromatography: paper, thin layer, column, size-exchange, ion exchange, affinity, HPLC, and. By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/basics-of-chromatography/", "slug": "basics-of-chromatography", "kind": "Video", "video_id": "SnbXQTTHGs4", "keywords": "chromatography", "youtube_id": "SnbXQTTHGs4", "readable_id": "basics-of-chromatography"}, "2mzuFKCuDg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2mzuFKCuDg4.mp4/2mzuFKCuDg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2mzuFKCuDg4.mp4/2mzuFKCuDg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2mzuFKCuDg4.m3u8/2mzuFKCuDg4.m3u8"}, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-interpreting-angles/angle-sense-example/", "duration": 123, "id": "2mzuFKCuDg4", "title": "Identify the angle example", "format": "mp4", "description": "We're matching the visual angle with the corresponding angle measure. Great practice. See if you do it on your own before listening to Sal!", "slug": "angle-sense-example", "kind": "Video", "video_id": "2mzuFKCuDg4", "keywords": "", "youtube_id": "2mzuFKCuDg4", "readable_id": "angle-sense-example"}, "4fQeHtSdw80": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4fQeHtSdw80.mp4/4fQeHtSdw80.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4fQeHtSdw80.mp4/4fQeHtSdw80.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4fQeHtSdw80.m3u8/4fQeHtSdw80.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/special-products-of-polynomials-2/", "duration": 312, "id": "4fQeHtSdw80", "title": "Squaring a binomial example 2", "format": "mp4", "description": "Squaring a binomial example 2", "slug": "special-products-of-polynomials-2", "kind": "Video", "video_id": "4fQeHtSdw80", "keywords": "U08_L2_T4_we2, Special, Products, of, Polynomials, CC_39336_A-APR_1", "youtube_id": "4fQeHtSdw80", "readable_id": "special-products-of-polynomials-2"}, "uR5ZWegnTvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uR5ZWegnTvA.mp4/uR5ZWegnTvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uR5ZWegnTvA.mp4/uR5ZWegnTvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uR5ZWegnTvA.m3u8/uR5ZWegnTvA.m3u8"}, "duration": 39, "id": "uR5ZWegnTvA", "title": "Construction", "format": "mp4", "description": "You can get started with this simple design, then add your own complexity after!", "path": "khan/science/discoveries-projects/lego-robotics/lego-coin-detector/lego-coin-detector/", "slug": "lego-coin-detector", "kind": "Video", "video_id": "uR5ZWegnTvA", "keywords": "", "youtube_id": "uR5ZWegnTvA", "readable_id": "lego-coin-detector"}, "hl58vTCqVIY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hl58vTCqVIY.mp4/hl58vTCqVIY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hl58vTCqVIY.mp4/hl58vTCqVIY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hl58vTCqVIY.m3u8/hl58vTCqVIY.m3u8"}, "path": "khan/math/algebra2/conics_precalc/hyperbolas-precalc/conic-sections-hyperbolas-2/", "duration": 450, "id": "hl58vTCqVIY", "title": "Conic sections: Hyperbolas 2", "format": "mp4", "description": "Continuation of the intro to hyperbolas", "slug": "conic-sections-hyperbolas-2", "kind": "Video", "video_id": "hl58vTCqVIY", "keywords": "hyperbola, conic, section", "youtube_id": "hl58vTCqVIY", "readable_id": "conic-sections-hyperbolas-2"}, "m5OxVgH-T1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m5OxVgH-T1I.mp4/m5OxVgH-T1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m5OxVgH-T1I.mp4/m5OxVgH-T1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m5OxVgH-T1I.m3u8/m5OxVgH-T1I.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/rococo/18th-c-french-mechanical-table/", "duration": 123, "id": "m5OxVgH-T1I", "title": "Construction of an 18th-century French mechanical table", "format": "mp4", "description": "The innovative mechanics and artistry of Jean-Fran\u00e7ois Oeben's table continue to amaze.\u00a0Love art? Follow us on Google+", "slug": "18th-c-french-mechanical-table", "kind": "Video", "video_id": "m5OxVgH-T1I", "keywords": "", "youtube_id": "m5OxVgH-T1I", "readable_id": "18th-c-french-mechanical-table"}, "EO4_vu9IuNk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EO4_vu9IuNk.mp4/EO4_vu9IuNk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EO4_vu9IuNk.mp4/EO4_vu9IuNk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EO4_vu9IuNk.m3u8/EO4_vu9IuNk.m3u8"}, "duration": 537, "id": "EO4_vu9IuNk", "title": "Pheromones", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/taste-gustation-and-smell-olfaction/pheromones/", "slug": "pheromones", "kind": "Video", "video_id": "EO4_vu9IuNk", "keywords": "", "youtube_id": "EO4_vu9IuNk", "readable_id": "pheromones"}, "PrsWs8Pmjao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PrsWs8Pmjao.mp4/PrsWs8Pmjao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PrsWs8Pmjao.mp4/PrsWs8Pmjao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PrsWs8Pmjao.m3u8/PrsWs8Pmjao.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/hotspot-case-study-philipines/", "duration": 125, "id": "PrsWs8Pmjao", "title": "Biodiversity hotspot case study: Philippines", "format": "mp4", "description": "", "slug": "hotspot-case-study-philipines", "kind": "Video", "video_id": "PrsWs8Pmjao", "keywords": "", "youtube_id": "PrsWs8Pmjao", "readable_id": "hotspot-case-study-philipines"}, "l5MrtV7ZN88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l5MrtV7ZN88.mp4/l5MrtV7ZN88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l5MrtV7ZN88.mp4/l5MrtV7ZN88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l5MrtV7ZN88.m3u8/l5MrtV7ZN88.m3u8"}, "duration": 383, "id": "l5MrtV7ZN88", "title": "Two-way frequency tables and Venn diagrams", "format": "mp4", "description": "", "path": "two-way-frequency-tables-and-venn-diagrams/", "slug": "two-way-frequency-tables-and-venn-diagrams", "kind": "Video", "video_id": "l5MrtV7ZN88", "keywords": "", "youtube_id": "l5MrtV7ZN88", "readable_id": "two-way-frequency-tables-and-venn-diagrams"}, "ZouQdHSyelg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZouQdHSyelg.mp4/ZouQdHSyelg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZouQdHSyelg.mp4/ZouQdHSyelg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZouQdHSyelg.m3u8/ZouQdHSyelg.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/ca-algebra-i-number-properties-and-absolute-value/", "duration": 722, "id": "ZouQdHSyelg", "title": "CA Algebra I: Number properties and absolute value", "format": "mp4", "description": "1-7, number properties and absolute value equations", "slug": "ca-algebra-i-number-properties-and-absolute-value", "kind": "Video", "video_id": "ZouQdHSyelg", "keywords": "californa, standards, algebra, inequality, equations", "youtube_id": "ZouQdHSyelg", "readable_id": "ca-algebra-i-number-properties-and-absolute-value"}, "8bCL8TQZFKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8bCL8TQZFKo.mp4/8bCL8TQZFKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8bCL8TQZFKo.mp4/8bCL8TQZFKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8bCL8TQZFKo.m3u8/8bCL8TQZFKo.m3u8"}, "duration": 728, "id": "8bCL8TQZFKo", "title": "Hess's law example", "format": "mp4", "description": "Hess's Law Example", "path": "khan/science/chemistry/thermodynamics-chemistry/enthalpy-chemistry-sal/hess-s-law-example/", "slug": "hess-s-law-example", "kind": "Video", "video_id": "8bCL8TQZFKo", "keywords": "Hess's, Law, Example", "youtube_id": "8bCL8TQZFKo", "readable_id": "hess-s-law-example"}, "k3aKKasOmIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k3aKKasOmIw.mp4/k3aKKasOmIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k3aKKasOmIw.mp4/k3aKKasOmIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k3aKKasOmIw.m3u8/k3aKKasOmIw.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-statistics/mean-median-and-mode/", "duration": 235, "id": "k3aKKasOmIw", "title": "Finding mean, median and mode", "format": "mp4", "description": "Here we give you a set of numbers and then ask you to find the mean, median, and mode. It's your first opportunity to practice with us!", "slug": "mean-median-and-mode", "kind": "Video", "video_id": "k3aKKasOmIw", "keywords": "u08_l2_t1_we1, Mean, Median, and, Mode", "youtube_id": "k3aKKasOmIw", "readable_id": "mean-median-and-mode"}, "47QgqdeSi0U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/47QgqdeSi0U.mp4/47QgqdeSi0U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/47QgqdeSi0U.mp4/47QgqdeSi0U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/47QgqdeSi0U.m3u8/47QgqdeSi0U.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/giotto-arena-scrovegni-chapel-padua-c-1305-part-1-of-4/", "duration": 297, "id": "47QgqdeSi0U", "title": "Giotto, Arena (Scrovegni) Chapel (part 1)", "format": "mp4", "description": "Giotto's Arena (Scrovegni) Chapel, Padua, c. 1305, Part 1\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "giotto-arena-scrovegni-chapel-padua-c-1305-part-1-of-4", "kind": "Video", "video_id": "47QgqdeSi0U", "keywords": "Giotto, Arena, Chapel, Scrovegni, Padua, fresco, Medieval, Proto-Renaissance, painting", "youtube_id": "47QgqdeSi0U", "readable_id": "giotto-arena-scrovegni-chapel-padua-c-1305-part-1-of-4"}, "ZWSoyUxAQW0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZWSoyUxAQW0.mp4/ZWSoyUxAQW0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZWSoyUxAQW0.mp4/ZWSoyUxAQW0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZWSoyUxAQW0.m3u8/ZWSoyUxAQW0.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/trig_iden_tutorial/trig-identities-part-2-parr-4-if-you-watch-the-proofs/", "duration": 596, "id": "ZWSoyUxAQW0", "title": "Trig identities part 2 (part 4 if you watch the proofs)", "format": "mp4", "description": "More playing around with trig identities", "slug": "trig-identities-part-2-parr-4-if-you-watch-the-proofs", "kind": "Video", "video_id": "ZWSoyUxAQW0", "keywords": "Trig, trigonometry, trigonometric, identities, math, khan", "youtube_id": "ZWSoyUxAQW0", "readable_id": "trig-identities-part-2-parr-4-if-you-watch-the-proofs"}, "_DgeQ7rpIHI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_DgeQ7rpIHI.mp4/_DgeQ7rpIHI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_DgeQ7rpIHI.mp4/_DgeQ7rpIHI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_DgeQ7rpIHI.m3u8/_DgeQ7rpIHI.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-germany/caspar-david-friedrich-abbey-among-oak-trees-1809-or-1810/", "duration": 262, "id": "_DgeQ7rpIHI", "title": "Friedrich, Abbey among Oak Trees", "format": "mp4", "description": "Caspar David Friedrich, Abbey among Oak Trees, 1809 or 1810, oil on canvas, 110.4 x 171 cm (Alte Nationalgalerie, Berlin)", "slug": "caspar-david-friedrich-abbey-among-oak-trees-1809-or-1810", "kind": "Video", "video_id": "_DgeQ7rpIHI", "keywords": "Friedrich, Abbey, GAP, Caspar David Friedrich, Abbey among Oak Trees, Abbey in an Oak Wood, 1809, 1810, Alte Nationalgalerie, Berlin, Romanticism, Ruins, Gothic, Twilight, painting, burial, monks, Winter, Google Art Project, Khan Academy, Smarthistory, OER", "youtube_id": "_DgeQ7rpIHI", "readable_id": "caspar-david-friedrich-abbey-among-oak-trees-1809-or-1810"}, "tFUf4l8opwc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tFUf4l8opwc.mp4/tFUf4l8opwc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tFUf4l8opwc.mp4/tFUf4l8opwc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tFUf4l8opwc.m3u8/tFUf4l8opwc.m3u8"}, "duration": 337, "id": "tFUf4l8opwc", "title": "The personal aspects of James Madison", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-iii/", "slug": "isaacson-with-cheney-khan-academy-lesson-iii", "kind": "Video", "video_id": "tFUf4l8opwc", "keywords": "", "youtube_id": "tFUf4l8opwc", "readable_id": "isaacson-with-cheney-khan-academy-lesson-iii"}, "Y-w7SnQWwVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y-w7SnQWwVA.mp4/Y-w7SnQWwVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y-w7SnQWwVA.mp4/Y-w7SnQWwVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y-w7SnQWwVA.m3u8/Y-w7SnQWwVA.m3u8"}, "duration": 662, "id": "Y-w7SnQWwVA", "title": "Bitcoin: Overview", "format": "mp4", "description": "An introduction to the mechanics of bitcoins and an overview of how transactions take place.", "path": "bitcoin-overview/", "slug": "bitcoin-overview", "kind": "Video", "video_id": "Y-w7SnQWwVA", "keywords": "bitcoin, currency", "youtube_id": "Y-w7SnQWwVA", "readable_id": "bitcoin-overview"}, "aGwT2-RERXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aGwT2-RERXY.mp4/aGwT2-RERXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aGwT2-RERXY.mp4/aGwT2-RERXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aGwT2-RERXY.m3u8/aGwT2-RERXY.m3u8"}, "path": "khan/math/geometry/triangle-properties/altitudes/proof-triangle-altitudes-are-concurrent-orthocenter/", "duration": 601, "id": "aGwT2-RERXY", "title": "Proof: Triangle altitudes are concurrent (orthocenter)", "format": "mp4", "description": "Showing that any triangle can be the medial triangle for some larger triangle. Using this to show that the altitudes of a triangle are concurrent (at the orthocenter).", "slug": "proof-triangle-altitudes-are-concurrent-orthocenter", "kind": "Video", "video_id": "aGwT2-RERXY", "keywords": "geometry, perpendicular, bisectors", "youtube_id": "aGwT2-RERXY", "readable_id": "proof-triangle-altitudes-are-concurrent-orthocenter"}, "qW-Ce44ll0Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qW-Ce44ll0Q.mp4/qW-Ce44ll0Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qW-Ce44ll0Q.mp4/qW-Ce44ll0Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qW-Ce44ll0Q.m3u8/qW-Ce44ll0Q.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-sub-negatives-pre-alg/number-line-3-exercise-example/", "duration": 188, "id": "qW-Ce44ll0Q", "title": "Negative numbers and number line examples", "format": "mp4", "description": "Given a few negative numbers on a number line, let's see if we can determine what negative numbers are elsewhere on the number line.", "slug": "number-line-3-exercise-example", "kind": "Video", "video_id": "qW-Ce44ll0Q", "keywords": "", "youtube_id": "qW-Ce44ll0Q", "readable_id": "number-line-3-exercise-example"}, "n4EK92CSuBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n4EK92CSuBE.mp4/n4EK92CSuBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n4EK92CSuBE.mp4/n4EK92CSuBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n4EK92CSuBE.m3u8/n4EK92CSuBE.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/integrals-trig-substitution-1/", "duration": 458, "id": "n4EK92CSuBE", "title": "Integrals: Trig substitution 1", "format": "mp4", "description": "Example of using trig substitution to solve an indefinite integral", "slug": "integrals-trig-substitution-1", "kind": "Video", "video_id": "n4EK92CSuBE", "keywords": "calculus, trig, substitution", "youtube_id": "n4EK92CSuBE", "readable_id": "integrals-trig-substitution-1"}, "kVGb778WcMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kVGb778WcMU.mp4/kVGb778WcMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kVGb778WcMU.mp4/kVGb778WcMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kVGb778WcMU.m3u8/kVGb778WcMU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/common-stroke-signs-and-symptoms/", "duration": 506, "id": "kVGb778WcMU", "title": "Common stroke signs and symptoms", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "common-stroke-signs-and-symptoms", "kind": "Video", "video_id": "kVGb778WcMU", "keywords": "", "youtube_id": "kVGb778WcMU", "readable_id": "common-stroke-signs-and-symptoms"}, "4rsswT_Rv1M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4rsswT_Rv1M.mp4/4rsswT_Rv1M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4rsswT_Rv1M.mp4/4rsswT_Rv1M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4rsswT_Rv1M.m3u8/4rsswT_Rv1M.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/current-and-resistance/resistivity-and-conductivity/", "duration": 722, "id": "4rsswT_Rv1M", "title": "Resistivity and conductivity", "format": "mp4", "description": "", "slug": "resistivity-and-conductivity", "kind": "Video", "video_id": "4rsswT_Rv1M", "keywords": "", "youtube_id": "4rsswT_Rv1M", "readable_id": "resistivity-and-conductivity"}, "-QpkmwIoMaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-QpkmwIoMaY.mp4/-QpkmwIoMaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-QpkmwIoMaY.mp4/-QpkmwIoMaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-QpkmwIoMaY.m3u8/-QpkmwIoMaY.m3u8"}, "duration": 962, "id": "-QpkmwIoMaY", "title": "Vapor pressure example", "format": "mp4", "description": "Vapor pressure example using the Ideal Gas Law", "path": "khan/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws/vapor-pressure-example/", "slug": "vapor-pressure-example", "kind": "Video", "video_id": "-QpkmwIoMaY", "keywords": "Vapor, pressure, ideal, gas, law, universal, constant, tutorial, educational", "youtube_id": "-QpkmwIoMaY", "readable_id": "vapor-pressure-example"}, "J-NC1M6obKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J-NC1M6obKo.mp4/J-NC1M6obKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J-NC1M6obKo.mp4/J-NC1M6obKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J-NC1M6obKo.m3u8/J-NC1M6obKo.m3u8"}, "duration": 301, "id": "J-NC1M6obKo", "title": "u-substitution and back substitution", "format": "mp4", "description": "Using u-substitution and \"back substituting\" for x to simplify an expression", "path": "khan/math/integral-calculus/integration-techniques/u_substitution/u-substitution-and-back-substitution/", "slug": "u-substitution-and-back-substitution", "kind": "Video", "video_id": "J-NC1M6obKo", "keywords": "", "youtube_id": "J-NC1M6obKo", "readable_id": "u-substitution-and-back-substitution"}, "JNL6f1xkie4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JNL6f1xkie4.mp4/JNL6f1xkie4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JNL6f1xkie4.mp4/JNL6f1xkie4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JNL6f1xkie4.m3u8/JNL6f1xkie4.m3u8"}, "duration": 698, "id": "JNL6f1xkie4", "title": "Renting versus buying a home", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/housing/renting-v-buying/renting-versus-buying-a-home/", "slug": "renting-versus-buying-a-home", "kind": "Video", "video_id": "JNL6f1xkie4", "keywords": "", "youtube_id": "JNL6f1xkie4", "readable_id": "renting-versus-buying-a-home"}, "u4-HYwo0Gsc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u4-HYwo0Gsc.mp4/u4-HYwo0Gsc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u4-HYwo0Gsc.mp4/u4-HYwo0Gsc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u4-HYwo0Gsc.m3u8/u4-HYwo0Gsc.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermodynamics-mcat/first-law-of-thermodynamics/", "duration": 683, "id": "u4-HYwo0Gsc", "title": "First law of thermodynamics", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "first-law-of-thermodynamics", "kind": "Video", "video_id": "u4-HYwo0Gsc", "keywords": "", "youtube_id": "u4-HYwo0Gsc", "readable_id": "first-law-of-thermodynamics"}, "LcEqOzNov4E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LcEqOzNov4E.mp4/LcEqOzNov4E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LcEqOzNov4E.mp4/LcEqOzNov4E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LcEqOzNov4E.m3u8/LcEqOzNov4E.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/concavity-inflection-points/concavity-concave-upwards-and-concave-downwards-intervals/", "duration": 594, "id": "LcEqOzNov4E", "title": "Concavity, concave upwards and concave downwards intervals", "format": "mp4", "description": "", "slug": "concavity-concave-upwards-and-concave-downwards-intervals", "kind": "Video", "video_id": "LcEqOzNov4E", "keywords": "", "youtube_id": "LcEqOzNov4E", "readable_id": "concavity-concave-upwards-and-concave-downwards-intervals"}, "qyYSQDcSNlY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qyYSQDcSNlY.mp4/qyYSQDcSNlY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qyYSQDcSNlY.mp4/qyYSQDcSNlY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qyYSQDcSNlY.m3u8/qyYSQDcSNlY.m3u8"}, "path": "khan/math/probability/statistical-studies/statistical-questions/statistical-questions/", "duration": 471, "id": "qyYSQDcSNlY", "title": "Statistical and non statistical questions", "format": "mp4", "description": "Here's the thing to ask when determining if you have a statistical and non-statistical question on your hand: Is there variability involved? Watch and we'll explain.", "slug": "statistical-questions", "kind": "Video", "video_id": "qyYSQDcSNlY", "keywords": "", "youtube_id": "qyYSQDcSNlY", "readable_id": "statistical-questions"}, "nXW0M2Azanc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nXW0M2Azanc.mp4/nXW0M2Azanc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nXW0M2Azanc.mp4/nXW0M2Azanc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nXW0M2Azanc.m3u8/nXW0M2Azanc.m3u8"}, "duration": 61, "id": "nXW0M2Azanc", "title": "Ancient Egyptian coffin mask conserved for the Book of the Dead exhibition at the British Museum", "format": "mp4", "description": "Conservators at the British Museum preparing an ancient Egyptian coffin mask for display in the exhibition Journey through the afterlife: ancient Egyptian Book of the Dead.\n\u00a9 Trustees of the British Museum", "path": "coffin-mask/", "slug": "coffin-mask", "kind": "Video", "video_id": "nXW0M2Azanc", "keywords": "", "youtube_id": "nXW0M2Azanc", "readable_id": "coffin-mask"}, "5vJbhxYchPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5vJbhxYchPQ.mp4/5vJbhxYchPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5vJbhxYchPQ.mp4/5vJbhxYchPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5vJbhxYchPQ.m3u8/5vJbhxYchPQ.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-design-blended-learning/sscc-school-redesign/sscc-blended-schoolintro/", "duration": 157, "id": "5vJbhxYchPQ", "title": "School redesign - intro and big ideas", "format": "mp4", "description": "", "slug": "sscc-blended-schoolintro", "kind": "Video", "video_id": "5vJbhxYchPQ", "keywords": "", "youtube_id": "5vJbhxYchPQ", "readable_id": "sscc-blended-schoolintro"}, "qLU0X154wlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qLU0X154wlE.mp4/qLU0X154wlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qLU0X154wlE.mp4/qLU0X154wlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qLU0X154wlE.m3u8/qLU0X154wlE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/quantum-numbers-for-the-first-four-shells/", "duration": 757, "id": "qLU0X154wlE", "title": "Quantum numbers for the first four shells", "format": "mp4", "description": "", "slug": "quantum-numbers-for-the-first-four-shells", "kind": "Video", "video_id": "qLU0X154wlE", "keywords": "", "youtube_id": "qLU0X154wlE", "readable_id": "quantum-numbers-for-the-first-four-shells"}, "qyvwN-2PoXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qyvwN-2PoXA.mp4/qyvwN-2PoXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qyvwN-2PoXA.mp4/qyvwN-2PoXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qyvwN-2PoXA.m3u8/qyvwN-2PoXA.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-more-fewer-100/fewer-word-problems/", "duration": 132, "id": "qyvwN-2PoXA", "title": "Fewer word problems", "format": "mp4", "description": "", "slug": "fewer-word-problems", "kind": "Video", "video_id": "qyvwN-2PoXA", "keywords": "", "youtube_id": "qyvwN-2PoXA", "readable_id": "fewer-word-problems"}, "hxqo_DiL3pw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hxqo_DiL3pw.mp4/hxqo_DiL3pw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hxqo_DiL3pw.mp4/hxqo_DiL3pw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hxqo_DiL3pw.m3u8/hxqo_DiL3pw.m3u8"}, "duration": 333, "id": "hxqo_DiL3pw", "title": "Proof that there is an irrational number between any two rational numbers", "format": "mp4", "description": "", "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/proof-that-there-is-an-irrational-number-between-any-two-rational-numbers/", "slug": "proof-that-there-is-an-irrational-number-between-any-two-rational-numbers", "kind": "Video", "video_id": "hxqo_DiL3pw", "keywords": "", "youtube_id": "hxqo_DiL3pw", "readable_id": "proof-that-there-is-an-irrational-number-between-any-two-rational-numbers"}, "Kox-FerE8AY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kox-FerE8AY.mp4/Kox-FerE8AY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kox-FerE8AY.mp4/Kox-FerE8AY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kox-FerE8AY.m3u8/Kox-FerE8AY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2008-may-4-8/", "duration": 54, "id": "Kox-FerE8AY", "title": "8 Area of inscribed circle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-8", "kind": "Video", "video_id": "Kox-FerE8AY", "keywords": "", "youtube_id": "Kox-FerE8AY", "readable_id": "sat-2008-may-4-8"}, "54JkvkIT0Dc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/54JkvkIT0Dc.mp4/54JkvkIT0Dc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/54JkvkIT0Dc.mp4/54JkvkIT0Dc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/54JkvkIT0Dc.m3u8/54JkvkIT0Dc.m3u8"}, "duration": 600, "id": "54JkvkIT0Dc", "title": "5 human impacts on the environment", "format": "mp4", "description": "", "path": "crash-course-ecology-10/", "slug": "crash-course-ecology-10", "kind": "Video", "video_id": "54JkvkIT0Dc", "keywords": "", "youtube_id": "54JkvkIT0Dc", "readable_id": "crash-course-ecology-10"}, "Ogxpuq-qIW0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ogxpuq-qIW0.mp4/Ogxpuq-qIW0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ogxpuq-qIW0.mp4/Ogxpuq-qIW0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ogxpuq-qIW0.m3u8/Ogxpuq-qIW0.m3u8"}, "duration": 314, "id": "Ogxpuq-qIW0", "title": "Organelle overview", "format": "mp4", "description": "", "path": "khan/science/biology/cellular-molecular-biology/cell-division/organelle-overview/", "slug": "organelle-overview", "kind": "Video", "video_id": "Ogxpuq-qIW0", "keywords": "", "youtube_id": "Ogxpuq-qIW0", "readable_id": "organelle-overview"}, "3n0LvI99-KM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3n0LvI99-KM.mp4/3n0LvI99-KM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3n0LvI99-KM.mp4/3n0LvI99-KM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3n0LvI99-KM.m3u8/3n0LvI99-KM.m3u8"}, "duration": 495, "id": "3n0LvI99-KM", "title": "Problem involving angle derived from square and circle", "format": "mp4", "description": "Challenging problem to find an angle", "path": "khan/math/geometry/congruent-triangles/cong_triangle/problem-involving-angle-derived-from-square-and-circle/", "slug": "problem-involving-angle-derived-from-square-and-circle", "kind": "Video", "video_id": "3n0LvI99-KM", "keywords": "geometry, circle, radius", "youtube_id": "3n0LvI99-KM", "readable_id": "problem-involving-angle-derived-from-square-and-circle"}, "axGgnXyuiTg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/axGgnXyuiTg.mp4/axGgnXyuiTg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/axGgnXyuiTg.mp4/axGgnXyuiTg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/axGgnXyuiTg.m3u8/axGgnXyuiTg.m3u8"}, "duration": 210, "id": "axGgnXyuiTg", "title": "Example: Radian measure and arc length", "format": "mp4", "description": "Worked example that thinks about the relationship between an arc length and the angle that is subtended by the arc.", "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/radian-measure-and-arc-length/", "slug": "radian-measure-and-arc-length", "kind": "Video", "video_id": "axGgnXyuiTg", "keywords": "arc, radian, radius, length", "youtube_id": "axGgnXyuiTg", "readable_id": "radian-measure-and-arc-length"}, "5PmSbASb1yY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5PmSbASb1yY.mp4/5PmSbASb1yY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5PmSbASb1yY.mp4/5PmSbASb1yY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5PmSbASb1yY.m3u8/5PmSbASb1yY.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-design-blended-learning/sscc-challenging-assumptions/sscc-blended-newgroups/", "duration": 609, "id": "5PmSbASb1yY", "title": "New ways to group students and organize staff", "format": "mp4", "description": "", "slug": "sscc-blended-newgroups", "kind": "Video", "video_id": "5PmSbASb1yY", "keywords": "", "youtube_id": "5PmSbASb1yY", "readable_id": "sscc-blended-newgroups"}, "Kf9KjCKmDcU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kf9KjCKmDcU.mp4/Kf9KjCKmDcU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kf9KjCKmDcU.mp4/Kf9KjCKmDcU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kf9KjCKmDcU.m3u8/Kf9KjCKmDcU.m3u8"}, "duration": 91, "id": "Kf9KjCKmDcU", "title": "What is cryptography?", "format": "mp4", "description": "What is Cryptography? A story which takes us from Caesar to Claude Shannon.", "path": "khan/computing/computer-science/cryptography/crypt/intro-to-cryptography/", "slug": "intro-to-cryptography", "kind": "Video", "video_id": "Kf9KjCKmDcU", "keywords": "Cryptography, brit cruise", "youtube_id": "Kf9KjCKmDcU", "readable_id": "intro-to-cryptography"}, "xZBbfLLfVV4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xZBbfLLfVV4.mp4/xZBbfLLfVV4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xZBbfLLfVV4.mp4/xZBbfLLfVV4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xZBbfLLfVV4.m3u8/xZBbfLLfVV4.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/inverting-3x3-part-1-calculating-matrix-of-minors-and-cofactor-matrix/", "duration": 527, "id": "xZBbfLLfVV4", "title": "Inverting 3x3 part 1: Calculating matrix of minors and cofactor matrix", "format": "mp4", "description": "Beginning our quest to invert a 3x3 matrix. We calculate the matrix of minors and the cofactor matrix.", "slug": "inverting-3x3-part-1-calculating-matrix-of-minors-and-cofactor-matrix", "kind": "Video", "video_id": "xZBbfLLfVV4", "keywords": "", "youtube_id": "xZBbfLLfVV4", "readable_id": "inverting-3x3-part-1-calculating-matrix-of-minors-and-cofactor-matrix"}, "V1LloSp4PV4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V1LloSp4PV4.mp4/V1LloSp4PV4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V1LloSp4PV4.mp4/V1LloSp4PV4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V1LloSp4PV4.m3u8/V1LloSp4PV4.m3u8"}, "duration": 75, "id": "V1LloSp4PV4", "title": "Choose pounds or ounces to measure weight", "format": "mp4", "description": "When choosing which unit of weight to use, the most common options are pounds and ounces. I don't imagine that weighting you dog in tons is going to be very helpful, do you?", "path": "unit-sense-exercise-example-2/", "slug": "unit-sense-exercise-example-2", "kind": "Video", "video_id": "V1LloSp4PV4", "keywords": "", "youtube_id": "V1LloSp4PV4", "readable_id": "unit-sense-exercise-example-2"}, "dwleadLC2Dw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dwleadLC2Dw.mp4/dwleadLC2Dw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dwleadLC2Dw.mp4/dwleadLC2Dw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dwleadLC2Dw.m3u8/dwleadLC2Dw.m3u8"}, "duration": 123, "id": "dwleadLC2Dw", "title": "Mortgage-backed security overview", "format": "mp4", "description": "Basics of how a mortgage back security works", "path": "khan/economics-finance-domain/core-finance/derivative-securities/mort-backed-secs-tut/mortgage-back-security-overview/", "slug": "mortgage-back-security-overview", "kind": "Video", "video_id": "dwleadLC2Dw", "keywords": "mortgage, back, security, MBD, credit, crisis", "youtube_id": "dwleadLC2Dw", "readable_id": "mortgage-back-security-overview"}, "7UsYHo5iarM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7UsYHo5iarM.mp4/7UsYHo5iarM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7UsYHo5iarM.mp4/7UsYHo5iarM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7UsYHo5iarM.m3u8/7UsYHo5iarM.m3u8"}, "duration": 188, "id": "7UsYHo5iarM", "title": "Tracing the colors of ancient sculpture", "format": "mp4", "description": "Using ultraviolet and raking light, archaeologist Vinzenz Brinkmann examines sculptures of Athena and Paris from the Temple of Aphaia, in the Glyptothek in Munich revealing evidence of their original color. Follow us on Google+", "path": "tracing-colors-of-ancient-sculpture/", "slug": "tracing-colors-of-ancient-sculpture", "kind": "Video", "video_id": "7UsYHo5iarM", "keywords": "", "youtube_id": "7UsYHo5iarM", "readable_id": "tracing-colors-of-ancient-sculpture"}, "653ZKHd_PYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/653ZKHd_PYo.mp4/653ZKHd_PYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/653ZKHd_PYo.mp4/653ZKHd_PYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/653ZKHd_PYo.m3u8/653ZKHd_PYo.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/munch-the-storm-1893/", "duration": 241, "id": "653ZKHd_PYo", "title": "Munch, The Storm", "format": "mp4", "description": "Edvard Munch, The Storm, 1893, oil on canvas, 36 1/8 x 51 1/2\" (91.8 x 130.8 cm), (MoMA)\n\nSpeakers: Dr. Juliana Kreinik, Dr. Amy Hamlin", "slug": "munch-the-storm-1893", "kind": "Video", "video_id": "653ZKHd_PYo", "keywords": "Munch, Art History, Smarthistory, Edvard Munch, MoMA", "youtube_id": "653ZKHd_PYo", "readable_id": "munch-the-storm-1893"}, "ZmqK0X1psDA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZmqK0X1psDA.mp4/ZmqK0X1psDA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZmqK0X1psDA.mp4/ZmqK0X1psDA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZmqK0X1psDA.m3u8/ZmqK0X1psDA.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/two-forces-divergence/", "duration": 587, "id": "ZmqK0X1psDA", "title": "Piketty's two drivers of divergence", "format": "mp4", "description": "", "slug": "two-forces-divergence", "kind": "Video", "video_id": "ZmqK0X1psDA", "keywords": "", "youtube_id": "ZmqK0X1psDA", "readable_id": "two-forces-divergence"}, "T-iDkq8yfWY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T-iDkq8yfWY.mp4/T-iDkq8yfWY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T-iDkq8yfWY.mp4/T-iDkq8yfWY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T-iDkq8yfWY.m3u8/T-iDkq8yfWY.m3u8"}, "duration": 200, "id": "T-iDkq8yfWY", "title": "Capturing Turner's colours: Olafur Eliasson's colour experiments", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nOften referred to as \"the painter of light,\" what exactly was Turner trying to do with colour and light? Danish-Icelandic artist Olafur Eliasson, known for his pieces exploring elemental materials such as light and air, investigates Turner\u2019s use of colour and light through a series of colour experiment paintings. His interest in Turner\u2019s paintings stems from the artist\u2019s long held interest in atmosphere and dematerialisation. Through analysing pigments, paint production, and application of colour, Eliasson has created visual spaces where the viewers can break away from traditional perspective and hierarchy and simply immerse themselves in the atmospheres of Turner\u2019s paintings.\nThese colour experiments demonstrate Turner\u2019s continued relevance to and fascination for artists today. Do you get a sense of Turner\u2019s colours and atmospheres in Eliasson\u2019s experiments?\n\n", "path": "olafur-eliasson-on-turner/", "slug": "olafur-eliasson-on-turner", "kind": "Video", "video_id": "T-iDkq8yfWY", "keywords": "Tate", "youtube_id": "T-iDkq8yfWY", "readable_id": "olafur-eliasson-on-turner"}, "ANnuQZyEKVo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ANnuQZyEKVo.mp4/ANnuQZyEKVo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ANnuQZyEKVo.mp4/ANnuQZyEKVo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ANnuQZyEKVo.m3u8/ANnuQZyEKVo.m3u8"}, "duration": 440, "id": "ANnuQZyEKVo", "title": "Constructing a shape by reflecting over 2 lines", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/transformations-symmetry/reflecting-across-two-lines/", "slug": "reflecting-across-two-lines", "kind": "Video", "video_id": "ANnuQZyEKVo", "keywords": "", "youtube_id": "ANnuQZyEKVo", "readable_id": "reflecting-across-two-lines"}, "NehkLV77ITk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NehkLV77ITk.mp4/NehkLV77ITk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NehkLV77ITk.mp4/NehkLV77ITk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NehkLV77ITk.m3u8/NehkLV77ITk.m3u8"}, "duration": 303, "id": "NehkLV77ITk", "title": "The why of the 3 divisibility rule", "format": "mp4", "description": "Why you can add the digits to see if something is divisible by 3", "path": "khan/math/pre-algebra/factors-multiples/divisibility_tests/the-why-of-the-3-divisibility-rule/", "slug": "the-why-of-the-3-divisibility-rule", "kind": "Video", "video_id": "NehkLV77ITk", "keywords": "divisibility", "youtube_id": "NehkLV77ITk", "readable_id": "the-why-of-the-3-divisibility-rule"}, "ncsA3hqNnZE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ncsA3hqNnZE.mp4/ncsA3hqNnZE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ncsA3hqNnZE.mp4/ncsA3hqNnZE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ncsA3hqNnZE.m3u8/ncsA3hqNnZE.m3u8"}, "duration": 325, "id": "ncsA3hqNnZE", "title": "The Constitution and the Bill of Rights: Amendments 4, 5, 10", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the Constitution's Bill of Rights, Amendments 4, 5, and 10.\u00a0", "path": "bill-of-rights-two/", "slug": "bill-of-rights-two", "kind": "Video", "video_id": "ncsA3hqNnZE", "keywords": "", "youtube_id": "ncsA3hqNnZE", "readable_id": "bill-of-rights-two"}, "52wxpYnS64U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/52wxpYnS64U.mp4/52wxpYnS64U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/52wxpYnS64U.mp4/52wxpYnS64U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/52wxpYnS64U.m3u8/52wxpYnS64U.m3u8"}, "duration": 568, "id": "52wxpYnS64U", "title": "Tension in an accelerating system and pie in the face", "format": "mp4", "description": "The second part to the complicated problem. We figure out the tension in the wire connecting the two masses. Then we figure our how much we need to accelerate a pie for it to safely reach a man's face.", "path": "khan/test-prep/mcat/physical-processes/force-of-tension/tension-in-an-accelerating-system-and-pie-in-the-face/", "slug": "tension-in-an-accelerating-system-and-pie-in-the-face", "kind": "Video", "video_id": "52wxpYnS64U", "keywords": "tension, pie, friction, mass, acceleration, physics", "youtube_id": "52wxpYnS64U", "readable_id": "tension-in-an-accelerating-system-and-pie-in-the-face"}, "SPZsJN_Wsdc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SPZsJN_Wsdc.mp4/SPZsJN_Wsdc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SPZsJN_Wsdc.mp4/SPZsJN_Wsdc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SPZsJN_Wsdc.m3u8/SPZsJN_Wsdc.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/standard-form/standard-form-to-slope-intercept-form/", "duration": 154, "id": "SPZsJN_Wsdc", "title": "Converting from standard form to slope-intercept form", "format": "mp4", "description": "Standard form to slope-intercept form", "slug": "standard-form-to-slope-intercept-form", "kind": "Video", "video_id": "SPZsJN_Wsdc", "keywords": "", "youtube_id": "SPZsJN_Wsdc", "readable_id": "standard-form-to-slope-intercept-form"}, "87-DnbQatO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/87-DnbQatO8.mp4/87-DnbQatO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/87-DnbQatO8.mp4/87-DnbQatO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/87-DnbQatO8.m3u8/87-DnbQatO8.m3u8"}, "duration": 181, "id": "87-DnbQatO8", "title": "Chassis modifications", "format": "mp4", "description": "This video shows how Bit-zee's shell was modified to allow space for the bumper switches.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-shell/", "slug": "bit-zee-s-shell", "kind": "Video", "video_id": "87-DnbQatO8", "keywords": "shell, outer housing, shroud, bumper, bezel, bit-zee, bot, diy, make, hack, do", "youtube_id": "87-DnbQatO8", "readable_id": "bit-zee-s-shell"}, "1Smz0zwAELQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1Smz0zwAELQ.mp4/1Smz0zwAELQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1Smz0zwAELQ.mp4/1Smz0zwAELQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1Smz0zwAELQ.m3u8/1Smz0zwAELQ.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/psychoactive-drugs-stimulants/", "duration": 199, "id": "1Smz0zwAELQ", "title": "Psychoactive drugs: Stimulants", "format": "mp4", "description": "", "slug": "psychoactive-drugs-stimulants", "kind": "Video", "video_id": "1Smz0zwAELQ", "keywords": "", "youtube_id": "1Smz0zwAELQ", "readable_id": "psychoactive-drugs-stimulants"}, "n2kUpKP18z8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n2kUpKP18z8.mp4/n2kUpKP18z8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n2kUpKP18z8.mp4/n2kUpKP18z8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n2kUpKP18z8.m3u8/n2kUpKP18z8.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/intersectionality/", "duration": 210, "id": "n2kUpKP18z8", "title": "Intersectionality", "format": "mp4", "description": "", "slug": "intersectionality", "kind": "Video", "video_id": "n2kUpKP18z8", "keywords": "", "youtube_id": "n2kUpKP18z8", "readable_id": "intersectionality"}, "6OvhLPS7rj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6OvhLPS7rj4.mp4/6OvhLPS7rj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6OvhLPS7rj4.mp4/6OvhLPS7rj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6OvhLPS7rj4.m3u8/6OvhLPS7rj4.m3u8"}, "duration": 407, "id": "6OvhLPS7rj4", "title": "Squared error of regression line", "format": "mp4", "description": "Introduction to the idea that one can find a line that minimizes the squared distances to the points", "path": "khan/math/probability/regression/regression-correlation/squared-error-of-regression-line/", "slug": "squared-error-of-regression-line", "kind": "Video", "video_id": "6OvhLPS7rj4", "keywords": "squared, error, regression, line, least, CC_8_SP_2, CC_8_SP_3", "youtube_id": "6OvhLPS7rj4", "readable_id": "squared-error-of-regression-line"}, "jaizi_1IB5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jaizi_1IB5c.mp4/jaizi_1IB5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jaizi_1IB5c.mp4/jaizi_1IB5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jaizi_1IB5c.m3u8/jaizi_1IB5c.m3u8"}, "duration": 392, "id": "jaizi_1IB5c", "title": "Absolute value equation example 2", "format": "mp4", "description": "Example of solving an absolute value equation", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute-value-equation-example-2/", "slug": "absolute-value-equation-example-2", "kind": "Video", "video_id": "jaizi_1IB5c", "keywords": "U02_L2_T2_we2, absolute, value, equation, CC_6_NS_7_c, CC_8_EE_7, CC_8_EE_7_a", "youtube_id": "jaizi_1IB5c", "readable_id": "absolute-value-equation-example-2"}, "ErHFQUhZ94I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ErHFQUhZ94I.mp4/ErHFQUhZ94I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ErHFQUhZ94I.mp4/ErHFQUhZ94I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ErHFQUhZ94I.m3u8/ErHFQUhZ94I.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/adding-decimals-example-2/", "duration": 106, "id": "ErHFQUhZ94I", "title": "Adding decimals: example 2", "format": "mp4", "description": "Let's practice another adding decimals problem: 0.822 plus 5.65. We'll do it together.", "slug": "adding-decimals-example-2", "kind": "Video", "video_id": "ErHFQUhZ94I", "keywords": "", "youtube_id": "ErHFQUhZ94I", "readable_id": "adding-decimals-example-2"}, "H3XT-YU2n0c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H3XT-YU2n0c.mp4/H3XT-YU2n0c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H3XT-YU2n0c.mp4/H3XT-YU2n0c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H3XT-YU2n0c.m3u8/H3XT-YU2n0c.m3u8"}, "duration": 586, "id": "H3XT-YU2n0c", "title": "The plants & the bees: Plant reproduction", "format": "mp4", "description": "Hank gets into the dirty details about vascular plant reproduction: they use the basic alternation of generations developed by nonvascular plants 470 million years ago, but they've tricked it out so that it works a whole lot differently compared to the way it did back in the Ordovician swamps where it got its start. Here's how the vascular plants (ferns, gymnosperms and angiosperms) do it.", "path": "crash-course-biology-137/", "slug": "crash-course-biology-137", "kind": "Video", "video_id": "H3XT-YU2n0c", "keywords": "", "youtube_id": "H3XT-YU2n0c", "readable_id": "crash-course-biology-137"}, "1lvyCZsP_Sw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1lvyCZsP_Sw.mp4/1lvyCZsP_Sw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1lvyCZsP_Sw.mp4/1lvyCZsP_Sw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1lvyCZsP_Sw.m3u8/1lvyCZsP_Sw.m3u8"}, "path": "khan/test-prep/mcat/cells/prokaryotes-bacteria/bacterial-reproduction-bacterial-growth-curve/", "duration": 419, "id": "1lvyCZsP_Sw", "title": "Bacterial reproduction - Bacterial growth curve", "format": "mp4", "description": "", "slug": "bacterial-reproduction-bacterial-growth-curve", "kind": "Video", "video_id": "1lvyCZsP_Sw", "keywords": "", "youtube_id": "1lvyCZsP_Sw", "readable_id": "bacterial-reproduction-bacterial-growth-curve"}, "eTWCARmrzJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eTWCARmrzJ0.mp4/eTWCARmrzJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eTWCARmrzJ0.mp4/eTWCARmrzJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eTWCARmrzJ0.m3u8/eTWCARmrzJ0.m3u8"}, "duration": 260, "id": "eTWCARmrzJ0", "title": "Fancier logarithm expressions", "format": "mp4", "description": "Examples of logarithms that evaluate to fractional and negative values.", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/fancier-logarithm-expressions/", "slug": "fancier-logarithm-expressions", "kind": "Video", "video_id": "eTWCARmrzJ0", "keywords": "", "youtube_id": "eTWCARmrzJ0", "readable_id": "fancier-logarithm-expressions"}, "jWQ4V43TJ6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jWQ4V43TJ6o.mp4/jWQ4V43TJ6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jWQ4V43TJ6o.mp4/jWQ4V43TJ6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jWQ4V43TJ6o.m3u8/jWQ4V43TJ6o.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/rubens-marie/", "duration": 308, "id": "jWQ4V43TJ6o", "title": "Rubens, The Presentation of the Portrait of Marie de' Medici", "format": "mp4", "description": "Peter Paul Rubens, The Presentation of the Portrait of Marie de' Medici, c. 1622-1625, oil on canvas, 394 x 295 cm (Mus\u00e9e du Louvre)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris\n", "slug": "rubens-marie", "kind": "Video", "video_id": "jWQ4V43TJ6o", "keywords": "", "youtube_id": "jWQ4V43TJ6o", "readable_id": "rubens-marie"}, "tpjVmLIUWCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tpjVmLIUWCo.mp4/tpjVmLIUWCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tpjVmLIUWCo.mp4/tpjVmLIUWCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tpjVmLIUWCo.m3u8/tpjVmLIUWCo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/acute-complications-of-diabetes-diabetic-ketoacidosis/", "duration": 686, "id": "tpjVmLIUWCo", "title": "Acute complications of diabetes - Diabetic ketoacidosis", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "acute-complications-of-diabetes-diabetic-ketoacidosis", "kind": "Video", "video_id": "tpjVmLIUWCo", "keywords": "", "youtube_id": "tpjVmLIUWCo", "readable_id": "acute-complications-of-diabetes-diabetic-ketoacidosis"}, "atI4QH2acuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/atI4QH2acuw.mp4/atI4QH2acuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/atI4QH2acuw.mp4/atI4QH2acuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/atI4QH2acuw.m3u8/atI4QH2acuw.m3u8"}, "duration": 296, "id": "atI4QH2acuw", "title": "Optional calculus proof to show that MR has twice slope of demand", "format": "mp4", "description": "Using some basic calculus to show that marginal revenue has twice the slope of the demand curve for a monopolist", "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolies-tutorial/optional-calculus-proof-to-show-that-mr-has-twice-slope-of-demand/", "slug": "optional-calculus-proof-to-show-that-mr-has-twice-slope-of-demand", "kind": "Video", "video_id": "atI4QH2acuw", "keywords": "microeconomics", "youtube_id": "atI4QH2acuw", "readable_id": "optional-calculus-proof-to-show-that-mr-has-twice-slope-of-demand"}, "bekNKJoxYbQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bekNKJoxYbQ.mp4/bekNKJoxYbQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bekNKJoxYbQ.mp4/bekNKJoxYbQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bekNKJoxYbQ.m3u8/bekNKJoxYbQ.m3u8"}, "duration": 843, "id": "bekNKJoxYbQ", "title": "Confidence interval 1", "format": "mp4", "description": "Estimating the probability that the true population mean lies within a range around a sample mean.", "path": "khan/math/probability/statistics-inferential/confidence-intervals/confidence-interval-1/", "slug": "confidence-interval-1", "kind": "Video", "video_id": "bekNKJoxYbQ", "keywords": "inferential, statistics, population, sample, distribution, mean, confidence, interval", "youtube_id": "bekNKJoxYbQ", "readable_id": "confidence-interval-1"}, "ithdrJuSj3A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ithdrJuSj3A.mp4/ithdrJuSj3A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ithdrJuSj3A.mp4/ithdrJuSj3A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ithdrJuSj3A.m3u8/ithdrJuSj3A.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cardiomyopathy/cardiomyopathy-treatment/", "duration": 457, "id": "ithdrJuSj3A", "title": "Cardiomyopathy treatment", "format": "mp4", "description": "", "slug": "cardiomyopathy-treatment", "kind": "Video", "video_id": "ithdrJuSj3A", "keywords": "", "youtube_id": "ithdrJuSj3A", "readable_id": "cardiomyopathy-treatment"}, "_PmuqxHuk3o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_PmuqxHuk3o.mp4/_PmuqxHuk3o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_PmuqxHuk3o.mp4/_PmuqxHuk3o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_PmuqxHuk3o.m3u8/_PmuqxHuk3o.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations-alkanes-cycloalkanes/conformations-of-ethane-and-propane/", "duration": 836, "id": "_PmuqxHuk3o", "title": "Conformations of ethane and propane", "format": "mp4", "description": "", "slug": "conformations-of-ethane-and-propane", "kind": "Video", "video_id": "_PmuqxHuk3o", "keywords": "", "youtube_id": "_PmuqxHuk3o", "readable_id": "conformations-of-ethane-and-propane"}, "C6RFvROskM8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C6RFvROskM8.mp4/C6RFvROskM8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C6RFvROskM8.mp4/C6RFvROskM8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C6RFvROskM8.m3u8/C6RFvROskM8.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/rational-choice-exchange/", "duration": 480, "id": "C6RFvROskM8", "title": "Rational choice-exchange theory", "format": "mp4", "description": "", "slug": "rational-choice-exchange", "kind": "Video", "video_id": "C6RFvROskM8", "keywords": "", "youtube_id": "C6RFvROskM8", "readable_id": "rational-choice-exchange"}, "v3gdX07Q6qE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v3gdX07Q6qE.mp4/v3gdX07Q6qE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v3gdX07Q6qE.mp4/v3gdX07Q6qE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v3gdX07Q6qE.m3u8/v3gdX07Q6qE.m3u8"}, "path": "khan/math/recreational-math/math-warmup/arithmetic-warmups/baseten-warmup/", "duration": 182, "id": "v3gdX07Q6qE", "title": "Place value warmup", "format": "mp4", "description": "Learn about place value using a toy with beads (an abacus).", "slug": "baseten-warmup", "kind": "Video", "video_id": "v3gdX07Q6qE", "keywords": "", "youtube_id": "v3gdX07Q6qE", "readable_id": "baseten-warmup"}, "IDkhHTjlg0M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IDkhHTjlg0M.mp4/IDkhHTjlg0M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IDkhHTjlg0M.mp4/IDkhHTjlg0M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IDkhHTjlg0M.m3u8/IDkhHTjlg0M.m3u8"}, "duration": 599, "id": "IDkhHTjlg0M", "title": "GMAT: Math 44", "format": "mp4", "description": "210-213, pg. 181", "path": "khan/test-prep/gmat/problem-solving/gmat-math-44/", "slug": "gmat-math-44", "kind": "Video", "video_id": "IDkhHTjlg0M", "keywords": "gmat, math, problem, solving", "youtube_id": "IDkhHTjlg0M", "readable_id": "gmat-math-44"}, "Hxk6GCKUiZI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hxk6GCKUiZI.mp4/Hxk6GCKUiZI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hxk6GCKUiZI.mp4/Hxk6GCKUiZI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hxk6GCKUiZI.m3u8/Hxk6GCKUiZI.m3u8"}, "duration": 601, "id": "Hxk6GCKUiZI", "title": "Trait theory", "format": "mp4", "description": "Learn how our traits make up our personality by taking a look at different psychologists' perspectives in how the Trait Theory came to be. By Shreena Desai. ", "path": "khan/test-prep/mcat/behavior/theories-personality/trait-theory/", "slug": "trait-theory", "kind": "Video", "video_id": "Hxk6GCKUiZI", "keywords": "trait theory", "youtube_id": "Hxk6GCKUiZI", "readable_id": "trait-theory"}, "9BNkmfHYYYI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9BNkmfHYYYI.mp4/9BNkmfHYYYI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9BNkmfHYYYI.mp4/9BNkmfHYYYI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9BNkmfHYYYI.m3u8/9BNkmfHYYYI.m3u8"}, "duration": 396, "id": "9BNkmfHYYYI", "title": "Space station speed in orbit", "format": "mp4", "description": "Speed necessary for the space station to stay in orbit", "path": "khan/science/physics/newton-gravitation/gravity-newtonian/space-station-speed-in-orbit/", "slug": "space-station-speed-in-orbit", "kind": "Video", "video_id": "9BNkmfHYYYI", "keywords": "centripetal, acceleration", "youtube_id": "9BNkmfHYYYI", "readable_id": "space-station-speed-in-orbit"}, "6Sy4E_8Psos": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Sy4E_8Psos.mp4/6Sy4E_8Psos.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Sy4E_8Psos.mp4/6Sy4E_8Psos.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Sy4E_8Psos.m3u8/6Sy4E_8Psos.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-28-31/", "duration": 442, "id": "6Sy4E_8Psos", "title": "CAHSEE practice: Problems 28-31", "format": "mp4", "description": "CAHSEE Practice: Problems 28-31", "slug": "cahsee-practice-problems-28-31", "kind": "Video", "video_id": "6Sy4E_8Psos", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "6Sy4E_8Psos", "readable_id": "cahsee-practice-problems-28-31"}, "uEhRqiSA4ko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uEhRqiSA4ko.mp4/uEhRqiSA4ko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uEhRqiSA4ko.mp4/uEhRqiSA4ko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uEhRqiSA4ko.m3u8/uEhRqiSA4ko.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/fallacy-of-division/", "duration": 246, "id": "uEhRqiSA4ko", "title": "Fallacies: Fallacy of division", "format": "mp4", "description": "In this video, Paul Henne describes the fallacy of division, the informal fallacy that arises when we assume that the parts of some whole must have the same properties as the whole they make up. He also discusses why water molecules aren't wet.\u00a0\n\nSpeaker: Paul Henne", "slug": "fallacy-of-division", "kind": "Video", "video_id": "uEhRqiSA4ko", "keywords": "", "youtube_id": "uEhRqiSA4ko", "readable_id": "fallacy-of-division"}, "Me8BrHY57JI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Me8BrHY57JI.mp4/Me8BrHY57JI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Me8BrHY57JI.mp4/Me8BrHY57JI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Me8BrHY57JI.m3u8/Me8BrHY57JI.m3u8"}, "duration": 35, "id": "Me8BrHY57JI", "title": "What is and is not a dinosaur?", "format": "mp4", "description": "Scientifically, the group called dinosaurs includes all the animals that evolved from the very first dinosaur, the common ancestor. A key evolutionary innovation of dinosaurs is that they walk with a fully erect posture, holding their hind legs vertically under their hips. The top of the thighbone (or femur) has a knob or head that sticks out to the side of the rest of the bone and fits into the hip socket (or acetabulum) in the pelvis. The hip socket has a hole in the center, as well as a rim of bone along the upper margin, which helps support the weight of the body on the leg. Since these features are present in all known dinosaurs, we deduce that they first evolved in the common ancestor.", "path": "what-is-isnt-a-dinosaur/", "slug": "what-is-isnt-a-dinosaur", "kind": "Video", "video_id": "Me8BrHY57JI", "keywords": "", "youtube_id": "Me8BrHY57JI", "readable_id": "what-is-isnt-a-dinosaur"}, "PpUWpxAb39w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PpUWpxAb39w.mp4/PpUWpxAb39w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PpUWpxAb39w.mp4/PpUWpxAb39w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PpUWpxAb39w.m3u8/PpUWpxAb39w.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-ex2-part-1-parameterizing-the-surface/", "duration": 310, "id": "PpUWpxAb39w", "title": "Surface integral ex2 part 1: Parameterizing the surface", "format": "mp4", "description": "Parametrizing a surface that can be explictly made a function of x and y.", "slug": "surface-integral-ex2-part-1-parameterizing-the-surface", "kind": "Video", "video_id": "PpUWpxAb39w", "keywords": "surface, integral, calculus", "youtube_id": "PpUWpxAb39w", "readable_id": "surface-integral-ex2-part-1-parameterizing-the-surface"}, "lsXcKgjg8Hs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lsXcKgjg8Hs.mp4/lsXcKgjg8Hs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lsXcKgjg8Hs.mp4/lsXcKgjg8Hs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lsXcKgjg8Hs.m3u8/lsXcKgjg8Hs.m3u8"}, "duration": 683, "id": "lsXcKgjg8Hs", "title": "Chilling water problem", "format": "mp4", "description": "How much ice at -10 degrees C is necessary to get 500g of water down to 0 degrees C?", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/chilling-water-problem/", "slug": "chilling-water-problem", "kind": "Video", "video_id": "lsXcKgjg8Hs", "keywords": "chemistry, states, phase, water, melting, fusion", "youtube_id": "lsXcKgjg8Hs", "readable_id": "chilling-water-problem"}, "FtxmFlMLYRI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FtxmFlMLYRI.mp4/FtxmFlMLYRI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FtxmFlMLYRI.mp4/FtxmFlMLYRI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FtxmFlMLYRI.m3u8/FtxmFlMLYRI.m3u8"}, "duration": 229, "id": "FtxmFlMLYRI", "title": "A song about a circle constant", "format": "mp4", "description": "Happy Tau Day! This is a song about Tau! Other Tau things you should see:Pi is (still) Wrong: http://youtu.be/jG7vhMMXagQ What Tau Sounds Like: http://youtu.be/3174T-3-59QThe Tau Manifesto: http://tauday.com/", "path": "khan/math/recreational-math/vi-hart/pi-tau/a-song-about-a-circle-constant/", "slug": "a-song-about-a-circle-constant", "kind": "Video", "video_id": "FtxmFlMLYRI", "keywords": "tau, pi, circles, tau day, song, math", "youtube_id": "FtxmFlMLYRI", "readable_id": "a-song-about-a-circle-constant"}, "uhqIh7wXwS4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uhqIh7wXwS4.mp4/uhqIh7wXwS4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uhqIh7wXwS4.mp4/uhqIh7wXwS4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uhqIh7wXwS4.m3u8/uhqIh7wXwS4.m3u8"}, "path": "khan/partner-content/exploratorium/expl-sound/light-to-sound/received/", "duration": 132, "id": "uhqIh7wXwS4", "title": "Build and test the receiver", "format": "mp4", "description": "A solar cell connected to a speaker converts the light into sound.", "slug": "received", "kind": "Video", "video_id": "uhqIh7wXwS4", "keywords": "", "youtube_id": "uhqIh7wXwS4", "readable_id": "received"}, "k1iHDu9GrJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k1iHDu9GrJE.mp4/k1iHDu9GrJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k1iHDu9GrJE.mp4/k1iHDu9GrJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k1iHDu9GrJE.m3u8/k1iHDu9GrJE.m3u8"}, "duration": 726, "id": "k1iHDu9GrJE", "title": "Visualizing average costs and marginal costs as slope", "format": "mp4", "description": "Graphing variable cost, fixed cost and total cost", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/average-costs-tutorial/visualizing-average-costs-and-marginal-costs-as-slope/", "slug": "visualizing-average-costs-and-marginal-costs-as-slope", "kind": "Video", "video_id": "k1iHDu9GrJE", "keywords": "marginal, cost, microeconomics", "youtube_id": "k1iHDu9GrJE", "readable_id": "visualizing-average-costs-and-marginal-costs-as-slope"}, "pr-u4LCFYEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pr-u4LCFYEY.mp4/pr-u4LCFYEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pr-u4LCFYEY.mp4/pr-u4LCFYEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pr-u4LCFYEY.m3u8/pr-u4LCFYEY.m3u8"}, "duration": 624, "id": "pr-u4LCFYEY", "title": "Introduction to the Black-Scholes formula", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/derivative-securities/black-scholes/introduction-to-the-black-scholes-formula/", "slug": "introduction-to-the-black-scholes-formula", "kind": "Video", "video_id": "pr-u4LCFYEY", "keywords": "", "youtube_id": "pr-u4LCFYEY", "readable_id": "introduction-to-the-black-scholes-formula"}, "hPYOMKQlU1g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hPYOMKQlU1g.mp4/hPYOMKQlU1g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hPYOMKQlU1g.mp4/hPYOMKQlU1g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hPYOMKQlU1g.m3u8/hPYOMKQlU1g.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/capitals-church-of-sant-miquel-early-13th-century/", "duration": 226, "id": "hPYOMKQlU1g", "title": "Historiated capitals, Church of Sant Miquel, Camarasa (Noguera)", "format": "mp4", "description": "Historiated capitals from the crossing of the Church of Sant Miquel of the castle of Camarasa (Noguera), early 13th century, stone, 77 x 1.65 x 77.5 cm (Museu Nacional d'Art de Catalunya, Palau Nacional, Barcelona).", "slug": "capitals-church-of-sant-miquel-early-13th-century", "kind": "Video", "video_id": "hPYOMKQlU1g", "keywords": "NMAC, Barcelona, Art history, romanesque, smarthistory, middle ages, adam and eve", "youtube_id": "hPYOMKQlU1g", "readable_id": "capitals-church-of-sant-miquel-early-13th-century"}, "PlY3e_-9JUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PlY3e_-9JUA.mp4/PlY3e_-9JUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PlY3e_-9JUA.mp4/PlY3e_-9JUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PlY3e_-9JUA.m3u8/PlY3e_-9JUA.m3u8"}, "duration": 184, "id": "PlY3e_-9JUA", "title": "Angle bisector theorem examples", "format": "mp4", "description": "Using the angle bisector theorem to solve for sides of a triangle", "path": "khan/math/geometry/triangle-properties/angle_bisectors/angle-bisector-theorem-examples/", "slug": "angle-bisector-theorem-examples", "kind": "Video", "video_id": "PlY3e_-9JUA", "keywords": "Angle, Bisector, Theorem, Examples", "youtube_id": "PlY3e_-9JUA", "readable_id": "angle-bisector-theorem-examples"}, "O1R4H3Ca82E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O1R4H3Ca82E.mp4/O1R4H3Ca82E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O1R4H3Ca82E.mp4/O1R4H3Ca82E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O1R4H3Ca82E.m3u8/O1R4H3Ca82E.m3u8"}, "path": "khan/math/pre-algebra/measurement/area-basics/measuring-the-same-rectangle-with-different-unit-squares/", "duration": 224, "id": "O1R4H3Ca82E", "title": "Measuring the same rectangle with different unit squares", "format": "mp4", "description": "Find area of a rectangle with different sized units.", "slug": "measuring-the-same-rectangle-with-different-unit-squares", "kind": "Video", "video_id": "O1R4H3Ca82E", "keywords": "", "youtube_id": "O1R4H3Ca82E", "readable_id": "measuring-the-same-rectangle-with-different-unit-squares"}, "_Md5nli5OII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_Md5nli5OII.mp4/_Md5nli5OII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_Md5nli5OII.mp4/_Md5nli5OII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_Md5nli5OII.m3u8/_Md5nli5OII.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-laryngeal-conditions/epiglottitis-diagnosis-and-treatment/", "duration": 661, "id": "_Md5nli5OII", "title": "Epiglottitis diagnosis and treatment", "format": "mp4", "description": "", "slug": "epiglottitis-diagnosis-and-treatment", "kind": "Video", "video_id": "_Md5nli5OII", "keywords": "", "youtube_id": "_Md5nli5OII", "readable_id": "epiglottitis-diagnosis-and-treatment"}, "wkP1TF16z1M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wkP1TF16z1M.mp4/wkP1TF16z1M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wkP1TF16z1M.mp4/wkP1TF16z1M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wkP1TF16z1M.m3u8/wkP1TF16z1M.m3u8"}, "path": "khan/humanities/art-asia/south-asia/hindu-art/ganesha/", "duration": 241, "id": "wkP1TF16z1M", "title": "The making and worship of Ganesha statues in Maharashtra", "format": "mp4", "description": "The elephant-headed Ganesha is one of the most popular Hindu gods -- the creator and remover of obstacles. The main stone sculpture in the display was carved from schist around 800 years ago and was originally positioned on the outside of a temple in the eastern state of Orissa (recently renamed Odisha). The display brings this sculpture together with other more recent depictions of Ganesha created for different purposes. Among these are the temporary statues created every year for the Ganeshchaturthi festival in Mumbai, which are placed in public or domestic shrines before being immersed in water at the end of the celebrations.\u00a0\u00a9 Trustees of the British Museum", "slug": "ganesha", "kind": "Video", "video_id": "wkP1TF16z1M", "keywords": "India, Ganesha", "youtube_id": "wkP1TF16z1M", "readable_id": "ganesha"}, "rheO1tVyB0U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rheO1tVyB0U.mp4/rheO1tVyB0U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rheO1tVyB0U.mp4/rheO1tVyB0U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rheO1tVyB0U.m3u8/rheO1tVyB0U.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/urination/", "duration": 573, "id": "rheO1tVyB0U", "title": "Urination", "format": "mp4", "description": "", "slug": "urination", "kind": "Video", "video_id": "rheO1tVyB0U", "keywords": "", "youtube_id": "rheO1tVyB0U", "readable_id": "urination"}, "sv9CHsd546Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sv9CHsd546Q.mp4/sv9CHsd546Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sv9CHsd546Q.mp4/sv9CHsd546Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sv9CHsd546Q.m3u8/sv9CHsd546Q.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/high-renaissance1/raphael-italian-la-belle-jardini-re-also-madonna-and-child-with-saint-john-the-baptist-1507/", "duration": 176, "id": "sv9CHsd546Q", "title": "Raphael, La belle jardini\u00e8re", "format": "mp4", "description": "Raphael (Italian), La belle jardini\u00e8re (also, Madonna and Child with Saint John the Baptist), 1507, oil on panel, 48 \u00d7 31\u00bd in (122 \u00d7 80 cm, Mus\u00e9e du Louvre, Paris)\n\nSpeakers: Drs. Beth Harris and Steven Zucker", "slug": "raphael-italian-la-belle-jardini-re-also-madonna-and-child-with-saint-john-the-baptist-1507", "kind": "Video", "video_id": "sv9CHsd546Q", "keywords": "raphael, madonna, National Gallery, Renaissance", "youtube_id": "sv9CHsd546Q", "readable_id": "raphael-italian-la-belle-jardini-re-also-madonna-and-child-with-saint-john-the-baptist-1507"}, "fYzoiWIBjP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fYzoiWIBjP8.mp4/fYzoiWIBjP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fYzoiWIBjP8.mp4/fYzoiWIBjP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fYzoiWIBjP8.m3u8/fYzoiWIBjP8.m3u8"}, "duration": 622, "id": "fYzoiWIBjP8", "title": "Curl 3", "format": "mp4", "description": "More on curl", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/curl/curl-3/", "slug": "curl-3", "kind": "Video", "video_id": "fYzoiWIBjP8", "keywords": "vector, field, curl", "youtube_id": "fYzoiWIBjP8", "readable_id": "curl-3"}, "RPhaidW0dmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RPhaidW0dmY.mp4/RPhaidW0dmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RPhaidW0dmY.mp4/RPhaidW0dmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RPhaidW0dmY.m3u8/RPhaidW0dmY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-mult-div-pre-alg/multiplying-mixed-numbers/", "duration": 261, "id": "RPhaidW0dmY", "title": "Multiplying mixed numbers", "format": "mp4", "description": "We've learned to multiplying two fractions and a fraction and a whole number. Let's move on to multiplying mixed numbers!", "slug": "multiplying-mixed-numbers", "kind": "Video", "video_id": "RPhaidW0dmY", "keywords": "U02_L2_T1_we3, Multiplying, Mixed, Numbers, CC_5_NF_6", "youtube_id": "RPhaidW0dmY", "readable_id": "multiplying-mixed-numbers"}, "DxkkAHnqlpY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DxkkAHnqlpY.mp4/DxkkAHnqlpY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DxkkAHnqlpY.mp4/DxkkAHnqlpY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DxkkAHnqlpY.m3u8/DxkkAHnqlpY.m3u8"}, "duration": 568, "id": "DxkkAHnqlpY", "title": "Supermassive black holes", "format": "mp4", "description": "Supermassive Black Holes", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/supermassive-black-holes/", "slug": "supermassive-black-holes", "kind": "Video", "video_id": "DxkkAHnqlpY", "keywords": "Super, massive, Black, Holes", "youtube_id": "DxkkAHnqlpY", "readable_id": "supermassive-black-holes"}, "wwO6DjL_wFw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wwO6DjL_wFw.mp4/wwO6DjL_wFw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wwO6DjL_wFw.mp4/wwO6DjL_wFw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wwO6DjL_wFw.m3u8/wwO6DjL_wFw.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens-hundreds/adding-ten-or-one-hundred/", "duration": 239, "id": "wwO6DjL_wFw", "title": "Adding ten or one hundred", "format": "mp4", "description": "Learn how to add 1, 10, or 100 to a number.", "slug": "adding-ten-or-one-hundred", "kind": "Video", "video_id": "wwO6DjL_wFw", "keywords": "", "youtube_id": "wwO6DjL_wFw", "readable_id": "adding-ten-or-one-hundred"}, "PtmzfpV6CDE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PtmzfpV6CDE.mp4/PtmzfpV6CDE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PtmzfpV6CDE.mp4/PtmzfpV6CDE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PtmzfpV6CDE.m3u8/PtmzfpV6CDE.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/how-do-we-measure-information-language-of-coins-10-12/", "duration": 593, "id": "PtmzfpV6CDE", "title": "Measuring information", "format": "mp4", "description": "How can we quantify/measure an information source?", "slug": "how-do-we-measure-information-language-of-coins-10-12", "kind": "Video", "video_id": "PtmzfpV6CDE", "keywords": "measure information", "youtube_id": "PtmzfpV6CDE", "readable_id": "how-do-we-measure-information-language-of-coins-10-12"}, "Hpfs8uEo9WA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hpfs8uEo9WA.mp4/Hpfs8uEo9WA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hpfs8uEo9WA.mp4/Hpfs8uEo9WA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hpfs8uEo9WA.m3u8/Hpfs8uEo9WA.m3u8"}, "duration": 673, "id": "Hpfs8uEo9WA", "title": "Ancient Egypt", "format": "mp4", "description": "In which John covers the long, long history of ancient Egypt, including the Old, Middle and New Kingdoms, and even a couple of intermediate periods. Learn about mummies, pharaohs, pyramids and the Nile with John Green. ", "path": "khan/humanities/history/crashcourse-worldhistory/what-happens-when-you-stay-put-2/crash-course-world-history-04/", "slug": "crash-course-world-history-04", "kind": "Video", "video_id": "Hpfs8uEo9WA", "keywords": "crash course", "youtube_id": "Hpfs8uEo9WA", "readable_id": "crash-course-world-history-04"}, "hrBMFNvvOBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hrBMFNvvOBI.mp4/hrBMFNvvOBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hrBMFNvvOBI.mp4/hrBMFNvvOBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hrBMFNvvOBI.m3u8/hrBMFNvvOBI.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/correggio-jupiter-and-io/", "duration": 254, "id": "hrBMFNvvOBI", "title": "Correggio, Jupiter and Io", "format": "mp4", "description": "Correggio, Jupiter and Io, 1532-33, oil on canvas 163.5 x 70.5 cm (Kunsthistorisches Museum, Vienna)\u00a0Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\u00a0\n\nJupiter and Io\u00a0and the other canvases by Correggio discussed in the video,\u00a0The Rape\u00a0(Abduction)of Ganymede,\u00a0Dan\u00e4e, and\u00a0Leda and the Swan\u00a0illustrate stories from the poem\u00a0Metamorphoses\u00a0by the Roman poet Ovid. Metamorphoses is, of course about transformation, such as Jupiter becoming a swan, but it is also about love and is one of the most influential texts ever written. Below is a translated excerpt:\n\nOvid's Metamorphoses: Book I, lines 587-600\u00a0\n\nJupiter first saw her returning from her father\u2019s stream, and said \u2018Virgin, worthy of Jupiter himself, who will make some unknown man happy when you share his bed, while it is hot and the sun is at the highest point of its arc, find shade in the deep woods! (and he showed her the woods\u2019 shade). But if you are afraid to enter the wild beasts\u2019 lairs, you can go into the remote woods in safety, protected by a god, and not by any lesser god, but by the one who holds the sceptre of heaven in his mighty hand, and who hurls the flickering bolts of lightning. Do not fly from me!\u2019 She was already in flight. She had left behind Lerna\u2019s pastures, and the Lyrcean plain\u2019s wooded fields, when the god hid the wide earth in a covering of fog, caught the fleeing girl, and raped her.\u00a0\n\nUniversity of Virginia etext, translation from the Latin by Anthony S. Kline, CC BY-NC\n\nPlease note, while the video relates the most broadly accepted understanding of the provenance of the painting\u00a0Jupiter and Io, little is certain, and competing theories do exist.\n", "slug": "correggio-jupiter-and-io", "kind": "Video", "video_id": "hrBMFNvvOBI", "keywords": "Correggio, Zeus, Jupiter, Io, Ganymede, Metamorphoses, Ovid, Mythology, myth, love, Gonzaga, Federico II, Mantua, Charles V, Italy, Parma, Italian, Renaissance, painting, Leda, Swan, Danae", "youtube_id": "hrBMFNvvOBI", "readable_id": "correggio-jupiter-and-io"}, "IVHD9wGlbho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IVHD9wGlbho.mp4/IVHD9wGlbho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IVHD9wGlbho.mp4/IVHD9wGlbho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IVHD9wGlbho.m3u8/IVHD9wGlbho.m3u8"}, "path": "khan/science/biology/her/tree-of-life/human-prehistory-101-part-3-agriculture-rocks-our-world/", "duration": 421, "id": "IVHD9wGlbho", "title": "Human prehistory 101 part 3: Agriculture rocks our world", "format": "mp4", "description": "", "slug": "human-prehistory-101-part-3-agriculture-rocks-our-world", "kind": "Video", "video_id": "IVHD9wGlbho", "keywords": "Khan, prehistory, part3", "youtube_id": "IVHD9wGlbho", "readable_id": "human-prehistory-101-part-3-agriculture-rocks-our-world"}, "O1N2rENXq_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O1N2rENXq_Y.mp4/O1N2rENXq_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O1N2rENXq_Y.mp4/O1N2rENXq_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O1N2rENXq_Y.m3u8/O1N2rENXq_Y.m3u8"}, "duration": 980, "id": "O1N2rENXq_Y", "title": "Role of phagocytes in innate or nonspecific immunity", "format": "mp4", "description": "Role of phagocytes in innate or nonspecific immunity. Neutrophils, macrophages, and dendritic cells. MHC II.", "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/role-of-phagocytes-in-innate-or-nonspecific-immunity/", "slug": "role-of-phagocytes-in-innate-or-nonspecific-immunity", "kind": "Video", "video_id": "O1N2rENXq_Y", "keywords": "immunology, phagocyte, neutrophil, macrophage, dendritic", "youtube_id": "O1N2rENXq_Y", "readable_id": "role-of-phagocytes-in-innate-or-nonspecific-immunity"}, "0emD1AmfdjY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0emD1AmfdjY.mp4/0emD1AmfdjY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0emD1AmfdjY.mp4/0emD1AmfdjY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0emD1AmfdjY.m3u8/0emD1AmfdjY.m3u8"}, "duration": 491, "id": "0emD1AmfdjY", "title": "Cell membrane proteins", "format": "mp4", "description": "Learn about the different types of proteins that exist on the cell membrane. By William Tsai. ", "path": "khan/test-prep/mcat/cells/cell-membrane-overview/cell-membrane-proteins/", "slug": "cell-membrane-proteins", "kind": "Video", "video_id": "0emD1AmfdjY", "keywords": "", "youtube_id": "0emD1AmfdjY", "readable_id": "cell-membrane-proteins"}, "KgoXx_58QyQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KgoXx_58QyQ.mp4/KgoXx_58QyQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KgoXx_58QyQ.mp4/KgoXx_58QyQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KgoXx_58QyQ.m3u8/KgoXx_58QyQ.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/unit_conversion/solving-application-problems-involving-units-of-volume/", "duration": 209, "id": "KgoXx_58QyQ", "title": "Unit measurement word problem: volume (US customary)", "format": "mp4", "description": "Pints or gallons? Gallons or quarts? Confused? You won't be for long. This unit measurement word problem gets us thinking about moving between these units of volume.", "slug": "solving-application-problems-involving-units-of-volume", "kind": "Video", "video_id": "KgoXx_58QyQ", "keywords": "U06_L1_T3_we3, Solving, application, problems, involving, units, of, volume, CC_3_MD_2, CC_4_MD_1, CC_4_MD_2, CC_5_MD_1, CC_5_MD_3, CC_5_MD_5, CC_5_MD_5_c, CC_6_RP_3_d, CC_7_G_6", "youtube_id": "KgoXx_58QyQ", "readable_id": "solving-application-problems-involving-units-of-volume"}, "vrmKqH8d1RM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vrmKqH8d1RM.mp4/vrmKqH8d1RM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vrmKqH8d1RM.mp4/vrmKqH8d1RM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vrmKqH8d1RM.m3u8/vrmKqH8d1RM.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/somatosensory-tracts/", "duration": 427, "id": "vrmKqH8d1RM", "title": "Somatosensory tracts", "format": "mp4", "description": "", "slug": "somatosensory-tracts", "kind": "Video", "video_id": "vrmKqH8d1RM", "keywords": "MCAT", "youtube_id": "vrmKqH8d1RM", "readable_id": "somatosensory-tracts"}, "X1h5kr55SZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X1h5kr55SZg.mp4/X1h5kr55SZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X1h5kr55SZg.mp4/X1h5kr55SZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X1h5kr55SZg.m3u8/X1h5kr55SZg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pneumonia/lung-abscess/", "duration": 368, "id": "X1h5kr55SZg", "title": "Pulmonary abscess", "format": "mp4", "description": "Pulmonary abscesses occur when part of the lung tissue dies (caused by damage or infection) and gets trapped in a layer of hard tissue in the lung. Learn what causes abscesses, how they are diagnosed, and how health professionals treat them.", "slug": "lung-abscess", "kind": "Video", "video_id": "X1h5kr55SZg", "keywords": "", "youtube_id": "X1h5kr55SZg", "readable_id": "lung-abscess"}, "j511hg7Hlbg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j511hg7Hlbg.mp4/j511hg7Hlbg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j511hg7Hlbg.mp4/j511hg7Hlbg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j511hg7Hlbg.m3u8/j511hg7Hlbg.m3u8"}, "duration": 616, "id": "j511hg7Hlbg", "title": "Integrating factors 1", "format": "mp4", "description": "Using an integrating factor to make a differential equation exact", "path": "khan/math/differential-equations/first-order-differential-equations/exact-equations/integrating-factors-1/", "slug": "integrating-factors-1", "kind": "Video", "video_id": "j511hg7Hlbg", "keywords": "integrating, factor, exact, differential, equation", "youtube_id": "j511hg7Hlbg", "readable_id": "integrating-factors-1"}, "JEXhbd0JOWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JEXhbd0JOWk.mp4/JEXhbd0JOWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JEXhbd0JOWk.mp4/JEXhbd0JOWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JEXhbd0JOWk.m3u8/JEXhbd0JOWk.m3u8"}, "duration": 588, "id": "JEXhbd0JOWk", "title": "Bumper switches", "format": "mp4", "description": "In this video we create and wire Bit-zee's bumper switches", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-bumper-switches/", "slug": "bit-zee-s-bumper-switches", "kind": "Video", "video_id": "JEXhbd0JOWk", "keywords": "bit-zee, bumper switches, arduino, hack, make, diy", "youtube_id": "JEXhbd0JOWk", "readable_id": "bit-zee-s-bumper-switches"}, "2EciWH-1ya4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2EciWH-1ya4.mp4/2EciWH-1ya4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2EciWH-1ya4.mp4/2EciWH-1ya4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2EciWH-1ya4.m3u8/2EciWH-1ya4.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/gothic1/birth-of-the-gothic-abbot-suger-and-the-ambulatory-in-the-basilica-of-st-denis-1140-44/", "duration": 318, "id": "2EciWH-1ya4", "title": "Birth of the Gothic: Abbot Suger and the ambulatory at St. Denis", "format": "mp4", "description": "Ambulatory, Basilica of Saint Denis, Paris, 1140-44.\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "birth-of-the-gothic-abbot-suger-and-the-ambulatory-in-the-basilica-of-st-denis-1140-44", "kind": "Video", "video_id": "2EciWH-1ya4", "keywords": "Smarthistory, Art History, Khan Academy, Abbot Suger, Saint Denis, Paris, Gothic, Architecture", "youtube_id": "2EciWH-1ya4", "readable_id": "birth-of-the-gothic-abbot-suger-and-the-ambulatory-in-the-basilica-of-st-denis-1140-44"}, "3c7kv8SkxTs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3c7kv8SkxTs.mp4/3c7kv8SkxTs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3c7kv8SkxTs.mp4/3c7kv8SkxTs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3c7kv8SkxTs.m3u8/3c7kv8SkxTs.m3u8"}, "duration": 252, "id": "3c7kv8SkxTs", "title": "A Renaissance cabinet rediscovered", "format": "mp4", "description": "A cabinet was believed to be a fake made in the 1800s. Through scientific, visual, and archival analysis, scholars proved it was made in 1580 in Burgundy. Love art? Follow us on Google+", "path": "renaissance-cabinet-rediscovered/", "slug": "renaissance-cabinet-rediscovered", "kind": "Video", "video_id": "3c7kv8SkxTs", "keywords": "", "youtube_id": "3c7kv8SkxTs", "readable_id": "renaissance-cabinet-rediscovered"}, "1CMDS4-PKKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1CMDS4-PKKQ.mp4/1CMDS4-PKKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1CMDS4-PKKQ.mp4/1CMDS4-PKKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1CMDS4-PKKQ.m3u8/1CMDS4-PKKQ.m3u8"}, "duration": 671, "id": "1CMDS4-PKKQ", "title": "Partial derivatives", "format": "mp4", "description": "Introduction to partial derivatives.", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/partial_derivatives/partial-derivatives/", "slug": "partial-derivatives", "kind": "Video", "video_id": "1CMDS4-PKKQ", "keywords": "partial, derivative", "youtube_id": "1CMDS4-PKKQ", "readable_id": "partial-derivatives"}, "OQpFFiLdE0E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OQpFFiLdE0E.mp4/OQpFFiLdE0E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OQpFFiLdE0E.mp4/OQpFFiLdE0E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OQpFFiLdE0E.m3u8/OQpFFiLdE0E.m3u8"}, "duration": 940, "id": "OQpFFiLdE0E", "title": "Action potentials in pacemaker cells", "format": "mp4", "description": "Find out how the pacemaker cells use the movement of sodium, calcium, and potassium to get your heart beating! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/action-potentials-in-pacemaker-cells/", "slug": "action-potentials-in-pacemaker-cells", "kind": "Video", "video_id": "OQpFFiLdE0E", "keywords": "", "youtube_id": "OQpFFiLdE0E", "readable_id": "action-potentials-in-pacemaker-cells"}, "cK1egPBjJXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cK1egPBjJXE.mp4/cK1egPBjJXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cK1egPBjJXE.mp4/cK1egPBjJXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cK1egPBjJXE.m3u8/cK1egPBjJXE.m3u8"}, "duration": 106, "id": "cK1egPBjJXE", "title": "Orders of magnitude exercise example 1", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/exponents-radicals/orders-of-magnitude/orders-of-magnitude-exercise-example-1/", "slug": "orders-of-magnitude-exercise-example-1", "kind": "Video", "video_id": "cK1egPBjJXE", "keywords": "", "youtube_id": "cK1egPBjJXE", "readable_id": "orders-of-magnitude-exercise-example-1"}, "aW0blf6lWQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aW0blf6lWQc.mp4/aW0blf6lWQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aW0blf6lWQc.mp4/aW0blf6lWQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aW0blf6lWQc.m3u8/aW0blf6lWQc.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/egypt-art/new-kingdom/fragment/", "duration": 164, "id": "aW0blf6lWQc", "title": "\"Fragment\" with Nicholas Reeves", "format": "mp4", "description": "Met curator Nicholas Reeves on fragmented history in Head of Tutankhamun from the Amarna Period of Egypt\u2019s New Kingdom.\n\nThis head is a fragment from a statue group that represented the god Amun seated on a throne with the young king Tutankhamun standing or kneeling in front of him. The king's figure was considerably smaller than that of the god, indicating his subordinate status in the presence of the deity. All that remains of Amun is his right hand, which touches the back of the king's crown in a gesture that signifies Tutankhamun's investiture as king. During coronation rituals, various types of crowns were put on the king's head. The type represented here\u2014probably a leather helmet with metal disks sewn onto it\u2014was generally painted blue, and is commonly called the \"blue crown.\" The ancient name was khepresh.\n\nStatue groups showing a king together with gods had been created since the Old Kingdom, and formal groups relating to the pharaoh's coronation were dedicated at Karnak by Hatshepsut and other rulers of Dynasty 18. The Metropolitan's head of Tutankhamun with the hand of Amun is special because of the intimacy with which the subject is treated. The face of the king expresses a touching youthful earnestness, and the hand of the god is raised toward his crown with gentle care.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "slug": "fragment", "kind": "Video", "video_id": "aW0blf6lWQc", "keywords": "authority, death, politics, sculpture, stone, youth, Africa", "youtube_id": "aW0blf6lWQc", "readable_id": "fragment"}, "NJsLHcL3Bvs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NJsLHcL3Bvs.mp4/NJsLHcL3Bvs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NJsLHcL3Bvs.mp4/NJsLHcL3Bvs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NJsLHcL3Bvs.m3u8/NJsLHcL3Bvs.m3u8"}, "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/aam-stupa/", "duration": 270, "id": "NJsLHcL3Bvs", "title": "The stupa", "format": "mp4", "description": "A short documentary on the stupa, a hemispherical mound that represents the burial mound of the Buddha. Learn more about the stupa on\u00a0education.asianart.org.", "slug": "aam-stupa", "kind": "Video", "video_id": "NJsLHcL3Bvs", "keywords": "", "youtube_id": "NJsLHcL3Bvs", "readable_id": "aam-stupa"}, "CIoPn6BnLNM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CIoPn6BnLNM.mp4/CIoPn6BnLNM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CIoPn6BnLNM.mp4/CIoPn6BnLNM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CIoPn6BnLNM.m3u8/CIoPn6BnLNM.m3u8"}, "duration": 316, "id": "CIoPn6BnLNM", "title": "Patterns in multiplication tables practice", "format": "mp4", "description": "Read a multiplication table, and fill in the missing pieces.", "path": "patterns-in-multiplication-tables-practice/", "slug": "patterns-in-multiplication-tables-practice", "kind": "Video", "video_id": "CIoPn6BnLNM", "keywords": "", "youtube_id": "CIoPn6BnLNM", "readable_id": "patterns-in-multiplication-tables-practice"}, "-Bykx5cBKMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-Bykx5cBKMI.mp4/-Bykx5cBKMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-Bykx5cBKMI.mp4/-Bykx5cBKMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-Bykx5cBKMI.m3u8/-Bykx5cBKMI.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/paul-cezanne-approach-watercolor/", "duration": 164, "id": "-Bykx5cBKMI", "title": "Paul C\u00e9zanne's approach to watercolor", "format": "mp4", "description": "Learn how watercolors are created and how Paul C\u00e9zanne applied his unique approach to the medium by using pencil lines as an active part of composition, as exemplified by his Still Life. Love art? Follow us on Google+\u00a0at http://bit.ly/gettygoogleplus", "slug": "paul-cezanne-approach-watercolor", "kind": "Video", "video_id": "-Bykx5cBKMI", "keywords": "", "youtube_id": "-Bykx5cBKMI", "readable_id": "paul-cezanne-approach-watercolor"}, "lfIHzumEghQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lfIHzumEghQ.mp4/lfIHzumEghQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lfIHzumEghQ.mp4/lfIHzumEghQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lfIHzumEghQ.m3u8/lfIHzumEghQ.m3u8"}, "duration": 287, "id": "lfIHzumEghQ", "title": "The David Vases", "format": "mp4", "description": "The David Vases, 1351 (Yuan dynasty), porcelain, cobalt and clear glaze, 63.6 x 20.7 cm each, Jingdezhen, Jiangxi province, China (British Museum)\n\n\u00a0\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/david-vases/", "slug": "david-vases", "kind": "Video", "video_id": "lfIHzumEghQ", "keywords": "", "youtube_id": "lfIHzumEghQ", "readable_id": "david-vases"}, "Y2ed-g8Lpdc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y2ed-g8Lpdc.mp4/Y2ed-g8Lpdc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y2ed-g8Lpdc.mp4/Y2ed-g8Lpdc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y2ed-g8Lpdc.m3u8/Y2ed-g8Lpdc.m3u8"}, "duration": 662, "id": "Y2ed-g8Lpdc", "title": "Trigonometric system example", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 55 Trigonometric System", "path": "khan/test-prep/iit-jee-subject/iit-jee/trigonometric-system-example/", "slug": "trigonometric-system-example", "kind": "Video", "video_id": "Y2ed-g8Lpdc", "keywords": "2010, IIT, JEE, Paper, Problem, 55, Trigonometric, System", "youtube_id": "Y2ed-g8Lpdc", "readable_id": "trigonometric-system-example"}, "0tXxFPHzFFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0tXxFPHzFFI.mp4/0tXxFPHzFFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0tXxFPHzFFI.mp4/0tXxFPHzFFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0tXxFPHzFFI.m3u8/0tXxFPHzFFI.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/comparison-test/", "duration": 270, "id": "0tXxFPHzFFI", "title": "Comparison test", "format": "mp4", "description": "", "slug": "comparison-test", "kind": "Video", "video_id": "0tXxFPHzFFI", "keywords": "", "youtube_id": "0tXxFPHzFFI", "readable_id": "comparison-test"}, "K3XTsNlcDS8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K3XTsNlcDS8.mp4/K3XTsNlcDS8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K3XTsNlcDS8.mp4/K3XTsNlcDS8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K3XTsNlcDS8.m3u8/K3XTsNlcDS8.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/douard-manet-plum-brandy-c-1877/", "duration": 156, "id": "K3XTsNlcDS8", "title": "Manet, Plum Brandy", "format": "mp4", "description": "\u00c9douard Manet, Plum Brandy, c. 1877, oil on canvas (National Gallery of Art)\n\nSpeakers: Dr. Steven Zucker, Dr. Beth Harris", "slug": "douard-manet-plum-brandy-c-1877", "kind": "Video", "video_id": "K3XTsNlcDS8", "keywords": "smarthistory, Khan Academy, Manet, Impressionism, realism, Art History", "youtube_id": "K3XTsNlcDS8", "readable_id": "douard-manet-plum-brandy-c-1877"}, "BlBQBOb0OQ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BlBQBOb0OQ4.mp4/BlBQBOb0OQ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BlBQBOb0OQ4.mp4/BlBQBOb0OQ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BlBQBOb0OQ4.m3u8/BlBQBOb0OQ4.m3u8"}, "duration": 605, "id": "BlBQBOb0OQ4", "title": "Reactivity of aldehydes and ketones", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/reactivity-of-aldehydes-and-ketones/", "slug": "reactivity-of-aldehydes-and-ketones", "kind": "Video", "video_id": "BlBQBOb0OQ4", "keywords": "", "youtube_id": "BlBQBOb0OQ4", "readable_id": "reactivity-of-aldehydes-and-ketones"}, "RfzYl7Ll5Ug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RfzYl7Ll5Ug.mp4/RfzYl7Ll5Ug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RfzYl7Ll5Ug.mp4/RfzYl7Ll5Ug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RfzYl7Ll5Ug.m3u8/RfzYl7Ll5Ug.m3u8"}, "duration": 487, "id": "RfzYl7Ll5Ug", "title": "Energy & chemistry", "format": "mp4", "description": "Grumpy Professor Hank admits to being wrong about how everything is chemicals. But he now wants you to listen as he blows your mind with a new sweeping statement: everything (yes, really everything this time) is energy. What?! This week, Hank takes us on a quick tour of how thermodynamics is applied in chemistry using his toy trebuchet as an example, because he is a proud nerd.\nWriters: Kim Krieger & Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem17-energy-chemistry/", "slug": "chem17-energy-chemistry", "kind": "Video", "video_id": "RfzYl7Ll5Ug", "keywords": "", "youtube_id": "RfzYl7Ll5Ug", "readable_id": "chem17-energy-chemistry"}, "pRIELoITIHI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pRIELoITIHI.mp4/pRIELoITIHI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pRIELoITIHI.mp4/pRIELoITIHI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pRIELoITIHI.m3u8/pRIELoITIHI.m3u8"}, "duration": 929, "id": "pRIELoITIHI", "title": "CPI index", "format": "mp4", "description": "Discussion of inflation, the CPI index and owners' equivalent rent.", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/inflation-basics-tutorial/cpi-index/", "slug": "cpi-index", "kind": "Video", "video_id": "pRIELoITIHI", "keywords": "CPI, inflation, owner's, equivalent, rent, deflation", "youtube_id": "pRIELoITIHI", "readable_id": "cpi-index"}, "DR2DYe7PI74": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DR2DYe7PI74.mp4/DR2DYe7PI74.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DR2DYe7PI74.mp4/DR2DYe7PI74.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DR2DYe7PI74.m3u8/DR2DYe7PI74.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/converting-decimals-to-fractions-1-ex-1/", "duration": 116, "id": "DR2DYe7PI74", "title": "Converting decimals to fractions example 1", "format": "mp4", "description": "We're practicing how to convert a lonely decimal into a happy fraction.", "slug": "converting-decimals-to-fractions-1-ex-1", "kind": "Video", "video_id": "DR2DYe7PI74", "keywords": "Converting, decimals, to, fractions, 1, ex", "youtube_id": "DR2DYe7PI74", "readable_id": "converting-decimals-to-fractions-1-ex-1"}, "-sSDb_wZqKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-sSDb_wZqKQ.mp4/-sSDb_wZqKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-sSDb_wZqKQ.mp4/-sSDb_wZqKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-sSDb_wZqKQ.m3u8/-sSDb_wZqKQ.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/multistep-word-problems-tut/multistep-word-problems-example-3/", "duration": 128, "id": "-sSDb_wZqKQ", "title": "Multi-step word problem with addition, subtraction, and multiplication", "format": "mp4", "description": "Budgeting money is one of the most valuable math skills you'll learn. Practice with us as we figure out how much money is left after a cab fare.", "slug": "multistep-word-problems-example-3", "kind": "Video", "video_id": "-sSDb_wZqKQ", "keywords": "", "youtube_id": "-sSDb_wZqKQ", "readable_id": "multistep-word-problems-example-3"}, "NOsnG2DkGKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NOsnG2DkGKM.mp4/NOsnG2DkGKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NOsnG2DkGKM.mp4/NOsnG2DkGKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NOsnG2DkGKM.m3u8/NOsnG2DkGKM.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/comparing_linear_functions/comparing-features-of-functions-4/", "duration": 224, "id": "NOsnG2DkGKM", "title": "Comparing linear functions word problems 2", "format": "mp4", "description": "", "slug": "comparing-features-of-functions-4", "kind": "Video", "video_id": "NOsnG2DkGKM", "keywords": "", "youtube_id": "NOsnG2DkGKM", "readable_id": "comparing-features-of-functions-4"}, "_G9JwTwjulA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_G9JwTwjulA.mp4/_G9JwTwjulA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_G9JwTwjulA.mp4/_G9JwTwjulA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_G9JwTwjulA.m3u8/_G9JwTwjulA.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-3a/", "duration": 341, "id": "_G9JwTwjulA", "title": "2011 Calculus BC free response #3a", "format": "mp4", "description": "Arc length of a function", "slug": "2011-calculus-bc-free-response-3a", "kind": "Video", "video_id": "_G9JwTwjulA", "keywords": "AP, advanced, placement, exam", "youtube_id": "_G9JwTwjulA", "readable_id": "2011-calculus-bc-free-response-3a"}, "Q94h1W5H1Nk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q94h1W5H1Nk.mp4/Q94h1W5H1Nk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q94h1W5H1Nk.mp4/Q94h1W5H1Nk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q94h1W5H1Nk.m3u8/Q94h1W5H1Nk.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/warby-parker/warby-parker-2/", "duration": 141, "id": "Q94h1W5H1Nk", "title": "It was just mayhem", "format": "mp4", "description": "", "slug": "warby-parker-2", "kind": "Video", "video_id": "Q94h1W5H1Nk", "keywords": "", "youtube_id": "Q94h1W5H1Nk", "readable_id": "warby-parker-2"}, "PQyQadCqLAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PQyQadCqLAI.mp4/PQyQadCqLAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PQyQadCqLAI.mp4/PQyQadCqLAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PQyQadCqLAI.m3u8/PQyQadCqLAI.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/perceptual-organization/", "duration": 482, "id": "PQyQadCqLAI", "title": "Visual cues", "format": "mp4", "description": "", "slug": "perceptual-organization", "kind": "Video", "video_id": "PQyQadCqLAI", "keywords": "", "youtube_id": "PQyQadCqLAI", "readable_id": "perceptual-organization"}, "lNE8jSL7WQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lNE8jSL7WQk.mp4/lNE8jSL7WQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lNE8jSL7WQk.mp4/lNE8jSL7WQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lNE8jSL7WQk.m3u8/lNE8jSL7WQk.m3u8"}, "duration": 579, "id": "lNE8jSL7WQk", "title": "Growth Curves", "format": "mp4", "description": "Learn to read a growth curve which measures height and weight as we grow older!\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "growth-curves/", "slug": "growth-curves", "kind": "Video", "video_id": "lNE8jSL7WQk", "keywords": "", "youtube_id": "lNE8jSL7WQk", "readable_id": "growth-curves"}, "9REPnibO4IQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9REPnibO4IQ.mp4/9REPnibO4IQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9REPnibO4IQ.mp4/9REPnibO4IQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9REPnibO4IQ.m3u8/9REPnibO4IQ.m3u8"}, "duration": 751, "id": "9REPnibO4IQ", "title": "Half-life", "format": "mp4", "description": "Introduction to half-life", "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/half-life/", "slug": "half-life", "kind": "Video", "video_id": "9REPnibO4IQ", "keywords": "chemistry, half-life", "youtube_id": "9REPnibO4IQ", "readable_id": "half-life"}, "DAikW24_O0A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DAikW24_O0A.mp4/DAikW24_O0A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DAikW24_O0A.mp4/DAikW24_O0A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DAikW24_O0A.m3u8/DAikW24_O0A.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-word-probs-pre-alg/solving-percent-problems-3/", "duration": 326, "id": "DAikW24_O0A", "title": "Percent word problem example 5", "format": "mp4", "description": "In this example, you working with us to find the number that is expressed as a given percentage.We'll create a simple algebraic equation to solve!", "slug": "solving-percent-problems-3", "kind": "Video", "video_id": "DAikW24_O0A", "keywords": "U05_L2_T1_we3, Solving, Percent, Problems, CC_6_RP_3_c", "youtube_id": "DAikW24_O0A", "readable_id": "solving-percent-problems-3"}, "__zy-oOLPug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/__zy-oOLPug.mp4/__zy-oOLPug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/__zy-oOLPug.mp4/__zy-oOLPug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/__zy-oOLPug.m3u8/__zy-oOLPug.m3u8"}, "duration": 927, "id": "__zy-oOLPug", "title": "Introduction to kinetics", "format": "mp4", "description": "Kinetics, activation energy, activated complex and catalysts.", "path": "khan/science/chemistry/chem-kinetics/reaction-rates/introduction-to-kinetics/", "slug": "introduction-to-kinetics", "kind": "Video", "video_id": "__zy-oOLPug", "keywords": "chemistry, kinetics", "youtube_id": "__zy-oOLPug", "readable_id": "introduction-to-kinetics"}, "rp7T4IItbtM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rp7T4IItbtM.mp4/rp7T4IItbtM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rp7T4IItbtM.mp4/rp7T4IItbtM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rp7T4IItbtM.m3u8/rp7T4IItbtM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/types-of-immune-responses-innate-and-adaptive-humoral-vs-cell-mediated/", "duration": 487, "id": "rp7T4IItbtM", "title": "Types of immune responses: Innate and adaptive. humoral vs. cell-mediated", "format": "mp4", "description": "Overview of types of immune responses. Difference between innate and adaptive immunity. Differences between humoral adaptive immunity and cell-mediated adaptive immunity.", "slug": "types-of-immune-responses-innate-and-adaptive-humoral-vs-cell-mediated", "kind": "Video", "video_id": "rp7T4IItbtM", "keywords": "humoral, cell, mediated, nonspecific, immunity, adaptive", "youtube_id": "rp7T4IItbtM", "readable_id": "types-of-immune-responses-innate-and-adaptive-humoral-vs-cell-mediated"}, "kBVDSu7v8os": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kBVDSu7v8os.mp4/kBVDSu7v8os.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kBVDSu7v8os.mp4/kBVDSu7v8os.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kBVDSu7v8os.m3u8/kBVDSu7v8os.m3u8"}, "duration": 349, "id": "kBVDSu7v8os", "title": "Falling ladder related rates", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/rates_of_change/falling-ladder-related-rates/", "slug": "falling-ladder-related-rates", "kind": "Video", "video_id": "kBVDSu7v8os", "keywords": "", "youtube_id": "kBVDSu7v8os", "readable_id": "falling-ladder-related-rates"}, "jRrRqMJbHKc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jRrRqMJbHKc.mp4/jRrRqMJbHKc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jRrRqMJbHKc.mp4/jRrRqMJbHKc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jRrRqMJbHKc.m3u8/jRrRqMJbHKc.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-area-pythagorean-theorem/", "duration": 619, "id": "jRrRqMJbHKc", "title": "CA Geometry: Area, pythagorean theorem", "format": "mp4", "description": "26-30, area, circumference, pythagorean theorem", "slug": "ca-geometry-area-pythagorean-theorem", "kind": "Video", "video_id": "jRrRqMJbHKc", "keywords": "geometry, area, circumference, pythagorean, theorem", "youtube_id": "jRrRqMJbHKc", "readable_id": "ca-geometry-area-pythagorean-theorem"}, "vy_pvstdBhg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vy_pvstdBhg.mp4/vy_pvstdBhg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vy_pvstdBhg.mp4/vy_pvstdBhg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vy_pvstdBhg.m3u8/vy_pvstdBhg.m3u8"}, "duration": 876, "id": "vy_pvstdBhg", "title": "Mortgage interest rates", "format": "mp4", "description": "Understanding how mortgage interest rates are quoted", "path": "khan/economics-finance-domain/core-finance/housing/mortgages-tutorial/mortgage-interest-rates/", "slug": "mortgage-interest-rates", "kind": "Video", "video_id": "vy_pvstdBhg", "keywords": "finance, personal, economics", "youtube_id": "vy_pvstdBhg", "readable_id": "mortgage-interest-rates"}, "GVZUpOm3XUg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GVZUpOm3XUg.mp4/GVZUpOm3XUg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GVZUpOm3XUg.mp4/GVZUpOm3XUg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GVZUpOm3XUg.m3u8/GVZUpOm3XUg.m3u8"}, "duration": 386, "id": "GVZUpOm3XUg", "title": "Universal set and absolute complement", "format": "mp4", "description": "", "path": "khan/math/probability/independent-dependent-probability/basic_set_operations/universal-set-and-absolute-complement/", "slug": "universal-set-and-absolute-complement", "kind": "Video", "video_id": "GVZUpOm3XUg", "keywords": "", "youtube_id": "GVZUpOm3XUg", "readable_id": "universal-set-and-absolute-complement"}, "oajrmwCALmc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oajrmwCALmc.mp4/oajrmwCALmc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oajrmwCALmc.mp4/oajrmwCALmc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oajrmwCALmc.m3u8/oajrmwCALmc.m3u8"}, "duration": 195, "id": "oajrmwCALmc", "title": "Another example constructing box plot", "format": "mp4", "description": "Learn how to create a box plot. The data set used in this example has 14 data points.", "path": "another-example-constructing-box-plot/", "slug": "another-example-constructing-box-plot", "kind": "Video", "video_id": "oajrmwCALmc", "keywords": "", "youtube_id": "oajrmwCALmc", "readable_id": "another-example-constructing-box-plot"}, "RuEJzPQ_N10": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RuEJzPQ_N10.mp4/RuEJzPQ_N10.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RuEJzPQ_N10.mp4/RuEJzPQ_N10.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RuEJzPQ_N10.m3u8/RuEJzPQ_N10.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-6b/", "duration": 315, "id": "RuEJzPQ_N10", "title": "2011 Calculus AB free response #6b", "format": "mp4", "description": "Derivative of a piecewise-defined function", "slug": "2011-calculus-ab-free-response-6b", "kind": "Video", "video_id": "RuEJzPQ_N10", "keywords": "AP, advanced, placement, exam", "youtube_id": "RuEJzPQ_N10", "readable_id": "2011-calculus-ab-free-response-6b"}, "yEAxG_D1HDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yEAxG_D1HDw.mp4/yEAxG_D1HDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yEAxG_D1HDw.mp4/yEAxG_D1HDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yEAxG_D1HDw.m3u8/yEAxG_D1HDw.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/proof-a-log-b-log-b-a-log-a-log-b-log-a-b/", "duration": 477, "id": "yEAxG_D1HDw", "title": "Proof: a log b = log(b^a), log a - log b = log(a/b)", "format": "mp4", "description": "Proofs of the logarithm properties: A(log B) = log (B^A) and log A - log B = log (A/B)", "slug": "proof-a-log-b-log-b-a-log-a-log-b-log-a-b", "kind": "Video", "video_id": "yEAxG_D1HDw", "keywords": "logarithm, properties, proof, algebra, math, khan", "youtube_id": "yEAxG_D1HDw", "readable_id": "proof-a-log-b-log-b-a-log-a-log-b-log-a-b"}, "hIgnece9ins": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hIgnece9ins.mp4/hIgnece9ins.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hIgnece9ins.mp4/hIgnece9ins.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hIgnece9ins.m3u8/hIgnece9ins.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/concavity-inflection-points/calculus-graphing-using-derivatives/", "duration": 1231, "id": "hIgnece9ins", "title": "Graphing using derivatives", "format": "mp4", "description": "Graphing functions using derivatives.", "slug": "calculus-graphing-using-derivatives", "kind": "Video", "video_id": "hIgnece9ins", "keywords": "derivatives, calculus, graphing, inflection, critical, points, CC_39336_F-IF_7, CC_39336_F-IF_7_c", "youtube_id": "hIgnece9ins", "readable_id": "calculus-graphing-using-derivatives"}, "uWbZlJURkfA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uWbZlJURkfA.mp4/uWbZlJURkfA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uWbZlJURkfA.mp4/uWbZlJURkfA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uWbZlJURkfA.m3u8/uWbZlJURkfA.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/linear-alg-visualizing-a-projection-onto-a-plane/", "duration": 568, "id": "uWbZlJURkfA", "title": "Visualizing a projection onto a plane", "format": "mp4", "description": "Visualizing a projection onto a plane. Showing that the old and new definitions of projections aren't that different.", "slug": "linear-alg-visualizing-a-projection-onto-a-plane", "kind": "Video", "video_id": "uWbZlJURkfA", "keywords": "projection, subspace", "youtube_id": "uWbZlJURkfA", "readable_id": "linear-alg-visualizing-a-projection-onto-a-plane"}, "7_QPAdHILzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7_QPAdHILzw.mp4/7_QPAdHILzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7_QPAdHILzw.mp4/7_QPAdHILzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7_QPAdHILzw.m3u8/7_QPAdHILzw.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens/understanding-place-value-when-adding-ones/", "duration": 156, "id": "7_QPAdHILzw", "title": "Understanding place value when adding ones", "format": "mp4", "description": "Learn how to add 37 + 2 by thinking about place value.", "slug": "understanding-place-value-when-adding-ones", "kind": "Video", "video_id": "7_QPAdHILzw", "keywords": "", "youtube_id": "7_QPAdHILzw", "readable_id": "understanding-place-value-when-adding-ones"}, "g_snytB7iQ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g_snytB7iQ0.mp4/g_snytB7iQ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g_snytB7iQ0.mp4/g_snytB7iQ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g_snytB7iQ0.m3u8/g_snytB7iQ0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/solubility-equilibria-mcat/dissolution-and-precipitation/", "duration": 600, "id": "g_snytB7iQ0", "title": "Dissolution and precipitation", "format": "mp4", "description": "", "slug": "dissolution-and-precipitation", "kind": "Video", "video_id": "g_snytB7iQ0", "keywords": "", "youtube_id": "g_snytB7iQ0", "readable_id": "dissolution-and-precipitation"}, "jmfcACEGW-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jmfcACEGW-0.mp4/jmfcACEGW-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jmfcACEGW-0.mp4/jmfcACEGW-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jmfcACEGW-0.m3u8/jmfcACEGW-0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/biliary-tree/", "duration": 360, "id": "jmfcACEGW-0", "title": "Biliary tree", "format": "mp4", "description": "", "slug": "biliary-tree", "kind": "Video", "video_id": "jmfcACEGW-0", "keywords": "MCAT", "youtube_id": "jmfcACEGW-0", "readable_id": "biliary-tree"}, "TZ7d5kjAlQw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TZ7d5kjAlQw.mp4/TZ7d5kjAlQw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TZ7d5kjAlQw.mp4/TZ7d5kjAlQw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TZ7d5kjAlQw.m3u8/TZ7d5kjAlQw.m3u8"}, "duration": 309, "id": "TZ7d5kjAlQw", "title": "Using reserves to stabilize currency", "format": "mp4", "description": "How a central bank could use foreign currency reserves to keep its own currency from devaluing", "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/currency-reserves/using-reserves-to-stablize-currency/", "slug": "using-reserves-to-stablize-currency", "kind": "Video", "video_id": "TZ7d5kjAlQw", "keywords": "macroeconomics, currency, crisis", "youtube_id": "TZ7d5kjAlQw", "readable_id": "using-reserves-to-stablize-currency"}, "c2MuTvQM61Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c2MuTvQM61Y.mp4/c2MuTvQM61Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c2MuTvQM61Y.mp4/c2MuTvQM61Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c2MuTvQM61Y.m3u8/c2MuTvQM61Y.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/michelangelo-last-judgment-sistine-chapel-ceiling-1628-1629/", "duration": 1078, "id": "c2MuTvQM61Y", "title": "Michelangelo, Last Judgment (altar wall, Sistine Chapel)", "format": "mp4", "description": "Michelangelo, Last Judgment, Sistine Chapel Ceiling, fresco, 1534-1541 (Vatican City, Rome) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "michelangelo-last-judgment-sistine-chapel-ceiling-1628-1629", "kind": "Video", "video_id": "c2MuTvQM61Y", "keywords": "Sistine Chapel, Vatican, Renaissance art", "youtube_id": "c2MuTvQM61Y", "readable_id": "michelangelo-last-judgment-sistine-chapel-ceiling-1628-1629"}, "QM4f1vos6Vk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QM4f1vos6Vk.mp4/QM4f1vos6Vk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QM4f1vos6Vk.mp4/QM4f1vos6Vk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QM4f1vos6Vk.m3u8/QM4f1vos6Vk.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/pressure-in-the-left-heart-part-2/", "duration": 764, "id": "QM4f1vos6Vk", "title": "Pressure in the left heart - part 2", "format": "mp4", "description": "Watch the pressure in the left heart go up and down with every heart beat! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "pressure-in-the-left-heart-part-2", "kind": "Video", "video_id": "QM4f1vos6Vk", "keywords": "", "youtube_id": "QM4f1vos6Vk", "readable_id": "pressure-in-the-left-heart-part-2"}, "mxVWyzzMOXM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mxVWyzzMOXM.mp4/mxVWyzzMOXM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mxVWyzzMOXM.mp4/mxVWyzzMOXM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mxVWyzzMOXM.m3u8/mxVWyzzMOXM.m3u8"}, "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/corp-bankruptcy-tutorial/chapter-11-bankruptcy-restructuring/", "duration": 845, "id": "mxVWyzzMOXM", "title": "Chapter 11: Bankruptcy restructuring", "format": "mp4", "description": "Chapter 11: Restructuring through a bankruptcy", "slug": "chapter-11-bankruptcy-restructuring", "kind": "Video", "video_id": "mxVWyzzMOXM", "keywords": "chapter, 11, restructuring, bankruptcy", "youtube_id": "mxVWyzzMOXM", "readable_id": "chapter-11-bankruptcy-restructuring"}, "hmtJV49AWio": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hmtJV49AWio.mp4/hmtJV49AWio.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hmtJV49AWio.mp4/hmtJV49AWio.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hmtJV49AWio.m3u8/hmtJV49AWio.m3u8"}, "duration": 502, "id": "hmtJV49AWio", "title": "Arithmetic properties with negative numbers", "format": "mp4", "description": "In this video, we figure out whether or not some expressions are equivalent. To do this, we think about properties of multiplication and division.", "path": "arithmetic-properties-with-negative-numbers/", "slug": "arithmetic-properties-with-negative-numbers", "kind": "Video", "video_id": "hmtJV49AWio", "keywords": "", "youtube_id": "hmtJV49AWio", "readable_id": "arithmetic-properties-with-negative-numbers"}, "8CluknrLeys": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8CluknrLeys.mp4/8CluknrLeys.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8CluknrLeys.mp4/8CluknrLeys.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8CluknrLeys.m3u8/8CluknrLeys.m3u8"}, "duration": 232, "id": "8CluknrLeys", "title": "The fundamental theorem of arithmetic", "format": "mp4", "description": "Independent realization from an ancestor's perspective", "path": "khan/computing/computer-science/cryptography/modern-crypt/the-fundamental-theorem-of-arithmetic-1/", "slug": "the-fundamental-theorem-of-arithmetic-1", "kind": "Video", "video_id": "8CluknrLeys", "keywords": "prime numbers, factorization, number theory", "youtube_id": "8CluknrLeys", "readable_id": "the-fundamental-theorem-of-arithmetic-1"}, "9bwy85M1Zxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9bwy85M1Zxg.mp4/9bwy85M1Zxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9bwy85M1Zxg.mp4/9bwy85M1Zxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9bwy85M1Zxg.m3u8/9bwy85M1Zxg.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/part-2-parameterizing-the-surface/", "duration": 242, "id": "9bwy85M1Zxg", "title": "Stokes example part 2: Parameterizing the surface", "format": "mp4", "description": "", "slug": "part-2-parameterizing-the-surface", "kind": "Video", "video_id": "9bwy85M1Zxg", "keywords": "Part, 2, Parameterizing, the, Surface", "youtube_id": "9bwy85M1Zxg", "readable_id": "part-2-parameterizing-the-surface"}, "q9W0Uqi4Y58": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q9W0Uqi4Y58.mp4/q9W0Uqi4Y58.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q9W0Uqi4Y58.mp4/q9W0Uqi4Y58.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q9W0Uqi4Y58.m3u8/q9W0Uqi4Y58.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/biodiversity-hotspot-case-study-california/", "duration": 133, "id": "q9W0Uqi4Y58", "title": "Biodiversity hotspot case study: California", "format": "mp4", "description": "", "slug": "biodiversity-hotspot-case-study-california", "kind": "Video", "video_id": "q9W0Uqi4Y58", "keywords": "", "youtube_id": "q9W0Uqi4Y58", "readable_id": "biodiversity-hotspot-case-study-california"}, "yF4cvbAYjwI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yF4cvbAYjwI.mp4/yF4cvbAYjwI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yF4cvbAYjwI.mp4/yF4cvbAYjwI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yF4cvbAYjwI.m3u8/yF4cvbAYjwI.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/relative-speed-of-sound-in-solids-liquids-and-gases/", "duration": 199, "id": "yF4cvbAYjwI", "title": "Relative speed of sound in solids, liquids, and gases", "format": "mp4", "description": "", "slug": "relative-speed-of-sound-in-solids-liquids-and-gases", "kind": "Video", "video_id": "yF4cvbAYjwI", "keywords": "", "youtube_id": "yF4cvbAYjwI", "readable_id": "relative-speed-of-sound-in-solids-liquids-and-gases"}, "UQK7EAgRBpE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UQK7EAgRBpE.mp4/UQK7EAgRBpE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UQK7EAgRBpE.mp4/UQK7EAgRBpE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UQK7EAgRBpE.m3u8/UQK7EAgRBpE.m3u8"}, "duration": 234, "id": "UQK7EAgRBpE", "title": "Thermo can", "format": "mp4", "description": "This project shows how to power a boat with a candle.", "path": "khan/science/discoveries-projects/thermo-can/thermo-can/", "slug": "thermo-can", "kind": "Video", "video_id": "UQK7EAgRBpE", "keywords": "Thermodynamics, boat", "youtube_id": "UQK7EAgRBpE", "readable_id": "thermo-can"}, "zZX9jJqSlQs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zZX9jJqSlQs.mp4/zZX9jJqSlQs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zZX9jJqSlQs.mp4/zZX9jJqSlQs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zZX9jJqSlQs.m3u8/zZX9jJqSlQs.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system/gas-exchange/alveolar-gas-equation-part-1/", "duration": 479, "id": "zZX9jJqSlQs", "title": "Alveolar gas equation - part 1", "format": "mp4", "description": "Find out how to calculate exactly how much oxygen is deep down inside your lungs! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "alveolar-gas-equation-part-1", "kind": "Video", "video_id": "zZX9jJqSlQs", "keywords": "", "youtube_id": "zZX9jJqSlQs", "readable_id": "alveolar-gas-equation-part-1"}, "L7P3kBJ3scg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L7P3kBJ3scg.mp4/L7P3kBJ3scg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L7P3kBJ3scg.mp4/L7P3kBJ3scg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L7P3kBJ3scg.m3u8/L7P3kBJ3scg.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/ruisdael-haarlem/", "duration": 216, "id": "L7P3kBJ3scg", "title": "Ruisdael, View of Haarlem with Bleaching Grounds", "format": "mp4", "description": "Jacob van Ruisdael, View of Haarlem with Bleaching Grounds, c. 1670\u201375, oil on canvas, 55.5 x 62 cm (Mauritshuis, The Hague)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "ruisdael-haarlem", "kind": "Video", "video_id": "L7P3kBJ3scg", "keywords": "Haarlem, Ruisdael, Holland, Baroque, painting, landscape, linen", "youtube_id": "L7P3kBJ3scg", "readable_id": "ruisdael-haarlem"}, "223KLPnJCBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/223KLPnJCBI.mp4/223KLPnJCBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/223KLPnJCBI.mp4/223KLPnJCBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/223KLPnJCBI.m3u8/223KLPnJCBI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/common-ion-effect/", "duration": 799, "id": "223KLPnJCBI", "title": "Common ion effect", "format": "mp4", "description": "", "slug": "common-ion-effect", "kind": "Video", "video_id": "223KLPnJCBI", "keywords": "", "youtube_id": "223KLPnJCBI", "readable_id": "common-ion-effect"}, "AD3-v1oKjSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AD3-v1oKjSk.mp4/AD3-v1oKjSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AD3-v1oKjSk.mp4/AD3-v1oKjSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AD3-v1oKjSk.m3u8/AD3-v1oKjSk.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/enzymes/the-six-types-of-enzymes/", "duration": 424, "id": "AD3-v1oKjSk", "title": "Six types of enzymes", "format": "mp4", "description": "Enzymes are often named for their reactions, and you can often discern the function of an enzyme from its name. We will learn about six types of enzymes based on the type of reaction they catalyze.\u00a0By Ross Firestone.", "slug": "the-six-types-of-enzymes", "kind": "Video", "video_id": "AD3-v1oKjSk", "keywords": "", "youtube_id": "AD3-v1oKjSk", "readable_id": "the-six-types-of-enzymes"}, "By-ggTfeuJU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/By-ggTfeuJU.mp4/By-ggTfeuJU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/By-ggTfeuJU.mp4/By-ggTfeuJU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/By-ggTfeuJU.m3u8/By-ggTfeuJU.m3u8"}, "duration": 480, "id": "By-ggTfeuJU", "title": "Newton's third law of motion", "format": "mp4", "description": "Every action has an equal and opposite reaction", "path": "khan/test-prep/mcat/physical-processes/newtons-laws-and-equilibrium/newton-s-third-law-of-motion/", "slug": "newton-s-third-law-of-motion", "kind": "Video", "video_id": "By-ggTfeuJU", "keywords": "force, motion, physics", "youtube_id": "By-ggTfeuJU", "readable_id": "newton-s-third-law-of-motion"}, "tbL-SRTtgq0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tbL-SRTtgq0.mp4/tbL-SRTtgq0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tbL-SRTtgq0.mp4/tbL-SRTtgq0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tbL-SRTtgq0.m3u8/tbL-SRTtgq0.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-7/", "duration": 393, "id": "tbL-SRTtgq0", "title": "7 Figuring out angles", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-7", "kind": "Video", "video_id": "tbL-SRTtgq0", "keywords": "", "youtube_id": "tbL-SRTtgq0", "readable_id": "2013-sat-practice-6-7"}, "GN0P5RkQAow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GN0P5RkQAow.mp4/GN0P5RkQAow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GN0P5RkQAow.mp4/GN0P5RkQAow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GN0P5RkQAow.m3u8/GN0P5RkQAow.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/andrea-mantegna-camera-degli-sposi-frescos-in-the-ducal-palace-mantua-1465-74/", "duration": 390, "id": "GN0P5RkQAow", "title": "Mantegna, Camera degli Sposi", "format": "mp4", "description": "Andrea Mantegna, Camera degli Sposi (Frescos in the ducal palace, Mantua), 1465-74 Speakers: Beth Harris and David Drogin", "slug": "andrea-mantegna-camera-degli-sposi-frescos-in-the-ducal-palace-mantua-1465-74", "kind": "Video", "video_id": "GN0P5RkQAow", "keywords": "Renaissance, Mantua, Smarthistory, art, art history", "youtube_id": "GN0P5RkQAow", "readable_id": "andrea-mantegna-camera-degli-sposi-frescos-in-the-ducal-palace-mantua-1465-74"}, "Kh8HKAxdEyw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kh8HKAxdEyw.mp4/Kh8HKAxdEyw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kh8HKAxdEyw.mp4/Kh8HKAxdEyw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kh8HKAxdEyw.m3u8/Kh8HKAxdEyw.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/transformation-matrix/transforming-position-vector/", "duration": 283, "id": "Kh8HKAxdEyw", "title": "Transformation matrix for position vector", "format": "mp4", "description": "", "slug": "transforming-position-vector", "kind": "Video", "video_id": "Kh8HKAxdEyw", "keywords": "", "youtube_id": "Kh8HKAxdEyw", "readable_id": "transforming-position-vector"}, "T-dSx5f15U4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T-dSx5f15U4.mp4/T-dSx5f15U4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T-dSx5f15U4.mp4/T-dSx5f15U4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T-dSx5f15U4.m3u8/T-dSx5f15U4.m3u8"}, "duration": 320, "id": "T-dSx5f15U4", "title": "The Constitution and proportional representation", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss Article 3 of the Constitution and proportional representation.", "path": "proportional-representation/", "slug": "proportional-representation", "kind": "Video", "video_id": "T-dSx5f15U4", "keywords": "", "youtube_id": "T-dSx5f15U4", "readable_id": "proportional-representation"}, "Mci8Cuik_Gw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mci8Cuik_Gw.mp4/Mci8Cuik_Gw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mci8Cuik_Gw.mp4/Mci8Cuik_Gw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mci8Cuik_Gw.m3u8/Mci8Cuik_Gw.m3u8"}, "duration": 288, "id": "Mci8Cuik_Gw", "title": "Chain rule for derivative of 2^x", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-for-derivative-of-2-x/", "slug": "chain-rule-for-derivative-of-2-x", "kind": "Video", "video_id": "Mci8Cuik_Gw", "keywords": "", "youtube_id": "Mci8Cuik_Gw", "readable_id": "chain-rule-for-derivative-of-2-x"}, "tdEF5cQzWms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tdEF5cQzWms.mp4/tdEF5cQzWms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tdEF5cQzWms.mp4/tdEF5cQzWms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tdEF5cQzWms.m3u8/tdEF5cQzWms.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/breakthrough/", "duration": 181, "id": "tdEF5cQzWms", "title": "\"Breakthrough\" with Thomas P. Campbell", "format": "mp4", "description": "Met director Thomas P. Campbell on game changers in Bernard van Orley and Pieter de Pannemaker\u2019s The Last Supper.\n\nThis splendid Last Supper is part of a series of four tapestries illustrating the Passion of Christ. They were designed by Bernard van Orley, a leading artist in sixteenth-century Brussels, the preeminent center for tapestry manufacture in this period. The work exemplifies van Orley\u2019s integration of Northern traditions and Italian models to develop a new tapestry style. He combined the expressive emotion and penchant for detail found in Albrecht D\u00fcrer\u2019s Last Supper woodcut, which inspired the tapestry\u2019s compositional arrangement, with Raphael\u2019s monumental figures and spatial construction. Raphael\u2019s cartoons for the tapestry series Acts of the Apostles, commissioned for the Sistine Chapel and sent to Brussels to be woven, were significant models for van Orley and other Flemish artists, providing a paradigm of the grand, heroic narrative style of contemporary Roman art. In the Last Supper, populated by muscular, rhetorically gesturing figures engaged in a moment of high drama, van Orley fully realized tapestry's potential for emulating monumental painting.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit\u00a0Find an Educator Resource.\n", "slug": "breakthrough", "kind": "Video", "video_id": "tdEF5cQzWms", "keywords": "community, death, ingenuity, silk, textile, turmoil, wool, Europe", "youtube_id": "tdEF5cQzWms", "readable_id": "breakthrough"}, "dMSSqzJQ5Ow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dMSSqzJQ5Ow.mp4/dMSSqzJQ5Ow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dMSSqzJQ5Ow.mp4/dMSSqzJQ5Ow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dMSSqzJQ5Ow.m3u8/dMSSqzJQ5Ow.m3u8"}, "duration": 556, "id": "dMSSqzJQ5Ow", "title": "Diastereomers", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/diastereomers-1/", "slug": "diastereomers-1", "kind": "Video", "video_id": "dMSSqzJQ5Ow", "keywords": "", "youtube_id": "dMSSqzJQ5Ow", "readable_id": "diastereomers-1"}, "-Y3CbsxhlQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-Y3CbsxhlQE.mp4/-Y3CbsxhlQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-Y3CbsxhlQE.mp4/-Y3CbsxhlQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-Y3CbsxhlQE.m3u8/-Y3CbsxhlQE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/neurogenic-shock/", "duration": 499, "id": "-Y3CbsxhlQE", "title": "Neurogenic shock", "format": "mp4", "description": "", "slug": "neurogenic-shock", "kind": "Video", "video_id": "-Y3CbsxhlQE", "keywords": "", "youtube_id": "-Y3CbsxhlQE", "readable_id": "neurogenic-shock"}, "gs-OPF3KEGU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gs-OPF3KEGU.mp4/gs-OPF3KEGU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gs-OPF3KEGU.mp4/gs-OPF3KEGU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gs-OPF3KEGU.m3u8/gs-OPF3KEGU.m3u8"}, "duration": 293, "id": "gs-OPF3KEGU", "title": "Misleading line graphs", "format": "mp4", "description": "Misleading Line Graphs", "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/misleading-line-graphs/", "slug": "misleading-line-graphs", "kind": "Video", "video_id": "gs-OPF3KEGU", "keywords": "u08_l3_t1_we2, Misleading, Line, Graphs", "youtube_id": "gs-OPF3KEGU", "readable_id": "misleading-line-graphs"}, "eqKnx5Yk508": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eqKnx5Yk508.mp4/eqKnx5Yk508.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eqKnx5Yk508.mp4/eqKnx5Yk508.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eqKnx5Yk508.m3u8/eqKnx5Yk508.m3u8"}, "duration": 441, "id": "eqKnx5Yk508", "title": "U.S. customary units: fluid volume", "format": "mp4", "description": "Of all the US customary units of measurement, weight has the highest number of commonly-used units: teaspoon, tablespoon, fluid ounce, cup, pint, quart, and gallon. There's a chance that you'll come across a recipe that uses many (if not most) of these units, so pay attention.", "path": "us-customary-fluid-volume/", "slug": "us-customary-fluid-volume", "kind": "Video", "video_id": "eqKnx5Yk508", "keywords": "", "youtube_id": "eqKnx5Yk508", "readable_id": "us-customary-fluid-volume"}, "7QMoNY6FzvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7QMoNY6FzvM.mp4/7QMoNY6FzvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7QMoNY6FzvM.mp4/7QMoNY6FzvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7QMoNY6FzvM.m3u8/7QMoNY6FzvM.m3u8"}, "duration": 196, "id": "7QMoNY6FzvM", "title": "Graphing a parabola in vertex form", "format": "mp4", "description": "", "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/graphing-a-parabola-in-vertex-form/", "slug": "graphing-a-parabola-in-vertex-form", "kind": "Video", "video_id": "7QMoNY6FzvM", "keywords": "", "youtube_id": "7QMoNY6FzvM", "readable_id": "graphing-a-parabola-in-vertex-form"}, "jO4wOQQiVZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jO4wOQQiVZg.mp4/jO4wOQQiVZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jO4wOQQiVZg.mp4/jO4wOQQiVZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jO4wOQQiVZg.m3u8/jO4wOQQiVZg.m3u8"}, "duration": 177, "id": "jO4wOQQiVZg", "title": "Radical equivalent to rational exponents", "format": "mp4", "description": "Radical Equivalent to Rational Exponents", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/radical-equivalent-to-rational-exponents/", "slug": "radical-equivalent-to-rational-exponents", "kind": "Video", "video_id": "jO4wOQQiVZg", "keywords": "u16_l1_t3_we1, Radical, Equivalent, to, Rational, Exponents", "youtube_id": "jO4wOQQiVZg", "readable_id": "radical-equivalent-to-rational-exponents"}, "oqBHBO8cqLI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oqBHBO8cqLI.mp4/oqBHBO8cqLI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oqBHBO8cqLI.mp4/oqBHBO8cqLI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oqBHBO8cqLI.m3u8/oqBHBO8cqLI.m3u8"}, "path": "khan/science/physics/oscillatory-motion/harmonic-motion/harmonic-motion-part-3-no-calculus/", "duration": 584, "id": "oqBHBO8cqLI", "title": "Harmonic motion part 3 (no calculus)", "format": "mp4", "description": "Figuring out the period, frequency, and amplitude of the harmonic motion of a mass attached to a spring.", "slug": "harmonic-motion-part-3-no-calculus", "kind": "Video", "video_id": "oqBHBO8cqLI", "keywords": "harmonic, motion, period, frequency, trigonometry, physics, oscillatory", "youtube_id": "oqBHBO8cqLI", "readable_id": "harmonic-motion-part-3-no-calculus"}, "fGThIRpWEE4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fGThIRpWEE4.mp4/fGThIRpWEE4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fGThIRpWEE4.mp4/fGThIRpWEE4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fGThIRpWEE4.m3u8/fGThIRpWEE4.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/multiplication-of-polynomials/", "duration": 589, "id": "fGThIRpWEE4", "title": "Multiplying binomials and polynomials", "format": "mp4", "description": "Multiplying binomials", "slug": "multiplication-of-polynomials", "kind": "Video", "video_id": "fGThIRpWEE4", "keywords": "Multiplication, of, Polynomials, CC_39336_A-APR_1", "youtube_id": "fGThIRpWEE4", "readable_id": "multiplication-of-polynomials"}, "TdW3LdN5SJw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TdW3LdN5SJw.mp4/TdW3LdN5SJw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TdW3LdN5SJw.mp4/TdW3LdN5SJw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TdW3LdN5SJw.m3u8/TdW3LdN5SJw.m3u8"}, "duration": 188, "id": "TdW3LdN5SJw", "title": "Call writer payoff diagram", "format": "mp4", "description": "Call Writer Payoff Diagram", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/call-writer-payoff-diagram/", "slug": "call-writer-payoff-diagram", "kind": "Video", "video_id": "TdW3LdN5SJw", "keywords": "Call, Writer, Payoff, Diagram", "youtube_id": "TdW3LdN5SJw", "readable_id": "call-writer-payoff-diagram"}, "ALzFkqiTpvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ALzFkqiTpvM.mp4/ALzFkqiTpvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ALzFkqiTpvM.mp4/ALzFkqiTpvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ALzFkqiTpvM.m3u8/ALzFkqiTpvM.m3u8"}, "path": "khan/college-admissions/paying-for-college/loans/paying-back-your-loans/", "duration": 727, "id": "ALzFkqiTpvM", "title": "Paying back your loans", "format": "mp4", "description": "National Student Loan Data System\u00a0| Federal Loan Consolidation\u00a0| Federal Loan Deferment or Forbearance\u00a0| Federal Loan Repayment Estimator | Federal Loan Forgiveness", "slug": "paying-back-your-loans", "kind": "Video", "video_id": "ALzFkqiTpvM", "keywords": "", "youtube_id": "ALzFkqiTpvM", "readable_id": "paying-back-your-loans"}, "w23DzA68KPE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w23DzA68KPE.mp4/w23DzA68KPE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w23DzA68KPE.mp4/w23DzA68KPE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w23DzA68KPE.m3u8/w23DzA68KPE.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimals-on-number-line-pre-alg/positive-and-negative-decimals-on-a-number-line/", "duration": 75, "id": "w23DzA68KPE", "title": "Placing positive and negative decimals on a number line", "format": "mp4", "description": "These example exercises require us to interpret a number line in order to locate where our positive and negative decimals should be placed.", "slug": "positive-and-negative-decimals-on-a-number-line", "kind": "Video", "video_id": "w23DzA68KPE", "keywords": "", "youtube_id": "w23DzA68KPE", "readable_id": "positive-and-negative-decimals-on-a-number-line"}, "qQAhhithHa8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qQAhhithHa8.mp4/qQAhhithHa8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qQAhhithHa8.mp4/qQAhhithHa8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qQAhhithHa8.m3u8/qQAhhithHa8.m3u8"}, "duration": 629, "id": "qQAhhithHa8", "title": "Example of calculating a surface integral part 2", "format": "mp4", "description": "Example of calculating a surface integral part 2", "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/example-of-calculating-a-surface-integral-part-2/", "slug": "example-of-calculating-a-surface-integral-part-2", "kind": "Video", "video_id": "qQAhhithHa8", "keywords": "surface, integral", "youtube_id": "qQAhhithHa8", "readable_id": "example-of-calculating-a-surface-integral-part-2"}, "umvNQj-zmq4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/umvNQj-zmq4.mp4/umvNQj-zmq4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/umvNQj-zmq4.mp4/umvNQj-zmq4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/umvNQj-zmq4.m3u8/umvNQj-zmq4.m3u8"}, "duration": 437, "id": "umvNQj-zmq4", "title": "Are southern hemisphere seasons more severe?", "format": "mp4", "description": "Are Southern Hemisphere seasons more severe because of the eccentricity in Earth's orbit?", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic/are-southern-hemisphere-seasons-more-severe/", "slug": "are-southern-hemisphere-seasons-more-severe", "kind": "Video", "video_id": "umvNQj-zmq4", "keywords": "earth, ellipse, perihelion, aphelion, seasons, specific, heat", "youtube_id": "umvNQj-zmq4", "readable_id": "are-southern-hemisphere-seasons-more-severe"}, "X_PnRFAKbkg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X_PnRFAKbkg.mp4/X_PnRFAKbkg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X_PnRFAKbkg.mp4/X_PnRFAKbkg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X_PnRFAKbkg.m3u8/X_PnRFAKbkg.m3u8"}, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-tens/place-value-example/", "duration": 175, "id": "X_PnRFAKbkg", "title": "Place value example with 25", "format": "mp4", "description": "Learn to see 25 as 2 tens and 5 ones.", "slug": "place-value-example", "kind": "Video", "video_id": "X_PnRFAKbkg", "keywords": "", "youtube_id": "X_PnRFAKbkg", "readable_id": "place-value-example"}, "GZ6I3T1RAnQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GZ6I3T1RAnQ.mp4/GZ6I3T1RAnQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GZ6I3T1RAnQ.mp4/GZ6I3T1RAnQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GZ6I3T1RAnQ.m3u8/GZ6I3T1RAnQ.m3u8"}, "duration": 549, "id": "GZ6I3T1RAnQ", "title": "Inflammation", "format": "mp4", "description": "Dr. David Agus talks about inflammation (while Sal repeatedly misspells it with one \"m\")", "path": "khan/science/health-and-medicine/healthcare-misc/inflammation/", "slug": "inflammation", "kind": "Video", "video_id": "GZ6I3T1RAnQ", "keywords": "Inflammation", "youtube_id": "GZ6I3T1RAnQ", "readable_id": "inflammation"}, "yP5PWgbGImo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yP5PWgbGImo.mp4/yP5PWgbGImo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yP5PWgbGImo.mp4/yP5PWgbGImo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yP5PWgbGImo.m3u8/yP5PWgbGImo.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-learning-environments/sscc-blended-stationkippla/", "duration": 248, "id": "yP5PWgbGImo", "title": "Redesigning the school day at KIPP LA using a station rotation model", "format": "mp4", "description": "", "slug": "sscc-blended-stationkippla", "kind": "Video", "video_id": "yP5PWgbGImo", "keywords": "", "youtube_id": "yP5PWgbGImo", "readable_id": "sscc-blended-stationkippla"}, "gW8za1t2nFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gW8za1t2nFg.mp4/gW8za1t2nFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gW8za1t2nFg.mp4/gW8za1t2nFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gW8za1t2nFg.m3u8/gW8za1t2nFg.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-properties-ethers/ether-nomenclature/", "duration": 667, "id": "gW8za1t2nFg", "title": "Ether nomenclature", "format": "mp4", "description": "", "slug": "ether-nomenclature", "kind": "Video", "video_id": "gW8za1t2nFg", "keywords": "", "youtube_id": "gW8za1t2nFg", "readable_id": "ether-nomenclature"}, "GviCdNfeXw8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GviCdNfeXw8.mp4/GviCdNfeXw8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GviCdNfeXw8.mp4/GviCdNfeXw8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GviCdNfeXw8.m3u8/GviCdNfeXw8.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-9/", "duration": 603, "id": "GviCdNfeXw8", "title": "GMAT: Data sufficiency 9", "format": "mp4", "description": "42-46, pg. 281", "slug": "gmat-data-sufficiency-9", "kind": "Video", "video_id": "GviCdNfeXw8", "keywords": "gmat, data, sufficiency", "youtube_id": "GviCdNfeXw8", "readable_id": "gmat-data-sufficiency-9"}, "w70af5Ou70M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w70af5Ou70M.mp4/w70af5Ou70M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w70af5Ou70M.mp4/w70af5Ou70M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w70af5Ou70M.m3u8/w70af5Ou70M.m3u8"}, "duration": 419, "id": "w70af5Ou70M", "title": "Epsilon-delta definition of limits", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/epsilon_delta/epsilon-delta-definition-of-limits/", "slug": "epsilon-delta-definition-of-limits", "kind": "Video", "video_id": "w70af5Ou70M", "keywords": "", "youtube_id": "w70af5Ou70M", "readable_id": "epsilon-delta-definition-of-limits"}, "bUw5AKm1Frw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bUw5AKm1Frw.mp4/bUw5AKm1Frw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bUw5AKm1Frw.mp4/bUw5AKm1Frw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bUw5AKm1Frw.m3u8/bUw5AKm1Frw.m3u8"}, "duration": 206, "id": "bUw5AKm1Frw", "title": "\"String Theory\" with Jayson Kerr Dobney", "format": "mp4", "description": "Met curator Jayson Kerr Dobney on war and music in Hermann Hauser\u2019s Guitar.\n\nBased closely on Spanish models, this guitar replaced the Ram\u00edrez guitar\u00a0as Andr\u00e9s Segovia's principal concert instrument in 1937. He used it in concerts and for recording until 1962. It is said that Hauser brought instruments to Segovia for twelve successive years but that none pleased the virtuoso until he tried this one. The two-piece back and sides are of Brazilian rosewood, the two-piece top is of spruce.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "path": "string-theory/", "slug": "string-theory", "kind": "Video", "video_id": "bUw5AKm1Frw", "keywords": "music, musical instrument, politics, wood, Europe", "youtube_id": "bUw5AKm1Frw", "readable_id": "string-theory"}, "u8JFdwmBvvQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u8JFdwmBvvQ.mp4/u8JFdwmBvvQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u8JFdwmBvvQ.mp4/u8JFdwmBvvQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u8JFdwmBvvQ.m3u8/u8JFdwmBvvQ.m3u8"}, "duration": 146, "id": "u8JFdwmBvvQ", "title": "Area of a sector given a central angle", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/circles/area-of-a-sector-given-a-central-angle/", "slug": "area-of-a-sector-given-a-central-angle", "kind": "Video", "video_id": "u8JFdwmBvvQ", "keywords": "", "youtube_id": "u8JFdwmBvvQ", "readable_id": "area-of-a-sector-given-a-central-angle"}, "kQCS1AhAnMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kQCS1AhAnMI.mp4/kQCS1AhAnMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kQCS1AhAnMI.mp4/kQCS1AhAnMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kQCS1AhAnMI.m3u8/kQCS1AhAnMI.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/formal-charge-resonance/resonance-localized-delocalized/", "duration": 719, "id": "kQCS1AhAnMI", "title": "Resonance structures and hybridization", "format": "mp4", "description": "", "slug": "resonance-localized-delocalized", "kind": "Video", "video_id": "kQCS1AhAnMI", "keywords": "", "youtube_id": "kQCS1AhAnMI", "readable_id": "resonance-localized-delocalized"}, "GiB9Mkgkrek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GiB9Mkgkrek.mp4/GiB9Mkgkrek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GiB9Mkgkrek.mp4/GiB9Mkgkrek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GiB9Mkgkrek.m3u8/GiB9Mkgkrek.m3u8"}, "duration": 170, "id": "GiB9Mkgkrek", "title": "Calculating real return in last year dollars", "format": "mp4", "description": "Calculating real return in last year dollars", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/real-nominal-return-tut/calculating-real-return-in-last-year-dollars/", "slug": "calculating-real-return-in-last-year-dollars", "kind": "Video", "video_id": "GiB9Mkgkrek", "keywords": "finance, inflation, discount, rate, real, nominal, return", "youtube_id": "GiB9Mkgkrek", "readable_id": "calculating-real-return-in-last-year-dollars"}, "Kf9KhwryQNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kf9KhwryQNE.mp4/Kf9KhwryQNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kf9KhwryQNE.mp4/Kf9KhwryQNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kf9KhwryQNE.m3u8/Kf9KhwryQNE.m3u8"}, "duration": 734, "id": "Kf9KhwryQNE", "title": "Marginal utility", "format": "mp4", "description": "Marginal utility and marginal benefit. How you would spend $5 on chocolate and fruit", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial/marginal-utility/", "slug": "marginal-utility", "kind": "Video", "video_id": "Kf9KhwryQNE", "keywords": "microeconomics, utility", "youtube_id": "Kf9KhwryQNE", "readable_id": "marginal-utility"}, "LcyEXlCIkmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LcyEXlCIkmA.mp4/LcyEXlCIkmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LcyEXlCIkmA.mp4/LcyEXlCIkmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LcyEXlCIkmA.m3u8/LcyEXlCIkmA.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/arterial-stiffness/compliance-increased-blood-flow/", "duration": 414, "id": "LcyEXlCIkmA", "title": "Compliance - increased blood flow", "format": "mp4", "description": "Learn how compliant arteries allows for a \"Constant Pressure System\" like a modern water gun! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "compliance-increased-blood-flow", "kind": "Video", "video_id": "LcyEXlCIkmA", "keywords": "", "youtube_id": "LcyEXlCIkmA", "readable_id": "compliance-increased-blood-flow"}, "Q1vMNyIP4Us": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q1vMNyIP4Us.mp4/Q1vMNyIP4Us.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q1vMNyIP4Us.mp4/Q1vMNyIP4Us.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q1vMNyIP4Us.m3u8/Q1vMNyIP4Us.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/writing-expressions-1/", "duration": 98, "id": "Q1vMNyIP4Us", "title": "Writing simple algebraic expressions", "format": "mp4", "description": "Can you write the algebraic expressions that represent what these statements are saying? Sure you can! We'll help you.", "slug": "writing-expressions-1", "kind": "Video", "video_id": "Q1vMNyIP4Us", "keywords": "", "youtube_id": "Q1vMNyIP4Us", "readable_id": "writing-expressions-1"}, "bL7yQRbYJCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bL7yQRbYJCo.mp4/bL7yQRbYJCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bL7yQRbYJCo.mp4/bL7yQRbYJCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bL7yQRbYJCo.m3u8/bL7yQRbYJCo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/how-do-you-know-if-someone-is-having-a-stroke-think-fast/", "duration": 273, "id": "bL7yQRbYJCo", "title": "How do you know if someone is having a stroke: Think FAST!", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "how-do-you-know-if-someone-is-having-a-stroke-think-fast", "kind": "Video", "video_id": "bL7yQRbYJCo", "keywords": "", "youtube_id": "bL7yQRbYJCo", "readable_id": "how-do-you-know-if-someone-is-having-a-stroke-think-fast"}, "tOd2T72eJME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tOd2T72eJME.mp4/tOd2T72eJME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tOd2T72eJME.mp4/tOd2T72eJME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tOd2T72eJME.m3u8/tOd2T72eJME.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/ratio-word-problem-exercise-example-2/", "duration": 72, "id": "tOd2T72eJME", "title": "Ratio word problem: centimeters to kilometers", "format": "mp4", "description": "Let's solve this word problem using what we know about ratios so far.", "slug": "ratio-word-problem-exercise-example-2", "kind": "Video", "video_id": "tOd2T72eJME", "keywords": "", "youtube_id": "tOd2T72eJME", "readable_id": "ratio-word-problem-exercise-example-2"}, "Rm6UdfRs3gw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rm6UdfRs3gw.mp4/Rm6UdfRs3gw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rm6UdfRs3gw.mp4/Rm6UdfRs3gw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rm6UdfRs3gw.m3u8/Rm6UdfRs3gw.m3u8"}, "duration": 416, "id": "Rm6UdfRs3gw", "title": "Introduction to compound interest", "format": "mp4", "description": "Introduction to compound interest", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/compound-interest-tutorial/introduction-to-compound-interest/", "slug": "introduction-to-compound-interest", "kind": "Video", "video_id": "Rm6UdfRs3gw", "keywords": "compound, interest", "youtube_id": "Rm6UdfRs3gw", "readable_id": "introduction-to-compound-interest"}, "0imeUgSxR10": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0imeUgSxR10.mp4/0imeUgSxR10.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0imeUgSxR10.mp4/0imeUgSxR10.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0imeUgSxR10.m3u8/0imeUgSxR10.m3u8"}, "duration": 645, "id": "0imeUgSxR10", "title": "IIT JEE circle hyperbola common tangent part 2", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 45 Circle Hyperbola Common Tangent Part 2", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-circle-hyperbola-common-tangent-part-2/", "slug": "iit-jee-circle-hyperbola-common-tangent-part-2", "kind": "Video", "video_id": "0imeUgSxR10", "keywords": "2010, IIT, JEE, Paper, Problem, 45, Circle, Hyperbola, Common, Tangent, Part", "youtube_id": "0imeUgSxR10", "readable_id": "iit-jee-circle-hyperbola-common-tangent-part-2"}, "9YRw0Yk7N8c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9YRw0Yk7N8c.mp4/9YRw0Yk7N8c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9YRw0Yk7N8c.mp4/9YRw0Yk7N8c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9YRw0Yk7N8c.m3u8/9YRw0Yk7N8c.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/time-space-tradeoff/", "duration": 394, "id": "9YRw0Yk7N8c", "title": "Time space tradeoff", "format": "mp4", "description": "what is our memory limit? How can save time at the expense of space?", "slug": "time-space-tradeoff", "kind": "Video", "video_id": "9YRw0Yk7N8c", "keywords": "time space tradeoff, memory limit", "youtube_id": "9YRw0Yk7N8c", "readable_id": "time-space-tradeoff"}, "XCdvo5fv-W0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XCdvo5fv-W0.mp4/XCdvo5fv-W0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XCdvo5fv-W0.mp4/XCdvo5fv-W0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XCdvo5fv-W0.m3u8/XCdvo5fv-W0.m3u8"}, "duration": 496, "id": "XCdvo5fv-W0", "title": "Three types of flu", "format": "mp4", "description": "Learn about the three types of influenza virus (Type A, Type B, and Type C) and what makes them differ from one another. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/three-types-of-flu/", "slug": "three-types-of-flu", "kind": "Video", "video_id": "XCdvo5fv-W0", "keywords": "", "youtube_id": "XCdvo5fv-W0", "readable_id": "three-types-of-flu"}, "jHN0BfowL7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jHN0BfowL7s.mp4/jHN0BfowL7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jHN0BfowL7s.mp4/jHN0BfowL7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jHN0BfowL7s.m3u8/jHN0BfowL7s.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/high-renaissance1/raphael-madonna-of-the-goldfinch-1505-6/", "duration": 207, "id": "jHN0BfowL7s", "title": "Raphael, Madonna of the Goldfinch", "format": "mp4", "description": "Raphael, Madonna of the Goldfinch, 1505-6, oil on panel, 42\" x 30\" (107 x 77 cm), Uffizi, Florence\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "raphael-madonna-of-the-goldfinch-1505-6", "kind": "Video", "video_id": "jHN0BfowL7s", "keywords": "Raphael, Smarthistory, Art History, Uffizi, Florence", "youtube_id": "jHN0BfowL7s", "readable_id": "raphael-madonna-of-the-goldfinch-1505-6"}, "Q9t1LghwdGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q9t1LghwdGc.mp4/Q9t1LghwdGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q9t1LghwdGc.mp4/Q9t1LghwdGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q9t1LghwdGc.m3u8/Q9t1LghwdGc.m3u8"}, "duration": 662, "id": "Q9t1LghwdGc", "title": "Example of closed line integral of conservative field", "format": "mp4", "description": "Example of taking a closed line integral of a conservative field", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/example-of-closed-line-integral-of-conservative-field/", "slug": "example-of-closed-line-integral-of-conservative-field", "kind": "Video", "video_id": "Q9t1LghwdGc", "keywords": "line, integral, conservative, field, vector, calculus", "youtube_id": "Q9t1LghwdGc", "readable_id": "example-of-closed-line-integral-of-conservative-field"}, "VAgA6G75XsI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VAgA6G75XsI.mp4/VAgA6G75XsI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VAgA6G75XsI.mp4/VAgA6G75XsI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VAgA6G75XsI.m3u8/VAgA6G75XsI.m3u8"}, "duration": 827, "id": "VAgA6G75XsI", "title": "Ancient Rome", "format": "mp4", "description": "A project between Khan Academy and Rome Reborn - with Dr. Bernard Frischer", "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/a-tour-through-ancient-rome-in-320-c-e/", "slug": "a-tour-through-ancient-rome-in-320-c-e", "kind": "Video", "video_id": "VAgA6G75XsI", "keywords": "art history, smarthistory, khan academy, Rome, Rome Reborn, Hadrian, Nero, Domus Aurea, Roman Baths, Colosseum, Arch of Constantine, Roman Forum, Pantheon, Aqueducts, Constantine", "youtube_id": "VAgA6G75XsI", "readable_id": "a-tour-through-ancient-rome-in-320-c-e"}, "vStLGBTKMBQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vStLGBTKMBQ.mp4/vStLGBTKMBQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vStLGBTKMBQ.mp4/vStLGBTKMBQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vStLGBTKMBQ.m3u8/vStLGBTKMBQ.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/institutions-education-family-religion/", "duration": 391, "id": "vStLGBTKMBQ", "title": "Social institutions - education, family, and religion", "format": "mp4", "description": "", "slug": "institutions-education-family-religion", "kind": "Video", "video_id": "vStLGBTKMBQ", "keywords": "", "youtube_id": "vStLGBTKMBQ", "readable_id": "institutions-education-family-religion"}, "BIGX05Mp5nw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BIGX05Mp5nw.mp4/BIGX05Mp5nw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BIGX05Mp5nw.mp4/BIGX05Mp5nw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BIGX05Mp5nw.m3u8/BIGX05Mp5nw.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/long_division/introduction-to-remainders/", "duration": 225, "id": "BIGX05Mp5nw", "title": "Dividing numbers: intro to remainders", "format": "mp4", "description": "Do you like leftovers? (personally, we think they are delicious!). Those leftovers are like remainders in divisions problems. They're not bad. They just...are.", "slug": "introduction-to-remainders", "kind": "Video", "video_id": "BIGX05Mp5nw", "keywords": "", "youtube_id": "BIGX05Mp5nw", "readable_id": "introduction-to-remainders"}, "FEF6PxWOvsk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FEF6PxWOvsk.mp4/FEF6PxWOvsk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FEF6PxWOvsk.mp4/FEF6PxWOvsk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FEF6PxWOvsk.m3u8/FEF6PxWOvsk.m3u8"}, "duration": 629, "id": "FEF6PxWOvsk", "title": "Four fundamental forces", "format": "mp4", "description": "Gravity, Weak, Electromagnetic and Strong", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/light-fundamental-forces/four-fundamental-forces/", "slug": "four-fundamental-forces", "kind": "Video", "video_id": "FEF6PxWOvsk", "keywords": "Gravity, Weak", "youtube_id": "FEF6PxWOvsk", "readable_id": "four-fundamental-forces"}, "oTKVXJ7TcbA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oTKVXJ7TcbA.mp4/oTKVXJ7TcbA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oTKVXJ7TcbA.mp4/oTKVXJ7TcbA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oTKVXJ7TcbA.m3u8/oTKVXJ7TcbA.m3u8"}, "duration": 130, "id": "oTKVXJ7TcbA", "title": "Associative law of addition", "format": "mp4", "description": "Associative Law of Addition", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/associative-law-of-addition/", "slug": "associative-law-of-addition", "kind": "Video", "video_id": "oTKVXJ7TcbA", "keywords": "U01_L4_T1_we5, Associative, Law, of, Addition, CC_1_OA_3", "youtube_id": "oTKVXJ7TcbA", "readable_id": "associative-law-of-addition"}, "lUD7ti47IQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lUD7ti47IQc.mp4/lUD7ti47IQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lUD7ti47IQc.mp4/lUD7ti47IQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lUD7ti47IQc.m3u8/lUD7ti47IQc.m3u8"}, "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem_proof/divergence-theorem-proof-part-4/", "duration": 489, "id": "lUD7ti47IQc", "title": "Divergence theorem proof (part 4)", "format": "mp4", "description": "More evaluation of the surface integral", "slug": "divergence-theorem-proof-part-4", "kind": "Video", "video_id": "lUD7ti47IQc", "keywords": "", "youtube_id": "lUD7ti47IQc", "readable_id": "divergence-theorem-proof-part-4"}, "Efj-CugNO3I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Efj-CugNO3I.mp4/Efj-CugNO3I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Efj-CugNO3I.mp4/Efj-CugNO3I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Efj-CugNO3I.m3u8/Efj-CugNO3I.m3u8"}, "duration": 260, "id": "Efj-CugNO3I", "title": "Ryan Gander: Locked Room Scenario", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nRyan Gander's Locked Room Scenario purports to be a group exhibition in a London warehouse. But as you walk through the show, you might come to realise that the entire show has been made up by the artist, from the works of art attributed to the \"Blue Conceptualists,\" to the building itself, to a note lying on the floor or the taxi waiting outside. Gander creates an environment in which you become a key performer.", "path": "ryan-gander-locked-room-scenario/", "slug": "ryan-gander-locked-room-scenario", "kind": "Video", "video_id": "Efj-CugNO3I", "keywords": "Tate, performance art", "youtube_id": "Efj-CugNO3I", "readable_id": "ryan-gander-locked-room-scenario"}, "LwhJVURumAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LwhJVURumAA.mp4/LwhJVURumAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LwhJVURumAA.mp4/LwhJVURumAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LwhJVURumAA.m3u8/LwhJVURumAA.m3u8"}, "duration": 414, "id": "LwhJVURumAA", "title": "Leveraging properties of series to find sum", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/properties-to-find-sum/", "slug": "properties-to-find-sum", "kind": "Video", "video_id": "LwhJVURumAA", "keywords": "", "youtube_id": "LwhJVURumAA", "readable_id": "properties-to-find-sum"}, "PQZUIGzinZA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PQZUIGzinZA.mp4/PQZUIGzinZA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PQZUIGzinZA.mp4/PQZUIGzinZA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PQZUIGzinZA.m3u8/PQZUIGzinZA.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/holbein/hans-holbein-the-younger-the-ambassadors-1533/", "duration": 453, "id": "PQZUIGzinZA", "title": "Holbein the Younger, the Ambassadors", "format": "mp4", "description": "Hans Holbein the Younger, The Ambassadors, 1533, oil on oak, 207 x 209.5 cm (The National Gallery, London). View this work up close on the Google Art Project.", "slug": "hans-holbein-the-younger-the-ambassadors-1533", "kind": "Video", "video_id": "PQZUIGzinZA", "keywords": "holbein, ambassadors, GAP, Hans Holbein the Younger, 1533, National Gallery, London, Khan Academy, smarthistory, art history, Google Art Project, OER, painting, lute, Anamorphosis, skull", "youtube_id": "PQZUIGzinZA", "readable_id": "hans-holbein-the-younger-the-ambassadors-1533"}, "mMCcBsSAlF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mMCcBsSAlF4.mp4/mMCcBsSAlF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mMCcBsSAlF4.mp4/mMCcBsSAlF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mMCcBsSAlF4.m3u8/mMCcBsSAlF4.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/meiosis/phases-of-meiosis-ii/", "duration": 658, "id": "mMCcBsSAlF4", "title": "Phases of Meiosis II", "format": "mp4", "description": "Phases of Meiosis II", "slug": "phases-of-meiosis-ii", "kind": "Video", "video_id": "mMCcBsSAlF4", "keywords": "", "youtube_id": "mMCcBsSAlF4", "readable_id": "phases-of-meiosis-ii"}, "lSwsAFgWqR8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lSwsAFgWqR8.mp4/lSwsAFgWqR8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lSwsAFgWqR8.mp4/lSwsAFgWqR8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lSwsAFgWqR8.m3u8/lSwsAFgWqR8.m3u8"}, "duration": 308, "id": "lSwsAFgWqR8", "title": "Limit properties", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/algebraic-limits/limit-properties/", "slug": "limit-properties", "kind": "Video", "video_id": "lSwsAFgWqR8", "keywords": "", "youtube_id": "lSwsAFgWqR8", "readable_id": "limit-properties"}, "Bs2mEx4WZPY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bs2mEx4WZPY.mp4/Bs2mEx4WZPY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bs2mEx4WZPY.mp4/Bs2mEx4WZPY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bs2mEx4WZPY.m3u8/Bs2mEx4WZPY.m3u8"}, "path": "khan/partner-content/exploratorium/exploratorium-chemistry/penny-battery/build-your-own-penny-battery-materials-steps/", "duration": 351, "id": "Bs2mEx4WZPY", "title": "Build your own penny battery: Materials & steps", "format": "mp4", "description": "In this video, you'll find the materials and tools you'll need to build your own penny battery, as well as all the necessary steps.\u00a0", "slug": "build-your-own-penny-battery-materials-steps", "kind": "Video", "video_id": "Bs2mEx4WZPY", "keywords": "", "youtube_id": "Bs2mEx4WZPY", "readable_id": "build-your-own-penny-battery-materials-steps"}, "bRwJ-QCz9XU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bRwJ-QCz9XU.mp4/bRwJ-QCz9XU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bRwJ-QCz9XU.mp4/bRwJ-QCz9XU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bRwJ-QCz9XU.m3u8/bRwJ-QCz9XU.m3u8"}, "duration": 256, "id": "bRwJ-QCz9XU", "title": "Rational equations", "format": "mp4", "description": "Rational Equations", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/rational-equations/", "slug": "rational-equations", "kind": "Video", "video_id": "bRwJ-QCz9XU", "keywords": "u15_l2_t1_we1, Rational, Equations, CC_6_EE_6, CC_7_EE_4_a", "youtube_id": "bRwJ-QCz9XU", "readable_id": "rational-equations"}, "PPJ0Khs7uWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PPJ0Khs7uWs.mp4/PPJ0Khs7uWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PPJ0Khs7uWs.mp4/PPJ0Khs7uWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PPJ0Khs7uWs.m3u8/PPJ0Khs7uWs.m3u8"}, "duration": 497, "id": "PPJ0Khs7uWs", "title": "Bouncing Droplets: Superhydrophobic and Superhydrophilic Surfaces", "format": "mp4", "description": "This video introduces the concept of surface tension, and shows how roughness can make a surface superhydrophobic or superhydrophilic. The Wenzel and Cassie-Baxter models are explained. Special thanks to the MIT BioInstrumentation Lab.", "path": "bouncing-droplets-superhydrophobic-and-superhydrophilic-surfaces/", "slug": "bouncing-droplets-superhydrophobic-and-superhydrophilic-surfaces", "kind": "Video", "video_id": "PPJ0Khs7uWs", "keywords": "Chemistry, Engineering, MIT, M.I.T., K-12 (education), teaching, learning, demo*, science", "youtube_id": "PPJ0Khs7uWs", "readable_id": "bouncing-droplets-superhydrophobic-and-superhydrophilic-surfaces"}, "UKYjhM_c_7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UKYjhM_c_7s.mp4/UKYjhM_c_7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UKYjhM_c_7s.mp4/UKYjhM_c_7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UKYjhM_c_7s.m3u8/UKYjhM_c_7s.m3u8"}, "duration": 297, "id": "UKYjhM_c_7s", "title": "Comparing with multiplication: ages and heights", "format": "mp4", "description": "You'll learn that sometimes multiplication is used as a way of comparing two things. In these 2 examples, we're comparing age and height.", "path": "comparisons-multiplication-addition/", "slug": "comparisons-multiplication-addition", "kind": "Video", "video_id": "UKYjhM_c_7s", "keywords": "", "youtube_id": "UKYjhM_c_7s", "readable_id": "comparisons-multiplication-addition"}, "WGMn16TDTjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WGMn16TDTjE.mp4/WGMn16TDTjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WGMn16TDTjE.mp4/WGMn16TDTjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WGMn16TDTjE.m3u8/WGMn16TDTjE.m3u8"}, "path": "khan/computing/computer-science/cryptography/random-algorithms-probability/randomized-algorithms-prime-adventure-part-8/", "duration": 563, "id": "WGMn16TDTjE", "title": "Randomized algorithms (intro)", "format": "mp4", "description": "How could random numbers speed up a decision algorithm?", "slug": "randomized-algorithms-prime-adventure-part-8", "kind": "Video", "video_id": "WGMn16TDTjE", "keywords": "random algorithms, randomized, algorithms", "youtube_id": "WGMn16TDTjE", "readable_id": "randomized-algorithms-prime-adventure-part-8"}, "kw_4Loo1HR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kw_4Loo1HR4.mp4/kw_4Loo1HR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kw_4Loo1HR4.mp4/kw_4Loo1HR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kw_4Loo1HR4.m3u8/kw_4Loo1HR4.m3u8"}, "duration": 606, "id": "kw_4Loo1HR4", "title": "Conservation of energy", "format": "mp4", "description": "Using the law of conservation of energy to see how potential energy is converted into kinetic energy", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/conservation-of-energy/", "slug": "conservation-of-energy", "kind": "Video", "video_id": "kw_4Loo1HR4", "keywords": "conservation, of, energy, kinetic, potential, physics, velocity", "youtube_id": "kw_4Loo1HR4", "readable_id": "conservation-of-energy"}, "ARysRxZJmaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ARysRxZJmaA.mp4/ARysRxZJmaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ARysRxZJmaA.mp4/ARysRxZJmaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ARysRxZJmaA.m3u8/ARysRxZJmaA.m3u8"}, "duration": 163, "id": "ARysRxZJmaA", "title": "Lois Weber and Phillips Smalley, \"Suspense\"", "format": "mp4", "description": "For more information please visit\u00a0http://www.moma.org/1913", "path": "moma-webersmalley-suspense/", "slug": "moma-webersmalley-suspense", "kind": "Video", "video_id": "ARysRxZJmaA", "keywords": "", "youtube_id": "ARysRxZJmaA", "readable_id": "moma-webersmalley-suspense"}, "WY6QG0mZ7uQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WY6QG0mZ7uQ.mp4/WY6QG0mZ7uQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WY6QG0mZ7uQ.mp4/WY6QG0mZ7uQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WY6QG0mZ7uQ.m3u8/WY6QG0mZ7uQ.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-correction-scalar-muliplication-of-row/", "duration": 172, "id": "WY6QG0mZ7uQ", "title": "(correction) scalar multiplication of row", "format": "mp4", "description": "Correction of last video showing that the determinant when one row is multiplied by a scalar is equal to the scalar times the determinant", "slug": "linear-algebra-correction-scalar-muliplication-of-row", "kind": "Video", "video_id": "WY6QG0mZ7uQ", "keywords": "linear, algebra, determinant", "youtube_id": "WY6QG0mZ7uQ", "readable_id": "linear-algebra-correction-scalar-muliplication-of-row"}, "x8pEjhCc5ug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x8pEjhCc5ug.mp4/x8pEjhCc5ug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x8pEjhCc5ug.mp4/x8pEjhCc5ug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x8pEjhCc5ug.m3u8/x8pEjhCc5ug.m3u8"}, "duration": 588, "id": "x8pEjhCc5ug", "title": "GMAT: Math 36", "format": "mp4", "description": "180(simpler)-184, pgs. 176-177", "path": "khan/test-prep/gmat/problem-solving/gmat-math-36/", "slug": "gmat-math-36", "kind": "Video", "video_id": "x8pEjhCc5ug", "keywords": "gmat, math, problem, solving", "youtube_id": "x8pEjhCc5ug", "readable_id": "gmat-math-36"}, "b1QFKLZC11U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b1QFKLZC11U.mp4/b1QFKLZC11U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b1QFKLZC11U.mp4/b1QFKLZC11U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b1QFKLZC11U.m3u8/b1QFKLZC11U.m3u8"}, "duration": 639, "id": "b1QFKLZC11U", "title": "Magnetism 4", "format": "mp4", "description": "Part 2 of the proton through a magnetic field problem", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-4/", "slug": "magnetism-4", "kind": "Video", "video_id": "b1QFKLZC11U", "keywords": "physics, magnetism", "youtube_id": "b1QFKLZC11U", "readable_id": "magnetism-4"}, "lBP7739C83s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lBP7739C83s.mp4/lBP7739C83s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lBP7739C83s.mp4/lBP7739C83s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lBP7739C83s.m3u8/lBP7739C83s.m3u8"}, "duration": 309, "id": "lBP7739C83s", "title": "Bridge Design and Destruction! (part 1)", "format": "mp4", "description": "This is a two part video that introduces the different types of bridges. The bridge types will be introduced in historical order from simple (beam and arch) in the first video to more complex (truss and suspension) in the second video. This will show how bridges evolved as our designs and available materials expanded. The design of each bridge will be shown schematically along with the load distribution. The advantages and limitations of each type will be described. Video of actual bridges around Boston of the different types will be shown with the load distributions overlaid on freeze frames. Other iconic bridges will also be shown as still images with load distributions. Technical concepts covered will be tension, compression, bending, span, force balances, material selection and beam/cable design. \n\nLicense: Creative Commons BY-NC-SA\nMore information at http://k12videos.mit.edu/terms-conditions", "path": "bridge-design-and-destruction-part-1/", "slug": "bridge-design-and-destruction-part-1", "kind": "Video", "video_id": "lBP7739C83s", "keywords": "bridges, design", "youtube_id": "lBP7739C83s", "readable_id": "bridge-design-and-destruction-part-1"}, "9Xncz_mMc5g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9Xncz_mMc5g.mp4/9Xncz_mMc5g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9Xncz_mMc5g.mp4/9Xncz_mMc5g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9Xncz_mMc5g.m3u8/9Xncz_mMc5g.m3u8"}, "duration": 360, "id": "9Xncz_mMc5g", "title": "Galvanic cell voltaic cell", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/galvanic-cell-voltaic-cell/", "slug": "galvanic-cell-voltaic-cell", "kind": "Video", "video_id": "9Xncz_mMc5g", "keywords": "", "youtube_id": "9Xncz_mMc5g", "readable_id": "galvanic-cell-voltaic-cell"}, "eIfQ4GfSz3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eIfQ4GfSz3U.mp4/eIfQ4GfSz3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eIfQ4GfSz3U.mp4/eIfQ4GfSz3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eIfQ4GfSz3U.m3u8/eIfQ4GfSz3U.m3u8"}, "duration": 772, "id": "eIfQ4GfSz3U", "title": "Sykes-Picot Agreement and the Balfour Declaration", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/middle-east-20th-century/sykes-picot-agreement-and-the-balfour-declaration/", "slug": "sykes-picot-agreement-and-the-balfour-declaration", "kind": "Video", "video_id": "eIfQ4GfSz3U", "keywords": "", "youtube_id": "eIfQ4GfSz3U", "readable_id": "sykes-picot-agreement-and-the-balfour-declaration"}, "F00vnE37pIE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F00vnE37pIE.mp4/F00vnE37pIE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F00vnE37pIE.mp4/F00vnE37pIE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F00vnE37pIE.m3u8/F00vnE37pIE.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/sir-edward-burne-jones-hope-1896/", "duration": 311, "id": "F00vnE37pIE", "title": "Burne-Jones, Hope", "format": "mp4", "description": "Sir Edward Coley Burne-Jones, Hope, 1896, 179 x 63.5 cm, oil on canvas (Museum of Fine Arts, Boston)", "slug": "sir-edward-burne-jones-hope-1896", "kind": "Video", "video_id": "F00vnE37pIE", "keywords": "Burne-Jones, Hope, 1896, Museum of Fine Arts, Boston, British, allegory, Google Art Project, Smarthistory, Khan Academy, OER, art history", "youtube_id": "F00vnE37pIE", "readable_id": "sir-edward-burne-jones-hope-1896"}, "iqpIspc38TA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iqpIspc38TA.mp4/iqpIspc38TA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iqpIspc38TA.mp4/iqpIspc38TA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iqpIspc38TA.m3u8/iqpIspc38TA.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2008-may-8-6/", "duration": 218, "id": "iqpIspc38TA", "title": "6 Carton quantity", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-6", "kind": "Video", "video_id": "iqpIspc38TA", "keywords": "", "youtube_id": "iqpIspc38TA", "readable_id": "sat-2008-may-8-6"}, "cppxO67e6eo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cppxO67e6eo.mp4/cppxO67e6eo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cppxO67e6eo.mp4/cppxO67e6eo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cppxO67e6eo.m3u8/cppxO67e6eo.m3u8"}, "duration": 887, "id": "cppxO67e6eo", "title": "Introduction to the price-to-earnings ratio", "format": "mp4", "description": "Price to Earnings Ration (or P/E ratio).", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/introduction-to-the-price-to-earnings-ratio/", "slug": "introduction-to-the-price-to-earnings-ratio", "kind": "Video", "video_id": "cppxO67e6eo", "keywords": "investing, price, earnings, ratio, finance, stock", "youtube_id": "cppxO67e6eo", "readable_id": "introduction-to-the-price-to-earnings-ratio"}, "SkMNREAMNvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SkMNREAMNvc.mp4/SkMNREAMNvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SkMNREAMNvc.mp4/SkMNREAMNvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SkMNREAMNvc.m3u8/SkMNREAMNvc.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/introduction_to_systems_of_linear_equations/testing-a-solution-for-a-system-of-equations/", "duration": 158, "id": "SkMNREAMNvc", "title": "Checking solutions to systems of equations example", "format": "mp4", "description": "Testing a solution for a system of equations", "slug": "testing-a-solution-for-a-system-of-equations", "kind": "Video", "video_id": "SkMNREAMNvc", "keywords": "u14_l1_t1_we2, Testing, solution, for, system, of, equations, CC_8_EE_8_a", "youtube_id": "SkMNREAMNvc", "readable_id": "testing-a-solution-for-a-system-of-equations"}, "4QwfrTNuwE4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4QwfrTNuwE4.mp4/4QwfrTNuwE4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4QwfrTNuwE4.mp4/4QwfrTNuwE4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4QwfrTNuwE4.m3u8/4QwfrTNuwE4.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/beuys-table-with-accumulator-tisch-mit-aggregat-1958-85/", "duration": 255, "id": "4QwfrTNuwE4", "title": "Joseph Beuys, Table with Accumulator", "format": "mp4", "description": "Joseph Beuys, Table with Accumulator (Tisch mit Aggregat), 1958-85, Tate Modern, London.\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "beuys-table-with-accumulator-tisch-mit-aggregat-1958-85", "kind": "Video", "video_id": "4QwfrTNuwE4", "keywords": "Beuys, Tate Modern, Smarthistory, Art History", "youtube_id": "4QwfrTNuwE4", "readable_id": "beuys-table-with-accumulator-tisch-mit-aggregat-1958-85"}, "tnkPY4UqJ44": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tnkPY4UqJ44.mp4/tnkPY4UqJ44.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tnkPY4UqJ44.mp4/tnkPY4UqJ44.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tnkPY4UqJ44.m3u8/tnkPY4UqJ44.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/div-fractions-fractions-pre-alg/dividing-fractions-example/", "duration": 216, "id": "tnkPY4UqJ44", "title": "Dividing fractions example 2", "format": "mp4", "description": "Let's take another stab at dividing two fractions. This time the answer should be a mixed number.", "slug": "dividing-fractions-example", "kind": "Video", "video_id": "tnkPY4UqJ44", "keywords": "U02_L2_T3_we2, Dividing, Fractions, CC_5_NF_7, CC_6_NS_1, CC_7_NS_2, CC_7_NS_2_c", "youtube_id": "tnkPY4UqJ44", "readable_id": "dividing-fractions-example"}, "Hp46Y6j_Qdc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hp46Y6j_Qdc.mp4/Hp46Y6j_Qdc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hp46Y6j_Qdc.mp4/Hp46Y6j_Qdc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hp46Y6j_Qdc.m3u8/Hp46Y6j_Qdc.m3u8"}, "duration": 133, "id": "Hp46Y6j_Qdc", "title": "Spider parts and tools", "format": "mp4", "description": "In this video we review some of the parts and tools you will need to build a spider bot.", "path": "khan/science/discoveries-projects/robots/spider_bot/1-spider-parts-and-tools/", "slug": "1-spider-parts-and-tools", "kind": "Video", "video_id": "Hp46Y6j_Qdc", "keywords": "spider bot, make, diy, hack, building, hands-on projects, robots", "youtube_id": "Hp46Y6j_Qdc", "readable_id": "1-spider-parts-and-tools"}, "Z_NHrwK6ALE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z_NHrwK6ALE.mp4/Z_NHrwK6ALE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z_NHrwK6ALE.mp4/Z_NHrwK6ALE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z_NHrwK6ALE.m3u8/Z_NHrwK6ALE.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dividing-decimals-pre-alg/dividing-a-decimal-by-a-whole-number/", "duration": 126, "id": "Z_NHrwK6ALE", "title": "Dividing a decimal by a whole number", "format": "mp4", "description": "You're doing great. Now we want to mix it up a little: divide a decimal by a whole number. Follow along.", "slug": "dividing-a-decimal-by-a-whole-number", "kind": "Video", "video_id": "Z_NHrwK6ALE", "keywords": "", "youtube_id": "Z_NHrwK6ALE", "readable_id": "dividing-a-decimal-by-a-whole-number"}, "vD2WJTIEVv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vD2WJTIEVv0.mp4/vD2WJTIEVv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vD2WJTIEVv0.mp4/vD2WJTIEVv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vD2WJTIEVv0.m3u8/vD2WJTIEVv0.m3u8"}, "duration": 470, "id": "vD2WJTIEVv0", "title": "Are hedge funds bad?", "format": "mp4", "description": "Thinking about how hedge funds are different from other institutions", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds/are-hedge-funds-bad/", "slug": "are-hedge-funds-bad", "kind": "Video", "video_id": "vD2WJTIEVv0", "keywords": "risk, hedge, fund", "youtube_id": "vD2WJTIEVv0", "readable_id": "are-hedge-funds-bad"}, "PaA0mLVQd3k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PaA0mLVQd3k.mp4/PaA0mLVQd3k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PaA0mLVQd3k.mp4/PaA0mLVQd3k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PaA0mLVQd3k.m3u8/PaA0mLVQd3k.m3u8"}, "duration": 578, "id": "PaA0mLVQd3k", "title": "Self concept, self identity, and social identity", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/self-concept-self-identity-social-identity/", "slug": "self-concept-self-identity-social-identity", "kind": "Video", "video_id": "PaA0mLVQd3k", "keywords": "", "youtube_id": "PaA0mLVQd3k", "readable_id": "self-concept-self-identity-social-identity"}, "P4s0bnrRm4M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P4s0bnrRm4M.mp4/P4s0bnrRm4M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P4s0bnrRm4M.mp4/P4s0bnrRm4M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P4s0bnrRm4M.m3u8/P4s0bnrRm4M.m3u8"}, "path": "khan/college-admissions/get-started/importance-of-college/ss-college-brings-new-friends-learning-and-freedom/", "duration": 49, "id": "P4s0bnrRm4M", "title": "Student story: College brings new friends, learning, and freedom", "format": "mp4", "description": "", "slug": "ss-college-brings-new-friends-learning-and-freedom", "kind": "Video", "video_id": "P4s0bnrRm4M", "keywords": "", "youtube_id": "P4s0bnrRm4M", "readable_id": "ss-college-brings-new-friends-learning-and-freedom"}, "20N53khArXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/20N53khArXA.mp4/20N53khArXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/20N53khArXA.mp4/20N53khArXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/20N53khArXA.m3u8/20N53khArXA.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/gestalt-principles/", "duration": 488, "id": "20N53khArXA", "title": "Gestalt principles", "format": "mp4", "description": "", "slug": "gestalt-principles", "kind": "Video", "video_id": "20N53khArXA", "keywords": "", "youtube_id": "20N53khArXA", "readable_id": "gestalt-principles"}, "w6Tgu14VSLY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w6Tgu14VSLY.mp4/w6Tgu14VSLY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w6Tgu14VSLY.mp4/w6Tgu14VSLY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w6Tgu14VSLY.m3u8/w6Tgu14VSLY.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/duccio-maesta-back-1308-11/", "duration": 250, "id": "w6Tgu14VSLY", "title": "Duccio, Maesta (back)", "format": "mp4", "description": "Duccio, Maesta (back), 1308-11 (Museo dell'Opera Metropolitana del Duomo, Siena)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "duccio-maesta-back-1308-11", "kind": "Video", "video_id": "w6Tgu14VSLY", "keywords": "Duccio, Maesta, back, v2", "youtube_id": "w6Tgu14VSLY", "readable_id": "duccio-maesta-back-1308-11"}, "PIdgHAOoIKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PIdgHAOoIKs.mp4/PIdgHAOoIKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PIdgHAOoIKs.mp4/PIdgHAOoIKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PIdgHAOoIKs.m3u8/PIdgHAOoIKs.m3u8"}, "path": "khan/college-admissions/making-high-school-count/high-school-classes/making-the-most-of-high-school-classes/", "duration": 230, "id": "PIdgHAOoIKs", "title": "Making the most of high school classes", "format": "mp4", "description": "", "slug": "making-the-most-of-high-school-classes", "kind": "Video", "video_id": "PIdgHAOoIKs", "keywords": "", "youtube_id": "PIdgHAOoIKs", "readable_id": "making-the-most-of-high-school-classes"}, "G2JdRB3bdFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G2JdRB3bdFM.mp4/G2JdRB3bdFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G2JdRB3bdFM.mp4/G2JdRB3bdFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G2JdRB3bdFM.m3u8/G2JdRB3bdFM.m3u8"}, "path": "khan/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws/deflategate-ideal-gas-law/", "duration": 535, "id": "G2JdRB3bdFM", "title": "Deflate gate", "format": "mp4", "description": "", "slug": "deflategate-ideal-gas-law", "kind": "Video", "video_id": "G2JdRB3bdFM", "keywords": "", "youtube_id": "G2JdRB3bdFM", "readable_id": "deflategate-ideal-gas-law"}, "_yv3BrPt-cs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_yv3BrPt-cs.mp4/_yv3BrPt-cs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_yv3BrPt-cs.mp4/_yv3BrPt-cs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_yv3BrPt-cs.m3u8/_yv3BrPt-cs.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-1-3/", "duration": 326, "id": "_yv3BrPt-cs", "title": "CAHSEE practice: Problems 1-3", "format": "mp4", "description": "CAHSEE Practice: Problems 1-3", "slug": "cahsee-practice-problems-1-3", "kind": "Video", "video_id": "_yv3BrPt-cs", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "_yv3BrPt-cs", "readable_id": "cahsee-practice-problems-1-3"}, "ksK2mbPgiLI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ksK2mbPgiLI.mp4/ksK2mbPgiLI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ksK2mbPgiLI.mp4/ksK2mbPgiLI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ksK2mbPgiLI.m3u8/ksK2mbPgiLI.m3u8"}, "path": "khan/humanities/music/music-masterpieces-old-new/ludwig-van-beethoven-music/beethoven-fifth-movements-3-4/", "duration": 822, "id": "ksK2mbPgiLI", "title": "Ludwig van Beethoven: Symphony No. 5, analysis by Gerard Schwarz (part 3 & 4)", "format": "mp4", "description": "\u200bWatch the complete performance at here starting at 10:40.", "slug": "beethoven-fifth-movements-3-4", "kind": "Video", "video_id": "ksK2mbPgiLI", "keywords": "", "youtube_id": "ksK2mbPgiLI", "readable_id": "beethoven-fifth-movements-3-4"}, "jRYEqOOrjH8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jRYEqOOrjH8.mp4/jRYEqOOrjH8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jRYEqOOrjH8.mp4/jRYEqOOrjH8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jRYEqOOrjH8.m3u8/jRYEqOOrjH8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/welcome-to-the-reproductive-system/", "duration": 395, "id": "jRYEqOOrjH8", "title": "Welcome to the reproductive system", "format": "mp4", "description": "", "slug": "welcome-to-the-reproductive-system", "kind": "Video", "video_id": "jRYEqOOrjH8", "keywords": "", "youtube_id": "jRYEqOOrjH8", "readable_id": "welcome-to-the-reproductive-system"}, "XFhntPxow0U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XFhntPxow0U.mp4/XFhntPxow0U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XFhntPxow0U.mp4/XFhntPxow0U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XFhntPxow0U.m3u8/XFhntPxow0U.m3u8"}, "duration": 558, "id": "XFhntPxow0U", "title": "Introduction to momentum", "format": "mp4", "description": "What momentum is. A simple problem involving momentum.", "path": "khan/science/physics/linear-momentum/momentum-tutorial/introduction-to-momentum/", "slug": "introduction-to-momentum", "kind": "Video", "video_id": "XFhntPxow0U", "keywords": "physics, momentum, impulse, force, acceleration, velocity", "youtube_id": "XFhntPxow0U", "readable_id": "introduction-to-momentum"}, "m4mrd7sHCPM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m4mrd7sHCPM.mp4/m4mrd7sHCPM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m4mrd7sHCPM.mp4/m4mrd7sHCPM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m4mrd7sHCPM.m3u8/m4mrd7sHCPM.m3u8"}, "duration": 209, "id": "m4mrd7sHCPM", "title": "Put-call parity", "format": "mp4", "description": "Put-Call Parity", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-call-parity/", "slug": "put-call-parity", "kind": "Video", "video_id": "m4mrd7sHCPM", "keywords": "Put-Call, Parity", "youtube_id": "m4mrd7sHCPM", "readable_id": "put-call-parity"}, "gkifo46--JA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gkifo46--JA.mp4/gkifo46--JA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gkifo46--JA.mp4/gkifo46--JA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gkifo46--JA.m3u8/gkifo46--JA.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-area-perimeter-polygon/area-of-strange-quadrilateral/", "duration": 234, "id": "gkifo46--JA", "title": "Area of strange quadrilateral", "format": "mp4", "description": "Again, some quadrilaterals can be oddly shaped so break it up into shapes where finding the area is more easily determined.", "slug": "area-of-strange-quadrilateral", "kind": "Video", "video_id": "gkifo46--JA", "keywords": "", "youtube_id": "gkifo46--JA", "readable_id": "area-of-strange-quadrilateral"}, "O4obs4eldnc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O4obs4eldnc.mp4/O4obs4eldnc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O4obs4eldnc.mp4/O4obs4eldnc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O4obs4eldnc.m3u8/O4obs4eldnc.m3u8"}, "duration": 344, "id": "O4obs4eldnc", "title": "The archives of Eileen Agar, a British surrealist", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nSurrealist Eileen Agar left behind a rich collection of archival material, a series of very personal and original objects that illustrate her creative process and enrich our understanding of her practice. Entering Agar\u2019s archives is almost like entering her mind, as one archivist puts it\u2014within it you can see direct inspirations for specific works she produced throughout her lifetime. Among her sketches and drawings are the bits and pieces that littered her gallery, giving us a full picture of the materials she was engaging with.\nBut Agar\u2019s archive includes her private correspondence as well, which allows us a look into her personal life. Among her correspondence is a series of love letters from fellow British artist Paul Nash, telling the story of their affair. What value might there be in including personal letters among an artist\u2019s drawings and sketches? Is it simply voyeuristic, or does the intersection of these documents allow us to look at a much broader cultural history?\n\nSee more of Eileen Agar's work in the Tate collection\u00a0here.\n\n\n\n\n", "path": "eileen-agar/", "slug": "eileen-agar", "kind": "Video", "video_id": "O4obs4eldnc", "keywords": "Tate", "youtube_id": "O4obs4eldnc", "readable_id": "eileen-agar"}, "5EdbPz1ZVn0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5EdbPz1ZVn0.mp4/5EdbPz1ZVn0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5EdbPz1ZVn0.mp4/5EdbPz1ZVn0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5EdbPz1ZVn0.m3u8/5EdbPz1ZVn0.m3u8"}, "duration": 605, "id": "5EdbPz1ZVn0", "title": "Modeling with linear equations example 2", "format": "mp4", "description": "Constructing linear equations to solve word problems", "path": "word-problem-solving-4/", "slug": "word-problem-solving-4", "kind": "Video", "video_id": "5EdbPz1ZVn0", "keywords": "Word, Problem, Solving", "youtube_id": "5EdbPz1ZVn0", "readable_id": "word-problem-solving-4"}, "DFPBdbx0vFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DFPBdbx0vFc.mp4/DFPBdbx0vFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DFPBdbx0vFc.mp4/DFPBdbx0vFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DFPBdbx0vFc.m3u8/DFPBdbx0vFc.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-9-more-on-reserve-ratios-bad-sound/", "duration": 532, "id": "DFPBdbx0vFc", "title": "Banking 9: More on reserve ratios (bad sound)", "format": "mp4", "description": "Seeing how reserve ratios limit how much lending I can do.", "slug": "banking-9-more-on-reserve-ratios-bad-sound", "kind": "Video", "video_id": "DFPBdbx0vFc", "keywords": "banking, reserve, ratio, lending", "youtube_id": "DFPBdbx0vFc", "readable_id": "banking-9-more-on-reserve-ratios-bad-sound"}, "KdfSUbEFums": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KdfSUbEFums.mp4/KdfSUbEFums.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KdfSUbEFums.mp4/KdfSUbEFums.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KdfSUbEFums.m3u8/KdfSUbEFums.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/expressions-with-two-variables/", "duration": 119, "id": "KdfSUbEFums", "title": "Expressions with two variables", "format": "mp4", "description": "Basics of expression with two variables", "slug": "expressions-with-two-variables", "kind": "Video", "video_id": "KdfSUbEFums", "keywords": "", "youtube_id": "KdfSUbEFums", "readable_id": "expressions-with-two-variables"}, "-LgtilBrA4g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-LgtilBrA4g.mp4/-LgtilBrA4g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-LgtilBrA4g.mp4/-LgtilBrA4g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-LgtilBrA4g.m3u8/-LgtilBrA4g.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/pre-raphaelites-curators-choice-millaiss-isabella/", "duration": 179, "id": "-LgtilBrA4g", "title": "Pre-Raphaelites: Curator's choice - Millais's Isabella", "format": "mp4", "description": "Curator Jason Rosenfeld reveals the story behind John Everett Millais's painting Isabella and explains why this historical work is inherently modern. Millais's Isabella is one of over 150 works currently on show at Tate Britain in the exhibition Pre-Raphaelites: Victorian Avant-Garde. Pre-Raphaelites: Victorian Avant-Garde is at Tate Britain (2013)", "slug": "pre-raphaelites-curators-choice-millaiss-isabella", "kind": "Video", "video_id": "-LgtilBrA4g", "keywords": "Pre-raphaelite, Tate, ", "youtube_id": "-LgtilBrA4g", "readable_id": "pre-raphaelites-curators-choice-millaiss-isabella"}, "MQtsRYPx3v0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MQtsRYPx3v0.mp4/MQtsRYPx3v0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MQtsRYPx3v0.mp4/MQtsRYPx3v0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MQtsRYPx3v0.m3u8/MQtsRYPx3v0.m3u8"}, "duration": 281, "id": "MQtsRYPx3v0", "title": "Graphing a parabola using roots and vertex", "format": "mp4", "description": "", "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/graphing-a-parabola-using-roots-and-vertex/", "slug": "graphing-a-parabola-using-roots-and-vertex", "kind": "Video", "video_id": "MQtsRYPx3v0", "keywords": "", "youtube_id": "MQtsRYPx3v0", "readable_id": "graphing-a-parabola-using-roots-and-vertex"}, "TQ51Gsb98ec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TQ51Gsb98ec.mp4/TQ51Gsb98ec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TQ51Gsb98ec.mp4/TQ51Gsb98ec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TQ51Gsb98ec.m3u8/TQ51Gsb98ec.m3u8"}, "duration": 634, "id": "TQ51Gsb98ec", "title": "Emotions: cerebral hemispheres and prefrontal cortex", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/emotion/emotions-cerebral-hemispheres-and-prefrontal-cortex/", "slug": "emotions-cerebral-hemispheres-and-prefrontal-cortex", "kind": "Video", "video_id": "TQ51Gsb98ec", "keywords": "", "youtube_id": "TQ51Gsb98ec", "readable_id": "emotions-cerebral-hemispheres-and-prefrontal-cortex"}, "aFV9dk5PsPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aFV9dk5PsPA.mp4/aFV9dk5PsPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aFV9dk5PsPA.mp4/aFV9dk5PsPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aFV9dk5PsPA.m3u8/aFV9dk5PsPA.m3u8"}, "duration": 413, "id": "aFV9dk5PsPA", "title": "Stroke work in PV loops and boxes", "format": "mp4", "description": "Watch how PV loops can be \"morphed\" into PV boxes to make drawing them and thinking about them much simpler. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/stroke-work-in-pv-loops-and-boxes/", "slug": "stroke-work-in-pv-loops-and-boxes", "kind": "Video", "video_id": "aFV9dk5PsPA", "keywords": "", "youtube_id": "aFV9dk5PsPA", "readable_id": "stroke-work-in-pv-loops-and-boxes"}, "gWSDDopD9sk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gWSDDopD9sk.mp4/gWSDDopD9sk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gWSDDopD9sk.mp4/gWSDDopD9sk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gWSDDopD9sk.m3u8/gWSDDopD9sk.m3u8"}, "path": "khan/math/differential-calculus/limits_topic/old-limits-tutorial/limit-examples-part3/", "duration": 598, "id": "gWSDDopD9sk", "title": "Limit examples (part 3)", "format": "mp4", "description": "More limit examples", "slug": "limit-examples-part3", "kind": "Video", "video_id": "gWSDDopD9sk", "keywords": "Calculus, limit, math, khan, academy, CC_39336_A-REI_4, CC_39336_A-SSE_3_a, CC_39336_F-IF_8_a", "youtube_id": "gWSDDopD9sk", "readable_id": "limit-examples-part3"}, "InrLtU3k3Y8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/InrLtU3k3Y8.mp4/InrLtU3k3Y8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/InrLtU3k3Y8.mp4/InrLtU3k3Y8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/InrLtU3k3Y8.m3u8/InrLtU3k3Y8.m3u8"}, "duration": 432, "id": "InrLtU3k3Y8", "title": "Getting a ticket because of the mean value theorem", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/mean_value_theorem/getting-a-ticket-because-of-the-mean-value-theorem/", "slug": "getting-a-ticket-because-of-the-mean-value-theorem", "kind": "Video", "video_id": "InrLtU3k3Y8", "keywords": "", "youtube_id": "InrLtU3k3Y8", "readable_id": "getting-a-ticket-because-of-the-mean-value-theorem"}, "znVEFfIdo1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/znVEFfIdo1o.mp4/znVEFfIdo1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/znVEFfIdo1o.mp4/znVEFfIdo1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/znVEFfIdo1o.m3u8/znVEFfIdo1o.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/durer/albrecht-d-rer-the-large-piece-of-turf-1503/", "duration": 217, "id": "znVEFfIdo1o", "title": "D\u00fcrer, the Large Piece of Turf", "format": "mp4", "description": "Albrecht D\u00fcrer, The Large Piece of Turf, 1503, watercolor and gouache on paper, 16-1/8 x 12-5/8 inches / 41 x 32 cm (Graphische Sammlung Albertina, Vienna)", "slug": "albrecht-d-rer-the-large-piece-of-turf-1503", "kind": "Video", "video_id": "znVEFfIdo1o", "keywords": "Albrecht D\u00fcrer, Durer, D\u00fcrer, The Large Piece of Turf, Great Piece of Turf, Meadow, Grass, Weeds, Nature, 1503, watercolor, gouache, Albertina, works on paper, German, Renaissance, art history, botanical, painting, Khan Academy, Smarthistory, Google Art Project, OER", "youtube_id": "znVEFfIdo1o", "readable_id": "albrecht-d-rer-the-large-piece-of-turf-1503"}, "xR9r38mZjK4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xR9r38mZjK4.mp4/xR9r38mZjK4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xR9r38mZjK4.mp4/xR9r38mZjK4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xR9r38mZjK4.m3u8/xR9r38mZjK4.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/interpreting_linear_functions/interpreting-linear-graphs/", "duration": 305, "id": "xR9r38mZjK4", "title": "Interpreting linear graphs word problems example 1", "format": "mp4", "description": "Interpreting Linear Graphs", "slug": "interpreting-linear-graphs", "kind": "Video", "video_id": "xR9r38mZjK4", "keywords": "slope, line, relationship", "youtube_id": "xR9r38mZjK4", "readable_id": "interpreting-linear-graphs"}, "piIcRV2dx7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/piIcRV2dx7E.mp4/piIcRV2dx7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/piIcRV2dx7E.mp4/piIcRV2dx7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/piIcRV2dx7E.m3u8/piIcRV2dx7E.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-order-of-operations/more-complicated-order-of-operations-example/", "duration": 320, "id": "piIcRV2dx7E", "title": "Order of operations: PEMDAS", "format": "mp4", "description": "Work through another challenging order of operations example with only positive numbers.", "slug": "more-complicated-order-of-operations-example", "kind": "Video", "video_id": "piIcRV2dx7E", "keywords": "order, of, operations, CC_6_EE_2_c", "youtube_id": "piIcRV2dx7E", "readable_id": "more-complicated-order-of-operations-example"}, "Q_CljEweGOE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q_CljEweGOE.mp4/Q_CljEweGOE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q_CljEweGOE.mp4/Q_CljEweGOE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q_CljEweGOE.m3u8/Q_CljEweGOE.m3u8"}, "duration": 341, "id": "Q_CljEweGOE", "title": "Introduction to fractions", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/fractions-pre-alg/understanding-fractions-pre-alg/introduction-to-fractions/", "slug": "introduction-to-fractions", "kind": "Video", "video_id": "Q_CljEweGOE", "keywords": "", "youtube_id": "Q_CljEweGOE", "readable_id": "introduction-to-fractions"}, "BbZB-WBVFSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BbZB-WBVFSk.mp4/BbZB-WBVFSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BbZB-WBVFSk.mp4/BbZB-WBVFSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BbZB-WBVFSk.m3u8/BbZB-WBVFSk.m3u8"}, "duration": 655, "id": "BbZB-WBVFSk", "title": "Amino acid structure", "format": "mp4", "description": "In this video, you'll learn about the general structure of amino acids, which include an amine group, a carboxylic acid group, and a unique side chain (R-group) attached to the alpha carbon. In addition, we'll explore where amino acids fit in terms of biological metabolism. By Tracy Kovach. ", "path": "khan/test-prep/mcat/chemical-processes/proteins/amino-acid-structure/", "slug": "amino-acid-structure", "kind": "Video", "video_id": "BbZB-WBVFSk", "keywords": "", "youtube_id": "BbZB-WBVFSk", "readable_id": "amino-acid-structure"}, "jCkhbKFZgLk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jCkhbKFZgLk.mp4/jCkhbKFZgLk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jCkhbKFZgLk.mp4/jCkhbKFZgLk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jCkhbKFZgLk.m3u8/jCkhbKFZgLk.m3u8"}, "duration": 302, "id": "jCkhbKFZgLk", "title": "Unit vectors", "format": "mp4", "description": "", "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/unit-vector-intro/", "slug": "unit-vector-intro", "kind": "Video", "video_id": "jCkhbKFZgLk", "keywords": "", "youtube_id": "jCkhbKFZgLk", "readable_id": "unit-vector-intro"}, "B4HXrb8cPQI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B4HXrb8cPQI.mp4/B4HXrb8cPQI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B4HXrb8cPQI.mp4/B4HXrb8cPQI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B4HXrb8cPQI.m3u8/B4HXrb8cPQI.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/sandal-nike/", "duration": 258, "id": "B4HXrb8cPQI", "title": "Victory (Nike) Adjusting Her Sandal, Temple of Athena Nike (Acropolis)", "format": "mp4", "description": "Nike Adjusting Her Sandal, from the south side of the parapet of the Temple of Athena Nike, Acropolis, Athens, Greece, c. 410 B.C.E., marble, 3' 6\" high (Acropolis Museum, Athens)\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "sandal-nike", "kind": "Video", "video_id": "B4HXrb8cPQI", "keywords": "relief, parapet, Temple, Athena, Nike, Greece, Classical, High Classical, marble, Acropolis, Athens", "youtube_id": "B4HXrb8cPQI", "readable_id": "sandal-nike"}, "PL9UYj2awDc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PL9UYj2awDc.mp4/PL9UYj2awDc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PL9UYj2awDc.mp4/PL9UYj2awDc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PL9UYj2awDc.m3u8/PL9UYj2awDc.m3u8"}, "duration": 290, "id": "PL9UYj2awDc", "title": "Solving equations with the distributive property 2", "format": "mp4", "description": "Solving equations with the distributive property 2", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/complicated_equations/solving-equations-with-the-distributive-property-2/", "slug": "solving-equations-with-the-distributive-property-2", "kind": "Video", "video_id": "PL9UYj2awDc", "keywords": "U02_L1_T2_we2:, Solving, equations, with, the, distributive, property, CC_39336_A-REI_1, CC_39336_A-REI_3", "youtube_id": "PL9UYj2awDc", "readable_id": "solving-equations-with-the-distributive-property-2"}, "2T6-eVRui1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2T6-eVRui1I.mp4/2T6-eVRui1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2T6-eVRui1I.mp4/2T6-eVRui1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2T6-eVRui1I.m3u8/2T6-eVRui1I.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/conserving-chris-ofili/", "duration": 250, "id": "2T6-eVRui1I", "title": "Conserving Chris Ofili", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nTate\u2019s Conservation Department works hard behind the scenes to ensure that future generations can enjoy the paintings, sculptures, and other works in the collection. But it\u2019s not just the old masters that get their attention\u2013because contemporary artists work in a diverse and sometimes unusual range of materials, the team often undertakes extensive research to help them and see how their works will hold up in the future. Join paintings conservator Natasha Walker as she explains how the team goes about conserving Chris Ofili\u2019s paintings by creating replicas of his works and subjecting them to drops, falls, cracks, and accelerated aging processes. With the help of the artist, his assistants, and even an elephant, the team\u2019s \u201cChris Ofilis\u201d might not be as good as the real thing, but they will help protect the originals well into the future.", "slug": "conserving-chris-ofili", "kind": "Video", "video_id": "2T6-eVRui1I", "keywords": "Tate", "youtube_id": "2T6-eVRui1I", "readable_id": "conserving-chris-ofili"}, "W_Q17tqw_7A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W_Q17tqw_7A.mp4/W_Q17tqw_7A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W_Q17tqw_7A.mp4/W_Q17tqw_7A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W_Q17tqw_7A.m3u8/W_Q17tqw_7A.m3u8"}, "duration": 299, "id": "W_Q17tqw_7A", "title": "Oxidative phosphorylation and chemiosmosis", "format": "mp4", "description": "Oxidative Phosphorylation and Chemiosmosis (along with slight correction of previous video)", "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/oxidative-phosphorylation-and-chemiosmosis/", "slug": "oxidative-phosphorylation-and-chemiosmosis", "kind": "Video", "video_id": "W_Q17tqw_7A", "keywords": "oxidative, phosphorylation, chemiosmosis", "youtube_id": "W_Q17tqw_7A", "readable_id": "oxidative-phosphorylation-and-chemiosmosis"}, "Wkjz1LlX1CQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wkjz1LlX1CQ.mp4/Wkjz1LlX1CQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wkjz1LlX1CQ.mp4/Wkjz1LlX1CQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wkjz1LlX1CQ.m3u8/Wkjz1LlX1CQ.m3u8"}, "duration": 280, "id": "Wkjz1LlX1CQ", "title": "Derivative and marginal cost", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/differentiation-application/derivative-and-marginal-cost/", "slug": "derivative-and-marginal-cost", "kind": "Video", "video_id": "Wkjz1LlX1CQ", "keywords": "", "youtube_id": "Wkjz1LlX1CQ", "readable_id": "derivative-and-marginal-cost"}, "odZrzqgOruE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/odZrzqgOruE.mp4/odZrzqgOruE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/odZrzqgOruE.mp4/odZrzqgOruE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/odZrzqgOruE.m3u8/odZrzqgOruE.m3u8"}, "duration": 217, "id": "odZrzqgOruE", "title": "Film meets art: Ken Loach inspired by William Hogarth", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nAs he completes his film Jimmy's Hall, a period drama set in 1930's Ireland, director Ken Loach reflects on the connections he sees between art and filmmaking. Join Loach as he explains why he wishes he could spend time with 19th century artist William Hogarth and the servants he painted (and not the fine dandies and aristocrats in other portraits at Tate Britain.)", "path": "ken-loach-inspired-by-hogarth/", "slug": "ken-loach-inspired-by-hogarth", "kind": "Video", "video_id": "odZrzqgOruE", "keywords": "Tate, Hogarth", "youtube_id": "odZrzqgOruE", "readable_id": "ken-loach-inspired-by-hogarth"}, "v9NLtiVt3XY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v9NLtiVt3XY.mp4/v9NLtiVt3XY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v9NLtiVt3XY.mp4/v9NLtiVt3XY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v9NLtiVt3XY.m3u8/v9NLtiVt3XY.m3u8"}, "duration": 139, "id": "v9NLtiVt3XY", "title": "Example: Ways to pick officers", "format": "mp4", "description": "How many ways can we pick officers for our organization?", "path": "khan/math/precalculus/prob_comb/combinatorics_precalc/permutations-and-combinations-2/", "slug": "permutations-and-combinations-2", "kind": "Video", "video_id": "v9NLtiVt3XY", "keywords": "U12_L2_T3_we2, Permutations, and, Combinations", "youtube_id": "v9NLtiVt3XY", "readable_id": "permutations-and-combinations-2"}, "dIGLhLMsy2U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dIGLhLMsy2U.mp4/dIGLhLMsy2U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dIGLhLMsy2U.mp4/dIGLhLMsy2U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dIGLhLMsy2U.m3u8/dIGLhLMsy2U.m3u8"}, "duration": 399, "id": "dIGLhLMsy2U", "title": "Geometric sequences", "format": "mp4", "description": "", "path": "khan/math/precalculus/seq_induction/precalc-geometric-sequences/geometric-sequences/", "slug": "geometric-sequences", "kind": "Video", "video_id": "dIGLhLMsy2U", "keywords": "", "youtube_id": "dIGLhLMsy2U", "readable_id": "geometric-sequences"}, "qasm7Mj7CYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qasm7Mj7CYg.mp4/qasm7Mj7CYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qasm7Mj7CYg.mp4/qasm7Mj7CYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qasm7Mj7CYg.m3u8/qasm7Mj7CYg.m3u8"}, "path": "khan/test-prep/mcat/cells/transport-across-a-cell-membrane/endocytosis-and-exocytosis/", "duration": 539, "id": "qasm7Mj7CYg", "title": "Endocytosis and Exocytosis", "format": "mp4", "description": "", "slug": "endocytosis-and-exocytosis", "kind": "Video", "video_id": "qasm7Mj7CYg", "keywords": "", "youtube_id": "qasm7Mj7CYg", "readable_id": "endocytosis-and-exocytosis"}, "4GcNzvILqtM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4GcNzvILqtM.mp4/4GcNzvILqtM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4GcNzvILqtM.mp4/4GcNzvILqtM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4GcNzvILqtM.m3u8/4GcNzvILqtM.m3u8"}, "duration": 199, "id": "4GcNzvILqtM", "title": "Squaring a binomial", "format": "mp4", "description": "Squaring a binomial", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/special-products-of-polynomials-1/", "slug": "special-products-of-polynomials-1", "kind": "Video", "video_id": "4GcNzvILqtM", "keywords": "U08_L2_T4_we1, Special, Products, of, Polynomials, CC_39336_A-APR_1", "youtube_id": "4GcNzvILqtM", "readable_id": "special-products-of-polynomials-1"}, "E2bu4bG9yw8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E2bu4bG9yw8.mp4/E2bu4bG9yw8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E2bu4bG9yw8.mp4/E2bu4bG9yw8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E2bu4bG9yw8.m3u8/E2bu4bG9yw8.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2009-may-3-5/", "duration": 113, "id": "E2bu4bG9yw8", "title": "5 Missing information", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-5", "kind": "Video", "video_id": "E2bu4bG9yw8", "keywords": "", "youtube_id": "E2bu4bG9yw8", "readable_id": "sat-2009-may-3-5"}, "rPLjSY00JlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rPLjSY00JlE.mp4/rPLjSY00JlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rPLjSY00JlE.mp4/rPLjSY00JlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rPLjSY00JlE.m3u8/rPLjSY00JlE.m3u8"}, "duration": 444, "id": "rPLjSY00JlE", "title": "Glucose insulin and diabetes", "format": "mp4", "description": "The basics of Type I and Type II diabetes", "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/glucose-insulin-and-diabetes/", "slug": "glucose-insulin-and-diabetes", "kind": "Video", "video_id": "rPLjSY00JlE", "keywords": "diabetes, insulin, glucose, marquee", "youtube_id": "rPLjSY00JlE", "readable_id": "glucose-insulin-and-diabetes"}, "ulyyusmpc9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ulyyusmpc9w.mp4/ulyyusmpc9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ulyyusmpc9w.mp4/ulyyusmpc9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ulyyusmpc9w.m3u8/ulyyusmpc9w.m3u8"}, "duration": 143, "id": "ulyyusmpc9w", "title": "Recognizing concavity exercise", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/concavity-inflection-points/recognizing-concavity-exercise/", "slug": "recognizing-concavity-exercise", "kind": "Video", "video_id": "ulyyusmpc9w", "keywords": "", "youtube_id": "ulyyusmpc9w", "readable_id": "recognizing-concavity-exercise"}, "m0T2miip8jo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m0T2miip8jo.mp4/m0T2miip8jo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m0T2miip8jo.mp4/m0T2miip8jo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m0T2miip8jo.m3u8/m0T2miip8jo.m3u8"}, "duration": 401, "id": "m0T2miip8jo", "title": "Heritability", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/behavior-and-genetics/heritability/", "slug": "heritability", "kind": "Video", "video_id": "m0T2miip8jo", "keywords": "", "youtube_id": "m0T2miip8jo", "readable_id": "heritability"}, "tSHitjFIjd8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tSHitjFIjd8.mp4/tSHitjFIjd8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tSHitjFIjd8.mp4/tSHitjFIjd8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tSHitjFIjd8.m3u8/tSHitjFIjd8.m3u8"}, "duration": 570, "id": "tSHitjFIjd8", "title": "45-45-90 triangles", "format": "mp4", "description": "Introduction to 45-45-90 Triangles", "path": "khan/math/geometry/right_triangles_topic/special_right_triangles/45-45-90-triangles/", "slug": "45-45-90-triangles", "kind": "Video", "video_id": "tSHitjFIjd8", "keywords": "Geometry, Math, Khan", "youtube_id": "tSHitjFIjd8", "readable_id": "45-45-90-triangles"}, "B8NqcLiPlg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B8NqcLiPlg0.mp4/B8NqcLiPlg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B8NqcLiPlg0.mp4/B8NqcLiPlg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B8NqcLiPlg0.m3u8/B8NqcLiPlg0.m3u8"}, "duration": 163, "id": "B8NqcLiPlg0", "title": "\"Fashion Plate\" with Pierre Terjanian", "format": "mp4", "description": "Met curator Pierre Terjanian on illusion in Kolman Helmschmid\u2019s Portions of a costume armor.\n\nThis armor reproduces in steel the extravagant puffed and slashed costume of the German Landsknechte (mercenary infantry troops). The matching pieces are preserved in the Mus\u00e9e de l'Arm\u00e9e, Paris. Coming from the Radziwill armory in Nesvizh in present-day Belarus, this armor may have been made for Jerzy Herkules Radziwill (1480\u20131541), a powerful Polish nobleman.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "fashionplate/", "slug": "fashionplate", "kind": "Video", "video_id": "B8NqcLiPlg0", "keywords": "arms and armor, authority, body, control, fashion, metal, Europe", "youtube_id": "B8NqcLiPlg0", "readable_id": "fashionplate"}, "jRCdXNfngLc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jRCdXNfngLc.mp4/jRCdXNfngLc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jRCdXNfngLc.mp4/jRCdXNfngLc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jRCdXNfngLc.m3u8/jRCdXNfngLc.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/gene-control/jacob-monod-the-lac-operon/", "duration": 371, "id": "jRCdXNfngLc", "title": "Jacob-Monod: The Lac operon", "format": "mp4", "description": "", "slug": "jacob-monod-the-lac-operon", "kind": "Video", "video_id": "jRCdXNfngLc", "keywords": "", "youtube_id": "jRCdXNfngLc", "readable_id": "jacob-monod-the-lac-operon"}, "VBcEz8bVbL0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VBcEz8bVbL0.mp4/VBcEz8bVbL0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VBcEz8bVbL0.mp4/VBcEz8bVbL0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VBcEz8bVbL0.m3u8/VBcEz8bVbL0.m3u8"}, "duration": 326, "id": "VBcEz8bVbL0", "title": "Sleep disorders", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/sleep-and-consciousness/sleep-disorders/", "slug": "sleep-disorders", "kind": "Video", "video_id": "VBcEz8bVbL0", "keywords": "", "youtube_id": "VBcEz8bVbL0", "readable_id": "sleep-disorders"}, "CKR854hjydM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CKR854hjydM.mp4/CKR854hjydM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CKR854hjydM.mp4/CKR854hjydM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CKR854hjydM.m3u8/CKR854hjydM.m3u8"}, "path": "khan/partner-content/big-history-project/big-bang/the-big-bang/bhp-what-emerged-from-the-big-bang/", "duration": 799, "id": "CKR854hjydM", "title": "What Emerged from the Big Bang?", "format": "mp4", "description": "David Christian explains how the Big Bang theory developed by looking at the evidence that supports it.", "slug": "bhp-what-emerged-from-the-big-bang", "kind": "Video", "video_id": "CKR854hjydM", "keywords": "", "youtube_id": "CKR854hjydM", "readable_id": "bhp-what-emerged-from-the-big-bang"}, "T_b9U5gn_Zk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T_b9U5gn_Zk.mp4/T_b9U5gn_Zk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T_b9U5gn_Zk.mp4/T_b9U5gn_Zk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T_b9U5gn_Zk.m3u8/T_b9U5gn_Zk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/heart-attack-myocardial-infarction-pathophysiology/", "duration": 709, "id": "T_b9U5gn_Zk", "title": "Heart attack (myocardial infarction) pathophysiology", "format": "mp4", "description": "", "slug": "heart-attack-myocardial-infarction-pathophysiology", "kind": "Video", "video_id": "T_b9U5gn_Zk", "keywords": "", "youtube_id": "T_b9U5gn_Zk", "readable_id": "heart-attack-myocardial-infarction-pathophysiology"}, "vkhYFml0w6c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vkhYFml0w6c.mp4/vkhYFml0w6c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vkhYFml0w6c.mp4/vkhYFml0w6c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vkhYFml0w6c.m3u8/vkhYFml0w6c.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/why-we-do-the-same-thing-to-both-sides-multi-step-equations/", "duration": 456, "id": "vkhYFml0w6c", "title": "Why we do the same thing to both sides: Multi-step equations", "format": "mp4", "description": "", "slug": "why-we-do-the-same-thing-to-both-sides-multi-step-equations", "kind": "Video", "video_id": "vkhYFml0w6c", "keywords": "Why, we, do, the, same, thing, to, both, sides, multi, step, equations", "youtube_id": "vkhYFml0w6c", "readable_id": "why-we-do-the-same-thing-to-both-sides-multi-step-equations"}, "YOYQys52sPs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YOYQys52sPs.mp4/YOYQys52sPs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YOYQys52sPs.mp4/YOYQys52sPs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YOYQys52sPs.m3u8/YOYQys52sPs.m3u8"}, "duration": 623, "id": "YOYQys52sPs", "title": "Triangle area proofs", "format": "mp4", "description": "Proving that the area of any triangle is 1/2 b x h", "path": "khan/math/geometry/basic-geometry/perimeter_area_tutorial/triangle-area-proofs/", "slug": "triangle-area-proofs", "kind": "Video", "video_id": "YOYQys52sPs", "keywords": "Triangle, Area", "youtube_id": "YOYQys52sPs", "readable_id": "triangle-area-proofs"}, "_NWc3C3cTNA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_NWc3C3cTNA.mp4/_NWc3C3cTNA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_NWc3C3cTNA.mp4/_NWc3C3cTNA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_NWc3C3cTNA.m3u8/_NWc3C3cTNA.m3u8"}, "duration": 587, "id": "_NWc3C3cTNA", "title": "Different way to determine time in air", "format": "mp4", "description": "Another way to determine time in the air given an initial vertical velocity", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/different-way-to-determine-time-in-air/", "slug": "different-way-to-determine-time-in-air", "kind": "Video", "video_id": "_NWc3C3cTNA", "keywords": "physics, projectile, motion, kinematics", "youtube_id": "_NWc3C3cTNA", "readable_id": "different-way-to-determine-time-in-air"}, "PF6_y4zYVec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PF6_y4zYVec.mp4/PF6_y4zYVec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PF6_y4zYVec.mp4/PF6_y4zYVec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PF6_y4zYVec.m3u8/PF6_y4zYVec.m3u8"}, "duration": 243, "id": "PF6_y4zYVec", "title": "Figuring out which function is the derivative", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/figuring-out-which-function-is-the-the-derivative/", "slug": "figuring-out-which-function-is-the-the-derivative", "kind": "Video", "video_id": "PF6_y4zYVec", "keywords": "", "youtube_id": "PF6_y4zYVec", "readable_id": "figuring-out-which-function-is-the-the-derivative"}, "hTzI6x4fmGI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hTzI6x4fmGI.mp4/hTzI6x4fmGI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hTzI6x4fmGI.mp4/hTzI6x4fmGI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hTzI6x4fmGI.m3u8/hTzI6x4fmGI.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/leukemia-diagnosis/", "duration": 597, "id": "hTzI6x4fmGI", "title": "Leukemia diagnosis", "format": "mp4", "description": "Often health care professionals conduct a variety of blood tests to determine if someone has leukemia. Leukemia patients often have decreased levels of platelets, white blood cells (WBCs), red blood cells (RBCs), hematocrit, and hemoglobin. Other tests such as bone marrow aspirations can reveal an increase in immature blast cells. Learn how health professionals classify leukemia by staining sample tissue with a dye and by looking for chromosome translocation.", "slug": "leukemia-diagnosis", "kind": "Video", "video_id": "hTzI6x4fmGI", "keywords": "", "youtube_id": "hTzI6x4fmGI", "readable_id": "leukemia-diagnosis"}, "6hri9k_2R8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6hri9k_2R8o.mp4/6hri9k_2R8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6hri9k_2R8o.mp4/6hri9k_2R8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6hri9k_2R8o.m3u8/6hri9k_2R8o.m3u8"}, "duration": 397, "id": "6hri9k_2R8o", "title": "Mean value theorem", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/mean_value_theorem/mean-value-theorem-1/", "slug": "mean-value-theorem-1", "kind": "Video", "video_id": "6hri9k_2R8o", "keywords": "", "youtube_id": "6hri9k_2R8o", "readable_id": "mean-value-theorem-1"}, "DtWovvMnPrk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DtWovvMnPrk.mp4/DtWovvMnPrk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DtWovvMnPrk.mp4/DtWovvMnPrk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DtWovvMnPrk.m3u8/DtWovvMnPrk.m3u8"}, "duration": 368, "id": "DtWovvMnPrk", "title": "Redistributing trail mix", "format": "mp4", "description": "Given a dot plot with different measurements of trail mix in bags, find the amount of trail mix each bag would contain if the total amount in all the bags were redistributed equally.", "path": "redistributing-trail-mix/", "slug": "redistributing-trail-mix", "kind": "Video", "video_id": "DtWovvMnPrk", "keywords": "", "youtube_id": "DtWovvMnPrk", "readable_id": "redistributing-trail-mix"}, "emdHj6WodLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/emdHj6WodLw.mp4/emdHj6WodLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/emdHj6WodLw.mp4/emdHj6WodLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/emdHj6WodLw.m3u8/emdHj6WodLw.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/old-projectile-motion/projectile-motion-part-2/", "duration": 553, "id": "emdHj6WodLw", "title": "Projectile motion (part 2)", "format": "mp4", "description": "A derivation of a new motion equation", "slug": "projectile-motion-part-2", "kind": "Video", "video_id": "emdHj6WodLw", "keywords": "velocity, acceleration, gravity, physics, math, khan", "youtube_id": "emdHj6WodLw", "readable_id": "projectile-motion-part-2"}, "efQjBTPhS_0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/efQjBTPhS_0.mp4/efQjBTPhS_0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/efQjBTPhS_0.mp4/efQjBTPhS_0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/efQjBTPhS_0.m3u8/efQjBTPhS_0.m3u8"}, "duration": 415, "id": "efQjBTPhS_0", "title": "Digital recorder/player connections", "format": "mp4", "description": "In this video we attach and wire a digital voice recorder to Bit-zee.", "path": "khan/science/discoveries-projects/robots/bit-zee/hacking-and-attaching-a-digital-recorder-player/", "slug": "hacking-and-attaching-a-digital-recorder-player", "kind": "Video", "video_id": "efQjBTPhS_0", "keywords": "Hack, digital voice recorder, make, adurino, diy,", "youtube_id": "efQjBTPhS_0", "readable_id": "hacking-and-attaching-a-digital-recorder-player"}, "_fAgls5bGXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_fAgls5bGXs.mp4/_fAgls5bGXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_fAgls5bGXs.mp4/_fAgls5bGXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_fAgls5bGXs.m3u8/_fAgls5bGXs.m3u8"}, "path": "khan/humanities/medieval-world/byzantine1/venice-ravenna/saint-marks/", "duration": 293, "id": "_fAgls5bGXs", "title": "Saint Mark's Basilica, Venice", "format": "mp4", "description": "Saint Mark's Basilica, Venice, begun 1063 and Anastasis (The Harrowing of Hell) mosaic, c. 1180-1200, Middle Byzantine. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "saint-marks", "kind": "Video", "video_id": "_fAgls5bGXs", "keywords": "Byzantine, architecture, Venice", "youtube_id": "_fAgls5bGXs", "readable_id": "saint-marks"}, "XGWL9jfPHJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XGWL9jfPHJ8.mp4/XGWL9jfPHJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XGWL9jfPHJ8.mp4/XGWL9jfPHJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XGWL9jfPHJ8.m3u8/XGWL9jfPHJ8.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/meiosis/phases-of-meiosis-i/", "duration": 585, "id": "XGWL9jfPHJ8", "title": "Phases of Meiosis I", "format": "mp4", "description": "Phases of Meiosis I", "slug": "phases-of-meiosis-i", "kind": "Video", "video_id": "XGWL9jfPHJ8", "keywords": "", "youtube_id": "XGWL9jfPHJ8", "readable_id": "phases-of-meiosis-i"}, "CFBKfgGTP98": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CFBKfgGTP98.mp4/CFBKfgGTP98.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CFBKfgGTP98.mp4/CFBKfgGTP98.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CFBKfgGTP98.m3u8/CFBKfgGTP98.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/correction-2-propylheptane-should-never-be-the-name/", "duration": 176, "id": "CFBKfgGTP98", "title": "Correction - 2-propylheptane should never be the name!", "format": "mp4", "description": "Correction - 2-Propylheptane should never be the name!", "slug": "correction-2-propylheptane-should-never-be-the-name", "kind": "Video", "video_id": "CFBKfgGTP98", "keywords": "Correction, 2-Propylheptane, should, never, be, the, name!", "youtube_id": "CFBKfgGTP98", "readable_id": "correction-2-propylheptane-should-never-be-the-name"}, "pXo0bG4iAyg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pXo0bG4iAyg.mp4/pXo0bG4iAyg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pXo0bG4iAyg.mp4/pXo0bG4iAyg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pXo0bG4iAyg.m3u8/pXo0bG4iAyg.m3u8"}, "path": "khan/math/precalculus/seq_induction/precalc-geometric-sequences/geometric-sequences-introduction/", "duration": 645, "id": "pXo0bG4iAyg", "title": "Introduction to geometric sequences", "format": "mp4", "description": "An introduction to geometric sequences", "slug": "geometric-sequences-introduction", "kind": "Video", "video_id": "pXo0bG4iAyg", "keywords": "Geometric, Sequences, (Introduction), CC_39336_A-SSE_4", "youtube_id": "pXo0bG4iAyg", "readable_id": "geometric-sequences-introduction"}, "4Bx06GFyhUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Bx06GFyhUA.mp4/4Bx06GFyhUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Bx06GFyhUA.mp4/4Bx06GFyhUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Bx06GFyhUA.m3u8/4Bx06GFyhUA.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/comparing-interpreting-functions/comparing-features-of-functions-2-example-2/", "duration": 239, "id": "4Bx06GFyhUA", "title": "Comparing features of functions (example 2)", "format": "mp4", "description": "", "slug": "comparing-features-of-functions-2-example-2", "kind": "Video", "video_id": "4Bx06GFyhUA", "keywords": "", "youtube_id": "4Bx06GFyhUA", "readable_id": "comparing-features-of-functions-2-example-2"}, "9R9vPcPyUwo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9R9vPcPyUwo.mp4/9R9vPcPyUwo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9R9vPcPyUwo.mp4/9R9vPcPyUwo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9R9vPcPyUwo.m3u8/9R9vPcPyUwo.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/dvd_player/what-is-inside-a-dvd-player-1-of-5/", "duration": 230, "id": "9R9vPcPyUwo", "title": "What is inside a DVD player? (1 of 5)", "format": "mp4", "description": "In this video we explore the housing and functions of a DVD player.", "slug": "what-is-inside-a-dvd-player-1-of-5", "kind": "Video", "video_id": "9R9vPcPyUwo", "keywords": "Housing, DVD, stamped steel, injection molding, control board, power supply, digital video disk ", "youtube_id": "9R9vPcPyUwo", "readable_id": "what-is-inside-a-dvd-player-1-of-5"}, "ePh8iCbcXfA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ePh8iCbcXfA.mp4/ePh8iCbcXfA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ePh8iCbcXfA.mp4/ePh8iCbcXfA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ePh8iCbcXfA.m3u8/ePh8iCbcXfA.m3u8"}, "duration": 317, "id": "ePh8iCbcXfA", "title": "Formal and alternate form of the derivative example 1", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/formal-and-alternate-form-of-the-derivative-example-1/", "slug": "formal-and-alternate-form-of-the-derivative-example-1", "kind": "Video", "video_id": "ePh8iCbcXfA", "keywords": "", "youtube_id": "ePh8iCbcXfA", "readable_id": "formal-and-alternate-form-of-the-derivative-example-1"}, "wyTjyQMVvc4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wyTjyQMVvc4.mp4/wyTjyQMVvc4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wyTjyQMVvc4.mp4/wyTjyQMVvc4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wyTjyQMVvc4.m3u8/wyTjyQMVvc4.m3u8"}, "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals/line-integral-example-2-part-1/", "duration": 773, "id": "wyTjyQMVvc4", "title": "Line integral example 2 (part 1)", "format": "mp4", "description": "Line integral over a closed path (part 1)", "slug": "line-integral-example-2-part-1", "kind": "Video", "video_id": "wyTjyQMVvc4", "keywords": "line, integral, closed, path, calculus", "youtube_id": "wyTjyQMVvc4", "readable_id": "line-integral-example-2-part-1"}, "2GQTfpDE9DQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2GQTfpDE9DQ.mp4/2GQTfpDE9DQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2GQTfpDE9DQ.mp4/2GQTfpDE9DQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2GQTfpDE9DQ.m3u8/2GQTfpDE9DQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/coulombs-law/", "duration": 711, "id": "2GQTfpDE9DQ", "title": "Coulomb's Law", "format": "mp4", "description": "", "slug": "coulombs-law", "kind": "Video", "video_id": "2GQTfpDE9DQ", "keywords": "", "youtube_id": "2GQTfpDE9DQ", "readable_id": "coulombs-law"}, "qJCoXVdPowo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qJCoXVdPowo.mp4/qJCoXVdPowo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qJCoXVdPowo.mp4/qJCoXVdPowo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qJCoXVdPowo.m3u8/qJCoXVdPowo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-non-cyanotic-heart-diseases/what-is-eisenmenger-syndrome/", "duration": 601, "id": "qJCoXVdPowo", "title": "What is Eisenmenger syndrome?", "format": "mp4", "description": "Eisenmenger's syndrome is when blood in the heart shunts from right-to-left due to increased pressure in the right ventricle. This increased pressure is usually caused by extra blood flowing through the blood vessels of the lungs, originally caused by left-to-right shunting of blood from a hole in the heart wall.", "slug": "what-is-eisenmenger-syndrome", "kind": "Video", "video_id": "qJCoXVdPowo", "keywords": "", "youtube_id": "qJCoXVdPowo", "readable_id": "what-is-eisenmenger-syndrome"}, "669H2TyI9oo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/669H2TyI9oo.mp4/669H2TyI9oo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/669H2TyI9oo.mp4/669H2TyI9oo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/669H2TyI9oo.m3u8/669H2TyI9oo.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction/diels-alder-ii-endo-vs-exo/", "duration": 831, "id": "669H2TyI9oo", "title": "Diels-Alder II: Endo vs exo", "format": "mp4", "description": "", "slug": "diels-alder-ii-endo-vs-exo", "kind": "Video", "video_id": "669H2TyI9oo", "keywords": "", "youtube_id": "669H2TyI9oo", "readable_id": "diels-alder-ii-endo-vs-exo"}, "oapNz_NNGh4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oapNz_NNGh4.mp4/oapNz_NNGh4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oapNz_NNGh4.mp4/oapNz_NNGh4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oapNz_NNGh4.m3u8/oapNz_NNGh4.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-10-oil-imports/", "duration": 213, "id": "oapNz_NNGh4", "title": "10 Oil imports", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-10-oil-imports", "kind": "Video", "video_id": "oapNz_NNGh4", "keywords": "", "youtube_id": "oapNz_NNGh4", "readable_id": "sat-10-oil-imports"}, "qWfwRbSrQMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qWfwRbSrQMU.mp4/qWfwRbSrQMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qWfwRbSrQMU.mp4/qWfwRbSrQMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qWfwRbSrQMU.m3u8/qWfwRbSrQMU.m3u8"}, "duration": 230, "id": "qWfwRbSrQMU", "title": "Alzheimer's disease and Korsakoff's syndrome", "format": "mp4", "description": "Learn about how Alzheimer's Disease and Korsakoff's Syndrome affect memory.", "path": "khan/test-prep/mcat/processing-the-environment/memory/alzheimer-s-disease-and-korsakoff-s-syndrome/", "slug": "alzheimer-s-disease-and-korsakoff-s-syndrome", "kind": "Video", "video_id": "qWfwRbSrQMU", "keywords": "", "youtube_id": "qWfwRbSrQMU", "readable_id": "alzheimer-s-disease-and-korsakoff-s-syndrome"}, "9ODhKqFaugQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9ODhKqFaugQ.mp4/9ODhKqFaugQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9ODhKqFaugQ.mp4/9ODhKqFaugQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9ODhKqFaugQ.m3u8/9ODhKqFaugQ.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/van-eyck-portrait-of-giovanni-arnolfini-and-his-wife-1434/", "duration": 432, "id": "9ODhKqFaugQ", "title": "Van Eyck, The Arnolfini Portrait", "format": "mp4", "description": "Jan Van Eyck, The Arnolfini Portrait, tempera and oil on wood, 1434 (National Gallery, London). Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "van-eyck-portrait-of-giovanni-arnolfini-and-his-wife-1434", "kind": "Video", "video_id": "9ODhKqFaugQ", "keywords": "arnolfini, van eyck, art history, smarthistory, Art history History of art", "youtube_id": "9ODhKqFaugQ", "readable_id": "van-eyck-portrait-of-giovanni-arnolfini-and-his-wife-1434"}, "x6FFjiHPlSI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x6FFjiHPlSI.mp4/x6FFjiHPlSI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x6FFjiHPlSI.mp4/x6FFjiHPlSI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x6FFjiHPlSI.m3u8/x6FFjiHPlSI.m3u8"}, "duration": 305, "id": "x6FFjiHPlSI", "title": "Multiplying and simplifying rational expressions", "format": "mp4", "description": "Multiplying and Simplifying Rational Expressions", "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying-and-simplifying-rational-expressions/", "slug": "multiplying-and-simplifying-rational-expressions", "kind": "Video", "video_id": "x6FFjiHPlSI", "keywords": "u15_l1_t2_we1, Multiplying, and, Simplifying, Rational, Expressions, CC_39336_A-SSE_2", "youtube_id": "x6FFjiHPlSI", "readable_id": "multiplying-and-simplifying-rational-expressions"}, "d643aaG5qyI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d643aaG5qyI.mp4/d643aaG5qyI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d643aaG5qyI.mp4/d643aaG5qyI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d643aaG5qyI.m3u8/d643aaG5qyI.m3u8"}, "duration": 804, "id": "d643aaG5qyI", "title": "Optical activity", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/optical-activity/", "slug": "optical-activity", "kind": "Video", "video_id": "d643aaG5qyI", "keywords": "", "youtube_id": "d643aaG5qyI", "readable_id": "optical-activity"}, "EYyYjwp10cM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EYyYjwp10cM.mp4/EYyYjwp10cM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EYyYjwp10cM.mp4/EYyYjwp10cM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EYyYjwp10cM.m3u8/EYyYjwp10cM.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-4-12/", "duration": 44, "id": "EYyYjwp10cM", "title": "12 Composite functions", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-12", "kind": "Video", "video_id": "EYyYjwp10cM", "keywords": "", "youtube_id": "EYyYjwp10cM", "readable_id": "sat-2010-may-4-12"}, "HnfBFeLunk4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HnfBFeLunk4.mp4/HnfBFeLunk4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HnfBFeLunk4.mp4/HnfBFeLunk4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HnfBFeLunk4.m3u8/HnfBFeLunk4.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/fluids-part-11/", "duration": 319, "id": "HnfBFeLunk4", "title": "Fluids (part 11)", "format": "mp4", "description": "Clarification of the problem in part 10", "slug": "fluids-part-11", "kind": "Video", "video_id": "HnfBFeLunk4", "keywords": "physics, bernoulli's, equation, pressure", "youtube_id": "HnfBFeLunk4", "readable_id": "fluids-part-11"}, "I2dbzp0zHuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I2dbzp0zHuw.mp4/I2dbzp0zHuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I2dbzp0zHuw.mp4/I2dbzp0zHuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I2dbzp0zHuw.m3u8/I2dbzp0zHuw.m3u8"}, "duration": 505, "id": "I2dbzp0zHuw", "title": "Closed curve line integrals of conservative vector fields", "format": "mp4", "description": "Showing that the line integral along closed curves of conservative vector fields is zero", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/closed-curve-line-integrals-of-conservative-vector-fields/", "slug": "closed-curve-line-integrals-of-conservative-vector-fields", "kind": "Video", "video_id": "I2dbzp0zHuw", "keywords": "line, integral, conservative, vector, field", "youtube_id": "I2dbzp0zHuw", "readable_id": "closed-curve-line-integrals-of-conservative-vector-fields"}, "A44_Sqifi0U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A44_Sqifi0U.mp4/A44_Sqifi0U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A44_Sqifi0U.mp4/A44_Sqifi0U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A44_Sqifi0U.m3u8/A44_Sqifi0U.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/whats-in-sweat-holocrine-apocrine-and-merocrine-glands/", "duration": 386, "id": "A44_Sqifi0U", "title": "What's in sweat? (Holocrine, Apocrine, Merocrine Glands)", "format": "mp4", "description": "", "slug": "whats-in-sweat-holocrine-apocrine-and-merocrine-glands", "kind": "Video", "video_id": "A44_Sqifi0U", "keywords": "", "youtube_id": "A44_Sqifi0U", "readable_id": "whats-in-sweat-holocrine-apocrine-and-merocrine-glands"}, "3fEIvVnGUcI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3fEIvVnGUcI.mp4/3fEIvVnGUcI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3fEIvVnGUcI.mp4/3fEIvVnGUcI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3fEIvVnGUcI.m3u8/3fEIvVnGUcI.m3u8"}, "path": "khan/college-admissions/explore-college-options/introduction-eco/sal-khans-story-exploring-college-options/", "duration": 181, "id": "3fEIvVnGUcI", "title": "Sal Khan's story: Exploring college options", "format": "mp4", "description": "", "slug": "sal-khans-story-exploring-college-options", "kind": "Video", "video_id": "3fEIvVnGUcI", "keywords": "", "youtube_id": "3fEIvVnGUcI", "readable_id": "sal-khans-story-exploring-college-options"}, "iI_2Piwn_og": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iI_2Piwn_og.mp4/iI_2Piwn_og.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iI_2Piwn_og.mp4/iI_2Piwn_og.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iI_2Piwn_og.m3u8/iI_2Piwn_og.m3u8"}, "duration": 793, "id": "iI_2Piwn_og", "title": "Absolute value inequalities", "format": "mp4", "description": "Absolute Value Inequalities", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/absolute-value-inequalities/", "slug": "absolute-value-inequalities", "kind": "Video", "video_id": "iI_2Piwn_og", "keywords": "Absolute, Value, Inequalities", "youtube_id": "iI_2Piwn_og", "readable_id": "absolute-value-inequalities"}, "yC3vsJJIcE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yC3vsJJIcE0.mp4/yC3vsJJIcE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yC3vsJJIcE0.mp4/yC3vsJJIcE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yC3vsJJIcE0.m3u8/yC3vsJJIcE0.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/lakeshia-grant/lakeshia-grant-1/", "duration": 216, "id": "yC3vsJJIcE0", "title": "Business and Family", "format": "mp4", "description": "LaKeshia Grant founded Virtual Enterprise Architects as a place where she would have a voice and create an environment where others could be heard. She discusses her industry and encourages would-be entrepreneurs to incorporate their core values in their business. Grant\u2019s mother may not know exactly what the information technology business does, but she instilled a strong work ethic and the spirit of entrepreneurship in her daughter.\u00a0", "slug": "lakeshia-grant-1", "kind": "Video", "video_id": "yC3vsJJIcE0", "keywords": "", "youtube_id": "yC3vsJJIcE0", "readable_id": "lakeshia-grant-1"}, "qoHva5i85Qo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qoHva5i85Qo.mp4/qoHva5i85Qo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qoHva5i85Qo.mp4/qoHva5i85Qo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qoHva5i85Qo.m3u8/qoHva5i85Qo.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/spain/vel-zquez-vulcan-s-forge-c-1630/", "duration": 203, "id": "qoHva5i85Qo", "title": "Vel\u00e1zquez, Vulcan's Forge", "format": "mp4", "description": "Diego Vel\u00e1zquez, Vulcan's Forge, c. 1630, oil on canvas, 223 cm x 290 cm (Museo del Prado, Madrid) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "vel-zquez-vulcan-s-forge-c-1630", "kind": "Video", "video_id": "qoHva5i85Qo", "keywords": "Velasquez, VulcanForge, Smarthistory, Art History, Baroque", "youtube_id": "qoHva5i85Qo", "readable_id": "vel-zquez-vulcan-s-forge-c-1630"}, "ynIq9IxbVso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ynIq9IxbVso.mp4/ynIq9IxbVso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ynIq9IxbVso.mp4/ynIq9IxbVso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ynIq9IxbVso.m3u8/ynIq9IxbVso.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/comparing-interpreting-functions/interpreting-features-of-functions-2-example-2/", "duration": 198, "id": "ynIq9IxbVso", "title": "Interpreting features of functions (example 2)", "format": "mp4", "description": "", "slug": "interpreting-features-of-functions-2-example-2", "kind": "Video", "video_id": "ynIq9IxbVso", "keywords": "", "youtube_id": "ynIq9IxbVso", "readable_id": "interpreting-features-of-functions-2-example-2"}, "Zxm4Xxvzohk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zxm4Xxvzohk.mp4/Zxm4Xxvzohk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zxm4Xxvzohk.mp4/Zxm4Xxvzohk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zxm4Xxvzohk.m3u8/Zxm4Xxvzohk.m3u8"}, "duration": 306, "id": "Zxm4Xxvzohk", "title": "Conditional probability warmup", "format": "mp4", "description": "Conditional probability visualized using trees.", "path": "khan/computing/computer-science/cryptography/random-algorithms-probability/bayes-theorem-visualized/", "slug": "bayes-theorem-visualized", "kind": "Video", "video_id": "Zxm4Xxvzohk", "keywords": "bayes theorem, conditional probability, probability", "youtube_id": "Zxm4Xxvzohk", "readable_id": "bayes-theorem-visualized"}, "LqyA96oYtwE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LqyA96oYtwE.mp4/LqyA96oYtwE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LqyA96oYtwE.mp4/LqyA96oYtwE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LqyA96oYtwE.m3u8/LqyA96oYtwE.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/log_functions/logarithmic-function-graphs/", "duration": 388, "id": "LqyA96oYtwE", "title": "Graphs of logarithmic functions", "format": "mp4", "description": "", "slug": "logarithmic-function-graphs", "kind": "Video", "video_id": "LqyA96oYtwE", "keywords": "", "youtube_id": "LqyA96oYtwE", "readable_id": "logarithmic-function-graphs"}, "bAUT_Pux73w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bAUT_Pux73w.mp4/bAUT_Pux73w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bAUT_Pux73w.mp4/bAUT_Pux73w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bAUT_Pux73w.m3u8/bAUT_Pux73w.m3u8"}, "duration": 432, "id": "bAUT_Pux73w", "title": "Age word problems 1", "format": "mp4", "description": "Age word problems", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/age-word-problems-1/", "slug": "age-word-problems-1", "kind": "Video", "video_id": "bAUT_Pux73w", "keywords": "algebra, word, problems, CC_7_RP_2_c", "youtube_id": "bAUT_Pux73w", "readable_id": "age-word-problems-1"}, "vhMl755vR5Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vhMl755vR5Q.mp4/vhMl755vR5Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vhMl755vR5Q.mp4/vhMl755vR5Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vhMl755vR5Q.m3u8/vhMl755vR5Q.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/disc-method-washer-method-for-rotation-around-x-axis/", "duration": 547, "id": "vhMl755vR5Q", "title": "Disc method (washer method) for rotation around x-axis", "format": "mp4", "description": "Finding the volume of a solid of revolution that is defined between two functions", "slug": "disc-method-washer-method-for-rotation-around-x-axis", "kind": "Video", "video_id": "vhMl755vR5Q", "keywords": "", "youtube_id": "vhMl755vR5Q", "readable_id": "disc-method-washer-method-for-rotation-around-x-axis"}, "LRlVWC0FMQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LRlVWC0FMQc.mp4/LRlVWC0FMQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LRlVWC0FMQc.mp4/LRlVWC0FMQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LRlVWC0FMQc.m3u8/LRlVWC0FMQc.m3u8"}, "duration": 203, "id": "LRlVWC0FMQc", "title": "Absolute value equations example 1", "format": "mp4", "description": "Absolute Value Equations", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute-value-equations-example-1/", "slug": "absolute-value-equations-example-1", "kind": "Video", "video_id": "LRlVWC0FMQc", "keywords": "u10_l3_t2_we1, Absolute, Value, Equations, CC_6_NS_7_c, CC_7_NS_1_c, CC_39336_F-IF_7_b", "youtube_id": "LRlVWC0FMQc", "readable_id": "absolute-value-equations-example-1"}, "iTytvWs5nV8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iTytvWs5nV8.mp4/iTytvWs5nV8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iTytvWs5nV8.mp4/iTytvWs5nV8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iTytvWs5nV8.m3u8/iTytvWs5nV8.m3u8"}, "duration": 186, "id": "iTytvWs5nV8", "title": "An Art of Attraction: The Electrotyping Process", "format": "mp4", "description": "Tiffany and Company\u2019s famous Bryant Vase was meticulously crafted by highly skilled artisans\u00ad\u00ad\u2014among them, Augustus Saint-Gaudens and Eugene J. Soligny\u2014who worked the silver for more than a year. Curator Ellenor Alcorn describes how Tiffany then used the fascinating nineteenth-century process of electrotyping to create presentation copies.\u00a0\n\nView this work on metmuseum.org.\u00a0", "path": "electrotyping/", "slug": "electrotyping", "kind": "Video", "video_id": "iTytvWs5nV8", "keywords": "ornate, electrotyping, artisan ", "youtube_id": "iTytvWs5nV8", "readable_id": "electrotyping"}, "DP4-S716q4E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DP4-S716q4E.mp4/DP4-S716q4E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DP4-S716q4E.mp4/DP4-S716q4E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DP4-S716q4E.m3u8/DP4-S716q4E.m3u8"}, "path": "khan/humanities/art-asia/himalayas/tibet/views-of-tibet/", "duration": 426, "id": "DP4-S716q4E", "title": "Views of Tibet", "format": "mp4", "description": "View important Buddhist sites and rituals in Tibet. Note: This video does not include narration.", "slug": "views-of-tibet", "kind": "Video", "video_id": "DP4-S716q4E", "keywords": "Tibet", "youtube_id": "DP4-S716q4E", "readable_id": "views-of-tibet"}, "3gPINuYv1T8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3gPINuYv1T8.mp4/3gPINuYv1T8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3gPINuYv1T8.mp4/3gPINuYv1T8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3gPINuYv1T8.m3u8/3gPINuYv1T8.m3u8"}, "duration": 310, "id": "3gPINuYv1T8", "title": "Conservation of antiquities", "format": "mp4", "description": "Learn about the work of the Getty Museum's antiquities conservation team.\u00a0Love art? Follow us on Google+", "path": "conservation-of-antiquities/", "slug": "conservation-of-antiquities", "kind": "Video", "video_id": "3gPINuYv1T8", "keywords": "", "youtube_id": "3gPINuYv1T8", "readable_id": "conservation-of-antiquities"}, "S0uuK7SQcA8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S0uuK7SQcA8.mp4/S0uuK7SQcA8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S0uuK7SQcA8.mp4/S0uuK7SQcA8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S0uuK7SQcA8.m3u8/S0uuK7SQcA8.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dividing-decimals-pre-alg/dividing-decimal/", "duration": 567, "id": "S0uuK7SQcA8", "title": "Dividing decimals with hundredths example 3", "format": "mp4", "description": "The old saying is \"practice makes perfect.\" Let's keep practicing dividing decimals and making our divisor a whole number.", "slug": "dividing-decimal", "kind": "Video", "video_id": "S0uuK7SQcA8", "keywords": "Division, decimals, CC_6_NS_3", "youtube_id": "S0uuK7SQcA8", "readable_id": "dividing-decimal"}, "EV5dhv0A2wU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EV5dhv0A2wU.mp4/EV5dhv0A2wU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EV5dhv0A2wU.mp4/EV5dhv0A2wU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EV5dhv0A2wU.m3u8/EV5dhv0A2wU.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/introduction-to-trigonometric-substitution/", "duration": 532, "id": "EV5dhv0A2wU", "title": "Introduction to trigonometric substitution", "format": "mp4", "description": "Introduction to trigonometric substitution", "slug": "introduction-to-trigonometric-substitution", "kind": "Video", "video_id": "EV5dhv0A2wU", "keywords": "", "youtube_id": "EV5dhv0A2wU", "readable_id": "introduction-to-trigonometric-substitution"}, "IICR-w1jYcA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IICR-w1jYcA.mp4/IICR-w1jYcA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IICR-w1jYcA.mp4/IICR-w1jYcA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IICR-w1jYcA.m3u8/IICR-w1jYcA.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/modeling-with-differential-equations/newtons-law-of-cooling/", "duration": 602, "id": "IICR-w1jYcA", "title": "Newton's Law of Cooling", "format": "mp4", "description": "", "slug": "newtons-law-of-cooling", "kind": "Video", "video_id": "IICR-w1jYcA", "keywords": "", "youtube_id": "IICR-w1jYcA", "readable_id": "newtons-law-of-cooling"}, "JC82Il2cjqA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JC82Il2cjqA.mp4/JC82Il2cjqA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JC82Il2cjqA.mp4/JC82Il2cjqA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JC82Il2cjqA.m3u8/JC82Il2cjqA.m3u8"}, "duration": 91, "id": "JC82Il2cjqA", "title": "You Can Learn Anything", "format": "mp4", "description": "", "path": "you-can-learn-anything/", "slug": "you-can-learn-anything", "kind": "Video", "video_id": "JC82Il2cjqA", "keywords": "", "youtube_id": "JC82Il2cjqA", "readable_id": "you-can-learn-anything"}, "EdQ7Q9VoF44": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EdQ7Q9VoF44.mp4/EdQ7Q9VoF44.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EdQ7Q9VoF44.mp4/EdQ7Q9VoF44.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EdQ7Q9VoF44.m3u8/EdQ7Q9VoF44.m3u8"}, "duration": 646, "id": "EdQ7Q9VoF44", "title": "Laplace transform solves an equation 2", "format": "mp4", "description": "Second part of using the Laplace Transform to solve a differential equation.", "path": "khan/math/differential-equations/laplace-transform/laplace-transform-to-solve-differential-equation/laplace-transform-solves-an-equation-2/", "slug": "laplace-transform-solves-an-equation-2", "kind": "Video", "video_id": "EdQ7Q9VoF44", "keywords": "laplace, transform, differential, equation", "youtube_id": "EdQ7Q9VoF44", "readable_id": "laplace-transform-solves-an-equation-2"}, "wdINk29ZSMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wdINk29ZSMA.mp4/wdINk29ZSMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wdINk29ZSMA.mp4/wdINk29ZSMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wdINk29ZSMA.m3u8/wdINk29ZSMA.m3u8"}, "duration": 613, "id": "wdINk29ZSMA", "title": "GMAT: Math 33", "format": "mp4", "description": "167-172, pgs. 174-175", "path": "khan/test-prep/gmat/problem-solving/gmat-math-33/", "slug": "gmat-math-33", "kind": "Video", "video_id": "wdINk29ZSMA", "keywords": "GMAT, Math, problem, solving", "youtube_id": "wdINk29ZSMA", "readable_id": "gmat-math-33"}, "5kpVQqV7EV8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5kpVQqV7EV8.mp4/5kpVQqV7EV8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5kpVQqV7EV8.mp4/5kpVQqV7EV8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5kpVQqV7EV8.m3u8/5kpVQqV7EV8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-skeletal-system/cartilage/", "duration": 219, "id": "5kpVQqV7EV8", "title": "Cartilage", "format": "mp4", "description": "", "slug": "cartilage", "kind": "Video", "video_id": "5kpVQqV7EV8", "keywords": "", "youtube_id": "5kpVQqV7EV8", "readable_id": "cartilage"}, "m3t3mfahh_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m3t3mfahh_4.mp4/m3t3mfahh_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m3t3mfahh_4.mp4/m3t3mfahh_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m3t3mfahh_4.m3u8/m3t3mfahh_4.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/introduction-to-energy-storage/", "duration": 986, "id": "m3t3mfahh_4", "title": "Introduction to energy storage", "format": "mp4", "description": "", "slug": "introduction-to-energy-storage", "kind": "Video", "video_id": "m3t3mfahh_4", "keywords": "MCAT", "youtube_id": "m3t3mfahh_4", "readable_id": "introduction-to-energy-storage"}, "gv9ogppphso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gv9ogppphso.mp4/gv9ogppphso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gv9ogppphso.mp4/gv9ogppphso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gv9ogppphso.m3u8/gv9ogppphso.m3u8"}, "duration": 247, "id": "gv9ogppphso", "title": "Limits at positive and negative infinity", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits-infinity/limits-at-positive-and-negative-infinity/", "slug": "limits-at-positive-and-negative-infinity", "kind": "Video", "video_id": "gv9ogppphso", "keywords": "", "youtube_id": "gv9ogppphso", "readable_id": "limits-at-positive-and-negative-infinity"}, "TAhRoJB34nw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TAhRoJB34nw.mp4/TAhRoJB34nw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TAhRoJB34nw.mp4/TAhRoJB34nw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TAhRoJB34nw.m3u8/TAhRoJB34nw.m3u8"}, "duration": 319, "id": "TAhRoJB34nw", "title": "Inferior goods clarification", "format": "mp4", "description": "More clarification on inferior and normal goods", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/demand-curve-tutorial/inferior-goods-clarification/", "slug": "inferior-goods-clarification", "kind": "Video", "video_id": "TAhRoJB34nw", "keywords": "economics, demand, curve", "youtube_id": "TAhRoJB34nw", "readable_id": "inferior-goods-clarification"}, "pMZSDCm9tko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pMZSDCm9tko.mp4/pMZSDCm9tko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pMZSDCm9tko.mp4/pMZSDCm9tko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pMZSDCm9tko.m3u8/pMZSDCm9tko.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-4-polygon-perimeter/", "duration": 71, "id": "pMZSDCm9tko", "title": "4 Polygon perimeter", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-4-polygon-perimeter", "kind": "Video", "video_id": "pMZSDCm9tko", "keywords": "", "youtube_id": "pMZSDCm9tko", "readable_id": "sat-4-polygon-perimeter"}, "Yd2YBLQUCEc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yd2YBLQUCEc.mp4/Yd2YBLQUCEc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yd2YBLQUCEc.mp4/Yd2YBLQUCEc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yd2YBLQUCEc.m3u8/Yd2YBLQUCEc.m3u8"}, "duration": 154, "id": "Yd2YBLQUCEc", "title": "Polynomial end behavior exercise example", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/polynomial-end-behavior/polynomial-end-behavior-exercise-example/", "slug": "polynomial-end-behavior-exercise-example", "kind": "Video", "video_id": "Yd2YBLQUCEc", "keywords": "", "youtube_id": "Yd2YBLQUCEc", "readable_id": "polynomial-end-behavior-exercise-example"}, "mLi7BhMj8TA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mLi7BhMj8TA.mp4/mLi7BhMj8TA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mLi7BhMj8TA.mp4/mLi7BhMj8TA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mLi7BhMj8TA.m3u8/mLi7BhMj8TA.m3u8"}, "duration": 320, "id": "mLi7BhMj8TA", "title": "Khan Academy at Eastside College Prep", "format": "mp4", "description": "", "path": "eastside/", "slug": "eastside", "kind": "Video", "video_id": "mLi7BhMj8TA", "keywords": "Eastside, v3", "youtube_id": "mLi7BhMj8TA", "readable_id": "eastside"}, "SIU_9SMd5q0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SIU_9SMd5q0.mp4/SIU_9SMd5q0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SIU_9SMd5q0.mp4/SIU_9SMd5q0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SIU_9SMd5q0.m3u8/SIU_9SMd5q0.m3u8"}, "duration": 383, "id": "SIU_9SMd5q0", "title": "Energy of a capacitor", "format": "mp4", "description": "This video explains the potential of a capacitor and how they function in a circuit. By David Santo Pietro. ", "path": "khan/test-prep/mcat/physical-processes/capacitors/energy-capacitor/", "slug": "energy-capacitor", "kind": "Video", "video_id": "SIU_9SMd5q0", "keywords": "energy, capacitor", "youtube_id": "SIU_9SMd5q0", "readable_id": "energy-capacitor"}, "LnPKrSVMLnQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LnPKrSVMLnQ.mp4/LnPKrSVMLnQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LnPKrSVMLnQ.mp4/LnPKrSVMLnQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LnPKrSVMLnQ.m3u8/LnPKrSVMLnQ.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/monet-rouen-cathedral-series-1892-4/", "duration": 254, "id": "LnPKrSVMLnQ", "title": "Monet, Rouen Cathedral Series", "format": "mp4", "description": "Claude Monet\u200b painted more than 30 canvases depicting Rouen cathedral between 1892 and 1894. This video discusses the following four paintings in the collection of the Mus\u00e9e d'Orsay in Paris: Rouen Cathedral (The Portal, Grey Weather), 1894, oil on canvas, 100 x 65 cm Rouen Cathedral (The Portal and the Tour d'Albane, Morning Effect), 1894, oil on canvas, 106 x 73 cm Rouen Cathedral (The Portal, Harmony in Blue), 1894, oil on canvas, 91 x 63 cm Claude Monet, Rouen Cathedral (The Portal and the Tour d'Albane in the Sunlight), 1894, oil on canvas, 107 x 73 cm Speakers: Drs. Beth Harris and Steven Zucker", "slug": "monet-rouen-cathedral-series-1892-4", "kind": "Video", "video_id": "LnPKrSVMLnQ", "keywords": "Monet, Rouen Cathedral, Impressionism", "youtube_id": "LnPKrSVMLnQ", "readable_id": "monet-rouen-cathedral-series-1892-4"}, "tPfYrmcfvYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tPfYrmcfvYE.mp4/tPfYrmcfvYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tPfYrmcfvYE.mp4/tPfYrmcfvYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tPfYrmcfvYE.m3u8/tPfYrmcfvYE.m3u8"}, "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/forbidden-city/", "duration": 263, "id": "tPfYrmcfvYE", "title": "The Forbidden City", "format": "mp4", "description": "In 1420, in an effort to consolidate his control over the throne, the emperor of the Ming dynasty (1368\u20131644)\u00a0moved China's capital to a site in the North, now known as Bejing. There, he built a vast complex of palaces and administrative buildings now covering 178 acres. Because access was restricted to the imperial family and to those who had business with them, it came to be known as the Forbidden City. Learn more about the Ming dynasty (1368\u20131644) on the Asian Art Museum's education website.", "slug": "forbidden-city", "kind": "Video", "video_id": "tPfYrmcfvYE", "keywords": "", "youtube_id": "tPfYrmcfvYE", "readable_id": "forbidden-city"}, "ufzlgOyWBHE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ufzlgOyWBHE.mp4/ufzlgOyWBHE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ufzlgOyWBHE.mp4/ufzlgOyWBHE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ufzlgOyWBHE.m3u8/ufzlgOyWBHE.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/dot-structures/vsepr-for-5-electron-clouds-continued/", "duration": 648, "id": "ufzlgOyWBHE", "title": "VSEPR for 5 electron clouds (continued)", "format": "mp4", "description": "", "slug": "vsepr-for-5-electron-clouds-continued", "kind": "Video", "video_id": "ufzlgOyWBHE", "keywords": "", "youtube_id": "ufzlgOyWBHE", "readable_id": "vsepr-for-5-electron-clouds-continued"}, "NX3M0NTYTYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NX3M0NTYTYg.mp4/NX3M0NTYTYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NX3M0NTYTYg.mp4/NX3M0NTYTYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NX3M0NTYTYg.m3u8/NX3M0NTYTYg.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/britain-18c/britain-ageof-revolution/reynolds-lady-cockburn-and-her-three-eldest-sons-1773/", "duration": 247, "id": "NX3M0NTYTYg", "title": "Reynolds, Lady Cockburn and Her Three Eldest Sons", "format": "mp4", "description": "Sir Joshua Reynolds, Lady Cockburn and Her Three Eldest Sons, 1773, oil on canvas, 55-3/4 x 44-1/2 inches (141.5 x 113 cm) (National Gallery, London) Speakers: Pippa Couch and Rachel Ropeik", "slug": "reynolds-lady-cockburn-and-her-three-eldest-sons-1773", "kind": "Video", "video_id": "NX3M0NTYTYg", "keywords": "Reynolds, National Gallery, Smarthistory, Art History", "youtube_id": "NX3M0NTYTYg", "readable_id": "reynolds-lady-cockburn-and-her-three-eldest-sons-1773"}, "qO2cTx6DwCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qO2cTx6DwCA.mp4/qO2cTx6DwCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qO2cTx6DwCA.mp4/qO2cTx6DwCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qO2cTx6DwCA.m3u8/qO2cTx6DwCA.m3u8"}, "path": "khan/math/geometry/similarity/old_school_similarity/similar-triangles-part-2/", "duration": 594, "id": "qO2cTx6DwCA", "title": "Similar triangles (part 2)", "format": "mp4", "description": "More on similar triangles", "slug": "similar-triangles-part-2", "kind": "Video", "video_id": "qO2cTx6DwCA", "keywords": "geometry, triangles, similar, angles, math, CC_7_G_5, CC_8_G_5", "youtube_id": "qO2cTx6DwCA", "readable_id": "similar-triangles-part-2"}, "IjbJZ5jspzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IjbJZ5jspzE.mp4/IjbJZ5jspzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IjbJZ5jspzE.mp4/IjbJZ5jspzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IjbJZ5jspzE.m3u8/IjbJZ5jspzE.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/absolute-and-relative-poverty/", "duration": 450, "id": "IjbJZ5jspzE", "title": "Absolute and relative poverty", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "absolute-and-relative-poverty", "kind": "Video", "video_id": "IjbJZ5jspzE", "keywords": "", "youtube_id": "IjbJZ5jspzE", "readable_id": "absolute-and-relative-poverty"}, "O_nY1TM2RZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O_nY1TM2RZM.mp4/O_nY1TM2RZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O_nY1TM2RZM.mp4/O_nY1TM2RZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O_nY1TM2RZM.m3u8/O_nY1TM2RZM.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/webers-law-and-thresholds/", "duration": 541, "id": "O_nY1TM2RZM", "title": "Weber's law and thresholds", "format": "mp4", "description": "", "slug": "webers-law-and-thresholds", "kind": "Video", "video_id": "O_nY1TM2RZM", "keywords": "", "youtube_id": "O_nY1TM2RZM", "readable_id": "webers-law-and-thresholds"}, "ymWr2tIwIGo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ymWr2tIwIGo.mp4/ymWr2tIwIGo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ymWr2tIwIGo.mp4/ymWr2tIwIGo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ymWr2tIwIGo.m3u8/ymWr2tIwIGo.m3u8"}, "duration": 660, "id": "ymWr2tIwIGo", "title": "Community ecology: Feel the love", "format": "mp4", "description": "", "path": "crash-course-ecology-04/", "slug": "crash-course-ecology-04", "kind": "Video", "video_id": "ymWr2tIwIGo", "keywords": "", "youtube_id": "ymWr2tIwIGo", "readable_id": "crash-course-ecology-04"}, "SHZojeuDLjM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SHZojeuDLjM.mp4/SHZojeuDLjM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SHZojeuDLjM.mp4/SHZojeuDLjM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SHZojeuDLjM.m3u8/SHZojeuDLjM.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/flanders-1/van-dyck-charles-i/", "duration": 265, "id": "SHZojeuDLjM", "title": "Anthony van Dyck, Charles I at the Hunt, c. 1635", "format": "mp4", "description": "Anthony van Dyck, Charles I at the Hunt, c. 1635, oil on canvas, 2.66 x 2.07 m (Mus\u00e9e du Louvre), inscribed: \"Carolus.I.REX Magnae Britanniae\" - Charles I rules Great Britain\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker \u00a0", "slug": "van-dyck-charles-i", "kind": "Video", "video_id": "SHZojeuDLjM", "keywords": "Charles I", "youtube_id": "SHZojeuDLjM", "readable_id": "van-dyck-charles-i"}, "X6zD3SoN3iY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X6zD3SoN3iY.mp4/X6zD3SoN3iY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X6zD3SoN3iY.mp4/X6zD3SoN3iY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X6zD3SoN3iY.m3u8/X6zD3SoN3iY.m3u8"}, "duration": 187, "id": "X6zD3SoN3iY", "title": "Exponent properties 4", "format": "mp4", "description": "Exponent Properties 4", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/exponent-properties-4/", "slug": "exponent-properties-4", "kind": "Video", "video_id": "X6zD3SoN3iY", "keywords": "u11_l1_t2_we4, Exponent, Properties, CC_6_EE_1, CC_6_EE_2_c, CC_8_EE_1", "youtube_id": "X6zD3SoN3iY", "readable_id": "exponent-properties-4"}, "4S9Bqo_LX7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4S9Bqo_LX7k.mp4/4S9Bqo_LX7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4S9Bqo_LX7k.mp4/4S9Bqo_LX7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4S9Bqo_LX7k.m3u8/4S9Bqo_LX7k.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-medieval/royal-figures-iran-saljuq-period/", "duration": 317, "id": "4S9Bqo_LX7k", "title": "Two royal figures (Saljuq Period)", "format": "mp4", "description": "A conversation between Dr. Elizabeth Macaulay-Lewis and Dr. Steven Zucker in front of \"Two Royal Figures,\" Iran (Saljuq period), mid 11th - mid 12th c., painted and gilded stucco (Metropolitan Museum of Art).\u00a0", "slug": "royal-figures-iran-saljuq-period", "kind": "Video", "video_id": "4S9Bqo_LX7k", "keywords": "Royal, Figures, Iran, Saljuq, Seljuq, stucco, Metropolitan, Museum, of, Art, Islamic, Islam, sculpture, Smarthistory, Khan Academy", "youtube_id": "4S9Bqo_LX7k", "readable_id": "royal-figures-iran-saljuq-period"}, "EC4wJhOEUz8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EC4wJhOEUz8.mp4/EC4wJhOEUz8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EC4wJhOEUz8.mp4/EC4wJhOEUz8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EC4wJhOEUz8.m3u8/EC4wJhOEUz8.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/room-1970-1980/", "duration": 155, "id": "EC4wJhOEUz8", "title": "Room: 1970s & 1980s", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Helen Little explores the 1970s & 1980s.\n\nLearn more about the art featured in this video:\n-\u00a0Tony Cragg, Stack, 1975\n- Mark Wallinger, Where There's Muck, 1985", "slug": "room-1970-1980", "kind": "Video", "video_id": "EC4wJhOEUz8", "keywords": "Tate", "youtube_id": "EC4wJhOEUz8", "readable_id": "room-1970-1980"}, "o6ooV-19NLY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o6ooV-19NLY.mp4/o6ooV-19NLY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o6ooV-19NLY.mp4/o6ooV-19NLY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o6ooV-19NLY.m3u8/o6ooV-19NLY.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/science-can-it-teach-us-everything/", "duration": 640, "id": "o6ooV-19NLY", "title": "Epistemology: Science, can it teach us everything?", "format": "mp4", "description": "Caspar asks: can science tell us everything there is to know about the world? He tells us about a famous argument that it can't, sometimes called 'the knowledge argument' or 'the Mary argument', due to philosopher Frank Jackson. If the argument is right, then there are certain aspects of the world that we can't learn about through science. In particular, we can't use science to learn what it is like to see red, or taste coffee, or have other experiences.\n\nSpeaker: Dr. Caspar Hare, Associate Professor, MIT", "slug": "science-can-it-teach-us-everything", "kind": "Video", "video_id": "o6ooV-19NLY", "keywords": "", "youtube_id": "o6ooV-19NLY", "readable_id": "science-can-it-teach-us-everything"}, "ddNsfv8iaps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ddNsfv8iaps.mp4/ddNsfv8iaps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ddNsfv8iaps.mp4/ddNsfv8iaps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ddNsfv8iaps.m3u8/ddNsfv8iaps.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/electron-configurations-in-the-3d-orbitals/", "duration": 753, "id": "ddNsfv8iaps", "title": "Electron configurations in the 3d orbitals", "format": "mp4", "description": "", "slug": "electron-configurations-in-the-3d-orbitals", "kind": "Video", "video_id": "ddNsfv8iaps", "keywords": "", "youtube_id": "ddNsfv8iaps", "readable_id": "electron-configurations-in-the-3d-orbitals"}, "tcm-v12m7hU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tcm-v12m7hU.mp4/tcm-v12m7hU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tcm-v12m7hU.mp4/tcm-v12m7hU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tcm-v12m7hU.m3u8/tcm-v12m7hU.m3u8"}, "duration": 686, "id": "tcm-v12m7hU", "title": "GMAT: Math 21", "format": "mp4", "description": "110-114, pgs. 166-167", "path": "khan/test-prep/gmat/problem-solving/gmat-math-21/", "slug": "gmat-math-21", "kind": "Video", "video_id": "tcm-v12m7hU", "keywords": "GMAT, Math, problem, solving", "youtube_id": "tcm-v12m7hU", "readable_id": "gmat-math-21"}, "xE2HVxOPuMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xE2HVxOPuMM.mp4/xE2HVxOPuMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xE2HVxOPuMM.mp4/xE2HVxOPuMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xE2HVxOPuMM.m3u8/xE2HVxOPuMM.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-6/", "duration": 211, "id": "xE2HVxOPuMM", "title": "6 Percent expenditure to actual expenditure", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-6", "kind": "Video", "video_id": "xE2HVxOPuMM", "keywords": "", "youtube_id": "xE2HVxOPuMM", "readable_id": "sat-getting-ready-2-6"}, "l5aJ1Y1CiEs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l5aJ1Y1CiEs.mp4/l5aJ1Y1CiEs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l5aJ1Y1CiEs.mp4/l5aJ1Y1CiEs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l5aJ1Y1CiEs.m3u8/l5aJ1Y1CiEs.m3u8"}, "duration": 267, "id": "l5aJ1Y1CiEs", "title": "Fitness and fecundity", "format": "mp4", "description": "Learn about the concept of fecundity and how it contributes to an organism's overall biological fitness. By Ross Firestone. ", "path": "khan/test-prep/mcat/biomolecules/evolution-population-dynmaics/fitness-and-fecundity/", "slug": "fitness-and-fecundity", "kind": "Video", "video_id": "l5aJ1Y1CiEs", "keywords": "", "youtube_id": "l5aJ1Y1CiEs", "readable_id": "fitness-and-fecundity"}, "HvDqbzu0i0E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HvDqbzu0i0E.mp4/HvDqbzu0i0E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HvDqbzu0i0E.mp4/HvDqbzu0i0E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HvDqbzu0i0E.m3u8/HvDqbzu0i0E.m3u8"}, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/statistics-standard-deviation/", "duration": 787, "id": "HvDqbzu0i0E", "title": "Statistics: Standard deviation", "format": "mp4", "description": "Review of what we've learned. Introduction to the standard deviation.", "slug": "statistics-standard-deviation", "kind": "Video", "video_id": "HvDqbzu0i0E", "keywords": "statistics, standard, deviation, variance, CC_6_SP_5_a", "youtube_id": "HvDqbzu0i0E", "readable_id": "statistics-standard-deviation"}, "S6_7zk_Ht_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S6_7zk_Ht_g.mp4/S6_7zk_Ht_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S6_7zk_Ht_g.mp4/S6_7zk_Ht_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S6_7zk_Ht_g.m3u8/S6_7zk_Ht_g.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/electromagnet/battery-meter-galvanometer/", "duration": 50, "id": "S6_7zk_Ht_g", "title": "Battery meter (galvanometer)", "format": "mp4", "description": "Simple device which we can use to measure our homemade batteries. You can test it with any household battery first. What does this deflection represent? What forces are involved?", "slug": "battery-meter-galvanometer", "kind": "Video", "video_id": "S6_7zk_Ht_g", "keywords": "galvanometer", "youtube_id": "S6_7zk_Ht_g", "readable_id": "battery-meter-galvanometer"}, "KyHvVJWjW6Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KyHvVJWjW6Y.mp4/KyHvVJWjW6Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KyHvVJWjW6Y.mp4/KyHvVJWjW6Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KyHvVJWjW6Y.m3u8/KyHvVJWjW6Y.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/age_word_problems_tut/ex-2-age-word-problem/", "duration": 223, "id": "KyHvVJWjW6Y", "title": "Ex 2 age word problem", "format": "mp4", "description": "In 40 years, Imran will be 11 times as old as he is right now. How old is he right now?", "slug": "ex-2-age-word-problem", "kind": "Video", "video_id": "KyHvVJWjW6Y", "keywords": "", "youtube_id": "KyHvVJWjW6Y", "readable_id": "ex-2-age-word-problem"}, "cQRJYTBozXQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cQRJYTBozXQ.mp4/cQRJYTBozXQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cQRJYTBozXQ.mp4/cQRJYTBozXQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cQRJYTBozXQ.m3u8/cQRJYTBozXQ.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-essays/ss-admissions-essay-formative-experience/", "duration": 73, "id": "cQRJYTBozXQ", "title": "Student story: Admissions essay about a formative experience", "format": "mp4", "description": "", "slug": "ss-admissions-essay-formative-experience", "kind": "Video", "video_id": "cQRJYTBozXQ", "keywords": "", "youtube_id": "cQRJYTBozXQ", "readable_id": "ss-admissions-essay-formative-experience"}, "7iGjiSbEp9c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7iGjiSbEp9c.mp4/7iGjiSbEp9c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7iGjiSbEp9c.mp4/7iGjiSbEp9c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7iGjiSbEp9c.m3u8/7iGjiSbEp9c.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/philosophy-descartes-cogito-argument/", "duration": 599, "id": "7iGjiSbEp9c", "title": "Early Modern: Descartes' Cogito Argument", "format": "mp4", "description": "\"I think, therefore I am\" - almost everyone has heard of Ren\u00e9 Descartes' famous cogito argument. But what is this argument about? What does it show, and why are so many philosophers excited about it - even today, more than 350 years after Descartes first presented this argument?\n\nSpeaker: Dr. Stephan Schmid, Assistant Professor, Humboldt-University", "slug": "philosophy-descartes-cogito-argument", "kind": "Video", "video_id": "7iGjiSbEp9c", "keywords": "", "youtube_id": "7iGjiSbEp9c", "readable_id": "philosophy-descartes-cogito-argument"}, "tR-hzV5Tkxo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tR-hzV5Tkxo.mp4/tR-hzV5Tkxo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tR-hzV5Tkxo.mp4/tR-hzV5Tkxo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tR-hzV5Tkxo.m3u8/tR-hzV5Tkxo.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions/polymerization-of-alkenes-with-acid/", "duration": 724, "id": "tR-hzV5Tkxo", "title": "Polymerization of alkenes with acid", "format": "mp4", "description": "Polymerization of Alkenes with Acid", "slug": "polymerization-of-alkenes-with-acid", "kind": "Video", "video_id": "tR-hzV5Tkxo", "keywords": "Polymerization, of, Alkenes, with, Acid", "youtube_id": "tR-hzV5Tkxo", "readable_id": "polymerization-of-alkenes-with-acid"}, "6PZYYIaB0UY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6PZYYIaB0UY.mp4/6PZYYIaB0UY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6PZYYIaB0UY.mp4/6PZYYIaB0UY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6PZYYIaB0UY.m3u8/6PZYYIaB0UY.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/how-ancestors-evolved/bhp-human-evolution-crashcourse/", "duration": 942, "id": "6PZYYIaB0UY", "title": "Crash Course Big History: Human Evolution", "format": "mp4", "description": "No, we really really did not evolve from monkeys. John and Hank Green explain this and lots of other things related to human evolution.\u00a0\u00a0", "slug": "bhp-human-evolution-crashcourse", "kind": "Video", "video_id": "6PZYYIaB0UY", "keywords": "", "youtube_id": "6PZYYIaB0UY", "readable_id": "bhp-human-evolution-crashcourse"}, "lYLaaMObgkw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lYLaaMObgkw.mp4/lYLaaMObgkw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lYLaaMObgkw.mp4/lYLaaMObgkw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lYLaaMObgkw.m3u8/lYLaaMObgkw.m3u8"}, "duration": 251, "id": "lYLaaMObgkw", "title": "Deductive reasoning 3", "format": "mp4", "description": "Deductive Reasoning 3", "path": "khan/math/precalculus/seq_induction/deductive-and-inductive-reasoning/deductive-reasoning-3/", "slug": "deductive-reasoning-3", "kind": "Video", "video_id": "lYLaaMObgkw", "keywords": "U12_L1_T4_we3, Deductive, Reasoning, CC_39336_A-APR_4", "youtube_id": "lYLaaMObgkw", "readable_id": "deductive-reasoning-3"}, "2IT6FcvBp_w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2IT6FcvBp_w.mp4/2IT6FcvBp_w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2IT6FcvBp_w.mp4/2IT6FcvBp_w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2IT6FcvBp_w.m3u8/2IT6FcvBp_w.m3u8"}, "path": "khan/test-prep/ap-art-history/west-and-central-asia/ibn-al-zain-basin/", "duration": 251, "id": "2IT6FcvBp_w", "title": "Basin (Baptist\u00e8re de Saint Louis)", "format": "mp4", "description": "Mohammed ibn al-Zain, Basin (Baptist\u00e8re de Saint Louis), c. 1320-40, brass inlaid with silver and gold, 22.2 x 50.2 cm, Egypt or Syria (Mus\u00e9e du Louvre, Paris)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "ibn-al-zain-basin", "kind": "Video", "video_id": "2IT6FcvBp_w", "keywords": "Basin, Mamluk, Louvre, metalwork, Baptist\u00e8re, Islamic Art", "youtube_id": "2IT6FcvBp_w", "readable_id": "ibn-al-zain-basin"}, "A3xPhzs-KBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A3xPhzs-KBI.mp4/A3xPhzs-KBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A3xPhzs-KBI.mp4/A3xPhzs-KBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A3xPhzs-KBI.m3u8/A3xPhzs-KBI.m3u8"}, "duration": 705, "id": "A3xPhzs-KBI", "title": "Compound inequalities", "format": "mp4", "description": "Compound Inequalities", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/compound-inequalities/", "slug": "compound-inequalities", "kind": "Video", "video_id": "A3xPhzs-KBI", "keywords": "Compound, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "A3xPhzs-KBI", "readable_id": "compound-inequalities"}, "d9pO2z2qvXU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d9pO2z2qvXU.mp4/d9pO2z2qvXU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d9pO2z2qvXU.mp4/d9pO2z2qvXU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d9pO2z2qvXU.m3u8/d9pO2z2qvXU.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/recognizing-irrational-numbers/", "duration": 138, "id": "d9pO2z2qvXU", "title": "Recognizing irrational numbers", "format": "mp4", "description": "Learn how to tell which numbers are rational and which are irrational.", "slug": "recognizing-irrational-numbers", "kind": "Video", "video_id": "d9pO2z2qvXU", "keywords": "", "youtube_id": "d9pO2z2qvXU", "readable_id": "recognizing-irrational-numbers"}, "y2G03Lumhe0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y2G03Lumhe0.mp4/y2G03Lumhe0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y2G03Lumhe0.mp4/y2G03Lumhe0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y2G03Lumhe0.m3u8/y2G03Lumhe0.m3u8"}, "path": "khan/math/probability/random-variables-topic/binomial_distribution/graphing-basketball-binomial-distribution/", "duration": 262, "id": "y2G03Lumhe0", "title": "Graphing basketball binomial distribution", "format": "mp4", "description": "", "slug": "graphing-basketball-binomial-distribution", "kind": "Video", "video_id": "y2G03Lumhe0", "keywords": "", "youtube_id": "y2G03Lumhe0", "readable_id": "graphing-basketball-binomial-distribution"}, "2EJzrIKtKok": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2EJzrIKtKok.mp4/2EJzrIKtKok.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2EJzrIKtKok.mp4/2EJzrIKtKok.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2EJzrIKtKok.m3u8/2EJzrIKtKok.m3u8"}, "path": "khan/partner-content/big-history-project/acceleration/bhp-acceleration/bhp-threshold8/", "duration": 158, "id": "2EJzrIKtKok", "title": "Threshold 8: The Modern Revolution", "format": "mp4", "description": "The Modern Revolution began about 200 ago and created the world we live in today.", "slug": "bhp-threshold8", "kind": "Video", "video_id": "2EJzrIKtKok", "keywords": "", "youtube_id": "2EJzrIKtKok", "readable_id": "bhp-threshold8"}, "UODaRxt8Zuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UODaRxt8Zuw.mp4/UODaRxt8Zuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UODaRxt8Zuw.mp4/UODaRxt8Zuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UODaRxt8Zuw.m3u8/UODaRxt8Zuw.m3u8"}, "duration": 250, "id": "UODaRxt8Zuw", "title": "Marina Abramovi\u0107", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nMarina Abramovi\u0107 is to many people the definitive performance artist, having begun her career in the early 1970s. Her works test the limits of the human body, and even the endurance of audiences who may witness performances lasting hours, days, or weeks. In this film we join her as she shares highlights from her performance works, discusses the amount of work that goes into staging one of her ambitious pieces, and tells us why it's never easy to explain what she does.", "path": "tateshots-marina-abramovic/", "slug": "tateshots-marina-abramovic", "kind": "Video", "video_id": "UODaRxt8Zuw", "keywords": "Tate, performance art", "youtube_id": "UODaRxt8Zuw", "readable_id": "tateshots-marina-abramovic"}, "sjMsyk-rP8I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sjMsyk-rP8I.mp4/sjMsyk-rP8I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sjMsyk-rP8I.mp4/sjMsyk-rP8I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sjMsyk-rP8I.m3u8/sjMsyk-rP8I.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/aldol-condensation/", "duration": 683, "id": "sjMsyk-rP8I", "title": "Aldol condensation", "format": "mp4", "description": "Base-catalyzed mechanism for aldol addition and aldol condensation", "slug": "aldol-condensation", "kind": "Video", "video_id": "sjMsyk-rP8I", "keywords": "", "youtube_id": "sjMsyk-rP8I", "readable_id": "aldol-condensation"}, "SwqOrUWzDY8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SwqOrUWzDY8.mp4/SwqOrUWzDY8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SwqOrUWzDY8.mp4/SwqOrUWzDY8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SwqOrUWzDY8.m3u8/SwqOrUWzDY8.m3u8"}, "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/products-and-exponents-raised-to-an-exponent-properties/", "duration": 358, "id": "SwqOrUWzDY8", "title": "Products and exponents raised to an exponent properties", "format": "mp4", "description": "", "slug": "products-and-exponents-raised-to-an-exponent-properties", "kind": "Video", "video_id": "SwqOrUWzDY8", "keywords": "", "youtube_id": "SwqOrUWzDY8", "readable_id": "products-and-exponents-raised-to-an-exponent-properties"}, "hCFtl4npukU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hCFtl4npukU.mp4/hCFtl4npukU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hCFtl4npukU.mp4/hCFtl4npukU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hCFtl4npukU.m3u8/hCFtl4npukU.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/modern-ways-of-studying-the-brain/", "duration": 318, "id": "hCFtl4npukU", "title": "Modern ways of studying the brain", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "modern-ways-of-studying-the-brain", "kind": "Video", "video_id": "hCFtl4npukU", "keywords": "", "youtube_id": "hCFtl4npukU", "readable_id": "modern-ways-of-studying-the-brain"}, "PueYywpkJW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PueYywpkJW8.mp4/PueYywpkJW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PueYywpkJW8.mp4/PueYywpkJW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PueYywpkJW8.m3u8/PueYywpkJW8.m3u8"}, "path": "khan/test-prep/ap-art-history/global-contemporary/ai-weiwei/", "duration": 882, "id": "PueYywpkJW8", "title": "Ai Weiwei: Sunflower Seeds", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn the process of crafting millions of porcelain sunflower seeds, Chinese artist Ai WeiWei creates a work of art as well as a positive social project for the village in rural China he employed to make the seeds.\u00a0Follow Sunflower Seeds\u00a0on its remarkable journey from conception to delivery, and hear the artist talk about his unique socio-political approach to making art.", "slug": "ai-weiwei", "kind": "Video", "video_id": "PueYywpkJW8", "keywords": "Tate", "youtube_id": "PueYywpkJW8", "readable_id": "ai-weiwei"}, "dNprN1Kbv9M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dNprN1Kbv9M.mp4/dNprN1Kbv9M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dNprN1Kbv9M.mp4/dNprN1Kbv9M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dNprN1Kbv9M.m3u8/dNprN1Kbv9M.m3u8"}, "duration": 425, "id": "dNprN1Kbv9M", "title": "Madison's role in the Constitutional Convention in 1787", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-ii/", "slug": "isaacson-with-cheney-khan-academy-lesson-ii", "kind": "Video", "video_id": "dNprN1Kbv9M", "keywords": "", "youtube_id": "dNprN1Kbv9M", "readable_id": "isaacson-with-cheney-khan-academy-lesson-ii"}, "BNmOZO9hbb0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BNmOZO9hbb0.mp4/BNmOZO9hbb0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BNmOZO9hbb0.mp4/BNmOZO9hbb0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BNmOZO9hbb0.m3u8/BNmOZO9hbb0.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/aromatic-stability/aromatic-stability-iv/", "duration": 631, "id": "BNmOZO9hbb0", "title": "Aromatic stability IV", "format": "mp4", "description": "", "slug": "aromatic-stability-iv", "kind": "Video", "video_id": "BNmOZO9hbb0", "keywords": "", "youtube_id": "BNmOZO9hbb0", "readable_id": "aromatic-stability-iv"}, "5i8HLmVTcRQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5i8HLmVTcRQ.mp4/5i8HLmVTcRQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5i8HLmVTcRQ.mp4/5i8HLmVTcRQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5i8HLmVTcRQ.m3u8/5i8HLmVTcRQ.m3u8"}, "duration": 216, "id": "5i8HLmVTcRQ", "title": "Limit intuition review", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/epsilon_delta/limit-intuition-review/", "slug": "limit-intuition-review", "kind": "Video", "video_id": "5i8HLmVTcRQ", "keywords": "", "youtube_id": "5i8HLmVTcRQ", "readable_id": "limit-intuition-review"}, "l2VrAsu0KeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l2VrAsu0KeE.mp4/l2VrAsu0KeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l2VrAsu0KeE.mp4/l2VrAsu0KeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l2VrAsu0KeE.m3u8/l2VrAsu0KeE.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/weems-from-here-i-saw-what-happened/", "duration": 167, "id": "l2VrAsu0KeE", "title": "Carrie Mae Weems on her series \"From Here I Saw What Happened and I Cried\"", "format": "mp4", "description": "Combining text and photography, contemporary artist Carrie Mae Weems explores the notion of a narrative within her work. Love art? Follow us on Google+", "slug": "weems-from-here-i-saw-what-happened", "kind": "Video", "video_id": "l2VrAsu0KeE", "keywords": "", "youtube_id": "l2VrAsu0KeE", "readable_id": "weems-from-here-i-saw-what-happened"}, "YKHGBkOXtMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YKHGBkOXtMk.mp4/YKHGBkOXtMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YKHGBkOXtMk.mp4/YKHGBkOXtMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YKHGBkOXtMk.m3u8/YKHGBkOXtMk.m3u8"}, "duration": 181, "id": "YKHGBkOXtMk", "title": "Paintings", "format": "mp4", "description": "Explore masterful paintings of the 1400s\u20131500s. Masaccio\u2019s panel of St. Andrew, Sebastiano\u2019s Pope Clement VII painted on slate, the Halberdier by Pontormo, Van Dyck's Agostino Pallavicini, and La Tour's Gabriel Bernard de Rieux reveal how works of art had functions and reasons for existence for the patron and artist alike. Love art? Follow us on Google+", "path": "paintings/", "slug": "paintings", "kind": "Video", "video_id": "YKHGBkOXtMk", "keywords": "", "youtube_id": "YKHGBkOXtMk", "readable_id": "paintings"}, "9Wfn-WWV1aY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9Wfn-WWV1aY.mp4/9Wfn-WWV1aY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9Wfn-WWV1aY.mp4/9Wfn-WWV1aY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9Wfn-WWV1aY.m3u8/9Wfn-WWV1aY.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/homogeneous-equations/first-order-homegenous-equations/", "duration": 441, "id": "9Wfn-WWV1aY", "title": "First order homogenous equations", "format": "mp4", "description": "Introduction to first order homogenous equations.", "slug": "first-order-homegenous-equations", "kind": "Video", "video_id": "9Wfn-WWV1aY", "keywords": "first, order, homogenous, differential, equations", "youtube_id": "9Wfn-WWV1aY", "readable_id": "first-order-homegenous-equations"}, "KgrLUQYgIJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KgrLUQYgIJE.mp4/KgrLUQYgIJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KgrLUQYgIJE.mp4/KgrLUQYgIJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KgrLUQYgIJE.m3u8/KgrLUQYgIJE.m3u8"}, "duration": 505, "id": "KgrLUQYgIJE", "title": "More on total revenue and elasticity", "format": "mp4", "description": "Clarification on the relationship between total revenue and elasticity", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/more-on-total-revenue-and-elasticity/", "slug": "more-on-total-revenue-and-elasticity", "kind": "Video", "video_id": "KgrLUQYgIJE", "keywords": "microeconomics, elasticity", "youtube_id": "KgrLUQYgIJE", "readable_id": "more-on-total-revenue-and-elasticity"}, "rL0lDESwwv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rL0lDESwwv8.mp4/rL0lDESwwv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rL0lDESwwv8.mp4/rL0lDESwwv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rL0lDESwwv8.m3u8/rL0lDESwwv8.m3u8"}, "duration": 626, "id": "rL0lDESwwv8", "title": "Acid and base catalyzed formation of hydrates and hemiacetals", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/acid-and-base-catalyzed-formation-of-hydrates-and-hemiacetals/", "slug": "acid-and-base-catalyzed-formation-of-hydrates-and-hemiacetals", "kind": "Video", "video_id": "rL0lDESwwv8", "keywords": "", "youtube_id": "rL0lDESwwv8", "readable_id": "acid-and-base-catalyzed-formation-of-hydrates-and-hemiacetals"}, "hKa5Of7Dlbg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hKa5Of7Dlbg.mp4/hKa5Of7Dlbg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hKa5Of7Dlbg.mp4/hKa5Of7Dlbg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hKa5Of7Dlbg.m3u8/hKa5Of7Dlbg.m3u8"}, "duration": 212, "id": "hKa5Of7Dlbg", "title": "Case study: Boys & Girls Club of Chaffee County, Colorado", "format": "mp4", "description": "Learn how the Boys & Girls Club of Chaffee County uses Khan Academy in its programs in Colorado.\u00a0", "path": "bgc-chaffee-colorado/", "slug": "bgc-chaffee-colorado", "kind": "Video", "video_id": "hKa5Of7Dlbg", "keywords": "", "youtube_id": "hKa5Of7Dlbg", "readable_id": "bgc-chaffee-colorado"}, "E1P79uFLCMc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E1P79uFLCMc.mp4/E1P79uFLCMc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E1P79uFLCMc.mp4/E1P79uFLCMc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E1P79uFLCMc.m3u8/E1P79uFLCMc.m3u8"}, "duration": 596, "id": "E1P79uFLCMc", "title": "Ozone layer and eukaryotes show up in the Proterozoic eon", "format": "mp4", "description": "Ozone Layer and Eukaryotes Show Up in the Proterozoic Eon. Great Oxygenation Event (Oxygen Catastrophe)", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/history-life-earth-tutorial/ozone-layer-and-eukaryotes-show-up-in-the-proterozoic-eon/", "slug": "ozone-layer-and-eukaryotes-show-up-in-the-proterozoic-eon", "kind": "Video", "video_id": "E1P79uFLCMc", "keywords": "Ozone, Layer, and, Eukaryotes, Show, Up, in, the, Proterozoic, Eon", "youtube_id": "E1P79uFLCMc", "readable_id": "ozone-layer-and-eukaryotes-show-up-in-the-proterozoic-eon"}, "HALbfdYE3hM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HALbfdYE3hM.mp4/HALbfdYE3hM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HALbfdYE3hM.mp4/HALbfdYE3hM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HALbfdYE3hM.m3u8/HALbfdYE3hM.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/oboe-interview/", "duration": 524, "id": "HALbfdYE3hM", "title": "Oboe: Interview and demonstration with principal John Ferrillo", "format": "mp4", "description": "", "slug": "oboe-interview", "kind": "Video", "video_id": "HALbfdYE3hM", "keywords": "", "youtube_id": "HALbfdYE3hM", "readable_id": "oboe-interview"}, "LKzpw_HUKNQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LKzpw_HUKNQ.mp4/LKzpw_HUKNQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LKzpw_HUKNQ.mp4/LKzpw_HUKNQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LKzpw_HUKNQ.m3u8/LKzpw_HUKNQ.m3u8"}, "duration": 494, "id": "LKzpw_HUKNQ", "title": "Part 2 of washer for non axis rotation", "format": "mp4", "description": "Doing some hairy algebra and arithmetic to evaluate the definite integral from the last video", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/part-2-of-washer-for-not-axis-rotation/", "slug": "part-2-of-washer-for-not-axis-rotation", "kind": "Video", "video_id": "LKzpw_HUKNQ", "keywords": "", "youtube_id": "LKzpw_HUKNQ", "readable_id": "part-2-of-washer-for-not-axis-rotation"}, "gJfOlBMfYkg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gJfOlBMfYkg.mp4/gJfOlBMfYkg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gJfOlBMfYkg.mp4/gJfOlBMfYkg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gJfOlBMfYkg.m3u8/gJfOlBMfYkg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/definition-of-ph/", "duration": 730, "id": "gJfOlBMfYkg", "title": "Definition of pH", "format": "mp4", "description": "", "slug": "definition-of-ph", "kind": "Video", "video_id": "gJfOlBMfYkg", "keywords": "", "youtube_id": "gJfOlBMfYkg", "readable_id": "definition-of-ph"}, "MQct5EFQ9x8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MQct5EFQ9x8.mp4/MQct5EFQ9x8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MQct5EFQ9x8.mp4/MQct5EFQ9x8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MQct5EFQ9x8.m3u8/MQct5EFQ9x8.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/giotto-st-francis-receiving-the-stigmata-c-1295-1300/", "duration": 275, "id": "MQct5EFQ9x8", "title": "Giotto, St. Francis Receiving the Stigmata", "format": "mp4", "description": "Giotto di Bondone, St. Francis of Assisi Receiving the Stigmata with predella scenes of the Dream of Innocent III, The Pope Approving the Rule of the Order, and St. Francis Preaching to the Birds, c. 1295-1300 (originally, Church of San Francesco, Pisa), tempera and gold on panel, 3.13 x 1.63 m, original frame inscribed: \"OPUS IOCTI FIORETINI. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "giotto-st-francis-receiving-the-stigmata-c-1295-1300", "kind": "Video", "video_id": "MQct5EFQ9x8", "keywords": "Mus\u00e9e du Louvre", "youtube_id": "MQct5EFQ9x8", "readable_id": "giotto-st-francis-receiving-the-stigmata-c-1295-1300"}, "dpGmVV0-4jc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dpGmVV0-4jc.mp4/dpGmVV0-4jc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dpGmVV0-4jc.mp4/dpGmVV0-4jc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dpGmVV0-4jc.m3u8/dpGmVV0-4jc.m3u8"}, "path": "khan/math/probability/probability-and-combinatorics-topic/decisions-with-probability/idea-behind-hypothesis-testing/", "duration": 469, "id": "dpGmVV0-4jc", "title": "Idea behind hypothesis testing", "format": "mp4", "description": "", "slug": "idea-behind-hypothesis-testing", "kind": "Video", "video_id": "dpGmVV0-4jc", "keywords": "", "youtube_id": "dpGmVV0-4jc", "readable_id": "idea-behind-hypothesis-testing"}, "D9uJxXnDTU8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D9uJxXnDTU8.mp4/D9uJxXnDTU8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D9uJxXnDTU8.mp4/D9uJxXnDTU8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D9uJxXnDTU8.m3u8/D9uJxXnDTU8.m3u8"}, "path": "khan/test-prep/ap-art-history/indigenous-americas/olmec-mask/", "duration": 163, "id": "D9uJxXnDTU8", "title": "Olmec mask (Olmec-style mask)", "format": "mp4", "description": "Olmec mask (Olmec-style mask), c. 1200 - 400 B.C.E., jadeite, 4 x 3-3/8 x 1-1/4 inches found in offering 20 buried c. 1470 C.E. at the Aztec Templo Mayor (Museo del Templo Mayor, Mexico City)\nSpeakers: Dr. Lauren Kilroy-Ewbank and Dr. Steven Zucker\n\nItems buried in offerings included ceramic vessels, stone sculptures, obsidian blades, seashells, greenstone, and objects gathered from earlier locales (like Olmec sites and the city of Teotihuacan).\u00a0The Olmecs are known as \u201crubber people,\u201d a name given to the peoples of the Gulf Coast after the Spanish Conquest. We don\u2019t know what they called themselves.\u00a0Jadeite was quarried in the Sierra de las Minas in Guatemala, and was imported to the Gulf Coast of Mexico.\u00a0Items acquired via trade or tribute [by the Aztecs] included feathers, obsidian, jadeite, cotton, cacao, and turquoise.\n", "slug": "olmec-mask", "kind": "Video", "video_id": "D9uJxXnDTU8", "keywords": "Olmec AP art history", "youtube_id": "D9uJxXnDTU8", "readable_id": "olmec-mask"}, "K078WCcmQ2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K078WCcmQ2c.mp4/K078WCcmQ2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K078WCcmQ2c.mp4/K078WCcmQ2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K078WCcmQ2c.m3u8/K078WCcmQ2c.m3u8"}, "duration": 625, "id": "K078WCcmQ2c", "title": "Enthalpy", "format": "mp4", "description": "Energy is like the bestest best friend ever and yet, most of the time we take it for granted. Hank feels bad for our friend and wants us to learn more about it so that we can understand what it's trying to tell us - like that any bond between two atoms contains energy. How much energy? That's not the simplest question to answer, but today Hank will answer it (kinda), by teaching us about a nifty little thing called enthalpy.\nWriters: Edi Gonzalez & Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem18-enthalpy/", "slug": "chem18-enthalpy", "kind": "Video", "video_id": "K078WCcmQ2c", "keywords": "", "youtube_id": "K078WCcmQ2c", "readable_id": "chem18-enthalpy"}, "a5uNoOnEy_A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a5uNoOnEy_A.mp4/a5uNoOnEy_A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a5uNoOnEy_A.mp4/a5uNoOnEy_A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a5uNoOnEy_A.m3u8/a5uNoOnEy_A.m3u8"}, "duration": 901, "id": "a5uNoOnEy_A", "title": "Ex 1: Distributive property to simplify", "format": "mp4", "description": "Multi-Step Equations", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/complicated_equations/multi-step-equations/", "slug": "multi-step-equations", "kind": "Video", "video_id": "a5uNoOnEy_A", "keywords": "Multi, Step, Equations, CC_39336_A-REI_3", "youtube_id": "a5uNoOnEy_A", "readable_id": "multi-step-equations"}, "9e9GWdT2pEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9e9GWdT2pEQ.mp4/9e9GWdT2pEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9e9GWdT2pEQ.mp4/9e9GWdT2pEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9e9GWdT2pEQ.m3u8/9e9GWdT2pEQ.m3u8"}, "duration": 1061, "id": "9e9GWdT2pEQ", "title": "Vietnam War", "format": "mp4", "description": "Overview of the Vietnam War", "path": "khan/humanities/history/euro-hist/cold-war/vietnam-war/", "slug": "vietnam-war", "kind": "Video", "video_id": "9e9GWdT2pEQ", "keywords": "Ho, Chi, Minh, Viet, Cong, Domino, theory, containment", "youtube_id": "9e9GWdT2pEQ", "readable_id": "vietnam-war"}, "bm65xCS5ivo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bm65xCS5ivo.mp4/bm65xCS5ivo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bm65xCS5ivo.mp4/bm65xCS5ivo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bm65xCS5ivo.m3u8/bm65xCS5ivo.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/the-circulatory-system/layers-of-the-heart/", "duration": 733, "id": "bm65xCS5ivo", "title": "Layers of the heart", "format": "mp4", "description": "Take a closer look at the heart, explore some of its interesting features and get to know the three layers that make up the heart. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "layers-of-the-heart", "kind": "Video", "video_id": "bm65xCS5ivo", "keywords": "", "youtube_id": "bm65xCS5ivo", "readable_id": "layers-of-the-heart"}, "CBsxUKKz1uY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CBsxUKKz1uY.mp4/CBsxUKKz1uY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CBsxUKKz1uY.mp4/CBsxUKKz1uY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CBsxUKKz1uY.m3u8/CBsxUKKz1uY.m3u8"}, "duration": 131, "id": "CBsxUKKz1uY", "title": "Orazio Gentileschi's paintings of women and divine love", "format": "mp4", "description": "Gentileschi painted three women challenged in their devotion to God reflecting the Catholic belief that divine ecstasy can only be achieved when a woman chooses freely to love God. Love art? Follow us on Google+ to stay in touch.", "path": "gentileschi-divine-love/", "slug": "gentileschi-divine-love", "kind": "Video", "video_id": "CBsxUKKz1uY", "keywords": "", "youtube_id": "CBsxUKKz1uY", "readable_id": "gentileschi-divine-love"}, "AgQMgxkYk44": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AgQMgxkYk44.mp4/AgQMgxkYk44.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AgQMgxkYk44.mp4/AgQMgxkYk44.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AgQMgxkYk44.m3u8/AgQMgxkYk44.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-occupational-lung-diseases/occupational-asthma-and-mesothelioma/", "duration": 390, "id": "AgQMgxkYk44", "title": "Occupational asthma and mesothelioma", "format": "mp4", "description": "", "slug": "occupational-asthma-and-mesothelioma", "kind": "Video", "video_id": "AgQMgxkYk44", "keywords": "", "youtube_id": "AgQMgxkYk44", "readable_id": "occupational-asthma-and-mesothelioma"}, "iPROoc_o0p8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iPROoc_o0p8.mp4/iPROoc_o0p8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iPROoc_o0p8.mp4/iPROoc_o0p8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iPROoc_o0p8.m3u8/iPROoc_o0p8.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/income-inequality/", "duration": 416, "id": "iPROoc_o0p8", "title": "Connecting income to capital growth and potential inequality", "format": "mp4", "description": "", "slug": "income-inequality", "kind": "Video", "video_id": "iPROoc_o0p8", "keywords": "", "youtube_id": "iPROoc_o0p8", "readable_id": "income-inequality"}, "CyNjK7dv-IM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CyNjK7dv-IM.mp4/CyNjK7dv-IM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CyNjK7dv-IM.mp4/CyNjK7dv-IM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CyNjK7dv-IM.m3u8/CyNjK7dv-IM.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/delacroix-scene-of-the-massacre-at-chios-greek-families-awaiting-death-or-slavery-1824/", "duration": 195, "id": "CyNjK7dv-IM", "title": "Delacroix, Scene of the massacre at Chios", "format": "mp4", "description": "Eug\u00e8ne Delacroix, Scene of the massacre at Chios; Greek families awaiting death or slavery, 1824 Salon, oil on canvas, 164\" \u00d7 139\" (419 cm \u00d7 354 cm) (Mus\u00e9e du Louvre, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker http://www.smarthistory.org/delacroix-scene-massacre-chios.html", "slug": "delacroix-scene-of-the-massacre-at-chios-greek-families-awaiting-death-or-slavery-1824", "kind": "Video", "video_id": "CyNjK7dv-IM", "keywords": "Delacroix, Chios, Louvre, Art History, Smarthistory, Eug\u00e8ne Delacroix", "youtube_id": "CyNjK7dv-IM", "readable_id": "delacroix-scene-of-the-massacre-at-chios-greek-families-awaiting-death-or-slavery-1824"}, "B4k9JklNrTk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B4k9JklNrTk.mp4/B4k9JklNrTk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B4k9JklNrTk.mp4/B4k9JklNrTk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B4k9JklNrTk.m3u8/B4k9JklNrTk.m3u8"}, "duration": 157, "id": "B4k9JklNrTk", "title": "\"Sustenance\" with Catharine Roehrig", "format": "mp4", "description": "Met curator Catharine Roehrig on realism in Statue of an Offering Bearer dating from Egypt\u2019s Middle Kingdom.\n\nThis masterpiece of Egyptian wood carving was discovered in a hidden chamber at the side of the passage leading into the rock cut tomb of the royal chief steward Meketre, who began his career under King Nebhepetre Mentuhotep II of Dynasty 11 and continued to serve successive kings into the early years of Dynasty 12. Together with a second, very similar female figure (now in the Egyptian Museum, Cairo) this statue flanked the group of twenty two models of gardens, workshops, boats, and a funeral procession that were crammed into the chamber's narrow space.\u00a0Striding forward with her left leg, the woman carries on her head a basket filled with cuts of meat. In her right hand she holds a live duck by its wings. The figure's iconography is well known from reliefs of the Old Kingdom in which rows of offering bearers were depicted. Place names were often written beside these figures identifying them as personifications of estates that would provide sustenance for the spirit of the tomb owner in perpetuity. The woman is richly adorned with jewelry and wears a dress decorated with a pattern of feathers, the kind of garment often associated with goddesses. Thus, this figure and its companion in Cairo may also be associated with the funerary goddesses Isis and Nephthys who are often depicted at the foot and head of coffins, protecting the deceased.\u00a0\n\nAll the accessible rooms in the tomb of Meketre had been plundered in ancient times, but, early in 1920, the Museum's excavator, Herbert Winlock had his workmen clean out the accumulated debris in order to obtain an accurate floor plan of the tomb. It was during this cleaning operation that the small hidden chamber was discovered, filled with its almost perfectly preserved models and the two statues. In the division of finds between the Egyptian Government and the Metropolitan Museum, half of the contents went to the Egyptian Museum in Cairo, and half came to New York.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit a Find an educator resource.\n", "path": "sustenance/", "slug": "sustenance", "kind": "Video", "video_id": "B4k9JklNrTk", "keywords": "death, motion, sculpture, wood, youth, Africa", "youtube_id": "B4k9JklNrTk", "readable_id": "sustenance"}, "7FQWBCeVIJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7FQWBCeVIJM.mp4/7FQWBCeVIJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7FQWBCeVIJM.mp4/7FQWBCeVIJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7FQWBCeVIJM.m3u8/7FQWBCeVIJM.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/reverse-chain-rule/reverse-chain-rule-example/", "duration": 347, "id": "7FQWBCeVIJM", "title": "Reverse chain rule example", "format": "mp4", "description": "", "slug": "reverse-chain-rule-example", "kind": "Video", "video_id": "7FQWBCeVIJM", "keywords": "", "youtube_id": "7FQWBCeVIJM", "readable_id": "reverse-chain-rule-example"}, "tUvpwdqdLlI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tUvpwdqdLlI.mp4/tUvpwdqdLlI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tUvpwdqdLlI.mp4/tUvpwdqdLlI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tUvpwdqdLlI.m3u8/tUvpwdqdLlI.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/nickel-cadmium-battery/", "duration": 667, "id": "tUvpwdqdLlI", "title": "Nickel-cadmium battery", "format": "mp4", "description": "", "slug": "nickel-cadmium-battery", "kind": "Video", "video_id": "tUvpwdqdLlI", "keywords": "", "youtube_id": "tUvpwdqdLlI", "readable_id": "nickel-cadmium-battery"}, "YhHEP2W1gn8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YhHEP2W1gn8.mp4/YhHEP2W1gn8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YhHEP2W1gn8.mp4/YhHEP2W1gn8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YhHEP2W1gn8.m3u8/YhHEP2W1gn8.m3u8"}, "duration": 111, "id": "YhHEP2W1gn8", "title": "The student experience", "format": "mp4", "description": "This video tour shows what it's like to learn math on Khan Academy and gives an overview of our learning dashboard.", "path": "learning-math-on-khan-academy/", "slug": "learning-math-on-khan-academy", "kind": "Video", "video_id": "YhHEP2W1gn8", "keywords": "", "youtube_id": "YhHEP2W1gn8", "readable_id": "learning-math-on-khan-academy"}, "RjpT4Apgda8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RjpT4Apgda8.mp4/RjpT4Apgda8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RjpT4Apgda8.mp4/RjpT4Apgda8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RjpT4Apgda8.m3u8/RjpT4Apgda8.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/peplos-kore/", "duration": 302, "id": "RjpT4Apgda8", "title": "Peplos Kore from the Acropolis", "format": "mp4", "description": "Peplos Kore, c. 530 B.C.E., from the Acropolis, Athens, Greece (Acropolis Museum, Athens)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "peplos-kore", "kind": "Video", "video_id": "RjpT4Apgda8", "keywords": "Peplos, Kore, Acropolis, Athens, Greece, sculpture", "youtube_id": "RjpT4Apgda8", "readable_id": "peplos-kore"}, "sHkZWu9tgpw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sHkZWu9tgpw.mp4/sHkZWu9tgpw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sHkZWu9tgpw.mp4/sHkZWu9tgpw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sHkZWu9tgpw.m3u8/sHkZWu9tgpw.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/dix-portrait-of-sylvia-von-harden-1926/", "duration": 478, "id": "sHkZWu9tgpw", "title": "Dix, Portrait of the Journalist Sylvia von Harden", "format": "mp4", "description": "Otto Dix, Portrait of the Journalist Sylvia von Harden, 1926 (Mus\u00e9e National d'Art Moderne, Centre Georges Pompidou, Paris)\n\n\nSpeakers: Dr. Juliana Kreinik, Chad Laird\n\nFor more videos, visit www.smarthistory.org", "slug": "dix-portrait-of-sylvia-von-harden-1926", "kind": "Video", "video_id": "sHkZWu9tgpw", "keywords": "Otto Dix, German art, Art History Neue Sachlichkeit, New Objectivity, Portraiture, Weimar Era, modern art, Smarthistory", "youtube_id": "sHkZWu9tgpw", "readable_id": "dix-portrait-of-sylvia-von-harden-1926"}, "Msrym4oGVSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Msrym4oGVSk.mp4/Msrym4oGVSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Msrym4oGVSk.mp4/Msrym4oGVSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Msrym4oGVSk.m3u8/Msrym4oGVSk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/basics-of-egg-development/", "duration": 436, "id": "Msrym4oGVSk", "title": "Basics of egg development", "format": "mp4", "description": "", "slug": "basics-of-egg-development", "kind": "Video", "video_id": "Msrym4oGVSk", "keywords": "", "youtube_id": "Msrym4oGVSk", "readable_id": "basics-of-egg-development"}, "2pE7GUzW6-4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2pE7GUzW6-4.mp4/2pE7GUzW6-4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2pE7GUzW6-4.mp4/2pE7GUzW6-4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2pE7GUzW6-4.m3u8/2pE7GUzW6-4.m3u8"}, "path": "khan/computing/computer-programming/html-css-js/html-js-dom-events/making-webpages-interactive-with-events/", "duration": 86, "id": "2pE7GUzW6-4", "title": "Making webpages interactive with events", "format": "mp4", "description": "", "slug": "making-webpages-interactive-with-events", "kind": "Video", "video_id": "2pE7GUzW6-4", "keywords": "", "youtube_id": "2pE7GUzW6-4", "readable_id": "making-webpages-interactive-with-events"}, "-ScrE9jd4Do": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-ScrE9jd4Do.mp4/-ScrE9jd4Do.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-ScrE9jd4Do.mp4/-ScrE9jd4Do.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-ScrE9jd4Do.m3u8/-ScrE9jd4Do.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2010-may-6-5/", "duration": 102, "id": "-ScrE9jd4Do", "title": "5 Equations that match constraints", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-5", "kind": "Video", "video_id": "-ScrE9jd4Do", "keywords": "", "youtube_id": "-ScrE9jd4Do", "readable_id": "sat-2010-may-6-5"}, "SSf1HenQhWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SSf1HenQhWs.mp4/SSf1HenQhWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SSf1HenQhWs.mp4/SSf1HenQhWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SSf1HenQhWs.m3u8/SSf1HenQhWs.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-martian-year/", "duration": 154, "id": "SSf1HenQhWs", "title": "Curiosity completes its first martian year", "format": "mp4", "description": "On June 24, 2014, NASA's Curiosity rover completes her first Martian year (687 Earth days). Hear team members describe how the mission accomplished its main goal to find a past habitable environment on the Red Planet and the ongoing science studies.", "slug": "curiosity-rover-report-martian-year", "kind": "Video", "video_id": "SSf1HenQhWs", "keywords": "", "youtube_id": "SSf1HenQhWs", "readable_id": "curiosity-rover-report-martian-year"}, "-RT52vs9tBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-RT52vs9tBI.mp4/-RT52vs9tBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-RT52vs9tBI.mp4/-RT52vs9tBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-RT52vs9tBI.m3u8/-RT52vs9tBI.m3u8"}, "duration": 112, "id": "-RT52vs9tBI", "title": "Properties of numbers 2", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/properties-of-numbers-2/", "slug": "properties-of-numbers-2", "kind": "Video", "video_id": "-RT52vs9tBI", "keywords": "", "youtube_id": "-RT52vs9tBI", "readable_id": "properties-of-numbers-2"}, "mw-rwhpAQe4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mw-rwhpAQe4.mp4/mw-rwhpAQe4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mw-rwhpAQe4.mp4/mw-rwhpAQe4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mw-rwhpAQe4.m3u8/mw-rwhpAQe4.m3u8"}, "duration": 327, "id": "mw-rwhpAQe4", "title": "Microglia", "format": "mp4", "description": "This video describes the structure and function of microglia.\u00a0 By Matt Jensen.", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neural-cells/microglia/", "slug": "microglia", "kind": "Video", "video_id": "mw-rwhpAQe4", "keywords": "", "youtube_id": "mw-rwhpAQe4", "readable_id": "microglia"}, "muJatqh6wRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/muJatqh6wRM.mp4/muJatqh6wRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/muJatqh6wRM.mp4/muJatqh6wRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/muJatqh6wRM.m3u8/muJatqh6wRM.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/franz-von-stuck-the-sin-1893/", "duration": 192, "id": "muJatqh6wRM", "title": "Stuck, The Sin", "format": "mp4", "description": "Franz von Stuck, The Sin, 1893 (Neue Pinakothek, Munich) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "franz-von-stuck-the-sin-1893", "kind": "Video", "video_id": "muJatqh6wRM", "keywords": "", "youtube_id": "muJatqh6wRM", "readable_id": "franz-von-stuck-the-sin-1893"}, "JPhd76sGIs8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JPhd76sGIs8.mp4/JPhd76sGIs8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JPhd76sGIs8.mp4/JPhd76sGIs8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JPhd76sGIs8.m3u8/JPhd76sGIs8.m3u8"}, "duration": 233, "id": "JPhd76sGIs8", "title": "Maslow's hierarchy of needs", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/maslows-hierarchy-of-needs/", "slug": "maslows-hierarchy-of-needs", "kind": "Video", "video_id": "JPhd76sGIs8", "keywords": "", "youtube_id": "JPhd76sGIs8", "readable_id": "maslows-hierarchy-of-needs"}, "R486L0M5cWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R486L0M5cWk.mp4/R486L0M5cWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R486L0M5cWk.mp4/R486L0M5cWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R486L0M5cWk.m3u8/R486L0M5cWk.m3u8"}, "duration": 507, "id": "R486L0M5cWk", "title": "Partial quotient method of division", "format": "mp4", "description": "An alternate to traditional long division", "path": "khan/math/arithmetic/multiplication-division/partial_quotient_division/partial-quotient-division/", "slug": "partial-quotient-division", "kind": "Video", "video_id": "R486L0M5cWk", "keywords": "arithmetic, mental, math", "youtube_id": "R486L0M5cWk", "readable_id": "partial-quotient-division"}, "IJWDyPFXGyM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IJWDyPFXGyM.mp4/IJWDyPFXGyM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IJWDyPFXGyM.mp4/IJWDyPFXGyM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IJWDyPFXGyM.m3u8/IJWDyPFXGyM.m3u8"}, "duration": 263, "id": "IJWDyPFXGyM", "title": "Finding a piecewise function definition from graph", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/finding-a-piecewise-function-definition-from-graph/", "slug": "finding-a-piecewise-function-definition-from-graph", "kind": "Video", "video_id": "IJWDyPFXGyM", "keywords": "", "youtube_id": "IJWDyPFXGyM", "readable_id": "finding-a-piecewise-function-definition-from-graph"}, "Lq6e0qU9Vr4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lq6e0qU9Vr4.mp4/Lq6e0qU9Vr4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lq6e0qU9Vr4.mp4/Lq6e0qU9Vr4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lq6e0qU9Vr4.m3u8/Lq6e0qU9Vr4.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/addition-reactions-conjugated-dienes/addition-reaction-of-conjugated-dienes-i-mechanism/", "duration": 566, "id": "Lq6e0qU9Vr4", "title": "Addition reaction of conjugated dienes I: Mechanism", "format": "mp4", "description": "", "slug": "addition-reaction-of-conjugated-dienes-i-mechanism", "kind": "Video", "video_id": "Lq6e0qU9Vr4", "keywords": "", "youtube_id": "Lq6e0qU9Vr4", "readable_id": "addition-reaction-of-conjugated-dienes-i-mechanism"}, "unSBFwK881s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/unSBFwK881s.mp4/unSBFwK881s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/unSBFwK881s.mp4/unSBFwK881s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/unSBFwK881s.m3u8/unSBFwK881s.m3u8"}, "duration": 483, "id": "unSBFwK881s", "title": "Graphing inequalities", "format": "mp4", "description": "Graphing Inequalities", "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphing-inequalities/", "slug": "graphing-inequalities", "kind": "Video", "video_id": "unSBFwK881s", "keywords": "Graphing, Inequalities", "youtube_id": "unSBFwK881s", "readable_id": "graphing-inequalities"}, "c7Yy9v8dH8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c7Yy9v8dH8s.mp4/c7Yy9v8dH8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c7Yy9v8dH8s.mp4/c7Yy9v8dH8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c7Yy9v8dH8s.m3u8/c7Yy9v8dH8s.m3u8"}, "duration": 699, "id": "c7Yy9v8dH8s", "title": "Chordates", "format": "mp4", "description": "Hank introduces us to ourselves by taking us on a journey through the fascinatingly diverse phyla known as chordata. And the next time someone asks you who you are, you can give them the facts: you're a mammalian amniotic tetrapodal sarcopterygian osteichthyen gnathostomal vertebrate cranial chordate.", "path": "crash-course-biology-123/", "slug": "crash-course-biology-123", "kind": "Video", "video_id": "c7Yy9v8dH8s", "keywords": "", "youtube_id": "c7Yy9v8dH8s", "readable_id": "crash-course-biology-123"}, "qYZF6oIZtfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qYZF6oIZtfc.mp4/qYZF6oIZtfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qYZF6oIZtfc.mp4/qYZF6oIZtfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qYZF6oIZtfc.m3u8/qYZF6oIZtfc.m3u8"}, "duration": 61, "id": "qYZF6oIZtfc", "title": "Anybody can learn to code", "format": "mp4", "description": "A 60 second video from Code.org on how anybody can learn to code", "path": "anybody-can-learn-code/", "slug": "anybody-can-learn-code", "kind": "Video", "video_id": "qYZF6oIZtfc", "keywords": "", "youtube_id": "qYZF6oIZtfc", "readable_id": "anybody-can-learn-code"}, "0b2Tl0x-niw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0b2Tl0x-niw.mp4/0b2Tl0x-niw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0b2Tl0x-niw.mp4/0b2Tl0x-niw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0b2Tl0x-niw.m3u8/0b2Tl0x-niw.m3u8"}, "duration": 398, "id": "0b2Tl0x-niw", "title": "Tragedy of the commons", "format": "mp4", "description": "How public resources can be abused", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/externalities-topic/tragedy-of-the-commons/", "slug": "tragedy-of-the-commons", "kind": "Video", "video_id": "0b2Tl0x-niw", "keywords": "microeconomics", "youtube_id": "0b2Tl0x-niw", "readable_id": "tragedy-of-the-commons"}, "GwTehaUOkhg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GwTehaUOkhg.mp4/GwTehaUOkhg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GwTehaUOkhg.mp4/GwTehaUOkhg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GwTehaUOkhg.m3u8/GwTehaUOkhg.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/shirazeh-houshiary/", "duration": 311, "id": "GwTehaUOkhg", "title": "Shirazeh Houshiary", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nBorn in Iran, Shirazeh Houshiary has lived and worked in England since 1973, consistently drawing on modern sensibilities as well as Islamic traditions, particularly Sufi mysticism. Here she discusses works like Veil\u00a0(1999), returning to themes of light and darkness, visual perception and judgement, explaining: \"I'm trying to explore how we see the world.\"", "slug": "shirazeh-houshiary", "kind": "Video", "video_id": "GwTehaUOkhg", "keywords": "Tate", "youtube_id": "GwTehaUOkhg", "readable_id": "shirazeh-houshiary"}, "Dq0xFgQB9qo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dq0xFgQB9qo.mp4/Dq0xFgQB9qo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dq0xFgQB9qo.mp4/Dq0xFgQB9qo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dq0xFgQB9qo.m3u8/Dq0xFgQB9qo.m3u8"}, "duration": 100, "id": "Dq0xFgQB9qo", "title": "Number of solutions to linear equations ex 3", "format": "mp4", "description": "", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solutions-linear-equations/number-of-solutions-to-linear-equations-ex-3/", "slug": "number-of-solutions-to-linear-equations-ex-3", "kind": "Video", "video_id": "Dq0xFgQB9qo", "keywords": "", "youtube_id": "Dq0xFgQB9qo", "readable_id": "number-of-solutions-to-linear-equations-ex-3"}, "3ia-sGkAVf8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3ia-sGkAVf8.mp4/3ia-sGkAVf8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3ia-sGkAVf8.mp4/3ia-sGkAVf8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3ia-sGkAVf8.m3u8/3ia-sGkAVf8.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-16/", "duration": 601, "id": "3ia-sGkAVf8", "title": "GMAT: Data sufficiency 16", "format": "mp4", "description": "73-76, pg. 284", "slug": "gmat-data-sufficiency-16", "kind": "Video", "video_id": "3ia-sGkAVf8", "keywords": "gmat, data, sufficiency", "youtube_id": "3ia-sGkAVf8", "readable_id": "gmat-data-sufficiency-16"}, "AreOMvPCxv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AreOMvPCxv8.mp4/AreOMvPCxv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AreOMvPCxv8.mp4/AreOMvPCxv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AreOMvPCxv8.m3u8/AreOMvPCxv8.m3u8"}, "duration": 659, "id": "AreOMvPCxv8", "title": "Part 1 of proof of Heron's formula", "format": "mp4", "description": "Part 1 of the proof of Heron's Formula", "path": "khan/math/geometry/basic-geometry/heron_formula_tutorial/part-1-of-proof-of-heron-s-formula/", "slug": "part-1-of-proof-of-heron-s-formula", "kind": "Video", "video_id": "AreOMvPCxv8", "keywords": "heron's, proof, geometry, area", "youtube_id": "AreOMvPCxv8", "readable_id": "part-1-of-proof-of-heron-s-formula"}, "d5lcGCbV5cM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d5lcGCbV5cM.mp4/d5lcGCbV5cM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d5lcGCbV5cM.mp4/d5lcGCbV5cM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d5lcGCbV5cM.m3u8/d5lcGCbV5cM.m3u8"}, "duration": 595, "id": "d5lcGCbV5cM", "title": "Thinking about reasonable units to describe a rate", "format": "mp4", "description": "", "path": "khan/math/algebra/introduction-to-algebra/units-algebra/thinking-about-reasonable-units-to-describe-a-rate/", "slug": "thinking-about-reasonable-units-to-describe-a-rate", "kind": "Video", "video_id": "d5lcGCbV5cM", "keywords": "", "youtube_id": "d5lcGCbV5cM", "readable_id": "thinking-about-reasonable-units-to-describe-a-rate"}, "dllD-6loBK4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dllD-6loBK4.mp4/dllD-6loBK4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dllD-6loBK4.mp4/dllD-6loBK4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dllD-6loBK4.m3u8/dllD-6loBK4.m3u8"}, "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-38/", "duration": 741, "id": "dllD-6loBK4", "title": "World War II", "format": "mp4", "description": "In which John Green teaches you about World War II, aka The Great Patriotic War, aka The Big One. So how did this war happen? And what does it mean? We've all learned the facts about World War II many times over, thanks to repeated classroom coverage, the History channel, and your grandfather (or maybe great-grandfather) showing you that Nazi bayonet he used to keep in his sock drawer and telling you a bunch of age-inappropriate stories about his harrowing war experiences. So, why did the Axis powers think forceful expansion was a good idea? (they were hungry). So why did this thing shake out in favor of the Allies? HInt: it has to do with the fact that it was a world war. Germany and Japan made some pretty serious strategic errors, such as invading Russia and attacking the United States, and those errors meant that pretty much the whole world was against them. So, find out how this worldwide alliance came together to stop the Axis expansion. All this, plus Canada finally gets the respectful treatment it deserves. Oh, and a warning: there are a few graphic images in this episode. Sensitive viewers may want to use caution, especially around the 9:15 mark.", "slug": "crash-course-world-history-38", "kind": "Video", "video_id": "dllD-6loBK4", "keywords": "crash course", "youtube_id": "dllD-6loBK4", "readable_id": "crash-course-world-history-38"}, "wZJ_iAxvHGU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wZJ_iAxvHGU.mp4/wZJ_iAxvHGU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wZJ_iAxvHGU.mp4/wZJ_iAxvHGU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wZJ_iAxvHGU.m3u8/wZJ_iAxvHGU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/coupling-constant/", "duration": 370, "id": "wZJ_iAxvHGU", "title": "Coupling constant", "format": "mp4", "description": "", "slug": "coupling-constant", "kind": "Video", "video_id": "wZJ_iAxvHGU", "keywords": "", "youtube_id": "wZJ_iAxvHGU", "readable_id": "coupling-constant"}, "eE7BR9HCffk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eE7BR9HCffk.mp4/eE7BR9HCffk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eE7BR9HCffk.mp4/eE7BR9HCffk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eE7BR9HCffk.m3u8/eE7BR9HCffk.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-germany/caspar-david-friedrich-woman-at-a-window-1822/", "duration": 286, "id": "eE7BR9HCffk", "title": "Friedrich, Woman at a Window", "format": "mp4", "description": "Caspar David Friedrich, Woman at a Window, 1822, oil on canvas, 44 x 73 cm (Alte Nationalgalerie, Berlin). In the Google Art Project: http://www.googleartproject.com/collection/alte-nationalgalerie/artwork/woman-at-a-window-caspar-david-friedrich/328396/", "slug": "caspar-david-friedrich-woman-at-a-window-1822", "kind": "Video", "video_id": "eE7BR9HCffk", "keywords": "Caspar David Friedrich, Friedrich, Woman at a Window, Window, 1822, Alte Nationalgalerie, Berlin, Romanticism, Interior, Genre, Mast, art, painting, art history, Google Art Project, smarthistory, Khan Academy, OER educational", "youtube_id": "eE7BR9HCffk", "readable_id": "caspar-david-friedrich-woman-at-a-window-1822"}, "XuDGJ-LUnAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XuDGJ-LUnAU.mp4/XuDGJ-LUnAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XuDGJ-LUnAU.mp4/XuDGJ-LUnAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XuDGJ-LUnAU.m3u8/XuDGJ-LUnAU.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-35/", "duration": 571, "id": "XuDGJ-LUnAU", "title": "GMAT: Data sufficiency 35", "format": "mp4", "description": "138-140, pg. 289", "slug": "gmat-data-sufficiency-35", "kind": "Video", "video_id": "XuDGJ-LUnAU", "keywords": "gmat, data, sufficiency, math", "youtube_id": "XuDGJ-LUnAU", "readable_id": "gmat-data-sufficiency-35"}, "1E3Z_R5AHdg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1E3Z_R5AHdg.mp4/1E3Z_R5AHdg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1E3Z_R5AHdg.mp4/1E3Z_R5AHdg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1E3Z_R5AHdg.m3u8/1E3Z_R5AHdg.m3u8"}, "duration": 451, "id": "1E3Z_R5AHdg", "title": "Viewing g as the value of Earth's gravitational field near the surface", "format": "mp4", "description": "Viewing g as the value of Earth's gravitational field near the surface rather than the acceleration due to gravity near Earth's surface for an object in freefall", "path": "khan/science/physics/one-dimensional-motion/kinematic_formulas/viewing-g-as-the-value-of-earth-s-gravitational-field-near-the-surface/", "slug": "viewing-g-as-the-value-of-earth-s-gravitational-field-near-the-surface", "kind": "Video", "video_id": "1E3Z_R5AHdg", "keywords": "field, vector, scalar", "youtube_id": "1E3Z_R5AHdg", "readable_id": "viewing-g-as-the-value-of-earth-s-gravitational-field-near-the-surface"}, "iorZdz4dsBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iorZdz4dsBU.mp4/iorZdz4dsBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iorZdz4dsBU.mp4/iorZdz4dsBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iorZdz4dsBU.m3u8/iorZdz4dsBU.m3u8"}, "duration": 571, "id": "iorZdz4dsBU", "title": "Multiplying and dividing with significant figures", "format": "mp4", "description": "Multiplying and dividing with significant figures", "path": "khan/math/pre-algebra/decimals-pre-alg/sig-figs-pre-alg/multiplying-and-dividing-with-significant-figures/", "slug": "multiplying-and-dividing-with-significant-figures", "kind": "Video", "video_id": "iorZdz4dsBU", "keywords": "significant, digits", "youtube_id": "iorZdz4dsBU", "readable_id": "multiplying-and-dividing-with-significant-figures"}, "v8WMx_TmEyQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v8WMx_TmEyQ.mp4/v8WMx_TmEyQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v8WMx_TmEyQ.mp4/v8WMx_TmEyQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v8WMx_TmEyQ.m3u8/v8WMx_TmEyQ.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/rustem-pasha/", "duration": 558, "id": "v8WMx_TmEyQ", "title": "Mimar Sinan, R\u00fcstem Pasha Mosque", "format": "mp4", "description": "Mimar Sinan, R\u00fcstem Pasha Mosque, Istanbul, 1561-63.\u00a0Speakers: Dr. Elizabeth Macaulay-Lewis and Dr. Beth Harris", "slug": "rustem-pasha", "kind": "Video", "video_id": "v8WMx_TmEyQ", "keywords": "Ottoman Istanbul", "youtube_id": "v8WMx_TmEyQ", "readable_id": "rustem-pasha"}, "5Dh-gvGdMn8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5Dh-gvGdMn8.mp4/5Dh-gvGdMn8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5Dh-gvGdMn8.mp4/5Dh-gvGdMn8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5Dh-gvGdMn8.m3u8/5Dh-gvGdMn8.m3u8"}, "duration": 307, "id": "5Dh-gvGdMn8", "title": "Unlock Art: Great Double Acts", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nRock duo Jamie Hince and Alison Mosshart know a thing or two about creative partnership. Challenging the popular myth that art is made by solitary, angst-ridden individuals, they celebrate some of the art world's most interesting collaborators, such as Marina Abramovi\u0107 and Ulay, Gilbert & George, and Jake and Dinos Chapman. Explore the art of collaboration in this brief history of artists who work together.", "path": "unlock-art-great-double-acts/", "slug": "unlock-art-great-double-acts", "kind": "Video", "video_id": "5Dh-gvGdMn8", "keywords": "Tate, performance art", "youtube_id": "5Dh-gvGdMn8", "readable_id": "unlock-art-great-double-acts"}, "xwOTlMaerEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xwOTlMaerEQ.mp4/xwOTlMaerEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xwOTlMaerEQ.mp4/xwOTlMaerEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xwOTlMaerEQ.m3u8/xwOTlMaerEQ.m3u8"}, "duration": 340, "id": "xwOTlMaerEQ", "title": "Percentage tax on hamburgers", "format": "mp4", "description": "What would happen if we have a percentage tax instead of a fixed dollar amount", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/deadweight-loss-tutorial/percentage-tax-on-hamburgers/", "slug": "percentage-tax-on-hamburgers", "kind": "Video", "video_id": "xwOTlMaerEQ", "keywords": "tax, microeconomics, supply, demand", "youtube_id": "xwOTlMaerEQ", "readable_id": "percentage-tax-on-hamburgers"}, "qIQmB5mkUgg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qIQmB5mkUgg.mp4/qIQmB5mkUgg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qIQmB5mkUgg.mp4/qIQmB5mkUgg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qIQmB5mkUgg.m3u8/qIQmB5mkUgg.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/how-dna-is-replicated-1/", "duration": 335, "id": "qIQmB5mkUgg", "title": "How DNA is replicated 1", "format": "mp4", "description": "", "slug": "how-dna-is-replicated-1", "kind": "Video", "video_id": "qIQmB5mkUgg", "keywords": "", "youtube_id": "qIQmB5mkUgg", "readable_id": "how-dna-is-replicated-1"}, "NF0lrkqXIkQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NF0lrkqXIkQ.mp4/NF0lrkqXIkQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NF0lrkqXIkQ.mp4/NF0lrkqXIkQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NF0lrkqXIkQ.m3u8/NF0lrkqXIkQ.m3u8"}, "path": "khan/math/probability/random-variables-topic/binomial_distribution/visualizing-a-binomial-distribution/", "duration": 567, "id": "NF0lrkqXIkQ", "title": "Visualizing a binomial distribution", "format": "mp4", "description": "", "slug": "visualizing-a-binomial-distribution", "kind": "Video", "video_id": "NF0lrkqXIkQ", "keywords": "", "youtube_id": "NF0lrkqXIkQ", "readable_id": "visualizing-a-binomial-distribution"}, "6YYiiixYz9A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6YYiiixYz9A.mp4/6YYiiixYz9A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6YYiiixYz9A.mp4/6YYiiixYz9A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6YYiiixYz9A.m3u8/6YYiiixYz9A.m3u8"}, "duration": 101, "id": "6YYiiixYz9A", "title": "Reciprocal of a mixed number", "format": "mp4", "description": "Reciprocal of a Mixed Number", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-mult-div-pre-alg/reciprocal-of-a-mixed-number/", "slug": "reciprocal-of-a-mixed-number", "kind": "Video", "video_id": "6YYiiixYz9A", "keywords": "U02_L2_T3_we1, Reciprocal, of, Mixed, Number, CC_5_NF_6, CC_6_NS_1", "youtube_id": "6YYiiixYz9A", "readable_id": "reciprocal-of-a-mixed-number"}, "prLfVucoxpw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/prLfVucoxpw.mp4/prLfVucoxpw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/prLfVucoxpw.mp4/prLfVucoxpw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/prLfVucoxpw.m3u8/prLfVucoxpw.m3u8"}, "path": "khan/science/physics/electricity-magnetism/charge-and-electric-field/proof-advanced-field-from-infinite-plate-part-1/", "duration": 807, "id": "prLfVucoxpw", "title": "Proof (advanced): Field from infinite plate (part 1)", "format": "mp4", "description": "Electric field generated by a uniformly charged, infinite plate", "slug": "proof-advanced-field-from-infinite-plate-part-1", "kind": "Video", "video_id": "prLfVucoxpw", "keywords": "uniform, constant, electric, field, physics", "youtube_id": "prLfVucoxpw", "readable_id": "proof-advanced-field-from-infinite-plate-part-1"}, "oBREri10ZHk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oBREri10ZHk.mp4/oBREri10ZHk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oBREri10ZHk.mp4/oBREri10ZHk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oBREri10ZHk.m3u8/oBREri10ZHk.m3u8"}, "duration": 464, "id": "oBREri10ZHk", "title": "Interpreting box plots", "format": "mp4", "description": "", "path": "interpreting-box-plots/", "slug": "interpreting-box-plots", "kind": "Video", "video_id": "oBREri10ZHk", "keywords": "", "youtube_id": "oBREri10ZHk", "readable_id": "interpreting-box-plots"}, "3YMEIjHl9og": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3YMEIjHl9og.mp4/3YMEIjHl9og.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3YMEIjHl9og.mp4/3YMEIjHl9og.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3YMEIjHl9og.m3u8/3YMEIjHl9og.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/beginners-guide-high-ren/verrocchio-with-leonardo-baptism-of-christ-1470-75/", "duration": 261, "id": "3YMEIjHl9og", "title": "Toward the high Renaissance: Verrocchio and Leonardo", "format": "mp4", "description": "Verrocchio (with Leonardo), Baptism of Christ, 1470-75 Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "verrocchio-with-leonardo-baptism-of-christ-1470-75", "kind": "Video", "video_id": "3YMEIjHl9og", "keywords": "Verrocchio, Leonardo, Florence", "youtube_id": "3YMEIjHl9og", "readable_id": "verrocchio-with-leonardo-baptism-of-christ-1470-75"}, "ob5U8zPbAX4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ob5U8zPbAX4.mp4/ob5U8zPbAX4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ob5U8zPbAX4.mp4/ob5U8zPbAX4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ob5U8zPbAX4.m3u8/ob5U8zPbAX4.m3u8"}, "duration": 373, "id": "ob5U8zPbAX4", "title": "Anatomy of a neuron", "format": "mp4", "description": "Introduction to the neuron and its anatomy", "path": "khan/science/health-and-medicine/nervous-system-and-sensory-infor/nervous-system-introduction/anatomy-of-a-neuron/", "slug": "anatomy-of-a-neuron", "kind": "Video", "video_id": "ob5U8zPbAX4", "keywords": "neuron, anatomy, dendrite, axon, myelin, schwann", "youtube_id": "ob5U8zPbAX4", "readable_id": "anatomy-of-a-neuron"}, "IMf5BbjpT1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IMf5BbjpT1I.mp4/IMf5BbjpT1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IMf5BbjpT1I.mp4/IMf5BbjpT1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IMf5BbjpT1I.m3u8/IMf5BbjpT1I.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2010-may-9-4/", "duration": 61, "id": "IMf5BbjpT1I", "title": "4 Weekly cookie inventory", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-4", "kind": "Video", "video_id": "IMf5BbjpT1I", "keywords": "", "youtube_id": "IMf5BbjpT1I", "readable_id": "sat-2010-may-9-4"}, "kiaU0jX-kk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kiaU0jX-kk0.mp4/kiaU0jX-kk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kiaU0jX-kk0.mp4/kiaU0jX-kk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kiaU0jX-kk0.m3u8/kiaU0jX-kk0.m3u8"}, "duration": 472, "id": "kiaU0jX-kk0", "title": "Steric hindrance", "format": "mp4", "description": "", "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-sal/steric-hindrance-1/", "slug": "steric-hindrance-1", "kind": "Video", "video_id": "kiaU0jX-kk0", "keywords": "", "youtube_id": "kiaU0jX-kk0", "readable_id": "steric-hindrance-1"}, "E9Q_Lc0g1xE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E9Q_Lc0g1xE.mp4/E9Q_Lc0g1xE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E9Q_Lc0g1xE.mp4/E9Q_Lc0g1xE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E9Q_Lc0g1xE.m3u8/E9Q_Lc0g1xE.m3u8"}, "duration": 885, "id": "E9Q_Lc0g1xE", "title": "Derivative of a position vector valued function", "format": "mp4", "description": "Visualizing the derivative of a position vector valued function", "path": "khan/math/multivariable-calculus/line_integrals_topic/position_vector_functions/derivative-of-a-position-vector-valued-function/", "slug": "derivative-of-a-position-vector-valued-function", "kind": "Video", "video_id": "E9Q_Lc0g1xE", "keywords": "derivative, vector, valued, function", "youtube_id": "E9Q_Lc0g1xE", "readable_id": "derivative-of-a-position-vector-valued-function"}, "hBES75bsh64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hBES75bsh64.mp4/hBES75bsh64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hBES75bsh64.mp4/hBES75bsh64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hBES75bsh64.m3u8/hBES75bsh64.m3u8"}, "duration": 220, "id": "hBES75bsh64", "title": "Danny O'Neill - Getting started", "format": "mp4", "description": "Danny O\u2019Neill, President of The Roasterie, describes the early days of his business, including how he fit a coffee roaster in his basement. Danny also tells the story of his first sale and how he figured out his early financials.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/danny-oneill/kauffman-danny-oneill2/", "slug": "kauffman-danny-oneill2", "kind": "Video", "video_id": "hBES75bsh64", "keywords": "", "youtube_id": "hBES75bsh64", "readable_id": "kauffman-danny-oneill2"}, "9zY5dhi6IZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9zY5dhi6IZY.mp4/9zY5dhi6IZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9zY5dhi6IZY.mp4/9zY5dhi6IZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9zY5dhi6IZY.m3u8/9zY5dhi6IZY.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/stress/behavioral-effects-of-stress/", "duration": 378, "id": "9zY5dhi6IZY", "title": "Behavioral effects of stress", "format": "mp4", "description": "", "slug": "behavioral-effects-of-stress", "kind": "Video", "video_id": "9zY5dhi6IZY", "keywords": "mcat", "youtube_id": "9zY5dhi6IZY", "readable_id": "behavioral-effects-of-stress"}, "3n8UjH9h_8I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3n8UjH9h_8I.mp4/3n8UjH9h_8I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3n8UjH9h_8I.mp4/3n8UjH9h_8I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3n8UjH9h_8I.m3u8/3n8UjH9h_8I.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/what-is-parkinsons-disease/", "duration": 534, "id": "3n8UjH9h_8I", "title": "What is Parkinson's disease?", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-parkinsons-disease", "kind": "Video", "video_id": "3n8UjH9h_8I", "keywords": "", "youtube_id": "3n8UjH9h_8I", "readable_id": "what-is-parkinsons-disease"}, "MaMk6-f3T9k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MaMk6-f3T9k.mp4/MaMk6-f3T9k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MaMk6-f3T9k.mp4/MaMk6-f3T9k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MaMk6-f3T9k.m3u8/MaMk6-f3T9k.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/solving-ratio-problems-with-tables-exercise/", "duration": 305, "id": "MaMk6-f3T9k", "title": "Solving ratio problems with tables example 1", "format": "mp4", "description": "We're displaying ratios in a table format here, and then asking: given a ratio, solve for equivalent ratios. Here are a few examples to practice on.", "slug": "solving-ratio-problems-with-tables-exercise", "kind": "Video", "video_id": "MaMk6-f3T9k", "keywords": "", "youtube_id": "MaMk6-f3T9k", "readable_id": "solving-ratio-problems-with-tables-exercise"}, "-eAzhBZgq28": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-eAzhBZgq28.mp4/-eAzhBZgq28.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-eAzhBZgq28.mp4/-eAzhBZgq28.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-eAzhBZgq28.m3u8/-eAzhBZgq28.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/linear-algebra-introduction-to-the-inverse-of-a-function/", "duration": 1133, "id": "-eAzhBZgq28", "title": "Introduction to the inverse of a function", "format": "mp4", "description": "Introduction to the inverse of a function", "slug": "linear-algebra-introduction-to-the-inverse-of-a-function", "kind": "Video", "video_id": "-eAzhBZgq28", "keywords": "Linear, algebra, function, inverse", "youtube_id": "-eAzhBZgq28", "readable_id": "linear-algebra-introduction-to-the-inverse-of-a-function"}, "TPM1LuW3Y5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TPM1LuW3Y5w.mp4/TPM1LuW3Y5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TPM1LuW3Y5w.mp4/TPM1LuW3Y5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TPM1LuW3Y5w.m3u8/TPM1LuW3Y5w.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/nike-winged-victory-of-samothrace-c-190-b-c-e/", "duration": 166, "id": "TPM1LuW3Y5w", "title": "Winged Victory (Nike) of Samothrace", "format": "mp4", "description": "Nike (Winged Victory) of Samothrace, Lartos marble (ship) and Parian marble (figure), c. 190 B.C.E. 3.28m high, Hellenistic Period (Mus\u00e9e du Louvre, Paris). The sculpture was unearthed in 1863 after its discovery under the direction of Charles Champoiseau\u200b, the French Vice-Consul to Turkey. Please note that the theoretical reconstruction of the Nike as a trumpeter mentioned in the video has been largely abandoned; the monument is now thought to have been part of a fountain possibly commemorating a naval victory. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "nike-winged-victory-of-samothrace-c-190-b-c-e", "kind": "Video", "video_id": "TPM1LuW3Y5w", "keywords": "Nike of Samothrace, Louvre, Art History, Paris", "youtube_id": "TPM1LuW3Y5w", "readable_id": "nike-winged-victory-of-samothrace-c-190-b-c-e"}, "Cn0skMJ2F3c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Cn0skMJ2F3c.mp4/Cn0skMJ2F3c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Cn0skMJ2F3c.mp4/Cn0skMJ2F3c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Cn0skMJ2F3c.m3u8/Cn0skMJ2F3c.m3u8"}, "duration": 384, "id": "Cn0skMJ2F3c", "title": "Simulation showing bias in sample variance", "format": "mp4", "description": "Simulation by Peter Collingridge giving us a better understanding of why we divide by (n-1) when calculating the unbiased sample variance. Simulation available at: http://www.khanacademy.org/cs/challenge-unbiased-estimate-of-population-variance/1169428428", "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/simulation-showing-bias-in-sample-variance/", "slug": "simulation-showing-bias-in-sample-variance", "kind": "Video", "video_id": "Cn0skMJ2F3c", "keywords": "sample variance biased unbiased", "youtube_id": "Cn0skMJ2F3c", "readable_id": "simulation-showing-bias-in-sample-variance"}, "p5e5mf_G3FI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p5e5mf_G3FI.mp4/p5e5mf_G3FI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p5e5mf_G3FI.mp4/p5e5mf_G3FI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p5e5mf_G3FI.m3u8/p5e5mf_G3FI.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/solving-equations-1/", "duration": 184, "id": "p5e5mf_G3FI", "title": "Example: two-step equation with numerator x", "format": "mp4", "description": "Solve the equation by isolating the term with numerator x.", "slug": "solving-equations-1", "kind": "Video", "video_id": "p5e5mf_G3FI", "keywords": "U02_L1_T1_we1:, Solving, Equations, CC_8_EE_7, CC_39336_A-REI_1, CC_39336_A-REI_3", "youtube_id": "p5e5mf_G3FI", "readable_id": "solving-equations-1"}, "pyEVmWLOePw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pyEVmWLOePw.mp4/pyEVmWLOePw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pyEVmWLOePw.mp4/pyEVmWLOePw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pyEVmWLOePw.m3u8/pyEVmWLOePw.m3u8"}, "path": "khan/test-prep/mcat/cells/cytoskeleton/microfilaments-and-intermediate-filaments-2/", "duration": 784, "id": "pyEVmWLOePw", "title": "Microfilaments and intermediate filaments", "format": "mp4", "description": "", "slug": "microfilaments-and-intermediate-filaments-2", "kind": "Video", "video_id": "pyEVmWLOePw", "keywords": "", "youtube_id": "pyEVmWLOePw", "readable_id": "microfilaments-and-intermediate-filaments-2"}, "lJX8DxoPRfk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lJX8DxoPRfk.mp4/lJX8DxoPRfk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lJX8DxoPRfk.mp4/lJX8DxoPRfk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lJX8DxoPRfk.m3u8/lJX8DxoPRfk.m3u8"}, "duration": 853, "id": "lJX8DxoPRfk", "title": "Pi bonds and sp2 hybridized orbitals", "format": "mp4", "description": "Pi bonds and sp2 Hybridized Orbitals", "path": "khan/science/organic-chemistry/gen-chem-review/hybrid-orbitals-jay/pi-bonds-and-sp2-hybridized-orbitals/", "slug": "pi-bonds-and-sp2-hybridized-orbitals", "kind": "Video", "video_id": "lJX8DxoPRfk", "keywords": "Pi, bonds, and, sp2, Hybridized, Orbitals", "youtube_id": "lJX8DxoPRfk", "readable_id": "pi-bonds-and-sp2-hybridized-orbitals"}, "y_sR3OyZUGo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y_sR3OyZUGo.mp4/y_sR3OyZUGo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y_sR3OyZUGo.mp4/y_sR3OyZUGo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y_sR3OyZUGo.m3u8/y_sR3OyZUGo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/chemical-shift/", "duration": 351, "id": "y_sR3OyZUGo", "title": "Chemical shift", "format": "mp4", "description": "", "slug": "chemical-shift", "kind": "Video", "video_id": "y_sR3OyZUGo", "keywords": "", "youtube_id": "y_sR3OyZUGo", "readable_id": "chemical-shift"}, "lmhiibdwznQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lmhiibdwznQ.mp4/lmhiibdwznQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lmhiibdwznQ.mp4/lmhiibdwznQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lmhiibdwznQ.m3u8/lmhiibdwznQ.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/god-morality-part-1/", "duration": 282, "id": "lmhiibdwznQ", "title": "Ethics: God and morality part 1", "format": "mp4", "description": "Part 1 of a pair. Stephen considers the relationship between morality and God. Specifically, he asks: is morality the same thing as the commands of God? Is there no morality if there is no God? Ultimately, Stephen will argue that morality and God's commands are distinct, even if there is a God and she commands moral things. However, in this first video, Steve considers why you might like the view that morality just is God's commands.\n\nSpeaker: Dr. Stephen Darwall, Andrew Downey Orrick Professor of Philosophy, Yale University", "slug": "god-morality-part-1", "kind": "Video", "video_id": "lmhiibdwznQ", "keywords": "", "youtube_id": "lmhiibdwznQ", "readable_id": "god-morality-part-1"}, "uC09taczvOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uC09taczvOo.mp4/uC09taczvOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uC09taczvOo.mp4/uC09taczvOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uC09taczvOo.m3u8/uC09taczvOo.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/points-on-a-number-line/", "duration": 118, "id": "uC09taczvOo", "title": "Decimals and fractions on a number line", "format": "mp4", "description": "We're mixing it up by placing both fractions and decimals on the same number line. Great practice because you need to move effortlessly between the two.", "slug": "points-on-a-number-line", "kind": "Video", "video_id": "uC09taczvOo", "keywords": "U09_L1_T3_we2, Points, on, number, line, CC_2_MD_6, CC_3_NF_2, CC_3_NF_3_c, CC_4_NF_6, CC_6_NS_6, CC_6_NS_6_c, CC_6_NS_7_a", "youtube_id": "uC09taczvOo", "readable_id": "points-on-a-number-line"}, "xSc4oLA9e8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xSc4oLA9e8o.mp4/xSc4oLA9e8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xSc4oLA9e8o.mp4/xSc4oLA9e8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xSc4oLA9e8o.m3u8/xSc4oLA9e8o.m3u8"}, "path": "khan/math/precalculus/prob_comb/independent_events_precalc/compound-probability-of-independent-events/", "duration": 360, "id": "xSc4oLA9e8o", "title": "Compound probability of independent events", "format": "mp4", "description": "You'll become familiar with the concept of independent events, or that one event in no way affects what happens in the second event. Keep in mind, too, that the sum of the probabilities of all the possible events should equal 1.", "slug": "compound-probability-of-independent-events", "kind": "Video", "video_id": "xSc4oLA9e8o", "keywords": "probability, statistics, coin, fair", "youtube_id": "xSc4oLA9e8o", "readable_id": "compound-probability-of-independent-events"}, "0oGJTQCy4cQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0oGJTQCy4cQ.mp4/0oGJTQCy4cQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0oGJTQCy4cQ.mp4/0oGJTQCy4cQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0oGJTQCy4cQ.m3u8/0oGJTQCy4cQ.m3u8"}, "duration": 269, "id": "0oGJTQCy4cQ", "title": "Introduction to the matrix", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/introduction-to-the-matrix/", "slug": "introduction-to-the-matrix", "kind": "Video", "video_id": "0oGJTQCy4cQ", "keywords": "", "youtube_id": "0oGJTQCy4cQ", "readable_id": "introduction-to-the-matrix"}, "sGYBfCVfl44": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sGYBfCVfl44.mp4/sGYBfCVfl44.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sGYBfCVfl44.mp4/sGYBfCVfl44.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sGYBfCVfl44.m3u8/sGYBfCVfl44.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2009-may-3-2/", "duration": 76, "id": "sGYBfCVfl44", "title": "2 Solving for angle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-2", "kind": "Video", "video_id": "sGYBfCVfl44", "keywords": "", "youtube_id": "sGYBfCVfl44", "readable_id": "sat-2009-may-3-2"}, "ECdR_W3Fk4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ECdR_W3Fk4Q.mp4/ECdR_W3Fk4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ECdR_W3Fk4Q.mp4/ECdR_W3Fk4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ECdR_W3Fk4Q.m3u8/ECdR_W3Fk4Q.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/pollock-paint/", "duration": 119, "id": "ECdR_W3Fk4Q", "title": "Paint Application Studies of Jackson Pollock's Mural", "format": "mp4", "description": "Scientists from the Getty Conservation Institute attempt to recreate the method and materials used by Jackson Pollock to create his monumental painting, Mural.\u00a0Love art? Follow us on Google+", "slug": "pollock-paint", "kind": "Video", "video_id": "ECdR_W3Fk4Q", "keywords": "", "youtube_id": "ECdR_W3Fk4Q", "readable_id": "pollock-paint"}, "xw6utjoyMi4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xw6utjoyMi4.mp4/xw6utjoyMi4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xw6utjoyMi4.mp4/xw6utjoyMi4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xw6utjoyMi4.m3u8/xw6utjoyMi4.m3u8"}, "duration": 1012, "id": "xw6utjoyMi4", "title": "Conditional probability and combinations", "format": "mp4", "description": "Probability that I picked a fair coin given that I flipped 4 out of 6 heads.", "path": "khan/math/probability/probability-and-combinatorics-topic/probability_combinatorics/conditional-probability-and-combinations/", "slug": "conditional-probability-and-combinations", "kind": "Video", "video_id": "xw6utjoyMi4", "keywords": "conditional, probability, combinations", "youtube_id": "xw6utjoyMi4", "readable_id": "conditional-probability-and-combinations"}, "GH56wMh3FZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GH56wMh3FZg.mp4/GH56wMh3FZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GH56wMh3FZg.mp4/GH56wMh3FZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GH56wMh3FZg.m3u8/GH56wMh3FZg.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-june-7-2013-rover-ready-to-switch-gears/", "duration": 125, "id": "GH56wMh3FZg", "title": "Rover ready to switch gears", "format": "mp4", "description": "NASA's Curiosity rover switches to long-distance driving mode as she heads to Mount Sharp.", "slug": "curiosity-rover-report-june-7-2013-rover-ready-to-switch-gears", "kind": "Video", "video_id": "GH56wMh3FZg", "keywords": "", "youtube_id": "GH56wMh3FZg", "readable_id": "curiosity-rover-report-june-7-2013-rover-ready-to-switch-gears"}, "7nKXXKn6jL8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7nKXXKn6jL8.mp4/7nKXXKn6jL8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7nKXXKn6jL8.mp4/7nKXXKn6jL8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7nKXXKn6jL8.m3u8/7nKXXKn6jL8.m3u8"}, "path": "khan/humanities/history/american-civics/american-civics/fafsa_intro/", "duration": 605, "id": "7nKXXKn6jL8", "title": "Introduction to the FAFSA", "format": "mp4", "description": "", "slug": "fafsa_intro", "kind": "Video", "video_id": "7nKXXKn6jL8", "keywords": "", "youtube_id": "7nKXXKn6jL8", "readable_id": "fafsa_intro"}, "IZ8W-h764Cc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IZ8W-h764Cc.mp4/IZ8W-h764Cc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IZ8W-h764Cc.mp4/IZ8W-h764Cc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IZ8W-h764Cc.m3u8/IZ8W-h764Cc.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-7/", "duration": 606, "id": "IZ8W-h764Cc", "title": "Shell method around a non-axis line", "format": "mp4", "description": "Taking the revolution around something other than one of the axes.", "slug": "solid-of-revolution-part-7", "kind": "Video", "video_id": "IZ8W-h764Cc", "keywords": "volume, of, revolution, rotation, calculus", "youtube_id": "IZ8W-h764Cc", "readable_id": "solid-of-revolution-part-7"}, "NM8qTo361ic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NM8qTo361ic.mp4/NM8qTo361ic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NM8qTo361ic.mp4/NM8qTo361ic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NM8qTo361ic.m3u8/NM8qTo361ic.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/converting-fractions-to-decimals-ex1/", "duration": 195, "id": "NM8qTo361ic", "title": "Fraction to decimal with rounding", "format": "mp4", "description": "Sometimes when you convert a fraction to a decimal you have to do some long division and rounding.", "slug": "converting-fractions-to-decimals-ex1", "kind": "Video", "video_id": "NM8qTo361ic", "keywords": "Converting, fractions, to, decimals, ex1", "youtube_id": "NM8qTo361ic", "readable_id": "converting-fractions-to-decimals-ex1"}, "3_DxJwDTbyQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3_DxJwDTbyQ.mp4/3_DxJwDTbyQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3_DxJwDTbyQ.mp4/3_DxJwDTbyQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3_DxJwDTbyQ.m3u8/3_DxJwDTbyQ.m3u8"}, "duration": 425, "id": "3_DxJwDTbyQ", "title": "Recognizing direct and inverse variation", "format": "mp4", "description": "Examples of variables varying directly and inversely", "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/recognizing-direct-and-inverse-variation/", "slug": "recognizing-direct-and-inverse-variation", "kind": "Video", "video_id": "3_DxJwDTbyQ", "keywords": "direct, inverse, variation", "youtube_id": "3_DxJwDTbyQ", "readable_id": "recognizing-direct-and-inverse-variation"}, "6HMYQfI76fQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6HMYQfI76fQ.mp4/6HMYQfI76fQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6HMYQfI76fQ.mp4/6HMYQfI76fQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6HMYQfI76fQ.m3u8/6HMYQfI76fQ.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/bali/balinese-masks/", "duration": 45, "id": "6HMYQfI76fQ", "title": "Repairing sacred Balinese masks", "format": "mp4", "description": "Barong masks are often sold as souvenirs, but true ritual Barong are created using a particular type of wood with special ceremonies marking key points in the process. In this video, scholar I Wayan Dibia is at the home of mask carver I Wayan Tanguhh and describes the process of repairing a Barong mask. The Barong is a protective deity that can take on a variety of animal forms--lions, tigers, and boars are some of the more common images\u2014and each one is addressed using a respectful title such as Great God or Great Lord. Many villages, especially in southern Bali, have their own Barong figure. The Barong mask is kept in a shrine within a temple and brought out for use.\u00a0", "slug": "balinese-masks", "kind": "Video", "video_id": "6HMYQfI76fQ", "keywords": "", "youtube_id": "6HMYQfI76fQ", "readable_id": "balinese-masks"}, "nu13yQDo4Go": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nu13yQDo4Go.mp4/nu13yQDo4Go.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nu13yQDo4Go.mp4/nu13yQDo4Go.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nu13yQDo4Go.m3u8/nu13yQDo4Go.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-19/", "duration": 155, "id": "nu13yQDo4Go", "title": "19 Exponent properties to factor expression", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-19", "kind": "Video", "video_id": "nu13yQDo4Go", "keywords": "", "youtube_id": "nu13yQDo4Go", "readable_id": "sat-getting-ready-2-19"}, "ruk2a0cBPR0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ruk2a0cBPR0.mp4/ruk2a0cBPR0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ruk2a0cBPR0.mp4/ruk2a0cBPR0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ruk2a0cBPR0.m3u8/ruk2a0cBPR0.m3u8"}, "duration": 526, "id": "ruk2a0cBPR0", "title": "Alkenes & alkynes", "format": "mp4", "description": "Today Hank talks about the deliciousness of alkenes & alkynes, their structures, and how to remember which is which by simply knowing the alphabet. Also, he breaks down hydrogenation, halogenation, polymerization, and triglycerides all while helping us figure out the meaning of different names for fats.\nWriters: Edi Gonzalez & Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem41-alkenes-alkynes/", "slug": "chem41-alkenes-alkynes", "kind": "Video", "video_id": "ruk2a0cBPR0", "keywords": "", "youtube_id": "ruk2a0cBPR0", "readable_id": "chem41-alkenes-alkynes"}, "UjIPMJd6Xks": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UjIPMJd6Xks.mp4/UjIPMJd6Xks.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UjIPMJd6Xks.mp4/UjIPMJd6Xks.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UjIPMJd6Xks.m3u8/UjIPMJd6Xks.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/rsa-encryption-part-4/", "duration": 298, "id": "UjIPMJd6Xks", "title": "RSA encryption: Step 4", "format": "mp4", "description": "RSA worked example", "slug": "rsa-encryption-part-4", "kind": "Video", "video_id": "UjIPMJd6Xks", "keywords": "rsa encryption", "youtube_id": "UjIPMJd6Xks", "readable_id": "rsa-encryption-part-4"}, "NcADzGz3bSI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NcADzGz3bSI.mp4/NcADzGz3bSI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NcADzGz3bSI.mp4/NcADzGz3bSI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NcADzGz3bSI.m3u8/NcADzGz3bSI.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/long_division/division-3-more-long-division-and-remainder-examples/", "duration": 607, "id": "NcADzGz3bSI", "title": "Dividing numbers: long division with remainders", "format": "mp4", "description": "Here we go with more long division practice. Ever wonder why we call it \"long\" division? What's \"long\" about it, anyway?", "slug": "division-3-more-long-division-and-remainder-examples", "kind": "Video", "video_id": "NcADzGz3bSI", "keywords": "long, division, remainder, CC_3_OA_2, CC_3_OA_6, CC_3_OA_7, CC_4_NBT_6, CC_4_OA_3", "youtube_id": "NcADzGz3bSI", "readable_id": "division-3-more-long-division-and-remainder-examples"}, "xrAalIDOBoY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xrAalIDOBoY.mp4/xrAalIDOBoY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xrAalIDOBoY.mp4/xrAalIDOBoY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xrAalIDOBoY.m3u8/xrAalIDOBoY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2010-may-9-1/", "duration": 103, "id": "xrAalIDOBoY", "title": "16 Writing compound inequality", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-1", "kind": "Video", "video_id": "xrAalIDOBoY", "keywords": "", "youtube_id": "xrAalIDOBoY", "readable_id": "sat-2010-may-9-1"}, "XcRX-mkjeiM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XcRX-mkjeiM.mp4/XcRX-mkjeiM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XcRX-mkjeiM.mp4/XcRX-mkjeiM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XcRX-mkjeiM.m3u8/XcRX-mkjeiM.m3u8"}, "duration": 54, "id": "XcRX-mkjeiM", "title": "Currency conversion word problem", "format": "mp4", "description": "One day you'll travel to another country and need to know if you have enough money to buy a souvenir in their currency.", "path": "currency-conversion-example/", "slug": "currency-conversion-example", "kind": "Video", "video_id": "XcRX-mkjeiM", "keywords": "", "youtube_id": "XcRX-mkjeiM", "readable_id": "currency-conversion-example"}, "tS2YJPmKOFQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tS2YJPmKOFQ.mp4/tS2YJPmKOFQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tS2YJPmKOFQ.mp4/tS2YJPmKOFQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tS2YJPmKOFQ.m3u8/tS2YJPmKOFQ.m3u8"}, "path": "khan/science/chemistry/acids-and-bases-topic/acids-and-bases/ph-poh-of-strong-acids-and-bases/", "duration": 889, "id": "tS2YJPmKOFQ", "title": "pH, pOH of strong acids and bases", "format": "mp4", "description": "Calculating the pH or pOH of strong acids and bases.", "slug": "ph-poh-of-strong-acids-and-bases", "kind": "Video", "video_id": "tS2YJPmKOFQ", "keywords": "chemistry, ph", "youtube_id": "tS2YJPmKOFQ", "readable_id": "ph-poh-of-strong-acids-and-bases"}, "4WIiConeatM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4WIiConeatM.mp4/4WIiConeatM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4WIiConeatM.mp4/4WIiConeatM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4WIiConeatM.m3u8/4WIiConeatM.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/demographic-structure-of-society-race-and-ethnicity/", "duration": 347, "id": "4WIiConeatM", "title": "Demographic structure of society - race and ethnicity", "format": "mp4", "description": "", "slug": "demographic-structure-of-society-race-and-ethnicity", "kind": "Video", "video_id": "4WIiConeatM", "keywords": "", "youtube_id": "4WIiConeatM", "readable_id": "demographic-structure-of-society-race-and-ethnicity"}, "_WAi2fwUqN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_WAi2fwUqN4.mp4/_WAi2fwUqN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_WAi2fwUqN4.mp4/_WAi2fwUqN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_WAi2fwUqN4.m3u8/_WAi2fwUqN4.m3u8"}, "path": "khan/humanities/art-asia/art-japan/japanese-art/zen-buddhism/", "duration": 202, "id": "_WAi2fwUqN4", "title": "Zen Buddhism", "format": "mp4", "description": "An introduction to Zen, a form of Buddhism that emphasizes seeking one's own Buddha nature through meditation.\u00a0 Learn more about Buddhism in Japan on the Asian Art Museum's education website.\u00a0", "slug": "zen-buddhism", "kind": "Video", "video_id": "_WAi2fwUqN4", "keywords": "", "youtube_id": "_WAi2fwUqN4", "readable_id": "zen-buddhism"}, "u7dhn-hBHzQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u7dhn-hBHzQ.mp4/u7dhn-hBHzQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u7dhn-hBHzQ.mp4/u7dhn-hBHzQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u7dhn-hBHzQ.m3u8/u7dhn-hBHzQ.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/local-linearization/local-linearization-intro/", "duration": 578, "id": "u7dhn-hBHzQ", "title": "Local linearization", "format": "mp4", "description": "", "slug": "local-linearization-intro", "kind": "Video", "video_id": "u7dhn-hBHzQ", "keywords": "", "youtube_id": "u7dhn-hBHzQ", "readable_id": "local-linearization-intro"}, "fPc20_vtlaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fPc20_vtlaM.mp4/fPc20_vtlaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fPc20_vtlaM.mp4/fPc20_vtlaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fPc20_vtlaM.m3u8/fPc20_vtlaM.m3u8"}, "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/angkor-temple-mountains/", "duration": 303, "id": "fPc20_vtlaM", "title": "Angkor temple mountains", "format": "mp4", "description": "This video explores the ancient kingdom of Angkor , which was one of the most powerful states in Southeast Asia from the 800s to the 1300s. A succession of kings built huge temples that remain in Cambodia today as some of the world's greatest religious monuments. Learn more about artworks from Southeast Asia on the Asian Art Museum's education website.\u00a0", "slug": "angkor-temple-mountains", "kind": "Video", "video_id": "fPc20_vtlaM", "keywords": "", "youtube_id": "fPc20_vtlaM", "readable_id": "angkor-temple-mountains"}, "IW4Reburjpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IW4Reburjpc.mp4/IW4Reburjpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IW4Reburjpc.mp4/IW4Reburjpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IW4Reburjpc.m3u8/IW4Reburjpc.m3u8"}, "duration": 1139, "id": "IW4Reburjpc", "title": "Introduction to the convolution", "format": "mp4", "description": "Introduction to the Convolution", "path": "khan/math/differential-equations/laplace-transform/convolution-integral/introduction-to-the-convolution/", "slug": "introduction-to-the-convolution", "kind": "Video", "video_id": "IW4Reburjpc", "keywords": "convolution", "youtube_id": "IW4Reburjpc", "readable_id": "introduction-to-the-convolution"}, "pPsqUFuysbU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pPsqUFuysbU.mp4/pPsqUFuysbU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pPsqUFuysbU.mp4/pPsqUFuysbU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pPsqUFuysbU.m3u8/pPsqUFuysbU.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/england-constable-turner/turner-rain-steam-and-speed-the-great-western-railway-1844/", "duration": 266, "id": "pPsqUFuysbU", "title": "Turner, Rain, steam, and speed \u2013 the great western railway", "format": "mp4", "description": "Joseph Mallord William Turner, Rain, Steam, and Speed -- The Great Western Railway, oil on canvas, 1844 (National Gallery, London) Speakers: Dr. Beth Harris, Dr. Steven Zucker\n\nRain, Steam, and Speed -- The Great Western Railway was exhibited at the Royal Academy in 1844. It depicts the Maidenhead Railway Bridge (completed (1838) looking east, across the River Thames\u200b between Taplow and Maidenhead.\n", "slug": "turner-rain-steam-and-speed-the-great-western-railway-1844", "kind": "Video", "video_id": "pPsqUFuysbU", "keywords": "J. M. W. Turner, Raine, Steam and Speed, Trains, National Gallery, London, Smarthistory, Art History", "youtube_id": "pPsqUFuysbU", "readable_id": "turner-rain-steam-and-speed-the-great-western-railway-1844"}, "Y1PXVSDn9HU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y1PXVSDn9HU.mp4/Y1PXVSDn9HU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y1PXVSDn9HU.mp4/Y1PXVSDn9HU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y1PXVSDn9HU.m3u8/Y1PXVSDn9HU.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-preparing-students/sscc-blended-preparing/", "duration": 378, "id": "Y1PXVSDn9HU", "title": "How to prepare students to thrive in a blended learning environment", "format": "mp4", "description": "", "slug": "sscc-blended-preparing", "kind": "Video", "video_id": "Y1PXVSDn9HU", "keywords": "", "youtube_id": "Y1PXVSDn9HU", "readable_id": "sscc-blended-preparing"}, "zbQFQ_nzbhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zbQFQ_nzbhI.mp4/zbQFQ_nzbhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zbQFQ_nzbhI.mp4/zbQFQ_nzbhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zbQFQ_nzbhI.m3u8/zbQFQ_nzbhI.m3u8"}, "duration": 578, "id": "zbQFQ_nzbhI", "title": "Arabia after World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/ww1-aftermath/arabia-after-world-war-i/", "slug": "arabia-after-world-war-i", "kind": "Video", "video_id": "zbQFQ_nzbhI", "keywords": "", "youtube_id": "zbQFQ_nzbhI", "readable_id": "arabia-after-world-war-i"}, "Zp5z0wa0kgo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zp5z0wa0kgo.mp4/Zp5z0wa0kgo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zp5z0wa0kgo.mp4/Zp5z0wa0kgo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zp5z0wa0kgo.m3u8/Zp5z0wa0kgo.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/u_substitution/u-substitution-example-2/", "duration": 244, "id": "Zp5z0wa0kgo", "title": "u-substitution example 2", "format": "mp4", "description": "Another example of using u-subsitution", "slug": "u-substitution-example-2", "kind": "Video", "video_id": "Zp5z0wa0kgo", "keywords": "", "youtube_id": "Zp5z0wa0kgo", "readable_id": "u-substitution-example-2"}, "w3IKEa_GOYs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w3IKEa_GOYs.mp4/w3IKEa_GOYs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w3IKEa_GOYs.mp4/w3IKEa_GOYs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w3IKEa_GOYs.m3u8/w3IKEa_GOYs.m3u8"}, "duration": 424, "id": "w3IKEa_GOYs", "title": "Star field and nebula images", "format": "mp4", "description": "Star Field and Nebula Images", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/star-field-and-nebula-images/", "slug": "star-field-and-nebula-images", "kind": "Video", "video_id": "w3IKEa_GOYs", "keywords": "Star, Field, and, Nebula, Images", "youtube_id": "w3IKEa_GOYs", "readable_id": "star-field-and-nebula-images"}, "7ynX_F-SwNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7ynX_F-SwNY.mp4/7ynX_F-SwNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7ynX_F-SwNY.mp4/7ynX_F-SwNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7ynX_F-SwNY.m3u8/7ynX_F-SwNY.m3u8"}, "duration": 1018, "id": "7ynX_F-SwNY", "title": "C-4 photosynthesis", "format": "mp4", "description": "C-4 Photosynthesis: How some plants avoid photorespiration", "path": "khan/science/biology/cellular-molecular-biology/photosynthesis/c-4-photosynthesis/", "slug": "c-4-photosynthesis", "kind": "Video", "video_id": "7ynX_F-SwNY", "keywords": "c-4, photosythesis, photorespiration", "youtube_id": "7ynX_F-SwNY", "readable_id": "c-4-photosynthesis"}, "vAtQB9wLkUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vAtQB9wLkUA.mp4/vAtQB9wLkUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vAtQB9wLkUA.mp4/vAtQB9wLkUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vAtQB9wLkUA.m3u8/vAtQB9wLkUA.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/part-3-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220/", "duration": 545, "id": "vAtQB9wLkUA", "title": "Cathedral of Notre Dame de Chartres (part 3)", "format": "mp4", "description": "Part 3: Cathedral of Notre Dame de Chartres, c.1145 and 1194-c.1220\n\nThis video (3 of 3), focuses on the symbolism of light, the cathedral's flying buttresses, transept, the iconography of the north rose window, and the north porch and its sculptural program\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\nFor more: http://smarthistory.org/Gothic.html", "slug": "part-3-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220", "kind": "Video", "video_id": "vAtQB9wLkUA", "keywords": "", "youtube_id": "vAtQB9wLkUA", "readable_id": "part-3-cathedral-of-notre-dame-de-chartres-c-1145-and-1194-c-1220"}, "OM3e-J3euXo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OM3e-J3euXo.mp4/OM3e-J3euXo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OM3e-J3euXo.mp4/OM3e-J3euXo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OM3e-J3euXo.m3u8/OM3e-J3euXo.m3u8"}, "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem_proof/divergence-theorem-proof-part-2/", "duration": 450, "id": "OM3e-J3euXo", "title": "Divergence theorem proof (part 2)", "format": "mp4", "description": "Breaking up the surface integral", "slug": "divergence-theorem-proof-part-2", "kind": "Video", "video_id": "OM3e-J3euXo", "keywords": "", "youtube_id": "OM3e-J3euXo", "readable_id": "divergence-theorem-proof-part-2"}, "j7A4i7sS7gE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j7A4i7sS7gE.mp4/j7A4i7sS7gE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j7A4i7sS7gE.mp4/j7A4i7sS7gE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j7A4i7sS7gE.m3u8/j7A4i7sS7gE.m3u8"}, "duration": 346, "id": "j7A4i7sS7gE", "title": "U.S. Supreme Court Justice Ruth Bader Ginsburg on civil liberties and privacy", "format": "mp4", "description": "U.S. Supreme Court Justice Ruth Bader Ginsburg discusses the opinion she\u2019s written that has done the most to advance civil liberties. United States v Virginia, Mississippi University for Women v. Hogan, M.L.B. v. S.L.J., Stenberg v Carhart.\nU.S. Supreme Court Justice Ruth Bader Ginsburg in conversation with Jeffrey Rosen of the National Constitution Center.\n", "path": "us-supreme-court-ruth-bader-ginsburg/", "slug": "us-supreme-court-ruth-bader-ginsburg", "kind": "Video", "video_id": "j7A4i7sS7gE", "keywords": "", "youtube_id": "j7A4i7sS7gE", "readable_id": "us-supreme-court-ruth-bader-ginsburg"}, "VLNxk83TIOU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VLNxk83TIOU.mp4/VLNxk83TIOU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VLNxk83TIOU.mp4/VLNxk83TIOU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VLNxk83TIOU.m3u8/VLNxk83TIOU.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/ny-school/below-the-surface/", "duration": 176, "id": "VLNxk83TIOU", "title": "\"Below the Surface\" with Ian Alteveer", "format": "mp4", "description": "Met curator Ian Alteveer on reticence in Jasper Johns\u2019s White Flag.\n\nBorn in Augusta, Georgia, in 1930 and raised in South Carolina, Jasper Johns moved in 1949 to New York City, where he enrolled in a commercial art school for two semesters. Back in New York, following his service in the army (ca. 1950\u201351), Johns became acquainted with artist Robert Rauschenberg, composer John Cage, and dancer Merce Cunningham. By the mid- to late 1950s Johns had already achieved fame with his paintings of targets, numerals, and American flags, and his work was exhibited in prominent museums and galleries in New York. \"White Flag\" of 1955, recently acquired by the Metropolitan from the artist's own collection, exemplifies Johns's early style, which engendered a wide range of subsequent art movements, among them Pop Art, Minimal Art, and Conceptual Art. During the 1950s and 1960s Johns frequently appropriated well-known images (such as targets, flags, and beer cans), elevating them to cultural icons. Throughout his oeuvre \u2014 which includes painting, prints, drawings, and sculpture \u2014 images are constantly recycled and combined in extensive series. In his later compositions of the 1970s, Johns filled the surface of his pictures with colorful cross-hatchings (suggested by the passing cars on an expressway); and since the 1980s he has incorporated images that have more autobiographical significance.\n\n\"White Flag\" is the largest of his flag paintings and the first in which the flag is presented in monochrome. By draining most of the color from the flag but leaving subtle gradations in tone, the artist shifts our attention from the familiarity of the image to the way in which it is made. \"White Flag\" is painted on three separate panels: the stars, the seven upper stripes to the right of the stars, and the longer stripes below. Johns worked on each panel separately. After applying a ground of unbleached beeswax, he built up the stars, the negative areas around them, and the stripes with applications of collage\u2014cut or torn pieces of newsprint, other papers, and bits of fabric. He dipped these into molten beeswax and adhered them to the surface. He then joined the three panels and overpainted them with more beeswax mixed with pigments, adding touches of white oil.\n\nThe fast-setting medium of encaustic enabled Johns to make each brushstroke distinct, while the forty-eight-star flag design\u2014contiguous with the perimeters of the canvas\u2014 provided a structure for the richly varied surface, which ranges from translucent to opaque.\n\nView this work on metmuseum.org.\n", "slug": "below-the-surface", "kind": "Video", "video_id": "VLNxk83TIOU", "keywords": "canvas, painting, politics, touch, North America", "youtube_id": "VLNxk83TIOU", "readable_id": "below-the-surface"}, "oRKxmXwLvUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oRKxmXwLvUU.mp4/oRKxmXwLvUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oRKxmXwLvUU.mp4/oRKxmXwLvUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oRKxmXwLvUU.m3u8/oRKxmXwLvUU.m3u8"}, "duration": 705, "id": "oRKxmXwLvUU", "title": "Calculating average velocity or speed", "format": "mp4", "description": "Example of calculating speed and velocity", "path": "khan/test-prep/mcat/physical-processes/speed-and-velocity/calculating-average-velocity-or-speed/", "slug": "calculating-average-velocity-or-speed", "kind": "Video", "video_id": "oRKxmXwLvUU", "keywords": "Calculating, Average, Velocity, or, Speed", "youtube_id": "oRKxmXwLvUU", "readable_id": "calculating-average-velocity-or-speed"}, "mk8w3bzEJYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mk8w3bzEJYU.mp4/mk8w3bzEJYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mk8w3bzEJYU.mp4/mk8w3bzEJYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mk8w3bzEJYU.m3u8/mk8w3bzEJYU.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/aggression/", "duration": 476, "id": "mk8w3bzEJYU", "title": "Aggression", "format": "mp4", "description": "", "slug": "aggression", "kind": "Video", "video_id": "mk8w3bzEJYU", "keywords": "", "youtube_id": "mk8w3bzEJYU", "readable_id": "aggression"}, "-1ZFVwMXSXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-1ZFVwMXSXY.mp4/-1ZFVwMXSXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-1ZFVwMXSXY.mp4/-1ZFVwMXSXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-1ZFVwMXSXY.m3u8/-1ZFVwMXSXY.m3u8"}, "path": "khan/computing/computer-science/cryptography/crypt/case-study-ww2-encryption-machines/", "duration": 601, "id": "-1ZFVwMXSXY", "title": "The Enigma encryption machine", "format": "mp4", "description": "WW2 Encryption is explored with a focus on the Enigma. Read more here.", "slug": "case-study-ww2-encryption-machines", "kind": "Video", "video_id": "-1ZFVwMXSXY", "keywords": "engima, ww2, encryption machine, one-time-pad, german ", "youtube_id": "-1ZFVwMXSXY", "readable_id": "case-study-ww2-encryption-machines"}, "ZbN_ispEm3A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZbN_ispEm3A.mp4/ZbN_ispEm3A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZbN_ispEm3A.mp4/ZbN_ispEm3A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZbN_ispEm3A.m3u8/ZbN_ispEm3A.m3u8"}, "duration": 275, "id": "ZbN_ispEm3A", "title": "Connect the LEDs to an on/off switch", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-8/", "slug": "solderless-spout-8", "kind": "Video", "video_id": "ZbN_ispEm3A", "keywords": "", "youtube_id": "ZbN_ispEm3A", "readable_id": "solderless-spout-8"}, "ShzW1LoQgoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ShzW1LoQgoc.mp4/ShzW1LoQgoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ShzW1LoQgoc.mp4/ShzW1LoQgoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ShzW1LoQgoc.m3u8/ShzW1LoQgoc.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/mechanisms-and-the-rate-determining-step/", "duration": 522, "id": "ShzW1LoQgoc", "title": "Mechanisms and the rate-determining step", "format": "mp4", "description": "", "slug": "mechanisms-and-the-rate-determining-step", "kind": "Video", "video_id": "ShzW1LoQgoc", "keywords": "", "youtube_id": "ShzW1LoQgoc", "readable_id": "mechanisms-and-the-rate-determining-step"}, "dLtFP6t99yo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dLtFP6t99yo.mp4/dLtFP6t99yo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dLtFP6t99yo.mp4/dLtFP6t99yo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dLtFP6t99yo.m3u8/dLtFP6t99yo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/heart-attack-myocardial-infarction-interventions-and-treatment/", "duration": 444, "id": "dLtFP6t99yo", "title": "Heart attack (myocardial infarction) interventions and treatment", "format": "mp4", "description": "", "slug": "heart-attack-myocardial-infarction-interventions-and-treatment", "kind": "Video", "video_id": "dLtFP6t99yo", "keywords": "", "youtube_id": "dLtFP6t99yo", "readable_id": "heart-attack-myocardial-infarction-interventions-and-treatment"}, "omy9xziXIEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/omy9xziXIEI.mp4/omy9xziXIEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/omy9xziXIEI.mp4/omy9xziXIEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/omy9xziXIEI.m3u8/omy9xziXIEI.m3u8"}, "path": "khan/humanities/art-asia/himalayas/tibet/sacred-arts-of-tibet/", "duration": 232, "id": "omy9xziXIEI", "title": "Sacred arts of Tibet", "format": "mp4", "description": "Discover the sacred arts of Tibet. Learn more about Tibet on the\u00a0Asian Art Museum's education website.", "slug": "sacred-arts-of-tibet", "kind": "Video", "video_id": "omy9xziXIEI", "keywords": "Tibet, Tibetan art", "youtube_id": "omy9xziXIEI", "readable_id": "sacred-arts-of-tibet"}, "69rDtSpshAw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/69rDtSpshAw.mp4/69rDtSpshAw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/69rDtSpshAw.mp4/69rDtSpshAw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/69rDtSpshAw.m3u8/69rDtSpshAw.m3u8"}, "duration": 409, "id": "69rDtSpshAw", "title": "Liar truth-teller brain teaser", "format": "mp4", "description": "How to get correct advice when you can only ask one question from either a liar or a truth-teller (when you don't know who is what)", "path": "khan/math/recreational-math/puzzles/brain-teasers/liar-truthteller-brain-teaser/", "slug": "liar-truthteller-brain-teaser", "kind": "Video", "video_id": "69rDtSpshAw", "keywords": "brain, teaser, logic", "youtube_id": "69rDtSpshAw", "readable_id": "liar-truthteller-brain-teaser"}, "HWivDUWFaX0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HWivDUWFaX0.mp4/HWivDUWFaX0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HWivDUWFaX0.mp4/HWivDUWFaX0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HWivDUWFaX0.m3u8/HWivDUWFaX0.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/kirchner-street-berlin/", "duration": 141, "id": "HWivDUWFaX0", "title": "Ernst Ludwig Kirchner, \"Street, Berlin\"", "format": "mp4", "description": "Walk the streets of 1913 Berlin with the Expressionist painter Ernst Ludwig Kirchner.\u00a0To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945.", "slug": "kirchner-street-berlin", "kind": "Video", "video_id": "HWivDUWFaX0", "keywords": "", "youtube_id": "HWivDUWFaX0", "readable_id": "kirchner-street-berlin"}, "B2vtvtqZwwQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B2vtvtqZwwQ.mp4/B2vtvtqZwwQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B2vtvtqZwwQ.mp4/B2vtvtqZwwQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B2vtvtqZwwQ.m3u8/B2vtvtqZwwQ.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sound-audition/auditory-structure-part-2/", "duration": 326, "id": "B2vtvtqZwwQ", "title": "Auditory structure - part 2", "format": "mp4", "description": "", "slug": "auditory-structure-part-2", "kind": "Video", "video_id": "B2vtvtqZwwQ", "keywords": "", "youtube_id": "B2vtvtqZwwQ", "readable_id": "auditory-structure-part-2"}, "MILF-9GeMDQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MILF-9GeMDQ.mp4/MILF-9GeMDQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MILF-9GeMDQ.mp4/MILF-9GeMDQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MILF-9GeMDQ.m3u8/MILF-9GeMDQ.m3u8"}, "duration": 597, "id": "MILF-9GeMDQ", "title": "Federal Reserve balance sheet", "format": "mp4", "description": "Analysis of the federal reserve balance sheet as of Feb 2007.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/federal-reserve-balance-sheet/", "slug": "federal-reserve-balance-sheet", "kind": "Video", "video_id": "MILF-9GeMDQ", "keywords": "federal, reserve, balance, sheet", "youtube_id": "MILF-9GeMDQ", "readable_id": "federal-reserve-balance-sheet"}, "s1UQQELPyrc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s1UQQELPyrc.mp4/s1UQQELPyrc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s1UQQELPyrc.mp4/s1UQQELPyrc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s1UQQELPyrc.m3u8/s1UQQELPyrc.m3u8"}, "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolies-tutorial/monopolist-optimizing-price-part-2-marginal-revenue/", "duration": 511, "id": "s1UQQELPyrc", "title": "Monopolist optimizing price: Marginal revenue", "format": "mp4", "description": "Plotting the marginal revenue curve for a monopolist", "slug": "monopolist-optimizing-price-part-2-marginal-revenue", "kind": "Video", "video_id": "s1UQQELPyrc", "keywords": "microeconomics, monopoly", "youtube_id": "s1UQQELPyrc", "readable_id": "monopolist-optimizing-price-part-2-marginal-revenue"}, "6PjBb-r54A8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6PjBb-r54A8.mp4/6PjBb-r54A8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6PjBb-r54A8.mp4/6PjBb-r54A8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6PjBb-r54A8.m3u8/6PjBb-r54A8.m3u8"}, "path": "khan/college-admissions/making-high-school-count/high-school-classes/ss-high-school-classes/", "duration": 53, "id": "6PjBb-r54A8", "title": "Student story: High school classes", "format": "mp4", "description": "", "slug": "ss-high-school-classes", "kind": "Video", "video_id": "6PjBb-r54A8", "keywords": "", "youtube_id": "6PjBb-r54A8", "readable_id": "ss-high-school-classes"}, "dmN_s286dHc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dmN_s286dHc.mp4/dmN_s286dHc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dmN_s286dHc.mp4/dmN_s286dHc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dmN_s286dHc.m3u8/dmN_s286dHc.m3u8"}, "duration": 831, "id": "dmN_s286dHc", "title": "GMAT: Data sufficiency 40", "format": "mp4", "description": "151-153, pg. 290", "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-40/", "slug": "gmat-data-sufficiency-40", "kind": "Video", "video_id": "dmN_s286dHc", "keywords": "gmat, data, sufficiency, math", "youtube_id": "dmN_s286dHc", "readable_id": "gmat-data-sufficiency-40"}, "IjiHwNLYLcM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IjiHwNLYLcM.mp4/IjiHwNLYLcM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IjiHwNLYLcM.mp4/IjiHwNLYLcM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IjiHwNLYLcM.m3u8/IjiHwNLYLcM.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-6-8/", "duration": 82, "id": "IjiHwNLYLcM", "title": "8 Solving for proportionality constant", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-8", "kind": "Video", "video_id": "IjiHwNLYLcM", "keywords": "", "youtube_id": "IjiHwNLYLcM", "readable_id": "sat-2010-may-6-8"}, "Ir-J6a635UM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ir-J6a635UM.mp4/Ir-J6a635UM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ir-J6a635UM.mp4/Ir-J6a635UM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ir-J6a635UM.m3u8/Ir-J6a635UM.m3u8"}, "duration": 165, "id": "Ir-J6a635UM", "title": "\"My First Time\" with George Goldner", "format": "mp4", "description": "Met curator George Goldner on first impressions in El Greco\u2019s View of Toledo.\n\nIn this, his greatest surviving landscape, El Greco portrays the city he lived and worked in for most of his life. The painting belongs to the tradition of emblematic city views, rather than a faithful documentary description. The view of the eastern section of Toledo from the north would have excluded the cathedral, which the artist therefore imaginatively moved to the left of the Alc\u00e1zar (the royal palace). Other buildings represented in the painting include the ancient Alc\u00e1ntara Bridge, and on the other side of the river Tagus, the Castle of San Servando.\n\nView this work on\u00a0metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "my-first-time/", "slug": "my-first-time", "kind": "Video", "video_id": "Ir-J6a635UM", "keywords": "canvas, light, nature, painting, shock, Europe", "youtube_id": "Ir-J6a635UM", "readable_id": "my-first-time"}, "bK85aZPR3UY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bK85aZPR3UY.mp4/bK85aZPR3UY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bK85aZPR3UY.mp4/bK85aZPR3UY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bK85aZPR3UY.m3u8/bK85aZPR3UY.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/biological-explanations-of-social-behavior-in-animals/mating-behavior-and-inclusive-fitness/", "duration": 269, "id": "bK85aZPR3UY", "title": "Mating behavior and inclusive fitness", "format": "mp4", "description": "", "slug": "mating-behavior-and-inclusive-fitness", "kind": "Video", "video_id": "bK85aZPR3UY", "keywords": "", "youtube_id": "bK85aZPR3UY", "readable_id": "mating-behavior-and-inclusive-fitness"}, "Aig1hkq3OsU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Aig1hkq3OsU.mp4/Aig1hkq3OsU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Aig1hkq3OsU.mp4/Aig1hkq3OsU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Aig1hkq3OsU.m3u8/Aig1hkq3OsU.m3u8"}, "duration": 418, "id": "Aig1hkq3OsU", "title": "Example: Solving for a variable", "format": "mp4", "description": "Example of solving for a variable", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solving_for_variable/example-of-solving-for-a-variable/", "slug": "example-of-solving-for-a-variable", "kind": "Video", "video_id": "Aig1hkq3OsU", "keywords": "U02_L1_T4_we1, algebra, solving, variable, CC_6_EE_2_c, CC_6_EE_6, CC_7_EE_4_a, CC_8_EE_7_b, CC_39336_A-REI_3", "youtube_id": "Aig1hkq3OsU", "readable_id": "example-of-solving-for-a-variable"}, "hZvjH3Az87A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hZvjH3Az87A.mp4/hZvjH3Az87A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hZvjH3Az87A.mp4/hZvjH3Az87A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hZvjH3Az87A.m3u8/hZvjH3Az87A.m3u8"}, "duration": 220, "id": "hZvjH3Az87A", "title": "Balance sheet and income statement relationship", "format": "mp4", "description": "Balance Sheet and Income Statement Relationship", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/financial-statements-tutorial/balance-sheet-and-income-statement-relationship/", "slug": "balance-sheet-and-income-statement-relationship", "kind": "Video", "video_id": "hZvjH3Az87A", "keywords": "Balance, Sheet, and, Income, Statement, Relationship", "youtube_id": "hZvjH3Az87A", "readable_id": "balance-sheet-and-income-statement-relationship"}, "GYpJlYI2VBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GYpJlYI2VBI.mp4/GYpJlYI2VBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GYpJlYI2VBI.mp4/GYpJlYI2VBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GYpJlYI2VBI.m3u8/GYpJlYI2VBI.m3u8"}, "duration": 622, "id": "GYpJlYI2VBI", "title": "pH and pOH", "format": "mp4", "description": "In this episode, Hank goes over Reversible Reactions, the water dissociation constant, what pH and pOH actually mean, Acids, Bases, and Neutral Substances as well as the not-so-terrifying Logarithms, strong acids, weak acids, and how to calculate pH and pOH. Oh, and litmus paper!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem30-ph-poh/", "slug": "chem30-ph-poh", "kind": "Video", "video_id": "GYpJlYI2VBI", "keywords": "", "youtube_id": "GYpJlYI2VBI", "readable_id": "chem30-ph-poh"}, "xOa-l_tXgWA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xOa-l_tXgWA.mp4/xOa-l_tXgWA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xOa-l_tXgWA.mp4/xOa-l_tXgWA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xOa-l_tXgWA.m3u8/xOa-l_tXgWA.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/exponential-form-complex-numbers/complex-number-division/", "duration": 430, "id": "xOa-l_tXgWA", "title": "Dividing complex numbers in polar and exponential form", "format": "mp4", "description": "", "slug": "complex-number-division", "kind": "Video", "video_id": "xOa-l_tXgWA", "keywords": "", "youtube_id": "xOa-l_tXgWA", "readable_id": "complex-number-division"}, "9p10aMu1Glo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9p10aMu1Glo.mp4/9p10aMu1Glo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9p10aMu1Glo.mp4/9p10aMu1Glo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9p10aMu1Glo.m3u8/9p10aMu1Glo.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/greek-debt-crisis/greek-debt-recession-and-austerity-part-1/", "duration": 420, "id": "9p10aMu1Glo", "title": "Greek debt recession and austerity (part 1)", "format": "mp4", "description": "A primer of why Greece is in a tough situation (more in future videos)", "slug": "greek-debt-recession-and-austerity-part-1", "kind": "Video", "video_id": "9p10aMu1Glo", "keywords": "EU, crisis, greece, italy, spain", "youtube_id": "9p10aMu1Glo", "readable_id": "greek-debt-recession-and-austerity-part-1"}, "EUqhLxFccbM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EUqhLxFccbM.mp4/EUqhLxFccbM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EUqhLxFccbM.mp4/EUqhLxFccbM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EUqhLxFccbM.m3u8/EUqhLxFccbM.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-count-object-topic/counting-objects-2/", "duration": 104, "id": "EUqhLxFccbM", "title": "Counting dogs, mice, and cookies", "format": "mp4", "description": "Learn how to count animals organized in different patterns.", "slug": "counting-objects-2", "kind": "Video", "video_id": "EUqhLxFccbM", "keywords": "", "youtube_id": "EUqhLxFccbM", "readable_id": "counting-objects-2"}, "Dj1rbIP8PHM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dj1rbIP8PHM.mp4/Dj1rbIP8PHM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dj1rbIP8PHM.mp4/Dj1rbIP8PHM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dj1rbIP8PHM.m3u8/Dj1rbIP8PHM.m3u8"}, "duration": 220, "id": "Dj1rbIP8PHM", "title": "U.S. customary units: weight", "format": "mp4", "description": "Would you measure the weight of your parents' car in ounces, pounds, or tons? Actually, you could measure in all three! However, you want to choose the unit that is most convenient in terms of numbers of units. Let's learn more.", "path": "us-customary-weight/", "slug": "us-customary-weight", "kind": "Video", "video_id": "Dj1rbIP8PHM", "keywords": "", "youtube_id": "Dj1rbIP8PHM", "readable_id": "us-customary-weight"}, "YKQLZOq4HTA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YKQLZOq4HTA.mp4/YKQLZOq4HTA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YKQLZOq4HTA.mp4/YKQLZOq4HTA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YKQLZOq4HTA.m3u8/YKQLZOq4HTA.m3u8"}, "duration": 279, "id": "YKQLZOq4HTA", "title": "Absolute value inequalities example 2", "format": "mp4", "description": "Absolute Value Inequalities", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/absolute-value-inequalities-example-2/", "slug": "absolute-value-inequalities-example-2", "kind": "Video", "video_id": "YKQLZOq4HTA", "keywords": "u10_l3_t2_we2, Absolute, Value, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_6_NS_7_c, CC_6_NS_7_d, CC_7_EE_4, CC_7_EE_4_b, CC_7_NS_1, CC_7_NS_1_c, CC_39336_A-CED_1, CC_39336_A-CED_3", "youtube_id": "YKQLZOq4HTA", "readable_id": "absolute-value-inequalities-example-2"}, "6_9xNMtwnfs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6_9xNMtwnfs.mp4/6_9xNMtwnfs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6_9xNMtwnfs.mp4/6_9xNMtwnfs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6_9xNMtwnfs.m3u8/6_9xNMtwnfs.m3u8"}, "duration": 155, "id": "6_9xNMtwnfs", "title": "Intuitive understanding of slope example", "format": "mp4", "description": "", "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/slope-intuition-example/", "slug": "slope-intuition-example", "kind": "Video", "video_id": "6_9xNMtwnfs", "keywords": "", "youtube_id": "6_9xNMtwnfs", "readable_id": "slope-intuition-example"}, "C9ITaG1_XoA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C9ITaG1_XoA.mp4/C9ITaG1_XoA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C9ITaG1_XoA.mp4/C9ITaG1_XoA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C9ITaG1_XoA.m3u8/C9ITaG1_XoA.m3u8"}, "duration": 156, "id": "C9ITaG1_XoA", "title": "Motor controller connection to Arduino", "format": "mp4", "description": "In this video we show you how to determine which wire is which and how to connect them to your Arduino.", "path": "khan/science/discoveries-projects/robots/bit-zee/connecting-the-motor-controller-to-the-arduino/", "slug": "connecting-the-motor-controller-to-the-arduino", "kind": "Video", "video_id": "C9ITaG1_XoA", "keywords": "bit-zee motor controller arduino make hack diy", "youtube_id": "C9ITaG1_XoA", "readable_id": "connecting-the-motor-controller-to-the-arduino"}, "2kSqB7y0NjU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2kSqB7y0NjU.mp4/2kSqB7y0NjU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2kSqB7y0NjU.mp4/2kSqB7y0NjU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2kSqB7y0NjU.m3u8/2kSqB7y0NjU.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/implicit-premise/", "duration": 185, "id": "2kSqB7y0NjU", "title": "Fundamentals: Implicit premise", "format": "mp4", "description": "This video will rock your world! You should watch it. This pithy little argument contains an implicit premise: \"If a video will rock your world, you should watch it\". In this video, Kelley will go over how to identify implicit premises in all sorts of arguments and discuss when it is and is not acceptable to leave a premise implicit.\n\nSpeaker:\u00a0Kelly Schiffman\n\n\u00a0\n", "slug": "implicit-premise", "kind": "Video", "video_id": "2kSqB7y0NjU", "keywords": "", "youtube_id": "2kSqB7y0NjU", "readable_id": "implicit-premise"}, "o8fYEZdTpEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o8fYEZdTpEE.mp4/o8fYEZdTpEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o8fYEZdTpEE.mp4/o8fYEZdTpEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o8fYEZdTpEE.m3u8/o8fYEZdTpEE.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-14-small-arc-length/", "duration": 172, "id": "o8fYEZdTpEE", "title": "14 Small arc length", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-14-small-arc-length", "kind": "Video", "video_id": "o8fYEZdTpEE", "keywords": "", "youtube_id": "o8fYEZdTpEE", "readable_id": "sat-14-small-arc-length"}, "DxSmZ0MDSxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DxSmZ0MDSxM.mp4/DxSmZ0MDSxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DxSmZ0MDSxM.mp4/DxSmZ0MDSxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DxSmZ0MDSxM.m3u8/DxSmZ0MDSxM.m3u8"}, "duration": 158, "id": "DxSmZ0MDSxM", "title": "Addition elimination method 4", "format": "mp4", "description": "Addition Elimination Method 4", "path": "addition-elimination-method-4/", "slug": "addition-elimination-method-4", "kind": "Video", "video_id": "DxSmZ0MDSxM", "keywords": "u14_l2_t2_we4, Addition, Elimination, Method, CC_8_EE_8_a, CC_8_EE_8_b, CC_39336_A-REI_6", "youtube_id": "DxSmZ0MDSxM", "readable_id": "addition-elimination-method-4"}, "4-_-wQc3EGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4-_-wQc3EGE.mp4/4-_-wQc3EGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4-_-wQc3EGE.mp4/4-_-wQc3EGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4-_-wQc3EGE.m3u8/4-_-wQc3EGE.m3u8"}, "duration": 523, "id": "4-_-wQc3EGE", "title": "Deriving demand curve from tweaking marginal utility per dollar", "format": "mp4", "description": "Seeing what happens to quantity demanded when price changes", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial/deriving-demand-curve-from-tweaking-marginal-utility-per-dollar/", "slug": "deriving-demand-curve-from-tweaking-marginal-utility-per-dollar", "kind": "Video", "video_id": "4-_-wQc3EGE", "keywords": "microeconomics", "youtube_id": "4-_-wQc3EGE", "readable_id": "deriving-demand-curve-from-tweaking-marginal-utility-per-dollar"}, "Mz2nDXElcoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mz2nDXElcoM.mp4/Mz2nDXElcoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mz2nDXElcoM.mp4/Mz2nDXElcoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mz2nDXElcoM.m3u8/Mz2nDXElcoM.m3u8"}, "duration": 637, "id": "Mz2nDXElcoM", "title": "Ice accelerating down an incline", "format": "mp4", "description": "Figuring out the acceleration of ice down a plane made of ice", "path": "khan/test-prep/mcat/physical-processes/forces-on-inclined-planes/ice-accelerating-down-an-incline/", "slug": "ice-accelerating-down-an-incline", "kind": "Video", "video_id": "Mz2nDXElcoM", "keywords": "inclined, plane, ramp, force, friction", "youtube_id": "Mz2nDXElcoM", "readable_id": "ice-accelerating-down-an-incline"}, "ivy1QmWUtQI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ivy1QmWUtQI.mp4/ivy1QmWUtQI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ivy1QmWUtQI.mp4/ivy1QmWUtQI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ivy1QmWUtQI.m3u8/ivy1QmWUtQI.m3u8"}, "duration": 357, "id": "ivy1QmWUtQI", "title": "Human capital", "format": "mp4", "description": "Basic overview of capital and human capital", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/investment-consumption/human-capital/", "slug": "human-capital", "kind": "Video", "video_id": "ivy1QmWUtQI", "keywords": "capitalism, factors, of, production", "youtube_id": "ivy1QmWUtQI", "readable_id": "human-capital"}, "3v9w79NhsfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3v9w79NhsfI.mp4/3v9w79NhsfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3v9w79NhsfI.mp4/3v9w79NhsfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3v9w79NhsfI.m3u8/3v9w79NhsfI.m3u8"}, "duration": 332, "id": "3v9w79NhsfI", "title": "Random variables", "format": "mp4", "description": "Basic idea and definitions of random variables", "path": "khan/math/probability/random-variables-topic/random_variables_prob_dist/random-variables/", "slug": "random-variables", "kind": "Video", "video_id": "3v9w79NhsfI", "keywords": "", "youtube_id": "3v9w79NhsfI", "readable_id": "random-variables"}, "4J-dRA3MGc8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4J-dRA3MGc8.mp4/4J-dRA3MGc8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4J-dRA3MGc8.mp4/4J-dRA3MGc8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4J-dRA3MGc8.m3u8/4J-dRA3MGc8.m3u8"}, "duration": 727, "id": "4J-dRA3MGc8", "title": "Paying doctors", "format": "mp4", "description": "Basics of how doctors get paid", "path": "khan/science/health-and-medicine/health-care-system/paying-doctors/", "slug": "paying-doctors", "kind": "Video", "video_id": "4J-dRA3MGc8", "keywords": "healthcare, economics", "youtube_id": "4J-dRA3MGc8", "readable_id": "paying-doctors"}, "Wph0cBNi7Yo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wph0cBNi7Yo.mp4/Wph0cBNi7Yo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wph0cBNi7Yo.mp4/Wph0cBNi7Yo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wph0cBNi7Yo.m3u8/Wph0cBNi7Yo.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/maritime-se-asia/wayang-golek/", "duration": 373, "id": "Wph0cBNi7Yo", "title": "Indonesian rod puppets (wayang golek)", "format": "mp4", "description": "Indonesian rod puppet (wayang golek) performances are a kind of blessing bestowed on special events such as circumcisions, weddings, celebrations\u00a0of the ancestors, and other rites of passage and public events. The performers may be hired by an individual or a\u00a0family holding a life cycle ceremony, or by an entire village. A performance is meant to engage all members of the\u00a0community.\u00a0 Puppet Master Kathey Foley discusses the charcter types associated with Indonesian rod puppets. \u00a0Learn more about the puppet theater of Indonesia\u00a0on the Asian Art Museum's education website.", "slug": "wayang-golek", "kind": "Video", "video_id": "Wph0cBNi7Yo", "keywords": "", "youtube_id": "Wph0cBNi7Yo", "readable_id": "wayang-golek"}, "ROpbdO-gRUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ROpbdO-gRUo.mp4/ROpbdO-gRUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ROpbdO-gRUo.mp4/ROpbdO-gRUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ROpbdO-gRUo.m3u8/ROpbdO-gRUo.m3u8"}, "duration": 645, "id": "ROpbdO-gRUo", "title": "Correlation and causality", "format": "mp4", "description": "Understanding why correlation does not imply causality (even though many in the press and some researchers often imply otherwise)", "path": "khan/math/probability/regression/regression-correlation/correlation-and-causality/", "slug": "correlation-and-causality", "kind": "Video", "video_id": "ROpbdO-gRUo", "keywords": "statistic, health, nutrition", "youtube_id": "ROpbdO-gRUo", "readable_id": "correlation-and-causality"}, "j3oBvc3lKsY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j3oBvc3lKsY.mp4/j3oBvc3lKsY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j3oBvc3lKsY.mp4/j3oBvc3lKsY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j3oBvc3lKsY.m3u8/j3oBvc3lKsY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-skeletal-system/skeletal-endocrine-control/", "duration": 502, "id": "j3oBvc3lKsY", "title": "Skeletal endocrine control", "format": "mp4", "description": "", "slug": "skeletal-endocrine-control", "kind": "Video", "video_id": "j3oBvc3lKsY", "keywords": "", "youtube_id": "j3oBvc3lKsY", "readable_id": "skeletal-endocrine-control"}, "8aeivxR1GDc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8aeivxR1GDc.mp4/8aeivxR1GDc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8aeivxR1GDc.mp4/8aeivxR1GDc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8aeivxR1GDc.m3u8/8aeivxR1GDc.m3u8"}, "duration": 507, "id": "8aeivxR1GDc", "title": "Hypertension symptoms and categories", "format": "mp4", "description": "Learn the most common symptoms (or lack thereof!) and the two major categories of hypertension. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/circulatory-system-diseases/hypertension/hypertension-symptoms-and-categories/", "slug": "hypertension-symptoms-and-categories", "kind": "Video", "video_id": "8aeivxR1GDc", "keywords": "", "youtube_id": "8aeivxR1GDc", "readable_id": "hypertension-symptoms-and-categories"}, "W3C07uH-b9o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W3C07uH-b9o.mp4/W3C07uH-b9o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W3C07uH-b9o.mp4/W3C07uH-b9o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W3C07uH-b9o.m3u8/W3C07uH-b9o.m3u8"}, "path": "khan/math/probability/statistical-studies/hypothesis-test/statistical-significance-on-bus-speeds/", "duration": 696, "id": "W3C07uH-b9o", "title": "Statistical significance on bus speeds", "format": "mp4", "description": "", "slug": "statistical-significance-on-bus-speeds", "kind": "Video", "video_id": "W3C07uH-b9o", "keywords": "", "youtube_id": "W3C07uH-b9o", "readable_id": "statistical-significance-on-bus-speeds"}, "WEYKoJTIHcE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WEYKoJTIHcE.mp4/WEYKoJTIHcE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WEYKoJTIHcE.mp4/WEYKoJTIHcE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WEYKoJTIHcE.m3u8/WEYKoJTIHcE.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/willem-de-kooning-woman-i-1950-52/", "duration": 220, "id": "WEYKoJTIHcE", "title": "de Kooning's Woman I", "format": "mp4", "description": "Willem de Kooning, Woman I, oil on canvas, 1950-52 (MoMA)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "willem-de-kooning-woman-i-1950-52", "kind": "Video", "video_id": "WEYKoJTIHcE", "keywords": "dekooning, woman", "youtube_id": "WEYKoJTIHcE", "readable_id": "willem-de-kooning-woman-i-1950-52"}, "Y0eWnOZpSpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y0eWnOZpSpQ.mp4/Y0eWnOZpSpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y0eWnOZpSpQ.mp4/Y0eWnOZpSpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y0eWnOZpSpQ.m3u8/Y0eWnOZpSpQ.m3u8"}, "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/plate-tectonics-geological-features-of-convergent-plate-boundaries/", "duration": 364, "id": "Y0eWnOZpSpQ", "title": "Plate tectonics: Geological features of convergent plate boundaries", "format": "mp4", "description": "Geological features of Convergent Plate Boundaries", "slug": "plate-tectonics-geological-features-of-convergent-plate-boundaries", "kind": "Video", "video_id": "Y0eWnOZpSpQ", "keywords": "Geological, features, of, Convergent, Plate, Boundaries", "youtube_id": "Y0eWnOZpSpQ", "readable_id": "plate-tectonics-geological-features-of-convergent-plate-boundaries"}, "JXVGPEOQCb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JXVGPEOQCb8.mp4/JXVGPEOQCb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JXVGPEOQCb8.mp4/JXVGPEOQCb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JXVGPEOQCb8.m3u8/JXVGPEOQCb8.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/absolute-relative-maxima-minima/using-extreme-value-theorem/", "duration": 416, "id": "JXVGPEOQCb8", "title": "Applying extreme value theorem", "format": "mp4", "description": "", "slug": "using-extreme-value-theorem", "kind": "Video", "video_id": "JXVGPEOQCb8", "keywords": "", "youtube_id": "JXVGPEOQCb8", "readable_id": "using-extreme-value-theorem"}, "GmomzubjO1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GmomzubjO1I.mp4/GmomzubjO1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GmomzubjO1I.mp4/GmomzubjO1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GmomzubjO1I.m3u8/GmomzubjO1I.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/globalization-trade-and-transnational-corporations/", "duration": 392, "id": "GmomzubjO1I", "title": "Globalization- trade and transnational corporations", "format": "mp4", "description": "", "slug": "globalization-trade-and-transnational-corporations", "kind": "Video", "video_id": "GmomzubjO1I", "keywords": "", "youtube_id": "GmomzubjO1I", "readable_id": "globalization-trade-and-transnational-corporations"}, "Zny3nM8V-D4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zny3nM8V-D4.mp4/Zny3nM8V-D4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zny3nM8V-D4.mp4/Zny3nM8V-D4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zny3nM8V-D4.m3u8/Zny3nM8V-D4.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-9-3/", "duration": 67, "id": "Zny3nM8V-D4", "title": "3 Distance to reflected point", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-3", "kind": "Video", "video_id": "Zny3nM8V-D4", "keywords": "", "youtube_id": "Zny3nM8V-D4", "readable_id": "sat-2010-may-9-3"}, "xEDnwEOOf7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xEDnwEOOf7Y.mp4/xEDnwEOOf7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xEDnwEOOf7Y.mp4/xEDnwEOOf7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xEDnwEOOf7Y.m3u8/xEDnwEOOf7Y.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dec-perc-frac-pre-alg/adding-fractions-decimals-and-percentages/", "duration": 274, "id": "xEDnwEOOf7Y", "title": "Adding, subtracting fractions, decimals, percentages", "format": "mp4", "description": "What happens when we are asked to add or subtract fractions, decimals, and percentages? You'll see in this example that we first get them in the same format, and then add fractions.", "slug": "adding-fractions-decimals-and-percentages", "kind": "Video", "video_id": "xEDnwEOOf7Y", "keywords": "", "youtube_id": "xEDnwEOOf7Y", "readable_id": "adding-fractions-decimals-and-percentages"}, "wNYFJsC8TZE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wNYFJsC8TZE.mp4/wNYFJsC8TZE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wNYFJsC8TZE.mp4/wNYFJsC8TZE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wNYFJsC8TZE.m3u8/wNYFJsC8TZE.m3u8"}, "duration": 246, "id": "wNYFJsC8TZE", "title": "Floating exchange resolving trade imbalance", "format": "mp4", "description": "Floating Exchange Resolving Trade Imbalance", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/floating-exchange-resolving-trade-imbalance/", "slug": "floating-exchange-resolving-trade-imbalance", "kind": "Video", "video_id": "wNYFJsC8TZE", "keywords": "Floating, Exchange, Resolving, Trade, Imbalance", "youtube_id": "wNYFJsC8TZE", "readable_id": "floating-exchange-resolving-trade-imbalance"}, "ULgGEXBmNlw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ULgGEXBmNlw.mp4/ULgGEXBmNlw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ULgGEXBmNlw.mp4/ULgGEXBmNlw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ULgGEXBmNlw.m3u8/ULgGEXBmNlw.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/weyden/rogier-van-der-weyden-the-crucifixion-with-the-virgin-and-st-john-the-evangelist-c-1460/", "duration": 390, "id": "ULgGEXBmNlw", "title": "Van der Weyden, Crucifixion, with the Virgin and Saint John", "format": "mp4", "description": "Rogier van der Weyden, The Crucifixion, with the Virgin and Saint John the Evangelist Mourning, c. 1460, oil on panel, 71 x 73-3/8 inches / 180.3 x 186.4 cm (Philadelphia Museum of Art)", "slug": "rogier-van-der-weyden-the-crucifixion-with-the-virgin-and-st-john-the-evangelist-c-1460", "kind": "Video", "video_id": "ULgGEXBmNlw", "keywords": "Rogier van der Weyden, van der Weyden, Crucifixion, Virgin, Saint, John, Evangelist, Mourning, 1460, Philadelphia Museum of Art, Renaissance, Northern, Netherlandish, Smarthistory, Google Art Project, Khan Academy, OER, art history, painting", "youtube_id": "ULgGEXBmNlw", "readable_id": "rogier-van-der-weyden-the-crucifixion-with-the-virgin-and-st-john-the-evangelist-c-1460"}, "5qgtWunYHwQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5qgtWunYHwQ.mp4/5qgtWunYHwQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5qgtWunYHwQ.mp4/5qgtWunYHwQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5qgtWunYHwQ.m3u8/5qgtWunYHwQ.m3u8"}, "duration": 171, "id": "5qgtWunYHwQ", "title": "Glassmaking technique: mosaic glass", "format": "mp4", "description": "Watch a glassmaker create a mosaic glass bowl (footage from the Corning Museum of Glass). Love art? Follow us on Google+", "path": "glassmaking-technique-mosaic-glass/", "slug": "glassmaking-technique-mosaic-glass", "kind": "Video", "video_id": "5qgtWunYHwQ", "keywords": "", "youtube_id": "5qgtWunYHwQ", "readable_id": "glassmaking-technique-mosaic-glass"}, "s38l6nmTrvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s38l6nmTrvM.mp4/s38l6nmTrvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s38l6nmTrvM.mp4/s38l6nmTrvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s38l6nmTrvM.m3u8/s38l6nmTrvM.m3u8"}, "duration": 600, "id": "s38l6nmTrvM", "title": "Cross product and torque", "format": "mp4", "description": "The cross product and the direction of torque.", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/cross-product-and-torque/", "slug": "cross-product-and-torque", "kind": "Video", "video_id": "s38l6nmTrvM", "keywords": "vector, cross, product, torque", "youtube_id": "s38l6nmTrvM", "readable_id": "cross-product-and-torque"}, "57gz50uTPqM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/57gz50uTPqM.mp4/57gz50uTPqM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/57gz50uTPqM.mp4/57gz50uTPqM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/57gz50uTPqM.m3u8/57gz50uTPqM.m3u8"}, "duration": 245, "id": "57gz50uTPqM", "title": "Doing the example with accounts payable growing", "format": "mp4", "description": "Introduction to Accounts Payable", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/financial-statements-tutorial/doing-the-example-with-accounts-payable-growing/", "slug": "doing-the-example-with-accounts-payable-growing", "kind": "Video", "video_id": "57gz50uTPqM", "keywords": "accounts, payable, receivable, working, capital", "youtube_id": "57gz50uTPqM", "readable_id": "doing-the-example-with-accounts-payable-growing"}, "ZOYRb2sYrL0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZOYRb2sYrL0.mp4/ZOYRb2sYrL0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZOYRb2sYrL0.mp4/ZOYRb2sYrL0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZOYRb2sYrL0.m3u8/ZOYRb2sYrL0.m3u8"}, "duration": 420, "id": "ZOYRb2sYrL0", "title": "Abstract-ness", "format": "mp4", "description": "The general idea behind the word 'abstract'", "path": "khan/math/algebra/introduction-to-algebra/overview_hist_alg/abstract-ness/", "slug": "abstract-ness", "kind": "Video", "video_id": "ZOYRb2sYrL0", "keywords": "algebra, abstract", "youtube_id": "ZOYRb2sYrL0", "readable_id": "abstract-ness"}, "bJMUKNbAsTY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bJMUKNbAsTY.mp4/bJMUKNbAsTY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bJMUKNbAsTY.mp4/bJMUKNbAsTY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bJMUKNbAsTY.m3u8/bJMUKNbAsTY.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/oxidation-reduction-review/organic-oxidation-reduction-reactions/", "duration": 824, "id": "bJMUKNbAsTY", "title": "Organic oxidation-reduction reactions", "format": "mp4", "description": "How to determine if a starting compound is oxidized, reduced, or neither", "slug": "organic-oxidation-reduction-reactions", "kind": "Video", "video_id": "bJMUKNbAsTY", "keywords": "", "youtube_id": "bJMUKNbAsTY", "readable_id": "organic-oxidation-reduction-reactions"}, "BZxZ_eEuJBM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BZxZ_eEuJBM.mp4/BZxZ_eEuJBM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BZxZ_eEuJBM.mp4/BZxZ_eEuJBM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BZxZ_eEuJBM.m3u8/BZxZ_eEuJBM.m3u8"}, "duration": 483, "id": "BZxZ_eEuJBM", "title": "Complex conjugates", "format": "mp4", "description": "Complex Conjugates", "path": "khan/math/precalculus/imaginary_complex_precalc/multiplying-dividing-complex/complex-conjugates/", "slug": "complex-conjugates", "kind": "Video", "video_id": "BZxZ_eEuJBM", "keywords": "Complex, Conjugates, argand, real, imaginary", "youtube_id": "BZxZ_eEuJBM", "readable_id": "complex-conjugates"}, "CFZv-UnbHLA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CFZv-UnbHLA.mp4/CFZv-UnbHLA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CFZv-UnbHLA.mp4/CFZv-UnbHLA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CFZv-UnbHLA.m3u8/CFZv-UnbHLA.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-6-6/", "duration": 139, "id": "CFZv-UnbHLA", "title": "6 Area of shaded region", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-6", "kind": "Video", "video_id": "CFZv-UnbHLA", "keywords": "", "youtube_id": "CFZv-UnbHLA", "readable_id": "sat-2010-may-6-6"}, "ccrYD6iX_SY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ccrYD6iX_SY.mp4/ccrYD6iX_SY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ccrYD6iX_SY.mp4/ccrYD6iX_SY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ccrYD6iX_SY.m3u8/ccrYD6iX_SY.m3u8"}, "duration": 651, "id": "ccrYD6iX_SY", "title": "Example: Combinatorics and probability", "format": "mp4", "description": "Probability of getting a set of cards", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/probability-of-dependent-events-2/", "slug": "probability-of-dependent-events-2", "kind": "Video", "video_id": "ccrYD6iX_SY", "keywords": "U12_L2_T4_we3, Probability, of, Dependent, Events, CC_7_SP_7", "youtube_id": "ccrYD6iX_SY", "readable_id": "probability-of-dependent-events-2"}, "9eWyvWq9CCs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9eWyvWq9CCs.mp4/9eWyvWq9CCs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9eWyvWq9CCs.mp4/9eWyvWq9CCs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9eWyvWq9CCs.m3u8/9eWyvWq9CCs.m3u8"}, "path": "khan/math/competition-math/aime/2003-aime/sum-of-polynomial-roots-proof/", "duration": 887, "id": "9eWyvWq9CCs", "title": "Sum of polynomial roots (proof)", "format": "mp4", "description": "Sum of Polynomial Roots", "slug": "sum-of-polynomial-roots-proof", "kind": "Video", "video_id": "9eWyvWq9CCs", "keywords": "Sum, of, Polynomial, Roots, mathematical, induction, algebra", "youtube_id": "9eWyvWq9CCs", "readable_id": "sum-of-polynomial-roots-proof"}, "H0q9Fqb8YT4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H0q9Fqb8YT4.mp4/H0q9Fqb8YT4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H0q9Fqb8YT4.mp4/H0q9Fqb8YT4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H0q9Fqb8YT4.m3u8/H0q9Fqb8YT4.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-fractions/examples-of-dividing-negative-fractions/", "duration": 251, "id": "H0q9Fqb8YT4", "title": "Dividing negative fractions", "format": "mp4", "description": "", "slug": "examples-of-dividing-negative-fractions", "kind": "Video", "video_id": "H0q9Fqb8YT4", "keywords": "", "youtube_id": "H0q9Fqb8YT4", "readable_id": "examples-of-dividing-negative-fractions"}, "iNemmT1hnzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iNemmT1hnzA.mp4/iNemmT1hnzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iNemmT1hnzA.mp4/iNemmT1hnzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iNemmT1hnzA.m3u8/iNemmT1hnzA.m3u8"}, "duration": 257, "id": "iNemmT1hnzA", "title": "Data on Chinese US balance of payments", "format": "mp4", "description": "Data on Chinese US Balance of Payments", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/data-on-chinese-us-balance-of-payments/", "slug": "data-on-chinese-us-balance-of-payments", "kind": "Video", "video_id": "iNemmT1hnzA", "keywords": "Data, on, Chinese, US, Balance, of, Payments", "youtube_id": "iNemmT1hnzA", "readable_id": "data-on-chinese-us-balance-of-payments"}, "QTVDRbLX2_o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QTVDRbLX2_o.mp4/QTVDRbLX2_o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QTVDRbLX2_o.mp4/QTVDRbLX2_o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QTVDRbLX2_o.m3u8/QTVDRbLX2_o.m3u8"}, "path": "khan/partner-content/big-history-project/life/life-and-big-history/bhp-threshold-5/", "duration": 178, "id": "QTVDRbLX2_o", "title": "Threshold 5: Life on Earth Video", "format": "mp4", "description": "Through a diversity of chemical elements and the perfect conditions on Earth, life mysteriously appeared.", "slug": "bhp-threshold-5", "kind": "Video", "video_id": "QTVDRbLX2_o", "keywords": "", "youtube_id": "QTVDRbLX2_o", "readable_id": "bhp-threshold-5"}, "87_qIofPwhg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/87_qIofPwhg.mp4/87_qIofPwhg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/87_qIofPwhg.mp4/87_qIofPwhg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/87_qIofPwhg.m3u8/87_qIofPwhg.m3u8"}, "duration": 481, "id": "87_qIofPwhg", "title": "Introduction to cube roots", "format": "mp4", "description": "Learn the meaning of cube roots and how to find them. Also learn how to find the cube root of a negative number.", "path": "introduction-to-cube-roots/", "slug": "introduction-to-cube-roots", "kind": "Video", "video_id": "87_qIofPwhg", "keywords": "", "youtube_id": "87_qIofPwhg", "readable_id": "introduction-to-cube-roots"}, "lA8pSpp-FS4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lA8pSpp-FS4.mp4/lA8pSpp-FS4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lA8pSpp-FS4.mp4/lA8pSpp-FS4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lA8pSpp-FS4.m3u8/lA8pSpp-FS4.m3u8"}, "path": "khan/humanities/art-asia/beginners-guide-asian-culture/buddhist-art-culture/buddha-and-mara/", "duration": 187, "id": "lA8pSpp-FS4", "title": "The Buddha triumphing over Mara", "format": "mp4", "description": "The main figure in this stone sculpture from the 900s shows many characteristic features of images of the Buddha. Here we see elements that tell us we're in the presence of the Buddha as he was on the threshold of achieving enlightenment. Above his head are branches of heart-shaped leaves. They indicate the sacred bodhi tree, under which he is said to have attained enlightenment some 2,500 years ago. Learn more about this artwork on the Asian Art Museum's education website.", "slug": "buddha-and-mara", "kind": "Video", "video_id": "lA8pSpp-FS4", "keywords": "", "youtube_id": "lA8pSpp-FS4", "readable_id": "buddha-and-mara"}, "8zOtrD8QMEc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8zOtrD8QMEc.mp4/8zOtrD8QMEc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8zOtrD8QMEc.mp4/8zOtrD8QMEc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8zOtrD8QMEc.m3u8/8zOtrD8QMEc.m3u8"}, "duration": 178, "id": "8zOtrD8QMEc", "title": "\"Winners and Losers\" with Xavier Salomon", "format": "mp4", "description": "Met curator Xavier Salomon on triumph and loss in Giovanni Battista Tiepolo\u2019s The Triumph of Marius.\n\nThis painting is from a series of ten magnificent canvases painted to decorate the main room of Ca\u2019 Dolfin, Venice. The subject of this triumphal procession is identified by the Latin inscription at the top of the painting, from the Roman historian Lucius Anneus Florus: \"The people of Rome behold Jugurtha laden with chains\". The African king Jugurtha is shown before his captor, the Roman general Gaius Marius. The procession was held on January 1, 104 B.C.E. The crowds carry booty, including a bust of the mother goddess Cybele. The thirty-year-old Tiepolo included his self-portrait among the figures on the left.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "winners-and-losers/", "slug": "winners-and-losers", "kind": "Video", "video_id": "8zOtrD8QMEc", "keywords": "authority, canvas, dignity, defeat, music, painting, sympathy, Europe", "youtube_id": "8zOtrD8QMEc", "readable_id": "winners-and-losers"}, "5z568fLBQyQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5z568fLBQyQ.mp4/5z568fLBQyQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5z568fLBQyQ.mp4/5z568fLBQyQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5z568fLBQyQ.m3u8/5z568fLBQyQ.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/converting-decimals-to-percents-ex-1/", "duration": 156, "id": "5z568fLBQyQ", "title": "Converting decimals to percents", "format": "mp4", "description": "Need to convert a decimal to a percent? Ok, we'll just use our fraction friends to get us there. Watch and be amazed.", "slug": "converting-decimals-to-percents-ex-1", "kind": "Video", "video_id": "5z568fLBQyQ", "keywords": "Converting, decimals, to, percents, ex, 1", "youtube_id": "5z568fLBQyQ", "readable_id": "converting-decimals-to-percents-ex-1"}, "GYLTVhxWCEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GYLTVhxWCEI.mp4/GYLTVhxWCEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GYLTVhxWCEI.mp4/GYLTVhxWCEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GYLTVhxWCEI.m3u8/GYLTVhxWCEI.m3u8"}, "duration": 334, "id": "GYLTVhxWCEI", "title": "The Constitution and slavery part 2", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson continue the discussion of the Constitution and slavery and what compromise meant at the Constitutional Convention and George Washington's involvement with slaves.", "path": "slavery-part-two/", "slug": "slavery-part-two", "kind": "Video", "video_id": "GYLTVhxWCEI", "keywords": "", "youtube_id": "GYLTVhxWCEI", "readable_id": "slavery-part-two"}, "gD7A1LA4jO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gD7A1LA4jO8.mp4/gD7A1LA4jO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gD7A1LA4jO8.mp4/gD7A1LA4jO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gD7A1LA4jO8.m3u8/gD7A1LA4jO8.m3u8"}, "duration": 326, "id": "gD7A1LA4jO8", "title": "Applying rational equations 1", "format": "mp4", "description": "Applying Rational Equations 1", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/applying-rational-equations-1/", "slug": "applying-rational-equations-1", "kind": "Video", "video_id": "gD7A1LA4jO8", "keywords": "U11_L2_T2_we1, Applying, Rational, Equations, CC_39336_A-APR_7, CC_39336_A-CED_1", "youtube_id": "gD7A1LA4jO8", "readable_id": "applying-rational-equations-1"}, "w702yvnip_w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w702yvnip_w.mp4/w702yvnip_w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w702yvnip_w.mp4/w702yvnip_w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w702yvnip_w.m3u8/w702yvnip_w.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/surrealism1/magritte-the-treachery-of-images-ceci-n-est-pas-une-pipe-1929/", "duration": 221, "id": "w702yvnip_w", "title": "Magritte, The Treachery of Images (Ceci n\u2019est pas une pipe)", "format": "mp4", "description": "Ren\u00e9 Magritte, The Treachery of Images (Ceci n'est pas une pipe), 1929 (LACMA) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "magritte-the-treachery-of-images-ceci-n-est-pas-une-pipe-1929", "kind": "Video", "video_id": "w702yvnip_w", "keywords": "Magritte, Pipe, surrealism, LACMA, Smarthistory, Art History, Khan Academy", "youtube_id": "w702yvnip_w", "readable_id": "magritte-the-treachery-of-images-ceci-n-est-pas-une-pipe-1929"}, "3cHxWUnde6E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3cHxWUnde6E.mp4/3cHxWUnde6E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3cHxWUnde6E.mp4/3cHxWUnde6E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3cHxWUnde6E.m3u8/3cHxWUnde6E.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-15/", "duration": 147, "id": "3cHxWUnde6E", "title": "15 Slope of perpendicular line", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-15", "kind": "Video", "video_id": "3cHxWUnde6E", "keywords": "", "youtube_id": "3cHxWUnde6E", "readable_id": "2013-sat-practice-6-15"}, "8Wxw9bpKEGQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Wxw9bpKEGQ.mp4/8Wxw9bpKEGQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Wxw9bpKEGQ.mp4/8Wxw9bpKEGQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Wxw9bpKEGQ.m3u8/8Wxw9bpKEGQ.m3u8"}, "duration": 200, "id": "8Wxw9bpKEGQ", "title": "Dividing polynomials 1", "format": "mp4", "description": "Dividing polynomials 1", "path": "khan/math/algebra2/polynomial_and_rational/dividing_polynomials/dividing-polynomials-1/", "slug": "dividing-polynomials-1", "kind": "Video", "video_id": "8Wxw9bpKEGQ", "keywords": "u11_l2_t6_we1, Dividing, polynomials, CC_6_EE_1, CC_6_EE_2_c, CC_39336_A-APR_1", "youtube_id": "8Wxw9bpKEGQ", "readable_id": "dividing-polynomials-1"}, "x0pFo1RxTzM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x0pFo1RxTzM.mp4/x0pFo1RxTzM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x0pFo1RxTzM.mp4/x0pFo1RxTzM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x0pFo1RxTzM.m3u8/x0pFo1RxTzM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/changing-glomerular-filtration-rate/", "duration": 265, "id": "x0pFo1RxTzM", "title": "Changing glomerular filtration rate", "format": "mp4", "description": "", "slug": "changing-glomerular-filtration-rate", "kind": "Video", "video_id": "x0pFo1RxTzM", "keywords": "", "youtube_id": "x0pFo1RxTzM", "readable_id": "changing-glomerular-filtration-rate"}, "qEB6y4DklNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qEB6y4DklNY.mp4/qEB6y4DklNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qEB6y4DklNY.mp4/qEB6y4DklNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qEB6y4DklNY.m3u8/qEB6y4DklNY.m3u8"}, "duration": 611, "id": "qEB6y4DklNY", "title": "Introduction to compound interest and e", "format": "mp4", "description": "Compounding interest multiple times a year.", "path": "khan/math/algebra2/exponential_and_logarithmic_func/continuous_compounding/introduction-to-compound-interest-and-e/", "slug": "introduction-to-compound-interest-and-e", "kind": "Video", "video_id": "qEB6y4DklNY", "keywords": "compount, interest, limit, continuous, CC_39336_A-SSE_3_c", "youtube_id": "qEB6y4DklNY", "readable_id": "introduction-to-compound-interest-and-e"}, "FJo18AwLfuI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FJo18AwLfuI.mp4/FJo18AwLfuI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FJo18AwLfuI.mp4/FJo18AwLfuI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FJo18AwLfuI.m3u8/FJo18AwLfuI.m3u8"}, "duration": 315, "id": "FJo18AwLfuI", "title": "L'H\u00f4pital's rule example 2", "format": "mp4", "description": "L'H\u00f4pital's Rule Example 2", "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/l-hopital-s-rule-example-2/", "slug": "l-hopital-s-rule-example-2", "kind": "Video", "video_id": "FJo18AwLfuI", "keywords": "L'Hopital's, Rule, Example", "youtube_id": "FJo18AwLfuI", "readable_id": "l-hopital-s-rule-example-2"}, "a2Ia_ZlUCaQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a2Ia_ZlUCaQ.mp4/a2Ia_ZlUCaQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a2Ia_ZlUCaQ.mp4/a2Ia_ZlUCaQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a2Ia_ZlUCaQ.m3u8/a2Ia_ZlUCaQ.m3u8"}, "duration": 461, "id": "a2Ia_ZlUCaQ", "title": "Limits and infinity", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits-infinity/limits-and-infinity/", "slug": "limits-and-infinity", "kind": "Video", "video_id": "a2Ia_ZlUCaQ", "keywords": "", "youtube_id": "a2Ia_ZlUCaQ", "readable_id": "limits-and-infinity"}, "dt-2AanNQrc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dt-2AanNQrc.mp4/dt-2AanNQrc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dt-2AanNQrc.mp4/dt-2AanNQrc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dt-2AanNQrc.m3u8/dt-2AanNQrc.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/status/", "duration": 167, "id": "dt-2AanNQrc", "title": "Status", "format": "mp4", "description": "", "slug": "status", "kind": "Video", "video_id": "dt-2AanNQrc", "keywords": "", "youtube_id": "dt-2AanNQrc", "readable_id": "status"}, "zxy4KAiSPIc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zxy4KAiSPIc.mp4/zxy4KAiSPIc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zxy4KAiSPIc.mp4/zxy4KAiSPIc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zxy4KAiSPIc.m3u8/zxy4KAiSPIc.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/basic-geo-shapes-on-a-plane/constructing-polygon-on-coordinate-plane-example/", "duration": 92, "id": "zxy4KAiSPIc", "title": "Quadrilateral on the coordinate plane", "format": "mp4", "description": "In this example we are given the coordinates of the vertices and asked to construct the resulting polygon (specifically a quadrilateral). This is fun!", "slug": "constructing-polygon-on-coordinate-plane-example", "kind": "Video", "video_id": "zxy4KAiSPIc", "keywords": "", "youtube_id": "zxy4KAiSPIc", "readable_id": "constructing-polygon-on-coordinate-plane-example"}, "e_WWO2O5Nb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e_WWO2O5Nb8.mp4/e_WWO2O5Nb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e_WWO2O5Nb8.mp4/e_WWO2O5Nb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e_WWO2O5Nb8.m3u8/e_WWO2O5Nb8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carbohydrates-5d/carbohydrates-di-and-polysaccharides/", "duration": 781, "id": "e_WWO2O5Nb8", "title": "Carbohydrates- di and polysaccharides", "format": "mp4", "description": "", "slug": "carbohydrates-di-and-polysaccharides", "kind": "Video", "video_id": "e_WWO2O5Nb8", "keywords": "", "youtube_id": "e_WWO2O5Nb8", "readable_id": "carbohydrates-di-and-polysaccharides"}, "F6rtQczAYco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F6rtQczAYco.mp4/F6rtQczAYco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F6rtQczAYco.mp4/F6rtQczAYco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F6rtQczAYco.m3u8/F6rtQczAYco.m3u8"}, "duration": 199, "id": "F6rtQczAYco", "title": "Representing and comparing rates", "format": "mp4", "description": "", "path": "comparing-proportional-relationships-exercise/", "slug": "comparing-proportional-relationships-exercise", "kind": "Video", "video_id": "F6rtQczAYco", "keywords": "", "youtube_id": "F6rtQczAYco", "readable_id": "comparing-proportional-relationships-exercise"}, "9IUEk9fn2Vs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9IUEk9fn2Vs.mp4/9IUEk9fn2Vs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9IUEk9fn2Vs.mp4/9IUEk9fn2Vs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9IUEk9fn2Vs.m3u8/9IUEk9fn2Vs.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/algebra-linear-equations-4/", "duration": 458, "id": "9IUEk9fn2Vs", "title": "Algebra: Linear equations 4", "format": "mp4", "description": "Solving linear equations with variable expressions in the denominators of fractions", "slug": "algebra-linear-equations-4", "kind": "Video", "video_id": "9IUEk9fn2Vs", "keywords": "algebra, CC_7_EE_1, CC_8_EE_7_b", "youtube_id": "9IUEk9fn2Vs", "readable_id": "algebra-linear-equations-4"}, "Z96vkuybvjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z96vkuybvjE.mp4/Z96vkuybvjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z96vkuybvjE.mp4/Z96vkuybvjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z96vkuybvjE.m3u8/Z96vkuybvjE.m3u8"}, "duration": 381, "id": "Z96vkuybvjE", "title": "Constructing solutions to systems of equations", "format": "mp4", "description": "", "path": "constructing-solutions-to-systems-of-equations/", "slug": "constructing-solutions-to-systems-of-equations", "kind": "Video", "video_id": "Z96vkuybvjE", "keywords": "", "youtube_id": "Z96vkuybvjE", "readable_id": "constructing-solutions-to-systems-of-equations"}, "uzmLXIuAspQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uzmLXIuAspQ.mp4/uzmLXIuAspQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uzmLXIuAspQ.mp4/uzmLXIuAspQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uzmLXIuAspQ.m3u8/uzmLXIuAspQ.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/will-to-believe/", "duration": 400, "id": "uzmLXIuAspQ", "title": "Epistemology: The will to believe", "format": "mp4", "description": "Tom asks whether it is moral to believe something even when you have no evidence that it is true. He discusses a classic debate on that subject, between philosophers William James and William Clifford.\n\nSpeaker: Dr. Thomas Donaldson, Assistant Professor of Philosophy, Stanford University", "slug": "will-to-believe", "kind": "Video", "video_id": "uzmLXIuAspQ", "keywords": "", "youtube_id": "uzmLXIuAspQ", "readable_id": "will-to-believe"}, "bIe3nvBo8g0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bIe3nvBo8g0.mp4/bIe3nvBo8g0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bIe3nvBo8g0.mp4/bIe3nvBo8g0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bIe3nvBo8g0.m3u8/bIe3nvBo8g0.m3u8"}, "duration": 256, "id": "bIe3nvBo8g0", "title": "Director's Highlights: Penelope Curtis", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nJoin Director Penelope Curtis as she shares highlights from Tate Britain's displays and considers how new visual dialogues emerge by juxtaposing different styles, mediums, and voices.\n\nLearn more about the artists featured in this video:\nJames Havard Thomas, Lycidas, 1902-8\nGwen John, Nude Girl, 1909-10\nEric Gill, Ecstasy, 1910-11\nMona Hatoum, Performance Still, 1985 (printed 1995)\nSonia Boyce, MIssionary Position II, 1985\nRichard Hamilton, The Citizen, 1981-3", "path": "directors-highlights/", "slug": "directors-highlights", "kind": "Video", "video_id": "bIe3nvBo8g0", "keywords": "Tate, ", "youtube_id": "bIe3nvBo8g0", "readable_id": "directors-highlights"}, "v7ZWTZ9NgU4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v7ZWTZ9NgU4.mp4/v7ZWTZ9NgU4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v7ZWTZ9NgU4.mp4/v7ZWTZ9NgU4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v7ZWTZ9NgU4.m3u8/v7ZWTZ9NgU4.m3u8"}, "duration": 527, "id": "v7ZWTZ9NgU4", "title": "Phillips curve", "format": "mp4", "description": "The observation that inflation and unemployment tend to be inversely correlated", "path": "khan/economics-finance-domain/macroeconomics/inflation-topic/phillips-curve-tutorial/phillips-curve/", "slug": "phillips-curve", "kind": "Video", "video_id": "v7ZWTZ9NgU4", "keywords": "macroeconomics", "youtube_id": "v7ZWTZ9NgU4", "readable_id": "phillips-curve"}, "RGMcswR8DnY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RGMcswR8DnY.mp4/RGMcswR8DnY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RGMcswR8DnY.mp4/RGMcswR8DnY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RGMcswR8DnY.m3u8/RGMcswR8DnY.m3u8"}, "duration": 452, "id": "RGMcswR8DnY", "title": "Full reserve banking", "format": "mp4", "description": "Overview of full reserve banking in comparison to fractional reserve banking", "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/fractional-reserve-banking-tut/full-reserve-banking/", "slug": "full-reserve-banking", "kind": "Video", "video_id": "RGMcswR8DnY", "keywords": "macroeconomics", "youtube_id": "RGMcswR8DnY", "readable_id": "full-reserve-banking"}, "8zrJxuVW3u4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8zrJxuVW3u4.mp4/8zrJxuVW3u4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8zrJxuVW3u4.mp4/8zrJxuVW3u4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8zrJxuVW3u4.m3u8/8zrJxuVW3u4.m3u8"}, "duration": 532, "id": "8zrJxuVW3u4", "title": "New perspective on the heart", "format": "mp4", "description": "Take a look at the heart in cross section, looking down at it from the top! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/new-perspective-on-the-heart/", "slug": "new-perspective-on-the-heart", "kind": "Video", "video_id": "8zrJxuVW3u4", "keywords": "", "youtube_id": "8zrJxuVW3u4", "readable_id": "new-perspective-on-the-heart"}, "elBVeO71_jY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/elBVeO71_jY.mp4/elBVeO71_jY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/elBVeO71_jY.mp4/elBVeO71_jY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/elBVeO71_jY.m3u8/elBVeO71_jY.m3u8"}, "duration": 509, "id": "elBVeO71_jY", "title": "The Invention of the Battery", "format": "mp4", "description": "The invention of the battery with Alessandro Volta and Luigi Galvani", "path": "the-invention-of-the-battery/", "slug": "the-invention-of-the-battery", "kind": "Video", "video_id": "elBVeO71_jY", "keywords": "MIT, M.I.T., K-12, K12, engineering, teaching, learning, demo*, science, Chemistry, Physics", "youtube_id": "elBVeO71_jY", "readable_id": "the-invention-of-the-battery"}, "_HJljJuVHLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_HJljJuVHLw.mp4/_HJljJuVHLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_HJljJuVHLw.mp4/_HJljJuVHLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_HJljJuVHLw.m3u8/_HJljJuVHLw.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-deducing-angle-measures/", "duration": 658, "id": "_HJljJuVHLw", "title": "CA Geometry: Deducing angle measures", "format": "mp4", "description": "46-50, deducing the measure of angles", "slug": "ca-geometry-deducing-angle-measures", "kind": "Video", "video_id": "_HJljJuVHLw", "keywords": "geometry, angles, deduction", "youtube_id": "_HJljJuVHLw", "readable_id": "ca-geometry-deducing-angle-measures"}, "wYhoqJDAvug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wYhoqJDAvug.mp4/wYhoqJDAvug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wYhoqJDAvug.mp4/wYhoqJDAvug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wYhoqJDAvug.m3u8/wYhoqJDAvug.m3u8"}, "duration": 282, "id": "wYhoqJDAvug", "title": "Political parties", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-vii/", "slug": "isaacson-with-cheney-khan-academy-lesson-vii", "kind": "Video", "video_id": "wYhoqJDAvug", "keywords": "", "youtube_id": "wYhoqJDAvug", "readable_id": "isaacson-with-cheney-khan-academy-lesson-vii"}, "obts_JDS6_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/obts_JDS6_Q.mp4/obts_JDS6_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/obts_JDS6_Q.mp4/obts_JDS6_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/obts_JDS6_Q.m3u8/obts_JDS6_Q.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/inverting-matrices-part-3/", "duration": 816, "id": "obts_JDS6_Q", "title": "Classic video on inverting a 3x3 matrix part 2", "format": "mp4", "description": "Using Gauss-Jordan elimination to invert a 3x3 matrix.", "slug": "inverting-matrices-part-3", "kind": "Video", "video_id": "obts_JDS6_Q", "keywords": "gauss, jordan, reduced, row, echelon, elimination, matrix, inverse", "youtube_id": "obts_JDS6_Q", "readable_id": "inverting-matrices-part-3"}, "R-Qu3QWOEiA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R-Qu3QWOEiA.mp4/R-Qu3QWOEiA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R-Qu3QWOEiA.mp4/R-Qu3QWOEiA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R-Qu3QWOEiA.m3u8/R-Qu3QWOEiA.m3u8"}, "duration": 435, "id": "R-Qu3QWOEiA", "title": "Shell method for rotating around horizontal line", "format": "mp4", "description": "Example showing how to find the volume of a solid of revolution (constructed by rotating around the x-axis) using the shell method (this could have been done with the disk method as well).", "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/shell-method-for-rotating-around-horizontal-line/", "slug": "shell-method-for-rotating-around-horizontal-line", "kind": "Video", "video_id": "R-Qu3QWOEiA", "keywords": "", "youtube_id": "R-Qu3QWOEiA", "readable_id": "shell-method-for-rotating-around-horizontal-line"}, "3ROWXs3jtQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3ROWXs3jtQU.mp4/3ROWXs3jtQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3ROWXs3jtQU.mp4/3ROWXs3jtQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3ROWXs3jtQU.m3u8/3ROWXs3jtQU.m3u8"}, "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/suspensions-colloids-and-solutions/", "duration": 837, "id": "3ROWXs3jtQU", "title": "Suspensions, colloids and solutions", "format": "mp4", "description": "Suspensions, Colloids and Solutions. The difference between Molarity and Molality.", "slug": "suspensions-colloids-and-solutions", "kind": "Video", "video_id": "3ROWXs3jtQU", "keywords": "chemistry, mixture, Molarity, molality", "youtube_id": "3ROWXs3jtQU", "readable_id": "suspensions-colloids-and-solutions"}, "4tWFdI7DkJ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4tWFdI7DkJ4.mp4/4tWFdI7DkJ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4tWFdI7DkJ4.mp4/4tWFdI7DkJ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4tWFdI7DkJ4.m3u8/4tWFdI7DkJ4.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/area-polar-graphs/calculator-integral/", "duration": 179, "id": "4tWFdI7DkJ4", "title": "Evaluating definite integral with calculator", "format": "mp4", "description": "", "slug": "calculator-integral", "kind": "Video", "video_id": "4tWFdI7DkJ4", "keywords": "", "youtube_id": "4tWFdI7DkJ4", "readable_id": "calculator-integral"}, "CJrVOf_3dN0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CJrVOf_3dN0.mp4/CJrVOf_3dN0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CJrVOf_3dN0.mp4/CJrVOf_3dN0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CJrVOf_3dN0.m3u8/CJrVOf_3dN0.m3u8"}, "duration": 689, "id": "CJrVOf_3dN0", "title": "Congruent triangles and SSS", "format": "mp4", "description": "What it means for triangles to be congruent", "path": "khan/math/geometry/congruent-triangles/cong_triangle/congruent-triangles-and-sss/", "slug": "congruent-triangles-and-sss", "kind": "Video", "video_id": "CJrVOf_3dN0", "keywords": "side, congruence", "youtube_id": "CJrVOf_3dN0", "readable_id": "congruent-triangles-and-sss"}, "ozHYnzvzoIc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ozHYnzvzoIc.mp4/ozHYnzvzoIc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ozHYnzvzoIc.mp4/ozHYnzvzoIc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ozHYnzvzoIc.m3u8/ozHYnzvzoIc.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/mars-global-surveyor/", "duration": 152, "id": "ozHYnzvzoIc", "title": "Mars global surveyor", "format": "mp4", "description": "", "slug": "mars-global-surveyor", "kind": "Video", "video_id": "ozHYnzvzoIc", "keywords": "", "youtube_id": "ozHYnzvzoIc", "readable_id": "mars-global-surveyor"}, "6lH7zWK_SAg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6lH7zWK_SAg.mp4/6lH7zWK_SAg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6lH7zWK_SAg.mp4/6lH7zWK_SAg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6lH7zWK_SAg.m3u8/6lH7zWK_SAg.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/fra-angelico-the-annunciation-and-life-of-the-virgin-in-the-predella-c-1426/", "duration": 220, "id": "6lH7zWK_SAg", "title": "Fra Angelico, The Annunciation (Prado)", "format": "mp4", "description": "Fra Angelico, The Annunciation and Life of the Virgin (in the predella), c. 1426, tempera on wood, 194 x 194 cm (Museo del Prado, Madrid) Speakers: Dr. Beth Harris and Dr. Steven Zucker\nThe Annunciation is described in the Gospel According to Luke 1:26 through verse 38.\u00a0\nBelow is the King James translation:\n\n26\u00a0And in the sixth month the angel Gabriel was sent from God unto a city of Galilee, named Nazareth,\n\n27\u00a0To a virgin espoused to a man whose name was Joseph, of the house of David; and the virgin's name [was] Mary.\n\n28\u00a0And the angel came in unto her, and said, Hail, [thou that art] highly favoured, the Lord [is] with thee: blessed [art] thou among women.\n\n29\u00a0And when she saw [him], she was troubled at his saying, and cast in her mind what manner of salutation this should be.\n\n30\u00a0And the angel said unto her, Fear not, Mary: for thou hast found favour with God.\n\n31\u00a0And, behold, thou shalt conceive in thy womb, and bring forth a son, and shalt call his name JESUS.\n\n32\u00a0He shall be great, and shall be called the Son of the Highest: and the Lord God shall give unto him the throne of his father David:\n\n33\u00a0And he shall reign over the house of Jacob for ever; and of his kingdom there shall be no end.\n\n34\u00a0Then said Mary unto the angel, How shall this be, seeing I know not a man?\n\n35\u00a0And the angel answered and said unto her, The Holy Ghost shall come upon thee, and the power of the Highest shall overshadow thee: therefore also that holy thing which shall be born of thee shall be called the Son of God.\n\n36\u00a0And, behold, thy cousin Elisabeth, she hath also conceived a son in her old age: and this is the sixth month with her, who was called barren.\n\n37\u00a0For with God nothing shall be impossible.\n\n38\u00a0And Mary said, Behold the handmaid of the Lord; be it unto me according to thy word. And the angel departed from her.\n", "slug": "fra-angelico-the-annunciation-and-life-of-the-virgin-in-the-predella-c-1426", "kind": "Video", "video_id": "6lH7zWK_SAg", "keywords": "fra Angelico, Prado, art history, smarthistory, renaissance, florence", "youtube_id": "6lH7zWK_SAg", "readable_id": "fra-angelico-the-annunciation-and-life-of-the-virgin-in-the-predella-c-1426"}, "KBsOwZRKzcE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KBsOwZRKzcE.mp4/KBsOwZRKzcE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KBsOwZRKzcE.mp4/KBsOwZRKzcE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KBsOwZRKzcE.m3u8/KBsOwZRKzcE.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/global-inequality/", "duration": 360, "id": "KBsOwZRKzcE", "title": "Global inequality", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "global-inequality", "kind": "Video", "video_id": "KBsOwZRKzcE", "keywords": "", "youtube_id": "KBsOwZRKzcE", "readable_id": "global-inequality"}, "4VICS9cIugo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4VICS9cIugo.mp4/4VICS9cIugo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4VICS9cIugo.mp4/4VICS9cIugo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4VICS9cIugo.m3u8/4VICS9cIugo.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/welcome-to-big-history/bhp-10what-is-big-history/", "duration": 407, "id": "4VICS9cIugo", "title": "What Is Big History?", "format": "mp4", "description": "We hear David Christian\u2019s explanation of Big History's 13.8-billion-year timeline and multidisciplinary approach.", "slug": "bhp-10what-is-big-history", "kind": "Video", "video_id": "4VICS9cIugo", "keywords": "", "youtube_id": "4VICS9cIugo", "readable_id": "bhp-10what-is-big-history"}, "6A1QWaP7cBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6A1QWaP7cBo.mp4/6A1QWaP7cBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6A1QWaP7cBo.mp4/6A1QWaP7cBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6A1QWaP7cBo.m3u8/6A1QWaP7cBo.m3u8"}, "path": "khan/partner-content/exploratorium/light-and-color/colored-shadows/build-your-own-colored-shadows-materials-steps/", "duration": 133, "id": "6A1QWaP7cBo", "title": "Build your own colored shadows: Materials & steps", "format": "mp4", "description": "Here's everything you'll need to build your own colored shadows.\u00a0", "slug": "build-your-own-colored-shadows-materials-steps", "kind": "Video", "video_id": "6A1QWaP7cBo", "keywords": "", "youtube_id": "6A1QWaP7cBo", "readable_id": "build-your-own-colored-shadows-materials-steps"}, "exBNBmf-my8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/exBNBmf-my8.mp4/exBNBmf-my8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/exBNBmf-my8.mp4/exBNBmf-my8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/exBNBmf-my8.m3u8/exBNBmf-my8.m3u8"}, "duration": 619, "id": "exBNBmf-my8", "title": "Jim Dine's \"Poet Singing (The Flowering Sheets)\": a documentary", "format": "mp4", "description": "In 2008, artist Jim Dine created the first contemporary art project at the Getty Villa. The work presents new sculpture and poetry by Dine inspired by ancient objects in the Museum's collection. Love art? Follow us on Google+", "path": "jim-dine-s-poet-singing-the-flowering-sheets-a-documentary/", "slug": "jim-dine-s-poet-singing-the-flowering-sheets-a-documentary", "kind": "Video", "video_id": "exBNBmf-my8", "keywords": "", "youtube_id": "exBNBmf-my8", "readable_id": "jim-dine-s-poet-singing-the-flowering-sheets-a-documentary"}, "knv4fNNoEG8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/knv4fNNoEG8.mp4/knv4fNNoEG8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/knv4fNNoEG8.mp4/knv4fNNoEG8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/knv4fNNoEG8.m3u8/knv4fNNoEG8.m3u8"}, "path": "khan/test-prep/mcat/cells/transport-across-a-cell-membrane/how-do-things-move-across-a-cell-membrane/", "duration": 710, "id": "knv4fNNoEG8", "title": "How do things move across a cell membrane?", "format": "mp4", "description": "", "slug": "how-do-things-move-across-a-cell-membrane", "kind": "Video", "video_id": "knv4fNNoEG8", "keywords": "", "youtube_id": "knv4fNNoEG8", "readable_id": "how-do-things-move-across-a-cell-membrane"}, "u9v_bakOIcU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u9v_bakOIcU.mp4/u9v_bakOIcU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u9v_bakOIcU.mp4/u9v_bakOIcU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u9v_bakOIcU.m3u8/u9v_bakOIcU.m3u8"}, "duration": 378, "id": "u9v_bakOIcU", "title": "Quotient of functions", "format": "mp4", "description": "Quotient of functions and factoring by grouping", "path": "khan/math/algebra2/functions_and_graphs/function_expressions/quotient-of-functions/", "slug": "quotient-of-functions", "kind": "Video", "video_id": "u9v_bakOIcU", "keywords": "u17_l3_t1_we4, Quotient, of, Functions", "youtube_id": "u9v_bakOIcU", "readable_id": "quotient-of-functions"}, "zPjbiP66-6M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zPjbiP66-6M.mp4/zPjbiP66-6M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zPjbiP66-6M.mp4/zPjbiP66-6M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zPjbiP66-6M.m3u8/zPjbiP66-6M.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/ceramics-glass/ancient-and-byzantine-mosaic-materials/", "duration": 158, "id": "zPjbiP66-6M", "title": "Ancient and Byzantine mosaic materials", "format": "mp4", "description": "A video from The Art Institute of Chicago", "slug": "ancient-and-byzantine-mosaic-materials", "kind": "Video", "video_id": "zPjbiP66-6M", "keywords": "", "youtube_id": "zPjbiP66-6M", "readable_id": "ancient-and-byzantine-mosaic-materials"}, "qCvV11R2lgg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qCvV11R2lgg.mp4/qCvV11R2lgg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qCvV11R2lgg.mp4/qCvV11R2lgg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qCvV11R2lgg.m3u8/qCvV11R2lgg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/ischemic-stroke/", "duration": 502, "id": "qCvV11R2lgg", "title": "Ischemic stroke", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "ischemic-stroke", "kind": "Video", "video_id": "qCvV11R2lgg", "keywords": "", "youtube_id": "qCvV11R2lgg", "readable_id": "ischemic-stroke"}, "q8olT3TyHm8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q8olT3TyHm8.mp4/q8olT3TyHm8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q8olT3TyHm8.mp4/q8olT3TyHm8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q8olT3TyHm8.m3u8/q8olT3TyHm8.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/medicare/", "duration": 864, "id": "q8olT3TyHm8", "title": "Medicare", "format": "mp4", "description": "Medicare is the federal health insurance program for the elderly and disabled, but many people might be confused about how it works and how it is funded. This video explains the history, structure, and financing of this program.", "slug": "medicare", "kind": "Video", "video_id": "q8olT3TyHm8", "keywords": "", "youtube_id": "q8olT3TyHm8", "readable_id": "medicare"}, "DMd9mTyzj6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DMd9mTyzj6k.mp4/DMd9mTyzj6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DMd9mTyzj6k.mp4/DMd9mTyzj6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DMd9mTyzj6k.m3u8/DMd9mTyzj6k.m3u8"}, "duration": 227, "id": "DMd9mTyzj6k", "title": "Acquisitions with shares", "format": "mp4", "description": "Mechanics of a share-based acquisition", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/mergers-acquisitions/acquisitions-with-shares/", "slug": "acquisitions-with-shares", "kind": "Video", "video_id": "DMd9mTyzj6k", "keywords": "shares, stocks, capital, markets, finance", "youtube_id": "DMd9mTyzj6k", "readable_id": "acquisitions-with-shares"}, "HVuyK_vIMfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HVuyK_vIMfc.mp4/HVuyK_vIMfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HVuyK_vIMfc.mp4/HVuyK_vIMfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HVuyK_vIMfc.m3u8/HVuyK_vIMfc.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/mary-cassatt-in-the-loge-1878/", "duration": 273, "id": "HVuyK_vIMfc", "title": "Cassatt, In the Loge", "format": "mp4", "description": "Mary Cassatt, In the Loge, 1878, oil on canvas, 81.28 x 66.04 cm / 32 x 26 inches (Museum of Fine Arts, Boston), speakers: Dr. Beth Harris and Dr. Steven Zucker\n\nIn nineteenth century France, the gaze of the observer\u2014whether on Napoleon's grand new boulevards or in the opera\u2014was very much structured by issues of economic status. Mary Cassatt's remarkable painting In the Loge (c. 1878-79) clearly shows the complex relationship between the gaze, public spectacle, gender, and class privilege.\n\nCassatt was a wealthy American artist who had adopted the style of the Impressionists while living in Paris. Here she depicts a fashionable upper-class woman in a box seat at the Paris opera (as it happens, the sitter is Cassatt's sister, Lydia). Lydia is shown holding opera glasses up to her eyes; but instead of tilting them down, as she would if she were watching the performance below, her gaze is level. She peers straight across the chamber perhaps at another member of the audience. Look closely and you will notice that, in turn, and in one of the boxes across the room, a gentleman is gazing at her. Lydia is then, in a sense, caught between his gaze and ours even as she spies another.\n", "slug": "mary-cassatt-in-the-loge-1878", "kind": "Video", "video_id": "HVuyK_vIMfc", "keywords": "Mary Cassatt, Cassatt, In the Loge, Loge, 1878, Museum of Fine Arts, Boston, MFA, Paris, Opera, Garnier, opera glasses, Second Empire, Impressionism, art, painting, French, American, art history, smarthistory, Khan Academy, Google Art Project, OER", "youtube_id": "HVuyK_vIMfc", "readable_id": "mary-cassatt-in-the-loge-1878"}, "Y6wNiYcuCoE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y6wNiYcuCoE.mp4/Y6wNiYcuCoE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y6wNiYcuCoE.mp4/Y6wNiYcuCoE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y6wNiYcuCoE.m3u8/Y6wNiYcuCoE.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/simplifying-an-exponential-expression/", "duration": 310, "id": "Y6wNiYcuCoE", "title": "Simplifying an exponential expression", "format": "mp4", "description": "", "slug": "simplifying-an-exponential-expression", "kind": "Video", "video_id": "Y6wNiYcuCoE", "keywords": "", "youtube_id": "Y6wNiYcuCoE", "readable_id": "simplifying-an-exponential-expression"}, "S4oOSgTj9C8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S4oOSgTj9C8.mp4/S4oOSgTj9C8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S4oOSgTj9C8.mp4/S4oOSgTj9C8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S4oOSgTj9C8.m3u8/S4oOSgTj9C8.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/calculus-bc-2008-2-b-c/", "duration": 642, "id": "S4oOSgTj9C8", "title": "Calculus BC 2008 2 b &c", "format": "mp4", "description": "Parts 2b and 2c of the 2008 BC exam (free response)", "slug": "calculus-bc-2008-2-b-c", "kind": "Video", "video_id": "S4oOSgTj9C8", "keywords": "Calculus", "youtube_id": "S4oOSgTj9C8", "readable_id": "calculus-bc-2008-2-b-c"}, "c-wtvEdEoVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c-wtvEdEoVs.mp4/c-wtvEdEoVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c-wtvEdEoVs.mp4/c-wtvEdEoVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c-wtvEdEoVs.m3u8/c-wtvEdEoVs.m3u8"}, "duration": 325, "id": "c-wtvEdEoVs", "title": "Simplifying cube roots", "format": "mp4", "description": "Simplifying Cube Roots", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/simplifying-cube-roots/", "slug": "simplifying-cube-roots", "kind": "Video", "video_id": "c-wtvEdEoVs", "keywords": "u16_l1_t2_we3, Simplifying, Cube, Roots", "youtube_id": "c-wtvEdEoVs", "readable_id": "simplifying-cube-roots"}, "Ya-3XHBWDqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ya-3XHBWDqs.mp4/Ya-3XHBWDqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ya-3XHBWDqs.mp4/Ya-3XHBWDqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ya-3XHBWDqs.m3u8/Ya-3XHBWDqs.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/muscle-stretch-reflex/", "duration": 574, "id": "Ya-3XHBWDqs", "title": "Muscle stretch reflex", "format": "mp4", "description": "", "slug": "muscle-stretch-reflex", "kind": "Video", "video_id": "Ya-3XHBWDqs", "keywords": "MCAT", "youtube_id": "Ya-3XHBWDqs", "readable_id": "muscle-stretch-reflex"}, "QYOieJuzDr4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QYOieJuzDr4.mp4/QYOieJuzDr4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QYOieJuzDr4.mp4/QYOieJuzDr4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QYOieJuzDr4.m3u8/QYOieJuzDr4.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-more-fewer-100/starfish-rulers/", "duration": 217, "id": "QYOieJuzDr4", "title": "Starfish rulers", "format": "mp4", "description": "", "slug": "starfish-rulers", "kind": "Video", "video_id": "QYOieJuzDr4", "keywords": "", "youtube_id": "QYOieJuzDr4", "readable_id": "starfish-rulers"}, "zR4OaoiNkA0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zR4OaoiNkA0.mp4/zR4OaoiNkA0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zR4OaoiNkA0.mp4/zR4OaoiNkA0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zR4OaoiNkA0.m3u8/zR4OaoiNkA0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/reduction-of-carboxylic-acids/", "duration": 534, "id": "zR4OaoiNkA0", "title": "Reduction of carboxylic acids", "format": "mp4", "description": "How to reduce carboxylic acids using lithium aluminum hydride (and borane)", "slug": "reduction-of-carboxylic-acids", "kind": "Video", "video_id": "zR4OaoiNkA0", "keywords": "", "youtube_id": "zR4OaoiNkA0", "readable_id": "reduction-of-carboxylic-acids"}, "dl_9NC_J6yo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dl_9NC_J6yo.mp4/dl_9NC_J6yo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dl_9NC_J6yo.mp4/dl_9NC_J6yo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dl_9NC_J6yo.m3u8/dl_9NC_J6yo.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/exponential-form-complex-numbers/powers-of-complex-numbers/", "duration": 385, "id": "dl_9NC_J6yo", "title": "Powers of complex numbers", "format": "mp4", "description": "", "slug": "powers-of-complex-numbers", "kind": "Video", "video_id": "dl_9NC_J6yo", "keywords": "", "youtube_id": "dl_9NC_J6yo", "readable_id": "powers-of-complex-numbers"}, "LAUJuLEZ9HA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LAUJuLEZ9HA.mp4/LAUJuLEZ9HA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LAUJuLEZ9HA.mp4/LAUJuLEZ9HA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LAUJuLEZ9HA.m3u8/LAUJuLEZ9HA.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-10/", "duration": 81, "id": "LAUJuLEZ9HA", "title": "10 Setting up an equation", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-10", "kind": "Video", "video_id": "LAUJuLEZ9HA", "keywords": "", "youtube_id": "LAUJuLEZ9HA", "readable_id": "2013-sat-practice-6-10"}, "7eutept5h0Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7eutept5h0Q.mp4/7eutept5h0Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7eutept5h0Q.mp4/7eutept5h0Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7eutept5h0Q.m3u8/7eutept5h0Q.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/electromagnetic-waves-and-the-electromagnetic-spectrum/", "duration": 662, "id": "7eutept5h0Q", "title": "Electromagnetic waves and the electromagnetic spectrum", "format": "mp4", "description": "", "slug": "electromagnetic-waves-and-the-electromagnetic-spectrum", "kind": "Video", "video_id": "7eutept5h0Q", "keywords": "", "youtube_id": "7eutept5h0Q", "readable_id": "electromagnetic-waves-and-the-electromagnetic-spectrum"}, "A5lggKwX4Zw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A5lggKwX4Zw.mp4/A5lggKwX4Zw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A5lggKwX4Zw.mp4/A5lggKwX4Zw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A5lggKwX4Zw.m3u8/A5lggKwX4Zw.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2009-may-3-16/", "duration": 239, "id": "A5lggKwX4Zw", "title": "16 Seating assignments", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-16", "kind": "Video", "video_id": "A5lggKwX4Zw", "keywords": "", "youtube_id": "A5lggKwX4Zw", "readable_id": "sat-2009-may-3-16"}, "6mp-fBJNQmU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6mp-fBJNQmU.mp4/6mp-fBJNQmU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6mp-fBJNQmU.mp4/6mp-fBJNQmU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6mp-fBJNQmU.m3u8/6mp-fBJNQmU.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/surrealism1/salvador-dal-the-persistence-of-memory-1931/", "duration": 388, "id": "6mp-fBJNQmU", "title": "Dali, The Persistence of Memory", "format": "mp4", "description": "Salvador Dal\u00ed, The Persistence of Memory, 1931 (The Museum of Modern Art)\n\nSpeakers: Sal Khan & Steven Zucker", "slug": "salvador-dal-the-persistence-of-memory-1931", "kind": "Video", "video_id": "6mp-fBJNQmU", "keywords": "", "youtube_id": "6mp-fBJNQmU", "readable_id": "salvador-dal-the-persistence-of-memory-1931"}, "bkNMM8uiMww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bkNMM8uiMww.mp4/bkNMM8uiMww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bkNMM8uiMww.mp4/bkNMM8uiMww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bkNMM8uiMww.m3u8/bkNMM8uiMww.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/beginners-renaissance-florence/linear-perspective-brunelleschi-s-experiement/", "duration": 256, "id": "bkNMM8uiMww", "title": "Linear Perspective: Brunelleschi's Experiment", "format": "mp4", "description": "An introduction to Filippo Brunelleschi's experiment regarding linear perspective, c. 1420, in front of the Baptistry in Florence\u00a0", "slug": "linear-perspective-brunelleschi-s-experiement", "kind": "Video", "video_id": "bkNMM8uiMww", "keywords": "brunelleschi, filippo brunelleschi, linear perspective, renaissance, italian renaissance, Leon Battista Alberti, John Berger, perspective, art, history, art history", "youtube_id": "bkNMM8uiMww", "readable_id": "linear-perspective-brunelleschi-s-experiement"}, "uXoh6vi6J5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uXoh6vi6J5U.mp4/uXoh6vi6J5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uXoh6vi6J5U.mp4/uXoh6vi6J5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uXoh6vi6J5U.m3u8/uXoh6vi6J5U.m3u8"}, "path": "khan/math/recreational-math/vi-hart/pi-tau/are-shakespeare-s-plays-encoded-within-pi/", "duration": 226, "id": "uXoh6vi6J5U", "title": "Are Shakespeare's plays encoded within pi?", "format": "mp4", "description": "Special thanks to Toby (or not Toby) for playing Dog Hamlet. This cool website lets you search the first 200,000,000 digits of Pi. See if your phone number or encoded name is in there! http://www.angio.net/pi/piquery Seven Sonnets: Are Shakespeare's plays encoded within Pi? The truth is: we don't know, but we suspect They're somewhere in those digits.\u00a0", "slug": "are-shakespeare-s-plays-encoded-within-pi", "kind": "Video", "video_id": "uXoh6vi6J5U", "keywords": "pi, pi day, shakespeare, sonnets, mathematics, normal numbers", "youtube_id": "uXoh6vi6J5U", "readable_id": "are-shakespeare-s-plays-encoded-within-pi"}, "-9gl_HlsatI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-9gl_HlsatI.mp4/-9gl_HlsatI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-9gl_HlsatI.mp4/-9gl_HlsatI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-9gl_HlsatI.m3u8/-9gl_HlsatI.m3u8"}, "duration": 147, "id": "-9gl_HlsatI", "title": "Philip Rosedale - Founder and Chairman of Second Life", "format": "mp4", "description": "Philip Rosedale, Founder and Chairman of Second Life, talks about the origins of his groundbreaking virtual world, and how patience was the key to making the company profitable.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/philip-rosedale/kauffman-philip-rosedale2/", "slug": "kauffman-philip-rosedale2", "kind": "Video", "video_id": "-9gl_HlsatI", "keywords": "", "youtube_id": "-9gl_HlsatI", "readable_id": "kauffman-philip-rosedale2"}, "MokI3Fi8jpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MokI3Fi8jpc.mp4/MokI3Fi8jpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MokI3Fi8jpc.mp4/MokI3Fi8jpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MokI3Fi8jpc.m3u8/MokI3Fi8jpc.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/describing-the-meaning-of-percent-2/", "duration": 142, "id": "MokI3Fi8jpc", "title": "The meaning of percent over 100", "format": "mp4", "description": "How does our meaning of percent (per \"hundred\") translate when we need to understand a percent OVER a hundred?", "slug": "describing-the-meaning-of-percent-2", "kind": "Video", "video_id": "MokI3Fi8jpc", "keywords": "U05_L1_T1_we2, Describing, the, Meaning, of, Percent, CC_6_RP_3_c", "youtube_id": "MokI3Fi8jpc", "readable_id": "describing-the-meaning-of-percent-2"}, "aSY8XPGChAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aSY8XPGChAU.mp4/aSY8XPGChAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aSY8XPGChAU.mp4/aSY8XPGChAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aSY8XPGChAU.m3u8/aSY8XPGChAU.m3u8"}, "duration": 627, "id": "aSY8XPGChAU", "title": "Keynesian cross and the multiplier", "format": "mp4", "description": "More on shifting aggregate planned expenditures. Connecting to the multiplier", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/keynesian-cross-tutorial/keynesian-cross-and-the-multiplier/", "slug": "keynesian-cross-and-the-multiplier", "kind": "Video", "video_id": "aSY8XPGChAU", "keywords": "macroeconomics, mps, mpc, marginal, propensity, save, consume", "youtube_id": "aSY8XPGChAU", "readable_id": "keynesian-cross-and-the-multiplier"}, "TDHI-aieyfk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TDHI-aieyfk.mp4/TDHI-aieyfk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TDHI-aieyfk.mp4/TDHI-aieyfk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TDHI-aieyfk.m3u8/TDHI-aieyfk.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/derivatives-of-sin-x-cos-x-tan-x-e-x-and-ln-x/", "duration": 224, "id": "TDHI-aieyfk", "title": "Derivatives of sin x, cos x, tan x, e^x and ln x", "format": "mp4", "description": "", "slug": "derivatives-of-sin-x-cos-x-tan-x-e-x-and-ln-x", "kind": "Video", "video_id": "TDHI-aieyfk", "keywords": "", "youtube_id": "TDHI-aieyfk", "readable_id": "derivatives-of-sin-x-cos-x-tan-x-e-x-and-ln-x"}, "XtJwkIacpi8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XtJwkIacpi8.mp4/XtJwkIacpi8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XtJwkIacpi8.mp4/XtJwkIacpi8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XtJwkIacpi8.m3u8/XtJwkIacpi8.m3u8"}, "path": "khan/math/basic-geo/basic-geo-pythagorean-topic/basic-geo-pythagorean-theorem/soccer-thiago/", "duration": 725, "id": "XtJwkIacpi8", "title": "Thiago asks: How much time does a goalkeeper have to react to a penalty kick?", "format": "mp4", "description": "", "slug": "soccer-thiago", "kind": "Video", "video_id": "XtJwkIacpi8", "keywords": "Pythagorean theorem", "youtube_id": "XtJwkIacpi8", "readable_id": "soccer-thiago"}, "b9NZvAhvIwQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b9NZvAhvIwQ.mp4/b9NZvAhvIwQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b9NZvAhvIwQ.mp4/b9NZvAhvIwQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b9NZvAhvIwQ.m3u8/b9NZvAhvIwQ.m3u8"}, "duration": 506, "id": "b9NZvAhvIwQ", "title": "Synthesis of substituted benzene rings II", "format": "mp4", "description": "Synthesis practice problems", "path": "khan/science/organic-chemistry/aromatic-compounds/other-reactions-and-synthesis/synthesis-of-substituted-benzene-rings-ii/", "slug": "synthesis-of-substituted-benzene-rings-ii", "kind": "Video", "video_id": "b9NZvAhvIwQ", "keywords": "", "youtube_id": "b9NZvAhvIwQ", "readable_id": "synthesis-of-substituted-benzene-rings-ii"}, "3oG69aK0McM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3oG69aK0McM.mp4/3oG69aK0McM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3oG69aK0McM.mp4/3oG69aK0McM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3oG69aK0McM.m3u8/3oG69aK0McM.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/locke-personal-identity-part-3/", "duration": 611, "id": "3oG69aK0McM", "title": "Early Modern: Locke on Personal Identity part 3", "format": "mp4", "description": "Part 3\u00a0of 3. What makes you the same person as the little kid growing up a number of years ago? \u00a0Is the identity of a person tied to the persistence of a body or a soul or something else entirely? \u00a0Can we even give\u00a0any explanation at all of the persistence of a person? \u00a0Michael Della Rocca (Yale University) explores some of the puzzles and problems of personal identity that arise from the revolutionary work of the philosopher John Locke.\n\nSpeaker: Dr. Michael Della Rocca,\u00a0Andrew Downey Orrick Professor of Philosophy, Yale University\u00a0\n", "slug": "locke-personal-identity-part-3", "kind": "Video", "video_id": "3oG69aK0McM", "keywords": "", "youtube_id": "3oG69aK0McM", "readable_id": "locke-personal-identity-part-3"}, "96ZEmUbnuU8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/96ZEmUbnuU8.mp4/96ZEmUbnuU8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/96ZEmUbnuU8.mp4/96ZEmUbnuU8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/96ZEmUbnuU8.m3u8/96ZEmUbnuU8.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/writing-proportions/", "duration": 351, "id": "96ZEmUbnuU8", "title": "Writing proportions", "format": "mp4", "description": "As opposed to actually solving ratio word problems, in this video we'll practice just setting up the equations to solve them. Watch as we set up proportions to get at the answers.", "slug": "writing-proportions", "kind": "Video", "video_id": "96ZEmUbnuU8", "keywords": "algebra, math, proportions, ratios", "youtube_id": "96ZEmUbnuU8", "readable_id": "writing-proportions"}, "jnxA293u8cs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jnxA293u8cs.mp4/jnxA293u8cs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jnxA293u8cs.mp4/jnxA293u8cs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jnxA293u8cs.m3u8/jnxA293u8cs.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/cranach-altdorfer/lucas-cranach-the-elder-judith-with-the-head-of-holofernes-c-1530/", "duration": 256, "id": "jnxA293u8cs", "title": "Cranach the Elder, Judith with the Head of Holofernes", "format": "mp4", "description": "Lucas Cranach the Elder, Judith with the Head of Holofernes, c. 1530 (Kunsthistorisches Museum, Vienna)", "slug": "lucas-cranach-the-elder-judith-with-the-head-of-holofernes-c-1530", "kind": "Video", "video_id": "jnxA293u8cs", "keywords": "Cranach, Judith, GAP, Holofernes, Khan Academy, smarthistory, art history, Google Art Project, OER, painting, Lucas Cranach the Elder, 1530, Kunsthistorisches Museum, Vienna", "youtube_id": "jnxA293u8cs", "readable_id": "lucas-cranach-the-elder-judith-with-the-head-of-holofernes-c-1530"}, "XUmB0reCB-U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XUmB0reCB-U.mp4/XUmB0reCB-U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XUmB0reCB-U.mp4/XUmB0reCB-U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XUmB0reCB-U.m3u8/XUmB0reCB-U.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/half-life-of-a-second-order-reaction/", "duration": 429, "id": "XUmB0reCB-U", "title": "Half-life of a second-order reaction", "format": "mp4", "description": "", "slug": "half-life-of-a-second-order-reaction", "kind": "Video", "video_id": "XUmB0reCB-U", "keywords": "", "youtube_id": "XUmB0reCB-U", "readable_id": "half-life-of-a-second-order-reaction"}, "PASSD2OcU0c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PASSD2OcU0c.mp4/PASSD2OcU0c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PASSD2OcU0c.mp4/PASSD2OcU0c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PASSD2OcU0c.m3u8/PASSD2OcU0c.m3u8"}, "duration": 597, "id": "PASSD2OcU0c", "title": "Advanced ratio problems", "format": "mp4", "description": "More advanced ratio problems", "path": "khan/math/algebra/ratio-proportion-topic/advanced-ratios/advanced-ratio-problems/", "slug": "advanced-ratio-problems", "kind": "Video", "video_id": "PASSD2OcU0c", "keywords": "Ratios, Algebra, Math, CC_7_RP_3", "youtube_id": "PASSD2OcU0c", "readable_id": "advanced-ratio-problems"}, "NYEVx5QFavU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NYEVx5QFavU.mp4/NYEVx5QFavU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NYEVx5QFavU.mp4/NYEVx5QFavU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NYEVx5QFavU.m3u8/NYEVx5QFavU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-4-12/", "duration": 278, "id": "NYEVx5QFavU", "title": "12 Triangle angles", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-12", "kind": "Video", "video_id": "NYEVx5QFavU", "keywords": "", "youtube_id": "NYEVx5QFavU", "readable_id": "sat-2008-may-4-12"}, "7qaxUhbiQUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7qaxUhbiQUc.mp4/7qaxUhbiQUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7qaxUhbiQUc.mp4/7qaxUhbiQUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7qaxUhbiQUc.m3u8/7qaxUhbiQUc.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/pierre-auguste-renoir-the-large-bathers-1884-87/", "duration": 292, "id": "7qaxUhbiQUc", "title": "Renoir, The Large Bathers", "format": "mp4", "description": "Pierre-Auguste Renoir, The Large Bathers, 1884-87, oil on canvas, 46-3/8 x 67-1/4 inches / 117.8 x 170.8 cm (Philadelphia Museum of Art)", "slug": "pierre-auguste-renoir-the-large-bathers-1884-87", "kind": "Video", "video_id": "7qaxUhbiQUc", "keywords": "Pierre-Auguste Renoir, Renoir, Large Bathers, Bathers, 1884, 1887, Philadelphia Museum of Art, Philadelphia, Impressionism, Crisis of Impressionism, painting, French, art, art history, Khan Academy, Smarthistory, Google Art Project, OER", "youtube_id": "7qaxUhbiQUc", "readable_id": "pierre-auguste-renoir-the-large-bathers-1884-87"}, "gsu4gjrFApA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gsu4gjrFApA.mp4/gsu4gjrFApA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gsu4gjrFApA.mp4/gsu4gjrFApA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gsu4gjrFApA.m3u8/gsu4gjrFApA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/strong-acids-and-strong-bases/", "duration": 752, "id": "gsu4gjrFApA", "title": "Strong acids and strong bases", "format": "mp4", "description": "", "slug": "strong-acids-and-strong-bases", "kind": "Video", "video_id": "gsu4gjrFApA", "keywords": "", "youtube_id": "gsu4gjrFApA", "readable_id": "strong-acids-and-strong-bases"}, "7r1yZxhGOcc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7r1yZxhGOcc.mp4/7r1yZxhGOcc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7r1yZxhGOcc.mp4/7r1yZxhGOcc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7r1yZxhGOcc.m3u8/7r1yZxhGOcc.m3u8"}, "duration": 170, "id": "7r1yZxhGOcc", "title": "\"Gratitude\" with J. Kenneth Moore", "format": "mp4", "description": "Met curator J. Kenneth Moore on gratitude in Goto Teijo\u2019s Koto.\n\nThis rare acquisition is a tour de force of Japanese decorative and musical arts that is currently unparalleled in this country. Although a strong tradition existed before then, the foundation for modern Japanese koto music were formed during the seventeenth century. This koto, with it copious inlay and remarkable metalwork by Teijo, ninth master and perhaps most skilled member of the famous Goto family of metalwork artists, documents this important musical development. It also reflects the status of its owner and the koto's role as a symbol of Japan. All but the instrument's playing areas are exceptionally decorated. Gold crane medallions set against a finely carved diaper pattern adorn the sides, which are framed in a virtuosic rendering of inlaid woods, horn, ivory, and wire that extends onto both the upper and lower surfaces. The ends, of tagayasan and shitan wood, are embellished with geometric inlay patterns and metalwork lions and flowers in ivory frames. The elaborate black lacquered outer case, dating from the early nineteenth century, is decorated with gold makai-e cranes (symbol of the Karasumaru family) and geese, and its interior is lined with gold foil patterned with flying geese. The cloth wrap is composed of two silk embroidered fabrics of eighteenth- and nineteenth-century origin.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "path": "gratitude/", "slug": "gratitude", "kind": "Video", "video_id": "7r1yZxhGOcc", "keywords": "calm, family, metal, music, musical instrument, nature, ornate, wood, Asia", "youtube_id": "7r1yZxhGOcc", "readable_id": "gratitude"}, "iUotrPxq2pU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iUotrPxq2pU.mp4/iUotrPxq2pU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iUotrPxq2pU.mp4/iUotrPxq2pU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iUotrPxq2pU.m3u8/iUotrPxq2pU.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/babylonian/towers-of-babel/", "duration": 269, "id": "iUotrPxq2pU", "title": "Towers of Babel", "format": "mp4", "description": "British Museum curator Irving Finkel \u00a9 Trustees of the British Museum", "slug": "towers-of-babel", "kind": "Video", "video_id": "iUotrPxq2pU", "keywords": "British Museum", "youtube_id": "iUotrPxq2pU", "readable_id": "towers-of-babel"}, "AtbZZiSLemQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AtbZZiSLemQ.mp4/AtbZZiSLemQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AtbZZiSLemQ.mp4/AtbZZiSLemQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AtbZZiSLemQ.m3u8/AtbZZiSLemQ.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/limit-comparison-test-cor/", "duration": 413, "id": "AtbZZiSLemQ", "title": "Limit comparison test", "format": "mp4", "description": "", "slug": "limit-comparison-test-cor", "kind": "Video", "video_id": "AtbZZiSLemQ", "keywords": "", "youtube_id": "AtbZZiSLemQ", "readable_id": "limit-comparison-test-cor"}, "02gVmoObrjM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/02gVmoObrjM.mp4/02gVmoObrjM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/02gVmoObrjM.mp4/02gVmoObrjM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/02gVmoObrjM.m3u8/02gVmoObrjM.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_proof/stokes-theorem-proof-part-6/", "duration": 327, "id": "02gVmoObrjM", "title": "Stokes' theorem proof part 6", "format": "mp4", "description": "More manipulating the integrals...", "slug": "stokes-theorem-proof-part-6", "kind": "Video", "video_id": "02gVmoObrjM", "keywords": "", "youtube_id": "02gVmoObrjM", "readable_id": "stokes-theorem-proof-part-6"}, "h3lMANILkw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h3lMANILkw0.mp4/h3lMANILkw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h3lMANILkw0.mp4/h3lMANILkw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h3lMANILkw0.m3u8/h3lMANILkw0.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-2-a-bank-s-income-statement/", "duration": 719, "id": "h3lMANILkw0", "title": "Banking 2: A bank's income statement", "format": "mp4", "description": "Introduction to the income statement of a bank (and to income statements in general).", "slug": "banking-2-a-bank-s-income-statement", "kind": "Video", "video_id": "h3lMANILkw0", "keywords": "income, statement, balance, sheet, bank, credit, debt, savings, deposits", "youtube_id": "h3lMANILkw0", "readable_id": "banking-2-a-bank-s-income-statement"}, "I-Or4bUAIfo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I-Or4bUAIfo.mp4/I-Or4bUAIfo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I-Or4bUAIfo.mp4/I-Or4bUAIfo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I-Or4bUAIfo.m3u8/I-Or4bUAIfo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/atomic-number-mass-number-and-isotopes/", "duration": 584, "id": "I-Or4bUAIfo", "title": "Atomic number, mass number, and isotopes", "format": "mp4", "description": "\nHow to use the atomic number and the mass number to represent different isotopes", "slug": "atomic-number-mass-number-and-isotopes", "kind": "Video", "video_id": "I-Or4bUAIfo", "keywords": "", "youtube_id": "I-Or4bUAIfo", "readable_id": "atomic-number-mass-number-and-isotopes"}, "jk3wNadYA7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jk3wNadYA7k.mp4/jk3wNadYA7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jk3wNadYA7k.mp4/jk3wNadYA7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jk3wNadYA7k.m3u8/jk3wNadYA7k.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/ambrogio-lorenzetti-s-palazzo-pubblico-frescos-allegory-and-effect-of-good-and-bad-government/", "duration": 618, "id": "jk3wNadYA7k", "title": "Ambrogio Lorenzetti, Palazzo Pubblico frescos: Allegory and effect of good and bad government", "format": "mp4", "description": "Ambrogio Lorenzetti, Allegory of Good Government, Effects of Good Government in the City and the Country, and Allegory and Effects of Bad Government in the City and the Country, Siena c. 1337-40, fresco, Sala della Pace (Hall of Peace) also know as the Sala dei Nove (the Hall of the Nine), 7.7 x 14.4 meters (room), Palazzo Pubblico, Siena\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\nFor more information visit: http://smarthistory.khanacademy.org/the-allegories-and-effects-of-good-and-bad-government.html", "slug": "ambrogio-lorenzetti-s-palazzo-pubblico-frescos-allegory-and-effect-of-good-and-bad-government", "kind": "Video", "video_id": "jk3wNadYA7k", "keywords": "", "youtube_id": "jk3wNadYA7k", "readable_id": "ambrogio-lorenzetti-s-palazzo-pubblico-frescos-allegory-and-effect-of-good-and-bad-government"}, "m7qXvQvWlY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m7qXvQvWlY4.mp4/m7qXvQvWlY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m7qXvQvWlY4.mp4/m7qXvQvWlY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m7qXvQvWlY4.m3u8/m7qXvQvWlY4.m3u8"}, "duration": 277, "id": "m7qXvQvWlY4", "title": "Constant unit elasticity", "format": "mp4", "description": "What a demand curve with constant unit elasticity would look like", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/constant-unit-elasticity/", "slug": "constant-unit-elasticity", "kind": "Video", "video_id": "m7qXvQvWlY4", "keywords": "elasticity, demand", "youtube_id": "m7qXvQvWlY4", "readable_id": "constant-unit-elasticity"}, "uWJRx-5n1yw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uWJRx-5n1yw.mp4/uWJRx-5n1yw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uWJRx-5n1yw.mp4/uWJRx-5n1yw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uWJRx-5n1yw.m3u8/uWJRx-5n1yw.m3u8"}, "duration": 695, "id": "uWJRx-5n1yw", "title": "Formation of alcohols using hydride reducing agents", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/formation-of-alcohols-using-hydride-reducing-agents/", "slug": "formation-of-alcohols-using-hydride-reducing-agents", "kind": "Video", "video_id": "uWJRx-5n1yw", "keywords": "", "youtube_id": "uWJRx-5n1yw", "readable_id": "formation-of-alcohols-using-hydride-reducing-agents"}, "iqeGTtyzQ1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iqeGTtyzQ1I.mp4/iqeGTtyzQ1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iqeGTtyzQ1I.mp4/iqeGTtyzQ1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iqeGTtyzQ1I.m3u8/iqeGTtyzQ1I.m3u8"}, "duration": 342, "id": "iqeGTtyzQ1I", "title": "Triangle angle example 3", "format": "mp4", "description": "Multiple ways to solve for the angles of multiple triangles", "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/triangle-angle-example-3/", "slug": "triangle-angle-example-3", "kind": "Video", "video_id": "iqeGTtyzQ1I", "keywords": "Triangle, Angle, Example, 3", "youtube_id": "iqeGTtyzQ1I", "readable_id": "triangle-angle-example-3"}, "QNB9hnRfgdk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QNB9hnRfgdk.mp4/QNB9hnRfgdk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QNB9hnRfgdk.mp4/QNB9hnRfgdk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QNB9hnRfgdk.m3u8/QNB9hnRfgdk.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/marc-ecko/kauffman-marc-ecko-2/", "duration": 196, "id": "QNB9hnRfgdk", "title": "Marc Ecko - Failures are lessons for future success", "format": "mp4", "description": "Marc Ecko, Founder of Ecko Unlimited, tells a story about how being an entrepreneur is always a learning opportunity, and how understanding your ? failure can lead to success.\u00a0", "slug": "kauffman-marc-ecko-2", "kind": "Video", "video_id": "QNB9hnRfgdk", "keywords": "", "youtube_id": "QNB9hnRfgdk", "readable_id": "kauffman-marc-ecko-2"}, "XdzcU5JbVcA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XdzcU5JbVcA.mp4/XdzcU5JbVcA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XdzcU5JbVcA.mp4/XdzcU5JbVcA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XdzcU5JbVcA.m3u8/XdzcU5JbVcA.m3u8"}, "duration": 594, "id": "XdzcU5JbVcA", "title": "Disc method rotation around horizontal line", "format": "mp4", "description": "Solid of revolution constructing by rotating around line that is not an axis", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/disc-method-rotation-around-horizontal-line/", "slug": "disc-method-rotation-around-horizontal-line", "kind": "Video", "video_id": "XdzcU5JbVcA", "keywords": "", "youtube_id": "XdzcU5JbVcA", "readable_id": "disc-method-rotation-around-horizontal-line"}, "Su4DKLbK8mA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Su4DKLbK8mA.mp4/Su4DKLbK8mA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Su4DKLbK8mA.mp4/Su4DKLbK8mA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Su4DKLbK8mA.m3u8/Su4DKLbK8mA.m3u8"}, "duration": 242, "id": "Su4DKLbK8mA", "title": "Equivalent fractions visually and on number line", "format": "mp4", "description": "Use number lines and fraction models to show equivalent fractions.", "path": "equivalent-fractions-visually-and-on-number-line/", "slug": "equivalent-fractions-visually-and-on-number-line", "kind": "Video", "video_id": "Su4DKLbK8mA", "keywords": "", "youtube_id": "Su4DKLbK8mA", "readable_id": "equivalent-fractions-visually-and-on-number-line"}, "qSkpZswoZTc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qSkpZswoZTc.mp4/qSkpZswoZTc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qSkpZswoZTc.mp4/qSkpZswoZTc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qSkpZswoZTc.m3u8/qSkpZswoZTc.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-sub-word-problem-within-10/subtraction-word-problems-within-10/", "duration": 63, "id": "qSkpZswoZTc", "title": "Subtraction word problems within 10", "format": "mp4", "description": "Learn how to solve word problems by subtracting small numbers (numbers 10 or less).", "slug": "subtraction-word-problems-within-10", "kind": "Video", "video_id": "qSkpZswoZTc", "keywords": "", "youtube_id": "qSkpZswoZTc", "readable_id": "subtraction-word-problems-within-10"}, "5coSaLCWzhA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5coSaLCWzhA.mp4/5coSaLCWzhA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5coSaLCWzhA.mp4/5coSaLCWzhA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5coSaLCWzhA.m3u8/5coSaLCWzhA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/beginners-guide-greece/sprinters/", "duration": 66, "id": "5coSaLCWzhA", "title": "Sprinter on a vase from Rhodes and a bronze running girl", "format": "mp4", "description": "The greatest Olympic runner of all was Leonidas of Rhodes who won all three running events at each of the four successive Olympiads between 164 and 152 BC. Women competed in foot races at Olympia, but these were not part of the Olympic Games.\u00a0\u00a9 Trustees of the British Museum", "slug": "sprinters", "kind": "Video", "video_id": "5coSaLCWzhA", "keywords": "olympics, ancient greece,", "youtube_id": "5coSaLCWzhA", "readable_id": "sprinters"}, "FNVvQ788wzk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FNVvQ788wzk.mp4/FNVvQ788wzk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FNVvQ788wzk.mp4/FNVvQ788wzk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FNVvQ788wzk.m3u8/FNVvQ788wzk.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/coagulation-cascade/", "duration": 879, "id": "FNVvQ788wzk", "title": "Coagulation cascade", "format": "mp4", "description": "", "slug": "coagulation-cascade", "kind": "Video", "video_id": "FNVvQ788wzk", "keywords": "", "youtube_id": "FNVvQ788wzk", "readable_id": "coagulation-cascade"}, "d7rAlcNHDUI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d7rAlcNHDUI.mp4/d7rAlcNHDUI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d7rAlcNHDUI.mp4/d7rAlcNHDUI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d7rAlcNHDUI.m3u8/d7rAlcNHDUI.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/rates_tutorial/finding-unit-prices/", "duration": 121, "id": "d7rAlcNHDUI", "title": "Solving unit price problem", "format": "mp4", "description": "Let's start by thinking about what percent really means. Once you understand this, other pieces will begin to fall into place.", "slug": "finding-unit-prices", "kind": "Video", "video_id": "d7rAlcNHDUI", "keywords": "U04_L1_T1_we4, Finding, Unit, Prices, CC_6_RP_2, CC_6_RP_3", "youtube_id": "d7rAlcNHDUI", "readable_id": "finding-unit-prices"}, "c-szOdzJiWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c-szOdzJiWM.mp4/c-szOdzJiWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c-szOdzJiWM.mp4/c-szOdzJiWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c-szOdzJiWM.m3u8/c-szOdzJiWM.m3u8"}, "path": "khan/computing/computer-programming/html-css-js/html-css-js-intro/welcome-to-making-webpages-interactive/", "duration": 111, "id": "c-szOdzJiWM", "title": "Welcome to making webpages interactive", "format": "mp4", "description": "", "slug": "welcome-to-making-webpages-interactive", "kind": "Video", "video_id": "c-szOdzJiWM", "keywords": "", "youtube_id": "c-szOdzJiWM", "readable_id": "welcome-to-making-webpages-interactive"}, "MsqqpO9R5Hc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MsqqpO9R5Hc.mp4/MsqqpO9R5Hc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MsqqpO9R5Hc.mp4/MsqqpO9R5Hc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MsqqpO9R5Hc.m3u8/MsqqpO9R5Hc.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/diffie-hellman-key-exchange-part-1/", "duration": 272, "id": "MsqqpO9R5Hc", "title": "Public key cryptography: What is it?", "format": "mp4", "description": "Why do we need public key cryptography?", "slug": "diffie-hellman-key-exchange-part-1", "kind": "Video", "video_id": "MsqqpO9R5Hc", "keywords": "diffie-hellman, public key, cryptography", "youtube_id": "MsqqpO9R5Hc", "readable_id": "diffie-hellman-key-exchange-part-1"}, "gEGKvx1wlFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gEGKvx1wlFg.mp4/gEGKvx1wlFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gEGKvx1wlFg.mp4/gEGKvx1wlFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gEGKvx1wlFg.m3u8/gEGKvx1wlFg.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-equals-sign/equal-sign/", "duration": 296, "id": "gEGKvx1wlFg", "title": "Equal sign", "format": "mp4", "description": "Learn what the equals sign really means.", "slug": "equal-sign", "kind": "Video", "video_id": "gEGKvx1wlFg", "keywords": "", "youtube_id": "gEGKvx1wlFg", "readable_id": "equal-sign"}, "9B8voIQl8BI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9B8voIQl8BI.mp4/9B8voIQl8BI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9B8voIQl8BI.mp4/9B8voIQl8BI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9B8voIQl8BI.m3u8/9B8voIQl8BI.m3u8"}, "path": "khan/college-admissions/wrapping-up/post-college-acceptance/making-the-transition/", "duration": 84, "id": "9B8voIQl8BI", "title": "Making the college transition", "format": "mp4", "description": "", "slug": "making-the-transition", "kind": "Video", "video_id": "9B8voIQl8BI", "keywords": "", "youtube_id": "9B8voIQl8BI", "readable_id": "making-the-transition"}, "aKRDvSZ-igA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aKRDvSZ-igA.mp4/aKRDvSZ-igA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aKRDvSZ-igA.mp4/aKRDvSZ-igA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aKRDvSZ-igA.m3u8/aKRDvSZ-igA.m3u8"}, "duration": 807, "id": "aKRDvSZ-igA", "title": "Maxwell's demon", "format": "mp4", "description": "Maxwell's Demon: A thought experiment that seems to defy the 2nd Law of Thermodynamics", "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/maxwell-s-demon/", "slug": "maxwell-s-demon", "kind": "Video", "video_id": "aKRDvSZ-igA", "keywords": "thermodynamics, carnot, entropy, maxwell, demon", "youtube_id": "aKRDvSZ-igA", "readable_id": "maxwell-s-demon"}, "462Y898PVn8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/462Y898PVn8.mp4/462Y898PVn8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/462Y898PVn8.mp4/462Y898PVn8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/462Y898PVn8.m3u8/462Y898PVn8.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/locke-personal-identity-part-1/", "duration": 692, "id": "462Y898PVn8", "title": "Early Modern: Locke on Personal Identity part 1", "format": "mp4", "description": "Part 1 of 3. What makes you the same person as the little kid growing up a number of years ago? \u00a0Is the identity of a person tied to the persistence of a body or a soul or something else entirely? \u00a0Can we even give\u00a0any explanation at all of the persistence of a person? \u00a0Michael Della Rocca (Yale University) explores some of the puzzles and problems of personal identity that arise from the revolutionary work of the philosopher John Locke.\n\nSpeaker: Dr. Michael Della Rocca,\u00a0Andrew Downey Orrick Professor of Philosophy, Yale University\u00a0\n", "slug": "locke-personal-identity-part-1", "kind": "Video", "video_id": "462Y898PVn8", "keywords": "", "youtube_id": "462Y898PVn8", "readable_id": "locke-personal-identity-part-1"}, "sILo6xYbsc0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sILo6xYbsc0.mp4/sILo6xYbsc0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sILo6xYbsc0.mp4/sILo6xYbsc0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sILo6xYbsc0.m3u8/sILo6xYbsc0.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/social-perception-primacy-recency/", "duration": 291, "id": "sILo6xYbsc0", "title": "Social perception - Primacy recency", "format": "mp4", "description": "", "slug": "social-perception-primacy-recency", "kind": "Video", "video_id": "sILo6xYbsc0", "keywords": "", "youtube_id": "sILo6xYbsc0", "readable_id": "social-perception-primacy-recency"}, "k8EfLFvUI5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k8EfLFvUI5U.mp4/k8EfLFvUI5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k8EfLFvUI5U.mp4/k8EfLFvUI5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k8EfLFvUI5U.m3u8/k8EfLFvUI5U.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-equation-of-a-line/equation-of-a-line-hairier-example/", "duration": 204, "id": "k8EfLFvUI5U", "title": "Equation of a line from fractional slope and point", "format": "mp4", "description": "u13 l2 t2 we INT Equation of a Line hairier example", "slug": "equation-of-a-line-hairier-example", "kind": "Video", "video_id": "k8EfLFvUI5U", "keywords": "u13, l2, t2, we, INT, Equation, of, Line, hairier, example", "youtube_id": "k8EfLFvUI5U", "readable_id": "equation-of-a-line-hairier-example"}, "swQgTqphZzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/swQgTqphZzE.mp4/swQgTqphZzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/swQgTqphZzE.mp4/swQgTqphZzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/swQgTqphZzE.m3u8/swQgTqphZzE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pertussis/pertussis-vaccine/", "duration": 305, "id": "swQgTqphZzE", "title": "Pertussis vaccine", "format": "mp4", "description": "", "slug": "pertussis-vaccine", "kind": "Video", "video_id": "swQgTqphZzE", "keywords": "", "youtube_id": "swQgTqphZzE", "readable_id": "pertussis-vaccine"}, "H6ZNLD1AeM8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H6ZNLD1AeM8.mp4/H6ZNLD1AeM8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H6ZNLD1AeM8.mp4/H6ZNLD1AeM8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H6ZNLD1AeM8.m3u8/H6ZNLD1AeM8.m3u8"}, "duration": 378, "id": "H6ZNLD1AeM8", "title": "Slope of a secant line example 3", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/secant-line-slope-tangent/slope-of-a-secant-line-example-3/", "slug": "slope-of-a-secant-line-example-3", "kind": "Video", "video_id": "H6ZNLD1AeM8", "keywords": "", "youtube_id": "H6ZNLD1AeM8", "readable_id": "slope-of-a-secant-line-example-3"}, "M_5KYncYNyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M_5KYncYNyc.mp4/M_5KYncYNyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M_5KYncYNyc.mp4/M_5KYncYNyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M_5KYncYNyc.m3u8/M_5KYncYNyc.m3u8"}, "duration": 844, "id": "M_5KYncYNyc", "title": "Efficiency of a Carnot engine", "format": "mp4", "description": "Definition of efficiency for a heat engine. Efficiency of a Carnot Engine.", "path": "khan/science/physics/thermodynamics/efficiency-of-a-carnot-engine/", "slug": "efficiency-of-a-carnot-engine", "kind": "Video", "video_id": "M_5KYncYNyc", "keywords": "thermodynamics, carnot, entropy", "youtube_id": "M_5KYncYNyc", "readable_id": "efficiency-of-a-carnot-engine"}, "Rcb7ZUTOQ1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rcb7ZUTOQ1I.mp4/Rcb7ZUTOQ1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rcb7ZUTOQ1I.mp4/Rcb7ZUTOQ1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rcb7ZUTOQ1I.m3u8/Rcb7ZUTOQ1I.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-area-circumference/circumference-from-area/", "duration": 113, "id": "Rcb7ZUTOQ1I", "title": "Circumference of a circle", "format": "mp4", "description": "Here we find the circumference, the distance around a circle, given the area. We're building on our knowledge of the parts of circle.", "slug": "circumference-from-area", "kind": "Video", "video_id": "Rcb7ZUTOQ1I", "keywords": "", "youtube_id": "Rcb7ZUTOQ1I", "readable_id": "circumference-from-area"}, "sw2p2tUIFpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sw2p2tUIFpc.mp4/sw2p2tUIFpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sw2p2tUIFpc.mp4/sw2p2tUIFpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sw2p2tUIFpc.m3u8/sw2p2tUIFpc.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/integrals-trig-substitution-3-long-problem/", "duration": 1072, "id": "sw2p2tUIFpc", "title": "Integrals: Trig substitution 3 (long problem)", "format": "mp4", "description": "Example using trig substitution (and trig identities) to solve an integral.", "slug": "integrals-trig-substitution-3-long-problem", "kind": "Video", "video_id": "sw2p2tUIFpc", "keywords": "trig, implicit, derivative, calculus, substitution", "youtube_id": "sw2p2tUIFpc", "readable_id": "integrals-trig-substitution-3-long-problem"}, "RbBQN0Wt_wY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RbBQN0Wt_wY.mp4/RbBQN0Wt_wY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RbBQN0Wt_wY.mp4/RbBQN0Wt_wY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RbBQN0Wt_wY.m3u8/RbBQN0Wt_wY.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/giotto-arena-scrovegni-chapel-part-3-of-4/", "duration": 342, "id": "RbBQN0Wt_wY", "title": "Giotto, Arena (Scrovegni) Chapel (part 3)", "format": "mp4", "description": "Part 3: The Lamentation from Giotto's Arena (Scrovegni) Chapel, Padua, c. 1305\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "giotto-arena-scrovegni-chapel-part-3-of-4", "kind": "Video", "video_id": "RbBQN0Wt_wY", "keywords": "Giotto, Scrovegni, Arena, Chapel, Lamentation, Mourning, Narrative, art, painting, fresco, Italian, Italy, Medieval, Proto-Renaissance", "youtube_id": "RbBQN0Wt_wY", "readable_id": "giotto-arena-scrovegni-chapel-part-3-of-4"}, "a9QtIfPIQl4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a9QtIfPIQl4.mp4/a9QtIfPIQl4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a9QtIfPIQl4.mp4/a9QtIfPIQl4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a9QtIfPIQl4.m3u8/a9QtIfPIQl4.m3u8"}, "path": "khan/humanities/history/euro-hist/china-early-1900s/overview-of-chinese-history-1911-1949/", "duration": 670, "id": "a9QtIfPIQl4", "title": "Overview of Chinese history 1911 - 1949", "format": "mp4", "description": "", "slug": "overview-of-chinese-history-1911-1949", "kind": "Video", "video_id": "a9QtIfPIQl4", "keywords": "", "youtube_id": "a9QtIfPIQl4", "readable_id": "overview-of-chinese-history-1911-1949"}, "RTE_aitAPGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RTE_aitAPGw.mp4/RTE_aitAPGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RTE_aitAPGw.mp4/RTE_aitAPGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RTE_aitAPGw.m3u8/RTE_aitAPGw.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/comparing-colleges-diversity/", "duration": 91, "id": "RTE_aitAPGw", "title": "Comparing colleges based on diversity", "format": "mp4", "description": "Filter by percentage of minority students using College Board's college search tool", "slug": "comparing-colleges-diversity", "kind": "Video", "video_id": "RTE_aitAPGw", "keywords": "", "youtube_id": "RTE_aitAPGw", "readable_id": "comparing-colleges-diversity"}, "At8jOJ_rpzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/At8jOJ_rpzA.mp4/At8jOJ_rpzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/At8jOJ_rpzA.mp4/At8jOJ_rpzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/At8jOJ_rpzA.m3u8/At8jOJ_rpzA.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/arterial-elastance-ea-and-preload/", "duration": 463, "id": "At8jOJ_rpzA", "title": "Arterial elastance (Ea) and preload", "format": "mp4", "description": "Understand how Ea is affected by changes in preload, and in turn, how the PV loop can shift. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "arterial-elastance-ea-and-preload", "kind": "Video", "video_id": "At8jOJ_rpzA", "keywords": "", "youtube_id": "At8jOJ_rpzA", "readable_id": "arterial-elastance-ea-and-preload"}, "B0R3MJOrST0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B0R3MJOrST0.mp4/B0R3MJOrST0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B0R3MJOrST0.mp4/B0R3MJOrST0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B0R3MJOrST0.m3u8/B0R3MJOrST0.m3u8"}, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-interpreting-angles/recognizing-angles-examples/", "duration": 135, "id": "B0R3MJOrST0", "title": "Recognizing angles", "format": "mp4", "description": "Let's do a few example exercises in which you recognize and identify the type of given angle. This is a lot of fun!", "slug": "recognizing-angles-examples", "kind": "Video", "video_id": "B0R3MJOrST0", "keywords": "", "youtube_id": "B0R3MJOrST0", "readable_id": "recognizing-angles-examples"}, "LiOfeSsjrB8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LiOfeSsjrB8.mp4/LiOfeSsjrB8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LiOfeSsjrB8.mp4/LiOfeSsjrB8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LiOfeSsjrB8.m3u8/LiOfeSsjrB8.m3u8"}, "duration": 562, "id": "LiOfeSsjrB8", "title": "Tropomyosin and troponin and their role in regulating muscle contraction", "format": "mp4", "description": "Tropomyosin and troponin and their role in regulating muscle contraction. How calcium ion concentration dictates whether a muscle is contracting or not.", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/tropomyosin-and-troponin-and-their-role-in-regulating-muscle-contraction/", "slug": "tropomyosin-and-troponin-and-their-role-in-regulating-muscle-contraction", "kind": "Video", "video_id": "LiOfeSsjrB8", "keywords": "tropomyosin, troponin, calcium, ion, muscle, contraction", "youtube_id": "LiOfeSsjrB8", "readable_id": "tropomyosin-and-troponin-and-their-role-in-regulating-muscle-contraction"}, "i65NIcnHS9Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i65NIcnHS9Y.mp4/i65NIcnHS9Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i65NIcnHS9Y.mp4/i65NIcnHS9Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i65NIcnHS9Y.m3u8/i65NIcnHS9Y.m3u8"}, "duration": 228, "id": "i65NIcnHS9Y", "title": "Put as insurance", "format": "mp4", "description": "Put as Insurance", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-as-insurance/", "slug": "put-as-insurance", "kind": "Video", "video_id": "i65NIcnHS9Y", "keywords": "Put, as, Insurance", "youtube_id": "i65NIcnHS9Y", "readable_id": "put-as-insurance"}, "IOIx0T4vx8c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IOIx0T4vx8c.mp4/IOIx0T4vx8c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IOIx0T4vx8c.mp4/IOIx0T4vx8c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IOIx0T4vx8c.m3u8/IOIx0T4vx8c.m3u8"}, "path": "khan/humanities/music/music-instruments-orchestra/brass-music/tuba-interview-and-demonstration-with-chris-olka/", "duration": 956, "id": "IOIx0T4vx8c", "title": "Tuba: Interview and demonstration with Chris Olka", "format": "mp4", "description": "", "slug": "tuba-interview-and-demonstration-with-chris-olka", "kind": "Video", "video_id": "IOIx0T4vx8c", "keywords": "", "youtube_id": "IOIx0T4vx8c", "readable_id": "tuba-interview-and-demonstration-with-chris-olka"}, "sWfz6s__os0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sWfz6s__os0.mp4/sWfz6s__os0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sWfz6s__os0.mp4/sWfz6s__os0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sWfz6s__os0.m3u8/sWfz6s__os0.m3u8"}, "duration": 453, "id": "sWfz6s__os0", "title": "Dolley Madison", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-iv/", "slug": "isaacson-with-cheney-khan-academy-lesson-iv", "kind": "Video", "video_id": "sWfz6s__os0", "keywords": "", "youtube_id": "sWfz6s__os0", "readable_id": "isaacson-with-cheney-khan-academy-lesson-iv"}, "YvacYWgygaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YvacYWgygaA.mp4/YvacYWgygaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YvacYWgygaA.mp4/YvacYWgygaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YvacYWgygaA.m3u8/YvacYWgygaA.m3u8"}, "duration": 605, "id": "YvacYWgygaA", "title": "Work/energy problem with friction", "format": "mp4", "description": "A conservation of energy problem where all of the energy is not conserved.", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/work-energy-problem-with-friction/", "slug": "work-energy-problem-with-friction", "kind": "Video", "video_id": "YvacYWgygaA", "keywords": "physics, frictions, nonconservative, force, energy, work, kinetic, potential", "youtube_id": "YvacYWgygaA", "readable_id": "work-energy-problem-with-friction"}, "BMNj7-Okclk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BMNj7-Okclk.mp4/BMNj7-Okclk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BMNj7-Okclk.mp4/BMNj7-Okclk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BMNj7-Okclk.m3u8/BMNj7-Okclk.m3u8"}, "duration": 357, "id": "BMNj7-Okclk", "title": "Examples of accounting for GDP", "format": "mp4", "description": "Thinking about how different types of expenditures would be accounted for in GDP", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/gdp-components-tutorial/examples-of-accounting-for-gdp/", "slug": "examples-of-accounting-for-gdp", "kind": "Video", "video_id": "BMNj7-Okclk", "keywords": "macroeconomics, Gross Domestic Product", "youtube_id": "BMNj7-Okclk", "readable_id": "examples-of-accounting-for-gdp"}, "6WCfVjUTTEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6WCfVjUTTEY.mp4/6WCfVjUTTEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6WCfVjUTTEY.mp4/6WCfVjUTTEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6WCfVjUTTEY.m3u8/6WCfVjUTTEY.m3u8"}, "path": "khan/economics-finance-domain/core-finance/interest-tutorial/present-value/present-value-4-and-discounted-cash-flow/", "duration": 602, "id": "6WCfVjUTTEY", "title": "Present value 4 (and discounted cash flow)", "format": "mp4", "description": "Lets change the discount rates depending on how far out the payments are.", "slug": "present-value-4-and-discounted-cash-flow", "kind": "Video", "video_id": "6WCfVjUTTEY", "keywords": "present, value, DCF, finance", "youtube_id": "6WCfVjUTTEY", "readable_id": "present-value-4-and-discounted-cash-flow"}, "tXlcE_K_C-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tXlcE_K_C-Y.mp4/tXlcE_K_C-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tXlcE_K_C-Y.mp4/tXlcE_K_C-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tXlcE_K_C-Y.m3u8/tXlcE_K_C-Y.m3u8"}, "duration": 422, "id": "tXlcE_K_C-Y", "title": "Comparing theoretical to experimental probabilites", "format": "mp4", "description": "Compare expected probabilities to what\u00a0really\u00a0happens when we run experiments.", "path": "comparing-theoretical-to-experimental-probabilites/", "slug": "comparing-theoretical-to-experimental-probabilites", "kind": "Video", "video_id": "tXlcE_K_C-Y", "keywords": "", "youtube_id": "tXlcE_K_C-Y", "readable_id": "comparing-theoretical-to-experimental-probabilites"}, "6m642-2D3V4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6m642-2D3V4.mp4/6m642-2D3V4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6m642-2D3V4.mp4/6m642-2D3V4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6m642-2D3V4.m3u8/6m642-2D3V4.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-graphing-intercepts/graphing-using-x-and-y-intercepts/", "duration": 238, "id": "6m642-2D3V4", "title": "Graphing using x- and y-intercepts", "format": "mp4", "description": "Graphing using X and Y intercepts", "slug": "graphing-using-x-and-y-intercepts", "kind": "Video", "video_id": "6m642-2D3V4", "keywords": "u13_l1_t2_we2, Graphing, using, and, intercepts, CC_8_EE_7, CC_39336_A-REI_3", "youtube_id": "6m642-2D3V4", "readable_id": "graphing-using-x-and-y-intercepts"}, "Q5IWDhXtsmE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q5IWDhXtsmE.mp4/Q5IWDhXtsmE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q5IWDhXtsmE.mp4/Q5IWDhXtsmE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q5IWDhXtsmE.m3u8/Q5IWDhXtsmE.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/early-classical/kritios-boy/", "duration": 352, "id": "Q5IWDhXtsmE", "title": "Kritios Boy", "format": "mp4", "description": "\nKritios Boy, from the Acropolis, Athens, c. 480 B.C.E., 3' 10\" high (Acropolis Museum, Athens),\u00a0Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "kritios-boy", "kind": "Video", "video_id": "Q5IWDhXtsmE", "keywords": "", "youtube_id": "Q5IWDhXtsmE", "readable_id": "kritios-boy"}, "-rGXAfc643A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-rGXAfc643A.mp4/-rGXAfc643A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-rGXAfc643A.mp4/-rGXAfc643A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-rGXAfc643A.m3u8/-rGXAfc643A.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/beethoven-fifth-symphony/ludwig-van-beethoven-part-1/", "duration": 621, "id": "-rGXAfc643A", "title": "Ludwig van Beethoven: Symphony No. 5, analysis by Gerard Schwarz (part 1)", "format": "mp4", "description": "Watch the full performance here (starting at 10:40) \u00a0", "slug": "ludwig-van-beethoven-part-1", "kind": "Video", "video_id": "-rGXAfc643A", "keywords": "", "youtube_id": "-rGXAfc643A", "readable_id": "ludwig-van-beethoven-part-1"}, "-ij_dFJvMYk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-ij_dFJvMYk.mp4/-ij_dFJvMYk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-ij_dFJvMYk.mp4/-ij_dFJvMYk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-ij_dFJvMYk.m3u8/-ij_dFJvMYk.m3u8"}, "duration": 162, "id": "-ij_dFJvMYk", "title": "Ben Milne - CEO of Dwolla", "format": "mp4", "description": "Ben Milne, CEO of Dwolla, discusses his motivation in founding his company and the excitement of starting something new. Ben advocates for the idea that failure, which can happen in big and small ways, does not have to be your legacy.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/ben-milne/kauffman-ben-milne1/", "slug": "kauffman-ben-milne1", "kind": "Video", "video_id": "-ij_dFJvMYk", "keywords": "", "youtube_id": "-ij_dFJvMYk", "readable_id": "kauffman-ben-milne1"}, "vDaIKB19TvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vDaIKB19TvY.mp4/vDaIKB19TvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vDaIKB19TvY.mp4/vDaIKB19TvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vDaIKB19TvY.m3u8/vDaIKB19TvY.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/why-aren-t-we-using-the-multiplication-sign/", "duration": 298, "id": "vDaIKB19TvY", "title": "Why aren't we using the multiplication sign?", "format": "mp4", "description": "Great question. In algebra, we do indeed avoid using the multiplication sign. We'll explain it for you here.", "slug": "why-aren-t-we-using-the-multiplication-sign", "kind": "Video", "video_id": "vDaIKB19TvY", "keywords": "", "youtube_id": "vDaIKB19TvY", "readable_id": "why-aren-t-we-using-the-multiplication-sign"}, "KsdZsWOsB84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KsdZsWOsB84.mp4/KsdZsWOsB84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KsdZsWOsB84.mp4/KsdZsWOsB84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KsdZsWOsB84.m3u8/KsdZsWOsB84.m3u8"}, "duration": 474, "id": "KsdZsWOsB84", "title": "Protection of alcohols", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/protection-of-alcohols/", "slug": "protection-of-alcohols", "kind": "Video", "video_id": "KsdZsWOsB84", "keywords": "", "youtube_id": "KsdZsWOsB84", "readable_id": "protection-of-alcohols"}, "Goi6mjtB5oE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Goi6mjtB5oE.mp4/Goi6mjtB5oE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Goi6mjtB5oE.mp4/Goi6mjtB5oE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Goi6mjtB5oE.m3u8/Goi6mjtB5oE.m3u8"}, "duration": 290, "id": "Goi6mjtB5oE", "title": "Conservation of paintings", "format": "mp4", "description": "Learn about the work of the Getty Museum's paintings conservation team.\u00a0Love art? Follow us on Google+", "path": "conservation-of-paintings/", "slug": "conservation-of-paintings", "kind": "Video", "video_id": "Goi6mjtB5oE", "keywords": "", "youtube_id": "Goi6mjtB5oE", "readable_id": "conservation-of-paintings"}, "O8vB1eInP_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O8vB1eInP_8.mp4/O8vB1eInP_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O8vB1eInP_8.mp4/O8vB1eInP_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O8vB1eInP_8.m3u8/O8vB1eInP_8.m3u8"}, "duration": 500, "id": "O8vB1eInP_8", "title": "Mean and variance of Bernoulli distribution example", "format": "mp4", "description": "Mean and Variance of Bernoulli Distribution Example", "path": "khan/math/probability/statistics-inferential/margin-of-error/mean-and-variance-of-bernoulli-distribution-example/", "slug": "mean-and-variance-of-bernoulli-distribution-example", "kind": "Video", "video_id": "O8vB1eInP_8", "keywords": "Mean, and, Variance, of, Bernoulli, Distribution, Example", "youtube_id": "O8vB1eInP_8", "readable_id": "mean-and-variance-of-bernoulli-distribution-example"}, "ZhOL4VBF8Ow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZhOL4VBF8Ow.mp4/ZhOL4VBF8Ow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZhOL4VBF8Ow.mp4/ZhOL4VBF8Ow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZhOL4VBF8Ow.m3u8/ZhOL4VBF8Ow.m3u8"}, "duration": 742, "id": "ZhOL4VBF8Ow", "title": "R,S system for cyclic compounds", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/r-s-system-for-cyclic-compounds-1/", "slug": "r-s-system-for-cyclic-compounds-1", "kind": "Video", "video_id": "ZhOL4VBF8Ow", "keywords": "", "youtube_id": "ZhOL4VBF8Ow", "readable_id": "r-s-system-for-cyclic-compounds-1"}, "sRVGcYGjUk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sRVGcYGjUk8.mp4/sRVGcYGjUk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sRVGcYGjUk8.mp4/sRVGcYGjUk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sRVGcYGjUk8.m3u8/sRVGcYGjUk8.m3u8"}, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/statistics-alternate-variance-formulas/", "duration": 737, "id": "sRVGcYGjUk8", "title": "Statistics: Alternate variance formulas", "format": "mp4", "description": "Playing with the formula for variance of a population.", "slug": "statistics-alternate-variance-formulas", "kind": "Video", "video_id": "sRVGcYGjUk8", "keywords": "variance, statistics, population, CC_6_SP_3, CC_6_SP_4, CC_6_SP_5_c", "youtube_id": "sRVGcYGjUk8", "readable_id": "statistics-alternate-variance-formulas"}, "iSfXdNIolQA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iSfXdNIolQA.mp4/iSfXdNIolQA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iSfXdNIolQA.mp4/iSfXdNIolQA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iSfXdNIolQA.m3u8/iSfXdNIolQA.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/problem-of-free-will/", "duration": 464, "id": "iSfXdNIolQA", "title": "Metaphysics: A problem of free will", "format": "mp4", "description": "Richard discusses one of the classic philosophical problem of free will --- that is, the question of whether we decide things for ourselves, or are forced to go one way or another. He distinguishes between two different worries. One worry is that the laws of physics, plus facts about the past over which we have no control, determine what we will do, and that means we\u2019re not free. Another worry is that because the laws and the past determine what we\u2019ll do, someone smart enough could know what we would do ahead of time, so we can\u2019t be free. He says the second worry is much worse than the first, but argues that the second doesn\u2019t follow from the first.\n\nSpeaker: Dr. Richard Holton,\u00a0Professor of Philosophy, Massachusetts Institute of Technology", "slug": "problem-of-free-will", "kind": "Video", "video_id": "iSfXdNIolQA", "keywords": "", "youtube_id": "iSfXdNIolQA", "readable_id": "problem-of-free-will"}, "qv2K1yk0LCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qv2K1yk0LCE.mp4/qv2K1yk0LCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qv2K1yk0LCE.mp4/qv2K1yk0LCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qv2K1yk0LCE.m3u8/qv2K1yk0LCE.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/central-italy1/piero-della-francesca-the-baptism-of-christ-1450s/", "duration": 227, "id": "qv2K1yk0LCE", "title": "Piero della Francesca, The Baptism of Christ", "format": "mp4", "description": "Piero della Francesca, The Baptism of Christ, 1450s, tempera on wood, 167 x 116 cm (National Gallery, London). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "piero-della-francesca-the-baptism-of-christ-1450s", "kind": "Video", "video_id": "qv2K1yk0LCE", "keywords": "national gallery, london", "youtube_id": "qv2K1yk0LCE", "readable_id": "piero-della-francesca-the-baptism-of-christ-1450s"}, "-ZS6FI24roY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-ZS6FI24roY.mp4/-ZS6FI24roY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-ZS6FI24roY.mp4/-ZS6FI24roY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-ZS6FI24roY.m3u8/-ZS6FI24roY.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-25-shakespearean-character/", "duration": 94, "id": "-ZS6FI24roY", "title": "25 Shakespearean character", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-25-shakespearean-character", "kind": "Video", "video_id": "-ZS6FI24roY", "keywords": "", "youtube_id": "-ZS6FI24roY", "readable_id": "sat-25-shakespearean-character"}, "g02RnGXCXrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g02RnGXCXrQ.mp4/g02RnGXCXrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g02RnGXCXrQ.mp4/g02RnGXCXrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g02RnGXCXrQ.m3u8/g02RnGXCXrQ.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/genetic-mutations/an-introduction-to-genetic-mutations/", "duration": 324, "id": "g02RnGXCXrQ", "title": "An introduction to genetic mutations", "format": "mp4", "description": "", "slug": "an-introduction-to-genetic-mutations", "kind": "Video", "video_id": "g02RnGXCXrQ", "keywords": "MCAT", "youtube_id": "g02RnGXCXrQ", "readable_id": "an-introduction-to-genetic-mutations"}, "Ka82QC4QvGA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ka82QC4QvGA.mp4/Ka82QC4QvGA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ka82QC4QvGA.mp4/Ka82QC4QvGA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ka82QC4QvGA.m3u8/Ka82QC4QvGA.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/quadrilateral-overview/", "duration": 504, "id": "Ka82QC4QvGA", "title": "Quadrilateral overview", "format": "mp4", "description": "\"Quad\" means \"four\" and \"lateral\" means \"line.\" A quadrilateral is literally a shape with four sides (lines) and four angles. Let's learn the difference between concave and convex quadrilaterals as well as trapezoids, parallelograms, and rhombi.", "slug": "quadrilateral-overview", "kind": "Video", "video_id": "Ka82QC4QvGA", "keywords": "rhombus", "youtube_id": "Ka82QC4QvGA", "readable_id": "quadrilateral-overview"}, "eEJqaNaq9v8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eEJqaNaq9v8.mp4/eEJqaNaq9v8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eEJqaNaq9v8.mp4/eEJqaNaq9v8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eEJqaNaq9v8.m3u8/eEJqaNaq9v8.m3u8"}, "duration": 614, "id": "eEJqaNaq9v8", "title": "Absolute temperature and the kelvin scale", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/gas-phase/absolute-temperature-and-the-kelvin-scale/", "slug": "absolute-temperature-and-the-kelvin-scale", "kind": "Video", "video_id": "eEJqaNaq9v8", "keywords": "", "youtube_id": "eEJqaNaq9v8", "readable_id": "absolute-temperature-and-the-kelvin-scale"}, "TA5SLDiIUWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TA5SLDiIUWs.mp4/TA5SLDiIUWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TA5SLDiIUWs.mp4/TA5SLDiIUWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TA5SLDiIUWs.m3u8/TA5SLDiIUWs.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/gamma-waves/", "duration": 222, "id": "TA5SLDiIUWs", "title": "Gamma waves (1900)", "format": "mp4", "description": "", "slug": "gamma-waves", "kind": "Video", "video_id": "TA5SLDiIUWs", "keywords": "", "youtube_id": "TA5SLDiIUWs", "readable_id": "gamma-waves"}, "VZOHWaw5dqM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VZOHWaw5dqM.mp4/VZOHWaw5dqM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VZOHWaw5dqM.mp4/VZOHWaw5dqM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VZOHWaw5dqM.m3u8/VZOHWaw5dqM.m3u8"}, "duration": 419, "id": "VZOHWaw5dqM", "title": "Comparing Rational Numbers", "format": "mp4", "description": "U09_L1_T3_we4 Comparing Rational Numbers", "path": "comparing-rational-numbers/", "slug": "comparing-rational-numbers", "kind": "Video", "video_id": "VZOHWaw5dqM", "keywords": "U09_L1_T3_we4, Comparing, Rational, Numbers", "youtube_id": "VZOHWaw5dqM", "readable_id": "comparing-rational-numbers"}, "-gcm5NneR6M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-gcm5NneR6M.mp4/-gcm5NneR6M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-gcm5NneR6M.mp4/-gcm5NneR6M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-gcm5NneR6M.m3u8/-gcm5NneR6M.m3u8"}, "duration": 595, "id": "-gcm5NneR6M", "title": "Equilibrium", "format": "mp4", "description": "In this episode of Crash Course Chemistry, Hank goes over the ideas of keeping your life balance... well, your chemical life. Equilibrium is all about balance and today Hank discusses Chemical Equilibrium, Concentration, Temperature, and Pressure. Also, he'll chat about Le Chatalier's Principle and Fritz Haber.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem28-equilibrium/", "slug": "chem28-equilibrium", "kind": "Video", "video_id": "-gcm5NneR6M", "keywords": "", "youtube_id": "-gcm5NneR6M", "readable_id": "chem28-equilibrium"}, "cQKPvT-aEqk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cQKPvT-aEqk.mp4/cQKPvT-aEqk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cQKPvT-aEqk.mp4/cQKPvT-aEqk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cQKPvT-aEqk.m3u8/cQKPvT-aEqk.m3u8"}, "duration": 631, "id": "cQKPvT-aEqk", "title": "Endocrine system and influence on behavior - Part 1", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-endocrine-system/endocrine-system-and-influence-on-behavior-part-1/", "slug": "endocrine-system-and-influence-on-behavior-part-1", "kind": "Video", "video_id": "cQKPvT-aEqk", "keywords": "", "youtube_id": "cQKPvT-aEqk", "readable_id": "endocrine-system-and-influence-on-behavior-part-1"}, "_-a-yNubpk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_-a-yNubpk8.mp4/_-a-yNubpk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_-a-yNubpk8.mp4/_-a-yNubpk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_-a-yNubpk8.m3u8/_-a-yNubpk8.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/eulers-method-tutorial/example-eulers-method-exercise/", "duration": 275, "id": "_-a-yNubpk8", "title": "Example Euler's method exercise", "format": "mp4", "description": "", "slug": "example-eulers-method-exercise", "kind": "Video", "video_id": "_-a-yNubpk8", "keywords": "", "youtube_id": "_-a-yNubpk8", "readable_id": "example-eulers-method-exercise"}, "KcqO1fX9b_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KcqO1fX9b_I.mp4/KcqO1fX9b_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KcqO1fX9b_I.mp4/KcqO1fX9b_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KcqO1fX9b_I.m3u8/KcqO1fX9b_I.m3u8"}, "duration": 273, "id": "KcqO1fX9b_I", "title": "More limits at infinity", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits-infinity/more-limits-at-infinity/", "slug": "more-limits-at-infinity", "kind": "Video", "video_id": "KcqO1fX9b_I", "keywords": "", "youtube_id": "KcqO1fX9b_I", "readable_id": "more-limits-at-infinity"}, "NT0SHjOowLA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NT0SHjOowLA.mp4/NT0SHjOowLA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NT0SHjOowLA.mp4/NT0SHjOowLA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NT0SHjOowLA.m3u8/NT0SHjOowLA.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/why-is-that-important-looking-at-jackson-pollock/", "duration": 738, "id": "NT0SHjOowLA", "title": "Why is that important? Looking at Jackson Pollock", "format": "mp4", "description": "Why is that Important?: Looking at Jackson Pollock\n\nA conversation with Sal Khan, Steven Zucker and Beth Harris", "slug": "why-is-that-important-looking-at-jackson-pollock", "kind": "Video", "video_id": "NT0SHjOowLA", "keywords": "art history", "youtube_id": "NT0SHjOowLA", "readable_id": "why-is-that-important-looking-at-jackson-pollock"}, "L5eBJjx2FP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L5eBJjx2FP8.mp4/L5eBJjx2FP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L5eBJjx2FP8.mp4/L5eBJjx2FP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L5eBJjx2FP8.m3u8/L5eBJjx2FP8.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/switching-integral-bounds/", "duration": 277, "id": "L5eBJjx2FP8", "title": "Switching bounds of definite integral", "format": "mp4", "description": "", "slug": "switching-integral-bounds", "kind": "Video", "video_id": "L5eBJjx2FP8", "keywords": "", "youtube_id": "L5eBJjx2FP8", "readable_id": "switching-integral-bounds"}, "jtbpusl0Vo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jtbpusl0Vo0.mp4/jtbpusl0Vo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jtbpusl0Vo0.mp4/jtbpusl0Vo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jtbpusl0Vo0.m3u8/jtbpusl0Vo0.m3u8"}, "duration": 59, "id": "jtbpusl0Vo0", "title": "Did dinosaurs travel in herds or packs?", "format": "mp4", "description": "The most definitive evidence that dinosaurs traveled in groups comes from sequences of fossilized footprints called trackways. Several track sites have now been found that suggest herding behavior in some groups of dinosaurs. At the Davenport Ranch site outside San Antonio, Texas, R. T. Bird of AMNH discovered an amazing set of sauropods tracks in 1940. Detailed analyses of these trackways reveal a herd of 23 sauropods rambling over muddy ground at a pace of about 2 meters per second. The pattern of overlapping tracks indicates that the largest adult sauropods led the herd, followed by smaller individuals.", "path": "dinosaur-herds/", "slug": "dinosaur-herds", "kind": "Video", "video_id": "jtbpusl0Vo0", "keywords": "", "youtube_id": "jtbpusl0Vo0", "readable_id": "dinosaur-herds"}, "rcBaqkGp7CA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rcBaqkGp7CA.mp4/rcBaqkGp7CA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rcBaqkGp7CA.mp4/rcBaqkGp7CA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rcBaqkGp7CA.m3u8/rcBaqkGp7CA.m3u8"}, "duration": 623, "id": "rcBaqkGp7CA", "title": "Another Pythagorean theorem proof", "format": "mp4", "description": "Visually proving the Pythagorean Theorem", "path": "khan/math/geometry/right_triangles_topic/pythagorean_proofs/another-pythagorean-theorem-proof/", "slug": "another-pythagorean-theorem-proof", "kind": "Video", "video_id": "rcBaqkGp7CA", "keywords": "", "youtube_id": "rcBaqkGp7CA", "readable_id": "another-pythagorean-theorem-proof"}, "qkfODKmZ-x4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qkfODKmZ-x4.mp4/qkfODKmZ-x4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qkfODKmZ-x4.mp4/qkfODKmZ-x4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qkfODKmZ-x4.m3u8/qkfODKmZ-x4.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/lin_trans_examples/linear-transformation-examples-scaling-and-reflections/", "duration": 913, "id": "qkfODKmZ-x4", "title": "Linear transformation examples: Scaling and reflections", "format": "mp4", "description": "Creating scaling and reflection transformation matrices (which are diagonal)", "slug": "linear-transformation-examples-scaling-and-reflections", "kind": "Video", "video_id": "qkfODKmZ-x4", "keywords": "linear, transformation, matrices", "youtube_id": "qkfODKmZ-x4", "readable_id": "linear-transformation-examples-scaling-and-reflections"}, "wVMe8ZmCZo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wVMe8ZmCZo0.mp4/wVMe8ZmCZo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wVMe8ZmCZo0.mp4/wVMe8ZmCZo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wVMe8ZmCZo0.m3u8/wVMe8ZmCZo0.m3u8"}, "duration": 301, "id": "wVMe8ZmCZo0", "title": "Redox reaction from dissolving zinc in copper sulfate", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/redox-reaction-from-dissolving-zinc-in-copper-sulfate/", "slug": "redox-reaction-from-dissolving-zinc-in-copper-sulfate", "kind": "Video", "video_id": "wVMe8ZmCZo0", "keywords": "", "youtube_id": "wVMe8ZmCZo0", "readable_id": "redox-reaction-from-dissolving-zinc-in-copper-sulfate"}, "e6sh8AXz41E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e6sh8AXz41E.mp4/e6sh8AXz41E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e6sh8AXz41E.mp4/e6sh8AXz41E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e6sh8AXz41E.m3u8/e6sh8AXz41E.m3u8"}, "duration": 621, "id": "e6sh8AXz41E", "title": "Identifying similar triangles in the coordinate plane", "format": "mp4", "description": "", "path": "khan/math/geometry/analytic-geometry-topic/geometry-problems-coordinate-pla/identifying-similar-triangles-in-the-coordinate-plane/", "slug": "identifying-similar-triangles-in-the-coordinate-plane", "kind": "Video", "video_id": "e6sh8AXz41E", "keywords": "", "youtube_id": "e6sh8AXz41E", "readable_id": "identifying-similar-triangles-in-the-coordinate-plane"}, "-3DFzxbP9Fk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-3DFzxbP9Fk.mp4/-3DFzxbP9Fk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-3DFzxbP9Fk.mp4/-3DFzxbP9Fk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-3DFzxbP9Fk.m3u8/-3DFzxbP9Fk.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-sub-word-problem-within-10/addition-word-problems-within-10/", "duration": 102, "id": "-3DFzxbP9Fk", "title": "Addition word problems within 10", "format": "mp4", "description": "Learn how to solve word problems by adding small numbers (numbers 10 or less).", "slug": "addition-word-problems-within-10", "kind": "Video", "video_id": "-3DFzxbP9Fk", "keywords": "", "youtube_id": "-3DFzxbP9Fk", "readable_id": "addition-word-problems-within-10"}, "zA2KSx5OYog": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zA2KSx5OYog.mp4/zA2KSx5OYog.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zA2KSx5OYog.mp4/zA2KSx5OYog.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zA2KSx5OYog.m3u8/zA2KSx5OYog.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/john-roddam-spencer-stanhope-thoughts-of-the-past-exhibited-1859/", "duration": 228, "id": "zA2KSx5OYog", "title": "John Roddam Spencer Stanhope, Thoughts of the Past", "format": "mp4", "description": "John Roddam Spencer Stanhope, Thoughts of the Past, exhibited 1859, oil on canvas, 864 x 508 mm (Tate Britain, London)", "slug": "john-roddam-spencer-stanhope-thoughts-of-the-past-exhibited-1859", "kind": "Video", "video_id": "zA2KSx5OYog", "keywords": "Smarthistory, Art History, Pre-Raphaelites, Tate Britain, Prostitution, Victorian, John Roddam Spencer Stanhope, Thoughts of the Past, 1859, Stanhope, Khan Academy, Google Art Project, OER, painting", "youtube_id": "zA2KSx5OYog", "readable_id": "john-roddam-spencer-stanhope-thoughts-of-the-past-exhibited-1859"}, "ssz6TElXEOM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ssz6TElXEOM.mp4/ssz6TElXEOM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ssz6TElXEOM.mp4/ssz6TElXEOM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ssz6TElXEOM.m3u8/ssz6TElXEOM.m3u8"}, "duration": 167, "id": "ssz6TElXEOM", "title": "Derivative of log with arbitrary base", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/derivative-of-log-with-arbitrary-base/", "slug": "derivative-of-log-with-arbitrary-base", "kind": "Video", "video_id": "ssz6TElXEOM", "keywords": "", "youtube_id": "ssz6TElXEOM", "readable_id": "derivative-of-log-with-arbitrary-base"}, "DGZNaKnbQo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DGZNaKnbQo0.mp4/DGZNaKnbQo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DGZNaKnbQo0.mp4/DGZNaKnbQo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DGZNaKnbQo0.m3u8/DGZNaKnbQo0.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/reading-bar-charts-3/", "duration": 281, "id": "DGZNaKnbQo0", "title": "Reading bar charts: putting it together with central tendency", "format": "mp4", "description": "Let's combine some learning! Here we looking at bar charts and using the information to determine the measures of central tendency.", "slug": "reading-bar-charts-3", "kind": "Video", "video_id": "DGZNaKnbQo0", "keywords": "", "youtube_id": "DGZNaKnbQo0", "readable_id": "reading-bar-charts-3"}, "nTco9qQ2elM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nTco9qQ2elM.mp4/nTco9qQ2elM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nTco9qQ2elM.mp4/nTco9qQ2elM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nTco9qQ2elM.m3u8/nTco9qQ2elM.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds/hedge-fund-strategies-long-short-1/", "duration": 215, "id": "nTco9qQ2elM", "title": "Hedge fund strategies: Long short 1", "format": "mp4", "description": "Setting up a simple long-short hedge (assuming the companies have similar beta or correlation with market)", "slug": "hedge-fund-strategies-long-short-1", "kind": "Video", "video_id": "nTco9qQ2elM", "keywords": "finance, hedge, fund", "youtube_id": "nTco9qQ2elM", "readable_id": "hedge-fund-strategies-long-short-1"}, "NrVvu7cM8_o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NrVvu7cM8_o.mp4/NrVvu7cM8_o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NrVvu7cM8_o.mp4/NrVvu7cM8_o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NrVvu7cM8_o.m3u8/NrVvu7cM8_o.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-subtract-negatives-pre-alg/adding-integers-with-different-signs/", "duration": 332, "id": "NrVvu7cM8_o", "title": "Adding numbers with different signs", "format": "mp4", "description": "Use a number line to add numbers with positive and negative signs.", "slug": "adding-integers-with-different-signs", "kind": "Video", "video_id": "NrVvu7cM8_o", "keywords": "U09_L2_T1_we2, Adding, integers, with, different, signs, CC_7_NS_1_b, CC_7_NS_1_c", "youtube_id": "NrVvu7cM8_o", "readable_id": "adding-integers-with-different-signs"}, "Qz1g6kqvUG8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qz1g6kqvUG8.mp4/Qz1g6kqvUG8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qz1g6kqvUG8.mp4/Qz1g6kqvUG8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qz1g6kqvUG8.m3u8/Qz1g6kqvUG8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/venturi-effect-and-pitot-tubes/", "duration": 598, "id": "Qz1g6kqvUG8", "title": "Venturi effect and Pitot tubes", "format": "mp4", "description": "", "slug": "venturi-effect-and-pitot-tubes", "kind": "Video", "video_id": "Qz1g6kqvUG8", "keywords": "", "youtube_id": "Qz1g6kqvUG8", "readable_id": "venturi-effect-and-pitot-tubes"}, "h0PmFW_3iGo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h0PmFW_3iGo.mp4/h0PmFW_3iGo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h0PmFW_3iGo.mp4/h0PmFW_3iGo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h0PmFW_3iGo.m3u8/h0PmFW_3iGo.m3u8"}, "duration": 177, "id": "h0PmFW_3iGo", "title": "\"Open-Minded\" with Navina Haidar", "format": "mp4", "description": "Met curator Navina Haidar on freethinking in \u201cKrishna Holds up Mound Govardhan to Shelter the Villagers of Braj,\u201d Folio from a Harivamsa (The Legend of Hari (Krishna) from present-day Pakistan.\n\nThe Hindu epics the Mahabharata and the Ramayana, and other texts such as the Harivamsa, a genealogy of Hari (or Krishna), were translated into Persian and illustrated for the first time during Akbar\u2019s reign (1556\u20131605). Unlike other manuscript projects for which the Mughal court artists inherited a tradition of iconography and style from earlier Iranian manuscripts, they had to invent new compositions for these works. The present folio depicts Krishna holding up Mount Govardhan to protect the villagers of Braj from the rains sent by the god Indra.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a\u00a0related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "open-minded/", "slug": "open-minded", "kind": "Video", "video_id": "h0PmFW_3iGo", "keywords": "book, community, daily life, painting, paper, politics, writing, Asia", "youtube_id": "h0PmFW_3iGo", "readable_id": "open-minded"}, "O4St29B7cmU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O4St29B7cmU.mp4/O4St29B7cmU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O4St29B7cmU.mp4/O4St29B7cmU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O4St29B7cmU.m3u8/O4St29B7cmU.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/mary-cassatt-the-child-s-bath-1893/", "duration": 186, "id": "O4St29B7cmU", "title": "Cassatt, The Child's Bath", "format": "mp4", "description": "Mary Cassatt, The Child's Bath, 1893, oil on canvas, 100.3 x 66.1 cm / 39-1/2 x 26 inches (Art Institute of Chicago)", "slug": "mary-cassatt-the-child-s-bath-1893", "kind": "Video", "video_id": "O4St29B7cmU", "keywords": "Mary Cassatt, The Child's Bath, Bath, Child, mother 1893, Art Institute of Chicago, Impressionism, Japanese prints, painting, Paris, Chicago, Smarthistory, Google Art Project, Khan Academy, art history, OER", "youtube_id": "O4St29B7cmU", "readable_id": "mary-cassatt-the-child-s-bath-1893"}, "WOnOq9YIrWI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WOnOq9YIrWI.mp4/WOnOq9YIrWI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WOnOq9YIrWI.mp4/WOnOq9YIrWI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WOnOq9YIrWI.m3u8/WOnOq9YIrWI.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/jan-van-huysum-vase-with-flowers-c-1718-20/", "duration": 177, "id": "WOnOq9YIrWI", "title": "Van Huysum, Vase with Flowers", "format": "mp4", "description": "Jan van Huysum, Vase with Flowers, c. 1718-20, oil on canvas, 24 x 31 in. (61 x 79 cm), (Dulwich Picture Gallery, London)\n\nSpeakers: Pippa Couch, Rachel S. Ropeik", "slug": "jan-van-huysum-vase-with-flowers-c-1718-20", "kind": "Video", "video_id": "WOnOq9YIrWI", "keywords": "Still Life, Holland, Dutch, Art History, Smarthistory, Dulwich Picture Gallery", "youtube_id": "WOnOq9YIrWI", "readable_id": "jan-van-huysum-vase-with-flowers-c-1718-20"}, "-aTy1ED1m5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-aTy1ED1m5I.mp4/-aTy1ED1m5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-aTy1ED1m5I.mp4/-aTy1ED1m5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-aTy1ED1m5I.m3u8/-aTy1ED1m5I.m3u8"}, "duration": 320, "id": "-aTy1ED1m5I", "title": "Graphing inequalities 2", "format": "mp4", "description": "Graphing Inequalities 2", "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphing-inequalities-2/", "slug": "graphing-inequalities-2", "kind": "Video", "video_id": "-aTy1ED1m5I", "keywords": "u13_l2_t4_we2, Graphing, Inequalities", "youtube_id": "-aTy1ED1m5I", "readable_id": "graphing-inequalities-2"}, "8nod8JWaO1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8nod8JWaO1o.mp4/8nod8JWaO1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8nod8JWaO1o.mp4/8nod8JWaO1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8nod8JWaO1o.m3u8/8nod8JWaO1o.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-2/", "duration": 584, "id": "8nod8JWaO1o", "title": "GMAT: Data sufficiency 2", "format": "mp4", "description": "6-9, pg. 278", "slug": "gmat-data-sufficiency-2", "kind": "Video", "video_id": "8nod8JWaO1o", "keywords": "gmat, data, sufficiency", "youtube_id": "8nod8JWaO1o", "readable_id": "gmat-data-sufficiency-2"}, "YL40aQlLSnY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YL40aQlLSnY.mp4/YL40aQlLSnY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YL40aQlLSnY.mp4/YL40aQlLSnY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YL40aQlLSnY.m3u8/YL40aQlLSnY.m3u8"}, "duration": 256, "id": "YL40aQlLSnY", "title": "Intro to coloring with blocks", "format": "mp4", "description": "", "path": "intro-to-coloring-with-blocks/", "slug": "intro-to-coloring-with-blocks", "kind": "Video", "video_id": "YL40aQlLSnY", "keywords": "", "youtube_id": "YL40aQlLSnY", "readable_id": "intro-to-coloring-with-blocks"}, "n-iEqLhGfd4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n-iEqLhGfd4.mp4/n-iEqLhGfd4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n-iEqLhGfd4.mp4/n-iEqLhGfd4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n-iEqLhGfd4.m3u8/n-iEqLhGfd4.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/integration_by_parts/integration-by-parts-twice-for-antiderivative-of-x-2-e-x/", "duration": 406, "id": "n-iEqLhGfd4", "title": "Integration by parts twice for antiderivative of (x^2)(e^x)", "format": "mp4", "description": "", "slug": "integration-by-parts-twice-for-antiderivative-of-x-2-e-x", "kind": "Video", "video_id": "n-iEqLhGfd4", "keywords": "", "youtube_id": "n-iEqLhGfd4", "readable_id": "integration-by-parts-twice-for-antiderivative-of-x-2-e-x"}, "yqCGsOfKdRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yqCGsOfKdRM.mp4/yqCGsOfKdRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yqCGsOfKdRM.mp4/yqCGsOfKdRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yqCGsOfKdRM.m3u8/yqCGsOfKdRM.m3u8"}, "duration": 204, "id": "yqCGsOfKdRM", "title": "Giles Shih - President and CEO of BioResource International", "format": "mp4", "description": "Giles Shih, President and CEO of BioResource International, describes his company and explains how producing \"big green chickens\" will help feed the world.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/giles-shih/kauffman-giles-shih1/", "slug": "kauffman-giles-shih1", "kind": "Video", "video_id": "yqCGsOfKdRM", "keywords": "", "youtube_id": "yqCGsOfKdRM", "readable_id": "kauffman-giles-shih1"}, "smo4OR3Gvq8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/smo4OR3Gvq8.mp4/smo4OR3Gvq8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/smo4OR3Gvq8.mp4/smo4OR3Gvq8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/smo4OR3Gvq8.m3u8/smo4OR3Gvq8.m3u8"}, "duration": 167, "id": "smo4OR3Gvq8", "title": "Carolee Schneemann, \"Up to and Including Her Limits\"", "format": "mp4", "description": "Carolee Schneeman describes her piece Up to and Including Her Limits as being in discussion with Jackson Pollock. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "schneemann-on-line/", "slug": "schneemann-on-line", "kind": "Video", "video_id": "smo4OR3Gvq8", "keywords": "", "youtube_id": "smo4OR3Gvq8", "readable_id": "schneemann-on-line"}, "Bc9bhLk_AhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bc9bhLk_AhI.mp4/Bc9bhLk_AhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bc9bhLk_AhI.mp4/Bc9bhLk_AhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bc9bhLk_AhI.m3u8/Bc9bhLk_AhI.m3u8"}, "path": "khan/science/biology/her/heredity-and-genetics/allele-frequency/", "duration": 447, "id": "Bc9bhLk_AhI", "title": "Allele frequency", "format": "mp4", "description": "", "slug": "allele-frequency", "kind": "Video", "video_id": "Bc9bhLk_AhI", "keywords": "", "youtube_id": "Bc9bhLk_AhI", "readable_id": "allele-frequency"}, "vIE8aYYsw8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vIE8aYYsw8M.mp4/vIE8aYYsw8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vIE8aYYsw8M.mp4/vIE8aYYsw8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vIE8aYYsw8M.m3u8/vIE8aYYsw8M.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-9/", "duration": 90, "id": "vIE8aYYsw8M", "title": "9 Magazine subscriptions", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-9", "kind": "Video", "video_id": "vIE8aYYsw8M", "keywords": "", "youtube_id": "vIE8aYYsw8M", "readable_id": "2013-sat-practice-6-9"}, "nj3l2PbD8Cw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nj3l2PbD8Cw.mp4/nj3l2PbD8Cw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nj3l2PbD8Cw.mp4/nj3l2PbD8Cw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nj3l2PbD8Cw.m3u8/nj3l2PbD8Cw.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-2/", "duration": 71, "id": "nj3l2PbD8Cw", "title": "2 Possible values of x", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-2", "kind": "Video", "video_id": "nj3l2PbD8Cw", "keywords": "", "youtube_id": "nj3l2PbD8Cw", "readable_id": "2013-sat-practice-6-2"}, "xSYZoUYd-E4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xSYZoUYd-E4.mp4/xSYZoUYd-E4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xSYZoUYd-E4.mp4/xSYZoUYd-E4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xSYZoUYd-E4.m3u8/xSYZoUYd-E4.m3u8"}, "duration": 449, "id": "xSYZoUYd-E4", "title": "Solutions", "format": "mp4", "description": "This week, Hank elaborates on why Fugu can kill you by illustrating the ideas of solutions and discussing molarity, molality, and mass percent. Also, why polar solvents dissolve polar solutes, and nonpolar solvents dissolve nonpolar solutes. All that plus Henry's Law and why Coke = Burps.\nWriters: Kim Krieger\nChief Editor: Blake de Pastino\nConsultant: Edi Gonzalez\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem27-solutions/", "slug": "chem27-solutions", "kind": "Video", "video_id": "xSYZoUYd-E4", "keywords": "", "youtube_id": "xSYZoUYd-E4", "readable_id": "chem27-solutions"}, "okjt-OZY1JU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/okjt-OZY1JU.mp4/okjt-OZY1JU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/okjt-OZY1JU.mp4/okjt-OZY1JU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/okjt-OZY1JU.m3u8/okjt-OZY1JU.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/area-under-rate-function/area-under-rate-function-example/", "duration": 415, "id": "okjt-OZY1JU", "title": "Total water in a tub", "format": "mp4", "description": "", "slug": "area-under-rate-function-example", "kind": "Video", "video_id": "okjt-OZY1JU", "keywords": "", "youtube_id": "okjt-OZY1JU", "readable_id": "area-under-rate-function-example"}, "MC8Mc6tSjYI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MC8Mc6tSjYI.mp4/MC8Mc6tSjYI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MC8Mc6tSjYI.mp4/MC8Mc6tSjYI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MC8Mc6tSjYI.m3u8/MC8Mc6tSjYI.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/thiols-sulfides/preparation-of-sulfides/", "duration": 419, "id": "MC8Mc6tSjYI", "title": "Preparation of sulfides", "format": "mp4", "description": "", "slug": "preparation-of-sulfides", "kind": "Video", "video_id": "MC8Mc6tSjYI", "keywords": "", "youtube_id": "MC8Mc6tSjYI", "readable_id": "preparation-of-sulfides"}, "K7XAk7EvLSc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K7XAk7EvLSc.mp4/K7XAk7EvLSc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K7XAk7EvLSc.mp4/K7XAk7EvLSc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K7XAk7EvLSc.m3u8/K7XAk7EvLSc.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/acid-catalyzed-ester-hydrolysis/", "duration": 686, "id": "K7XAk7EvLSc", "title": "Acid-catalyzed ester hydrolysis", "format": "mp4", "description": "The mechanism for the acid-catalyzed hydrolysis of esters (and transesterification)", "slug": "acid-catalyzed-ester-hydrolysis", "kind": "Video", "video_id": "K7XAk7EvLSc", "keywords": "", "youtube_id": "K7XAk7EvLSc", "readable_id": "acid-catalyzed-ester-hydrolysis"}, "lpXCvX6ZenM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lpXCvX6ZenM.mp4/lpXCvX6ZenM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lpXCvX6ZenM.mp4/lpXCvX6ZenM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lpXCvX6ZenM.m3u8/lpXCvX6ZenM.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-3-b-c/", "duration": 506, "id": "lpXCvX6ZenM", "title": "2011 Calculus BC free response #3 (b & c)", "format": "mp4", "description": "Volume of a solid of rotation and Chain Rule for rates of change.", "slug": "2011-calculus-bc-free-response-3-b-c", "kind": "Video", "video_id": "lpXCvX6ZenM", "keywords": "advanced, placement, calculus", "youtube_id": "lpXCvX6ZenM", "readable_id": "2011-calculus-bc-free-response-3-b-c"}, "YxMBp4Ef3ek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YxMBp4Ef3ek.mp4/YxMBp4Ef3ek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YxMBp4Ef3ek.mp4/YxMBp4Ef3ek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YxMBp4Ef3ek.m3u8/YxMBp4Ef3ek.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/cartier-bresson-behind-the-gare-saint-lazare-paris-1932/", "duration": 243, "id": "YxMBp4Ef3ek", "title": "Cartier-Bresson, Behind the Gare St. Lazare", "format": "mp4", "description": "Henri Cartier-Bresson, Behind the Gare Saint-Lazare, Paris, 1932 Speakers: Dr. Shana Gallagher-Lindsay, Dr. Beth Harris", "slug": "cartier-bresson-behind-the-gare-saint-lazare-paris-1932", "kind": "Video", "video_id": "YxMBp4Ef3ek", "keywords": "cartier-bresson, photography, art history, smarthistory", "youtube_id": "YxMBp4Ef3ek", "readable_id": "cartier-bresson-behind-the-gare-saint-lazare-paris-1932"}, "LOjTSgNyiFQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LOjTSgNyiFQ.mp4/LOjTSgNyiFQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LOjTSgNyiFQ.mp4/LOjTSgNyiFQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LOjTSgNyiFQ.m3u8/LOjTSgNyiFQ.m3u8"}, "duration": 2212, "id": "LOjTSgNyiFQ", "title": "SciCafe: the story of the human body with Daniel Lieberman", "format": "mp4", "description": "As the human species evolved from Paleolithic to modern times, our bodies have changed to fit the world around us. But with the human landscape moving quickly from the Agricultural and Industrial Revolutions to the modern day of smartphones and junk food, are our bodies able to keep up? In this SciCafe, join evolutionary biologist Daniel Lieberman as he discusses how human bodies evolved from our ape ancestors, and how this evolution continues to affect our bodies and their ailments to this day.", "path": "story-of-the-human-body-with-daniel-lieberman/", "slug": "story-of-the-human-body-with-daniel-lieberman", "kind": "Video", "video_id": "LOjTSgNyiFQ", "keywords": "", "youtube_id": "LOjTSgNyiFQ", "readable_id": "story-of-the-human-body-with-daniel-lieberman"}, "0fPwsLeH8fA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0fPwsLeH8fA.mp4/0fPwsLeH8fA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0fPwsLeH8fA.mp4/0fPwsLeH8fA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0fPwsLeH8fA.m3u8/0fPwsLeH8fA.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/cindy-sherman-untitled-film-still-21-1978/", "duration": 263, "id": "0fPwsLeH8fA", "title": "Sherman, Untitled Film Still #21", "format": "mp4", "description": "Cindy Sherman, Untitled Film Still #21, 1978, gelatin silver print, 7.5 x 9.5 inches or 19.1 x 24.1 cm (MoMA) Speakers: Dr. Shana Gallagher-Lindsay, Dr. Beth Harris", "slug": "cindy-sherman-untitled-film-still-21-1978", "kind": "Video", "video_id": "0fPwsLeH8fA", "keywords": "Art History, Cindy Sherman, Smarthistory, Khan Academy", "youtube_id": "0fPwsLeH8fA", "readable_id": "cindy-sherman-untitled-film-still-21-1978"}, "DlBQcj_zQk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DlBQcj_zQk0.mp4/DlBQcj_zQk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DlBQcj_zQk0.mp4/DlBQcj_zQk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DlBQcj_zQk0.m3u8/DlBQcj_zQk0.m3u8"}, "duration": 409, "id": "DlBQcj_zQk0", "title": "Power series radius and interval of convergence", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/power-series-algebra/power-series-radius-interval-convergence/", "slug": "power-series-radius-interval-convergence", "kind": "Video", "video_id": "DlBQcj_zQk0", "keywords": "", "youtube_id": "DlBQcj_zQk0", "readable_id": "power-series-radius-interval-convergence"}, "GypHy3gnG5E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GypHy3gnG5E.mp4/GypHy3gnG5E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GypHy3gnG5E.mp4/GypHy3gnG5E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GypHy3gnG5E.m3u8/GypHy3gnG5E.m3u8"}, "duration": 210, "id": "GypHy3gnG5E", "title": "Tax deductions introduction", "format": "mp4", "description": "Understanding what a tax deduction is", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/tax-deductions-introduction/", "slug": "tax-deductions-introduction", "kind": "Video", "video_id": "GypHy3gnG5E", "keywords": "Tax, deduction, mortgage, interest", "youtube_id": "GypHy3gnG5E", "readable_id": "tax-deductions-introduction"}, "YRDpPeKc-ZE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YRDpPeKc-ZE.mp4/YRDpPeKc-ZE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YRDpPeKc-ZE.mp4/YRDpPeKc-ZE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YRDpPeKc-ZE.m3u8/YRDpPeKc-ZE.m3u8"}, "path": "khan/partner-content/big-history-project/life/how-did-life-begin-change/bhp-proved-asteroid-wiped-out-dinos/", "duration": 450, "id": "YRDpPeKc-ZE", "title": "How We Proved An Asteroid Wiped Out The Dinosaurs", "format": "mp4", "description": "Geologist Walter Alvarez gets to the bottom of a scientific murder mystery.", "slug": "bhp-proved-asteroid-wiped-out-dinos", "kind": "Video", "video_id": "YRDpPeKc-ZE", "keywords": "", "youtube_id": "YRDpPeKc-ZE", "readable_id": "bhp-proved-asteroid-wiped-out-dinos"}, "-05OfTp6ZEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-05OfTp6ZEE.mp4/-05OfTp6ZEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-05OfTp6ZEE.mp4/-05OfTp6ZEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-05OfTp6ZEE.m3u8/-05OfTp6ZEE.m3u8"}, "duration": 597, "id": "-05OfTp6ZEE", "title": "Deficit and debt ceiling", "format": "mp4", "description": "Basic of the deficit, debt and debt ceiling", "path": "khan/humanities/history/american-civics/american-civics/deficit-and-debt-ceiling/", "slug": "deficit-and-debt-ceiling", "kind": "Video", "video_id": "-05OfTp6ZEE", "keywords": "debt, ceiling, finance, deficit, economics", "youtube_id": "-05OfTp6ZEE", "readable_id": "deficit-and-debt-ceiling"}, "EgTd7OSTO1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EgTd7OSTO1I.mp4/EgTd7OSTO1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EgTd7OSTO1I.mp4/EgTd7OSTO1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EgTd7OSTO1I.m3u8/EgTd7OSTO1I.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/nomenclature-and-properties-of-amides/", "duration": 530, "id": "EgTd7OSTO1I", "title": "Nomenclature and properties of amides", "format": "mp4", "description": "How to name amides and the physical properties of acetamide", "slug": "nomenclature-and-properties-of-amides", "kind": "Video", "video_id": "EgTd7OSTO1I", "keywords": "", "youtube_id": "EgTd7OSTO1I", "readable_id": "nomenclature-and-properties-of-amides"}, "QEUsZeKYsgo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QEUsZeKYsgo.mp4/QEUsZeKYsgo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QEUsZeKYsgo.mp4/QEUsZeKYsgo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QEUsZeKYsgo.m3u8/QEUsZeKYsgo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/quantitative-electrolysis/", "duration": 420, "id": "QEUsZeKYsgo", "title": "Quantitative electrolysis", "format": "mp4", "description": "", "slug": "quantitative-electrolysis", "kind": "Video", "video_id": "QEUsZeKYsgo", "keywords": "", "youtube_id": "QEUsZeKYsgo", "readable_id": "quantitative-electrolysis"}, "muC7HMIEYDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/muC7HMIEYDU.mp4/muC7HMIEYDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/muC7HMIEYDU.mp4/muC7HMIEYDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/muC7HMIEYDU.m3u8/muC7HMIEYDU.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-measuring-length/measuring-lengths-2/", "duration": 280, "id": "muC7HMIEYDU", "title": "Measuring lengths 2", "format": "mp4", "description": "", "slug": "measuring-lengths-2", "kind": "Video", "video_id": "muC7HMIEYDU", "keywords": "", "youtube_id": "muC7HMIEYDU", "readable_id": "measuring-lengths-2"}, "VpLKdKkpg68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VpLKdKkpg68.mp4/VpLKdKkpg68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VpLKdKkpg68.mp4/VpLKdKkpg68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VpLKdKkpg68.m3u8/VpLKdKkpg68.m3u8"}, "duration": 961, "id": "VpLKdKkpg68", "title": "Medicare overview", "format": "mp4", "description": "Sal talks with Professor Laurence Baker of Stanford Medical School", "path": "khan/science/health-and-medicine/health-care-system/medicare-overview/", "slug": "medicare-overview", "kind": "Video", "video_id": "VpLKdKkpg68", "keywords": "medicare, medicaid", "youtube_id": "VpLKdKkpg68", "readable_id": "medicare-overview"}, "K7IxN3EDqm4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K7IxN3EDqm4.mp4/K7IxN3EDqm4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K7IxN3EDqm4.mp4/K7IxN3EDqm4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K7IxN3EDqm4.m3u8/K7IxN3EDqm4.m3u8"}, "path": "khan/test-prep/mcat/cells/eukaryotic-cells/mitochondria/", "duration": 911, "id": "K7IxN3EDqm4", "title": "Mitochondria", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "mitochondria", "kind": "Video", "video_id": "K7IxN3EDqm4", "keywords": "", "youtube_id": "K7IxN3EDqm4", "readable_id": "mitochondria"}, "A57_63yP1UU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A57_63yP1UU.mp4/A57_63yP1UU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A57_63yP1UU.mp4/A57_63yP1UU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A57_63yP1UU.m3u8/A57_63yP1UU.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/evaluating-line-integral-directly-part-1/", "duration": 464, "id": "A57_63yP1UU", "title": "Evaluating line integral directly - part 1", "format": "mp4", "description": "Showing that we didn't need to use Stokes' Theorem to evaluate this line integral", "slug": "evaluating-line-integral-directly-part-1", "kind": "Video", "video_id": "A57_63yP1UU", "keywords": "", "youtube_id": "A57_63yP1UU", "readable_id": "evaluating-line-integral-directly-part-1"}, "PMtC34pzKGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PMtC34pzKGc.mp4/PMtC34pzKGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PMtC34pzKGc.mp4/PMtC34pzKGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PMtC34pzKGc.m3u8/PMtC34pzKGc.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/visible-light-waves/", "duration": 290, "id": "PMtC34pzKGc", "title": "Visible light (1672)", "format": "mp4", "description": "", "slug": "visible-light-waves", "kind": "Video", "video_id": "PMtC34pzKGc", "keywords": "", "youtube_id": "PMtC34pzKGc", "readable_id": "visible-light-waves"}, "XdXXK_PTkUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XdXXK_PTkUU.mp4/XdXXK_PTkUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XdXXK_PTkUU.mp4/XdXXK_PTkUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XdXXK_PTkUU.m3u8/XdXXK_PTkUU.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/greek-and-roman-art/", "duration": 437, "id": "XdXXK_PTkUU", "title": "Ancient Greek and Roman art", "format": "mp4", "description": "From the Utah System of Higher Education (with special thanks to Dr. Nancy Ross). Video by Ydraw.", "slug": "greek-and-roman-art", "kind": "Video", "video_id": "XdXXK_PTkUU", "keywords": "art history, ancient greece, ancient rome", "youtube_id": "XdXXK_PTkUU", "readable_id": "greek-and-roman-art"}, "abYAUqs_n6I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/abYAUqs_n6I.mp4/abYAUqs_n6I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/abYAUqs_n6I.mp4/abYAUqs_n6I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/abYAUqs_n6I.m3u8/abYAUqs_n6I.m3u8"}, "duration": 839, "id": "abYAUqs_n6I", "title": "Dimension of the null space or nullity", "format": "mp4", "description": "Dimension of the Null Space or Nullity", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/dimension-of-the-null-space-or-nullity/", "slug": "dimension-of-the-null-space-or-nullity", "kind": "Video", "video_id": "abYAUqs_n6I", "keywords": "dimension, null, space, nullity", "youtube_id": "abYAUqs_n6I", "readable_id": "dimension-of-the-null-space-or-nullity"}, "lQIVIYCZ4ec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lQIVIYCZ4ec.mp4/lQIVIYCZ4ec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lQIVIYCZ4ec.mp4/lQIVIYCZ4ec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lQIVIYCZ4ec.m3u8/lQIVIYCZ4ec.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/globalization-theories/", "duration": 347, "id": "lQIVIYCZ4ec", "title": "Globalization theories", "format": "mp4", "description": "", "slug": "globalization-theories", "kind": "Video", "video_id": "lQIVIYCZ4ec", "keywords": "", "youtube_id": "lQIVIYCZ4ec", "readable_id": "globalization-theories"}, "V8C15AfL6Gk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V8C15AfL6Gk.mp4/V8C15AfL6Gk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V8C15AfL6Gk.mp4/V8C15AfL6Gk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V8C15AfL6Gk.m3u8/V8C15AfL6Gk.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/dividing-fractions-pre-alg/my-share-of-soap-as-a-mixed-number-on-a-number-line/", "duration": 151, "id": "V8C15AfL6Gk", "title": "Mixed numbers on a number line", "format": "mp4", "description": "Understand 3/2 on the number line by thinking about it as a mixed number.", "slug": "my-share-of-soap-as-a-mixed-number-on-a-number-line", "kind": "Video", "video_id": "V8C15AfL6Gk", "keywords": "", "youtube_id": "V8C15AfL6Gk", "readable_id": "my-share-of-soap-as-a-mixed-number-on-a-number-line"}, "DXEG8l1FRRk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DXEG8l1FRRk.mp4/DXEG8l1FRRk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DXEG8l1FRRk.mp4/DXEG8l1FRRk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DXEG8l1FRRk.m3u8/DXEG8l1FRRk.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/pisa-rome/nicola-and-giovanni-pisano-1260-1301/", "duration": 799, "id": "DXEG8l1FRRk", "title": "Nicola, Pulpit, Pisa Baptistery; and Giovanni Pisano, Slaughter of the Innocents, Pulpit, Sant'Andrea church, Pistoia", "format": "mp4", "description": "Nicola Pisano, Pulpit, Pisa Baptistery, 1260 Giovanni Pisano, Slaughter of the Innocents, Marble, 1301, Pulpit, Sant'Andrea church, Pistoia Speakers: Dr. David Drogin, Dr. Beth Harris", "slug": "nicola-and-giovanni-pisano-1260-1301", "kind": "Video", "video_id": "DXEG8l1FRRk", "keywords": "Pisano, Pulpit, art history, Florence, smarthistory", "youtube_id": "DXEG8l1FRRk", "readable_id": "nicola-and-giovanni-pisano-1260-1301"}, "uHaKyNplino": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uHaKyNplino.mp4/uHaKyNplino.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uHaKyNplino.mp4/uHaKyNplino.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uHaKyNplino.m3u8/uHaKyNplino.m3u8"}, "duration": 282, "id": "uHaKyNplino", "title": "Converting within the metric system", "format": "mp4", "description": "Converting within the metric system", "path": "khan/math/pre-algebra/rates-and-ratios/metric-system-tutorial/converting-within-the-metric-system/", "slug": "converting-within-the-metric-system", "kind": "Video", "video_id": "uHaKyNplino", "keywords": "U06_L2_T2_we1, Converting, within, the, metric, system, CC_3_MD_8, CC_4_MD_1, CC_5_MD_1, CC_6_RP_3_d", "youtube_id": "uHaKyNplino", "readable_id": "converting-within-the-metric-system"}, "_JGdeRfJJ2U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_JGdeRfJJ2U.mp4/_JGdeRfJJ2U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_JGdeRfJJ2U.mp4/_JGdeRfJJ2U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_JGdeRfJJ2U.m3u8/_JGdeRfJJ2U.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/other-materials6/bhp-how-did-ancestors-evolve/", "duration": 601, "id": "_JGdeRfJJ2U", "title": "How Did Our Ancestors Evolve?", "format": "mp4", "description": "All life on earth shares a common ancestor. After the dinosaurs became extinct, biodiversity flourished.", "slug": "bhp-how-did-ancestors-evolve", "kind": "Video", "video_id": "_JGdeRfJJ2U", "keywords": "", "youtube_id": "_JGdeRfJJ2U", "readable_id": "bhp-how-did-ancestors-evolve"}, "Z_DcXewHHA8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z_DcXewHHA8.mp4/Z_DcXewHHA8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z_DcXewHHA8.mp4/Z_DcXewHHA8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z_DcXewHHA8.m3u8/Z_DcXewHHA8.m3u8"}, "duration": 175, "id": "Z_DcXewHHA8", "title": "Moderate inflation in a good economy", "format": "mp4", "description": "Why there tends to be moderate inflation during good economies", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/inflation-scenarios-tutorial/moderate-inflation-in-a-good-economy/", "slug": "moderate-inflation-in-a-good-economy", "kind": "Video", "video_id": "Z_DcXewHHA8", "keywords": "inflation, deflation, economic, cycles", "youtube_id": "Z_DcXewHHA8", "readable_id": "moderate-inflation-in-a-good-economy"}, "Tx7Cwn5pgQo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tx7Cwn5pgQo.mp4/Tx7Cwn5pgQo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tx7Cwn5pgQo.mp4/Tx7Cwn5pgQo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tx7Cwn5pgQo.m3u8/Tx7Cwn5pgQo.m3u8"}, "duration": 398, "id": "Tx7Cwn5pgQo", "title": "Thinking more about negative exponents", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/thinking-more-about-negative-exponents/", "slug": "thinking-more-about-negative-exponents", "kind": "Video", "video_id": "Tx7Cwn5pgQo", "keywords": "", "youtube_id": "Tx7Cwn5pgQo", "readable_id": "thinking-more-about-negative-exponents"}, "t8nLkge34mE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t8nLkge34mE.mp4/t8nLkge34mE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t8nLkge34mE.mp4/t8nLkge34mE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t8nLkge34mE.m3u8/t8nLkge34mE.m3u8"}, "duration": 1333, "id": "t8nLkge34mE", "title": "THIS IS ISA GENZKEN | MoMA", "format": "mp4", "description": "Listen to how artists understand the work of Isa Genzken.\u00a0To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "this-is-isa-genzken/", "slug": "this-is-isa-genzken", "kind": "Video", "video_id": "t8nLkge34mE", "keywords": "", "youtube_id": "t8nLkge34mE", "readable_id": "this-is-isa-genzken"}, "SL3I_RYjyZo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SL3I_RYjyZo.mp4/SL3I_RYjyZo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SL3I_RYjyZo.mp4/SL3I_RYjyZo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SL3I_RYjyZo.m3u8/SL3I_RYjyZo.m3u8"}, "duration": 634, "id": "SL3I_RYjyZo", "title": "Double Bohr effect", "format": "mp4", "description": "Learn how there are two distinct Bohr effects happening at the same time in the placenta. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/double-bohr-effect/", "slug": "double-bohr-effect", "kind": "Video", "video_id": "SL3I_RYjyZo", "keywords": "", "youtube_id": "SL3I_RYjyZo", "readable_id": "double-bohr-effect"}, "eL965_Lscb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eL965_Lscb8.mp4/eL965_Lscb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eL965_Lscb8.mp4/eL965_Lscb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eL965_Lscb8.m3u8/eL965_Lscb8.m3u8"}, "path": "khan/math/probability/random-variables-topic/binomial_distribution/free-throw-binomial-probability-distribution/", "duration": 519, "id": "eL965_Lscb8", "title": "Free throw binomial probability distribution", "format": "mp4", "description": "", "slug": "free-throw-binomial-probability-distribution", "kind": "Video", "video_id": "eL965_Lscb8", "keywords": "", "youtube_id": "eL965_Lscb8", "readable_id": "free-throw-binomial-probability-distribution"}, "HahjsBApxLE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HahjsBApxLE.mp4/HahjsBApxLE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HahjsBApxLE.mp4/HahjsBApxLE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HahjsBApxLE.m3u8/HahjsBApxLE.m3u8"}, "duration": 644, "id": "HahjsBApxLE", "title": "Snell's law example 1", "format": "mp4", "description": "Snell's Law Example 1", "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/snell-s-law-examples-1/", "slug": "snell-s-law-examples-1", "kind": "Video", "video_id": "HahjsBApxLE", "keywords": "Snell's, Law, Examples", "youtube_id": "HahjsBApxLE", "readable_id": "snell-s-law-examples-1"}, "NG-rrorZcM8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NG-rrorZcM8.mp4/NG-rrorZcM8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NG-rrorZcM8.mp4/NG-rrorZcM8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NG-rrorZcM8.m3u8/NG-rrorZcM8.m3u8"}, "path": "khan/science/chemistry/atomic-structure-and-properties/introduction-to-the-atom/atomic-weight-and-atomic-mass/", "duration": 534, "id": "NG-rrorZcM8", "title": "Atomic weight and atomic mass", "format": "mp4", "description": "", "slug": "atomic-weight-and-atomic-mass", "kind": "Video", "video_id": "NG-rrorZcM8", "keywords": "", "youtube_id": "NG-rrorZcM8", "readable_id": "atomic-weight-and-atomic-mass"}, "TmFET3F64pE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TmFET3F64pE.mp4/TmFET3F64pE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TmFET3F64pE.mp4/TmFET3F64pE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TmFET3F64pE.m3u8/TmFET3F64pE.m3u8"}, "duration": 380, "id": "TmFET3F64pE", "title": "More detail on the Treaty of Versailles and Germany", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/ww1-aftermath/more-detail-on-the-treaty-of-versailles-and-germany/", "slug": "more-detail-on-the-treaty-of-versailles-and-germany", "kind": "Video", "video_id": "TmFET3F64pE", "keywords": "", "youtube_id": "TmFET3F64pE", "readable_id": "more-detail-on-the-treaty-of-versailles-and-germany"}, "lb8du4HueQA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lb8du4HueQA.mp4/lb8du4HueQA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lb8du4HueQA.mp4/lb8du4HueQA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lb8du4HueQA.m3u8/lb8du4HueQA.m3u8"}, "duration": 278, "id": "lb8du4HueQA", "title": "Instantaneous speed and velocity", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/speed-and-velocity/instantaneous-speed-and-velocity/", "slug": "instantaneous-speed-and-velocity", "kind": "Video", "video_id": "lb8du4HueQA", "keywords": "", "youtube_id": "lb8du4HueQA", "readable_id": "instantaneous-speed-and-velocity"}, "_UrfHFEBIpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_UrfHFEBIpU.mp4/_UrfHFEBIpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_UrfHFEBIpU.mp4/_UrfHFEBIpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_UrfHFEBIpU.m3u8/_UrfHFEBIpU.m3u8"}, "duration": 619, "id": "_UrfHFEBIpU", "title": "Introduction to tension", "format": "mp4", "description": "An introduction to tension. Solving for the tension(s) in a set of wires when a weight is hanging from them.", "path": "khan/test-prep/mcat/physical-processes/force-of-tension/introduction-to-tension/", "slug": "introduction-to-tension", "kind": "Video", "video_id": "_UrfHFEBIpU", "keywords": "tension, force, vectors, physics, mass, newton, trigonometry", "youtube_id": "_UrfHFEBIpU", "readable_id": "introduction-to-tension"}, "omvNINaRdxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/omvNINaRdxg.mp4/omvNINaRdxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/omvNINaRdxg.mp4/omvNINaRdxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/omvNINaRdxg.m3u8/omvNINaRdxg.m3u8"}, "duration": 566, "id": "omvNINaRdxg", "title": "Stellar parallax", "format": "mp4", "description": "Another version of the stellar parallax introduction", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-parallax-tutorial/stellar-parallax/", "slug": "stellar-parallax", "kind": "Video", "video_id": "omvNINaRdxg", "keywords": "stellar, parallax", "youtube_id": "omvNINaRdxg", "readable_id": "stellar-parallax"}, "NX0ZPtB_QFY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NX0ZPtB_QFY.mp4/NX0ZPtB_QFY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NX0ZPtB_QFY.mp4/NX0ZPtB_QFY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NX0ZPtB_QFY.m3u8/NX0ZPtB_QFY.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/nucleic-acid-structure-1/", "duration": 603, "id": "NX0ZPtB_QFY", "title": "Nucleic acid structure 1", "format": "mp4", "description": "", "slug": "nucleic-acid-structure-1", "kind": "Video", "video_id": "NX0ZPtB_QFY", "keywords": "", "youtube_id": "NX0ZPtB_QFY", "readable_id": "nucleic-acid-structure-1"}, "dstNU7It-Ro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dstNU7It-Ro.mp4/dstNU7It-Ro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dstNU7It-Ro.mp4/dstNU7It-Ro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dstNU7It-Ro.m3u8/dstNU7It-Ro.m3u8"}, "duration": 402, "id": "dstNU7It-Ro", "title": "Simplifying rational expressions 2", "format": "mp4", "description": "U11_L1_T1_we2 Simplifying Rational Expressions 2", "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying-rational-expressions-2/", "slug": "simplifying-rational-expressions-2", "kind": "Video", "video_id": "dstNU7It-Ro", "keywords": "U11_L1_T1_we2, Simplifying, Rational, Expressions, CC_39336_A-APR_6, CC_39336_A-APR_7, CC_39336_A-CED_1, CC_39336_A-REI_2, CC_39336_A-SSE_2, CC_39336_F-IF_5", "youtube_id": "dstNU7It-Ro", "readable_id": "simplifying-rational-expressions-2"}, "dYAoiLhOuao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dYAoiLhOuao.mp4/dYAoiLhOuao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dYAoiLhOuao.mp4/dYAoiLhOuao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dYAoiLhOuao.m3u8/dYAoiLhOuao.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/ship-of-theseus/", "duration": 487, "id": "dYAoiLhOuao", "title": "Metaphysics: Ship of theseus", "format": "mp4", "description": "Jenn introduces us to a puzzle that has bedeviled philosophy since the ancient Greeks: the Ship of Theseus. She tells the Ship of Theseus story, and draws out the more general question behind it: what does it take for an object to persist over time? She then breaks this ancient problem down with modern clarity and rigor.\n\nSpeaker: Dr.\u00a0Jennifer Wang, Lecturer, Stanford University", "slug": "ship-of-theseus", "kind": "Video", "video_id": "dYAoiLhOuao", "keywords": "", "youtube_id": "dYAoiLhOuao", "readable_id": "ship-of-theseus"}, "QsqnJHggDaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QsqnJHggDaY.mp4/QsqnJHggDaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QsqnJHggDaY.mp4/QsqnJHggDaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QsqnJHggDaY.m3u8/QsqnJHggDaY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-asthma/asthma-diagnosis/", "duration": 594, "id": "QsqnJHggDaY", "title": "Asthma diagnosis", "format": "mp4", "description": "", "slug": "asthma-diagnosis", "kind": "Video", "video_id": "QsqnJHggDaY", "keywords": "", "youtube_id": "QsqnJHggDaY", "readable_id": "asthma-diagnosis"}, "8WkUjPz0nQQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8WkUjPz0nQQ.mp4/8WkUjPz0nQQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8WkUjPz0nQQ.mp4/8WkUjPz0nQQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8WkUjPz0nQQ.m3u8/8WkUjPz0nQQ.m3u8"}, "duration": 136, "id": "8WkUjPz0nQQ", "title": "\"One: Number 31, 1950\" by Jackson Pollock, 1950 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how she teaches \u201cOne: Number 31, 1950\" by Jackson Pollock, 1950.\u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-pollock/", "slug": "teaching-pollock", "kind": "Video", "video_id": "8WkUjPz0nQQ", "keywords": "", "youtube_id": "8WkUjPz0nQQ", "readable_id": "teaching-pollock"}, "JJawhaMqaXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JJawhaMqaXg.mp4/JJawhaMqaXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JJawhaMqaXg.mp4/JJawhaMqaXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JJawhaMqaXg.m3u8/JJawhaMqaXg.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/ordering-decimals-example/", "duration": 159, "id": "JJawhaMqaXg", "title": "Comparing decimals: ordering from least to greatest", "format": "mp4", "description": "This is a fun example where we reorder decimals from smallest to largest. You're looking for the place value that is the most signifiant, and then working backwards.", "slug": "ordering-decimals-example", "kind": "Video", "video_id": "JJawhaMqaXg", "keywords": "", "youtube_id": "JJawhaMqaXg", "readable_id": "ordering-decimals-example"}, "cMhgFt1xT7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cMhgFt1xT7c.mp4/cMhgFt1xT7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cMhgFt1xT7c.mp4/cMhgFt1xT7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cMhgFt1xT7c.m3u8/cMhgFt1xT7c.m3u8"}, "duration": 413, "id": "cMhgFt1xT7c", "title": "Breastfeeding - Letdown Reflex", "format": "mp4", "description": "Learn how hormones help to coordinate a baby's need for milk (sucking or crying) with a woman's release of milk. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "breastfeeding-letdown-reflex/", "slug": "breastfeeding-letdown-reflex", "kind": "Video", "video_id": "cMhgFt1xT7c", "keywords": "", "youtube_id": "cMhgFt1xT7c", "readable_id": "breastfeeding-letdown-reflex"}, "4xBwJoi53hk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4xBwJoi53hk.mp4/4xBwJoi53hk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4xBwJoi53hk.mp4/4xBwJoi53hk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4xBwJoi53hk.m3u8/4xBwJoi53hk.m3u8"}, "duration": 163, "id": "4xBwJoi53hk", "title": "\"Cracking the Code\" with Dirk Breiding", "format": "mp4", "description": "Met curator Dirk Breiding on mystery behind Crossbow of Ulrich V of W\u00fcrttemberg, attributed to Heinrich Heid von Winterthur.\u00a0\n\nDated 1460 in the carved ivory decoration, this is the earliest knoiwn dated crossbow in existence. The ivory is inscribed with the coats of arms of W\u00fcrttemberg and Savoy, referring to the owner, Count Ulrich V of W\u00fcrttemberg (1413\u20131480), and his third wife, Princess Marguerite of Savoy (1420\u20131479). Above the trigger is a German benediction rendered in Hebrew letters. This is a rare and early instance of Hebraic script on a personal item intended for a Christian patron. It can be translated as \"Hold God dear and be high-hearted!\" or \"Hold God dear, high-hearted one!\"\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "cracking-the-code/", "slug": "cracking-the-code", "kind": "Video", "video_id": "4xBwJoi53hk", "keywords": "arms and armor, authority, ivory, metal, mystery, politics, wood, writing, Europe", "youtube_id": "4xBwJoi53hk", "readable_id": "cracking-the-code"}, "nZ90fsoVvmc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nZ90fsoVvmc.mp4/nZ90fsoVvmc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nZ90fsoVvmc.mp4/nZ90fsoVvmc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nZ90fsoVvmc.m3u8/nZ90fsoVvmc.m3u8"}, "duration": 296, "id": "nZ90fsoVvmc", "title": "GMAT: Math 48", "format": "mp4", "description": "226, pg. 183", "path": "khan/test-prep/gmat/problem-solving/gmat-math-48/", "slug": "gmat-math-48", "kind": "Video", "video_id": "nZ90fsoVvmc", "keywords": "GMAT, Math, problem, solving", "youtube_id": "nZ90fsoVvmc", "readable_id": "gmat-math-48"}, "LMfPceMzLWg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LMfPceMzLWg.mp4/LMfPceMzLWg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LMfPceMzLWg.mp4/LMfPceMzLWg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LMfPceMzLWg.m3u8/LMfPceMzLWg.m3u8"}, "path": "khan/computing/computer-programming/programming-natural-simulations/intro-natural-simulations/welcome-natural-simulations/", "duration": 155, "id": "LMfPceMzLWg", "title": "Welcome to Natural Simulations", "format": "mp4", "description": "", "slug": "welcome-natural-simulations", "kind": "Video", "video_id": "LMfPceMzLWg", "keywords": "", "youtube_id": "LMfPceMzLWg", "readable_id": "welcome-natural-simulations"}, "xGTTT6nG3Ns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xGTTT6nG3Ns.mp4/xGTTT6nG3Ns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xGTTT6nG3Ns.mp4/xGTTT6nG3Ns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xGTTT6nG3Ns.m3u8/xGTTT6nG3Ns.m3u8"}, "path": "khan/humanities/art-americas/us-art-19c/realism-us/sea-change/", "duration": 169, "id": "xGTTT6nG3Ns", "title": "\"Sea Change\" with H. Barbara Weinberg", "format": "mp4", "description": "Met curator H. Barbara Weinberg on the power of nature in Winslow Homer\u2019s Northeaster.\n\nView this work on the metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "slug": "sea-change", "kind": "Video", "video_id": "xGTTT6nG3Ns", "keywords": "canvas, community, control, nature, painting, turmoil, North America", "youtube_id": "xGTTT6nG3Ns", "readable_id": "sea-change"}, "p5nej7Gy7kQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p5nej7Gy7kQ.mp4/p5nej7Gy7kQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p5nej7Gy7kQ.mp4/p5nej7Gy7kQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p5nej7Gy7kQ.m3u8/p5nej7Gy7kQ.m3u8"}, "duration": 204, "id": "p5nej7Gy7kQ", "title": "Ad Reinhardt", "format": "mp4", "description": "Take time with Ad Reinhardt's black canvases and discover the rewards of contemplation. To learn more and create your own works, take our online course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/ny-school/moma-ad-reinhardt/", "slug": "moma-ad-reinhardt", "kind": "Video", "video_id": "p5nej7Gy7kQ", "keywords": "", "youtube_id": "p5nej7Gy7kQ", "readable_id": "moma-ad-reinhardt"}, "cdRLBOnLTDk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cdRLBOnLTDk.mp4/cdRLBOnLTDk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cdRLBOnLTDk.mp4/cdRLBOnLTDk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cdRLBOnLTDk.m3u8/cdRLBOnLTDk.m3u8"}, "path": "khan/math/precalculus/prob_comb/basic_prob_precalc/events-and-outcomes-1/", "duration": 131, "id": "cdRLBOnLTDk", "title": "Finding probablity example 3", "format": "mp4", "description": "Now we're working out the probability of randomly selecting a yellow marble from a bag of multi-colored marbles. Let's practice together.", "slug": "events-and-outcomes-1", "kind": "Video", "video_id": "cdRLBOnLTDk", "keywords": "U12_L2_T1_we1, Events, and, Outcomes, CC_7_SP_5, CC_7_SP_6, CC_7_SP_7, CC_7_SP_7_a, CC_7_SP_7_b", "youtube_id": "cdRLBOnLTDk", "readable_id": "events-and-outcomes-1"}, "wYuAwm-5-Bk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wYuAwm-5-Bk.mp4/wYuAwm-5-Bk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wYuAwm-5-Bk.mp4/wYuAwm-5-Bk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wYuAwm-5-Bk.m3u8/wYuAwm-5-Bk.m3u8"}, "duration": 356, "id": "wYuAwm-5-Bk", "title": "Normal and inferior goods", "format": "mp4", "description": "How the demand for some goods could actually go down if incomes go up", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/demand-curve-tutorial/normal-and-inferior-goods/", "slug": "normal-and-inferior-goods", "kind": "Video", "video_id": "wYuAwm-5-Bk", "keywords": "normal, inferior, income, effect", "youtube_id": "wYuAwm-5-Bk", "readable_id": "normal-and-inferior-goods"}, "XWq8bplP-_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XWq8bplP-_E.mp4/XWq8bplP-_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XWq8bplP-_E.mp4/XWq8bplP-_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XWq8bplP-_E.m3u8/XWq8bplP-_E.m3u8"}, "duration": 229, "id": "XWq8bplP-_E", "title": "Prime factorization exercise", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/factors-multiples/prime_factorization/prime-factorization-exercise/", "slug": "prime-factorization-exercise", "kind": "Video", "video_id": "XWq8bplP-_E", "keywords": "", "youtube_id": "XWq8bplP-_E", "readable_id": "prime-factorization-exercise"}, "vMTe6qXUHVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vMTe6qXUHVs.mp4/vMTe6qXUHVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vMTe6qXUHVs.mp4/vMTe6qXUHVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vMTe6qXUHVs.m3u8/vMTe6qXUHVs.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/early-methods-of-studying-the-brain/", "duration": 387, "id": "vMTe6qXUHVs", "title": "Early methods of studying the brain", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "early-methods-of-studying-the-brain", "kind": "Video", "video_id": "vMTe6qXUHVs", "keywords": "", "youtube_id": "vMTe6qXUHVs", "readable_id": "early-methods-of-studying-the-brain"}, "u1UKIljUWuc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u1UKIljUWuc.mp4/u1UKIljUWuc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u1UKIljUWuc.mp4/u1UKIljUWuc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u1UKIljUWuc.m3u8/u1UKIljUWuc.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/integral-test-intuition/", "duration": 526, "id": "u1UKIljUWuc", "title": "Integral test intuition", "format": "mp4", "description": "", "slug": "integral-test-intuition", "kind": "Video", "video_id": "u1UKIljUWuc", "keywords": "", "youtube_id": "u1UKIljUWuc", "readable_id": "integral-test-intuition"}, "9Wb-T1F033Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9Wb-T1F033Q.mp4/9Wb-T1F033Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9Wb-T1F033Q.mp4/9Wb-T1F033Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9Wb-T1F033Q.m3u8/9Wb-T1F033Q.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/spain/making-spanish-polychrome-sculpture/", "duration": 723, "id": "9Wb-T1F033Q", "title": "Making a Spanish polychrome sculpture", "format": "mp4", "description": "17th Century Spanish polychrome sculpture can achieve remarkable realism. Learn about the techniques estofado\u2014painting and incising to portray silk fabrics, and encarnaciones\u2014for the hair and skin. Love art? Follow us on Google+", "slug": "making-spanish-polychrome-sculpture", "kind": "Video", "video_id": "9Wb-T1F033Q", "keywords": "", "youtube_id": "9Wb-T1F033Q", "readable_id": "making-spanish-polychrome-sculpture"}, "1AZnFszUroI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1AZnFszUroI.mp4/1AZnFszUroI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1AZnFszUroI.mp4/1AZnFszUroI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1AZnFszUroI.m3u8/1AZnFszUroI.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/the-vestibular-system-balance-and-dizziness/", "duration": 405, "id": "1AZnFszUroI", "title": "The vestibular system, balance, and dizziness", "format": "mp4", "description": "", "slug": "the-vestibular-system-balance-and-dizziness", "kind": "Video", "video_id": "1AZnFszUroI", "keywords": "", "youtube_id": "1AZnFszUroI", "readable_id": "the-vestibular-system-balance-and-dizziness"}, "iEKA0jUstPs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iEKA0jUstPs.mp4/iEKA0jUstPs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iEKA0jUstPs.mp4/iEKA0jUstPs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iEKA0jUstPs.m3u8/iEKA0jUstPs.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/hydrohalogenation/", "duration": 723, "id": "iEKA0jUstPs", "title": "Hydrohalogenation", "format": "mp4", "description": "", "slug": "hydrohalogenation", "kind": "Video", "video_id": "iEKA0jUstPs", "keywords": "", "youtube_id": "iEKA0jUstPs", "readable_id": "hydrohalogenation"}, "yV4Xa8Xtmrc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yV4Xa8Xtmrc.mp4/yV4Xa8Xtmrc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yV4Xa8Xtmrc.mp4/yV4Xa8Xtmrc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yV4Xa8Xtmrc.m3u8/yV4Xa8Xtmrc.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formulas-trig/cosine-angle-addition/", "duration": 372, "id": "yV4Xa8Xtmrc", "title": "Angle addition formula with cosine", "format": "mp4", "description": "", "slug": "cosine-angle-addition", "kind": "Video", "video_id": "yV4Xa8Xtmrc", "keywords": "", "youtube_id": "yV4Xa8Xtmrc", "readable_id": "cosine-angle-addition"}, "XJGiPzcalwU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XJGiPzcalwU.mp4/XJGiPzcalwU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XJGiPzcalwU.mp4/XJGiPzcalwU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XJGiPzcalwU.m3u8/XJGiPzcalwU.m3u8"}, "duration": 210, "id": "XJGiPzcalwU", "title": "New dinosaur research: Microraptor's feather color revealed", "format": "mp4", "description": "A pigeon-sized, four-winged dinosaur known as Microraptor had black iridescent feathers when it roamed the Earth 130 million years ago, according to research led by a team of American and Chinese scientists that includes Museum researchers. The dinosaur\u2019s fossilized plumage is the earliest record of iridescent feather color.", "path": "microraptor-feather-color/", "slug": "microraptor-feather-color", "kind": "Video", "video_id": "XJGiPzcalwU", "keywords": "", "youtube_id": "XJGiPzcalwU", "readable_id": "microraptor-feather-color"}, "QpcACa39YtA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QpcACa39YtA.mp4/QpcACa39YtA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QpcACa39YtA.mp4/QpcACa39YtA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QpcACa39YtA.m3u8/QpcACa39YtA.m3u8"}, "duration": 532, "id": "QpcACa39YtA", "title": "Cell membrane introduction", "format": "mp4", "description": "Learn about how phospholipids form the cell membrane, and what types of molecules can passively diffuse thorugh the membrane. By William Tsai. ", "path": "khan/test-prep/mcat/cells/cell-membrane-overview/cell-membrane-introduction/", "slug": "cell-membrane-introduction", "kind": "Video", "video_id": "QpcACa39YtA", "keywords": "", "youtube_id": "QpcACa39YtA", "readable_id": "cell-membrane-introduction"}, "JCKshDyxjuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JCKshDyxjuw.mp4/JCKshDyxjuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JCKshDyxjuw.mp4/JCKshDyxjuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JCKshDyxjuw.m3u8/JCKshDyxjuw.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/claude-monet-poplars-1891/", "duration": 235, "id": "JCKshDyxjuw", "title": "Monet, Poplars", "format": "mp4", "description": "Claude Monet, Poplars, 1891, oil on canvas, 36-5/8 x 29-3/16 inches / 93 x 74.1 cm (Philadelphia Museum of Art)", "slug": "claude-monet-poplars-1891", "kind": "Video", "video_id": "JCKshDyxjuw", "keywords": "Claude Monet, Poplars, 1891, Philadelphia Museum of Art, Philadelphia, Monet, series, Impressionism, light, fleeting, landscape, art, painting, art history, Smarthistory, Khan Academy, Google Art Project, OER, education", "youtube_id": "JCKshDyxjuw", "readable_id": "claude-monet-poplars-1891"}, "OY79AuGZDNI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OY79AuGZDNI.mp4/OY79AuGZDNI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OY79AuGZDNI.mp4/OY79AuGZDNI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OY79AuGZDNI.m3u8/OY79AuGZDNI.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/akkadian/victory-stele-of-naram-sin-2254-2218-b-c-e/", "duration": 204, "id": "OY79AuGZDNI", "title": "Victory Stele of Naram-Sin", "format": "mp4", "description": "Victory Stele of Naram-Sin, Akkadian, pink limestone, 2254-2218 B.C.E. (Louvre, Paris) This monument depicts the Akkadian victory over the Lullubi Mountain people. In the 12th century B.C.E., 1,000 years after it was originally made, the Elamite king, Shutruk-Nahhunte, attacked Babylon and, according to his later inscription, the stele was taken to Susa in what is now Iran. A stele is a vertical stone monument or marker often inscribed with text or relief carving. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "victory-stele-of-naram-sin-2254-2218-b-c-e", "kind": "Video", "video_id": "OY79AuGZDNI", "keywords": "Naram-Sin, Ancient Near East, Akkad, Akkadian, art history, history of art, smarthistory, Louvre", "youtube_id": "OY79AuGZDNI", "readable_id": "victory-stele-of-naram-sin-2254-2218-b-c-e"}, "A_ToB9T-de8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A_ToB9T-de8.mp4/A_ToB9T-de8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A_ToB9T-de8.mp4/A_ToB9T-de8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A_ToB9T-de8.m3u8/A_ToB9T-de8.m3u8"}, "duration": 37, "id": "A_ToB9T-de8", "title": "Are 2 magnets stronger than 1?", "format": "mp4", "description": "Will the power of two magnets stuck together increase the overall force? Why?", "path": "khan/science/discoveries-projects/discoveries/measure-magnets/are-two-magnets-stronger-than-one/", "slug": "are-two-magnets-stronger-than-one", "kind": "Video", "video_id": "A_ToB9T-de8", "keywords": "magnetic force", "youtube_id": "A_ToB9T-de8", "readable_id": "are-two-magnets-stronger-than-one"}, "QhuJn8YBtmg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QhuJn8YBtmg.mp4/QhuJn8YBtmg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QhuJn8YBtmg.mp4/QhuJn8YBtmg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QhuJn8YBtmg.m3u8/QhuJn8YBtmg.m3u8"}, "duration": 564, "id": "QhuJn8YBtmg", "title": "Introduction to torque", "format": "mp4", "description": "An introduction to torque", "path": "khan/test-prep/mcat/physical-processes/newtons-laws-and-equilibrium/introduction-to-torque/", "slug": "introduction-to-torque", "kind": "Video", "video_id": "QhuJn8YBtmg", "keywords": "physics, torque, rotation", "youtube_id": "QhuJn8YBtmg", "readable_id": "introduction-to-torque"}, "TEysuDHExc4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TEysuDHExc4.mp4/TEysuDHExc4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TEysuDHExc4.mp4/TEysuDHExc4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TEysuDHExc4.m3u8/TEysuDHExc4.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/creation-complex-elements/bhp-navigating-periodic-table/", "duration": 338, "id": "TEysuDHExc4", "title": "Navigating the Periodic Table", "format": "mp4", "description": "Learn the basic organization of the periodic table and what it tells us about the chemical elements.", "slug": "bhp-navigating-periodic-table", "kind": "Video", "video_id": "TEysuDHExc4", "keywords": "", "youtube_id": "TEysuDHExc4", "readable_id": "bhp-navigating-periodic-table"}, "uwMYpTYsNZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uwMYpTYsNZM.mp4/uwMYpTYsNZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uwMYpTYsNZM.mp4/uwMYpTYsNZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uwMYpTYsNZM.m3u8/uwMYpTYsNZM.m3u8"}, "duration": 1233, "id": "uwMYpTYsNZM", "title": "Helper T cells", "format": "mp4", "description": "Introduction to helper T cells and their role in activating B cells", "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/helper-t-cells/", "slug": "helper-t-cells", "kind": "Video", "video_id": "uwMYpTYsNZM", "keywords": "Cell, lymphocyte, immunity", "youtube_id": "uwMYpTYsNZM", "readable_id": "helper-t-cells"}, "a16uKH2K7gM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a16uKH2K7gM.mp4/a16uKH2K7gM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a16uKH2K7gM.mp4/a16uKH2K7gM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a16uKH2K7gM.m3u8/a16uKH2K7gM.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/dvd_player/what-is-inside-a-dvd-player-2-of-5/", "duration": 312, "id": "a16uKH2K7gM", "title": "What is inside a DVD player? (2 of 5)", "format": "mp4", "description": "In this video we explore the power supply inside a DVD player.", "slug": "what-is-inside-a-dvd-player-2-of-5", "kind": "Video", "video_id": "a16uKH2K7gM", "keywords": "digital video disk, DVD, player, power supply, SMPS, switch mode power supply, high frequency, DC to DC transformer, bridge rectifier, smoothing capacitor, electrolytic capacitor, ceramic disk capacitor, diode, opto coupler, integrated circuit, power regul", "youtube_id": "a16uKH2K7gM", "readable_id": "what-is-inside-a-dvd-player-2-of-5"}, "3h4UK62Qrbo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3h4UK62Qrbo.mp4/3h4UK62Qrbo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3h4UK62Qrbo.mp4/3h4UK62Qrbo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3h4UK62Qrbo.m3u8/3h4UK62Qrbo.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/prime_numbers/recognizing-prime-numbers/", "duration": 280, "id": "3h4UK62Qrbo", "title": "Recognizing prime and composite numbers", "format": "mp4", "description": "Can you recognize the prime numbers in this group of numbers? Which are prime, composite, or neither?", "slug": "recognizing-prime-numbers", "kind": "Video", "video_id": "3h4UK62Qrbo", "keywords": "U02_L1_T3_we4, Recognizing, Prime, Numbers", "youtube_id": "3h4UK62Qrbo", "readable_id": "recognizing-prime-numbers"}, "GvgJ2_7P9SA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GvgJ2_7P9SA.mp4/GvgJ2_7P9SA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GvgJ2_7P9SA.mp4/GvgJ2_7P9SA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GvgJ2_7P9SA.m3u8/GvgJ2_7P9SA.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-word-problem-3/", "duration": 139, "id": "GvgJ2_7P9SA", "title": "Multiplying fractions word problem: milk love", "format": "mp4", "description": "Who doesn't love milk? Our family sure does. Let's figure out how much milk is consumed each month if each person consumes a fractional amount of milk.", "slug": "multiplying-fractions-word-problem-3", "kind": "Video", "video_id": "GvgJ2_7P9SA", "keywords": "", "youtube_id": "GvgJ2_7P9SA", "readable_id": "multiplying-fractions-word-problem-3"}, "7qAld9bGwlA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7qAld9bGwlA.mp4/7qAld9bGwlA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7qAld9bGwlA.mp4/7qAld9bGwlA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7qAld9bGwlA.m3u8/7qAld9bGwlA.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/health-and-healthcare-disparities-in-the-us/", "duration": 241, "id": "7qAld9bGwlA", "title": "Health and healthcare disparities in the US", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "health-and-healthcare-disparities-in-the-us", "kind": "Video", "video_id": "7qAld9bGwlA", "keywords": "", "youtube_id": "7qAld9bGwlA", "readable_id": "health-and-healthcare-disparities-in-the-us"}, "SjQG3rKSZUQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SjQG3rKSZUQ.mp4/SjQG3rKSZUQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SjQG3rKSZUQ.mp4/SjQG3rKSZUQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SjQG3rKSZUQ.m3u8/SjQG3rKSZUQ.m3u8"}, "duration": 596, "id": "SjQG3rKSZUQ", "title": "Stoichiometry", "format": "mp4", "description": "Introduction to stoichiometry.", "path": "khan/test-prep/mcat/physical-processes/stoichiometry/stoichiometry/", "slug": "stoichiometry", "kind": "Video", "video_id": "SjQG3rKSZUQ", "keywords": "chemistry, reagent, reactant, stoichiometry", "youtube_id": "SjQG3rKSZUQ", "readable_id": "stoichiometry"}, "dTsUyXXudvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dTsUyXXudvA.mp4/dTsUyXXudvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dTsUyXXudvA.mp4/dTsUyXXudvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dTsUyXXudvA.m3u8/dTsUyXXudvA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system/rn-the-respiratory-system/how-does-lung-volume-change/", "duration": 490, "id": "dTsUyXXudvA", "title": "How does lung volume change?", "format": "mp4", "description": "Learn about how muscle contraction and lung recoil actually help the lungs change their volume with every breath! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "how-does-lung-volume-change", "kind": "Video", "video_id": "dTsUyXXudvA", "keywords": "", "youtube_id": "dTsUyXXudvA", "readable_id": "how-does-lung-volume-change"}, "PpvexFbd8e8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PpvexFbd8e8.mp4/PpvexFbd8e8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PpvexFbd8e8.mp4/PpvexFbd8e8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PpvexFbd8e8.m3u8/PpvexFbd8e8.m3u8"}, "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neural-cells/ependymal-cells/", "duration": 220, "id": "PpvexFbd8e8", "title": "Ependymal cells", "format": "mp4", "description": "This video describes the structure and function of ependymal cells.\u00a0 By Matt Jensen.", "slug": "ependymal-cells", "kind": "Video", "video_id": "PpvexFbd8e8", "keywords": "", "youtube_id": "PpvexFbd8e8", "readable_id": "ependymal-cells"}, "QlM21sl-TDg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QlM21sl-TDg.mp4/QlM21sl-TDg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QlM21sl-TDg.mp4/QlM21sl-TDg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QlM21sl-TDg.m3u8/QlM21sl-TDg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/spin-spin-splitting-coupling/", "duration": 742, "id": "QlM21sl-TDg", "title": "Spin-spin splitting (coupling)", "format": "mp4", "description": "", "slug": "spin-spin-splitting-coupling", "kind": "Video", "video_id": "QlM21sl-TDg", "keywords": "", "youtube_id": "QlM21sl-TDg", "readable_id": "spin-spin-splitting-coupling"}, "BDWqwcTtZa0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BDWqwcTtZa0.mp4/BDWqwcTtZa0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BDWqwcTtZa0.mp4/BDWqwcTtZa0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BDWqwcTtZa0.m3u8/BDWqwcTtZa0.m3u8"}, "path": "khan/humanities/history/1600s-1800s/french-revolution-tutorial/french-revolution-part-1/", "duration": 1025, "id": "BDWqwcTtZa0", "title": "French Revolution (part 1)", "format": "mp4", "description": "Part 1 of the French Revolution. From the Convocation of the Estates General to the storming of the Bastille", "slug": "french-revolution-part-1", "kind": "Video", "video_id": "BDWqwcTtZa0", "keywords": "history, french, revolution, bastille", "youtube_id": "BDWqwcTtZa0", "readable_id": "french-revolution-part-1"}, "AcpIO62x2oo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AcpIO62x2oo.mp4/AcpIO62x2oo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AcpIO62x2oo.mp4/AcpIO62x2oo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AcpIO62x2oo.m3u8/AcpIO62x2oo.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-subtract-negatives-pre-alg/adding-negative-numbers/", "duration": 341, "id": "AcpIO62x2oo", "title": "Adding negative numbers", "format": "mp4", "description": "Use a number line and absolute value to add negative numbers.", "slug": "adding-negative-numbers", "kind": "Video", "video_id": "AcpIO62x2oo", "keywords": "u9_l2_t1_we1, Adding, Negative, Numbers", "youtube_id": "AcpIO62x2oo", "readable_id": "adding-negative-numbers"}, "-YBon6e5y0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-YBon6e5y0Y.mp4/-YBon6e5y0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-YBon6e5y0Y.mp4/-YBon6e5y0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-YBon6e5y0Y.m3u8/-YBon6e5y0Y.m3u8"}, "duration": 161, "id": "-YBon6e5y0Y", "title": "\"Centerpiece\" with Carlos A. Pic\u00f3n", "format": "mp4", "description": "Met curator Carlos A. Pic\u00f3n on oblivion in Statue of Dionysos leaning on a female figure (\u201cHope Dionysos\u201d), restored by Vincenzo Pacetti.\n\nThe head is ancient but from another statue. Restorations by the eighteenth-century Italian sculptor Vincenzo Pacetti: (on Dionysos) ivy wreath, neck, both arms, lower right leg, calf and boot of left leg, hanging drapery on right side; (on the archaistic image) uplifted corner of drapery, both arms, lower half of lower legs, feet, pedestal, entire base.\n\nDionysos, god of wine and divine intoxication, wears a panther skin over his short chiton and his high sandals with animal heads on the overhanging skin flaps. He\u00a0stands beside an archaistic female image whose pose and dress imitate those of Greek statues carved in the sixth century B.C.E. It is difficult to know whether the original Greek bronze statue of Dionysos, of which this is a copy, included the female figure. Supports in the form of pillars, herms, and small statues were not uncommon in Classical art, but this figure may have been added to support the outstretched arm and may represent Spes, a Roman personification of Hope, who was commonly shown as an archaistic maiden.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a\u00a0related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "centerpiece/", "slug": "centerpiece", "kind": "Video", "video_id": "-YBon6e5y0Y", "keywords": "authority, belief, body, sculpture, stone, Europe", "youtube_id": "-YBon6e5y0Y", "readable_id": "centerpiece"}, "uZYLN_Ouu5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uZYLN_Ouu5U.mp4/uZYLN_Ouu5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uZYLN_Ouu5U.mp4/uZYLN_Ouu5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uZYLN_Ouu5U.m3u8/uZYLN_Ouu5U.m3u8"}, "duration": 414, "id": "uZYLN_Ouu5U", "title": "Neil deGrasse Tyson on Finding Krypton", "format": "mp4", "description": "During a roundtable discussion with journalists, Hayden Planetarium Director Neil deGrasse Tyson explains how he helped Superman find his home planet of Krypton. Tyson appears as a character in the recent DC Comics' ACTION COMICS #14, \"Star Light, Star Bright.\" In real life, he consulted a star index and found a real star that supported the backstory of the comic. In this video Tyson explains how the real power of interferometry combined with Superman\u2019s super powers could work together.", "path": "finding-krypton/", "slug": "finding-krypton", "kind": "Video", "video_id": "uZYLN_Ouu5U", "keywords": "", "youtube_id": "uZYLN_Ouu5U", "readable_id": "finding-krypton"}, "mxsYHiDVNlk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mxsYHiDVNlk.mp4/mxsYHiDVNlk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mxsYHiDVNlk.mp4/mxsYHiDVNlk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mxsYHiDVNlk.m3u8/mxsYHiDVNlk.m3u8"}, "duration": 594, "id": "mxsYHiDVNlk", "title": "Introduction to balance sheets", "format": "mp4", "description": "Using a home purchase to illustrate assets, liabilities and owner's equity.", "path": "khan/economics-finance-domain/core-finance/housing/home-equity-tutorial/introduction-to-balance-sheets/", "slug": "introduction-to-balance-sheets", "kind": "Video", "video_id": "mxsYHiDVNlk", "keywords": "Finance, accounting, equity, mortgage, debt, credit, crunch", "youtube_id": "mxsYHiDVNlk", "readable_id": "introduction-to-balance-sheets"}, "YFtf-xA7_oM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YFtf-xA7_oM.mp4/YFtf-xA7_oM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YFtf-xA7_oM.mp4/YFtf-xA7_oM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YFtf-xA7_oM.m3u8/YFtf-xA7_oM.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/paul-c-zanne-the-large-bathers-1906/", "duration": 286, "id": "YFtf-xA7_oM", "title": "Cezanne, The Large Bathers", "format": "mp4", "description": "Paul C\u00e9zanne, The Large Bathers, 1906, oil on canvas, 82-7/8 x 98-3/4 inches / 210.5 x 250.8 cm (Philadelphia Museum of Art). In the Google Art Project: http://www.googleartproject.com/collection/philadelphia-museum-of-art/artwork/the-large-bathers-paul-cezanne-french-1839-1906/808050/", "slug": "paul-c-zanne-the-large-bathers-1906", "kind": "Video", "video_id": "YFtf-xA7_oM", "keywords": "Paul C\u00e9zanne, Large Bathers, 1906, Philadelphia, Bathers, C\u00e9zanne, Cezanne, Post-Impressionism, French, France, painting, landscape, titian, figure, Modern Art, Google Art Project, Smarthistory, Khan Academy, OER, art history", "youtube_id": "YFtf-xA7_oM", "readable_id": "paul-c-zanne-the-large-bathers-1906"}, "ORES6xSf4KI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ORES6xSf4KI.mp4/ORES6xSf4KI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ORES6xSf4KI.mp4/ORES6xSf4KI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ORES6xSf4KI.m3u8/ORES6xSf4KI.m3u8"}, "duration": 324, "id": "ORES6xSf4KI", "title": "Graham Sutherland's hands-on sketchbooks", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nBy the 1930s, painter Graham Sutherland had become a major figure in British art and continued to be influential until his death in the 1970s. His landscapes, organic forms, and surrealist figures were often conceived in the pages of his sketchbooks, which can be seen today in the Tate archives. Because of their age and fragility, these sketchbooks are being completely digitised as to preserve them and allow the public to view and interact with them. Sutherland\u2019s sketchbooks are essential to understanding the artist\u2019s practice: they are rough, paint-spattered, and covered in marks, giving us a glimpse into Sutherland\u2019s hands-on approach to planning and creating a painting.\nSeeing an actual work of art is one thing, but what benefits could there be to preserving art digitally? Does it allow for us to interact with art in ways we might never be able to handle the original? Is it a useful tool for people who can\u2019t physically come to a museum or gallery?\n\nClick here to leaf through Sutherland\u2019s sketchbooks in the Tate archives.\n", "path": "graham-sutherland-sketchbooks/", "slug": "graham-sutherland-sketchbooks", "kind": "Video", "video_id": "ORES6xSf4KI", "keywords": "Tate", "youtube_id": "ORES6xSf4KI", "readable_id": "graham-sutherland-sketchbooks"}, "obZzOq_wSCg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/obZzOq_wSCg.mp4/obZzOq_wSCg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/obZzOq_wSCg.mp4/obZzOq_wSCg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/obZzOq_wSCg.m3u8/obZzOq_wSCg.m3u8"}, "duration": 602, "id": "obZzOq_wSCg", "title": "Probability with playing cards and Venn diagrams", "format": "mp4", "description": "Probability of compound events. The Addition Rule. Common Core Standard 457 S-CP.7", "path": "khan/math/precalculus/prob_comb/addition_rule_prob_precalc/probability-with-playing-cards-and-venn-diagrams/", "slug": "probability-with-playing-cards-and-venn-diagrams", "kind": "Video", "video_id": "obZzOq_wSCg", "keywords": "math, chance, probability", "youtube_id": "obZzOq_wSCg", "readable_id": "probability-with-playing-cards-and-venn-diagrams"}, "trRl8QXtdMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/trRl8QXtdMI.mp4/trRl8QXtdMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/trRl8QXtdMI.mp4/trRl8QXtdMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/trRl8QXtdMI.m3u8/trRl8QXtdMI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-lung-cancer/lung-cancer-treatment/", "duration": 492, "id": "trRl8QXtdMI", "title": "Lung cancer treatment", "format": "mp4", "description": "Lung cancer is treated using a combination of treatments such as chemotherapy, radiation, and a variety of surgical procedures (such as wedge resections, pneumonectomies, and segmental resections). Learn about the complications and side effects of treatment options and why they occur.", "slug": "lung-cancer-treatment", "kind": "Video", "video_id": "trRl8QXtdMI", "keywords": "", "youtube_id": "trRl8QXtdMI", "readable_id": "lung-cancer-treatment"}, "mXsn-YYUN4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mXsn-YYUN4Y.mp4/mXsn-YYUN4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mXsn-YYUN4Y.mp4/mXsn-YYUN4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mXsn-YYUN4Y.m3u8/mXsn-YYUN4Y.m3u8"}, "duration": 483, "id": "mXsn-YYUN4Y", "title": "Estimating a solution to nonlinear system with calculator", "format": "mp4", "description": "", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/estimating-a-solution-to-nonlinear-system-with-calculator/", "slug": "estimating-a-solution-to-nonlinear-system-with-calculator", "kind": "Video", "video_id": "mXsn-YYUN4Y", "keywords": "", "youtube_id": "mXsn-YYUN4Y", "readable_id": "estimating-a-solution-to-nonlinear-system-with-calculator"}, "wK4QAvtQKiM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wK4QAvtQKiM.mp4/wK4QAvtQKiM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wK4QAvtQKiM.mp4/wK4QAvtQKiM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wK4QAvtQKiM.m3u8/wK4QAvtQKiM.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-blended-case-studies/sscc-blended-helpteach/", "duration": 304, "id": "wK4QAvtQKiM", "title": "Helping teachers make the change", "format": "mp4", "description": "", "slug": "sscc-blended-helpteach", "kind": "Video", "video_id": "wK4QAvtQKiM", "keywords": "", "youtube_id": "wK4QAvtQKiM", "readable_id": "sscc-blended-helpteach"}, "IiTtGENiVOA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IiTtGENiVOA.mp4/IiTtGENiVOA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IiTtGENiVOA.mp4/IiTtGENiVOA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IiTtGENiVOA.m3u8/IiTtGENiVOA.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/vel-zquez-las-meninas-c-1656/", "duration": 360, "id": "IiTtGENiVOA", "title": "Vel\u00e1zquez, Las Meninas", "format": "mp4", "description": "Diego Rodr\u00edguez de Silva y Vel\u00e1zquez, Las Meninas, c. 1656, oil on canvas, 125 1/4 x 108 5/8 in. (318 x 276 cm), (Museo Nacional del Prado, Madrid)", "slug": "vel-zquez-las-meninas-c-1656", "kind": "Video", "video_id": "IiTtGENiVOA", "keywords": "prado, art history, smarthistory, velazques, meninas, baroque, madrid", "youtube_id": "IiTtGENiVOA", "readable_id": "vel-zquez-las-meninas-c-1656"}, "jDadorSbhi4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jDadorSbhi4.mp4/jDadorSbhi4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jDadorSbhi4.mp4/jDadorSbhi4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jDadorSbhi4.m3u8/jDadorSbhi4.m3u8"}, "path": "khan/test-prep/mcat/cells/eukaryotic-cells/endoplasmic-reticulum-and-golgi-apparatus/", "duration": 581, "id": "jDadorSbhi4", "title": "Endoplasmic reticulum and golgi apparatus", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "endoplasmic-reticulum-and-golgi-apparatus", "kind": "Video", "video_id": "jDadorSbhi4", "keywords": "", "youtube_id": "jDadorSbhi4", "readable_id": "endoplasmic-reticulum-and-golgi-apparatus"}, "cstic6WHr2E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cstic6WHr2E.mp4/cstic6WHr2E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cstic6WHr2E.mp4/cstic6WHr2E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cstic6WHr2E.m3u8/cstic6WHr2E.m3u8"}, "duration": 664, "id": "cstic6WHr2E", "title": "Animal development: We're just tubes", "format": "mp4", "description": "Hank discusses the process by which\u00a0organisms grow and\u00a0develop,\u00a0maintaining that, in the end, we're all\u00a0just tubes.", "path": "crash-course-biology-115/", "slug": "crash-course-biology-115", "kind": "Video", "video_id": "cstic6WHr2E", "keywords": "", "youtube_id": "cstic6WHr2E", "readable_id": "crash-course-biology-115"}, "DNAnQBhGpRw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DNAnQBhGpRw.mp4/DNAnQBhGpRw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DNAnQBhGpRw.mp4/DNAnQBhGpRw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DNAnQBhGpRw.m3u8/DNAnQBhGpRw.m3u8"}, "duration": 573, "id": "DNAnQBhGpRw", "title": "Sample standard deviation and bias", "format": "mp4", "description": "", "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/sample-standard-deviation-and-bias/", "slug": "sample-standard-deviation-and-bias", "kind": "Video", "video_id": "DNAnQBhGpRw", "keywords": "", "youtube_id": "DNAnQBhGpRw", "readable_id": "sample-standard-deviation-and-bias"}, "S-ws2W6UbPU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S-ws2W6UbPU.mp4/S-ws2W6UbPU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S-ws2W6UbPU.mp4/S-ws2W6UbPU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S-ws2W6UbPU.m3u8/S-ws2W6UbPU.m3u8"}, "path": "khan/partner-content/dartmouth-college/dartmouth-algorithms/what-are-algorithms/", "duration": 279, "id": "S-ws2W6UbPU", "title": "What is an algorithm and why should you care?", "format": "mp4", "description": "", "slug": "what-are-algorithms", "kind": "Video", "video_id": "S-ws2W6UbPU", "keywords": "", "youtube_id": "S-ws2W6UbPU", "readable_id": "what-are-algorithms"}, "efE8xuvUjAo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/efE8xuvUjAo.mp4/efE8xuvUjAo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/efE8xuvUjAo.mp4/efE8xuvUjAo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/efE8xuvUjAo.m3u8/efE8xuvUjAo.m3u8"}, "path": "khan/math/probability/random-variables-topic/binomial_distribution/generalizing-k-scores-in-n-attempts/", "duration": 253, "id": "efE8xuvUjAo", "title": "Generalizing k scores in n attempts", "format": "mp4", "description": "", "slug": "generalizing-k-scores-in-n-attempts", "kind": "Video", "video_id": "efE8xuvUjAo", "keywords": "", "youtube_id": "efE8xuvUjAo", "readable_id": "generalizing-k-scores-in-n-attempts"}, "v4MenooI1J0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v4MenooI1J0.mp4/v4MenooI1J0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v4MenooI1J0.mp4/v4MenooI1J0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v4MenooI1J0.m3u8/v4MenooI1J0.m3u8"}, "duration": 159, "id": "v4MenooI1J0", "title": "Finding the determinant of a 3x3 matrix method 1", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/finding-the-determinant-of-a-3x3-matrix-method-1/", "slug": "finding-the-determinant-of-a-3x3-matrix-method-1", "kind": "Video", "video_id": "v4MenooI1J0", "keywords": "", "youtube_id": "v4MenooI1J0", "readable_id": "finding-the-determinant-of-a-3x3-matrix-method-1"}, "Be3tuYMgA9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Be3tuYMgA9I.mp4/Be3tuYMgA9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Be3tuYMgA9I.mp4/Be3tuYMgA9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Be3tuYMgA9I.m3u8/Be3tuYMgA9I.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/tetralogy-of-fallot/", "duration": 669, "id": "Be3tuYMgA9I", "title": "Tetralogy of fallot", "format": "mp4", "description": "", "slug": "tetralogy-of-fallot", "kind": "Video", "video_id": "Be3tuYMgA9I", "keywords": "", "youtube_id": "Be3tuYMgA9I", "readable_id": "tetralogy-of-fallot"}, "WomsUEVVtCk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WomsUEVVtCk.mp4/WomsUEVVtCk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WomsUEVVtCk.mp4/WomsUEVVtCk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WomsUEVVtCk.m3u8/WomsUEVVtCk.m3u8"}, "duration": 437, "id": "WomsUEVVtCk", "title": "Real gases and the van der Waals equation", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/gas-phase/real-gases-and-the-van-der-waals-equation/", "slug": "real-gases-and-the-van-der-waals-equation", "kind": "Video", "video_id": "WomsUEVVtCk", "keywords": "", "youtube_id": "WomsUEVVtCk", "readable_id": "real-gases-and-the-van-der-waals-equation"}, "LbTH7MGMNjk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LbTH7MGMNjk.mp4/LbTH7MGMNjk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LbTH7MGMNjk.mp4/LbTH7MGMNjk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LbTH7MGMNjk.m3u8/LbTH7MGMNjk.m3u8"}, "duration": 414, "id": "LbTH7MGMNjk", "title": "Area between curves with multiple boundaries", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/solid_revolution_topic/area-between-curves/area-between-curves-with-multiple-boundaries/", "slug": "area-between-curves-with-multiple-boundaries", "kind": "Video", "video_id": "LbTH7MGMNjk", "keywords": "", "youtube_id": "LbTH7MGMNjk", "readable_id": "area-between-curves-with-multiple-boundaries"}, "eF6zYNzlZKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eF6zYNzlZKQ.mp4/eF6zYNzlZKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eF6zYNzlZKQ.mp4/eF6zYNzlZKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eF6zYNzlZKQ.m3u8/eF6zYNzlZKQ.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-quadratic-expressions/", "duration": 990, "id": "eF6zYNzlZKQ", "title": "Factoring quadratic expressions", "format": "mp4", "description": "Factoring Quadratic Expressions", "slug": "factoring-quadratic-expressions", "kind": "Video", "video_id": "eF6zYNzlZKQ", "keywords": "Factoring, Quadratic, Expressions, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_a, CC_39336_F-IF_8_a", "youtube_id": "eF6zYNzlZKQ", "readable_id": "factoring-quadratic-expressions"}, "gBKBKfikLbo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gBKBKfikLbo.mp4/gBKBKfikLbo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gBKBKfikLbo.mp4/gBKBKfikLbo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gBKBKfikLbo.m3u8/gBKBKfikLbo.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/source-encoding-language-of-coins-4-9/", "duration": 357, "id": "gBKBKfikLbo", "title": "Source encoding", "format": "mp4", "description": "Introduction to coding theory!", "slug": "source-encoding-language-of-coins-4-9", "kind": "Video", "video_id": "gBKBKfikLbo", "keywords": "information theory, source coding, source encoding, probability", "youtube_id": "gBKBKfikLbo", "readable_id": "source-encoding-language-of-coins-4-9"}, "t4xOkpP8FgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t4xOkpP8FgE.mp4/t4xOkpP8FgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t4xOkpP8FgE.mp4/t4xOkpP8FgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t4xOkpP8FgE.m3u8/t4xOkpP8FgE.m3u8"}, "path": "khan/math/arithmetic/absolute-value/abs_value_tutorial/absolute-value-as-distance-between-numbers/", "duration": 330, "id": "t4xOkpP8FgE", "title": "Absolute value as distance between numbers", "format": "mp4", "description": "In this video, we think about what |a-b| really means, and we verify that |a-b| = |b-a| by looking at an example.", "slug": "absolute-value-as-distance-between-numbers", "kind": "Video", "video_id": "t4xOkpP8FgE", "keywords": "", "youtube_id": "t4xOkpP8FgE", "readable_id": "absolute-value-as-distance-between-numbers"}, "SP-YJe7Vldo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SP-YJe7Vldo.mp4/SP-YJe7Vldo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SP-YJe7Vldo.mp4/SP-YJe7Vldo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SP-YJe7Vldo.m3u8/SP-YJe7Vldo.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/complex-number-intro/", "duration": 284, "id": "SP-YJe7Vldo", "title": "Introduction to complex numbers", "format": "mp4", "description": "", "slug": "complex-number-intro", "kind": "Video", "video_id": "SP-YJe7Vldo", "keywords": "", "youtube_id": "SP-YJe7Vldo", "readable_id": "complex-number-intro"}, "kXULrUxGzmU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kXULrUxGzmU.mp4/kXULrUxGzmU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kXULrUxGzmU.mp4/kXULrUxGzmU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kXULrUxGzmU.m3u8/kXULrUxGzmU.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/maclaurin-series-based-on-cos-x/", "duration": 481, "id": "kXULrUxGzmU", "title": "Maclaurin series based on cos x", "format": "mp4", "description": "", "slug": "maclaurin-series-based-on-cos-x", "kind": "Video", "video_id": "kXULrUxGzmU", "keywords": "", "youtube_id": "kXULrUxGzmU", "readable_id": "maclaurin-series-based-on-cos-x"}, "scgd0gh6BFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/scgd0gh6BFs.mp4/scgd0gh6BFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/scgd0gh6BFs.mp4/scgd0gh6BFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/scgd0gh6BFs.m3u8/scgd0gh6BFs.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/convergence-macro/", "duration": 205, "id": "scgd0gh6BFs", "title": "Convergence on macro scale", "format": "mp4", "description": "", "slug": "convergence-macro", "kind": "Video", "video_id": "scgd0gh6BFs", "keywords": "", "youtube_id": "scgd0gh6BFs", "readable_id": "convergence-macro"}, "7oBUIo5R5qg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7oBUIo5R5qg.mp4/7oBUIo5R5qg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7oBUIo5R5qg.mp4/7oBUIo5R5qg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7oBUIo5R5qg.m3u8/7oBUIo5R5qg.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/palace-westminster/", "duration": 388, "id": "7oBUIo5R5qg", "title": "Charles Barry and A.W.N. Pugin, Palace of Westminster (Houses of Parliament)", "format": "mp4", "description": "Charles Barry and A.W.N. Pugin, Palace of Westminster (Houses of Parliament), 1840-70, London\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\u00a0", "slug": "palace-westminster", "kind": "Video", "video_id": "7oBUIo5R5qg", "keywords": "Westminster parliament lords commons", "youtube_id": "7oBUIo5R5qg", "readable_id": "palace-westminster"}, "JULBDJx42DY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JULBDJx42DY.mp4/JULBDJx42DY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JULBDJx42DY.mp4/JULBDJx42DY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JULBDJx42DY.m3u8/JULBDJx42DY.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/copy-of-khan-academy-living-room-chats/reid-hoffman-founder-of-linkedin/", "duration": 2724, "id": "JULBDJx42DY", "title": "Reid Hoffman - Founder of LinkedIn", "format": "mp4", "description": "", "slug": "reid-hoffman-founder-of-linkedin", "kind": "Video", "video_id": "JULBDJx42DY", "keywords": "", "youtube_id": "JULBDJx42DY", "readable_id": "reid-hoffman-founder-of-linkedin"}, "Z5myJ8dg_rM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z5myJ8dg_rM.mp4/Z5myJ8dg_rM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z5myJ8dg_rM.mp4/Z5myJ8dg_rM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z5myJ8dg_rM.m3u8/Z5myJ8dg_rM.m3u8"}, "duration": 422, "id": "Z5myJ8dg_rM", "title": "Logarithms", "format": "mp4", "description": "Intro to logarithms. Learning that logarithms are just a way of expressing \"the exponent that you have to raise a base to to get another number\"", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/logarithms/", "slug": "logarithms", "kind": "Video", "video_id": "Z5myJ8dg_rM", "keywords": "", "youtube_id": "Z5myJ8dg_rM", "readable_id": "logarithms"}, "-hJj5NpWUXQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-hJj5NpWUXQ.mp4/-hJj5NpWUXQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-hJj5NpWUXQ.mp4/-hJj5NpWUXQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-hJj5NpWUXQ.m3u8/-hJj5NpWUXQ.m3u8"}, "duration": 664, "id": "-hJj5NpWUXQ", "title": "Getting a seed round from a VC", "format": "mp4", "description": "Series A funding from a seed venture capitalist.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets/getting-a-seed-round-from-a-vc/", "slug": "getting-a-seed-round-from-a-vc", "kind": "Video", "video_id": "-hJj5NpWUXQ", "keywords": "venture, capital, seed, series", "youtube_id": "-hJj5NpWUXQ", "readable_id": "getting-a-seed-round-from-a-vc"}, "tWDflkBZC6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tWDflkBZC6U.mp4/tWDflkBZC6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tWDflkBZC6U.mp4/tWDflkBZC6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tWDflkBZC6U.m3u8/tWDflkBZC6U.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/parthenon/", "duration": 964, "id": "tWDflkBZC6U", "title": "Parthenon (Acropolis)", "format": "mp4", "description": "Iktinos and Kallikrates (Phidias directed the sculptural program), Parthenon, Athens, 447 - 432 B.C.E.\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "parthenon", "kind": "Video", "video_id": "tWDflkBZC6U", "keywords": "Iktinos, Kallikrates, Phidias, Parthenon, Acropolis, Athens", "youtube_id": "tWDflkBZC6U", "readable_id": "parthenon"}, "cuShHDFBiE8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cuShHDFBiE8.mp4/cuShHDFBiE8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cuShHDFBiE8.mp4/cuShHDFBiE8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cuShHDFBiE8.m3u8/cuShHDFBiE8.m3u8"}, "path": "khan/college-admissions/applying-to-college/introduction-atc/sal-khans-story-applying-to-college/", "duration": 151, "id": "cuShHDFBiE8", "title": "Sal Khan's story: Applying to college", "format": "mp4", "description": "", "slug": "sal-khans-story-applying-to-college", "kind": "Video", "video_id": "cuShHDFBiE8", "keywords": "", "youtube_id": "cuShHDFBiE8", "readable_id": "sal-khans-story-applying-to-college"}, "Gedy8LwQTaw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gedy8LwQTaw.mp4/Gedy8LwQTaw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gedy8LwQTaw.mp4/Gedy8LwQTaw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gedy8LwQTaw.m3u8/Gedy8LwQTaw.m3u8"}, "duration": 250, "id": "Gedy8LwQTaw", "title": "Zimmermann Telegram", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/american-entry-world-war-i/zimmermann-telegram/", "slug": "zimmermann-telegram", "kind": "Video", "video_id": "Gedy8LwQTaw", "keywords": "", "youtube_id": "Gedy8LwQTaw", "readable_id": "zimmermann-telegram"}, "T9byZBGtGuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T9byZBGtGuw.mp4/T9byZBGtGuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T9byZBGtGuw.mp4/T9byZBGtGuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T9byZBGtGuw.m3u8/T9byZBGtGuw.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-18-big-picture-discussion/", "duration": 848, "id": "T9byZBGtGuw", "title": "Banking 18: Big picture discussion", "format": "mp4", "description": "Pros and Cons of various banking systems. More on gold.", "slug": "banking-18-big-picture-discussion", "kind": "Video", "video_id": "T9byZBGtGuw", "keywords": "gold, money, banking, fractional, reserve", "youtube_id": "T9byZBGtGuw", "readable_id": "banking-18-big-picture-discussion"}, "uwDHi2KNM4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uwDHi2KNM4s.mp4/uwDHi2KNM4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uwDHi2KNM4s.mp4/uwDHi2KNM4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uwDHi2KNM4s.m3u8/uwDHi2KNM4s.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/classical/egyptian-blue-parthenon/", "duration": 340, "id": "uwDHi2KNM4s", "title": "Egyptian blue on the Parthenon sculptures", "format": "mp4", "description": "A new technique unveils ancient colour at the British Museum. \u00a9 Trustees of the British Museum.", "slug": "egyptian-blue-parthenon", "kind": "Video", "video_id": "uwDHi2KNM4s", "keywords": "Parthenon, Greece, ", "youtube_id": "uwDHi2KNM4s", "readable_id": "egyptian-blue-parthenon"}, "qZTeyhR1akA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qZTeyhR1akA.mp4/qZTeyhR1akA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qZTeyhR1akA.mp4/qZTeyhR1akA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qZTeyhR1akA.m3u8/qZTeyhR1akA.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-preparation-alkynes/alkyne-nomenclature/", "duration": 428, "id": "qZTeyhR1akA", "title": "Alkyne nomenclature", "format": "mp4", "description": "", "slug": "alkyne-nomenclature", "kind": "Video", "video_id": "qZTeyhR1akA", "keywords": "", "youtube_id": "qZTeyhR1akA", "readable_id": "alkyne-nomenclature"}, "VdQ6lAhKGTc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VdQ6lAhKGTc.mp4/VdQ6lAhKGTc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VdQ6lAhKGTc.mp4/VdQ6lAhKGTc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VdQ6lAhKGTc.m3u8/VdQ6lAhKGTc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-aortic-dissection-and-aneurysm/aneurysm-treatment/", "duration": 714, "id": "VdQ6lAhKGTc", "title": "Aneurysm treatment", "format": "mp4", "description": "", "slug": "aneurysm-treatment", "kind": "Video", "video_id": "VdQ6lAhKGTc", "keywords": "", "youtube_id": "VdQ6lAhKGTc", "readable_id": "aneurysm-treatment"}, "mykrnTh1tz8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mykrnTh1tz8.mp4/mykrnTh1tz8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mykrnTh1tz8.mp4/mykrnTh1tz8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mykrnTh1tz8.m3u8/mykrnTh1tz8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system/rn-the-respiratory-system/inhaling-and-exhaling/", "duration": 779, "id": "mykrnTh1tz8", "title": "Inhaling and exhaling", "format": "mp4", "description": "Find out exactly why air goes in and out of the lungs. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "inhaling-and-exhaling", "kind": "Video", "video_id": "mykrnTh1tz8", "keywords": "", "youtube_id": "mykrnTh1tz8", "readable_id": "inhaling-and-exhaling"}, "FXgV9ySNusc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FXgV9ySNusc.mp4/FXgV9ySNusc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FXgV9ySNusc.mp4/FXgV9ySNusc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FXgV9ySNusc.m3u8/FXgV9ySNusc.m3u8"}, "duration": 729, "id": "FXgV9ySNusc", "title": "Polynomial division", "format": "mp4", "description": "Polynomial Division", "path": "khan/math/algebra2/polynomial_and_rational/dividing_polynomials/polynomial-division/", "slug": "polynomial-division", "kind": "Video", "video_id": "FXgV9ySNusc", "keywords": "Polynomial, Division, CC_39336_A-APR_2", "youtube_id": "FXgV9ySNusc", "readable_id": "polynomial-division"}, "fSu1LKnhM5Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fSu1LKnhM5Q.mp4/fSu1LKnhM5Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fSu1LKnhM5Q.mp4/fSu1LKnhM5Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fSu1LKnhM5Q.m3u8/fSu1LKnhM5Q.m3u8"}, "duration": 666, "id": "fSu1LKnhM5Q", "title": "Two column proof showing segments are perpendicular", "format": "mp4", "description": "Using triangle congruency postulates to show that two intersecting segments are perpendicular", "path": "khan/math/geometry/congruent-triangles/cong_triangle/two-column-proof-showing-segments-are-perpendicular/", "slug": "two-column-proof-showing-segments-are-perpendicular", "kind": "Video", "video_id": "fSu1LKnhM5Q", "keywords": "SSS, SAS, ASA, AAS", "youtube_id": "fSu1LKnhM5Q", "readable_id": "two-column-proof-showing-segments-are-perpendicular"}, "CfJzrmS9UfY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CfJzrmS9UfY.mp4/CfJzrmS9UfY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CfJzrmS9UfY.mp4/CfJzrmS9UfY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CfJzrmS9UfY.m3u8/CfJzrmS9UfY.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-class-stars/", "duration": 238, "id": "CfJzrmS9UfY", "title": "Doodling in math: Stars", "format": "mp4", "description": "More videos/info: http://vihart.com/doodlingCheck out this cool star-making applet Ruurtjan sent me: http://stars.ruurtjan.comDoodling Infinity Elephants: http://www.youtube.com/watch?v=DK5Z709J2eoDoodling Snakes + Graphs: http://www.youtube.com/watch?v=heKK95DAKmsDoodling Binary Trees: http://www.youtube.com/watch?v=e4MSN6IImpIhttp://vihart.com", "slug": "doodling-in-math-class-stars", "kind": "Video", "video_id": "CfJzrmS9UfY", "keywords": "math, doodles, mathematics, doodling, school, stars, factoring, factors", "youtube_id": "CfJzrmS9UfY", "readable_id": "doodling-in-math-class-stars"}, "WThFuJ6wFcM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WThFuJ6wFcM.mp4/WThFuJ6wFcM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WThFuJ6wFcM.mp4/WThFuJ6wFcM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WThFuJ6wFcM.m3u8/WThFuJ6wFcM.m3u8"}, "duration": 671, "id": "WThFuJ6wFcM", "title": "Evolution: It's a Thing", "format": "mp4", "description": "Hank gets real with us in a discussion of evolution - it's a thing, not a debate. Gene distribution changes over time, across successive generations, to give rise to diversity at every level of biological organization.", "path": "crash-course-biology-119/", "slug": "crash-course-biology-119", "kind": "Video", "video_id": "WThFuJ6wFcM", "keywords": "", "youtube_id": "WThFuJ6wFcM", "readable_id": "crash-course-biology-119"}, "It3i-dKusIM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/It3i-dKusIM.mp4/It3i-dKusIM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/It3i-dKusIM.mp4/It3i-dKusIM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/It3i-dKusIM.m3u8/It3i-dKusIM.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/justinian-and-his-attendants-6th-century-ravenna/", "duration": 598, "id": "It3i-dKusIM", "title": "San Vitale, Ravenna", "format": "mp4", "description": "San Vitale is one of the most important surviving examples of Byzantine architecture and mosaic work. It was begun in 526 or 527 under Ostrogothic rule. It was consecrated in 547 and completed soon after. Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "justinian-and-his-attendants-6th-century-ravenna", "kind": "Video", "video_id": "It3i-dKusIM", "keywords": "Justinian, San Vitale, byzantine, art, art history, smarthistory, ravenna", "youtube_id": "It3i-dKusIM", "readable_id": "justinian-and-his-attendants-6th-century-ravenna"}, "wNB9Vm6MoDQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wNB9Vm6MoDQ.mp4/wNB9Vm6MoDQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wNB9Vm6MoDQ.mp4/wNB9Vm6MoDQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wNB9Vm6MoDQ.m3u8/wNB9Vm6MoDQ.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/georges-seurat-a-sunday-on-la-grande-jatte-1884-1884-86/", "duration": 403, "id": "wNB9Vm6MoDQ", "title": "Seurat, A Sunday on La Grande Jatte", "format": "mp4", "description": "Georges Seurat, A Sunday on La Grande Jatte - 1884, 1884-86, oil on canvas, 81-3/4 x 121-1/4 inches / 207.5 x 308.1 cm (The Art Institute of Chicago). In the Google Art project: http://www.googleartproject.com/collection/the-art-institute-of-chicago/artwork/a-sunday-on-la-grande-jatte-1884-georges-seurat/609033/", "slug": "georges-seurat-a-sunday-on-la-grande-jatte-1884-1884-86", "kind": "Video", "video_id": "wNB9Vm6MoDQ", "keywords": "Paris, Impressionism, Post-Impressionism, Leisure, Georges Seurat, Seurat, Sunday, Grande Jatte, 1884, 1886, Art Institute of Chicago, divisionism, Neo-Impressionism, pointillism, Khan Academy, smarthistory, art history, Google Art Project, OER, painting", "youtube_id": "wNB9Vm6MoDQ", "readable_id": "georges-seurat-a-sunday-on-la-grande-jatte-1884-1884-86"}, "uXdIdIjllEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uXdIdIjllEI.mp4/uXdIdIjllEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uXdIdIjllEI.mp4/uXdIdIjllEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uXdIdIjllEI.m3u8/uXdIdIjllEI.m3u8"}, "path": "khan/test-prep/mcat/behavior/theories-of-attitude-and-behavior-change/self-control/", "duration": 503, "id": "uXdIdIjllEI", "title": "Self control", "format": "mp4", "description": "", "slug": "self-control", "kind": "Video", "video_id": "uXdIdIjllEI", "keywords": "", "youtube_id": "uXdIdIjllEI", "readable_id": "self-control"}, "LtlodYLm8fc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LtlodYLm8fc.mp4/LtlodYLm8fc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LtlodYLm8fc.mp4/LtlodYLm8fc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LtlodYLm8fc.m3u8/LtlodYLm8fc.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-anemia/rn-anemia-pathophysiology/", "duration": 619, "id": "LtlodYLm8fc", "title": "Anemia pathophysiology", "format": "mp4", "description": "", "slug": "rn-anemia-pathophysiology", "kind": "Video", "video_id": "LtlodYLm8fc", "keywords": "", "youtube_id": "LtlodYLm8fc", "readable_id": "rn-anemia-pathophysiology"}, "C3HFAyigqoY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C3HFAyigqoY.mp4/C3HFAyigqoY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C3HFAyigqoY.mp4/C3HFAyigqoY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C3HFAyigqoY.m3u8/C3HFAyigqoY.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/trig-symmetry-periodicity/tan-periodicity/", "duration": 242, "id": "C3HFAyigqoY", "title": "Periodicity of tan example", "format": "mp4", "description": "", "slug": "tan-periodicity", "kind": "Video", "video_id": "C3HFAyigqoY", "keywords": "", "youtube_id": "C3HFAyigqoY", "readable_id": "tan-periodicity"}, "Z29bpAW1AUM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z29bpAW1AUM.mp4/Z29bpAW1AUM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z29bpAW1AUM.mp4/Z29bpAW1AUM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z29bpAW1AUM.m3u8/Z29bpAW1AUM.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/pietro-lorenzetti-birth-of-the-virgin-c-1342/", "duration": 250, "id": "Z29bpAW1AUM", "title": "Pietro Lorenzetti, Birth of the Virgin", "format": "mp4", "description": "Pietro Lorenzetti, Birth of the Virgin, c. 1342, tempera on panel, 6 feet, 1 inch x 5 feet, 11 inches, for the altar of St. Savinus, Siena Cathedral (now in Museo dell'Opera del Duomo, Siena) Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "pietro-lorenzetti-birth-of-the-virgin-c-1342", "kind": "Video", "video_id": "Z29bpAW1AUM", "keywords": "Pietro Lorenzetti, Lorenzetti, Birth of the Virgin, 1342, tempera on panel, St. Savinus, Siena Cathedral, Museo dell'Opera del Duomo, Siena", "youtube_id": "Z29bpAW1AUM", "readable_id": "pietro-lorenzetti-birth-of-the-virgin-c-1342"}, "BBIGR0RAMtY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BBIGR0RAMtY.mp4/BBIGR0RAMtY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BBIGR0RAMtY.mp4/BBIGR0RAMtY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BBIGR0RAMtY.m3u8/BBIGR0RAMtY.m3u8"}, "duration": 662, "id": "BBIGR0RAMtY", "title": "Titration roundup", "format": "mp4", "description": "Making sure you fully understand titration curves", "path": "khan/science/chemistry/acid-base-equilibrium/titrations/titration-roundup/", "slug": "titration-roundup", "kind": "Video", "video_id": "BBIGR0RAMtY", "keywords": "chemistry, titration, equivalence", "youtube_id": "BBIGR0RAMtY", "readable_id": "titration-roundup"}, "PLPNQMPDoNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PLPNQMPDoNo.mp4/PLPNQMPDoNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PLPNQMPDoNo.mp4/PLPNQMPDoNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PLPNQMPDoNo.m3u8/PLPNQMPDoNo.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2010-may-6-1/", "duration": 75, "id": "PLPNQMPDoNo", "title": "1 Missing angle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-1", "kind": "Video", "video_id": "PLPNQMPDoNo", "keywords": "", "youtube_id": "PLPNQMPDoNo", "readable_id": "sat-2010-may-6-1"}, "-MQ5dL9cQX0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-MQ5dL9cQX0.mp4/-MQ5dL9cQX0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-MQ5dL9cQX0.mp4/-MQ5dL9cQX0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-MQ5dL9cQX0.m3u8/-MQ5dL9cQX0.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/egypt-art/ptolemaic/the-mummification-process/", "duration": 164, "id": "-MQ5dL9cQX0", "title": "The mummification process", "format": "mp4", "description": "Ancient Egyptian mummification preserved the body for the afterlife by removing internal organs and moisture and by wrapping the body with linen. This animation uses the Getty's mummy Herakleides. Love art? Follow us on Google+", "slug": "the-mummification-process", "kind": "Video", "video_id": "-MQ5dL9cQX0", "keywords": "", "youtube_id": "-MQ5dL9cQX0", "readable_id": "the-mummification-process"}, "Df2escG-Vu0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Df2escG-Vu0.mp4/Df2escG-Vu0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Df2escG-Vu0.mp4/Df2escG-Vu0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Df2escG-Vu0.m3u8/Df2escG-Vu0.m3u8"}, "duration": 293, "id": "Df2escG-Vu0", "title": "Formal and alternate form of the derivative", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/alternate-form-of-the-derivative/", "slug": "alternate-form-of-the-derivative", "kind": "Video", "video_id": "Df2escG-Vu0", "keywords": "", "youtube_id": "Df2escG-Vu0", "readable_id": "alternate-form-of-the-derivative"}, "T0CwhLHrE2k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T0CwhLHrE2k.mp4/T0CwhLHrE2k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T0CwhLHrE2k.mp4/T0CwhLHrE2k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T0CwhLHrE2k.m3u8/T0CwhLHrE2k.m3u8"}, "duration": 225, "id": "T0CwhLHrE2k", "title": "AMT overview", "format": "mp4", "description": "Overview of what the Alternative Minimum Tax is and its purpose", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/amt-overview/", "slug": "amt-overview", "kind": "Video", "video_id": "T0CwhLHrE2k", "keywords": "IRS, taxes", "youtube_id": "T0CwhLHrE2k", "readable_id": "amt-overview"}, "g4XZGhnFOwM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g4XZGhnFOwM.mp4/g4XZGhnFOwM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g4XZGhnFOwM.mp4/g4XZGhnFOwM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g4XZGhnFOwM.m3u8/g4XZGhnFOwM.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/cranach-altdorfer/cranach-the-elder-adam-and-eve-1526/", "duration": 302, "id": "g4XZGhnFOwM", "title": "Cranach, Adam and Eve", "format": "mp4", "description": "Lucus Cranach the Elder, Adam and Eve, 1526, oil on panel\u00a0(Courtauld Gallery, London).\u00a0\n\nSpeakers: Rachel Ropeik and Steven Zucker\n", "slug": "cranach-the-elder-adam-and-eve-1526", "kind": "Video", "video_id": "g4XZGhnFOwM", "keywords": "Cranach, Adam and Eve, Art History, Smarthistory", "youtube_id": "g4XZGhnFOwM", "readable_id": "cranach-the-elder-adam-and-eve-1526"}, "sZWP9b6u_5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sZWP9b6u_5o.mp4/sZWP9b6u_5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sZWP9b6u_5o.mp4/sZWP9b6u_5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sZWP9b6u_5o.m3u8/sZWP9b6u_5o.m3u8"}, "duration": 175, "id": "sZWP9b6u_5o", "title": "Flu Pathophysiology", "format": "mp4", "description": "Once the flu virus enters a cell it can turn that cell into a viral factory making many more copies of the flu virus and causes illness.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "flu-pathophysiology/", "slug": "flu-pathophysiology", "kind": "Video", "video_id": "sZWP9b6u_5o", "keywords": "", "youtube_id": "sZWP9b6u_5o", "readable_id": "flu-pathophysiology"}, "x-N76NrMDNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x-N76NrMDNE.mp4/x-N76NrMDNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x-N76NrMDNE.mp4/x-N76NrMDNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x-N76NrMDNE.m3u8/x-N76NrMDNE.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/binomial-theorem-intuition/", "duration": 246, "id": "x-N76NrMDNE", "title": "Connecting Pascal's triangle to binomial combinatorics", "format": "mp4", "description": "", "slug": "binomial-theorem-intuition", "kind": "Video", "video_id": "x-N76NrMDNE", "keywords": "", "youtube_id": "x-N76NrMDNE", "readable_id": "binomial-theorem-intuition"}, "KNGa11O2uLE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KNGa11O2uLE.mp4/KNGa11O2uLE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KNGa11O2uLE.mp4/KNGa11O2uLE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KNGa11O2uLE.m3u8/KNGa11O2uLE.m3u8"}, "duration": 400, "id": "KNGa11O2uLE", "title": "Even more negative number practice", "format": "mp4", "description": "", "path": "even-more-negative-number-practice/", "slug": "even-more-negative-number-practice", "kind": "Video", "video_id": "KNGa11O2uLE", "keywords": "", "youtube_id": "KNGa11O2uLE", "readable_id": "even-more-negative-number-practice"}, "dw41PMWek6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dw41PMWek6U.mp4/dw41PMWek6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dw41PMWek6U.mp4/dw41PMWek6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dw41PMWek6U.m3u8/dw41PMWek6U.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/angle_basics/using-a-protractor/", "duration": 205, "id": "dw41PMWek6U", "title": "Measuring angles using a protractor", "format": "mp4", "description": "Let's use our virtual protractor to measure some angles together, shall we?", "slug": "using-a-protractor", "kind": "Video", "video_id": "dw41PMWek6U", "keywords": "Using, a, Protractor", "youtube_id": "dw41PMWek6U", "readable_id": "using-a-protractor"}, "TsXlTWgyItw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TsXlTWgyItw.mp4/TsXlTWgyItw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TsXlTWgyItw.mp4/TsXlTWgyItw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TsXlTWgyItw.m3u8/TsXlTWgyItw.m3u8"}, "duration": 562, "id": "TsXlTWgyItw", "title": "Heterogeneous equilibrium", "format": "mp4", "description": "Ignoring the solution or the solid state molecules when calculating the equilibrium constant.", "path": "khan/science/chemistry/chemical-equilibrium/equilibrium-constant/heterogenous-equilibrium/", "slug": "heterogenous-equilibrium", "kind": "Video", "video_id": "TsXlTWgyItw", "keywords": "chemistry", "youtube_id": "TsXlTWgyItw", "readable_id": "heterogenous-equilibrium"}, "A11AfJ2-3rE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A11AfJ2-3rE.mp4/A11AfJ2-3rE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A11AfJ2-3rE.mp4/A11AfJ2-3rE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A11AfJ2-3rE.m3u8/A11AfJ2-3rE.m3u8"}, "duration": 519, "id": "A11AfJ2-3rE", "title": "Type I regions in three dimensions", "format": "mp4", "description": "Definition of Type 1 regions. Visualizing what is and isn't a Type I region", "path": "khan/math/multivariable-calculus/divergence_theorem_topic/region_types_3d/type-i-regions-in-three-dimensions/", "slug": "type-i-regions-in-three-dimensions", "kind": "Video", "video_id": "A11AfJ2-3rE", "keywords": "", "youtube_id": "A11AfJ2-3rE", "readable_id": "type-i-regions-in-three-dimensions"}, "nB2ZRHS2RUE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nB2ZRHS2RUE.mp4/nB2ZRHS2RUE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nB2ZRHS2RUE.mp4/nB2ZRHS2RUE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nB2ZRHS2RUE.m3u8/nB2ZRHS2RUE.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/attribution-theory-basic-covariation/", "duration": 278, "id": "nB2ZRHS2RUE", "title": "Attribution Theory - Basic covariation", "format": "mp4", "description": "", "slug": "attribution-theory-basic-covariation", "kind": "Video", "video_id": "nB2ZRHS2RUE", "keywords": "", "youtube_id": "nB2ZRHS2RUE", "readable_id": "attribution-theory-basic-covariation"}, "NYtPw0WiUCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NYtPw0WiUCo.mp4/NYtPw0WiUCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NYtPw0WiUCo.mp4/NYtPw0WiUCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NYtPw0WiUCo.m3u8/NYtPw0WiUCo.m3u8"}, "path": "khan/science/chemistry/periodic-table/copy-of-periodic-table-of-elements/valence-electrons-lewis/", "duration": 657, "id": "NYtPw0WiUCo", "title": "Valence electrons", "format": "mp4", "description": "", "slug": "valence-electrons-lewis", "kind": "Video", "video_id": "NYtPw0WiUCo", "keywords": "", "youtube_id": "NYtPw0WiUCo", "readable_id": "valence-electrons-lewis"}, "39N5IKGfRmQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/39N5IKGfRmQ.mp4/39N5IKGfRmQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/39N5IKGfRmQ.mp4/39N5IKGfRmQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/39N5IKGfRmQ.m3u8/39N5IKGfRmQ.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/stress/stress-management/", "duration": 440, "id": "39N5IKGfRmQ", "title": "Stress management", "format": "mp4", "description": "", "slug": "stress-management", "kind": "Video", "video_id": "39N5IKGfRmQ", "keywords": "MCAT", "youtube_id": "39N5IKGfRmQ", "readable_id": "stress-management"}, "OjF765iVuF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OjF765iVuF8.mp4/OjF765iVuF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OjF765iVuF8.mp4/OjF765iVuF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OjF765iVuF8.m3u8/OjF765iVuF8.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/properties-matrix-multiplication/matrix-expressions/", "duration": 210, "id": "OjF765iVuF8", "title": "Equivalent matrix expressions", "format": "mp4", "description": "", "slug": "matrix-expressions", "kind": "Video", "video_id": "OjF765iVuF8", "keywords": "", "youtube_id": "OjF765iVuF8", "readable_id": "matrix-expressions"}, "iU58AIjh3YA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iU58AIjh3YA.mp4/iU58AIjh3YA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iU58AIjh3YA.mp4/iU58AIjh3YA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iU58AIjh3YA.m3u8/iU58AIjh3YA.m3u8"}, "duration": 783, "id": "iU58AIjh3YA", "title": "Development of agriculture and writing", "format": "mp4", "description": "The Paleolithic and Neolithic eras of the Stone Age.", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/development-of-agriculture-and-writing/", "slug": "development-of-agriculture-and-writing", "kind": "Video", "video_id": "iU58AIjh3YA", "keywords": "Cuneiform, sumer, sumeria", "youtube_id": "iU58AIjh3YA", "readable_id": "development-of-agriculture-and-writing"}, "tygZ2A8rytQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tygZ2A8rytQ.mp4/tygZ2A8rytQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tygZ2A8rytQ.mp4/tygZ2A8rytQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tygZ2A8rytQ.m3u8/tygZ2A8rytQ.m3u8"}, "duration": 516, "id": "tygZ2A8rytQ", "title": "Khan Academy Computer Science Launch", "format": "mp4", "description": "John Resig talks to Sal about the new computer science tools and content on Khan Academy (Available at: http://www.khanacademy.org/cs)", "path": "khan-academy-computer-science-launch/", "slug": "khan-academy-computer-science-launch", "kind": "Video", "video_id": "tygZ2A8rytQ", "keywords": "khan, Academy, computer, science, Programming, john, resig", "youtube_id": "tygZ2A8rytQ", "readable_id": "khan-academy-computer-science-launch"}, "ngOC4eUQl8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ngOC4eUQl8Y.mp4/ngOC4eUQl8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ngOC4eUQl8Y.mp4/ngOC4eUQl8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ngOC4eUQl8Y.m3u8/ngOC4eUQl8Y.m3u8"}, "duration": 815, "id": "ngOC4eUQl8Y", "title": "Capacitance", "format": "mp4", "description": "Introduction to the capacitance of a two place capacitor. ", "path": "khan/test-prep/mcat/physical-processes/capacitors/capacitance/", "slug": "capacitance", "kind": "Video", "video_id": "ngOC4eUQl8Y", "keywords": "capacitance, capacitor, farad", "youtube_id": "ngOC4eUQl8Y", "readable_id": "capacitance"}, "VIHldsSmASU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VIHldsSmASU.mp4/VIHldsSmASU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VIHldsSmASU.mp4/VIHldsSmASU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VIHldsSmASU.m3u8/VIHldsSmASU.m3u8"}, "duration": 300, "id": "VIHldsSmASU", "title": "Implied volatility", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/derivative-securities/black-scholes/implied-volatility/", "slug": "implied-volatility", "kind": "Video", "video_id": "VIHldsSmASU", "keywords": "", "youtube_id": "VIHldsSmASU", "readable_id": "implied-volatility"}, "d7zqiCrfiUE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d7zqiCrfiUE.mp4/d7zqiCrfiUE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d7zqiCrfiUE.mp4/d7zqiCrfiUE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d7zqiCrfiUE.m3u8/d7zqiCrfiUE.m3u8"}, "path": "khan/college-admissions/paying-for-college/grants-and-scholarships/searching-for-scholarships/", "duration": 139, "id": "d7zqiCrfiUE", "title": "Searching for scholarships", "format": "mp4", "description": "College Board Scholarship Search | Fastweb | Scholarships.com", "slug": "searching-for-scholarships", "kind": "Video", "video_id": "d7zqiCrfiUE", "keywords": "", "youtube_id": "d7zqiCrfiUE", "readable_id": "searching-for-scholarships"}, "C3cwGCezgSQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C3cwGCezgSQ.mp4/C3cwGCezgSQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C3cwGCezgSQ.mp4/C3cwGCezgSQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C3cwGCezgSQ.m3u8/C3cwGCezgSQ.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/hellenistic/laoco-n-and-his-sons-early-first-century-c-e/", "duration": 223, "id": "C3cwGCezgSQ", "title": "Laoco\u00f6n and his sons", "format": "mp4", "description": "Athanadoros, Hagesandros, and Polydoros of Rhodes, Laoco\u00f6n and his Sons, early first century C.E., marble, 7'10 1/2\" high (Vatican Museums)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "laoco-n-and-his-sons-early-first-century-c-e", "kind": "Video", "video_id": "C3cwGCezgSQ", "keywords": "Greek, Hellenistic, Athanadoros, Hagesandros, Polydoros of Rhodes, Laoco\u00f6n and his Sons", "youtube_id": "C3cwGCezgSQ", "readable_id": "laoco-n-and-his-sons-early-first-century-c-e"}, "4tctB1wZNiI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4tctB1wZNiI.mp4/4tctB1wZNiI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4tctB1wZNiI.mp4/4tctB1wZNiI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4tctB1wZNiI.m3u8/4tctB1wZNiI.m3u8"}, "duration": 661, "id": "4tctB1wZNiI", "title": "Magnetism 8", "format": "mp4", "description": "More on the forces exerted by 2 current carrying wires on each other.", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-8/", "slug": "magnetism-8", "kind": "Video", "video_id": "4tctB1wZNiI", "keywords": "physics, current, magnetic, field", "youtube_id": "4tctB1wZNiI", "readable_id": "magnetism-8"}, "t96N4zaP-s8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t96N4zaP-s8.mp4/t96N4zaP-s8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t96N4zaP-s8.mp4/t96N4zaP-s8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t96N4zaP-s8.m3u8/t96N4zaP-s8.m3u8"}, "duration": 152, "id": "t96N4zaP-s8", "title": "Finding the 5th term in recursively defined sequence", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-sequences/term-of-recursive-sequence/", "slug": "term-of-recursive-sequence", "kind": "Video", "video_id": "t96N4zaP-s8", "keywords": "", "youtube_id": "t96N4zaP-s8", "readable_id": "term-of-recursive-sequence"}, "NjJFJ7ge_qk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NjJFJ7ge_qk.mp4/NjJFJ7ge_qk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NjJFJ7ge_qk.mp4/NjJFJ7ge_qk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NjJFJ7ge_qk.m3u8/NjJFJ7ge_qk.m3u8"}, "path": "khan/math/arithmetic/telling-time-topic/telling-time/telling-time-exercise-example-1/", "duration": 171, "id": "NjJFJ7ge_qk", "title": "Telling time exercise example 1", "format": "mp4", "description": "Tell time on a labeled analog clock.", "slug": "telling-time-exercise-example-1", "kind": "Video", "video_id": "NjJFJ7ge_qk", "keywords": "", "youtube_id": "NjJFJ7ge_qk", "readable_id": "telling-time-exercise-example-1"}, "-xyTz0WZ1W4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-xyTz0WZ1W4.mp4/-xyTz0WZ1W4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-xyTz0WZ1W4.mp4/-xyTz0WZ1W4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-xyTz0WZ1W4.m3u8/-xyTz0WZ1W4.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/advanced-ratios/alternate-solution-to-ratio-problem-hd-version/", "duration": 422, "id": "-xyTz0WZ1W4", "title": "Alternate solution to ratio problem", "format": "mp4", "description": "An alternate solution to the advanced ratio problem in the last video.", "slug": "alternate-solution-to-ratio-problem-hd-version", "kind": "Video", "video_id": "-xyTz0WZ1W4", "keywords": "ratio, ratios, algebra", "youtube_id": "-xyTz0WZ1W4", "readable_id": "alternate-solution-to-ratio-problem-hd-version"}, "79lagkER9qY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/79lagkER9qY.mp4/79lagkER9qY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/79lagkER9qY.mp4/79lagkER9qY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/79lagkER9qY.m3u8/79lagkER9qY.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-compass-construction/", "duration": 769, "id": "79lagkER9qY", "title": "CA Geometry: Compass construction", "format": "mp4", "description": "56-60, compass construction, coordinates", "slug": "ca-geometry-compass-construction", "kind": "Video", "video_id": "79lagkER9qY", "keywords": "geometry, compass, construction", "youtube_id": "79lagkER9qY", "readable_id": "ca-geometry-compass-construction"}, "YTRctTr7MyA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YTRctTr7MyA.mp4/YTRctTr7MyA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YTRctTr7MyA.mp4/YTRctTr7MyA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YTRctTr7MyA.m3u8/YTRctTr7MyA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/beginners-guide-greece/prize-amphora/", "duration": 75, "id": "YTRctTr7MyA", "title": "Prize amphora showing a chariot race", "format": "mp4", "description": "Chariot-racing was the only Olympic sport in which women could take part, as owners of teams of horses. Kyniska, a princess of Sparta, was the first woman to win the Olympic crown in this sport.\nBritish Museum curator Judith Swaddling describes the amphora.\n\u00a9 Trustees of the British Museum\n", "slug": "prize-amphora", "kind": "Video", "video_id": "YTRctTr7MyA", "keywords": "olympics, ancient greece,", "youtube_id": "YTRctTr7MyA", "readable_id": "prize-amphora"}, "L155lNA9Y0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L155lNA9Y0Y.mp4/L155lNA9Y0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L155lNA9Y0Y.mp4/L155lNA9Y0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L155lNA9Y0Y.m3u8/L155lNA9Y0Y.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/damascusroom/", "duration": 199, "id": "L155lNA9Y0Y", "title": "Conserving the Damascus Room at The Metropolitan Museum of Art", "format": "mp4", "description": "The Damascus Room (1707) served as the reception area within a Syrian home of the Ottoman period. Extensive conservation and historical research were carried out by the Metropolitan Museum in preparation for the opening of the new galleries on November 1, 2011.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "slug": "damascusroom", "kind": "Video", "video_id": "L155lNA9Y0Y", "keywords": "room, conservation, research, home, Ottoman", "youtube_id": "L155lNA9Y0Y", "readable_id": "damascusroom"}, "_Ub-jKHFEQg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_Ub-jKHFEQg.mp4/_Ub-jKHFEQg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_Ub-jKHFEQg.mp4/_Ub-jKHFEQg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_Ub-jKHFEQg.m3u8/_Ub-jKHFEQg.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/e-flat-clarinet-interview-and-demonstration-with-jessica-phillips-rieske/", "duration": 385, "id": "_Ub-jKHFEQg", "title": "E-Flat Clarinet: Interview and demonstration with Jessica Phillips Rieske", "format": "mp4", "description": "", "slug": "e-flat-clarinet-interview-and-demonstration-with-jessica-phillips-rieske", "kind": "Video", "video_id": "_Ub-jKHFEQg", "keywords": "", "youtube_id": "_Ub-jKHFEQg", "readable_id": "e-flat-clarinet-interview-and-demonstration-with-jessica-phillips-rieske"}, "Xcrco59p40o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xcrco59p40o.mp4/Xcrco59p40o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xcrco59p40o.mp4/Xcrco59p40o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xcrco59p40o.m3u8/Xcrco59p40o.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermodynamics-mcat/pv-diagrams-part-1-work-and-isobaric-processes/", "duration": 714, "id": "Xcrco59p40o", "title": "PV diagrams - part 1: Work and isobaric processes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "pv-diagrams-part-1-work-and-isobaric-processes", "kind": "Video", "video_id": "Xcrco59p40o", "keywords": "", "youtube_id": "Xcrco59p40o", "readable_id": "pv-diagrams-part-1-work-and-isobaric-processes"}, "K_OI9LA54AA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K_OI9LA54AA.mp4/K_OI9LA54AA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K_OI9LA54AA.mp4/K_OI9LA54AA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K_OI9LA54AA.m3u8/K_OI9LA54AA.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/point-slope/idea-behind-point-slope-form/", "duration": 389, "id": "K_OI9LA54AA", "title": "Introduction to point-slope form", "format": "mp4", "description": "", "slug": "idea-behind-point-slope-form", "kind": "Video", "video_id": "K_OI9LA54AA", "keywords": "", "youtube_id": "K_OI9LA54AA", "readable_id": "idea-behind-point-slope-form"}, "aKeDUvpfOfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aKeDUvpfOfI.mp4/aKeDUvpfOfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aKeDUvpfOfI.mp4/aKeDUvpfOfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aKeDUvpfOfI.m3u8/aKeDUvpfOfI.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/electrophilic-aromatic-substitution/sulfonation-benzene/", "duration": 624, "id": "aKeDUvpfOfI", "title": "Sulfonation", "format": "mp4", "description": "Sulfonation of benzene", "slug": "sulfonation-benzene", "kind": "Video", "video_id": "aKeDUvpfOfI", "keywords": "", "youtube_id": "aKeDUvpfOfI", "readable_id": "sulfonation-benzene"}, "7rIFO8hct9g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7rIFO8hct9g.mp4/7rIFO8hct9g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7rIFO8hct9g.mp4/7rIFO8hct9g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7rIFO8hct9g.m3u8/7rIFO8hct9g.m3u8"}, "duration": 732, "id": "7rIFO8hct9g", "title": "Point distance to plane", "format": "mp4", "description": "Distance between a point and a plane in three dimensions", "path": "khan/test-prep/iit-jee-subject/iit-jee/point-distance-to-plane/", "slug": "point-distance-to-plane", "kind": "Video", "video_id": "7rIFO8hct9g", "keywords": "linear, algebra, point, plane, distance, normal, vector", "youtube_id": "7rIFO8hct9g", "readable_id": "point-distance-to-plane"}, "kCM2mSb4qIU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kCM2mSb4qIU.mp4/kCM2mSb4qIU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kCM2mSb4qIU.mp4/kCM2mSb4qIU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kCM2mSb4qIU.m3u8/kCM2mSb4qIU.m3u8"}, "duration": 334, "id": "kCM2mSb4qIU", "title": "The periodic table - transition metals", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/periodic-table-transition-metals/", "slug": "periodic-table-transition-metals", "kind": "Video", "video_id": "kCM2mSb4qIU", "keywords": "", "youtube_id": "kCM2mSb4qIU", "readable_id": "periodic-table-transition-metals"}, "kOnzZHJYzb4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kOnzZHJYzb4.mp4/kOnzZHJYzb4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kOnzZHJYzb4.mp4/kOnzZHJYzb4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kOnzZHJYzb4.m3u8/kOnzZHJYzb4.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/rosa-bonheur-plowing-in-the-nivernais-1849/", "duration": 209, "id": "kOnzZHJYzb4", "title": "Bonheur, Plowing in the Nivernais", "format": "mp4", "description": "Rosa Bonheur, Plowing in the Nivernais (or The First Dressing), oil on canvas, 1849 (Mus\u00e9e d'Orsay, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "rosa-bonheur-plowing-in-the-nivernais-1849", "kind": "Video", "video_id": "kOnzZHJYzb4", "keywords": "Rosa Bonheur, Bonheur, Plowing in the Nivernais, French painting, women in art, 19th century, Realism, animals in art, smarthistory", "youtube_id": "kOnzZHJYzb4", "readable_id": "rosa-bonheur-plowing-in-the-nivernais-1849"}, "kjAjlkzkvBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kjAjlkzkvBU.mp4/kjAjlkzkvBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kjAjlkzkvBU.mp4/kjAjlkzkvBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kjAjlkzkvBU.m3u8/kjAjlkzkvBU.m3u8"}, "duration": 770, "id": "kjAjlkzkvBU", "title": "Latin American Revolutions", "format": "mp4", "description": "In which John Green talks about the many revolutions of Latin America in the 19th century. At the beginning of the 1800s, Latin America was firmly under the control of Spain and Portugal. The revolutionary zeal that had recently created the United States and had taken off Louis XVI's head in France arrived in South America, and a racially diverse group of people who felt more South American than European took over. John covers the soft revolution of Brazil, in which Prince Pedro boldly seized power from his father, but promised to give it back if King Jo\u00e3o ever returned to Brazil. He also covers the decidedly more violent revolutions in Mexico, Venezuela, and Argentina. Watch the video to see Sim\u00f3n Bol\u00edvar's dream of a United South America crushed, even as he manages to liberate a bunch of countries and get two currencies and about a thousand schools and parks named after him.", "path": "khan/humanities/history/crashcourse-worldhistory/you-aint-the-boss-of-me-2/crash-course-world-history-31/", "slug": "crash-course-world-history-31", "kind": "Video", "video_id": "kjAjlkzkvBU", "keywords": "crash course", "youtube_id": "kjAjlkzkvBU", "readable_id": "crash-course-world-history-31"}, "l3hw0twZSCc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l3hw0twZSCc.mp4/l3hw0twZSCc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l3hw0twZSCc.mp4/l3hw0twZSCc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l3hw0twZSCc.m3u8/l3hw0twZSCc.m3u8"}, "duration": 660, "id": "l3hw0twZSCc", "title": "Magnetism 7", "format": "mp4", "description": "The magnetic force that two current-carrying wires exert on each other.", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-7/", "slug": "magnetism-7", "kind": "Video", "video_id": "l3hw0twZSCc", "keywords": "physics, magnetism, current", "youtube_id": "l3hw0twZSCc", "readable_id": "magnetism-7"}, "LE_aQAur7nI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LE_aQAur7nI.mp4/LE_aQAur7nI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LE_aQAur7nI.mp4/LE_aQAur7nI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LE_aQAur7nI.m3u8/LE_aQAur7nI.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/othogonal_complements/lin-alg-orthogonal-complement-of-the-nullspace/", "duration": 207, "id": "LE_aQAur7nI", "title": "Orthogonal complement of the nullspace", "format": "mp4", "description": "The orthogonal complement of the nullspace and left nullspace.", "slug": "lin-alg-orthogonal-complement-of-the-nullspace", "kind": "Video", "video_id": "LE_aQAur7nI", "keywords": "orthogonal, complement", "youtube_id": "LE_aQAur7nI", "readable_id": "lin-alg-orthogonal-complement-of-the-nullspace"}, "BukTc4q9BMc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BukTc4q9BMc.mp4/BukTc4q9BMc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BukTc4q9BMc.mp4/BukTc4q9BMc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BukTc4q9BMc.m3u8/BukTc4q9BMc.m3u8"}, "duration": 51, "id": "BukTc4q9BMc", "title": "Correction to force of friction keeping the block stationary", "format": "mp4", "description": "Correction to Force of Friction Keeping the Block Stationary", "path": "khan/test-prep/mcat/physical-processes/forces-on-inclined-planes/correction-of-force-of-friction-keeping-the-block-stationary/", "slug": "correction-of-force-of-friction-keeping-the-block-stationary", "kind": "Video", "video_id": "BukTc4q9BMc", "keywords": "Correction, to, Force, of, Friction, Keeping, the, Block, Stationary", "youtube_id": "BukTc4q9BMc", "readable_id": "correction-of-force-of-friction-keeping-the-block-stationary"}, "pJ8KwRztfF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pJ8KwRztfF0.mp4/pJ8KwRztfF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pJ8KwRztfF0.mp4/pJ8KwRztfF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pJ8KwRztfF0.m3u8/pJ8KwRztfF0.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-money/counting-american-coins/", "duration": 271, "id": "pJ8KwRztfF0", "title": "Counting American coins", "format": "mp4", "description": "", "slug": "counting-american-coins", "kind": "Video", "video_id": "pJ8KwRztfF0", "keywords": "", "youtube_id": "pJ8KwRztfF0", "readable_id": "counting-american-coins"}, "vsjl4aE2VkA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vsjl4aE2VkA.mp4/vsjl4aE2VkA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vsjl4aE2VkA.mp4/vsjl4aE2VkA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vsjl4aE2VkA.m3u8/vsjl4aE2VkA.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/roettgen-pieta/", "duration": 333, "id": "vsjl4aE2VkA", "title": "R\u00f6ttgen Piet\u00e0", "format": "mp4", "description": "R\u00f6ttgen Piet\u00e0, c. 1300-25, painted wood, 34 1/2 inches high (Rheinisches Landesmuseum, Bonn). \u00a0Speakers: Dr. Nancy Ross and Dr. Beth Harris", "slug": "roettgen-pieta", "kind": "Video", "video_id": "vsjl4aE2VkA", "keywords": "", "youtube_id": "vsjl4aE2VkA", "readable_id": "roettgen-pieta"}, "vdpyWeiHXmU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vdpyWeiHXmU.mp4/vdpyWeiHXmU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vdpyWeiHXmU.mp4/vdpyWeiHXmU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vdpyWeiHXmU.m3u8/vdpyWeiHXmU.m3u8"}, "path": "khan/math/geometry/basic-geometry/cross-sections/rotating-2d-shapes-in-3d/", "duration": 252, "id": "vdpyWeiHXmU", "title": "Rotating 2D shapes in 3D", "format": "mp4", "description": "", "slug": "rotating-2d-shapes-in-3d", "kind": "Video", "video_id": "vdpyWeiHXmU", "keywords": "", "youtube_id": "vdpyWeiHXmU", "readable_id": "rotating-2d-shapes-in-3d"}, "1pHhMX0_4Bw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1pHhMX0_4Bw.mp4/1pHhMX0_4Bw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1pHhMX0_4Bw.mp4/1pHhMX0_4Bw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1pHhMX0_4Bw.m3u8/1pHhMX0_4Bw.m3u8"}, "path": "khan/math/basic-geo/basic-geo-shapes/basic-geo-classifying-shapes/classifying-shapes/", "duration": 148, "id": "1pHhMX0_4Bw", "title": "Quadrilaterals: classifying shapes", "format": "mp4", "description": "Let's see how well you classify shapes by determining what properties match each kind of quadrilateral.", "slug": "classifying-shapes", "kind": "Video", "video_id": "1pHhMX0_4Bw", "keywords": "", "youtube_id": "1pHhMX0_4Bw", "readable_id": "classifying-shapes"}, "wRBPzExOH2A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wRBPzExOH2A.mp4/wRBPzExOH2A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wRBPzExOH2A.mp4/wRBPzExOH2A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wRBPzExOH2A.m3u8/wRBPzExOH2A.m3u8"}, "duration": 410, "id": "wRBPzExOH2A", "title": "Understanding variables representing integers on number line", "format": "mp4", "description": "Let's get some practice thinking about adding and subtracting variables representing positive and negative numbers on the number line.", "path": "understanding-variables-representing-integers-on-number-line/", "slug": "understanding-variables-representing-integers-on-number-line", "kind": "Video", "video_id": "wRBPzExOH2A", "keywords": "", "youtube_id": "wRBPzExOH2A", "readable_id": "understanding-variables-representing-integers-on-number-line"}, "ZueUUk4OjeY": {"download_urls": {}, "path": "khan/humanities/music/music-instruments-orchestra/woodwinds-music/oboe/", "duration": 524, "id": "ZueUUk4OjeY", "title": "Oboe: Interview and demonstration with principal John Ferrillo", "format": "mp4", "description": "", "slug": "oboe", "kind": "Video", "video_id": "ZueUUk4OjeY", "keywords": "Oboe", "youtube_id": "ZueUUk4OjeY", "readable_id": "oboe"}, "xSixUm1cXSw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xSixUm1cXSw.mp4/xSixUm1cXSw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xSixUm1cXSw.mp4/xSixUm1cXSw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xSixUm1cXSw.m3u8/xSixUm1cXSw.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/rembrandt-a-girl-at-a-window-1645/", "duration": 170, "id": "xSixUm1cXSw", "title": "Rembrandt, Girl at a Window", "format": "mp4", "description": "Rembrandt Harmensz van Rijn, Girl at a Window, 1645, oil on canvas, 32 x 24 in. (81.6 x 61 cm), (Dulwich Picture Gallery, London) Speakers: Pippa Couch, Rachel Ropeik", "slug": "rembrandt-a-girl-at-a-window-1645", "kind": "Video", "video_id": "xSixUm1cXSw", "keywords": "Rembrandt, Dulwich Picture Gallery, Art History, Smarthistory", "youtube_id": "xSixUm1cXSw", "readable_id": "rembrandt-a-girl-at-a-window-1645"}, "1CxRVVGGNJU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1CxRVVGGNJU.mp4/1CxRVVGGNJU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1CxRVVGGNJU.mp4/1CxRVVGGNJU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1CxRVVGGNJU.m3u8/1CxRVVGGNJU.m3u8"}, "duration": 206, "id": "1CxRVVGGNJU", "title": "Backwardation bullish or bearish", "format": "mp4", "description": "Thinking about why backwardation in commodities markets is bullish", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/backwardation-bullish-or-bearish/", "slug": "backwardation-bullish-or-bearish", "kind": "Video", "video_id": "1CxRVVGGNJU", "keywords": "finance, gold, oil, silver", "youtube_id": "1CxRVVGGNJU", "readable_id": "backwardation-bullish-or-bearish"}, "hmj3_zbz2eg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hmj3_zbz2eg.mp4/hmj3_zbz2eg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hmj3_zbz2eg.mp4/hmj3_zbz2eg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hmj3_zbz2eg.m3u8/hmj3_zbz2eg.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/triangle-angle-example-1/", "duration": 363, "id": "hmj3_zbz2eg", "title": "Triangle angle example 1", "format": "mp4", "description": "Figuring out angles in a triangle. A little about exterior angles being the sum of the remote interior angles", "slug": "triangle-angle-example-1", "kind": "Video", "video_id": "hmj3_zbz2eg", "keywords": "geometry", "youtube_id": "hmj3_zbz2eg", "readable_id": "triangle-angle-example-1"}, "-qP2831i9Rc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-qP2831i9Rc.mp4/-qP2831i9Rc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-qP2831i9Rc.mp4/-qP2831i9Rc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-qP2831i9Rc.m3u8/-qP2831i9Rc.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-4/", "duration": 102, "id": "-qP2831i9Rc", "title": "4 Solving for an angle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-4", "kind": "Video", "video_id": "-qP2831i9Rc", "keywords": "", "youtube_id": "-qP2831i9Rc", "readable_id": "sat-getting-ready-2-4"}, "CkNArgNPI2Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CkNArgNPI2Y.mp4/CkNArgNPI2Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CkNArgNPI2Y.mp4/CkNArgNPI2Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CkNArgNPI2Y.m3u8/CkNArgNPI2Y.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/greek-debt-crisis/greek-financial-crisis-part-2/", "duration": 636, "id": "CkNArgNPI2Y", "title": "Greek financial crisis (part 2)", "format": "mp4", "description": "What Greece could have done if it had its own currency", "slug": "greek-financial-crisis-part-2", "kind": "Video", "video_id": "CkNArgNPI2Y", "keywords": "greece, financial, crisis, eurozone, euro", "youtube_id": "CkNArgNPI2Y", "readable_id": "greek-financial-crisis-part-2"}, "8wIodo1HD4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8wIodo1HD4Y.mp4/8wIodo1HD4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8wIodo1HD4Y.mp4/8wIodo1HD4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8wIodo1HD4Y.m3u8/8wIodo1HD4Y.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/rate-of-reaction/", "duration": 554, "id": "8wIodo1HD4Y", "title": "Rate of reaction", "format": "mp4", "description": "", "slug": "rate-of-reaction", "kind": "Video", "video_id": "8wIodo1HD4Y", "keywords": "", "youtube_id": "8wIodo1HD4Y", "readable_id": "rate-of-reaction"}, "MKWBx78L7Qg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MKWBx78L7Qg.mp4/MKWBx78L7Qg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MKWBx78L7Qg.mp4/MKWBx78L7Qg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MKWBx78L7Qg.m3u8/MKWBx78L7Qg.m3u8"}, "duration": 307, "id": "MKWBx78L7Qg", "title": "Chain rule introduction", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-introduction/", "slug": "chain-rule-introduction", "kind": "Video", "video_id": "MKWBx78L7Qg", "keywords": "", "youtube_id": "MKWBx78L7Qg", "readable_id": "chain-rule-introduction"}, "KD46pC_KFWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KD46pC_KFWk.mp4/KD46pC_KFWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KD46pC_KFWk.mp4/KD46pC_KFWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KD46pC_KFWk.m3u8/KD46pC_KFWk.m3u8"}, "duration": 576, "id": "KD46pC_KFWk", "title": "2003 AIME II problem 12", "format": "mp4", "description": "Minimum members in a committee", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-12/", "slug": "2003-aime-ii-problem-12", "kind": "Video", "video_id": "KD46pC_KFWk", "keywords": "inequality, word, problem", "youtube_id": "KD46pC_KFWk", "readable_id": "2003-aime-ii-problem-12"}, "7ym7FWyCzKI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7ym7FWyCzKI.mp4/7ym7FWyCzKI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7ym7FWyCzKI.mp4/7ym7FWyCzKI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7ym7FWyCzKI.m3u8/7ym7FWyCzKI.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/pozzo-glorification-of-saint-ignatius-ceiling-fresco-in-the-nave-of-sant-ignazio-rome-1691-94/", "duration": 341, "id": "7ym7FWyCzKI", "title": "Pozzo, Glorification of Saint Ignatius, Sant'Ignazio", "format": "mp4", "description": "Fra Andrea Pozzo, Glorification of Saint Ignatius, ceiling fresco in the nave of Sant'Ignazio, Rome, 1691-94\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "pozzo-glorification-of-saint-ignatius-ceiling-fresco-in-the-nave-of-sant-ignazio-rome-1691-94", "kind": "Video", "video_id": "7ym7FWyCzKI", "keywords": "", "youtube_id": "7ym7FWyCzKI", "readable_id": "pozzo-glorification-of-saint-ignatius-ceiling-fresco-in-the-nave-of-sant-ignazio-rome-1691-94"}, "xuQcB-oo-4U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xuQcB-oo-4U.mp4/xuQcB-oo-4U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xuQcB-oo-4U.mp4/xuQcB-oo-4U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xuQcB-oo-4U.m3u8/xuQcB-oo-4U.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/reverse-engineering/what-is-inside-an-alarm-clock-radio-1/", "duration": 834, "id": "xuQcB-oo-4U", "title": "What is inside an alarm clock radio?", "format": "mp4", "description": "In this video we explore what is inside an alarm clock, how it is made, and how it works.", "slug": "what-is-inside-an-alarm-clock-radio-1", "kind": "Video", "video_id": "xuQcB-oo-4U", "keywords": "radio, alarm clock, am, fm, frequency modulation, amplitude modulation, integrated circuit, clock divider, crystal oscillator, diode, bridge rectifier, transformer, AC, DC, alternating current, direct current, variable capacitors, ferrite rod antenna, ante", "youtube_id": "xuQcB-oo-4U", "readable_id": "what-is-inside-an-alarm-clock-radio-1"}, "ucghWyc2_qs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ucghWyc2_qs.mp4/ucghWyc2_qs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ucghWyc2_qs.mp4/ucghWyc2_qs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ucghWyc2_qs.m3u8/ucghWyc2_qs.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-6c/", "duration": 449, "id": "ucghWyc2_qs", "title": "2011 Calculus AB free response #6c", "format": "mp4", "description": "Average value of a piecewise-defined function on an interval", "slug": "2011-calculus-ab-free-response-6c", "kind": "Video", "video_id": "ucghWyc2_qs", "keywords": "AP, advanced, placement, calculus", "youtube_id": "ucghWyc2_qs", "readable_id": "2011-calculus-ab-free-response-6c"}, "dCSH7ok7ejI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dCSH7ok7ejI.mp4/dCSH7ok7ejI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dCSH7ok7ejI.mp4/dCSH7ok7ejI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dCSH7ok7ejI.m3u8/dCSH7ok7ejI.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/hadrian-building-the-wall/", "duration": 195, "id": "dCSH7ok7ejI", "title": "Hadrian, Building the wall", "format": "mp4", "description": "In 122 C.E. Hadrian ordered a mighty frontier system to be built across the north of Britain. The result was Hadrian's Wall, a 73 mile barrier stretching from the Solway Firth on the west coast of Britain to the River Tyne on the east coast.\u00a0\u00a9 Trustees of the British Museum", "slug": "hadrian-building-the-wall", "kind": "Video", "video_id": "dCSH7ok7ejI", "keywords": "", "youtube_id": "dCSH7ok7ejI", "readable_id": "hadrian-building-the-wall"}, "6agzj3A9IgA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6agzj3A9IgA.mp4/6agzj3A9IgA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6agzj3A9IgA.mp4/6agzj3A9IgA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6agzj3A9IgA.m3u8/6agzj3A9IgA.m3u8"}, "duration": 324, "id": "6agzj3A9IgA", "title": "Example 2: Completing the square", "format": "mp4", "description": "U10_L1_T2_we2 Completing the Square 2", "path": "khan/math/algebra/quadratics/completing_the_square/ex2-completing-the-square/", "slug": "ex2-completing-the-square", "kind": "Video", "video_id": "6agzj3A9IgA", "keywords": "U10_L1_T2_we2, Completing, the, Square, CC_39336_A-REI_4_a, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_b", "youtube_id": "6agzj3A9IgA", "readable_id": "ex2-completing-the-square"}, "XoBlfbrdBpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XoBlfbrdBpQ.mp4/XoBlfbrdBpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XoBlfbrdBpQ.mp4/XoBlfbrdBpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XoBlfbrdBpQ.m3u8/XoBlfbrdBpQ.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/comparison-test-convergence/", "duration": 295, "id": "XoBlfbrdBpQ", "title": "Comparison test to show convergence", "format": "mp4", "description": "", "slug": "comparison-test-convergence", "kind": "Video", "video_id": "XoBlfbrdBpQ", "keywords": "", "youtube_id": "XoBlfbrdBpQ", "readable_id": "comparison-test-convergence"}, "g-SfwjbpA4U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g-SfwjbpA4U.mp4/g-SfwjbpA4U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g-SfwjbpA4U.mp4/g-SfwjbpA4U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g-SfwjbpA4U.m3u8/g-SfwjbpA4U.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/postive-improper-fractions-on-the-number-line/", "duration": 132, "id": "g-SfwjbpA4U", "title": "Mixed number or improper fraction on a number line", "format": "mp4", "description": "Fraction or mixed number...either way you should end up on the same spot on the number line. Give it a try with us.", "slug": "postive-improper-fractions-on-the-number-line", "kind": "Video", "video_id": "g-SfwjbpA4U", "keywords": "", "youtube_id": "g-SfwjbpA4U", "readable_id": "postive-improper-fractions-on-the-number-line"}, "OW0Yq2nWyuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OW0Yq2nWyuY.mp4/OW0Yq2nWyuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OW0Yq2nWyuY.mp4/OW0Yq2nWyuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OW0Yq2nWyuY.m3u8/OW0Yq2nWyuY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/uterine-inversion/", "duration": 411, "id": "OW0Yq2nWyuY", "title": "Uterine inversion", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "uterine-inversion", "kind": "Video", "video_id": "OW0Yq2nWyuY", "keywords": "", "youtube_id": "OW0Yq2nWyuY", "readable_id": "uterine-inversion"}, "NFDMXwwzyIM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NFDMXwwzyIM.mp4/NFDMXwwzyIM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NFDMXwwzyIM.mp4/NFDMXwwzyIM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NFDMXwwzyIM.m3u8/NFDMXwwzyIM.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-17-what-happened-to-the-gold/", "duration": 612, "id": "NFDMXwwzyIM", "title": "Banking 17: What happened to the gold?", "format": "mp4", "description": "Getting off the gold standard. A short discussion of the meaning of wealth.", "slug": "banking-17-what-happened-to-the-gold", "kind": "Video", "video_id": "NFDMXwwzyIM", "keywords": "gold, standard, fiat, currency, wealth", "youtube_id": "NFDMXwwzyIM", "readable_id": "banking-17-what-happened-to-the-gold"}, "BTWLwoaNeBA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BTWLwoaNeBA.mp4/BTWLwoaNeBA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BTWLwoaNeBA.mp4/BTWLwoaNeBA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BTWLwoaNeBA.m3u8/BTWLwoaNeBA.m3u8"}, "duration": 255, "id": "BTWLwoaNeBA", "title": "Why S-waves only travel in solids", "format": "mp4", "description": "Why S-Waves Only Travel in Solids", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/seismic-waves-tutorial/why-s-waves-only-travel-in-solids/", "slug": "why-s-waves-only-travel-in-solids", "kind": "Video", "video_id": "BTWLwoaNeBA", "keywords": "Why, S-Waves, Only, Travel, in, Solids", "youtube_id": "BTWLwoaNeBA", "readable_id": "why-s-waves-only-travel-in-solids"}, "LRmwUsxNSL0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LRmwUsxNSL0.mp4/LRmwUsxNSL0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LRmwUsxNSL0.mp4/LRmwUsxNSL0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LRmwUsxNSL0.m3u8/LRmwUsxNSL0.m3u8"}, "duration": 438, "id": "LRmwUsxNSL0", "title": "Detectable civilizations in our galaxy 3", "format": "mp4", "description": "Reconciling with the traditional Drake Equation", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/life-in-universe-topic/detectable-civilizations-in-our-galaxy-3/", "slug": "detectable-civilizations-in-our-galaxy-3", "kind": "Video", "video_id": "LRmwUsxNSL0", "keywords": "star, formation, cosmology", "youtube_id": "LRmwUsxNSL0", "readable_id": "detectable-civilizations-in-our-galaxy-3"}, "arWBWBfNMB8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/arWBWBfNMB8.mp4/arWBWBfNMB8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/arWBWBfNMB8.mp4/arWBWBfNMB8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/arWBWBfNMB8.m3u8/arWBWBfNMB8.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section3/sat-4-economists/", "duration": 216, "id": "arWBWBfNMB8", "title": "4 Economists", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-4-economists", "kind": "Video", "video_id": "arWBWBfNMB8", "keywords": "", "youtube_id": "arWBWBfNMB8", "readable_id": "sat-4-economists"}, "-epr8lPIZYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-epr8lPIZYE.mp4/-epr8lPIZYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-epr8lPIZYE.mp4/-epr8lPIZYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-epr8lPIZYE.m3u8/-epr8lPIZYE.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/what-is-capital/", "duration": 570, "id": "-epr8lPIZYE", "title": "What is capital?", "format": "mp4", "description": "", "slug": "what-is-capital", "kind": "Video", "video_id": "-epr8lPIZYE", "keywords": "", "youtube_id": "-epr8lPIZYE", "readable_id": "what-is-capital"}, "GpOxsRF1Cjc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GpOxsRF1Cjc.mp4/GpOxsRF1Cjc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GpOxsRF1Cjc.mp4/GpOxsRF1Cjc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GpOxsRF1Cjc.m3u8/GpOxsRF1Cjc.m3u8"}, "duration": 215, "id": "GpOxsRF1Cjc", "title": "Dimensions of cube from volume", "format": "mp4", "description": "Learn how to find the side length of a cube whose volume is 512 cubic centimeters.", "path": "dimensions-of-cube-from-volume/", "slug": "dimensions-of-cube-from-volume", "kind": "Video", "video_id": "GpOxsRF1Cjc", "keywords": "", "youtube_id": "GpOxsRF1Cjc", "readable_id": "dimensions-of-cube-from-volume"}, "M7PnxSQedkM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M7PnxSQedkM.mp4/M7PnxSQedkM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M7PnxSQedkM.mp4/M7PnxSQedkM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M7PnxSQedkM.m3u8/M7PnxSQedkM.m3u8"}, "duration": 267, "id": "M7PnxSQedkM", "title": "Practice determining oxidation states", "format": "mp4", "description": "", "path": "khan/science/chemistry/oxidation-reduction/redox-oxidation-reduction/practice-determining-oxidation-states/", "slug": "practice-determining-oxidation-states", "kind": "Video", "video_id": "M7PnxSQedkM", "keywords": "", "youtube_id": "M7PnxSQedkM", "readable_id": "practice-determining-oxidation-states"}, "1rXISOamWNw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1rXISOamWNw.mp4/1rXISOamWNw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1rXISOamWNw.mp4/1rXISOamWNw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1rXISOamWNw.m3u8/1rXISOamWNw.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-12/", "duration": 49, "id": "1rXISOamWNw", "title": "12 Solving for half of j", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-12", "kind": "Video", "video_id": "1rXISOamWNw", "keywords": "", "youtube_id": "1rXISOamWNw", "readable_id": "2013-sat-practice-6-12"}, "95tChNVzodY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/95tChNVzodY.mp4/95tChNVzodY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/95tChNVzodY.mp4/95tChNVzodY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/95tChNVzodY.m3u8/95tChNVzodY.m3u8"}, "duration": 571, "id": "95tChNVzodY", "title": "Completing the square for quadratic formula", "format": "mp4", "description": "Completing the Square 4", "path": "khan/math/algebra/quadratics/completing_the_square/completing-the-square-4/", "slug": "completing-the-square-4", "kind": "Video", "video_id": "95tChNVzodY", "keywords": "U10_L1_T2_we4, Completing, the, Square, CC_39336_A-REI_4_a, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_b", "youtube_id": "95tChNVzodY", "readable_id": "completing-the-square-4"}, "aXhHcqQTrIg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aXhHcqQTrIg.mp4/aXhHcqQTrIg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aXhHcqQTrIg.mp4/aXhHcqQTrIg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aXhHcqQTrIg.m3u8/aXhHcqQTrIg.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/chatelet-part-2/", "duration": 234, "id": "aXhHcqQTrIg", "title": "Early Modern: \u00c9milie du Ch\u00e2telet part 2", "format": "mp4", "description": "In part 2, Andrew Janiak (Duke) further introduces Emilie Du Chatelet, a French philosopher, and her contribution to the debate about the principle of sufficient reason. This video is a part of a series of videos coming from Project Vox (Duke), a project recovering the lost voices of women philosophers.\n\nSpeaker: Dr. Andrew Janiak,\u00a0Creed C. Black Associate Professor of Philosophy, Duke University", "slug": "chatelet-part-2", "kind": "Video", "video_id": "aXhHcqQTrIg", "keywords": "", "youtube_id": "aXhHcqQTrIg", "readable_id": "chatelet-part-2"}, "Gx5D09s5X6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gx5D09s5X6U.mp4/Gx5D09s5X6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gx5D09s5X6U.mp4/Gx5D09s5X6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gx5D09s5X6U.m3u8/Gx5D09s5X6U.m3u8"}, "duration": 130, "id": "Gx5D09s5X6U", "title": "How to snakes", "format": "mp4", "description": "Snakes!\n\nSnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakesnakes.\n\nme: vihart.com\n\nYou can get a box here:\nhttp://www.amazon.com/dp/B003I6USDW?tag=vihartcom-20", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/how-to-snakes/", "slug": "how-to-snakes", "kind": "Video", "video_id": "Gx5D09s5X6U", "keywords": "snakes, math, fractal, mathematics, hydra, peano curve, pi", "youtube_id": "Gx5D09s5X6U", "readable_id": "how-to-snakes"}, "fOXo4p4WDKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fOXo4p4WDKM.mp4/fOXo4p4WDKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fOXo4p4WDKM.mp4/fOXo4p4WDKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fOXo4p4WDKM.m3u8/fOXo4p4WDKM.m3u8"}, "duration": 529, "id": "fOXo4p4WDKM", "title": "Addition 4", "format": "mp4", "description": "More practice carrying with multiple digit numbers", "path": "khan/math/arithmetic/addition-subtraction/addition_carrying/addition-4/", "slug": "addition-4", "kind": "Video", "video_id": "fOXo4p4WDKM", "keywords": "addition, carrying, CC_2_OA_1, CC_3_NBT_2, CC_4_NBT_4", "youtube_id": "fOXo4p4WDKM", "readable_id": "addition-4"}, "1YlXtpF-19A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1YlXtpF-19A.mp4/1YlXtpF-19A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1YlXtpF-19A.mp4/1YlXtpF-19A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1YlXtpF-19A.m3u8/1YlXtpF-19A.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-curves-and-acid-base-indicators/", "duration": 430, "id": "1YlXtpF-19A", "title": "Titration curves and acid-base indicators", "format": "mp4", "description": "", "slug": "titration-curves-and-acid-base-indicators", "kind": "Video", "video_id": "1YlXtpF-19A", "keywords": "", "youtube_id": "1YlXtpF-19A", "readable_id": "titration-curves-and-acid-base-indicators"}, "O9RPGJcAfJk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O9RPGJcAfJk.mp4/O9RPGJcAfJk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O9RPGJcAfJk.mp4/O9RPGJcAfJk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O9RPGJcAfJk.m3u8/O9RPGJcAfJk.m3u8"}, "duration": 499, "id": "O9RPGJcAfJk", "title": "Alkane with isopropyl group", "format": "mp4", "description": "", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/alkane-with-isopropyl-group/", "slug": "alkane-with-isopropyl-group", "kind": "Video", "video_id": "O9RPGJcAfJk", "keywords": "", "youtube_id": "O9RPGJcAfJk", "readable_id": "alkane-with-isopropyl-group"}, "oQpKtm5TtxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oQpKtm5TtxU.mp4/oQpKtm5TtxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oQpKtm5TtxU.mp4/oQpKtm5TtxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oQpKtm5TtxU.m3u8/oQpKtm5TtxU.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinatorics_precalc/permutations-and-combinations-1/", "duration": 225, "id": "oQpKtm5TtxU", "title": "Example: Ways to arrange colors", "format": "mp4", "description": "Thinking about how many ways you can pick four colors from a group of 6", "slug": "permutations-and-combinations-1", "kind": "Video", "video_id": "oQpKtm5TtxU", "keywords": "U12_L2_T3_we1, Permutations, and, Combinations", "youtube_id": "oQpKtm5TtxU", "readable_id": "permutations-and-combinations-1"}, "AfaFiSLM2hw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AfaFiSLM2hw.mp4/AfaFiSLM2hw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AfaFiSLM2hw.mp4/AfaFiSLM2hw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AfaFiSLM2hw.m3u8/AfaFiSLM2hw.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/dave-smith/kauffman-dave-smith-3/", "duration": 173, "id": "AfaFiSLM2hw", "title": "Shifting from Loyalty to Accountability", "format": "mp4", "description": "When Dave Smith came to the harsh realization and he alone was in charge of his future, he took a resourceful route to become an expert in his field. Mixing the desire to make it with the imagination to fake it, he went to great lengths to connect with TekScape IT customers and make them believe that his tiny organization was big enough to solve their trickiest problems.", "slug": "kauffman-dave-smith-3", "kind": "Video", "video_id": "AfaFiSLM2hw", "keywords": "", "youtube_id": "AfaFiSLM2hw", "readable_id": "kauffman-dave-smith-3"}, "au8x68HSQ3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/au8x68HSQ3E.mp4/au8x68HSQ3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/au8x68HSQ3E.mp4/au8x68HSQ3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/au8x68HSQ3E.m3u8/au8x68HSQ3E.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/addition-reactions-conjugated-dienes/addition-reaction-of-conjugated-dienes-ii-example/", "duration": 604, "id": "au8x68HSQ3E", "title": "Addition reaction of conjugated dienes II: Example", "format": "mp4", "description": "", "slug": "addition-reaction-of-conjugated-dienes-ii-example", "kind": "Video", "video_id": "au8x68HSQ3E", "keywords": "", "youtube_id": "au8x68HSQ3E", "readable_id": "addition-reaction-of-conjugated-dienes-ii-example"}, "YL10H_EcB-E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YL10H_EcB-E.mp4/YL10H_EcB-E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YL10H_EcB-E.mp4/YL10H_EcB-E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YL10H_EcB-E.m3u8/YL10H_EcB-E.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/renting-v-buying/renting-vs-buying-a-home/", "duration": 580, "id": "YL10H_EcB-E", "title": "Renting vs. buying a home", "format": "mp4", "description": "The math of renting vs. buying a home. Challenging the notion that it is always better to buy.", "slug": "renting-vs-buying-a-home", "kind": "Video", "video_id": "YL10H_EcB-E", "keywords": "mortgage, home, rent, buy, appreciation, taxes, economics", "youtube_id": "YL10H_EcB-E", "readable_id": "renting-vs-buying-a-home"}, "kK38qqvLQ2I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kK38qqvLQ2I.mp4/kK38qqvLQ2I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kK38qqvLQ2I.mp4/kK38qqvLQ2I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kK38qqvLQ2I.m3u8/kK38qqvLQ2I.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/holbein/hans-holbein-the-younger-the-merchant-georg-gisze-1532/", "duration": 197, "id": "kK38qqvLQ2I", "title": "Holbein the Younger, the Merchant Georg Gisze", "format": "mp4", "description": "Hans Holbein the Younger, The Merchant Georg Gisze, 1532, oil on oak, 97.5 x 86.2 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin)", "slug": "hans-holbein-the-younger-the-merchant-georg-gisze-1532", "kind": "Video", "video_id": "kK38qqvLQ2I", "keywords": "Holbein, Merchant, GAP, Google Art Project, Smarthistory, Khan Academy, OER, London, Hanseatic League, Portrait, German, Renaissance, England, Art History, Gem\u00e4ldegalerie, painting, Office, Work, Symbolism", "youtube_id": "kK38qqvLQ2I", "readable_id": "hans-holbein-the-younger-the-merchant-georg-gisze-1532"}, "5MOn8X-tyFw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5MOn8X-tyFw.mp4/5MOn8X-tyFw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5MOn8X-tyFw.mp4/5MOn8X-tyFw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5MOn8X-tyFw.m3u8/5MOn8X-tyFw.m3u8"}, "duration": 669, "id": "5MOn8X-tyFw", "title": "What's inside of blood?", "format": "mp4", "description": "Spin down your blood and find out what it's made up of. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/mcat/organ-systems/hematologic-system/what-s-inside-of-blood/", "slug": "what-s-inside-of-blood", "kind": "Video", "video_id": "5MOn8X-tyFw", "keywords": "", "youtube_id": "5MOn8X-tyFw", "readable_id": "what-s-inside-of-blood"}, "3UcjojHetfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3UcjojHetfE.mp4/3UcjojHetfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3UcjojHetfE.mp4/3UcjojHetfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3UcjojHetfE.m3u8/3UcjojHetfE.m3u8"}, "duration": 366, "id": "3UcjojHetfE", "title": "Humanistic theory", "format": "mp4", "description": "A major branch of psychology is Humanism. Learn what the humanistic theorists have to say about how we develop our personality. By Shreena Desai. ", "path": "khan/test-prep/mcat/behavior/theories-personality/humanistic-theory/", "slug": "humanistic-theory", "kind": "Video", "video_id": "3UcjojHetfE", "keywords": "humanistic theory", "youtube_id": "3UcjojHetfE", "readable_id": "humanistic-theory"}, "9YyLwzJunGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9YyLwzJunGw.mp4/9YyLwzJunGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9YyLwzJunGw.mp4/9YyLwzJunGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9YyLwzJunGw.m3u8/9YyLwzJunGw.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-9-12/", "duration": 135, "id": "9YyLwzJunGw", "title": "12 Corresponding side lengths", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-12", "kind": "Video", "video_id": "9YyLwzJunGw", "keywords": "", "youtube_id": "9YyLwzJunGw", "readable_id": "sat-2010-may-9-12"}, "3tyM_M3FQNM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3tyM_M3FQNM.mp4/3tyM_M3FQNM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3tyM_M3FQNM.mp4/3tyM_M3FQNM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3tyM_M3FQNM.m3u8/3tyM_M3FQNM.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/transformation-matrix/matrix-transformation-quadrilateral/", "duration": 368, "id": "3tyM_M3FQNM", "title": "Transforming a quadrilateral", "format": "mp4", "description": "", "slug": "matrix-transformation-quadrilateral", "kind": "Video", "video_id": "3tyM_M3FQNM", "keywords": "", "youtube_id": "3tyM_M3FQNM", "readable_id": "matrix-transformation-quadrilateral"}, "o5QRdHH8aeQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o5QRdHH8aeQ.mp4/o5QRdHH8aeQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o5QRdHH8aeQ.mp4/o5QRdHH8aeQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o5QRdHH8aeQ.m3u8/o5QRdHH8aeQ.m3u8"}, "duration": 539, "id": "o5QRdHH8aeQ", "title": "Formula for continuously compounding interest", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/cont-comp-int-and-e/continuously-compounding-interest-formula-e/", "slug": "continuously-compounding-interest-formula-e", "kind": "Video", "video_id": "o5QRdHH8aeQ", "keywords": "", "youtube_id": "o5QRdHH8aeQ", "readable_id": "continuously-compounding-interest-formula-e"}, "w217s1c8EOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w217s1c8EOg.mp4/w217s1c8EOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w217s1c8EOg.mp4/w217s1c8EOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w217s1c8EOg.m3u8/w217s1c8EOg.m3u8"}, "duration": 147, "id": "w217s1c8EOg", "title": "De Wain Valentine: surface matters", "format": "mp4", "description": "Learn about the importance and upkeep of the pristine surfaces on De Wain Valentine's sculptures and related conservation considerations. Love art? Follow us on Google+", "path": "valentine-surface-matters/", "slug": "valentine-surface-matters", "kind": "Video", "video_id": "w217s1c8EOg", "keywords": "", "youtube_id": "w217s1c8EOg", "readable_id": "valentine-surface-matters"}, "wo7DSaPP8hQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wo7DSaPP8hQ.mp4/wo7DSaPP8hQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wo7DSaPP8hQ.mp4/wo7DSaPP8hQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wo7DSaPP8hQ.m3u8/wo7DSaPP8hQ.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/interpreting-inequalities/", "duration": 399, "id": "wo7DSaPP8hQ", "title": "Constructing and solving a two-step inequality", "format": "mp4", "description": "We'll talk you through this fun and challenging inequality problem.", "slug": "interpreting-inequalities", "kind": "Video", "video_id": "wo7DSaPP8hQ", "keywords": "U05_L1_T1_we1, Interpreting, Inequalities, CC_6_EE_8, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-REI_3", "youtube_id": "wo7DSaPP8hQ", "readable_id": "interpreting-inequalities"}, "-lUEWEEpmIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-lUEWEEpmIo.mp4/-lUEWEEpmIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-lUEWEEpmIo.mp4/-lUEWEEpmIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-lUEWEEpmIo.m3u8/-lUEWEEpmIo.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/taking-a-percentage-example/", "duration": 127, "id": "-lUEWEEpmIo", "title": "Percentage of a whole number", "format": "mp4", "description": "We hope you're beginning to see that there's more than one way to skin a cat. In other words, there are several different ways to solve problems involving percentages, decimals, and fractions. Watch as find the percentage of a whole number.", "slug": "taking-a-percentage-example", "kind": "Video", "video_id": "-lUEWEEpmIo", "keywords": "", "youtube_id": "-lUEWEEpmIo", "readable_id": "taking-a-percentage-example"}, "FK1s1-OJ5BE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FK1s1-OJ5BE.mp4/FK1s1-OJ5BE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FK1s1-OJ5BE.mp4/FK1s1-OJ5BE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FK1s1-OJ5BE.m3u8/FK1s1-OJ5BE.m3u8"}, "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/plate-tectonics-geological-features-of-divergent-plate-boundaries/", "duration": 718, "id": "FK1s1-OJ5BE", "title": "Plate tectonics: Geological features of divergent plate boundaries", "format": "mp4", "description": "Plate Tectonics -- Geological Features of Divergent Plate Boundaries", "slug": "plate-tectonics-geological-features-of-divergent-plate-boundaries", "kind": "Video", "video_id": "FK1s1-OJ5BE", "keywords": "Plate, Tectonics, --, Geological, Features, of, Divergent, Boundaries", "youtube_id": "FK1s1-OJ5BE", "readable_id": "plate-tectonics-geological-features-of-divergent-plate-boundaries"}, "NZINmtuTSu0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NZINmtuTSu0.mp4/NZINmtuTSu0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NZINmtuTSu0.mp4/NZINmtuTSu0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NZINmtuTSu0.m3u8/NZINmtuTSu0.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/copy-of-khan-academy-living-room-chats/a-conversation-with-drew-houston/", "duration": 2414, "id": "NZINmtuTSu0", "title": "Drew Houston - CEO and Founder of Dropbox", "format": "mp4", "description": "", "slug": "a-conversation-with-drew-houston", "kind": "Video", "video_id": "NZINmtuTSu0", "keywords": "", "youtube_id": "NZINmtuTSu0", "readable_id": "a-conversation-with-drew-houston"}, "eZZkhSl8lMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eZZkhSl8lMA.mp4/eZZkhSl8lMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eZZkhSl8lMA.mp4/eZZkhSl8lMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eZZkhSl8lMA.m3u8/eZZkhSl8lMA.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-12-lone-star-transaction/", "duration": 628, "id": "eZZkhSl8lMA", "title": "Bailout 12: Lone Star transaction", "format": "mp4", "description": "A real life example of a transaction involving CDOs.", "slug": "bailout-12-lone-star-transaction", "kind": "Video", "video_id": "eZZkhSl8lMA", "keywords": "merill, lynch, lone, star, CDOs", "youtube_id": "eZZkhSl8lMA", "readable_id": "bailout-12-lone-star-transaction"}, "Ei5mgFtUGns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ei5mgFtUGns.mp4/Ei5mgFtUGns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ei5mgFtUGns.mp4/Ei5mgFtUGns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ei5mgFtUGns.m3u8/Ei5mgFtUGns.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-word-problems/length-word-problems/", "duration": 350, "id": "Ei5mgFtUGns", "title": "Length word problems", "format": "mp4", "description": "", "slug": "length-word-problems", "kind": "Video", "video_id": "Ei5mgFtUGns", "keywords": "", "youtube_id": "Ei5mgFtUGns", "readable_id": "length-word-problems"}, "JNm3M9cqWyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JNm3M9cqWyc.mp4/JNm3M9cqWyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JNm3M9cqWyc.mp4/JNm3M9cqWyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JNm3M9cqWyc.m3u8/JNm3M9cqWyc.m3u8"}, "duration": 589, "id": "JNm3M9cqWyc", "title": "Central limit theorem", "format": "mp4", "description": "Introduction to the central limit theorem and the sampling distribution of the mean", "path": "khan/math/probability/statistics-inferential/sampling_distribution/central-limit-theorem/", "slug": "central-limit-theorem", "kind": "Video", "video_id": "JNm3M9cqWyc", "keywords": "central, limit, theorem, sampling, distribution, of, the, mean, CC_6_SP_2, CC_6_SP_4, CC_6_SP_5_a, CC_6_SP_5_c, CC_6_SP_5_d, CC_7_SP_1, CC_7_SP_2", "youtube_id": "JNm3M9cqWyc", "readable_id": "central-limit-theorem"}, "hHBaf7PfvaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hHBaf7PfvaY.mp4/hHBaf7PfvaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hHBaf7PfvaY.mp4/hHBaf7PfvaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hHBaf7PfvaY.m3u8/hHBaf7PfvaY.m3u8"}, "path": "khan/humanities/art-oceania/polynesia/maori-meeting-house/", "duration": 399, "id": "hHBaf7PfvaY", "title": "A welcome to a Maori meeting house", "format": "mp4", "description": "Ceremony of blessing for a display of a Maori meeting house in Living and Dying, the Wellcome Trust Gallery, at the British Museum.\nVideo features Natasha McKinney, curator, George Nuku, artist, and Kateia Burrows, Ngati Porou, Aitutaki.\n\nSpeakers in the ceremony: Karl Burrows, Ngati Maru, Te Ati Awa, Whanganui.\n\n\u00a9Trustees of the British Museum\n", "slug": "maori-meeting-house", "kind": "Video", "video_id": "hHBaf7PfvaY", "keywords": "Maori, British Museum, New Zealand, Polynesia", "youtube_id": "hHBaf7PfvaY", "readable_id": "maori-meeting-house"}, "lJvXorny8xw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lJvXorny8xw.mp4/lJvXorny8xw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lJvXorny8xw.mp4/lJvXorny8xw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lJvXorny8xw.m3u8/lJvXorny8xw.m3u8"}, "path": "khan/humanities/medieval-world/medieval-book/making-medieval-book/listening-to-the-medieval-book/", "duration": 196, "id": "lJvXorny8xw", "title": "Listening to the Medieval book", "format": "mp4", "description": "Dr. Erik Kwakkel and Dr. Beth Harris look at two manuscripts: 1) Boethius, De institutione arithmetica, c. 1100, \u00a0The Hague), Royal Library, MS 78 E 59 and 2) Paris Bible, mid 13th century, The Hague, Royal Library, \u00a0MS 132 F 21 . With special thanks to Ed van der Vlist, Curator of Medieval Manuscripts, Koninklijke Bibliotheek, National Library of the Netherlands", "slug": "listening-to-the-medieval-book", "kind": "Video", "video_id": "lJvXorny8xw", "keywords": "art history,", "youtube_id": "lJvXorny8xw", "readable_id": "listening-to-the-medieval-book"}, "Iwmb1p25ws4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iwmb1p25ws4.mp4/Iwmb1p25ws4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iwmb1p25ws4.mp4/Iwmb1p25ws4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iwmb1p25ws4.m3u8/Iwmb1p25ws4.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermodynamics-mcat/second-law-of-thermodynamics/", "duration": 821, "id": "Iwmb1p25ws4", "title": "Second law of thermodynamics", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "second-law-of-thermodynamics", "kind": "Video", "video_id": "Iwmb1p25ws4", "keywords": "", "youtube_id": "Iwmb1p25ws4", "readable_id": "second-law-of-thermodynamics"}, "ve5hfX3ywk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ve5hfX3ywk0.mp4/ve5hfX3ywk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ve5hfX3ywk0.mp4/ve5hfX3ywk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ve5hfX3ywk0.m3u8/ve5hfX3ywk0.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/using-pka-values-to-predict-the-position-of-equilibrium-new/", "duration": 474, "id": "ve5hfX3ywk0", "title": "Using pKa values to predict the position of equilibrium", "format": "mp4", "description": "How to use pKa values to predict the position of equilibrium for organic acid-base reactions", "slug": "using-pka-values-to-predict-the-position-of-equilibrium-new", "kind": "Video", "video_id": "ve5hfX3ywk0", "keywords": "", "youtube_id": "ve5hfX3ywk0", "readable_id": "using-pka-values-to-predict-the-position-of-equilibrium-new"}, "c547u94QRFU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c547u94QRFU.mp4/c547u94QRFU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c547u94QRFU.mp4/c547u94QRFU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c547u94QRFU.m3u8/c547u94QRFU.m3u8"}, "duration": 646, "id": "c547u94QRFU", "title": "Meta directors I", "format": "mp4", "description": "Regiochemistry", "path": "khan/science/organic-chemistry/aromatic-compounds/deffect-2013-07-03t144454851z/meta-directors-i/", "slug": "meta-directors-i", "kind": "Video", "video_id": "c547u94QRFU", "keywords": "", "youtube_id": "c547u94QRFU", "readable_id": "meta-directors-i"}, "tDGVAyx-_xQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tDGVAyx-_xQ.mp4/tDGVAyx-_xQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tDGVAyx-_xQ.mp4/tDGVAyx-_xQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tDGVAyx-_xQ.m3u8/tDGVAyx-_xQ.m3u8"}, "path": "khan/college-admissions/applying-to-college/letters-of-recommendation/requesting-letters-of-recommendation/", "duration": 185, "id": "tDGVAyx-_xQ", "title": "Requesting letters of recommendation", "format": "mp4", "description": "", "slug": "requesting-letters-of-recommendation", "kind": "Video", "video_id": "tDGVAyx-_xQ", "keywords": "", "youtube_id": "tDGVAyx-_xQ", "readable_id": "requesting-letters-of-recommendation"}, "erZe85NrsK0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/erZe85NrsK0.mp4/erZe85NrsK0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/erZe85NrsK0.mp4/erZe85NrsK0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/erZe85NrsK0.m3u8/erZe85NrsK0.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decomposing-fractions-pre-alg/decomposing-a-mixed-number/", "duration": 300, "id": "erZe85NrsK0", "title": "Decomposing a mixed number", "format": "mp4", "description": "Decomposing mixed numbers is a pretty straightforward process. It's as simple as adding fractions with like denominators. Watch us do it!", "slug": "decomposing-a-mixed-number", "kind": "Video", "video_id": "erZe85NrsK0", "keywords": "", "youtube_id": "erZe85NrsK0", "readable_id": "decomposing-a-mixed-number"}, "IMvBKaeaxco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IMvBKaeaxco.mp4/IMvBKaeaxco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IMvBKaeaxco.mp4/IMvBKaeaxco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IMvBKaeaxco.m3u8/IMvBKaeaxco.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/evidence-that-dna-is-genetic-material-1/", "duration": 290, "id": "IMvBKaeaxco", "title": "Evidence that DNA is genetic material 1", "format": "mp4", "description": "", "slug": "evidence-that-dna-is-genetic-material-1", "kind": "Video", "video_id": "IMvBKaeaxco", "keywords": "", "youtube_id": "IMvBKaeaxco", "readable_id": "evidence-that-dna-is-genetic-material-1"}, "ajl1UdtYUCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ajl1UdtYUCA.mp4/ajl1UdtYUCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ajl1UdtYUCA.mp4/ajl1UdtYUCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ajl1UdtYUCA.m3u8/ajl1UdtYUCA.m3u8"}, "duration": 841, "id": "ajl1UdtYUCA", "title": "Geithner plan 5", "format": "mp4", "description": "Quantifying the value of the put option", "path": "khan/economics-finance-domain/core-finance/money-and-banking/geithner-plan/geithner-plan-iv/", "slug": "geithner-plan-iv", "kind": "Video", "video_id": "ajl1UdtYUCA", "keywords": "geithner, timothy, obama, plan, bailout, put, option, TALF, TARP", "youtube_id": "ajl1UdtYUCA", "readable_id": "geithner-plan-iv"}, "opEy6iN9kqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/opEy6iN9kqc.mp4/opEy6iN9kqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/opEy6iN9kqc.mp4/opEy6iN9kqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/opEy6iN9kqc.m3u8/opEy6iN9kqc.m3u8"}, "duration": 707, "id": "opEy6iN9kqc", "title": "More on IPOs", "format": "mp4", "description": "Public vs. Private Equity. Why people buy equity to begin with.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets/more-on-ipos/", "slug": "more-on-ipos", "kind": "Video", "video_id": "opEy6iN9kqc", "keywords": "ipo, initial, public, offering, equity, stock, market", "youtube_id": "opEy6iN9kqc", "readable_id": "more-on-ipos"}, "9b8qZ6OHZ5s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9b8qZ6OHZ5s.mp4/9b8qZ6OHZ5s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9b8qZ6OHZ5s.mp4/9b8qZ6OHZ5s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9b8qZ6OHZ5s.m3u8/9b8qZ6OHZ5s.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/mass-defect-and-binding-energy/", "duration": 688, "id": "9b8qZ6OHZ5s", "title": "Mass defect and binding energy", "format": "mp4", "description": "", "slug": "mass-defect-and-binding-energy", "kind": "Video", "video_id": "9b8qZ6OHZ5s", "keywords": "", "youtube_id": "9b8qZ6OHZ5s", "readable_id": "mass-defect-and-binding-energy"}, "FkDVucEoJpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FkDVucEoJpU.mp4/FkDVucEoJpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FkDVucEoJpU.mp4/FkDVucEoJpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FkDVucEoJpU.m3u8/FkDVucEoJpU.m3u8"}, "duration": 494, "id": "FkDVucEoJpU", "title": "Theories of Emotion", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/emotion/theories-of-emotion/", "slug": "theories-of-emotion", "kind": "Video", "video_id": "FkDVucEoJpU", "keywords": "", "youtube_id": "FkDVucEoJpU", "readable_id": "theories-of-emotion"}, "OzTqWpAPnrw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OzTqWpAPnrw.mp4/OzTqWpAPnrw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OzTqWpAPnrw.mp4/OzTqWpAPnrw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OzTqWpAPnrw.m3u8/OzTqWpAPnrw.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-27/", "duration": 605, "id": "OzTqWpAPnrw", "title": "GMAT: Data sufficiency 27", "format": "mp4", "description": "112-115, pg. 287", "slug": "gmat-data-sufficiency-27", "kind": "Video", "video_id": "OzTqWpAPnrw", "keywords": "gmat, data, sufficiency, math", "youtube_id": "OzTqWpAPnrw", "readable_id": "gmat-data-sufficiency-27"}, "nFSMu3bxXVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nFSMu3bxXVA.mp4/nFSMu3bxXVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nFSMu3bxXVA.mp4/nFSMu3bxXVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nFSMu3bxXVA.m3u8/nFSMu3bxXVA.m3u8"}, "path": "khan/science/physics/torque-angular-momentum/torque-tutorial/angular-momentum/", "duration": 679, "id": "nFSMu3bxXVA", "title": "Angular momentum", "format": "mp4", "description": "", "slug": "angular-momentum", "kind": "Video", "video_id": "nFSMu3bxXVA", "keywords": "", "youtube_id": "nFSMu3bxXVA", "readable_id": "angular-momentum"}, "Kp4Dg8XBeUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kp4Dg8XBeUA.mp4/Kp4Dg8XBeUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kp4Dg8XBeUA.mp4/Kp4Dg8XBeUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kp4Dg8XBeUA.m3u8/Kp4Dg8XBeUA.m3u8"}, "duration": 37, "id": "Kp4Dg8XBeUA", "title": "How did dinosaurs reproduce?", "format": "mp4", "description": "The Central Asiatic Expeditions, led by AMNH's Roy Chapman Andrews and Walter Granger, discovered some of the earliest, well-preserved dinosaur eggs in Mongolia during the 1920s. The oval-shaped eggs, about 20 cm long, were thought to belong to the most commonly found dinosaur at the Flaming Cliffs, Protoceratops. However, AMNH expeditions in the 1990s discovered identical eggs, one of which contained the embryo of an Oviraptor-like dinosaur, which altered our view of which dinosaur laid these eggs. Also, skeletons of Oviraptor were discovered squatting on top of clusters of eggs, with their arms folded back against their body, just like many living birds brood on their nests.", "path": "dinosaur-reproduction/", "slug": "dinosaur-reproduction", "kind": "Video", "video_id": "Kp4Dg8XBeUA", "keywords": "", "youtube_id": "Kp4Dg8XBeUA", "readable_id": "dinosaur-reproduction"}, "wbAxarp_Ug4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wbAxarp_Ug4.mp4/wbAxarp_Ug4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wbAxarp_Ug4.mp4/wbAxarp_Ug4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wbAxarp_Ug4.m3u8/wbAxarp_Ug4.m3u8"}, "duration": 288, "id": "wbAxarp_Ug4", "title": "Comparing fractions with like numerators and denominators", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/fractions-pre-alg/comparing-fractions-pre-alg/fractions-with-like-denominators-numerators/", "slug": "fractions-with-like-denominators-numerators", "kind": "Video", "video_id": "wbAxarp_Ug4", "keywords": "", "youtube_id": "wbAxarp_Ug4", "readable_id": "fractions-with-like-denominators-numerators"}, "suIUUGdNyWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/suIUUGdNyWk.mp4/suIUUGdNyWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/suIUUGdNyWk.mp4/suIUUGdNyWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/suIUUGdNyWk.m3u8/suIUUGdNyWk.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/parmigianino-madonna-of-the-long-neck-1530-33/", "duration": 284, "id": "suIUUGdNyWk", "title": "Parmigianino, Madonna of the Long Neck", "format": "mp4", "description": "Parmigianino, Madonna of the Long Neck, 1530-33, 28 3/4 x 23 1/2\" (73 x 60), Uffizi, Florence Speakers: Dr. Steven Zucker and Dr. Beth Harris\u00a0", "slug": "parmigianino-madonna-of-the-long-neck-1530-33", "kind": "Video", "video_id": "suIUUGdNyWk", "keywords": "parmigianino, uffizi, smarthistory, art history", "youtube_id": "suIUUGdNyWk", "readable_id": "parmigianino-madonna-of-the-long-neck-1530-33"}, "SCM4A0rBeOQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SCM4A0rBeOQ.mp4/SCM4A0rBeOQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SCM4A0rBeOQ.mp4/SCM4A0rBeOQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SCM4A0rBeOQ.m3u8/SCM4A0rBeOQ.m3u8"}, "duration": 236, "id": "SCM4A0rBeOQ", "title": "Put-call parity arbitrage I", "format": "mp4", "description": "Put-Call Parity Arbitrage I", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-call-parity-arbitrage-i/", "slug": "put-call-parity-arbitrage-i", "kind": "Video", "video_id": "SCM4A0rBeOQ", "keywords": "Put-Call, Parity, Arbitrage", "youtube_id": "SCM4A0rBeOQ", "readable_id": "put-call-parity-arbitrage-i"}, "6CUcgUeQS-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6CUcgUeQS-w.mp4/6CUcgUeQS-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6CUcgUeQS-w.mp4/6CUcgUeQS-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6CUcgUeQS-w.m3u8/6CUcgUeQS-w.m3u8"}, "duration": 176, "id": "6CUcgUeQS-w", "title": "American put options", "format": "mp4", "description": "American Put Options", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/american-put-options/", "slug": "american-put-options", "kind": "Video", "video_id": "6CUcgUeQS-w", "keywords": "American, Put, Options", "youtube_id": "6CUcgUeQS-w", "readable_id": "american-put-options"}, "w1dqzlTTm0E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w1dqzlTTm0E.mp4/w1dqzlTTm0E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w1dqzlTTm0E.mp4/w1dqzlTTm0E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w1dqzlTTm0E.m3u8/w1dqzlTTm0E.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/rococo/jean-honor-fragonard-the-progress-of-love-the-meeting-1771-1773/", "duration": 312, "id": "w1dqzlTTm0E", "title": "Fragonard, The Meeting", "format": "mp4", "description": "Jean-Honor\u00e9 Fragonard, The Progress of Love: The Meeting, 1771-1773, oil on canvas, 317.5 x 243.8 cm (The Frick Collection, New York)", "slug": "jean-honor-fragonard-the-progress-of-love-the-meeting-1771-1773", "kind": "Video", "video_id": "w1dqzlTTm0E", "keywords": "Jean-Honor\u00e9 Fragonard, Fragonard, Progress of Love, The Meeting, 1771, 1773, Frick Collection, Frick, New York, French, Painting, Rococo, ancien regime, series, art, art history, smarthistory, Khan Academy, Google Art Project, OER", "youtube_id": "w1dqzlTTm0E", "readable_id": "jean-honor-fragonard-the-progress-of-love-the-meeting-1771-1773"}, "UXIfzc1UH-g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UXIfzc1UH-g.mp4/UXIfzc1UH-g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UXIfzc1UH-g.mp4/UXIfzc1UH-g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UXIfzc1UH-g.m3u8/UXIfzc1UH-g.m3u8"}, "duration": 343, "id": "UXIfzc1UH-g", "title": "Photoreceptor distribution in the fovea", "format": "mp4", "description": "In this video, I explore how photoreceptors (rods and cones) are distributed in the fovea. By Ronald Sahyouni. ", "path": "khan/test-prep/mcat/processing-the-environment/sight/photoreceptor-distribution-fovea/", "slug": "photoreceptor-distribution-fovea", "kind": "Video", "video_id": "UXIfzc1UH-g", "keywords": "vision, photoreceptor, fovea", "youtube_id": "UXIfzc1UH-g", "readable_id": "photoreceptor-distribution-fovea"}, "tu1GPtfsQ7M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tu1GPtfsQ7M.mp4/tu1GPtfsQ7M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tu1GPtfsQ7M.mp4/tu1GPtfsQ7M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tu1GPtfsQ7M.m3u8/tu1GPtfsQ7M.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/linear-algebra-gram-schmidt-process-example/", "duration": 794, "id": "tu1GPtfsQ7M", "title": "Gram-Schmidt process example", "format": "mp4", "description": "Using Gram-Schmidt to find an orthonormal basis for a plane in R3", "slug": "linear-algebra-gram-schmidt-process-example", "kind": "Video", "video_id": "tu1GPtfsQ7M", "keywords": "gram, schmidt, process, basis", "youtube_id": "tu1GPtfsQ7M", "readable_id": "linear-algebra-gram-schmidt-process-example"}, "eXGVAfv08AQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eXGVAfv08AQ.mp4/eXGVAfv08AQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eXGVAfv08AQ.mp4/eXGVAfv08AQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eXGVAfv08AQ.m3u8/eXGVAfv08AQ.m3u8"}, "path": "khan/college-admissions/paying-for-college/financial-aid-packages/appealing-a-financial-aid-package/", "duration": 125, "id": "eXGVAfv08AQ", "title": "Appealing a financial aid package", "format": "mp4", "description": "", "slug": "appealing-a-financial-aid-package", "kind": "Video", "video_id": "eXGVAfv08AQ", "keywords": "", "youtube_id": "eXGVAfv08AQ", "readable_id": "appealing-a-financial-aid-package"}, "51UA1T89MzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/51UA1T89MzU.mp4/51UA1T89MzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/51UA1T89MzU.mp4/51UA1T89MzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/51UA1T89MzU.m3u8/51UA1T89MzU.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/alexander-mosaic-c-100-b-c-e/", "duration": 354, "id": "51UA1T89MzU", "title": "Alexander Mosaic from the House of the Faun, Pompeii", "format": "mp4", "description": "Alexander Mosaic, c. 100 B.C.E., Roman copy (Pompeii) of a lost Greek painting, c. 315 B.C.E., Hellenistic Period (Archaeological Museum, Naples). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "alexander-mosaic-c-100-b-c-e", "kind": "Video", "video_id": "51UA1T89MzU", "keywords": "alexander, hellenistic, greek, mosaic, pompeii, roman, issus", "youtube_id": "51UA1T89MzU", "readable_id": "alexander-mosaic-c-100-b-c-e"}, "Gf2fNKZcGPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gf2fNKZcGPA.mp4/Gf2fNKZcGPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gf2fNKZcGPA.mp4/Gf2fNKZcGPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gf2fNKZcGPA.m3u8/Gf2fNKZcGPA.m3u8"}, "duration": 728, "id": "Gf2fNKZcGPA", "title": "Stoichiometry", "format": "mp4", "description": "Chemists need stoichiometry to make the scale of chemistry more understandable - Hank is here to explain why, and to teach us how to use it.\u00a0\n\nWriter: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe", "path": "chem06-stoichiometry/", "slug": "chem06-stoichiometry", "kind": "Video", "video_id": "Gf2fNKZcGPA", "keywords": "", "youtube_id": "Gf2fNKZcGPA", "readable_id": "chem06-stoichiometry"}, "xsSLvlonxs4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xsSLvlonxs4.mp4/xsSLvlonxs4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xsSLvlonxs4.mp4/xsSLvlonxs4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xsSLvlonxs4.m3u8/xsSLvlonxs4.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/voltage-as-an-intensive-property/", "duration": 322, "id": "xsSLvlonxs4", "title": "Voltage as an intensive property", "format": "mp4", "description": "", "slug": "voltage-as-an-intensive-property", "kind": "Video", "video_id": "xsSLvlonxs4", "keywords": "", "youtube_id": "xsSLvlonxs4", "readable_id": "voltage-as-an-intensive-property"}, "lA6hE7NFIK0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lA6hE7NFIK0.mp4/lA6hE7NFIK0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lA6hE7NFIK0.mp4/lA6hE7NFIK0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lA6hE7NFIK0.m3u8/lA6hE7NFIK0.m3u8"}, "path": "khan/math/recreational-math/vi-hart/infinity/proof-infinities/", "duration": 604, "id": "lA6hE7NFIK0", "title": "Proof some infinities are bigger than other infinities", "format": "mp4", "description": "", "slug": "proof-infinities", "kind": "Video", "video_id": "lA6hE7NFIK0", "keywords": "mathematics, numbers, repeating decimals, real numbers, surreal numbers, hyperreal numbers", "youtube_id": "lA6hE7NFIK0", "readable_id": "proof-infinities"}, "o0XKRK3a3cs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o0XKRK3a3cs.mp4/o0XKRK3a3cs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o0XKRK3a3cs.mp4/o0XKRK3a3cs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o0XKRK3a3cs.m3u8/o0XKRK3a3cs.m3u8"}, "duration": 304, "id": "o0XKRK3a3cs", "title": "Arduino connections", "format": "mp4", "description": "In this video we show you how to connect Bit-zee's Arduino micro-controller to his frame.", "path": "khan/science/discoveries-projects/robots/bit-zee/attaching-bit-zee-s-arduino/", "slug": "attaching-bit-zee-s-arduino", "kind": "Video", "video_id": "o0XKRK3a3cs", "keywords": "Arduino, microcontroller, connections", "youtube_id": "o0XKRK3a3cs", "readable_id": "attaching-bit-zee-s-arduino"}, "Etx366BN34g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Etx366BN34g.mp4/Etx366BN34g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Etx366BN34g.mp4/Etx366BN34g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Etx366BN34g.m3u8/Etx366BN34g.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/toby-rush-eyeverify/toby-rush-2/", "duration": 164, "id": "Etx366BN34g", "title": "Staying grounded", "format": "mp4", "description": "", "slug": "toby-rush-2", "kind": "Video", "video_id": "Etx366BN34g", "keywords": "", "youtube_id": "Etx366BN34g", "readable_id": "toby-rush-2"}, "b76wePnIBdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b76wePnIBdU.mp4/b76wePnIBdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b76wePnIBdU.mp4/b76wePnIBdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b76wePnIBdU.m3u8/b76wePnIBdU.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/u_substitution/u-substitution/", "duration": 311, "id": "b76wePnIBdU", "title": "u-substitution", "format": "mp4", "description": "Using u-substitution to find the anti-derivative of a function. Seeing that u-substitution is the inverse of the chain rule.", "slug": "u-substitution", "kind": "Video", "video_id": "b76wePnIBdU", "keywords": "", "youtube_id": "b76wePnIBdU", "readable_id": "u-substitution"}, "wQq2xOs2BYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wQq2xOs2BYU.mp4/wQq2xOs2BYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wQq2xOs2BYU.mp4/wQq2xOs2BYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wQq2xOs2BYU.m3u8/wQq2xOs2BYU.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/american-art-wwii/georgia-o-keeffe-the-lawrence-tree-1929/", "duration": 156, "id": "wQq2xOs2BYU", "title": "O'Keeffe, The Lawrence Tree", "format": "mp4", "description": "Georgia O'Keeffe, The Lawrence Tree, 1929, oil on canvas, 31 x 40 inches (Wadsworth Atheneum, Hartford)\n\nPainted in the summer of 1929 while visiting D.H. Lawrence at his Kiowa Ranch during O'Keeffe's first trip to New Mexico, the tree stands in front of the house.\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "georgia-o-keeffe-the-lawrence-tree-1929", "kind": "Video", "video_id": "wQq2xOs2BYU", "keywords": "Georgia O'Keeffe, The Lawrence Tree, Wadsworth Atheneum, Hartford, 1929, D.H. Lawrence, Kiowa Ranch, O'Keeffe, New Mexico, tree", "youtube_id": "wQq2xOs2BYU", "readable_id": "georgia-o-keeffe-the-lawrence-tree-1929"}, "OPAvXQsPCqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OPAvXQsPCqQ.mp4/OPAvXQsPCqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OPAvXQsPCqQ.mp4/OPAvXQsPCqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OPAvXQsPCqQ.m3u8/OPAvXQsPCqQ.m3u8"}, "duration": 366, "id": "OPAvXQsPCqQ", "title": "Classification of amino acids", "format": "mp4", "description": "Amino acids can be classified according to their side chain's chemical properties (the R-group). This video will show you how! By Tracy Kovach.", "path": "khan/test-prep/mcat/chemical-processes/proteins/classification-amino-acids/", "slug": "classification-amino-acids", "kind": "Video", "video_id": "OPAvXQsPCqQ", "keywords": "", "youtube_id": "OPAvXQsPCqQ", "readable_id": "classification-amino-acids"}, "UwiclYspLqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UwiclYspLqw.mp4/UwiclYspLqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UwiclYspLqw.mp4/UwiclYspLqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UwiclYspLqw.m3u8/UwiclYspLqw.m3u8"}, "duration": 502, "id": "UwiclYspLqw", "title": "Silicon: The internet's favorite element", "format": "mp4", "description": "In this episode, we talk about Silicon Valley's namesake and how network solids are at the heart of it all. Hank also discusses Solid-State Semiconductors, N-Type and P-Type Semiconductors, Diodes, Transistors, Computer Chips, and Binary Code. All from the same thing that makes up sand!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem35-silicon/", "slug": "chem35-silicon", "kind": "Video", "video_id": "UwiclYspLqw", "keywords": "", "youtube_id": "UwiclYspLqw", "readable_id": "chem35-silicon"}, "884SpJ-22Bc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/884SpJ-22Bc.mp4/884SpJ-22Bc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/884SpJ-22Bc.mp4/884SpJ-22Bc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/884SpJ-22Bc.m3u8/884SpJ-22Bc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-4-11/", "duration": 145, "id": "884SpJ-22Bc", "title": "11 Survey results", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-11", "kind": "Video", "video_id": "884SpJ-22Bc", "keywords": "", "youtube_id": "884SpJ-22Bc", "readable_id": "sat-2010-may-4-11"}, "N1X0vf5PUz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N1X0vf5PUz4.mp4/N1X0vf5PUz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N1X0vf5PUz4.mp4/N1X0vf5PUz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N1X0vf5PUz4.m3u8/N1X0vf5PUz4.m3u8"}, "duration": 258, "id": "N1X0vf5PUz4", "title": "Intro to equivalent fractions", "format": "mp4", "description": "Ever had to share a pizza and got stuck with a smaller piece? Not fair! We're here to stand up for your delicious, hot EQUAL pizza slice. Watch.", "path": "equivalent-amount-of-pizza/", "slug": "equivalent-amount-of-pizza", "kind": "Video", "video_id": "N1X0vf5PUz4", "keywords": "", "youtube_id": "N1X0vf5PUz4", "readable_id": "equivalent-amount-of-pizza"}, "q7lttowsC0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q7lttowsC0Y.mp4/q7lttowsC0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q7lttowsC0Y.mp4/q7lttowsC0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q7lttowsC0Y.m3u8/q7lttowsC0Y.m3u8"}, "duration": 194, "id": "q7lttowsC0Y", "title": "The Gates Notes: Students in Los Altos", "format": "mp4", "description": "Students in Los Altos School District share their experiences with Khan Academy", "path": "the-gates-notes-students-in-los-altos/", "slug": "the-gates-notes-students-in-los-altos", "kind": "Video", "video_id": "q7lttowsC0Y", "keywords": "Gates, LASD, students", "youtube_id": "q7lttowsC0Y", "readable_id": "the-gates-notes-students-in-los-altos"}, "CLWpkv6ccpA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CLWpkv6ccpA.mp4/CLWpkv6ccpA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CLWpkv6ccpA.mp4/CLWpkv6ccpA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CLWpkv6ccpA.m3u8/CLWpkv6ccpA.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/combining-like-terms/", "duration": 273, "id": "CLWpkv6ccpA", "title": "Combining like terms", "format": "mp4", "description": "In simple addition we learned to add all the numbers together to get a sum. In algebra, numbers are sometimes attached to variables and we need to make sure that the variables are alike before we add the numbers.", "slug": "combining-like-terms", "kind": "Video", "video_id": "CLWpkv6ccpA", "keywords": "", "youtube_id": "CLWpkv6ccpA", "readable_id": "combining-like-terms"}, "VWlFMfPVmkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VWlFMfPVmkU.mp4/VWlFMfPVmkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VWlFMfPVmkU.mp4/VWlFMfPVmkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VWlFMfPVmkU.m3u8/VWlFMfPVmkU.m3u8"}, "duration": 477, "id": "VWlFMfPVmkU", "title": "Adding and simplifying radicals", "format": "mp4", "description": "More Simplifying Radical Expressions", "path": "khan/math/algebra-basics/core-algebra-foundations/square-roots-for-college/more-simplifying-radical-expressions/", "slug": "more-simplifying-radical-expressions", "kind": "Video", "video_id": "VWlFMfPVmkU", "keywords": "More, Simplifying, Radical, Expressions", "youtube_id": "VWlFMfPVmkU", "readable_id": "more-simplifying-radical-expressions"}, "h-qUlzA70nY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h-qUlzA70nY.mp4/h-qUlzA70nY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h-qUlzA70nY.mp4/h-qUlzA70nY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h-qUlzA70nY.m3u8/h-qUlzA70nY.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/roman-republic/capitoline-brutus/", "duration": 231, "id": "h-qUlzA70nY", "title": "Capitoline Brutus", "format": "mp4", "description": "4th-3rd century B.C.E.\u00a0bronze, 69 cm (Capitoline Museums, Rome)\n\nSpeakers; Dr. Steven Zucker and Dr. Beth Harris", "slug": "capitoline-brutus", "kind": "Video", "video_id": "h-qUlzA70nY", "keywords": "brutus, ancient rome, ", "youtube_id": "h-qUlzA70nY", "readable_id": "capitoline-brutus"}, "LAWVgRiTcHY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LAWVgRiTcHY.mp4/LAWVgRiTcHY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LAWVgRiTcHY.mp4/LAWVgRiTcHY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LAWVgRiTcHY.m3u8/LAWVgRiTcHY.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/magnetism-mcat/magnetism-part-3/", "duration": 649, "id": "LAWVgRiTcHY", "title": "Magnetism - Part 3", "format": "mp4", "description": "", "slug": "magnetism-part-3", "kind": "Video", "video_id": "LAWVgRiTcHY", "keywords": "", "youtube_id": "LAWVgRiTcHY", "readable_id": "magnetism-part-3"}, "4kA-IOFwUN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4kA-IOFwUN4.mp4/4kA-IOFwUN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4kA-IOFwUN4.mp4/4kA-IOFwUN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4kA-IOFwUN4.m3u8/4kA-IOFwUN4.m3u8"}, "duration": 238, "id": "4kA-IOFwUN4", "title": "Exploring standard deviation 1 module", "format": "mp4", "description": "Ben Eater and Sal Khan talk through the Khan Academy Standard Deviation 1 Module: http://www.khanacademy.org/math/statistics/e/exploring_standard_deviation_1", "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/exploring-standard-deviation-1-module/", "slug": "exploring-standard-deviation-1-module", "kind": "Video", "video_id": "4kA-IOFwUN4", "keywords": "", "youtube_id": "4kA-IOFwUN4", "readable_id": "exploring-standard-deviation-1-module"}, "tixLZtDnbTg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tixLZtDnbTg.mp4/tixLZtDnbTg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tixLZtDnbTg.mp4/tixLZtDnbTg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tixLZtDnbTg.m3u8/tixLZtDnbTg.m3u8"}, "duration": 710, "id": "tixLZtDnbTg", "title": "GMAT: Math 52", "format": "mp4", "description": "240-244, pgs. 185-186", "path": "khan/test-prep/gmat/problem-solving/gmat-math-52/", "slug": "gmat-math-52", "kind": "Video", "video_id": "tixLZtDnbTg", "keywords": "GMAT, Math, problem, solving", "youtube_id": "tixLZtDnbTg", "readable_id": "gmat-math-52"}, "Of8ezQj1hRk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Of8ezQj1hRk.mp4/Of8ezQj1hRk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Of8ezQj1hRk.mp4/Of8ezQj1hRk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Of8ezQj1hRk.m3u8/Of8ezQj1hRk.m3u8"}, "duration": 155, "id": "Of8ezQj1hRk", "title": "Exponent properties 3", "format": "mp4", "description": "Exponent Properties 3", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/exponent-properties-3/", "slug": "exponent-properties-3", "kind": "Video", "video_id": "Of8ezQj1hRk", "keywords": "u11_l1_t2_we3, Exponent, Properties, CC_6_EE_1, CC_6_EE_2_c, CC_8_EE_1", "youtube_id": "Of8ezQj1hRk", "readable_id": "exponent-properties-3"}, "WceVwMdN0eE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WceVwMdN0eE.mp4/WceVwMdN0eE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WceVwMdN0eE.mp4/WceVwMdN0eE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WceVwMdN0eE.m3u8/WceVwMdN0eE.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap/judgement-in-the-presence-of-osiris-hunefer-s-book-of-the-dead/", "duration": 460, "id": "WceVwMdN0eE", "title": "Last Judgement of Hunefer, from his tomb", "format": "mp4", "description": "Hunefer's Judgement in the presence of Osiris, Book of the Dead, 19th Dynasty, New Kingdom, c. 1275 B.C.E., papyrus, Thebes, Egypt (British Museum).\u00a0", "slug": "judgement-in-the-presence-of-osiris-hunefer-s-book-of-the-dead", "kind": "Video", "video_id": "WceVwMdN0eE", "keywords": "Hunefer, Osiris, Book of the Dead, 19th Dynasty, New Kingdom, 1275 B.C.E., papyrus, Thebes, Egypt, British Museum, scribe, Anubis, mummification, burial, afterlife, Ma'at, order, ethical judgement, truth, scales, Ammit, Ammut, demon, crocodile, lion, hippopotamus, Thoth, Ibis, Horus, falcon, eye of Horus, Imsety, Duamutef, Hapi, Qebehsenuef, Osiris, Atef, gods, Egyptian, Isis, mummy, Nephthys, Seth", "youtube_id": "WceVwMdN0eE", "readable_id": "judgement-in-the-presence-of-osiris-hunefer-s-book-of-the-dead"}, "_lzdhIHLwcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_lzdhIHLwcQ.mp4/_lzdhIHLwcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_lzdhIHLwcQ.mp4/_lzdhIHLwcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_lzdhIHLwcQ.m3u8/_lzdhIHLwcQ.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/ambrogio-lorenzetti-presentation-of-jesus-in-the-temple-1342/", "duration": 147, "id": "_lzdhIHLwcQ", "title": "Lorenzetti, Presentation of Jesus in the Temple", "format": "mp4", "description": "Ambrogio Lorenzetti, Presentation of Jesus in the Temple, 1342, tempera on panel, 257 x 168 cm (Galleria degli Uffizi, Florence)", "slug": "ambrogio-lorenzetti-presentation-of-jesus-in-the-temple-1342", "kind": "Video", "video_id": "_lzdhIHLwcQ", "keywords": "Lorenzetti, Presentation, GAP, Ambrogio Lorenzetti, 1342, tempera, panel, Uffizi, Florence, Siena, Temple, 14th century, fourteenth century, painting, art, Proto-Renaissance, Renaissance, Medieval, Google Art Project, Smarthistory, Khan Academy, OER, Art History", "youtube_id": "_lzdhIHLwcQ", "readable_id": "ambrogio-lorenzetti-presentation-of-jesus-in-the-temple-1342"}, "-dADFDGte6g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-dADFDGte6g.mp4/-dADFDGte6g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-dADFDGte6g.mp4/-dADFDGte6g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-dADFDGte6g.m3u8/-dADFDGte6g.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2008-may-4-19/", "duration": 107, "id": "-dADFDGte6g", "title": "19 Function truth", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-19", "kind": "Video", "video_id": "-dADFDGte6g", "keywords": "", "youtube_id": "-dADFDGte6g", "readable_id": "sat-2008-may-4-19"}, "8xWSyUrYc0w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8xWSyUrYc0w.mp4/8xWSyUrYc0w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8xWSyUrYc0w.mp4/8xWSyUrYc0w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8xWSyUrYc0w.m3u8/8xWSyUrYc0w.m3u8"}, "duration": 119, "id": "8xWSyUrYc0w", "title": "Bored angel and twin", "format": "mp4", "description": "Benjamin and Devin talk about angels made by an English artist in about 1420-30. This is from an imaginative\u00a0tour at the Getty Center: The Supernatural in Art. Follow us on Google+ to stay in touch.", "path": "bored-angel-and-twin/", "slug": "bored-angel-and-twin", "kind": "Video", "video_id": "8xWSyUrYc0w", "keywords": "", "youtube_id": "8xWSyUrYc0w", "readable_id": "bored-angel-and-twin"}, "THJgaznSBu8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/THJgaznSBu8.mp4/THJgaznSBu8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/THJgaznSBu8.mp4/THJgaznSBu8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/THJgaznSBu8.m3u8/THJgaznSBu8.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/attention-language/the-spotlight-model-of-attention-and-our-ability-to-multitask/", "duration": 448, "id": "THJgaznSBu8", "title": "The spotlight model of attention and our ability to multitask", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "the-spotlight-model-of-attention-and-our-ability-to-multitask", "kind": "Video", "video_id": "THJgaznSBu8", "keywords": "", "youtube_id": "THJgaznSBu8", "readable_id": "the-spotlight-model-of-attention-and-our-ability-to-multitask"}, "Jd53tcOqndI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jd53tcOqndI.mp4/Jd53tcOqndI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jd53tcOqndI.mp4/Jd53tcOqndI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jd53tcOqndI.m3u8/Jd53tcOqndI.m3u8"}, "duration": 2933, "id": "Jd53tcOqndI", "title": "Walter Isaacson - President and CEO of the Aspen Institute", "format": "mp4", "description": "", "path": "walter-isaacson-president-and-ceo-of-the-aspen-institute/", "slug": "walter-isaacson-president-and-ceo-of-the-aspen-institute", "kind": "Video", "video_id": "Jd53tcOqndI", "keywords": "", "youtube_id": "Jd53tcOqndI", "readable_id": "walter-isaacson-president-and-ceo-of-the-aspen-institute"}, "BbqbvSig6Mc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BbqbvSig6Mc.mp4/BbqbvSig6Mc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BbqbvSig6Mc.mp4/BbqbvSig6Mc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BbqbvSig6Mc.m3u8/BbqbvSig6Mc.m3u8"}, "duration": 1155, "id": "BbqbvSig6Mc", "title": "Inverse Laplace examples", "format": "mp4", "description": "Using our toolkit to take some inverse Laplace Transforms", "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/inverse-laplace-examples/", "slug": "inverse-laplace-examples", "kind": "Video", "video_id": "BbqbvSig6Mc", "keywords": "differential, equations, laplace, transform", "youtube_id": "BbqbvSig6Mc", "readable_id": "inverse-laplace-examples"}, "0jk6uLZ1Tdc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0jk6uLZ1Tdc.mp4/0jk6uLZ1Tdc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0jk6uLZ1Tdc.mp4/0jk6uLZ1Tdc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0jk6uLZ1Tdc.m3u8/0jk6uLZ1Tdc.m3u8"}, "duration": 247, "id": "0jk6uLZ1Tdc", "title": "Arbitraging futures contract", "format": "mp4", "description": null, "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/arbitraging-futures-contract/", "slug": "arbitraging-futures-contract", "kind": "Video", "video_id": "0jk6uLZ1Tdc", "keywords": "Arbitraging, Futures, Contract", "youtube_id": "0jk6uLZ1Tdc", "readable_id": "arbitraging-futures-contract"}, "rfZokAnD7QM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rfZokAnD7QM.mp4/rfZokAnD7QM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rfZokAnD7QM.mp4/rfZokAnD7QM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rfZokAnD7QM.m3u8/rfZokAnD7QM.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/counting-by-tens-examples/", "duration": 156, "id": "rfZokAnD7QM", "title": "Counting by tens examples", "format": "mp4", "description": "Learn to count by tens.", "slug": "counting-by-tens-examples", "kind": "Video", "video_id": "rfZokAnD7QM", "keywords": "", "youtube_id": "rfZokAnD7QM", "readable_id": "counting-by-tens-examples"}, "wB3QCk0MGuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wB3QCk0MGuw.mp4/wB3QCk0MGuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wB3QCk0MGuw.mp4/wB3QCk0MGuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wB3QCk0MGuw.m3u8/wB3QCk0MGuw.m3u8"}, "duration": 246, "id": "wB3QCk0MGuw", "title": "Example 2: Solving systems by substitution", "format": "mp4", "description": "Solving systems by substitution 2", "path": "solving-systems-by-substitution-2/", "slug": "solving-systems-by-substitution-2", "kind": "Video", "video_id": "wB3QCk0MGuw", "keywords": "U06_L1_T1_we2, Solving, systems, by, substitution, CC_6_EE_5, CC_8_EE_8_b, CC_8_EE_8_c, CC_39336_A-REI_6", "youtube_id": "wB3QCk0MGuw", "readable_id": "solving-systems-by-substitution-2"}, "Ws63I3F7Moc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ws63I3F7Moc.mp4/Ws63I3F7Moc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ws63I3F7Moc.mp4/Ws63I3F7Moc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ws63I3F7Moc.m3u8/Ws63I3F7Moc.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/markov_chains/", "duration": 435, "id": "Ws63I3F7Moc", "title": "Origin of Markov chains", "format": "mp4", "description": "Introduction to Markov chains", "slug": "markov_chains", "kind": "Video", "video_id": "Ws63I3F7Moc", "keywords": "markov chains", "youtube_id": "Ws63I3F7Moc", "readable_id": "markov_chains"}, "ug2FXcEurOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ug2FXcEurOo.mp4/ug2FXcEurOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ug2FXcEurOo.mp4/ug2FXcEurOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ug2FXcEurOo.m3u8/ug2FXcEurOo.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/prejudice-and-discrimination-based-on-race-ethnicity-power-social-class-and-prestige/", "duration": 193, "id": "ug2FXcEurOo", "title": "Prejudice and discrimination based on race, ethnicity, power, social class, and prestige", "format": "mp4", "description": "", "slug": "prejudice-and-discrimination-based-on-race-ethnicity-power-social-class-and-prestige", "kind": "Video", "video_id": "ug2FXcEurOo", "keywords": "", "youtube_id": "ug2FXcEurOo", "readable_id": "prejudice-and-discrimination-based-on-race-ethnicity-power-social-class-and-prestige"}, "ShzPtU7IOXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ShzPtU7IOXs.mp4/ShzPtU7IOXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ShzPtU7IOXs.mp4/ShzPtU7IOXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ShzPtU7IOXs.m3u8/ShzPtU7IOXs.m3u8"}, "duration": 496, "id": "ShzPtU7IOXs", "title": "Law of demand", "format": "mp4", "description": "Example of the law of demand", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/demand-curve-tutorial/law-of-demand/", "slug": "law-of-demand", "kind": "Video", "video_id": "ShzPtU7IOXs", "keywords": "economics, supply, demand", "youtube_id": "ShzPtU7IOXs", "readable_id": "law-of-demand"}, "OP91XWBRI1w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OP91XWBRI1w.mp4/OP91XWBRI1w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OP91XWBRI1w.mp4/OP91XWBRI1w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OP91XWBRI1w.m3u8/OP91XWBRI1w.m3u8"}, "duration": 461, "id": "OP91XWBRI1w", "title": "Quadratic inequality example", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/one-variable-modeling/quadratic-inequality-example/", "slug": "quadratic-inequality-example", "kind": "Video", "video_id": "OP91XWBRI1w", "keywords": "", "youtube_id": "OP91XWBRI1w", "readable_id": "quadratic-inequality-example"}, "EK-h6cZCXrs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EK-h6cZCXrs.mp4/EK-h6cZCXrs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EK-h6cZCXrs.mp4/EK-h6cZCXrs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EK-h6cZCXrs.m3u8/EK-h6cZCXrs.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/ruysch-flowers-insects/", "duration": 244, "id": "EK-h6cZCXrs", "title": "Rachel Ruysch, Fruit and Insects", "format": "mp4", "description": "Rachel Ruysch, Fruit and Insects, 1711, oil on wood, 44 x 60 cm (Galleria degli Uffizi, Florence); speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "ruysch-flowers-insects", "kind": "Video", "video_id": "EK-h6cZCXrs", "keywords": "Ruysch, Still Life, Flowers, Insects, Baroque, Dutch, painting, Netherlands", "youtube_id": "EK-h6cZCXrs", "readable_id": "ruysch-flowers-insects"}, "5OYIXxNz6Xk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5OYIXxNz6Xk.mp4/5OYIXxNz6Xk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5OYIXxNz6Xk.mp4/5OYIXxNz6Xk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5OYIXxNz6Xk.m3u8/5OYIXxNz6Xk.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-1-working-at-convenience-store/", "duration": 146, "id": "5OYIXxNz6Xk", "title": "1 Working at convenience store", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-1-working-at-convenience-store", "kind": "Video", "video_id": "5OYIXxNz6Xk", "keywords": "", "youtube_id": "5OYIXxNz6Xk", "readable_id": "sat-1-working-at-convenience-store"}, "jVSUQmtTk7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jVSUQmtTk7Y.mp4/jVSUQmtTk7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jVSUQmtTk7Y.mp4/jVSUQmtTk7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jVSUQmtTk7Y.m3u8/jVSUQmtTk7Y.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/cell-division/nuclei-membranes-ribosomes-eukaryotes-and-prokaryotes/", "duration": 432, "id": "jVSUQmtTk7Y", "title": "Nuclei, membranes, ribosomes, eukaryotes and prokaryotes", "format": "mp4", "description": "", "slug": "nuclei-membranes-ribosomes-eukaryotes-and-prokaryotes", "kind": "Video", "video_id": "jVSUQmtTk7Y", "keywords": "", "youtube_id": "jVSUQmtTk7Y", "readable_id": "nuclei-membranes-ribosomes-eukaryotes-and-prokaryotes"}, "5mNTvtjDnP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5mNTvtjDnP8.mp4/5mNTvtjDnP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5mNTvtjDnP8.mp4/5mNTvtjDnP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5mNTvtjDnP8.m3u8/5mNTvtjDnP8.m3u8"}, "duration": 593, "id": "5mNTvtjDnP8", "title": "Chronometric revolution", "format": "mp4", "description": "Discussion of the relatively recent changes in our ability as a species to shine light on our deep past", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/measuring-age-tutorial/chronometric-revolution/", "slug": "chronometric-revolution", "kind": "Video", "video_id": "5mNTvtjDnP8", "keywords": "Chronometric, Revolution", "youtube_id": "5mNTvtjDnP8", "readable_id": "chronometric-revolution"}, "w2BN2AJ4fOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w2BN2AJ4fOI.mp4/w2BN2AJ4fOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w2BN2AJ4fOI.mp4/w2BN2AJ4fOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w2BN2AJ4fOI.m3u8/w2BN2AJ4fOI.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/comparing-interpreting-functions/comparing-features-of-functions-2-example-1/", "duration": 167, "id": "w2BN2AJ4fOI", "title": "Comparing features of functions (example 1)", "format": "mp4", "description": "", "slug": "comparing-features-of-functions-2-example-1", "kind": "Video", "video_id": "w2BN2AJ4fOI", "keywords": "", "youtube_id": "w2BN2AJ4fOI", "readable_id": "comparing-features-of-functions-2-example-1"}, "vJyvTChDzeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vJyvTChDzeg.mp4/vJyvTChDzeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vJyvTChDzeg.mp4/vJyvTChDzeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vJyvTChDzeg.m3u8/vJyvTChDzeg.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2008-may-4-2/", "duration": 61, "id": "vJyvTChDzeg", "title": "2 Sequence of numbers", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-2", "kind": "Video", "video_id": "vJyvTChDzeg", "keywords": "", "youtube_id": "vJyvTChDzeg", "readable_id": "sat-2008-may-4-2"}, "YclQE2XtaLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YclQE2XtaLw.mp4/YclQE2XtaLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YclQE2XtaLw.mp4/YclQE2XtaLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YclQE2XtaLw.m3u8/YclQE2XtaLw.m3u8"}, "duration": 605, "id": "YclQE2XtaLw", "title": "Margin of error 2", "format": "mp4", "description": "Finding the 95% confidence interval for the proportion of a population voting for a candidate.", "path": "khan/math/probability/statistics-inferential/margin-of-error/margin-of-error-2/", "slug": "margin-of-error-2", "kind": "Video", "video_id": "YclQE2XtaLw", "keywords": "margin, of, error, confindence, interval, sampling, distribution, sample, mean, standard, deviation, CC_7_SP_1, CC_7_SP_2", "youtube_id": "YclQE2XtaLw", "readable_id": "margin-of-error-2"}, "1mjyq51ppT8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1mjyq51ppT8.mp4/1mjyq51ppT8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1mjyq51ppT8.mp4/1mjyq51ppT8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1mjyq51ppT8.m3u8/1mjyq51ppT8.m3u8"}, "path": "khan/computing/computer-science/cryptography/random-algorithms-probability/random-primality-test-prime-adventure-part-9/", "duration": 306, "id": "1mjyq51ppT8", "title": "Random primality test (warm up)", "format": "mp4", "description": "Introduction to random primality tests & how they will work (warm up).", "slug": "random-primality-test-prime-adventure-part-9", "kind": "Video", "video_id": "1mjyq51ppT8", "keywords": "", "youtube_id": "1mjyq51ppT8", "readable_id": "random-primality-test-prime-adventure-part-9"}, "D__4BV3Mwhw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D__4BV3Mwhw.mp4/D__4BV3Mwhw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D__4BV3Mwhw.mp4/D__4BV3Mwhw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D__4BV3Mwhw.m3u8/D__4BV3Mwhw.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations-alkanes-cycloalkanes/conformations-of-butane/", "duration": 832, "id": "D__4BV3Mwhw", "title": "Conformations of butane", "format": "mp4", "description": "", "slug": "conformations-of-butane", "kind": "Video", "video_id": "D__4BV3Mwhw", "keywords": "", "youtube_id": "D__4BV3Mwhw", "readable_id": "conformations-of-butane"}, "lA3sjWwu5-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lA3sjWwu5-s.mp4/lA3sjWwu5-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lA3sjWwu5-s.mp4/lA3sjWwu5-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lA3sjWwu5-s.m3u8/lA3sjWwu5-s.m3u8"}, "duration": 393, "id": "lA3sjWwu5-s", "title": "Financial crisis in Thailand caused by speculative attack", "format": "mp4", "description": "How a currency crisis in Thailand led to a banking crisis in the 1990s", "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/currency-reserves/financial-crisis-in-thailand-caused-by-speculative-attack/", "slug": "financial-crisis-in-thailand-caused-by-speculative-attack", "kind": "Video", "video_id": "lA3sjWwu5-s", "keywords": "thailand, macroeconomics, currency", "youtube_id": "lA3sjWwu5-s", "readable_id": "financial-crisis-in-thailand-caused-by-speculative-attack"}, "oXowkdgJPO4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oXowkdgJPO4.mp4/oXowkdgJPO4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oXowkdgJPO4.mp4/oXowkdgJPO4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oXowkdgJPO4.m3u8/oXowkdgJPO4.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/thin-film-interference-part-1/", "duration": 723, "id": "oXowkdgJPO4", "title": "Thin Film Interference part 1", "format": "mp4", "description": "", "slug": "thin-film-interference-part-1", "kind": "Video", "video_id": "oXowkdgJPO4", "keywords": "", "youtube_id": "oXowkdgJPO4", "readable_id": "thin-film-interference-part-1"}, "yJzLYa-_Y1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yJzLYa-_Y1k.mp4/yJzLYa-_Y1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yJzLYa-_Y1k.mp4/yJzLYa-_Y1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yJzLYa-_Y1k.m3u8/yJzLYa-_Y1k.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/multiplying-polynomials/", "duration": 346, "id": "yJzLYa-_Y1k", "title": "Multiplying polynomials example", "format": "mp4", "description": "Multiplying Polynomials", "slug": "multiplying-polynomials", "kind": "Video", "video_id": "yJzLYa-_Y1k", "keywords": "u11_l2_t3_we4, Multiplying, Polynomials, CC_39336_A-APR_1", "youtube_id": "yJzLYa-_Y1k", "readable_id": "multiplying-polynomials"}, "7GV1UZSTNJg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7GV1UZSTNJg.mp4/7GV1UZSTNJg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7GV1UZSTNJg.mp4/7GV1UZSTNJg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7GV1UZSTNJg.m3u8/7GV1UZSTNJg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/thin-lenses/thin-lens-equation-and-problem-solving/", "duration": 777, "id": "7GV1UZSTNJg", "title": "Thin lens equation and problem solving", "format": "mp4", "description": "", "slug": "thin-lens-equation-and-problem-solving", "kind": "Video", "video_id": "7GV1UZSTNJg", "keywords": "", "youtube_id": "7GV1UZSTNJg", "readable_id": "thin-lens-equation-and-problem-solving"}, "gM95HHI4gLk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gM95HHI4gLk.mp4/gM95HHI4gLk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gM95HHI4gLk.mp4/gM95HHI4gLk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gM95HHI4gLk.m3u8/gM95HHI4gLk.m3u8"}, "duration": 1227, "id": "gM95HHI4gLk", "title": "Salman Khan talk at TED 2011", "format": "mp4", "description": "Salman Khan talk at TED 2011 (from ted.com)", "path": "salman-khan-talk-at-ted-2011-from-ted-com/", "slug": "salman-khan-talk-at-ted-2011-from-ted-com", "kind": "Video", "video_id": "gM95HHI4gLk", "keywords": "Salman, Khan, talk, at, TED, 2011", "youtube_id": "gM95HHI4gLk", "readable_id": "salman-khan-talk-at-ted-2011-from-ted-com"}, "aeyFb2eVH1c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aeyFb2eVH1c.mp4/aeyFb2eVH1c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aeyFb2eVH1c.mp4/aeyFb2eVH1c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aeyFb2eVH1c.m3u8/aeyFb2eVH1c.m3u8"}, "duration": 432, "id": "aeyFb2eVH1c", "title": "Function inverses example 2", "format": "mp4", "description": "Function Inverses Example 2", "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/function-inverses-example-2/", "slug": "function-inverses-example-2", "kind": "Video", "video_id": "aeyFb2eVH1c", "keywords": "Function, Inverses, Example, CC_39336_F-BF_4, CC_39336_F-BF_4_a, CC_39336_F-BF_4_d", "youtube_id": "aeyFb2eVH1c", "readable_id": "function-inverses-example-2"}, "aIjzkiijGnA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aIjzkiijGnA.mp4/aIjzkiijGnA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aIjzkiijGnA.mp4/aIjzkiijGnA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aIjzkiijGnA.m3u8/aIjzkiijGnA.m3u8"}, "duration": 483, "id": "aIjzkiijGnA", "title": "Constructing a geometric series for new users", "format": "mp4", "description": "", "path": "khan/math/precalculus/seq_induction/geometric-sequence-series/geometric-series-word-problem/", "slug": "geometric-series-word-problem", "kind": "Video", "video_id": "aIjzkiijGnA", "keywords": "", "youtube_id": "aIjzkiijGnA", "readable_id": "geometric-series-word-problem"}, "o0arqcKC7QE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o0arqcKC7QE.mp4/o0arqcKC7QE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o0arqcKC7QE.mp4/o0arqcKC7QE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o0arqcKC7QE.m3u8/o0arqcKC7QE.m3u8"}, "duration": 202, "id": "o0arqcKC7QE", "title": "Adding mixed numbers word problem", "format": "mp4", "description": "Adding Mixed Numbers Word Problem", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/adding-mixed-numbers-word-problem/", "slug": "adding-mixed-numbers-word-problem", "kind": "Video", "video_id": "o0arqcKC7QE", "keywords": "U02_L3_T1_we5, Adding, Mixed, Numbers, Word, Problem, CC_4_MD_2, CC_4_NF_3_b, CC_4_NF_3_d, CC_5_NF_1, CC_5_NF_2", "youtube_id": "o0arqcKC7QE", "readable_id": "adding-mixed-numbers-word-problem"}, "qThlokfE-yk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qThlokfE-yk.mp4/qThlokfE-yk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qThlokfE-yk.mp4/qThlokfE-yk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qThlokfE-yk.m3u8/qThlokfE-yk.m3u8"}, "duration": 660, "id": "qThlokfE-yk", "title": "Simple animals: Sponges, jellies, & octopuses", "format": "mp4", "description": "Hank introduces us to the \"simplest\" of the animals, complexity-wise: beginning with sponges (whose very inclusion in the list as \"animals\" has been called into question because they are so simple) and finishing with the most complex molluscs, octopuses and squid. We differentiate them by the number of tissue layers they have, and by the complexity of those layers.", "path": "crash-course-biology-121/", "slug": "crash-course-biology-121", "kind": "Video", "video_id": "qThlokfE-yk", "keywords": "", "youtube_id": "qThlokfE-yk", "readable_id": "crash-course-biology-121"}, "X3QUqRd18jc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X3QUqRd18jc.mp4/X3QUqRd18jc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X3QUqRd18jc.mp4/X3QUqRd18jc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X3QUqRd18jc.m3u8/X3QUqRd18jc.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-iron-deficiency-anemia-and-anemia-of-chronic-disease/iron-deficiency-and-anemia-of-chronic-disease-treatment/", "duration": 373, "id": "X3QUqRd18jc", "title": "Iron deficiency and anemia of chronic disease treatment", "format": "mp4", "description": "", "slug": "iron-deficiency-and-anemia-of-chronic-disease-treatment", "kind": "Video", "video_id": "X3QUqRd18jc", "keywords": "", "youtube_id": "X3QUqRd18jc", "readable_id": "iron-deficiency-and-anemia-of-chronic-disease-treatment"}, "-nlMXVrgtjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-nlMXVrgtjw.mp4/-nlMXVrgtjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-nlMXVrgtjw.mp4/-nlMXVrgtjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-nlMXVrgtjw.m3u8/-nlMXVrgtjw.m3u8"}, "duration": 420, "id": "-nlMXVrgtjw", "title": "Why synthetic division works", "format": "mp4", "description": "Demonstrating why synthetic division gives you the same result as traditional algebraic long division", "path": "khan/math/algebra2/polynomial_and_rational/synthetic-division/why-synthetic-division-works/", "slug": "why-synthetic-division-works", "kind": "Video", "video_id": "-nlMXVrgtjw", "keywords": "algebra, synthetic, division", "youtube_id": "-nlMXVrgtjw", "readable_id": "why-synthetic-division-works"}, "7HTy-6NLWGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7HTy-6NLWGM.mp4/7HTy-6NLWGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7HTy-6NLWGM.mp4/7HTy-6NLWGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7HTy-6NLWGM.m3u8/7HTy-6NLWGM.m3u8"}, "duration": 680, "id": "7HTy-6NLWGM", "title": "Aldosterone removes acid from the blood", "format": "mp4", "description": "See how Aldosterone acts on the alpha-intercalated cell to remove protons (acid) from the blood. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/aldosterone-removes-acid-from-the-blood/", "slug": "aldosterone-removes-acid-from-the-blood", "kind": "Video", "video_id": "7HTy-6NLWGM", "keywords": "", "youtube_id": "7HTy-6NLWGM", "readable_id": "aldosterone-removes-acid-from-the-blood"}, "5EU-y1VF7g4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5EU-y1VF7g4.mp4/5EU-y1VF7g4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5EU-y1VF7g4.mp4/5EU-y1VF7g4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5EU-y1VF7g4.m3u8/5EU-y1VF7g4.m3u8"}, "duration": 1109, "id": "5EU-y1VF7g4", "title": "Macrostates and microstates", "format": "mp4", "description": "The difference between macrostates and microstates. Thermodynamic equilibrium.", "path": "khan/science/chemistry/thermodynamics-chemistry/internal-energy-sal/macrostates-and-microstates/", "slug": "macrostates-and-microstates", "kind": "Video", "video_id": "5EU-y1VF7g4", "keywords": "thermodynamics, equilibrium, macrostate", "youtube_id": "5EU-y1VF7g4", "readable_id": "macrostates-and-microstates"}, "_YxzwkCv0Ik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_YxzwkCv0Ik.mp4/_YxzwkCv0Ik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_YxzwkCv0Ik.mp4/_YxzwkCv0Ik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_YxzwkCv0Ik.m3u8/_YxzwkCv0Ik.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-14/", "duration": 276, "id": "_YxzwkCv0Ik", "title": "14 Trays with cups and plates", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-14", "kind": "Video", "video_id": "_YxzwkCv0Ik", "keywords": "", "youtube_id": "_YxzwkCv0Ik", "readable_id": "2013-sat-practice-6-14"}, "qfqbomqKZqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qfqbomqKZqY.mp4/qfqbomqKZqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qfqbomqKZqY.mp4/qfqbomqKZqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qfqbomqKZqY.m3u8/qfqbomqKZqY.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/ravel/ravel-suite2/", "duration": 731, "id": "qfqbomqKZqY", "title": "Maurice Ravel: Daphnis et Chloe\u0301, analysis by Gerard Schwarz", "format": "mp4", "description": "Watch full performance at here (starting at 29:10)", "slug": "ravel-suite2", "kind": "Video", "video_id": "qfqbomqKZqY", "keywords": "", "youtube_id": "qfqbomqKZqY", "readable_id": "ravel-suite2"}, "Lzr9GGjh6YQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lzr9GGjh6YQ.mp4/Lzr9GGjh6YQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lzr9GGjh6YQ.mp4/Lzr9GGjh6YQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lzr9GGjh6YQ.m3u8/Lzr9GGjh6YQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/colon-rectum-anus/", "duration": 585, "id": "Lzr9GGjh6YQ", "title": "Colon, rectum, and anus", "format": "mp4", "description": "", "slug": "colon-rectum-anus", "kind": "Video", "video_id": "Lzr9GGjh6YQ", "keywords": "MCAT", "youtube_id": "Lzr9GGjh6YQ", "readable_id": "colon-rectum-anus"}, "WihqEIIFQMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WihqEIIFQMk.mp4/WihqEIIFQMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WihqEIIFQMk.mp4/WihqEIIFQMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WihqEIIFQMk.m3u8/WihqEIIFQMk.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/biodiveristy-hotspot-case-study-galapagos/", "duration": 129, "id": "WihqEIIFQMk", "title": "Biodiversity hotspot case study: Galapagos", "format": "mp4", "description": "", "slug": "biodiveristy-hotspot-case-study-galapagos", "kind": "Video", "video_id": "WihqEIIFQMk", "keywords": "", "youtube_id": "WihqEIIFQMk", "readable_id": "biodiveristy-hotspot-case-study-galapagos"}, "XGpEHj43kcc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XGpEHj43kcc.mp4/XGpEHj43kcc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XGpEHj43kcc.mp4/XGpEHj43kcc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XGpEHj43kcc.m3u8/XGpEHj43kcc.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formulas-trig/cosine-angle-addition-2/", "duration": 434, "id": "XGpEHj43kcc", "title": "Another example using angle addition formula with cosine", "format": "mp4", "description": "", "slug": "cosine-angle-addition-2", "kind": "Video", "video_id": "XGpEHj43kcc", "keywords": "", "youtube_id": "XGpEHj43kcc", "readable_id": "cosine-angle-addition-2"}, "v10IbP9oDUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v10IbP9oDUU.mp4/v10IbP9oDUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v10IbP9oDUU.mp4/v10IbP9oDUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v10IbP9oDUU.m3u8/v10IbP9oDUU.m3u8"}, "duration": 369, "id": "v10IbP9oDUU", "title": "An introduction to Alexander Hamilton", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss Alexander Hamilton and his involvement in the founding of the United States of America.", "path": "alexander-hamilton-overview/", "slug": "alexander-hamilton-overview", "kind": "Video", "video_id": "v10IbP9oDUU", "keywords": "", "youtube_id": "v10IbP9oDUU", "readable_id": "alexander-hamilton-overview"}, "3KrqQXsWP1M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3KrqQXsWP1M.mp4/3KrqQXsWP1M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3KrqQXsWP1M.mp4/3KrqQXsWP1M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3KrqQXsWP1M.m3u8/3KrqQXsWP1M.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkyne-reactions/hydroboration-oxidation-of-alkynes/", "duration": 515, "id": "3KrqQXsWP1M", "title": "Hydroboration-oxidation of alkynes", "format": "mp4", "description": "", "slug": "hydroboration-oxidation-of-alkynes", "kind": "Video", "video_id": "3KrqQXsWP1M", "keywords": "", "youtube_id": "3KrqQXsWP1M", "readable_id": "hydroboration-oxidation-of-alkynes"}, "4xFIi0JF2AM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4xFIi0JF2AM.mp4/4xFIi0JF2AM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4xFIi0JF2AM.mp4/4xFIi0JF2AM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4xFIi0JF2AM.m3u8/4xFIi0JF2AM.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_of_matrices/linear-algebra-rule-of-sarrus-of-determinants/", "duration": 438, "id": "4xFIi0JF2AM", "title": "Rule of Sarrus of determinants", "format": "mp4", "description": "A alternative \"short cut\" for calculating 3x3 determinants (Rule of Sarrus)", "slug": "linear-algebra-rule-of-sarrus-of-determinants", "kind": "Video", "video_id": "4xFIi0JF2AM", "keywords": "determinant, sarrus", "youtube_id": "4xFIi0JF2AM", "readable_id": "linear-algebra-rule-of-sarrus-of-determinants"}, "tdwFdzVqito": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tdwFdzVqito.mp4/tdwFdzVqito.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tdwFdzVqito.mp4/tdwFdzVqito.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tdwFdzVqito.m3u8/tdwFdzVqito.m3u8"}, "duration": 1154, "id": "tdwFdzVqito", "title": "Dot and cross product comparison/intuition", "format": "mp4", "description": "Dot and Cross Product Comparison/Intuition", "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/dot-and-cross-product-comparison-intuition/", "slug": "dot-and-cross-product-comparison-intuition", "kind": "Video", "video_id": "tdwFdzVqito", "keywords": "cross, dot, product", "youtube_id": "tdwFdzVqito", "readable_id": "dot-and-cross-product-comparison-intuition"}, "IelS2vg7JO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IelS2vg7JO8.mp4/IelS2vg7JO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IelS2vg7JO8.mp4/IelS2vg7JO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IelS2vg7JO8.m3u8/IelS2vg7JO8.m3u8"}, "duration": 155, "id": "IelS2vg7JO8", "title": "Volume of a sphere", "format": "mp4", "description": "Volume of a Sphere", "path": "khan/math/geometry/basic-geometry/volume_tutorial/volume-of-a-sphere/", "slug": "volume-of-a-sphere", "kind": "Video", "video_id": "IelS2vg7JO8", "keywords": "u07_l3_t1_we2, Volume, of, Sphere", "youtube_id": "IelS2vg7JO8", "readable_id": "volume-of-a-sphere"}, "HEH_oKNLgUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HEH_oKNLgUU.mp4/HEH_oKNLgUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HEH_oKNLgUU.mp4/HEH_oKNLgUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HEH_oKNLgUU.m3u8/HEH_oKNLgUU.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/calculus-derivatives-2-5-new-hd-version/", "duration": 665, "id": "HEH_oKNLgUU", "title": "The derivative of f(x)=x^2 for any x", "format": "mp4", "description": "Calculus-Derivative: Finding the derivative of y=x^2", "slug": "calculus-derivatives-2-5-new-hd-version", "kind": "Video", "video_id": "HEH_oKNLgUU", "keywords": "calculus, derivative", "youtube_id": "HEH_oKNLgUU", "readable_id": "calculus-derivatives-2-5-new-hd-version"}, "4SQDybFjhRE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4SQDybFjhRE.mp4/4SQDybFjhRE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4SQDybFjhRE.mp4/4SQDybFjhRE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4SQDybFjhRE.m3u8/4SQDybFjhRE.m3u8"}, "duration": 365, "id": "4SQDybFjhRE", "title": "Loop de loop answer part 1", "format": "mp4", "description": "Figuring out the minimum speed at the top of the loop de loop to stay on the track", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/loop-de-loop-answer-part-1/", "slug": "loop-de-loop-answer-part-1", "kind": "Video", "video_id": "4SQDybFjhRE", "keywords": "centripetal, acceleration, force", "youtube_id": "4SQDybFjhRE", "readable_id": "loop-de-loop-answer-part-1"}, "ayKHmN90ncc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ayKHmN90ncc.mp4/ayKHmN90ncc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ayKHmN90ncc.mp4/ayKHmN90ncc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ayKHmN90ncc.m3u8/ayKHmN90ncc.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes-cycloalkanes-bicyclic/naming-cubane/", "duration": 344, "id": "ayKHmN90ncc", "title": "Naming cubane", "format": "mp4", "description": "", "slug": "naming-cubane", "kind": "Video", "video_id": "ayKHmN90ncc", "keywords": "", "youtube_id": "ayKHmN90ncc", "readable_id": "naming-cubane"}, "TLU9Hdt14Kc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TLU9Hdt14Kc.mp4/TLU9Hdt14Kc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TLU9Hdt14Kc.mp4/TLU9Hdt14Kc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TLU9Hdt14Kc.m3u8/TLU9Hdt14Kc.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/bottle-rocket-apps/calvin-carter-3/", "duration": 183, "id": "TLU9Hdt14Kc", "title": "The excitement of making something", "format": "mp4", "description": "", "slug": "calvin-carter-3", "kind": "Video", "video_id": "TLU9Hdt14Kc", "keywords": "", "youtube_id": "TLU9Hdt14Kc", "readable_id": "calvin-carter-3"}, "QE2uR6Z-NcU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QE2uR6Z-NcU.mp4/QE2uR6Z-NcU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QE2uR6Z-NcU.mp4/QE2uR6Z-NcU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QE2uR6Z-NcU.m3u8/QE2uR6Z-NcU.m3u8"}, "duration": 643, "id": "QE2uR6Z-NcU", "title": "Addition rule for probability", "format": "mp4", "description": "Venn diagrams and the addition rule for probability", "path": "khan/math/precalculus/prob_comb/addition_rule_prob_precalc/addition-rule-for-probability/", "slug": "addition-rule-for-probability", "kind": "Video", "video_id": "QE2uR6Z-NcU", "keywords": "probability, statistics, venn", "youtube_id": "QE2uR6Z-NcU", "readable_id": "addition-rule-for-probability"}, "TqAtt3g6Tkc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TqAtt3g6Tkc.mp4/TqAtt3g6Tkc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TqAtt3g6Tkc.mp4/TqAtt3g6Tkc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TqAtt3g6Tkc.m3u8/TqAtt3g6Tkc.m3u8"}, "duration": 318, "id": "TqAtt3g6Tkc", "title": "Unknowns with multiplication and division", "format": "mp4", "description": "Find the missing number in multiplication and division equations.", "path": "unknowns-with-multiplication-and-division/", "slug": "unknowns-with-multiplication-and-division", "kind": "Video", "video_id": "TqAtt3g6Tkc", "keywords": "", "youtube_id": "TqAtt3g6Tkc", "readable_id": "unknowns-with-multiplication-and-division"}, "35sOcVflhE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/35sOcVflhE0.mp4/35sOcVflhE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/35sOcVflhE0.mp4/35sOcVflhE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/35sOcVflhE0.m3u8/35sOcVflhE0.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/string-instruments/bass-interview-and-demonstration-with-principal-alexander-hanna/", "duration": 860, "id": "35sOcVflhE0", "title": "Bass: Interview and demonstration with principal Alexander Hanna", "format": "mp4", "description": "", "slug": "bass-interview-and-demonstration-with-principal-alexander-hanna", "kind": "Video", "video_id": "35sOcVflhE0", "keywords": "", "youtube_id": "35sOcVflhE0", "readable_id": "bass-interview-and-demonstration-with-principal-alexander-hanna"}, "qfz1k_yU3d4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qfz1k_yU3d4.mp4/qfz1k_yU3d4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qfz1k_yU3d4.mp4/qfz1k_yU3d4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qfz1k_yU3d4.m3u8/qfz1k_yU3d4.m3u8"}, "path": "khan/humanities/art-americas/early-cultures/olmec/kunz-axe/", "duration": 336, "id": "qfz1k_yU3d4", "title": "Kunz Axe", "format": "mp4", "description": "Votive Adze \"Kunz Axe,\" (Olmec Formative Period), c. 1200-500 B.C.E., jadeite, 31 x 16 x 11 cm (American Museum of Natural History) Speakers: Dr. Rex Koonz and Dr. Steven Zucker", "slug": "kunz-axe", "kind": "Video", "video_id": "qfz1k_yU3d4", "keywords": "Olmec, Mesoamerican, Jadeite, sculpture", "youtube_id": "qfz1k_yU3d4", "readable_id": "kunz-axe"}, "0t8W4JFpP2M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0t8W4JFpP2M.mp4/0t8W4JFpP2M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0t8W4JFpP2M.mp4/0t8W4JFpP2M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0t8W4JFpP2M.m3u8/0t8W4JFpP2M.m3u8"}, "duration": 330, "id": "0t8W4JFpP2M", "title": "Magnitude of vector sums", "format": "mp4", "description": "", "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/mag-vec-sums/", "slug": "mag-vec-sums", "kind": "Video", "video_id": "0t8W4JFpP2M", "keywords": "", "youtube_id": "0t8W4JFpP2M", "readable_id": "mag-vec-sums"}, "ioH0PUdUW3M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ioH0PUdUW3M.mp4/ioH0PUdUW3M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ioH0PUdUW3M.mp4/ioH0PUdUW3M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ioH0PUdUW3M.m3u8/ioH0PUdUW3M.m3u8"}, "duration": 257, "id": "ioH0PUdUW3M", "title": "Interpreting negative number statements", "format": "mp4", "description": "The examples in this video use negative numbers to represent real world situations. What are these negative numbers really telling us?", "path": "interpreting-negative-number-statements/", "slug": "interpreting-negative-number-statements", "kind": "Video", "video_id": "ioH0PUdUW3M", "keywords": "", "youtube_id": "ioH0PUdUW3M", "readable_id": "interpreting-negative-number-statements"}, "ALhv3Rlydig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ALhv3Rlydig.mp4/ALhv3Rlydig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ALhv3Rlydig.mp4/ALhv3Rlydig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ALhv3Rlydig.m3u8/ALhv3Rlydig.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/acute-right-and-obtuse-angles/", "duration": 332, "id": "ALhv3Rlydig", "title": "Acute right and obtuse angles", "format": "mp4", "description": "We briefly discussed the types of angles in the last tutorial but we'll delve a little deeper into acute, obtuse, and right angles here.", "slug": "acute-right-and-obtuse-angles", "kind": "Video", "video_id": "ALhv3Rlydig", "keywords": "angles, geometry, CC_4_G_1", "youtube_id": "ALhv3Rlydig", "readable_id": "acute-right-and-obtuse-angles"}, "E5f5smh7Keo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E5f5smh7Keo.mp4/E5f5smh7Keo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E5f5smh7Keo.mp4/E5f5smh7Keo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E5f5smh7Keo.m3u8/E5f5smh7Keo.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/epicurus-cure-for-unhappiness/", "duration": 575, "id": "E5f5smh7Keo", "title": "Ancient: Epicurus\u2019 Cure for Unhappiness", "format": "mp4", "description": "In this video,\u00a0Monte\u00a0discusses the \u201ctetrapharmakos\u201d or \u201cfour-part remedy\u201d developed by the ancient Greek philosopher Epicurus (341-270 BC) and his followers to treat unhappiness and anxiety. The tetrapharmakos consists of four maxims which encapsulate the Epicurean outlook on god, life, death, pleasure, and pain. The maxims can be meditated upon in order to alleviate worries and concerns that continue to plague us as much as they did the ancients.\n\nSpeaker: Dr. Monte Ransome Johnson, Associate Professor, University of California, San Diego", "slug": "epicurus-cure-for-unhappiness", "kind": "Video", "video_id": "E5f5smh7Keo", "keywords": "", "youtube_id": "E5f5smh7Keo", "readable_id": "epicurus-cure-for-unhappiness"}, "b6VQv76BQDs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b6VQv76BQDs.mp4/b6VQv76BQDs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b6VQv76BQDs.mp4/b6VQv76BQDs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b6VQv76BQDs.m3u8/b6VQv76BQDs.m3u8"}, "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/correction-radius-of-observable-universe/", "duration": 134, "id": "b6VQv76BQDs", "title": "Radius of observable universe (correction)", "format": "mp4", "description": "(Correction) Radius of Observable Universe", "slug": "correction-radius-of-observable-universe", "kind": "Video", "video_id": "b6VQv76BQDs", "keywords": "Radius, of, Observable, Universe", "youtube_id": "b6VQv76BQDs", "readable_id": "correction-radius-of-observable-universe"}, "U8kmaUXaPJY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U8kmaUXaPJY.mp4/U8kmaUXaPJY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U8kmaUXaPJY.mp4/U8kmaUXaPJY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U8kmaUXaPJY.m3u8/U8kmaUXaPJY.m3u8"}, "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/evaluating-exponential-expressions-3/", "duration": 266, "id": "U8kmaUXaPJY", "title": "Evaluating exponential expressions 3", "format": "mp4", "description": "Evaluating exponential expressions 3", "slug": "evaluating-exponential-expressions-3", "kind": "Video", "video_id": "U8kmaUXaPJY", "keywords": "u11_l1_t1_we3, Evaluating, exponential, expressions, CC_6_EE_1, CC_6_EE_2, CC_6_EE_2_c, CC_8_EE_1, CC_39336_A-CED_1", "youtube_id": "U8kmaUXaPJY", "readable_id": "evaluating-exponential-expressions-3"}, "mQyM-4YqHMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mQyM-4YqHMM.mp4/mQyM-4YqHMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mQyM-4YqHMM.mp4/mQyM-4YqHMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mQyM-4YqHMM.m3u8/mQyM-4YqHMM.m3u8"}, "duration": 549, "id": "mQyM-4YqHMM", "title": "Italian front in World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/other-fronts-ww1/italian-front-in-world-war-i/", "slug": "italian-front-in-world-war-i", "kind": "Video", "video_id": "mQyM-4YqHMM", "keywords": "", "youtube_id": "mQyM-4YqHMM", "readable_id": "italian-front-in-world-war-i"}, "blur0MemUQA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/blur0MemUQA.mp4/blur0MemUQA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/blur0MemUQA.mp4/blur0MemUQA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/blur0MemUQA.m3u8/blur0MemUQA.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/wave-interference/", "duration": 869, "id": "blur0MemUQA", "title": "Wave Interference", "format": "mp4", "description": "", "slug": "wave-interference", "kind": "Video", "video_id": "blur0MemUQA", "keywords": "", "youtube_id": "blur0MemUQA", "readable_id": "wave-interference"}, "pQwoBOpVoWw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pQwoBOpVoWw.mp4/pQwoBOpVoWw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pQwoBOpVoWw.mp4/pQwoBOpVoWw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pQwoBOpVoWw.m3u8/pQwoBOpVoWw.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-complex-numbers-part-2/", "duration": 446, "id": "pQwoBOpVoWw", "title": "IIT JEE complex numbers (part 2)", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 39 Complex Numbers (part 2)", "slug": "iit-jee-complex-numbers-part-2", "kind": "Video", "video_id": "pQwoBOpVoWw", "keywords": "2010, IIT, JEE, Paper, Problem, 39, Complex, Numbers, (part, 2)", "youtube_id": "pQwoBOpVoWw", "readable_id": "iit-jee-complex-numbers-part-2"}, "Akpl6wmAfZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Akpl6wmAfZQ.mp4/Akpl6wmAfZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Akpl6wmAfZQ.mp4/Akpl6wmAfZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Akpl6wmAfZQ.m3u8/Akpl6wmAfZQ.m3u8"}, "duration": 788, "id": "Akpl6wmAfZQ", "title": "The history of life on earth", "format": "mp4", "description": "", "path": "crash-course-ecology-01/", "slug": "crash-course-ecology-01", "kind": "Video", "video_id": "Akpl6wmAfZQ", "keywords": "", "youtube_id": "Akpl6wmAfZQ", "readable_id": "crash-course-ecology-01"}, "pxX07gUbIQQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pxX07gUbIQQ.mp4/pxX07gUbIQQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pxX07gUbIQQ.mp4/pxX07gUbIQQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pxX07gUbIQQ.m3u8/pxX07gUbIQQ.m3u8"}, "duration": 241, "id": "pxX07gUbIQQ", "title": "Adding mixed numbers", "format": "mp4", "description": "Adding mixed numbers", "path": "adding-mixed-numbers-2/", "slug": "adding-mixed-numbers-2", "kind": "Video", "video_id": "pxX07gUbIQQ", "keywords": "", "youtube_id": "pxX07gUbIQQ", "readable_id": "adding-mixed-numbers-2"}, "19yOv4P2ccw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/19yOv4P2ccw.mp4/19yOv4P2ccw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/19yOv4P2ccw.mp4/19yOv4P2ccw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/19yOv4P2ccw.m3u8/19yOv4P2ccw.m3u8"}, "duration": 296, "id": "19yOv4P2ccw", "title": "Rounding to the nearest 100", "format": "mp4", "description": "Use a number line to round three-digit numbers to the nearest hundred.", "path": "rounding-to-the-nearest-100/", "slug": "rounding-to-the-nearest-100", "kind": "Video", "video_id": "19yOv4P2ccw", "keywords": "", "youtube_id": "19yOv4P2ccw", "readable_id": "rounding-to-the-nearest-100"}, "y1_N1GAsS5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y1_N1GAsS5I.mp4/y1_N1GAsS5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y1_N1GAsS5I.mp4/y1_N1GAsS5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y1_N1GAsS5I.m3u8/y1_N1GAsS5I.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/andrea-mantegna-saint-sebastian-c-1456-59/", "duration": 185, "id": "y1_N1GAsS5I", "title": "Mantegna, Saint Sebastian", "format": "mp4", "description": "Andrea Mantegna, Saint Sebastian, oil on wood panel, ca. 1456-59 (Kunsthistorisches Museum, Vienna) Speakers: Dr. Beth Harris, Dr. Steven Zucker For more art history videos, visit Smarthistory.org", "slug": "andrea-mantegna-saint-sebastian-c-1456-59", "kind": "Video", "video_id": "y1_N1GAsS5I", "keywords": "Mantegna, Renaissance, St. Sebastian, Art History, Smarthistory", "youtube_id": "y1_N1GAsS5I", "readable_id": "andrea-mantegna-saint-sebastian-c-1456-59"}, "74XxAsDmUaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/74XxAsDmUaM.mp4/74XxAsDmUaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/74XxAsDmUaM.mp4/74XxAsDmUaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/74XxAsDmUaM.m3u8/74XxAsDmUaM.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-9-8/", "duration": 175, "id": "74XxAsDmUaM", "title": "8 More unknowns than equations", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-8", "kind": "Video", "video_id": "74XxAsDmUaM", "keywords": "", "youtube_id": "74XxAsDmUaM", "readable_id": "sat-2010-may-9-8"}, "FXZ2O1Lv-KE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FXZ2O1Lv-KE.mp4/FXZ2O1Lv-KE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FXZ2O1Lv-KE.mp4/FXZ2O1Lv-KE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FXZ2O1Lv-KE.m3u8/FXZ2O1Lv-KE.m3u8"}, "duration": 652, "id": "FXZ2O1Lv-KE", "title": "Sampling distribution of the sample mean", "format": "mp4", "description": "The central limit theorem and the sampling distribution of the sample mean", "path": "khan/math/probability/statistics-inferential/sampling_distribution/sampling-distribution-of-the-sample-mean/", "slug": "sampling-distribution-of-the-sample-mean", "kind": "Video", "video_id": "FXZ2O1Lv-KE", "keywords": "central, limit, theorem, sampling, distribution, sample, mean, CC_6_SP_2, CC_6_SP_4, CC_6_SP_5_c, CC_6_SP_5_d, CC_7_SP_1, CC_7_SP_2", "youtube_id": "FXZ2O1Lv-KE", "readable_id": "sampling-distribution-of-the-sample-mean"}, "DdLDu5BCgck": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DdLDu5BCgck.mp4/DdLDu5BCgck.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DdLDu5BCgck.mp4/DdLDu5BCgck.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DdLDu5BCgck.m3u8/DdLDu5BCgck.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations-alkanes-cycloalkanes/conformations-of-cyclohexane-ii-monosubstituted/", "duration": 687, "id": "DdLDu5BCgck", "title": "Conformations of cyclohexane II: Monosubstituted", "format": "mp4", "description": "For a link to a virtual molecular model set: http://www.chem.fsu.edu/schwartz/organic_links.html", "slug": "conformations-of-cyclohexane-ii-monosubstituted", "kind": "Video", "video_id": "DdLDu5BCgck", "keywords": "", "youtube_id": "DdLDu5BCgck", "readable_id": "conformations-of-cyclohexane-ii-monosubstituted"}, "w1_EEi8-EaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w1_EEi8-EaI.mp4/w1_EEi8-EaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w1_EEi8-EaI.mp4/w1_EEi8-EaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w1_EEi8-EaI.m3u8/w1_EEi8-EaI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-occupational-lung-diseases/asbestosis-silicosis-sick-building-syndrome/", "duration": 413, "id": "w1_EEi8-EaI", "title": "Asbestosis, silicosis, sick building syndrome", "format": "mp4", "description": "", "slug": "asbestosis-silicosis-sick-building-syndrome", "kind": "Video", "video_id": "w1_EEi8-EaI", "keywords": "", "youtube_id": "w1_EEi8-EaI", "readable_id": "asbestosis-silicosis-sick-building-syndrome"}, "54c_oPpTTP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/54c_oPpTTP8.mp4/54c_oPpTTP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/54c_oPpTTP8.mp4/54c_oPpTTP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/54c_oPpTTP8.m3u8/54c_oPpTTP8.m3u8"}, "duration": 409, "id": "54c_oPpTTP8", "title": "Low salt diet", "format": "mp4", "description": "Figure out the difference between \"salt\" and \"sodium\" and how much salt is recommended on a low sodium diet. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/healthcare-misc/low-salt-diet/", "slug": "low-salt-diet", "kind": "Video", "video_id": "54c_oPpTTP8", "keywords": "", "youtube_id": "54c_oPpTTP8", "readable_id": "low-salt-diet"}, "06j_zPdPWOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/06j_zPdPWOY.mp4/06j_zPdPWOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/06j_zPdPWOY.mp4/06j_zPdPWOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/06j_zPdPWOY.m3u8/06j_zPdPWOY.m3u8"}, "duration": 486, "id": "06j_zPdPWOY", "title": "Economic profit vs accounting profit", "format": "mp4", "description": "Difference between a firm's accounting and economic profit", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/economic-profit-tutorial/economic-profit-vs-accounting-profit/", "slug": "economic-profit-vs-accounting-profit", "kind": "Video", "video_id": "06j_zPdPWOY", "keywords": "microeconomics, accounting, firm, marquee", "youtube_id": "06j_zPdPWOY", "readable_id": "economic-profit-vs-accounting-profit"}, "5ahti9i1eFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ahti9i1eFM.mp4/5ahti9i1eFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ahti9i1eFM.mp4/5ahti9i1eFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ahti9i1eFM.m3u8/5ahti9i1eFM.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/paying-for-medicines-tiering-formularies/", "duration": 823, "id": "5ahti9i1eFM", "title": "Paying for medicines: tiering and formularies", "format": "mp4", "description": "In the second of two videos on paying for medications, the concepts of tiered drug pricing, preferred drug lists, and Medicare Part D are explained to shed some light on the issue.", "slug": "paying-for-medicines-tiering-formularies", "kind": "Video", "video_id": "5ahti9i1eFM", "keywords": "", "youtube_id": "5ahti9i1eFM", "readable_id": "paying-for-medicines-tiering-formularies"}, "aUmApJMfUTc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aUmApJMfUTc.mp4/aUmApJMfUTc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aUmApJMfUTc.mp4/aUmApJMfUTc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aUmApJMfUTc.m3u8/aUmApJMfUTc.m3u8"}, "duration": 278, "id": "aUmApJMfUTc", "title": "Retrieval cues", "format": "mp4", "description": "Learn about how priming, environmental context, and internal state affect memory.", "path": "khan/test-prep/mcat/processing-the-environment/memory/retrieval-cues/", "slug": "retrieval-cues", "kind": "Video", "video_id": "aUmApJMfUTc", "keywords": "", "youtube_id": "aUmApJMfUTc", "readable_id": "retrieval-cues"}, "13E90TAtZ30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/13E90TAtZ30.mp4/13E90TAtZ30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/13E90TAtZ30.mp4/13E90TAtZ30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/13E90TAtZ30.m3u8/13E90TAtZ30.m3u8"}, "duration": 489, "id": "13E90TAtZ30", "title": "LeBron Asks: If Earth's history were a basketball game, when did humans appear?", "format": "mp4", "description": "LeBron James asks Sal about how long humanity has been around as compared to the history of the Earth", "path": "khan/partner-content/lebron-asks-subject/lebron-asks/lebron-asks-about-comparing-earth-s-history-to-a-basketball-game/", "slug": "lebron-asks-about-comparing-earth-s-history-to-a-basketball-game", "kind": "Video", "video_id": "13E90TAtZ30", "keywords": "lebron, khan", "youtube_id": "13E90TAtZ30", "readable_id": "lebron-asks-about-comparing-earth-s-history-to-a-basketball-game"}, "8qfzpJvsp04": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8qfzpJvsp04.mp4/8qfzpJvsp04.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8qfzpJvsp04.mp4/8qfzpJvsp04.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8qfzpJvsp04.m3u8/8qfzpJvsp04.m3u8"}, "duration": 699, "id": "8qfzpJvsp04", "title": "Van der waals forces", "format": "mp4", "description": "Van Der Waals Forces: London Dispersion Forces, Dipole Attractions, and Hydrogen Bonds.", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/van-der-waals-forces/", "slug": "van-der-waals-forces", "kind": "Video", "video_id": "8qfzpJvsp04", "keywords": "chemistry, van, der, waals, london, dispersion, dipole", "youtube_id": "8qfzpJvsp04", "readable_id": "van-der-waals-forces"}, "SIDRXhdQ0qQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SIDRXhdQ0qQ.mp4/SIDRXhdQ0qQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SIDRXhdQ0qQ.mp4/SIDRXhdQ0qQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SIDRXhdQ0qQ.m3u8/SIDRXhdQ0qQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/kinetic-molecular-theory-of-gas/boltzmanns-constant/", "duration": 586, "id": "SIDRXhdQ0qQ", "title": "Boltzmann's constant", "format": "mp4", "description": "", "slug": "boltzmanns-constant", "kind": "Video", "video_id": "SIDRXhdQ0qQ", "keywords": "", "youtube_id": "SIDRXhdQ0qQ", "readable_id": "boltzmanns-constant"}, "ZrbbKMnPDUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZrbbKMnPDUk.mp4/ZrbbKMnPDUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZrbbKMnPDUk.mp4/ZrbbKMnPDUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZrbbKMnPDUk.m3u8/ZrbbKMnPDUk.m3u8"}, "duration": 226, "id": "ZrbbKMnPDUk", "title": "Night of the Long Knives", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/hitler-nazis/night-of-the-long-knives/", "slug": "night-of-the-long-knives", "kind": "Video", "video_id": "ZrbbKMnPDUk", "keywords": "", "youtube_id": "ZrbbKMnPDUk", "readable_id": "night-of-the-long-knives"}, "btGaOTXxXs8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/btGaOTXxXs8.mp4/btGaOTXxXs8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/btGaOTXxXs8.mp4/btGaOTXxXs8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/btGaOTXxXs8.m3u8/btGaOTXxXs8.m3u8"}, "duration": 541, "id": "btGaOTXxXs8", "title": "Disk method around x-axis", "format": "mp4", "description": "Finding the solid of revolution (constructed by revolving around the x-axis) using the disc method.", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/disk-method-around-x-axis/", "slug": "disk-method-around-x-axis", "kind": "Video", "video_id": "btGaOTXxXs8", "keywords": "", "youtube_id": "btGaOTXxXs8", "readable_id": "disk-method-around-x-axis"}, "GQXUpB2NHvQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GQXUpB2NHvQ.mp4/GQXUpB2NHvQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GQXUpB2NHvQ.mp4/GQXUpB2NHvQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GQXUpB2NHvQ.m3u8/GQXUpB2NHvQ.m3u8"}, "duration": 379, "id": "GQXUpB2NHvQ", "title": "Equation for a circle using the Pythagorean Theorem", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/equation-of-a-circle/equation-for-a-circle-using-the-pythagorean-theorem/", "slug": "equation-for-a-circle-using-the-pythagorean-theorem", "kind": "Video", "video_id": "GQXUpB2NHvQ", "keywords": "", "youtube_id": "GQXUpB2NHvQ", "readable_id": "equation-for-a-circle-using-the-pythagorean-theorem"}, "ywOr4OYqXOs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ywOr4OYqXOs.mp4/ywOr4OYqXOs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ywOr4OYqXOs.mp4/ywOr4OYqXOs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ywOr4OYqXOs.m3u8/ywOr4OYqXOs.m3u8"}, "duration": 869, "id": "ywOr4OYqXOs", "title": "An IPO", "format": "mp4", "description": "The initial public offering of our online sock company.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets/an-ipo/", "slug": "an-ipo", "kind": "Video", "video_id": "ywOr4OYqXOs", "keywords": "ipo, initial, public, offering, syndicate, underwriters", "youtube_id": "ywOr4OYqXOs", "readable_id": "an-ipo"}, "OMEDRrGpybY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OMEDRrGpybY.mp4/OMEDRrGpybY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OMEDRrGpybY.mp4/OMEDRrGpybY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OMEDRrGpybY.m3u8/OMEDRrGpybY.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/william-butterfield-all-saints-church-margaret-street/", "duration": 495, "id": "OMEDRrGpybY", "title": "William Butterfield, All Saints, Margaret Street", "format": "mp4", "description": "All Saints Church, 7 Margaret Street, London\nArchitect: William Butterfield\n\nPrimary patrons: Alexander Beresford Hope and Henry Tritton\n\nDesigned 1849\n\nCornerstone laid by Edward Bouverie Pusey, 1850\n\nConsecrated 1859\n\nSpeakers: Dr. Ayla Lepine and Dr. Steven Zucker\n\nWilliam Butterfield had little more than 100 square feet of real estate, but designed perhaps the greatest example of High Victorian Gothic architecture. The spire soars 227 feet above London and its interior is a kaleidoscope of color and pattern that expresses the vision of the Oxford Movement and the Ecclesiological Society. In 1841, the Society announced its intentions for their model church:\n\nIt must be in a Gothic Style.\n\nIt must be built of solid materials.\n\nIts ornament should decorate its construction.\n\nIts artist should be 'a single pious and laborious artist alone, pondering deeply over his duty to do his best for the service of God's Holy Religion'.\n\nAbove all the church must be built so that the 'Rubricks and Canons of the Church of England may be Consistently observed, and the Sacraments rubrically and decently administered\u2019.\n", "slug": "william-butterfield-all-saints-church-margaret-street", "kind": "Video", "video_id": "OMEDRrGpybY", "keywords": "William, Butterfield, All, Saints, Church, Margaret, Street, London, 1849, 1859, Victorian, Architecture, Gothic, Revival, Neo-Gothic, Ruskin", "youtube_id": "OMEDRrGpybY", "readable_id": "william-butterfield-all-saints-church-margaret-street"}, "6p1lweGactg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6p1lweGactg.mp4/6p1lweGactg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6p1lweGactg.mp4/6p1lweGactg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6p1lweGactg.m3u8/6p1lweGactg.m3u8"}, "duration": 131, "id": "6p1lweGactg", "title": "Testing similarity through transformations", "format": "mp4", "description": "", "path": "khan/math/geometry/similarity/similarity-and-transformations/testing-similarity-through-transformations/", "slug": "testing-similarity-through-transformations", "kind": "Video", "video_id": "6p1lweGactg", "keywords": "", "youtube_id": "6p1lweGactg", "readable_id": "testing-similarity-through-transformations"}, "FYMn61HLw1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FYMn61HLw1k.mp4/FYMn61HLw1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FYMn61HLw1k.mp4/FYMn61HLw1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FYMn61HLw1k.m3u8/FYMn61HLw1k.m3u8"}, "duration": 304, "id": "FYMn61HLw1k", "title": "Differential of a vector valued function", "format": "mp4", "description": "Understanding the differential of a vector valued function", "path": "khan/math/multivariable-calculus/line_integrals_topic/position_vector_functions/differential-of-a-vector-valued-function/", "slug": "differential-of-a-vector-valued-function", "kind": "Video", "video_id": "FYMn61HLw1k", "keywords": "differential, vector, valued, function", "youtube_id": "FYMn61HLw1k", "readable_id": "differential-of-a-vector-valued-function"}, "yj4oS-27Q3k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yj4oS-27Q3k.mp4/yj4oS-27Q3k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yj4oS-27Q3k.mp4/yj4oS-27Q3k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yj4oS-27Q3k.m3u8/yj4oS-27Q3k.m3u8"}, "duration": 657, "id": "yj4oS-27Q3k", "title": "Point-line distance and angle bisectors", "format": "mp4", "description": "Thinking about the distance between a point and a line. Proof that a point on an angle bisector is equidistant to the sides of the angle and a point equidistant to the sides is on an angle bisector", "path": "khan/math/geometry/triangle-properties/angle_bisectors/point-line-distance-and-angle-bisectors/", "slug": "point-line-distance-and-angle-bisectors", "kind": "Video", "video_id": "yj4oS-27Q3k", "keywords": "Point, Line, Distance, and, Angle, Bisectors", "youtube_id": "yj4oS-27Q3k", "readable_id": "point-line-distance-and-angle-bisectors"}, "fUxSB3yYIbs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fUxSB3yYIbs.mp4/fUxSB3yYIbs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fUxSB3yYIbs.mp4/fUxSB3yYIbs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fUxSB3yYIbs.m3u8/fUxSB3yYIbs.m3u8"}, "duration": 414, "id": "fUxSB3yYIbs", "title": "Elasticity and strange percent changes", "format": "mp4", "description": "Why we calculate percent changes in a strange way when calculating elasticities", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/elasticity-and-strange-percent-changes/", "slug": "elasticity-and-strange-percent-changes", "kind": "Video", "video_id": "fUxSB3yYIbs", "keywords": "economics, supply, demand", "youtube_id": "fUxSB3yYIbs", "readable_id": "elasticity-and-strange-percent-changes"}, "Bt60JVZRVCI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bt60JVZRVCI.mp4/Bt60JVZRVCI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bt60JVZRVCI.mp4/Bt60JVZRVCI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bt60JVZRVCI.m3u8/Bt60JVZRVCI.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/visualizing-equiv-fracs-pre-alg/visualizing-equivalent-fractions/", "duration": 225, "id": "Bt60JVZRVCI", "title": "Visualizing equivalent fractions", "format": "mp4", "description": "To understand equivalent fractions it helps to \"see\" the fractions using something like a grid with shaded and unshaded sections representing the fraction.", "slug": "visualizing-equivalent-fractions", "kind": "Video", "video_id": "Bt60JVZRVCI", "keywords": "", "youtube_id": "Bt60JVZRVCI", "readable_id": "visualizing-equivalent-fractions"}, "I2M7U8eCeHA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I2M7U8eCeHA.mp4/I2M7U8eCeHA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I2M7U8eCeHA.mp4/I2M7U8eCeHA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I2M7U8eCeHA.m3u8/I2M7U8eCeHA.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/sir-john-everett-millais-ophelia-1851-52/", "duration": 327, "id": "I2M7U8eCeHA", "title": "Sir John Everett Millais, Ophelia", "format": "mp4", "description": "Sir John Everett Millais, Ophelia, 1851-52, oil on canvas, 762 x 1118 mm (Tate Britain, London)", "slug": "sir-john-everett-millais-ophelia-1851-52", "kind": "Video", "video_id": "I2M7U8eCeHA", "keywords": "Millais, Ophelia, GAP, Art History, Shakespeare, Hamlet, Pre-Raphaelite, Tate, Tate Britain, Khan Academy, suicide, Google Art Project", "youtube_id": "I2M7U8eCeHA", "readable_id": "sir-john-everett-millais-ophelia-1851-52"}, "s4cLM0l1gd4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s4cLM0l1gd4.mp4/s4cLM0l1gd4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s4cLM0l1gd4.mp4/s4cLM0l1gd4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s4cLM0l1gd4.m3u8/s4cLM0l1gd4.m3u8"}, "duration": 298, "id": "s4cLM0l1gd4", "title": "Midline, amplitude and period of a function", "format": "mp4", "description": "", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/midline-amplitude-period/", "slug": "midline-amplitude-period", "kind": "Video", "video_id": "s4cLM0l1gd4", "keywords": "", "youtube_id": "s4cLM0l1gd4", "readable_id": "midline-amplitude-period"}, "hrIPO8mQqtw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hrIPO8mQqtw.mp4/hrIPO8mQqtw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hrIPO8mQqtw.mp4/hrIPO8mQqtw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hrIPO8mQqtw.m3u8/hrIPO8mQqtw.m3u8"}, "duration": 591, "id": "hrIPO8mQqtw", "title": "Double integrals 5", "format": "mp4", "description": "Finding the volume when we have variable boundaries.", "path": "khan/math/multivariable-calculus/double_triple_integrals/double_integrals/double-integrals-5/", "slug": "double-integrals-5", "kind": "Video", "video_id": "hrIPO8mQqtw", "keywords": "double, integral, calculus", "youtube_id": "hrIPO8mQqtw", "readable_id": "double-integrals-5"}, "eg7ltl5vll0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eg7ltl5vll0.mp4/eg7ltl5vll0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eg7ltl5vll0.mp4/eg7ltl5vll0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eg7ltl5vll0.m3u8/eg7ltl5vll0.m3u8"}, "duration": 283, "id": "eg7ltl5vll0", "title": "Inbreeding", "format": "mp4", "description": "Learn about inbreeding and how it can hurt a population's genetic diversity. By Ross Firestone.", "path": "khan/test-prep/mcat/biomolecules/evolution-population-dynmaics/inbreeding/", "slug": "inbreeding", "kind": "Video", "video_id": "eg7ltl5vll0", "keywords": "", "youtube_id": "eg7ltl5vll0", "readable_id": "inbreeding"}, "gsNgdVdAT1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gsNgdVdAT1o.mp4/gsNgdVdAT1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gsNgdVdAT1o.mp4/gsNgdVdAT1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gsNgdVdAT1o.m3u8/gsNgdVdAT1o.m3u8"}, "duration": 860, "id": "gsNgdVdAT1o", "title": "Matrices to solve a vector combination problem", "format": "mp4", "description": "Using matrices to figure out if some combination of 2 vectors can create a 3rd vector", "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/matrices-to-solve-a-vector-combination-problem/", "slug": "matrices-to-solve-a-vector-combination-problem", "kind": "Video", "video_id": "gsNgdVdAT1o", "keywords": "matrix, matrices, vectors", "youtube_id": "gsNgdVdAT1o", "readable_id": "matrices-to-solve-a-vector-combination-problem"}, "C9onjpQGpSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C9onjpQGpSg.mp4/C9onjpQGpSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C9onjpQGpSg.mp4/C9onjpQGpSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C9onjpQGpSg.m3u8/C9onjpQGpSg.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/unemployment-tutorial/unemployment-rate-primer-v2/", "duration": 604, "id": "C9onjpQGpSg", "title": "Unemployment rate primer (v2)", "format": "mp4", "description": "How the unemployment rate is calculated", "slug": "unemployment-rate-primer-v2", "kind": "Video", "video_id": "C9onjpQGpSg", "keywords": "economics, unemployment", "youtube_id": "C9onjpQGpSg", "readable_id": "unemployment-rate-primer-v2"}, "3vKLU5_Hgco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3vKLU5_Hgco.mp4/3vKLU5_Hgco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3vKLU5_Hgco.mp4/3vKLU5_Hgco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3vKLU5_Hgco.m3u8/3vKLU5_Hgco.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/tolerance-and-withdrawal/", "duration": 333, "id": "3vKLU5_Hgco", "title": "Tolerance and withdrawal", "format": "mp4", "description": "", "slug": "tolerance-and-withdrawal", "kind": "Video", "video_id": "3vKLU5_Hgco", "keywords": "", "youtube_id": "3vKLU5_Hgco", "readable_id": "tolerance-and-withdrawal"}, "ecA0shEaARM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ecA0shEaARM.mp4/ecA0shEaARM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ecA0shEaARM.mp4/ecA0shEaARM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ecA0shEaARM.m3u8/ecA0shEaARM.m3u8"}, "path": "khan/college-admissions/applying-to-college/college-application-process/receiving-an-admissions-decision-admit-deny-or-waitlist/", "duration": 118, "id": "ecA0shEaARM", "title": "Receiving an admissions decision: Admit, deny, or waitlist", "format": "mp4", "description": "", "slug": "receiving-an-admissions-decision-admit-deny-or-waitlist", "kind": "Video", "video_id": "ecA0shEaARM", "keywords": "", "youtube_id": "ecA0shEaARM", "readable_id": "receiving-an-admissions-decision-admit-deny-or-waitlist"}, "NFzma7NsHtI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NFzma7NsHtI.mp4/NFzma7NsHtI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NFzma7NsHtI.mp4/NFzma7NsHtI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NFzma7NsHtI.m3u8/NFzma7NsHtI.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/identifying-a-function-s-derivative-example/", "duration": 158, "id": "NFzma7NsHtI", "title": "Identifying a function's derivative example", "format": "mp4", "description": "", "slug": "identifying-a-function-s-derivative-example", "kind": "Video", "video_id": "NFzma7NsHtI", "keywords": "", "youtube_id": "NFzma7NsHtI", "readable_id": "identifying-a-function-s-derivative-example"}, "ZAgQH2azx3w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZAgQH2azx3w.mp4/ZAgQH2azx3w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZAgQH2azx3w.mp4/ZAgQH2azx3w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZAgQH2azx3w.m3u8/ZAgQH2azx3w.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/bond-line-structures/three-dimensional-bond-line-structures-new/", "duration": 658, "id": "ZAgQH2azx3w", "title": "Three-dimensional bond-line structures", "format": "mp4", "description": "How to represent three-dimensional molecules using bond-line structures", "slug": "three-dimensional-bond-line-structures-new", "kind": "Video", "video_id": "ZAgQH2azx3w", "keywords": "", "youtube_id": "ZAgQH2azx3w", "readable_id": "three-dimensional-bond-line-structures-new"}, "ENFNyNPYfZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ENFNyNPYfZU.mp4/ENFNyNPYfZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ENFNyNPYfZU.mp4/ENFNyNPYfZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ENFNyNPYfZU.m3u8/ENFNyNPYfZU.m3u8"}, "duration": 400, "id": "ENFNyNPYfZU", "title": "Shifting and reflecting functions", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/shifting-reflecting-functions/shifting-and-reflecting-functions/", "slug": "shifting-and-reflecting-functions", "kind": "Video", "video_id": "ENFNyNPYfZU", "keywords": "", "youtube_id": "ENFNyNPYfZU", "readable_id": "shifting-and-reflecting-functions"}, "D8NVS7itIOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D8NVS7itIOo.mp4/D8NVS7itIOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D8NVS7itIOo.mp4/D8NVS7itIOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D8NVS7itIOo.m3u8/D8NVS7itIOo.m3u8"}, "duration": 47, "id": "D8NVS7itIOo", "title": "Neutralize a compass", "format": "mp4", "description": "How to neutralize a compass using two needles. How could this help us later? Why does this work?", "path": "khan/science/discoveries-projects/discoveries/magnetism/how-to-neutralize-compass/", "slug": "how-to-neutralize-compass", "kind": "Video", "video_id": "D8NVS7itIOo", "keywords": "compass", "youtube_id": "D8NVS7itIOo", "readable_id": "how-to-neutralize-compass"}, "gflKYcGG6hc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gflKYcGG6hc.mp4/gflKYcGG6hc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gflKYcGG6hc.mp4/gflKYcGG6hc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gflKYcGG6hc.m3u8/gflKYcGG6hc.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/reverse-chain-rule/integral-of-tan-x/", "duration": 239, "id": "gflKYcGG6hc", "title": "Integral of tan x", "format": "mp4", "description": "", "slug": "integral-of-tan-x", "kind": "Video", "video_id": "gflKYcGG6hc", "keywords": "", "youtube_id": "gflKYcGG6hc", "readable_id": "integral-of-tan-x"}, "CDf_aE5yg3A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CDf_aE5yg3A.mp4/CDf_aE5yg3A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CDf_aE5yg3A.mp4/CDf_aE5yg3A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CDf_aE5yg3A.m3u8/CDf_aE5yg3A.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/tricky-lhopitals-rule-problem/", "duration": 791, "id": "CDf_aE5yg3A", "title": "Tricky L'Hopital's Rule problem", "format": "mp4", "description": "", "slug": "tricky-lhopitals-rule-problem", "kind": "Video", "video_id": "CDf_aE5yg3A", "keywords": "", "youtube_id": "CDf_aE5yg3A", "readable_id": "tricky-lhopitals-rule-problem"}, "2zDhafJ2wqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2zDhafJ2wqQ.mp4/2zDhafJ2wqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2zDhafJ2wqQ.mp4/2zDhafJ2wqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2zDhafJ2wqQ.m3u8/2zDhafJ2wqQ.m3u8"}, "path": "khan/partner-content/exploratorium/sound-explo/vocal-visualizer/vocal-visualizer-challenge/", "duration": 61, "id": "2zDhafJ2wqQ", "title": "Challenge: Get loud!", "format": "mp4", "description": "For a bigger and better light show, try experimenting with amplitude, frequency, and even the source of the sound (try your favorite song). Add in a friend and you\u2019ve now got a dueling laser-light show!", "slug": "vocal-visualizer-challenge", "kind": "Video", "video_id": "2zDhafJ2wqQ", "keywords": "", "youtube_id": "2zDhafJ2wqQ", "readable_id": "vocal-visualizer-challenge"}, "9pRzyioUKp0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9pRzyioUKp0.mp4/9pRzyioUKp0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9pRzyioUKp0.mp4/9pRzyioUKp0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9pRzyioUKp0.m3u8/9pRzyioUKp0.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/problem-of-evil/", "duration": 605, "id": "9pRzyioUKp0", "title": "Ethics: The problem of evil", "format": "mp4", "description": "Sally discusses a classic argument that God does not exist, called 'The Problem of Evil'. Along the way, she distinguishes different ways in which people believe that God exists, and discusses what's bad about having contradictory beliefs.\n\nSpeaker: Dr. Sally Haslanger,\u00a0Ford Professor of Philosophy and\u00a0Women's & Gender Studies, MIT", "slug": "problem-of-evil", "kind": "Video", "video_id": "9pRzyioUKp0", "keywords": "", "youtube_id": "9pRzyioUKp0", "readable_id": "problem-of-evil"}, "WbDL7xN-Pn0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WbDL7xN-Pn0.mp4/WbDL7xN-Pn0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WbDL7xN-Pn0.mp4/WbDL7xN-Pn0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WbDL7xN-Pn0.m3u8/WbDL7xN-Pn0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-of-a-weak-acid-with-a-strong-base-continued/", "duration": 913, "id": "WbDL7xN-Pn0", "title": "Titration of a weak acid with a strong base (continued)", "format": "mp4", "description": "", "slug": "titration-of-a-weak-acid-with-a-strong-base-continued", "kind": "Video", "video_id": "WbDL7xN-Pn0", "keywords": "", "youtube_id": "WbDL7xN-Pn0", "readable_id": "titration-of-a-weak-acid-with-a-strong-base-continued"}, "S-agS4YaxxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S-agS4YaxxU.mp4/S-agS4YaxxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S-agS4YaxxU.mp4/S-agS4YaxxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S-agS4YaxxU.m3u8/S-agS4YaxxU.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/volume-solids-known-cross-sectio/volume-triangular-cross-section/", "duration": 514, "id": "S-agS4YaxxU", "title": "Volume of solid with known cross section", "format": "mp4", "description": "", "slug": "volume-triangular-cross-section", "kind": "Video", "video_id": "S-agS4YaxxU", "keywords": "", "youtube_id": "S-agS4YaxxU", "readable_id": "volume-triangular-cross-section"}, "n7dI4n-0xGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n7dI4n-0xGw.mp4/n7dI4n-0xGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n7dI4n-0xGw.mp4/n7dI4n-0xGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n7dI4n-0xGw.m3u8/n7dI4n-0xGw.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-exhibition-day/", "duration": 98, "id": "n7dI4n-0xGw", "title": "DLab: Exhibition day", "format": "mp4", "description": "", "slug": "discovery-lab-exhibition-day", "kind": "Video", "video_id": "n7dI4n-0xGw", "keywords": "", "youtube_id": "n7dI4n-0xGw", "readable_id": "discovery-lab-exhibition-day"}, "5u1Nrmdyd-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5u1Nrmdyd-A.mp4/5u1Nrmdyd-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5u1Nrmdyd-A.mp4/5u1Nrmdyd-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5u1Nrmdyd-A.m3u8/5u1Nrmdyd-A.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/roman-republic/temple-of-portunus-rome-c-120-80-b-c-e/", "duration": 191, "id": "5u1Nrmdyd-A", "title": "Temple of Portunus", "format": "mp4", "description": "Temple of Portunus (formerly known as, Fortuna Virilis), travertine, tufa, and stucco, c. 120-80 B.C.E., Rome. Speakers: Beth Harris and Steven Zucker.", "slug": "temple-of-portunus-rome-c-120-80-b-c-e", "kind": "Video", "video_id": "5u1Nrmdyd-A", "keywords": "smarthistory, art, art history, Rome, fortuna virilis, portunas", "youtube_id": "5u1Nrmdyd-A", "readable_id": "temple-of-portunus-rome-c-120-80-b-c-e"}, "vUOiOi-XaoQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vUOiOi-XaoQ.mp4/vUOiOi-XaoQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vUOiOi-XaoQ.mp4/vUOiOi-XaoQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vUOiOi-XaoQ.m3u8/vUOiOi-XaoQ.m3u8"}, "duration": 773, "id": "vUOiOi-XaoQ", "title": "Unemployment", "format": "mp4", "description": "Analyzing unemployment data to show that \"real\" unemployment is worse than the headline numbers show.", "path": "khan/economics-finance-domain/core-finance/current-economics/unemployment-tutorial/unemployment/", "slug": "unemployment", "kind": "Video", "video_id": "vUOiOi-XaoQ", "keywords": "unemployment, economy, capacity, inflation, deflation", "youtube_id": "vUOiOi-XaoQ", "readable_id": "unemployment"}, "Jeh5vudjmLI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jeh5vudjmLI.mp4/Jeh5vudjmLI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jeh5vudjmLI.mp4/Jeh5vudjmLI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jeh5vudjmLI.m3u8/Jeh5vudjmLI.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/copy-of-cc-6th-coordinate-plane/graphing-points-and-naming-quadrants-exercise/", "duration": 116, "id": "Jeh5vudjmLI", "title": "Coordinate plane: graphing points and naming quadrants", "format": "mp4", "description": "This is a great exercise example in which we plot the ordered pair and then identify which quadrant the point lies. You'll get the hang of this quickly!", "slug": "graphing-points-and-naming-quadrants-exercise", "kind": "Video", "video_id": "Jeh5vudjmLI", "keywords": "", "youtube_id": "Jeh5vudjmLI", "readable_id": "graphing-points-and-naming-quadrants-exercise"}, "cNlwi6lUCEM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cNlwi6lUCEM.mp4/cNlwi6lUCEM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cNlwi6lUCEM.mp4/cNlwi6lUCEM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cNlwi6lUCEM.m3u8/cNlwi6lUCEM.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-systems/core-algebra-systems-word-problems/algebraic-word-problem/", "duration": 482, "id": "cNlwi6lUCEM", "title": "Linear systems word problem with substitution", "format": "mp4", "description": "Algebraic Word Problem", "slug": "algebraic-word-problem", "kind": "Video", "video_id": "cNlwi6lUCEM", "keywords": "U02_L1_T3_we1, Algebraic, Word, Problem, CC_6_EE_5, CC_6_EE_6, CC_7_EE_4_a, CC_8_EE_7_b", "youtube_id": "cNlwi6lUCEM", "readable_id": "algebraic-word-problem"}, "apWQoMKVmW4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/apWQoMKVmW4.mp4/apWQoMKVmW4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/apWQoMKVmW4.mp4/apWQoMKVmW4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/apWQoMKVmW4.m3u8/apWQoMKVmW4.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_proof/stokes-theorem-proof-part-2/", "duration": 459, "id": "apWQoMKVmW4", "title": "Stokes' theorem proof part 2", "format": "mp4", "description": "Figuring out a parameterization of our surface and representing dS", "slug": "stokes-theorem-proof-part-2", "kind": "Video", "video_id": "apWQoMKVmW4", "keywords": "", "youtube_id": "apWQoMKVmW4", "readable_id": "stokes-theorem-proof-part-2"}, "XTF0-54yJMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XTF0-54yJMk.mp4/XTF0-54yJMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XTF0-54yJMk.mp4/XTF0-54yJMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XTF0-54yJMk.m3u8/XTF0-54yJMk.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/pressure-in-the-left-heart-part-1/", "duration": 899, "id": "XTF0-54yJMk", "title": "Pressure in the left heart - part 1", "format": "mp4", "description": "Watch the pressure in the left heart go up and down with every heart beat! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "pressure-in-the-left-heart-part-1", "kind": "Video", "video_id": "XTF0-54yJMk", "keywords": "", "youtube_id": "XTF0-54yJMk", "readable_id": "pressure-in-the-left-heart-part-1"}, "sNgsCT0E7Es": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sNgsCT0E7Es.mp4/sNgsCT0E7Es.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sNgsCT0E7Es.mp4/sNgsCT0E7Es.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sNgsCT0E7Es.m3u8/sNgsCT0E7Es.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-origin/evolutionary-causes/biodiversity-and-natural-selection-two/", "duration": 543, "id": "sNgsCT0E7Es", "title": "Biodiversity and natural selection", "format": "mp4", "description": "", "slug": "biodiversity-and-natural-selection-two", "kind": "Video", "video_id": "sNgsCT0E7Es", "keywords": "", "youtube_id": "sNgsCT0E7Es", "readable_id": "biodiversity-and-natural-selection-two"}, "vSijVSL3ChU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vSijVSL3ChU.mp4/vSijVSL3ChU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vSijVSL3ChU.mp4/vSijVSL3ChU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vSijVSL3ChU.m3u8/vSijVSL3ChU.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/rewriting-an-exponential-expression-in-a-hairier-way/", "duration": 512, "id": "vSijVSL3ChU", "title": "Rewriting an exponential expression in a hairier way", "format": "mp4", "description": "", "slug": "rewriting-an-exponential-expression-in-a-hairier-way", "kind": "Video", "video_id": "vSijVSL3ChU", "keywords": "", "youtube_id": "vSijVSL3ChU", "readable_id": "rewriting-an-exponential-expression-in-a-hairier-way"}, "3pu84BQVxK4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3pu84BQVxK4.mp4/3pu84BQVxK4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3pu84BQVxK4.mp4/3pu84BQVxK4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3pu84BQVxK4.m3u8/3pu84BQVxK4.m3u8"}, "duration": 477, "id": "3pu84BQVxK4", "title": "The cosmic microwave background: A new view from the South Pole", "format": "mp4", "description": "The icy South Pole desert is a harsh and desolate landscape in which few life-forms can flourish. But the extreme cold and isolation are perfect for astronomical observations. Taking advantage of the severe conditions, scientists are using the new South Pole Telescope\u2014the largest ever deployed in Antarctica\u2014to observe the oldest light in the Universe, the cosmic microwave background (CMB).\u00a0", "path": "cmb-new-view-south-pole/", "slug": "cmb-new-view-south-pole", "kind": "Video", "video_id": "3pu84BQVxK4", "keywords": "", "youtube_id": "3pu84BQVxK4", "readable_id": "cmb-new-view-south-pole"}, "XDOH9Ul2OOM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XDOH9Ul2OOM.mp4/XDOH9Ul2OOM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XDOH9Ul2OOM.mp4/XDOH9Ul2OOM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XDOH9Ul2OOM.m3u8/XDOH9Ul2OOM.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/complementary-supplementary-angl/example-using-algebra-to-find-measure-of-complementary-angles/", "duration": 153, "id": "XDOH9Ul2OOM", "title": "Find measure of complementary angles", "format": "mp4", "description": "In this example, let's put some Algebra to work to find the measure of two angles whose sum equals 90 degrees, better knows as complementary angles.", "slug": "example-using-algebra-to-find-measure-of-complementary-angles", "kind": "Video", "video_id": "XDOH9Ul2OOM", "keywords": "", "youtube_id": "XDOH9Ul2OOM", "readable_id": "example-using-algebra-to-find-measure-of-complementary-angles"}, "hSkIG4MdKqU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hSkIG4MdKqU.mp4/hSkIG4MdKqU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hSkIG4MdKqU.mp4/hSkIG4MdKqU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hSkIG4MdKqU.m3u8/hSkIG4MdKqU.m3u8"}, "duration": 557, "id": "hSkIG4MdKqU", "title": "Three types of capillaries", "format": "mp4", "description": "Learn the differences between continuous, fenestrated, and discontinuous capillaries, and how they affect the movement of molecules. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/bloodvessels/three-types-of-capillaries/", "slug": "three-types-of-capillaries", "kind": "Video", "video_id": "hSkIG4MdKqU", "keywords": "", "youtube_id": "hSkIG4MdKqU", "readable_id": "three-types-of-capillaries"}, "gBxeju8dMho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gBxeju8dMho.mp4/gBxeju8dMho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gBxeju8dMho.mp4/gBxeju8dMho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gBxeju8dMho.m3u8/gBxeju8dMho.m3u8"}, "path": "khan/math/recreational-math/vi-hart/spirals-fibonacci/open-letter-to-nickelodeon-re-spongebob-s-pineapple-under-the-sea/", "duration": 118, "id": "gBxeju8dMho", "title": "Open letter to Nickelodeon, re: SpongeBob's pineapple under the sea", "format": "mp4", "description": "SpongeBob background designer's response: \"OK, I guess the jig is up... I'm tired of living a lie.\" See his full message and pineapple redesign: http://kennypittenger.blogspot.com/2012/01/called-out.html\n\nP.S. http://youtu.be/sFTwc8kHSu4\nFor more on Fibonacci and Plants: http://youtu.be/ahXIMUkSXX0\nFor more snail: http://youtu.be/xbsAUq_nvxE", "slug": "open-letter-to-nickelodeon-re-spongebob-s-pineapple-under-the-sea", "kind": "Video", "video_id": "gBxeju8dMho", "keywords": "spongebob, pineapple, nickelodeon, snail, squarepants, math, mathematics, fibonacci", "youtube_id": "gBxeju8dMho", "readable_id": "open-letter-to-nickelodeon-re-spongebob-s-pineapple-under-the-sea"}, "lsn16U5DWD4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lsn16U5DWD4.mp4/lsn16U5DWD4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lsn16U5DWD4.mp4/lsn16U5DWD4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lsn16U5DWD4.m3u8/lsn16U5DWD4.m3u8"}, "duration": 471, "id": "lsn16U5DWD4", "title": "Taxes and perfectly inelastic demand", "format": "mp4", "description": "Who bears the burden for the taxes when demand is inelastic", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/deadweight-loss-tutorial/taxes-and-perfectly-inelastic-demand/", "slug": "taxes-and-perfectly-inelastic-demand", "kind": "Video", "video_id": "lsn16U5DWD4", "keywords": "microeconomics, elasticity, surplus", "youtube_id": "lsn16U5DWD4", "readable_id": "taxes-and-perfectly-inelastic-demand"}, "roHvNNFXr4k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/roHvNNFXr4k.mp4/roHvNNFXr4k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/roHvNNFXr4k.mp4/roHvNNFXr4k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/roHvNNFXr4k.m3u8/roHvNNFXr4k.m3u8"}, "duration": 286, "id": "roHvNNFXr4k", "title": "Basic linear equation word problem", "format": "mp4", "description": "Learn how to construct and solve a basic linear equation to solve a word problem.", "path": "basic-linear-equation-word-problem/", "slug": "basic-linear-equation-word-problem", "kind": "Video", "video_id": "roHvNNFXr4k", "keywords": "", "youtube_id": "roHvNNFXr4k", "readable_id": "basic-linear-equation-word-problem"}, "1PKOiYY9SPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1PKOiYY9SPA.mp4/1PKOiYY9SPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1PKOiYY9SPA.mp4/1PKOiYY9SPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1PKOiYY9SPA.m3u8/1PKOiYY9SPA.m3u8"}, "duration": 232, "id": "1PKOiYY9SPA", "title": "Mask of Agamemnon, Mycenae, c. 1550-1500 B.C.E.", "format": "mp4", "description": "Mask of Agamemnon, from shaft grave V, grave circle A, c.1550-1500 B.C.E., gold, 12 inches / 35 cm (National Archaeological Museum, Athens)\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "path": "khan/humanities/ancient-art-civilizations/aegean-art1/mycenaean/agamemnon-mask/", "slug": "agamemnon-mask", "kind": "Video", "video_id": "1PKOiYY9SPA", "keywords": "", "youtube_id": "1PKOiYY9SPA", "readable_id": "agamemnon-mask"}, "1v3btE3hES4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1v3btE3hES4.mp4/1v3btE3hES4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1v3btE3hES4.mp4/1v3btE3hES4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1v3btE3hES4.m3u8/1v3btE3hES4.m3u8"}, "duration": 364, "id": "1v3btE3hES4", "title": "Overview: James Madison", "format": "mp4", "description": "Madison was \u201cthe most important person responsible for creating what America is today\u201d and played many roles in the founding of America.\n\nLynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0\n\n", "path": "isaacson-with-cheney-khan-academy-lesson-i/", "slug": "isaacson-with-cheney-khan-academy-lesson-i", "kind": "Video", "video_id": "1v3btE3hES4", "keywords": "", "youtube_id": "1v3btE3hES4", "readable_id": "isaacson-with-cheney-khan-academy-lesson-i"}, "5TtB1_Zfatc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5TtB1_Zfatc.mp4/5TtB1_Zfatc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5TtB1_Zfatc.mp4/5TtB1_Zfatc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5TtB1_Zfatc.m3u8/5TtB1_Zfatc.m3u8"}, "duration": 708, "id": "5TtB1_Zfatc", "title": "Regulation of glycolysis and gluconeogenesis", "format": "mp4", "description": "What are the major forms of regulation in metabolism? How do these apply to glycolysis and gluconeogenesis?", "path": "khan/test-prep/mcat/biomolecules/carbohydrate-metabolism/regulation-of-glycolysis-and-gluconeogenesis/", "slug": "regulation-of-glycolysis-and-gluconeogenesis", "kind": "Video", "video_id": "5TtB1_Zfatc", "keywords": "", "youtube_id": "5TtB1_Zfatc", "readable_id": "regulation-of-glycolysis-and-gluconeogenesis"}, "bihBbqzL96Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bihBbqzL96Y.mp4/bihBbqzL96Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bihBbqzL96Y.mp4/bihBbqzL96Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bihBbqzL96Y.m3u8/bihBbqzL96Y.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/manet-olympia-1863-exhibited-1865/", "duration": 434, "id": "bihBbqzL96Y", "title": "Manet, Olympia", "format": "mp4", "description": "\u00c9douard Manet, Olympia, oil on canvas, 1863 (Mus\u00e9e d'Orsay, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\n\u00a0\n\n\u00c9douard Manet brought to Realism his curiosity about social mores. However, he was not interested in mirroring polite parlor conversations and middle class promenades in the Bois de \u00a0Boulogne (Paris\u2019 Central Park). Rather, Manet invented subjects that set the Parisians\u2019 teeth on edge.\u00a0\n\nIn 1865, Manet submitted his risqu\u00e9 painting of a courtesan greeting her client (in this case, you), Olympia, of 1863, to the French Salon. The jury for the 1865 Salon accepted this painting despite their disapproval of the subject matter, because two years earlier, Manet\u2019s Luncheon on the Grass created such a stir when it was rejected from the Salon. (It was instead exhibited in Emperor Napoleon III\u2019s conciliatory exhibition\u2014the Salon des R\u00e9fus\u00e9s, or the Exhibition of the Refused. Crowds came to the Salon des R\u00e9fus\u00e9s specifically to laugh and jeer at what they considered Manet\u2019s folly.)\n\nSomehow they were afraid another rejection would seem like a personal attack on Manet himself. The reasoning was odd, but the result was the same\u2014Olympia became infamous and the painting had to be hung very high to protect it from physical attacks.\u00a0\n\nManet was a Realist, but sometimes his \u201creal\u201d situations shocked and rocked the Parisian art world to its foundations. His later work was much tamer.\n\n(Text by Dr. Beth Gersh-Nesic)\n", "slug": "manet-olympia-1863-exhibited-1865", "kind": "Video", "video_id": "bihBbqzL96Y", "keywords": "Manet,", "youtube_id": "bihBbqzL96Y", "readable_id": "manet-olympia-1863-exhibited-1865"}, "u9B-dV6r6rU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u9B-dV6r6rU.mp4/u9B-dV6r6rU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u9B-dV6r6rU.mp4/u9B-dV6r6rU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u9B-dV6r6rU.m3u8/u9B-dV6r6rU.m3u8"}, "duration": 65, "id": "u9B-dV6r6rU", "title": "Translations of polygons", "format": "mp4", "description": "", "path": "khan/math/basic-geo/transformations-congruence-similarity-geo/transformations-basics/translations-of-polygons/", "slug": "translations-of-polygons", "kind": "Video", "video_id": "u9B-dV6r6rU", "keywords": "", "youtube_id": "u9B-dV6r6rU", "readable_id": "translations-of-polygons"}, "JELm6peL_sI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JELm6peL_sI.mp4/JELm6peL_sI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JELm6peL_sI.mp4/JELm6peL_sI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JELm6peL_sI.m3u8/JELm6peL_sI.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/fallacy-of-composition/", "duration": 239, "id": "JELm6peL_sI", "title": "Fallacies: Fallacy of composition", "format": "mp4", "description": "In this video, Paul Henne describes the fallacy of composition, an informal fallacy that arises when we assume that some whole has the same properties as its parts. He also discusses why there aren't colorless cats.\n\nSpeaker: Paul Henne", "slug": "fallacy-of-composition", "kind": "Video", "video_id": "JELm6peL_sI", "keywords": "", "youtube_id": "JELm6peL_sI", "readable_id": "fallacy-of-composition"}, "o7-i6KLoEkc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o7-i6KLoEkc.mp4/o7-i6KLoEkc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o7-i6KLoEkc.mp4/o7-i6KLoEkc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o7-i6KLoEkc.m3u8/o7-i6KLoEkc.m3u8"}, "path": "khan/humanities/art-asia/beginners-guide-asian-culture/hindu-art-culture/hindu-temples/", "duration": 302, "id": "o7-i6KLoEkc", "title": "Hindu temples", "format": "mp4", "description": "Explore the Hindu temples of India in this short documentary. Learn more about Hindu temples. >", "slug": "hindu-temples", "kind": "Video", "video_id": "o7-i6KLoEkc", "keywords": "", "youtube_id": "o7-i6KLoEkc", "readable_id": "hindu-temples"}, "XozFlJxxxh0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XozFlJxxxh0.mp4/XozFlJxxxh0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XozFlJxxxh0.mp4/XozFlJxxxh0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XozFlJxxxh0.m3u8/XozFlJxxxh0.m3u8"}, "duration": 271, "id": "XozFlJxxxh0", "title": "The Constitution and \"We, the People of the United States\"", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the beginning of the Constitution and the term \"We, the People of the United States\" and what that means.", "path": "we-the-people/", "slug": "we-the-people", "kind": "Video", "video_id": "XozFlJxxxh0", "keywords": "", "youtube_id": "XozFlJxxxh0", "readable_id": "we-the-people"}, "AmN0YyaTD60": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AmN0YyaTD60.mp4/AmN0YyaTD60.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AmN0YyaTD60.mp4/AmN0YyaTD60.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AmN0YyaTD60.m3u8/AmN0YyaTD60.m3u8"}, "duration": 249, "id": "AmN0YyaTD60", "title": "Hexaflexagon safety guide", "format": "mp4", "description": "Don't let a flexigatastrophe happen to you! Happy Hexaflexagon Month, in honor of Martin Gardner. Yes, we've been encouraging recreational use of hexaflexagons and even hexaflexagon parties to happen on Oct. 21, but be sure to flex responsibly.This is my third hexaflexagon video this month. The first two are also awesome.Hexaflexagons: http://youtu.be/VIVIegSt81k Hexaflexagons 2: http://youtu.be/paQ10POrZh8To learn more about flexagons, Martin Gardner, or hosting a hexaflexagon party, go here: http://www.puzzles.com/hexaflexagonI stole the \"hexaflexadyslexia\" joke from @matthetube: https://twitter.com/matthetube/status/255446894128529408I'm @vihartvihart. Happy Flexing!", "path": "khan/math/recreational-math/vi-hart/hexaflexagons/hexaflexagon-safety-guide/", "slug": "hexaflexagon-safety-guide", "kind": "Video", "video_id": "AmN0YyaTD60", "keywords": "", "youtube_id": "AmN0YyaTD60", "readable_id": "hexaflexagon-safety-guide"}, "NuccqpiUHrk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NuccqpiUHrk.mp4/NuccqpiUHrk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NuccqpiUHrk.mp4/NuccqpiUHrk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NuccqpiUHrk.m3u8/NuccqpiUHrk.m3u8"}, "duration": 136, "id": "NuccqpiUHrk", "title": "Rational exponents and exponent laws", "format": "mp4", "description": "Rational Exponents and Exponent Laws", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/rational-exponents-and-exponent-laws/", "slug": "rational-exponents-and-exponent-laws", "kind": "Video", "video_id": "NuccqpiUHrk", "keywords": "u16_l1_t3_we3, Rational, Exponents, and, Exponent, Laws", "youtube_id": "NuccqpiUHrk", "readable_id": "rational-exponents-and-exponent-laws"}, "-rsYk4eCKnA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-rsYk4eCKnA.mp4/-rsYk4eCKnA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-rsYk4eCKnA.mp4/-rsYk4eCKnA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-rsYk4eCKnA.m3u8/-rsYk4eCKnA.m3u8"}, "duration": 818, "id": "-rsYk4eCKnA", "title": "Photosynthesis", "format": "mp4", "description": "Overview of photosynthesis", "path": "khan/science/biology/cellular-molecular-biology/photosynthesis/photosynthesis/", "slug": "photosynthesis", "kind": "Video", "video_id": "-rsYk4eCKnA", "keywords": "photosynthesis, biology", "youtube_id": "-rsYk4eCKnA", "readable_id": "photosynthesis"}, "twhqVIokAQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/twhqVIokAQc.mp4/twhqVIokAQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/twhqVIokAQc.mp4/twhqVIokAQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/twhqVIokAQc.m3u8/twhqVIokAQc.m3u8"}, "duration": 329, "id": "twhqVIokAQc", "title": "Membrane dynamics", "format": "mp4", "description": "\nLearn about how the phospholipids move around in our cell membrane in the fluid mosaic model. By William Tsai.\n\n", "path": "khan/test-prep/mcat/cells/cell-membrane-overview/membrane-dynamics/", "slug": "membrane-dynamics", "kind": "Video", "video_id": "twhqVIokAQc", "keywords": "", "youtube_id": "twhqVIokAQc", "readable_id": "membrane-dynamics"}, "7GEUgRcnfVE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7GEUgRcnfVE.mp4/7GEUgRcnfVE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7GEUgRcnfVE.mp4/7GEUgRcnfVE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7GEUgRcnfVE.m3u8/7GEUgRcnfVE.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/proof-invertibility-implies-a-unique-solution-to-f-x-y/", "duration": 1361, "id": "7GEUgRcnfVE", "title": "Proof: Invertibility implies a unique solution to f(x)=y", "format": "mp4", "description": "Proof: Invertibility implies a unique solution to f(x)=y for all y in co-domain of f.", "slug": "proof-invertibility-implies-a-unique-solution-to-f-x-y", "kind": "Video", "video_id": "7GEUgRcnfVE", "keywords": "invertible, inverse, domain, linear, algebra", "youtube_id": "7GEUgRcnfVE", "readable_id": "proof-invertibility-implies-a-unique-solution-to-f-x-y"}, "dNHtdiVjQbM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dNHtdiVjQbM.mp4/dNHtdiVjQbM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dNHtdiVjQbM.mp4/dNHtdiVjQbM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dNHtdiVjQbM.m3u8/dNHtdiVjQbM.m3u8"}, "duration": 464, "id": "dNHtdiVjQbM", "title": "Conformational stability: Protein folding and denaturation", "format": "mp4", "description": "Different bonds/interactions contribute to the stability of each level of protein structure. Let's explore some common ones such as peptide bonds, hydrogen bonds, and disulfide bonds. By Tracy Kovach. ", "path": "khan/test-prep/mcat/biomolecules/amino-acids-and-proteins1/conformational-stability-protein-folding-and-denaturation/", "slug": "conformational-stability-protein-folding-and-denaturation", "kind": "Video", "video_id": "dNHtdiVjQbM", "keywords": "", "youtube_id": "dNHtdiVjQbM", "readable_id": "conformational-stability-protein-folding-and-denaturation"}, "3nbalsyibKU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3nbalsyibKU.mp4/3nbalsyibKU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3nbalsyibKU.mp4/3nbalsyibKU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3nbalsyibKU.m3u8/3nbalsyibKU.m3u8"}, "duration": 735, "id": "3nbalsyibKU", "title": "Short run aggregate supply", "format": "mp4", "description": "Justifications for the aggregate supply curve to be upward sloping in the short-run", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/aggregate-supply-demand-tut/short-run-aggregate-supply/", "slug": "short-run-aggregate-supply", "kind": "Video", "video_id": "3nbalsyibKU", "keywords": "AD-AS, model, macroeconomics", "youtube_id": "3nbalsyibKU", "readable_id": "short-run-aggregate-supply"}, "B5e7RMaz4IQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B5e7RMaz4IQ.mp4/B5e7RMaz4IQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B5e7RMaz4IQ.mp4/B5e7RMaz4IQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B5e7RMaz4IQ.m3u8/B5e7RMaz4IQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-chronic-bronchitis/rn-what-is-chronic-bronchitis/", "duration": 497, "id": "B5e7RMaz4IQ", "title": "What is chronic bronchitis?", "format": "mp4", "description": "", "slug": "rn-what-is-chronic-bronchitis", "kind": "Video", "video_id": "B5e7RMaz4IQ", "keywords": "", "youtube_id": "B5e7RMaz4IQ", "readable_id": "rn-what-is-chronic-bronchitis"}, "aSokFEpoJFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aSokFEpoJFM.mp4/aSokFEpoJFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aSokFEpoJFM.mp4/aSokFEpoJFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aSokFEpoJFM.m3u8/aSokFEpoJFM.m3u8"}, "path": "khan/math/geometry/basic-geometry/cross-sections/ways-to-cut-a-cube/", "duration": 443, "id": "aSokFEpoJFM", "title": "Ways to cut a cube", "format": "mp4", "description": "", "slug": "ways-to-cut-a-cube", "kind": "Video", "video_id": "aSokFEpoJFM", "keywords": "", "youtube_id": "aSokFEpoJFM", "readable_id": "ways-to-cut-a-cube"}, "FICRd7Lp67s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FICRd7Lp67s.mp4/FICRd7Lp67s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FICRd7Lp67s.mp4/FICRd7Lp67s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FICRd7Lp67s.m3u8/FICRd7Lp67s.m3u8"}, "path": "khan/math/probability/independent-dependent-probability/basic_probability/probability-space-exercise-example/", "duration": 259, "id": "FICRd7Lp67s", "title": "Determining probability", "format": "mp4", "description": "In this example, determine the scenarios that are probable given the rolling of two dice.", "slug": "probability-space-exercise-example", "kind": "Video", "video_id": "FICRd7Lp67s", "keywords": "", "youtube_id": "FICRd7Lp67s", "readable_id": "probability-space-exercise-example"}, "6dyWKD_JPhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6dyWKD_JPhI.mp4/6dyWKD_JPhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6dyWKD_JPhI.mp4/6dyWKD_JPhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6dyWKD_JPhI.m3u8/6dyWKD_JPhI.m3u8"}, "duration": 159, "id": "6dyWKD_JPhI", "title": "Thinking about dilations", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/dilations-scaling/thinking-about-dilations/", "slug": "thinking-about-dilations", "kind": "Video", "video_id": "6dyWKD_JPhI", "keywords": "", "youtube_id": "6dyWKD_JPhI", "readable_id": "thinking-about-dilations"}, "-kn_8vUT0eI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-kn_8vUT0eI.mp4/-kn_8vUT0eI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-kn_8vUT0eI.mp4/-kn_8vUT0eI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-kn_8vUT0eI.m3u8/-kn_8vUT0eI.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/percussion/timpani-interview-and-demonstration-with-principal-jauvon-gilliam/", "duration": 515, "id": "-kn_8vUT0eI", "title": "Timpani: Interview and demonstration with principal Jauvon Gilliam", "format": "mp4", "description": "", "slug": "timpani-interview-and-demonstration-with-principal-jauvon-gilliam", "kind": "Video", "video_id": "-kn_8vUT0eI", "keywords": "", "youtube_id": "-kn_8vUT0eI", "readable_id": "timpani-interview-and-demonstration-with-principal-jauvon-gilliam"}, "pzQY-9Nmtws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pzQY-9Nmtws.mp4/pzQY-9Nmtws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pzQY-9Nmtws.mp4/pzQY-9Nmtws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pzQY-9Nmtws.m3u8/pzQY-9Nmtws.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/why-a-negative-times-a-negative-makes-intuitive-sense/", "duration": 374, "id": "pzQY-9Nmtws", "title": "Why a negative times a negative makes intuitive sense", "format": "mp4", "description": "Use the repeated addition model of multiplication to give an understanding of multiplying negative numbers.", "slug": "why-a-negative-times-a-negative-makes-intuitive-sense", "kind": "Video", "video_id": "pzQY-9Nmtws", "keywords": "", "youtube_id": "pzQY-9Nmtws", "readable_id": "why-a-negative-times-a-negative-makes-intuitive-sense"}, "t4oSyhr37xc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t4oSyhr37xc.mp4/t4oSyhr37xc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t4oSyhr37xc.mp4/t4oSyhr37xc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t4oSyhr37xc.m3u8/t4oSyhr37xc.m3u8"}, "duration": 195, "id": "t4oSyhr37xc", "title": "Storm Thorgerson on Ren\u00e9 Magritte", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nStorm Thorgerson made a series of innovative album covers during a career that lasted over thirty years. In this video, he explores the surrealist influence of Ren\u00e9 Magritte in his work, and particularly how it inspired his iconic designs for bands like Pink Floyd and Led Zeppelin.", "path": "storm-thorgerson/", "slug": "storm-thorgerson", "kind": "Video", "video_id": "t4oSyhr37xc", "keywords": "Tate", "youtube_id": "t4oSyhr37xc", "readable_id": "storm-thorgerson"}, "w7NhLkQynS8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w7NhLkQynS8.mp4/w7NhLkQynS8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w7NhLkQynS8.mp4/w7NhLkQynS8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w7NhLkQynS8.m3u8/w7NhLkQynS8.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/algebraic-fractions/algebraic-expression-adding-fractions/", "duration": 164, "id": "w7NhLkQynS8", "title": "Algebraic expression adding fractions", "format": "mp4", "description": "", "slug": "algebraic-expression-adding-fractions", "kind": "Video", "video_id": "w7NhLkQynS8", "keywords": "", "youtube_id": "w7NhLkQynS8", "readable_id": "algebraic-expression-adding-fractions"}, "1X1Tf46ftFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1X1Tf46ftFc.mp4/1X1Tf46ftFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1X1Tf46ftFc.mp4/1X1Tf46ftFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1X1Tf46ftFc.m3u8/1X1Tf46ftFc.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/fischer-projections/", "duration": 832, "id": "1X1Tf46ftFc", "title": "Fischer projections", "format": "mp4", "description": "", "slug": "fischer-projections", "kind": "Video", "video_id": "1X1Tf46ftFc", "keywords": "", "youtube_id": "1X1Tf46ftFc", "readable_id": "fischer-projections"}, "XZDGrbyz0v0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XZDGrbyz0v0.mp4/XZDGrbyz0v0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XZDGrbyz0v0.mp4/XZDGrbyz0v0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XZDGrbyz0v0.m3u8/XZDGrbyz0v0.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/approximating-functions-with-polynomials-part-3/", "duration": 433, "id": "XZDGrbyz0v0", "title": "Approximating functions with polynomials (part 3)", "format": "mp4", "description": "A glimpse of the mystery of the Universe as we approximate e^x with an infinite series.", "slug": "approximating-functions-with-polynomials-part-3", "kind": "Video", "video_id": "XZDGrbyz0v0", "keywords": "power, maclauren, taylor, series, derivative, infinite, sum", "youtube_id": "XZDGrbyz0v0", "readable_id": "approximating-functions-with-polynomials-part-3"}, "rfyq32mHcYs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rfyq32mHcYs.mp4/rfyq32mHcYs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rfyq32mHcYs.mp4/rfyq32mHcYs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rfyq32mHcYs.m3u8/rfyq32mHcYs.m3u8"}, "duration": 734, "id": "rfyq32mHcYs", "title": "Using the convolution theorem to solve an initial value prob", "format": "mp4", "description": "Using the Convolution Theorem to solve an initial value problem", "path": "khan/math/differential-equations/laplace-transform/convolution-integral/using-the-convolution-theorem-to-solve-an-initial-value-prob/", "slug": "using-the-convolution-theorem-to-solve-an-initial-value-prob", "kind": "Video", "video_id": "rfyq32mHcYs", "keywords": "laplace,convolution", "youtube_id": "rfyq32mHcYs", "readable_id": "using-the-convolution-theorem-to-solve-an-initial-value-prob"}, "etiD38iuYZk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/etiD38iuYZk.mp4/etiD38iuYZk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/etiD38iuYZk.mp4/etiD38iuYZk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/etiD38iuYZk.m3u8/etiD38iuYZk.m3u8"}, "path": "khan/humanities/art-asia/art-japan/heian-period/stubborn/", "duration": 160, "id": "etiD38iuYZk", "title": "\"Stubborn\" with Sin\u00e9ad Vilbar", "format": "mp4", "description": "Met curator Sin\u00e9ad Vilbar on inner conflict in Fud\u014d My\u014d\u014d (Achala-vidyaraja) dating from Japan\u2019s Heian period.\n\nFud\u014d My\u014d\u014d is the most widely represented of the Buddhist deities known as My\u014d\u014d, or Kings of Brightness. A fierce protector of the Buddhist Law, he is a direct emanation of the Buddha Dainichi Nyorai, the principal Buddha of Esoteric Buddhism. The first sculptures of Fud\u014d made in Japan were seated, but standing sculptures like this one were carved beginning in the eleventh century. Fud\u014d uses his sword to cut through ignorance and his lasso to reign in those who would block the path to enlightenment. The heavy weight of the shoulders and back is planted firmly on the stiffened legs, appropriate for a deity whose name means the \u201cImmovable.\u201d\n\nImages of Fud\u014d are often housed in temple halls called Gomad\u014d where a fire-burning ritual called the goma-e is performed. The ritual involves the burning of incense and other possessions to symbolically destroy defilements. This statue, originally composed of six hollowed-out pieces of wood, was formerly the central icon of the Kuhonji Gomad\u014d in Funasaka, twenty miles northwest of Kyoto. The hall has not survived. Fud\u014d would once have had a mandorla carved in the shape of wild flames and inserted behind him into the rock upon which he stands.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a\u00a0related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "slug": "stubborn", "kind": "Video", "video_id": "etiD38iuYZk", "keywords": "authority, confidence, dignity, sculpture, wood, Asia", "youtube_id": "etiD38iuYZk", "readable_id": "stubborn"}, "rse0I7rZ8jM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rse0I7rZ8jM.mp4/rse0I7rZ8jM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rse0I7rZ8jM.mp4/rse0I7rZ8jM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rse0I7rZ8jM.m3u8/rse0I7rZ8jM.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/thin-lenses/object-image-and-focal-distance-relationship-proof-of-formula/", "duration": 749, "id": "rse0I7rZ8jM", "title": "Object image and focal distance relationship (proof of formula)", "format": "mp4", "description": "Object Image and Focal Distance Relationship (Proof of Formula)", "slug": "object-image-and-focal-distance-relationship-proof-of-formula", "kind": "Video", "video_id": "rse0I7rZ8jM", "keywords": "Object, Image, and, Focal, Distance, Relationship, (Proof, of, Formula), optics", "youtube_id": "rse0I7rZ8jM", "readable_id": "object-image-and-focal-distance-relationship-proof-of-formula"}, "HNP0USRtkIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HNP0USRtkIw.mp4/HNP0USRtkIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HNP0USRtkIw.mp4/HNP0USRtkIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HNP0USRtkIw.m3u8/HNP0USRtkIw.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/copy-of-khan-academy-living-room-chats/angela-ahrendts/", "duration": 2066, "id": "HNP0USRtkIw", "title": "Angela Ahrendts - Former CEO of Burberry", "format": "mp4", "description": "Angela Ahrendts visits\u00a0the Khan Academy office in Mountain View, CA on\u00a0April 30, 2013.", "slug": "angela-ahrendts", "kind": "Video", "video_id": "HNP0USRtkIw", "keywords": "", "youtube_id": "HNP0USRtkIw", "readable_id": "angela-ahrendts"}, "X_FEP9vDp7Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X_FEP9vDp7Q.mp4/X_FEP9vDp7Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X_FEP9vDp7Q.mp4/X_FEP9vDp7Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X_FEP9vDp7Q.m3u8/X_FEP9vDp7Q.m3u8"}, "duration": 153, "id": "X_FEP9vDp7Q", "title": "\"The Geeky Side\" with Melanie Holcomb", "format": "mp4", "description": "Met curator Melanie Holcomb on the potency of images in Curtain of the Tabernacle, one of six illustrated leaves from the Postilla Litteralis (Literal Commentary) of Nicholas of Lyra.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\u00a0\n", "path": "geeky-side/", "slug": "geeky-side", "kind": "Video", "video_id": "X_FEP9vDp7Q", "keywords": "book, drawing, touch, vellum, writing, Europe", "youtube_id": "X_FEP9vDp7Q", "readable_id": "geeky-side"}, "dOlkogaWF3M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dOlkogaWF3M.mp4/dOlkogaWF3M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dOlkogaWF3M.mp4/dOlkogaWF3M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dOlkogaWF3M.m3u8/dOlkogaWF3M.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/psychoactive-drugs-depressants-and-opiates/", "duration": 267, "id": "dOlkogaWF3M", "title": "Psychoactive drugs: Depressants and opiates", "format": "mp4", "description": "", "slug": "psychoactive-drugs-depressants-and-opiates", "kind": "Video", "video_id": "dOlkogaWF3M", "keywords": "", "youtube_id": "dOlkogaWF3M", "readable_id": "psychoactive-drugs-depressants-and-opiates"}, "ANyVpMS3HL4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ANyVpMS3HL4.mp4/ANyVpMS3HL4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ANyVpMS3HL4.mp4/ANyVpMS3HL4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ANyVpMS3HL4.m3u8/ANyVpMS3HL4.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/calculus-derivatives-1-new-hd-version/", "duration": 943, "id": "ANyVpMS3HL4", "title": "Derivative as slope of a tangent line", "format": "mp4", "description": "Understanding that the derivative is just the slope of a curve at a point (or the slope of the tangent line)", "slug": "calculus-derivatives-1-new-hd-version", "kind": "Video", "video_id": "ANyVpMS3HL4", "keywords": "calculus, derivative, CC_8_EE_5, CC_8_F_5, CC_39336_A-CED_2, CC_39336_A-REI_10", "youtube_id": "ANyVpMS3HL4", "readable_id": "calculus-derivatives-1-new-hd-version"}, "TYFAJHx5LFA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TYFAJHx5LFA.mp4/TYFAJHx5LFA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TYFAJHx5LFA.mp4/TYFAJHx5LFA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TYFAJHx5LFA.m3u8/TYFAJHx5LFA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/equilibrium-mcat/galvanic-cells-and-changes-in-free-energy/", "duration": 758, "id": "TYFAJHx5LFA", "title": "Galvanic cells and changes in free energy", "format": "mp4", "description": "", "slug": "galvanic-cells-and-changes-in-free-energy", "kind": "Video", "video_id": "TYFAJHx5LFA", "keywords": "", "youtube_id": "TYFAJHx5LFA", "readable_id": "galvanic-cells-and-changes-in-free-energy"}, "5yQlaMy4T2w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5yQlaMy4T2w.mp4/5yQlaMy4T2w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5yQlaMy4T2w.mp4/5yQlaMy4T2w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5yQlaMy4T2w.m3u8/5yQlaMy4T2w.m3u8"}, "duration": 752, "id": "5yQlaMy4T2w", "title": "Entropy: Embrace the chaos", "format": "mp4", "description": "Life is chaos and the universe tends toward disorder. But why? If you think about it, there are only a few ways for things to be arranged in an organized manner, but there are nearly infinite other ways for those same things to be arranged. Simple rules of probability dictate that it's much more likely for stuff to be in one of the many disorganized states than in one of the few organized states. This tendency is so unavoidable that it's known as the 2nd Law of Thermodynamics. Obviously, disorder is a pretty big deal in the universe and that makes it a pretty big deal in chemistry - it's such a big deal that scientists have a special name for it: entropy. In chemistry, entropy is the measure of molecular randomness, or disorder. For the next thirteen minutes, Hank hopes you will embrace the chaos as he teaches you about entropy.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem20-entropy/", "slug": "chem20-entropy", "kind": "Video", "video_id": "5yQlaMy4T2w", "keywords": "", "youtube_id": "5yQlaMy4T2w", "readable_id": "chem20-entropy"}, "E4HAYd0QnRc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E4HAYd0QnRc.mp4/E4HAYd0QnRc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E4HAYd0QnRc.mp4/E4HAYd0QnRc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E4HAYd0QnRc.m3u8/E4HAYd0QnRc.m3u8"}, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/range-variance-and-standard-deviation-as-measures-of-dispersion/", "duration": 754, "id": "E4HAYd0QnRc", "title": "Range, variance and standard deviation as measures of dispersion", "format": "mp4", "description": "", "slug": "range-variance-and-standard-deviation-as-measures-of-dispersion", "kind": "Video", "video_id": "E4HAYd0QnRc", "keywords": "Range, Variance, and, Standard, Deviation, CC_6_SP_5_c", "youtube_id": "E4HAYd0QnRc", "readable_id": "range-variance-and-standard-deviation-as-measures-of-dispersion"}, "sMyZO9YDlk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sMyZO9YDlk8.mp4/sMyZO9YDlk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sMyZO9YDlk8.mp4/sMyZO9YDlk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sMyZO9YDlk8.m3u8/sMyZO9YDlk8.m3u8"}, "duration": 269, "id": "sMyZO9YDlk8", "title": "Gene environment interaction", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/behavior-and-genetics/gene-environment-interaction/", "slug": "gene-environment-interaction", "kind": "Video", "video_id": "sMyZO9YDlk8", "keywords": "", "youtube_id": "sMyZO9YDlk8", "readable_id": "gene-environment-interaction"}, "8Yl_u_Otcjg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Yl_u_Otcjg.mp4/8Yl_u_Otcjg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Yl_u_Otcjg.mp4/8Yl_u_Otcjg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Yl_u_Otcjg.m3u8/8Yl_u_Otcjg.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/another-substitution-with-x-sin-theta/", "duration": 308, "id": "8Yl_u_Otcjg", "title": "Another substitution with x=sin (theta)", "format": "mp4", "description": "", "slug": "another-substitution-with-x-sin-theta", "kind": "Video", "video_id": "8Yl_u_Otcjg", "keywords": "", "youtube_id": "8Yl_u_Otcjg", "readable_id": "another-substitution-with-x-sin-theta"}, "NvGTCzAfvr0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NvGTCzAfvr0.mp4/NvGTCzAfvr0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NvGTCzAfvr0.mp4/NvGTCzAfvr0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NvGTCzAfvr0.m3u8/NvGTCzAfvr0.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/abs-value-pre-alg/absolute-value-1/", "duration": 202, "id": "NvGTCzAfvr0", "title": "Absolute value smallest to biggest", "format": "mp4", "description": "Not only will we identify several absolute values in this example, but we will order them from smallest to largest. Content provided by The NROC Project - \u00a9Monterey Institute for Technology and Education", "slug": "absolute-value-1", "kind": "Video", "video_id": "NvGTCzAfvr0", "keywords": "U02_L2_T1_we2, Absolute, Value, CC_6_NS_7, CC_6_NS_7_c", "youtube_id": "NvGTCzAfvr0", "readable_id": "absolute-value-1"}, "XDIBJyNnLOU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XDIBJyNnLOU.mp4/XDIBJyNnLOU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XDIBJyNnLOU.mp4/XDIBJyNnLOU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XDIBJyNnLOU.m3u8/XDIBJyNnLOU.m3u8"}, "duration": 673, "id": "XDIBJyNnLOU", "title": "Economics of a cupcake factory", "format": "mp4", "description": "Economics of a simple business leading up to a discussion on inflation/deflation. Touching on income statements.", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/cap-util-inflation/economics-of-a-cupcake-factory/", "slug": "economics-of-a-cupcake-factory", "kind": "Video", "video_id": "XDIBJyNnLOU", "keywords": "economics, finance, inflation, deflation, income, statement", "youtube_id": "XDIBJyNnLOU", "readable_id": "economics-of-a-cupcake-factory"}, "iG7dJTInT7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iG7dJTInT7E.mp4/iG7dJTInT7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iG7dJTInT7E.mp4/iG7dJTInT7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iG7dJTInT7E.m3u8/iG7dJTInT7E.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-chronic-bronchitis/chronic-bronchitis-treatment/", "duration": 670, "id": "iG7dJTInT7E", "title": "Chronic bronchitis treatment", "format": "mp4", "description": "", "slug": "chronic-bronchitis-treatment", "kind": "Video", "video_id": "iG7dJTInT7E", "keywords": "", "youtube_id": "iG7dJTInT7E", "readable_id": "chronic-bronchitis-treatment"}, "IXRMVcoqRRQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IXRMVcoqRRQ.mp4/IXRMVcoqRRQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IXRMVcoqRRQ.mp4/IXRMVcoqRRQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IXRMVcoqRRQ.m3u8/IXRMVcoqRRQ.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function-introduction/understanding-function-notation-example-3/", "duration": 133, "id": "IXRMVcoqRRQ", "title": "Function notation in context example", "format": "mp4", "description": "", "slug": "understanding-function-notation-example-3", "kind": "Video", "video_id": "IXRMVcoqRRQ", "keywords": "", "youtube_id": "IXRMVcoqRRQ", "readable_id": "understanding-function-notation-example-3"}, "iTyHURFjtFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iTyHURFjtFc.mp4/iTyHURFjtFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iTyHURFjtFc.mp4/iTyHURFjtFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iTyHURFjtFc.m3u8/iTyHURFjtFc.m3u8"}, "duration": 95, "id": "iTyHURFjtFc", "title": "Ancient Egyptian baboon deity conserved for the Book of the Dead exhibition at the British Museum", "format": "mp4", "description": "Conservators at the British Museum preparing an ancient Egyptian coffin for display in the exhibition Journey through the afterlife: ancient Egyptian Book of the Dead. \u00a9 Trustees of the British Museum", "path": "ancient-egyptian-baboon/", "slug": "ancient-egyptian-baboon", "kind": "Video", "video_id": "iTyHURFjtFc", "keywords": "", "youtube_id": "iTyHURFjtFc", "readable_id": "ancient-egyptian-baboon"}, "Bjnw_jwDt1Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bjnw_jwDt1Q.mp4/Bjnw_jwDt1Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bjnw_jwDt1Q.mp4/Bjnw_jwDt1Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bjnw_jwDt1Q.m3u8/Bjnw_jwDt1Q.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/mitral-valve-regurgitation-and-mitral-valve-prolapse/", "duration": 660, "id": "Bjnw_jwDt1Q", "title": "Mitral valve regurgitation and mitral valve prolapse", "format": "mp4", "description": "", "slug": "mitral-valve-regurgitation-and-mitral-valve-prolapse", "kind": "Video", "video_id": "Bjnw_jwDt1Q", "keywords": "", "youtube_id": "Bjnw_jwDt1Q", "readable_id": "mitral-valve-regurgitation-and-mitral-valve-prolapse"}, "loAA3TCNAvU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/loAA3TCNAvU.mp4/loAA3TCNAvU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/loAA3TCNAvU.mp4/loAA3TCNAvU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/loAA3TCNAvU.m3u8/loAA3TCNAvU.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/area-breaking-up-shape/", "duration": 315, "id": "loAA3TCNAvU", "title": "Finding area by breaking up the shape", "format": "mp4", "description": "Don't be intimidated by odd looking geometric figures and being asked to find its area. In this example you'll understand that breaking up the figure into smaller geometric shapes that are regular make the task a lot easier.", "slug": "area-breaking-up-shape", "kind": "Video", "video_id": "loAA3TCNAvU", "keywords": "", "youtube_id": "loAA3TCNAvU", "readable_id": "area-breaking-up-shape"}, "XTMbRDRaviM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XTMbRDRaviM.mp4/XTMbRDRaviM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XTMbRDRaviM.mp4/XTMbRDRaviM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XTMbRDRaviM.m3u8/XTMbRDRaviM.m3u8"}, "duration": 560, "id": "XTMbRDRaviM", "title": "Game theory of cheating firms", "format": "mp4", "description": "Pareto Optimality and more on Nash Equilibrium. Seeing how cheating duopolists parallels the prisoners dilemma", "path": "khan/economics-finance-domain/microeconomics/nash-equilibrium-tutorial/cartels-cheat-tutorial/game-theory-of-cheating-firms/", "slug": "game-theory-of-cheating-firms", "kind": "Video", "video_id": "XTMbRDRaviM", "keywords": "microeconomics", "youtube_id": "XTMbRDRaviM", "readable_id": "game-theory-of-cheating-firms"}, "6gUY5NoX1Lk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6gUY5NoX1Lk.mp4/6gUY5NoX1Lk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6gUY5NoX1Lk.mp4/6gUY5NoX1Lk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6gUY5NoX1Lk.m3u8/6gUY5NoX1Lk.m3u8"}, "path": "khan/science/biology/her/heredity-and-genetics/rna-transcription-and-translation/", "duration": 924, "id": "6gUY5NoX1Lk", "title": "RNA transcription and translation", "format": "mp4", "description": "", "slug": "rna-transcription-and-translation", "kind": "Video", "video_id": "6gUY5NoX1Lk", "keywords": "", "youtube_id": "6gUY5NoX1Lk", "readable_id": "rna-transcription-and-translation"}, "vZ9vwiGHXgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vZ9vwiGHXgY.mp4/vZ9vwiGHXgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vZ9vwiGHXgY.mp4/vZ9vwiGHXgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vZ9vwiGHXgY.m3u8/vZ9vwiGHXgY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pulmonary-hypertension/hypoxic-vasoconstriction/", "duration": 473, "id": "vZ9vwiGHXgY", "title": "Hypoxic vasoconstriction", "format": "mp4", "description": "", "slug": "hypoxic-vasoconstriction", "kind": "Video", "video_id": "vZ9vwiGHXgY", "keywords": "", "youtube_id": "vZ9vwiGHXgY", "readable_id": "hypoxic-vasoconstriction"}, "3SgVUlEcOBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3SgVUlEcOBU.mp4/3SgVUlEcOBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3SgVUlEcOBU.mp4/3SgVUlEcOBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3SgVUlEcOBU.m3u8/3SgVUlEcOBU.m3u8"}, "duration": 462, "id": "3SgVUlEcOBU", "title": "Present value 3", "format": "mp4", "description": "What happens when we change the discount rate?", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/present-value/present-value-3/", "slug": "present-value-3", "kind": "Video", "video_id": "3SgVUlEcOBU", "keywords": "present, value, DCF, finance", "youtube_id": "3SgVUlEcOBU", "readable_id": "present-value-3"}, "6BR0Q5e74bs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6BR0Q5e74bs.mp4/6BR0Q5e74bs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6BR0Q5e74bs.mp4/6BR0Q5e74bs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6BR0Q5e74bs.m3u8/6BR0Q5e74bs.m3u8"}, "duration": 604, "id": "6BR0Q5e74bs", "title": "Organic chemistry naming examples 5", "format": "mp4", "description": "Organic Chemistry Naming Examples 5", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/organic-chemistry-naming-examples-5/", "slug": "organic-chemistry-naming-examples-5", "kind": "Video", "video_id": "6BR0Q5e74bs", "keywords": "Organic, Chemistry, Naming, Examples", "youtube_id": "6BR0Q5e74bs", "readable_id": "organic-chemistry-naming-examples-5"}, "8HSeHRGihkY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8HSeHRGihkY.mp4/8HSeHRGihkY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8HSeHRGihkY.mp4/8HSeHRGihkY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8HSeHRGihkY.m3u8/8HSeHRGihkY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/valvular-heart-disease-diagnosis-and-treatment/", "duration": 586, "id": "8HSeHRGihkY", "title": "Valvular heart disease diagnosis and treatment", "format": "mp4", "description": "", "slug": "valvular-heart-disease-diagnosis-and-treatment", "kind": "Video", "video_id": "8HSeHRGihkY", "keywords": "", "youtube_id": "8HSeHRGihkY", "readable_id": "valvular-heart-disease-diagnosis-and-treatment"}, "f1jBHNQb2-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f1jBHNQb2-A.mp4/f1jBHNQb2-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f1jBHNQb2-A.mp4/f1jBHNQb2-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f1jBHNQb2-A.m3u8/f1jBHNQb2-A.m3u8"}, "duration": 274, "id": "f1jBHNQb2-A", "title": "Actions and Interruptions at Tate Modern", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWhat happens when a group of performance artists go undercover at Tate Modern? Ordinary activities like standing in a queue, travelling on an escalator or listening to a gallery tour guide take on strange new dimensions.\u00a0 Artists Dora Garc\u00eda, Ji\u0159\u00ed Kovanda, Roman Ond\u00e1k, Mario Garcia Torres, Nina Jan Beier and Marie Jan Lund explore the way visitors behave in a museum, subtly intervening to disrupt the usual codes of conduct.", "path": "tateshots-actions-and-interruptions/", "slug": "tateshots-actions-and-interruptions", "kind": "Video", "video_id": "f1jBHNQb2-A", "keywords": "Tate, performance art", "youtube_id": "f1jBHNQb2-A", "readable_id": "tateshots-actions-and-interruptions"}, "C-I9m3RR2Cg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C-I9m3RR2Cg.mp4/C-I9m3RR2Cg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C-I9m3RR2Cg.mp4/C-I9m3RR2Cg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C-I9m3RR2Cg.m3u8/C-I9m3RR2Cg.m3u8"}, "duration": 259, "id": "C-I9m3RR2Cg", "title": "Student ownership of learning in my classroom", "format": "mp4", "description": "", "path": "k12student-learning/", "slug": "k12student-learning", "kind": "Video", "video_id": "C-I9m3RR2Cg", "keywords": "", "youtube_id": "C-I9m3RR2Cg", "readable_id": "k12student-learning"}, "a70-dYvDJZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a70-dYvDJZY.mp4/a70-dYvDJZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a70-dYvDJZY.mp4/a70-dYvDJZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a70-dYvDJZY.m3u8/a70-dYvDJZY.m3u8"}, "duration": 667, "id": "a70-dYvDJZY", "title": "Trigonometry identity review/fun", "format": "mp4", "description": "", "path": "khan/math/trigonometry/less-basic-trigonometry/trig_iden_tutorial/trigonometry-identity-review-fun/", "slug": "trigonometry-identity-review-fun", "kind": "Video", "video_id": "a70-dYvDJZY", "keywords": "trig, trigonometry", "youtube_id": "a70-dYvDJZY", "readable_id": "trigonometry-identity-review-fun"}, "qrU3ghYJjEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qrU3ghYJjEw.mp4/qrU3ghYJjEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qrU3ghYJjEw.mp4/qrU3ghYJjEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qrU3ghYJjEw.m3u8/qrU3ghYJjEw.m3u8"}, "path": "khan/computing/computer-programming/html-css/html-css-further-learning/html-validation/", "duration": 140, "id": "qrU3ghYJjEw", "title": "HTML validation", "format": "mp4", "description": "Learn how to validate your webpages with the W3C validator service.", "slug": "html-validation", "kind": "Video", "video_id": "qrU3ghYJjEw", "keywords": "", "youtube_id": "qrU3ghYJjEw", "readable_id": "html-validation"}, "YFvgM8r7Uvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YFvgM8r7Uvc.mp4/YFvgM8r7Uvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YFvgM8r7Uvc.mp4/YFvgM8r7Uvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YFvgM8r7Uvc.m3u8/YFvgM8r7Uvc.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/beginners-guide-imperial-china/heron-tower/", "duration": 63, "id": "YFvgM8r7Uvc", "title": "Ascending the Heron Tower written in cursive script", "format": "mp4", "description": "Master Chinese calligrapher Cai Xingyi writes the poem Ascending the Heron Tower by Poet Wang Zhihuan (688\u2013742) in cursive script.", "slug": "heron-tower", "kind": "Video", "video_id": "YFvgM8r7Uvc", "keywords": "", "youtube_id": "YFvgM8r7Uvc", "readable_id": "heron-tower"}, "QEjWLj5wAFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QEjWLj5wAFM.mp4/QEjWLj5wAFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QEjWLj5wAFM.mp4/QEjWLj5wAFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QEjWLj5wAFM.m3u8/QEjWLj5wAFM.m3u8"}, "path": "khan/test-prep/mcat/behavior/psychological-disorders/biological-basis-of-depression/", "duration": 542, "id": "QEjWLj5wAFM", "title": "Biological basis of depression", "format": "mp4", "description": "", "slug": "biological-basis-of-depression", "kind": "Video", "video_id": "QEjWLj5wAFM", "keywords": "", "youtube_id": "QEjWLj5wAFM", "readable_id": "biological-basis-of-depression"}, "VrB3LaSD_uo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VrB3LaSD_uo.mp4/VrB3LaSD_uo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VrB3LaSD_uo.mp4/VrB3LaSD_uo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VrB3LaSD_uo.m3u8/VrB3LaSD_uo.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-determinant-when-row-is-added/", "duration": 1015, "id": "VrB3LaSD_uo", "title": "Determinant when row is added", "format": "mp4", "description": "The determinant when one matrix has a row that is the sum of the rows of other matrices (and every other term is identical in the 3 matrices)", "slug": "linear-algebra-determinant-when-row-is-added", "kind": "Video", "video_id": "VrB3LaSD_uo", "keywords": "matrices, linear, algebra, determinant", "youtube_id": "VrB3LaSD_uo", "readable_id": "linear-algebra-determinant-when-row-is-added"}, "i05-okb1EJg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i05-okb1EJg.mp4/i05-okb1EJg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i05-okb1EJg.mp4/i05-okb1EJg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i05-okb1EJg.m3u8/i05-okb1EJg.m3u8"}, "duration": 1056, "id": "i05-okb1EJg", "title": "Geometric series sum to figure out mortgage payments", "format": "mp4", "description": "Figuring out the formula for fixed mortgage payments using the sum of a geometric series", "path": "khan/economics-finance-domain/core-finance/housing/mortgages-tutorial/geometric-series-sum-to-figure-out-mortgage-payments/", "slug": "geometric-series-sum-to-figure-out-mortgage-payments", "kind": "Video", "video_id": "i05-okb1EJg", "keywords": "geometric, series, mortgage, math, CC_39336_A-SSE_4", "youtube_id": "i05-okb1EJg", "readable_id": "geometric-series-sum-to-figure-out-mortgage-payments"}, "MZl6Mna0leQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MZl6Mna0leQ.mp4/MZl6Mna0leQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MZl6Mna0leQ.mp4/MZl6Mna0leQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MZl6Mna0leQ.m3u8/MZl6Mna0leQ.m3u8"}, "duration": 354, "id": "MZl6Mna0leQ", "title": "Factoring and the distributive property 3", "format": "mp4", "description": "Factoring and the Distributive Property 3", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-simple-expressions/factoring-and-the-distributive-property-3/", "slug": "factoring-and-the-distributive-property-3", "kind": "Video", "video_id": "MZl6Mna0leQ", "keywords": "U09_L1_T1_we3, Factoring, and, the, Distributive, Property, CC_8_EE_7_b, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "MZl6Mna0leQ", "readable_id": "factoring-and-the-distributive-property-3"}, "7G4BUm7M6MY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7G4BUm7M6MY.mp4/7G4BUm7M6MY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7G4BUm7M6MY.mp4/7G4BUm7M6MY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7G4BUm7M6MY.m3u8/7G4BUm7M6MY.m3u8"}, "duration": 652, "id": "7G4BUm7M6MY", "title": "Indifference curves and marginal rate of substitution", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial/indifference-curves-and-marginal-rate-of-substitution/", "slug": "indifference-curves-and-marginal-rate-of-substitution", "kind": "Video", "video_id": "7G4BUm7M6MY", "keywords": "", "youtube_id": "7G4BUm7M6MY", "readable_id": "indifference-curves-and-marginal-rate-of-substitution"}, "-Z5kkfrEc8I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-Z5kkfrEc8I.mp4/-Z5kkfrEc8I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-Z5kkfrEc8I.mp4/-Z5kkfrEc8I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-Z5kkfrEc8I.m3u8/-Z5kkfrEc8I.m3u8"}, "duration": 558, "id": "-Z5kkfrEc8I", "title": "Inflation overview", "format": "mp4", "description": "Basic understanding of Inflation", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/inflation-basics-tutorial/inflation-overview/", "slug": "inflation-overview", "kind": "Video", "video_id": "-Z5kkfrEc8I", "keywords": "finance, economics", "youtube_id": "-Z5kkfrEc8I", "readable_id": "inflation-overview"}, "xpxe_ZttU-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xpxe_ZttU-w.mp4/xpxe_ZttU-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xpxe_ZttU-w.mp4/xpxe_ZttU-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xpxe_ZttU-w.m3u8/xpxe_ZttU-w.m3u8"}, "duration": 92, "id": "xpxe_ZttU-w", "title": "\"The Adoration of the Magi with Saint Anthony Abbott,\" Franco-Flemish master", "format": "mp4", "description": "Listen to a commentary about a painting in the J. Paul Getty Museum's collection. Love art? Follow us on Google+ to stay in touch.", "path": "adoration-of-magi-saint-anthony-abbott/", "slug": "adoration-of-magi-saint-anthony-abbott", "kind": "Video", "video_id": "xpxe_ZttU-w", "keywords": "", "youtube_id": "xpxe_ZttU-w", "readable_id": "adoration-of-magi-saint-anthony-abbott"}, "fI6w2kL295Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fI6w2kL295Y.mp4/fI6w2kL295Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fI6w2kL295Y.mp4/fI6w2kL295Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fI6w2kL295Y.m3u8/fI6w2kL295Y.m3u8"}, "duration": 402, "id": "fI6w2kL295Y", "title": "Approximating instantaneous rate of change word problem", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/secant-line-slope-tangent/approximating-instantaneous-rate-of-change-word-problem-1/", "slug": "approximating-instantaneous-rate-of-change-word-problem-1", "kind": "Video", "video_id": "fI6w2kL295Y", "keywords": "", "youtube_id": "fI6w2kL295Y", "readable_id": "approximating-instantaneous-rate-of-change-word-problem-1"}, "MbpmP1esh-Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MbpmP1esh-Q.mp4/MbpmP1esh-Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MbpmP1esh-Q.mp4/MbpmP1esh-Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MbpmP1esh-Q.m3u8/MbpmP1esh-Q.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/long_division/long-division-with-remainder-example/", "duration": 161, "id": "MbpmP1esh-Q", "title": "Dividing numbers: example with remainders", "format": "mp4", "description": "Let's work this division problem together. Our division is getting \"longer\" as the numbers get bigger, but that won't be a problem for you! Watch for the remainder.", "slug": "long-division-with-remainder-example", "kind": "Video", "video_id": "MbpmP1esh-Q", "keywords": "", "youtube_id": "MbpmP1esh-Q", "readable_id": "long-division-with-remainder-example"}, "gqrh8wbPXVE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gqrh8wbPXVE.mp4/gqrh8wbPXVE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gqrh8wbPXVE.mp4/gqrh8wbPXVE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gqrh8wbPXVE.m3u8/gqrh8wbPXVE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/nuclear-stability-and-nuclear-equasions/", "duration": 505, "id": "gqrh8wbPXVE", "title": "Nuclear stability and nuclear equations", "format": "mp4", "description": "", "slug": "nuclear-stability-and-nuclear-equasions", "kind": "Video", "video_id": "gqrh8wbPXVE", "keywords": "", "youtube_id": "gqrh8wbPXVE", "readable_id": "nuclear-stability-and-nuclear-equasions"}, "3QWJrPq_HB0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3QWJrPq_HB0.mp4/3QWJrPq_HB0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3QWJrPq_HB0.mp4/3QWJrPq_HB0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3QWJrPq_HB0.m3u8/3QWJrPq_HB0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/nucleophilic-acyl-substitution/", "duration": 569, "id": "3QWJrPq_HB0", "title": "Nucleophilic acyl substitution", "format": "mp4", "description": "The general mechanism of nucleophilic acyl substitution (and leaving group stability)", "slug": "nucleophilic-acyl-substitution", "kind": "Video", "video_id": "3QWJrPq_HB0", "keywords": "", "youtube_id": "3QWJrPq_HB0", "readable_id": "nucleophilic-acyl-substitution"}, "QPvhl66QCqo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QPvhl66QCqo.mp4/QPvhl66QCqo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QPvhl66QCqo.mp4/QPvhl66QCqo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QPvhl66QCqo.m3u8/QPvhl66QCqo.m3u8"}, "path": "khan/test-prep/mcat/cells/embryology/germ-layer-derivatives/", "duration": 131, "id": "QPvhl66QCqo", "title": "Germ layer derivatives", "format": "mp4", "description": "", "slug": "germ-layer-derivatives", "kind": "Video", "video_id": "QPvhl66QCqo", "keywords": "", "youtube_id": "QPvhl66QCqo", "readable_id": "germ-layer-derivatives"}, "AIb5x7fmtvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AIb5x7fmtvE.mp4/AIb5x7fmtvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AIb5x7fmtvE.mp4/AIb5x7fmtvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AIb5x7fmtvE.m3u8/AIb5x7fmtvE.m3u8"}, "duration": 194, "id": "AIb5x7fmtvE", "title": "Area and perimeter word problem: width of a dog pen", "format": "mp4", "description": "If you know the perimeter and the length of a rectangle, you can figure out the width. Don't believe us? Watch and become a believer.", "path": "width-from-perimeter/", "slug": "width-from-perimeter", "kind": "Video", "video_id": "AIb5x7fmtvE", "keywords": "", "youtube_id": "AIb5x7fmtvE", "readable_id": "width-from-perimeter"}, "lng4ZgConCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lng4ZgConCM.mp4/lng4ZgConCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lng4ZgConCM.mp4/lng4ZgConCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lng4ZgConCM.m3u8/lng4ZgConCM.m3u8"}, "duration": 761, "id": "lng4ZgConCM", "title": "R-squared or coefficient of determination", "format": "mp4", "description": "R-Squared or Coefficient of Determination", "path": "khan/math/probability/regression/regression-correlation/r-squared-or-coefficient-of-determination/", "slug": "r-squared-or-coefficient-of-determination", "kind": "Video", "video_id": "lng4ZgConCM", "keywords": "R-Squared, or, Coefficient, of, Determination, CC_8_SP_2, CC_8_SP_3", "youtube_id": "lng4ZgConCM", "readable_id": "r-squared-or-coefficient-of-determination"}, "_E3gx_yQhHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_E3gx_yQhHQ.mp4/_E3gx_yQhHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_E3gx_yQhHQ.mp4/_E3gx_yQhHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_E3gx_yQhHQ.m3u8/_E3gx_yQhHQ.m3u8"}, "duration": 291, "id": "_E3gx_yQhHQ", "title": "Example 5: Using the quadratic formula", "format": "mp4", "description": "Applying the Quadratic Formula", "path": "khan/math/algebra/quadratics/quadratic-formula/applying-the-quadratic-formula/", "slug": "applying-the-quadratic-formula", "kind": "Video", "video_id": "_E3gx_yQhHQ", "keywords": "u16_l5_t2_we2, Applying, the, Quadratic, Formula", "youtube_id": "_E3gx_yQhHQ", "readable_id": "applying-the-quadratic-formula"}, "PJFzqfLMBIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PJFzqfLMBIw.mp4/PJFzqfLMBIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PJFzqfLMBIw.mp4/PJFzqfLMBIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PJFzqfLMBIw.m3u8/PJFzqfLMBIw.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/milgram-experiment-on-obedience/", "duration": 426, "id": "PJFzqfLMBIw", "title": "Milgram experiment on obedience", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "milgram-experiment-on-obedience", "kind": "Video", "video_id": "PJFzqfLMBIw", "keywords": "", "youtube_id": "PJFzqfLMBIw", "readable_id": "milgram-experiment-on-obedience"}, "gG2HYC-Aw9Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gG2HYC-Aw9Y.mp4/gG2HYC-Aw9Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gG2HYC-Aw9Y.mp4/gG2HYC-Aw9Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gG2HYC-Aw9Y.m3u8/gG2HYC-Aw9Y.m3u8"}, "path": "khan/partner-content/exploratorium/light-and-color/colored-shadows/playing-with-colored-shadows-how-it-works/", "duration": 55, "id": "gG2HYC-Aw9Y", "title": "What's going on: light travels in straight lines", "format": "mp4", "description": "What's the science behind the phenomenon of colored shadows? Light travels in straight lines, but we have three different-colored bulbs spaced several inches apart.", "slug": "playing-with-colored-shadows-how-it-works", "kind": "Video", "video_id": "gG2HYC-Aw9Y", "keywords": "", "youtube_id": "gG2HYC-Aw9Y", "readable_id": "playing-with-colored-shadows-how-it-works"}, "_RQ5m32t9zw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_RQ5m32t9zw.mp4/_RQ5m32t9zw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_RQ5m32t9zw.mp4/_RQ5m32t9zw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_RQ5m32t9zw.m3u8/_RQ5m32t9zw.m3u8"}, "duration": 496, "id": "_RQ5m32t9zw", "title": "Lab safety", "format": "mp4", "description": "Hank takes a break from the desk to bring you to the lab in order to demonstrate some important points about the practical side of chemistry - experimentation in the laboratory. You'll learn what to wear in the lab, how to dispose of chemicals safely, how to avoid the most common accidents, how to pour solutions properly, what the HazMat diamond means, what an MSDS is, and how to use a fume hood. And as a reward for sticking with him through this maybe less-than-thrilling lecture, you'll see Hank subject himself to an exciting piece of safety apparatus. \u00a0\n\nWriters: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe", "path": "chem21-lab-safety/", "slug": "chem21-lab-safety", "kind": "Video", "video_id": "_RQ5m32t9zw", "keywords": "", "youtube_id": "_RQ5m32t9zw", "readable_id": "chem21-lab-safety"}, "5zosU6XTgSY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5zosU6XTgSY.mp4/5zosU6XTgSY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5zosU6XTgSY.mp4/5zosU6XTgSY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5zosU6XTgSY.m3u8/5zosU6XTgSY.m3u8"}, "duration": 882, "id": "5zosU6XTgSY", "title": "The golden ratio", "format": "mp4", "description": "An introduction to one of the most amazing ideas/numbers in mathematics", "path": "khan/math/geometry/intro_euclid/the-golden-ratio/", "slug": "the-golden-ratio", "kind": "Video", "video_id": "5zosU6XTgSY", "keywords": "golden, mean, ratio, marquee", "youtube_id": "5zosU6XTgSY", "readable_id": "the-golden-ratio"}, "FO10z7FX13c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FO10z7FX13c.mp4/FO10z7FX13c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FO10z7FX13c.mp4/FO10z7FX13c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FO10z7FX13c.m3u8/FO10z7FX13c.m3u8"}, "duration": 227, "id": "FO10z7FX13c", "title": "Neurotransmitter removal", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuronal-synapses/neurotransmitter-removal/", "slug": "neurotransmitter-removal", "kind": "Video", "video_id": "FO10z7FX13c", "keywords": "", "youtube_id": "FO10z7FX13c", "readable_id": "neurotransmitter-removal"}, "CGZZINHT0I8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CGZZINHT0I8.mp4/CGZZINHT0I8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CGZZINHT0I8.mp4/CGZZINHT0I8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CGZZINHT0I8.m3u8/CGZZINHT0I8.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/x-and-y-intercepts/finding-intercepts-for-a-linear-function-from-a-table/", "duration": 240, "id": "CGZZINHT0I8", "title": "Finding intercepts from a table", "format": "mp4", "description": "", "slug": "finding-intercepts-for-a-linear-function-from-a-table", "kind": "Video", "video_id": "CGZZINHT0I8", "keywords": "", "youtube_id": "CGZZINHT0I8", "readable_id": "finding-intercepts-for-a-linear-function-from-a-table"}, "IEKU6tubTEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IEKU6tubTEw.mp4/IEKU6tubTEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IEKU6tubTEw.mp4/IEKU6tubTEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IEKU6tubTEw.m3u8/IEKU6tubTEw.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/writing-expressions-3-exercise-example-1/", "duration": 144, "id": "IEKU6tubTEw", "title": "Writing algebraic expressions word problem", "format": "mp4", "description": "Here we interpret data in a table and solve a word problem by writing an algebraic expression.", "slug": "writing-expressions-3-exercise-example-1", "kind": "Video", "video_id": "IEKU6tubTEw", "keywords": "", "youtube_id": "IEKU6tubTEw", "readable_id": "writing-expressions-3-exercise-example-1"}, "g3MqSdO5Ubc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g3MqSdO5Ubc.mp4/g3MqSdO5Ubc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g3MqSdO5Ubc.mp4/g3MqSdO5Ubc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g3MqSdO5Ubc.m3u8/g3MqSdO5Ubc.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-determinant-as-scaling-factor/", "duration": 1209, "id": "g3MqSdO5Ubc", "title": "Determinant as scaling factor", "format": "mp4", "description": "Viewing the determinant of the transformation matrix as a scaling factor of regions", "slug": "linear-algebra-determinant-as-scaling-factor", "kind": "Video", "video_id": "g3MqSdO5Ubc", "keywords": "determinant, area, transformation", "youtube_id": "g3MqSdO5Ubc", "readable_id": "linear-algebra-determinant-as-scaling-factor"}, "twMdew4Zs8Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/twMdew4Zs8Q.mp4/twMdew4Zs8Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/twMdew4Zs8Q.mp4/twMdew4Zs8Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/twMdew4Zs8Q.m3u8/twMdew4Zs8Q.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/4-digit-times-1-digit-example/", "duration": 204, "id": "twMdew4Zs8Q", "title": "Multiplying: 4 digits times 1 digit (with carrying)", "format": "mp4", "description": "This is getting fun! We're now multiplying FOUR digits times one digit. Remember to carry!", "slug": "4-digit-times-1-digit-example", "kind": "Video", "video_id": "twMdew4Zs8Q", "keywords": "", "youtube_id": "twMdew4Zs8Q", "readable_id": "4-digit-times-1-digit-example"}, "6dWHPHELCKU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6dWHPHELCKU.mp4/6dWHPHELCKU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6dWHPHELCKU.mp4/6dWHPHELCKU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6dWHPHELCKU.m3u8/6dWHPHELCKU.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/donatello-equestrian-monument-of-gattamelata/", "duration": 341, "id": "6dWHPHELCKU", "title": "Donatello, Equestrian Monument of Gattamelata", "format": "mp4", "description": "Donatello, Equestrian Monument of Gattamelata (Erasmo da Narni), 1445-53, bronze, 12 feet, 2 inches high, Piazza del Santo, Padua\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "donatello-equestrian-monument-of-gattamelata", "kind": "Video", "video_id": "6dWHPHELCKU", "keywords": "", "youtube_id": "6dWHPHELCKU", "readable_id": "donatello-equestrian-monument-of-gattamelata"}, "AfjH7Xn8VB8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AfjH7Xn8VB8.mp4/AfjH7Xn8VB8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AfjH7Xn8VB8.mp4/AfjH7Xn8VB8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AfjH7Xn8VB8.m3u8/AfjH7Xn8VB8.m3u8"}, "duration": 514, "id": "AfjH7Xn8VB8", "title": "Enthalpy", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/principles-of-bioenergetics/enthalpy-1/", "slug": "enthalpy-1", "kind": "Video", "video_id": "AfjH7Xn8VB8", "keywords": "", "youtube_id": "AfjH7Xn8VB8", "readable_id": "enthalpy-1"}, "CJzuu_k9Nv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CJzuu_k9Nv0.mp4/CJzuu_k9Nv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CJzuu_k9Nv0.mp4/CJzuu_k9Nv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CJzuu_k9Nv0.m3u8/CJzuu_k9Nv0.m3u8"}, "duration": 343, "id": "CJzuu_k9Nv0", "title": "Amine naming 2", "format": "mp4", "description": "Amine Naming 2", "path": "khan/science/organic-chemistry/amines-topic/naming-amines/amine-naming-2/", "slug": "amine-naming-2", "kind": "Video", "video_id": "CJzuu_k9Nv0", "keywords": "Amine, Naming, nitro, phenyl, hydroxy, amino", "youtube_id": "CJzuu_k9Nv0", "readable_id": "amine-naming-2"}, "5FEjrStgcF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5FEjrStgcF8.mp4/5FEjrStgcF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5FEjrStgcF8.mp4/5FEjrStgcF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5FEjrStgcF8.m3u8/5FEjrStgcF8.m3u8"}, "duration": 662, "id": "5FEjrStgcF8", "title": "Scale of the large", "format": "mp4", "description": "Attempting to comprehend the scale of the large", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/scale-small-large-tutorial/scale-of-the-large/", "slug": "scale-of-the-large", "kind": "Video", "video_id": "5FEjrStgcF8", "keywords": "scale, science", "youtube_id": "5FEjrStgcF8", "readable_id": "scale-of-the-large"}, "MSucylf4KhY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MSucylf4KhY.mp4/MSucylf4KhY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MSucylf4KhY.mp4/MSucylf4KhY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MSucylf4KhY.m3u8/MSucylf4KhY.m3u8"}, "path": "khan/test-prep/mcat/behavior/normative-and-non-normative-behavior/perspectives-on-deviance/", "duration": 391, "id": "MSucylf4KhY", "title": "Perspectives on deviance: Differential association, labeling theory, and strain theory", "format": "mp4", "description": "", "slug": "perspectives-on-deviance", "kind": "Video", "video_id": "MSucylf4KhY", "keywords": "", "youtube_id": "MSucylf4KhY", "readable_id": "perspectives-on-deviance"}, "C0frzmxc5KU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C0frzmxc5KU.mp4/C0frzmxc5KU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C0frzmxc5KU.mp4/C0frzmxc5KU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C0frzmxc5KU.m3u8/C0frzmxc5KU.m3u8"}, "duration": 327, "id": "C0frzmxc5KU", "title": "Hyperplasia in colon tissue", "format": "mp4", "description": "Dr. Andy Connolly from Stanford Medical School shows Sal what hyperplasia in colon tissue looks like", "path": "khan/science/health-and-medicine/healthcare-misc/hyperplasia-in-colon-tissue/", "slug": "hyperplasia-in-colon-tissue", "kind": "Video", "video_id": "C0frzmxc5KU", "keywords": "medicine, pathology, histology", "youtube_id": "C0frzmxc5KU", "readable_id": "hyperplasia-in-colon-tissue"}, "xNf--q0YMq8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xNf--q0YMq8.mp4/xNf--q0YMq8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xNf--q0YMq8.mp4/xNf--q0YMq8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xNf--q0YMq8.m3u8/xNf--q0YMq8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/endocrine-pancreas/", "duration": 410, "id": "xNf--q0YMq8", "title": "Endocrine pancreas", "format": "mp4", "description": "", "slug": "endocrine-pancreas", "kind": "Video", "video_id": "xNf--q0YMq8", "keywords": "MCAT", "youtube_id": "xNf--q0YMq8", "readable_id": "endocrine-pancreas"}, "U5-3wnY04gU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U5-3wnY04gU.mp4/U5-3wnY04gU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U5-3wnY04gU.mp4/U5-3wnY04gU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U5-3wnY04gU.m3u8/U5-3wnY04gU.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/equilibrium-mcat/standard-change-in-free-energy-and-the-equilibrium-constant/", "duration": 646, "id": "U5-3wnY04gU", "title": "Standard change in free energy and the equilibrium constant", "format": "mp4", "description": "", "slug": "standard-change-in-free-energy-and-the-equilibrium-constant", "kind": "Video", "video_id": "U5-3wnY04gU", "keywords": "", "youtube_id": "U5-3wnY04gU", "readable_id": "standard-change-in-free-energy-and-the-equilibrium-constant"}, "Oxt1DdfT8ME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oxt1DdfT8ME.mp4/Oxt1DdfT8ME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oxt1DdfT8ME.mp4/Oxt1DdfT8ME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oxt1DdfT8ME.m3u8/Oxt1DdfT8ME.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/conditionals-pt3/", "duration": 514, "id": "Oxt1DdfT8ME", "title": "Language: Conditionals part 3", "format": "mp4", "description": "In part 3 of the series on conditionals, Justin picks up where part 2\u00a0leaves off, introducing an alternative theory of conditionals: the strict conditional theory. According to the strict theory, conditionals express necessary connections between their antecedent and consequent. Justin shows how this theory avoids the problems facing the material conditional theory. However, the strict theory turns out to face a similar problem of its own!\n\nSpeaker: Dr. Justin Khoo, Assitant Professor, M.I.T.", "slug": "conditionals-pt3", "kind": "Video", "video_id": "Oxt1DdfT8ME", "keywords": "", "youtube_id": "Oxt1DdfT8ME", "readable_id": "conditionals-pt3"}, "jWpiMu5LNdg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jWpiMu5LNdg.mp4/jWpiMu5LNdg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jWpiMu5LNdg.mp4/jWpiMu5LNdg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jWpiMu5LNdg.m3u8/jWpiMu5LNdg.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/adding-and-subtracting-the-same-thing-from-both-sides/", "duration": 129, "id": "jWpiMu5LNdg", "title": "Adding and subtracting from both sides of an equation", "format": "mp4", "description": "Let's watch as we demonstrate how we add and subtract to both sides of an equation in order to isolate the variable on one side.", "slug": "adding-and-subtracting-the-same-thing-from-both-sides", "kind": "Video", "video_id": "jWpiMu5LNdg", "keywords": "", "youtube_id": "jWpiMu5LNdg", "readable_id": "adding-and-subtracting-the-same-thing-from-both-sides"}, "_6kwhF6hoqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_6kwhF6hoqQ.mp4/_6kwhF6hoqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_6kwhF6hoqQ.mp4/_6kwhF6hoqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_6kwhF6hoqQ.m3u8/_6kwhF6hoqQ.m3u8"}, "duration": 302, "id": "_6kwhF6hoqQ", "title": "Consumer surplus introduction", "format": "mp4", "description": "Consumer surplus as difference between marginal benefit and price paid", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/consumer-producer-surplus-tut/consumer-surplus-introduction/", "slug": "consumer-surplus-introduction", "kind": "Video", "video_id": "_6kwhF6hoqQ", "keywords": "consumer, surplus, marginal, benefit", "youtube_id": "_6kwhF6hoqQ", "readable_id": "consumer-surplus-introduction"}, "kzYtx_AqzjM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kzYtx_AqzjM.mp4/kzYtx_AqzjM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kzYtx_AqzjM.mp4/kzYtx_AqzjM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kzYtx_AqzjM.m3u8/kzYtx_AqzjM.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function-introduction/understanding-function-notation-example-2/", "duration": 44, "id": "kzYtx_AqzjM", "title": "Evaluating functions given their graph", "format": "mp4", "description": "", "slug": "understanding-function-notation-example-2", "kind": "Video", "video_id": "kzYtx_AqzjM", "keywords": "", "youtube_id": "kzYtx_AqzjM", "readable_id": "understanding-function-notation-example-2"}, "bEJxFs0f35o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bEJxFs0f35o.mp4/bEJxFs0f35o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bEJxFs0f35o.mp4/bEJxFs0f35o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bEJxFs0f35o.m3u8/bEJxFs0f35o.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkyne-reactions/halogenation-and-ozonolysis-of-alkynes/", "duration": 440, "id": "bEJxFs0f35o", "title": "Halogenation and ozonolysis of alkynes", "format": "mp4", "description": "", "slug": "halogenation-and-ozonolysis-of-alkynes", "kind": "Video", "video_id": "bEJxFs0f35o", "keywords": "", "youtube_id": "bEJxFs0f35o", "readable_id": "halogenation-and-ozonolysis-of-alkynes"}, "2CsQ_l1S2_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2CsQ_l1S2_Y.mp4/2CsQ_l1S2_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2CsQ_l1S2_Y.mp4/2CsQ_l1S2_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2CsQ_l1S2_Y.m3u8/2CsQ_l1S2_Y.m3u8"}, "duration": 468, "id": "2CsQ_l1S2_Y", "title": "Showing explicit and implicit differentiation give same result", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/showing-explicit-and-implicit-differentiation-give-same-result/", "slug": "showing-explicit-and-implicit-differentiation-give-same-result", "kind": "Video", "video_id": "2CsQ_l1S2_Y", "keywords": "", "youtube_id": "2CsQ_l1S2_Y", "readable_id": "showing-explicit-and-implicit-differentiation-give-same-result"}, "kDpdC3ZD4Ks": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kDpdC3ZD4Ks.mp4/kDpdC3ZD4Ks.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kDpdC3ZD4Ks.mp4/kDpdC3ZD4Ks.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kDpdC3ZD4Ks.m3u8/kDpdC3ZD4Ks.m3u8"}, "duration": 469, "id": "kDpdC3ZD4Ks", "title": "Articles of Confederation", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the Articles of Confederation, state sovereignty, Shays Rebellion, the Annapolis Convention and Alexander Hamilton.", "path": "introduction/", "slug": "introduction", "kind": "Video", "video_id": "kDpdC3ZD4Ks", "keywords": "", "youtube_id": "kDpdC3ZD4Ks", "readable_id": "introduction"}, "j_Taf2Tgggo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j_Taf2Tgggo.mp4/j_Taf2Tgggo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j_Taf2Tgggo.mp4/j_Taf2Tgggo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j_Taf2Tgggo.m3u8/j_Taf2Tgggo.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/logistic-differential-equation/solving-logistic-differential-equation-part-1/", "duration": 818, "id": "j_Taf2Tgggo", "title": "Solving the logistic differential equation part 1", "format": "mp4", "description": "", "slug": "solving-logistic-differential-equation-part-1", "kind": "Video", "video_id": "j_Taf2Tgggo", "keywords": "", "youtube_id": "j_Taf2Tgggo", "readable_id": "solving-logistic-differential-equation-part-1"}, "4Azskeheo_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Azskeheo_g.mp4/4Azskeheo_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Azskeheo_g.mp4/4Azskeheo_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Azskeheo_g.m3u8/4Azskeheo_g.m3u8"}, "duration": 192, "id": "4Azskeheo_g", "title": "Data on Chinese M1 increase in 2010", "format": "mp4", "description": "Data on Chinese M1 Increase in 2010", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/data-on-chinese-m1-increase-in-2010/", "slug": "data-on-chinese-m1-increase-in-2010", "kind": "Video", "video_id": "4Azskeheo_g", "keywords": "Data, on, Chinese, M1, Increase, in, 2010", "youtube_id": "4Azskeheo_g", "readable_id": "data-on-chinese-m1-increase-in-2010"}, "uCBm8iDyg1s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uCBm8iDyg1s.mp4/uCBm8iDyg1s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uCBm8iDyg1s.mp4/uCBm8iDyg1s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uCBm8iDyg1s.m3u8/uCBm8iDyg1s.m3u8"}, "duration": 309, "id": "uCBm8iDyg1s", "title": "Dividing by two digits example 1", "format": "mp4", "description": "There's a little bit of an \"art\" to dividing numbers by two or more digits. Let us show you...", "path": "dividing-2-digits-no-remainder/", "slug": "dividing-2-digits-no-remainder", "kind": "Video", "video_id": "uCBm8iDyg1s", "keywords": "", "youtube_id": "uCBm8iDyg1s", "readable_id": "dividing-2-digits-no-remainder"}, "FBn1RlGfdzg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FBn1RlGfdzg.mp4/FBn1RlGfdzg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FBn1RlGfdzg.mp4/FBn1RlGfdzg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FBn1RlGfdzg.m3u8/FBn1RlGfdzg.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section3/sat-3-camouflage/", "duration": 244, "id": "FBn1RlGfdzg", "title": "3 Camouflage", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-3-camouflage", "kind": "Video", "video_id": "FBn1RlGfdzg", "keywords": "", "youtube_id": "FBn1RlGfdzg", "readable_id": "sat-3-camouflage"}, "9wXdONpguLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9wXdONpguLw.mp4/9wXdONpguLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9wXdONpguLw.mp4/9wXdONpguLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9wXdONpguLw.m3u8/9wXdONpguLw.m3u8"}, "duration": 195, "id": "9wXdONpguLw", "title": "Ratio between concentric arcs", "format": "mp4", "description": "", "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/ratio-between-cocentric-arcs/", "slug": "ratio-between-cocentric-arcs", "kind": "Video", "video_id": "9wXdONpguLw", "keywords": "", "youtube_id": "9wXdONpguLw", "readable_id": "ratio-between-cocentric-arcs"}, "mzLOT6uOfO4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mzLOT6uOfO4.mp4/mzLOT6uOfO4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mzLOT6uOfO4.mp4/mzLOT6uOfO4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mzLOT6uOfO4.m3u8/mzLOT6uOfO4.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/alpha-beta-and-gamma-decay/", "duration": 487, "id": "mzLOT6uOfO4", "title": "Alpha, beta, and gamma decay", "format": "mp4", "description": "", "slug": "alpha-beta-and-gamma-decay", "kind": "Video", "video_id": "mzLOT6uOfO4", "keywords": "", "youtube_id": "mzLOT6uOfO4", "readable_id": "alpha-beta-and-gamma-decay"}, "juM2ROSLWfw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/juM2ROSLWfw.mp4/juM2ROSLWfw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/juM2ROSLWfw.mp4/juM2ROSLWfw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/juM2ROSLWfw.m3u8/juM2ROSLWfw.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/krebs-citric-acid-cycle/", "duration": 1067, "id": "juM2ROSLWfw", "title": "Krebs / citric acid cycle", "format": "mp4", "description": "Overview of the Krebs or Citric Acid Cycle", "slug": "krebs-citric-acid-cycle", "kind": "Video", "video_id": "juM2ROSLWfw", "keywords": "Krebs, citric, acid, cycle", "youtube_id": "juM2ROSLWfw", "readable_id": "krebs-citric-acid-cycle"}, "0UrcjBLz6B0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0UrcjBLz6B0.mp4/0UrcjBLz6B0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0UrcjBLz6B0.mp4/0UrcjBLz6B0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0UrcjBLz6B0.m3u8/0UrcjBLz6B0.m3u8"}, "path": "khan/college-admissions/get-started/importance-of-college/college-experience/", "duration": 156, "id": "0UrcjBLz6B0", "title": "The college experience", "format": "mp4", "description": "", "slug": "college-experience", "kind": "Video", "video_id": "0UrcjBLz6B0", "keywords": "", "youtube_id": "0UrcjBLz6B0", "readable_id": "college-experience"}, "-r7JwuSdj5M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-r7JwuSdj5M.mp4/-r7JwuSdj5M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-r7JwuSdj5M.mp4/-r7JwuSdj5M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-r7JwuSdj5M.m3u8/-r7JwuSdj5M.m3u8"}, "duration": 202, "id": "-r7JwuSdj5M", "title": "Converting between units of time", "format": "mp4", "description": "We want you to feel comfortable moving between seconds, minutes, and hours. Let's create some tables where we compare and covert these measurements of time.", "path": "time-unit-conversion/", "slug": "time-unit-conversion", "kind": "Video", "video_id": "-r7JwuSdj5M", "keywords": "", "youtube_id": "-r7JwuSdj5M", "readable_id": "time-unit-conversion"}, "0z52CLjC2C0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0z52CLjC2C0.mp4/0z52CLjC2C0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0z52CLjC2C0.mp4/0z52CLjC2C0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0z52CLjC2C0.m3u8/0z52CLjC2C0.m3u8"}, "duration": 304, "id": "0z52CLjC2C0", "title": "Both bounds being a function of x", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/fundamental-theorem-of-calculus/both-bounds-being-a-function-of-x/", "slug": "both-bounds-being-a-function-of-x", "kind": "Video", "video_id": "0z52CLjC2C0", "keywords": "", "youtube_id": "0z52CLjC2C0", "readable_id": "both-bounds-being-a-function-of-x"}, "o-D-8B_5ibU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o-D-8B_5ibU.mp4/o-D-8B_5ibU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o-D-8B_5ibU.mp4/o-D-8B_5ibU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o-D-8B_5ibU.m3u8/o-D-8B_5ibU.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-compare-estimate-length/comparing-lengths/", "duration": 187, "id": "o-D-8B_5ibU", "title": "Comparing lengths", "format": "mp4", "description": "", "slug": "comparing-lengths", "kind": "Video", "video_id": "o-D-8B_5ibU", "keywords": "", "youtube_id": "o-D-8B_5ibU", "readable_id": "comparing-lengths"}, "UgXZFel0H8Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UgXZFel0H8Q.mp4/UgXZFel0H8Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UgXZFel0H8Q.mp4/UgXZFel0H8Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UgXZFel0H8Q.m3u8/UgXZFel0H8Q.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pertussis/diagnosing-and-treating-pertussis/", "duration": 356, "id": "UgXZFel0H8Q", "title": "Pertussis diagnosis and treatment", "format": "mp4", "description": "", "slug": "diagnosing-and-treating-pertussis", "kind": "Video", "video_id": "UgXZFel0H8Q", "keywords": "", "youtube_id": "UgXZFel0H8Q", "readable_id": "diagnosing-and-treating-pertussis"}, "pWSq7CGh9tg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pWSq7CGh9tg.mp4/pWSq7CGh9tg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pWSq7CGh9tg.mp4/pWSq7CGh9tg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pWSq7CGh9tg.m3u8/pWSq7CGh9tg.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-11-love-and-marriage/", "duration": 193, "id": "pWSq7CGh9tg", "title": "11 Love and marriage", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-11-love-and-marriage", "kind": "Video", "video_id": "pWSq7CGh9tg", "keywords": "", "youtube_id": "pWSq7CGh9tg", "readable_id": "sat-11-love-and-marriage"}, "h6YWCuuJVj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h6YWCuuJVj4.mp4/h6YWCuuJVj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h6YWCuuJVj4.mp4/h6YWCuuJVj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h6YWCuuJVj4.m3u8/h6YWCuuJVj4.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/what-is-computer-memory-prime-adventure-part-7/", "duration": 324, "id": "h6YWCuuJVj4", "title": "Computer memory (space)", "format": "mp4", "description": "What is the limit of computer memory?", "slug": "what-is-computer-memory-prime-adventure-part-7", "kind": "Video", "video_id": "h6YWCuuJVj4", "keywords": "computer memory", "youtube_id": "h6YWCuuJVj4", "readable_id": "what-is-computer-memory-prime-adventure-part-7"}, "paRbGKaVLZc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/paRbGKaVLZc.mp4/paRbGKaVLZc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/paRbGKaVLZc.mp4/paRbGKaVLZc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/paRbGKaVLZc.m3u8/paRbGKaVLZc.m3u8"}, "duration": 131, "id": "paRbGKaVLZc", "title": "Moawia Eldeeb: College Hero", "format": "mp4", "description": "Moawia shares how his persistence paid off and how Khan Academy helped him through a challenging academic history.", "path": "moawia-eldeeb-college-hero/", "slug": "moawia-eldeeb-college-hero", "kind": "Video", "video_id": "paRbGKaVLZc", "keywords": "", "youtube_id": "paRbGKaVLZc", "readable_id": "moawia-eldeeb-college-hero"}, "QskZ-o0egF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QskZ-o0egF8.mp4/QskZ-o0egF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QskZ-o0egF8.mp4/QskZ-o0egF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QskZ-o0egF8.m3u8/QskZ-o0egF8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/risk-factors-for-stroke/", "duration": 701, "id": "QskZ-o0egF8", "title": "Risk factors for stroke", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "risk-factors-for-stroke", "kind": "Video", "video_id": "QskZ-o0egF8", "keywords": "", "youtube_id": "QskZ-o0egF8", "readable_id": "risk-factors-for-stroke"}, "-TpiL4J_yUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-TpiL4J_yUA.mp4/-TpiL4J_yUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-TpiL4J_yUA.mp4/-TpiL4J_yUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-TpiL4J_yUA.m3u8/-TpiL4J_yUA.m3u8"}, "duration": 156, "id": "-TpiL4J_yUA", "title": "Exponent properties 1", "format": "mp4", "description": "When multiplying numbers with common base, add exponents", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/exponent-properties-1/", "slug": "exponent-properties-1", "kind": "Video", "video_id": "-TpiL4J_yUA", "keywords": "u11_l1_t2_we1, Exponent, Properties", "youtube_id": "-TpiL4J_yUA", "readable_id": "exponent-properties-1"}, "0URl8p39wQo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0URl8p39wQo.mp4/0URl8p39wQo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0URl8p39wQo.mp4/0URl8p39wQo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0URl8p39wQo.m3u8/0URl8p39wQo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/atrial-flutter/", "duration": 236, "id": "0URl8p39wQo", "title": "Atrial flutter (AFL)", "format": "mp4", "description": "", "slug": "atrial-flutter", "kind": "Video", "video_id": "0URl8p39wQo", "keywords": "", "youtube_id": "0URl8p39wQo", "readable_id": "atrial-flutter"}, "azBNsPa1WC4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/azBNsPa1WC4.mp4/azBNsPa1WC4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/azBNsPa1WC4.mp4/azBNsPa1WC4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/azBNsPa1WC4.m3u8/azBNsPa1WC4.m3u8"}, "duration": 551, "id": "azBNsPa1WC4", "title": "Koch snowflake fractal", "format": "mp4", "description": "A shape that has an infinite perimeter but finite area", "path": "khan/math/geometry/basic-geometry/koch_snowflake/koch-snowflake-fractal/", "slug": "koch-snowflake-fractal", "kind": "Video", "video_id": "azBNsPa1WC4", "keywords": "fractal, geometry, marquee", "youtube_id": "azBNsPa1WC4", "readable_id": "koch-snowflake-fractal"}, "M9bisHkXbKc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M9bisHkXbKc.mp4/M9bisHkXbKc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M9bisHkXbKc.mp4/M9bisHkXbKc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M9bisHkXbKc.m3u8/M9bisHkXbKc.m3u8"}, "duration": 311, "id": "M9bisHkXbKc", "title": "U.S. customary units: distance", "format": "mp4", "description": "From small to big, these units of distance got you covered: inch, foot, yard, and mile. Let's be sure we understand them.", "path": "us-customary-distance/", "slug": "us-customary-distance", "kind": "Video", "video_id": "M9bisHkXbKc", "keywords": "", "youtube_id": "M9bisHkXbKc", "readable_id": "us-customary-distance"}, "AOsWph2FNLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AOsWph2FNLw.mp4/AOsWph2FNLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AOsWph2FNLw.mp4/AOsWph2FNLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AOsWph2FNLw.m3u8/AOsWph2FNLw.m3u8"}, "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/generalizing-with-binomial-coefficients-bit-advanced/", "duration": 700, "id": "AOsWph2FNLw", "title": "Generalizing with binomial coefficients (bit advanced)", "format": "mp4", "description": "Conceptual understanding of where the formula for binomial coefficients come from", "slug": "generalizing-with-binomial-coefficients-bit-advanced", "kind": "Video", "video_id": "AOsWph2FNLw", "keywords": "probability, combinations", "youtube_id": "AOsWph2FNLw", "readable_id": "generalizing-with-binomial-coefficients-bit-advanced"}, "LrS5_l-gk94": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LrS5_l-gk94.mp4/LrS5_l-gk94.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LrS5_l-gk94.mp4/LrS5_l-gk94.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LrS5_l-gk94.m3u8/LrS5_l-gk94.m3u8"}, "duration": 592, "id": "LrS5_l-gk94", "title": "Pythagorean theorem proof using similarity", "format": "mp4", "description": "Proof of the Pythagorean Theorem using similarity", "path": "khan/math/geometry/right_triangles_topic/pythagorean_proofs/pythagorean-theorem-proof-using-similarity/", "slug": "pythagorean-theorem-proof-using-similarity", "kind": "Video", "video_id": "LrS5_l-gk94", "keywords": "Pythagorean, Theorem, Proof, Using, Similarity", "youtube_id": "LrS5_l-gk94", "readable_id": "pythagorean-theorem-proof-using-similarity"}, "sTw0e-hwYAQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sTw0e-hwYAQ.mp4/sTw0e-hwYAQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sTw0e-hwYAQ.mp4/sTw0e-hwYAQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sTw0e-hwYAQ.m3u8/sTw0e-hwYAQ.m3u8"}, "duration": 560, "id": "sTw0e-hwYAQ", "title": "Keynesian cross", "format": "mp4", "description": "Analyzing planned expenditures versus actual output using the Keynesian Cross", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/keynesian-cross-tutorial/keynesian-cross/", "slug": "keynesian-cross", "kind": "Video", "video_id": "sTw0e-hwYAQ", "keywords": "macroeconomics, keynes", "youtube_id": "sTw0e-hwYAQ", "readable_id": "keynesian-cross"}, "3JmnxR8nEi8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3JmnxR8nEi8.mp4/3JmnxR8nEi8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3JmnxR8nEi8.mp4/3JmnxR8nEi8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3JmnxR8nEi8.m3u8/3JmnxR8nEi8.m3u8"}, "duration": 418, "id": "3JmnxR8nEi8", "title": "Multiplying: 2 digits numbers (using distributive property)", "format": "mp4", "description": "This is a fun way to solve this multiplication problem. Putting the distributive property to work! Cool.", "path": "2-digit-multiplication-with-grid/", "slug": "2-digit-multiplication-with-grid", "kind": "Video", "video_id": "3JmnxR8nEi8", "keywords": "", "youtube_id": "3JmnxR8nEi8", "readable_id": "2-digit-multiplication-with-grid"}, "Gst4ys6eusM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gst4ys6eusM.mp4/Gst4ys6eusM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gst4ys6eusM.mp4/Gst4ys6eusM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gst4ys6eusM.m3u8/Gst4ys6eusM.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-16/", "duration": 293, "id": "Gst4ys6eusM", "title": "16 Compound inequality with absolute value", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-16", "kind": "Video", "video_id": "Gst4ys6eusM", "keywords": "", "youtube_id": "Gst4ys6eusM", "readable_id": "2013-sat-practice-6-16"}, "Qc9VsH11nzk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qc9VsH11nzk.mp4/Qc9VsH11nzk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qc9VsH11nzk.mp4/Qc9VsH11nzk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qc9VsH11nzk.m3u8/Qc9VsH11nzk.m3u8"}, "duration": 52, "id": "Qc9VsH11nzk", "title": "Discovery of triboelectric effect", "format": "mp4", "description": "Our ancestors noticed that when amber was rubbed against fur it attracted small objects...why is this?", "path": "khan/science/discoveries-projects/discoveries/electrostatics/discovery-of-electrostatics/", "slug": "discovery-of-electrostatics", "kind": "Video", "video_id": "Qc9VsH11nzk", "keywords": "electrostatics", "youtube_id": "Qc9VsH11nzk", "readable_id": "discovery-of-electrostatics"}, "gs3fWMI3nFA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gs3fWMI3nFA.mp4/gs3fWMI3nFA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gs3fWMI3nFA.mp4/gs3fWMI3nFA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gs3fWMI3nFA.m3u8/gs3fWMI3nFA.m3u8"}, "path": "khan/humanities/art-asia/himalayas/nepal/secrets-of-the-stupa/", "duration": 424, "id": "gs3fWMI3nFA", "title": "Secrets of the stupa", "format": "mp4", "description": "Jeffrey Durham, Assistant Curator of Himalayan Art at the Asian Art Museum, discusses the secrets of the Svayambhu stupa in the Asian Art Museum's collection. For more information on the Svayambhu stupa: education.asianart.org", "slug": "secrets-of-the-stupa", "kind": "Video", "video_id": "gs3fWMI3nFA", "keywords": "", "youtube_id": "gs3fWMI3nFA", "readable_id": "secrets-of-the-stupa"}, "zqGvUbvVQXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zqGvUbvVQXg.mp4/zqGvUbvVQXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zqGvUbvVQXg.mp4/zqGvUbvVQXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zqGvUbvVQXg.m3u8/zqGvUbvVQXg.m3u8"}, "duration": 535, "id": "zqGvUbvVQXg", "title": "Voltage", "format": "mp4", "description": "Difference between electrical potential (voltage) and electrical potential energy", "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/voltage/", "slug": "voltage", "kind": "Video", "video_id": "zqGvUbvVQXg", "keywords": "volts, voltage", "youtube_id": "zqGvUbvVQXg", "readable_id": "voltage"}, "XMwnJUprid8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XMwnJUprid8.mp4/XMwnJUprid8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XMwnJUprid8.mp4/XMwnJUprid8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XMwnJUprid8.m3u8/XMwnJUprid8.m3u8"}, "duration": 197, "id": "XMwnJUprid8", "title": "Inverse property of multiplication", "format": "mp4", "description": "Simple idea that multiplying by a numbers multiplicative inverse gets you back to one", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/inverse-property-of-multiplication/", "slug": "inverse-property-of-multiplication", "kind": "Video", "video_id": "XMwnJUprid8", "keywords": "Inverse, Property, of, Multiplication", "youtube_id": "XMwnJUprid8", "readable_id": "inverse-property-of-multiplication"}, "Fp7d-NmKN5M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Fp7d-NmKN5M.mp4/Fp7d-NmKN5M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Fp7d-NmKN5M.mp4/Fp7d-NmKN5M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Fp7d-NmKN5M.m3u8/Fp7d-NmKN5M.m3u8"}, "path": "khan/college-admissions/making-high-school-count/standardized-tests/facing-the-standardized-tests/", "duration": 90, "id": "Fp7d-NmKN5M", "title": "Facing the standardized tests", "format": "mp4", "description": "", "slug": "facing-the-standardized-tests", "kind": "Video", "video_id": "Fp7d-NmKN5M", "keywords": "", "youtube_id": "Fp7d-NmKN5M", "readable_id": "facing-the-standardized-tests"}, "uUhBEufepWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uUhBEufepWk.mp4/uUhBEufepWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uUhBEufepWk.mp4/uUhBEufepWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uUhBEufepWk.m3u8/uUhBEufepWk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/current-and-resistance/electrolytic-conductivity/", "duration": 239, "id": "uUhBEufepWk", "title": "Electrolytic conductivity", "format": "mp4", "description": "", "slug": "electrolytic-conductivity", "kind": "Video", "video_id": "uUhBEufepWk", "keywords": "", "youtube_id": "uUhBEufepWk", "readable_id": "electrolytic-conductivity"}, "okXVhDMuGFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/okXVhDMuGFg.mp4/okXVhDMuGFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/okXVhDMuGFg.mp4/okXVhDMuGFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/okXVhDMuGFg.m3u8/okXVhDMuGFg.m3u8"}, "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/equation-for-parabola-from-focus-and-directrix/", "duration": 588, "id": "okXVhDMuGFg", "title": "Equation for parabola from focus and directrix", "format": "mp4", "description": "", "slug": "equation-for-parabola-from-focus-and-directrix", "kind": "Video", "video_id": "okXVhDMuGFg", "keywords": "", "youtube_id": "okXVhDMuGFg", "readable_id": "equation-for-parabola-from-focus-and-directrix"}, "xGBA1_VVvGI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xGBA1_VVvGI.mp4/xGBA1_VVvGI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xGBA1_VVvGI.mp4/xGBA1_VVvGI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xGBA1_VVvGI.m3u8/xGBA1_VVvGI.m3u8"}, "duration": 534, "id": "xGBA1_VVvGI", "title": "Pollution", "format": "mp4", "description": "", "path": "crash-course-ecology-11/", "slug": "crash-course-ecology-11", "kind": "Video", "video_id": "xGBA1_VVvGI", "keywords": "", "youtube_id": "xGBA1_VVvGI", "readable_id": "crash-course-ecology-11"}, "yAQSucmHrAk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yAQSucmHrAk.mp4/yAQSucmHrAk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yAQSucmHrAk.mp4/yAQSucmHrAk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yAQSucmHrAk.m3u8/yAQSucmHrAk.m3u8"}, "duration": 373, "id": "yAQSucmHrAk", "title": "The mohorovicic seismic discontinuity", "format": "mp4", "description": "The Mohorovicic Seismic Discontinuity- boundary between crust and mantle (or Moho)", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/seismic-waves-tutorial/the-mohorovicic-seismic-discontinuity/", "slug": "the-mohorovicic-seismic-discontinuity", "kind": "Video", "video_id": "yAQSucmHrAk", "keywords": "geology, seismology, moho", "youtube_id": "yAQSucmHrAk", "readable_id": "the-mohorovicic-seismic-discontinuity"}, "i6LY9q9UIas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i6LY9q9UIas.mp4/i6LY9q9UIas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i6LY9q9UIas.mp4/i6LY9q9UIas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i6LY9q9UIas.m3u8/i6LY9q9UIas.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/memory/retrieval-free-recall-cued-recall-and-recognition/", "duration": 265, "id": "i6LY9q9UIas", "title": "Retrieval: Free recall, cued recall, and recognition", "format": "mp4", "description": "Learn about three types of retrieval: free recall, cued recall, and recognition.", "slug": "retrieval-free-recall-cued-recall-and-recognition", "kind": "Video", "video_id": "i6LY9q9UIas", "keywords": "", "youtube_id": "i6LY9q9UIas", "readable_id": "retrieval-free-recall-cued-recall-and-recognition"}, "AgPpM4jqkxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AgPpM4jqkxU.mp4/AgPpM4jqkxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AgPpM4jqkxU.mp4/AgPpM4jqkxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AgPpM4jqkxU.m3u8/AgPpM4jqkxU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/diagnosing-strokes-with-lab-tests/", "duration": 380, "id": "AgPpM4jqkxU", "title": "Diagnosing strokes with lab tests", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diagnosing-strokes-with-lab-tests", "kind": "Video", "video_id": "AgPpM4jqkxU", "keywords": "", "youtube_id": "AgPpM4jqkxU", "readable_id": "diagnosing-strokes-with-lab-tests"}, "dAOWQC-OBv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dAOWQC-OBv0.mp4/dAOWQC-OBv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dAOWQC-OBv0.mp4/dAOWQC-OBv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dAOWQC-OBv0.m3u8/dAOWQC-OBv0.m3u8"}, "path": "khan/test-prep/mcat/cells/embryology/early-embryogenesis-cleavage-blastulation-gastrulation-and-neurulation/", "duration": 740, "id": "dAOWQC-OBv0", "title": "Early embryogenesis - Cleavage, blastulation, gastrulation, and neurulation", "format": "mp4", "description": "", "slug": "early-embryogenesis-cleavage-blastulation-gastrulation-and-neurulation", "kind": "Video", "video_id": "dAOWQC-OBv0", "keywords": "", "youtube_id": "dAOWQC-OBv0", "readable_id": "early-embryogenesis-cleavage-blastulation-gastrulation-and-neurulation"}, "TcIDXqmt74A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TcIDXqmt74A.mp4/TcIDXqmt74A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TcIDXqmt74A.mp4/TcIDXqmt74A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TcIDXqmt74A.m3u8/TcIDXqmt74A.m3u8"}, "duration": 738, "id": "TcIDXqmt74A", "title": "Difference of sample means distribution", "format": "mp4", "description": "Difference of Sample Means Distribution", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/difference-of-sample-means-distribution/", "slug": "difference-of-sample-means-distribution", "kind": "Video", "video_id": "TcIDXqmt74A", "keywords": "Difference, of, Sample, Means, Distribution", "youtube_id": "TcIDXqmt74A", "readable_id": "difference-of-sample-means-distribution"}, "5YaSL-y46Hk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5YaSL-y46Hk.mp4/5YaSL-y46Hk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5YaSL-y46Hk.mp4/5YaSL-y46Hk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5YaSL-y46Hk.m3u8/5YaSL-y46Hk.m3u8"}, "duration": 224, "id": "5YaSL-y46Hk", "title": "Contango and backwardation review", "format": "mp4", "description": "Review of the difference uses of the words contango, backwardation, contango theory and theory of normal backwardation", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/contango-and-backwardation-review/", "slug": "contango-and-backwardation-review", "kind": "Video", "video_id": "5YaSL-y46Hk", "keywords": "contango, backwardation, normal, theory", "youtube_id": "5YaSL-y46Hk", "readable_id": "contango-and-backwardation-review"}, "U9dGHwsewNk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U9dGHwsewNk.mp4/U9dGHwsewNk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U9dGHwsewNk.mp4/U9dGHwsewNk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U9dGHwsewNk.m3u8/U9dGHwsewNk.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/elimination-reactions-tutorial/e1-reactions/", "duration": 562, "id": "U9dGHwsewNk", "title": "E1 reactions", "format": "mp4", "description": "E1 Elimination Reactions", "slug": "e1-reactions", "kind": "Video", "video_id": "U9dGHwsewNk", "keywords": "E1, Reactions, Elimination, Organic, Chemistry", "youtube_id": "U9dGHwsewNk", "readable_id": "e1-reactions"}, "Ve99biD1KtA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ve99biD1KtA.mp4/Ve99biD1KtA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ve99biD1KtA.mp4/Ve99biD1KtA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ve99biD1KtA.m3u8/Ve99biD1KtA.m3u8"}, "path": "khan/math/differential-calculus/limits_topic/squeeze_theorem/proof-lim-sin-x-x/", "duration": 1085, "id": "Ve99biD1KtA", "title": "Proof: lim (sin x)/x", "format": "mp4", "description": "Using the squeeze theorem to prove that the limit as x approaches 0 of (sin x)/x =1", "slug": "proof-lim-sin-x-x", "kind": "Video", "video_id": "Ve99biD1KtA", "keywords": "calculus, limit, squeeze, sin", "youtube_id": "Ve99biD1KtA", "readable_id": "proof-lim-sin-x-x"}, "1bj7FPzUiWc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1bj7FPzUiWc.mp4/1bj7FPzUiWc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1bj7FPzUiWc.mp4/1bj7FPzUiWc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1bj7FPzUiWc.m3u8/1bj7FPzUiWc.m3u8"}, "duration": 713, "id": "1bj7FPzUiWc", "title": "GMAT: Math 39", "format": "mp4", "description": "195-197, pgs. 178-179", "path": "khan/test-prep/gmat/problem-solving/gmat-math-39/", "slug": "gmat-math-39", "kind": "Video", "video_id": "1bj7FPzUiWc", "keywords": "gmat, math, problem, solving", "youtube_id": "1bj7FPzUiWc", "readable_id": "gmat-math-39"}, "EC2mgUZyzoA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EC2mgUZyzoA.mp4/EC2mgUZyzoA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EC2mgUZyzoA.mp4/EC2mgUZyzoA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EC2mgUZyzoA.m3u8/EC2mgUZyzoA.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/matrix-equations/matrix-equations-systems/", "duration": 595, "id": "EC2mgUZyzoA", "title": "Matrix equations and systems", "format": "mp4", "description": "", "slug": "matrix-equations-systems", "kind": "Video", "video_id": "EC2mgUZyzoA", "keywords": "", "youtube_id": "EC2mgUZyzoA", "readable_id": "matrix-equations-systems"}, "m0SFJt_0v28": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m0SFJt_0v28.mp4/m0SFJt_0v28.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m0SFJt_0v28.mp4/m0SFJt_0v28.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m0SFJt_0v28.m3u8/m0SFJt_0v28.m3u8"}, "duration": 273, "id": "m0SFJt_0v28", "title": "Electrodes and voltage of Galvanic cell", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/electrodes-and-voltage-of-galvanic-cell/", "slug": "electrodes-and-voltage-of-galvanic-cell", "kind": "Video", "video_id": "m0SFJt_0v28", "keywords": "", "youtube_id": "m0SFJt_0v28", "readable_id": "electrodes-and-voltage-of-galvanic-cell"}, "3z-M6sbGIZ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3z-M6sbGIZ0.mp4/3z-M6sbGIZ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3z-M6sbGIZ0.mp4/3z-M6sbGIZ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3z-M6sbGIZ0.m3u8/3z-M6sbGIZ0.m3u8"}, "duration": 661, "id": "3z-M6sbGIZ0", "title": "Poisson process 1", "format": "mp4", "description": "Introduction to Poisson Processes and the Poisson Distribution.", "path": "khan/math/probability/random-variables-topic/poisson_process/poisson-process-1/", "slug": "poisson-process-1", "kind": "Video", "video_id": "3z-M6sbGIZ0", "keywords": "probability, poisson, process, distribution", "youtube_id": "3z-M6sbGIZ0", "readable_id": "poisson-process-1"}, "9ThXDY9Y3oU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9ThXDY9Y3oU.mp4/9ThXDY9Y3oU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9ThXDY9Y3oU.mp4/9ThXDY9Y3oU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9ThXDY9Y3oU.m3u8/9ThXDY9Y3oU.m3u8"}, "duration": 557, "id": "9ThXDY9Y3oU", "title": "Similar triangle basics", "format": "mp4", "description": "Introduction to what it means for triangles to be similar", "path": "khan/math/geometry/similarity/triangle_similarlity/similar-triangle-basics/", "slug": "similar-triangle-basics", "kind": "Video", "video_id": "9ThXDY9Y3oU", "keywords": "geometry", "youtube_id": "9ThXDY9Y3oU", "readable_id": "similar-triangle-basics"}, "JbfVrwxuPxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JbfVrwxuPxM.mp4/JbfVrwxuPxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JbfVrwxuPxM.mp4/JbfVrwxuPxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JbfVrwxuPxM.m3u8/JbfVrwxuPxM.m3u8"}, "duration": 285, "id": "JbfVrwxuPxM", "title": "Connecting the first and second fundamental theorems of calculus", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/definite_integrals/connecting-the-first-and-second-fundamental-theorems-of-calculus/", "slug": "connecting-the-first-and-second-fundamental-theorems-of-calculus", "kind": "Video", "video_id": "JbfVrwxuPxM", "keywords": "", "youtube_id": "JbfVrwxuPxM", "readable_id": "connecting-the-first-and-second-fundamental-theorems-of-calculus"}, "D5ymMYcLtv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D5ymMYcLtv0.mp4/D5ymMYcLtv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D5ymMYcLtv0.mp4/D5ymMYcLtv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D5ymMYcLtv0.m3u8/D5ymMYcLtv0.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/punnett-square-fun/", "duration": 1516, "id": "D5ymMYcLtv0", "title": "Punnett square fun", "format": "mp4", "description": "Dihybrid crosses. Independent assortment. Incomplete dominance. Codominance and multiple alleles.", "slug": "punnett-square-fun", "kind": "Video", "video_id": "D5ymMYcLtv0", "keywords": "biology, heredity, genetics, genotype, phenotype, dominant, recessive", "youtube_id": "D5ymMYcLtv0", "readable_id": "punnett-square-fun"}, "VMwa6yC3r-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VMwa6yC3r-s.mp4/VMwa6yC3r-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VMwa6yC3r-s.mp4/VMwa6yC3r-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VMwa6yC3r-s.m3u8/VMwa6yC3r-s.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/bloodvessels/layers-of-a-blood-vessel/", "duration": 611, "id": "VMwa6yC3r-s", "title": "Layers of a blood vessel", "format": "mp4", "description": "Remember the 3 key layers of a blood vessel (Tunica intima, Tunica media, and Tunica externa) and how arteries, veins, and capillaries are all different from one another. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "layers-of-a-blood-vessel", "kind": "Video", "video_id": "VMwa6yC3r-s", "keywords": "", "youtube_id": "VMwa6yC3r-s", "readable_id": "layers-of-a-blood-vessel"}, "ViAmQivKif0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ViAmQivKif0.mp4/ViAmQivKif0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ViAmQivKif0.mp4/ViAmQivKif0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ViAmQivKif0.m3u8/ViAmQivKif0.m3u8"}, "duration": 1060, "id": "ViAmQivKif0", "title": "Gibbs free energy and spontaneity", "format": "mp4", "description": "Intuition behind why spontaneity is driven by enthalpy, entropy and temperature. Introduction to Gibbs free energy.", "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/gibbs-free-energy-and-spontaneity/", "slug": "gibbs-free-energy-and-spontaneity", "kind": "Video", "video_id": "ViAmQivKif0", "keywords": "gibbs, free, energy, chemistry, thermodynamics", "youtube_id": "ViAmQivKif0", "readable_id": "gibbs-free-energy-and-spontaneity"}, "5CeBlu260Rw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5CeBlu260Rw.mp4/5CeBlu260Rw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5CeBlu260Rw.mp4/5CeBlu260Rw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5CeBlu260Rw.m3u8/5CeBlu260Rw.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/quadrilateral-properties/", "duration": 307, "id": "5CeBlu260Rw", "title": "Quadrilateral properties", "format": "mp4", "description": "How about this: we are given a 4-sided shape and asked to determine whether its properties qualify it to be called a quadrilateral (or category of quadrilaterals). Check it out.", "slug": "quadrilateral-properties", "kind": "Video", "video_id": "5CeBlu260Rw", "keywords": "u07_l2_t1_we1, Quadrilateral, Properties", "youtube_id": "5CeBlu260Rw", "readable_id": "quadrilateral-properties"}, "ao9cx8JlJIU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ao9cx8JlJIU.mp4/ao9cx8JlJIU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ao9cx8JlJIU.mp4/ao9cx8JlJIU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ao9cx8JlJIU.m3u8/ao9cx8JlJIU.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/interpreting-linear-expressions-example/", "duration": 112, "id": "ao9cx8JlJIU", "title": "Interpreting linear expressions, 1", "format": "mp4", "description": "We match the expressions to their meaning in this example. We're reinforcing our knowledge of linear expressions.", "slug": "interpreting-linear-expressions-example", "kind": "Video", "video_id": "ao9cx8JlJIU", "keywords": "", "youtube_id": "ao9cx8JlJIU", "readable_id": "interpreting-linear-expressions-example"}, "FEYN0jK1-pI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FEYN0jK1-pI.mp4/FEYN0jK1-pI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FEYN0jK1-pI.mp4/FEYN0jK1-pI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FEYN0jK1-pI.m3u8/FEYN0jK1-pI.m3u8"}, "duration": 645, "id": "FEYN0jK1-pI", "title": "GMAT: Math 35", "format": "mp4", "description": "177-180, pg. 176", "path": "khan/test-prep/gmat/problem-solving/gmat-math-35/", "slug": "gmat-math-35", "kind": "Video", "video_id": "FEYN0jK1-pI", "keywords": "gmat, math, problem, solving", "youtube_id": "FEYN0jK1-pI", "readable_id": "gmat-math-35"}, "_qzs1zozTBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_qzs1zozTBo.mp4/_qzs1zozTBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_qzs1zozTBo.mp4/_qzs1zozTBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_qzs1zozTBo.m3u8/_qzs1zozTBo.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/rounding_whole_numbers/rounding-whole-numbers-1/", "duration": 263, "id": "_qzs1zozTBo", "title": "Rounding whole numbers example 1", "format": "mp4", "description": "Here's a whole numbers rounding exercise. Let's do this example together.", "slug": "rounding-whole-numbers-1", "kind": "Video", "video_id": "_qzs1zozTBo", "keywords": "U01_L1_T2_we1, Rounding, Whole, Numbers, CC_3_NBT_1, CC_3_OA_8, CC_4_NBT_3, CC_4_OA_3", "youtube_id": "_qzs1zozTBo", "readable_id": "rounding-whole-numbers-1"}, "qv7DM5Ph0vU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qv7DM5Ph0vU.mp4/qv7DM5Ph0vU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qv7DM5Ph0vU.mp4/qv7DM5Ph0vU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qv7DM5Ph0vU.m3u8/qv7DM5Ph0vU.m3u8"}, "duration": 232, "id": "qv7DM5Ph0vU", "title": "Introduction to improper integrals", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/improper-integrals-tutorial/introduction-to-improper-integrals/", "slug": "introduction-to-improper-integrals", "kind": "Video", "video_id": "qv7DM5Ph0vU", "keywords": "", "youtube_id": "qv7DM5Ph0vU", "readable_id": "introduction-to-improper-integrals"}, "286FiUvOeFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/286FiUvOeFs.mp4/286FiUvOeFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/286FiUvOeFs.mp4/286FiUvOeFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/286FiUvOeFs.m3u8/286FiUvOeFs.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/cubism/picasso-still-life-with-chair-caning-1912/", "duration": 816, "id": "286FiUvOeFs", "title": "Picasso, Still Life with Chair Caning", "format": "mp4", "description": "Picasso, Still-Life with Chair Caning, 1912 (Mus\u00e9e Picasso)", "slug": "picasso-still-life-with-chair-caning-1912", "kind": "Video", "video_id": "286FiUvOeFs", "keywords": "picasso, Still-Life, Smarthistory, Art History", "youtube_id": "286FiUvOeFs", "readable_id": "picasso-still-life-with-chair-caning-1912"}, "psyWUUkI-aw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/psyWUUkI-aw.mp4/psyWUUkI-aw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/psyWUUkI-aw.mp4/psyWUUkI-aw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/psyWUUkI-aw.m3u8/psyWUUkI-aw.m3u8"}, "duration": 172, "id": "psyWUUkI-aw", "title": "Number sets 3", "format": "mp4", "description": "Number Sets 3", "path": "khan/math/pre-algebra/fractions-pre-alg/number-sets-pre-alg/number-sets-3/", "slug": "number-sets-3", "kind": "Video", "video_id": "psyWUUkI-aw", "keywords": "U12_L1_T1_we3, Number, Sets, CC_6_NS_6, CC_6_NS_6_c, CC_8_NS_1", "youtube_id": "psyWUUkI-aw", "readable_id": "number-sets-3"}, "iCmtnhPs7TI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iCmtnhPs7TI.mp4/iCmtnhPs7TI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iCmtnhPs7TI.mp4/iCmtnhPs7TI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iCmtnhPs7TI.m3u8/iCmtnhPs7TI.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/michael-rakowitz/", "duration": 274, "id": "iCmtnhPs7TI", "title": "Michael Rakowitz on Star Wars and Saddam Hussein", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn this video, artist Michael Rakowitz explores seemingly implausible connections and contradictions between objects and events. In his 2010 exhibition The worst condition is to pass under a sword which is not one\u2019s own, Rakowitz explores the unexpected links between Western science fiction and fantasy and the design of weapons, uniforms, and monuments under the regime of Saddam Hussein in Iraq.\n\nThe project explores how images and idea from popular culture have become powerful contemporary mythologies, creating a world in which fictional characters coexist with and inform even the most radical historical figures. What kind of effect do these strange juxtapositions have? Could they make an extreme figure more relatable?\n", "slug": "michael-rakowitz", "kind": "Video", "video_id": "iCmtnhPs7TI", "keywords": "Tate", "youtube_id": "iCmtnhPs7TI", "readable_id": "michael-rakowitz"}, "soUmhhuF08Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/soUmhhuF08Y.mp4/soUmhhuF08Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/soUmhhuF08Y.mp4/soUmhhuF08Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/soUmhhuF08Y.m3u8/soUmhhuF08Y.m3u8"}, "duration": 133, "id": "soUmhhuF08Y", "title": "New operator definitions 2", "format": "mp4", "description": "Worked examples of working with newly defined operators", "path": "khan/math/algebra2/functions_and_graphs/new_operators/new-definitions-2/", "slug": "new-definitions-2", "kind": "Video", "video_id": "soUmhhuF08Y", "keywords": "", "youtube_id": "soUmhhuF08Y", "readable_id": "new-definitions-2"}, "2eLAEMRrR7Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2eLAEMRrR7Q.mp4/2eLAEMRrR7Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2eLAEMRrR7Q.mp4/2eLAEMRrR7Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2eLAEMRrR7Q.m3u8/2eLAEMRrR7Q.m3u8"}, "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-15-part-1/", "duration": 714, "id": "2eLAEMRrR7Q", "title": "2003 AIME II problem 15 (part 1)", "format": "mp4", "description": "Finding the sum of the absolute value of the imaginary parts of the square of the roots of a crazy polynomial", "slug": "2003-aime-ii-problem-15-part-1", "kind": "Video", "video_id": "2eLAEMRrR7Q", "keywords": "complex, analysis, trigonometry, competition, math", "youtube_id": "2eLAEMRrR7Q", "readable_id": "2003-aime-ii-problem-15-part-1"}, "sBldw95xMD4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sBldw95xMD4.mp4/sBldw95xMD4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sBldw95xMD4.mp4/sBldw95xMD4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sBldw95xMD4.m3u8/sBldw95xMD4.m3u8"}, "duration": 465, "id": "sBldw95xMD4", "title": "Position vector valued functions", "format": "mp4", "description": "Using a position vector valued function to describe a curve or path", "path": "khan/math/multivariable-calculus/line_integrals_topic/position_vector_functions/position-vector-valued-functions/", "slug": "position-vector-valued-functions", "kind": "Video", "video_id": "sBldw95xMD4", "keywords": "vector, valued, function, line, integral", "youtube_id": "sBldw95xMD4", "readable_id": "position-vector-valued-functions"}, "65Xr4AdAY2A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/65Xr4AdAY2A.mp4/65Xr4AdAY2A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/65Xr4AdAY2A.mp4/65Xr4AdAY2A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/65Xr4AdAY2A.m3u8/65Xr4AdAY2A.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/roverupdate_march/", "duration": 152, "id": "65Xr4AdAY2A", "title": "Results of first drilling", "format": "mp4", "description": "Minerals present in the drill sample provided evidence of a previously habitable environment.", "slug": "roverupdate_march", "kind": "Video", "video_id": "65Xr4AdAY2A", "keywords": "", "youtube_id": "65Xr4AdAY2A", "readable_id": "roverupdate_march"}, "hiqlCBH-5C0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hiqlCBH-5C0.mp4/hiqlCBH-5C0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hiqlCBH-5C0.mp4/hiqlCBH-5C0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hiqlCBH-5C0.m3u8/hiqlCBH-5C0.m3u8"}, "duration": 32, "id": "hiqlCBH-5C0", "title": "Did dinosaurs fight?", "format": "mp4", "description": "Most vertebrates engage in combat either over territory, mates, or food. It's not surprising that dinosaurs did, too, especially since we can observe combat in the closest living relatives of extinct dinosaurs, crocodiles and birds.\u00a0One 65-million-year-old skeleton of Tyrannosaurus rex discovered in South Dakota has telltale battle scars. One eye socket in the skull is nearly closed by abnormal healing of the surrounding bone. On another part of the skull, the broken tip of a tooth from another tyrannosaur in embedded. Around this tooth are the characteristic marks of bone growth that occurs during healing, indicating that the animal survived the attack.", "path": "did-dinosaurs-fight/", "slug": "did-dinosaurs-fight", "kind": "Video", "video_id": "hiqlCBH-5C0", "keywords": "", "youtube_id": "hiqlCBH-5C0", "readable_id": "did-dinosaurs-fight"}, "IyoUWRAharQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IyoUWRAharQ.mp4/IyoUWRAharQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IyoUWRAharQ.mp4/IyoUWRAharQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IyoUWRAharQ.m3u8/IyoUWRAharQ.m3u8"}, "path": "khan/humanities/history/euro-hist/world-war-i-tutorial/empires-before-world-war-i/", "duration": 457, "id": "IyoUWRAharQ", "title": "Empires before World War I", "format": "mp4", "description": "Austria-Hungary. Ottoman empire. British, German, French and Russian empires.", "slug": "empires-before-world-war-i", "kind": "Video", "video_id": "IyoUWRAharQ", "keywords": "", "youtube_id": "IyoUWRAharQ", "readable_id": "empires-before-world-war-i"}, "GWZKz4F9hWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GWZKz4F9hWM.mp4/GWZKz4F9hWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GWZKz4F9hWM.mp4/GWZKz4F9hWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GWZKz4F9hWM.m3u8/GWZKz4F9hWM.m3u8"}, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/practice-using-substitution-for-systems/", "duration": 261, "id": "GWZKz4F9hWM", "title": "Solving systems of linear equations with substitution example", "format": "mp4", "description": "", "slug": "practice-using-substitution-for-systems", "kind": "Video", "video_id": "GWZKz4F9hWM", "keywords": "", "youtube_id": "GWZKz4F9hWM", "readable_id": "practice-using-substitution-for-systems"}, "MJBjGnR6vlk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MJBjGnR6vlk.mp4/MJBjGnR6vlk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MJBjGnR6vlk.mp4/MJBjGnR6vlk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MJBjGnR6vlk.m3u8/MJBjGnR6vlk.m3u8"}, "path": "khan/math/trigonometry/trig-function-graphs/modeling-periodic-functions/modeling-periodic-function-with-shift/", "duration": 463, "id": "MJBjGnR6vlk", "title": "Day length in Alaska", "format": "mp4", "description": "", "slug": "modeling-periodic-function-with-shift", "kind": "Video", "video_id": "MJBjGnR6vlk", "keywords": "", "youtube_id": "MJBjGnR6vlk", "readable_id": "modeling-periodic-function-with-shift"}, "NhllG85qiwg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NhllG85qiwg.mp4/NhllG85qiwg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NhllG85qiwg.mp4/NhllG85qiwg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NhllG85qiwg.m3u8/NhllG85qiwg.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/moma-dechirico-anxiousjourney/", "duration": 159, "id": "NhllG85qiwg", "title": "Giorgio de Chirico, \"The Anxious Journey\"", "format": "mp4", "description": "To learn more about how abstract artists became the radical thinkers of their time, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art.", "slug": "moma-dechirico-anxiousjourney", "kind": "Video", "video_id": "NhllG85qiwg", "keywords": "", "youtube_id": "NhllG85qiwg", "readable_id": "moma-dechirico-anxiousjourney"}, "Frpq_A7Ky_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Frpq_A7Ky_Q.mp4/Frpq_A7Ky_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Frpq_A7Ky_Q.mp4/Frpq_A7Ky_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Frpq_A7Ky_Q.m3u8/Frpq_A7Ky_Q.m3u8"}, "duration": 361, "id": "Frpq_A7Ky_Q", "title": "Appomattox court house and Lincoln's assassination", "format": "mp4", "description": "From Lee's Surrender to Grant to Lincoln's Assassination", "path": "khan/humanities/history/history-survey/us-history/appomattox-court-house-and-lincoln-s-assassination/", "slug": "appomattox-court-house-and-lincoln-s-assassination", "kind": "Video", "video_id": "Frpq_A7Ky_Q", "keywords": "civil, war, history, marquee", "youtube_id": "Frpq_A7Ky_Q", "readable_id": "appomattox-court-house-and-lincoln-s-assassination"}, "2oGsLdAWxlk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2oGsLdAWxlk.mp4/2oGsLdAWxlk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2oGsLdAWxlk.mp4/2oGsLdAWxlk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2oGsLdAWxlk.m3u8/2oGsLdAWxlk.m3u8"}, "duration": 366, "id": "2oGsLdAWxlk", "title": "Graphing inequalities 1", "format": "mp4", "description": "Graphing Inequalities", "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphing-inequalities-1/", "slug": "graphing-inequalities-1", "kind": "Video", "video_id": "2oGsLdAWxlk", "keywords": "u13_l2_t4_we1, Graphing, Inequalities, CC_6_EE_5, CC_39336_A-REI_12", "youtube_id": "2oGsLdAWxlk", "readable_id": "graphing-inequalities-1"}, "HiNrFT280_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HiNrFT280_Y.mp4/HiNrFT280_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HiNrFT280_Y.mp4/HiNrFT280_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HiNrFT280_Y.m3u8/HiNrFT280_Y.m3u8"}, "duration": 174, "id": "HiNrFT280_Y", "title": "Multiplying fractions and whole numbers: two approaches", "format": "mp4", "description": "When faced with multiplying whole numbers and fractions, understanding these two approaches will help solve the problem.", "path": "concept-fraction-whole-number-product/", "slug": "concept-fraction-whole-number-product", "kind": "Video", "video_id": "HiNrFT280_Y", "keywords": "", "youtube_id": "HiNrFT280_Y", "readable_id": "concept-fraction-whole-number-product"}, "tUOKkeEOkXk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tUOKkeEOkXk.mp4/tUOKkeEOkXk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tUOKkeEOkXk.mp4/tUOKkeEOkXk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tUOKkeEOkXk.m3u8/tUOKkeEOkXk.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/michelangelo/michelangelo-laurentian-library-1524-71/", "duration": 478, "id": "tUOKkeEOkXk", "title": "Michelangelo, Laurentian Library", "format": "mp4", "description": "Michelangelo, Laurentian Library (vestibule and reading room), begun 1524, opened 1571, \nSan Lorenzo, Florence", "slug": "michelangelo-laurentian-library-1524-71", "kind": "Video", "video_id": "tUOKkeEOkXk", "keywords": "Michelangelo, Laurentian, Library, vestibule, reading room, 1524, San Lorenzo, Florence, High Renaissance, Mannerism, architecture", "youtube_id": "tUOKkeEOkXk", "readable_id": "michelangelo-laurentian-library-1524-71"}, "c_8QQbVQKU0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c_8QQbVQKU0.mp4/c_8QQbVQKU0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c_8QQbVQKU0.mp4/c_8QQbVQKU0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c_8QQbVQKU0.m3u8/c_8QQbVQKU0.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/tangent-line-hyperbola-relationship-very-optional/", "duration": 604, "id": "c_8QQbVQKU0", "title": "Tangent line hyperbola relationship (very optional)", "format": "mp4", "description": "How a tangent line relates to a hyperbola. Might be useful for some competitive exams where there isn't time to derive (like we are doing in this video)", "slug": "tangent-line-hyperbola-relationship-very-optional", "kind": "Video", "video_id": "c_8QQbVQKU0", "keywords": "hyperbola, tangent, line, conic, section", "youtube_id": "c_8QQbVQKU0", "readable_id": "tangent-line-hyperbola-relationship-very-optional"}, "v8ODIMqbQ44": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v8ODIMqbQ44.mp4/v8ODIMqbQ44.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v8ODIMqbQ44.mp4/v8ODIMqbQ44.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v8ODIMqbQ44.m3u8/v8ODIMqbQ44.m3u8"}, "duration": 521, "id": "v8ODIMqbQ44", "title": "Force of friction keeping the block stationary", "format": "mp4", "description": "Block of wood kept stationary by the force of friction (Correction made in next video)", "path": "khan/test-prep/mcat/physical-processes/forces-on-inclined-planes/force-of-friction-keeping-the-block-stationary/", "slug": "force-of-friction-keeping-the-block-stationary", "kind": "Video", "video_id": "v8ODIMqbQ44", "keywords": "physics, friction, static, coefficient, mechanics, statics", "youtube_id": "v8ODIMqbQ44", "readable_id": "force-of-friction-keeping-the-block-stationary"}, "boH4l1SgJbM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/boH4l1SgJbM.mp4/boH4l1SgJbM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/boH4l1SgJbM.mp4/boH4l1SgJbM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/boH4l1SgJbM.m3u8/boH4l1SgJbM.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinations/handshaking-combinations/", "duration": 449, "id": "boH4l1SgJbM", "title": "Handshaking combinations", "format": "mp4", "description": "", "slug": "handshaking-combinations", "kind": "Video", "video_id": "boH4l1SgJbM", "keywords": "", "youtube_id": "boH4l1SgJbM", "readable_id": "handshaking-combinations"}, "K759mIqpvOU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K759mIqpvOU.mp4/K759mIqpvOU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K759mIqpvOU.mp4/K759mIqpvOU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K759mIqpvOU.m3u8/K759mIqpvOU.m3u8"}, "duration": 654, "id": "K759mIqpvOU", "title": "Interpreting absolute value as distance", "format": "mp4", "description": "In this video, we work through a bunch of examples that stretch our thinking on absolute value.", "path": "interpreting-absolute-value-as-distance/", "slug": "interpreting-absolute-value-as-distance", "kind": "Video", "video_id": "K759mIqpvOU", "keywords": "", "youtube_id": "K759mIqpvOU", "readable_id": "interpreting-absolute-value-as-distance"}, "HTDop6eEsaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HTDop6eEsaA.mp4/HTDop6eEsaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HTDop6eEsaA.mp4/HTDop6eEsaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HTDop6eEsaA.m3u8/HTDop6eEsaA.m3u8"}, "duration": 559, "id": "HTDop6eEsaA", "title": "Introduction to exponential decay", "format": "mp4", "description": "Introduction to Exponential Decay", "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/introduction-to-exponential-decay/", "slug": "introduction-to-exponential-decay", "kind": "Video", "video_id": "HTDop6eEsaA", "keywords": "chemistry, radioactive, exponential, decay", "youtube_id": "HTDop6eEsaA", "readable_id": "introduction-to-exponential-decay"}, "vnrdgyBi5wA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vnrdgyBi5wA.mp4/vnrdgyBi5wA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vnrdgyBi5wA.mp4/vnrdgyBi5wA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vnrdgyBi5wA.m3u8/vnrdgyBi5wA.m3u8"}, "duration": 103, "id": "vnrdgyBi5wA", "title": "Mack Sennett, \"Barney Oldfield's Race for a Life\"", "format": "mp4", "description": "For more information, please visit\u00a0http://www.moma.org/1913", "path": "sennett-oldfield/", "slug": "sennett-oldfield", "kind": "Video", "video_id": "vnrdgyBi5wA", "keywords": "", "youtube_id": "vnrdgyBi5wA", "readable_id": "sennett-oldfield"}, "tqfU9mC2yFU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tqfU9mC2yFU.mp4/tqfU9mC2yFU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tqfU9mC2yFU.mp4/tqfU9mC2yFU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tqfU9mC2yFU.m3u8/tqfU9mC2yFU.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-3/", "duration": 539, "id": "tqfU9mC2yFU", "title": "Volume of a sphere", "format": "mp4", "description": "Figuring out the equation for the volume of a sphere.", "slug": "solid-of-revolution-part-3", "kind": "Video", "video_id": "tqfU9mC2yFU", "keywords": "math, calculus, volume, rotation, disk, solid, revlution, sphere, radius", "youtube_id": "tqfU9mC2yFU", "readable_id": "solid-of-revolution-part-3"}, "CcziDRr5Myc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CcziDRr5Myc.mp4/CcziDRr5Myc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CcziDRr5Myc.mp4/CcziDRr5Myc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CcziDRr5Myc.m3u8/CcziDRr5Myc.m3u8"}, "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-classroom/", "duration": 71, "id": "CcziDRr5Myc", "title": "Bit-zeeeeeeeeeee", "format": "mp4", "description": "Bit-zee is a project designed to inspire students to explore math and science. It was created from everyday items (a hair dryer, tap light, alarm clock, digital camera, and a universal remote). See the following link for help with the code https://sites.google.com/site/khanacademyprojects/home", "slug": "bit-zee-classroom", "kind": "Video", "video_id": "CcziDRr5Myc", "keywords": "Bit-zee bot", "youtube_id": "CcziDRr5Myc", "readable_id": "bit-zee-classroom"}, "ZyyuflY5k2k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZyyuflY5k2k.mp4/ZyyuflY5k2k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZyyuflY5k2k.mp4/ZyyuflY5k2k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZyyuflY5k2k.m3u8/ZyyuflY5k2k.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/mies-van-der-rohe-seagram-building-new-york-city-1958/", "duration": 549, "id": "ZyyuflY5k2k", "title": "Mies van der Rohe, Seagram Building", "format": "mp4", "description": "Ludwig Mies van der Rohe, Seagram Building, 375 Park Avenue, New York City (1958) Speakers: Dr. Matthew Postal, Dr. Steven Zucker. Note: In the video we call Le Corbusier a French architect, but he was born in Swizerland and became a French citizen in 1930.\u00a0", "slug": "mies-van-der-rohe-seagram-building-new-york-city-1958", "kind": "Video", "video_id": "ZyyuflY5k2k", "keywords": "Art, History, Mies van der Rohe, Architecture, NYC, Seagram", "youtube_id": "ZyyuflY5k2k", "readable_id": "mies-van-der-rohe-seagram-building-new-york-city-1958"}, "Bkkk0RLSEy8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bkkk0RLSEy8.mp4/Bkkk0RLSEy8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bkkk0RLSEy8.mp4/Bkkk0RLSEy8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bkkk0RLSEy8.m3u8/Bkkk0RLSEy8.m3u8"}, "duration": 214, "id": "Bkkk0RLSEy8", "title": "Product rule for more than two functions", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/product_rule/product-rule-for-more-than-two-functions/", "slug": "product-rule-for-more-than-two-functions", "kind": "Video", "video_id": "Bkkk0RLSEy8", "keywords": "", "youtube_id": "Bkkk0RLSEy8", "readable_id": "product-rule-for-more-than-two-functions"}, "Oa6dezr0JkE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oa6dezr0JkE.mp4/Oa6dezr0JkE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oa6dezr0JkE.mp4/Oa6dezr0JkE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oa6dezr0JkE.m3u8/Oa6dezr0JkE.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/extrapulmonary-tb-part-1/", "duration": 538, "id": "Oa6dezr0JkE", "title": "Extrapulmonary TB (part 1)", "format": "mp4", "description": "Learn about how TB can spread beyond your lungs.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "extrapulmonary-tb-part-1", "kind": "Video", "video_id": "Oa6dezr0JkE", "keywords": "", "youtube_id": "Oa6dezr0JkE", "readable_id": "extrapulmonary-tb-part-1"}, "Wf5PlOdTbyw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wf5PlOdTbyw.mp4/Wf5PlOdTbyw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wf5PlOdTbyw.mp4/Wf5PlOdTbyw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wf5PlOdTbyw.m3u8/Wf5PlOdTbyw.m3u8"}, "duration": 96, "id": "Wf5PlOdTbyw", "title": "\"An Allegory of Passion,\" Hans Holbein the Younger", "format": "mp4", "description": "Listen to a commentary about a painting in the J. Paul Getty Museum's collection. Part of the Animals in Art tour at the Getty Center. Love art? Follow us on Google+ to stay in touch.", "path": "an-allegory-of-passion-hans-holbein/", "slug": "an-allegory-of-passion-hans-holbein", "kind": "Video", "video_id": "Wf5PlOdTbyw", "keywords": "", "youtube_id": "Wf5PlOdTbyw", "readable_id": "an-allegory-of-passion-hans-holbein"}, "2r95ZVqAysQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2r95ZVqAysQ.mp4/2r95ZVqAysQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2r95ZVqAysQ.mp4/2r95ZVqAysQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2r95ZVqAysQ.m3u8/2r95ZVqAysQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/gout-pathophysiology/", "duration": 354, "id": "2r95ZVqAysQ", "title": "Gout pathophysiology", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "gout-pathophysiology", "kind": "Video", "video_id": "2r95ZVqAysQ", "keywords": "", "youtube_id": "2r95ZVqAysQ", "readable_id": "gout-pathophysiology"}, "rrAKZWfhzrE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rrAKZWfhzrE.mp4/rrAKZWfhzrE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rrAKZWfhzrE.mp4/rrAKZWfhzrE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rrAKZWfhzrE.m3u8/rrAKZWfhzrE.m3u8"}, "duration": 100, "id": "rrAKZWfhzrE", "title": "Ping pong ball launcher introduction", "format": "mp4", "description": "This video highlights the projectile (ping pong ball) launcher", "path": "khan/science/discoveries-projects/projectile_launcher/ping-pong-ball-launcher-introduction/", "slug": "ping-pong-ball-launcher-introduction", "kind": "Video", "video_id": "rrAKZWfhzrE", "keywords": "", "youtube_id": "rrAKZWfhzrE", "readable_id": "ping-pong-ball-launcher-introduction"}, "GdIkEngwGNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GdIkEngwGNU.mp4/GdIkEngwGNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GdIkEngwGNU.mp4/GdIkEngwGNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GdIkEngwGNU.m3u8/GdIkEngwGNU.m3u8"}, "duration": 550, "id": "GdIkEngwGNU", "title": "Mean absolute deviation", "format": "mp4", "description": "MAD (mean absolute deviation) helps you get a sense of how \"spread out\" a data set is. Learn how to compute MAD in this video.", "path": "mean-absolute-deviation/", "slug": "mean-absolute-deviation", "kind": "Video", "video_id": "GdIkEngwGNU", "keywords": "", "youtube_id": "GdIkEngwGNU", "readable_id": "mean-absolute-deviation"}, "xSeYS3V5di8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xSeYS3V5di8.mp4/xSeYS3V5di8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xSeYS3V5di8.mp4/xSeYS3V5di8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xSeYS3V5di8.m3u8/xSeYS3V5di8.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/integration-using-trig-identities/integral-of-odd-powered-trig-function-with-u-substitution/", "duration": 273, "id": "xSeYS3V5di8", "title": "Integral of odd powered trig function with u substitution", "format": "mp4", "description": "", "slug": "integral-of-odd-powered-trig-function-with-u-substitution", "kind": "Video", "video_id": "xSeYS3V5di8", "keywords": "", "youtube_id": "xSeYS3V5di8", "readable_id": "integral-of-odd-powered-trig-function-with-u-substitution"}, "4Eax48gDg9g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Eax48gDg9g.mp4/4Eax48gDg9g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Eax48gDg9g.mp4/4Eax48gDg9g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Eax48gDg9g.m3u8/4Eax48gDg9g.m3u8"}, "duration": 56, "id": "4Eax48gDg9g", "title": "Dividing monomials", "format": "mp4", "description": "Dividing Monomials", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-monomials/dividing-monomials/", "slug": "dividing-monomials", "kind": "Video", "video_id": "4Eax48gDg9g", "keywords": "u11_l2_t5_we1, Dividing, Monomials, CC_6_EE_1, CC_6_EE_2_c, CC_8_EE_1, CC_39336_A-APR_1", "youtube_id": "4Eax48gDg9g", "readable_id": "dividing-monomials"}, "_2pGxgq2D3s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_2pGxgq2D3s.mp4/_2pGxgq2D3s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_2pGxgq2D3s.mp4/_2pGxgq2D3s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_2pGxgq2D3s.m3u8/_2pGxgq2D3s.m3u8"}, "duration": 133, "id": "_2pGxgq2D3s", "title": "Move block", "format": "mp4", "description": "Ready, set... start your engines!", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-moveblock/", "slug": "lego-moveblock", "kind": "Video", "video_id": "_2pGxgq2D3s", "keywords": "", "youtube_id": "_2pGxgq2D3s", "readable_id": "lego-moveblock"}, "mekBhhFWC9c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mekBhhFWC9c.mp4/mekBhhFWC9c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mekBhhFWC9c.mp4/mekBhhFWC9c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mekBhhFWC9c.m3u8/mekBhhFWC9c.m3u8"}, "duration": 482, "id": "mekBhhFWC9c", "title": "Factoring 5th degree polynomial to find real zeros", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/factoring-higher-deg-polynomials/factoring-5th-degree-polynomial-to-find-real-zeros/", "slug": "factoring-5th-degree-polynomial-to-find-real-zeros", "kind": "Video", "video_id": "mekBhhFWC9c", "keywords": "", "youtube_id": "mekBhhFWC9c", "readable_id": "factoring-5th-degree-polynomial-to-find-real-zeros"}, "YE1MwI69ooU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YE1MwI69ooU.mp4/YE1MwI69ooU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YE1MwI69ooU.mp4/YE1MwI69ooU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YE1MwI69ooU.m3u8/YE1MwI69ooU.m3u8"}, "path": "khan/humanities/art-asia/art-japan/japanese-art/tale-of-the-heike/", "duration": 467, "id": "YE1MwI69ooU", "title": "Tale of the Heike", "format": "mp4", "description": "Learn about the famous samurai story, the Tale of the Heike and hear an excerpt from the tale. This video include artworks from the Asian Art Museum's collection. Learn more about the Tale of the Heike.", "slug": "tale-of-the-heike", "kind": "Video", "video_id": "YE1MwI69ooU", "keywords": "", "youtube_id": "YE1MwI69ooU", "readable_id": "tale-of-the-heike"}, "EbPrlb3mB1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EbPrlb3mB1k.mp4/EbPrlb3mB1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EbPrlb3mB1k.mp4/EbPrlb3mB1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EbPrlb3mB1k.m3u8/EbPrlb3mB1k.m3u8"}, "duration": 170, "id": "EbPrlb3mB1k", "title": "\"Hyperreality\" with Kim Benzel", "format": "mp4", "description": "Met curator Kim Benzel on repetition in Relief panel from Assyria.\n\nThe palace rooms at Nimrud were decorated with large stone slabs carved in low relief, with brightly painted walls and ceilings and sculptural figures guarding the doorways. The throne room contained narrative scenes commemorating the military victories of Ashurnasirpal, while in other areas of the palace were protective figures and images of the king and his retinue performing ritual acts.\n\nOn this relief slab the king Ashurnasirpal II wears the royal crown, a conical cap with a small peak and a long diadem. He holds a bow, a symbol of his authority, and a ceremonial bowl. Facing him, a eunuch, a \"beardless one,\" carries a fly whisk and a ladle for replenishing the royal vessel. The peaceful, perhaps religious character of the scene is reflected in the dignified composure of the figures.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "path": "hyperreality/", "slug": "hyperreality", "kind": "Video", "video_id": "EbPrlb3mB1k", "keywords": "authority, ornate, sculpture, stone, Middle East", "youtube_id": "EbPrlb3mB1k", "readable_id": "hyperreality"}, "EKZSwjVR594": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EKZSwjVR594.mp4/EKZSwjVR594.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EKZSwjVR594.mp4/EKZSwjVR594.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EKZSwjVR594.m3u8/EKZSwjVR594.m3u8"}, "duration": 618, "id": "EKZSwjVR594", "title": "Stoichiometry of a reaction in solution", "format": "mp4", "description": "Stoichiometry of a Reaction in Solution", "path": "khan/science/physics/thermodynamics/stoichiometry-of-a-reaction-in-solution/", "slug": "stoichiometry-of-a-reaction-in-solution", "kind": "Video", "video_id": "EKZSwjVR594", "keywords": "Stoichiometry, of, Reaction, in, Solution", "youtube_id": "EKZSwjVR594", "readable_id": "stoichiometry-of-a-reaction-in-solution"}, "2zS1HiuWPMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2zS1HiuWPMA.mp4/2zS1HiuWPMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2zS1HiuWPMA.mp4/2zS1HiuWPMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2zS1HiuWPMA.m3u8/2zS1HiuWPMA.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/cosmological-argument-part-1/", "duration": 465, "id": "2zS1HiuWPMA", "title": "Religion: Cosmological argument part 1", "format": "mp4", "description": "Part 1 of a pair. Tim lays out a classic argument for the existence of God, called 'The Cosmological Argument' -- roughly, the idea that something has to explain why the world is the way it is, and that something is God. He distinguishes two versions: the Beginnings Argument, and the Modal Argument. He covers the Beginnings Argument.\n\nSpeaker: Dr. Timothy Yenter, Assistant Professor of Philosophy, University of Mississippi\n\u00a0", "slug": "cosmological-argument-part-1", "kind": "Video", "video_id": "2zS1HiuWPMA", "keywords": "", "youtube_id": "2zS1HiuWPMA", "readable_id": "cosmological-argument-part-1"}, "NM0WycKCCDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NM0WycKCCDU.mp4/NM0WycKCCDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NM0WycKCCDU.mp4/NM0WycKCCDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NM0WycKCCDU.m3u8/NM0WycKCCDU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/stoichiometry/formula-mass-composition/", "duration": 429, "id": "NM0WycKCCDU", "title": "Empirical formula from mass composition", "format": "mp4", "description": "", "slug": "formula-mass-composition", "kind": "Video", "video_id": "NM0WycKCCDU", "keywords": "", "youtube_id": "NM0WycKCCDU", "readable_id": "formula-mass-composition"}, "jjcHZuTGWXk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jjcHZuTGWXk.mp4/jjcHZuTGWXk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jjcHZuTGWXk.mp4/jjcHZuTGWXk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jjcHZuTGWXk.m3u8/jjcHZuTGWXk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/introduction-to-proton-nmr/", "duration": 627, "id": "jjcHZuTGWXk", "title": "Introduction to proton NMR", "format": "mp4", "description": "", "slug": "introduction-to-proton-nmr", "kind": "Video", "video_id": "jjcHZuTGWXk", "keywords": "", "youtube_id": "jjcHZuTGWXk", "readable_id": "introduction-to-proton-nmr"}, "nuNfdHNTv9o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nuNfdHNTv9o.mp4/nuNfdHNTv9o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nuNfdHNTv9o.mp4/nuNfdHNTv9o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nuNfdHNTv9o.m3u8/nuNfdHNTv9o.m3u8"}, "path": "khan/humanities/medieval-world/medieval-book/making-medieval-book/making-manuscripts/", "duration": 380, "id": "nuNfdHNTv9o", "title": "Making manuscripts", "format": "mp4", "description": "An illuminated manuscript is a book written and decorated completely by hand. Such manuscripts were among the most precious objects in medieval and early Renaissance monasteries and courts. Discover how skilled artists and craftspeople created these beautiful illuminated masterpieces. Love art? Follow us on Google+", "slug": "making-manuscripts", "kind": "Video", "video_id": "nuNfdHNTv9o", "keywords": "", "youtube_id": "nuNfdHNTv9o", "readable_id": "making-manuscripts"}, "WdPMdGUeYGk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WdPMdGUeYGk.mp4/WdPMdGUeYGk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WdPMdGUeYGk.mp4/WdPMdGUeYGk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WdPMdGUeYGk.m3u8/WdPMdGUeYGk.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/kandinsky-sounds/", "duration": 133, "id": "WdPMdGUeYGk", "title": "Vasily Kandinsky, \"Kl\u00e4nge (Sounds)\"", "format": "mp4", "description": "To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art.", "slug": "kandinsky-sounds", "kind": "Video", "video_id": "WdPMdGUeYGk", "keywords": "", "youtube_id": "WdPMdGUeYGk", "readable_id": "kandinsky-sounds"}, "YnYknwUqaCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YnYknwUqaCM.mp4/YnYknwUqaCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YnYknwUqaCM.mp4/YnYknwUqaCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YnYknwUqaCM.m3u8/YnYknwUqaCM.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/paolo-veronese-the-family-of-darius-before-alexander-1565-67/", "duration": 262, "id": "YnYknwUqaCM", "title": "Veronese, The Family of Darius Before Alexander", "format": "mp4", "description": "Paolo Veronese, The Family of Darius before Alexander, 1565-67, oil on canvas, 236.2 x 474.9 cm (The National Gallery, London)", "slug": "paolo-veronese-the-family-of-darius-before-alexander-1565-67", "kind": "Video", "video_id": "YnYknwUqaCM", "keywords": "Veronese, Darius, GAP, Alexander the Great, Venice, Venetian Painting, National, Gallery, London, diplomacy, Khan Academy, smarthistory, art history, Google Art Project, OER, painting, renaissance", "youtube_id": "YnYknwUqaCM", "readable_id": "paolo-veronese-the-family-of-darius-before-alexander-1565-67"}, "FVSgVMVZZ-4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FVSgVMVZZ-4.mp4/FVSgVMVZZ-4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FVSgVMVZZ-4.mp4/FVSgVMVZZ-4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FVSgVMVZZ-4.m3u8/FVSgVMVZZ-4.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-more-on-congruent-and-similar-triangles/", "duration": 671, "id": "FVSgVMVZZ-4", "title": "CA Geometry: More on congruent and similar triangles", "format": "mp4", "description": "17-20, more similar and congruent triangles", "slug": "ca-geometry-more-on-congruent-and-similar-triangles", "kind": "Video", "video_id": "FVSgVMVZZ-4", "keywords": "geometry, similar, congruent, triangles", "youtube_id": "FVSgVMVZZ-4", "readable_id": "ca-geometry-more-on-congruent-and-similar-triangles"}, "BHTMuHvmarU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BHTMuHvmarU.mp4/BHTMuHvmarU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BHTMuHvmarU.mp4/BHTMuHvmarU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BHTMuHvmarU.m3u8/BHTMuHvmarU.m3u8"}, "duration": 626, "id": "BHTMuHvmarU", "title": "Payday loans", "format": "mp4", "description": "How Payday lending works", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/credit-card-interest/payday-loans/", "slug": "payday-loans", "kind": "Video", "video_id": "BHTMuHvmarU", "keywords": "payday, lending, loans", "youtube_id": "BHTMuHvmarU", "readable_id": "payday-loans"}, "NSSoMafbBqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NSSoMafbBqQ.mp4/NSSoMafbBqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NSSoMafbBqQ.mp4/NSSoMafbBqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NSSoMafbBqQ.m3u8/NSSoMafbBqQ.m3u8"}, "duration": 262, "id": "NSSoMafbBqQ", "title": "Term life insurance and death probability", "format": "mp4", "description": "Understanding an insurance company's sense of my chances of dying.", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/life-insurance/term-life-insurance-and-death-probability/", "slug": "term-life-insurance-and-death-probability", "kind": "Video", "video_id": "NSSoMafbBqQ", "keywords": "term, life, insurance", "youtube_id": "NSSoMafbBqQ", "readable_id": "term-life-insurance-and-death-probability"}, "kMACjCg9r4E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kMACjCg9r4E.mp4/kMACjCg9r4E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kMACjCg9r4E.mp4/kMACjCg9r4E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kMACjCg9r4E.m3u8/kMACjCg9r4E.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/douard-manet-a-bar-at-the-folies-berg-re-1882/", "duration": 635, "id": "kMACjCg9r4E", "title": "Manet, A Bar at the Folies-Berg\u00e8re", "format": "mp4", "description": "\u00c9douard Manet, A Bar at the Folies-Berg\u00e8re, 1882 (Courtauld Gallery, London) \n\nSpeakers: Beth Harris and Steven Zucker\n\nFor more videos see www.smarthistory.org", "slug": "douard-manet-a-bar-at-the-folies-berg-re-1882", "kind": "Video", "video_id": "kMACjCg9r4E", "keywords": "\u00c9douard Manet, Folies-Bergere, Courtauld, Smarthistory, Impressionism, French painting", "youtube_id": "kMACjCg9r4E", "readable_id": "douard-manet-a-bar-at-the-folies-berg-re-1882"}, "0OrF-ls7wmM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0OrF-ls7wmM.mp4/0OrF-ls7wmM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0OrF-ls7wmM.mp4/0OrF-ls7wmM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0OrF-ls7wmM.m3u8/0OrF-ls7wmM.m3u8"}, "duration": 51, "id": "0OrF-ls7wmM", "title": "Art Terms in Action: Stain", "format": "mp4", "description": "To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.\u00a0", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-stain/", "slug": "moma-art-term-stain", "kind": "Video", "video_id": "0OrF-ls7wmM", "keywords": "", "youtube_id": "0OrF-ls7wmM", "readable_id": "moma-art-term-stain"}, "lhRfE13mM70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lhRfE13mM70.mp4/lhRfE13mM70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lhRfE13mM70.mp4/lhRfE13mM70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lhRfE13mM70.m3u8/lhRfE13mM70.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/enolate-formation-from-ketones/", "duration": 618, "id": "lhRfE13mM70", "title": "Enolate formation from ketones", "format": "mp4", "description": "Forming enolates from ketones using LDA and sodium ethoxide", "slug": "enolate-formation-from-ketones", "kind": "Video", "video_id": "lhRfE13mM70", "keywords": "", "youtube_id": "lhRfE13mM70", "readable_id": "enolate-formation-from-ketones"}, "dijqYyFY1GM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dijqYyFY1GM.mp4/dijqYyFY1GM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dijqYyFY1GM.mp4/dijqYyFY1GM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dijqYyFY1GM.m3u8/dijqYyFY1GM.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/the-genetic-code/", "duration": 408, "id": "dijqYyFY1GM", "title": "The genetic code", "format": "mp4", "description": "How do nucleotides in RNA get translated into amino acids in a protein? The key is the genetic code, which shows the corresponding amino acid for each possible combination of three nucleotides (codon).\u00a0", "slug": "the-genetic-code", "kind": "Video", "video_id": "dijqYyFY1GM", "keywords": "", "youtube_id": "dijqYyFY1GM", "readable_id": "the-genetic-code"}, "prL5WuhGPLI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/prL5WuhGPLI.mp4/prL5WuhGPLI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/prL5WuhGPLI.mp4/prL5WuhGPLI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/prL5WuhGPLI.m3u8/prL5WuhGPLI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-emphysema/emphysema-diagnosis/", "duration": 447, "id": "prL5WuhGPLI", "title": "Emphysema diagnosis", "format": "mp4", "description": "How do we know a patient has emphysema? Learn how the lungs in chest x-rays look hyperinflated, how spirometry can reveal decreased lung function, and what all those blood tests mean.", "slug": "emphysema-diagnosis", "kind": "Video", "video_id": "prL5WuhGPLI", "keywords": "", "youtube_id": "prL5WuhGPLI", "readable_id": "emphysema-diagnosis"}, "BwmTemng9lc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BwmTemng9lc.mp4/BwmTemng9lc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BwmTemng9lc.mp4/BwmTemng9lc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BwmTemng9lc.m3u8/BwmTemng9lc.m3u8"}, "duration": 259, "id": "BwmTemng9lc", "title": "Exponent properties 6", "format": "mp4", "description": "Exponent Properties 6", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/exponent-properties-6/", "slug": "exponent-properties-6", "kind": "Video", "video_id": "BwmTemng9lc", "keywords": "u11_l1_t3_we2, Exponent, Properties, CC_6_EE_1, CC_6_EE_2_c, CC_8_EE_1", "youtube_id": "BwmTemng9lc", "readable_id": "exponent-properties-6"}, "iHXdzfF7UEs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iHXdzfF7UEs.mp4/iHXdzfF7UEs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iHXdzfF7UEs.mp4/iHXdzfF7UEs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iHXdzfF7UEs.m3u8/iHXdzfF7UEs.m3u8"}, "duration": 638, "id": "iHXdzfF7UEs", "title": "Sample variance", "format": "mp4", "description": "Thinking about how we can estimate the variance of a population by looking at the data in a sample.", "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/sample-variance/", "slug": "sample-variance", "kind": "Video", "video_id": "iHXdzfF7UEs", "keywords": "sample variance, unbiased estimator, statistics", "youtube_id": "iHXdzfF7UEs", "readable_id": "sample-variance"}, "EFB9JrBW4ro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EFB9JrBW4ro.mp4/EFB9JrBW4ro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EFB9JrBW4ro.mp4/EFB9JrBW4ro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EFB9JrBW4ro.m3u8/EFB9JrBW4ro.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-8-8/", "duration": 81, "id": "EFB9JrBW4ro", "title": "8 Mathematical expression from words", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-8", "kind": "Video", "video_id": "EFB9JrBW4ro", "keywords": "", "youtube_id": "EFB9JrBW4ro", "readable_id": "sat-2008-may-8-8"}, "kfySynqWWos": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kfySynqWWos.mp4/kfySynqWWos.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kfySynqWWos.mp4/kfySynqWWos.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kfySynqWWos.m3u8/kfySynqWWos.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/solving-ratio-problems-with-tables-exercise-2/", "duration": 149, "id": "kfySynqWWos", "title": "Solving ratio problems with tables example 2", "format": "mp4", "description": "Let's compare 2 tables of ratios and interpret them to solve the word problem. This is a fun!", "slug": "solving-ratio-problems-with-tables-exercise-2", "kind": "Video", "video_id": "kfySynqWWos", "keywords": "", "youtube_id": "kfySynqWWos", "readable_id": "solving-ratio-problems-with-tables-exercise-2"}, "xRjfRVXXFxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xRjfRVXXFxU.mp4/xRjfRVXXFxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xRjfRVXXFxU.mp4/xRjfRVXXFxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xRjfRVXXFxU.m3u8/xRjfRVXXFxU.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/investment-consumption/investment-vs-comsumption-2/", "duration": 613, "id": "xRjfRVXXFxU", "title": "Investment vs. consumption 2", "format": "mp4", "description": "More investment vs. consumption examples.", "slug": "investment-vs-comsumption-2", "kind": "Video", "video_id": "xRjfRVXXFxU", "keywords": "investment, consumption, speculation", "youtube_id": "xRjfRVXXFxU", "readable_id": "investment-vs-comsumption-2"}, "6YY3OOPmUDA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6YY3OOPmUDA.mp4/6YY3OOPmUDA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6YY3OOPmUDA.mp4/6YY3OOPmUDA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6YY3OOPmUDA.m3u8/6YY3OOPmUDA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/systolic-murmurs-diastolic-murmurs-and-extra-heart-sounds-part-1/", "duration": 727, "id": "6YY3OOPmUDA", "title": "Systolic murmurs, diastolic murmurs, and extra heart sounds - Part 1", "format": "mp4", "description": "", "slug": "systolic-murmurs-diastolic-murmurs-and-extra-heart-sounds-part-1", "kind": "Video", "video_id": "6YY3OOPmUDA", "keywords": "", "youtube_id": "6YY3OOPmUDA", "readable_id": "systolic-murmurs-diastolic-murmurs-and-extra-heart-sounds-part-1"}, "k3qZCxL5TeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k3qZCxL5TeE.mp4/k3qZCxL5TeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k3qZCxL5TeE.mp4/k3qZCxL5TeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k3qZCxL5TeE.m3u8/k3qZCxL5TeE.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/whole-number-representations-tut/largest-possible-number-from-4-digits-example/", "duration": 138, "id": "k3qZCxL5TeE", "title": "Creating the largest possible number", "format": "mp4", "description": "Taking numbers and moving them into different place values to create the highest (and lowest) numbers possible.", "slug": "largest-possible-number-from-4-digits-example", "kind": "Video", "video_id": "k3qZCxL5TeE", "keywords": "", "youtube_id": "k3qZCxL5TeE", "readable_id": "largest-possible-number-from-4-digits-example"}, "6nUMiJfHLSA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6nUMiJfHLSA.mp4/6nUMiJfHLSA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6nUMiJfHLSA.mp4/6nUMiJfHLSA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6nUMiJfHLSA.m3u8/6nUMiJfHLSA.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-rotations/points-after-rotation/", "duration": 492, "id": "6nUMiJfHLSA", "title": "Points after rotation", "format": "mp4", "description": "Points after rotation", "slug": "points-after-rotation", "kind": "Video", "video_id": "6nUMiJfHLSA", "keywords": "", "youtube_id": "6nUMiJfHLSA", "readable_id": "points-after-rotation"}, "abc1Y4X-id8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/abc1Y4X-id8.mp4/abc1Y4X-id8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/abc1Y4X-id8.mp4/abc1Y4X-id8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/abc1Y4X-id8.m3u8/abc1Y4X-id8.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/jos-mara-velasco-the-valley-of-mexico-from-the-santa-isabel-mountain-range-1875/", "duration": 325, "id": "abc1Y4X-id8", "title": "Velasco, The Valley of Mexico", "format": "mp4", "description": "Jos\u00e9 Mar\u00eda Velasco, The Valley of Mexico from the Santa Isabel Mountain Range (Valle de M\u00e9xico desde el cerro de Santa Isabel),1875, oil on canvas, 137.5 x 226 cm (Museo Nacional de Arte, INBA, Mexico City)\n\nSpeakers: Dr. Lauren Kilroy-Ewbank and Dr. Steven Zucker", "slug": "jos-mara-velasco-the-valley-of-mexico-from-the-santa-isabel-mountain-range-1875", "kind": "Video", "video_id": "abc1Y4X-id8", "keywords": "", "youtube_id": "abc1Y4X-id8", "readable_id": "jos-mara-velasco-the-valley-of-mexico-from-the-santa-isabel-mountain-range-1875"}, "4F6cFLnAAFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4F6cFLnAAFc.mp4/4F6cFLnAAFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4F6cFLnAAFc.mp4/4F6cFLnAAFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4F6cFLnAAFc.m3u8/4F6cFLnAAFc.m3u8"}, "duration": 451, "id": "4F6cFLnAAFc", "title": "Fractional exponent expressions 2", "format": "mp4", "description": "Fractional Exponent Expressions 2", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/fractional-exponent-expressions-2/", "slug": "fractional-exponent-expressions-2", "kind": "Video", "video_id": "4F6cFLnAAFc", "keywords": "U07_L3_T4_we2, Fractional, Exponent, Expressions, CC_6_EE_2_c, CC_6_EE_3, CC_7_NS_2, CC_7_NS_2_a, CC_7_NS_2_c, CC_7_NS_3, CC_8_EE_1", "youtube_id": "4F6cFLnAAFc", "readable_id": "fractional-exponent-expressions-2"}, "3Lawz8TcPig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Lawz8TcPig.mp4/3Lawz8TcPig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Lawz8TcPig.mp4/3Lawz8TcPig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Lawz8TcPig.m3u8/3Lawz8TcPig.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-spain/goya-saturn-devouring-one-of-his-sons/", "duration": 205, "id": "3Lawz8TcPig", "title": "Goya, Saturn Devouring His Son", "format": "mp4", "description": "Francisco de Goya y Lucientes, Saturn Devouring One Of His Sons, 1821-1823, 143.5 x 81.4 cm (Prado, Madrid) Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\n\u00a0\n\nOne of the\"Black Paintings\" that Goya painted on the walls of his house outside Madrid. This image was originally located on the lower floor of the house known as \"la Quinta del Sordo.\" Goya painted on the walls using several materials including oil paint. The \"Black Paintings\" had suffered significant damage and loss in their original location and when they were removed from the walls and transferred to canvas by Baron \u00c9mile d'Erlanger shortly after he aquired the house in 1873. Please note that Saturn is also known as Cronus or Kronus.\n", "slug": "goya-saturn-devouring-one-of-his-sons", "kind": "Video", "video_id": "3Lawz8TcPig", "keywords": "art, art history, goya, prado, romanticism", "youtube_id": "3Lawz8TcPig", "readable_id": "goya-saturn-devouring-one-of-his-sons"}, "ajeETSrukxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ajeETSrukxY.mp4/ajeETSrukxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ajeETSrukxY.mp4/ajeETSrukxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ajeETSrukxY.m3u8/ajeETSrukxY.m3u8"}, "duration": 36, "id": "ajeETSrukxY", "title": "Art Terms in Action: Palette Knife", "format": "mp4", "description": "To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.\u00a0", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-palette-knife/", "slug": "moma-art-term-palette-knife", "kind": "Video", "video_id": "ajeETSrukxY", "keywords": "", "youtube_id": "ajeETSrukxY", "readable_id": "moma-art-term-palette-knife"}, "omFelSZvaJc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/omFelSZvaJc.mp4/omFelSZvaJc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/omFelSZvaJc.mp4/omFelSZvaJc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/omFelSZvaJc.m3u8/omFelSZvaJc.m3u8"}, "duration": 476, "id": "omFelSZvaJc", "title": "Partial quotient method of division 2", "format": "mp4", "description": "Another example of doing long division using the partial quotient method", "path": "khan/math/arithmetic/multiplication-division/partial_quotient_division/partial-quotient-method-of-division-2/", "slug": "partial-quotient-method-of-division-2", "kind": "Video", "video_id": "omFelSZvaJc", "keywords": "arithmetic", "youtube_id": "omFelSZvaJc", "readable_id": "partial-quotient-method-of-division-2"}, "jhjoGx6eGXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jhjoGx6eGXs.mp4/jhjoGx6eGXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jhjoGx6eGXs.mp4/jhjoGx6eGXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jhjoGx6eGXs.m3u8/jhjoGx6eGXs.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sound-audition/cochlear-implant/", "duration": 188, "id": "jhjoGx6eGXs", "title": "Cochlear implants", "format": "mp4", "description": "", "slug": "cochlear-implant", "kind": "Video", "video_id": "jhjoGx6eGXs", "keywords": "", "youtube_id": "jhjoGx6eGXs", "readable_id": "cochlear-implant"}, "TuId1spuyoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TuId1spuyoc.mp4/TuId1spuyoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TuId1spuyoc.mp4/TuId1spuyoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TuId1spuyoc.m3u8/TuId1spuyoc.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/fractions-unlike-denom-pre-alg/adding-fractions-ex-1/", "duration": 153, "id": "TuId1spuyoc", "title": "Adding fractions: common denominator", "format": "mp4", "description": "To add these fractions we need to find a common denominator. The answer can be expressed as a mixed number. Let's try together.", "slug": "adding-fractions-ex-1", "kind": "Video", "video_id": "TuId1spuyoc", "keywords": "Adding, fractions, ex, 1", "youtube_id": "TuId1spuyoc", "readable_id": "adding-fractions-ex-1"}, "Wiuat7KdMmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wiuat7KdMmA.mp4/Wiuat7KdMmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wiuat7KdMmA.mp4/Wiuat7KdMmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wiuat7KdMmA.m3u8/Wiuat7KdMmA.m3u8"}, "duration": 519, "id": "Wiuat7KdMmA", "title": "Henry's law", "format": "mp4", "description": "Explore the relationship between partial pressure of a gas and the concentration of the gas molecule within a liquid. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/gas-exchange/henry-s-law/", "slug": "henry-s-law", "kind": "Video", "video_id": "Wiuat7KdMmA", "keywords": "", "youtube_id": "Wiuat7KdMmA", "readable_id": "henry-s-law"}, "CYmL-Up_ZNc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CYmL-Up_ZNc.mp4/CYmL-Up_ZNc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CYmL-Up_ZNc.mp4/CYmL-Up_ZNc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CYmL-Up_ZNc.m3u8/CYmL-Up_ZNc.m3u8"}, "duration": 136, "id": "CYmL-Up_ZNc", "title": "Welcome to our Hour of Code\u2122!", "format": "mp4", "description": "The 'Hour of Code' is a nationwide initiative by Computer Science Education Week and Code.org to introduce millions of students to one hour of computer science and computer programming.\n", "path": "welcome-hour-of-code/", "slug": "welcome-hour-of-code", "kind": "Video", "video_id": "CYmL-Up_ZNc", "keywords": "", "youtube_id": "CYmL-Up_ZNc", "readable_id": "welcome-hour-of-code"}, "rq55eXGVvis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rq55eXGVvis.mp4/rq55eXGVvis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rq55eXGVvis.mp4/rq55eXGVvis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rq55eXGVvis.m3u8/rq55eXGVvis.m3u8"}, "duration": 255, "id": "rq55eXGVvis", "title": "The Marangoni Effect: How to make a soap propelled boat!", "format": "mp4", "description": "The differences of surface tension between soap and water can really make things go! This video shows some interesting demos illustrating the Marangoni Effect. Two liquids with different surface tensions will result in a surface tension gradient, resulting in a net force. This phenomena applies to each of the demonstrations shown. Watch a demonstration of how Marangoni stress can be used to propel small boats around (the \"soap-powered boat\").\n\nLicense: Creative Commons BY-NC-SA\nMore information at http://k12videos.mit.edu/terms-conditions", "path": "the-marangoni-effect-how-to-make-a-soap-propelled-boat/", "slug": "the-marangoni-effect-how-to-make-a-soap-propelled-boat", "kind": "Video", "video_id": "rq55eXGVvis", "keywords": "", "youtube_id": "rq55eXGVvis", "readable_id": "the-marangoni-effect-how-to-make-a-soap-propelled-boat"}, "IFKnq9QM6_A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IFKnq9QM6_A.mp4/IFKnq9QM6_A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IFKnq9QM6_A.mp4/IFKnq9QM6_A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IFKnq9QM6_A.m3u8/IFKnq9QM6_A.m3u8"}, "duration": 789, "id": "IFKnq9QM6_A", "title": "Elements and atoms", "format": "mp4", "description": "How elements relate to atoms. The basics of how protons, electrons and neutrons make up an atom.", "path": "khan/science/chemistry/atomic-structure-and-properties/introduction-to-the-atom/elements-and-atoms/", "slug": "elements-and-atoms", "kind": "Video", "video_id": "IFKnq9QM6_A", "keywords": "chemistry, physics", "youtube_id": "IFKnq9QM6_A", "readable_id": "elements-and-atoms"}, "bFj3HpdC4Uk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bFj3HpdC4Uk.mp4/bFj3HpdC4Uk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bFj3HpdC4Uk.mp4/bFj3HpdC4Uk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bFj3HpdC4Uk.m3u8/bFj3HpdC4Uk.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/ozonolysis-1/", "duration": 822, "id": "bFj3HpdC4Uk", "title": "Ozonolysis", "format": "mp4", "description": "Alkene cleavage using ozone", "slug": "ozonolysis-1", "kind": "Video", "video_id": "bFj3HpdC4Uk", "keywords": "", "youtube_id": "bFj3HpdC4Uk", "readable_id": "ozonolysis-1"}, "V_4pj4_C2Vc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V_4pj4_C2Vc.mp4/V_4pj4_C2Vc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V_4pj4_C2Vc.mp4/V_4pj4_C2Vc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V_4pj4_C2Vc.m3u8/V_4pj4_C2Vc.m3u8"}, "duration": 423, "id": "V_4pj4_C2Vc", "title": "The 15th Amendment", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "reconstruction-amendments-15th-amendment/", "slug": "reconstruction-amendments-15th-amendment", "kind": "Video", "video_id": "V_4pj4_C2Vc", "keywords": "", "youtube_id": "V_4pj4_C2Vc", "readable_id": "reconstruction-amendments-15th-amendment"}, "lXfzq27fGvU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lXfzq27fGvU.mp4/lXfzq27fGvU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lXfzq27fGvU.mp4/lXfzq27fGvU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lXfzq27fGvU.m3u8/lXfzq27fGvU.m3u8"}, "path": "khan/humanities/art-1010/pop/warhol-gold-marilyn-monroe-1962/", "duration": 195, "id": "lXfzq27fGvU", "title": "Warhol, Gold Marilyn Monroe", "format": "mp4", "description": "Andy Warhol, Gold Marilyn Monroe, Silkscreen ink, Silkscreen ink on synthetic polymer paint on canvas, 71.25 x 57 in. (211.4 x 144.7 cm), 1962 (MoMA)", "slug": "warhol-gold-marilyn-monroe-1962", "kind": "Video", "video_id": "lXfzq27fGvU", "keywords": "marilyn, marilyn monroe, smarthistory, art, art history, warhol, pop art", "youtube_id": "lXfzq27fGvU", "readable_id": "warhol-gold-marilyn-monroe-1962"}, "fakiCFD41TI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fakiCFD41TI.mp4/fakiCFD41TI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fakiCFD41TI.mp4/fakiCFD41TI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fakiCFD41TI.m3u8/fakiCFD41TI.m3u8"}, "duration": 184, "id": "fakiCFD41TI", "title": "T.A. McCann - Founder and CEO of Gist", "format": "mp4", "description": "T.A. McCann, Founder and CEO of Gist, talks about his entrepreneurial journey, including how he joined the America\u2019s Cup sailing team. T.A. discusses how entrepreneurs need to show initiative and chart their own course, advising other founders to always ask questions and make progress.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/ta-mccann/kauffman-ta-mccann1/", "slug": "kauffman-ta-mccann1", "kind": "Video", "video_id": "fakiCFD41TI", "keywords": "", "youtube_id": "fakiCFD41TI", "readable_id": "kauffman-ta-mccann1"}, "71L7-dyQsoQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/71L7-dyQsoQ.mp4/71L7-dyQsoQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/71L7-dyQsoQ.mp4/71L7-dyQsoQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/71L7-dyQsoQ.m3u8/71L7-dyQsoQ.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/bali/balinese-dance/", "duration": 404, "id": "71L7-dyQsoQ", "title": "Balinese dance, costumes, music", "format": "mp4", "description": "This video features examples of different types of Balinese dance, costumes, and music.\u00a0", "slug": "balinese-dance", "kind": "Video", "video_id": "71L7-dyQsoQ", "keywords": "", "youtube_id": "71L7-dyQsoQ", "readable_id": "balinese-dance"}, "KwYhMXjMlvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KwYhMXjMlvc.mp4/KwYhMXjMlvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KwYhMXjMlvc.mp4/KwYhMXjMlvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KwYhMXjMlvc.m3u8/KwYhMXjMlvc.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/virgin-from-ger-second-half-of-the-12th-century/", "duration": 197, "id": "KwYhMXjMlvc", "title": "Virgin from Ger", "format": "mp4", "description": "Virgin from Ger, second half of the 12th century, wood, tempera, and stucco,\n51.8 x 20.5 x 15.5 cm, From the parish church of Santa Coloma de Ger,\nBaixa Cerdanya (Museu Nacional d'Art de Cataunya Palau Nacional, Barcelona)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "virgin-from-ger-second-half-of-the-12th-century", "kind": "Video", "video_id": "KwYhMXjMlvc", "keywords": "Virgin Mary, Art History, Smarthistory, Mary (mother Of Jesus), Romanesque, Catalan, Barcelona", "youtube_id": "KwYhMXjMlvc", "readable_id": "virgin-from-ger-second-half-of-the-12th-century"}, "r5l5Cwge7yk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r5l5Cwge7yk.mp4/r5l5Cwge7yk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r5l5Cwge7yk.mp4/r5l5Cwge7yk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r5l5Cwge7yk.m3u8/r5l5Cwge7yk.m3u8"}, "path": "khan/test-prep/ap-art-history/cultures-religions-ap-arthistory/modern-pilgrimage-stories/", "duration": 237, "id": "r5l5Cwge7yk", "title": "Stories of the modern pilgrimage", "format": "mp4", "description": "Every year, 25,000 British Muslims make the pilgrimage to Mecca. As part of the exhibition, Hajj: journey to the heart of Islam, the British Museum asked what this journey is like... \u00a9Trustees of the British Museum. More Hajj stories from the Asian Art Museum", "slug": "modern-pilgrimage-stories", "kind": "Video", "video_id": "r5l5Cwge7yk", "keywords": "British Museum", "youtube_id": "r5l5Cwge7yk", "readable_id": "modern-pilgrimage-stories"}, "Sbgha6LQLlY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Sbgha6LQLlY.mp4/Sbgha6LQLlY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Sbgha6LQLlY.mp4/Sbgha6LQLlY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Sbgha6LQLlY.m3u8/Sbgha6LQLlY.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-21-air-pollutants/", "duration": 58, "id": "Sbgha6LQLlY", "title": "21 Air pollutants", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-21-air-pollutants", "kind": "Video", "video_id": "Sbgha6LQLlY", "keywords": "", "youtube_id": "Sbgha6LQLlY", "readable_id": "sat-21-air-pollutants"}, "Bq9cq9FZuNM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bq9cq9FZuNM.mp4/Bq9cq9FZuNM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bq9cq9FZuNM.mp4/Bq9cq9FZuNM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bq9cq9FZuNM.m3u8/Bq9cq9FZuNM.m3u8"}, "duration": 455, "id": "Bq9cq9FZuNM", "title": "Function inverses example 3", "format": "mp4", "description": "Function Inverses Example 3", "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/function-inverses-example-3/", "slug": "function-inverses-example-3", "kind": "Video", "video_id": "Bq9cq9FZuNM", "keywords": "Function, Inverses, Example, CC_39336_F-BF_4, CC_39336_F-BF_4_a, CC_39336_F-BF_4_d", "youtube_id": "Bq9cq9FZuNM", "readable_id": "function-inverses-example-3"}, "RLyXTj2j_c4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RLyXTj2j_c4.mp4/RLyXTj2j_c4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RLyXTj2j_c4.mp4/RLyXTj2j_c4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RLyXTj2j_c4.m3u8/RLyXTj2j_c4.m3u8"}, "path": "khan/math/geometry/transformations/rigid-transformations-intro/using-reflection-tool/", "duration": 108, "id": "RLyXTj2j_c4", "title": "Using reflection tool", "format": "mp4", "description": "Using reflection tool", "slug": "using-reflection-tool", "kind": "Video", "video_id": "RLyXTj2j_c4", "keywords": "", "youtube_id": "RLyXTj2j_c4", "readable_id": "using-reflection-tool"}, "gkyuLPzfDV0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gkyuLPzfDV0.mp4/gkyuLPzfDV0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gkyuLPzfDV0.mp4/gkyuLPzfDV0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gkyuLPzfDV0.m3u8/gkyuLPzfDV0.m3u8"}, "duration": 738, "id": "gkyuLPzfDV0", "title": "Rotation in R3 around the x-axis", "format": "mp4", "description": "Construction a rotation transformation in R3", "path": "khan/math/linear-algebra/matrix_transformations/lin_trans_examples/rotation-in-r3-around-the-x-axis/", "slug": "rotation-in-r3-around-the-x-axis", "kind": "Video", "video_id": "gkyuLPzfDV0", "keywords": "linear, algebra, rotation, r3, matrix, transformation", "youtube_id": "gkyuLPzfDV0", "readable_id": "rotation-in-r3-around-the-x-axis"}, "MIAmN5kgp3k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MIAmN5kgp3k.mp4/MIAmN5kgp3k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MIAmN5kgp3k.mp4/MIAmN5kgp3k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MIAmN5kgp3k.m3u8/MIAmN5kgp3k.m3u8"}, "duration": 1091, "id": "MIAmN5kgp3k", "title": "Image of a subset under a transformation", "format": "mp4", "description": "Exploring what happens to a subset of the domain under a transformation", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/image-of-a-subset-under-a-transformation/", "slug": "image-of-a-subset-under-a-transformation", "kind": "Video", "video_id": "MIAmN5kgp3k", "keywords": "image, transformation", "youtube_id": "MIAmN5kgp3k", "readable_id": "image-of-a-subset-under-a-transformation"}, "IB3iJUuxt1c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IB3iJUuxt1c.mp4/IB3iJUuxt1c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IB3iJUuxt1c.mp4/IB3iJUuxt1c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IB3iJUuxt1c.m3u8/IB3iJUuxt1c.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/what-is-leukemia/", "duration": 459, "id": "IB3iJUuxt1c", "title": "What is leukemia?", "format": "mp4", "description": "Leukemia is a collection of cancers which create a large amount of immature blood cells. These immature blood cells take up space in the bone marrow, preventing the bone marrow from making healthy blood cells such as platelets, red blood cells, and white blood cells. Learn about the symptoms of this disease which include prolonged bleeding, frequent infections, and bone pain.", "slug": "what-is-leukemia", "kind": "Video", "video_id": "IB3iJUuxt1c", "keywords": "", "youtube_id": "IB3iJUuxt1c", "readable_id": "what-is-leukemia"}, "SQzjzStU1RQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SQzjzStU1RQ.mp4/SQzjzStU1RQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SQzjzStU1RQ.mp4/SQzjzStU1RQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SQzjzStU1RQ.m3u8/SQzjzStU1RQ.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/undefined_indeterminate/why-dividing-by-zero-is-undefined/", "duration": 248, "id": "SQzjzStU1RQ", "title": "Why dividing by zero is undefined", "format": "mp4", "description": "", "slug": "why-dividing-by-zero-is-undefined", "kind": "Video", "video_id": "SQzjzStU1RQ", "keywords": "zero, undefined", "youtube_id": "SQzjzStU1RQ", "readable_id": "why-dividing-by-zero-is-undefined"}, "FH1L5NnuDXM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FH1L5NnuDXM.mp4/FH1L5NnuDXM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FH1L5NnuDXM.mp4/FH1L5NnuDXM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FH1L5NnuDXM.m3u8/FH1L5NnuDXM.m3u8"}, "duration": 443, "id": "FH1L5NnuDXM", "title": "What is inside a universal remote control?", "format": "mp4", "description": "In this video we explore what is inside a universal remote control, how it is made, and how it works.", "path": "khan/science/discoveries-projects/reverse-engin/dvd_player/what-is-inside-of-a-universal-remote-control-1/", "slug": "what-is-inside-of-a-universal-remote-control-1", "kind": "Video", "video_id": "FH1L5NnuDXM", "keywords": "universal remote, epoxy potting, integrated circuit, copper traces, conductive contacts, ABS plastic, neoprene, inferred LED, pulse, buttons, conductive, code based universal remote, learning remote, light emitting diode, batteries, springs, contacts, prin", "youtube_id": "FH1L5NnuDXM", "readable_id": "what-is-inside-of-a-universal-remote-control-1"}, "Efoeqb6tC88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Efoeqb6tC88.mp4/Efoeqb6tC88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Efoeqb6tC88.mp4/Efoeqb6tC88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Efoeqb6tC88.m3u8/Efoeqb6tC88.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/complex-plane-distance-midpoint/", "duration": 371, "id": "Efoeqb6tC88", "title": "Midpoint and distance on complex plane", "format": "mp4", "description": "", "slug": "complex-plane-distance-midpoint", "kind": "Video", "video_id": "Efoeqb6tC88", "keywords": "", "youtube_id": "Efoeqb6tC88", "readable_id": "complex-plane-distance-midpoint"}, "jgWqSjgMAtw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jgWqSjgMAtw.mp4/jgWqSjgMAtw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jgWqSjgMAtw.mp4/jgWqSjgMAtw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jgWqSjgMAtw.m3u8/jgWqSjgMAtw.m3u8"}, "duration": 255, "id": "jgWqSjgMAtw", "title": "Fraction basics", "format": "mp4", "description": "Divide wholes into equal-sized pieces to create unit fractions.", "path": "fraction-basics/", "slug": "fraction-basics", "kind": "Video", "video_id": "jgWqSjgMAtw", "keywords": "", "youtube_id": "jgWqSjgMAtw", "readable_id": "fraction-basics"}, "wuls53jZYpo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wuls53jZYpo.mp4/wuls53jZYpo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wuls53jZYpo.mp4/wuls53jZYpo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wuls53jZYpo.m3u8/wuls53jZYpo.m3u8"}, "duration": 402, "id": "wuls53jZYpo", "title": "The Constitution and the Bill of Rights: Amendments 1-3", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the Constitution's Bill of Rights, Amendments 1-3.", "path": "bill-of-rights/", "slug": "bill-of-rights", "kind": "Video", "video_id": "wuls53jZYpo", "keywords": "", "youtube_id": "wuls53jZYpo", "readable_id": "bill-of-rights"}, "24WMbh1BBKc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/24WMbh1BBKc.mp4/24WMbh1BBKc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/24WMbh1BBKc.mp4/24WMbh1BBKc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/24WMbh1BBKc.m3u8/24WMbh1BBKc.m3u8"}, "duration": 476, "id": "24WMbh1BBKc", "title": "Similar triangles to prove that the slope is constant for a line", "format": "mp4", "description": "", "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/similar-triangles-to-prove-that-the-slope-is-constant-for-a-line/", "slug": "similar-triangles-to-prove-that-the-slope-is-constant-for-a-line", "kind": "Video", "video_id": "24WMbh1BBKc", "keywords": "", "youtube_id": "24WMbh1BBKc", "readable_id": "similar-triangles-to-prove-that-the-slope-is-constant-for-a-line"}, "cN5jQ7sQMn0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cN5jQ7sQMn0.mp4/cN5jQ7sQMn0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cN5jQ7sQMn0.mp4/cN5jQ7sQMn0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cN5jQ7sQMn0.m3u8/cN5jQ7sQMn0.m3u8"}, "path": "khan/test-prep/mcat/cells/prokaryotes-bacteria/overview-of-archaea-protista-and-bacteria/", "duration": 461, "id": "cN5jQ7sQMn0", "title": "Overview of Archaea, Protista, and Bacteria", "format": "mp4", "description": "", "slug": "overview-of-archaea-protista-and-bacteria", "kind": "Video", "video_id": "cN5jQ7sQMn0", "keywords": "", "youtube_id": "cN5jQ7sQMn0", "readable_id": "overview-of-archaea-protista-and-bacteria"}, "L67dlpMgDa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L67dlpMgDa4.mp4/L67dlpMgDa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L67dlpMgDa4.mp4/L67dlpMgDa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L67dlpMgDa4.m3u8/L67dlpMgDa4.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/problem-of-evil-part-3/", "duration": 564, "id": "L67dlpMgDa4", "title": "Ethics: Problem of evil part 3", "format": "mp4", "description": "Part 3 of a trilogy. Greg considers the evidential version of the Problem of Evil, and gives a response on behalf of someone who believes that God exists. This involves considering whether God might have a good reason to allow bad things to happen.\n\nSpeaker: Dr.\u00a0Greg Ganssle, Senior Fellow, Rivendell Institute, Yale University", "slug": "problem-of-evil-part-3", "kind": "Video", "video_id": "L67dlpMgDa4", "keywords": "", "youtube_id": "L67dlpMgDa4", "readable_id": "problem-of-evil-part-3"}, "Fr_La6MrAfM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Fr_La6MrAfM.mp4/Fr_La6MrAfM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Fr_La6MrAfM.mp4/Fr_La6MrAfM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Fr_La6MrAfM.m3u8/Fr_La6MrAfM.m3u8"}, "path": "khan/science/chemistry/chemical-bonds/copy-of-dot-structures/more-on-the-dot-structure-for-sulfur-dioxide/", "duration": 268, "id": "Fr_La6MrAfM", "title": "More on the dot structure for sulfur dioxide", "format": "mp4", "description": "How to analyze different ways to draw the dot structure for sulfur dioxide", "slug": "more-on-the-dot-structure-for-sulfur-dioxide", "kind": "Video", "video_id": "Fr_La6MrAfM", "keywords": "", "youtube_id": "Fr_La6MrAfM", "readable_id": "more-on-the-dot-structure-for-sulfur-dioxide"}, "qF6TBRaE2_A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qF6TBRaE2_A.mp4/qF6TBRaE2_A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qF6TBRaE2_A.mp4/qF6TBRaE2_A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qF6TBRaE2_A.m3u8/qF6TBRaE2_A.m3u8"}, "duration": 684, "id": "qF6TBRaE2_A", "title": "The digestive system", "format": "mp4", "description": "Hank takes us through the bowels of the human digestive system and explains why it's all about surface area.", "path": "crash-course-biology-127/", "slug": "crash-course-biology-127", "kind": "Video", "video_id": "qF6TBRaE2_A", "keywords": "", "youtube_id": "qF6TBRaE2_A", "readable_id": "crash-course-biology-127"}, "GKohvH75Mqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GKohvH75Mqg.mp4/GKohvH75Mqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GKohvH75Mqg.mp4/GKohvH75Mqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GKohvH75Mqg.m3u8/GKohvH75Mqg.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/batteries/electrolyte-strong-acid-test/", "duration": 44, "id": "GKohvH75Mqg", "title": "Electrolyte (strong acid test)", "format": "mp4", "description": "Experimenting with a strong acid as electrolyte and observing the change in deflection compared to weak acid (vinegar)", "slug": "electrolyte-strong-acid-test", "kind": "Video", "video_id": "GKohvH75Mqg", "keywords": "strong acid", "youtube_id": "GKohvH75Mqg", "readable_id": "electrolyte-strong-acid-test"}, "JVlfQEhzLMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVlfQEhzLMM.mp4/JVlfQEhzLMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVlfQEhzLMM.mp4/JVlfQEhzLMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVlfQEhzLMM.m3u8/JVlfQEhzLMM.m3u8"}, "duration": 247, "id": "JVlfQEhzLMM", "title": "Mixture problems 3", "format": "mp4", "description": "Mixture problems 3", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/mixture-problems-3/", "slug": "mixture-problems-3", "kind": "Video", "video_id": "JVlfQEhzLMM", "keywords": "U06_L2_T2_we3, Mixture, problems, CC_7_RP_2, CC_7_RP_2_b, CC_7_RP_2_c, CC_7_RP_3, CC_39336_A-CED_2, CC_39336_A-REI_1", "youtube_id": "JVlfQEhzLMM", "readable_id": "mixture-problems-3"}, "9wguQaBYKec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9wguQaBYKec.mp4/9wguQaBYKec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9wguQaBYKec.mp4/9wguQaBYKec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9wguQaBYKec.m3u8/9wguQaBYKec.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/colosseum-amphitheatrum-flavium-c-70-80-c-e-rome/", "duration": 514, "id": "9wguQaBYKec", "title": "Colosseum (Flavian Amphitheater)", "format": "mp4", "description": "Colosseum (Amphitheatrum Flavium), c. 70-80 C.E., Rome Speakers: Valentina Follo (courtesy of Context Travel), Dr. Beth Harris, Dr. Steven Zucker Cover photo by Julia Avra Ugoretz Views of the Colosseum were taken from the Rome Reborn model of ancient Rome with the permission of The Rome Reborn Project (www.romereborn.virginia.edu). The model is copyright 2004 by The Regents of the University of California. All rights reserved. Speakers: Valentina Follo (courtesy of Context Travel), Dr. Beth Harris, Dr. Steven Zucker Cover photo by Julia Avra Ugoretz. Views of the Colosseum were taken from the Rome Reborn model of ancient Rome with the permission of The Rome Reborn Project (www.romereborn.virginia.edu). The model is copyright 2004 by The Regents of the University of California. All rights reserved. This video illustrates the latest version of the model (2.1), which was created from January to May, 2010.\u00a0", "slug": "colosseum-amphitheatrum-flavium-c-70-80-c-e-rome", "kind": "Video", "video_id": "9wguQaBYKec", "keywords": "colosseum, new", "youtube_id": "9wguQaBYKec", "readable_id": "colosseum-amphitheatrum-flavium-c-70-80-c-e-rome"}, "KT32CsdEZEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KT32CsdEZEY.mp4/KT32CsdEZEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KT32CsdEZEY.mp4/KT32CsdEZEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KT32CsdEZEY.m3u8/KT32CsdEZEY.m3u8"}, "duration": 195, "id": "KT32CsdEZEY", "title": "Proof that rational times irrational is irrational", "format": "mp4", "description": "", "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/proof-that-rational-times-irrational-is-irrational/", "slug": "proof-that-rational-times-irrational-is-irrational", "kind": "Video", "video_id": "KT32CsdEZEY", "keywords": "", "youtube_id": "KT32CsdEZEY", "readable_id": "proof-that-rational-times-irrational-is-irrational"}, "wZxZZ3RgWhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wZxZZ3RgWhI.mp4/wZxZZ3RgWhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wZxZZ3RgWhI.mp4/wZxZZ3RgWhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wZxZZ3RgWhI.m3u8/wZxZZ3RgWhI.m3u8"}, "duration": 295, "id": "wZxZZ3RgWhI", "title": "Gymnasium #74 (middle school in Warsaw, Poland)", "format": "mp4", "description": "This video is in Polish. For English subtitles, click play and then the CC button at the bottom right of the video.", "path": "khan-academy-w-mojej-szkole/", "slug": "khan-academy-w-mojej-szkole", "kind": "Video", "video_id": "wZxZZ3RgWhI", "keywords": "", "youtube_id": "wZxZZ3RgWhI", "readable_id": "khan-academy-w-mojej-szkole"}, "MTzTqvzWzm8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MTzTqvzWzm8.mp4/MTzTqvzWzm8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MTzTqvzWzm8.mp4/MTzTqvzWzm8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MTzTqvzWzm8.m3u8/MTzTqvzWzm8.m3u8"}, "duration": 1022, "id": "MTzTqvzWzm8", "title": "Division 1", "format": "mp4", "description": "Introduction to division", "path": "khan/math/arithmetic/multiplication-division/delightful_division/division-1/", "slug": "division-1", "kind": "Video", "video_id": "MTzTqvzWzm8", "keywords": "division, arithmetic, CC_3_OA_2, CC_3_OA_7, CC_4_NBT_6", "youtube_id": "MTzTqvzWzm8", "readable_id": "division-1"}, "tYmMEqro8D4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tYmMEqro8D4.mp4/tYmMEqro8D4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tYmMEqro8D4.mp4/tYmMEqro8D4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tYmMEqro8D4.m3u8/tYmMEqro8D4.m3u8"}, "duration": 434, "id": "tYmMEqro8D4", "title": "Why current and capital accounts net out", "format": "mp4", "description": "Intuition behind why the current account and capital account should balance", "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/current-capital-account/why-current-and-capital-accounts-net-out/", "slug": "why-current-and-capital-accounts-net-out", "kind": "Video", "video_id": "tYmMEqro8D4", "keywords": "macroeconomics, balance, of, trade", "youtube_id": "tYmMEqro8D4", "readable_id": "why-current-and-capital-accounts-net-out"}, "1K5uvvz9c3M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1K5uvvz9c3M.mp4/1K5uvvz9c3M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1K5uvvz9c3M.mp4/1K5uvvz9c3M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1K5uvvz9c3M.m3u8/1K5uvvz9c3M.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-28-tall-structures/", "duration": 122, "id": "1K5uvvz9c3M", "title": "28 Tall structures", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-28-tall-structures", "kind": "Video", "video_id": "1K5uvvz9c3M", "keywords": "", "youtube_id": "1K5uvvz9c3M", "readable_id": "sat-28-tall-structures"}, "pmQuNRHJMw4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pmQuNRHJMw4.mp4/pmQuNRHJMw4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pmQuNRHJMw4.mp4/pmQuNRHJMw4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pmQuNRHJMw4.m3u8/pmQuNRHJMw4.m3u8"}, "duration": 431, "id": "pmQuNRHJMw4", "title": "Peptide bonds: Formation and cleavage", "format": "mp4", "description": "Peptide bonds are formed when the amine group of one amino acid binds with the carbonyl carbon of another amino acid. We will learn more about peptide bonds and how the cleaving process occurs. \u00a0By Tracy Kovach.", "path": "khan/test-prep/mcat/chemical-processes/proteins/peptide-bond-formation-and-cleavage/", "slug": "peptide-bond-formation-and-cleavage", "kind": "Video", "video_id": "pmQuNRHJMw4", "keywords": "", "youtube_id": "pmQuNRHJMw4", "readable_id": "peptide-bond-formation-and-cleavage"}, "gIQgnSfUB6E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gIQgnSfUB6E.mp4/gIQgnSfUB6E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gIQgnSfUB6E.mp4/gIQgnSfUB6E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gIQgnSfUB6E.m3u8/gIQgnSfUB6E.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/estimates-of-area/", "duration": 429, "id": "gIQgnSfUB6E", "title": "Ranking area estimates", "format": "mp4", "description": "", "slug": "estimates-of-area", "kind": "Video", "video_id": "gIQgnSfUB6E", "keywords": "", "youtube_id": "gIQgnSfUB6E", "readable_id": "estimates-of-area"}, "RcPI6Mb9J6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RcPI6Mb9J6k.mp4/RcPI6Mb9J6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RcPI6Mb9J6k.mp4/RcPI6Mb9J6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RcPI6Mb9J6k.m3u8/RcPI6Mb9J6k.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/surrealism1/magritte-the-portrait/", "duration": 179, "id": "RcPI6Mb9J6k", "title": "Conservation | Ren\u00e9 Magritte, \"The Portrait,\" 1935", "format": "mp4", "description": "For more information please visit http://www.moma.org/magritte", "slug": "magritte-the-portrait", "kind": "Video", "video_id": "RcPI6Mb9J6k", "keywords": "", "youtube_id": "RcPI6Mb9J6k", "readable_id": "magritte-the-portrait"}, "_eBq2hRETmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_eBq2hRETmA.mp4/_eBq2hRETmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_eBq2hRETmA.mp4/_eBq2hRETmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_eBq2hRETmA.m3u8/_eBq2hRETmA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/shock-diagnosis-and-treatment/", "duration": 679, "id": "_eBq2hRETmA", "title": "Shock - diagnosis and treatment", "format": "mp4", "description": "", "slug": "shock-diagnosis-and-treatment", "kind": "Video", "video_id": "_eBq2hRETmA", "keywords": "", "youtube_id": "_eBq2hRETmA", "readable_id": "shock-diagnosis-and-treatment"}, "CLneY6SoPi0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CLneY6SoPi0.mp4/CLneY6SoPi0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CLneY6SoPi0.mp4/CLneY6SoPi0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CLneY6SoPi0.m3u8/CLneY6SoPi0.m3u8"}, "duration": 445, "id": "CLneY6SoPi0", "title": "How lymphatic vessels move fluid", "format": "mp4", "description": "Find out how the body's mysterious second circulatory system works. Learn how it can move fluid even when it has no heart of its own. By Patrick van Nieuwenhuizen. ", "path": "khan/test-prep/nclex-rn/rn-lymphatic-system/rn-the-lymphatic-system/lymphatic-vessels-move-fluid/", "slug": "lymphatic-vessels-move-fluid", "kind": "Video", "video_id": "CLneY6SoPi0", "keywords": "lymphatic vessel", "youtube_id": "CLneY6SoPi0", "readable_id": "lymphatic-vessels-move-fluid"}, "-nufZ41Kg5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-nufZ41Kg5c.mp4/-nufZ41Kg5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-nufZ41Kg5c.mp4/-nufZ41Kg5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-nufZ41Kg5c.m3u8/-nufZ41Kg5c.m3u8"}, "duration": 187, "id": "-nufZ41Kg5c", "title": "Constructing quadrilateral based on symmetry", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/transformations-symmetry/constructing-quad-based-on-symmetry/", "slug": "constructing-quad-based-on-symmetry", "kind": "Video", "video_id": "-nufZ41Kg5c", "keywords": "", "youtube_id": "-nufZ41Kg5c", "readable_id": "constructing-quad-based-on-symmetry"}, "ATuMxyoVh_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ATuMxyoVh_8.mp4/ATuMxyoVh_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ATuMxyoVh_8.mp4/ATuMxyoVh_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ATuMxyoVh_8.m3u8/ATuMxyoVh_8.m3u8"}, "duration": 707, "id": "ATuMxyoVh_8", "title": "World War I Eastern front", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-fighting/world-war-i-eastern-front/", "slug": "world-war-i-eastern-front", "kind": "Video", "video_id": "ATuMxyoVh_8", "keywords": "", "youtube_id": "ATuMxyoVh_8", "readable_id": "world-war-i-eastern-front"}, "XHd7Ng45Vxk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XHd7Ng45Vxk.mp4/XHd7Ng45Vxk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XHd7Ng45Vxk.mp4/XHd7Ng45Vxk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XHd7Ng45Vxk.m3u8/XHd7Ng45Vxk.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-9-13/", "duration": 174, "id": "XHd7Ng45Vxk", "title": "13 Exponent properties to simplify expression", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-13", "kind": "Video", "video_id": "XHd7Ng45Vxk", "keywords": "", "youtube_id": "XHd7Ng45Vxk", "readable_id": "sat-2010-may-9-13"}, "jrGpD13LLf8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jrGpD13LLf8.mp4/jrGpD13LLf8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jrGpD13LLf8.mp4/jrGpD13LLf8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jrGpD13LLf8.m3u8/jrGpD13LLf8.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/genetic-recombination-2/", "duration": 449, "id": "jrGpD13LLf8", "title": "Genetic recombination 2", "format": "mp4", "description": "", "slug": "genetic-recombination-2", "kind": "Video", "video_id": "jrGpD13LLf8", "keywords": "", "youtube_id": "jrGpD13LLf8", "readable_id": "genetic-recombination-2"}, "obeGVTOZyfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/obeGVTOZyfE.mp4/obeGVTOZyfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/obeGVTOZyfE.mp4/obeGVTOZyfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/obeGVTOZyfE.m3u8/obeGVTOZyfE.m3u8"}, "duration": 763, "id": "obeGVTOZyfE", "title": "Work from expansion", "format": "mp4", "description": "How a system can do work by expanding", "path": "khan/science/chemistry/thermodynamics-chemistry/internal-energy-sal/work-from-expansion/", "slug": "work-from-expansion", "kind": "Video", "video_id": "obeGVTOZyfE", "keywords": "thermodynamics, heat, work, internal, energy", "youtube_id": "obeGVTOZyfE", "readable_id": "work-from-expansion"}, "z1hz8-Kri1E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z1hz8-Kri1E.mp4/z1hz8-Kri1E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z1hz8-Kri1E.mp4/z1hz8-Kri1E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z1hz8-Kri1E.m3u8/z1hz8-Kri1E.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/systems_of_linear_equations_word_problems/solving-systems-by-elimination/", "duration": 351, "id": "z1hz8-Kri1E", "title": "Systems of equations word problems example 1", "format": "mp4", "description": "", "slug": "solving-systems-by-elimination", "kind": "Video", "video_id": "z1hz8-Kri1E", "keywords": "U06_L1_T3_we1, Solving, systems, by, elimination, CC_8_EE_8_b, CC_8_EE_8_c, CC_39336_A-REI_6", "youtube_id": "z1hz8-Kri1E", "readable_id": "solving-systems-by-elimination"}, "bQ-KR3clFgs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bQ-KR3clFgs.mp4/bQ-KR3clFgs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bQ-KR3clFgs.mp4/bQ-KR3clFgs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bQ-KR3clFgs.m3u8/bQ-KR3clFgs.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/dividing-positive-and-negative-numbers/", "duration": 292, "id": "bQ-KR3clFgs", "title": "Dividing positive and negative numbers", "format": "mp4", "description": "Discover the basics of dividing with negative numbers.\u00a0", "slug": "dividing-positive-and-negative-numbers", "kind": "Video", "video_id": "bQ-KR3clFgs", "keywords": "dividing, negative, numbers", "youtube_id": "bQ-KR3clFgs", "readable_id": "dividing-positive-and-negative-numbers"}, "Hz0neklvbX8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hz0neklvbX8.mp4/Hz0neklvbX8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hz0neklvbX8.mp4/Hz0neklvbX8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hz0neklvbX8.m3u8/Hz0neklvbX8.m3u8"}, "path": "khan/humanities/history/crashcourse-worldhistory/whats-god-got-to-do-with-it-2/crash-course-world-history-16/", "duration": 603, "id": "Hz0neklvbX8", "title": "Mansa Musa and Islam in Africa", "format": "mp4", "description": "In which John Green teaches you about Sub-Saharan Africa! So, what exactly was going on there? It turns out, it was a lot of trade, converting to Islam, visits from Ibn Battuta, trade, beautiful women, trade, some impressive architecture, and several empires. John not only covers the West African Malian Empire, which is the one Mansa Musa ruled, but he discusses the Ghana Empire, and even gets over to East Africa as well to discuss the trade-based city-states of Mogadishu, Mombasa, and Zanzibar. In addition to all this, John considers emigrating to Canada.", "slug": "crash-course-world-history-16", "kind": "Video", "video_id": "Hz0neklvbX8", "keywords": "crash course", "youtube_id": "Hz0neklvbX8", "readable_id": "crash-course-world-history-16"}, "SgKCGwSdCMo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SgKCGwSdCMo.mp4/SgKCGwSdCMo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SgKCGwSdCMo.mp4/SgKCGwSdCMo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SgKCGwSdCMo.m3u8/SgKCGwSdCMo.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/contemporary-art-intro/", "duration": 386, "id": "SgKCGwSdCMo", "title": "Introduction to Contemporary Art", "format": "mp4", "description": "A video from the Utah System of Higher Education (with special thanks to Dr. Nancy Ross)\u00a0", "slug": "contemporary-art-intro", "kind": "Video", "video_id": "SgKCGwSdCMo", "keywords": "", "youtube_id": "SgKCGwSdCMo", "readable_id": "contemporary-art-intro"}, "oosYQHq2hwE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oosYQHq2hwE.mp4/oosYQHq2hwE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oosYQHq2hwE.mp4/oosYQHq2hwE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oosYQHq2hwE.m3u8/oosYQHq2hwE.m3u8"}, "duration": 476, "id": "oosYQHq2hwE", "title": "Mortgage-backed securities I", "format": "mp4", "description": "Part I of the introduction to mortgage-backed securities", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/mortgage-backed-securities-i/", "slug": "mortgage-backed-securities-i", "kind": "Video", "video_id": "oosYQHq2hwE", "keywords": "finance, mortgage-backed, security, MBS", "youtube_id": "oosYQHq2hwE", "readable_id": "mortgage-backed-securities-i"}, "u_WqMXmCi7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u_WqMXmCi7c.mp4/u_WqMXmCi7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u_WqMXmCi7c.mp4/u_WqMXmCi7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u_WqMXmCi7c.m3u8/u_WqMXmCi7c.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/gel-electrophoresis-2/", "duration": 300, "id": "u_WqMXmCi7c", "title": "Gel electrophoresis", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "gel-electrophoresis-2", "kind": "Video", "video_id": "u_WqMXmCi7c", "keywords": "", "youtube_id": "u_WqMXmCi7c", "readable_id": "gel-electrophoresis-2"}, "sy9GogcnnwY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sy9GogcnnwY.mp4/sy9GogcnnwY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sy9GogcnnwY.mp4/sy9GogcnnwY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sy9GogcnnwY.m3u8/sy9GogcnnwY.m3u8"}, "duration": 704, "id": "sy9GogcnnwY", "title": "Regulation of Krebs-TCA cycle", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/regulation-of-krebs-tca-cycle/", "slug": "regulation-of-krebs-tca-cycle", "kind": "Video", "video_id": "sy9GogcnnwY", "keywords": "", "youtube_id": "sy9GogcnnwY", "readable_id": "regulation-of-krebs-tca-cycle"}, "mbb3msmX2xs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mbb3msmX2xs.mp4/mbb3msmX2xs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mbb3msmX2xs.mp4/mbb3msmX2xs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mbb3msmX2xs.m3u8/mbb3msmX2xs.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/factoring-simple-expressions/factoring-linear-binomials/", "duration": 208, "id": "mbb3msmX2xs", "title": "Factoring more algebraic expressions", "format": "mp4", "description": "Learn how to apply the distributive property to factor out the greatest common factor from an algebraic expression like 4x+18 or 12+23y.", "slug": "factoring-linear-binomials", "kind": "Video", "video_id": "mbb3msmX2xs", "keywords": "", "youtube_id": "mbb3msmX2xs", "readable_id": "factoring-linear-binomials"}, "hWhs2cIj7Cw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hWhs2cIj7Cw.mp4/hWhs2cIj7Cw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hWhs2cIj7Cw.mp4/hWhs2cIj7Cw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hWhs2cIj7Cw.m3u8/hWhs2cIj7Cw.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/linear-algebra-parametric-representations-of-lines/", "duration": 1486, "id": "hWhs2cIj7Cw", "title": "Parametric representations of lines", "format": "mp4", "description": "Parametric Representations of Lines in R2 and R3", "slug": "linear-algebra-parametric-representations-of-lines", "kind": "Video", "video_id": "hWhs2cIj7Cw", "keywords": "Linear, Algebra, Vectors", "youtube_id": "hWhs2cIj7Cw", "readable_id": "linear-algebra-parametric-representations-of-lines"}, "qGiPZf7njqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qGiPZf7njqY.mp4/qGiPZf7njqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qGiPZf7njqY.mp4/qGiPZf7njqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qGiPZf7njqY.m3u8/qGiPZf7njqY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system/rn-the-respiratory-system/meet-the-lungs/", "duration": 576, "id": "qGiPZf7njqY", "title": "Meet the lungs", "format": "mp4", "description": "Every time you take a breath, oxygen makes it way into your lungs. Follow along on that journey! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "meet-the-lungs", "kind": "Video", "video_id": "qGiPZf7njqY", "keywords": "", "youtube_id": "qGiPZf7njqY", "readable_id": "meet-the-lungs"}, "OWPVZoxNe-U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OWPVZoxNe-U.mp4/OWPVZoxNe-U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OWPVZoxNe-U.mp4/OWPVZoxNe-U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OWPVZoxNe-U.m3u8/OWPVZoxNe-U.m3u8"}, "duration": 215, "id": "OWPVZoxNe-U", "title": "Linear and nonlinear functions (example 2)", "format": "mp4", "description": "", "path": "linear-and-nonlinear-functions-example-1/", "slug": "linear-and-nonlinear-functions-example-1", "kind": "Video", "video_id": "OWPVZoxNe-U", "keywords": "", "youtube_id": "OWPVZoxNe-U", "readable_id": "linear-and-nonlinear-functions-example-1"}, "TxwE4_dXo8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TxwE4_dXo8s.mp4/TxwE4_dXo8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TxwE4_dXo8s.mp4/TxwE4_dXo8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TxwE4_dXo8s.m3u8/TxwE4_dXo8s.m3u8"}, "path": "khan/science/physics/electricity-magnetism/charge-and-electric-field/proof-advanced-field-from-infinite-plate-part-2/", "duration": 688, "id": "TxwE4_dXo8s", "title": "Proof (advanced): Field from infinite plate (part 2)", "format": "mp4", "description": "We see that the infinite, uniformly charged plate generates a constant electric field (independent of the height above the plate)", "slug": "proof-advanced-field-from-infinite-plate-part-2", "kind": "Video", "video_id": "TxwE4_dXo8s", "keywords": "uniform, constant, electric, field, plate, charged", "youtube_id": "TxwE4_dXo8s", "readable_id": "proof-advanced-field-from-infinite-plate-part-2"}, "ZtI94pI4Uzc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZtI94pI4Uzc.mp4/ZtI94pI4Uzc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZtI94pI4Uzc.mp4/ZtI94pI4Uzc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZtI94pI4Uzc.m3u8/ZtI94pI4Uzc.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/implicit-derivative-of-e-xy-2-x-y/", "duration": 358, "id": "ZtI94pI4Uzc", "title": "Implicit derivative of e^(xy^2) = x - y", "format": "mp4", "description": "", "slug": "implicit-derivative-of-e-xy-2-x-y", "kind": "Video", "video_id": "ZtI94pI4Uzc", "keywords": "", "youtube_id": "ZtI94pI4Uzc", "readable_id": "implicit-derivative-of-e-xy-2-x-y"}, "xkg7370cpjs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xkg7370cpjs.mp4/xkg7370cpjs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xkg7370cpjs.mp4/xkg7370cpjs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xkg7370cpjs.m3u8/xkg7370cpjs.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/changing-a-mixed-number-to-an-improper-fraction/", "duration": 403, "id": "xkg7370cpjs", "title": "Mixed numbers: changing to improper fractions", "format": "mp4", "description": "What if we wanted to change a mixed number into an improper fraction? How would we go about doing that? Let's see!", "slug": "changing-a-mixed-number-to-an-improper-fraction", "kind": "Video", "video_id": "xkg7370cpjs", "keywords": "U02_L1_T2_we2, Changing, Mixed, Number, to, an, Improper, Fraction", "youtube_id": "xkg7370cpjs", "readable_id": "changing-a-mixed-number-to-an-improper-fraction"}, "wE7_9Xce6LM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wE7_9Xce6LM.mp4/wE7_9Xce6LM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wE7_9Xce6LM.mp4/wE7_9Xce6LM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wE7_9Xce6LM.m3u8/wE7_9Xce6LM.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/medea-sarcophagus-140-150-c-e/", "duration": 297, "id": "wE7_9Xce6LM", "title": "Empire: Medea Sarcophagus", "format": "mp4", "description": "Medea Sarcophagus, 140 - 150 C.E., marble, 65 x 227 cm (Altes Museum, Berlin)", "slug": "medea-sarcophagus-140-150-c-e", "kind": "Video", "video_id": "wE7_9Xce6LM", "keywords": "Medea, Sarcophagus, GAP, Art History, Euripides, Jason, Khan Academy, smarthistory, Google Art Project, OER, painting", "youtube_id": "wE7_9Xce6LM", "readable_id": "medea-sarcophagus-140-150-c-e"}, "g1ZZIee9zk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g1ZZIee9zk0.mp4/g1ZZIee9zk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g1ZZIee9zk0.mp4/g1ZZIee9zk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g1ZZIee9zk0.m3u8/g1ZZIee9zk0.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-alkenes-jay/alkene-nomenclature/", "duration": 639, "id": "g1ZZIee9zk0", "title": "Alkene nomenclature", "format": "mp4", "description": "", "slug": "alkene-nomenclature", "kind": "Video", "video_id": "g1ZZIee9zk0", "keywords": "", "youtube_id": "g1ZZIee9zk0", "readable_id": "alkene-nomenclature"}, "NFmDz1dQyPU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NFmDz1dQyPU.mp4/NFmDz1dQyPU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NFmDz1dQyPU.mp4/NFmDz1dQyPU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NFmDz1dQyPU.m3u8/NFmDz1dQyPU.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/decimal-to-hexadecimal/", "duration": 223, "id": "NFmDz1dQyPU", "title": "Converting from decimal to hexadecimal representation", "format": "mp4", "description": "", "slug": "decimal-to-hexadecimal", "kind": "Video", "video_id": "NFmDz1dQyPU", "keywords": "", "youtube_id": "NFmDz1dQyPU", "readable_id": "decimal-to-hexadecimal"}, "Pk6s2OlKzKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pk6s2OlKzKQ.mp4/Pk6s2OlKzKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pk6s2OlKzKQ.mp4/Pk6s2OlKzKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pk6s2OlKzKQ.m3u8/Pk6s2OlKzKQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/youngs-double-split-part-1/", "duration": 573, "id": "Pk6s2OlKzKQ", "title": "Young's Double slit part 1", "format": "mp4", "description": "", "slug": "youngs-double-split-part-1", "kind": "Video", "video_id": "Pk6s2OlKzKQ", "keywords": "", "youtube_id": "Pk6s2OlKzKQ", "readable_id": "youngs-double-split-part-1"}, "kqU_ymV581c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kqU_ymV581c.mp4/kqU_ymV581c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kqU_ymV581c.mp4/kqU_ymV581c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kqU_ymV581c.m3u8/kqU_ymV581c.m3u8"}, "duration": 541, "id": "kqU_ymV581c", "title": "The angle game", "format": "mp4", "description": "Using what we know to solve for angles in the Angle Game.", "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/the-angle-game/", "slug": "the-angle-game", "kind": "Video", "video_id": "kqU_ymV581c", "keywords": "geometry, math, angles, complementary, supplementary, parallel, opposite, CC_7_G_5, CC_8_G_5", "youtube_id": "kqU_ymV581c", "readable_id": "the-angle-game"}, "ukdkumw8cqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ukdkumw8cqc.mp4/ukdkumw8cqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ukdkumw8cqc.mp4/ukdkumw8cqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ukdkumw8cqc.m3u8/ukdkumw8cqc.m3u8"}, "duration": 410, "id": "ukdkumw8cqc", "title": "Article II of the U.S. Constitution", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "article-ii-two-of-the-us-constitution/", "slug": "article-ii-two-of-the-us-constitution", "kind": "Video", "video_id": "ukdkumw8cqc", "keywords": "", "youtube_id": "ukdkumw8cqc", "readable_id": "article-ii-two-of-the-us-constitution"}, "SIoKwUcmivk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SIoKwUcmivk.mp4/SIoKwUcmivk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SIoKwUcmivk.mp4/SIoKwUcmivk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SIoKwUcmivk.m3u8/SIoKwUcmivk.m3u8"}, "duration": 883, "id": "SIoKwUcmivk", "title": "Erikson's psychosocial development", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/eriksons-psychosocial-development/", "slug": "eriksons-psychosocial-development", "kind": "Video", "video_id": "SIoKwUcmivk", "keywords": "", "youtube_id": "SIoKwUcmivk", "readable_id": "eriksons-psychosocial-development"}, "NIazpCER9oM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NIazpCER9oM.mp4/NIazpCER9oM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NIazpCER9oM.mp4/NIazpCER9oM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NIazpCER9oM.m3u8/NIazpCER9oM.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial-remainder-theorem-tutorial/polynomial-remainder-theorem-proof/", "duration": 342, "id": "NIazpCER9oM", "title": "Polynomial remainder theorem proof", "format": "mp4", "description": "", "slug": "polynomial-remainder-theorem-proof", "kind": "Video", "video_id": "NIazpCER9oM", "keywords": "", "youtube_id": "NIazpCER9oM", "readable_id": "polynomial-remainder-theorem-proof"}, "PwDnpb_ZJvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PwDnpb_ZJvc.mp4/PwDnpb_ZJvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PwDnpb_ZJvc.mp4/PwDnpb_ZJvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PwDnpb_ZJvc.m3u8/PwDnpb_ZJvc.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/powers-of-zero/", "duration": 255, "id": "PwDnpb_ZJvc", "title": "Powers of zero", "format": "mp4", "description": "Any non-zero number to the zero power equals one. Zero to any positive exponent equals zero. So, what happens when you have zero to the zero power?", "slug": "powers-of-zero", "kind": "Video", "video_id": "PwDnpb_ZJvc", "keywords": "", "youtube_id": "PwDnpb_ZJvc", "readable_id": "powers-of-zero"}, "10dTx1Zy_4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/10dTx1Zy_4w.mp4/10dTx1Zy_4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/10dTx1Zy_4w.mp4/10dTx1Zy_4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/10dTx1Zy_4w.m3u8/10dTx1Zy_4w.m3u8"}, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-properties-shapes/recognizing-shapes/", "duration": 369, "id": "10dTx1Zy_4w", "title": "Recognizing shapes", "format": "mp4", "description": "Learn how to identify circles, triangles, squares, rectangles, rhombuses, and trapezoids.", "slug": "recognizing-shapes", "kind": "Video", "video_id": "10dTx1Zy_4w", "keywords": "", "youtube_id": "10dTx1Zy_4w", "readable_id": "recognizing-shapes"}, "7BgiKyvviyU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7BgiKyvviyU.mp4/7BgiKyvviyU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7BgiKyvviyU.mp4/7BgiKyvviyU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7BgiKyvviyU.m3u8/7BgiKyvviyU.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/formal-charge-resonance/resonance-intro-jay/", "duration": 552, "id": "7BgiKyvviyU", "title": "Resonance structures", "format": "mp4", "description": "", "slug": "resonance-intro-jay", "kind": "Video", "video_id": "7BgiKyvviyU", "keywords": "", "youtube_id": "7BgiKyvviyU", "readable_id": "resonance-intro-jay"}, "koL4adsku1g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/koL4adsku1g.mp4/koL4adsku1g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/koL4adsku1g.mp4/koL4adsku1g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/koL4adsku1g.m3u8/koL4adsku1g.m3u8"}, "duration": 68, "id": "koL4adsku1g", "title": "Art Terms in Action: Enamel", "format": "mp4", "description": "Learn the properties of enamel paint and why artists use it. To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-enamel/", "slug": "moma-art-term-enamel", "kind": "Video", "video_id": "koL4adsku1g", "keywords": "", "youtube_id": "koL4adsku1g", "readable_id": "moma-art-term-enamel"}, "v5YT8GlSxoU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v5YT8GlSxoU.mp4/v5YT8GlSxoU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v5YT8GlSxoU.mp4/v5YT8GlSxoU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v5YT8GlSxoU.m3u8/v5YT8GlSxoU.m3u8"}, "duration": 339, "id": "v5YT8GlSxoU", "title": "Example calculating real GDP with a deflator", "format": "mp4", "description": "Simple example of calculating Real GDP from Nominal GDP", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/real-nominal-gdp-tutorial/example-calculating-real-gdp-with-a-deflator/", "slug": "example-calculating-real-gdp-with-a-deflator", "kind": "Video", "video_id": "v5YT8GlSxoU", "keywords": "macroeconomics", "youtube_id": "v5YT8GlSxoU", "readable_id": "example-calculating-real-gdp-with-a-deflator"}, "SOuSd7r1ZnM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SOuSd7r1ZnM.mp4/SOuSd7r1ZnM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SOuSd7r1ZnM.mp4/SOuSd7r1ZnM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SOuSd7r1ZnM.m3u8/SOuSd7r1ZnM.m3u8"}, "duration": 305, "id": "SOuSd7r1ZnM", "title": "Digital Privacy: \u201cThird Party Doctrine\u201d, Smith v. Maryland, Riley v. California, People v. Schutter.", "format": "mp4", "description": "Neal Katyal, Former Acting Solicitor General of the United States in conversation with Jeffrey Rosen of the National Constitution Center.", "path": "digital-privacy-third-party-doctrine-smith-v-maryland-riley-v-california-people-v-schutter/", "slug": "digital-privacy-third-party-doctrine-smith-v-maryland-riley-v-california-people-v-schutter", "kind": "Video", "video_id": "SOuSd7r1ZnM", "keywords": "", "youtube_id": "SOuSd7r1ZnM", "readable_id": "digital-privacy-third-party-doctrine-smith-v-maryland-riley-v-california-people-v-schutter"}, "0QlJrnRRfW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0QlJrnRRfW8.mp4/0QlJrnRRfW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0QlJrnRRfW8.mp4/0QlJrnRRfW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0QlJrnRRfW8.m3u8/0QlJrnRRfW8.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/complex-number-addition/", "duration": 279, "id": "0QlJrnRRfW8", "title": "Adding complex numbers and Argand Diagrams", "format": "mp4", "description": "", "slug": "complex-number-addition", "kind": "Video", "video_id": "0QlJrnRRfW8", "keywords": "", "youtube_id": "0QlJrnRRfW8", "readable_id": "complex-number-addition"}, "pdqOIg_QYSc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pdqOIg_QYSc.mp4/pdqOIg_QYSc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pdqOIg_QYSc.mp4/pdqOIg_QYSc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pdqOIg_QYSc.m3u8/pdqOIg_QYSc.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/early-classical/east-and-west-pediments-from-the-temple-of-aphaia-aegina-c-490-480-b-c-e/", "duration": 880, "id": "pdqOIg_QYSc", "title": "East and West Pediments, Temple of Aphaia, Aegina", "format": "mp4", "description": "East and West Pediments from the Temple of Aphaia, Aegina, Archaic/Early Classical Periods, c. 490-480 B.C.E. (Glyptothek, Munich)\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "east-and-west-pediments-from-the-temple-of-aphaia-aegina-c-490-480-b-c-e", "kind": "Video", "video_id": "pdqOIg_QYSc", "keywords": "", "youtube_id": "pdqOIg_QYSc", "readable_id": "east-and-west-pediments-from-the-temple-of-aphaia-aegina-c-490-480-b-c-e"}, "sBvRJUwXJPo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sBvRJUwXJPo.mp4/sBvRJUwXJPo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sBvRJUwXJPo.mp4/sBvRJUwXJPo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sBvRJUwXJPo.m3u8/sBvRJUwXJPo.m3u8"}, "duration": 187, "id": "sBvRJUwXJPo", "title": "Multiply and simplify a radical expression 2", "format": "mp4", "description": "Multiply and Simply a Radical Expression", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/multiply-and-simplify-a-radical-expression-2/", "slug": "multiply-and-simplify-a-radical-expression-2", "kind": "Video", "video_id": "sBvRJUwXJPo", "keywords": "u16_l2_t1_we2, Multiply, and, Simply, Radical, Expression", "youtube_id": "sBvRJUwXJPo", "readable_id": "multiply-and-simplify-a-radical-expression-2"}, "WfqgFBGet7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WfqgFBGet7s.mp4/WfqgFBGet7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WfqgFBGet7s.mp4/WfqgFBGet7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WfqgFBGet7s.m3u8/WfqgFBGet7s.m3u8"}, "duration": 625, "id": "WfqgFBGet7s", "title": "Mountain height word problem", "format": "mp4", "description": "Using some basic algebra to solve what looks like a hairy word problem that involves proportions.", "path": "khan/math/algebra/ratio-proportion-topic/advanced-ratios/ratio-and-proportion/", "slug": "ratio-and-proportion", "kind": "Video", "video_id": "WfqgFBGet7s", "keywords": "Ratio, And, Proportion, CC_6_RP_3", "youtube_id": "WfqgFBGet7s", "readable_id": "ratio-and-proportion"}, "jxA8MffVmPs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jxA8MffVmPs.mp4/jxA8MffVmPs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jxA8MffVmPs.mp4/jxA8MffVmPs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jxA8MffVmPs.m3u8/jxA8MffVmPs.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/place_value/place-value-1/", "duration": 145, "id": "jxA8MffVmPs", "title": "Finding a number's place value", "format": "mp4", "description": "When finding the place value of a particular number, it helps to write out exactly what the number means. Listen as we explain in this video.", "slug": "place-value-1", "kind": "Video", "video_id": "jxA8MffVmPs", "keywords": "U01_L1_T1_we1, Place, Value, CC_2_NBT_6", "youtube_id": "jxA8MffVmPs", "readable_id": "place-value-1"}, "a5z-OEIfw3s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a5z-OEIfw3s.mp4/a5z-OEIfw3s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a5z-OEIfw3s.mp4/a5z-OEIfw3s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a5z-OEIfw3s.m3u8/a5z-OEIfw3s.m3u8"}, "duration": 345, "id": "a5z-OEIfw3s", "title": "Fractal fractions", "format": "mp4", "description": "How to make snazzy-lookin' fractal equations using simple algebra. For more abacabadabacaba: http://www.abacaba.org/ and http://books.google.com/books?id=QpPlxwSa8akC&pg=PA60&lpg=PA60&dq=abacabadabacaba+%22martin+gardner%22&source=bl&ots=92eAyvrZGV&sig=J2uvF2DAyn9kY8nSarSy-XIXW74&hl=en&sa=X&ei=Np45T4K9GYixiQK92NG2Bg&ved=0CCEQ6AEwAA#v=onepage&q&f=false", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/fractal-fractions/", "slug": "fractal-fractions", "kind": "Video", "video_id": "a5z-OEIfw3s", "keywords": "fractal, fractions, infinity, mathematics, math, algebra", "youtube_id": "a5z-OEIfw3s", "readable_id": "fractal-fractions"}, "9BUDq62Ghic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9BUDq62Ghic.mp4/9BUDq62Ghic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9BUDq62Ghic.mp4/9BUDq62Ghic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9BUDq62Ghic.m3u8/9BUDq62Ghic.m3u8"}, "duration": 212, "id": "9BUDq62Ghic", "title": "The language advocates", "format": "mp4", "description": "", "path": "the-language-advocates/", "slug": "the-language-advocates", "kind": "Video", "video_id": "9BUDq62Ghic", "keywords": "", "youtube_id": "9BUDq62Ghic", "readable_id": "the-language-advocates"}, "1oFv56vSvvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1oFv56vSvvA.mp4/1oFv56vSvvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1oFv56vSvvA.mp4/1oFv56vSvvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1oFv56vSvvA.m3u8/1oFv56vSvvA.m3u8"}, "duration": 264, "id": "1oFv56vSvvA", "title": "Converting metric and U.S. customary units of weight", "format": "mp4", "description": "We're converting kilograms to milligrams and tons to ounces. Let's do this example together.", "path": "converting-weight/", "slug": "converting-weight", "kind": "Video", "video_id": "1oFv56vSvvA", "keywords": "", "youtube_id": "1oFv56vSvvA", "readable_id": "converting-weight"}, "jxptCXHLxKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jxptCXHLxKQ.mp4/jxptCXHLxKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jxptCXHLxKQ.mp4/jxptCXHLxKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jxptCXHLxKQ.m3u8/jxptCXHLxKQ.m3u8"}, "duration": 264, "id": "jxptCXHLxKQ", "title": "Refraction in water", "format": "mp4", "description": "Refraction in Water", "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/refraction-in-water/", "slug": "refraction-in-water", "kind": "Video", "video_id": "jxptCXHLxKQ", "keywords": "Refraction, in, Water", "youtube_id": "jxptCXHLxKQ", "readable_id": "refraction-in-water"}, "eGRZKkmI_fo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eGRZKkmI_fo.mp4/eGRZKkmI_fo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eGRZKkmI_fo.mp4/eGRZKkmI_fo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eGRZKkmI_fo.m3u8/eGRZKkmI_fo.m3u8"}, "duration": 446, "id": "eGRZKkmI_fo", "title": "Parametrization of a reverse path", "format": "mp4", "description": "Understanding how to parametrize a reverse path for the same curve.", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/parametrization-of-a-reverse-path/", "slug": "parametrization-of-a-reverse-path", "kind": "Video", "video_id": "eGRZKkmI_fo", "keywords": "parametric, equation, vector, calculus", "youtube_id": "eGRZKkmI_fo", "readable_id": "parametrization-of-a-reverse-path"}, "E2VxbufzuWQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E2VxbufzuWQ.mp4/E2VxbufzuWQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E2VxbufzuWQ.mp4/E2VxbufzuWQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E2VxbufzuWQ.m3u8/E2VxbufzuWQ.m3u8"}, "duration": 696, "id": "E2VxbufzuWQ", "title": "Laplace as linear operator and Laplace of derivatives", "format": "mp4", "description": "Useful properties of the Laplace Transform", "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/laplace-transform-5/", "slug": "laplace-transform-5", "kind": "Video", "video_id": "E2VxbufzuWQ", "keywords": "laplace, transform, linear, derivative", "youtube_id": "E2VxbufzuWQ", "readable_id": "laplace-transform-5"}, "MNKXq7c3eQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MNKXq7c3eQU.mp4/MNKXq7c3eQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MNKXq7c3eQU.mp4/MNKXq7c3eQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MNKXq7c3eQU.m3u8/MNKXq7c3eQU.m3u8"}, "duration": 433, "id": "MNKXq7c3eQU", "title": "When flu viruses attack!", "format": "mp4", "description": "Learn how flu viruses get into and out of your cells using Hemagglutinin and Neuraminidase proteins on their surface. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/when-flu-viruses-attack/", "slug": "when-flu-viruses-attack", "kind": "Video", "video_id": "MNKXq7c3eQU", "keywords": "", "youtube_id": "MNKXq7c3eQU", "readable_id": "when-flu-viruses-attack"}, "svUt84Touyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/svUt84Touyc.mp4/svUt84Touyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/svUt84Touyc.mp4/svUt84Touyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/svUt84Touyc.m3u8/svUt84Touyc.m3u8"}, "duration": 185, "id": "svUt84Touyc", "title": "Analyzing and identifying proportional relationships", "format": "mp4", "description": "Keep in mind that you have a proportional relationship if the ratio between the variables is always the same. In this example we'll graph this relationship along an x and y axis to find our answer.", "path": "analyzing-and-identifying-proportional-relationships-ex1/", "slug": "analyzing-and-identifying-proportional-relationships-ex1", "kind": "Video", "video_id": "svUt84Touyc", "keywords": "", "youtube_id": "svUt84Touyc", "readable_id": "analyzing-and-identifying-proportional-relationships-ex1"}, "Yw3EoxC_GXU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yw3EoxC_GXU.mp4/Yw3EoxC_GXU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yw3EoxC_GXU.mp4/Yw3EoxC_GXU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yw3EoxC_GXU.m3u8/Yw3EoxC_GXU.m3u8"}, "duration": 183, "id": "Yw3EoxC_GXU", "title": "Example: Ways to represent multiplication", "format": "mp4", "description": "Multiplying Whole Numbers and Applications 1", "path": "khan/math/arithmetic/multiplication-division/multiplication_fun/multiplying-whole-numbers-and-applications-1/", "slug": "multiplying-whole-numbers-and-applications-1", "kind": "Video", "video_id": "Yw3EoxC_GXU", "keywords": "U01_L3_T1_we1, Multiplying, Whole, Numbers, and, Applications, CC_3_OA_5, CC_3_OA_7", "youtube_id": "Yw3EoxC_GXU", "readable_id": "multiplying-whole-numbers-and-applications-1"}, "CstmE8dmeEg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CstmE8dmeEg.mp4/CstmE8dmeEg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CstmE8dmeEg.mp4/CstmE8dmeEg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CstmE8dmeEg.m3u8/CstmE8dmeEg.m3u8"}, "duration": 394, "id": "CstmE8dmeEg", "title": "Bonnie Greer on the Parthenon sculptures at the British Museum", "format": "mp4", "description": "Playwright, author and British Museum trustee, Bonnie Greer celebrates the enduring beauty and humanity of the Parthenon Sculptures.The Parthenon was built as a temple dedicated to the goddess Athena. It was the centerpiece of an ambitious building program on the Acropolis of Athens. The temple's great size and lavish use of white marble was intended to show off the city's power and wealth at the height of its empire. \u00a9 Trustees of the British Museum", "path": "greer-parthenon/", "slug": "greer-parthenon", "kind": "Video", "video_id": "CstmE8dmeEg", "keywords": "Parthenon, Greece", "youtube_id": "CstmE8dmeEg", "readable_id": "greer-parthenon"}, "hx8bYUF30Gg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hx8bYUF30Gg.mp4/hx8bYUF30Gg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hx8bYUF30Gg.mp4/hx8bYUF30Gg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hx8bYUF30Gg.m3u8/hx8bYUF30Gg.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/social-perception-the-halo-effect/", "duration": 315, "id": "hx8bYUF30Gg", "title": "Social perception - The Halo Effect", "format": "mp4", "description": "", "slug": "social-perception-the-halo-effect", "kind": "Video", "video_id": "hx8bYUF30Gg", "keywords": "", "youtube_id": "hx8bYUF30Gg", "readable_id": "social-perception-the-halo-effect"}, "m4raOIxsbaU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m4raOIxsbaU.mp4/m4raOIxsbaU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m4raOIxsbaU.mp4/m4raOIxsbaU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m4raOIxsbaU.m3u8/m4raOIxsbaU.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/battle-of-the-romans-and-barbarians-ludovisi-battle-sarcophagus-c-250-260-c-e/", "duration": 334, "id": "m4raOIxsbaU", "title": "Ludovisi Battle Sarcophagus", "format": "mp4", "description": "Battle of the Romans and Barbarians (Ludovisi Battle Sarcophagus), c. 250-260 C.E. (Museo Nazionale Romano-Palazzo Altemps, Rome)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "battle-of-the-romans-and-barbarians-ludovisi-battle-sarcophagus-c-250-260-c-e", "kind": "Video", "video_id": "m4raOIxsbaU", "keywords": "", "youtube_id": "m4raOIxsbaU", "readable_id": "battle-of-the-romans-and-barbarians-ludovisi-battle-sarcophagus-c-250-260-c-e"}, "ZRGczIT9Cfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZRGczIT9Cfc.mp4/ZRGczIT9Cfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZRGczIT9Cfc.mp4/ZRGczIT9Cfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZRGczIT9Cfc.m3u8/ZRGczIT9Cfc.m3u8"}, "path": "khan/humanities/art-asia/beginners-guide-asian-culture/hindu-art-culture/vishnu-and-krishna/", "duration": 209, "id": "ZRGczIT9Cfc", "title": "The Hindu deities Vishnu and Krishna", "format": "mp4", "description": "Learn about the Hindu deity Vishnu and his avatar Krishna, and hear a story about Krishna defeating the serpent Kaliya. Discover more about these Hindu deities on the Asian Art Museum's education website.", "slug": "vishnu-and-krishna", "kind": "Video", "video_id": "ZRGczIT9Cfc", "keywords": "", "youtube_id": "ZRGczIT9Cfc", "readable_id": "vishnu-and-krishna"}, "LsPqeS5I_QM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LsPqeS5I_QM.mp4/LsPqeS5I_QM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LsPqeS5I_QM.mp4/LsPqeS5I_QM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LsPqeS5I_QM.m3u8/LsPqeS5I_QM.m3u8"}, "duration": 504, "id": "LsPqeS5I_QM", "title": "Our expanding Universe", "format": "mp4", "description": "In 1998, two independent teams of astrophysicists discovered a baffling phenomenon: the Universe is expanding at an ever-faster rate. The current understanding of gravity can't explain this cosmic acceleration. Scientists think that either a mysterious force called dark energy is to blame\u2014or a reworking of gravitational theory is in order. Travel to the University of California's Lick Observatory to learn how astrophysicists use distant stellar explosions to observe the expansion of space. Then watch a team at Fermilab assemble the Dark Energy Camera, a new device researchers hope will find compelling evidence of what's propelling the Universe to expand at an increasing pace.", "path": "our-expanding-universe/", "slug": "our-expanding-universe", "kind": "Video", "video_id": "LsPqeS5I_QM", "keywords": "", "youtube_id": "LsPqeS5I_QM", "readable_id": "our-expanding-universe"}, "COZqJb-HT-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/COZqJb-HT-k.mp4/COZqJb-HT-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/COZqJb-HT-k.mp4/COZqJb-HT-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/COZqJb-HT-k.m3u8/COZqJb-HT-k.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/stabilization-of-a-conjugate-base-resonance-new/", "duration": 429, "id": "COZqJb-HT-k", "title": "Stabilization of a conjugate base: resonance", "format": "mp4", "description": "How resonance affects the stability of a conjugate base", "slug": "stabilization-of-a-conjugate-base-resonance-new", "kind": "Video", "video_id": "COZqJb-HT-k", "keywords": "", "youtube_id": "COZqJb-HT-k", "readable_id": "stabilization-of-a-conjugate-base-resonance-new"}, "kdJ6aGToDlo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kdJ6aGToDlo.mp4/kdJ6aGToDlo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kdJ6aGToDlo.mp4/kdJ6aGToDlo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kdJ6aGToDlo.m3u8/kdJ6aGToDlo.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/validity/", "duration": 429, "id": "kdJ6aGToDlo", "title": "Fundamentals: Validity", "format": "mp4", "description": "Paul Henne discusses the philosophical concept of validity. After reviewing the structure of an argument, he defines validity: an argument is valid if and only if its premises guarantee the conclusion. He reviews a few examples of validity and invalidity, and he leaves you with one example to figure out on your own.\nSpeaker: Paul Henne\n", "slug": "validity", "kind": "Video", "video_id": "kdJ6aGToDlo", "keywords": "", "youtube_id": "kdJ6aGToDlo", "readable_id": "validity"}, "1aJBToJrlvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1aJBToJrlvA.mp4/1aJBToJrlvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1aJBToJrlvA.mp4/1aJBToJrlvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1aJBToJrlvA.m3u8/1aJBToJrlvA.m3u8"}, "duration": 671, "id": "1aJBToJrlvA", "title": "Eukaryopolis - The city of animal cells", "format": "mp4", "description": "Hank tells us about the city of Eukaryopolis - the animal cell that is responsible for all the cool things that happen in our bodies.", "path": "crash-course-biology-104/", "slug": "crash-course-biology-104", "kind": "Video", "video_id": "1aJBToJrlvA", "keywords": "", "youtube_id": "1aJBToJrlvA", "readable_id": "crash-course-biology-104"}, "WhPW50r07L8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WhPW50r07L8.mp4/WhPW50r07L8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WhPW50r07L8.mp4/WhPW50r07L8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WhPW50r07L8.m3u8/WhPW50r07L8.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/making-greek-vases/", "duration": 260, "id": "WhPW50r07L8", "title": "Making Greek vases", "format": "mp4", "description": "In ancient Greece, the phrase \"to make pottery\" meant to work hard.\u00a0This video from the Getty Museum reveals how the typical Athenian potter prepared clay, threw vases, oversaw firing, and added decoration or employed vase-painters. Love art? Follow us on Google+", "slug": "making-greek-vases", "kind": "Video", "video_id": "WhPW50r07L8", "keywords": "art history", "youtube_id": "WhPW50r07L8", "readable_id": "making-greek-vases"}, "F4Lt0AjMxEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F4Lt0AjMxEY.mp4/F4Lt0AjMxEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F4Lt0AjMxEY.mp4/F4Lt0AjMxEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F4Lt0AjMxEY.m3u8/F4Lt0AjMxEY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/diabetic-nephropathy-mechanisms/", "duration": 583, "id": "F4Lt0AjMxEY", "title": "Diabetic nephropathy - Mechanisms", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diabetic-nephropathy-mechanisms", "kind": "Video", "video_id": "F4Lt0AjMxEY", "keywords": "", "youtube_id": "F4Lt0AjMxEY", "readable_id": "diabetic-nephropathy-mechanisms"}, "Ax98k35h_jk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ax98k35h_jk.mp4/Ax98k35h_jk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ax98k35h_jk.mp4/Ax98k35h_jk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ax98k35h_jk.m3u8/Ax98k35h_jk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/wegeners-granulomatosis-and-microscopic-polyangiitis/", "duration": 512, "id": "Ax98k35h_jk", "title": "Wegener\u2019s granulomatosis and microscopic polyangiitis", "format": "mp4", "description": "Wegener\u2019s granulomatosis (also known as granulomatosis with polyangiitis) is a type of vasculitis that affects small and medium blood vessels. Symptoms can include saddle nose deformity, chronic sinusitis, and collapsed trachea. Microscopic polyangiitis is similar to wegener\u2019s granulomatosis except it only affects small blood vessels in the lungs or kidneys. Learn how the presence of granulomas and antibodies (cANCA and pANCA) differentiate these two conditions. ", "slug": "wegeners-granulomatosis-and-microscopic-polyangiitis", "kind": "Video", "video_id": "Ax98k35h_jk", "keywords": "", "youtube_id": "Ax98k35h_jk", "readable_id": "wegeners-granulomatosis-and-microscopic-polyangiitis"}, "ko-cYG3d6ec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ko-cYG3d6ec.mp4/ko-cYG3d6ec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ko-cYG3d6ec.mp4/ko-cYG3d6ec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ko-cYG3d6ec.m3u8/ko-cYG3d6ec.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/angle-game-part-2/", "duration": 589, "id": "ko-cYG3d6ec", "title": "Angle game (part 2)", "format": "mp4", "description": "More examples of the Angle Game.", "slug": "angle-game-part-2", "kind": "Video", "video_id": "ko-cYG3d6ec", "keywords": "geometry, angles, complementary, triangle, supplementary, math, CC_7_G_5, CC_8_G_5", "youtube_id": "ko-cYG3d6ec", "readable_id": "angle-game-part-2"}, "SdHwokUU8xI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SdHwokUU8xI.mp4/SdHwokUU8xI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SdHwokUU8xI.mp4/SdHwokUU8xI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SdHwokUU8xI.m3u8/SdHwokUU8xI.m3u8"}, "duration": 318, "id": "SdHwokUU8xI", "title": "Example: Graph of cosine", "format": "mp4", "description": "Basic interpretation of the graph of the cosine function", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/we-graph-of-cosine-function/", "slug": "we-graph-of-cosine-function", "kind": "Video", "video_id": "SdHwokUU8xI", "keywords": "cos, cosine, graph", "youtube_id": "SdHwokUU8xI", "readable_id": "we-graph-of-cosine-function"}, "-7kSDHFXwZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-7kSDHFXwZ4.mp4/-7kSDHFXwZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-7kSDHFXwZ4.mp4/-7kSDHFXwZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-7kSDHFXwZ4.m3u8/-7kSDHFXwZ4.m3u8"}, "path": "khan/humanities/history/1600s-1800s/declaration-of-independence/tyranny-and-despotism/", "duration": 594, "id": "-7kSDHFXwZ4", "title": "Tyranny and despotism", "format": "mp4", "description": "In this video, Aspen Institute President and CEO Walter Isaacson\u00a0talks to Sal about \u00a0the Declaration of Independence.", "slug": "tyranny-and-despotism", "kind": "Video", "video_id": "-7kSDHFXwZ4", "keywords": "", "youtube_id": "-7kSDHFXwZ4", "readable_id": "tyranny-and-despotism"}, "1AqkBdCBm9o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1AqkBdCBm9o.mp4/1AqkBdCBm9o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1AqkBdCBm9o.mp4/1AqkBdCBm9o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1AqkBdCBm9o.m3u8/1AqkBdCBm9o.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-numbers-120/numbers-to-120/", "duration": 114, "id": "1AqkBdCBm9o", "title": "Missing numbers between 0 and 120", "format": "mp4", "description": "Learn how to find missing numbers between 0 and 120.", "slug": "numbers-to-120", "kind": "Video", "video_id": "1AqkBdCBm9o", "keywords": "", "youtube_id": "1AqkBdCBm9o", "readable_id": "numbers-to-120"}, "4mrp5uI9anE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4mrp5uI9anE.mp4/4mrp5uI9anE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4mrp5uI9anE.mp4/4mrp5uI9anE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4mrp5uI9anE.m3u8/4mrp5uI9anE.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/genetic-mutations/mutagens-and-carcinogens/", "duration": 337, "id": "4mrp5uI9anE", "title": "Mutagens and carcinogens", "format": "mp4", "description": "", "slug": "mutagens-and-carcinogens", "kind": "Video", "video_id": "4mrp5uI9anE", "keywords": "MCAT", "youtube_id": "4mrp5uI9anE", "readable_id": "mutagens-and-carcinogens"}, "wSiamij_i_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wSiamij_i_k.mp4/wSiamij_i_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wSiamij_i_k.mp4/wSiamij_i_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wSiamij_i_k.m3u8/wSiamij_i_k.m3u8"}, "duration": 404, "id": "wSiamij_i_k", "title": "Function inverse example 1", "format": "mp4", "description": "Function Inverse Example 1", "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/function-inverse-example-1/", "slug": "function-inverse-example-1", "kind": "Video", "video_id": "wSiamij_i_k", "keywords": "Function, Inverse, Example, CC_39336_F-BF_4, CC_39336_F-BF_4_a, CC_39336_F-BF_4_b", "youtube_id": "wSiamij_i_k", "readable_id": "function-inverse-example-1"}, "PYZhVX6rr08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PYZhVX6rr08.mp4/PYZhVX6rr08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PYZhVX6rr08.mp4/PYZhVX6rr08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PYZhVX6rr08.m3u8/PYZhVX6rr08.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/residential-segregation/", "duration": 388, "id": "PYZhVX6rr08", "title": "Residential segregation", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "residential-segregation", "kind": "Video", "video_id": "PYZhVX6rr08", "keywords": "", "youtube_id": "PYZhVX6rr08", "readable_id": "residential-segregation"}, "9Ek61w1LxSc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9Ek61w1LxSc.mp4/9Ek61w1LxSc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9Ek61w1LxSc.mp4/9Ek61w1LxSc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9Ek61w1LxSc.m3u8/9Ek61w1LxSc.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/simple-equations/", "duration": 666, "id": "9Ek61w1LxSc", "title": "Simple equations of the form ax = b", "format": "mp4", "description": "Let's ease into this, shall we? Here's an introduction to basic algebraic equations of the form ax=b. Remember that you can check to see if you have the right answer by substituting it for the variable!", "slug": "simple-equations", "kind": "Video", "video_id": "9Ek61w1LxSc", "keywords": "algebra, introduction, CC_6_EE_5, CC_7_EE_1, CC_7_EE_4", "youtube_id": "9Ek61w1LxSc", "readable_id": "simple-equations"}, "qel8yujGuZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qel8yujGuZM.mp4/qel8yujGuZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qel8yujGuZM.mp4/qel8yujGuZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qel8yujGuZM.m3u8/qel8yujGuZM.m3u8"}, "duration": 724, "id": "qel8yujGuZM", "title": "Breathing Basics", "format": "mp4", "description": "Learn the mechanics of breathing, and how breathing air in is quite different from breathing air out.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "breathing-basics/", "slug": "breathing-basics", "kind": "Video", "video_id": "qel8yujGuZM", "keywords": "", "youtube_id": "qel8yujGuZM", "readable_id": "breathing-basics"}, "UFWAu8Ptth0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UFWAu8Ptth0.mp4/UFWAu8Ptth0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UFWAu8Ptth0.mp4/UFWAu8Ptth0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UFWAu8Ptth0.m3u8/UFWAu8Ptth0.m3u8"}, "duration": 584, "id": "UFWAu8Ptth0", "title": "2nd order linear homogeneous differential equations 1", "format": "mp4", "description": "Introduction to 2nd order, linear, homogeneous differential equations with constant coefficients.", "path": "khan/math/differential-equations/second-order-differential-equations/linear-homogeneous-2nd-order/2nd-order-linear-homogeneous-differential-equations-1/", "slug": "2nd-order-linear-homogeneous-differential-equations-1", "kind": "Video", "video_id": "UFWAu8Ptth0", "keywords": "2nd, Order, Linear, Homogeneous, Differential, Equations", "youtube_id": "UFWAu8Ptth0", "readable_id": "2nd-order-linear-homogeneous-differential-equations-1"}, "ahdKdxsTj8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ahdKdxsTj8E.mp4/ahdKdxsTj8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ahdKdxsTj8E.mp4/ahdKdxsTj8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ahdKdxsTj8E.m3u8/ahdKdxsTj8E.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/adding-and-subtracting-polynomials-1/", "duration": 121, "id": "ahdKdxsTj8E", "title": "Adding and subtracting polynomials 1", "format": "mp4", "description": "Adding and Subtracting Polynomials 1", "slug": "adding-and-subtracting-polynomials-1", "kind": "Video", "video_id": "ahdKdxsTj8E", "keywords": "U08_L2_T2_we1, Adding, and, Subtracting, Polynomials, CC_39336_A-APR_1", "youtube_id": "ahdKdxsTj8E", "readable_id": "adding-and-subtracting-polynomials-1"}, "xt2M4HTw29A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xt2M4HTw29A.mp4/xt2M4HTw29A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xt2M4HTw29A.mp4/xt2M4HTw29A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xt2M4HTw29A.m3u8/xt2M4HTw29A.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/leyster-self/", "duration": 273, "id": "xt2M4HTw29A", "title": "Judith Leyster, Self-Portrait", "format": "mp4", "description": "Judith Leyster, Self-Portrait, c. 1633, oil on canvas, 74.6 x 65.1 cm / 29-3/8 x 25-5/8 inches (National Gallery of Art)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "leyster-self", "kind": "Video", "video_id": "xt2M4HTw29A", "keywords": "Judith Leyster, Self-Portrait, 1633, National Gallery of Art", "youtube_id": "xt2M4HTw29A", "readable_id": "leyster-self"}, "aKAw-DyZa6g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aKAw-DyZa6g.mp4/aKAw-DyZa6g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aKAw-DyZa6g.mp4/aKAw-DyZa6g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aKAw-DyZa6g.m3u8/aKAw-DyZa6g.m3u8"}, "path": "khan/math/probability/statistical-studies/statistical-questions/reasonable-samples/", "duration": 257, "id": "aKAw-DyZa6g", "title": "Reasonable samples", "format": "mp4", "description": "To make a valid conclusion, you'll need a representaive, not skewed, sample.", "slug": "reasonable-samples", "kind": "Video", "video_id": "aKAw-DyZa6g", "keywords": "", "youtube_id": "aKAw-DyZa6g", "readable_id": "reasonable-samples"}, "pdXcf5ZWHf0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pdXcf5ZWHf0.mp4/pdXcf5ZWHf0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pdXcf5ZWHf0.mp4/pdXcf5ZWHf0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pdXcf5ZWHf0.m3u8/pdXcf5ZWHf0.m3u8"}, "duration": 468, "id": "pdXcf5ZWHf0", "title": "IIT JEE diameter slope", "format": "mp4", "description": "2010 IIT JEE Paper 1 problem 37 Diameter Slope", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-diameter-slope/", "slug": "iit-jee-diameter-slope", "kind": "Video", "video_id": "pdXcf5ZWHf0", "keywords": "2010, IIT, JEE, Paper, problem, 37, Diameter, Slope", "youtube_id": "pdXcf5ZWHf0", "readable_id": "iit-jee-diameter-slope"}, "Pz-uLRZS8YM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pz-uLRZS8YM.mp4/Pz-uLRZS8YM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pz-uLRZS8YM.mp4/Pz-uLRZS8YM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pz-uLRZS8YM.m3u8/Pz-uLRZS8YM.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/carbohydrates-epimers-common-names/", "duration": 677, "id": "Pz-uLRZS8YM", "title": "Carbohydrates - Epimers, common names", "format": "mp4", "description": "", "slug": "carbohydrates-epimers-common-names", "kind": "Video", "video_id": "Pz-uLRZS8YM", "keywords": "", "youtube_id": "Pz-uLRZS8YM", "readable_id": "carbohydrates-epimers-common-names"}, "2N62v_63SBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2N62v_63SBo.mp4/2N62v_63SBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2N62v_63SBo.mp4/2N62v_63SBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2N62v_63SBo.m3u8/2N62v_63SBo.m3u8"}, "duration": 1266, "id": "2N62v_63SBo", "title": "Asymptotes of rational functions", "format": "mp4", "description": "Asymptotes of Rational Functions", "path": "khan/math/algebra2/rational-expressions/rational-function-graphing/asymptotes-of-rational-functions/", "slug": "asymptotes-of-rational-functions", "kind": "Video", "video_id": "2N62v_63SBo", "keywords": "Asymptotes, of, Rational, Functions, CC_39336_F-IF_7_d", "youtube_id": "2N62v_63SBo", "readable_id": "asymptotes-of-rational-functions"}, "edgc5bX1T10": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/edgc5bX1T10.mp4/edgc5bX1T10.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/edgc5bX1T10.mp4/edgc5bX1T10.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/edgc5bX1T10.m3u8/edgc5bX1T10.m3u8"}, "duration": 164, "id": "edgc5bX1T10", "title": "How I use Khan Academy reports: An educator's perspective", "format": "mp4", "description": "\u200bTeachers describe how they use Khan Academy's reports (2:44).", "path": "how-i-use-ka-data/", "slug": "how-i-use-ka-data", "kind": "Video", "video_id": "edgc5bX1T10", "keywords": "", "youtube_id": "edgc5bX1T10", "readable_id": "how-i-use-ka-data"}, "Ax8vcxRtmHY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ax8vcxRtmHY.mp4/Ax8vcxRtmHY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ax8vcxRtmHY.mp4/Ax8vcxRtmHY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ax8vcxRtmHY.m3u8/Ax8vcxRtmHY.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/daedalic-archaic/kouros-youth-archaic-greek-c-590-580-b-c-e/", "duration": 223, "id": "Ax8vcxRtmHY", "title": "New York Kouros", "format": "mp4", "description": "Marble Statue of a Kouros (New York Kouros), c. 590\u2013580 B.C.E. (Attic, archaic), Naxian marble, 194.6 x 51.6 cm (The Metropolitan Museum of Art)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\u00a0", "slug": "kouros-youth-archaic-greek-c-590-580-b-c-e", "kind": "Video", "video_id": "Ax8vcxRtmHY", "keywords": "Kouros, Ancient Greece, Smarthistory, Art History, Greek, ancient, sculpture, Metropolitan", "youtube_id": "Ax8vcxRtmHY", "readable_id": "kouros-youth-archaic-greek-c-590-580-b-c-e"}, "SXYeQDrH36Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SXYeQDrH36Y.mp4/SXYeQDrH36Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SXYeQDrH36Y.mp4/SXYeQDrH36Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SXYeQDrH36Y.m3u8/SXYeQDrH36Y.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cardiomyopathy/what-is-cardiomyopathy/", "duration": 634, "id": "SXYeQDrH36Y", "title": "What is cardiomyopathy?", "format": "mp4", "description": "", "slug": "what-is-cardiomyopathy", "kind": "Video", "video_id": "SXYeQDrH36Y", "keywords": "", "youtube_id": "SXYeQDrH36Y", "readable_id": "what-is-cardiomyopathy"}, "MHtTP6vc4RU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MHtTP6vc4RU.mp4/MHtTP6vc4RU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MHtTP6vc4RU.mp4/MHtTP6vc4RU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MHtTP6vc4RU.m3u8/MHtTP6vc4RU.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial-remainder-theorem-tutorial/polynomial-remainder-theorem-example/", "duration": 212, "id": "MHtTP6vc4RU", "title": "Polynomial remainder theorem example", "format": "mp4", "description": "", "slug": "polynomial-remainder-theorem-example", "kind": "Video", "video_id": "MHtTP6vc4RU", "keywords": "", "youtube_id": "MHtTP6vc4RU", "readable_id": "polynomial-remainder-theorem-example"}, "LVMLs2z1JYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LVMLs2z1JYg.mp4/LVMLs2z1JYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LVMLs2z1JYg.mp4/LVMLs2z1JYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LVMLs2z1JYg.m3u8/LVMLs2z1JYg.m3u8"}, "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/leveraged-buy-outs/basic-leveraged-buyout-lbo/", "duration": 335, "id": "LVMLs2z1JYg", "title": "Basic leveraged buyout (LBO)", "format": "mp4", "description": "The mechanics of a simple leveraged buy-out", "slug": "basic-leveraged-buyout-lbo", "kind": "Video", "video_id": "LVMLs2z1JYg", "keywords": "private, equity, finance", "youtube_id": "LVMLs2z1JYg", "readable_id": "basic-leveraged-buyout-lbo"}, "_yvdb_0NGT8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_yvdb_0NGT8.mp4/_yvdb_0NGT8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_yvdb_0NGT8.mp4/_yvdb_0NGT8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_yvdb_0NGT8.m3u8/_yvdb_0NGT8.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/reactions-alcohols-tutorial/formation-of-nitrate-esters/", "duration": 367, "id": "_yvdb_0NGT8", "title": "Formation of nitrate esters", "format": "mp4", "description": "", "slug": "formation-of-nitrate-esters", "kind": "Video", "video_id": "_yvdb_0NGT8", "keywords": "", "youtube_id": "_yvdb_0NGT8", "readable_id": "formation-of-nitrate-esters"}, "FgVkgR1bXvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FgVkgR1bXvY.mp4/FgVkgR1bXvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FgVkgR1bXvY.mp4/FgVkgR1bXvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FgVkgR1bXvY.m3u8/FgVkgR1bXvY.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/pierre-le-gros-the-younger-stanislas-kostka-on-his-deathbed-1703/", "duration": 273, "id": "FgVkgR1bXvY", "title": "Pierre Le Gros the Younger, Stanislas Kostka on his Deathbed", "format": "mp4", "description": "Pierre Le Gros the Younger, Stanislas Kostka on His Deathbed, 1703, upstairs at Bernini's Sant'Andrea al Quirinale\n\nSpeakers: Frank Dabbell, Beth Harris and Steven Zucker \n\nA Smarthistory.org video", "slug": "pierre-le-gros-the-younger-stanislas-kostka-on-his-deathbed-1703", "kind": "Video", "video_id": "FgVkgR1bXvY", "keywords": "Baroque, Smarthistory, Art, Art History, Pierre Le Gros, Stanislas Kostka, Bernini, Rome", "youtube_id": "FgVkgR1bXvY", "readable_id": "pierre-le-gros-the-younger-stanislas-kostka-on-his-deathbed-1703"}, "OBVGQt1Eeug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OBVGQt1Eeug.mp4/OBVGQt1Eeug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OBVGQt1Eeug.mp4/OBVGQt1Eeug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OBVGQt1Eeug.m3u8/OBVGQt1Eeug.m3u8"}, "duration": 403, "id": "OBVGQt1Eeug", "title": "Mixture problems 2", "format": "mp4", "description": "Mixture problems 2", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/mixture-problems-2/", "slug": "mixture-problems-2", "kind": "Video", "video_id": "OBVGQt1Eeug", "keywords": "U06_L2_T2_we2, Mixture, problems, CC_7_RP_2, CC_7_RP_2_b, CC_7_RP_2_c, CC_7_RP_3, CC_39336_A-CED_2, CC_39336_A-REI_1", "youtube_id": "OBVGQt1Eeug", "readable_id": "mixture-problems-2"}, "0Xxm2SGuGTk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0Xxm2SGuGTk.mp4/0Xxm2SGuGTk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0Xxm2SGuGTk.mp4/0Xxm2SGuGTk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0Xxm2SGuGTk.m3u8/0Xxm2SGuGTk.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/reliquaries-manuscripts-tapestries/holy-thorn-reliquary/", "duration": 181, "id": "0Xxm2SGuGTk", "title": "The Holy Thorn Reliquary of Jean, duc de Berry", "format": "mp4", "description": "The Holy Thorn Reliquary houses one of the most important relics of all time - a thorn from the Crown of Thorns that was put on Christ's head during the Crucifixion. \u00a9 Trustees of the British Museum", "slug": "holy-thorn-reliquary", "kind": "Video", "video_id": "0Xxm2SGuGTk", "keywords": "", "youtube_id": "0Xxm2SGuGTk", "readable_id": "holy-thorn-reliquary"}, "5D1gV37bKXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5D1gV37bKXY.mp4/5D1gV37bKXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5D1gV37bKXY.mp4/5D1gV37bKXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5D1gV37bKXY.m3u8/5D1gV37bKXY.m3u8"}, "path": "khan/math/probability/statistical-studies/hypothesis-test/simple-hypothesis-testing/", "duration": 385, "id": "5D1gV37bKXY", "title": "Simple hypothesis testing", "format": "mp4", "description": "", "slug": "simple-hypothesis-testing", "kind": "Video", "video_id": "5D1gV37bKXY", "keywords": "", "youtube_id": "5D1gV37bKXY", "readable_id": "simple-hypothesis-testing"}, "nGCW5teACC0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nGCW5teACC0.mp4/nGCW5teACC0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nGCW5teACC0.mp4/nGCW5teACC0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nGCW5teACC0.m3u8/nGCW5teACC0.m3u8"}, "duration": 325, "id": "nGCW5teACC0", "title": "Tangent slope as limiting value of secant slope example 1", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/tangent-slope-as-limiting-value-of-secant-slope-example-1/", "slug": "tangent-slope-as-limiting-value-of-secant-slope-example-1", "kind": "Video", "video_id": "nGCW5teACC0", "keywords": "", "youtube_id": "nGCW5teACC0", "readable_id": "tangent-slope-as-limiting-value-of-secant-slope-example-1"}, "hpY22uSAPAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hpY22uSAPAA.mp4/hpY22uSAPAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hpY22uSAPAA.mp4/hpY22uSAPAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hpY22uSAPAA.m3u8/hpY22uSAPAA.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/paul-troost-house-of-german-art-1933-37/", "duration": 442, "id": "hpY22uSAPAA", "title": "Troost, House of German Art and the Entartete Kunst exhibition", "format": "mp4", "description": "Paul Troost's the House of (German) Art, 1933-37 is discussed in relation to the Great Exhibition of German Art and the Entartete Kunst Exhibitions of 1937 in Munich. The House of German Art now exhibits international contemporary art in direct opposition to the original National Socialist intent.", "slug": "paul-troost-house-of-german-art-1933-37", "kind": "Video", "video_id": "hpY22uSAPAA", "keywords": "", "youtube_id": "hpY22uSAPAA", "readable_id": "paul-troost-house-of-german-art-1933-37"}, "ZMH1mhupHI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZMH1mhupHI8.mp4/ZMH1mhupHI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZMH1mhupHI8.mp4/ZMH1mhupHI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZMH1mhupHI8.m3u8/ZMH1mhupHI8.m3u8"}, "duration": 155, "id": "ZMH1mhupHI8", "title": "\"Paris - New York\" with Peter Kenny", "format": "mp4", "description": "Met curator Peter Kenny on international style in Charles-Honor\u00e9 Lannuier\u2019s Card table.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "paris-newyork/", "slug": "paris-newyork", "kind": "Video", "video_id": "ZMH1mhupHI8", "keywords": "daily life, fashion, furniture, metal, ornate, wood, North America", "youtube_id": "ZMH1mhupHI8", "readable_id": "paris-newyork"}, "PNXozoJWsWc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PNXozoJWsWc.mp4/PNXozoJWsWc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PNXozoJWsWc.mp4/PNXozoJWsWc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PNXozoJWsWc.m3u8/PNXozoJWsWc.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/inequalities-using-multiplication-and-division/", "duration": 627, "id": "PNXozoJWsWc", "title": "Multiplying and dividing with inequalities", "format": "mp4", "description": "Our discussion of linear inequalities begins with multiplying and dividing by negative numbers. Listen closely for the word \"swap.\" Super important!", "slug": "inequalities-using-multiplication-and-division", "kind": "Video", "video_id": "PNXozoJWsWc", "keywords": "Inequalities, Using, Multiplication, and, Division, CC_39336_A-REI_3", "youtube_id": "PNXozoJWsWc", "readable_id": "inequalities-using-multiplication-and-division"}, "EINpkcphsPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EINpkcphsPQ.mp4/EINpkcphsPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EINpkcphsPQ.mp4/EINpkcphsPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EINpkcphsPQ.m3u8/EINpkcphsPQ.m3u8"}, "duration": 536, "id": "EINpkcphsPQ", "title": "Garfield's proof of the Pythagorean theorem", "format": "mp4", "description": "James Garfield's proof of the Pythagorean Theorem.", "path": "khan/math/geometry/right_triangles_topic/pythagorean_proofs/garfield-s-proof-of-the-pythagorean-theorem/", "slug": "garfield-s-proof-of-the-pythagorean-theorem", "kind": "Video", "video_id": "EINpkcphsPQ", "keywords": "pythagoras", "youtube_id": "EINpkcphsPQ", "readable_id": "garfield-s-proof-of-the-pythagorean-theorem"}, "TOobWKx1xe0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TOobWKx1xe0.mp4/TOobWKx1xe0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TOobWKx1xe0.mp4/TOobWKx1xe0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TOobWKx1xe0.m3u8/TOobWKx1xe0.m3u8"}, "duration": 180, "id": "TOobWKx1xe0", "title": "Find measure of vertical angles", "format": "mp4", "description": "Given two intersecting lines and the measure of vertical angles, watch as we solve to find the measure of the remaining angles.", "path": "solving-for-unknown-angles/", "slug": "solving-for-unknown-angles", "kind": "Video", "video_id": "TOobWKx1xe0", "keywords": "", "youtube_id": "TOobWKx1xe0", "readable_id": "solving-for-unknown-angles"}, "rW6eJHMLCqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rW6eJHMLCqw.mp4/rW6eJHMLCqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rW6eJHMLCqw.mp4/rW6eJHMLCqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rW6eJHMLCqw.m3u8/rW6eJHMLCqw.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction/diels-alder-v-regiochemistry/", "duration": 831, "id": "rW6eJHMLCqw", "title": "Diels-Alder V: Regiochemistry", "format": "mp4", "description": "", "slug": "diels-alder-v-regiochemistry", "kind": "Video", "video_id": "rW6eJHMLCqw", "keywords": "", "youtube_id": "rW6eJHMLCqw", "readable_id": "diels-alder-v-regiochemistry"}, "cGhKJYfXW-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cGhKJYfXW-c.mp4/cGhKJYfXW-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cGhKJYfXW-c.mp4/cGhKJYfXW-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cGhKJYfXW-c.m3u8/cGhKJYfXW-c.m3u8"}, "duration": 597, "id": "cGhKJYfXW-c", "title": "Compliance and elastance", "format": "mp4", "description": "Learn about compliance (and elastance) of arteries, veins, and lead pipes! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/arterial-stiffness/compliance-and-elastance/", "slug": "compliance-and-elastance", "kind": "Video", "video_id": "cGhKJYfXW-c", "keywords": "", "youtube_id": "cGhKJYfXW-c", "readable_id": "compliance-and-elastance"}, "4BNIGTHUTTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4BNIGTHUTTM.mp4/4BNIGTHUTTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4BNIGTHUTTM.mp4/4BNIGTHUTTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4BNIGTHUTTM.m3u8/4BNIGTHUTTM.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens-hundreds/subtracting-hundreds-and-tens/", "duration": 251, "id": "4BNIGTHUTTM", "title": "Subtracting ten or one hundred", "format": "mp4", "description": "Learn how to subtract 1, 10, or 100 from a number.", "slug": "subtracting-hundreds-and-tens", "kind": "Video", "video_id": "4BNIGTHUTTM", "keywords": "", "youtube_id": "4BNIGTHUTTM", "readable_id": "subtracting-hundreds-and-tens"}, "d-2Lcp0QKfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d-2Lcp0QKfI.mp4/d-2Lcp0QKfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d-2Lcp0QKfI.mp4/d-2Lcp0QKfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d-2Lcp0QKfI.m3u8/d-2Lcp0QKfI.m3u8"}, "duration": 317, "id": "d-2Lcp0QKfI", "title": "Example 6: Factoring by grouping", "format": "mp4", "description": "Factoring Trinomials by Grouping 6", "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-trinomials-by-grouping-6/", "slug": "factoring-trinomials-by-grouping-6", "kind": "Video", "video_id": "d-2Lcp0QKfI", "keywords": "U09_L1_T3_we3, Factoring, Trinomials, by, Grouping, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "d-2Lcp0QKfI", "readable_id": "factoring-trinomials-by-grouping-6"}, "VpVu25KhozQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VpVu25KhozQ.mp4/VpVu25KhozQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VpVu25KhozQ.mp4/VpVu25KhozQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VpVu25KhozQ.m3u8/VpVu25KhozQ.m3u8"}, "duration": 292, "id": "VpVu25KhozQ", "title": "Closed-end mutual funds", "format": "mp4", "description": "Comparing closed-end and open-ended mutual funds", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/mutual-funds/closed-end-mutual-funds/", "slug": "closed-end-mutual-funds", "kind": "Video", "video_id": "VpVu25KhozQ", "keywords": "finance, investing", "youtube_id": "VpVu25KhozQ", "readable_id": "closed-end-mutual-funds"}, "a4nfbZYZ3SI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a4nfbZYZ3SI.mp4/a4nfbZYZ3SI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a4nfbZYZ3SI.mp4/a4nfbZYZ3SI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a4nfbZYZ3SI.m3u8/a4nfbZYZ3SI.m3u8"}, "duration": 704, "id": "a4nfbZYZ3SI", "title": "The Columbian Exchange", "format": "mp4", "description": "In which John Green teaches you about the changes wrought by contact between the Old World and the New. John does this by exploring the totally awesome history book \"The Columbian Exchange\" by Alfred Cosby, Jr. After Columbus \"discovered\" the Americas, European conquerors, traders, and settlers brought all manner of changes to the formerly isolated continents. Disease and invasive plant and animal species remade the New World, usually in negative ways. While native people, plants, and animals were being displaced in the Americas, the rest of the world was benefitting from American imports, especially foods like maize, tomatoes, potatoes, pineapple, blueberries, sweet potatoes, and manioc. Was the Columbian Exchange a net positive? It's debatable. So debate.", "path": "khan/humanities/history/crashcourse-worldhistory/when-people-do-great-and-really-terrible-things-2/crash-course-world-history-23/", "slug": "crash-course-world-history-23", "kind": "Video", "video_id": "a4nfbZYZ3SI", "keywords": "crash course", "youtube_id": "a4nfbZYZ3SI", "readable_id": "crash-course-world-history-23"}, "xdiBjypYFRQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xdiBjypYFRQ.mp4/xdiBjypYFRQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xdiBjypYFRQ.mp4/xdiBjypYFRQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xdiBjypYFRQ.m3u8/xdiBjypYFRQ.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/quad_ineq/quadratic-inequalities-visual-explanation/", "duration": 591, "id": "xdiBjypYFRQ", "title": "Quadratic inequalities (visual explanation)", "format": "mp4", "description": "How to solve a quadratic inequality. Visual intuition of what a quadratic inequality means.", "slug": "quadratic-inequalities-visual-explanation", "kind": "Video", "video_id": "xdiBjypYFRQ", "keywords": "Algebra, Math, Khan", "youtube_id": "xdiBjypYFRQ", "readable_id": "quadratic-inequalities-visual-explanation"}, "nLCNoT79_-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nLCNoT79_-o.mp4/nLCNoT79_-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nLCNoT79_-o.mp4/nLCNoT79_-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nLCNoT79_-o.m3u8/nLCNoT79_-o.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/small-intestine-part-2-digestion/", "duration": 405, "id": "nLCNoT79_-o", "title": "Small intestine 2: Digestion", "format": "mp4", "description": "", "slug": "small-intestine-part-2-digestion", "kind": "Video", "video_id": "nLCNoT79_-o", "keywords": "MCAT", "youtube_id": "nLCNoT79_-o", "readable_id": "small-intestine-part-2-digestion"}, "L4F2lgyi7FA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L4F2lgyi7FA.mp4/L4F2lgyi7FA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L4F2lgyi7FA.mp4/L4F2lgyi7FA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L4F2lgyi7FA.m3u8/L4F2lgyi7FA.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/leonardo-da-vinci/leonardo-the-virgin-and-child-with-st-anne-and-st-john-the-baptist-1499-1500/", "duration": 244, "id": "L4F2lgyi7FA", "title": "Leonardo, Virgin and Child with St Anne and St John the Baptist (Burlington House Cartoon)", "format": "mp4", "description": "Leonardo da Vinci, The Virgin and Child with St Anne and St John the Baptist (Burlington House Cartoon), 1499-1500, charcoal and chalk on paper, 55.7 \u00d7 41.2 inches \nc. 1499-1500 (National Gallery, London)\n\nhttp://www.smarthistory.org/the-virgin-and-child-with-st-anne-and-st-john-the-baptist.html", "slug": "leonardo-the-virgin-and-child-with-st-anne-and-st-john-the-baptist-1499-1500", "kind": "Video", "video_id": "L4F2lgyi7FA", "keywords": "Art, Art History, Leonardo, London, National Gallery, Virgin and Child, Smarthistory", "youtube_id": "L4F2lgyi7FA", "readable_id": "leonardo-the-virgin-and-child-with-st-anne-and-st-john-the-baptist-1499-1500"}, "PtKAeihnbv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PtKAeihnbv0.mp4/PtKAeihnbv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PtKAeihnbv0.mp4/PtKAeihnbv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PtKAeihnbv0.m3u8/PtKAeihnbv0.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/membrane-potentials-part-1/", "duration": 502, "id": "PtKAeihnbv0", "title": "Membrane potentials - part 1", "format": "mp4", "description": "Find out how a cell that is permeable to one ion can become charged (either positive or negative) if there is permeability and a concentration gradient. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "membrane-potentials-part-1", "kind": "Video", "video_id": "PtKAeihnbv0", "keywords": "", "youtube_id": "PtKAeihnbv0", "readable_id": "membrane-potentials-part-1"}, "kWucfgOkCIQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kWucfgOkCIQ.mp4/kWucfgOkCIQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kWucfgOkCIQ.mp4/kWucfgOkCIQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kWucfgOkCIQ.m3u8/kWucfgOkCIQ.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-of-a-weak-base-with-a-strong-acid-continued/", "duration": 888, "id": "kWucfgOkCIQ", "title": "Titration of a weak base with a strong acid (continued)", "format": "mp4", "description": "", "slug": "titration-of-a-weak-base-with-a-strong-acid-continued", "kind": "Video", "video_id": "kWucfgOkCIQ", "keywords": "", "youtube_id": "kWucfgOkCIQ", "readable_id": "titration-of-a-weak-base-with-a-strong-acid-continued"}, "A9Km337z15k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A9Km337z15k.mp4/A9Km337z15k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A9Km337z15k.mp4/A9Km337z15k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A9Km337z15k.m3u8/A9Km337z15k.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/checkpoint-advanced-lessons/", "duration": 318, "id": "A9Km337z15k", "title": "What should we learn next?", "format": "mp4", "description": "Help decide what's next! What do you want to learn?", "slug": "checkpoint-advanced-lessons", "kind": "Video", "video_id": "A9Km337z15k", "keywords": "brit cruise, cryptography", "youtube_id": "A9Km337z15k", "readable_id": "checkpoint-advanced-lessons"}, "Uz0MtFlLD-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Uz0MtFlLD-k.mp4/Uz0MtFlLD-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Uz0MtFlLD-k.mp4/Uz0MtFlLD-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Uz0MtFlLD-k.m3u8/Uz0MtFlLD-k.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function-introduction/relations-and-functions/", "duration": 417, "id": "Uz0MtFlLD-k", "title": "Relations and functions", "format": "mp4", "description": "Relations and Functions", "slug": "relations-and-functions", "kind": "Video", "video_id": "Uz0MtFlLD-k", "keywords": "u17_l1_t1_we2, Relations, and, Functions", "youtube_id": "Uz0MtFlLD-k", "readable_id": "relations-and-functions"}, "NAW1pqHs2_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NAW1pqHs2_c.mp4/NAW1pqHs2_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NAW1pqHs2_c.mp4/NAW1pqHs2_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NAW1pqHs2_c.m3u8/NAW1pqHs2_c.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/mixed-crossed-aldol-condensation/", "duration": 565, "id": "NAW1pqHs2_c", "title": "Mixed (crossed) aldol condensation", "format": "mp4", "description": "How to find the product of a mixed (crossed) aldol condensation", "slug": "mixed-crossed-aldol-condensation", "kind": "Video", "video_id": "NAW1pqHs2_c", "keywords": "", "youtube_id": "NAW1pqHs2_c", "readable_id": "mixed-crossed-aldol-condensation"}, "Gn2pdkvdbGQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gn2pdkvdbGQ.mp4/Gn2pdkvdbGQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gn2pdkvdbGQ.mp4/Gn2pdkvdbGQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gn2pdkvdbGQ.m3u8/Gn2pdkvdbGQ.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/converting-fractions-to-decimals/", "duration": 562, "id": "Gn2pdkvdbGQ", "title": "Converting fractions to decimals", "format": "mp4", "description": "How to express a fraction as a decimal", "slug": "converting-fractions-to-decimals", "kind": "Video", "video_id": "Gn2pdkvdbGQ", "keywords": "fraction, decimal, math, khan, academy, CC_4_NF_6", "youtube_id": "Gn2pdkvdbGQ", "readable_id": "converting-fractions-to-decimals"}, "ulxyWZf7BWc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ulxyWZf7BWc.mp4/ulxyWZf7BWc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ulxyWZf7BWc.mp4/ulxyWZf7BWc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ulxyWZf7BWc.m3u8/ulxyWZf7BWc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/what-is-diabetes-mellitus/", "duration": 508, "id": "ulxyWZf7BWc", "title": "What is diabetes mellitus?", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-diabetes-mellitus", "kind": "Video", "video_id": "ulxyWZf7BWc", "keywords": "", "youtube_id": "ulxyWZf7BWc", "readable_id": "what-is-diabetes-mellitus"}, "lZSi0xifXwc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lZSi0xifXwc.mp4/lZSi0xifXwc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lZSi0xifXwc.mp4/lZSi0xifXwc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lZSi0xifXwc.m3u8/lZSi0xifXwc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-non-cyanotic-heart-diseases/rn-ventricular-septal-defect/", "duration": 382, "id": "lZSi0xifXwc", "title": "Ventricular septal defect", "format": "mp4", "description": "An ventricular septal defect is a hole between the two ventricles of the heart. Normally this hole is present at birth but closes within a few days of life. Failure of this hole to close is called a ventricular septal defect, and usually is asymptomatic (no obvious symptoms are present).", "slug": "rn-ventricular-septal-defect", "kind": "Video", "video_id": "lZSi0xifXwc", "keywords": "", "youtube_id": "lZSi0xifXwc", "readable_id": "rn-ventricular-septal-defect"}, "JWZ1QVn1tHM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JWZ1QVn1tHM.mp4/JWZ1QVn1tHM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JWZ1QVn1tHM.mp4/JWZ1QVn1tHM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JWZ1QVn1tHM.m3u8/JWZ1QVn1tHM.m3u8"}, "duration": 231, "id": "JWZ1QVn1tHM", "title": "Mounting batik textiles", "format": "mp4", "description": "Denise Migdail, Textile Conservator at the Asian Art Museum, explains how she prepared batik textiles to be mounted for display using magnets.\u00a0Learn more about art conservation at the\u00a0Asian Art Museum's Conservation Center.", "path": "mounting-batik-textiles/", "slug": "mounting-batik-textiles", "kind": "Video", "video_id": "JWZ1QVn1tHM", "keywords": "", "youtube_id": "JWZ1QVn1tHM", "readable_id": "mounting-batik-textiles"}, "-oW4M3vpuRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-oW4M3vpuRM.mp4/-oW4M3vpuRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-oW4M3vpuRM.mp4/-oW4M3vpuRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-oW4M3vpuRM.m3u8/-oW4M3vpuRM.m3u8"}, "duration": 680, "id": "-oW4M3vpuRM", "title": "Chapter 7: Bankruptcy liquidation", "format": "mp4", "description": "Introduction to bankruptcy liquidation (Chapter 7)", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/corp-bankruptcy-tutorial/chapter-7-bankruptcy-liquidation/", "slug": "chapter-7-bankruptcy-liquidation", "kind": "Video", "video_id": "-oW4M3vpuRM", "keywords": "bankruptcy, chapter, liquidation", "youtube_id": "-oW4M3vpuRM", "readable_id": "chapter-7-bankruptcy-liquidation"}, "8CJ6Qdcoxsc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8CJ6Qdcoxsc.mp4/8CJ6Qdcoxsc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8CJ6Qdcoxsc.mp4/8CJ6Qdcoxsc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8CJ6Qdcoxsc.m3u8/8CJ6Qdcoxsc.m3u8"}, "duration": 319, "id": "8CJ6Qdcoxsc", "title": "Sum of consecutive odd integers", "format": "mp4", "description": "", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/sum-consecutive-integers/", "slug": "sum-consecutive-integers", "kind": "Video", "video_id": "8CJ6Qdcoxsc", "keywords": "", "youtube_id": "8CJ6Qdcoxsc", "readable_id": "sum-consecutive-integers"}, "P3zyEtO6viY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P3zyEtO6viY.mp4/P3zyEtO6viY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P3zyEtO6viY.mp4/P3zyEtO6viY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P3zyEtO6viY.m3u8/P3zyEtO6viY.m3u8"}, "duration": 162, "id": "P3zyEtO6viY", "title": "More negative exponent intuition", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/more-negative-exponent-intuition/", "slug": "more-negative-exponent-intuition", "kind": "Video", "video_id": "P3zyEtO6viY", "keywords": "", "youtube_id": "P3zyEtO6viY", "readable_id": "more-negative-exponent-intuition"}, "S22Vl4D8iI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S22Vl4D8iI8.mp4/S22Vl4D8iI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S22Vl4D8iI8.mp4/S22Vl4D8iI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S22Vl4D8iI8.m3u8/S22Vl4D8iI8.m3u8"}, "duration": 358, "id": "S22Vl4D8iI8", "title": "KA in Idaho: Overview (2014)", "format": "mp4", "description": "Hear from more teachers and students about their experiences with Khan Academy", "path": "khan-academy-in-idaho-overview/", "slug": "khan-academy-in-idaho-overview", "kind": "Video", "video_id": "S22Vl4D8iI8", "keywords": "", "youtube_id": "S22Vl4D8iI8", "readable_id": "khan-academy-in-idaho-overview"}, "AEKztz8ubSM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AEKztz8ubSM.mp4/AEKztz8ubSM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AEKztz8ubSM.mp4/AEKztz8ubSM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AEKztz8ubSM.m3u8/AEKztz8ubSM.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/constructing-proportions-to-solve-application-problems/", "duration": 298, "id": "AEKztz8ubSM", "title": "Constructing equations from proportions to solve problems", "format": "mp4", "description": "We're putting some nifty thinking to work as we use proportions to create equations which then tell us how much tip to leave for dinner.", "slug": "constructing-proportions-to-solve-application-problems", "kind": "Video", "video_id": "AEKztz8ubSM", "keywords": "", "youtube_id": "AEKztz8ubSM", "readable_id": "constructing-proportions-to-solve-application-problems"}, "PRl8TLUleZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PRl8TLUleZg.mp4/PRl8TLUleZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PRl8TLUleZg.mp4/PRl8TLUleZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PRl8TLUleZg.m3u8/PRl8TLUleZg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-aortic-dissection-and-aneurysm/what-is-aortic-dissection/", "duration": 819, "id": "PRl8TLUleZg", "title": "What is an aortic dissection?", "format": "mp4", "description": "", "slug": "what-is-aortic-dissection", "kind": "Video", "video_id": "PRl8TLUleZg", "keywords": "", "youtube_id": "PRl8TLUleZg", "readable_id": "what-is-aortic-dissection"}, "G4VxHxwi6DY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G4VxHxwi6DY.mp4/G4VxHxwi6DY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G4VxHxwi6DY.mp4/G4VxHxwi6DY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G4VxHxwi6DY.m3u8/G4VxHxwi6DY.m3u8"}, "duration": 252, "id": "G4VxHxwi6DY", "title": "Equivalent fraction models", "format": "mp4", "description": "Use same-sized wholes to show equivalent fractions.", "path": "equivalent-fraction-models/", "slug": "equivalent-fraction-models", "kind": "Video", "video_id": "G4VxHxwi6DY", "keywords": "", "youtube_id": "G4VxHxwi6DY", "readable_id": "equivalent-fraction-models"}, "AMTMtWHclKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AMTMtWHclKo.mp4/AMTMtWHclKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AMTMtWHclKo.mp4/AMTMtWHclKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AMTMtWHclKo.m3u8/AMTMtWHclKo.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/mind-body-dualism/", "duration": 505, "id": "AMTMtWHclKo", "title": "Metaphysics: Mind-Body Dualism", "format": "mp4", "description": "Are we just physical things? Or perhaps just mental things? Maybe both? In this video, Alex Byrne (MIT) explains a modern argument due to Saul Kripke for mind-body dualism.\n\nSpeaker: Dr. Alex Byrne, Professor of Philosophy, MIT\n\n\u00a0\n", "slug": "mind-body-dualism", "kind": "Video", "video_id": "AMTMtWHclKo", "keywords": "", "youtube_id": "AMTMtWHclKo", "readable_id": "mind-body-dualism"}, "n-S63_goDFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n-S63_goDFg.mp4/n-S63_goDFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n-S63_goDFg.mp4/n-S63_goDFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n-S63_goDFg.m3u8/n-S63_goDFg.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-determinant-and-area-of-a-parallelogram/", "duration": 1297, "id": "n-S63_goDFg", "title": "Determinant and area of a parallelogram", "format": "mp4", "description": "Realizing that the determinant of a 2x2 matrix is equal to the area of the parallelogram defined by the column vectors of the matrix", "slug": "linear-algebra-determinant-and-area-of-a-parallelogram", "kind": "Video", "video_id": "n-S63_goDFg", "keywords": "linear, algebra, determinant", "youtube_id": "n-S63_goDFg", "readable_id": "linear-algebra-determinant-and-area-of-a-parallelogram"}, "C_LiAEjuIIc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C_LiAEjuIIc.mp4/C_LiAEjuIIc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C_LiAEjuIIc.mp4/C_LiAEjuIIc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C_LiAEjuIIc.m3u8/C_LiAEjuIIc.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/rn-circulatory-system/thermoregulation-in-the-circulatory-system/", "duration": 422, "id": "C_LiAEjuIIc", "title": "Thermoregulation in the circulatory system", "format": "mp4", "description": "", "slug": "thermoregulation-in-the-circulatory-system", "kind": "Video", "video_id": "C_LiAEjuIIc", "keywords": "", "youtube_id": "C_LiAEjuIIc", "readable_id": "thermoregulation-in-the-circulatory-system"}, "3nQejB-XPoY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3nQejB-XPoY.mp4/3nQejB-XPoY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3nQejB-XPoY.mp4/3nQejB-XPoY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3nQejB-XPoY.m3u8/3nQejB-XPoY.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/der_common_functions/proofs-of-derivatives-of-ln-x-and-e-x/", "duration": 747, "id": "3nQejB-XPoY", "title": "Proofs of derivatives of ln(x) and e^x", "format": "mp4", "description": "Doing both proofs in the same video to clarify any misconceptions that the original proof was \"circular\".", "slug": "proofs-of-derivatives-of-ln-x-and-e-x", "kind": "Video", "video_id": "3nQejB-XPoY", "keywords": "calculus, derivative, implicit, differentiation, ln", "youtube_id": "3nQejB-XPoY", "readable_id": "proofs-of-derivatives-of-ln-x-and-e-x"}, "cY-iPEtvJAE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cY-iPEtvJAE.mp4/cY-iPEtvJAE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cY-iPEtvJAE.mp4/cY-iPEtvJAE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cY-iPEtvJAE.m3u8/cY-iPEtvJAE.m3u8"}, "duration": 537, "id": "cY-iPEtvJAE", "title": "GMAT: Math 53", "format": "mp4", "description": "245-247, pg. 186", "path": "khan/test-prep/gmat/problem-solving/gmat-math-53/", "slug": "gmat-math-53", "kind": "Video", "video_id": "cY-iPEtvJAE", "keywords": "GMAT, Math, problem, solving", "youtube_id": "cY-iPEtvJAE", "readable_id": "gmat-math-53"}, "fYUpLvM5X7A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fYUpLvM5X7A.mp4/fYUpLvM5X7A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fYUpLvM5X7A.mp4/fYUpLvM5X7A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fYUpLvM5X7A.m3u8/fYUpLvM5X7A.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/neurotransmitter-anatomy/", "duration": 503, "id": "fYUpLvM5X7A", "title": "Neurotransmitter anatomy", "format": "mp4", "description": "", "slug": "neurotransmitter-anatomy", "kind": "Video", "video_id": "fYUpLvM5X7A", "keywords": "MCAT", "youtube_id": "fYUpLvM5X7A", "readable_id": "neurotransmitter-anatomy"}, "ZACf9EecFrY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZACf9EecFrY.mp4/ZACf9EecFrY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZACf9EecFrY.mp4/ZACf9EecFrY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZACf9EecFrY.m3u8/ZACf9EecFrY.m3u8"}, "path": "khan/math/geometry/basic-geometry/volume_tutorial/nets-of-polyhedra/", "duration": 408, "id": "ZACf9EecFrY", "title": "Nets of polyhedra", "format": "mp4", "description": "We know....\"nets of polyhedra\" sounds like the title of a bad sci-fi movie about man-eating, muti-headed fish. A polyhedron (\"polyhedra\" is plural) is nothing more than a 3 dimensional shape with flat surfaces and straight edges (think: cube)", "slug": "nets-of-polyhedra", "kind": "Video", "video_id": "ZACf9EecFrY", "keywords": "", "youtube_id": "ZACf9EecFrY", "readable_id": "nets-of-polyhedra"}, "WNhxkpmVQYw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WNhxkpmVQYw.mp4/WNhxkpmVQYw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WNhxkpmVQYw.mp4/WNhxkpmVQYw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WNhxkpmVQYw.m3u8/WNhxkpmVQYw.m3u8"}, "duration": 679, "id": "WNhxkpmVQYw", "title": "Light bulb switching brain teaser", "format": "mp4", "description": "Turning light bulbs on and off.", "path": "khan/math/recreational-math/puzzles/brain-teasers/light-bulb-switching-brain-teaser/", "slug": "light-bulb-switching-brain-teaser", "kind": "Video", "video_id": "WNhxkpmVQYw", "keywords": "brain, teaser, factor, math, number, theory", "youtube_id": "WNhxkpmVQYw", "readable_id": "light-bulb-switching-brain-teaser"}, "0na0xtIHkXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0na0xtIHkXA.mp4/0na0xtIHkXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0na0xtIHkXA.mp4/0na0xtIHkXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0na0xtIHkXA.m3u8/0na0xtIHkXA.m3u8"}, "duration": 898, "id": "0na0xtIHkXA", "title": "VSEPR for 5 electron clouds", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/vsepr-for-5-electron-clouds/", "slug": "vsepr-for-5-electron-clouds", "kind": "Video", "video_id": "0na0xtIHkXA", "keywords": "", "youtube_id": "0na0xtIHkXA", "readable_id": "vsepr-for-5-electron-clouds"}, "bB1K4H0vx0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bB1K4H0vx0g.mp4/bB1K4H0vx0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bB1K4H0vx0g.mp4/bB1K4H0vx0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bB1K4H0vx0g.m3u8/bB1K4H0vx0g.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/saloua-raouda-choucair/", "duration": 537, "id": "bB1K4H0vx0g", "title": "Saloua Raouda Choucair: From Beirut to Tate Modern", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nLebanese artist Saloua Raouda Choucair is famous in the Middle East for bringing abstraction to the region. A rare female voice in the Beirut art scene from the 1940s onwards, she has spent her career combining Western abstraction with the traditions of Islamic design. But working through civil war and ongoing unrest in Lebanon, she remains virtually unknown outside her own country. At the age of 97, this pioneer of art was belatedly recognised with her first major museum show. Here we travel to Beirut to meet the artist's daughter at the apartment where Choucair's work started its journey.", "slug": "saloua-raouda-choucair", "kind": "Video", "video_id": "bB1K4H0vx0g", "keywords": "Tate", "youtube_id": "bB1K4H0vx0g", "readable_id": "saloua-raouda-choucair"}, "Zr72qWNMk7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zr72qWNMk7E.mp4/Zr72qWNMk7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zr72qWNMk7E.mp4/Zr72qWNMk7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zr72qWNMk7E.m3u8/Zr72qWNMk7E.m3u8"}, "duration": 325, "id": "Zr72qWNMk7E", "title": "Chain rule example using visual function definitions", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-on-two-functions-example-1/", "slug": "chain-rule-on-two-functions-example-1", "kind": "Video", "video_id": "Zr72qWNMk7E", "keywords": "", "youtube_id": "Zr72qWNMk7E", "readable_id": "chain-rule-on-two-functions-example-1"}, "y0sk8LG4mWQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y0sk8LG4mWQ.mp4/y0sk8LG4mWQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y0sk8LG4mWQ.mp4/y0sk8LG4mWQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y0sk8LG4mWQ.m3u8/y0sk8LG4mWQ.m3u8"}, "path": "khan/science/health-and-medicine/hematologic-system/bleeding-and-impaired-hemostasis/secondary-hemostasis/", "duration": 237, "id": "y0sk8LG4mWQ", "title": "Secondary hemostasis", "format": "mp4", "description": "Secondary hemostasis is the process where the platelet plug initially created in primary hemostasis is reinforced by the conversion of fibrinogen to fibrin.", "slug": "secondary-hemostasis", "kind": "Video", "video_id": "y0sk8LG4mWQ", "keywords": "", "youtube_id": "y0sk8LG4mWQ", "readable_id": "secondary-hemostasis"}, "PK4mJ2F9lvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PK4mJ2F9lvA.mp4/PK4mJ2F9lvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PK4mJ2F9lvA.mp4/PK4mJ2F9lvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PK4mJ2F9lvA.m3u8/PK4mJ2F9lvA.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/maximum-distance-on-two-spheres/", "duration": 211, "id": "PK4mJ2F9lvA", "title": "7 Maximum distance on two spheres", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "maximum-distance-on-two-spheres", "kind": "Video", "video_id": "PK4mJ2F9lvA", "keywords": "", "youtube_id": "PK4mJ2F9lvA", "readable_id": "maximum-distance-on-two-spheres"}, "ou9YMWlJgkE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ou9YMWlJgkE.mp4/ou9YMWlJgkE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ou9YMWlJgkE.mp4/ou9YMWlJgkE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ou9YMWlJgkE.m3u8/ou9YMWlJgkE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/newtons-laws-and-equilibrium/newton-s-second-law-of-motion/", "duration": 434, "id": "ou9YMWlJgkE", "title": "Newton's second law of motion", "format": "mp4", "description": "Newton's Second Law of Motion: F=ma", "slug": "newton-s-second-law-of-motion", "kind": "Video", "video_id": "ou9YMWlJgkE", "keywords": "physics, newton, 2nd, second, law", "youtube_id": "ou9YMWlJgkE", "readable_id": "newton-s-second-law-of-motion"}, "UBlem4dGLGU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UBlem4dGLGU.mp4/UBlem4dGLGU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UBlem4dGLGU.mp4/UBlem4dGLGU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UBlem4dGLGU.m3u8/UBlem4dGLGU.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/the-life-and-times-of-rbcs-and-platelets/", "duration": 635, "id": "UBlem4dGLGU", "title": "Life and times of RBCs and platelets", "format": "mp4", "description": "", "slug": "the-life-and-times-of-rbcs-and-platelets", "kind": "Video", "video_id": "UBlem4dGLGU", "keywords": "", "youtube_id": "UBlem4dGLGU", "readable_id": "the-life-and-times-of-rbcs-and-platelets"}, "VTDmIkxWOjc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VTDmIkxWOjc.mp4/VTDmIkxWOjc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VTDmIkxWOjc.mp4/VTDmIkxWOjc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VTDmIkxWOjc.m3u8/VTDmIkxWOjc.m3u8"}, "duration": 217, "id": "VTDmIkxWOjc", "title": "\"Modern\" art in Victorian times: the late Turner", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nStarting around 1835, when he was 60 years old, Turner entered the \u201clate phase\u201d of his life and work. Despite society\u2019s view at the time that he was on the edge of senility\u2013it is said that Queen Victoria thought him quite mad\u2013Turner still travelled extensively. He witnessed new cultures and social scenes, exhibited a supreme confidence in his tools, and created work that was so different from that of his contemporaries that they often didn\u2019t know what to make of it.\nSome historians believe that the abstract qualities of late Turner made him a very early precursor to Modernism. Despite creating dramatic new textures and visual experiences, Turner synthesised his earlier experiences without abandoning the interests and methods of his past. Was Turner completely outside his time or old fashioned? Or was he simply being true to himself?\n", "path": "late-turner/", "slug": "late-turner", "kind": "Video", "video_id": "VTDmIkxWOjc", "keywords": "Tate", "youtube_id": "VTDmIkxWOjc", "readable_id": "late-turner"}, "1DxZKAQ9WrM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1DxZKAQ9WrM.mp4/1DxZKAQ9WrM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1DxZKAQ9WrM.mp4/1DxZKAQ9WrM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1DxZKAQ9WrM.m3u8/1DxZKAQ9WrM.m3u8"}, "duration": 87, "id": "1DxZKAQ9WrM", "title": "Marina Abramovi\u0107: Marina's first performance", "format": "mp4", "description": "Marina Abramovi\u0107 talks about her first performance, when she was a child. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-abramovic-first-performance/", "slug": "moma-abramovic-first-performance", "kind": "Video", "video_id": "1DxZKAQ9WrM", "keywords": "", "youtube_id": "1DxZKAQ9WrM", "readable_id": "moma-abramovic-first-performance"}, "Ty6TfxCYPQI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ty6TfxCYPQI.mp4/Ty6TfxCYPQI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ty6TfxCYPQI.mp4/Ty6TfxCYPQI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ty6TfxCYPQI.m3u8/Ty6TfxCYPQI.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-anemia/rn-anemia/", "duration": 494, "id": "Ty6TfxCYPQI", "title": "What is anemia?", "format": "mp4", "description": "", "slug": "rn-anemia", "kind": "Video", "video_id": "Ty6TfxCYPQI", "keywords": "", "youtube_id": "Ty6TfxCYPQI", "readable_id": "rn-anemia"}, "iimpwYBiKNg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iimpwYBiKNg.mp4/iimpwYBiKNg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iimpwYBiKNg.mp4/iimpwYBiKNg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iimpwYBiKNg.m3u8/iimpwYBiKNg.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/linear-equation-word-problems-tu/application-problems-with-equation-in-one-variable/", "duration": 122, "id": "iimpwYBiKNg", "title": "Word problem: solving equations", "format": "mp4", "description": "Here's a nifty word problem in which we find the dimensions of a garden given only the perimeter. Let's create an equation to solve!", "slug": "application-problems-with-equation-in-one-variable", "kind": "Video", "video_id": "iimpwYBiKNg", "keywords": "u10_l1_t3_we2, Application, problems, with, equation, in, one, variable, CC_3_MD_8, CC_4_MD_3, CC_6_EE_2_c, CC_6_EE_6, CC_7_EE_4, CC_7_EE_4_a, CC_8_EE_7_a", "youtube_id": "iimpwYBiKNg", "readable_id": "application-problems-with-equation-in-one-variable"}, "Wce-7Mw0mtc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wce-7Mw0mtc.mp4/Wce-7Mw0mtc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wce-7Mw0mtc.mp4/Wce-7Mw0mtc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wce-7Mw0mtc.m3u8/Wce-7Mw0mtc.m3u8"}, "duration": 279, "id": "Wce-7Mw0mtc", "title": "Line: Drafting, sketching, and composing", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nJoin watercolour expert Mike Chaplin in a short lesson on the fundamentals of painting: line, tone, and colour. In this video, learn about drafting, designing, and establishing rhythm with lines, which are used for more than just describing the shape of things. Many artists, and Turner in particular, would begin with line drawings in order to create a basic description of what their image will eventually become.", "path": "watercolour-line/", "slug": "watercolour-line", "kind": "Video", "video_id": "Wce-7Mw0mtc", "keywords": "Tate", "youtube_id": "Wce-7Mw0mtc", "readable_id": "watercolour-line"}, "xYEF_GXilu8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xYEF_GXilu8.mp4/xYEF_GXilu8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xYEF_GXilu8.mp4/xYEF_GXilu8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xYEF_GXilu8.m3u8/xYEF_GXilu8.m3u8"}, "duration": 213, "id": "xYEF_GXilu8", "title": "Do Ho Suh's memory of a staircase", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nKorean artist Do Ho Suh\u2019s work is made based on personal memories of architectural spaces. In the case of Staircase-III, he has created an exact replica of the small, narrow staircase that connects his modern New York apartment to that of his landlord. But it also recalls the staircase in his parents\u2019 traditional Korean house in Seoul, merging two very different memories into one object. Crafted in a light, gauzy fabric, this staircase invites us to think about the nature of transitional spaces (like staircases, bridges, and doors, connecting but also separating two spaces), transparency, light, and the ephemerality of memory.\n\u201cThe space I'm interested in is not only a physical one, but an intangible, metaphorical, and psychological one,\u201d he says. Do you think that the experience of living in Korea and moving to the United States has influenced Do Ho Suh\u2019s relationship with art and memory? Does a feeling of cultural displacement allow a person to see things differently, perhaps allowing them to focus on transitional spaces rather than destinations?\n", "path": "do-ho-suh/", "slug": "do-ho-suh", "kind": "Video", "video_id": "xYEF_GXilu8", "keywords": "Tate", "youtube_id": "xYEF_GXilu8", "readable_id": "do-ho-suh"}, "pzQnc_0eZA8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pzQnc_0eZA8.mp4/pzQnc_0eZA8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pzQnc_0eZA8.mp4/pzQnc_0eZA8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pzQnc_0eZA8.m3u8/pzQnc_0eZA8.m3u8"}, "duration": 429, "id": "pzQnc_0eZA8", "title": "Government spending and the IS-LM model", "format": "mp4", "description": "How a change in fiscal policy shifts the IS curve", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/is-lm-model-tutorial/government-spending-and-the-is-lm-model/", "slug": "government-spending-and-the-is-lm-model", "kind": "Video", "video_id": "pzQnc_0eZA8", "keywords": "IS/LM, IS, LM, model", "youtube_id": "pzQnc_0eZA8", "readable_id": "government-spending-and-the-is-lm-model"}, "ljmwlMTH5Tk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ljmwlMTH5Tk.mp4/ljmwlMTH5Tk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ljmwlMTH5Tk.mp4/ljmwlMTH5Tk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ljmwlMTH5Tk.m3u8/ljmwlMTH5Tk.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/bernini-st-peter-s-piazza-1656-67/", "duration": 171, "id": "ljmwlMTH5Tk", "title": "Bernini, Saint Peter's Square", "format": "mp4", "description": "Gianlorenzo Bernini, Saint Peter's Square (Piazza San Pietro), Vatican City, Rome, 1656-67\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "bernini-st-peter-s-piazza-1656-67", "kind": "Video", "video_id": "ljmwlMTH5Tk", "keywords": "art, art history, rome, St Peters, Vatican, Bernini", "youtube_id": "ljmwlMTH5Tk", "readable_id": "bernini-st-peter-s-piazza-1656-67"}, "28N_IRo9g4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/28N_IRo9g4Y.mp4/28N_IRo9g4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/28N_IRo9g4Y.mp4/28N_IRo9g4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/28N_IRo9g4Y.m3u8/28N_IRo9g4Y.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e1-elimination-mechanism/", "duration": 755, "id": "28N_IRo9g4Y", "title": "E1 elimination: Mechanism", "format": "mp4", "description": "", "slug": "e1-elimination-mechanism", "kind": "Video", "video_id": "28N_IRo9g4Y", "keywords": "", "youtube_id": "28N_IRo9g4Y", "readable_id": "e1-elimination-mechanism"}, "qjhlt6G-Azo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qjhlt6G-Azo.mp4/qjhlt6G-Azo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qjhlt6G-Azo.mp4/qjhlt6G-Azo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qjhlt6G-Azo.m3u8/qjhlt6G-Azo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-bronchiolitis/bronchiolitis-treatment/", "duration": 665, "id": "qjhlt6G-Azo", "title": "Bronchiolitis treatment", "format": "mp4", "description": "", "slug": "bronchiolitis-treatment", "kind": "Video", "video_id": "qjhlt6G-Azo", "keywords": "", "youtube_id": "qjhlt6G-Azo", "readable_id": "bronchiolitis-treatment"}, "Ro5tCQtfrZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ro5tCQtfrZU.mp4/Ro5tCQtfrZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ro5tCQtfrZU.mp4/Ro5tCQtfrZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ro5tCQtfrZU.m3u8/Ro5tCQtfrZU.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/toby-rush-eyeverify/toby-rush-1/", "duration": 176, "id": "Ro5tCQtfrZU", "title": "University scientist meets entrepreneur", "format": "mp4", "description": "", "slug": "toby-rush-1", "kind": "Video", "video_id": "Ro5tCQtfrZU", "keywords": "", "youtube_id": "Ro5tCQtfrZU", "readable_id": "toby-rush-1"}, "IgYUR7aFY-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IgYUR7aFY-c.mp4/IgYUR7aFY-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IgYUR7aFY-c.mp4/IgYUR7aFY-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IgYUR7aFY-c.m3u8/IgYUR7aFY-c.m3u8"}, "duration": 397, "id": "IgYUR7aFY-c", "title": "Unbalanced forces and motion", "format": "mp4", "description": "Thinking about what is true about how unbalanced forces relate to motion and acceleration", "path": "khan/test-prep/mcat/physical-processes/newtons-laws-and-equilibrium/unbalanced-forces-and-motion/", "slug": "unbalanced-forces-and-motion", "kind": "Video", "video_id": "IgYUR7aFY-c", "keywords": "newton's, laws, physics, forces, balance", "youtube_id": "IgYUR7aFY-c", "readable_id": "unbalanced-forces-and-motion"}, "9xwAPXM0Flg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9xwAPXM0Flg.mp4/9xwAPXM0Flg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9xwAPXM0Flg.mp4/9xwAPXM0Flg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9xwAPXM0Flg.m3u8/9xwAPXM0Flg.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-13-14/", "duration": 279, "id": "9xwAPXM0Flg", "title": "CAHSEE practice: Problems 13-14", "format": "mp4", "description": "CAHSEE Practice: Problems 13-14", "slug": "cahsee-practice-problems-13-14", "kind": "Video", "video_id": "9xwAPXM0Flg", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "9xwAPXM0Flg", "readable_id": "cahsee-practice-problems-13-14"}, "Nk2q-_jkJVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nk2q-_jkJVs.mp4/Nk2q-_jkJVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nk2q-_jkJVs.mp4/Nk2q-_jkJVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nk2q-_jkJVs.m3u8/Nk2q-_jkJVs.m3u8"}, "duration": 603, "id": "Nk2q-_jkJVs", "title": "Introduction to harmonic motion", "format": "mp4", "description": "Intuition behind the motion of a mass on a spring (some calculus near the end).", "path": "khan/science/physics/oscillatory-motion/harmonic-motion/introduction-to-harmonic-motion/", "slug": "introduction-to-harmonic-motion", "kind": "Video", "video_id": "Nk2q-_jkJVs", "keywords": "harmonic, motion, spring, period, oscillatory", "youtube_id": "Nk2q-_jkJVs", "readable_id": "introduction-to-harmonic-motion"}, "rufFQZDDXCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rufFQZDDXCE.mp4/rufFQZDDXCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rufFQZDDXCE.mp4/rufFQZDDXCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rufFQZDDXCE.m3u8/rufFQZDDXCE.m3u8"}, "path": "khan/math/trigonometry/basic-trigonometry/reciprocal-trig-functions/example-using-trig-to-solve-for-missing-information/", "duration": 372, "id": "rufFQZDDXCE", "title": "Example: Using trig to solve for missing information", "format": "mp4", "description": "Worked example using trig ratios to solve for missing information and evaluate other trig ratios", "slug": "example-using-trig-to-solve-for-missing-information", "kind": "Video", "video_id": "rufFQZDDXCE", "keywords": "sin cos tan sine cosine tangent csc cot sec secant cosecant cotangent", "youtube_id": "rufFQZDDXCE", "readable_id": "example-using-trig-to-solve-for-missing-information"}, "ghE1UnbIP4M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ghE1UnbIP4M.mp4/ghE1UnbIP4M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ghE1UnbIP4M.mp4/ghE1UnbIP4M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ghE1UnbIP4M.m3u8/ghE1UnbIP4M.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/beth-schmidt-wishbone/beth-schmidt-1/", "duration": 193, "id": "ghE1UnbIP4M", "title": "Students wishes come true", "format": "mp4", "description": "", "slug": "beth-schmidt-1", "kind": "Video", "video_id": "ghE1UnbIP4M", "keywords": "", "youtube_id": "ghE1UnbIP4M", "readable_id": "beth-schmidt-1"}, "xXAjkLUv7dY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xXAjkLUv7dY.mp4/xXAjkLUv7dY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xXAjkLUv7dY.mp4/xXAjkLUv7dY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xXAjkLUv7dY.m3u8/xXAjkLUv7dY.m3u8"}, "duration": 309, "id": "xXAjkLUv7dY", "title": "Literature meets art: Maurice Sendak inspired by William Blake", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nMaurice Sendak, the creative genius behind \"Where the Wild Things Are,\" was a writer and illustrator whose work has been seen by millions of people all over the world.\u00a0In this video, Sendak looks back over his literary career, discusses his love for 19th century artist William Blake, and explains why he thinks that as an artist, sometimes \"you just have to take the dive\" into your work.", "path": "maurice-sendak-inspired-by-blake/", "slug": "maurice-sendak-inspired-by-blake", "kind": "Video", "video_id": "xXAjkLUv7dY", "keywords": "Tate, William Blake, Maurice Sendak", "youtube_id": "xXAjkLUv7dY", "readable_id": "maurice-sendak-inspired-by-blake"}, "ygzNKKLNJw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ygzNKKLNJw0.mp4/ygzNKKLNJw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ygzNKKLNJw0.mp4/ygzNKKLNJw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ygzNKKLNJw0.m3u8/ygzNKKLNJw0.m3u8"}, "duration": 174, "id": "ygzNKKLNJw0", "title": "\"Starting Over\" with Elizabeth Cleland", "format": "mp4", "description": "Met curator Elizabeth Cleland on starting over in Hunters in a Landscape, partly based on a woodcut by Jost Amman and woven anonymously by Flemish weavers.\n\nThis extremely rare hanging combines an exquisitely well-preserved palette with the distinctive long and narrow format of a wainscot tapestry. In a style referred to by Flemish weavers at the time as \"English fashion,\"\u00a0it was intended to hang between the cornice and the dado of a wood-paneled room. The tapestry is attributed on stylistic, iconographic and technical grounds to Flemish immigrant weavers who sought refuge from the religious tumult of the era by relocating to England, probably London.\u00a0In excellent condition, it is a particularly engaging example of the output of this fascinating and only recently studied diaspora of weavers from Flanders. The tapestry is notable for its weavers' remarkable use of color in the construction of forms and effects of light and cast shadow. The idyllic landscape contrasts vistas of pastoral relaxation with a hunting scene, flanking a central moated building.\u00a0\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "path": "starting-over/", "slug": "starting-over", "kind": "Video", "video_id": "ygzNKKLNJw0", "keywords": "daily life, humor, nature, politics, silk, textile, wool, Europe", "youtube_id": "ygzNKKLNJw0", "readable_id": "starting-over"}, "2aobSX0xZEU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2aobSX0xZEU.mp4/2aobSX0xZEU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2aobSX0xZEU.mp4/2aobSX0xZEU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2aobSX0xZEU.m3u8/2aobSX0xZEU.m3u8"}, "duration": 65, "id": "2aobSX0xZEU", "title": "Afghanistan: Afghan crown arrives at the British Museum", "format": "mp4", "description": "Gold crown from Tillya Tepe, 1st century AD. National Museum of Afghanistan \u00a9 Thierry Ollivier / Mus\u00e9e Guimet\u00a0\u00a9 Trustees of the British Museum", "path": "afghan-crown-arrives/", "slug": "afghan-crown-arrives", "kind": "Video", "video_id": "2aobSX0xZEU", "keywords": "", "youtube_id": "2aobSX0xZEU", "readable_id": "afghan-crown-arrives"}, "_b-2rZpX5z4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_b-2rZpX5z4.mp4/_b-2rZpX5z4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_b-2rZpX5z4.mp4/_b-2rZpX5z4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_b-2rZpX5z4.m3u8/_b-2rZpX5z4.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/composing-functions/new-function-from-composition/", "duration": 177, "id": "_b-2rZpX5z4", "title": "Creating new function from composition", "format": "mp4", "description": "", "slug": "new-function-from-composition", "kind": "Video", "video_id": "_b-2rZpX5z4", "keywords": "", "youtube_id": "_b-2rZpX5z4", "readable_id": "new-function-from-composition"}, "icNOBmKjDLo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/icNOBmKjDLo.mp4/icNOBmKjDLo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/icNOBmKjDLo.mp4/icNOBmKjDLo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/icNOBmKjDLo.m3u8/icNOBmKjDLo.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/weak-acid-equilibrium/", "duration": 571, "id": "icNOBmKjDLo", "title": "Weak acid equilibrium", "format": "mp4", "description": "", "slug": "weak-acid-equilibrium", "kind": "Video", "video_id": "icNOBmKjDLo", "keywords": "", "youtube_id": "icNOBmKjDLo", "readable_id": "weak-acid-equilibrium"}, "ZKKDTfHcsG0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZKKDTfHcsG0.mp4/ZKKDTfHcsG0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZKKDTfHcsG0.mp4/ZKKDTfHcsG0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZKKDTfHcsG0.m3u8/ZKKDTfHcsG0.m3u8"}, "duration": 249, "id": "ZKKDTfHcsG0", "title": "Prime factorization", "format": "mp4", "description": "Prime Factorization", "path": "khan/math/pre-algebra/factors-multiples/prime_factorization/prime-factorization/", "slug": "prime-factorization", "kind": "Video", "video_id": "ZKKDTfHcsG0", "keywords": "U02_L1_T3_we3, Prime, Factorization, CC_4_OA_4", "youtube_id": "ZKKDTfHcsG0", "readable_id": "prime-factorization"}, "uX2w0b8Qlss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uX2w0b8Qlss.mp4/uX2w0b8Qlss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uX2w0b8Qlss.mp4/uX2w0b8Qlss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uX2w0b8Qlss.m3u8/uX2w0b8Qlss.m3u8"}, "duration": 241, "id": "uX2w0b8Qlss", "title": "Depreciation in cash flow", "format": "mp4", "description": "Depreciation in Cash Flow", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/depreciation-amortization-tut/depreciation-in-cash-flow/", "slug": "depreciation-in-cash-flow", "kind": "Video", "video_id": "uX2w0b8Qlss", "keywords": "Depreciation, in, Cash, Flow", "youtube_id": "uX2w0b8Qlss", "readable_id": "depreciation-in-cash-flow"}, "Hod_JfGJPj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hod_JfGJPj4.mp4/Hod_JfGJPj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hod_JfGJPj4.mp4/Hod_JfGJPj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hod_JfGJPj4.m3u8/Hod_JfGJPj4.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-plasma-cell-dyscrasias/what-is-waldenstrom-macroglobulinemia/", "duration": 372, "id": "Hod_JfGJPj4", "title": "What is waldenstrom macroglobulinemia?", "format": "mp4", "description": "", "slug": "what-is-waldenstrom-macroglobulinemia", "kind": "Video", "video_id": "Hod_JfGJPj4", "keywords": "", "youtube_id": "Hod_JfGJPj4", "readable_id": "what-is-waldenstrom-macroglobulinemia"}, "1reblXFlM6I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1reblXFlM6I.mp4/1reblXFlM6I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1reblXFlM6I.mp4/1reblXFlM6I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1reblXFlM6I.m3u8/1reblXFlM6I.m3u8"}, "duration": 299, "id": "1reblXFlM6I", "title": "Change of base formula proof", "format": "mp4", "description": "", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/change-of-base-formula-proof/", "slug": "change-of-base-formula-proof", "kind": "Video", "video_id": "1reblXFlM6I", "keywords": "", "youtube_id": "1reblXFlM6I", "readable_id": "change-of-base-formula-proof"}, "_qB9JCpr8Co": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_qB9JCpr8Co.mp4/_qB9JCpr8Co.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_qB9JCpr8Co.mp4/_qB9JCpr8Co.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_qB9JCpr8Co.m3u8/_qB9JCpr8Co.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-38-42/", "duration": 389, "id": "_qB9JCpr8Co", "title": "CAHSEE practice: Problems 38-42", "format": "mp4", "description": "CAHSEE Practice: Problems 38-42", "slug": "cahsee-practice-problems-38-42", "kind": "Video", "video_id": "_qB9JCpr8Co", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "_qB9JCpr8Co", "readable_id": "cahsee-practice-problems-38-42"}, "sSWQ1Sx7vw8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sSWQ1Sx7vw8.mp4/sSWQ1Sx7vw8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sSWQ1Sx7vw8.mp4/sSWQ1Sx7vw8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sSWQ1Sx7vw8.m3u8/sSWQ1Sx7vw8.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-blended-case-studies/sscc-blended-navteach/", "duration": 452, "id": "sSWQ1Sx7vw8", "title": "Case study #3: Teaching in Lab Rotation model at Navigator Schools", "format": "mp4", "description": "", "slug": "sscc-blended-navteach", "kind": "Video", "video_id": "sSWQ1Sx7vw8", "keywords": "", "youtube_id": "sSWQ1Sx7vw8", "readable_id": "sscc-blended-navteach"}, "8Y-snjheI9M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Y-snjheI9M.mp4/8Y-snjheI9M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Y-snjheI9M.mp4/8Y-snjheI9M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Y-snjheI9M.m3u8/8Y-snjheI9M.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/arc-length/arc-length-formula/", "duration": 381, "id": "8Y-snjheI9M", "title": "Non rigorous justification for arc length formula", "format": "mp4", "description": "", "slug": "arc-length-formula", "kind": "Video", "video_id": "8Y-snjheI9M", "keywords": "", "youtube_id": "8Y-snjheI9M", "readable_id": "arc-length-formula"}, "yUpDRpkUhf4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yUpDRpkUhf4.mp4/yUpDRpkUhf4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yUpDRpkUhf4.mp4/yUpDRpkUhf4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yUpDRpkUhf4.m3u8/yUpDRpkUhf4.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/der_common_functions/proof-d-dx-ln-x-1-x/", "duration": 592, "id": "yUpDRpkUhf4", "title": "Proof: d/dx(ln x) = 1/x", "format": "mp4", "description": "Taking the derivative of ln x", "slug": "proof-d-dx-ln-x-1-x", "kind": "Video", "video_id": "yUpDRpkUhf4", "keywords": "proof, derivative, ln, natural, log, calculus", "youtube_id": "yUpDRpkUhf4", "readable_id": "proof-d-dx-ln-x-1-x"}, "vPkkCOlGND4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vPkkCOlGND4.mp4/vPkkCOlGND4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vPkkCOlGND4.mp4/vPkkCOlGND4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vPkkCOlGND4.m3u8/vPkkCOlGND4.m3u8"}, "path": "khan/science/physics/linear-momentum/momentum-tutorial/momentum-ice-skater-throws-a-ball/", "duration": 360, "id": "vPkkCOlGND4", "title": "Momentum: Ice skater throws a ball", "format": "mp4", "description": "A simple conservation of momentum problem involving an ice skater and a ball", "slug": "momentum-ice-skater-throws-a-ball", "kind": "Video", "video_id": "vPkkCOlGND4", "keywords": "physics, physical, science, momentum, velocity", "youtube_id": "vPkkCOlGND4", "readable_id": "momentum-ice-skater-throws-a-ball"}, "FWEqB0J6mgA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FWEqB0J6mgA.mp4/FWEqB0J6mgA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FWEqB0J6mgA.mp4/FWEqB0J6mgA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FWEqB0J6mgA.m3u8/FWEqB0J6mgA.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens/understanding-place-value-while-subtracting-ones/", "duration": 165, "id": "FWEqB0J6mgA", "title": "Understanding place value while subtracting ones", "format": "mp4", "description": "Learn how to subtract 4 from 46 by thinking about place value.", "slug": "understanding-place-value-while-subtracting-ones", "kind": "Video", "video_id": "FWEqB0J6mgA", "keywords": "", "youtube_id": "FWEqB0J6mgA", "readable_id": "understanding-place-value-while-subtracting-ones"}, "fZtUn_THXnk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fZtUn_THXnk.mp4/fZtUn_THXnk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fZtUn_THXnk.mp4/fZtUn_THXnk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fZtUn_THXnk.m3u8/fZtUn_THXnk.m3u8"}, "duration": 152, "id": "fZtUn_THXnk", "title": "Multiplication word problem example 1", "format": "mp4", "description": "", "path": "khan/math/arithmetic/multiplication-division/mult-div-word-problems/multiplication-word-problem-example-1/", "slug": "multiplication-word-problem-example-1", "kind": "Video", "video_id": "fZtUn_THXnk", "keywords": "", "youtube_id": "fZtUn_THXnk", "readable_id": "multiplication-word-problem-example-1"}, "VnfpSf6YxuU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VnfpSf6YxuU.mp4/VnfpSf6YxuU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VnfpSf6YxuU.mp4/VnfpSf6YxuU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VnfpSf6YxuU.m3u8/VnfpSf6YxuU.m3u8"}, "duration": 226, "id": "VnfpSf6YxuU", "title": "Parts", "format": "mp4", "description": "In this video we take a quick a look at some of the parts we used to make Bit-zee. Although we highly recommend you create your own Bit-zee using parts from products that people would otherwise throw away.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-bits/", "slug": "bit-zee-s-bits", "kind": "Video", "video_id": "VnfpSf6YxuU", "keywords": "Hack bots, hacked robot, hacking everyday products, robot, Bit-zee", "youtube_id": "VnfpSf6YxuU", "readable_id": "bit-zee-s-bits"}, "xOxvyeSl0uA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xOxvyeSl0uA.mp4/xOxvyeSl0uA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xOxvyeSl0uA.mp4/xOxvyeSl0uA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xOxvyeSl0uA.m3u8/xOxvyeSl0uA.m3u8"}, "duration": 482, "id": "xOxvyeSl0uA", "title": "Multi-step inequalities", "format": "mp4", "description": "Compound Inequalities", "path": "khan/math/algebra/linear_inequalities/inequalities/multi-step-inequalities/", "slug": "multi-step-inequalities", "kind": "Video", "video_id": "xOxvyeSl0uA", "keywords": "Compound, Inequalities", "youtube_id": "xOxvyeSl0uA", "readable_id": "multi-step-inequalities"}, "MFoXK57sw9k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MFoXK57sw9k.mp4/MFoXK57sw9k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MFoXK57sw9k.mp4/MFoXK57sw9k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MFoXK57sw9k.m3u8/MFoXK57sw9k.m3u8"}, "duration": 137, "id": "MFoXK57sw9k", "title": "Sorting absolute values on number line", "format": "mp4", "description": "", "path": "sorting-absolute-values-on-number-line/", "slug": "sorting-absolute-values-on-number-line", "kind": "Video", "video_id": "MFoXK57sw9k", "keywords": "", "youtube_id": "MFoXK57sw9k", "readable_id": "sorting-absolute-values-on-number-line"}, "7rrSuhFC7I0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7rrSuhFC7I0.mp4/7rrSuhFC7I0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7rrSuhFC7I0.mp4/7rrSuhFC7I0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7rrSuhFC7I0.m3u8/7rrSuhFC7I0.m3u8"}, "duration": 516, "id": "7rrSuhFC7I0", "title": "Home equity loans", "format": "mp4", "description": "Simple example of borrowing from equity to fuel consumption", "path": "khan/economics-finance-domain/core-finance/housing/home-equity-tutorial/home-equity-loans/", "slug": "home-equity-loans", "kind": "Video", "video_id": "7rrSuhFC7I0", "keywords": "accounting, finance, credit, crisis, mortgage", "youtube_id": "7rrSuhFC7I0", "readable_id": "home-equity-loans"}, "d8vvVjfTbYY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d8vvVjfTbYY.mp4/d8vvVjfTbYY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d8vvVjfTbYY.mp4/d8vvVjfTbYY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d8vvVjfTbYY.m3u8/d8vvVjfTbYY.m3u8"}, "duration": 176, "id": "d8vvVjfTbYY", "title": "Rate problem using fractions", "format": "mp4", "description": "One common application of rate is determining speed. Watch as we solve a rate problem finding speed in meters per second using distance (in meters) and time (in seconds).", "path": "rate-problem-with-fractions-1/", "slug": "rate-problem-with-fractions-1", "kind": "Video", "video_id": "d8vvVjfTbYY", "keywords": "", "youtube_id": "d8vvVjfTbYY", "readable_id": "rate-problem-with-fractions-1"}, "tzQ7arA917E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tzQ7arA917E.mp4/tzQ7arA917E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tzQ7arA917E.mp4/tzQ7arA917E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tzQ7arA917E.m3u8/tzQ7arA917E.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/trig-symmetry-periodicity/trigonometry-unit-circle-symmetry/", "duration": 478, "id": "tzQ7arA917E", "title": "Symmetry of trig values", "format": "mp4", "description": "", "slug": "trigonometry-unit-circle-symmetry", "kind": "Video", "video_id": "tzQ7arA917E", "keywords": "", "youtube_id": "tzQ7arA917E", "readable_id": "trigonometry-unit-circle-symmetry"}, "hH9AETxy6QI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hH9AETxy6QI.mp4/hH9AETxy6QI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hH9AETxy6QI.mp4/hH9AETxy6QI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hH9AETxy6QI.m3u8/hH9AETxy6QI.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/treatment-of-leukemia/", "duration": 356, "id": "hH9AETxy6QI", "title": "Leukemia treatment", "format": "mp4", "description": "There are three main solutions to treat leukemia. Chemotherapy is a collection of drugs which target cells that rapidly multiply (a key characteristic in cancer). Radiation is often used on patients who are at a high risk of the leukemia entering the brain. For resistant leukemias, bone marrow transplantation is considered.", "slug": "treatment-of-leukemia", "kind": "Video", "video_id": "hH9AETxy6QI", "keywords": "", "youtube_id": "hH9AETxy6QI", "readable_id": "treatment-of-leukemia"}, "rLI88bU7Fuo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rLI88bU7Fuo.mp4/rLI88bU7Fuo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rLI88bU7Fuo.mp4/rLI88bU7Fuo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rLI88bU7Fuo.m3u8/rLI88bU7Fuo.m3u8"}, "duration": 594, "id": "rLI88bU7Fuo", "title": "GMAT: Math 46", "format": "mp4", "description": "217-220, pg. 182", "path": "khan/test-prep/gmat/problem-solving/gmat-math-46/", "slug": "gmat-math-46", "kind": "Video", "video_id": "rLI88bU7Fuo", "keywords": "gmat, math, problem, solving", "youtube_id": "rLI88bU7Fuo", "readable_id": "gmat-math-46"}, "OUrwdqwzqMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OUrwdqwzqMU.mp4/OUrwdqwzqMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OUrwdqwzqMU.mp4/OUrwdqwzqMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OUrwdqwzqMU.m3u8/OUrwdqwzqMU.m3u8"}, "duration": 100, "id": "OUrwdqwzqMU", "title": "Marina Abramovi\u0107: The Body as medium", "format": "mp4", "description": "Marina Abramovi\u0107 talks about how she shifted from painting to performance art. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "khan/humanities/global-culture/conceptual-performance/moma-abramovic-body-as-a-medium/", "slug": "moma-abramovic-body-as-a-medium", "kind": "Video", "video_id": "OUrwdqwzqMU", "keywords": "", "youtube_id": "OUrwdqwzqMU", "readable_id": "moma-abramovic-body-as-a-medium"}, "zh8XASZxo1Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zh8XASZxo1Q.mp4/zh8XASZxo1Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zh8XASZxo1Q.mp4/zh8XASZxo1Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zh8XASZxo1Q.m3u8/zh8XASZxo1Q.m3u8"}, "duration": 719, "id": "zh8XASZxo1Q", "title": "Parsing gross domestic product", "format": "mp4", "description": "Understanding what GDP does and doesn't measure.", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/circular-econ-gdp-tutorial/parsing-gross-domestic-product/", "slug": "parsing-gross-domestic-product", "kind": "Video", "video_id": "zh8XASZxo1Q", "keywords": "macroeconomics, GNP, GDP", "youtube_id": "zh8XASZxo1Q", "readable_id": "parsing-gross-domestic-product"}, "xxF_mdoZom0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xxF_mdoZom0.mp4/xxF_mdoZom0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xxF_mdoZom0.mp4/xxF_mdoZom0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xxF_mdoZom0.m3u8/xxF_mdoZom0.m3u8"}, "duration": 576, "id": "xxF_mdoZom0", "title": "Convex lens examples", "format": "mp4", "description": "Convex Lens Examples", "path": "khan/test-prep/mcat/physical-processes/thin-lenses/convex-lens-examples/", "slug": "convex-lens-examples", "kind": "Video", "video_id": "xxF_mdoZom0", "keywords": "Convex, Lens, Examples", "youtube_id": "xxF_mdoZom0", "readable_id": "convex-lens-examples"}, "qk69pR91R00": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qk69pR91R00.mp4/qk69pR91R00.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qk69pR91R00.mp4/qk69pR91R00.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qk69pR91R00.m3u8/qk69pR91R00.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/solutions-to-two-var-linear-equations/checking-ordered-pair-solutions-to-equations-1/", "duration": 155, "id": "qk69pR91R00", "title": "Checking ordered pair solutions to equations example 1", "format": "mp4", "description": "Checking ordered pair solutions to equations", "slug": "checking-ordered-pair-solutions-to-equations-1", "kind": "Video", "video_id": "qk69pR91R00", "keywords": "", "youtube_id": "qk69pR91R00", "readable_id": "checking-ordered-pair-solutions-to-equations-1"}, "Llt-KkHugRQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Llt-KkHugRQ.mp4/Llt-KkHugRQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Llt-KkHugRQ.mp4/Llt-KkHugRQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Llt-KkHugRQ.m3u8/Llt-KkHugRQ.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/ordering-numeric-expressions_dup_3/", "duration": 562, "id": "Llt-KkHugRQ", "title": "Ordering numeric expressions", "format": "mp4", "description": "Ordering numbers expressed as decimals, fractions, and percentages", "slug": "ordering-numeric-expressions_dup_3", "kind": "Video", "video_id": "Llt-KkHugRQ", "keywords": "number, order, percentage, decimal, fraction", "youtube_id": "Llt-KkHugRQ", "readable_id": "ordering-numeric-expressions_dup_3"}, "TOdHMORp4is": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TOdHMORp4is.mp4/TOdHMORp4is.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TOdHMORp4is.mp4/TOdHMORp4is.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TOdHMORp4is.m3u8/TOdHMORp4is.m3u8"}, "duration": 510, "id": "TOdHMORp4is", "title": "Oxidizing and reducing agents", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/redox-reactions/oxidizing-and-reducing-agents-1/", "slug": "oxidizing-and-reducing-agents-1", "kind": "Video", "video_id": "TOdHMORp4is", "keywords": "", "youtube_id": "TOdHMORp4is", "readable_id": "oxidizing-and-reducing-agents-1"}, "czfJKPN-HEo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/czfJKPN-HEo.mp4/czfJKPN-HEo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/czfJKPN-HEo.mp4/czfJKPN-HEo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/czfJKPN-HEo.m3u8/czfJKPN-HEo.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/mpc-tutorial/mathy-version-of-mpc-and-multiplier-optional/", "duration": 542, "id": "czfJKPN-HEo", "title": "Mathy version of MPC and multiplier (optional)", "format": "mp4", "description": "Generalizing what we did in the last video with more math", "slug": "mathy-version-of-mpc-and-multiplier-optional", "kind": "Video", "video_id": "czfJKPN-HEo", "keywords": "macroeconomics, keynes", "youtube_id": "czfJKPN-HEo", "readable_id": "mathy-version-of-mpc-and-multiplier-optional"}, "66ziUq6vRko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/66ziUq6vRko.mp4/66ziUq6vRko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/66ziUq6vRko.mp4/66ziUq6vRko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/66ziUq6vRko.m3u8/66ziUq6vRko.m3u8"}, "duration": 1061, "id": "66ziUq6vRko", "title": "Example of finding reactant empirical formula", "format": "mp4", "description": "Example of Finding Reactant Empirical Formula", "path": "khan/science/physics/thermodynamics/example-of-finding-reactant-empirical-formula/", "slug": "example-of-finding-reactant-empirical-formula", "kind": "Video", "video_id": "66ziUq6vRko", "keywords": "Example, of, Finding, Reactant, Empirical, Formula", "youtube_id": "66ziUq6vRko", "readable_id": "example-of-finding-reactant-empirical-formula"}, "4VqHGULLA4o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4VqHGULLA4o.mp4/4VqHGULLA4o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4VqHGULLA4o.mp4/4VqHGULLA4o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4VqHGULLA4o.m3u8/4VqHGULLA4o.m3u8"}, "path": "khan/computing/computer-programming/programming-games-visualizations/intro-games-visualizations/welcome-games-visualizations/", "duration": 187, "id": "4VqHGULLA4o", "title": "Intro to Games and Visualizations", "format": "mp4", "description": "", "slug": "welcome-games-visualizations", "kind": "Video", "video_id": "4VqHGULLA4o", "keywords": "", "youtube_id": "4VqHGULLA4o", "readable_id": "welcome-games-visualizations"}, "0OtSs2xEpzY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0OtSs2xEpzY.mp4/0OtSs2xEpzY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0OtSs2xEpzY.mp4/0OtSs2xEpzY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0OtSs2xEpzY.m3u8/0OtSs2xEpzY.m3u8"}, "duration": 709, "id": "0OtSs2xEpzY", "title": "Sal Khan on Digital and Physical Learning", "format": "mp4", "description": "In his trademark style, Sal Khan, founder of Khan Academy, walks viewers through the many ways digital technology can impact teaching and learning in a blended learning environment.", "path": "sal-khan-video-lecture-on-digital-learning/", "slug": "sal-khan-video-lecture-on-digital-learning", "kind": "Video", "video_id": "0OtSs2xEpzY", "keywords": "Sal Khan, Khan Academy, Digital Learning, Digital Learning Day, education, technology, blended learning, school, teacher, lessons, student, classroom", "youtube_id": "0OtSs2xEpzY", "readable_id": "sal-khan-video-lecture-on-digital-learning"}, "Z1zdkcwosD4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z1zdkcwosD4.mp4/Z1zdkcwosD4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z1zdkcwosD4.mp4/Z1zdkcwosD4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z1zdkcwosD4.m3u8/Z1zdkcwosD4.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinatorics_precalc/factorial-and-counting-seat-arrangements/", "duration": 541, "id": "Z1zdkcwosD4", "title": "Factorial and counting seat arrangements", "format": "mp4", "description": "", "slug": "factorial-and-counting-seat-arrangements", "kind": "Video", "video_id": "Z1zdkcwosD4", "keywords": "", "youtube_id": "Z1zdkcwosD4", "readable_id": "factorial-and-counting-seat-arrangements"}, "UU366tJPovg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UU366tJPovg.mp4/UU366tJPovg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UU366tJPovg.mp4/UU366tJPovg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UU366tJPovg.m3u8/UU366tJPovg.m3u8"}, "duration": 705, "id": "UU366tJPovg", "title": "The excretory system: From your heart to the toilet", "format": "mp4", "description": "Hank takes us on the fascinating journey through our excretory system to learn how our kidneys make pee.", "path": "crash-course-biology-128/", "slug": "crash-course-biology-128", "kind": "Video", "video_id": "UU366tJPovg", "keywords": "", "youtube_id": "UU366tJPovg", "readable_id": "crash-course-biology-128"}, "2GD1Oz0sPzY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2GD1Oz0sPzY.mp4/2GD1Oz0sPzY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2GD1Oz0sPzY.mp4/2GD1Oz0sPzY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2GD1Oz0sPzY.m3u8/2GD1Oz0sPzY.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/douard-manet-the-railway-1872-73/", "duration": 245, "id": "2GD1Oz0sPzY", "title": "Manet, The Railway", "format": "mp4", "description": "\u00c9douard Manet, The Railway,1872-73, oil on canvas (National Gallery of Art)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "douard-manet-the-railway-1872-73", "kind": "Video", "video_id": "2GD1Oz0sPzY", "keywords": "Manet, Railway, Paris, Second Empire, \u00c9douard Manet, Khan Academy, Smarthistory, Impressionism, Art History", "youtube_id": "2GD1Oz0sPzY", "readable_id": "douard-manet-the-railway-1872-73"}, "F5Nb6cIRZLU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F5Nb6cIRZLU.mp4/F5Nb6cIRZLU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F5Nb6cIRZLU.mp4/F5Nb6cIRZLU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F5Nb6cIRZLU.m3u8/F5Nb6cIRZLU.m3u8"}, "duration": 308, "id": "F5Nb6cIRZLU", "title": "Example 3: Graphically solving systems", "format": "mp4", "description": "Solving systems by graphing 3", "path": "solving-systems-by-graphing-3/", "slug": "solving-systems-by-graphing-3", "kind": "Video", "video_id": "F5Nb6cIRZLU", "keywords": "U06_L1_T1_we3, Solving, systems, by, graphing, CC_8_EE_7_a, CC_8_EE_8_a, CC_8_EE_8_b, CC_8_EE_8_c, CC_39336_A-REI_6", "youtube_id": "F5Nb6cIRZLU", "readable_id": "solving-systems-by-graphing-3"}, "F8OPQ_28mdo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F8OPQ_28mdo.mp4/F8OPQ_28mdo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F8OPQ_28mdo.mp4/F8OPQ_28mdo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F8OPQ_28mdo.m3u8/F8OPQ_28mdo.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/bayeux-tapestry/", "duration": 297, "id": "F8OPQ_28mdo", "title": "The Bayeux Tapestry - Seven Ages of Britain - BBC One", "format": "mp4", "description": "The Bayeux Tapestry. The BBC's David Dimbleby describes the historical significance of the Bayeux Tapestry for his forthcoming BBC One Series, Seven Ages of Britain.\u00a0", "slug": "bayeux-tapestry", "kind": "Video", "video_id": "F8OPQ_28mdo", "keywords": "", "youtube_id": "F8OPQ_28mdo", "readable_id": "bayeux-tapestry"}, "bqcVNzObJec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bqcVNzObJec.mp4/bqcVNzObJec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bqcVNzObJec.mp4/bqcVNzObJec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bqcVNzObJec.m3u8/bqcVNzObJec.m3u8"}, "duration": 78, "id": "bqcVNzObJec", "title": "Tools and parts to build a Spout", "format": "mp4", "description": "Make Spout a low cost beetle bot that can avoid obstacles. Spout is low cost and can be made without solder.", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-1/", "slug": "solderless-spout-1", "kind": "Video", "video_id": "bqcVNzObJec", "keywords": "", "youtube_id": "bqcVNzObJec", "readable_id": "solderless-spout-1"}, "IYFkXWlgC_w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IYFkXWlgC_w.mp4/IYFkXWlgC_w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IYFkXWlgC_w.mp4/IYFkXWlgC_w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IYFkXWlgC_w.m3u8/IYFkXWlgC_w.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/modeling-with-differential-equations/modeling-population-with-simple-differential-equation/", "duration": 461, "id": "IYFkXWlgC_w", "title": "Modeling population with simple differential equation", "format": "mp4", "description": "", "slug": "modeling-population-with-simple-differential-equation", "kind": "Video", "video_id": "IYFkXWlgC_w", "keywords": "", "youtube_id": "IYFkXWlgC_w", "readable_id": "modeling-population-with-simple-differential-equation"}, "qVPtT8CX1eM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qVPtT8CX1eM.mp4/qVPtT8CX1eM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qVPtT8CX1eM.mp4/qVPtT8CX1eM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qVPtT8CX1eM.m3u8/qVPtT8CX1eM.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-32/", "duration": 646, "id": "qVPtT8CX1eM", "title": "GMAT: Data sufficiency 32", "format": "mp4", "description": "129-131, pg. 289", "slug": "gmat-data-sufficiency-32", "kind": "Video", "video_id": "qVPtT8CX1eM", "keywords": "gmat, data, sufficiency, math", "youtube_id": "qVPtT8CX1eM", "readable_id": "gmat-data-sufficiency-32"}, "EA0LkCkvUeU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EA0LkCkvUeU.mp4/EA0LkCkvUeU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EA0LkCkvUeU.mp4/EA0LkCkvUeU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EA0LkCkvUeU.m3u8/EA0LkCkvUeU.m3u8"}, "duration": 548, "id": "EA0LkCkvUeU", "title": "Bitcoin: What is it?", "format": "mp4", "description": "What is bitcoin?", "path": "bitcoin-what-is-it/", "slug": "bitcoin-what-is-it", "kind": "Video", "video_id": "EA0LkCkvUeU", "keywords": "bitcoin, cryptography, economics, currency", "youtube_id": "EA0LkCkvUeU", "readable_id": "bitcoin-what-is-it"}, "8GhjZn2W8ns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8GhjZn2W8ns.mp4/8GhjZn2W8ns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8GhjZn2W8ns.mp4/8GhjZn2W8ns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8GhjZn2W8ns.m3u8/8GhjZn2W8ns.m3u8"}, "duration": 205, "id": "8GhjZn2W8ns", "title": "Digital camera connections II", "format": "mp4", "description": "In this video we show you how to attach Bit-zee's camera and route the wires", "path": "khan/science/discoveries-projects/robots/bit-zee/attach-bit-zee-s-digital-camera/", "slug": "attach-bit-zee-s-digital-camera", "kind": "Video", "video_id": "8GhjZn2W8ns", "keywords": "connect a digital camera, hack, make, maker, connections", "youtube_id": "8GhjZn2W8ns", "readable_id": "attach-bit-zee-s-digital-camera"}, "-FtlH4svqx4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-FtlH4svqx4.mp4/-FtlH4svqx4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-FtlH4svqx4.mp4/-FtlH4svqx4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-FtlH4svqx4.m3u8/-FtlH4svqx4.m3u8"}, "duration": 686, "id": "-FtlH4svqx4", "title": "Hypothesis testing and p-values", "format": "mp4", "description": "Hypothesis Testing and P-values", "path": "khan/math/probability/statistics-inferential/hypothesis-testing/hypothesis-testing-and-p-values/", "slug": "hypothesis-testing-and-p-values", "kind": "Video", "video_id": "-FtlH4svqx4", "keywords": "Hypothesis, Testing, and, P-values", "youtube_id": "-FtlH4svqx4", "readable_id": "hypothesis-testing-and-p-values"}, "RouNXdkC0do": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RouNXdkC0do.mp4/RouNXdkC0do.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RouNXdkC0do.mp4/RouNXdkC0do.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RouNXdkC0do.m3u8/RouNXdkC0do.m3u8"}, "duration": 614, "id": "RouNXdkC0do", "title": "Earnings and EPS", "format": "mp4", "description": "Earnings, EPS (earnings per share) and how they relate to the income statement and balance sheet", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/earnings-and-eps/", "slug": "earnings-and-eps", "kind": "Video", "video_id": "RouNXdkC0do", "keywords": "earnings, finance, income, statement, eps, balance, sheet", "youtube_id": "RouNXdkC0do", "readable_id": "earnings-and-eps"}, "3cVSSiuiwsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3cVSSiuiwsQ.mp4/3cVSSiuiwsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3cVSSiuiwsQ.mp4/3cVSSiuiwsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3cVSSiuiwsQ.m3u8/3cVSSiuiwsQ.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/electrophilic-aromatic-substitution/halogenation-of-benzene-1/", "duration": 520, "id": "3cVSSiuiwsQ", "title": "Halogenation", "format": "mp4", "description": "The halogenation of benzene", "slug": "halogenation-of-benzene-1", "kind": "Video", "video_id": "3cVSSiuiwsQ", "keywords": "", "youtube_id": "3cVSSiuiwsQ", "readable_id": "halogenation-of-benzene-1"}, "lOIP_Z_-0Hs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lOIP_Z_-0Hs.mp4/lOIP_Z_-0Hs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lOIP_Z_-0Hs.mp4/lOIP_Z_-0Hs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lOIP_Z_-0Hs.m3u8/lOIP_Z_-0Hs.m3u8"}, "path": "khan/math/recreational-math/vi-hart/spirals-fibonacci/doodling-in-math-class-spirals-fibonacci-and-being-a-plant-2-of-3/", "duration": 374, "id": "lOIP_Z_-0Hs", "title": "Doodling in math: Spirals, Fibonacci, and being a plant [2 of 3]", "format": "mp4", "description": "Part 1: http://youtu.be/ahXIMUkSXX0Part 3: http://youtu.be/14-NdQwKz9wMore on Angle-a-trons: http://www.youtube.com/watch?v=o6W6P8JZW0oNote: Beautiful spirally non-Fibonacci pinecones are very rare! If you find one, keep it.", "slug": "doodling-in-math-class-spirals-fibonacci-and-being-a-plant-2-of-3", "kind": "Video", "video_id": "lOIP_Z_-0Hs", "keywords": "doodling, mathematics, spirals, flowers, plants, phyllotaxis, fibonacci, golden ratio, phi", "youtube_id": "lOIP_Z_-0Hs", "readable_id": "doodling-in-math-class-spirals-fibonacci-and-being-a-plant-2-of-3"}, "wXhkMvUXskE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wXhkMvUXskE.mp4/wXhkMvUXskE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wXhkMvUXskE.mp4/wXhkMvUXskE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wXhkMvUXskE.m3u8/wXhkMvUXskE.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-9-5/", "duration": 144, "id": "wXhkMvUXskE", "title": "5 Angle in triangle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-5", "kind": "Video", "video_id": "wXhkMvUXskE", "keywords": "", "youtube_id": "wXhkMvUXskE", "readable_id": "sat-2010-may-9-5"}, "TErJ-Yr67BI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TErJ-Yr67BI.mp4/TErJ-Yr67BI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TErJ-Yr67BI.mp4/TErJ-Yr67BI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TErJ-Yr67BI.m3u8/TErJ-Yr67BI.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/proof-diagonals-of-a-parallelogram-bisect-each-other/", "duration": 546, "id": "TErJ-Yr67BI", "title": "Proof: Diagonals of a parallelogram bisect each other", "format": "mp4", "description": "Proving that a quadrilateral is a parallelogram if and only if its diagonals bisect each other", "slug": "proof-diagonals-of-a-parallelogram-bisect-each-other", "kind": "Video", "video_id": "TErJ-Yr67BI", "keywords": "geometry", "youtube_id": "TErJ-Yr67BI", "readable_id": "proof-diagonals-of-a-parallelogram-bisect-each-other"}, "_HXl3mu1IoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_HXl3mu1IoM.mp4/_HXl3mu1IoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_HXl3mu1IoM.mp4/_HXl3mu1IoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_HXl3mu1IoM.m3u8/_HXl3mu1IoM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/pulseless-electrical-activity-asystole/", "duration": 645, "id": "_HXl3mu1IoM", "title": "Pulseless electrical activity (PEA) and asystole", "format": "mp4", "description": "", "slug": "pulseless-electrical-activity-asystole", "kind": "Video", "video_id": "_HXl3mu1IoM", "keywords": "", "youtube_id": "_HXl3mu1IoM", "readable_id": "pulseless-electrical-activity-asystole"}, "uqyLOuAzbvo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uqyLOuAzbvo.mp4/uqyLOuAzbvo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uqyLOuAzbvo.mp4/uqyLOuAzbvo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uqyLOuAzbvo.m3u8/uqyLOuAzbvo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/fluids-part-8/", "duration": 608, "id": "uqyLOuAzbvo", "title": "Fluids (part 8)", "format": "mp4", "description": "Beginning of the proof of Bernoulli's Equation.", "slug": "fluids-part-8", "kind": "Video", "video_id": "uqyLOuAzbvo", "keywords": "Bernoulli's, Equation, proof, pressure, volume, fluid, physics, motion", "youtube_id": "uqyLOuAzbvo", "readable_id": "fluids-part-8"}, "-sA-vI2a2mM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-sA-vI2a2mM.mp4/-sA-vI2a2mM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-sA-vI2a2mM.mp4/-sA-vI2a2mM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-sA-vI2a2mM.m3u8/-sA-vI2a2mM.m3u8"}, "duration": 266, "id": "-sA-vI2a2mM", "title": "Converting mixed numbers to improper fractions", "format": "mp4", "description": "Converting Mixed Numbers to Improper Fractions", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/converting-mixed-numbers-to-improper-fractions/", "slug": "converting-mixed-numbers-to-improper-fractions", "kind": "Video", "video_id": "-sA-vI2a2mM", "keywords": "u2_l1_t2_we2, Converting, Mixed, Numbers, to, Improper, Fractions", "youtube_id": "-sA-vI2a2mM", "readable_id": "converting-mixed-numbers-to-improper-fractions"}, "n30yILpUitw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n30yILpUitw.mp4/n30yILpUitw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n30yILpUitw.mp4/n30yILpUitw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n30yILpUitw.m3u8/n30yILpUitw.m3u8"}, "path": "khan/science/chemistry/oxidation-reduction/redox-oxidation-reduction/redox-reaction-with-iron/", "duration": 367, "id": "n30yILpUitw", "title": "Redox reaction with iron", "format": "mp4", "description": "", "slug": "redox-reaction-with-iron", "kind": "Video", "video_id": "n30yILpUitw", "keywords": "", "youtube_id": "n30yILpUitw", "readable_id": "redox-reaction-with-iron"}, "ss7Ap-6bFYw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ss7Ap-6bFYw.mp4/ss7Ap-6bFYw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ss7Ap-6bFYw.mp4/ss7Ap-6bFYw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ss7Ap-6bFYw.m3u8/ss7Ap-6bFYw.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/acid-base-definitions-1/", "duration": 469, "id": "ss7Ap-6bFYw", "title": "Acid-base definitions", "format": "mp4", "description": "", "slug": "acid-base-definitions-1", "kind": "Video", "video_id": "ss7Ap-6bFYw", "keywords": "", "youtube_id": "ss7Ap-6bFYw", "readable_id": "acid-base-definitions-1"}, "N06Jy-gQog8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N06Jy-gQog8.mp4/N06Jy-gQog8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N06Jy-gQog8.mp4/N06Jy-gQog8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N06Jy-gQog8.m3u8/N06Jy-gQog8.m3u8"}, "duration": 252, "id": "N06Jy-gQog8", "title": "Correction calendar notation", "format": "mp4", "description": "Correcting the time difference calculation by taking into account that there is no year 0", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/correction-calendar-notation/", "slug": "correction-calendar-notation", "kind": "Video", "video_id": "N06Jy-gQog8", "keywords": "calendar, dates", "youtube_id": "N06Jy-gQog8", "readable_id": "correction-calendar-notation"}, "i9rfWOAEplk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i9rfWOAEplk.mp4/i9rfWOAEplk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i9rfWOAEplk.mp4/i9rfWOAEplk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i9rfWOAEplk.m3u8/i9rfWOAEplk.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/deffect-2013-07-03t144454851z/ortho-para-directors-i/", "duration": 778, "id": "i9rfWOAEplk", "title": "Ortho-para directors I", "format": "mp4", "description": "Regiochemistry", "slug": "ortho-para-directors-i", "kind": "Video", "video_id": "i9rfWOAEplk", "keywords": "", "youtube_id": "i9rfWOAEplk", "readable_id": "ortho-para-directors-i"}, "Sc6zc8KR_NU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Sc6zc8KR_NU.mp4/Sc6zc8KR_NU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Sc6zc8KR_NU.mp4/Sc6zc8KR_NU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Sc6zc8KR_NU.m3u8/Sc6zc8KR_NU.m3u8"}, "duration": 124, "id": "Sc6zc8KR_NU", "title": "Put-call parity clarification", "format": "mp4", "description": "Put-Call Parity Clarification", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-call-parity-clarification/", "slug": "put-call-parity-clarification", "kind": "Video", "video_id": "Sc6zc8KR_NU", "keywords": "Put-Call, Parity, Clarification", "youtube_id": "Sc6zc8KR_NU", "readable_id": "put-call-parity-clarification"}, "DRIpznER-VQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DRIpznER-VQ.mp4/DRIpznER-VQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DRIpznER-VQ.mp4/DRIpznER-VQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DRIpznER-VQ.m3u8/DRIpznER-VQ.m3u8"}, "duration": 310, "id": "DRIpznER-VQ", "title": "Artists Experiment 2014 | MoMA", "format": "mp4", "description": "What happens when the museum becomes a studio and the visitor becomes a collaborator? Learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "artists-experiment-2014/", "slug": "artists-experiment-2014", "kind": "Video", "video_id": "DRIpznER-VQ", "keywords": "", "youtube_id": "DRIpznER-VQ", "readable_id": "artists-experiment-2014"}, "6e0LyXQJoW4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6e0LyXQJoW4.mp4/6e0LyXQJoW4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6e0LyXQJoW4.mp4/6e0LyXQJoW4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6e0LyXQJoW4.m3u8/6e0LyXQJoW4.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2009-may-3-7/", "duration": 241, "id": "6e0LyXQJoW4", "title": "7 Perimeter", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-7", "kind": "Video", "video_id": "6e0LyXQJoW4", "keywords": "", "youtube_id": "6e0LyXQJoW4", "readable_id": "sat-2009-may-3-7"}, "3JG3qn7-Sac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3JG3qn7-Sac.mp4/3JG3qn7-Sac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3JG3qn7-Sac.mp4/3JG3qn7-Sac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3JG3qn7-Sac.m3u8/3JG3qn7-Sac.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/polynomial-approximation-of-functions-part-2/", "duration": 603, "id": "3JG3qn7-Sac", "title": "Polynomial approximation of functions (part 2)", "format": "mp4", "description": "Approximating a function with a polynomial by making the derivatives equal at f(0) (Maclauren Series)", "slug": "polynomial-approximation-of-functions-part-2", "kind": "Video", "video_id": "3JG3qn7-Sac", "keywords": "power, maclauren, taylor, series, derivative, infinite, sum", "youtube_id": "3JG3qn7-Sac", "readable_id": "polynomial-approximation-of-functions-part-2"}, "V7H1oUHXPkg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V7H1oUHXPkg.mp4/V7H1oUHXPkg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V7H1oUHXPkg.mp4/V7H1oUHXPkg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V7H1oUHXPkg.m3u8/V7H1oUHXPkg.m3u8"}, "duration": 561, "id": "V7H1oUHXPkg", "title": "Solving linear systems by substitution", "format": "mp4", "description": "Solving Linear Systems by Substitution", "path": "khan/math/algebra-basics/core-algebra-systems/core-algebra-systems-tutorial/solving-linear-systems-by-substitution/", "slug": "solving-linear-systems-by-substitution", "kind": "Video", "video_id": "V7H1oUHXPkg", "keywords": "Solving, Linear, Systems, by, Substitution, CC_8_EE_8_b, CC_39336_A-REI_6", "youtube_id": "V7H1oUHXPkg", "readable_id": "solving-linear-systems-by-substitution"}, "puqe3_HkDZA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/puqe3_HkDZA.mp4/puqe3_HkDZA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/puqe3_HkDZA.mp4/puqe3_HkDZA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/puqe3_HkDZA.m3u8/puqe3_HkDZA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-laryngeal-conditions/what-is-laryngitis/", "duration": 418, "id": "puqe3_HkDZA", "title": "What is laryngitis ?", "format": "mp4", "description": "", "slug": "what-is-laryngitis", "kind": "Video", "video_id": "puqe3_HkDZA", "keywords": "", "youtube_id": "puqe3_HkDZA", "readable_id": "what-is-laryngitis"}, "SZF5K8epWko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SZF5K8epWko.mp4/SZF5K8epWko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SZF5K8epWko.mp4/SZF5K8epWko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SZF5K8epWko.m3u8/SZF5K8epWko.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/caravaggio-s-calling-of-st-matthew-c-1599-1600/", "duration": 382, "id": "SZF5K8epWko", "title": "Caravaggio, Calling of Saint Matthew", "format": "mp4", "description": "Caravaggio's Calling of St. Matthew, oil on canvas, c. 1599-1600 (Contarelli Chapel, San Luigi dei Francesi, Rome)", "slug": "caravaggio-s-calling-of-st-matthew-c-1599-1600", "kind": "Video", "video_id": "SZF5K8epWko", "keywords": "Caravaggio, Rome, Smarthistory, Art History, San Luigi dei Francese, Conarelli Chapel, St. Matthew, Baroque", "youtube_id": "SZF5K8epWko", "readable_id": "caravaggio-s-calling-of-st-matthew-c-1599-1600"}, "Ncg1HB5uVLc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ncg1HB5uVLc.mp4/Ncg1HB5uVLc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ncg1HB5uVLc.mp4/Ncg1HB5uVLc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ncg1HB5uVLc.m3u8/Ncg1HB5uVLc.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-exterior-angles/", "duration": 653, "id": "Ncg1HB5uVLc", "title": "CA Geometry: Exterior angles", "format": "mp4", "description": "41-45, polygons, exterior angles", "slug": "ca-geometry-exterior-angles", "kind": "Video", "video_id": "Ncg1HB5uVLc", "keywords": "geometry, exterior, angles, polygon", "youtube_id": "Ncg1HB5uVLc", "readable_id": "ca-geometry-exterior-angles"}, "6QZCj4O9sk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6QZCj4O9sk0.mp4/6QZCj4O9sk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6QZCj4O9sk0.mp4/6QZCj4O9sk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6QZCj4O9sk0.m3u8/6QZCj4O9sk0.m3u8"}, "duration": 126, "id": "6QZCj4O9sk0", "title": "How many cars can fit in the parking lot", "format": "mp4", "description": "Use a picture and repeated addition to solve a multiplication word problem. \u00a0Watch out for unnecessary information.", "path": "how-many-cars-can-fit-in-the-parking-lot/", "slug": "how-many-cars-can-fit-in-the-parking-lot", "kind": "Video", "video_id": "6QZCj4O9sk0", "keywords": "", "youtube_id": "6QZCj4O9sk0", "readable_id": "how-many-cars-can-fit-in-the-parking-lot"}, "Y6JsEja15Vk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y6JsEja15Vk.mp4/Y6JsEja15Vk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y6JsEja15Vk.mp4/Y6JsEja15Vk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y6JsEja15Vk.m3u8/Y6JsEja15Vk.m3u8"}, "duration": 225, "id": "Y6JsEja15Vk", "title": "Example 2: Solving systems by elimination", "format": "mp4", "description": "Solving systems by elimination 2", "path": "solving-systems-by-elimination-2/", "slug": "solving-systems-by-elimination-2", "kind": "Video", "video_id": "Y6JsEja15Vk", "keywords": "U06_L1_T3_we2, Solving, systems, by, elimination, CC_8_EE_8_b, CC_8_EE_8_c, CC_39336_A-REI_6", "youtube_id": "Y6JsEja15Vk", "readable_id": "solving-systems-by-elimination-2"}, "vbGwcvXgDlg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vbGwcvXgDlg.mp4/vbGwcvXgDlg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vbGwcvXgDlg.mp4/vbGwcvXgDlg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vbGwcvXgDlg.m3u8/vbGwcvXgDlg.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/area-models-multiplication/area-model-for-multiplication/", "duration": 527, "id": "vbGwcvXgDlg", "title": "Multiplying: using an area model", "format": "mp4", "description": "Using graph paper we'll map out an area model to help us with a multiplication problem.", "slug": "area-model-for-multiplication", "kind": "Video", "video_id": "vbGwcvXgDlg", "keywords": "", "youtube_id": "vbGwcvXgDlg", "readable_id": "area-model-for-multiplication"}, "tbQ_7zvRoN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tbQ_7zvRoN4.mp4/tbQ_7zvRoN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tbQ_7zvRoN4.mp4/tbQ_7zvRoN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tbQ_7zvRoN4.m3u8/tbQ_7zvRoN4.m3u8"}, "duration": 654, "id": "tbQ_7zvRoN4", "title": "Sum of factors 2", "format": "mp4", "description": "Seeing the \"formula\" in the last method", "path": "khan/math/competition-math/aime/2003-aime/sum-of-factors-2/", "slug": "sum-of-factors-2", "kind": "Video", "video_id": "tbQ_7zvRoN4", "keywords": "factor, sum, number, theory", "youtube_id": "tbQ_7zvRoN4", "readable_id": "sum-of-factors-2"}, "oUgDaEwMbiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oUgDaEwMbiU.mp4/oUgDaEwMbiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oUgDaEwMbiU.mp4/oUgDaEwMbiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oUgDaEwMbiU.m3u8/oUgDaEwMbiU.m3u8"}, "duration": 297, "id": "oUgDaEwMbiU", "title": "Defining a function at a point to make it continuous", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/continuity-limits/defining-a-function-at-a-point-to-make-it-continuous/", "slug": "defining-a-function-at-a-point-to-make-it-continuous", "kind": "Video", "video_id": "oUgDaEwMbiU", "keywords": "", "youtube_id": "oUgDaEwMbiU", "readable_id": "defining-a-function-at-a-point-to-make-it-continuous"}, "q_Q9C1Ooofc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q_Q9C1Ooofc.mp4/q_Q9C1Ooofc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q_Q9C1Ooofc.mp4/q_Q9C1Ooofc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q_Q9C1Ooofc.m3u8/q_Q9C1Ooofc.m3u8"}, "duration": 177, "id": "q_Q9C1Ooofc", "title": "Naming alkanes with ethyl groups", "format": "mp4", "description": "", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/alkane-with-ethyl-groups/", "slug": "alkane-with-ethyl-groups", "kind": "Video", "video_id": "q_Q9C1Ooofc", "keywords": "", "youtube_id": "q_Q9C1Ooofc", "readable_id": "alkane-with-ethyl-groups"}, "3zU90x0OZ0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3zU90x0OZ0Y.mp4/3zU90x0OZ0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3zU90x0OZ0Y.mp4/3zU90x0OZ0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3zU90x0OZ0Y.m3u8/3zU90x0OZ0Y.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/surrealism1/giacometti-palace-at-4am-1932/", "duration": 141, "id": "3zU90x0OZ0Y", "title": "Giacometti, The Palace at 4am", "format": "mp4", "description": "Alberto Giacometti, Palace at 4am, wood, glass, wire and string, 1932 (MoMA)\n\nSpeakers: Dr. Steven Zucker, Dr. Beth Harris \n\nhttp://www.smarthistory.org/surrealism-giacometti.html", "slug": "giacometti-palace-at-4am-1932", "kind": "Video", "video_id": "3zU90x0OZ0Y", "keywords": "Giacometti, Palace at 4am, Smarthistory, Art History, Surrealism, MoMA", "youtube_id": "3zU90x0OZ0Y", "readable_id": "giacometti-palace-at-4am-1932"}, "UyCwAFQt4v0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UyCwAFQt4v0.mp4/UyCwAFQt4v0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UyCwAFQt4v0.mp4/UyCwAFQt4v0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UyCwAFQt4v0.m3u8/UyCwAFQt4v0.m3u8"}, "duration": 359, "id": "UyCwAFQt4v0", "title": "2nd order linear homogeneous differential equations 3", "format": "mp4", "description": "Let's use some initial conditions to solve for the particular solution", "path": "khan/math/differential-equations/second-order-differential-equations/linear-homogeneous-2nd-order/2nd-order-linear-homogeneous-differential-equations-3/", "slug": "2nd-order-linear-homogeneous-differential-equations-3", "kind": "Video", "video_id": "UyCwAFQt4v0", "keywords": "2nd, Order, Linear, Homogeneous, Differential, Equations", "youtube_id": "UyCwAFQt4v0", "readable_id": "2nd-order-linear-homogeneous-differential-equations-3"}, "zlI8mx8Hc8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zlI8mx8Hc8o.mp4/zlI8mx8Hc8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zlI8mx8Hc8o.mp4/zlI8mx8Hc8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zlI8mx8Hc8o.m3u8/zlI8mx8Hc8o.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/othogonal_complements/lin-alg-orthogonal-complement-of-the-orthogonal-complement/", "duration": 738, "id": "zlI8mx8Hc8o", "title": "Orthogonal complement of the orthogonal complement", "format": "mp4", "description": "Finding that the orthogonal complement of the orthogonal complement of V is V", "slug": "lin-alg-orthogonal-complement-of-the-orthogonal-complement", "kind": "Video", "video_id": "zlI8mx8Hc8o", "keywords": "subspace, orthogonal, complement", "youtube_id": "zlI8mx8Hc8o", "readable_id": "lin-alg-orthogonal-complement-of-the-orthogonal-complement"}, "JVwp1m3wzvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVwp1m3wzvY.mp4/JVwp1m3wzvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVwp1m3wzvY.mp4/JVwp1m3wzvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVwp1m3wzvY.m3u8/JVwp1m3wzvY.m3u8"}, "path": "khan/partner-content/exploratorium/sound-explo/vocal-visualizer/vocal-visualizer-tools-and-assembly/", "duration": 454, "id": "JVwp1m3wzvY", "title": "Build your own Vocal Visualizer: Materials, tools, and steps", "format": "mp4", "description": "In this video, you'll find the materials and tools you'll need to build your own Vocal Visualizer, as well as all the necessary steps.\u00a0", "slug": "vocal-visualizer-tools-and-assembly", "kind": "Video", "video_id": "JVwp1m3wzvY", "keywords": "", "youtube_id": "JVwp1m3wzvY", "readable_id": "vocal-visualizer-tools-and-assembly"}, "ZeATszO-6e0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZeATszO-6e0.mp4/ZeATszO-6e0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZeATszO-6e0.mp4/ZeATszO-6e0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZeATszO-6e0.m3u8/ZeATszO-6e0.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/gene-mapping/", "duration": 800, "id": "ZeATszO-6e0", "title": "Gene mapping", "format": "mp4", "description": "", "slug": "gene-mapping", "kind": "Video", "video_id": "ZeATszO-6e0", "keywords": "", "youtube_id": "ZeATszO-6e0", "readable_id": "gene-mapping"}, "LoKEPEPaNm4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LoKEPEPaNm4.mp4/LoKEPEPaNm4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LoKEPEPaNm4.mp4/LoKEPEPaNm4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LoKEPEPaNm4.m3u8/LoKEPEPaNm4.m3u8"}, "duration": 189, "id": "LoKEPEPaNm4", "title": "Graphing proportional relationships example 3", "format": "mp4", "description": "", "path": "graphing-proportional-relationships-example-3/", "slug": "graphing-proportional-relationships-example-3", "kind": "Video", "video_id": "LoKEPEPaNm4", "keywords": "", "youtube_id": "LoKEPEPaNm4", "readable_id": "graphing-proportional-relationships-example-3"}, "3XymgBX-R2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3XymgBX-R2c.mp4/3XymgBX-R2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3XymgBX-R2c.mp4/3XymgBX-R2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3XymgBX-R2c.m3u8/3XymgBX-R2c.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/how-did-first-humans-live/bhp-how-did-first-humans-live/", "duration": 653, "id": "3XymgBX-R2c", "title": "How Did The First Humans Live?", "format": "mp4", "description": "The evidence left behind by early humans gives us a vivid picture of their lives.", "slug": "bhp-how-did-first-humans-live", "kind": "Video", "video_id": "3XymgBX-R2c", "keywords": "", "youtube_id": "3XymgBX-R2c", "readable_id": "bhp-how-did-first-humans-live"}, "4eZpJo_60QQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4eZpJo_60QQ.mp4/4eZpJo_60QQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4eZpJo_60QQ.mp4/4eZpJo_60QQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4eZpJo_60QQ.m3u8/4eZpJo_60QQ.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/aromatic-stability-of-benzene/", "duration": 360, "id": "4eZpJo_60QQ", "title": "Aromatic stability of benzene", "format": "mp4", "description": "", "slug": "aromatic-stability-of-benzene", "kind": "Video", "video_id": "4eZpJo_60QQ", "keywords": "", "youtube_id": "4eZpJo_60QQ", "readable_id": "aromatic-stability-of-benzene"}, "-bt-H5VQl5E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-bt-H5VQl5E.mp4/-bt-H5VQl5E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-bt-H5VQl5E.mp4/-bt-H5VQl5E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-bt-H5VQl5E.m3u8/-bt-H5VQl5E.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/septic-shock-pathophysiology-and-symptoms/", "duration": 600, "id": "-bt-H5VQl5E", "title": "Septic shock - pathophysiology and symptoms", "format": "mp4", "description": "", "slug": "septic-shock-pathophysiology-and-symptoms", "kind": "Video", "video_id": "-bt-H5VQl5E", "keywords": "", "youtube_id": "-bt-H5VQl5E", "readable_id": "septic-shock-pathophysiology-and-symptoms"}, "ynBuPEmcjp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ynBuPEmcjp4.mp4/ynBuPEmcjp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ynBuPEmcjp4.mp4/ynBuPEmcjp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ynBuPEmcjp4.m3u8/ynBuPEmcjp4.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/preparation-of-esters-via-fischer-esterification/", "duration": 577, "id": "ynBuPEmcjp4", "title": "Preparation of esters via Fischer esterification", "format": "mp4", "description": "How to draw the mechanism for a Fischer esterification", "slug": "preparation-of-esters-via-fischer-esterification", "kind": "Video", "video_id": "ynBuPEmcjp4", "keywords": "", "youtube_id": "ynBuPEmcjp4", "readable_id": "preparation-of-esters-via-fischer-esterification"}, "yUYDhmQsiXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yUYDhmQsiXY.mp4/yUYDhmQsiXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yUYDhmQsiXY.mp4/yUYDhmQsiXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yUYDhmQsiXY.m3u8/yUYDhmQsiXY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/multiplying-fractions-pre-alg/multiplication-as-scaling/", "duration": 306, "id": "yUYDhmQsiXY", "title": "Multiplication as scaling", "format": "mp4", "description": "When multiplying fractions, it's sometimes helpful to view the operation as a kind of scaling--that multiplying the fraction times another creates a fractional proportion, or scale. Watch. You'll understand.", "slug": "multiplication-as-scaling", "kind": "Video", "video_id": "yUYDhmQsiXY", "keywords": "", "youtube_id": "yUYDhmQsiXY", "readable_id": "multiplication-as-scaling"}, "NRJFZaSw1Y0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NRJFZaSw1Y0.mp4/NRJFZaSw1Y0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NRJFZaSw1Y0.mp4/NRJFZaSw1Y0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NRJFZaSw1Y0.m3u8/NRJFZaSw1Y0.m3u8"}, "duration": 117, "id": "NRJFZaSw1Y0", "title": "Recognizing fractions exercise", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/fractions-pre-alg/understanding-fractions-pre-alg/recognizing-fractions-exercise/", "slug": "recognizing-fractions-exercise", "kind": "Video", "video_id": "NRJFZaSw1Y0", "keywords": "", "youtube_id": "NRJFZaSw1Y0", "readable_id": "recognizing-fractions-exercise"}, "qUNGPqCPzMg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qUNGPqCPzMg.mp4/qUNGPqCPzMg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qUNGPqCPzMg.mp4/qUNGPqCPzMg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qUNGPqCPzMg.m3u8/qUNGPqCPzMg.m3u8"}, "duration": 751, "id": "qUNGPqCPzMg", "title": "Partial fraction decomposition to find sum of telescoping series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/telescoping-series/", "slug": "telescoping-series", "kind": "Video", "video_id": "qUNGPqCPzMg", "keywords": "", "youtube_id": "qUNGPqCPzMg", "readable_id": "telescoping-series"}, "dCQbfaQZtaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dCQbfaQZtaY.mp4/dCQbfaQZtaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dCQbfaQZtaY.mp4/dCQbfaQZtaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dCQbfaQZtaY.m3u8/dCQbfaQZtaY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/visualizing-equiv-fracs-pre-alg/equivalent-fraction-word-problem-example/", "duration": 241, "id": "dCQbfaQZtaY", "title": "Equivalent fraction word problem example", "format": "mp4", "description": "Your teachers will tell you that being able to apply (or put to use) concepts helps you to learn them better. Here's a word problem in which you have to apply your knowledge of equivalent fractions.", "slug": "equivalent-fraction-word-problem-example", "kind": "Video", "video_id": "dCQbfaQZtaY", "keywords": "", "youtube_id": "dCQbfaQZtaY", "readable_id": "equivalent-fraction-word-problem-example"}, "P3QV9ktuYlQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P3QV9ktuYlQ.mp4/P3QV9ktuYlQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P3QV9ktuYlQ.mp4/P3QV9ktuYlQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P3QV9ktuYlQ.m3u8/P3QV9ktuYlQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/spring-potential-energy-example-mistake-in-math/", "duration": 578, "id": "P3QV9ktuYlQ", "title": "Spring potential energy example (mistake in math)", "format": "mp4", "description": "A spring, a frozen loop-d-loop and more! (See if you can find the mistake I made and get the right answer!)", "slug": "spring-potential-energy-example-mistake-in-math", "kind": "Video", "video_id": "P3QV9ktuYlQ", "keywords": "potential, energy, spring, kinetic, hooke's, centripetal", "youtube_id": "P3QV9ktuYlQ", "readable_id": "spring-potential-energy-example-mistake-in-math"}, "rFMFH8Nf0Zw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rFMFH8Nf0Zw.mp4/rFMFH8Nf0Zw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rFMFH8Nf0Zw.mp4/rFMFH8Nf0Zw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rFMFH8Nf0Zw.m3u8/rFMFH8Nf0Zw.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/rembrandt-nga-self-portrait/", "duration": 236, "id": "rFMFH8Nf0Zw", "title": "Rembrandt, Self-Portrait", "format": "mp4", "description": "Rembrandt van Rijn, Self-Portrait, 1659, oil on canvas, 84.5 x 66 cm (National Gallery of Art)\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "rembrandt-nga-self-portrait", "kind": "Video", "video_id": "rFMFH8Nf0Zw", "keywords": "", "youtube_id": "rFMFH8Nf0Zw", "readable_id": "rembrandt-nga-self-portrait"}, "I-Ha9At0zIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I-Ha9At0zIo.mp4/I-Ha9At0zIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I-Ha9At0zIo.mp4/I-Ha9At0zIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I-Ha9At0zIo.m3u8/I-Ha9At0zIo.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-facilities-furniture/sscc-blended-facilities/", "duration": 955, "id": "I-Ha9At0zIo", "title": "Making sure the facilities and furniture support your educational model", "format": "mp4", "description": "", "slug": "sscc-blended-facilities", "kind": "Video", "video_id": "I-Ha9At0zIo", "keywords": "", "youtube_id": "I-Ha9At0zIo", "readable_id": "sscc-blended-facilities"}, "qbXKrR9BQmg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qbXKrR9BQmg.mp4/qbXKrR9BQmg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qbXKrR9BQmg.mp4/qbXKrR9BQmg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qbXKrR9BQmg.m3u8/qbXKrR9BQmg.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/mantoux-test-aka-ppd-or-tst/", "duration": 517, "id": "qbXKrR9BQmg", "title": "Mantoux test (aka. PPD or TST)", "format": "mp4", "description": "Learn how the Mantoux test is done and how it works. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "mantoux-test-aka-ppd-or-tst", "kind": "Video", "video_id": "qbXKrR9BQmg", "keywords": "", "youtube_id": "qbXKrR9BQmg", "readable_id": "mantoux-test-aka-ppd-or-tst"}, "DRlE85xYqzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DRlE85xYqzE.mp4/DRlE85xYqzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DRlE85xYqzE.mp4/DRlE85xYqzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DRlE85xYqzE.m3u8/DRlE85xYqzE.m3u8"}, "path": "khan/humanities/art-americas/later-cultures-americas/aztec-mexica/coatlicue/", "duration": 435, "id": "DRlE85xYqzE", "title": "Coatlicue", "format": "mp4", "description": "Coatlicue, c. 1500, Mexica (Aztec), found on the SE edge of the Plaza mayor/Zocalo in Mexico City, basalt, \u00a0257 cm high (National Museum of Anthropology, Mexico City)\nA conversation with Dr. Lauren Kilroy-Ewbank and Dr. Steven Zucker\n", "slug": "coatlicue", "kind": "Video", "video_id": "DRlE85xYqzE", "keywords": "Coatlicue, Mexica, Aztec, Mexico, Pre-Columbian, Mexico City, National Museum of Anthropology", "youtube_id": "DRlE85xYqzE", "readable_id": "coatlicue"}, "NIdqkwocNuE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NIdqkwocNuE.mp4/NIdqkwocNuE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NIdqkwocNuE.mp4/NIdqkwocNuE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NIdqkwocNuE.m3u8/NIdqkwocNuE.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-5/", "duration": 569, "id": "NIdqkwocNuE", "title": "Shell method to rotate around y-axis", "format": "mp4", "description": "Use the \"shell method\" to rotate about the y-axis", "slug": "solid-of-revolution-part-5", "kind": "Video", "video_id": "NIdqkwocNuE", "keywords": "solid, volume, revolution, rotation, shell, disk, calculus", "youtube_id": "NIdqkwocNuE", "readable_id": "solid-of-revolution-part-5"}, "-uZt8MLeDrg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-uZt8MLeDrg.mp4/-uZt8MLeDrg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-uZt8MLeDrg.mp4/-uZt8MLeDrg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-uZt8MLeDrg.m3u8/-uZt8MLeDrg.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-33/", "duration": 654, "id": "-uZt8MLeDrg", "title": "GMAT: Data sufficiency 33", "format": "mp4", "description": "132-134, pg. 289", "slug": "gmat-data-sufficiency-33", "kind": "Video", "video_id": "-uZt8MLeDrg", "keywords": "gmat, data, sufficiency, math", "youtube_id": "-uZt8MLeDrg", "readable_id": "gmat-data-sufficiency-33"}, "mv5zucjq60k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mv5zucjq60k.mp4/mv5zucjq60k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mv5zucjq60k.mp4/mv5zucjq60k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mv5zucjq60k.m3u8/mv5zucjq60k.m3u8"}, "duration": 699, "id": "mv5zucjq60k", "title": "Risk and reward introduction", "format": "mp4", "description": "Basic introduction to risk and reward", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/investment-consumption/risk-and-reward-introduction/", "slug": "risk-and-reward-introduction", "kind": "Video", "video_id": "mv5zucjq60k", "keywords": "risk, reward, introduction", "youtube_id": "mv5zucjq60k", "readable_id": "risk-and-reward-introduction"}, "pa92UdJCaos": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pa92UdJCaos.mp4/pa92UdJCaos.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pa92UdJCaos.mp4/pa92UdJCaos.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pa92UdJCaos.m3u8/pa92UdJCaos.m3u8"}, "duration": 1049, "id": "pa92UdJCaos", "title": "Enterprise value", "format": "mp4", "description": "Solving the P/E conundrum by looking at a different valuation metric (enterprise value)", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/enterprise-value/", "slug": "enterprise-value", "kind": "Video", "video_id": "pa92UdJCaos", "keywords": "enterprise, value, EV, ebitda, operating, income, valuation", "youtube_id": "pa92UdJCaos", "readable_id": "enterprise-value"}, "vA-55wZtLeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vA-55wZtLeE.mp4/vA-55wZtLeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vA-55wZtLeE.mp4/vA-55wZtLeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vA-55wZtLeE.m3u8/vA-55wZtLeE.m3u8"}, "duration": 764, "id": "vA-55wZtLeE", "title": "Solving systems of equations by elimination", "format": "mp4", "description": "Solving Systems of Equations by Elimination", "path": "khan/math/algebra-basics/core-algebra-systems/core-algebra-systems-tutorial/solving-systems-of-equations-by-elimination/", "slug": "solving-systems-of-equations-by-elimination", "kind": "Video", "video_id": "vA-55wZtLeE", "keywords": "Solving, Systems, of, Equations, by, Elimination, CC_8_EE_8_b, CC_39336_A-REI_5, CC_39336_A-REI_6", "youtube_id": "vA-55wZtLeE", "readable_id": "solving-systems-of-equations-by-elimination"}, "-oHlcuS7AeU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-oHlcuS7AeU.mp4/-oHlcuS7AeU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-oHlcuS7AeU.mp4/-oHlcuS7AeU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-oHlcuS7AeU.m3u8/-oHlcuS7AeU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-intro-to-pulmonary-diseases/types-of-pulmonary-diseases/", "duration": 482, "id": "-oHlcuS7AeU", "title": "Types of pulmonary diseases", "format": "mp4", "description": "Learn what the main classifications of lung diseases are: obstructive, restrictive, ventilation, and perfusion. Discover the classification of common diseases like asthma, emphysema, and pneumonia.", "slug": "types-of-pulmonary-diseases", "kind": "Video", "video_id": "-oHlcuS7AeU", "keywords": "", "youtube_id": "-oHlcuS7AeU", "readable_id": "types-of-pulmonary-diseases"}, "3tmFTHOP6Pc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3tmFTHOP6Pc.mp4/3tmFTHOP6Pc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3tmFTHOP6Pc.mp4/3tmFTHOP6Pc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3tmFTHOP6Pc.m3u8/3tmFTHOP6Pc.m3u8"}, "duration": 176, "id": "3tmFTHOP6Pc", "title": "Adding and subtracting rational expressions 2", "format": "mp4", "description": "U11_L1_T3_we2 Adding and Subtracting Rational Expressions 2", "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding-and-subtracting-rational-expressions-2/", "slug": "adding-and-subtracting-rational-expressions-2", "kind": "Video", "video_id": "3tmFTHOP6Pc", "keywords": "U11_L1_T3_we2, Adding, and, Subtracting, Rational, Expressions, CC_39336_A-APR_7", "youtube_id": "3tmFTHOP6Pc", "readable_id": "adding-and-subtracting-rational-expressions-2"}, "xC-fQ0KEzsM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xC-fQ0KEzsM.mp4/xC-fQ0KEzsM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xC-fQ0KEzsM.mp4/xC-fQ0KEzsM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xC-fQ0KEzsM.m3u8/xC-fQ0KEzsM.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/ditributive_property/distributive-property-exercise/", "duration": 183, "id": "xC-fQ0KEzsM", "title": "Distributive property exercise examples", "format": "mp4", "description": "You'll be a pro applying the distributive property once you've solved these exercise examples with us.", "slug": "distributive-property-exercise", "kind": "Video", "video_id": "xC-fQ0KEzsM", "keywords": "", "youtube_id": "xC-fQ0KEzsM", "readable_id": "distributive-property-exercise"}, "ty4Ohya4hdE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ty4Ohya4hdE.mp4/ty4Ohya4hdE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ty4Ohya4hdE.mp4/ty4Ohya4hdE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ty4Ohya4hdE.m3u8/ty4Ohya4hdE.m3u8"}, "duration": 141, "id": "ty4Ohya4hdE", "title": "Example: Quadratics in standard form", "format": "mp4", "description": "Quadratic Equations in Standard Form", "path": "khan/math/algebra/quadratics/quadratic-formula/quadratic-equations-in-standard-form/", "slug": "quadratic-equations-in-standard-form", "kind": "Video", "video_id": "ty4Ohya4hdE", "keywords": "u16_l5_t2_we1, Quadratic, Equations, in, Standard, Form", "youtube_id": "ty4Ohya4hdE", "readable_id": "quadratic-equations-in-standard-form"}, "_oodhLhuD5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_oodhLhuD5U.mp4/_oodhLhuD5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_oodhLhuD5U.mp4/_oodhLhuD5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_oodhLhuD5U.m3u8/_oodhLhuD5U.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e2-elimination-stereoselectivity/", "duration": 710, "id": "_oodhLhuD5U", "title": "E2 elimination: Stereoselectivity", "format": "mp4", "description": "", "slug": "e2-elimination-stereoselectivity", "kind": "Video", "video_id": "_oodhLhuD5U", "keywords": "", "youtube_id": "_oodhLhuD5U", "readable_id": "e2-elimination-stereoselectivity"}, "6FP-hLuAlr4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6FP-hLuAlr4.mp4/6FP-hLuAlr4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6FP-hLuAlr4.mp4/6FP-hLuAlr4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6FP-hLuAlr4.m3u8/6FP-hLuAlr4.m3u8"}, "duration": 142, "id": "6FP-hLuAlr4", "title": "Stellar parallax clarification", "format": "mp4", "description": "Stellar Parallax Clarification", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-parallax-tutorial/stellar-parallax-clarification/", "slug": "stellar-parallax-clarification", "kind": "Video", "video_id": "6FP-hLuAlr4", "keywords": "Stellar, Parallax, Clarification", "youtube_id": "6FP-hLuAlr4", "readable_id": "stellar-parallax-clarification"}, "cyZUgH4yoCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cyZUgH4yoCo.mp4/cyZUgH4yoCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cyZUgH4yoCo.mp4/cyZUgH4yoCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cyZUgH4yoCo.m3u8/cyZUgH4yoCo.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial/sn1-vs-sn2-summary/", "duration": 721, "id": "cyZUgH4yoCo", "title": "Sn1 vs Sn2: Summary", "format": "mp4", "description": "", "slug": "sn1-vs-sn2-summary", "kind": "Video", "video_id": "cyZUgH4yoCo", "keywords": "", "youtube_id": "cyZUgH4yoCo", "readable_id": "sn1-vs-sn2-summary"}, "hXNFjOhrihI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hXNFjOhrihI.mp4/hXNFjOhrihI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hXNFjOhrihI.mp4/hXNFjOhrihI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hXNFjOhrihI.m3u8/hXNFjOhrihI.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-medieval/ilkhanid-mihrab-1354-55-isfahan-iran-metropolitan-museum-of-art-new-york/", "duration": 341, "id": "hXNFjOhrihI", "title": "Ilkhanid Mihrab", "format": "mp4", "description": "Mihrab (prayer niche), 1354--55 (A.H. 755), just after the Ilkhanid period, Isfahan, Iran, polychrome glazed tiles, 135-1/16 x 113-11/16 inches / 343.1 x 288.7 cm (Metropolitan Museum of Art, New York). Speakers: Dr. Elizabeth Macaulay Lewis and Dr. Steven Zucker", "slug": "ilkhanid-mihrab-1354-55-isfahan-iran-metropolitan-museum-of-art-new-york", "kind": "Video", "video_id": "hXNFjOhrihI", "keywords": "Smarthistory, Khan Academy, Art History, Islamic Art, Art, Mihrab, Ilkhanid, Isfahan, Esfahan, Iran, Iranian Art", "youtube_id": "hXNFjOhrihI", "readable_id": "ilkhanid-mihrab-1354-55-isfahan-iran-metropolitan-museum-of-art-new-york"}, "uK3M7RGqJFQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uK3M7RGqJFQ.mp4/uK3M7RGqJFQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uK3M7RGqJFQ.mp4/uK3M7RGqJFQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uK3M7RGqJFQ.m3u8/uK3M7RGqJFQ.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/stereotypes-stereotype-threat-and-self-fulfilling-prophecies/", "duration": 374, "id": "uK3M7RGqJFQ", "title": "Stereotypes stereotype threat and self fulfilling prophecies", "format": "mp4", "description": "", "slug": "stereotypes-stereotype-threat-and-self-fulfilling-prophecies", "kind": "Video", "video_id": "uK3M7RGqJFQ", "keywords": "", "youtube_id": "uK3M7RGqJFQ", "readable_id": "stereotypes-stereotype-threat-and-self-fulfilling-prophecies"}, "11iYk0Yrx3g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/11iYk0Yrx3g.mp4/11iYk0Yrx3g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/11iYk0Yrx3g.mp4/11iYk0Yrx3g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/11iYk0Yrx3g.m3u8/11iYk0Yrx3g.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-origin/evolutionary-causes/genetic-variation-gene-flow-and-new-species/", "duration": 712, "id": "11iYk0Yrx3g", "title": "Genetic variation, gene flow, and new species", "format": "mp4", "description": "", "slug": "genetic-variation-gene-flow-and-new-species", "kind": "Video", "video_id": "11iYk0Yrx3g", "keywords": "", "youtube_id": "11iYk0Yrx3g", "readable_id": "genetic-variation-gene-flow-and-new-species"}, "L70uKS_4wGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L70uKS_4wGM.mp4/L70uKS_4wGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L70uKS_4wGM.mp4/L70uKS_4wGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L70uKS_4wGM.m3u8/L70uKS_4wGM.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/cheminresults/", "duration": 124, "id": "L70uKS_4wGM", "title": "First CheMin results", "format": "mp4", "description": "Nov 1st 2012", "slug": "cheminresults", "kind": "Video", "video_id": "L70uKS_4wGM", "keywords": "", "youtube_id": "L70uKS_4wGM", "readable_id": "cheminresults"}, "aZnbr8xyT4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aZnbr8xyT4Q.mp4/aZnbr8xyT4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aZnbr8xyT4Q.mp4/aZnbr8xyT4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aZnbr8xyT4Q.m3u8/aZnbr8xyT4Q.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction/diels-alder-vii-intramolecular/", "duration": 735, "id": "aZnbr8xyT4Q", "title": "Diels-Alder VII: Intramolecular", "format": "mp4", "description": "", "slug": "diels-alder-vii-intramolecular", "kind": "Video", "video_id": "aZnbr8xyT4Q", "keywords": "", "youtube_id": "aZnbr8xyT4Q", "readable_id": "diels-alder-vii-intramolecular"}, "wTy2EZZWDUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wTy2EZZWDUo.mp4/wTy2EZZWDUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wTy2EZZWDUo.mp4/wTy2EZZWDUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wTy2EZZWDUo.m3u8/wTy2EZZWDUo.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-13/", "duration": 159, "id": "wTy2EZZWDUo", "title": "13 Solving system for x+y", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-13", "kind": "Video", "video_id": "wTy2EZZWDUo", "keywords": "", "youtube_id": "wTy2EZZWDUo", "readable_id": "2013-sat-practice-6-13"}, "G3bO8RcRgxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G3bO8RcRgxQ.mp4/G3bO8RcRgxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G3bO8RcRgxQ.mp4/G3bO8RcRgxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G3bO8RcRgxQ.m3u8/G3bO8RcRgxQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/viscosity-and-poiseuille-flow/", "duration": 666, "id": "G3bO8RcRgxQ", "title": "Viscosity and Poiseuille flow", "format": "mp4", "description": "", "slug": "viscosity-and-poiseuille-flow", "kind": "Video", "video_id": "G3bO8RcRgxQ", "keywords": "", "youtube_id": "G3bO8RcRgxQ", "readable_id": "viscosity-and-poiseuille-flow"}, "nu87kfmwNfU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nu87kfmwNfU.mp4/nu87kfmwNfU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nu87kfmwNfU.mp4/nu87kfmwNfU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nu87kfmwNfU.m3u8/nu87kfmwNfU.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_of_matrices/linear-algebra-determinants-along-other-rows-cols/", "duration": 543, "id": "nu87kfmwNfU", "title": "Determinants along other rows/cols", "format": "mp4", "description": "Finding the determinant by going along other rows or columns", "slug": "linear-algebra-determinants-along-other-rows-cols", "kind": "Video", "video_id": "nu87kfmwNfU", "keywords": "determinant, row, column", "youtube_id": "nu87kfmwNfU", "readable_id": "linear-algebra-determinants-along-other-rows-cols"}, "DR42xdsLWkc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DR42xdsLWkc.mp4/DR42xdsLWkc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DR42xdsLWkc.mp4/DR42xdsLWkc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DR42xdsLWkc.m3u8/DR42xdsLWkc.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/intrinsic-extrinsic-value/", "duration": 157, "id": "DR42xdsLWkc", "title": "Fundamentals: Intrinsic vs. instrumental value", "format": "mp4", "description": "What sort of things do we value and why? In this video Kelley distinguishes two different kinds of value: (1) Intrinsic value--the value that something has in itself--and (2) instrumental value--the value that something has because it helps us to get or achieve some other thing. This philosophically and practically useful distinction is illuminated through the use of plenty of examples and ordinary language glosses.\u00a0\n\nSpeaker:\u00a0Kelly Schiffman", "slug": "intrinsic-extrinsic-value", "kind": "Video", "video_id": "DR42xdsLWkc", "keywords": "", "youtube_id": "DR42xdsLWkc", "readable_id": "intrinsic-extrinsic-value"}, "FxkTSjctXdk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FxkTSjctXdk.mp4/FxkTSjctXdk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FxkTSjctXdk.mp4/FxkTSjctXdk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FxkTSjctXdk.m3u8/FxkTSjctXdk.m3u8"}, "duration": 802, "id": "FxkTSjctXdk", "title": "The discount rate", "format": "mp4", "description": "The discount rate and window. Lender of last resort.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/the-discount-rate/", "slug": "the-discount-rate", "kind": "Video", "video_id": "FxkTSjctXdk", "keywords": "federal, reserve, target, rate, deferal, funds, discount, window", "youtube_id": "FxkTSjctXdk", "readable_id": "the-discount-rate"}, "XAzFGx3Ruig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XAzFGx3Ruig.mp4/XAzFGx3Ruig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XAzFGx3Ruig.mp4/XAzFGx3Ruig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XAzFGx3Ruig.m3u8/XAzFGx3Ruig.m3u8"}, "duration": 308, "id": "XAzFGx3Ruig", "title": "The why of the 9 divisibility rule", "format": "mp4", "description": "Why you can test divisibility by 9 by just adding the digits", "path": "khan/math/pre-algebra/factors-multiples/divisibility_tests/the-why-of-the-9-divisibility-rule/", "slug": "the-why-of-the-9-divisibility-rule", "kind": "Video", "video_id": "XAzFGx3Ruig", "keywords": "", "youtube_id": "XAzFGx3Ruig", "readable_id": "the-why-of-the-9-divisibility-rule"}, "EOpzN8ZHqpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EOpzN8ZHqpU.mp4/EOpzN8ZHqpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EOpzN8ZHqpU.mp4/EOpzN8ZHqpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EOpzN8ZHqpU.m3u8/EOpzN8ZHqpU.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-ex3-part-1-parameterizing-the-outside-surface/", "duration": 540, "id": "EOpzN8ZHqpU", "title": "Surface integral ex3 part 1: Parameterizing the outside surface", "format": "mp4", "description": "Breaking apart a larger surface into its components", "slug": "surface-integral-ex3-part-1-parameterizing-the-outside-surface", "kind": "Video", "video_id": "EOpzN8ZHqpU", "keywords": "surface, integral", "youtube_id": "EOpzN8ZHqpU", "readable_id": "surface-integral-ex3-part-1-parameterizing-the-outside-surface"}, "L82bDTBMGUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L82bDTBMGUU.mp4/L82bDTBMGUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L82bDTBMGUU.mp4/L82bDTBMGUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L82bDTBMGUU.m3u8/L82bDTBMGUU.m3u8"}, "duration": 251, "id": "L82bDTBMGUU", "title": "Introduction to neural cell types", "format": "mp4", "description": "This video provides an introduction to the cell types of the nervous system. By Matt Jensen.", "path": "khan/test-prep/mcat/organ-systems/neural-cells/introduction-to-neural-cell-types/", "slug": "introduction-to-neural-cell-types", "kind": "Video", "video_id": "L82bDTBMGUU", "keywords": "", "youtube_id": "L82bDTBMGUU", "readable_id": "introduction-to-neural-cell-types"}, "o31cLUkS23E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o31cLUkS23E.mp4/o31cLUkS23E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o31cLUkS23E.mp4/o31cLUkS23E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o31cLUkS23E.m3u8/o31cLUkS23E.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/subtracting-decimals-up-to-hundredths/", "duration": 71, "id": "o31cLUkS23E", "title": "Subtracting decimals: example 1", "format": "mp4", "description": "Subtracting decimals...up to the hundredths placement. Line up those decimals before you start.", "slug": "subtracting-decimals-up-to-hundredths", "kind": "Video", "video_id": "o31cLUkS23E", "keywords": "", "youtube_id": "o31cLUkS23E", "readable_id": "subtracting-decimals-up-to-hundredths"}, "6P2bsPWCRvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6P2bsPWCRvM.mp4/6P2bsPWCRvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6P2bsPWCRvM.mp4/6P2bsPWCRvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6P2bsPWCRvM.m3u8/6P2bsPWCRvM.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/demographic-transition/", "duration": 466, "id": "6P2bsPWCRvM", "title": "Demographic transition", "format": "mp4", "description": "", "slug": "demographic-transition", "kind": "Video", "video_id": "6P2bsPWCRvM", "keywords": "", "youtube_id": "6P2bsPWCRvM", "readable_id": "demographic-transition"}, "p729tFmpOXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p729tFmpOXg.mp4/p729tFmpOXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p729tFmpOXg.mp4/p729tFmpOXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p729tFmpOXg.m3u8/p729tFmpOXg.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-mult-div-pre-alg/multiplying-fractions-and-mixed-numbers/", "duration": 243, "id": "p729tFmpOXg", "title": "Multiplying fractions and whole numbers: mixed number answer", "format": "mp4", "description": "Sometimes the product of multiplying fractions and whole numbers is a mixed number. Mixed up? You won't be for long!", "slug": "multiplying-fractions-and-mixed-numbers", "kind": "Video", "video_id": "p729tFmpOXg", "keywords": "U02_L2_T1_we2, Multiplying, Fractions, and, Mixed, Numbers, CC_5_NF_6", "youtube_id": "p729tFmpOXg", "readable_id": "multiplying-fractions-and-mixed-numbers"}, "oyPNjYlboaw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oyPNjYlboaw.mp4/oyPNjYlboaw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oyPNjYlboaw.mp4/oyPNjYlboaw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oyPNjYlboaw.m3u8/oyPNjYlboaw.m3u8"}, "path": "khan/test-prep/mcat/behavior/theories-of-attitude-and-behavior-change/reciprocal-determinism/", "duration": 178, "id": "oyPNjYlboaw", "title": "Reciprocal determinism", "format": "mp4", "description": "", "slug": "reciprocal-determinism", "kind": "Video", "video_id": "oyPNjYlboaw", "keywords": "", "youtube_id": "oyPNjYlboaw", "readable_id": "reciprocal-determinism"}, "R_5slDeVCQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R_5slDeVCQk.mp4/R_5slDeVCQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R_5slDeVCQk.mp4/R_5slDeVCQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R_5slDeVCQk.m3u8/R_5slDeVCQk.m3u8"}, "duration": 617, "id": "R_5slDeVCQk", "title": "ROA discussion 2", "format": "mp4", "description": "More on the return on asset discussion.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/roa-discussion-2/", "slug": "roa-discussion-2", "kind": "Video", "video_id": "R_5slDeVCQk", "keywords": "return, on, asset, roa", "youtube_id": "R_5slDeVCQk", "readable_id": "roa-discussion-2"}, "3mUi9IZb4T4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3mUi9IZb4T4.mp4/3mUi9IZb4T4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3mUi9IZb4T4.mp4/3mUi9IZb4T4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3mUi9IZb4T4.m3u8/3mUi9IZb4T4.m3u8"}, "duration": 508, "id": "3mUi9IZb4T4", "title": "Overview of fractional reserve banking", "format": "mp4", "description": "Big picture of how money enters circulation and how lending can increase the money supply", "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/fractional-reserve-banking-tut/overview-of-fractional-reserve-banking/", "slug": "overview-of-fractional-reserve-banking", "kind": "Video", "video_id": "3mUi9IZb4T4", "keywords": "money, supply, macroeconomics", "youtube_id": "3mUi9IZb4T4", "readable_id": "overview-of-fractional-reserve-banking"}, "BNHLzEv6Mjg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BNHLzEv6Mjg.mp4/BNHLzEv6Mjg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BNHLzEv6Mjg.mp4/BNHLzEv6Mjg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BNHLzEv6Mjg.m3u8/BNHLzEv6Mjg.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/analyzing_the_solutions_to_systems_of_equations/solving-systems-by-graphing-2/", "duration": 206, "id": "BNHLzEv6Mjg", "title": "Analyzing solutions to linear systems graphically 1", "format": "mp4", "description": "", "slug": "solving-systems-by-graphing-2", "kind": "Video", "video_id": "BNHLzEv6Mjg", "keywords": "U06_L1_T1_we2, Solving, systems, by, graphing, CC_8_EE_8_a, CC_8_EE_8_b, CC_8_EE_8_c, CC_39336_A-REI_6", "youtube_id": "BNHLzEv6Mjg", "readable_id": "solving-systems-by-graphing-2"}, "q0zlBUbcWWQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q0zlBUbcWWQ.mp4/q0zlBUbcWWQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q0zlBUbcWWQ.mp4/q0zlBUbcWWQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q0zlBUbcWWQ.m3u8/q0zlBUbcWWQ.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/egypt-art/new-kingdom/papyrus-preserved-british-museum/", "duration": 138, "id": "q0zlBUbcWWQ", "title": "Ancient Egyptian papyrus in the Book of the Dead Exhibition", "format": "mp4", "description": "Preparing pieces of papyrus ready for display in the exhibition Journey through the afterlife: ancient Egyptian Book of the Dead. \u00a9 Trustees of the British Museum", "slug": "papyrus-preserved-british-museum", "kind": "Video", "video_id": "q0zlBUbcWWQ", "keywords": "British Museum", "youtube_id": "q0zlBUbcWWQ", "readable_id": "papyrus-preserved-british-museum"}, "9dS7bc_2bUE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9dS7bc_2bUE.mp4/9dS7bc_2bUE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9dS7bc_2bUE.mp4/9dS7bc_2bUE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9dS7bc_2bUE.m3u8/9dS7bc_2bUE.m3u8"}, "duration": 395, "id": "9dS7bc_2bUE", "title": "The hypothalamus and pituitary gland", "format": "mp4", "description": "What makes the endocrine organs tick? Find out in this video about the hypothalamus and pituitary glands! \u00a0By Ryan Patton.", "path": "khan/test-prep/nclex-rn/rn-endocrine-system/rn-the-endocrine-system/hypothalamus-and-pituitary-gland/", "slug": "hypothalamus-and-pituitary-gland", "kind": "Video", "video_id": "9dS7bc_2bUE", "keywords": "hypothalamus, pituitary gland", "youtube_id": "9dS7bc_2bUE", "readable_id": "hypothalamus-and-pituitary-gland"}, "DSvLJZnH2KQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DSvLJZnH2KQ.mp4/DSvLJZnH2KQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DSvLJZnH2KQ.mp4/DSvLJZnH2KQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DSvLJZnH2KQ.m3u8/DSvLJZnH2KQ.m3u8"}, "path": "khan/humanities/art-asia/korea-japan/korean-art/nine-cloud-dream/", "duration": 455, "id": "DSvLJZnH2KQ", "title": "Nine Cloud Dream", "format": "mp4", "description": "This video re-tells a popular Korean folktale using a Korean folding screen from the collection of the Asian Art Museum.", "slug": "nine-cloud-dream", "kind": "Video", "video_id": "DSvLJZnH2KQ", "keywords": "", "youtube_id": "DSvLJZnH2KQ", "readable_id": "nine-cloud-dream"}, "cfr-yZxTH8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cfr-yZxTH8Y.mp4/cfr-yZxTH8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cfr-yZxTH8Y.mp4/cfr-yZxTH8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cfr-yZxTH8Y.m3u8/cfr-yZxTH8Y.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dividing-decimals-pre-alg/dividing-a-whole-number-by-a-decimal/", "duration": 260, "id": "cfr-yZxTH8Y", "title": "Dividing a whole number by a decimal", "format": "mp4", "description": "When dividing a whole number by a decimal, you're going to need to change that decimal into a whole number. How? We'll show you.", "slug": "dividing-a-whole-number-by-a-decimal", "kind": "Video", "video_id": "cfr-yZxTH8Y", "keywords": "", "youtube_id": "cfr-yZxTH8Y", "readable_id": "dividing-a-whole-number-by-a-decimal"}, "ZLC8xRNcJvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZLC8xRNcJvE.mp4/ZLC8xRNcJvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZLC8xRNcJvE.mp4/ZLC8xRNcJvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZLC8xRNcJvE.m3u8/ZLC8xRNcJvE.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/lawrence-migration-series/", "duration": 320, "id": "ZLC8xRNcJvE", "title": "Jacob Lawrence, The Migration Series (*short version*)", "format": "mp4", "description": "Jacob Lawrence, The Migration Series, 1940-41, 60 panels, tempera on hardboard (even numbers at The Museum of Modern Art, odd numbers at the Phillips Collection) Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "lawrence-migration-series", "kind": "Video", "video_id": "ZLC8xRNcJvE", "keywords": "art history, smarthistory, Lawrence, migration series, ", "youtube_id": "ZLC8xRNcJvE", "readable_id": "lawrence-migration-series"}, "nljJXTzoO-E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nljJXTzoO-E.mp4/nljJXTzoO-E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nljJXTzoO-E.mp4/nljJXTzoO-E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nljJXTzoO-E.m3u8/nljJXTzoO-E.m3u8"}, "duration": 220, "id": "nljJXTzoO-E", "title": "AK Dolven on Edvard Munch", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nArtist AK Dolven is inspired by fellow Norwegian and expressionist Edvard Munch, who is most widely known for his famous paintings of a desparing figure known as\u00a0The Scream\u00a0(1893-1910).\u00a0Watch as Dolven creates a series of her own videos reimagining Munch's characters in modern situations.\n\n\n\n\n", "path": "ak-dolven/", "slug": "ak-dolven", "kind": "Video", "video_id": "nljJXTzoO-E", "keywords": "Tate", "youtube_id": "nljJXTzoO-E", "readable_id": "ak-dolven"}, "WIhR50ttMB4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WIhR50ttMB4.mp4/WIhR50ttMB4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WIhR50ttMB4.mp4/WIhR50ttMB4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WIhR50ttMB4.m3u8/WIhR50ttMB4.m3u8"}, "duration": 625, "id": "WIhR50ttMB4", "title": "Human population growth", "format": "mp4", "description": "", "path": "crash-course-ecology-03/", "slug": "crash-course-ecology-03", "kind": "Video", "video_id": "WIhR50ttMB4", "keywords": "", "youtube_id": "WIhR50ttMB4", "readable_id": "crash-course-ecology-03"}, "Oh4H3BJX1ZI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oh4H3BJX1ZI.mp4/Oh4H3BJX1ZI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oh4H3BJX1ZI.mp4/Oh4H3BJX1ZI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oh4H3BJX1ZI.m3u8/Oh4H3BJX1ZI.m3u8"}, "duration": 631, "id": "Oh4H3BJX1ZI", "title": "ROA discussion 1", "format": "mp4", "description": "A discussion of the various ways to measure return on assets", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/roa-discussion-1/", "slug": "roa-discussion-1", "kind": "Video", "video_id": "Oh4H3BJX1ZI", "keywords": "roa, return, on, assets", "youtube_id": "Oh4H3BJX1ZI", "readable_id": "roa-discussion-1"}, "dkxnUlg-bUY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dkxnUlg-bUY.mp4/dkxnUlg-bUY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dkxnUlg-bUY.mp4/dkxnUlg-bUY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dkxnUlg-bUY.m3u8/dkxnUlg-bUY.m3u8"}, "duration": 659, "id": "dkxnUlg-bUY", "title": "Tea, Taxes, and the American Revolution", "format": "mp4", "description": "In which John Green teaches you about the American Revolution and the American Revolutionary War, which it turns out were two different things. John goes over the issues and events that precipitated rebellion in Britain's American colonies, and he also explores the ideas that laid the groundwork for the new American democracy. Find out how the tax bill from the Seven Years War fomented an uprising, how the Enlightenment influenced the Founding Fathers, and who were the winners and losers in this conflict.(hint: many of the people living in the Colonies ended up losers) The Revolution purportedly brought freedom and equality to the Thirteen Colonies, but they weren't equally distributed. Also, you'll learn about America's love affair with commemorative ceramics and what happens when rich white guys take the reins from reins white guys, and put together a society of, by, and for rich white guys.", "path": "khan/humanities/history/crashcourse-worldhistory/you-aint-the-boss-of-me-2/crash-course-world-history-28/", "slug": "crash-course-world-history-28", "kind": "Video", "video_id": "dkxnUlg-bUY", "keywords": "crash course", "youtube_id": "dkxnUlg-bUY", "readable_id": "crash-course-world-history-28"}, "ZrMw7P6P2Gw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZrMw7P6P2Gw.mp4/ZrMw7P6P2Gw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZrMw7P6P2Gw.mp4/ZrMw7P6P2Gw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZrMw7P6P2Gw.m3u8/ZrMw7P6P2Gw.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/current-and-resistance/circuits-part-3/", "duration": 740, "id": "ZrMw7P6P2Gw", "title": "Resistors in parallel", "format": "mp4", "description": "Resistors in parallel", "slug": "circuits-part-3", "kind": "Video", "video_id": "ZrMw7P6P2Gw", "keywords": "parallel, resistors", "youtube_id": "ZrMw7P6P2Gw", "readable_id": "circuits-part-3"}, "tLBLn6taNI4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tLBLn6taNI4.mp4/tLBLn6taNI4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tLBLn6taNI4.mp4/tLBLn6taNI4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tLBLn6taNI4.m3u8/tLBLn6taNI4.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/fatty-acid-synthesis-part-ii/", "duration": 1040, "id": "tLBLn6taNI4", "title": "Fatty Acid Synthesis - Part II", "format": "mp4", "description": "1D: What are the sources of fatty acids in the blood stream? Where are fatty acids synthesized? How are the synthesized?", "slug": "fatty-acid-synthesis-part-ii", "kind": "Video", "video_id": "tLBLn6taNI4", "keywords": "", "youtube_id": "tLBLn6taNI4", "readable_id": "fatty-acid-synthesis-part-ii"}, "a9aUMpGs6c8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a9aUMpGs6c8.mp4/a9aUMpGs6c8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a9aUMpGs6c8.mp4/a9aUMpGs6c8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a9aUMpGs6c8.m3u8/a9aUMpGs6c8.m3u8"}, "duration": 475, "id": "a9aUMpGs6c8", "title": "Economic growth through investment", "format": "mp4", "description": "How investing for capital formation can expand the production possibilities frontier (PPF)", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/production-possibilities/economic-growth-through-investment/", "slug": "economic-growth-through-investment", "kind": "Video", "video_id": "a9aUMpGs6c8", "keywords": "economics, PPF, investment, consumption", "youtube_id": "a9aUMpGs6c8", "readable_id": "economic-growth-through-investment"}, "Rgr1vRjxzFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rgr1vRjxzFg.mp4/Rgr1vRjxzFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rgr1vRjxzFg.mp4/Rgr1vRjxzFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rgr1vRjxzFg.m3u8/Rgr1vRjxzFg.m3u8"}, "duration": 298, "id": "Rgr1vRjxzFg", "title": "Components of GDP", "format": "mp4", "description": "Understanding the components of the expenditure view of GDP. Consumption, investment, government spending and net exports", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/gdp-components-tutorial/components-of-gdp/", "slug": "components-of-gdp", "kind": "Video", "video_id": "Rgr1vRjxzFg", "keywords": "macroeconomics, Gross Domestic Product", "youtube_id": "Rgr1vRjxzFg", "readable_id": "components-of-gdp"}, "y9MGpOGQVqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y9MGpOGQVqQ.mp4/y9MGpOGQVqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y9MGpOGQVqQ.mp4/y9MGpOGQVqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y9MGpOGQVqQ.m3u8/y9MGpOGQVqQ.m3u8"}, "duration": 155, "id": "y9MGpOGQVqQ", "title": "Absolute value inequalities example 3", "format": "mp4", "description": "Absolute value inequalities 3", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/absolute-value-inequalities-example-3/", "slug": "absolute-value-inequalities-example-3", "kind": "Video", "video_id": "y9MGpOGQVqQ", "keywords": "U05_L1_T2_we3, Absolute, value, inequalities, CC_6_EE_8, CC_6_NS_7_a, CC_6_NS_7_c, CC_7_NS_1, CC_8_EE_7_a", "youtube_id": "y9MGpOGQVqQ", "readable_id": "absolute-value-inequalities-example-3"}, "Pn1sjx3RH9Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pn1sjx3RH9Y.mp4/Pn1sjx3RH9Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pn1sjx3RH9Y.mp4/Pn1sjx3RH9Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pn1sjx3RH9Y.m3u8/Pn1sjx3RH9Y.m3u8"}, "duration": 103, "id": "Pn1sjx3RH9Y", "title": "\"A Hare in the Forest,\" Hans Hoffmann", "format": "mp4", "description": "Listen to a\u00a0commentary about a painting in the J. Paul Getty Museum's collection. Part of the Animals in Art tour at the Getty Center. Love art? Follow us on Google+ to stay in touch.", "path": "hare-forest-hans-hoffmann/", "slug": "hare-forest-hans-hoffmann", "kind": "Video", "video_id": "Pn1sjx3RH9Y", "keywords": "", "youtube_id": "Pn1sjx3RH9Y", "readable_id": "hare-forest-hans-hoffmann"}, "T0fq3XFfxrY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T0fq3XFfxrY.mp4/T0fq3XFfxrY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T0fq3XFfxrY.mp4/T0fq3XFfxrY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T0fq3XFfxrY.m3u8/T0fq3XFfxrY.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/veristic-male-portrait/", "duration": 180, "id": "T0fq3XFfxrY", "title": "Veristic Male Portrait", "format": "mp4", "description": "Veristic male portrait (similar to Head of a Roman Patrician), early 1st Century B.C.E., marble life size (Vatican Museums, Rome) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "veristic-male-portrait", "kind": "Video", "video_id": "T0fq3XFfxrY", "keywords": "", "youtube_id": "T0fq3XFfxrY", "readable_id": "veristic-male-portrait"}, "xE43JrjCpjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xE43JrjCpjE.mp4/xE43JrjCpjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xE43JrjCpjE.mp4/xE43JrjCpjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xE43JrjCpjE.m3u8/xE43JrjCpjE.m3u8"}, "duration": 287, "id": "xE43JrjCpjE", "title": "Interest rate swap 2", "format": "mp4", "description": null, "path": "khan/economics-finance-domain/core-finance/derivative-securities/interest-rate-swaps-tut/interest-rate-swap-2/", "slug": "interest-rate-swap-2", "kind": "Video", "video_id": "xE43JrjCpjE", "keywords": "Interest, Rate, Swap, 2", "youtube_id": "xE43JrjCpjE", "readable_id": "interest-rate-swap-2"}, "vbAbCp9elFU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vbAbCp9elFU.mp4/vbAbCp9elFU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vbAbCp9elFU.mp4/vbAbCp9elFU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vbAbCp9elFU.m3u8/vbAbCp9elFU.m3u8"}, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/franklin-takeaways/", "duration": 280, "id": "vbAbCp9elFU", "title": "Takeaways from Benjamin Franklin's life", "format": "mp4", "description": "In this video, Sal and Aspen Institute President and CEO Walter Isaacson discuss takeaways from Benjamin Franklin's life.\u00a0", "slug": "franklin-takeaways", "kind": "Video", "video_id": "vbAbCp9elFU", "keywords": "", "youtube_id": "vbAbCp9elFU", "readable_id": "franklin-takeaways"}, "b_cAxh44aNQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b_cAxh44aNQ.mp4/b_cAxh44aNQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b_cAxh44aNQ.mp4/b_cAxh44aNQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b_cAxh44aNQ.m3u8/b_cAxh44aNQ.m3u8"}, "duration": 596, "id": "b_cAxh44aNQ", "title": "Introduction to the yield curve", "format": "mp4", "description": "Introduction to the treasury yield curve.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial/introduction-to-the-yield-curve/", "slug": "introduction-to-the-yield-curve", "kind": "Video", "video_id": "b_cAxh44aNQ", "keywords": "economics, yield, curve, treasury, bills, notes, bonds, interest", "youtube_id": "b_cAxh44aNQ", "readable_id": "introduction-to-the-yield-curve"}, "6w2E8G0sEPc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6w2E8G0sEPc.mp4/6w2E8G0sEPc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6w2E8G0sEPc.mp4/6w2E8G0sEPc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6w2E8G0sEPc.m3u8/6w2E8G0sEPc.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/bronzino-an-allegory-with-venus-and-cupid/", "duration": 409, "id": "6w2E8G0sEPc", "title": "Bronzino, An Allegory with Venus and Cupid", "format": "mp4", "description": "Agnolo di Cosimo Bronzino, An Allegory with Venus and Cupid, c. 1545, oil on panel, 146.1 x 116.2 cm (National Gallery, London) Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\nThis passage by Vasari is most likely related to this canvas:\n\n\"And he painted a picture of singular beauty that was sent to King Francis in France, wherein was a nude Venus, with a Cupid who was kissing her, and Pleasure on one side with Play and other Loves, and on the other side Fraud and Jealousy and other passions of love.\" Giorgio Vasari,\u00a0Lives of the most Eminent Painters Sculptors and Architects,\u00a0volume 10, trans: Gaston du C. De Vere (London: Medici Society, 1912-15)\n", "slug": "bronzino-an-allegory-with-venus-and-cupid", "kind": "Video", "video_id": "6w2E8G0sEPc", "keywords": "Bronzino, Mannerism, Mannerist, Allegory, Florence, Italy, Italian, Francis I, Cosimo, painting, art, art history, love, jealousy, regret, folly, Venus, Cupid, mask, masks, time, Cronos, doves, night, oblivion, fraud", "youtube_id": "6w2E8G0sEPc", "readable_id": "bronzino-an-allegory-with-venus-and-cupid"}, "x5EJG_rAtkY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x5EJG_rAtkY.mp4/x5EJG_rAtkY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x5EJG_rAtkY.mp4/x5EJG_rAtkY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x5EJG_rAtkY.m3u8/x5EJG_rAtkY.m3u8"}, "duration": 450, "id": "x5EJG_rAtkY", "title": "Absolute inequalities 2", "format": "mp4", "description": "Absolute Inequalities 2", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute-inequalities-2/", "slug": "absolute-inequalities-2", "kind": "Video", "video_id": "x5EJG_rAtkY", "keywords": "U05_L1_T2_we2, Absolute, Inequalities, CC_6_EE_8, CC_6_NS_7_a, CC_6_NS_7_c, CC_7_NS_1", "youtube_id": "x5EJG_rAtkY", "readable_id": "absolute-inequalities-2"}, "WkmPDOq2WfA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WkmPDOq2WfA.mp4/WkmPDOq2WfA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WkmPDOq2WfA.mp4/WkmPDOq2WfA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WkmPDOq2WfA.m3u8/WkmPDOq2WfA.m3u8"}, "duration": 441, "id": "WkmPDOq2WfA", "title": "Folding space-time", "format": "mp4", "description": "Music box, backwards Bach, orbifolds and wooden bowl.", "path": "khan/math/recreational-math/vi-hart/singing/folding-space-time/", "slug": "folding-space-time", "kind": "Video", "video_id": "WkmPDOq2WfA", "keywords": "", "youtube_id": "WkmPDOq2WfA", "readable_id": "folding-space-time"}, "9dbb6oITDa0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9dbb6oITDa0.mp4/9dbb6oITDa0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9dbb6oITDa0.mp4/9dbb6oITDa0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9dbb6oITDa0.m3u8/9dbb6oITDa0.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/oil-paint/", "duration": 397, "id": "9dbb6oITDa0", "title": "Oil paint", "format": "mp4", "description": "Speakers: Dr. Steven Zucker, Isaac Peterson, Dr. Beth Harris", "slug": "oil-paint", "kind": "Video", "video_id": "9dbb6oITDa0", "keywords": "", "youtube_id": "9dbb6oITDa0", "readable_id": "oil-paint"}, "Q7UL8hvlk7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q7UL8hvlk7k.mp4/Q7UL8hvlk7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q7UL8hvlk7k.mp4/Q7UL8hvlk7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q7UL8hvlk7k.m3u8/Q7UL8hvlk7k.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/exploring_mars_ancient/mars-in-a-minute-is-mars-really-red/", "duration": 61, "id": "Q7UL8hvlk7k", "title": "Is Mars really red?", "format": "mp4", "description": "Mars in a minute: Is Mars really red?", "slug": "mars-in-a-minute-is-mars-really-red", "kind": "Video", "video_id": "Q7UL8hvlk7k", "keywords": "", "youtube_id": "Q7UL8hvlk7k", "readable_id": "mars-in-a-minute-is-mars-really-red"}, "4mpFcaeElCs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4mpFcaeElCs.mp4/4mpFcaeElCs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4mpFcaeElCs.mp4/4mpFcaeElCs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4mpFcaeElCs.m3u8/4mpFcaeElCs.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/bronzino-the-mannerist-portrait/", "duration": 630, "id": "4mpFcaeElCs", "title": "Bronzino and the Mannerist Portrait", "format": "mp4", "description": "Bronzino\u00a0Portrait of a Young Man, oil on panel, 1530s (Metropolitan Museum of Art) and Bronzino, Lodovico Capponi, Oil on panel, 1550-55 (Frick Collection) Speakers: David Drogin and Beth Harris", "slug": "bronzino-the-mannerist-portrait", "kind": "Video", "video_id": "4mpFcaeElCs", "keywords": "Bronzino, portraits, art, art history, smarthistory, Mannerism", "youtube_id": "4mpFcaeElCs", "readable_id": "bronzino-the-mannerist-portrait"}, "7K2icszdxQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7K2icszdxQc.mp4/7K2icszdxQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7K2icszdxQc.mp4/7K2icszdxQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7K2icszdxQc.m3u8/7K2icszdxQc.m3u8"}, "duration": 583, "id": "7K2icszdxQc", "title": "Electrical system of the heart", "format": "mp4", "description": "See where the pacemaker cells start the electrical wave of depolarization, and how it gets all the way to the ventricles of the heart. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/electrical-system-of-the-heart/", "slug": "electrical-system-of-the-heart", "kind": "Video", "video_id": "7K2icszdxQc", "keywords": "", "youtube_id": "7K2icszdxQc", "readable_id": "electrical-system-of-the-heart"}, "s9t7rNhaBp8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s9t7rNhaBp8.mp4/s9t7rNhaBp8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s9t7rNhaBp8.mp4/s9t7rNhaBp8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s9t7rNhaBp8.m3u8/s9t7rNhaBp8.m3u8"}, "duration": 514, "id": "s9t7rNhaBp8", "title": "Introduction to the Pythagorean theorem", "format": "mp4", "description": "Right triangles and the Pythagorean Theorem", "path": "khan/math/geometry/right_triangles_topic/pyth_theor/introduction-to-the-pythagorean-theorem/", "slug": "introduction-to-the-pythagorean-theorem", "kind": "Video", "video_id": "s9t7rNhaBp8", "keywords": "Geometry, Math, Khan, Academy", "youtube_id": "s9t7rNhaBp8", "readable_id": "introduction-to-the-pythagorean-theorem"}, "7MjHWw3p710": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7MjHWw3p710.mp4/7MjHWw3p710.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7MjHWw3p710.mp4/7MjHWw3p710.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7MjHWw3p710.m3u8/7MjHWw3p710.m3u8"}, "duration": 235, "id": "7MjHWw3p710", "title": "Gross and operating profit", "format": "mp4", "description": "Difference between gross profit, operating profit, and net income.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/company-statements-capital-struc/gross-and-operating-profit/", "slug": "gross-and-operating-profit", "kind": "Video", "video_id": "7MjHWw3p710", "keywords": "", "youtube_id": "7MjHWw3p710", "readable_id": "gross-and-operating-profit"}, "E4rbS0oxg30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E4rbS0oxg30.mp4/E4rbS0oxg30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E4rbS0oxg30.mp4/E4rbS0oxg30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E4rbS0oxg30.m3u8/E4rbS0oxg30.m3u8"}, "duration": 667, "id": "E4rbS0oxg30", "title": "Random predictions for 2060", "format": "mp4", "description": "Sal's random predictions for the year 2060", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/random-predictions-for-2060/", "slug": "random-predictions-for-2060", "kind": "Video", "video_id": "E4rbS0oxg30", "keywords": "Random, Predictions, for, 2060", "youtube_id": "E4rbS0oxg30", "readable_id": "random-predictions-for-2060"}, "VrflZifKIuw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VrflZifKIuw.mp4/VrflZifKIuw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VrflZifKIuw.mp4/VrflZifKIuw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VrflZifKIuw.m3u8/VrflZifKIuw.m3u8"}, "duration": 576, "id": "VrflZifKIuw", "title": "Center of mass", "format": "mp4", "description": "Introduction to the center of mass", "path": "khan/test-prep/mcat/physical-processes/newtons-laws-and-equilibrium/center-of-mass/", "slug": "center-of-mass", "kind": "Video", "video_id": "VrflZifKIuw", "keywords": "physics, center, of, mass, force, acceleration", "youtube_id": "VrflZifKIuw", "readable_id": "center-of-mass"}, "kpEJwpemL2Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kpEJwpemL2Q.mp4/kpEJwpemL2Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kpEJwpemL2Q.mp4/kpEJwpemL2Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kpEJwpemL2Q.m3u8/kpEJwpemL2Q.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-subtract-10/addition-and-subtraction-within-10/", "duration": 135, "id": "kpEJwpemL2Q", "title": "Addition and subtraction within 10", "format": "mp4", "description": "See how to solve a bunch of addition and subtraction problems with small numbers. All numbers in this video are 10 or less.", "slug": "addition-and-subtraction-within-10", "kind": "Video", "video_id": "kpEJwpemL2Q", "keywords": "", "youtube_id": "kpEJwpemL2Q", "readable_id": "addition-and-subtraction-within-10"}, "p4559dZIFco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p4559dZIFco.mp4/p4559dZIFco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p4559dZIFco.mp4/p4559dZIFco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p4559dZIFco.m3u8/p4559dZIFco.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/solubility-equilibria-mcat/solubility-product-constant-from-the-solubility/", "duration": 705, "id": "p4559dZIFco", "title": "Solubility product constant from the solubility", "format": "mp4", "description": "", "slug": "solubility-product-constant-from-the-solubility", "kind": "Video", "video_id": "p4559dZIFco", "keywords": "", "youtube_id": "p4559dZIFco", "readable_id": "solubility-product-constant-from-the-solubility"}, "CsrUfTljLJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CsrUfTljLJ8.mp4/CsrUfTljLJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CsrUfTljLJ8.mp4/CsrUfTljLJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CsrUfTljLJ8.m3u8/CsrUfTljLJ8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/infectious-arthritis/", "duration": 332, "id": "CsrUfTljLJ8", "title": "Infectious arthritis", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "infectious-arthritis", "kind": "Video", "video_id": "CsrUfTljLJ8", "keywords": "", "youtube_id": "CsrUfTljLJ8", "readable_id": "infectious-arthritis"}, "BhQUW9s-R8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BhQUW9s-R8M.mp4/BhQUW9s-R8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BhQUW9s-R8M.mp4/BhQUW9s-R8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BhQUW9s-R8M.m3u8/BhQUW9s-R8M.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/standing-waves-in-tubes-part-1/", "duration": 859, "id": "BhQUW9s-R8M", "title": "Standing waves in tubes (part 1)", "format": "mp4", "description": "", "slug": "standing-waves-in-tubes-part-1", "kind": "Video", "video_id": "BhQUW9s-R8M", "keywords": "", "youtube_id": "BhQUW9s-R8M", "readable_id": "standing-waves-in-tubes-part-1"}, "outcfkh69U0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/outcfkh69U0.mp4/outcfkh69U0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/outcfkh69U0.mp4/outcfkh69U0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/outcfkh69U0.m3u8/outcfkh69U0.m3u8"}, "duration": 901, "id": "outcfkh69U0", "title": "Shifting functions", "format": "mp4", "description": "Graphs of Square Root Functions", "path": "khan/math/algebra2/functions_and_graphs/shifting-reflecting-functions/graphs-of-square-root-functions/", "slug": "graphs-of-square-root-functions", "kind": "Video", "video_id": "outcfkh69U0", "keywords": "Graphs, of, Square, Root, Functions, CC_39336_F-BF_3, CC_39336_F-IF_7_b", "youtube_id": "outcfkh69U0", "readable_id": "graphs-of-square-root-functions"}, "HiY5UElqfhs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HiY5UElqfhs.mp4/HiY5UElqfhs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HiY5UElqfhs.mp4/HiY5UElqfhs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HiY5UElqfhs.m3u8/HiY5UElqfhs.m3u8"}, "duration": 138, "id": "HiY5UElqfhs", "title": "Finding terms of explicitly defined sequence", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-sequences/terms-explicit-sequence/", "slug": "terms-explicit-sequence", "kind": "Video", "video_id": "HiY5UElqfhs", "keywords": "", "youtube_id": "HiY5UElqfhs", "readable_id": "terms-explicit-sequence"}, "XIsPC-f2e2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XIsPC-f2e2c.mp4/XIsPC-f2e2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XIsPC-f2e2c.mp4/XIsPC-f2e2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XIsPC-f2e2c.m3u8/XIsPC-f2e2c.m3u8"}, "duration": 186, "id": "XIsPC-f2e2c", "title": "Inferring limit from numerical data", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits_tutorial/limit-by-analyzing-numerical-data/", "slug": "limit-by-analyzing-numerical-data", "kind": "Video", "video_id": "XIsPC-f2e2c", "keywords": "", "youtube_id": "XIsPC-f2e2c", "readable_id": "limit-by-analyzing-numerical-data"}, "ayq187m5WBw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ayq187m5WBw.mp4/ayq187m5WBw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ayq187m5WBw.mp4/ayq187m5WBw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ayq187m5WBw.m3u8/ayq187m5WBw.m3u8"}, "duration": 920, "id": "ayq187m5WBw", "title": "H. neanderthalensis, H. sapiens, and the peopling of the world", "format": "mp4", "description": "Starting over 1 million years ago, many species of Homo moved out of Africa and into Eurasia. Many gave rise to new species, such as H. neanderthalensis, which most likely originated in Europe. The only one of all these species that survived is Homo sapiens and they spread across the globe within the last 50,000 years.", "path": "peopling-of-the-world/", "slug": "peopling-of-the-world", "kind": "Video", "video_id": "ayq187m5WBw", "keywords": "", "youtube_id": "ayq187m5WBw", "readable_id": "peopling-of-the-world"}, "Iics7KH_rLE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iics7KH_rLE.mp4/Iics7KH_rLE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iics7KH_rLE.mp4/Iics7KH_rLE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iics7KH_rLE.m3u8/Iics7KH_rLE.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/monet-the-argenteuil-bridge-1874/", "duration": 205, "id": "Iics7KH_rLE", "title": "Monet, The Argenteuil Bridge", "format": "mp4", "description": "Claude Monet, The Argenteuil Bridge, 1874, oil on canvas, 60.5 x 80 cm (Mus\u00e9e d'Orsay, Paris) Speakers: Drs. Beth Harris and Steven Zucker Please note that there is significant background chatter in this video, the Mus\u00e9e d'Orsay is happily a very busy museum and this painting is hung in a relatively small room. http://www.smarthistory.org/monet-the-argenteuil-bridge.html", "slug": "monet-the-argenteuil-bridge-1874", "kind": "Video", "video_id": "Iics7KH_rLE", "keywords": "Monet, Bridge, Musee d'Orsay, Paris, Impressionism", "youtube_id": "Iics7KH_rLE", "readable_id": "monet-the-argenteuil-bridge-1874"}, "7zk0ubr_lzo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7zk0ubr_lzo.mp4/7zk0ubr_lzo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7zk0ubr_lzo.mp4/7zk0ubr_lzo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7zk0ubr_lzo.m3u8/7zk0ubr_lzo.m3u8"}, "duration": 694, "id": "7zk0ubr_lzo", "title": "Systemic thinking about cancer", "format": "mp4", "description": "Dr. David Agus discusses thinking systemically about cancer and other things", "path": "khan/science/health-and-medicine/healthcare-misc/systemic-thinking-about-cancer/", "slug": "systemic-thinking-about-cancer", "kind": "Video", "video_id": "7zk0ubr_lzo", "keywords": "marquee", "youtube_id": "7zk0ubr_lzo", "readable_id": "systemic-thinking-about-cancer"}, "bb9crNw1Bpk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bb9crNw1Bpk.mp4/bb9crNw1Bpk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bb9crNw1Bpk.mp4/bb9crNw1Bpk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bb9crNw1Bpk.m3u8/bb9crNw1Bpk.m3u8"}, "duration": 626, "id": "bb9crNw1Bpk", "title": "Real gases", "format": "mp4", "description": "Hank bursts our ideal gas law bubble, er, balloon, and brings us back to reality, explaining how the constants in the gas law aren't all that constant; how the ideal gas law we've spent the past two weeks with has to be corrected for volume because atoms and molecules take up space and for pressure because they're attracted to each other; that Einstein was behind a lot more of what we know today than most people realize; and how a Dutch scientist named Johannes van der Waals figured out those correction factors in the late 19th century and earned a Nobel Prize for his efforts.\nWriter: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem14-real-gases/", "slug": "chem14-real-gases", "kind": "Video", "video_id": "bb9crNw1Bpk", "keywords": "", "youtube_id": "bb9crNw1Bpk", "readable_id": "chem14-real-gases"}, "Bt0mz4mGddk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bt0mz4mGddk.mp4/Bt0mz4mGddk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bt0mz4mGddk.mp4/Bt0mz4mGddk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bt0mz4mGddk.m3u8/Bt0mz4mGddk.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/first-order-reaction-with-calculus/", "duration": 434, "id": "Bt0mz4mGddk", "title": "First-order reaction (with calculus)", "format": "mp4", "description": "", "slug": "first-order-reaction-with-calculus", "kind": "Video", "video_id": "Bt0mz4mGddk", "keywords": "", "youtube_id": "Bt0mz4mGddk", "readable_id": "first-order-reaction-with-calculus"}, "zaJVEO44_08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zaJVEO44_08.mp4/zaJVEO44_08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zaJVEO44_08.mp4/zaJVEO44_08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zaJVEO44_08.m3u8/zaJVEO44_08.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/how-did-first-humans-live/bhp-genealogy-ancestry/", "duration": 294, "id": "zaJVEO44_08", "title": "Genealogy and Human Ancestry", "format": "mp4", "description": "In this video, Henry Louis Gates, Jr., explains how three types of genetic tests helped him understand his own family history, and then goes on to explain how these same tests can help scholars reconstruct the past 60,000 years of human migration.", "slug": "bhp-genealogy-ancestry", "kind": "Video", "video_id": "zaJVEO44_08", "keywords": "", "youtube_id": "zaJVEO44_08", "readable_id": "bhp-genealogy-ancestry"}, "yQm_ZCIFwyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yQm_ZCIFwyc.mp4/yQm_ZCIFwyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yQm_ZCIFwyc.mp4/yQm_ZCIFwyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yQm_ZCIFwyc.m3u8/yQm_ZCIFwyc.m3u8"}, "duration": 345, "id": "yQm_ZCIFwyc", "title": "Women during the American Revolution", "format": "mp4", "description": "In this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss women in the\u00a0American Revolution.\u00a0", "path": "founding-mothers-intro/", "slug": "founding-mothers-intro", "kind": "Video", "video_id": "yQm_ZCIFwyc", "keywords": "", "youtube_id": "yQm_ZCIFwyc", "readable_id": "founding-mothers-intro"}, "N0Y8ia57C24": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N0Y8ia57C24.mp4/N0Y8ia57C24.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N0Y8ia57C24.mp4/N0Y8ia57C24.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N0Y8ia57C24.m3u8/N0Y8ia57C24.m3u8"}, "duration": 713, "id": "N0Y8ia57C24", "title": "Exponential form to find complex roots", "format": "mp4", "description": "Using exponential form to find complex roots", "path": "khan/math/precalculus/imaginary_complex_precalc/exponential-form-complex-numbers/exponential-form-to-find-complex-roots/", "slug": "exponential-form-to-find-complex-roots", "kind": "Video", "video_id": "N0Y8ia57C24", "keywords": "Exponential, form, to, find, complex, roots, real, imaginary, argument, magintude", "youtube_id": "N0Y8ia57C24", "readable_id": "exponential-form-to-find-complex-roots"}, "VBuWGjV-Sis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VBuWGjV-Sis.mp4/VBuWGjV-Sis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VBuWGjV-Sis.mp4/VBuWGjV-Sis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VBuWGjV-Sis.m3u8/VBuWGjV-Sis.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-blended-learning-motives/sscc-blended-moves2/", "duration": 518, "id": "VBuWGjV-Sis", "title": "Part 2: Tips from blended-learning teachers about the structures and systems that make blended work", "format": "mp4", "description": "", "slug": "sscc-blended-moves2", "kind": "Video", "video_id": "VBuWGjV-Sis", "keywords": "", "youtube_id": "VBuWGjV-Sis", "readable_id": "sscc-blended-moves2"}, "5qfOViJda_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5qfOViJda_g.mp4/5qfOViJda_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5qfOViJda_g.mp4/5qfOViJda_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5qfOViJda_g.m3u8/5qfOViJda_g.m3u8"}, "duration": 75, "id": "5qfOViJda_g", "title": "Exponent example 1", "format": "mp4", "description": "", "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/understanding-exponents-2/", "slug": "understanding-exponents-2", "kind": "Video", "video_id": "5qfOViJda_g", "keywords": "U01_L5_T1_we2, Understanding, Exponents, CC_6_EE_1", "youtube_id": "5qfOViJda_g", "readable_id": "understanding-exponents-2"}, "72p6uw5y-Rw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/72p6uw5y-Rw.mp4/72p6uw5y-Rw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/72p6uw5y-Rw.mp4/72p6uw5y-Rw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/72p6uw5y-Rw.m3u8/72p6uw5y-Rw.m3u8"}, "duration": 359, "id": "72p6uw5y-Rw", "title": "Investment and real interest rates", "format": "mp4", "description": "Intuition as to why high real interest rates lead to low investment and why low rates lead to high investment", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/is-lm-model-tutorial/investment-and-real-interest-rates/", "slug": "investment-and-real-interest-rates", "kind": "Video", "video_id": "72p6uw5y-Rw", "keywords": "macroeconomics", "youtube_id": "72p6uw5y-Rw", "readable_id": "investment-and-real-interest-rates"}, "-EG10aI0rt0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-EG10aI0rt0.mp4/-EG10aI0rt0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-EG10aI0rt0.mp4/-EG10aI0rt0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-EG10aI0rt0.m3u8/-EG10aI0rt0.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/implicit-derivative-of-y-cos-5x-3y/", "duration": 248, "id": "-EG10aI0rt0", "title": "Implicit derivative of y = cos(5x - 3y)", "format": "mp4", "description": "", "slug": "implicit-derivative-of-y-cos-5x-3y", "kind": "Video", "video_id": "-EG10aI0rt0", "keywords": "", "youtube_id": "-EG10aI0rt0", "readable_id": "implicit-derivative-of-y-cos-5x-3y"}, "b269qpILOpk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b269qpILOpk.mp4/b269qpILOpk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b269qpILOpk.mp4/b269qpILOpk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b269qpILOpk.m3u8/b269qpILOpk.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/linear-alg-projection-is-closest-vector-in-subspace/", "duration": 545, "id": "b269qpILOpk", "title": "Projection is closest vector in subspace", "format": "mp4", "description": "Showing that the projection of x onto a subspace is the closest vector in the subspace to x", "slug": "linear-alg-projection-is-closest-vector-in-subspace", "kind": "Video", "video_id": "b269qpILOpk", "keywords": "projection, subspace", "youtube_id": "b269qpILOpk", "readable_id": "linear-alg-projection-is-closest-vector-in-subspace"}, "87QlGDfXh54": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/87QlGDfXh54.mp4/87QlGDfXh54.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/87QlGDfXh54.mp4/87QlGDfXh54.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/87QlGDfXh54.m3u8/87QlGDfXh54.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/ming-dynasty/gardens-suzhou/", "duration": 252, "id": "87QlGDfXh54", "title": "Classical gardens of Suzhou", "format": "mp4", "description": "This video explores the classical gardens of Suzhou, which are considered to be some of the most beautiful gardens in China. Learn more about China on the Asian Art Museum's education website.\u00a0", "slug": "gardens-suzhou", "kind": "Video", "video_id": "87QlGDfXh54", "keywords": "", "youtube_id": "87QlGDfXh54", "readable_id": "gardens-suzhou"}, "anlOhNHlqwg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/anlOhNHlqwg.mp4/anlOhNHlqwg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/anlOhNHlqwg.mp4/anlOhNHlqwg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/anlOhNHlqwg.m3u8/anlOhNHlqwg.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/advanced-mult-div-word-problems/multi-step-word-problems-with-whole-numbers-exercise-1/", "duration": 179, "id": "anlOhNHlqwg", "title": "Multiplication, division word problems: how many field goals?", "format": "mp4", "description": "It's time to start putting to practice the multiplication and division skills you've been building. Word problem fun!", "slug": "multi-step-word-problems-with-whole-numbers-exercise-1", "kind": "Video", "video_id": "anlOhNHlqwg", "keywords": "", "youtube_id": "anlOhNHlqwg", "readable_id": "multi-step-word-problems-with-whole-numbers-exercise-1"}, "Za7G_eWKiF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Za7G_eWKiF4.mp4/Za7G_eWKiF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Za7G_eWKiF4.mp4/Za7G_eWKiF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Za7G_eWKiF4.m3u8/Za7G_eWKiF4.m3u8"}, "path": "khan/math/precalculus/prob_comb/dependent_events_precalc/independent-events-1/", "duration": 159, "id": "Za7G_eWKiF4", "title": "Independent or dependent probability event?", "format": "mp4", "description": "This time around we're not going to tell you whether we're working on a dependent or independent probability event problem. You tell us!", "slug": "independent-events-1", "kind": "Video", "video_id": "Za7G_eWKiF4", "keywords": "U12_L2_T2_we1, Independent, Events", "youtube_id": "Za7G_eWKiF4", "readable_id": "independent-events-1"}, "gqMqYYcJgz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gqMqYYcJgz4.mp4/gqMqYYcJgz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gqMqYYcJgz4.mp4/gqMqYYcJgz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gqMqYYcJgz4.m3u8/gqMqYYcJgz4.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/applications-of-dna-technologies/", "duration": 301, "id": "gqMqYYcJgz4", "title": "Applications of DNA technologies", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "applications-of-dna-technologies", "kind": "Video", "video_id": "gqMqYYcJgz4", "keywords": "", "youtube_id": "gqMqYYcJgz4", "readable_id": "applications-of-dna-technologies"}, "OCYZTg3jahU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OCYZTg3jahU.mp4/OCYZTg3jahU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OCYZTg3jahU.mp4/OCYZTg3jahU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OCYZTg3jahU.m3u8/OCYZTg3jahU.m3u8"}, "duration": 148, "id": "OCYZTg3jahU", "title": "Binary hand dance", "format": "mp4", "description": "Thanks to my bro for the music! He's at christopherhart2010@gmail.com\n\nThanks to my other bro for hand dancin' and throwing money at me, and special thanks to my mamma and grandma for their guest appearances.", "path": "khan/math/recreational-math/vi-hart/singing/binary-hand-dance/", "slug": "binary-hand-dance", "kind": "Video", "video_id": "OCYZTg3jahU", "keywords": "mathematics, pi, binary", "youtube_id": "OCYZTg3jahU", "readable_id": "binary-hand-dance"}, "FcyYynulogY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FcyYynulogY.mp4/FcyYynulogY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FcyYynulogY.mp4/FcyYynulogY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FcyYynulogY.m3u8/FcyYynulogY.m3u8"}, "duration": 116, "id": "FcyYynulogY", "title": "Marina Abramovi\u0107: What is performance art?", "format": "mp4", "description": "Marina Abramovi\u0107 talks about the difference between theatre and performance art, \"performance is real.\" To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "khan/humanities/global-culture/conceptual-performance/moma-abramovic-what-is-performance-art/", "slug": "moma-abramovic-what-is-performance-art", "kind": "Video", "video_id": "FcyYynulogY", "keywords": "", "youtube_id": "FcyYynulogY", "readable_id": "moma-abramovic-what-is-performance-art"}, "bjVn4WGmNis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bjVn4WGmNis.mp4/bjVn4WGmNis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bjVn4WGmNis.mp4/bjVn4WGmNis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bjVn4WGmNis.m3u8/bjVn4WGmNis.m3u8"}, "duration": 179, "id": "bjVn4WGmNis", "title": "Inverse property of addition", "format": "mp4", "description": "The simple idea that a number plus its negative is 0", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/inverse-property-of-addition/", "slug": "inverse-property-of-addition", "kind": "Video", "video_id": "bjVn4WGmNis", "keywords": "additive, inverse, property", "youtube_id": "bjVn4WGmNis", "readable_id": "inverse-property-of-addition"}, "RQPC_rUvHas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RQPC_rUvHas.mp4/RQPC_rUvHas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RQPC_rUvHas.mp4/RQPC_rUvHas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RQPC_rUvHas.m3u8/RQPC_rUvHas.m3u8"}, "path": "khan/math/probability/statistical-studies/types-of-studies/analyzing-statistical-study/", "duration": 319, "id": "RQPC_rUvHas", "title": "Appropriate statistical study example", "format": "mp4", "description": "", "slug": "analyzing-statistical-study", "kind": "Video", "video_id": "RQPC_rUvHas", "keywords": "", "youtube_id": "RQPC_rUvHas", "readable_id": "analyzing-statistical-study"}, "PErhLkQcpZ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PErhLkQcpZ8.mp4/PErhLkQcpZ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PErhLkQcpZ8.mp4/PErhLkQcpZ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PErhLkQcpZ8.m3u8/PErhLkQcpZ8.m3u8"}, "duration": 1052, "id": "PErhLkQcpZ8", "title": "Linear transformations as matrix vector products", "format": "mp4", "description": "Showing how ANY linear transformation can be represented as a matrix vector product", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/linear-transformations-as-matrix-vector-products/", "slug": "linear-transformations-as-matrix-vector-products", "kind": "Video", "video_id": "PErhLkQcpZ8", "keywords": "linear, transformation, algebra, matrix", "youtube_id": "PErhLkQcpZ8", "readable_id": "linear-transformations-as-matrix-vector-products"}, "taTxFgtb1_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/taTxFgtb1_Q.mp4/taTxFgtb1_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/taTxFgtb1_Q.mp4/taTxFgtb1_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/taTxFgtb1_Q.m3u8/taTxFgtb1_Q.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/giles-shih/kauffman-giles-shih-2/", "duration": 210, "id": "taTxFgtb1_Q", "title": "Giles Shih - The importance of education", "format": "mp4", "description": "Giles Shih, President and CEO of BioResource International, talks about how his education contributed to the growth of his business. Giles also discusses three key elements of starting your business as well as the significance to problem solving and being motivated by a cause important to you.\u00a0", "slug": "kauffman-giles-shih-2", "kind": "Video", "video_id": "taTxFgtb1_Q", "keywords": "", "youtube_id": "taTxFgtb1_Q", "readable_id": "kauffman-giles-shih-2"}, "4vNloi-zNjU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4vNloi-zNjU.mp4/4vNloi-zNjU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4vNloi-zNjU.mp4/4vNloi-zNjU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4vNloi-zNjU.m3u8/4vNloi-zNjU.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/copy-of-cc-6th-coordinate-plane/graphing-points-exercise/", "duration": 141, "id": "4vNloi-zNjU", "title": "Coordinate plane: graphing points", "format": "mp4", "description": "This exercise asks us to graph a set of points from an ordered pair on the x and y axis of a coordinate plane.", "slug": "graphing-points-exercise", "kind": "Video", "video_id": "4vNloi-zNjU", "keywords": "", "youtube_id": "4vNloi-zNjU", "readable_id": "graphing-points-exercise"}, "RaQBaVeEbW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RaQBaVeEbW8.mp4/RaQBaVeEbW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RaQBaVeEbW8.mp4/RaQBaVeEbW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RaQBaVeEbW8.m3u8/RaQBaVeEbW8.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/biodiversity-hotspot/", "duration": 354, "id": "RaQBaVeEbW8", "title": "What is a biodiversity hotspot?", "format": "mp4", "description": "", "slug": "biodiversity-hotspot", "kind": "Video", "video_id": "RaQBaVeEbW8", "keywords": "", "youtube_id": "RaQBaVeEbW8", "readable_id": "biodiversity-hotspot"}, "YBYu5aZPLeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YBYu5aZPLeg.mp4/YBYu5aZPLeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YBYu5aZPLeg.mp4/YBYu5aZPLeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YBYu5aZPLeg.m3u8/YBYu5aZPLeg.m3u8"}, "duration": 200, "id": "YBYu5aZPLeg", "title": "Graphing linear inequalities in two variables 3", "format": "mp4", "description": "Graphing linear inequalities in two variables", "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphing-linear-inequalities-in-two-variables-3/", "slug": "graphing-linear-inequalities-in-two-variables-3", "kind": "Video", "video_id": "YBYu5aZPLeg", "keywords": "U05_L2_T1_we3, Graphing, linear, inequalities, in, two, variables", "youtube_id": "YBYu5aZPLeg", "readable_id": "graphing-linear-inequalities-in-two-variables-3"}, "CqsYCIjSm9A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CqsYCIjSm9A.mp4/CqsYCIjSm9A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CqsYCIjSm9A.mp4/CqsYCIjSm9A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CqsYCIjSm9A.m3u8/CqsYCIjSm9A.m3u8"}, "path": "khan/science/physics/electricity-magnetism/charge-and-electric-field/electric-potential-energy-part-2-involves-calculus/", "duration": 590, "id": "CqsYCIjSm9A", "title": "Electric potential energy (part 2-- involves calculus)", "format": "mp4", "description": "Electric potential energy difference in a varying field", "slug": "electric-potential-energy-part-2-involves-calculus", "kind": "Video", "video_id": "CqsYCIjSm9A", "keywords": "electric, potential, energy", "youtube_id": "CqsYCIjSm9A", "readable_id": "electric-potential-energy-part-2-involves-calculus"}, "tjQzJ7GY0GY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tjQzJ7GY0GY.mp4/tjQzJ7GY0GY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tjQzJ7GY0GY.mp4/tjQzJ7GY0GY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tjQzJ7GY0GY.m3u8/tjQzJ7GY0GY.m3u8"}, "duration": 231, "id": "tjQzJ7GY0GY", "title": "Stock dilution", "format": "mp4", "description": "Why the value per share does not really get diluted when more shares are issued in a secondary offering", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/dilution-tutorial/stock-dilution/", "slug": "stock-dilution", "kind": "Video", "video_id": "tjQzJ7GY0GY", "keywords": "finance, stock, dilution", "youtube_id": "tjQzJ7GY0GY", "readable_id": "stock-dilution"}, "5UVpLPtgdF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5UVpLPtgdF4.mp4/5UVpLPtgdF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5UVpLPtgdF4.mp4/5UVpLPtgdF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5UVpLPtgdF4.m3u8/5UVpLPtgdF4.m3u8"}, "duration": 702, "id": "5UVpLPtgdF4", "title": "Ponzi schemes", "format": "mp4", "description": "Ponzi Schemes", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/mutual-funds/ponzi-schemes/", "slug": "ponzi-schemes", "kind": "Video", "video_id": "5UVpLPtgdF4", "keywords": "Ponzi, Schemes, marquee", "youtube_id": "5UVpLPtgdF4", "readable_id": "ponzi-schemes"}, "lDY9JcFaRd4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lDY9JcFaRd4.mp4/lDY9JcFaRd4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lDY9JcFaRd4.mp4/lDY9JcFaRd4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lDY9JcFaRd4.m3u8/lDY9JcFaRd4.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/critical_points_graphing/minima-maxima-and-critical-points/", "duration": 473, "id": "lDY9JcFaRd4", "title": "Minima, maxima and critical points", "format": "mp4", "description": "", "slug": "minima-maxima-and-critical-points", "kind": "Video", "video_id": "lDY9JcFaRd4", "keywords": "", "youtube_id": "lDY9JcFaRd4", "readable_id": "minima-maxima-and-critical-points"}, "i16sGRY7SZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i16sGRY7SZ4.mp4/i16sGRY7SZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i16sGRY7SZ4.mp4/i16sGRY7SZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i16sGRY7SZ4.m3u8/i16sGRY7SZ4.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/wassily-kandinsky-composition-vii-1913/", "duration": 680, "id": "i16sGRY7SZ4", "title": "Kandinsky, Composition VII", "format": "mp4", "description": "Wassily Kandinsky, Composition VII, oil on canvas, 1913 (State Tretyakov Gallery, Moscow)\n\nSpeakers: Dr. Beth Harris, Dr. Juliana Kreinik, Dr. Steven Zucker \n\nhttp://smarthistory.org/Kandinsky-CompositionVII.html", "slug": "wassily-kandinsky-composition-vii-1913", "kind": "Video", "video_id": "i16sGRY7SZ4", "keywords": "Kandinsky, Expressionism, smarthistory, art history", "youtube_id": "i16sGRY7SZ4", "readable_id": "wassily-kandinsky-composition-vii-1913"}, "Anab9vKI7i8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Anab9vKI7i8.mp4/Anab9vKI7i8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Anab9vKI7i8.mp4/Anab9vKI7i8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Anab9vKI7i8.m3u8/Anab9vKI7i8.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/getting-lost/", "duration": 179, "id": "Anab9vKI7i8", "title": "\"Getting Lost\" with Deniz Beyazit", "format": "mp4", "description": "Met curator Deniz Beyazit on the art of control in Tughra (Official Signature) of Sultan S\u00fcleiman the Magnificent from Istanbul.\n\nRaised to a high art form within the Ottoman chancery, the tughra served as the official seal of the sultan. Affixed to every royal edict, this stylized signature is an intricate calligraphic composition comprising the name of the reigning sultan, his father\u2019s name, his title, and the phrase \"the eternally victorious.\" Its bold, gestural line contrasts with the delicate swirling vine-scroll illumination used to ornament the seal.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "slug": "getting-lost", "kind": "Video", "video_id": "Anab9vKI7i8", "keywords": "authority, control, nature, ornate, painting, paper, politics, writing, Middle East", "youtube_id": "Anab9vKI7i8", "readable_id": "getting-lost"}, "zAx61CO5mDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zAx61CO5mDw.mp4/zAx61CO5mDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zAx61CO5mDw.mp4/zAx61CO5mDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zAx61CO5mDw.m3u8/zAx61CO5mDw.m3u8"}, "duration": 564, "id": "zAx61CO5mDw", "title": "Relationship between angular velocity and speed", "format": "mp4", "description": "How angular velocity relates to speed", "path": "khan/science/physics/torque-angular-momentum/torque-tutorial/relationship-between-angular-velocity-and-speed/", "slug": "relationship-between-angular-velocity-and-speed", "kind": "Video", "video_id": "zAx61CO5mDw", "keywords": "Relationship, between, angular, velocity, and, speed", "youtube_id": "zAx61CO5mDw", "readable_id": "relationship-between-angular-velocity-and-speed"}, "9gnM72T4DTE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9gnM72T4DTE.mp4/9gnM72T4DTE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9gnM72T4DTE.mp4/9gnM72T4DTE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9gnM72T4DTE.m3u8/9gnM72T4DTE.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/william-holman-hunt-the-awakening-conscience-1853/", "duration": 289, "id": "9gnM72T4DTE", "title": "Hunt, the Awakening Conscience", "format": "mp4", "description": "William Holman Hunt, The Awakening Conscience, 1853, oil on canvas, 762 x 559 mm (Tate Britain, London)", "slug": "william-holman-hunt-the-awakening-conscience-1853", "kind": "Video", "video_id": "9gnM72T4DTE", "keywords": "Hunt, Awakening, London, GAP, William Holman Hunt, Awakening Conscience, 1853, Tate Britain, Khan Academy, smarthistory, art history, Google Art Project, OER, painting, morality", "youtube_id": "9gnM72T4DTE", "readable_id": "william-holman-hunt-the-awakening-conscience-1853"}, "oxNILgEbXP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oxNILgEbXP8.mp4/oxNILgEbXP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oxNILgEbXP8.mp4/oxNILgEbXP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oxNILgEbXP8.m3u8/oxNILgEbXP8.m3u8"}, "duration": 61, "id": "oxNILgEbXP8", "title": "Rolltop Desk by David Roentgen (animation)", "format": "mp4", "description": "This rolltop desk demonstrates the inventive talent of its maker. The chinoiserie marquetry scenes have a painterly effect that Roentgen alone attained, using minute pieces of naturally colored exotic woods. His mechanical ingenuity is exemplified by the workings of the lower section of the desk: when the key of the lower drawer is turned to the right, the side drawers spring open; if a button is pressed on the underside of these drawers, each swings aside to reveal three other drawers. Although Roentgen maintained his workshop at Neuwied, Germany, where this desk was made between 1776 and 1778, his French clientele became so important that he opened an outlet in Paris and joined the Parisian guild in 1780.\n\nView this work on metmuseum.org.\n", "path": "rolltop-desk-animation/", "slug": "rolltop-desk-animation", "kind": "Video", "video_id": "oxNILgEbXP8", "keywords": "desk, ornate, wood, Europe", "youtube_id": "oxNILgEbXP8", "readable_id": "rolltop-desk-animation"}, "Vi1JK6IYVt8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vi1JK6IYVt8.mp4/Vi1JK6IYVt8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vi1JK6IYVt8.mp4/Vi1JK6IYVt8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vi1JK6IYVt8.m3u8/Vi1JK6IYVt8.m3u8"}, "duration": 609, "id": "Vi1JK6IYVt8", "title": "Meet the heart!", "format": "mp4", "description": "Find out exactly where the heart rests in your body and what it does. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/rn-circulatory-system/meet-the-heart/", "slug": "meet-the-heart", "kind": "Video", "video_id": "Vi1JK6IYVt8", "keywords": "", "youtube_id": "Vi1JK6IYVt8", "readable_id": "meet-the-heart"}, "7unYHC6YrMs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7unYHC6YrMs.mp4/7unYHC6YrMs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7unYHC6YrMs.mp4/7unYHC6YrMs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7unYHC6YrMs.m3u8/7unYHC6YrMs.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/american-art-wwii/stare/", "duration": 162, "id": "7unYHC6YrMs", "title": "\"Stare\" with Jeff Rosenheim", "format": "mp4", "description": "Met curator Jeff Rosenheim on the art of seeing in Walker Evans\u2019s [Subway Passengers, New York City].\n\nView this work on\u00a0metmuseum.org.", "slug": "stare", "kind": "Video", "video_id": "7unYHC6YrMs", "keywords": "", "youtube_id": "7unYHC6YrMs", "readable_id": "stare"}, "ZcaPndok1hc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZcaPndok1hc.mp4/ZcaPndok1hc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZcaPndok1hc.mp4/ZcaPndok1hc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZcaPndok1hc.m3u8/ZcaPndok1hc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/turbulence-at-high-velocities-and-reynolds-number/", "duration": 130, "id": "ZcaPndok1hc", "title": "Turbulence at high velocities and Reynold's number", "format": "mp4", "description": "", "slug": "turbulence-at-high-velocities-and-reynolds-number", "kind": "Video", "video_id": "ZcaPndok1hc", "keywords": "", "youtube_id": "ZcaPndok1hc", "readable_id": "turbulence-at-high-velocities-and-reynolds-number"}, "Gwjlw3K2OrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gwjlw3K2OrQ.mp4/Gwjlw3K2OrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gwjlw3K2OrQ.mp4/Gwjlw3K2OrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gwjlw3K2OrQ.m3u8/Gwjlw3K2OrQ.m3u8"}, "duration": 288, "id": "Gwjlw3K2OrQ", "title": "Loop block", "format": "mp4", "description": "Loop block allows us to repeat\u00a0behaviours\u00a0", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-loopblock/", "slug": "lego-loopblock", "kind": "Video", "video_id": "Gwjlw3K2OrQ", "keywords": "", "youtube_id": "Gwjlw3K2OrQ", "readable_id": "lego-loopblock"}, "9VqL6POWIoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9VqL6POWIoc.mp4/9VqL6POWIoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9VqL6POWIoc.mp4/9VqL6POWIoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9VqL6POWIoc.m3u8/9VqL6POWIoc.m3u8"}, "duration": 162, "id": "9VqL6POWIoc", "title": "Divergent improper integral", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/improper-integrals-tutorial/divergent-improper-integral/", "slug": "divergent-improper-integral", "kind": "Video", "video_id": "9VqL6POWIoc", "keywords": "", "youtube_id": "9VqL6POWIoc", "readable_id": "divergent-improper-integral"}, "oT9NdKpUwdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oT9NdKpUwdU.mp4/oT9NdKpUwdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oT9NdKpUwdU.mp4/oT9NdKpUwdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oT9NdKpUwdU.m3u8/oT9NdKpUwdU.m3u8"}, "path": "khan/humanities/art-americas/new-topic-2015-04-22t180902849z/inca-art/inca-ushnus/", "duration": 344, "id": "oT9NdKpUwdU", "title": "Inka ushnus: landscape, site and symbol in the Andes", "format": "mp4", "description": "For three years, a research team from the British Museum, the University of Reading, Royal Holloway University of London and the Universidad Nacional de San Cristobal de Huamanga set out to discover how the Inca Empire used a stone platform known as an ushnu as a symbol of political power.\nBy enhancing our knowledge of how ushnus were built, their symbolism, what activities took place on them and what artifacts might be found around them, the project has increased our understanding of Inca culture and how they conquered the Andes to become one of the world\u2019s most successful civilisations. \u00a9 Trustees of the British Museum\n", "slug": "inca-ushnus", "kind": "Video", "video_id": "oT9NdKpUwdU", "keywords": "Inca, British Museum", "youtube_id": "oT9NdKpUwdU", "readable_id": "inca-ushnus"}, "qmsWOrQtj4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qmsWOrQtj4w.mp4/qmsWOrQtj4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qmsWOrQtj4w.mp4/qmsWOrQtj4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qmsWOrQtj4w.m3u8/qmsWOrQtj4w.m3u8"}, "path": "khan/test-prep/mcat/cells/viruses/subviral-particles-viroids-and-prions/", "duration": 301, "id": "qmsWOrQtj4w", "title": "Subviral particles Viroids and prions", "format": "mp4", "description": "", "slug": "subviral-particles-viroids-and-prions", "kind": "Video", "video_id": "qmsWOrQtj4w", "keywords": "", "youtube_id": "qmsWOrQtj4w", "readable_id": "subviral-particles-viroids-and-prions"}, "lBscLuttQq0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lBscLuttQq0.mp4/lBscLuttQq0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lBscLuttQq0.mp4/lBscLuttQq0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lBscLuttQq0.m3u8/lBscLuttQq0.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/why-subtracting-a-negative-equivalent-to-adding-a-positive/", "duration": 93, "id": "lBscLuttQq0", "title": "Subtracting a negative = adding a positive", "format": "mp4", "description": "Find out why subtracting a negative number is the same as adding the absolute value of that number.", "slug": "why-subtracting-a-negative-equivalent-to-adding-a-positive", "kind": "Video", "video_id": "lBscLuttQq0", "keywords": "", "youtube_id": "lBscLuttQq0", "readable_id": "why-subtracting-a-negative-equivalent-to-adding-a-positive"}, "0MT3iUH3bTs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0MT3iUH3bTs.mp4/0MT3iUH3bTs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0MT3iUH3bTs.mp4/0MT3iUH3bTs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0MT3iUH3bTs.m3u8/0MT3iUH3bTs.m3u8"}, "duration": 74, "id": "0MT3iUH3bTs", "title": "Conserving Tullio Lombardo's \"Adam\": Order of Assembly", "format": "mp4", "description": "This 3D animation details the order in which the fragments of Tullio Lombardo's Adam were reassembled.\n\nThe life-size marble statue of Adam, carved by Tullio Lombardo (Italian, ca. 1455\u20131532), is among the most important works of art from Renaissance Venice to be found outside that city today. Made in the early 1490s for the tomb of Doge Andrea Vendramin, it is the only signed sculpture from that monumental complex. The serene, idealized figure, inspired by ancient sculpture, is deceptively complex. Carefully manipulating composition and finish, Tullio created God's perfect human being, but also the anxious victim of the serpent's wiles.\n\nIn 2002, Adam was gravely damaged in an accident. Committed to returning it to public view, the Museum undertook a conservation treatment that has restored the sculpture to its original appearance to the fullest extent possible.\n\nThe exhibition allows Adam to be viewed in the round and explains this unprecedented twelve-year research and conservation project. It also inaugurates a new permanent gallery for Venetian and northern Italian sculpture. The installation of this gallery was made possible by Assunta Sommella Peluso, Ignazio Peluso, Ada Peluso, and Romano I. Peluso.\nLearn more about the exhibition on metmuseum.org.\n\nFor more information, including production credits, view this video on MetMedia.\n", "path": "conserving-lombardos-adam-assembly/", "slug": "conserving-lombardos-adam-assembly", "kind": "Video", "video_id": "0MT3iUH3bTs", "keywords": "", "youtube_id": "0MT3iUH3bTs", "readable_id": "conserving-lombardos-adam-assembly"}, "3858MaULDdI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3858MaULDdI.mp4/3858MaULDdI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3858MaULDdI.mp4/3858MaULDdI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3858MaULDdI.m3u8/3858MaULDdI.m3u8"}, "path": "khan/science/health-and-medicine/healthcare-misc/stenosis-ischemia-and-heart-failure/", "duration": 473, "id": "3858MaULDdI", "title": "Stenosis, ischemia and heart failure", "format": "mp4", "description": "Clarifying a bunch of medical terms around heart disease", "slug": "stenosis-ischemia-and-heart-failure", "kind": "Video", "video_id": "3858MaULDdI", "keywords": "heart, coronary, disease, myocardial, infarction", "youtube_id": "3858MaULDdI", "readable_id": "stenosis-ischemia-and-heart-failure"}, "zWcfVC-oCNw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zWcfVC-oCNw.mp4/zWcfVC-oCNw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zWcfVC-oCNw.mp4/zWcfVC-oCNw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zWcfVC-oCNw.m3u8/zWcfVC-oCNw.m3u8"}, "duration": 475, "id": "zWcfVC-oCNw", "title": "Common divisibility examples", "format": "mp4", "description": "Common Divisibility Examples", "path": "khan/math/pre-algebra/factors-multiples/prime_factorization/common-divisibility-examples/", "slug": "common-divisibility-examples", "kind": "Video", "video_id": "zWcfVC-oCNw", "keywords": "divisibility, prime, factorization", "youtube_id": "zWcfVC-oCNw", "readable_id": "common-divisibility-examples"}, "b-w0S0EBsfQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b-w0S0EBsfQ.mp4/b-w0S0EBsfQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b-w0S0EBsfQ.mp4/b-w0S0EBsfQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b-w0S0EBsfQ.m3u8/b-w0S0EBsfQ.m3u8"}, "duration": 417, "id": "b-w0S0EBsfQ", "title": "Comparing proportional relationships", "format": "mp4", "description": "Here's a challenge: construct equations to determine if the relationships are proportional. Use your knowledge of algebra and graphs to compare ratios.", "path": "comparing-proportional-relationships/", "slug": "comparing-proportional-relationships", "kind": "Video", "video_id": "b-w0S0EBsfQ", "keywords": "", "youtube_id": "b-w0S0EBsfQ", "readable_id": "comparing-proportional-relationships"}, "OlYwHNKN-qw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OlYwHNKN-qw.mp4/OlYwHNKN-qw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OlYwHNKN-qw.mp4/OlYwHNKN-qw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OlYwHNKN-qw.m3u8/OlYwHNKN-qw.m3u8"}, "duration": 246, "id": "OlYwHNKN-qw", "title": "3rd graders build robots at Santa Rita Elementary School", "format": "mp4", "description": "Mrs. Rowhani's third graders learn about matter and energy by building a Spout bot with Khan Academy. \n\nSpecial thanks to: Santa Rita's volunteer parents, Kami Thordarson, Karen Wilson and of course Laleh Rowhani the class teacher.", "path": "khan/science/discoveries-projects/robots/all-about-spout/spout-bot-at-santa-rita-elementary-school/", "slug": "spout-bot-at-santa-rita-elementary-school", "kind": "Video", "video_id": "OlYwHNKN-qw", "keywords": "", "youtube_id": "OlYwHNKN-qw", "readable_id": "spout-bot-at-santa-rita-elementary-school"}, "A1XyF5clLbI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A1XyF5clLbI.mp4/A1XyF5clLbI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A1XyF5clLbI.mp4/A1XyF5clLbI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A1XyF5clLbI.m3u8/A1XyF5clLbI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-chronic-bronchitis/rn-chronic-bronchitis-pathophysiology/", "duration": 447, "id": "A1XyF5clLbI", "title": "Chronic bronchitis pathophysiology", "format": "mp4", "description": "", "slug": "rn-chronic-bronchitis-pathophysiology", "kind": "Video", "video_id": "A1XyF5clLbI", "keywords": "", "youtube_id": "A1XyF5clLbI", "readable_id": "rn-chronic-bronchitis-pathophysiology"}, "nL-NSia0HiA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nL-NSia0HiA.mp4/nL-NSia0HiA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nL-NSia0HiA.mp4/nL-NSia0HiA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nL-NSia0HiA.m3u8/nL-NSia0HiA.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-8/", "duration": 760, "id": "nL-NSia0HiA", "title": "GMAT: Data sufficiency 8", "format": "mp4", "description": "37-41, pgs. 280-281", "slug": "gmat-data-sufficiency-8", "kind": "Video", "video_id": "nL-NSia0HiA", "keywords": "gmat, data, sufficiency, math", "youtube_id": "nL-NSia0HiA", "readable_id": "gmat-data-sufficiency-8"}, "UWMNAdXEDlM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UWMNAdXEDlM.mp4/UWMNAdXEDlM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UWMNAdXEDlM.mp4/UWMNAdXEDlM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UWMNAdXEDlM.m3u8/UWMNAdXEDlM.m3u8"}, "duration": 121, "id": "UWMNAdXEDlM", "title": "D. W. Griffith, \"The Mothering Heart\"", "format": "mp4", "description": "For more information please visit\u00a0http://www.moma.org/1913", "path": "griffith-mothering-heart/", "slug": "griffith-mothering-heart", "kind": "Video", "video_id": "UWMNAdXEDlM", "keywords": "", "youtube_id": "UWMNAdXEDlM", "readable_id": "griffith-mothering-heart"}, "Hbuh5m3p0x0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hbuh5m3p0x0.mp4/Hbuh5m3p0x0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hbuh5m3p0x0.mp4/Hbuh5m3p0x0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hbuh5m3p0x0.m3u8/Hbuh5m3p0x0.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/bohr-model-radii/", "duration": 417, "id": "Hbuh5m3p0x0", "title": "Bohr model radii", "format": "mp4", "description": "", "slug": "bohr-model-radii", "kind": "Video", "video_id": "Hbuh5m3p0x0", "keywords": "", "youtube_id": "Hbuh5m3p0x0", "readable_id": "bohr-model-radii"}, "EtefJ85R1OQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EtefJ85R1OQ.mp4/EtefJ85R1OQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EtefJ85R1OQ.mp4/EtefJ85R1OQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EtefJ85R1OQ.m3u8/EtefJ85R1OQ.m3u8"}, "duration": 337, "id": "EtefJ85R1OQ", "title": "Modeling ticket fines with exponential function", "format": "mp4", "description": "", "path": "khan/math/algebra2/exponential_and_logarithmic_func/exponential-modeling/modeling-ticket-fines-with-exponential-function/", "slug": "modeling-ticket-fines-with-exponential-function", "kind": "Video", "video_id": "EtefJ85R1OQ", "keywords": "", "youtube_id": "EtefJ85R1OQ", "readable_id": "modeling-ticket-fines-with-exponential-function"}, "dh__n9FVKA0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dh__n9FVKA0.mp4/dh__n9FVKA0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dh__n9FVKA0.mp4/dh__n9FVKA0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dh__n9FVKA0.m3u8/dh__n9FVKA0.m3u8"}, "duration": 232, "id": "dh__n9FVKA0", "title": "Deriving integration by parts formula", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/integration-techniques/integration_by_parts/deriving-integration-by-parts-formula/", "slug": "deriving-integration-by-parts-formula", "kind": "Video", "video_id": "dh__n9FVKA0", "keywords": "", "youtube_id": "dh__n9FVKA0", "readable_id": "deriving-integration-by-parts-formula"}, "w616LEmrHVE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w616LEmrHVE.mp4/w616LEmrHVE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w616LEmrHVE.mp4/w616LEmrHVE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w616LEmrHVE.m3u8/w616LEmrHVE.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/adding-decimals-pre-alg/adding-decimals/", "duration": 165, "id": "w616LEmrHVE", "title": "Adding decimals: example 3", "format": "mp4", "description": "We're adding 3 decimal numbers together in this example. Give it a try!", "slug": "adding-decimals", "kind": "Video", "video_id": "w616LEmrHVE", "keywords": "U03_L2_T1_we1, Adding, Decimals", "youtube_id": "w616LEmrHVE", "readable_id": "adding-decimals"}, "5xe-6GPR_qQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5xe-6GPR_qQ.mp4/5xe-6GPR_qQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5xe-6GPR_qQ.mp4/5xe-6GPR_qQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5xe-6GPR_qQ.m3u8/5xe-6GPR_qQ.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/divisibility_and_factors/finding-factors-and-multiples/", "duration": 240, "id": "5xe-6GPR_qQ", "title": "Finding factors and multiples", "format": "mp4", "description": "Watch and listen as we explain a simple way of remembering the difference between factors and multiples.", "slug": "finding-factors-and-multiples", "kind": "Video", "video_id": "5xe-6GPR_qQ", "keywords": "", "youtube_id": "5xe-6GPR_qQ", "readable_id": "finding-factors-and-multiples"}, "4_410pxikS0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4_410pxikS0.mp4/4_410pxikS0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4_410pxikS0.mp4/4_410pxikS0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4_410pxikS0.m3u8/4_410pxikS0.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-iron-deficiency-anemia-and-anemia-of-chronic-disease/microcytic-anemia/", "duration": 582, "id": "4_410pxikS0", "title": "Microcytic anemia", "format": "mp4", "description": "", "slug": "microcytic-anemia", "kind": "Video", "video_id": "4_410pxikS0", "keywords": "", "youtube_id": "4_410pxikS0", "readable_id": "microcytic-anemia"}, "WflIdizLNYQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WflIdizLNYQ.mp4/WflIdizLNYQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WflIdizLNYQ.mp4/WflIdizLNYQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WflIdizLNYQ.m3u8/WflIdizLNYQ.m3u8"}, "duration": 133, "id": "WflIdizLNYQ", "title": "New research points to dinosaurs' colorful past", "format": "mp4", "description": "There\u2019s new evidence that dinosaurs, once thought to resemble scaly lizards, were in fact fluffy, colorful animals. In the video below, Curator Mark Norell, who is chair of the Museum\u2019s Division of Paleontology and studies important feathered dinosaurs from Liaoning, China, shares his thoughts on the significance of two new studies about fossilized feathers reported in Science magazine.", "path": "dinosaurs-colorful/", "slug": "dinosaurs-colorful", "kind": "Video", "video_id": "WflIdizLNYQ", "keywords": "", "youtube_id": "WflIdizLNYQ", "readable_id": "dinosaurs-colorful"}, "l6jdWkH3wfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l6jdWkH3wfc.mp4/l6jdWkH3wfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l6jdWkH3wfc.mp4/l6jdWkH3wfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l6jdWkH3wfc.m3u8/l6jdWkH3wfc.m3u8"}, "duration": 758, "id": "l6jdWkH3wfc", "title": "DNA structure and replication", "format": "mp4", "description": "Hank introduces us to that wondrous molecule deoxyribonucleic acid - also known as DNA - and explains how it replicates itself in our cells.", "path": "crash-course-biology-110/", "slug": "crash-course-biology-110", "kind": "Video", "video_id": "l6jdWkH3wfc", "keywords": "", "youtube_id": "l6jdWkH3wfc", "readable_id": "crash-course-biology-110"}, "Z9b8nnvpim0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z9b8nnvpim0.mp4/Z9b8nnvpim0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z9b8nnvpim0.mp4/Z9b8nnvpim0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z9b8nnvpim0.m3u8/Z9b8nnvpim0.m3u8"}, "duration": 289, "id": "Z9b8nnvpim0", "title": "Income and expenditure views of GDP", "format": "mp4", "description": "Looking at a simple model of an economy", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/gdp-components-tutorial/income-and-expenditure-views-of-gdp/", "slug": "income-and-expenditure-views-of-gdp", "kind": "Video", "video_id": "Z9b8nnvpim0", "keywords": "macroeconomics, Gross Domestic Product", "youtube_id": "Z9b8nnvpim0", "readable_id": "income-and-expenditure-views-of-gdp"}, "_M_zc7DDZbU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_M_zc7DDZbU.mp4/_M_zc7DDZbU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_M_zc7DDZbU.mp4/_M_zc7DDZbU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_M_zc7DDZbU.m3u8/_M_zc7DDZbU.m3u8"}, "path": "khan/humanities/art-asia/art-japan/muromachi-period/negoro-ware-ewer/", "duration": 456, "id": "_M_zc7DDZbU", "title": "Muromachi to Momoyama period Negoro ware ewer", "format": "mp4", "description": "Negoro ware ewer, Negoro workshop, Muromachi period (1392-1573) to Momoyama period (1573-1615) second half of 16th century, lacquered wood, Wakayama prefecture, Japan (Portland Art Museum)", "slug": "negoro-ware-ewer", "kind": "Video", "video_id": "_M_zc7DDZbU", "keywords": "Negoro-ware, ewer, Negoro, workshop, Muromachi, 16th-century, lacquer, Wakayama, Japan, Portland Art Museum, Japanese", "youtube_id": "_M_zc7DDZbU", "readable_id": "negoro-ware-ewer"}, "6zWPgvEMVlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6zWPgvEMVlE.mp4/6zWPgvEMVlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6zWPgvEMVlE.mp4/6zWPgvEMVlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6zWPgvEMVlE.m3u8/6zWPgvEMVlE.m3u8"}, "duration": 303, "id": "6zWPgvEMVlE", "title": "Probability from compound sample space", "format": "mp4", "description": "Learn how to use sample space diagrams to find probabilities.", "path": "probability-from-compound-sample-space/", "slug": "probability-from-compound-sample-space", "kind": "Video", "video_id": "6zWPgvEMVlE", "keywords": "", "youtube_id": "6zWPgvEMVlE", "readable_id": "probability-from-compound-sample-space"}, "3ZGmMTNyW0k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3ZGmMTNyW0k.mp4/3ZGmMTNyW0k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3ZGmMTNyW0k.mp4/3ZGmMTNyW0k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3ZGmMTNyW0k.m3u8/3ZGmMTNyW0k.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/avant-garde-sculpture/jean-baptiste-carpeaux-dance-1865-69/", "duration": 223, "id": "3ZGmMTNyW0k", "title": "Carpeaux, Dance", "format": "mp4", "description": "Jean-Baptiste Carpeaux\u200b, Dance, 1865-69, marble, 420 x 298 cm.\n(Mus\u00e9e d'Orsay, Paris).\n\nCommissioned by Charles Garnier for the facade of L'Op\u00e9ra. In 1964 it was replaced by a copy executed by Paul Belmondo.", "slug": "jean-baptiste-carpeaux-dance-1865-69", "kind": "Video", "video_id": "3ZGmMTNyW0k", "keywords": "Carpeaux, Dance, Opera House, Paris, Musee d'Orsay, Art History, Smarthistory", "youtube_id": "3ZGmMTNyW0k", "readable_id": "jean-baptiste-carpeaux-dance-1865-69"}, "ZZQzMeFoZY0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZZQzMeFoZY0.mp4/ZZQzMeFoZY0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZZQzMeFoZY0.mp4/ZZQzMeFoZY0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZZQzMeFoZY0.m3u8/ZZQzMeFoZY0.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/gray-and-white-matter/", "duration": 378, "id": "ZZQzMeFoZY0", "title": "Gray and white matter", "format": "mp4", "description": "", "slug": "gray-and-white-matter", "kind": "Video", "video_id": "ZZQzMeFoZY0", "keywords": "MCAT", "youtube_id": "ZZQzMeFoZY0", "readable_id": "gray-and-white-matter"}, "QR9K8M4u8rk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QR9K8M4u8rk.mp4/QR9K8M4u8rk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QR9K8M4u8rk.mp4/QR9K8M4u8rk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QR9K8M4u8rk.m3u8/QR9K8M4u8rk.m3u8"}, "duration": 667, "id": "QR9K8M4u8rk", "title": "GMAT: Math 24", "format": "mp4", "description": "124-128, pgs. 168-169", "path": "khan/test-prep/gmat/problem-solving/gmat-math-24/", "slug": "gmat-math-24", "kind": "Video", "video_id": "QR9K8M4u8rk", "keywords": "GMAT, Math, problem, solving", "youtube_id": "QR9K8M4u8rk", "readable_id": "gmat-math-24"}, "cwClnv9Y1Y0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cwClnv9Y1Y0.mp4/cwClnv9Y1Y0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cwClnv9Y1Y0.mp4/cwClnv9Y1Y0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cwClnv9Y1Y0.m3u8/cwClnv9Y1Y0.m3u8"}, "duration": 783, "id": "cwClnv9Y1Y0", "title": "A firm's marginal product revenue curve", "format": "mp4", "description": "Thinking about how much incremental benefit a firm gets from hiring one more person", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/labor-marginal-product-rev/a-firm-s-marginal-product-revenue-curve/", "slug": "a-firm-s-marginal-product-revenue-curve", "kind": "Video", "video_id": "cwClnv9Y1Y0", "keywords": "microecnomic, MPR, MPL, TP", "youtube_id": "cwClnv9Y1Y0", "readable_id": "a-firm-s-marginal-product-revenue-curve"}, "5ZXB-gCs1oM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ZXB-gCs1oM.mp4/5ZXB-gCs1oM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ZXB-gCs1oM.mp4/5ZXB-gCs1oM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ZXB-gCs1oM.m3u8/5ZXB-gCs1oM.m3u8"}, "duration": 114, "id": "5ZXB-gCs1oM", "title": "Parts for Spout", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/parts-for-spout/", "slug": "parts-for-spout", "kind": "Video", "video_id": "5ZXB-gCs1oM", "keywords": "", "youtube_id": "5ZXB-gCs1oM", "readable_id": "parts-for-spout"}, "e_tE84565Co": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e_tE84565Co.mp4/e_tE84565Co.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e_tE84565Co.mp4/e_tE84565Co.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e_tE84565Co.m3u8/e_tE84565Co.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/demographic-structure-of-society-age/", "duration": 316, "id": "e_tE84565Co", "title": "Demographic structure of society - age", "format": "mp4", "description": "", "slug": "demographic-structure-of-society-age", "kind": "Video", "video_id": "e_tE84565Co", "keywords": "", "youtube_id": "e_tE84565Co", "readable_id": "demographic-structure-of-society-age"}, "C5Lbjbyr1t4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C5Lbjbyr1t4.mp4/C5Lbjbyr1t4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C5Lbjbyr1t4.mp4/C5Lbjbyr1t4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C5Lbjbyr1t4.m3u8/C5Lbjbyr1t4.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/u_substitution/2-ln-x-x-antiderivative-example/", "duration": 520, "id": "C5Lbjbyr1t4", "title": "(2^(ln x))/x antiderivative example", "format": "mp4", "description": "Finding \u00a0\u222b(2^ln x)/x dx", "slug": "2-ln-x-x-antiderivative-example", "kind": "Video", "video_id": "C5Lbjbyr1t4", "keywords": "integral, antiderivative, lnx", "youtube_id": "C5Lbjbyr1t4", "readable_id": "2-ln-x-x-antiderivative-example"}, "1wnIsgUivEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1wnIsgUivEQ.mp4/1wnIsgUivEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1wnIsgUivEQ.mp4/1wnIsgUivEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1wnIsgUivEQ.m3u8/1wnIsgUivEQ.m3u8"}, "duration": 212, "id": "1wnIsgUivEQ", "title": "Alternate proof to induction for integer sum", "format": "mp4", "description": "Another way to prove the expression for the sum of all positive integers up to and including n", "path": "khan/math/precalculus/seq_induction/proof_by_induction/alternate-proof-to-induction-for-integer-sum/", "slug": "alternate-proof-to-induction-for-integer-sum", "kind": "Video", "video_id": "1wnIsgUivEQ", "keywords": "proof, algebra, sum, sequence, series", "youtube_id": "1wnIsgUivEQ", "readable_id": "alternate-proof-to-induction-for-integer-sum"}, "TX7-Kdn6lJQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TX7-Kdn6lJQ.mp4/TX7-Kdn6lJQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TX7-Kdn6lJQ.mp4/TX7-Kdn6lJQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TX7-Kdn6lJQ.m3u8/TX7-Kdn6lJQ.m3u8"}, "duration": 672, "id": "TX7-Kdn6lJQ", "title": "Meiosis: Where the sex starts", "format": "mp4", "description": "Hank gets down to the nitty gritty about meiosis, the special type of cell division that is necessary for sexual reproduction in eukaryotic organisms.", "path": "crash-course-biology-112b/", "slug": "crash-course-biology-112b", "kind": "Video", "video_id": "TX7-Kdn6lJQ", "keywords": "", "youtube_id": "TX7-Kdn6lJQ", "readable_id": "crash-course-biology-112b"}, "QjJT87nY1WI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QjJT87nY1WI.mp4/QjJT87nY1WI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QjJT87nY1WI.mp4/QjJT87nY1WI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QjJT87nY1WI.m3u8/QjJT87nY1WI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/blood-brain-barrier-and-vasogenic-edema/", "duration": 362, "id": "QjJT87nY1WI", "title": "Blood brain barrier and vasogenic edema", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "blood-brain-barrier-and-vasogenic-edema", "kind": "Video", "video_id": "QjJT87nY1WI", "keywords": "", "youtube_id": "QjJT87nY1WI", "readable_id": "blood-brain-barrier-and-vasogenic-edema"}, "MC7l96tW8V8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MC7l96tW8V8.mp4/MC7l96tW8V8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MC7l96tW8V8.mp4/MC7l96tW8V8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MC7l96tW8V8.m3u8/MC7l96tW8V8.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/linear-algebra-least-squares-approximation/", "duration": 932, "id": "MC7l96tW8V8", "title": "Least squares approximation", "format": "mp4", "description": "The least squares approximation for otherwise unsolvable equations", "slug": "linear-algebra-least-squares-approximation", "kind": "Video", "video_id": "MC7l96tW8V8", "keywords": "least, squares, approximation, solution", "youtube_id": "MC7l96tW8V8", "readable_id": "linear-algebra-least-squares-approximation"}, "MR9CrsF3D00": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MR9CrsF3D00.mp4/MR9CrsF3D00.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MR9CrsF3D00.mp4/MR9CrsF3D00.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MR9CrsF3D00.m3u8/MR9CrsF3D00.m3u8"}, "duration": 220, "id": "MR9CrsF3D00", "title": "Married taxes clarification", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/married-taxes-clarification/", "slug": "married-taxes-clarification", "kind": "Video", "video_id": "MR9CrsF3D00", "keywords": "", "youtube_id": "MR9CrsF3D00", "readable_id": "married-taxes-clarification"}, "xJf6pHqLzs0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xJf6pHqLzs0.mp4/xJf6pHqLzs0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xJf6pHqLzs0.mp4/xJf6pHqLzs0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xJf6pHqLzs0.m3u8/xJf6pHqLzs0.m3u8"}, "duration": 1155, "id": "xJf6pHqLzs0", "title": "Entropy intuition", "format": "mp4", "description": "A discussion of what entropy is and what it isn't.", "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/entropy-intuition/", "slug": "entropy-intuition", "kind": "Video", "video_id": "xJf6pHqLzs0", "keywords": "entropy, internal, energy, heat, thermodynamics", "youtube_id": "xJf6pHqLzs0", "readable_id": "entropy-intuition"}, "MRAIgJmRmag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MRAIgJmRmag.mp4/MRAIgJmRmag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MRAIgJmRmag.mp4/MRAIgJmRmag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MRAIgJmRmag.m3u8/MRAIgJmRmag.m3u8"}, "duration": 395, "id": "MRAIgJmRmag", "title": "Graphing systems of equations", "format": "mp4", "description": "Graphing Systems of Equations", "path": "graphings-systems-of-equations/", "slug": "graphings-systems-of-equations", "kind": "Video", "video_id": "MRAIgJmRmag", "keywords": "u14_l1_t1_we1, Graphings, Systems, of, Equations, CC_39336_A-REI_6, CC_39336_F-IF_7_a", "youtube_id": "MRAIgJmRmag", "readable_id": "graphings-systems-of-equations"}, "dEAk0BHBYCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dEAk0BHBYCM.mp4/dEAk0BHBYCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dEAk0BHBYCM.mp4/dEAk0BHBYCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dEAk0BHBYCM.m3u8/dEAk0BHBYCM.m3u8"}, "duration": 405, "id": "dEAk0BHBYCM", "title": "Simple Riemann approximation using rectangles", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/simple-riemann-approximation-using-rectangles/", "slug": "simple-riemann-approximation-using-rectangles", "kind": "Video", "video_id": "dEAk0BHBYCM", "keywords": "", "youtube_id": "dEAk0BHBYCM", "readable_id": "simple-riemann-approximation-using-rectangles"}, "0FufW_MZMa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0FufW_MZMa4.mp4/0FufW_MZMa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0FufW_MZMa4.mp4/0FufW_MZMa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0FufW_MZMa4.m3u8/0FufW_MZMa4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/atrial-fibrillation/", "duration": 238, "id": "0FufW_MZMa4", "title": "Atrial fibrillation (Afib)", "format": "mp4", "description": "", "slug": "atrial-fibrillation", "kind": "Video", "video_id": "0FufW_MZMa4", "keywords": "", "youtube_id": "0FufW_MZMa4", "readable_id": "atrial-fibrillation"}, "cNFLqhU4MN0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cNFLqhU4MN0.mp4/cNFLqhU4MN0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cNFLqhU4MN0.mp4/cNFLqhU4MN0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cNFLqhU4MN0.m3u8/cNFLqhU4MN0.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-5-introduction-to-bank-notes/", "duration": 529, "id": "cNFLqhU4MN0", "title": "Banking 5: Introduction to bank notes", "format": "mp4", "description": "Introduction to bank notes (which you are more familiar with than you realize).", "slug": "banking-5-introduction-to-bank-notes", "kind": "Video", "video_id": "cNFLqhU4MN0", "keywords": "federal, reserve, bank, notes, cash, currency", "youtube_id": "cNFLqhU4MN0", "readable_id": "banking-5-introduction-to-bank-notes"}, "EDlZAyhWxhk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EDlZAyhWxhk.mp4/EDlZAyhWxhk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EDlZAyhWxhk.mp4/EDlZAyhWxhk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EDlZAyhWxhk.m3u8/EDlZAyhWxhk.m3u8"}, "duration": 73, "id": "EDlZAyhWxhk", "title": "Another congruence by transformation example", "format": "mp4", "description": "", "path": "khan/math/geometry/congruent-triangles/transformations-congruence/another-congruence-by-transformation-example/", "slug": "another-congruence-by-transformation-example", "kind": "Video", "video_id": "EDlZAyhWxhk", "keywords": "", "youtube_id": "EDlZAyhWxhk", "readable_id": "another-congruence-by-transformation-example"}, "gW54YZzQsHE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gW54YZzQsHE.mp4/gW54YZzQsHE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gW54YZzQsHE.mp4/gW54YZzQsHE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gW54YZzQsHE.m3u8/gW54YZzQsHE.m3u8"}, "duration": 208, "id": "gW54YZzQsHE", "title": "Spider's motor controller", "format": "mp4", "description": "In this video we show you how to connect and wire Spider's motor controller.", "path": "khan/science/discoveries-projects/robots/spider_bot/5-attach-spider-s-motor-controller-and-wire-his-motors/", "slug": "5-attach-spider-s-motor-controller-and-wire-his-motors", "kind": "Video", "video_id": "gW54YZzQsHE", "keywords": "", "youtube_id": "gW54YZzQsHE", "readable_id": "5-attach-spider-s-motor-controller-and-wire-his-motors"}, "i78cyClvaeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i78cyClvaeg.mp4/i78cyClvaeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i78cyClvaeg.mp4/i78cyClvaeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i78cyClvaeg.m3u8/i78cyClvaeg.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/piketty-capital/", "duration": 232, "id": "i78cyClvaeg", "title": "Capital by Thomas Piketty", "format": "mp4", "description": "", "slug": "piketty-capital", "kind": "Video", "video_id": "i78cyClvaeg", "keywords": "", "youtube_id": "i78cyClvaeg", "readable_id": "piketty-capital"}, "xx9xNJlPOJo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xx9xNJlPOJo.mp4/xx9xNJlPOJo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xx9xNJlPOJo.mp4/xx9xNJlPOJo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xx9xNJlPOJo.m3u8/xx9xNJlPOJo.m3u8"}, "duration": 536, "id": "xx9xNJlPOJo", "title": "Comparative advantage specialization and gains from trade", "format": "mp4", "description": "How two parties can get better outcomes by specializing in their comparative advantage and trading", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/gains-from-trade-tutorial/comparative-advantage-specialization-and-gains-from-trade/", "slug": "comparative-advantage-specialization-and-gains-from-trade", "kind": "Video", "video_id": "xx9xNJlPOJo", "keywords": "comparative, absolute, advantage, economics, microecon", "youtube_id": "xx9xNJlPOJo", "readable_id": "comparative-advantage-specialization-and-gains-from-trade"}, "FyiwPshXyE8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FyiwPshXyE8.mp4/FyiwPshXyE8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FyiwPshXyE8.mp4/FyiwPshXyE8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FyiwPshXyE8.m3u8/FyiwPshXyE8.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-4-5/", "duration": 102, "id": "FyiwPshXyE8", "title": "5 Not a solution to an equation", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-5", "kind": "Video", "video_id": "FyiwPshXyE8", "keywords": "", "youtube_id": "FyiwPshXyE8", "readable_id": "sat-2010-may-4-5"}, "MHWmBggmIU0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MHWmBggmIU0.mp4/MHWmBggmIU0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MHWmBggmIU0.mp4/MHWmBggmIU0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MHWmBggmIU0.m3u8/MHWmBggmIU0.m3u8"}, "duration": 234, "id": "MHWmBggmIU0", "title": "Put-call parity arbitrage II", "format": "mp4", "description": "Put-Call Parity Arbitrage II", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-call-parity-arbitrage-ii/", "slug": "put-call-parity-arbitrage-ii", "kind": "Video", "video_id": "MHWmBggmIU0", "keywords": "Put-Call, Parity, Arbitrage, II", "youtube_id": "MHWmBggmIU0", "readable_id": "put-call-parity-arbitrage-ii"}, "JmHEZgAhq1Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JmHEZgAhq1Y.mp4/JmHEZgAhq1Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JmHEZgAhq1Y.mp4/JmHEZgAhq1Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JmHEZgAhq1Y.m3u8/JmHEZgAhq1Y.m3u8"}, "duration": 920, "id": "JmHEZgAhq1Y", "title": "Workshop presentation: Tal's class", "format": "mp4", "description": "High school teacher Tal shows how he used KA with his students", "path": "ka-workshop-presentation-tals-classroom/", "slug": "ka-workshop-presentation-tals-classroom", "kind": "Video", "video_id": "JmHEZgAhq1Y", "keywords": "", "youtube_id": "JmHEZgAhq1Y", "readable_id": "ka-workshop-presentation-tals-classroom"}, "L3Ka3oRD8G8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L3Ka3oRD8G8.mp4/L3Ka3oRD8G8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L3Ka3oRD8G8.mp4/L3Ka3oRD8G8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L3Ka3oRD8G8.m3u8/L3Ka3oRD8G8.m3u8"}, "path": "khan/humanities/history/euro-hist/middle-east-20th-century/sinai-palestine-and-mesopotamia-campaigns/", "duration": 593, "id": "L3Ka3oRD8G8", "title": "Sinai, Palestine and Mesopotamia campaigns", "format": "mp4", "description": "", "slug": "sinai-palestine-and-mesopotamia-campaigns", "kind": "Video", "video_id": "L3Ka3oRD8G8", "keywords": "", "youtube_id": "L3Ka3oRD8G8", "readable_id": "sinai-palestine-and-mesopotamia-campaigns"}, "B9vXathZikM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B9vXathZikM.mp4/B9vXathZikM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B9vXathZikM.mp4/B9vXathZikM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B9vXathZikM.m3u8/B9vXathZikM.m3u8"}, "duration": 272, "id": "B9vXathZikM", "title": "Jan van Eyck, Portrait of a Man in a Red Turban (Self-Portrait?), 1433", "format": "mp4", "description": "Jan van Eyck, Portrait of a Man in a Red Turban (Self-Portrait?),\u00a01433, oil on oak panel, 26 x 19 cm (The National Gallery, London)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris\n", "path": "khan/humanities/renaissance-reformation/northern-renaissance1/burgundy-netherlands/jan-van-eyck-portrait-of-a-man-self-portrait/", "slug": "jan-van-eyck-portrait-of-a-man-self-portrait", "kind": "Video", "video_id": "B9vXathZikM", "keywords": "Renaissance, van Eyck,", "youtube_id": "B9vXathZikM", "readable_id": "jan-van-eyck-portrait-of-a-man-self-portrait"}, "RhUdv0jjfcE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RhUdv0jjfcE.mp4/RhUdv0jjfcE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RhUdv0jjfcE.mp4/RhUdv0jjfcE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RhUdv0jjfcE.m3u8/RhUdv0jjfcE.m3u8"}, "duration": 350, "id": "RhUdv0jjfcE", "title": "Optimal angle for a projectile part 1", "format": "mp4", "description": null, "path": "khan/science/physics/two-dimensional-motion/optimal-projectile-angle/optimal-angle-for-a-projectile-part-1/", "slug": "optimal-angle-for-a-projectile-part-1", "kind": "Video", "video_id": "RhUdv0jjfcE", "keywords": "Optimal, angle, for, a, projectile, part, 1", "youtube_id": "RhUdv0jjfcE", "readable_id": "optimal-angle-for-a-projectile-part-1"}, "h9ZgZimXn2Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h9ZgZimXn2Q.mp4/h9ZgZimXn2Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h9ZgZimXn2Q.mp4/h9ZgZimXn2Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h9ZgZimXn2Q.m3u8/h9ZgZimXn2Q.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/why-we-do-the-same-thing-to-both-sides-basic-systems/", "duration": 493, "id": "h9ZgZimXn2Q", "title": "Why we do the same thing to both sides basic systems", "format": "mp4", "description": "", "slug": "why-we-do-the-same-thing-to-both-sides-basic-systems", "kind": "Video", "video_id": "h9ZgZimXn2Q", "keywords": "Why, we, do, the, same, thing, to, both, sides, basic, systems", "youtube_id": "h9ZgZimXn2Q", "readable_id": "why-we-do-the-same-thing-to-both-sides-basic-systems"}, "IF-8VOiEOes": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IF-8VOiEOes.mp4/IF-8VOiEOes.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IF-8VOiEOes.mp4/IF-8VOiEOes.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IF-8VOiEOes.m3u8/IF-8VOiEOes.m3u8"}, "duration": 291, "id": "IF-8VOiEOes", "title": "Exponent properties 7", "format": "mp4", "description": "Exponent Properties 7", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/exponent-properties-7/", "slug": "exponent-properties-7", "kind": "Video", "video_id": "IF-8VOiEOes", "keywords": "u11_l1_t3_we3, Exponent, Properties, CC_6_EE_1, CC_6_EE_2_c, CC_8_EE_1", "youtube_id": "IF-8VOiEOes", "readable_id": "exponent-properties-7"}, "vP23dkY0mPo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vP23dkY0mPo.mp4/vP23dkY0mPo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vP23dkY0mPo.mp4/vP23dkY0mPo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vP23dkY0mPo.m3u8/vP23dkY0mPo.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/gene-expression-and-function/", "duration": 211, "id": "vP23dkY0mPo", "title": "Gene expression and function", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "gene-expression-and-function", "kind": "Video", "video_id": "vP23dkY0mPo", "keywords": "", "youtube_id": "vP23dkY0mPo", "readable_id": "gene-expression-and-function"}, "g0iKG-ieZ2s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g0iKG-ieZ2s.mp4/g0iKG-ieZ2s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g0iKG-ieZ2s.mp4/g0iKG-ieZ2s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g0iKG-ieZ2s.m3u8/g0iKG-ieZ2s.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/britain-18c/britain-ageof-revolution/room-1730-1765/", "duration": 159, "id": "g0iKG-ieZ2s", "title": "Room: 1730-1765", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Tim Batchelor explores the period 1730-1765.\n\nLearn more about the art featured in this video:\n-\u00a0William Hogarth, The Painter and his Pug, 1745\n-\u00a0Thomas Gainsborough, Wooded Landscape with a Peasant Resting, 1747", "slug": "room-1730-1765", "kind": "Video", "video_id": "g0iKG-ieZ2s", "keywords": "Tate", "youtube_id": "g0iKG-ieZ2s", "readable_id": "room-1730-1765"}, "nqdDRpUrrdI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nqdDRpUrrdI.mp4/nqdDRpUrrdI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nqdDRpUrrdI.mp4/nqdDRpUrrdI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nqdDRpUrrdI.m3u8/nqdDRpUrrdI.m3u8"}, "duration": 207, "id": "nqdDRpUrrdI", "title": "Exploring the dark Universe: Dark matter", "format": "mp4", "description": "Astrophysicist and curator Mordecai-Mark Mac Low gives an overview of what we know about dark matter.", "path": "dark-matter/", "slug": "dark-matter", "kind": "Video", "video_id": "nqdDRpUrrdI", "keywords": "", "youtube_id": "nqdDRpUrrdI", "readable_id": "dark-matter"}, "vZOk8NnjILg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vZOk8NnjILg.mp4/vZOk8NnjILg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vZOk8NnjILg.mp4/vZOk8NnjILg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vZOk8NnjILg.m3u8/vZOk8NnjILg.m3u8"}, "duration": 647, "id": "vZOk8NnjILg", "title": "Centripetal force and acceleration intuition", "format": "mp4", "description": "The direction of the force in cases of circular motion at constant speeds", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/centripetal-force-and-acceleration-intuition/", "slug": "centripetal-force-and-acceleration-intuition", "kind": "Video", "video_id": "vZOk8NnjILg", "keywords": "gravity, tension, friction", "youtube_id": "vZOk8NnjILg", "readable_id": "centripetal-force-and-acceleration-intuition"}, "hSIVWF6VYpA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hSIVWF6VYpA.mp4/hSIVWF6VYpA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hSIVWF6VYpA.mp4/hSIVWF6VYpA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hSIVWF6VYpA.m3u8/hSIVWF6VYpA.m3u8"}, "duration": 170, "id": "hSIVWF6VYpA", "title": "Richmond Montessori School and Khan Academy", "format": "mp4", "description": "", "path": "richmond-montessori-school-khan-academy/", "slug": "richmond-montessori-school-khan-academy", "kind": "Video", "video_id": "hSIVWF6VYpA", "keywords": "", "youtube_id": "hSIVWF6VYpA", "readable_id": "richmond-montessori-school-khan-academy"}, "EHEecXYsJ9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EHEecXYsJ9w.mp4/EHEecXYsJ9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EHEecXYsJ9w.mp4/EHEecXYsJ9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EHEecXYsJ9w.m3u8/EHEecXYsJ9w.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-throat-conditions/tonsillopharyngitis-complications-diagnosis-and-treatment/", "duration": 629, "id": "EHEecXYsJ9w", "title": "Tonsillopharyngitis - Complications, diagnosis, and treatment", "format": "mp4", "description": "", "slug": "tonsillopharyngitis-complications-diagnosis-and-treatment", "kind": "Video", "video_id": "EHEecXYsJ9w", "keywords": "", "youtube_id": "EHEecXYsJ9w", "readable_id": "tonsillopharyngitis-complications-diagnosis-and-treatment"}, "W0BG49ir32E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W0BG49ir32E.mp4/W0BG49ir32E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W0BG49ir32E.mp4/W0BG49ir32E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W0BG49ir32E.m3u8/W0BG49ir32E.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/conditionals-pt4/", "duration": 547, "id": "W0BG49ir32E", "title": "Language: Conditionals part 4", "format": "mp4", "description": "In this video, Justin picks up where part 3 left off. \u00a0He introduces the Conditional Assertion Theory of conditionals, which aims to resolve the problems presented for the other theories of conditionals. In the end, Justin presents yet another problem for this radical new theory.\n\nSpeaker: Dr. Justin Khoo, Assistant Professor, MIT", "slug": "conditionals-pt4", "kind": "Video", "video_id": "W0BG49ir32E", "keywords": "", "youtube_id": "W0BG49ir32E", "readable_id": "conditionals-pt4"}, "f8GK2oEN-uI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f8GK2oEN-uI.mp4/f8GK2oEN-uI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f8GK2oEN-uI.mp4/f8GK2oEN-uI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f8GK2oEN-uI.m3u8/f8GK2oEN-uI.m3u8"}, "duration": 362, "id": "f8GK2oEN-uI", "title": "Plates moving due to convection in mantle", "format": "mp4", "description": "Plates Moving Due to Convection in Mantle", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/plates-moving-due-to-convection-in-mantle/", "slug": "plates-moving-due-to-convection-in-mantle", "kind": "Video", "video_id": "f8GK2oEN-uI", "keywords": "geology, tectonics, plate", "youtube_id": "f8GK2oEN-uI", "readable_id": "plates-moving-due-to-convection-in-mantle"}, "RXMSlFtJlEs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RXMSlFtJlEs.mp4/RXMSlFtJlEs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RXMSlFtJlEs.mp4/RXMSlFtJlEs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RXMSlFtJlEs.m3u8/RXMSlFtJlEs.m3u8"}, "duration": 481, "id": "RXMSlFtJlEs", "title": "Simplifying rational expressions example 2", "format": "mp4", "description": "u15_L1_T1_we2 Simplifying Rational Expressions", "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying-rational-expressions-example-2/", "slug": "simplifying-rational-expressions-example-2", "kind": "Video", "video_id": "RXMSlFtJlEs", "keywords": "u15_L1_T1_we2, Simplifying, Rational, Expressions, CC_39336_A-APR_6, CC_39336_A-REI_4_b, CC_39336_A-SSE_2", "youtube_id": "RXMSlFtJlEs", "readable_id": "simplifying-rational-expressions-example-2"}, "XYWFGJ2aYRU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XYWFGJ2aYRU.mp4/XYWFGJ2aYRU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XYWFGJ2aYRU.mp4/XYWFGJ2aYRU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XYWFGJ2aYRU.m3u8/XYWFGJ2aYRU.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/attribution-theory-attribution-error-and-culture/", "duration": 328, "id": "XYWFGJ2aYRU", "title": "Attribution theory - Attribution error and culture", "format": "mp4", "description": "", "slug": "attribution-theory-attribution-error-and-culture", "kind": "Video", "video_id": "XYWFGJ2aYRU", "keywords": "", "youtube_id": "XYWFGJ2aYRU", "readable_id": "attribution-theory-attribution-error-and-culture"}, "r3OcrRdExWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r3OcrRdExWk.mp4/r3OcrRdExWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r3OcrRdExWk.mp4/r3OcrRdExWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r3OcrRdExWk.m3u8/r3OcrRdExWk.m3u8"}, "duration": 627, "id": "r3OcrRdExWk", "title": "Acid-base reactions in solution", "format": "mp4", "description": "Last week, Hank talked about how stuff mixes together in solutions. Today, and for the next few weeks, he will talk about the actual reactions happening in those solutions - atoms reorganizing themselves to create whole new substances in the processes that make our world the one we know and love. This week, we focus on acids and bases and their proton-exchanging ways.\nWriters: Kim Krieger & Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem08-acid-base-reactions/", "slug": "chem08-acid-base-reactions", "kind": "Video", "video_id": "r3OcrRdExWk", "keywords": "", "youtube_id": "r3OcrRdExWk", "readable_id": "chem08-acid-base-reactions"}, "jTCZfMMcHBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jTCZfMMcHBo.mp4/jTCZfMMcHBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jTCZfMMcHBo.mp4/jTCZfMMcHBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jTCZfMMcHBo.m3u8/jTCZfMMcHBo.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/interpreting_linear_functions/slope-example/", "duration": 243, "id": "jTCZfMMcHBo", "title": "Interpreting linear tables word problems example 1", "format": "mp4", "description": "Slope Example", "slug": "slope-example", "kind": "Video", "video_id": "jTCZfMMcHBo", "keywords": "U04_L1_T1_we2, Slope, Example, CC_8_EE_5, CC_39336_F-LE_1_b", "youtube_id": "jTCZfMMcHBo", "readable_id": "slope-example"}, "ccaCl1GKdJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ccaCl1GKdJ0.mp4/ccaCl1GKdJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ccaCl1GKdJ0.mp4/ccaCl1GKdJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ccaCl1GKdJ0.m3u8/ccaCl1GKdJ0.m3u8"}, "path": "khan/economics-finance-domain/core-finance/derivative-securities/credit-default-swaps-tut/credit-default-swaps-cds-intro/", "duration": 200, "id": "ccaCl1GKdJ0", "title": "Credit default swaps (CDS) intro", "format": "mp4", "description": "Introduction to credit default swaps and why they can be dangerous", "slug": "credit-default-swaps-cds-intro", "kind": "Video", "video_id": "ccaCl1GKdJ0", "keywords": "credit, default, swaps, CDS", "youtube_id": "ccaCl1GKdJ0", "readable_id": "credit-default-swaps-cds-intro"}, "-MaD9Ycy3a4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-MaD9Ycy3a4.mp4/-MaD9Ycy3a4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-MaD9Ycy3a4.mp4/-MaD9Ycy3a4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-MaD9Ycy3a4.m3u8/-MaD9Ycy3a4.m3u8"}, "duration": 575, "id": "-MaD9Ycy3a4", "title": "Capacitors in series", "format": "mp4", "description": "The effect on voltage and current when capacitors are constructed in series in a circuit. By David Santo Pietro. ", "path": "khan/test-prep/mcat/physical-processes/capacitors/capacitors-series/", "slug": "capacitors-series", "kind": "Video", "video_id": "-MaD9Ycy3a4", "keywords": "capacitors, series, circuits", "youtube_id": "-MaD9Ycy3a4", "readable_id": "capacitors-series"}, "MOoGlIpNLkM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MOoGlIpNLkM.mp4/MOoGlIpNLkM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MOoGlIpNLkM.mp4/MOoGlIpNLkM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MOoGlIpNLkM.m3u8/MOoGlIpNLkM.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section3/sat-5-home-colors/", "duration": 187, "id": "MOoGlIpNLkM", "title": "5 Home colors", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-5-home-colors", "kind": "Video", "video_id": "MOoGlIpNLkM", "keywords": "", "youtube_id": "MOoGlIpNLkM", "readable_id": "sat-5-home-colors"}, "kY8FEq0teOs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kY8FEq0teOs.mp4/kY8FEq0teOs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kY8FEq0teOs.mp4/kY8FEq0teOs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kY8FEq0teOs.m3u8/kY8FEq0teOs.m3u8"}, "path": "khan/science/health-and-medicine/nervous-system-and-sensory-infor/nervous-system-introduction/electrotonic-action-potential/", "duration": 618, "id": "kY8FEq0teOs", "title": "Electrotonic and action potential", "format": "mp4", "description": "", "slug": "electrotonic-action-potential", "kind": "Video", "video_id": "kY8FEq0teOs", "keywords": "", "youtube_id": "kY8FEq0teOs", "readable_id": "electrotonic-action-potential"}, "okxU0GB2eCM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/okxU0GB2eCM.mp4/okxU0GB2eCM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/okxU0GB2eCM.mp4/okxU0GB2eCM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/okxU0GB2eCM.m3u8/okxU0GB2eCM.m3u8"}, "path": "khan/humanities/medieval-world/medieval-book/making-medieval-book/medieval-textbook/", "duration": 405, "id": "okxU0GB2eCM", "title": "A Medieval textbook", "format": "mp4", "description": "Dr. Erik Kwakkel and Dr. Beth Harris look at a medieval textbook: Boethius, De institutione arithmetica, c. 1100 (National Library of the Netherlands, The Hague, \u00a0MS 78 E 59). With special thanks to Ed van der Vlist, Curator of Medieval Manuscripts, Koninklijke Bibliotheek, National Library of the Netherlands", "slug": "medieval-textbook", "kind": "Video", "video_id": "okxU0GB2eCM", "keywords": "art history, middle ages, manuscripts, ", "youtube_id": "okxU0GB2eCM", "readable_id": "medieval-textbook"}, "kJSOqlcFpJw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kJSOqlcFpJw.mp4/kJSOqlcFpJw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kJSOqlcFpJw.mp4/kJSOqlcFpJw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kJSOqlcFpJw.m3u8/kJSOqlcFpJw.m3u8"}, "duration": 690, "id": "kJSOqlcFpJw", "title": "Becoming a red giant", "format": "mp4", "description": "Becoming a Red Giant", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/becoming-a-red-giant/", "slug": "becoming-a-red-giant", "kind": "Video", "video_id": "kJSOqlcFpJw", "keywords": "Becoming, Red, Giant, stellar, evolution", "youtube_id": "kJSOqlcFpJw", "readable_id": "becoming-a-red-giant"}, "mGxomKWfJXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mGxomKWfJXs.mp4/mGxomKWfJXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mGxomKWfJXs.mp4/mGxomKWfJXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mGxomKWfJXs.m3u8/mGxomKWfJXs.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/cerebral-cortex/", "duration": 502, "id": "mGxomKWfJXs", "title": "Cerebral cortex", "format": "mp4", "description": "", "slug": "cerebral-cortex", "kind": "Video", "video_id": "mGxomKWfJXs", "keywords": "", "youtube_id": "mGxomKWfJXs", "readable_id": "cerebral-cortex"}, "LJmFbcaxDPE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LJmFbcaxDPE.mp4/LJmFbcaxDPE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LJmFbcaxDPE.mp4/LJmFbcaxDPE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LJmFbcaxDPE.m3u8/LJmFbcaxDPE.m3u8"}, "duration": 894, "id": "LJmFbcaxDPE", "title": "Buffers and Hendersen-Hasselbalch", "format": "mp4", "description": "Buffers and the Hendersen-Hasselbalch equation", "path": "khan/science/chemistry/acid-base-equilibrium/buffer-solutions/buffers-and-hendersen-hasselbalch/", "slug": "buffers-and-hendersen-hasselbalch", "kind": "Video", "video_id": "LJmFbcaxDPE", "keywords": "Buffers, and, the, Hendersen-Hasselbalch, equation", "youtube_id": "LJmFbcaxDPE", "readable_id": "buffers-and-hendersen-hasselbalch"}, "XFmovUAWQUQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XFmovUAWQUQ.mp4/XFmovUAWQUQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XFmovUAWQUQ.mp4/XFmovUAWQUQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XFmovUAWQUQ.m3u8/XFmovUAWQUQ.m3u8"}, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-threatened/biodiversity-global/how-does-climate-change-affect-biodiversity/", "duration": 727, "id": "XFmovUAWQUQ", "title": "How does climate change affect biodiversity?", "format": "mp4", "description": "", "slug": "how-does-climate-change-affect-biodiversity", "kind": "Video", "video_id": "XFmovUAWQUQ", "keywords": "", "youtube_id": "XFmovUAWQUQ", "readable_id": "how-does-climate-change-affect-biodiversity"}, "k68CPfcehTE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k68CPfcehTE.mp4/k68CPfcehTE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k68CPfcehTE.mp4/k68CPfcehTE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k68CPfcehTE.m3u8/k68CPfcehTE.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/2-digit-times-1-digit-example-no-carrying/", "duration": 111, "id": "k68CPfcehTE", "title": "Multiplying: 2 digits times 1 digit", "format": "mp4", "description": "Let's start by solving a basic multiplication problem. No carrying of numbers in this example!", "slug": "2-digit-times-1-digit-example-no-carrying", "kind": "Video", "video_id": "k68CPfcehTE", "keywords": "", "youtube_id": "k68CPfcehTE", "readable_id": "2-digit-times-1-digit-example-no-carrying"}, "oxpr5dhqqyw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oxpr5dhqqyw.mp4/oxpr5dhqqyw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oxpr5dhqqyw.mp4/oxpr5dhqqyw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oxpr5dhqqyw.m3u8/oxpr5dhqqyw.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/the-battery-electromagnetism/", "duration": 386, "id": "oxpr5dhqqyw", "title": "The battery and electromagnetism", "format": "mp4", "description": "The key technologies in our story.", "slug": "the-battery-electromagnetism", "kind": "Video", "video_id": "oxpr5dhqqyw", "keywords": "battery, electromagnetism", "youtube_id": "oxpr5dhqqyw", "readable_id": "the-battery-electromagnetism"}, "rm3NjcSmFFo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rm3NjcSmFFo.mp4/rm3NjcSmFFo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rm3NjcSmFFo.mp4/rm3NjcSmFFo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rm3NjcSmFFo.m3u8/rm3NjcSmFFo.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/losing-tennis-balls/", "duration": 213, "id": "rm3NjcSmFFo", "title": "Losing tennis balls", "format": "mp4", "description": "", "slug": "losing-tennis-balls", "kind": "Video", "video_id": "rm3NjcSmFFo", "keywords": "", "youtube_id": "rm3NjcSmFFo", "readable_id": "losing-tennis-balls"}, "-cR6FzM1zNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-cR6FzM1zNE.mp4/-cR6FzM1zNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-cR6FzM1zNE.mp4/-cR6FzM1zNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-cR6FzM1zNE.m3u8/-cR6FzM1zNE.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/area-polar-graphs/cardioid-area/", "duration": 386, "id": "-cR6FzM1zNE", "title": "Area enclosed by cardioid", "format": "mp4", "description": "", "slug": "cardioid-area", "kind": "Video", "video_id": "-cR6FzM1zNE", "keywords": "", "youtube_id": "-cR6FzM1zNE", "readable_id": "cardioid-area"}, "tLQURiMoLcA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tLQURiMoLcA.mp4/tLQURiMoLcA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tLQURiMoLcA.mp4/tLQURiMoLcA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tLQURiMoLcA.m3u8/tLQURiMoLcA.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-4-3/", "duration": 140, "id": "tLQURiMoLcA", "title": "4 Equivalent rental costs", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-3", "kind": "Video", "video_id": "tLQURiMoLcA", "keywords": "", "youtube_id": "tLQURiMoLcA", "readable_id": "sat-2010-may-4-3"}, "mSVrqKZDRF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mSVrqKZDRF4.mp4/mSVrqKZDRF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mSVrqKZDRF4.mp4/mSVrqKZDRF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mSVrqKZDRF4.m3u8/mSVrqKZDRF4.m3u8"}, "duration": 482, "id": "mSVrqKZDRF4", "title": "Implicit differentiation", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/implicit-differentiation-1/", "slug": "implicit-differentiation-1", "kind": "Video", "video_id": "mSVrqKZDRF4", "keywords": "", "youtube_id": "mSVrqKZDRF4", "readable_id": "implicit-differentiation-1"}, "X_YXTWU2maY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X_YXTWU2maY.mp4/X_YXTWU2maY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X_YXTWU2maY.mp4/X_YXTWU2maY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X_YXTWU2maY.m3u8/X_YXTWU2maY.m3u8"}, "duration": 284, "id": "X_YXTWU2maY", "title": "An introduction to enzyme kinetics", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/enzymes/an-introduction-to-enzyme-kinetics/", "slug": "an-introduction-to-enzyme-kinetics", "kind": "Video", "video_id": "X_YXTWU2maY", "keywords": "", "youtube_id": "X_YXTWU2maY", "readable_id": "an-introduction-to-enzyme-kinetics"}, "d4WE4SnhBDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d4WE4SnhBDU.mp4/d4WE4SnhBDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d4WE4SnhBDU.mp4/d4WE4SnhBDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d4WE4SnhBDU.m3u8/d4WE4SnhBDU.m3u8"}, "duration": 287, "id": "d4WE4SnhBDU", "title": "Smoking in 1945", "format": "mp4", "description": "", "path": "smoking-1945-extrapolation/", "slug": "smoking-1945-extrapolation", "kind": "Video", "video_id": "d4WE4SnhBDU", "keywords": "", "youtube_id": "d4WE4SnhBDU", "readable_id": "smoking-1945-extrapolation"}, "3xCzhdVtdMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3xCzhdVtdMI.mp4/3xCzhdVtdMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3xCzhdVtdMI.mp4/3xCzhdVtdMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3xCzhdVtdMI.m3u8/3xCzhdVtdMI.m3u8"}, "duration": 504, "id": "3xCzhdVtdMI", "title": "Law of supply", "format": "mp4", "description": "Introduction to the Law of Supply", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/supply-curve-tutorial/law-of-supply/", "slug": "law-of-supply", "kind": "Video", "video_id": "3xCzhdVtdMI", "keywords": "economics, supply, demand", "youtube_id": "3xCzhdVtdMI", "readable_id": "law-of-supply"}, "GpBD_1pT_mw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GpBD_1pT_mw.mp4/GpBD_1pT_mw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GpBD_1pT_mw.mp4/GpBD_1pT_mw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GpBD_1pT_mw.m3u8/GpBD_1pT_mw.m3u8"}, "duration": 59, "id": "GpBD_1pT_mw", "title": "Art Terms in Action: Emulsion", "format": "mp4", "description": "Learn why Willem de Kooning added raw egg to his paint. To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.\u00a0", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-emulsion/", "slug": "moma-art-term-emulsion", "kind": "Video", "video_id": "GpBD_1pT_mw", "keywords": "", "youtube_id": "GpBD_1pT_mw", "readable_id": "moma-art-term-emulsion"}, "JS3wsNY17LY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JS3wsNY17LY.mp4/JS3wsNY17LY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JS3wsNY17LY.mp4/JS3wsNY17LY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JS3wsNY17LY.m3u8/JS3wsNY17LY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-lung-cancer/lung-cancer-diagnosis/", "duration": 352, "id": "JS3wsNY17LY", "title": "Lung cancer diagnosis", "format": "mp4", "description": "How do we know a patient has lung cancer? Learn how health professionals use x-rays, computed tomography (CT scans), positron emission tomography (PET scans), and blood results to confirm lung cancer in patients.", "slug": "lung-cancer-diagnosis", "kind": "Video", "video_id": "JS3wsNY17LY", "keywords": "", "youtube_id": "JS3wsNY17LY", "readable_id": "lung-cancer-diagnosis"}, "SUoqA9srY1Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SUoqA9srY1Q.mp4/SUoqA9srY1Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SUoqA9srY1Q.mp4/SUoqA9srY1Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SUoqA9srY1Q.m3u8/SUoqA9srY1Q.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/lin-alg-finding-projection-onto-subspace-with-orthonormal-basis-example/", "duration": 402, "id": "SUoqA9srY1Q", "title": "Finding projection onto subspace with orthonormal basis example", "format": "mp4", "description": "Example of finding the transformation matrix for the projection onto a subspace with an orthonormal basis", "slug": "lin-alg-finding-projection-onto-subspace-with-orthonormal-basis-example", "kind": "Video", "video_id": "SUoqA9srY1Q", "keywords": "basis, orthonormal, projection, proj", "youtube_id": "SUoqA9srY1Q", "readable_id": "lin-alg-finding-projection-onto-subspace-with-orthonormal-basis-example"}, "sZRkERfzzn4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sZRkERfzzn4.mp4/sZRkERfzzn4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sZRkERfzzn4.mp4/sZRkERfzzn4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sZRkERfzzn4.m3u8/sZRkERfzzn4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/cap-util-inflation/inflation-deflation-3-obama-stimulus-plan/", "duration": 800, "id": "sZRkERfzzn4", "title": "Inflation and deflation 3: Obama stimulus plan", "format": "mp4", "description": "Is the stimulus large enough to offset the demand shock caused by the contraction in credit? Will it lead to inflation?", "slug": "inflation-deflation-3-obama-stimulus-plan", "kind": "Video", "video_id": "sZRkERfzzn4", "keywords": "obama, stimulus, inflation, deflation", "youtube_id": "sZRkERfzzn4", "readable_id": "inflation-deflation-3-obama-stimulus-plan"}, "CecgFWTg9pQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CecgFWTg9pQ.mp4/CecgFWTg9pQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CecgFWTg9pQ.mp4/CecgFWTg9pQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CecgFWTg9pQ.m3u8/CecgFWTg9pQ.m3u8"}, "duration": 268, "id": "CecgFWTg9pQ", "title": "Geometric series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/geometric-series-introduction/", "slug": "geometric-series-introduction", "kind": "Video", "video_id": "CecgFWTg9pQ", "keywords": "", "youtube_id": "CecgFWTg9pQ", "readable_id": "geometric-series-introduction"}, "mvye6X_0upA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mvye6X_0upA.mp4/mvye6X_0upA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mvye6X_0upA.mp4/mvye6X_0upA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mvye6X_0upA.m3u8/mvye6X_0upA.m3u8"}, "duration": 394, "id": "mvye6X_0upA", "title": "One-tailed and two-tailed tests", "format": "mp4", "description": "One-Tailed and Two-Tailed Tests", "path": "khan/math/probability/statistics-inferential/hypothesis-testing/one-tailed-and-two-tailed-tests/", "slug": "one-tailed-and-two-tailed-tests", "kind": "Video", "video_id": "mvye6X_0upA", "keywords": "One-Tailed, and, Two-Tailed, Tests", "youtube_id": "mvye6X_0upA", "readable_id": "one-tailed-and-two-tailed-tests"}, "kgsiYzcosDY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kgsiYzcosDY.mp4/kgsiYzcosDY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kgsiYzcosDY.mp4/kgsiYzcosDY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kgsiYzcosDY.m3u8/kgsiYzcosDY.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-9-similar-triangles/", "duration": 177, "id": "kgsiYzcosDY", "title": "9 Similar triangles", "format": "mp4", "description": "", "slug": "sat-9-similar-triangles", "kind": "Video", "video_id": "kgsiYzcosDY", "keywords": "", "youtube_id": "kgsiYzcosDY", "readable_id": "sat-9-similar-triangles"}, "p3MPAgnbMk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p3MPAgnbMk8.mp4/p3MPAgnbMk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p3MPAgnbMk8.mp4/p3MPAgnbMk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p3MPAgnbMk8.m3u8/p3MPAgnbMk8.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/asch-conformity-studies-asch-line-studies/", "duration": 596, "id": "p3MPAgnbMk8", "title": "Asch conformity studies (Asch line studies)", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "asch-conformity-studies-asch-line-studies", "kind": "Video", "video_id": "p3MPAgnbMk8", "keywords": "", "youtube_id": "p3MPAgnbMk8", "readable_id": "asch-conformity-studies-asch-line-studies"}, "9-9_v1wSPBQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9-9_v1wSPBQ.mp4/9-9_v1wSPBQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9-9_v1wSPBQ.mp4/9-9_v1wSPBQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9-9_v1wSPBQ.m3u8/9-9_v1wSPBQ.m3u8"}, "duration": 692, "id": "9-9_v1wSPBQ", "title": "Bitcoin: Transaction records", "format": "mp4", "description": "The basic mechanics of a bitcoin transaction between two parties and what is included within a given bitcoin transaction record.", "path": "bitcoin-transaction-records/", "slug": "bitcoin-transaction-records", "kind": "Video", "video_id": "9-9_v1wSPBQ", "keywords": "bitcoin, currency", "youtube_id": "9-9_v1wSPBQ", "readable_id": "bitcoin-transaction-records"}, "YYEgq1bweN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YYEgq1bweN4.mp4/YYEgq1bweN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YYEgq1bweN4.mp4/YYEgq1bweN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YYEgq1bweN4.m3u8/YYEgq1bweN4.m3u8"}, "duration": 783, "id": "YYEgq1bweN4", "title": "Detectable civilizations in our galaxy 1", "format": "mp4", "description": "A framework for thinking about how many detectable civilizations are out there.", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/life-in-universe-topic/detectable-civilizations-in-our-galaxy-1/", "slug": "detectable-civilizations-in-our-galaxy-1", "kind": "Video", "video_id": "YYEgq1bweN4", "keywords": "drake, equation, cosmology, seti", "youtube_id": "YYEgq1bweN4", "readable_id": "detectable-civilizations-in-our-galaxy-1"}, "4LmIyMyAuN0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4LmIyMyAuN0.mp4/4LmIyMyAuN0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4LmIyMyAuN0.mp4/4LmIyMyAuN0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4LmIyMyAuN0.m3u8/4LmIyMyAuN0.m3u8"}, "duration": 555, "id": "4LmIyMyAuN0", "title": "Quasars", "format": "mp4", "description": "Quasars", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/quasars/quasars/", "slug": "quasars", "kind": "Video", "video_id": "4LmIyMyAuN0", "keywords": "Quasars, black, hole", "youtube_id": "4LmIyMyAuN0", "readable_id": "quasars"}, "Xs3DzydSKu8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xs3DzydSKu8.mp4/Xs3DzydSKu8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xs3DzydSKu8.mp4/Xs3DzydSKu8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xs3DzydSKu8.m3u8/Xs3DzydSKu8.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/mona-hatoum/", "duration": 255, "id": "Xs3DzydSKu8", "title": "Mona Hatoum's self-contradictory objects", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nPalestinian, London-based artist Mona Hatoum creates art that challenging our perceptions of everyday objects. \"Often my work is about conflict and contradiction, and that contradiction can be within the actual object,\" she explains. One of her sculptures is a simple wheelchair, an unremarkable object apart from the fact that its handles have been replaced with knives. Another is a baby\u2019s cot, but one with the bottom taken out and replaced with taut, menacing wires. Sometimes the materials she works with are unexpected, like the soap she used to draw a map of a peace agreement between Israel and Palestine.\nThere are many internal contradictions at work in Hatoum\u2019s art. What purpose do they serve? Do they get you thinking about commonplace objects in uncommon ways?\n\nClick here to learn more about Mona Hatoum and her work.\n", "slug": "mona-hatoum", "kind": "Video", "video_id": "Xs3DzydSKu8", "keywords": "Tate", "youtube_id": "Xs3DzydSKu8", "readable_id": "mona-hatoum"}, "TXrOpjG4dUs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TXrOpjG4dUs.mp4/TXrOpjG4dUs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TXrOpjG4dUs.mp4/TXrOpjG4dUs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TXrOpjG4dUs.m3u8/TXrOpjG4dUs.m3u8"}, "duration": 676, "id": "TXrOpjG4dUs", "title": "The business cycle", "format": "mp4", "description": "The business cycle and how it may be driven by emotion", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/business-cycle-tutorial/the-business-cycle/", "slug": "the-business-cycle", "kind": "Video", "video_id": "TXrOpjG4dUs", "keywords": "macroeconomics, depression, recession, expansion", "youtube_id": "TXrOpjG4dUs", "readable_id": "the-business-cycle"}, "xWTzH7RV80g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xWTzH7RV80g.mp4/xWTzH7RV80g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xWTzH7RV80g.mp4/xWTzH7RV80g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xWTzH7RV80g.m3u8/xWTzH7RV80g.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/brancusi-bird-in-space-1928/", "duration": 159, "id": "xWTzH7RV80g", "title": "Brancusi, Bird in Space", "format": "mp4", "description": "Constantin Brancusi, Bird in Space, bronze, limestone, wood, 1928 (MoMA) Speakers: Dr. Steven Zucker, Dr. Beth Harris", "slug": "brancusi-bird-in-space-1928", "kind": "Video", "video_id": "xWTzH7RV80g", "keywords": "smarthistory, art history, Brancusi, MoMA", "youtube_id": "xWTzH7RV80g", "readable_id": "brancusi-bird-in-space-1928"}, "Xwf3ZsGYzCU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xwf3ZsGYzCU.mp4/Xwf3ZsGYzCU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xwf3ZsGYzCU.mp4/Xwf3ZsGYzCU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xwf3ZsGYzCU.m3u8/Xwf3ZsGYzCU.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/autoionization-of-water/", "duration": 455, "id": "Xwf3ZsGYzCU", "title": "Autoionization of water", "format": "mp4", "description": "", "slug": "autoionization-of-water", "kind": "Video", "video_id": "Xwf3ZsGYzCU", "keywords": "", "youtube_id": "Xwf3ZsGYzCU", "readable_id": "autoionization-of-water"}, "cPOjnyjii-4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cPOjnyjii-4.mp4/cPOjnyjii-4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cPOjnyjii-4.mp4/cPOjnyjii-4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cPOjnyjii-4.m3u8/cPOjnyjii-4.m3u8"}, "duration": 639, "id": "cPOjnyjii-4", "title": "Speed of shadow of diving bird", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/rates_of_change/speed-of-shadow-of-diving-bird/", "slug": "speed-of-shadow-of-diving-bird", "kind": "Video", "video_id": "cPOjnyjii-4", "keywords": "", "youtube_id": "cPOjnyjii-4", "readable_id": "speed-of-shadow-of-diving-bird"}, "5MA0NQObHUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5MA0NQObHUk.mp4/5MA0NQObHUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5MA0NQObHUk.mp4/5MA0NQObHUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5MA0NQObHUk.m3u8/5MA0NQObHUk.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/dave-smith/kauffman-dave-smith-4/", "duration": 195, "id": "5MA0NQObHUk", "title": "Top of the World, Ma", "format": "mp4", "description": "When Dave Smith came to the harsh realization and he alone was in charge of his future, he took a resourceful route to become an expert in his field. Mixing the desire to make it with the imagination to fake it, he went to great lengths to connect with TekScape IT customers and make them believe that his tiny organization was big enough to solve their trickiest problems.", "slug": "kauffman-dave-smith-4", "kind": "Video", "video_id": "5MA0NQObHUk", "keywords": "", "youtube_id": "5MA0NQObHUk", "readable_id": "kauffman-dave-smith-4"}, "Hw2_hv439Fg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hw2_hv439Fg.mp4/Hw2_hv439Fg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hw2_hv439Fg.mp4/Hw2_hv439Fg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hw2_hv439Fg.m3u8/Hw2_hv439Fg.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/neo-classicism/david-marat/", "duration": 383, "id": "Hw2_hv439Fg", "title": "Jacques-Louis David, The Death of Marat", "format": "mp4", "description": "Jacques-Louis David, The Death of Marat, 1793, oil on canvas, 65 x 50-1/2 inches (Royal Museums of Fine Arts of Belgium, Brussels)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "david-marat", "kind": "Video", "video_id": "Hw2_hv439Fg", "keywords": "David, Jacque-Louis David, Neoclassicism, Neo-Classicism, France, French Revolution, Marat, Jean-Paul Marat, Corday, Charlotte Corday, Jacobins, Louis XVI, murder, bathtub, Brussels", "youtube_id": "Hw2_hv439Fg", "readable_id": "david-marat"}, "2fijnNzktDI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2fijnNzktDI.mp4/2fijnNzktDI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2fijnNzktDI.mp4/2fijnNzktDI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2fijnNzktDI.m3u8/2fijnNzktDI.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/duccio-maesta-front-1308-11/", "duration": 384, "id": "2fijnNzktDI", "title": "Duccio, Maesta (front)", "format": "mp4", "description": "Duccio, Maesta (front), 1308-11 (Museo dell'Opera Metropolitana del Duomo, Siena) Speakers: Dr. Beth Harris and Dr. Steven Zucker.\n\nDuring this period, and for hundreds of years, Italy was not a unified country, but rather was divided into many small countries we call city-states.\u00a0Florence, Siena, Milan, Venice\u2014these were essentially independent nations with their own governments\u2014and they were at war with each other.\nThese city-states also had independent cultures with their own distinct styles in painting and sculpture. Siena had a unique style that emphasized decorative surfaces, sinuous lines, elongated figures and the heavy use of gold.\n\nDuccio was the founder of the Sienese style and his work was quite different from the Florentine painter Giotto. Giotto emphasized a greater naturalism\u2014creating figures who are more monumental (large, heavy and with a greater sense of accurate proportion) and a greater illusion of three-dimensional space.\u00a0\n\nContemporaneous description of the procession that brought this painting to Siena Cathedral (or Duomo):\n\nAt this time the altarpiece for the high altar was finished and the picture which was called the \"Madonna with the large eyes\" or Our Lady of Grace, that now hangs over the altar of St. Boniface, was taken down. Now this Our Lady was she who had hearkened to the people of Siena when the Florentines were routed at Monte Aperto, and her place was changed because the new one was made, which is far more beautiful and devout and larger, and is painted on the back with the stories of the Old and New Testaments. And on the day that it was carried to the Duomo the shops were shut, and the bishop conducted a great and devout company of priests and friars in solemn procession, accompanied by the nine signiors, and all the officers of the commune, and all the people, and one after another the worthiest with lighted candles in their hands took places near the picture, and behind came the women and children with great devotion. And they accompanied the said picture up to the Duomo, making the procession around the Campo, as is the custom, all the bells ringing joyously, out of reverence for so noble a picture as this. And this picture Duccio di Niccol\u00f2 the painter made, and it was made in the house of the Muciatti outside the gate aStalloreggi. And all that day persons, praying God and His Mother, who is our advocate, to defend us by their infinite mercy from every adversity and all evil, and keep us from the hands of traitors and of the enemies of Siena.\n\nEnglish translation: Charles Eliot Norton,\u00a0Historical Studies of Church-Buildings in the Middle Ages: Venice, Siena, Florence\u00a0(New York: Harper & Brothers, 1880), 144-45\n\nItalian text:\u00a0G. Milanesi,\u00a0Documenti per la storia dell'arte senese\u00a0(Siena: 1854, I), 169.\n\n\u00a0\n", "slug": "duccio-maesta-front-1308-11", "kind": "Video", "video_id": "2fijnNzktDI", "keywords": "Duccio, Maesta, Siena, Renaissance, Khan Academy, Smarthistory, Art History", "youtube_id": "2fijnNzktDI", "readable_id": "duccio-maesta-front-1308-11"}, "C-qg2Lcy6Ts": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C-qg2Lcy6Ts.mp4/C-qg2Lcy6Ts.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C-qg2Lcy6Ts.mp4/C-qg2Lcy6Ts.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C-qg2Lcy6Ts.m3u8/C-qg2Lcy6Ts.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-19/", "duration": 634, "id": "C-qg2Lcy6Ts", "title": "GMAT: Data sufficiency 19", "format": "mp4", "description": "84-86, pg. 285", "slug": "gmat-data-sufficiency-19", "kind": "Video", "video_id": "C-qg2Lcy6Ts", "keywords": "gmat, data, sufficiency", "youtube_id": "C-qg2Lcy6Ts", "readable_id": "gmat-data-sufficiency-19"}, "jFn0dyU5wUw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jFn0dyU5wUw.mp4/jFn0dyU5wUw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jFn0dyU5wUw.mp4/jFn0dyU5wUw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jFn0dyU5wUw.m3u8/jFn0dyU5wUw.m3u8"}, "duration": 805, "id": "jFn0dyU5wUw", "title": "Baby circulation right after birth", "format": "mp4", "description": "Watch how the blood flows through the baby's circulation and compare it to what happens in the fetus. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/baby-circulation-right-after-birth/", "slug": "baby-circulation-right-after-birth", "kind": "Video", "video_id": "jFn0dyU5wUw", "keywords": "", "youtube_id": "jFn0dyU5wUw", "readable_id": "baby-circulation-right-after-birth"}, "iqHZp79FhO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iqHZp79FhO8.mp4/iqHZp79FhO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iqHZp79FhO8.mp4/iqHZp79FhO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iqHZp79FhO8.m3u8/iqHZp79FhO8.m3u8"}, "duration": 323, "id": "iqHZp79FhO8", "title": "5 volt power distribution board", "format": "mp4", "description": "In this video we hack apart a bread board to create a 5 volt power distribution strip. The 5 volts comes from the center pin in the motor controller and the negative or ground comes from the ground pin on the motor controller.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-5-volt-power-distribution-board/", "slug": "bit-zee-s-5-volt-power-distribution-board", "kind": "Video", "video_id": "iqHZp79FhO8", "keywords": "motor controller 5 volt power distribution bread board proto board bit-zee bot hack make diy robot bot", "youtube_id": "iqHZp79FhO8", "readable_id": "bit-zee-s-5-volt-power-distribution-board"}, "Qz0n0ZwdCpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qz0n0ZwdCpQ.mp4/Qz0n0ZwdCpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qz0n0ZwdCpQ.mp4/Qz0n0ZwdCpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qz0n0ZwdCpQ.m3u8/Qz0n0ZwdCpQ.m3u8"}, "duration": 211, "id": "Qz0n0ZwdCpQ", "title": "Design review (calibration)", "format": "mp4", "description": "Final step in the coin detector challenge", "path": "khan/science/discoveries-projects/lego-robotics/lego-coin-detector/lego-coinchallenge/", "slug": "lego-coinchallenge", "kind": "Video", "video_id": "Qz0n0ZwdCpQ", "keywords": "", "youtube_id": "Qz0n0ZwdCpQ", "readable_id": "lego-coinchallenge"}, "c02vjunQsJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c02vjunQsJM.mp4/c02vjunQsJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c02vjunQsJM.mp4/c02vjunQsJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c02vjunQsJM.m3u8/c02vjunQsJM.m3u8"}, "duration": 269, "id": "c02vjunQsJM", "title": "Interpreting histograms", "format": "mp4", "description": "Learn how to read histograms, which summarize data by sorting it into buckets.", "path": "interpreting-histograms/", "slug": "interpreting-histograms", "kind": "Video", "video_id": "c02vjunQsJM", "keywords": "", "youtube_id": "c02vjunQsJM", "readable_id": "interpreting-histograms"}, "e41Wh7jhoxc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e41Wh7jhoxc.mp4/e41Wh7jhoxc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e41Wh7jhoxc.mp4/e41Wh7jhoxc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e41Wh7jhoxc.m3u8/e41Wh7jhoxc.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/jacopo-tintoretto-the-miracle-of-the-slave/", "duration": 423, "id": "e41Wh7jhoxc", "title": "Tintoretto, the Miracle of the Slave", "format": "mp4", "description": "Jacopo Tintoretto, The Miracle of the Slave, 1548, oil on canvas, 415 x 541 cm (Accademia, Venice)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "jacopo-tintoretto-the-miracle-of-the-slave", "kind": "Video", "video_id": "e41Wh7jhoxc", "keywords": "Tintoretto Slave Venetian Venice Renaissance art history painting", "youtube_id": "e41Wh7jhoxc", "readable_id": "jacopo-tintoretto-the-miracle-of-the-slave"}, "rCnb7vapl5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rCnb7vapl5o.mp4/rCnb7vapl5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rCnb7vapl5o.mp4/rCnb7vapl5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rCnb7vapl5o.m3u8/rCnb7vapl5o.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/argument-and-evidence/", "duration": 385, "id": "rCnb7vapl5o", "title": "Epistemology: Argument and evidence", "format": "mp4", "description": "Greg discusses the role of argument and evidence in deciding what to believe, both in philosophy and more generally.\n\nSpeaker: Dr.\u00a0Greg Ganssle, Senior Fellow, Rivendell Institute, Yale University", "slug": "argument-and-evidence", "kind": "Video", "video_id": "rCnb7vapl5o", "keywords": "", "youtube_id": "rCnb7vapl5o", "readable_id": "argument-and-evidence"}, "S3TlDyT2lyg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S3TlDyT2lyg.mp4/S3TlDyT2lyg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S3TlDyT2lyg.mp4/S3TlDyT2lyg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S3TlDyT2lyg.m3u8/S3TlDyT2lyg.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/niobid-krater/", "duration": 365, "id": "S3TlDyT2lyg", "title": "Attic Red-Figure: Niobid Painter, \"Niobid Krater\"", "format": "mp4", "description": "Niobid Painter, \"Niobid Krater,\" Attic red-figure calyx-krater, c. 460-50 B.C.E., 54 x 56 cm\u00a0(Mus\u00e9e du Louvre)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "niobid-krater", "kind": "Video", "video_id": "S3TlDyT2lyg", "keywords": "Greek, ancient, attic, red-figure, ceramics, pot, Niobe, Niobid, Diana, Apollo, Herakles, Marathon, Athena, Artemis", "youtube_id": "S3TlDyT2lyg", "readable_id": "niobid-krater"}, "kpqSeXpiM6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kpqSeXpiM6k.mp4/kpqSeXpiM6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kpqSeXpiM6k.mp4/kpqSeXpiM6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kpqSeXpiM6k.m3u8/kpqSeXpiM6k.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/geithner-plan/geithner-5-a-better-solution/", "duration": 618, "id": "kpqSeXpiM6k", "title": "Geithner plan 6: A better solution", "format": "mp4", "description": "A better way to solve the \"liquidity\" and \"price discovery\" problem.", "slug": "geithner-5-a-better-solution", "kind": "Video", "video_id": "kpqSeXpiM6k", "keywords": "toxic, asset, price, discovery, geithner, obama", "youtube_id": "kpqSeXpiM6k", "readable_id": "geithner-5-a-better-solution"}, "2QeDRsxSF9M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2QeDRsxSF9M.mp4/2QeDRsxSF9M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2QeDRsxSF9M.mp4/2QeDRsxSF9M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2QeDRsxSF9M.m3u8/2QeDRsxSF9M.m3u8"}, "path": "khan/math/probability/statistics-inferential/chi-square/pearson-s-chi-square-test-goodness-of-fit/", "duration": 708, "id": "2QeDRsxSF9M", "title": "Pearson's chi square test (goodness of fit)", "format": "mp4", "description": "Pearson's Chi Square Test (Goodness of Fit)", "slug": "pearson-s-chi-square-test-goodness-of-fit", "kind": "Video", "video_id": "2QeDRsxSF9M", "keywords": "Pearson's, Chi, Square, Test, Goodness, of, Fit", "youtube_id": "2QeDRsxSF9M", "readable_id": "pearson-s-chi-square-test-goodness-of-fit"}, "Z7C4cz2HkeY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z7C4cz2HkeY.mp4/Z7C4cz2HkeY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z7C4cz2HkeY.mp4/Z7C4cz2HkeY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z7C4cz2HkeY.m3u8/Z7C4cz2HkeY.m3u8"}, "duration": 927, "id": "Z7C4cz2HkeY", "title": "Introduction to the income statement", "format": "mp4", "description": "The income statement, revenue, gross profit, operating profit, net income, ROA and ROE.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/introduction-to-the-income-statement/", "slug": "introduction-to-the-income-statement", "kind": "Video", "video_id": "Z7C4cz2HkeY", "keywords": "finance, income, statement, ROA, ROE, gross, profit, revenue", "youtube_id": "Z7C4cz2HkeY", "readable_id": "introduction-to-the-income-statement"}, "a19T5CX2b-g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a19T5CX2b-g.mp4/a19T5CX2b-g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a19T5CX2b-g.mp4/a19T5CX2b-g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a19T5CX2b-g.m3u8/a19T5CX2b-g.m3u8"}, "path": "khan/science/health-and-medicine/hematologic-system/hematologic-system-introduction/oxygen-content/", "duration": 673, "id": "a19T5CX2b-g", "title": "Oxygen content", "format": "mp4", "description": "Learn how oxygen content (CaO2) is related to Hemoglobin concentration (Hb), oxygen saturation (SaO2), and the partial pressure of oxygen (PaO2). Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "oxygen-content", "kind": "Video", "video_id": "a19T5CX2b-g", "keywords": "", "youtube_id": "a19T5CX2b-g", "readable_id": "oxygen-content"}, "tp4I9J5viS4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tp4I9J5viS4.mp4/tp4I9J5viS4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tp4I9J5viS4.mp4/tp4I9J5viS4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tp4I9J5viS4.m3u8/tp4I9J5viS4.m3u8"}, "duration": 770, "id": "tp4I9J5viS4", "title": "Adaptive value of behavioral traits", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/behavior-and-genetics/adaptive-value-of-behavioral-traits/", "slug": "adaptive-value-of-behavioral-traits", "kind": "Video", "video_id": "tp4I9J5viS4", "keywords": "", "youtube_id": "tp4I9J5viS4", "readable_id": "adaptive-value-of-behavioral-traits"}, "aiwy2fNF_ZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aiwy2fNF_ZQ.mp4/aiwy2fNF_ZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aiwy2fNF_ZQ.mp4/aiwy2fNF_ZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aiwy2fNF_ZQ.m3u8/aiwy2fNF_ZQ.m3u8"}, "duration": 332, "id": "aiwy2fNF_ZQ", "title": "Representing function over interval of convergence", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/power-series-algebra/rep-function-with-geometric-series/", "slug": "rep-function-with-geometric-series", "kind": "Video", "video_id": "aiwy2fNF_ZQ", "keywords": "", "youtube_id": "aiwy2fNF_ZQ", "readable_id": "rep-function-with-geometric-series"}, "oT4F_reQXAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oT4F_reQXAU.mp4/oT4F_reQXAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oT4F_reQXAU.mp4/oT4F_reQXAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oT4F_reQXAU.m3u8/oT4F_reQXAU.m3u8"}, "path": "khan/partner-content/big-history-project/life/what-is-life/bhp-how-did-life-begin-and-change/", "duration": 371, "id": "oT4F_reQXAU", "title": "How Did Life Begin and Change?", "format": "mp4", "description": "A closer look at the Goldilocks Conditions for life, and an animated voyage through evolution on Earth.", "slug": "bhp-how-did-life-begin-and-change", "kind": "Video", "video_id": "oT4F_reQXAU", "keywords": "", "youtube_id": "oT4F_reQXAU", "readable_id": "bhp-how-did-life-begin-and-change"}, "hJOU3EK085M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hJOU3EK085M.mp4/hJOU3EK085M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hJOU3EK085M.mp4/hJOU3EK085M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hJOU3EK085M.m3u8/hJOU3EK085M.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/holbein/hans-holbein-the-younger-christina-of-denmark-duchess-of-milan-1538/", "duration": 196, "id": "hJOU3EK085M", "title": "Holbein the Younger, Christina of Denmark", "format": "mp4", "description": "Hans Holbein the Younger, Christina of Denmark, Duchess of Milan, 1538, oil on oak, 179.1 x 82.6 cm (The National Gallery, London)", "slug": "hans-holbein-the-younger-christina-of-denmark-duchess-of-milan-1538", "kind": "Video", "video_id": "hJOU3EK085M", "keywords": "Hans Holbein, Holbein, Christina of Denmark, Duchess of Milan, 1538, National Gallery, London, German, Portrait, Henry VIII, English, nobility, painting, Google Art Project, Smarthistory, Khan Academy, OER, art history", "youtube_id": "hJOU3EK085M", "readable_id": "hans-holbein-the-younger-christina-of-denmark-duchess-of-milan-1538"}, "N0Ambe4FwQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N0Ambe4FwQk.mp4/N0Ambe4FwQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N0Ambe4FwQk.mp4/N0Ambe4FwQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N0Ambe4FwQk.m3u8/N0Ambe4FwQk.m3u8"}, "duration": 344, "id": "N0Ambe4FwQk", "title": "Early photography: making daguerreotypes", "format": "mp4", "description": "The daguerreotype is a one-of-a-kind, highly detailed photographic image on a polished copper plate coated with silver. It was introduced in 1839 and became the first popular photographic medium. Love art? Follow us on Google+", "path": "khan/humanities/becoming-modern/early-photography/early-photography-daguerreotypes/", "slug": "early-photography-daguerreotypes", "kind": "Video", "video_id": "N0Ambe4FwQk", "keywords": "", "youtube_id": "N0Ambe4FwQk", "readable_id": "early-photography-daguerreotypes"}, "vTYxY4IpmF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vTYxY4IpmF8.mp4/vTYxY4IpmF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vTYxY4IpmF8.mp4/vTYxY4IpmF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vTYxY4IpmF8.m3u8/vTYxY4IpmF8.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/estimating-infinite-series/alternating-series-remainder/", "duration": 621, "id": "vTYxY4IpmF8", "title": "Alternating series remainder", "format": "mp4", "description": "", "slug": "alternating-series-remainder", "kind": "Video", "video_id": "vTYxY4IpmF8", "keywords": "", "youtube_id": "vTYxY4IpmF8", "readable_id": "alternating-series-remainder"}, "3A-nAw2tY_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3A-nAw2tY_4.mp4/3A-nAw2tY_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3A-nAw2tY_4.mp4/3A-nAw2tY_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3A-nAw2tY_4.m3u8/3A-nAw2tY_4.m3u8"}, "duration": 345, "id": "3A-nAw2tY_4", "title": "Cost-push inflation", "format": "mp4", "description": "How an oil shock can slow the economy while causing inflation", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/historic-ad-as-scenarios/cost-push-inflation/", "slug": "cost-push-inflation", "kind": "Video", "video_id": "3A-nAw2tY_4", "keywords": "Cost, Push, Inflation", "youtube_id": "3A-nAw2tY_4", "readable_id": "cost-push-inflation"}, "VidnbCEOGdg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VidnbCEOGdg.mp4/VidnbCEOGdg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VidnbCEOGdg.mp4/VidnbCEOGdg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VidnbCEOGdg.m3u8/VidnbCEOGdg.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/solving-one-step-equations/", "duration": 114, "id": "VidnbCEOGdg", "title": "Simple equations of the form x + a = b", "format": "mp4", "description": "Here's another one-step equation to solve. Unlike the previous two that involved multiplication and division, this one adds a number to the variable. Which operation is opposite of addition?", "slug": "solving-one-step-equations", "kind": "Video", "video_id": "VidnbCEOGdg", "keywords": "u10_L1_T1_we2, Solving, One-Step, Equations, CC_6_EE_2, CC_6_EE_2_c", "youtube_id": "VidnbCEOGdg", "readable_id": "solving-one-step-equations"}, "ahib7LGDysQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ahib7LGDysQ.mp4/ahib7LGDysQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ahib7LGDysQ.mp4/ahib7LGDysQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ahib7LGDysQ.m3u8/ahib7LGDysQ.m3u8"}, "duration": 146, "id": "ahib7LGDysQ", "title": "Interpreting integer expressions", "format": "mp4", "description": "Interpreting integer expressions", "path": "interpreting-integer-expressions/", "slug": "interpreting-integer-expressions", "kind": "Video", "video_id": "ahib7LGDysQ", "keywords": "", "youtube_id": "ahib7LGDysQ", "readable_id": "interpreting-integer-expressions"}, "GFLkou8NvJo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GFLkou8NvJo.mp4/GFLkou8NvJo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GFLkou8NvJo.mp4/GFLkou8NvJo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GFLkou8NvJo.m3u8/GFLkou8NvJo.m3u8"}, "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/wau-the-most-amazing-ancient-and-singular-number/", "duration": 319, "id": "GFLkou8NvJo", "title": "Wau: The most amazing, ancient, and singular number", "format": "mp4", "description": "What other amazing properties of Wau can you think of? Leave them in the comments.", "slug": "wau-the-most-amazing-ancient-and-singular-number", "kind": "Video", "video_id": "GFLkou8NvJo", "keywords": "wau", "youtube_id": "GFLkou8NvJo", "readable_id": "wau-the-most-amazing-ancient-and-singular-number"}, "LWtXthfG9_M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LWtXthfG9_M.mp4/LWtXthfG9_M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LWtXthfG9_M.mp4/LWtXthfG9_M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LWtXthfG9_M.m3u8/LWtXthfG9_M.m3u8"}, "duration": 874, "id": "LWtXthfG9_M", "title": "Hemoglobin", "format": "mp4", "description": "Hemoglobin and its role in the circulatory system", "path": "khan/science/health-and-medicine/hematologic-system/hematologic-system-introduction/hemoglobin/", "slug": "hemoglobin", "kind": "Video", "video_id": "LWtXthfG9_M", "keywords": "hemoglobin, red, blood, cell, allosteric, cooperative, heme", "youtube_id": "LWtXthfG9_M", "readable_id": "hemoglobin"}, "q0AkvTchhPI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q0AkvTchhPI.mp4/q0AkvTchhPI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q0AkvTchhPI.mp4/q0AkvTchhPI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q0AkvTchhPI.m3u8/q0AkvTchhPI.m3u8"}, "duration": 674, "id": "q0AkvTchhPI", "title": "GMAT: Math 42", "format": "mp4", "description": "205-206, pg. 180", "path": "khan/test-prep/gmat/problem-solving/gmat-math-42/", "slug": "gmat-math-42", "kind": "Video", "video_id": "q0AkvTchhPI", "keywords": "gmat, math, problem, solving", "youtube_id": "q0AkvTchhPI", "readable_id": "gmat-math-42"}, "frBJEYvyd-8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/frBJEYvyd-8.mp4/frBJEYvyd-8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/frBJEYvyd-8.mp4/frBJEYvyd-8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/frBJEYvyd-8.m3u8/frBJEYvyd-8.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/alg-basics-absolute-value/absolute-value-and-number-lines/", "duration": 339, "id": "frBJEYvyd-8", "title": "Absolute value and number lines", "format": "mp4", "description": "One easy way to think of absolute value is the distance it is from zero. To do that, a number line comes in handy. Watch and learn.", "slug": "absolute-value-and-number-lines", "kind": "Video", "video_id": "frBJEYvyd-8", "keywords": "Absolute, Value, and, Number, Lines, CC_6_NS_7, CC_6_NS_7_a, CC_6_NS_7_b, CC_6_NS_7_c", "youtube_id": "frBJEYvyd-8", "readable_id": "absolute-value-and-number-lines"}, "gDJtOIxDu78": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gDJtOIxDu78.mp4/gDJtOIxDu78.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gDJtOIxDu78.mp4/gDJtOIxDu78.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gDJtOIxDu78.m3u8/gDJtOIxDu78.m3u8"}, "duration": 780, "id": "gDJtOIxDu78", "title": "pH of a weak base", "format": "mp4", "description": "pH of .2 M of NH3 (weak base).", "path": "khan/science/chemistry/acids-and-bases-topic/copy-of-acid-base-equilibria/ph-of-a-weak-base/", "slug": "ph-of-a-weak-base", "kind": "Video", "video_id": "gDJtOIxDu78", "keywords": "chemistry, ph, base", "youtube_id": "gDJtOIxDu78", "readable_id": "ph-of-a-weak-base"}, "TDoGrbpJJ14": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TDoGrbpJJ14.mp4/TDoGrbpJJ14.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TDoGrbpJJ14.mp4/TDoGrbpJJ14.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TDoGrbpJJ14.m3u8/TDoGrbpJJ14.m3u8"}, "duration": 1106, "id": "TDoGrbpJJ14", "title": "Bacteria", "format": "mp4", "description": "Introduction to bacteria", "path": "khan/science/biology/her/tree-of-life/bacteria/", "slug": "bacteria", "kind": "Video", "video_id": "TDoGrbpJJ14", "keywords": "biology, bacteria", "youtube_id": "TDoGrbpJJ14", "readable_id": "bacteria"}, "E8HagppxzxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E8HagppxzxY.mp4/E8HagppxzxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E8HagppxzxY.mp4/E8HagppxzxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E8HagppxzxY.m3u8/E8HagppxzxY.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-10/", "duration": 644, "id": "E8HagppxzxY", "title": "GMAT: Math 10", "format": "mp4", "description": "55-60, pg. 159", "slug": "gmat-math-10", "kind": "Video", "video_id": "E8HagppxzxY", "keywords": "gmat, math, problem, solving", "youtube_id": "E8HagppxzxY", "readable_id": "gmat-math-10"}, "f2ExnG0mGxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f2ExnG0mGxg.mp4/f2ExnG0mGxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f2ExnG0mGxg.mp4/f2ExnG0mGxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f2ExnG0mGxg.m3u8/f2ExnG0mGxg.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-cultural-obstacles/", "duration": 101, "id": "f2ExnG0mGxg", "title": "Student story: Overcoming cultural obstacles to college", "format": "mp4", "description": "", "slug": "ss-cultural-obstacles", "kind": "Video", "video_id": "f2ExnG0mGxg", "keywords": "", "youtube_id": "f2ExnG0mGxg", "readable_id": "ss-cultural-obstacles"}, "w_GZqhAR0I4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w_GZqhAR0I4.mp4/w_GZqhAR0I4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w_GZqhAR0I4.mp4/w_GZqhAR0I4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w_GZqhAR0I4.m3u8/w_GZqhAR0I4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-4-mark-to-model-vs-mark-to-market/", "duration": 684, "id": "w_GZqhAR0I4", "title": "Bailout 4: Mark-to-model vs. mark-to-market", "format": "mp4", "description": "Different ways of accounting for an asset. Mark-to-model vs. mark-to-market.", "slug": "bailout-4-mark-to-model-vs-mark-to-market", "kind": "Video", "video_id": "w_GZqhAR0I4", "keywords": "bailout, fed, treasury, insolvency, credit, crunch, accounting, model, mark, market", "youtube_id": "w_GZqhAR0I4", "readable_id": "bailout-4-mark-to-model-vs-mark-to-market"}, "XspzfNSSqyk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XspzfNSSqyk.mp4/XspzfNSSqyk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XspzfNSSqyk.mp4/XspzfNSSqyk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XspzfNSSqyk.m3u8/XspzfNSSqyk.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/trial-division-primality-test-using-a-sieve-prime-adventure-part-5/", "duration": 322, "id": "XspzfNSSqyk", "title": "Primality test with sieve", "format": "mp4", "description": "An attempt at an optimal trial division primality test using the Sieve of Eratosthenes.", "slug": "trial-division-primality-test-using-a-sieve-prime-adventure-part-5", "kind": "Video", "video_id": "XspzfNSSqyk", "keywords": "trial division, primality test, sieve", "youtube_id": "XspzfNSSqyk", "readable_id": "trial-division-primality-test-using-a-sieve-prime-adventure-part-5"}, "TQ8F_yPwqzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TQ8F_yPwqzA.mp4/TQ8F_yPwqzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TQ8F_yPwqzA.mp4/TQ8F_yPwqzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TQ8F_yPwqzA.m3u8/TQ8F_yPwqzA.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/brunelleschi-dome-of-the-cathedral-of-florence-1420-36/", "duration": 352, "id": "TQ8F_yPwqzA", "title": "Brunelleschi, Dome of the Cathedral of Florence.", "format": "mp4", "description": "Brunelleschi, Dome of the Cathedral of Florence, 1420-36. \u00a0Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "brunelleschi-dome-of-the-cathedral-of-florence-1420-36", "kind": "Video", "video_id": "TQ8F_yPwqzA", "keywords": "art history, smarthistory, Brunelleschi, Duomo, Dome, Florence", "youtube_id": "TQ8F_yPwqzA", "readable_id": "brunelleschi-dome-of-the-cathedral-of-florence-1420-36"}, "W9trSYt8mQI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W9trSYt8mQI.mp4/W9trSYt8mQI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W9trSYt8mQI.mp4/W9trSYt8mQI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W9trSYt8mQI.m3u8/W9trSYt8mQI.m3u8"}, "duration": 231, "id": "W9trSYt8mQI", "title": "The Real Thing: Contemporary art from China", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nThis exhibition at Tate Liverpool explores contemporary art from China, aiming to convey the sheer diversity, confidence and ambition of art being made in China today. These predominantly young artists have chosen to remain in China, unlike many of the generation before them, and the majority of the work on show is seen for the first time outside the country. Curator Karen Smith describes the show.", "path": "contemporary-china/", "slug": "contemporary-china", "kind": "Video", "video_id": "W9trSYt8mQI", "keywords": "Tate", "youtube_id": "W9trSYt8mQI", "readable_id": "contemporary-china"}, "A_lV-XArVeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A_lV-XArVeE.mp4/A_lV-XArVeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A_lV-XArVeE.mp4/A_lV-XArVeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A_lV-XArVeE.m3u8/A_lV-XArVeE.m3u8"}, "duration": 622, "id": "A_lV-XArVeE", "title": "Review of revenue and cost graphs for a monopoly", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolies-tutorial/review-of-revenue-and-cost-graphs-for-a-monopoly-1/", "slug": "review-of-revenue-and-cost-graphs-for-a-monopoly-1", "kind": "Video", "video_id": "A_lV-XArVeE", "keywords": "", "youtube_id": "A_lV-XArVeE", "readable_id": "review-of-revenue-and-cost-graphs-for-a-monopoly-1"}, "pJzmiywagfY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pJzmiywagfY.mp4/pJzmiywagfY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pJzmiywagfY.mp4/pJzmiywagfY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pJzmiywagfY.m3u8/pJzmiywagfY.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/linear-algebra-cross-product-introduction/", "duration": 947, "id": "pJzmiywagfY", "title": "Cross product introduction", "format": "mp4", "description": "Introduction to the cross product", "slug": "linear-algebra-cross-product-introduction", "kind": "Video", "video_id": "pJzmiywagfY", "keywords": "Linear, Algebra, Vectors, cross, product", "youtube_id": "pJzmiywagfY", "readable_id": "linear-algebra-cross-product-introduction"}, "vCAFlt4pQSQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vCAFlt4pQSQ.mp4/vCAFlt4pQSQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vCAFlt4pQSQ.mp4/vCAFlt4pQSQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vCAFlt4pQSQ.m3u8/vCAFlt4pQSQ.m3u8"}, "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem_proof/divergence-theorem-proof-part-1/", "duration": 509, "id": "vCAFlt4pQSQ", "title": "Divergence theorem proof (part 1)", "format": "mp4", "description": "Setting up the proof for the divergence theorem", "slug": "divergence-theorem-proof-part-1", "kind": "Video", "video_id": "vCAFlt4pQSQ", "keywords": "", "youtube_id": "vCAFlt4pQSQ", "readable_id": "divergence-theorem-proof-part-1"}, "OJ-wajo6oa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OJ-wajo6oa4.mp4/OJ-wajo6oa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OJ-wajo6oa4.mp4/OJ-wajo6oa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OJ-wajo6oa4.m3u8/OJ-wajo6oa4.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/regrouping-borrowing-twice-example/", "duration": 306, "id": "OJ-wajo6oa4", "title": "Regrouping (borrowing) twice example", "format": "mp4", "description": "", "slug": "regrouping-borrowing-twice-example", "kind": "Video", "video_id": "OJ-wajo6oa4", "keywords": "", "youtube_id": "OJ-wajo6oa4", "readable_id": "regrouping-borrowing-twice-example"}, "D5lZ3thuEeA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D5lZ3thuEeA.mp4/D5lZ3thuEeA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D5lZ3thuEeA.mp4/D5lZ3thuEeA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D5lZ3thuEeA.m3u8/D5lZ3thuEeA.m3u8"}, "path": "khan/math/basic-geo/basic-geo-shapes/basic-geo-classifying-shapes/scalene-isosceles-equilateral-acute-right-obtuse/", "duration": 360, "id": "D5lZ3thuEeA", "title": "Triangles: categorization by angle or equal sides.", "format": "mp4", "description": "Scalene, isosceles, equilateral, acute, right, obtuse. All are types of triangles but what makes them special depends on the method of categorization. Watch this outstanding explanation.", "slug": "scalene-isosceles-equilateral-acute-right-obtuse", "kind": "Video", "video_id": "D5lZ3thuEeA", "keywords": "", "youtube_id": "D5lZ3thuEeA", "readable_id": "scalene-isosceles-equilateral-acute-right-obtuse"}, "8-5DTsl1V5k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8-5DTsl1V5k.mp4/8-5DTsl1V5k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8-5DTsl1V5k.mp4/8-5DTsl1V5k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8-5DTsl1V5k.m3u8/8-5DTsl1V5k.m3u8"}, "path": "khan/humanities/art-1010/beginners-guide-20-21/representation-abstraction-looking-at-millais-and-newman/", "duration": 510, "id": "8-5DTsl1V5k", "title": "Representation and abstraction: Millais's Ophelia and Newman's Vir Heroicus Sublimis", "format": "mp4", "description": "Representation & Abstraction: Looking at Millais and Newman\nJohn Everett Millais, Ophelia, 1851-2 (Tate Britain) and Barnett Newman, Vir Heroicus Sublimus, 1950-51 (MoMA)\n\nA conversation with Sal Khan, Beth Harris & Steven Zucker", "slug": "representation-abstraction-looking-at-millais-and-newman", "kind": "Video", "video_id": "8-5DTsl1V5k", "keywords": "art history, khan academy, smarthistory, abstract art, abstraction, illusion, modern art, art", "youtube_id": "8-5DTsl1V5k", "readable_id": "representation-abstraction-looking-at-millais-and-newman"}, "c7ByaI3T7Dc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c7ByaI3T7Dc.mp4/c7ByaI3T7Dc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c7ByaI3T7Dc.mp4/c7ByaI3T7Dc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c7ByaI3T7Dc.m3u8/c7ByaI3T7Dc.m3u8"}, "duration": 607, "id": "c7ByaI3T7Dc", "title": "Partial derivatives of vector-valued functions", "format": "mp4", "description": "Partial Derivatives of Vector-Valued Functions", "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/partial-derivatives-of-vector-valued-functions/", "slug": "partial-derivatives-of-vector-valued-functions", "kind": "Video", "video_id": "c7ByaI3T7Dc", "keywords": "Partial, Derivatives, of, Vector-Valued, Functions", "youtube_id": "c7ByaI3T7Dc", "readable_id": "partial-derivatives-of-vector-valued-functions"}, "GB9Rqsah2gs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GB9Rqsah2gs.mp4/GB9Rqsah2gs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GB9Rqsah2gs.mp4/GB9Rqsah2gs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GB9Rqsah2gs.m3u8/GB9Rqsah2gs.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-area-circumference/radius-change-impact/", "duration": 211, "id": "GB9Rqsah2gs", "title": "Impact of a radius change on the area of a circle", "format": "mp4", "description": "If we change the radius of a circle, how does the circumference and area change?", "slug": "radius-change-impact", "kind": "Video", "video_id": "GB9Rqsah2gs", "keywords": "", "youtube_id": "GB9Rqsah2gs", "readable_id": "radius-change-impact"}, "wDdIwv7H3Sg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wDdIwv7H3Sg.mp4/wDdIwv7H3Sg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wDdIwv7H3Sg.mp4/wDdIwv7H3Sg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wDdIwv7H3Sg.m3u8/wDdIwv7H3Sg.m3u8"}, "duration": 200, "id": "wDdIwv7H3Sg", "title": "Richard Branson - Chairman of the Virgin Group", "format": "mp4", "description": "Richard Branson, Chairman of the Virgin Group, shares his story as a successful entrepreneur with a diverse portfolio.", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/richard-branson/kauffman-richard-branson/", "slug": "kauffman-richard-branson", "kind": "Video", "video_id": "wDdIwv7H3Sg", "keywords": "", "youtube_id": "wDdIwv7H3Sg", "readable_id": "kauffman-richard-branson"}, "vhY3zQ6h49o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vhY3zQ6h49o.mp4/vhY3zQ6h49o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vhY3zQ6h49o.mp4/vhY3zQ6h49o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vhY3zQ6h49o.m3u8/vhY3zQ6h49o.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-lack-of-high-school-support-obstacle/", "duration": 81, "id": "vhY3zQ6h49o", "title": "Student story: Overcoming lack of high school support as an obstacle to college", "format": "mp4", "description": "", "slug": "ss-lack-of-high-school-support-obstacle", "kind": "Video", "video_id": "vhY3zQ6h49o", "keywords": "", "youtube_id": "vhY3zQ6h49o", "readable_id": "ss-lack-of-high-school-support-obstacle"}, "0lSTXtwPuOU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0lSTXtwPuOU.mp4/0lSTXtwPuOU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0lSTXtwPuOU.mp4/0lSTXtwPuOU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0lSTXtwPuOU.m3u8/0lSTXtwPuOU.m3u8"}, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-fractions-of-shapes/halves-and-fourths/", "duration": 145, "id": "0lSTXtwPuOU", "title": "Halves and fourths", "format": "mp4", "description": "Learn how to divide shapes into two or four equal sections.", "slug": "halves-and-fourths", "kind": "Video", "video_id": "0lSTXtwPuOU", "keywords": "", "youtube_id": "0lSTXtwPuOU", "readable_id": "halves-and-fourths"}, "391txUI76gM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/391txUI76gM.mp4/391txUI76gM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/391txUI76gM.mp4/391txUI76gM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/391txUI76gM.m3u8/391txUI76gM.m3u8"}, "duration": 517, "id": "391txUI76gM", "title": "Introduction to Newton's law of gravitation", "format": "mp4", "description": "A little bit on gravity", "path": "khan/science/physics/newton-gravitation/gravity-newtonian/introduction-to-newton-s-law-of-gravitation/", "slug": "introduction-to-newton-s-law-of-gravitation", "kind": "Video", "video_id": "391txUI76gM", "keywords": "physics, newton, gravity, gravitation, force", "youtube_id": "391txUI76gM", "readable_id": "introduction-to-newton-s-law-of-gravitation"}, "e40HkNHHscA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e40HkNHHscA.mp4/e40HkNHHscA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e40HkNHHscA.mp4/e40HkNHHscA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e40HkNHHscA.m3u8/e40HkNHHscA.m3u8"}, "duration": 328, "id": "e40HkNHHscA", "title": "Ancient temples of Nara Japan", "format": "mp4", "description": "Learn about the Buddhist art and architecture of Nara, Japan.", "path": "temples-of-nara/", "slug": "temples-of-nara", "kind": "Video", "video_id": "e40HkNHHscA", "keywords": "", "youtube_id": "e40HkNHHscA", "readable_id": "temples-of-nara"}, "iV6_wTrkd70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iV6_wTrkd70.mp4/iV6_wTrkd70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iV6_wTrkd70.mp4/iV6_wTrkd70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iV6_wTrkd70.m3u8/iV6_wTrkd70.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/leonardo-da-vinci-last-supper-1495-98/", "duration": 753, "id": "iV6_wTrkd70", "title": "Leonardo, Last Supper", "format": "mp4", "description": "Leonardo da Vinci, Last Supper, oil, tempera, fresco, 1495-98 (Santa Maria delle Grazie, Milan) Speakers: Dr. Beth Harris, Dr. Steven Zucker http://smarthistory.org/leonardo-last-supper.html", "slug": "leonardo-da-vinci-last-supper-1495-98", "kind": "Video", "video_id": "iV6_wTrkd70", "keywords": "Leonardo, Last Supper Smarthistory, Art History, Milan", "youtube_id": "iV6_wTrkd70", "readable_id": "leonardo-da-vinci-last-supper-1495-98"}, "J33nVRyTeyU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J33nVRyTeyU.mp4/J33nVRyTeyU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J33nVRyTeyU.mp4/J33nVRyTeyU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J33nVRyTeyU.m3u8/J33nVRyTeyU.m3u8"}, "duration": 861, "id": "J33nVRyTeyU", "title": "20th Century capitalism and regulation in the United States", "format": "mp4", "description": "Overview of cycles of regulation, de-regulation and government in 20th century US capitalism", "path": "khan/humanities/history/history-survey/us-history/20th-century-capitalism-and-regulation-in-the-united-states/", "slug": "20th-century-capitalism-and-regulation-in-the-united-states", "kind": "Video", "video_id": "J33nVRyTeyU", "keywords": "capitalism, cycles, regulation, government", "youtube_id": "J33nVRyTeyU", "readable_id": "20th-century-capitalism-and-regulation-in-the-united-states"}, "IOzZVmgK3IM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IOzZVmgK3IM.mp4/IOzZVmgK3IM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IOzZVmgK3IM.mp4/IOzZVmgK3IM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IOzZVmgK3IM.m3u8/IOzZVmgK3IM.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-6-bank-notes-and-checks/", "duration": 662, "id": "IOzZVmgK3IM", "title": "Banking 6: Bank notes and checks", "format": "mp4", "description": "More on how bank notes and checks can be used.", "slug": "banking-6-bank-notes-and-checks", "kind": "Video", "video_id": "IOzZVmgK3IM", "keywords": "banking, currency, checks, gold, finance", "youtube_id": "IOzZVmgK3IM", "readable_id": "banking-6-bank-notes-and-checks"}, "_uDb0ZdGb8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_uDb0ZdGb8w.mp4/_uDb0ZdGb8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_uDb0ZdGb8w.mp4/_uDb0ZdGb8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_uDb0ZdGb8w.m3u8/_uDb0ZdGb8w.m3u8"}, "duration": 253, "id": "_uDb0ZdGb8w", "title": "Lower bound on forward settlement price", "format": "mp4", "description": "Lower Bound on Forward Settlement Price", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/lower-bound-on-forward-settlement-price/", "slug": "lower-bound-on-forward-settlement-price", "kind": "Video", "video_id": "_uDb0ZdGb8w", "keywords": "Lower, Bound, on, Forward, Settlement, Price", "youtube_id": "_uDb0ZdGb8w", "readable_id": "lower-bound-on-forward-settlement-price"}, "WV3MXLAfIi4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WV3MXLAfIi4.mp4/WV3MXLAfIi4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WV3MXLAfIi4.mp4/WV3MXLAfIi4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WV3MXLAfIi4.m3u8/WV3MXLAfIi4.m3u8"}, "path": "khan/humanities/art-americas/us-art-19c/realism-us/winslow-homer-the-life-line-1884/", "duration": 246, "id": "WV3MXLAfIi4", "title": "Homer, The Life Line", "format": "mp4", "description": "Winslow Homer, The Life Line, 1884, oil on canvas, 28-5/8 x 44-3/4 inches / 72.7 x 113.7 cm (Philadelphia Museum of Art). Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "winslow-homer-the-life-line-1884", "kind": "Video", "video_id": "WV3MXLAfIi4", "keywords": "Winslow Homer, Homer, The Life Line, Life Line, 1884, Philadelphia Museum of Art, Philadelphia, Studio Building, American, painting, rescue, art history, art, Khan Academy, Google Art Project, Smarthistory, OER", "youtube_id": "WV3MXLAfIi4", "readable_id": "winslow-homer-the-life-line-1884"}, "tzqZsPjHFVQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tzqZsPjHFVQ.mp4/tzqZsPjHFVQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tzqZsPjHFVQ.mp4/tzqZsPjHFVQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tzqZsPjHFVQ.m3u8/tzqZsPjHFVQ.m3u8"}, "duration": 640, "id": "tzqZsPjHFVQ", "title": "Population genetics: When Darwin met Mendel", "format": "mp4", "description": "Hank talks about population genetics, which helps to explain the evolution of populations over time by combing the principles of Mendel and Darwin, and by means of the Hardy-Weinberg equation.", "path": "crash-course-biology-117/", "slug": "crash-course-biology-117", "kind": "Video", "video_id": "tzqZsPjHFVQ", "keywords": "", "youtube_id": "tzqZsPjHFVQ", "readable_id": "crash-course-biology-117"}, "FksgVpM_iXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FksgVpM_iXs.mp4/FksgVpM_iXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FksgVpM_iXs.mp4/FksgVpM_iXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FksgVpM_iXs.m3u8/FksgVpM_iXs.m3u8"}, "duration": 416, "id": "FksgVpM_iXs", "title": "Non-linear systems of equations 3", "format": "mp4", "description": "Non-Linear Systems of Equations 3", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/non-linear-systems-of-equations-3/", "slug": "non-linear-systems-of-equations-3", "kind": "Video", "video_id": "FksgVpM_iXs", "keywords": "U10_L2_T2_we3, Non-Linear, Systems, of, Equations, CC_39336_A-REI_10, CC_39336_F-IF_7_a", "youtube_id": "FksgVpM_iXs", "readable_id": "non-linear-systems-of-equations-3"}, "DtlFQ_nNaQM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DtlFQ_nNaQM.mp4/DtlFQ_nNaQM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DtlFQ_nNaQM.mp4/DtlFQ_nNaQM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DtlFQ_nNaQM.m3u8/DtlFQ_nNaQM.m3u8"}, "duration": 156, "id": "DtlFQ_nNaQM", "title": "Review of China US currency situation", "format": "mp4", "description": "Review of China US currency situation", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/review-of-china-us-currency-situation/", "slug": "review-of-china-us-currency-situation", "kind": "Video", "video_id": "DtlFQ_nNaQM", "keywords": "Review, of, China, US, currency, situation", "youtube_id": "DtlFQ_nNaQM", "readable_id": "review-of-china-us-currency-situation"}, "dXB3cUGnaxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dXB3cUGnaxQ.mp4/dXB3cUGnaxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dXB3cUGnaxQ.mp4/dXB3cUGnaxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dXB3cUGnaxQ.m3u8/dXB3cUGnaxQ.m3u8"}, "duration": 623, "id": "dXB3cUGnaxQ", "title": "Chi-square distribution introduction", "format": "mp4", "description": "Chi-Square Distribution Introduction", "path": "khan/math/probability/statistics-inferential/chi-square/chi-square-distribution-introduction/", "slug": "chi-square-distribution-introduction", "kind": "Video", "video_id": "dXB3cUGnaxQ", "keywords": "Chi-Square, Distribution, Introduction, Chi-Squared", "youtube_id": "dXB3cUGnaxQ", "readable_id": "chi-square-distribution-introduction"}, "_Lj_F9GADa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_Lj_F9GADa4.mp4/_Lj_F9GADa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_Lj_F9GADa4.mp4/_Lj_F9GADa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_Lj_F9GADa4.m3u8/_Lj_F9GADa4.m3u8"}, "duration": 646, "id": "_Lj_F9GADa4", "title": "Effects of axon diameter and myelination", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/effects-of-axon-diameter-and-myelination/", "slug": "effects-of-axon-diameter-and-myelination", "kind": "Video", "video_id": "_Lj_F9GADa4", "keywords": "", "youtube_id": "_Lj_F9GADa4", "readable_id": "effects-of-axon-diameter-and-myelination"}, "CyDtzMQbDfQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CyDtzMQbDfQ.mp4/CyDtzMQbDfQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CyDtzMQbDfQ.mp4/CyDtzMQbDfQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CyDtzMQbDfQ.m3u8/CyDtzMQbDfQ.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/graciela-iturbide/", "duration": 212, "id": "CyDtzMQbDfQ", "title": "Graciela Iturbide", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nWhether capturing images of Frida Kahlo's house, wild dogs in India, or the Seri people in Mexico's Sonoran desert, Mexican photographer Graciela Iturbide presents the world in black in white, or as she describes it, as \"an abstraction of the mind.\" Travelling with her camera every day and often living with her subjects for months, Iturbide says that her process is similar to that of a travel photographer, except that she only shoots \"what surprises and provokes an emotion that I want to capture.\"", "slug": "graciela-iturbide", "kind": "Video", "video_id": "CyDtzMQbDfQ", "keywords": "Tate", "youtube_id": "CyDtzMQbDfQ", "readable_id": "graciela-iturbide"}, "m2DBfaL7Zo4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m2DBfaL7Zo4.mp4/m2DBfaL7Zo4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m2DBfaL7Zo4.mp4/m2DBfaL7Zo4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m2DBfaL7Zo4.m3u8/m2DBfaL7Zo4.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/string-instruments/harp-interview-demo/", "duration": 775, "id": "m2DBfaL7Zo4", "title": "Harp: Interview and demonstration with principal Nancy Allen", "format": "mp4", "description": "", "slug": "harp-interview-demo", "kind": "Video", "video_id": "m2DBfaL7Zo4", "keywords": "", "youtube_id": "m2DBfaL7Zo4", "readable_id": "harp-interview-demo"}, "SBqnRja4CW4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SBqnRja4CW4.mp4/SBqnRja4CW4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SBqnRja4CW4.mp4/SBqnRja4CW4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SBqnRja4CW4.m3u8/SBqnRja4CW4.m3u8"}, "duration": 501, "id": "SBqnRja4CW4", "title": "Example: Amplitude and period", "format": "mp4", "description": "Determining the amplitude and period of a trig function", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/we-amplitude-and-period/", "slug": "we-amplitude-and-period", "kind": "Video", "video_id": "SBqnRja4CW4", "keywords": "cos, amplitude, period, trig", "youtube_id": "SBqnRja4CW4", "readable_id": "we-amplitude-and-period"}, "kkUvU-elGtw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kkUvU-elGtw.mp4/kkUvU-elGtw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kkUvU-elGtw.mp4/kkUvU-elGtw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kkUvU-elGtw.m3u8/kkUvU-elGtw.m3u8"}, "duration": 471, "id": "kkUvU-elGtw", "title": "Pressure and the simple mercury barometer", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/gas-phase/pressure-and-the-simple-mercury-barometer/", "slug": "pressure-and-the-simple-mercury-barometer", "kind": "Video", "video_id": "kkUvU-elGtw", "keywords": "", "youtube_id": "kkUvU-elGtw", "readable_id": "pressure-and-the-simple-mercury-barometer"}, "j0xQmCPXTvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j0xQmCPXTvY.mp4/j0xQmCPXTvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j0xQmCPXTvY.mp4/j0xQmCPXTvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j0xQmCPXTvY.m3u8/j0xQmCPXTvY.m3u8"}, "duration": 700, "id": "j0xQmCPXTvY", "title": "Electron affinity", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/electron-affinity/", "slug": "electron-affinity", "kind": "Video", "video_id": "j0xQmCPXTvY", "keywords": "", "youtube_id": "j0xQmCPXTvY", "readable_id": "electron-affinity"}, "ZNtzWpU80-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZNtzWpU80-0.mp4/ZNtzWpU80-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZNtzWpU80-0.mp4/ZNtzWpU80-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZNtzWpU80-0.m3u8/ZNtzWpU80-0.m3u8"}, "duration": 588, "id": "ZNtzWpU80-0", "title": "Quadratic inequalities", "format": "mp4", "description": "Solving quadratic inequalities using factoring", "path": "khan/math/algebra2/polynomial_and_rational/quad_ineq/quadratic-inequalities/", "slug": "quadratic-inequalities", "kind": "Video", "video_id": "ZNtzWpU80-0", "keywords": "quadratic, factoring, inequality, algebra", "youtube_id": "ZNtzWpU80-0", "readable_id": "quadratic-inequalities"}, "uaPm3Tpuxbc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uaPm3Tpuxbc.mp4/uaPm3Tpuxbc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uaPm3Tpuxbc.mp4/uaPm3Tpuxbc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uaPm3Tpuxbc.m3u8/uaPm3Tpuxbc.m3u8"}, "path": "khan/math/algebra/algebra-functions/functions-and-function-notation/evaluating-a-function-expression/", "duration": 83, "id": "uaPm3Tpuxbc", "title": "Evaluating function expressions example", "format": "mp4", "description": "", "slug": "evaluating-a-function-expression", "kind": "Video", "video_id": "uaPm3Tpuxbc", "keywords": "", "youtube_id": "uaPm3Tpuxbc", "readable_id": "evaluating-a-function-expression"}, "MLobRZk4SF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MLobRZk4SF8.mp4/MLobRZk4SF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MLobRZk4SF8.mp4/MLobRZk4SF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MLobRZk4SF8.m3u8/MLobRZk4SF8.m3u8"}, "duration": 227, "id": "MLobRZk4SF8", "title": "Barbara Hammer: Pushing the boundaries of cinema and the body", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nBarbara Hammer is a pivotal figure in American experimental film. An acclaimed pioneer of queer cinema, her prolific output includes the earliest avant-garde films that openly address lesbian life and sexuality. Using her own body, Hammer explores\u00a0the nature of film itself, appearing to push at the edges of the frame in an effort to push cinema from the its typical rectangular form to something new\u2013like the circle. With this new circular form, Hammer takes film off the screen and projects it into the space an audience is in, making it necessary to move to view the film.\n\n\n\n\nIn addition to pushing the boundaries of film, Hammer has pushed for acceptance of the female body and sexuality, and a break from artifice and disguise. How does art that challenges its medium lend itself to challenging social issues?\n", "path": "barbara-hammer/", "slug": "barbara-hammer", "kind": "Video", "video_id": "MLobRZk4SF8", "keywords": "", "youtube_id": "MLobRZk4SF8", "readable_id": "barbara-hammer"}, "LtpXvUCrgrM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LtpXvUCrgrM.mp4/LtpXvUCrgrM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LtpXvUCrgrM.mp4/LtpXvUCrgrM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LtpXvUCrgrM.m3u8/LtpXvUCrgrM.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/point-slope/point-slope-and-slope-intercept-form-from-two-points/", "duration": 427, "id": "LtpXvUCrgrM", "title": "Point-slope and slope-intercept form from two points", "format": "mp4", "description": "Point-slope and slope-intercept form from two points", "slug": "point-slope-and-slope-intercept-form-from-two-points", "kind": "Video", "video_id": "LtpXvUCrgrM", "keywords": "", "youtube_id": "LtpXvUCrgrM", "readable_id": "point-slope-and-slope-intercept-form-from-two-points"}, "jO1wp-Bx-WE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jO1wp-Bx-WE.mp4/jO1wp-Bx-WE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jO1wp-Bx-WE.mp4/jO1wp-Bx-WE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jO1wp-Bx-WE.m3u8/jO1wp-Bx-WE.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/hesse-untitled-1966/", "duration": 221, "id": "jO1wp-Bx-WE", "title": "Hesse, Untitled", "format": "mp4", "description": "Eva Hesse, Untitled, enamel paint, string, papier-m\u00e2ch\u00e9, elastic cord, 1966 (MoMA)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "hesse-untitled-1966", "kind": "Video", "video_id": "jO1wp-Bx-WE", "keywords": "Eva Hesse, Smarthistory, Art History, Modern Art, MoMA", "youtube_id": "jO1wp-Bx-WE", "readable_id": "hesse-untitled-1966"}, "h05d7Mbd3UI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h05d7Mbd3UI.mp4/h05d7Mbd3UI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h05d7Mbd3UI.mp4/h05d7Mbd3UI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h05d7Mbd3UI.m3u8/h05d7Mbd3UI.m3u8"}, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/franklin-civic-leader/", "duration": 218, "id": "h05d7Mbd3UI", "title": "Benjamin Franklin the civic leader", "format": "mp4", "description": "In this video, Sal and Aspen Institute President and CEO Walter Isaacson discuss Benjamin Franklin as a civic leader.\u00a0", "slug": "franklin-civic-leader", "kind": "Video", "video_id": "h05d7Mbd3UI", "keywords": "", "youtube_id": "h05d7Mbd3UI", "readable_id": "franklin-civic-leader"}, "U3JxFFdKCKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U3JxFFdKCKM.mp4/U3JxFFdKCKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U3JxFFdKCKM.mp4/U3JxFFdKCKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U3JxFFdKCKM.m3u8/U3JxFFdKCKM.m3u8"}, "duration": 324, "id": "U3JxFFdKCKM", "title": "Applying radical equations 1", "format": "mp4", "description": "Applying Radical Equations 1", "path": "khan/math/algebra/exponent-equations/radical_equations/applying-radical-equations-1/", "slug": "applying-radical-equations-1", "kind": "Video", "video_id": "U3JxFFdKCKM", "keywords": "U07_L3_T3_we1, Applying, Radical, Equations, CC_39336_A-REI_2", "youtube_id": "U3JxFFdKCKM", "readable_id": "applying-radical-equations-1"}, "hA5jddDYcyg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hA5jddDYcyg.mp4/hA5jddDYcyg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hA5jddDYcyg.mp4/hA5jddDYcyg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hA5jddDYcyg.m3u8/hA5jddDYcyg.m3u8"}, "duration": 1084, "id": "hA5jddDYcyg", "title": "Vapor pressure", "format": "mp4", "description": "Vapor Pressure, Volatility, and Evaporation", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/vapor-pressure/", "slug": "vapor-pressure", "kind": "Video", "video_id": "hA5jddDYcyg", "keywords": "chemistry, vapor, pressure", "youtube_id": "hA5jddDYcyg", "readable_id": "vapor-pressure"}, "BI_jmI4xRus": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BI_jmI4xRus.mp4/BI_jmI4xRus.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BI_jmI4xRus.mp4/BI_jmI4xRus.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BI_jmI4xRus.m3u8/BI_jmI4xRus.m3u8"}, "duration": 608, "id": "BI_jmI4xRus", "title": "Factoring special products", "format": "mp4", "description": "Factoring Special Products", "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-special-products/", "slug": "factoring-special-products", "kind": "Video", "video_id": "BI_jmI4xRus", "keywords": "Factoring, Special, Products, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_a, CC_39336_F-IF_8_a", "youtube_id": "BI_jmI4xRus", "readable_id": "factoring-special-products"}, "o6oyCeYQWPE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o6oyCeYQWPE.mp4/o6oyCeYQWPE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o6oyCeYQWPE.mp4/o6oyCeYQWPE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o6oyCeYQWPE.m3u8/o6oyCeYQWPE.m3u8"}, "path": "khan/test-prep/mcat/behavior/theories-of-attitude-and-behavior-change/persuasion-attitude-change-and-the-elaboration-likelihood-model/", "duration": 343, "id": "o6oyCeYQWPE", "title": "Persuasion, attitude change, and the elaboration likelihood model", "format": "mp4", "description": "", "slug": "persuasion-attitude-change-and-the-elaboration-likelihood-model", "kind": "Video", "video_id": "o6oyCeYQWPE", "keywords": "", "youtube_id": "o6oyCeYQWPE", "readable_id": "persuasion-attitude-change-and-the-elaboration-likelihood-model"}, "Kq0Er6JBMmc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kq0Er6JBMmc.mp4/Kq0Er6JBMmc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kq0Er6JBMmc.mp4/Kq0Er6JBMmc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kq0Er6JBMmc.m3u8/Kq0Er6JBMmc.m3u8"}, "duration": 503, "id": "Kq0Er6JBMmc", "title": "Planning and propulsion", "format": "mp4", "description": "The video covers the first stages of idea generation for Bit-zee and how to make Bit-zee move.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-planning-and-propulsion/", "slug": "bit-zee-planning-and-propulsion", "kind": "Video", "video_id": "Kq0Er6JBMmc", "keywords": "Planning, brainstorming, voltage, motor, propulsion techniques, key components, robotics", "youtube_id": "Kq0Er6JBMmc", "readable_id": "bit-zee-planning-and-propulsion"}, "BlnUNmfGn7I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BlnUNmfGn7I.mp4/BlnUNmfGn7I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BlnUNmfGn7I.mp4/BlnUNmfGn7I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BlnUNmfGn7I.m3u8/BlnUNmfGn7I.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/genetic-recombination-1/", "duration": 372, "id": "BlnUNmfGn7I", "title": "Genetic recombination 1", "format": "mp4", "description": "", "slug": "genetic-recombination-1", "kind": "Video", "video_id": "BlnUNmfGn7I", "keywords": "", "youtube_id": "BlnUNmfGn7I", "readable_id": "genetic-recombination-1"}, "HIu1S2Wsso8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HIu1S2Wsso8.mp4/HIu1S2Wsso8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HIu1S2Wsso8.mp4/HIu1S2Wsso8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HIu1S2Wsso8.m3u8/HIu1S2Wsso8.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/primality-test-challenge/", "duration": 65, "id": "HIu1S2Wsso8", "title": "Primality test challenge", "format": "mp4", "description": "How can a machine tell us if a number is prime?", "slug": "primality-test-challenge", "kind": "Video", "video_id": "HIu1S2Wsso8", "keywords": "prime numbers", "youtube_id": "HIu1S2Wsso8", "readable_id": "primality-test-challenge"}, "eS50mYKCL_M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eS50mYKCL_M.mp4/eS50mYKCL_M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eS50mYKCL_M.mp4/eS50mYKCL_M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eS50mYKCL_M.m3u8/eS50mYKCL_M.m3u8"}, "duration": 225, "id": "eS50mYKCL_M", "title": "Harrison and Wood", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWelcome to the world of Harrison and Wood, a pair that you could describe as an art-world equivalent to Laurel and Hardy. Their films, showing their dead-pan antics as they dangle precariously from a ladder, slide on office chairs around the back of a moving van, and submit themselves to a drenching from dozens of watering cans, are both hilarious and thought provoking. Join this duo as they explore collaborative art.", "path": "harrison-and-wood/", "slug": "harrison-and-wood", "kind": "Video", "video_id": "eS50mYKCL_M", "keywords": "Tate, performance art", "youtube_id": "eS50mYKCL_M", "readable_id": "harrison-and-wood"}, "-hFAKd923eI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-hFAKd923eI.mp4/-hFAKd923eI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-hFAKd923eI.mp4/-hFAKd923eI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-hFAKd923eI.m3u8/-hFAKd923eI.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-blended-case-studies/sscc-blended-kippteach/", "duration": 432, "id": "-hFAKd923eI", "title": "Case study #2: Teaching in a Station Rotation model at KIPP LA", "format": "mp4", "description": "", "slug": "sscc-blended-kippteach", "kind": "Video", "video_id": "-hFAKd923eI", "keywords": "", "youtube_id": "-hFAKd923eI", "readable_id": "sscc-blended-kippteach"}, "XhSsMjuzt9Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XhSsMjuzt9Y.mp4/XhSsMjuzt9Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XhSsMjuzt9Y.mp4/XhSsMjuzt9Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XhSsMjuzt9Y.m3u8/XhSsMjuzt9Y.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/gene-control/tumor-suppressors/", "duration": 284, "id": "XhSsMjuzt9Y", "title": "Tumor suppressors", "format": "mp4", "description": "", "slug": "tumor-suppressors", "kind": "Video", "video_id": "XhSsMjuzt9Y", "keywords": "", "youtube_id": "XhSsMjuzt9Y", "readable_id": "tumor-suppressors"}, "txHg9ItLH3Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/txHg9ItLH3Y.mp4/txHg9ItLH3Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/txHg9ItLH3Y.mp4/txHg9ItLH3Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/txHg9ItLH3Y.m3u8/txHg9ItLH3Y.m3u8"}, "duration": 103, "id": "txHg9ItLH3Y", "title": "James Rosenquist, \"F-111,\" 1964-65", "format": "mp4", "description": "\u200bJames Rosenquist said about his 1964 painting, F111, \"a multiplicity of ideas caused its existence.\" To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "khan/humanities/art-1010/pop/moma-rosenquist-f111/", "slug": "moma-rosenquist-f111", "kind": "Video", "video_id": "txHg9ItLH3Y", "keywords": "", "youtube_id": "txHg9ItLH3Y", "readable_id": "moma-rosenquist-f111"}, "R8YKuGJ0plI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R8YKuGJ0plI.mp4/R8YKuGJ0plI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R8YKuGJ0plI.mp4/R8YKuGJ0plI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R8YKuGJ0plI.m3u8/R8YKuGJ0plI.m3u8"}, "duration": 294, "id": "R8YKuGJ0plI", "title": "Comparing improper fractions and mixed numbers", "format": "mp4", "description": "Worked examples comparing improper fractions and mixed numbers", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/comparing-improper-fractions-and-mixed-numbers/", "slug": "comparing-improper-fractions-and-mixed-numbers", "kind": "Video", "video_id": "R8YKuGJ0plI", "keywords": "fraction, worked, examples", "youtube_id": "R8YKuGJ0plI", "readable_id": "comparing-improper-fractions-and-mixed-numbers"}, "klcIklsWzrY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/klcIklsWzrY.mp4/klcIklsWzrY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/klcIklsWzrY.mp4/klcIklsWzrY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/klcIklsWzrY.m3u8/klcIklsWzrY.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/sieve-of-eratosthenes-prime-adventure-part-4/", "duration": 252, "id": "klcIklsWzrY", "title": "Sieve of Eratosthenes", "format": "mp4", "description": "Sieve of Eratosthenes allows us to generate a list of primes.", "slug": "sieve-of-eratosthenes-prime-adventure-part-4", "kind": "Video", "video_id": "klcIklsWzrY", "keywords": "sieve, primality test, prime numbers, prime, eratosthenes", "youtube_id": "klcIklsWzrY", "readable_id": "sieve-of-eratosthenes-prime-adventure-part-4"}, "4ve7OaCnDLs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4ve7OaCnDLs.mp4/4ve7OaCnDLs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4ve7OaCnDLs.mp4/4ve7OaCnDLs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4ve7OaCnDLs.m3u8/4ve7OaCnDLs.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/mult-div-negatives-pre-alg/multiplying-negative-real-numbers/", "duration": 146, "id": "4ve7OaCnDLs", "title": "Multiplying numbers with different signs", "format": "mp4", "description": "Find the product of numbers with different signs.", "slug": "multiplying-negative-real-numbers", "kind": "Video", "video_id": "4ve7OaCnDLs", "keywords": "U09_L2_T4_we1, Multiplying, negative, real, numbers, CC_4_NF_4, CC_5_NBT_7, CC_5_NF_4, CC_6_NS_3, CC_7_NS_2, CC_7_NS_2_a, CC_7_NS_2_c", "youtube_id": "4ve7OaCnDLs", "readable_id": "multiplying-negative-real-numbers"}, "RI874OSJp1U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RI874OSJp1U.mp4/RI874OSJp1U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RI874OSJp1U.mp4/RI874OSJp1U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RI874OSJp1U.m3u8/RI874OSJp1U.m3u8"}, "path": "khan/math/precalculus/prob_comb/independent_events_precalc/frequency-probability-and-unfair-coins/", "duration": 538, "id": "RI874OSJp1U", "title": "Probability without equally likely events", "format": "mp4", "description": "Up until now, we've looked at probabilities surrounding only equally likely events. What about probabilities when we don't have equally likely events? Say, we have unfair coins?", "slug": "frequency-probability-and-unfair-coins", "kind": "Video", "video_id": "RI874OSJp1U", "keywords": "probability, statistics, chance", "youtube_id": "RI874OSJp1U", "readable_id": "frequency-probability-and-unfair-coins"}, "SeQeYVJZ2gE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SeQeYVJZ2gE.mp4/SeQeYVJZ2gE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SeQeYVJZ2gE.mp4/SeQeYVJZ2gE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SeQeYVJZ2gE.m3u8/SeQeYVJZ2gE.m3u8"}, "duration": 1116, "id": "SeQeYVJZ2gE", "title": "Confidence interval example", "format": "mp4", "description": "Confidence Interval Example", "path": "khan/math/probability/statistics-inferential/confidence-intervals/confidence-interval-example/", "slug": "confidence-interval-example", "kind": "Video", "video_id": "SeQeYVJZ2gE", "keywords": "Confidence, Interval, Example, CC_7_SP_1, CC_7_SP_2", "youtube_id": "SeQeYVJZ2gE", "readable_id": "confidence-interval-example"}, "yWkga94iBzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yWkga94iBzU.mp4/yWkga94iBzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yWkga94iBzU.mp4/yWkga94iBzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yWkga94iBzU.m3u8/yWkga94iBzU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/thin-film-interference-part-2/", "duration": 723, "id": "yWkga94iBzU", "title": "Thin Film Interference part 2", "format": "mp4", "description": "", "slug": "thin-film-interference-part-2", "kind": "Video", "video_id": "yWkga94iBzU", "keywords": "", "youtube_id": "yWkga94iBzU", "readable_id": "thin-film-interference-part-2"}, "K2b8iMPY11I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K2b8iMPY11I.mp4/K2b8iMPY11I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K2b8iMPY11I.mp4/K2b8iMPY11I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K2b8iMPY11I.m3u8/K2b8iMPY11I.m3u8"}, "duration": 319, "id": "K2b8iMPY11I", "title": "Making sense of hairy fractions", "format": "mp4", "description": "Let's take some complex looking fractions and make them much, much simpler.", "path": "making-sense-of-hairy-fractions/", "slug": "making-sense-of-hairy-fractions", "kind": "Video", "video_id": "K2b8iMPY11I", "keywords": "", "youtube_id": "K2b8iMPY11I", "readable_id": "making-sense-of-hairy-fractions"}, "YdGZaqJZbGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YdGZaqJZbGc.mp4/YdGZaqJZbGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YdGZaqJZbGc.mp4/YdGZaqJZbGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YdGZaqJZbGc.m3u8/YdGZaqJZbGc.m3u8"}, "duration": 190, "id": "YdGZaqJZbGc", "title": "Annual interest varying with debt maturity", "format": "mp4", "description": "Annual Interest Varying with Debt Maturity", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial/annual-interest-varying-with-debt-maturity/", "slug": "annual-interest-varying-with-debt-maturity", "kind": "Video", "video_id": "YdGZaqJZbGc", "keywords": "federal, reserve, yield, banking", "youtube_id": "YdGZaqJZbGc", "readable_id": "annual-interest-varying-with-debt-maturity"}, "j4PI8dEWTGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j4PI8dEWTGE.mp4/j4PI8dEWTGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j4PI8dEWTGE.mp4/j4PI8dEWTGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j4PI8dEWTGE.m3u8/j4PI8dEWTGE.m3u8"}, "duration": 470, "id": "j4PI8dEWTGE", "title": "Charlemagne: An introduction (1 of 2)", "format": "mp4", "description": "Brief overview of Charlemagne and his coronation in 800.\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "path": "khan/humanities/medieval-world/latin-western-europe/carolingian1/charlemagne-an-introduction/", "slug": "charlemagne-an-introduction", "kind": "Video", "video_id": "j4PI8dEWTGE", "keywords": "Charlemagne, Carolingian, medieval", "youtube_id": "j4PI8dEWTGE", "readable_id": "charlemagne-an-introduction"}, "KlagRKn1bgw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KlagRKn1bgw.mp4/KlagRKn1bgw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KlagRKn1bgw.mp4/KlagRKn1bgw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KlagRKn1bgw.m3u8/KlagRKn1bgw.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations-alkanes-cycloalkanes/conformations-of-cyclohexane-iv-trisubstituted/", "duration": 668, "id": "KlagRKn1bgw", "title": "Conformations of cyclohexane IV: Trisubstituted", "format": "mp4", "description": "", "slug": "conformations-of-cyclohexane-iv-trisubstituted", "kind": "Video", "video_id": "KlagRKn1bgw", "keywords": "", "youtube_id": "KlagRKn1bgw", "readable_id": "conformations-of-cyclohexane-iv-trisubstituted"}, "LzYJVsvqS50": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LzYJVsvqS50.mp4/LzYJVsvqS50.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LzYJVsvqS50.mp4/LzYJVsvqS50.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LzYJVsvqS50.m3u8/LzYJVsvqS50.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/basic-equation-practice/steps-when-solving-equations/", "duration": 136, "id": "LzYJVsvqS50", "title": "Understanding steps when solving equations", "format": "mp4", "description": "", "slug": "steps-when-solving-equations", "kind": "Video", "video_id": "LzYJVsvqS50", "keywords": "", "youtube_id": "LzYJVsvqS50", "readable_id": "steps-when-solving-equations"}, "-u0mqFqpMNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-u0mqFqpMNY.mp4/-u0mqFqpMNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-u0mqFqpMNY.mp4/-u0mqFqpMNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-u0mqFqpMNY.m3u8/-u0mqFqpMNY.m3u8"}, "duration": 626, "id": "-u0mqFqpMNY", "title": "Partial derivatives 2", "format": "mp4", "description": "More on partial derivatives", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/partial_derivatives/partial-derivatives-2/", "slug": "partial-derivatives-2", "kind": "Video", "video_id": "-u0mqFqpMNY", "keywords": "partial, derivatives", "youtube_id": "-u0mqFqpMNY", "readable_id": "partial-derivatives-2"}, "2WS1sG9fhOk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2WS1sG9fhOk.mp4/2WS1sG9fhOk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2WS1sG9fhOk.mp4/2WS1sG9fhOk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2WS1sG9fhOk.m3u8/2WS1sG9fhOk.m3u8"}, "duration": 558, "id": "2WS1sG9fhOk", "title": "Introduction to work and energy", "format": "mp4", "description": "Introduction to work and energy", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/introduction-to-work-and-energy/", "slug": "introduction-to-work-and-energy", "kind": "Video", "video_id": "2WS1sG9fhOk", "keywords": "physics, work, energy, joule, force, distance, physical, science", "youtube_id": "2WS1sG9fhOk", "readable_id": "introduction-to-work-and-energy"}, "AwX4O87g1qk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AwX4O87g1qk.mp4/AwX4O87g1qk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AwX4O87g1qk.mp4/AwX4O87g1qk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AwX4O87g1qk.m3u8/AwX4O87g1qk.m3u8"}, "duration": 74, "id": "AwX4O87g1qk", "title": "Give Spout some grippy feet", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-11/", "slug": "solderless-spout-11", "kind": "Video", "video_id": "AwX4O87g1qk", "keywords": "", "youtube_id": "AwX4O87g1qk", "readable_id": "solderless-spout-11"}, "NMZ5kJEviD0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NMZ5kJEviD0.mp4/NMZ5kJEviD0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NMZ5kJEviD0.mp4/NMZ5kJEviD0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NMZ5kJEviD0.m3u8/NMZ5kJEviD0.m3u8"}, "path": "khan/science/cosmology-and-astronomy/life-earth-universe/measuring-age-tutorial/potassium-argon-k-ar-dating/", "duration": 635, "id": "NMZ5kJEviD0", "title": "Potassium-argon (K-Ar) dating", "format": "mp4", "description": "How K-Ar dating can be used to date very old volcanic rock and the things that might be buried in between", "slug": "potassium-argon-k-ar-dating", "kind": "Video", "video_id": "NMZ5kJEviD0", "keywords": "chronometric, revolution", "youtube_id": "NMZ5kJEviD0", "readable_id": "potassium-argon-k-ar-dating"}, "Lto6oQcGF_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lto6oQcGF_8.mp4/Lto6oQcGF_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lto6oQcGF_8.mp4/Lto6oQcGF_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lto6oQcGF_8.m3u8/Lto6oQcGF_8.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/prejudice-vs-discrimination/", "duration": 148, "id": "Lto6oQcGF_8", "title": "Prejudice vs discrimination", "format": "mp4", "description": "", "slug": "prejudice-vs-discrimination", "kind": "Video", "video_id": "Lto6oQcGF_8", "keywords": "", "youtube_id": "Lto6oQcGF_8", "readable_id": "prejudice-vs-discrimination"}, "E-q9JpkGc-8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E-q9JpkGc-8.mp4/E-q9JpkGc-8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E-q9JpkGc-8.mp4/E-q9JpkGc-8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E-q9JpkGc-8.m3u8/E-q9JpkGc-8.m3u8"}, "duration": 633, "id": "E-q9JpkGc-8", "title": "Adding up resistance in series and in parallel", "format": "mp4", "description": "Learn about how resistance can be added up in series and in parallel (similar to electrical circuits!). Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/adding-up-resistance-in-series-and-in-parallel/", "slug": "adding-up-resistance-in-series-and-in-parallel", "kind": "Video", "video_id": "E-q9JpkGc-8", "keywords": "", "youtube_id": "E-q9JpkGc-8", "readable_id": "adding-up-resistance-in-series-and-in-parallel"}, "s03qez-6JMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s03qez-6JMA.mp4/s03qez-6JMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s03qez-6JMA.mp4/s03qez-6JMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s03qez-6JMA.m3u8/s03qez-6JMA.m3u8"}, "duration": 244, "id": "s03qez-6JMA", "title": "Imaginary roots of negative numbers", "format": "mp4", "description": "Imaginary Roots of Negative Numbers", "path": "khan/math/precalculus/imaginary_complex_precalc/i_precalc/imaginary-roots-of-negative-numbers/", "slug": "imaginary-roots-of-negative-numbers", "kind": "Video", "video_id": "s03qez-6JMA", "keywords": "u16_l4_t1_we2, Imaginary, Roots, of, Negative, Numbers", "youtube_id": "s03qez-6JMA", "readable_id": "imaginary-roots-of-negative-numbers"}, "uglmkcGWmx4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uglmkcGWmx4.mp4/uglmkcGWmx4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uglmkcGWmx4.mp4/uglmkcGWmx4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uglmkcGWmx4.m3u8/uglmkcGWmx4.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/recognizing-features-of-functions-2-example-3/", "duration": 202, "id": "uglmkcGWmx4", "title": "Recognizing features of functions (example 3)", "format": "mp4", "description": "", "slug": "recognizing-features-of-functions-2-example-3", "kind": "Video", "video_id": "uglmkcGWmx4", "keywords": "", "youtube_id": "uglmkcGWmx4", "readable_id": "recognizing-features-of-functions-2-example-3"}, "0rzL08BHr5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0rzL08BHr5c.mp4/0rzL08BHr5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0rzL08BHr5c.mp4/0rzL08BHr5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0rzL08BHr5c.m3u8/0rzL08BHr5c.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/function-average-value/calculating-function-average-over-interval/", "duration": 308, "id": "0rzL08BHr5c", "title": "Calculating average value of function over interval", "format": "mp4", "description": "", "slug": "calculating-function-average-over-interval", "kind": "Video", "video_id": "0rzL08BHr5c", "keywords": "", "youtube_id": "0rzL08BHr5c", "readable_id": "calculating-function-average-over-interval"}, "N1GWZbwh2jQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N1GWZbwh2jQ.mp4/N1GWZbwh2jQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N1GWZbwh2jQ.mp4/N1GWZbwh2jQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N1GWZbwh2jQ.m3u8/N1GWZbwh2jQ.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/brass/trumpet-interview-and-demonstration-with-principal-david-bilger/", "duration": 815, "id": "N1GWZbwh2jQ", "title": "Trumpet: Interview and demonstration with principal David Bilger", "format": "mp4", "description": "", "slug": "trumpet-interview-and-demonstration-with-principal-david-bilger", "kind": "Video", "video_id": "N1GWZbwh2jQ", "keywords": "", "youtube_id": "N1GWZbwh2jQ", "readable_id": "trumpet-interview-and-demonstration-with-principal-david-bilger"}, "lf4BBZK1Vzs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lf4BBZK1Vzs.mp4/lf4BBZK1Vzs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lf4BBZK1Vzs.mp4/lf4BBZK1Vzs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lf4BBZK1Vzs.m3u8/lf4BBZK1Vzs.m3u8"}, "duration": 219, "id": "lf4BBZK1Vzs", "title": "Arithmetic word problems with volume", "format": "mp4", "description": "Learn how to solve some practice problems using volume.", "path": "arithmetic-word-problems-with-volume/", "slug": "arithmetic-word-problems-with-volume", "kind": "Video", "video_id": "lf4BBZK1Vzs", "keywords": "", "youtube_id": "lf4BBZK1Vzs", "readable_id": "arithmetic-word-problems-with-volume"}, "h8S-dOQe1-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h8S-dOQe1-0.mp4/h8S-dOQe1-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h8S-dOQe1-0.mp4/h8S-dOQe1-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h8S-dOQe1-0.m3u8/h8S-dOQe1-0.m3u8"}, "duration": 197, "id": "h8S-dOQe1-0", "title": "Battery wires", "format": "mp4", "description": "In this video we upgrade Bit-zee' battery wires from 32 gage to 18 gauge.", "path": "khan/science/discoveries-projects/robots/bit-zee/improving-the-battery-wires/", "slug": "improving-the-battery-wires", "kind": "Video", "video_id": "h8S-dOQe1-0", "keywords": "battery wires, gauge, upgrade, make, hack, bit-zee, bot", "youtube_id": "h8S-dOQe1-0", "readable_id": "improving-the-battery-wires"}, "BY8DJeX_tGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BY8DJeX_tGc.mp4/BY8DJeX_tGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BY8DJeX_tGc.mp4/BY8DJeX_tGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BY8DJeX_tGc.m3u8/BY8DJeX_tGc.m3u8"}, "duration": 479, "id": "BY8DJeX_tGc", "title": "Overview of neuron function", "format": "mp4", "description": "This video introduces the function and functional types of neurons.\u00a0 By Matt Jensen.", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neural-cells/overview-of-neuron-function/", "slug": "overview-of-neuron-function", "kind": "Video", "video_id": "BY8DJeX_tGc", "keywords": "", "youtube_id": "BY8DJeX_tGc", "readable_id": "overview-of-neuron-function"}, "ZH0P0uBY3PY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZH0P0uBY3PY.mp4/ZH0P0uBY3PY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZH0P0uBY3PY.mp4/ZH0P0uBY3PY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZH0P0uBY3PY.m3u8/ZH0P0uBY3PY.m3u8"}, "path": "khan/humanities/medieval-world/byzantine1/constantinople-east/icon-of-the-triumph-of-orthodoxy-byzantine-c-1400/", "duration": 381, "id": "ZH0P0uBY3PY", "title": "Icon of the Triumph of Orthodoxy", "format": "mp4", "description": "Icon of the Triumph of Orthodoxy (Byzantine), c. 1400, tempera and gold on wood, 39 cm x 31 cm (British Museum, London) Speakers: Pippa Couch and Rachel Ropeik", "slug": "icon-of-the-triumph-of-orthodoxy-byzantine-c-1400", "kind": "Video", "video_id": "ZH0P0uBY3PY", "keywords": "Triumph of Orthodoxy, British Museum, Khan Academy, Smarthistory, Art History, Byzantine", "youtube_id": "ZH0P0uBY3PY", "readable_id": "icon-of-the-triumph-of-orthodoxy-byzantine-c-1400"}, "rAxbnfKXcoE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rAxbnfKXcoE.mp4/rAxbnfKXcoE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rAxbnfKXcoE.mp4/rAxbnfKXcoE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rAxbnfKXcoE.m3u8/rAxbnfKXcoE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-lung-cancer/lung-cancer-stages/", "duration": 366, "id": "rAxbnfKXcoE", "title": "Lung cancer staging", "format": "mp4", "description": "Health professionals use special terminology referred to as stages to concisely communicate the progression of cancer disease. Learn how cancer is classified based off the size of the tumor, the involvement of lymph nodes, and whether metastasis has occurred. ", "slug": "lung-cancer-stages", "kind": "Video", "video_id": "rAxbnfKXcoE", "keywords": "", "youtube_id": "rAxbnfKXcoE", "readable_id": "lung-cancer-stages"}, "_QdS8xjYL48": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_QdS8xjYL48.mp4/_QdS8xjYL48.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_QdS8xjYL48.mp4/_QdS8xjYL48.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_QdS8xjYL48.m3u8/_QdS8xjYL48.m3u8"}, "duration": 513, "id": "_QdS8xjYL48", "title": "Install on/off switches", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-7/", "slug": "solderless-spout-7", "kind": "Video", "video_id": "_QdS8xjYL48", "keywords": "", "youtube_id": "_QdS8xjYL48", "readable_id": "solderless-spout-7"}, "6vy5CX6vK0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6vy5CX6vK0I.mp4/6vy5CX6vK0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6vy5CX6vK0I.mp4/6vy5CX6vK0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6vy5CX6vK0I.m3u8/6vy5CX6vK0I.m3u8"}, "duration": 653, "id": "6vy5CX6vK0I", "title": "Catching and spreading the flu", "format": "mp4", "description": "Find out how the flu spreads from person to person, and who is at the greatest risk of getting complications of the flu. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/catching-and-spreading-the-flu/", "slug": "catching-and-spreading-the-flu", "kind": "Video", "video_id": "6vy5CX6vK0I", "keywords": "", "youtube_id": "6vy5CX6vK0I", "readable_id": "catching-and-spreading-the-flu"}, "ZSh1ksh1iO4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZSh1ksh1iO4.mp4/ZSh1ksh1iO4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZSh1ksh1iO4.mp4/ZSh1ksh1iO4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZSh1ksh1iO4.m3u8/ZSh1ksh1iO4.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/france/antoine-or-louis-le-nain-peasant-family-in-an-interior-2nd-quarter-of-the-17th-century/", "duration": 192, "id": "ZSh1ksh1iO4", "title": "Antoine or Louis Le Nain, Peasant Family in an Interior", "format": "mp4", "description": "Antoine or Louis Le Nain, Peasant Family in an Interior, 2nd quarter of the 17th century, oil on canvas, 1.13 x 1.59 m (Mus\u00e9e du Louvre, Paris) http://www.smarthistory.org/peasant-family-in-an-interior.html Speakers: Drs. Beth Harris and Steven Zucker", "slug": "antoine-or-louis-le-nain-peasant-family-in-an-interior-2nd-quarter-of-the-17th-century", "kind": "Video", "video_id": "ZSh1ksh1iO4", "keywords": "LeNain, Smarthistory, Art History, Louvre", "youtube_id": "ZSh1ksh1iO4", "readable_id": "antoine-or-louis-le-nain-peasant-family-in-an-interior-2nd-quarter-of-the-17th-century"}, "RBUBIRtn0xQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RBUBIRtn0xQ.mp4/RBUBIRtn0xQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RBUBIRtn0xQ.mp4/RBUBIRtn0xQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RBUBIRtn0xQ.m3u8/RBUBIRtn0xQ.m3u8"}, "duration": 346, "id": "RBUBIRtn0xQ", "title": "Total consumer surplus as area", "format": "mp4", "description": "Looking at consumer surplus as area between the demand curve and the market price", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/consumer-producer-surplus-tut/total-consumer-surplus-as-area/", "slug": "total-consumer-surplus-as-area", "kind": "Video", "video_id": "RBUBIRtn0xQ", "keywords": "economics, supply, surplus, consumer", "youtube_id": "RBUBIRtn0xQ", "readable_id": "total-consumer-surplus-as-area"}, "ou3a7Htbrvw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ou3a7Htbrvw.mp4/ou3a7Htbrvw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ou3a7Htbrvw.mp4/ou3a7Htbrvw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ou3a7Htbrvw.m3u8/ou3a7Htbrvw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cardiomyopathy/dilated-cardiomyopathy-pathophysiology-and-diagnosis/", "duration": 607, "id": "ou3a7Htbrvw", "title": "Dilated cardiomyopathy: Pathophysiology and diagnosis", "format": "mp4", "description": "", "slug": "dilated-cardiomyopathy-pathophysiology-and-diagnosis", "kind": "Video", "video_id": "ou3a7Htbrvw", "keywords": "", "youtube_id": "ou3a7Htbrvw", "readable_id": "dilated-cardiomyopathy-pathophysiology-and-diagnosis"}, "e23FYcmAG5k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e23FYcmAG5k.mp4/e23FYcmAG5k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e23FYcmAG5k.mp4/e23FYcmAG5k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e23FYcmAG5k.m3u8/e23FYcmAG5k.m3u8"}, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/franklin-overview/", "duration": 492, "id": "e23FYcmAG5k", "title": "An introduction to Benjamin Franklin", "format": "mp4", "description": "In this video, Sal and Aspen Institute President and CEO Walter Isaacson present an overview of Benjamin Franklin's life.\u00a0", "slug": "franklin-overview", "kind": "Video", "video_id": "e23FYcmAG5k", "keywords": "", "youtube_id": "e23FYcmAG5k", "readable_id": "franklin-overview"}, "yg0XJWHPqOA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yg0XJWHPqOA.mp4/yg0XJWHPqOA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yg0XJWHPqOA.mp4/yg0XJWHPqOA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yg0XJWHPqOA.m3u8/yg0XJWHPqOA.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/aromatic-stability/aromatic-stability-iii/", "duration": 578, "id": "yg0XJWHPqOA", "title": "Aromatic stability III", "format": "mp4", "description": "", "slug": "aromatic-stability-iii", "kind": "Video", "video_id": "yg0XJWHPqOA", "keywords": "", "youtube_id": "yg0XJWHPqOA", "readable_id": "aromatic-stability-iii"}, "x9wyOYnot7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x9wyOYnot7E.mp4/x9wyOYnot7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x9wyOYnot7E.mp4/x9wyOYnot7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x9wyOYnot7E.m3u8/x9wyOYnot7E.m3u8"}, "duration": 269, "id": "x9wyOYnot7E", "title": "From terpenes to steroids part 2: Squalene, cholesterol, and steroids", "format": "mp4", "description": "After learning about terpenes, lets see how are body uses them to eventually make all the steroid hormones of our body. By Ryan Patton. ", "path": "khan/test-prep/mcat/organ-systems/endocrine-system/terpenes-to-steroids2/", "slug": "terpenes-to-steroids2", "kind": "Video", "video_id": "x9wyOYnot7E", "keywords": "terpenes, steroids, squalene, cholesterol", "youtube_id": "x9wyOYnot7E", "readable_id": "terpenes-to-steroids2"}, "EKLGgTwyNfU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EKLGgTwyNfU.mp4/EKLGgTwyNfU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EKLGgTwyNfU.mp4/EKLGgTwyNfU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EKLGgTwyNfU.m3u8/EKLGgTwyNfU.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-17/", "duration": 142, "id": "EKLGgTwyNfU", "title": "17 Product of primes near 50", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-17", "kind": "Video", "video_id": "EKLGgTwyNfU", "keywords": "", "youtube_id": "EKLGgTwyNfU", "readable_id": "2013-sat-practice-6-17"}, "GY1ooKN46BE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GY1ooKN46BE.mp4/GY1ooKN46BE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GY1ooKN46BE.mp4/GY1ooKN46BE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GY1ooKN46BE.m3u8/GY1ooKN46BE.m3u8"}, "duration": 174, "id": "GY1ooKN46BE", "title": "\"Unfinished\" with Andrea Bayer", "format": "mp4", "description": "Met curator Andrea Bayer on liberation in Jacopo Bassano\u2019s The Baptism of Christ.\n\nThis extraordinary picture\u2014deeply expressive and almost unique in showing the Baptism of Christ as occurring late at night\u2014is the last known work by the great Venetian painter Jacopo Bassano, who left it unfinished when he died in 1592. It was viewed by his heirs as his artistic testament and was retained by them for more than a century. To our eyes, the altarpiece\u2019s unfinished\u2014or \"non finito\"\u2014style seems a crucial step towards modernism, to be compared with, for example, Goya's \"black paintings.\" Bassano explores an expressive intensity\u2014dark in mood as in the palette\u2014that is a direct and deeply personal response to Titian's late pictures. He interprets the baptism of Christ not as a sunny event in a pastoral landscape but as the tragic opening of Christ's Passion.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "unfinished/", "slug": "unfinished", "kind": "Video", "video_id": "GY1ooKN46BE", "keywords": "canvas, death, motion, painting, shock, Europe", "youtube_id": "GY1ooKN46BE", "readable_id": "unfinished"}, "-ROhfKyxgCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-ROhfKyxgCo.mp4/-ROhfKyxgCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-ROhfKyxgCo.mp4/-ROhfKyxgCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-ROhfKyxgCo.m3u8/-ROhfKyxgCo.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/sex-linked-traits/", "duration": 859, "id": "-ROhfKyxgCo", "title": "Sex-linked traits", "format": "mp4", "description": "Chromosomal basis for gender. Sex-linked traits.", "slug": "sex-linked-traits", "kind": "Video", "video_id": "-ROhfKyxgCo", "keywords": "biology, mitosis, meiosis, haploid, diploid, sex-linked, trait", "youtube_id": "-ROhfKyxgCo", "readable_id": "sex-linked-traits"}, "iDQ1foxYf0o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iDQ1foxYf0o.mp4/iDQ1foxYf0o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iDQ1foxYf0o.mp4/iDQ1foxYf0o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iDQ1foxYf0o.m3u8/iDQ1foxYf0o.m3u8"}, "path": "khan/math/geometry/intro_euclid/geometric-precision-practice/", "duration": 526, "id": "iDQ1foxYf0o", "title": "Geometric precision practice", "format": "mp4", "description": "", "slug": "geometric-precision-practice", "kind": "Video", "video_id": "iDQ1foxYf0o", "keywords": "", "youtube_id": "iDQ1foxYf0o", "readable_id": "geometric-precision-practice"}, "R9PjfG1e7-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R9PjfG1e7-w.mp4/R9PjfG1e7-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R9PjfG1e7-w.mp4/R9PjfG1e7-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R9PjfG1e7-w.m3u8/R9PjfG1e7-w.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acid-derivatives/nomenclature-and-properties-of-esters/", "duration": 631, "id": "R9PjfG1e7-w", "title": "Nomenclature and properties of esters", "format": "mp4", "description": "How to name esters and how to analyze their physical properties", "slug": "nomenclature-and-properties-of-esters", "kind": "Video", "video_id": "R9PjfG1e7-w", "keywords": "", "youtube_id": "R9PjfG1e7-w", "readable_id": "nomenclature-and-properties-of-esters"}, "d5UCZ9hO8X4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d5UCZ9hO8X4.mp4/d5UCZ9hO8X4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d5UCZ9hO8X4.mp4/d5UCZ9hO8X4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d5UCZ9hO8X4.m3u8/d5UCZ9hO8X4.m3u8"}, "duration": 448, "id": "d5UCZ9hO8X4", "title": "Finding congruent triangles", "format": "mp4", "description": "Using the SSS, ASA, SAS, and AAS postulates to find congruent triangles", "path": "khan/math/geometry/congruent-triangles/cong_triangle/finding-congruent-triangles/", "slug": "finding-congruent-triangles", "kind": "Video", "video_id": "d5UCZ9hO8X4", "keywords": "geometry, congruent, triangles", "youtube_id": "d5UCZ9hO8X4", "readable_id": "finding-congruent-triangles"}, "lsHq5aqz4uQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lsHq5aqz4uQ.mp4/lsHq5aqz4uQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lsHq5aqz4uQ.mp4/lsHq5aqz4uQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lsHq5aqz4uQ.m3u8/lsHq5aqz4uQ.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/buffer-solution-calculations/", "duration": 699, "id": "lsHq5aqz4uQ", "title": "Buffer solution calculations", "format": "mp4", "description": "", "slug": "buffer-solution-calculations", "kind": "Video", "video_id": "lsHq5aqz4uQ", "keywords": "", "youtube_id": "lsHq5aqz4uQ", "readable_id": "buffer-solution-calculations"}, "Vq7EOmvU1eQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vq7EOmvU1eQ.mp4/Vq7EOmvU1eQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vq7EOmvU1eQ.mp4/Vq7EOmvU1eQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vq7EOmvU1eQ.m3u8/Vq7EOmvU1eQ.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/hair_dryer/what-is-inside-of-a-hair-dryer-2-of-2/", "duration": 705, "id": "Vq7EOmvU1eQ", "title": "What is inside a hair dryer? (2 of 2)", "format": "mp4", "description": "In this video we explore what is inside a hairdryer, how it is made, and how it works.", "slug": "what-is-inside-of-a-hair-dryer-2-of-2", "kind": "Video", "video_id": "Vq7EOmvU1eQ", "keywords": "Ni-Chrome wire, Nickel-Chrome alloy, switch, housing, injection molding, PP, polypropylene, fan, louver, vent, filter, grill, insulation, motor, AC, DC, alternating current, direct current, resistor, thermal fuse, bi-metallic switch, mica sheet, brass, riv", "youtube_id": "Vq7EOmvU1eQ", "readable_id": "what-is-inside-of-a-hair-dryer-2-of-2"}, "pnwrNnZGVEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pnwrNnZGVEw.mp4/pnwrNnZGVEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pnwrNnZGVEw.mp4/pnwrNnZGVEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pnwrNnZGVEw.m3u8/pnwrNnZGVEw.m3u8"}, "duration": 425, "id": "pnwrNnZGVEw", "title": "IIT JEE integral limit", "format": "mp4", "description": "2010 IIT JEE Paper 1 #34 Integral Limit", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-integral-limit/", "slug": "iit-jee-integral-limit", "kind": "Video", "video_id": "pnwrNnZGVEw", "keywords": "2010, IIT, JEE, Paper, #34, Integral, Limit, L'Hopital's, rule", "youtube_id": "pnwrNnZGVEw", "readable_id": "iit-jee-integral-limit"}, "Qm_OS-8COwU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qm_OS-8COwU.mp4/Qm_OS-8COwU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qm_OS-8COwU.mp4/Qm_OS-8COwU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qm_OS-8COwU.m3u8/Qm_OS-8COwU.m3u8"}, "duration": 1235, "id": "Qm_OS-8COwU", "title": "Linear combinations and span", "format": "mp4", "description": "Understanding linear combinations and spans of vectors", "path": "khan/math/linear-algebra/vectors_and_spaces/linear_combinations/linear-combinations-and-span/", "slug": "linear-combinations-and-span", "kind": "Video", "video_id": "Qm_OS-8COwU", "keywords": "Linear, Algebra, Vectors, span, combination", "youtube_id": "Qm_OS-8COwU", "readable_id": "linear-combinations-and-span"}, "eRWMxDzxHyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eRWMxDzxHyc.mp4/eRWMxDzxHyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eRWMxDzxHyc.mp4/eRWMxDzxHyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eRWMxDzxHyc.m3u8/eRWMxDzxHyc.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-design-blended-learning/sscc-school-redesign/sscc-blended-assumptions/", "duration": 250, "id": "eRWMxDzxHyc", "title": "The assumptions that limit innovation -- the school year, daily schedule, class size", "format": "mp4", "description": "", "slug": "sscc-blended-assumptions", "kind": "Video", "video_id": "eRWMxDzxHyc", "keywords": "", "youtube_id": "eRWMxDzxHyc", "readable_id": "sscc-blended-assumptions"}, "ygXkdSKXQoA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ygXkdSKXQoA.mp4/ygXkdSKXQoA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ygXkdSKXQoA.mp4/ygXkdSKXQoA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ygXkdSKXQoA.m3u8/ygXkdSKXQoA.m3u8"}, "duration": 463, "id": "ygXkdSKXQoA", "title": "Naming a cycloalkane", "format": "mp4", "description": "", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/naming-cycloalkane/", "slug": "naming-cycloalkane", "kind": "Video", "video_id": "ygXkdSKXQoA", "keywords": "", "youtube_id": "ygXkdSKXQoA", "readable_id": "naming-cycloalkane"}, "RcLy8Cyxw2k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RcLy8Cyxw2k.mp4/RcLy8Cyxw2k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RcLy8Cyxw2k.mp4/RcLy8Cyxw2k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RcLy8Cyxw2k.m3u8/RcLy8Cyxw2k.m3u8"}, "duration": 326, "id": "RcLy8Cyxw2k", "title": "Overview of KhanAcademy.org", "format": "mp4", "description": "An overview of the different ways to use Khan Academy", "path": "overview-of-khanacademy-org/", "slug": "overview-of-khanacademy-org", "kind": "Video", "video_id": "RcLy8Cyxw2k", "keywords": "KA, Walkthrough, 2012", "youtube_id": "RcLy8Cyxw2k", "readable_id": "overview-of-khanacademy-org"}, "MpiM4C26sbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MpiM4C26sbY.mp4/MpiM4C26sbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MpiM4C26sbY.mp4/MpiM4C26sbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MpiM4C26sbY.m3u8/MpiM4C26sbY.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-isocahedron/", "duration": 64, "id": "MpiM4C26sbY", "title": "DLab: Building a stellated icosahedron", "format": "mp4", "description": "", "slug": "discovery-lab-isocahedron", "kind": "Video", "video_id": "MpiM4C26sbY", "keywords": "", "youtube_id": "MpiM4C26sbY", "readable_id": "discovery-lab-isocahedron"}, "ABhqENOxSrU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ABhqENOxSrU.mp4/ABhqENOxSrU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ABhqENOxSrU.mp4/ABhqENOxSrU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ABhqENOxSrU.m3u8/ABhqENOxSrU.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/pontormo-entombment-or-deposition-from-the-cross-1525-28/", "duration": 279, "id": "ABhqENOxSrU", "title": "Pontormo, The Entombment of Christ", "format": "mp4", "description": "Pontormo, Entombment (or Deposition from the Cross), oil on panel, 1525-28 (Capponi Chapel, Santa Felicita, Florence) Speakers: Dr. Steven Zucker, Dr. Beth Harris", "slug": "pontormo-entombment-or-deposition-from-the-cross-1525-28", "kind": "Video", "video_id": "ABhqENOxSrU", "keywords": "Pontormo, Mannerism, Smarthistory, Art History", "youtube_id": "ABhqENOxSrU", "readable_id": "pontormo-entombment-or-deposition-from-the-cross-1525-28"}, "Zcpwdcvz3KE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zcpwdcvz3KE.mp4/Zcpwdcvz3KE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zcpwdcvz3KE.mp4/Zcpwdcvz3KE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zcpwdcvz3KE.m3u8/Zcpwdcvz3KE.m3u8"}, "path": "khan/college-admissions/applying-to-college/letters-of-recommendation/elements-of-a-strong-letter-of-recommendation/", "duration": 155, "id": "Zcpwdcvz3KE", "title": "Elements of a strong recommendation letter", "format": "mp4", "description": "", "slug": "elements-of-a-strong-letter-of-recommendation", "kind": "Video", "video_id": "Zcpwdcvz3KE", "keywords": "", "youtube_id": "Zcpwdcvz3KE", "readable_id": "elements-of-a-strong-letter-of-recommendation"}, "0_DYEFtlCiM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0_DYEFtlCiM.mp4/0_DYEFtlCiM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0_DYEFtlCiM.mp4/0_DYEFtlCiM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0_DYEFtlCiM.m3u8/0_DYEFtlCiM.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/matrix-equations/solving-matrix-equation/", "duration": 400, "id": "0_DYEFtlCiM", "title": "Solving the matrix vector equation", "format": "mp4", "description": "", "slug": "solving-matrix-equation", "kind": "Video", "video_id": "0_DYEFtlCiM", "keywords": "", "youtube_id": "0_DYEFtlCiM", "readable_id": "solving-matrix-equation"}, "3koOwozY4oc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3koOwozY4oc.mp4/3koOwozY4oc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3koOwozY4oc.mp4/3koOwozY4oc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3koOwozY4oc.m3u8/3koOwozY4oc.m3u8"}, "duration": 1023, "id": "3koOwozY4oc", "title": "Types of decay", "format": "mp4", "description": "Alpha, Beta, Gamma Decay and Positron Emission", "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/types-of-decay/", "slug": "types-of-decay", "kind": "Video", "video_id": "3koOwozY4oc", "keywords": "chemistry, decay, radioactive", "youtube_id": "3koOwozY4oc", "readable_id": "types-of-decay"}, "QWninXOAMXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QWninXOAMXE.mp4/QWninXOAMXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QWninXOAMXE.mp4/QWninXOAMXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QWninXOAMXE.m3u8/QWninXOAMXE.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/repurchase-agreements-repo-transactions/", "duration": 684, "id": "QWninXOAMXE", "title": "Repurchase agreements (repo transactions)", "format": "mp4", "description": "Mechanics of repurchase agreements (repo transactions/loans)", "slug": "repurchase-agreements-repo-transactions", "kind": "Video", "video_id": "QWninXOAMXE", "keywords": "repurchase, agreement, repo, transaction, federal, reserve", "youtube_id": "QWninXOAMXE", "readable_id": "repurchase-agreements-repo-transactions"}, "RKBSX-6pKgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RKBSX-6pKgY.mp4/RKBSX-6pKgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RKBSX-6pKgY.mp4/RKBSX-6pKgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RKBSX-6pKgY.m3u8/RKBSX-6pKgY.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/transformation-matrix/matrix-transformation-triangle/", "duration": 435, "id": "RKBSX-6pKgY", "title": "Matrix transformation on triangle", "format": "mp4", "description": "", "slug": "matrix-transformation-triangle", "kind": "Video", "video_id": "RKBSX-6pKgY", "keywords": "", "youtube_id": "RKBSX-6pKgY", "readable_id": "matrix-transformation-triangle"}, "cVXfChxmAlQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cVXfChxmAlQ.mp4/cVXfChxmAlQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cVXfChxmAlQ.mp4/cVXfChxmAlQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cVXfChxmAlQ.m3u8/cVXfChxmAlQ.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/english-ambassador/", "duration": 193, "id": "cVXfChxmAlQ", "title": "An English ambassador", "format": "mp4", "description": "Christopher de Bellaigue, writer, describes the portraits of Sir Robert Sherley and his wife in the exhibition Shah Abbas, the remaking of Iran.\u00a0\u00a9 Trustees of the British Museum", "slug": "english-ambassador", "kind": "Video", "video_id": "cVXfChxmAlQ", "keywords": "", "youtube_id": "cVXfChxmAlQ", "readable_id": "english-ambassador"}, "AJNDeVt9UOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AJNDeVt9UOo.mp4/AJNDeVt9UOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AJNDeVt9UOo.mp4/AJNDeVt9UOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AJNDeVt9UOo.m3u8/AJNDeVt9UOo.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/variables-and-expressions-1/", "duration": 120, "id": "AJNDeVt9UOo", "title": "Evaluating an expression with variables", "format": "mp4", "description": "Evaluate the given expression where the variable could have 3 possible values. Understanding how expressions are interpreted according to different variable values is a huge new skill. Pat on the back!", "slug": "variables-and-expressions-1", "kind": "Video", "video_id": "AJNDeVt9UOo", "keywords": "U09_L1_T1_we1, Variables, and, Expressions, CC_6_EE_2_c, CC_6_EE_6, CC_6_EE_9, CC_7_EE_4, CC_8_EE_7", "youtube_id": "AJNDeVt9UOo", "readable_id": "variables-and-expressions-1"}, "qvyboGryeA8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qvyboGryeA8.mp4/qvyboGryeA8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qvyboGryeA8.mp4/qvyboGryeA8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qvyboGryeA8.m3u8/qvyboGryeA8.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/null-space-2-calculating-the-null-space-of-a-matrix/", "duration": 787, "id": "qvyboGryeA8", "title": "Null space 2: Calculating the null space of a matrix", "format": "mp4", "description": "Calculating the null space of a matrix", "slug": "null-space-2-calculating-the-null-space-of-a-matrix", "kind": "Video", "video_id": "qvyboGryeA8", "keywords": "nullspace, null, space, subspace, matrix, vector", "youtube_id": "qvyboGryeA8", "readable_id": "null-space-2-calculating-the-null-space-of-a-matrix"}, "AimYG1jYD0A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AimYG1jYD0A.mp4/AimYG1jYD0A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AimYG1jYD0A.mp4/AimYG1jYD0A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AimYG1jYD0A.m3u8/AimYG1jYD0A.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/current-capital-account/balance-of-payments-capital-account/", "duration": 447, "id": "AimYG1jYD0A", "title": "Balance of payments: Capital account", "format": "mp4", "description": "Understanding how changes in foreign ownership of assets effects balance of payments", "slug": "balance-of-payments-capital-account", "kind": "Video", "video_id": "AimYG1jYD0A", "keywords": "macroeconomics, balance, of, payments", "youtube_id": "AimYG1jYD0A", "readable_id": "balance-of-payments-capital-account"}, "MVHy_hbKSa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MVHy_hbKSa4.mp4/MVHy_hbKSa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MVHy_hbKSa4.mp4/MVHy_hbKSa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MVHy_hbKSa4.m3u8/MVHy_hbKSa4.m3u8"}, "path": "khan/college-admissions/making-high-school-count/extracurricular-and-leadership/engaging-in-extracurricular-activities/", "duration": 167, "id": "MVHy_hbKSa4", "title": "Engaging in extracurricular activities", "format": "mp4", "description": "", "slug": "engaging-in-extracurricular-activities", "kind": "Video", "video_id": "MVHy_hbKSa4", "keywords": "", "youtube_id": "MVHy_hbKSa4", "readable_id": "engaging-in-extracurricular-activities"}, "rndex9FCIdo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rndex9FCIdo.mp4/rndex9FCIdo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rndex9FCIdo.mp4/rndex9FCIdo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rndex9FCIdo.m3u8/rndex9FCIdo.m3u8"}, "duration": 690, "id": "rndex9FCIdo", "title": "IIT JEE lagrange's formula", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 49 Lagrange's Formula", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-lagrange-s-formula/", "slug": "iit-jee-lagrange-s-formula", "kind": "Video", "video_id": "rndex9FCIdo", "keywords": "2010, IIT, JEE, Paper, Problem, 49, Lagrange's, Formula", "youtube_id": "rndex9FCIdo", "readable_id": "iit-jee-lagrange-s-formula"}, "Obch1OP5QyA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Obch1OP5QyA.mp4/Obch1OP5QyA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Obch1OP5QyA.mp4/Obch1OP5QyA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Obch1OP5QyA.m3u8/Obch1OP5QyA.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/exponential-to-logarithmic-form/", "duration": 102, "id": "Obch1OP5QyA", "title": "Writing in logarithmic and exponential form", "format": "mp4", "description": "", "slug": "exponential-to-logarithmic-form", "kind": "Video", "video_id": "Obch1OP5QyA", "keywords": "", "youtube_id": "Obch1OP5QyA", "readable_id": "exponential-to-logarithmic-form"}, "64GBYOsI9jQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/64GBYOsI9jQ.mp4/64GBYOsI9jQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/64GBYOsI9jQ.mp4/64GBYOsI9jQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/64GBYOsI9jQ.m3u8/64GBYOsI9jQ.m3u8"}, "duration": 556, "id": "64GBYOsI9jQ", "title": "The sex lives of nonvascular plants", "format": "mp4", "description": "Hank introduces us to nonvascular plants - liverworts, hornworts & mosses - which have bizarre features, kooky habits, and strange sex lives. Nonvascular plants inherited their reproductive cycle from algae, but have perfected it to the point where it is now used by all plants in one way or another, and has even left traces in our own reproductive systems.", "path": "crash-course-biology-135/", "slug": "crash-course-biology-135", "kind": "Video", "video_id": "64GBYOsI9jQ", "keywords": "", "youtube_id": "64GBYOsI9jQ", "readable_id": "crash-course-biology-135"}, "xxAFh-qHPPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xxAFh-qHPPA.mp4/xxAFh-qHPPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xxAFh-qHPPA.mp4/xxAFh-qHPPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xxAFh-qHPPA.m3u8/xxAFh-qHPPA.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-scientific-notation/scientific-notation-example-2/", "duration": 323, "id": "xxAFh-qHPPA", "title": "Scientific notation example 2", "format": "mp4", "description": "Scientific Notation 2", "slug": "scientific-notation-example-2", "kind": "Video", "video_id": "xxAFh-qHPPA", "keywords": "u11_l1_t4_we2, Scientific, Notation, CC_5_NBT_2, CC_8_EE_3, CC_8_EE_4", "youtube_id": "xxAFh-qHPPA", "readable_id": "scientific-notation-example-2"}, "WU7TfO-iaK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WU7TfO-iaK8.mp4/WU7TfO-iaK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WU7TfO-iaK8.mp4/WU7TfO-iaK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WU7TfO-iaK8.m3u8/WU7TfO-iaK8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermodynamics-mcat/specific-heat-and-latent-leat-of-fusion-and-vaporization-2/", "duration": 897, "id": "WU7TfO-iaK8", "title": "Specific heat and latent leat of fusion and vaporization", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "specific-heat-and-latent-leat-of-fusion-and-vaporization-2", "kind": "Video", "video_id": "WU7TfO-iaK8", "keywords": "", "youtube_id": "WU7TfO-iaK8", "readable_id": "specific-heat-and-latent-leat-of-fusion-and-vaporization-2"}, "CkQOCnLWPUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CkQOCnLWPUA.mp4/CkQOCnLWPUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CkQOCnLWPUA.mp4/CkQOCnLWPUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CkQOCnLWPUA.m3u8/CkQOCnLWPUA.m3u8"}, "duration": 820, "id": "CkQOCnLWPUA", "title": "Showing that the candidate basis does span C(A)", "format": "mp4", "description": "Showing that just the columns of A associated with the pivot columns of rref(A) do indeed span C(A).", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/showing-that-the-candidate-basis-does-span-c-a/", "slug": "showing-that-the-candidate-basis-does-span-c-a", "kind": "Video", "video_id": "CkQOCnLWPUA", "keywords": "column, space, matrix, dimension, rank", "youtube_id": "CkQOCnLWPUA", "readable_id": "showing-that-the-candidate-basis-does-span-c-a"}, "lkP-E2LUnjA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lkP-E2LUnjA.mp4/lkP-E2LUnjA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lkP-E2LUnjA.mp4/lkP-E2LUnjA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lkP-E2LUnjA.m3u8/lkP-E2LUnjA.m3u8"}, "duration": 282, "id": "lkP-E2LUnjA", "title": "Inverse variation application", "format": "mp4", "description": "Inverse Variation Application", "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/inverse-variation-application/", "slug": "inverse-variation-application", "kind": "Video", "video_id": "lkP-E2LUnjA", "keywords": "u15_l3_t1_we5, Inverse, Variation, Application, CC_6_EE_2_c, CC_6_EE_9", "youtube_id": "lkP-E2LUnjA", "readable_id": "inverse-variation-application"}, "Id6UovYjd-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Id6UovYjd-M.mp4/Id6UovYjd-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Id6UovYjd-M.mp4/Id6UovYjd-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Id6UovYjd-M.m3u8/Id6UovYjd-M.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function-introduction/understanding-function-notation-example-1/", "duration": 59, "id": "Id6UovYjd-M", "title": "Evaluating functions given their formula", "format": "mp4", "description": "", "slug": "understanding-function-notation-example-1", "kind": "Video", "video_id": "Id6UovYjd-M", "keywords": "", "youtube_id": "Id6UovYjd-M", "readable_id": "understanding-function-notation-example-1"}, "xRw0CLvQkjo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xRw0CLvQkjo.mp4/xRw0CLvQkjo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xRw0CLvQkjo.mp4/xRw0CLvQkjo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xRw0CLvQkjo.m3u8/xRw0CLvQkjo.m3u8"}, "duration": 57, "id": "xRw0CLvQkjo", "title": "Connect the SPDT switches", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-2/", "slug": "solderless-spout-2", "kind": "Video", "video_id": "xRw0CLvQkjo", "keywords": "", "youtube_id": "xRw0CLvQkjo", "readable_id": "solderless-spout-2"}, "E78ji1uBtSA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E78ji1uBtSA.mp4/E78ji1uBtSA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E78ji1uBtSA.mp4/E78ji1uBtSA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E78ji1uBtSA.m3u8/E78ji1uBtSA.m3u8"}, "duration": 239, "id": "E78ji1uBtSA", "title": "Construct a triangle with constraints", "format": "mp4", "description": "Here's a challenge: in this problem we are given constraints and asked to construct a triangle. It can be done! You'll learn about degenerate triangles, too.", "path": "constructing-triangles-with-constraints/", "slug": "constructing-triangles-with-constraints", "kind": "Video", "video_id": "E78ji1uBtSA", "keywords": "", "youtube_id": "E78ji1uBtSA", "readable_id": "constructing-triangles-with-constraints"}, "FcRxdq7KGOQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FcRxdq7KGOQ.mp4/FcRxdq7KGOQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FcRxdq7KGOQ.mp4/FcRxdq7KGOQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FcRxdq7KGOQ.m3u8/FcRxdq7KGOQ.m3u8"}, "duration": 259, "id": "FcRxdq7KGOQ", "title": "Upper bound on forward settlement price", "format": "mp4", "description": "Upper Bound on Forward Settlement Price", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/upper-bound-on-forward-settlement-price/", "slug": "upper-bound-on-forward-settlement-price", "kind": "Video", "video_id": "FcRxdq7KGOQ", "keywords": "Futures, arbitrage", "youtube_id": "FcRxdq7KGOQ", "readable_id": "upper-bound-on-forward-settlement-price"}, "RHQH16HjcPs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RHQH16HjcPs.mp4/RHQH16HjcPs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RHQH16HjcPs.mp4/RHQH16HjcPs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RHQH16HjcPs.m3u8/RHQH16HjcPs.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/carbohydrate-metabolism/gluconeogenesis/", "duration": 570, "id": "RHQH16HjcPs", "title": "Gluconeogenesis: the big picture", "format": "mp4", "description": "What are the reactions that are unique to gluconeogenesis (vs. glycolysis)?Where does gluconeogenesis fit into carbohydrate metabolism? What is the big picture?", "slug": "gluconeogenesis", "kind": "Video", "video_id": "RHQH16HjcPs", "keywords": "", "youtube_id": "RHQH16HjcPs", "readable_id": "gluconeogenesis"}, "bWTtHKSEcdI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bWTtHKSEcdI.mp4/bWTtHKSEcdI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bWTtHKSEcdI.mp4/bWTtHKSEcdI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bWTtHKSEcdI.m3u8/bWTtHKSEcdI.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-similar-triangles-1/", "duration": 775, "id": "bWTtHKSEcdI", "title": "CA Geometry: Similar triangles 1", "format": "mp4", "description": "10-14, similar triangles", "slug": "ca-geometry-similar-triangles-1", "kind": "Video", "video_id": "bWTtHKSEcdI", "keywords": "geometry, similar, triangles", "youtube_id": "bWTtHKSEcdI", "readable_id": "ca-geometry-similar-triangles-1"}, "f7J0WQsajX8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f7J0WQsajX8.mp4/f7J0WQsajX8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f7J0WQsajX8.mp4/f7J0WQsajX8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f7J0WQsajX8.m3u8/f7J0WQsajX8.m3u8"}, "path": "khan/humanities/medieval-world/byzantine1/constantinople-east/byzantine-panel-with-archangel-c-525-50/", "duration": 265, "id": "f7J0WQsajX8", "title": "Ivory panel with Archangel", "format": "mp4", "description": "Byzantine panel with archangel, Ivory leaf from diptych, c. 525-50, 16.8 x 5.6 x 0.35 in. (42.8 x 14.3 x 0.9 cm), probably from Constantinople (modern Istanbul, Turkey), (British Museum, London) The British Museum translates the text at the top of the panel as: \"Receive the suppliant before you, despite his sinfulness.\" Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "byzantine-panel-with-archangel-c-525-50", "kind": "Video", "video_id": "f7J0WQsajX8", "keywords": "Byzantine Empire Archangel, smarthistory, art history, Ivory", "youtube_id": "f7J0WQsajX8", "readable_id": "byzantine-panel-with-archangel-c-525-50"}, "IiKKAw38ss0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IiKKAw38ss0.mp4/IiKKAw38ss0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IiKKAw38ss0.mp4/IiKKAw38ss0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IiKKAw38ss0.m3u8/IiKKAw38ss0.m3u8"}, "duration": 618, "id": "IiKKAw38ss0", "title": "Is limited liability or double taxation fair?", "format": "mp4", "description": "Thinking about whether limited liability or double taxation is fair", "path": "khan/economics-finance-domain/core-finance/taxes-topic/corporate-taxation/is-limited-liability-or-double-taxation-fair/", "slug": "is-limited-liability-or-double-taxation-fair", "kind": "Video", "video_id": "IiKKAw38ss0", "keywords": "corporation, LLC, taxes", "youtube_id": "IiKKAw38ss0", "readable_id": "is-limited-liability-or-double-taxation-fair"}, "HnDvUaVjQ1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HnDvUaVjQ1I.mp4/HnDvUaVjQ1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HnDvUaVjQ1I.mp4/HnDvUaVjQ1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HnDvUaVjQ1I.m3u8/HnDvUaVjQ1I.m3u8"}, "duration": 256, "id": "HnDvUaVjQ1I", "title": "Pythagorean trig identity from soh cah toa", "format": "mp4", "description": "", "path": "khan/math/trigonometry/less-basic-trigonometry/pythagorean-identity/pythagorean-trig-identity-from-soh-cah-toa/", "slug": "pythagorean-trig-identity-from-soh-cah-toa", "kind": "Video", "video_id": "HnDvUaVjQ1I", "keywords": "", "youtube_id": "HnDvUaVjQ1I", "readable_id": "pythagorean-trig-identity-from-soh-cah-toa"}, "JVDrlTdzxiI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVDrlTdzxiI.mp4/JVDrlTdzxiI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVDrlTdzxiI.mp4/JVDrlTdzxiI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVDrlTdzxiI.m3u8/JVDrlTdzxiI.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/matrices_elimination/matrices-reduced-row-echelon-form-3/", "duration": 728, "id": "JVDrlTdzxiI", "title": "Matrices: Reduced row echelon form 3", "format": "mp4", "description": "And another example of solving a system of linear equations by putting an augmented matrix into reduced row echelon form", "slug": "matrices-reduced-row-echelon-form-3", "kind": "Video", "video_id": "JVDrlTdzxiI", "keywords": "matrix, augmented, echelon", "youtube_id": "JVDrlTdzxiI", "readable_id": "matrices-reduced-row-echelon-form-3"}, "5tXV-8-6tw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5tXV-8-6tw0.mp4/5tXV-8-6tw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5tXV-8-6tw0.mp4/5tXV-8-6tw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5tXV-8-6tw0.m3u8/5tXV-8-6tw0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pertussis/what-is-pertussis/", "duration": 315, "id": "5tXV-8-6tw0", "title": "What is pertussis?", "format": "mp4", "description": "", "slug": "what-is-pertussis", "kind": "Video", "video_id": "5tXV-8-6tw0", "keywords": "", "youtube_id": "5tXV-8-6tw0", "readable_id": "what-is-pertussis"}, "tIqO2GS8O64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tIqO2GS8O64.mp4/tIqO2GS8O64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tIqO2GS8O64.mp4/tIqO2GS8O64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tIqO2GS8O64.m3u8/tIqO2GS8O64.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/william-holman-hunt-our-english-coasts-strayed-sheep-1852/", "duration": 334, "id": "tIqO2GS8O64", "title": "Hunt, Our English Coasts (\"Strayed Sheep\")", "format": "mp4", "description": "William Holman Hunt, Our English Coasts ('Strayed Sheep'), 1852, oil on canvas, 432 x 584 mm (Tate Britain, London)", "slug": "william-holman-hunt-our-english-coasts-strayed-sheep-1852", "kind": "Video", "video_id": "tIqO2GS8O64", "keywords": "Hunt, Strayed Sheep, GAP, Tate Britain, William Holman Hunt, Our English Coasts, 1852, Tate, Britain, London, Khan Academy, smarthistory, art history, Google Art Project, OER, painting, Landscape, English, sheep, coastline", "youtube_id": "tIqO2GS8O64", "readable_id": "william-holman-hunt-our-english-coasts-strayed-sheep-1852"}, "rWfs1hyguaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rWfs1hyguaM.mp4/rWfs1hyguaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rWfs1hyguaM.mp4/rWfs1hyguaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rWfs1hyguaM.m3u8/rWfs1hyguaM.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/ring-opening-reactions-epoxides/ring-opening-reactions-of-epoxides-strong-nucleophiles/", "duration": 847, "id": "rWfs1hyguaM", "title": "Ring-opening reactions of epoxides: Strong nucleophiles", "format": "mp4", "description": "", "slug": "ring-opening-reactions-of-epoxides-strong-nucleophiles", "kind": "Video", "video_id": "rWfs1hyguaM", "keywords": "", "youtube_id": "rWfs1hyguaM", "readable_id": "ring-opening-reactions-of-epoxides-strong-nucleophiles"}, "IYS4Bd9F3LA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IYS4Bd9F3LA.mp4/IYS4Bd9F3LA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IYS4Bd9F3LA.mp4/IYS4Bd9F3LA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IYS4Bd9F3LA.m3u8/IYS4Bd9F3LA.m3u8"}, "duration": 531, "id": "IYS4Bd9F3LA", "title": "Projectile height given time", "format": "mp4", "description": "Figuring out how high a ball gets given how long it spends in the air", "path": "khan/science/physics/one-dimensional-motion/kinematic_formulas/projectile-height-given-time/", "slug": "projectile-height-given-time", "kind": "Video", "video_id": "IYS4Bd9F3LA", "keywords": "physics, mechanics, projectile, motion", "youtube_id": "IYS4Bd9F3LA", "readable_id": "projectile-height-given-time"}, "Pu1WCHsYfKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pu1WCHsYfKQ.mp4/Pu1WCHsYfKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pu1WCHsYfKQ.mp4/Pu1WCHsYfKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pu1WCHsYfKQ.m3u8/Pu1WCHsYfKQ.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/duccio-the-virgin-and-child-c-1315/", "duration": 223, "id": "Pu1WCHsYfKQ", "title": "Duccio, The Virgin and Child with Saints Dominic and Aurea", "format": "mp4", "description": "Duccio di Buoninsegna, The Virgin and Child with Saints Dominic and Aurea, c. 1315, tempera on wood, 42.5 x 34.5 cm (National Gallery, London). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "duccio-the-virgin-and-child-c-1315", "kind": "Video", "video_id": "Pu1WCHsYfKQ", "keywords": "art, art history, duccio, Renaissance, trecento, London, National Gallery", "youtube_id": "Pu1WCHsYfKQ", "readable_id": "duccio-the-virgin-and-child-c-1315"}, "XjFNmfLv9_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XjFNmfLv9_Q.mp4/XjFNmfLv9_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XjFNmfLv9_Q.mp4/XjFNmfLv9_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XjFNmfLv9_Q.m3u8/XjFNmfLv9_Q.m3u8"}, "duration": 751, "id": "XjFNmfLv9_Q", "title": "Acid base titration", "format": "mp4", "description": "Using acid-base titration to find mass of oxalic acid", "path": "khan/science/chemistry/acid-base-equilibrium/titrations/acid-base-titration/", "slug": "acid-base-titration", "kind": "Video", "video_id": "XjFNmfLv9_Q", "keywords": "Acid, Base, Titration, oxalic", "youtube_id": "XjFNmfLv9_Q", "readable_id": "acid-base-titration"}, "ZhROXmbUVKE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZhROXmbUVKE.mp4/ZhROXmbUVKE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZhROXmbUVKE.mp4/ZhROXmbUVKE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZhROXmbUVKE.m3u8/ZhROXmbUVKE.m3u8"}, "duration": 46, "id": "ZhROXmbUVKE", "title": "Determining a translation for a shape", "format": "mp4", "description": "", "path": "khan/math/basic-geo/transformations-congruence-similarity-geo/transformations-basics/determining-a-translation-for-a-shape/", "slug": "determining-a-translation-for-a-shape", "kind": "Video", "video_id": "ZhROXmbUVKE", "keywords": "", "youtube_id": "ZhROXmbUVKE", "readable_id": "determining-a-translation-for-a-shape"}, "8XKFcz7zP5E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8XKFcz7zP5E.mp4/8XKFcz7zP5E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8XKFcz7zP5E.mp4/8XKFcz7zP5E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8XKFcz7zP5E.m3u8/8XKFcz7zP5E.m3u8"}, "duration": 536, "id": "8XKFcz7zP5E", "title": "Attach the LED eyes", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-3/", "slug": "solderless-spout-3", "kind": "Video", "video_id": "8XKFcz7zP5E", "keywords": "", "youtube_id": "8XKFcz7zP5E", "readable_id": "solderless-spout-3"}, "9Jg5S7F2SMQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9Jg5S7F2SMQ.mp4/9Jg5S7F2SMQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9Jg5S7F2SMQ.mp4/9Jg5S7F2SMQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9Jg5S7F2SMQ.m3u8/9Jg5S7F2SMQ.m3u8"}, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-three-digit-compare/comparing-whole-numbers/", "duration": 124, "id": "9Jg5S7F2SMQ", "title": "Comparing whole numbers", "format": "mp4", "description": "Learn how to compare whole numbers. The numbers used in this video are 394 and 397.", "slug": "comparing-whole-numbers", "kind": "Video", "video_id": "9Jg5S7F2SMQ", "keywords": "U01_L1_T3_we1, Comparing, Whole, Numbers", "youtube_id": "9Jg5S7F2SMQ", "readable_id": "comparing-whole-numbers"}, "EmQ1TdoT-zE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EmQ1TdoT-zE.mp4/EmQ1TdoT-zE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EmQ1TdoT-zE.mp4/EmQ1TdoT-zE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EmQ1TdoT-zE.m3u8/EmQ1TdoT-zE.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/hagia-sophia-apse/", "duration": 301, "id": "EmQ1TdoT-zE", "title": "Theotokos mosaic, apse, Hagia Sophia, Istanbul", "format": "mp4", "description": "Theotokos mosaic, 867, apse, Hagia Sophia, Istanbul\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "hagia-sophia-apse", "kind": "Video", "video_id": "EmQ1TdoT-zE", "keywords": "byzantine, hagia sophia", "youtube_id": "EmQ1TdoT-zE", "readable_id": "hagia-sophia-apse"}, "vinEPfrqfiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vinEPfrqfiU.mp4/vinEPfrqfiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vinEPfrqfiU.mp4/vinEPfrqfiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vinEPfrqfiU.m3u8/vinEPfrqfiU.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-sal/e2-e1-sn2-sn1-reactions-example-2/", "duration": 186, "id": "vinEPfrqfiU", "title": "E2 E1 Sn2 Sn1 reactions example 2", "format": "mp4", "description": "E2 E1 Sn2 Sn1 Reactions Example 2", "slug": "e2-e1-sn2-sn1-reactions-example-2", "kind": "Video", "video_id": "vinEPfrqfiU", "keywords": "E2, E1, Sn2, Sn1, Reactions, Example, organic, chemistry", "youtube_id": "vinEPfrqfiU", "readable_id": "e2-e1-sn2-sn1-reactions-example-2"}, "EOJrRnpiq5s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EOJrRnpiq5s.mp4/EOJrRnpiq5s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EOJrRnpiq5s.mp4/EOJrRnpiq5s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EOJrRnpiq5s.m3u8/EOJrRnpiq5s.m3u8"}, "duration": 399, "id": "EOJrRnpiq5s", "title": "Column chromatography", "format": "mp4", "description": "Learn how to separate chemicals using column chromatography. By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/column-chromatography/", "slug": "column-chromatography", "kind": "Video", "video_id": "EOJrRnpiq5s", "keywords": "column chromatography", "youtube_id": "EOJrRnpiq5s", "readable_id": "column-chromatography"}, "WFuLVSz6n8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WFuLVSz6n8M.mp4/WFuLVSz6n8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WFuLVSz6n8M.mp4/WFuLVSz6n8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WFuLVSz6n8M.m3u8/WFuLVSz6n8M.m3u8"}, "duration": 247, "id": "WFuLVSz6n8M", "title": "Put writer payoff diagrams", "format": "mp4", "description": "Put Writer Payoff Diagrams", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/put-writer-payoff-diagrams/", "slug": "put-writer-payoff-diagrams", "kind": "Video", "video_id": "WFuLVSz6n8M", "keywords": "Put, Writer, Payoff, Diagrams", "youtube_id": "WFuLVSz6n8M", "readable_id": "put-writer-payoff-diagrams"}, "dAMNo4u6Ogc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dAMNo4u6Ogc.mp4/dAMNo4u6Ogc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dAMNo4u6Ogc.mp4/dAMNo4u6Ogc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dAMNo4u6Ogc.m3u8/dAMNo4u6Ogc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2008-may-4-13/", "duration": 76, "id": "dAMNo4u6Ogc", "title": "13 Exponential growth", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-13", "kind": "Video", "video_id": "dAMNo4u6Ogc", "keywords": "", "youtube_id": "dAMNo4u6Ogc", "readable_id": "sat-2008-may-4-13"}, "Ec-BKdC8vOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ec-BKdC8vOo.mp4/Ec-BKdC8vOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ec-BKdC8vOo.mp4/Ec-BKdC8vOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ec-BKdC8vOo.m3u8/Ec-BKdC8vOo.m3u8"}, "duration": 1098, "id": "Ec-BKdC8vOo", "title": "2003 AIME II problem 14", "format": "mp4", "description": "Trigonometry and geometry to find the area of an equilateral (but not regular) hexagon", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-14/", "slug": "2003-aime-ii-problem-14", "kind": "Video", "video_id": "Ec-BKdC8vOo", "keywords": "trigonometry, parrallelogram, area", "youtube_id": "Ec-BKdC8vOo", "readable_id": "2003-aime-ii-problem-14"}, "UDe6zeabyQM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UDe6zeabyQM.mp4/UDe6zeabyQM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UDe6zeabyQM.mp4/UDe6zeabyQM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UDe6zeabyQM.m3u8/UDe6zeabyQM.m3u8"}, "duration": 231, "id": "UDe6zeabyQM", "title": "Futures curves II", "format": "mp4", "description": "Futures Curves II", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/futures-curves-ii/", "slug": "futures-curves-ii", "kind": "Video", "video_id": "UDe6zeabyQM", "keywords": "Futures, Curves, II", "youtube_id": "UDe6zeabyQM", "readable_id": "futures-curves-ii"}, "LpLnmuAyNWg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LpLnmuAyNWg.mp4/LpLnmuAyNWg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LpLnmuAyNWg.mp4/LpLnmuAyNWg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LpLnmuAyNWg.m3u8/LpLnmuAyNWg.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimals-on-number-line-pre-alg/decimals-on-a-number-line/", "duration": 99, "id": "LpLnmuAyNWg", "title": "Decimals on a number line", "format": "mp4", "description": "Let's compare decimals on a number line, shall we?", "slug": "decimals-on-a-number-line", "kind": "Video", "video_id": "LpLnmuAyNWg", "keywords": "u03_l1_t2_we3, Decimals, on, Number, Line", "youtube_id": "LpLnmuAyNWg", "readable_id": "decimals-on-a-number-line"}, "QwvJ6z49m-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QwvJ6z49m-c.mp4/QwvJ6z49m-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QwvJ6z49m-c.mp4/QwvJ6z49m-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QwvJ6z49m-c.m3u8/QwvJ6z49m-c.m3u8"}, "duration": 920, "id": "QwvJ6z49m-c", "title": "More fiscal cliff analysis", "format": "mp4", "description": "A bit more in-depth analysis when thinking about the fiscal cliff.", "path": "khan/humanities/history/american-civics/american-civics/more-fiscal-cliff-analysis/", "slug": "more-fiscal-cliff-analysis", "kind": "Video", "video_id": "QwvJ6z49m-c", "keywords": "", "youtube_id": "QwvJ6z49m-c", "readable_id": "more-fiscal-cliff-analysis"}, "TGgOCc5hoHA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TGgOCc5hoHA.mp4/TGgOCc5hoHA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TGgOCc5hoHA.mp4/TGgOCc5hoHA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TGgOCc5hoHA.m3u8/TGgOCc5hoHA.m3u8"}, "duration": 394, "id": "TGgOCc5hoHA", "title": "Example: Figure out the trig function", "format": "mp4", "description": "Determining a trig function given its graph", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/matching-a-trigonometric-function-to-its-graph/", "slug": "matching-a-trigonometric-function-to-its-graph", "kind": "Video", "video_id": "TGgOCc5hoHA", "keywords": "amplitude, period, trig", "youtube_id": "TGgOCc5hoHA", "readable_id": "matching-a-trigonometric-function-to-its-graph"}, "gS6TfWUv97I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gS6TfWUv97I.mp4/gS6TfWUv97I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gS6TfWUv97I.mp4/gS6TfWUv97I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gS6TfWUv97I.m3u8/gS6TfWUv97I.m3u8"}, "duration": 435, "id": "gS6TfWUv97I", "title": "Lattice multiplication", "format": "mp4", "description": "Introduction to lattice multiplication", "path": "khan/math/arithmetic/multiplication-division/lattice_multiplication/lattice-multiplication/", "slug": "lattice-multiplication", "kind": "Video", "video_id": "gS6TfWUv97I", "keywords": "lattice, multiplication, CC_3_OA_5, CC_3_OA_7, CC_4_NBT_5", "youtube_id": "gS6TfWUv97I", "readable_id": "lattice-multiplication"}, "HbDWBeRJboE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HbDWBeRJboE.mp4/HbDWBeRJboE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HbDWBeRJboE.mp4/HbDWBeRJboE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HbDWBeRJboE.m3u8/HbDWBeRJboE.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-preparation-alkynes/preparation-of-alkynes/", "duration": 445, "id": "HbDWBeRJboE", "title": "Preparation of alkynes", "format": "mp4", "description": "Note that if a terminal alkyne is produced, the strong base will deprotonate the alkyne to form an alkynide anion. A proton source (like H2O) must be added to regenerate the terminal alkyne.", "slug": "preparation-of-alkynes", "kind": "Video", "video_id": "HbDWBeRJboE", "keywords": "", "youtube_id": "HbDWBeRJboE", "readable_id": "preparation-of-alkynes"}, "8shz0KfqkMo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8shz0KfqkMo.mp4/8shz0KfqkMo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8shz0KfqkMo.mp4/8shz0KfqkMo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8shz0KfqkMo.m3u8/8shz0KfqkMo.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/sensory-adapting/", "duration": 401, "id": "8shz0KfqkMo", "title": "Sensory adaptation", "format": "mp4", "description": "", "slug": "sensory-adapting", "kind": "Video", "video_id": "8shz0KfqkMo", "keywords": "", "youtube_id": "8shz0KfqkMo", "readable_id": "sensory-adapting"}, "TGwXMpWvcYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TGwXMpWvcYU.mp4/TGwXMpWvcYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TGwXMpWvcYU.mp4/TGwXMpWvcYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TGwXMpWvcYU.m3u8/TGwXMpWvcYU.m3u8"}, "duration": 235, "id": "TGwXMpWvcYU", "title": "Dreaming", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/sleep-and-consciousness/dreaming/", "slug": "dreaming", "kind": "Video", "video_id": "TGwXMpWvcYU", "keywords": "", "youtube_id": "TGwXMpWvcYU", "readable_id": "dreaming"}, "NpWxl4C0OWU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NpWxl4C0OWU.mp4/NpWxl4C0OWU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NpWxl4C0OWU.mp4/NpWxl4C0OWU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NpWxl4C0OWU.m3u8/NpWxl4C0OWU.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/mondrian-composition-no-ii-with-red-and-blue-1929/", "duration": 363, "id": "NpWxl4C0OWU", "title": "Mondrian, Composition No. II, with Red and Blue", "format": "mp4", "description": "Piet Mondrian, Composition No. II, with Red and Blue, oil on canvas, 1929 (original date partly obliterated; mistakenly repainted 1925 by Mondrian). Oil on canvas, 15 7/8 x 12 5/8\" (40.3 x 32.1 cm) (The Museum of Modern Art) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "mondrian-composition-no-ii-with-red-and-blue-1929", "kind": "Video", "video_id": "NpWxl4C0OWU", "keywords": "Mondrian, Smarthistory, Art History, Piet Mondrian", "youtube_id": "NpWxl4C0OWU", "readable_id": "mondrian-composition-no-ii-with-red-and-blue-1929"}, "jDIj0CUjGvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jDIj0CUjGvM.mp4/jDIj0CUjGvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jDIj0CUjGvM.mp4/jDIj0CUjGvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jDIj0CUjGvM.m3u8/jDIj0CUjGvM.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-more-fewer-100/more-word-problems/", "duration": 173, "id": "jDIj0CUjGvM", "title": "More word problems", "format": "mp4", "description": "", "slug": "more-word-problems", "kind": "Video", "video_id": "jDIj0CUjGvM", "keywords": "", "youtube_id": "jDIj0CUjGvM", "readable_id": "more-word-problems"}, "Lmd_CDwBXFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lmd_CDwBXFs.mp4/Lmd_CDwBXFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lmd_CDwBXFs.mp4/Lmd_CDwBXFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lmd_CDwBXFs.m3u8/Lmd_CDwBXFs.m3u8"}, "duration": 167, "id": "Lmd_CDwBXFs", "title": "Another quantitative easing video", "format": "mp4", "description": "More on quantitative easing", "path": "khan/economics-finance-domain/core-finance/money-and-banking/federal-reserve/another-quantitative-easing-video/", "slug": "another-quantitative-easing-video", "kind": "Video", "video_id": "Lmd_CDwBXFs", "keywords": "federal, reserve, Ben, Bernanke", "youtube_id": "Lmd_CDwBXFs", "readable_id": "another-quantitative-easing-video"}, "TJeUOPc9pgs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TJeUOPc9pgs.mp4/TJeUOPc9pgs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TJeUOPc9pgs.mp4/TJeUOPc9pgs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TJeUOPc9pgs.m3u8/TJeUOPc9pgs.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/hemorrhagic-strokes/", "duration": 448, "id": "TJeUOPc9pgs", "title": "Hemorrhagic strokes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "hemorrhagic-strokes", "kind": "Video", "video_id": "TJeUOPc9pgs", "keywords": "", "youtube_id": "TJeUOPc9pgs", "readable_id": "hemorrhagic-strokes"}, "PdHSs5_kx24": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PdHSs5_kx24.mp4/PdHSs5_kx24.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PdHSs5_kx24.mp4/PdHSs5_kx24.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PdHSs5_kx24.m3u8/PdHSs5_kx24.m3u8"}, "duration": 245, "id": "PdHSs5_kx24", "title": "Units of measurement word problem: volume (metric)", "format": "mp4", "description": "Great word problem that get us thinking about volume. We'll need to express the answer in two different units of measurement.", "path": "unit-word-problem-example/", "slug": "unit-word-problem-example", "kind": "Video", "video_id": "PdHSs5_kx24", "keywords": "", "youtube_id": "PdHSs5_kx24", "readable_id": "unit-word-problem-example"}, "3_-hYeuJTzQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3_-hYeuJTzQ.mp4/3_-hYeuJTzQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3_-hYeuJTzQ.mp4/3_-hYeuJTzQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3_-hYeuJTzQ.m3u8/3_-hYeuJTzQ.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/el-greco-adoration-of-the-shepherds-c-1612-14/", "duration": 250, "id": "3_-hYeuJTzQ", "title": "El Greco, Adoration of the Shepherds", "format": "mp4", "description": "El Greco (Domenikos Theotokopoulos), Adoration of the Shepherds, ca. 1612 - 1614, oil on canvas, 126 x 71 in. (319 x 180 cm), (Museo Nacional del Prado, Madrid) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "el-greco-adoration-of-the-shepherds-c-1612-14", "kind": "Video", "video_id": "3_-hYeuJTzQ", "keywords": "El Greco, Smarthistory, Art History, Baroque", "youtube_id": "3_-hYeuJTzQ", "readable_id": "el-greco-adoration-of-the-shepherds-c-1612-14"}, "pAjluTxSYgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pAjluTxSYgY.mp4/pAjluTxSYgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pAjluTxSYgY.mp4/pAjluTxSYgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pAjluTxSYgY.m3u8/pAjluTxSYgY.m3u8"}, "path": "khan/science/chemistry/chemical-bonds/types-chemical-bonds/metallic-nature-trends/", "duration": 568, "id": "pAjluTxSYgY", "title": "Metallic nature", "format": "mp4", "description": "", "slug": "metallic-nature-trends", "kind": "Video", "video_id": "pAjluTxSYgY", "keywords": "", "youtube_id": "pAjluTxSYgY", "readable_id": "metallic-nature-trends"}, "Rb7NsHUw384": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rb7NsHUw384.mp4/Rb7NsHUw384.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rb7NsHUw384.mp4/Rb7NsHUw384.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rb7NsHUw384.m3u8/Rb7NsHUw384.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/britain-18c/britain-ageof-revolution/room-1760-1780/", "duration": 198, "id": "Rb7NsHUw384", "title": "Room: 1760-1780", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Greg Sullivan explores the period 1760-1780.\n\nLearn more about the art featured in this video:\n-\u00a0Sir Joshua Reynolds, Colonel Acland and Lord Sydney: The Archers, 1769\n-\u00a0Benjamin West, Pylades and Orestes Brought as Victims before Iphigenia, 1766\n-\u00a0Nathaniel Hone, Sketch for \u2018The Conjuror\u2019. 1775", "slug": "room-1760-1780", "kind": "Video", "video_id": "Rb7NsHUw384", "keywords": "Tate, ", "youtube_id": "Rb7NsHUw384", "readable_id": "room-1760-1780"}, "bTz_tx460EY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bTz_tx460EY.mp4/bTz_tx460EY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bTz_tx460EY.mp4/bTz_tx460EY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bTz_tx460EY.m3u8/bTz_tx460EY.m3u8"}, "duration": 176, "id": "bTz_tx460EY", "title": "Stagflation", "format": "mp4", "description": "How a supply shock can cause prices to rise and the economy to stagnate", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/inflation-scenarios-tutorial/stagflation/", "slug": "stagflation", "kind": "Video", "video_id": "bTz_tx460EY", "keywords": "inflation, deflation, stagnation, finance", "youtube_id": "bTz_tx460EY", "readable_id": "stagflation"}, "2UTr46btzaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2UTr46btzaY.mp4/2UTr46btzaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2UTr46btzaY.mp4/2UTr46btzaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2UTr46btzaY.m3u8/2UTr46btzaY.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/hybrid-orbitals-jay/tetrahedral-bond-angle-proof/", "duration": 306, "id": "2UTr46btzaY", "title": "Tetrahedral bond angle proof", "format": "mp4", "description": "", "slug": "tetrahedral-bond-angle-proof", "kind": "Video", "video_id": "2UTr46btzaY", "keywords": "", "youtube_id": "2UTr46btzaY", "readable_id": "tetrahedral-bond-angle-proof"}, "XOAn5z8mkvI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XOAn5z8mkvI.mp4/XOAn5z8mkvI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XOAn5z8mkvI.mp4/XOAn5z8mkvI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XOAn5z8mkvI.m3u8/XOAn5z8mkvI.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/multi-step-inequalities-2/", "duration": 227, "id": "XOAn5z8mkvI", "title": "Multi-step inequalities 2", "format": "mp4", "description": "Multi-Step Inequalities 2", "slug": "multi-step-inequalities-2", "kind": "Video", "video_id": "XOAn5z8mkvI", "keywords": "u10_l2_t2_we2, Multi-Step, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_39336_A-CED_1, CC_39336_A-CED_3", "youtube_id": "XOAn5z8mkvI", "readable_id": "multi-step-inequalities-2"}, "usH9VUi2-Xg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/usH9VUi2-Xg.mp4/usH9VUi2-Xg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/usH9VUi2-Xg.mp4/usH9VUi2-Xg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/usH9VUi2-Xg.m3u8/usH9VUi2-Xg.m3u8"}, "duration": 383, "id": "usH9VUi2-Xg", "title": "Constructing a unit normal vector to a surface", "format": "mp4", "description": "Deriving a unit normal vector from the surface parametrization", "path": "khan/math/multivariable-calculus/surface-integrals/3d_flux/constructing-a-unit-normal-vector-to-a-surface/", "slug": "constructing-a-unit-normal-vector-to-a-surface", "kind": "Video", "video_id": "usH9VUi2-Xg", "keywords": "surface, integral", "youtube_id": "usH9VUi2-Xg", "readable_id": "constructing-a-unit-normal-vector-to-a-surface"}, "W9B3VYdC5T8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W9B3VYdC5T8.mp4/W9B3VYdC5T8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W9B3VYdC5T8.mp4/W9B3VYdC5T8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W9B3VYdC5T8.m3u8/W9B3VYdC5T8.m3u8"}, "duration": 324, "id": "W9B3VYdC5T8", "title": "Sum of the exterior angles of convex polygon", "format": "mp4", "description": "More elegant way to find the sum of the exterior angles of a convex polygon", "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/sum-of-the-exterior-angles-of-convex-polygon/", "slug": "sum-of-the-exterior-angles-of-convex-polygon", "kind": "Video", "video_id": "W9B3VYdC5T8", "keywords": "geometry, angles, sum", "youtube_id": "W9B3VYdC5T8", "readable_id": "sum-of-the-exterior-angles-of-convex-polygon"}, "9uwLgf84p5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9uwLgf84p5w.mp4/9uwLgf84p5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9uwLgf84p5w.mp4/9uwLgf84p5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9uwLgf84p5w.m3u8/9uwLgf84p5w.m3u8"}, "path": "khan/math/pre-algebra/measurement/perimeter/introduction-to-perimeter/", "duration": 201, "id": "9uwLgf84p5w", "title": "Introduction to perimeter", "format": "mp4", "description": "Find perimeter by adding side-lengths of various figures.", "slug": "introduction-to-perimeter", "kind": "Video", "video_id": "9uwLgf84p5w", "keywords": "", "youtube_id": "9uwLgf84p5w", "readable_id": "introduction-to-perimeter"}, "HdqbCvqTb20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HdqbCvqTb20.mp4/HdqbCvqTb20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HdqbCvqTb20.mp4/HdqbCvqTb20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HdqbCvqTb20.m3u8/HdqbCvqTb20.m3u8"}, "duration": 558, "id": "HdqbCvqTb20", "title": "Demand-pull inflation under Johnson", "format": "mp4", "description": "Thinking about whether inflation in the late 1960s is consistent with the AD-AS model", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/historic-ad-as-scenarios/demand-pull-inflation-under-johnson/", "slug": "demand-pull-inflation-under-johnson", "kind": "Video", "video_id": "HdqbCvqTb20", "keywords": "macroeconomics, demand-pull, inflation", "youtube_id": "HdqbCvqTb20", "readable_id": "demand-pull-inflation-under-johnson"}, "0gXdtpz9GN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0gXdtpz9GN4.mp4/0gXdtpz9GN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0gXdtpz9GN4.mp4/0gXdtpz9GN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0gXdtpz9GN4.m3u8/0gXdtpz9GN4.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-type-of-college/comparing-nonprofit-vs-for-profit-colleges/", "duration": 71, "id": "0gXdtpz9GN4", "title": "Comparing nonprofit vs. for profit colleges", "format": "mp4", "description": "Find average debt-levels and graduation rates at nonprofit and for profit colleges", "slug": "comparing-nonprofit-vs-for-profit-colleges", "kind": "Video", "video_id": "0gXdtpz9GN4", "keywords": "", "youtube_id": "0gXdtpz9GN4", "readable_id": "comparing-nonprofit-vs-for-profit-colleges"}, "HKUJkMQsGkM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HKUJkMQsGkM.mp4/HKUJkMQsGkM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HKUJkMQsGkM.mp4/HKUJkMQsGkM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HKUJkMQsGkM.m3u8/HKUJkMQsGkM.m3u8"}, "duration": 166, "id": "HKUJkMQsGkM", "title": "Sum and product of rational numbers", "format": "mp4", "description": "", "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/sum-and-product-of-rational-numbers/", "slug": "sum-and-product-of-rational-numbers", "kind": "Video", "video_id": "HKUJkMQsGkM", "keywords": "", "youtube_id": "HKUJkMQsGkM", "readable_id": "sum-and-product-of-rational-numbers"}, "dZPOCU10TqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dZPOCU10TqY.mp4/dZPOCU10TqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dZPOCU10TqY.mp4/dZPOCU10TqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dZPOCU10TqY.m3u8/dZPOCU10TqY.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/place_value/comparing-place-values/", "duration": 150, "id": "dZPOCU10TqY", "title": "Comparing place values", "format": "mp4", "description": "When asked to compare the place values in a number, remember this simple fact: each step up in place value results in an increase of a factor of ten. Watch this great explanation and become a pro.", "slug": "comparing-place-values", "kind": "Video", "video_id": "dZPOCU10TqY", "keywords": "", "youtube_id": "dZPOCU10TqY", "readable_id": "comparing-place-values"}, "zIcxrhyJs6M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zIcxrhyJs6M.mp4/zIcxrhyJs6M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zIcxrhyJs6M.mp4/zIcxrhyJs6M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zIcxrhyJs6M.m3u8/zIcxrhyJs6M.m3u8"}, "duration": 294, "id": "zIcxrhyJs6M", "title": "Patterns in sequences 2", "format": "mp4", "description": "Patterns in Sequences 2", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/patterns-in-sequences-2/", "slug": "patterns-in-sequences-2", "kind": "Video", "video_id": "zIcxrhyJs6M", "keywords": "U03_L1_T1_we2, Patterns, in, Sequences, CC_39336_F-BF_2", "youtube_id": "zIcxrhyJs6M", "readable_id": "patterns-in-sequences-2"}, "B8OUL9QYNpI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B8OUL9QYNpI.mp4/B8OUL9QYNpI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B8OUL9QYNpI.mp4/B8OUL9QYNpI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B8OUL9QYNpI.m3u8/B8OUL9QYNpI.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-april-12-2013-mars-bygone-atmosphere/", "duration": 133, "id": "B8OUL9QYNpI", "title": "Mars' bygone atmosphere", "format": "mp4", "description": "NASA's Curiosity finds that the Red Planet doesn't have the same atmosphere it used to.", "slug": "curiosity-rover-report-april-12-2013-mars-bygone-atmosphere", "kind": "Video", "video_id": "B8OUL9QYNpI", "keywords": "", "youtube_id": "B8OUL9QYNpI", "readable_id": "curiosity-rover-report-april-12-2013-mars-bygone-atmosphere"}, "H-qREcJqUhY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H-qREcJqUhY.mp4/H-qREcJqUhY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H-qREcJqUhY.mp4/H-qREcJqUhY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H-qREcJqUhY.m3u8/H-qREcJqUhY.m3u8"}, "duration": 779, "id": "H-qREcJqUhY", "title": "Calculate your own osmolarity", "format": "mp4", "description": "Learn how to use three lab values (Sodium, glucose, and BUN) to approximate your plasma osmolarity. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/lab-values/calculate-your-own-osmolarity/", "slug": "calculate-your-own-osmolarity", "kind": "Video", "video_id": "H-qREcJqUhY", "keywords": "", "youtube_id": "H-qREcJqUhY", "readable_id": "calculate-your-own-osmolarity"}, "jM-gvSqsP5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jM-gvSqsP5A.mp4/jM-gvSqsP5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jM-gvSqsP5A.mp4/jM-gvSqsP5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jM-gvSqsP5A.m3u8/jM-gvSqsP5A.m3u8"}, "duration": 305, "id": "jM-gvSqsP5A", "title": "Action potential patterns", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/action-potential-patterns/", "slug": "action-potential-patterns", "kind": "Video", "video_id": "jM-gvSqsP5A", "keywords": "", "youtube_id": "jM-gvSqsP5A", "readable_id": "action-potential-patterns"}, "08gsb8p--JM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/08gsb8p--JM.mp4/08gsb8p--JM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/08gsb8p--JM.mp4/08gsb8p--JM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/08gsb8p--JM.m3u8/08gsb8p--JM.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-essays/ss-admissions-essay-meaningful-poem/", "duration": 149, "id": "08gsb8p--JM", "title": "Student story: Admissions essay about a meaningful poem", "format": "mp4", "description": "", "slug": "ss-admissions-essay-meaningful-poem", "kind": "Video", "video_id": "08gsb8p--JM", "keywords": "", "youtube_id": "08gsb8p--JM", "readable_id": "ss-admissions-essay-meaningful-poem"}, "xoXYirs2Mzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xoXYirs2Mzw.mp4/xoXYirs2Mzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xoXYirs2Mzw.mp4/xoXYirs2Mzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xoXYirs2Mzw.m3u8/xoXYirs2Mzw.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/div-fractions-fractions-pre-alg/dividing-a-whole-number-by-a-fraction-word-problem/", "duration": 152, "id": "xoXYirs2Mzw", "title": "Dividing whole numbers and fractions: potpourri", "format": "mp4", "description": "Solve a word problem by dividing a whole number by a fraction. The example used in this video is 4 \u00f7 1/5.", "slug": "dividing-a-whole-number-by-a-fraction-word-problem", "kind": "Video", "video_id": "xoXYirs2Mzw", "keywords": "", "youtube_id": "xoXYirs2Mzw", "readable_id": "dividing-a-whole-number-by-a-fraction-word-problem"}, "mQh5ku9dyJQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mQh5ku9dyJQ.mp4/mQh5ku9dyJQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mQh5ku9dyJQ.mp4/mQh5ku9dyJQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mQh5ku9dyJQ.m3u8/mQh5ku9dyJQ.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/transcription-1/", "duration": 726, "id": "mQh5ku9dyJQ", "title": "Transcription 1", "format": "mp4", "description": "", "slug": "transcription-1", "kind": "Video", "video_id": "mQh5ku9dyJQ", "keywords": "", "youtube_id": "mQh5ku9dyJQ", "readable_id": "transcription-1"}, "8x8tA4YPhJw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8x8tA4YPhJw.mp4/8x8tA4YPhJw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8x8tA4YPhJw.mp4/8x8tA4YPhJw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8x8tA4YPhJw.m3u8/8x8tA4YPhJw.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/oxidation-reduction-review/formal-charge-on-oxygen/", "duration": 587, "id": "8x8tA4YPhJw", "title": "Formal charge on oxygen", "format": "mp4", "description": "How to calculate the formal charge on oxygen", "slug": "formal-charge-on-oxygen", "kind": "Video", "video_id": "8x8tA4YPhJw", "keywords": "", "youtube_id": "8x8tA4YPhJw", "readable_id": "formal-charge-on-oxygen"}, "Thvc2s9aUP4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Thvc2s9aUP4.mp4/Thvc2s9aUP4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Thvc2s9aUP4.mp4/Thvc2s9aUP4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Thvc2s9aUP4.m3u8/Thvc2s9aUP4.m3u8"}, "duration": 511, "id": "Thvc2s9aUP4", "title": "Generalizing the washer method", "format": "mp4", "description": "Looking at the example from the last video in a more generalized way", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/generalizing-the-washer-method/", "slug": "generalizing-the-washer-method", "kind": "Video", "video_id": "Thvc2s9aUP4", "keywords": "", "youtube_id": "Thvc2s9aUP4", "readable_id": "generalizing-the-washer-method"}, "cjYHo2tS9sQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cjYHo2tS9sQ.mp4/cjYHo2tS9sQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cjYHo2tS9sQ.mp4/cjYHo2tS9sQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cjYHo2tS9sQ.m3u8/cjYHo2tS9sQ.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2008-may-8-10-11/", "duration": 379, "id": "cjYHo2tS9sQ", "title": "10 11 Calling plan", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-10-11", "kind": "Video", "video_id": "cjYHo2tS9sQ", "keywords": "", "youtube_id": "cjYHo2tS9sQ", "readable_id": "sat-2008-may-8-10-11"}, "eQzbpL0uWVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eQzbpL0uWVA.mp4/eQzbpL0uWVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eQzbpL0uWVA.mp4/eQzbpL0uWVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eQzbpL0uWVA.m3u8/eQzbpL0uWVA.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/electrophilic-aromatic-substitution/electrophilic-aromatic-substitution-mechanism/", "duration": 415, "id": "eQzbpL0uWVA", "title": "Electrophilic aromatic substitution mechanism", "format": "mp4", "description": "The general reaction and mechanism of Electrophilic Aromatic Substitution", "slug": "electrophilic-aromatic-substitution-mechanism", "kind": "Video", "video_id": "eQzbpL0uWVA", "keywords": "", "youtube_id": "eQzbpL0uWVA", "readable_id": "electrophilic-aromatic-substitution-mechanism"}, "d9alWZRzBWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d9alWZRzBWk.mp4/d9alWZRzBWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d9alWZRzBWk.mp4/d9alWZRzBWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d9alWZRzBWk.m3u8/d9alWZRzBWk.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/intro-information-theory/", "duration": 206, "id": "d9alWZRzBWk", "title": "What is information theory?", "format": "mp4", "description": "A broad introduction to this field of study", "slug": "intro-information-theory", "kind": "Video", "video_id": "d9alWZRzBWk", "keywords": "information theory, brit cruise", "youtube_id": "d9alWZRzBWk", "readable_id": "intro-information-theory"}, "IzyheHIPBXU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IzyheHIPBXU.mp4/IzyheHIPBXU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IzyheHIPBXU.mp4/IzyheHIPBXU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IzyheHIPBXU.m3u8/IzyheHIPBXU.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/magnetism/discovery-of-magnetism/", "duration": 69, "id": "IzyheHIPBXU", "title": "Discovery of magnetism", "format": "mp4", "description": "Our ancestors noticed that certain rocks were attracted to each other. They also noticed that this force could be transferred onto certain metallic objects!", "slug": "discovery-of-magnetism", "kind": "Video", "video_id": "IzyheHIPBXU", "keywords": "compass", "youtube_id": "IzyheHIPBXU", "readable_id": "discovery-of-magnetism"}, "T_mFhtBja5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T_mFhtBja5A.mp4/T_mFhtBja5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T_mFhtBja5A.mp4/T_mFhtBja5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T_mFhtBja5A.m3u8/T_mFhtBja5A.m3u8"}, "duration": 324, "id": "T_mFhtBja5A", "title": "Alpha amino acid synthesis", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/proteins/alpha-amino-acid-synthesis/", "slug": "alpha-amino-acid-synthesis", "kind": "Video", "video_id": "T_mFhtBja5A", "keywords": "", "youtube_id": "T_mFhtBja5A", "readable_id": "alpha-amino-acid-synthesis"}, "94xKRkCHlv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/94xKRkCHlv0.mp4/94xKRkCHlv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/94xKRkCHlv0.mp4/94xKRkCHlv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/94xKRkCHlv0.m3u8/94xKRkCHlv0.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/leonardo-da-vinci/leonardo-da-vinci-the-virgin-of-the-rocks-c-1491-1508/", "duration": 338, "id": "94xKRkCHlv0", "title": "Leonardo, Virgin of the Rocks", "format": "mp4", "description": "Leonardo da Vinci, The Virgin of the Rocks, c. 1491-1508, oil on panel, 189.5 x 120 cm\u00a0(The National Gallery, London)", "slug": "leonardo-da-vinci-the-virgin-of-the-rocks-c-1491-1508", "kind": "Video", "video_id": "94xKRkCHlv0", "keywords": "Leonardo, London, National Gallery, Virgin of the Rocks, Renaissance, Leonardo da Vinci, Smarthistory, Art History, History of Art, High Renaissance", "youtube_id": "94xKRkCHlv0", "readable_id": "leonardo-da-vinci-the-virgin-of-the-rocks-c-1491-1508"}, "YghRP8S2K-4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YghRP8S2K-4.mp4/YghRP8S2K-4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YghRP8S2K-4.mp4/YghRP8S2K-4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YghRP8S2K-4.m3u8/YghRP8S2K-4.m3u8"}, "duration": 415, "id": "YghRP8S2K-4", "title": "Applying radical equations 2", "format": "mp4", "description": "Applying Radical Equations 2", "path": "khan/math/algebra/exponent-equations/radical_equations/applying-radical-equations-2/", "slug": "applying-radical-equations-2", "kind": "Video", "video_id": "YghRP8S2K-4", "keywords": "U07_L3_T3_we2, Applying, Radical, Equations, CC_6_EE_2_c, CC_6_G_4, CC_8_EE_2, CC_39336_A-REI_2", "youtube_id": "YghRP8S2K-4", "readable_id": "applying-radical-equations-2"}, "LoaBd-sPzkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LoaBd-sPzkU.mp4/LoaBd-sPzkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LoaBd-sPzkU.mp4/LoaBd-sPzkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LoaBd-sPzkU.m3u8/LoaBd-sPzkU.m3u8"}, "path": "khan/math/geometry/basic-geometry/perimeter_area_tutorial/perimeter-and-area-basics/", "duration": 505, "id": "LoaBd-sPzkU", "title": "Perimeter and area: the basics", "format": "mp4", "description": "Great geometry primer on perimeter and area. Listen carefully. Sal explains the concepts so you'll understand them.", "slug": "perimeter-and-area-basics", "kind": "Video", "video_id": "LoaBd-sPzkU", "keywords": "Perimeter, and, Area, Basics", "youtube_id": "LoaBd-sPzkU", "readable_id": "perimeter-and-area-basics"}, "gAV9kwvoD6s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gAV9kwvoD6s.mp4/gAV9kwvoD6s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gAV9kwvoD6s.mp4/gAV9kwvoD6s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gAV9kwvoD6s.m3u8/gAV9kwvoD6s.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/comparing-decimals-pre-alg/comparing-decimals-1-example/", "duration": 290, "id": "gAV9kwvoD6s", "title": "Comparing decimals example 1", "format": "mp4", "description": "When comparing decimals it's easy to get confused by the number of digits to the right of decimal. Is it a tenth, hundredth, or thousandth? This video will help you a lot!", "slug": "comparing-decimals-1-example", "kind": "Video", "video_id": "gAV9kwvoD6s", "keywords": "", "youtube_id": "gAV9kwvoD6s", "readable_id": "comparing-decimals-1-example"}, "czIYvs9zj2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/czIYvs9zj2g.mp4/czIYvs9zj2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/czIYvs9zj2g.mp4/czIYvs9zj2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/czIYvs9zj2g.m3u8/czIYvs9zj2g.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/othogonal_complements/lin-alg-unique-rowspace-solution-to-ax-b/", "duration": 1152, "id": "czIYvs9zj2g", "title": "Unique rowspace solution to Ax = b", "format": "mp4", "description": "Showing that, for any b that is in the column space of A, there is a unique member of the row space that is the \"smallest\" solution to Ax=b", "slug": "lin-alg-unique-rowspace-solution-to-ax-b", "kind": "Video", "video_id": "czIYvs9zj2g", "keywords": "rowspace, columnspace, solution, Ax=b", "youtube_id": "czIYvs9zj2g", "readable_id": "lin-alg-unique-rowspace-solution-to-ax-b"}, "psLX080RQR8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/psLX080RQR8.mp4/psLX080RQR8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/psLX080RQR8.mp4/psLX080RQR8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/psLX080RQR8.m3u8/psLX080RQR8.m3u8"}, "path": "khan/science/chemistry/chemical-equilibrium/equilibrium-constant/keq-derivation-intuition-can-skip-bit-mathy/", "duration": 950, "id": "psLX080RQR8", "title": "Keq derivation intuition (can skip; bit mathy)", "format": "mp4", "description": "A more concrete attempt at showing how the probabilities of molecules reacting is related to their concentration.", "slug": "keq-derivation-intuition-can-skip-bit-mathy", "kind": "Video", "video_id": "psLX080RQR8", "keywords": "chemistry, haber, equilibrium", "youtube_id": "psLX080RQR8", "readable_id": "keq-derivation-intuition-can-skip-bit-mathy"}, "wuxjTxxQUTs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wuxjTxxQUTs.mp4/wuxjTxxQUTs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wuxjTxxQUTs.mp4/wuxjTxxQUTs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wuxjTxxQUTs.m3u8/wuxjTxxQUTs.m3u8"}, "path": "khan/test-prep/ap-art-history/global-contemporary/mayalin-vietnamvetmem/", "duration": 433, "id": "wuxjTxxQUTs", "title": "Maya Lin, Vietnam Veterans Memorial", "format": "mp4", "description": "Maya Lin, Vietnam Veterans Memorial, 1982, granite, 2 acres\u00a0within\u00a0Constitution Gardens, (National Mall, Washington, D.C.),\u00a0speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "mayalin-vietnamvetmem", "kind": "Video", "video_id": "wuxjTxxQUTs", "keywords": "Maya Lin, Vietnam, Veterans, Memorial, war, Washington", "youtube_id": "wuxjTxxQUTs", "readable_id": "mayalin-vietnamvetmem"}, "ruAXk6RnkG8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ruAXk6RnkG8.mp4/ruAXk6RnkG8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ruAXk6RnkG8.mp4/ruAXk6RnkG8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ruAXk6RnkG8.m3u8/ruAXk6RnkG8.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/skip-counting-by-100-example/", "duration": 169, "id": "ruAXk6RnkG8", "title": "Skip counting by 100 example", "format": "mp4", "description": "Learn to count by hundreds.", "slug": "skip-counting-by-100-example", "kind": "Video", "video_id": "ruAXk6RnkG8", "keywords": "", "youtube_id": "ruAXk6RnkG8", "readable_id": "skip-counting-by-100-example"}, "xl6NSugEqh4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xl6NSugEqh4.mp4/xl6NSugEqh4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xl6NSugEqh4.mp4/xl6NSugEqh4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xl6NSugEqh4.m3u8/xl6NSugEqh4.m3u8"}, "path": "khan/partner-content/big-history-project/life/life-and-big-history/bhp-whatislife/", "duration": 625, "id": "xl6NSugEqh4", "title": "What is Life?", "format": "mp4", "description": "Defining life is harder than it seems. Consider its characteristics and the importance of DNA in evolution.", "slug": "bhp-whatislife", "kind": "Video", "video_id": "xl6NSugEqh4", "keywords": "", "youtube_id": "xl6NSugEqh4", "readable_id": "bhp-whatislife"}, "i7iKLZQ-vCk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i7iKLZQ-vCk.mp4/i7iKLZQ-vCk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i7iKLZQ-vCk.mp4/i7iKLZQ-vCk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i7iKLZQ-vCk.m3u8/i7iKLZQ-vCk.m3u8"}, "duration": 376, "id": "i7iKLZQ-vCk", "title": "Finding the sum of n squares part 1", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/sum-of-n-squares-1/", "slug": "sum-of-n-squares-1", "kind": "Video", "video_id": "i7iKLZQ-vCk", "keywords": "", "youtube_id": "i7iKLZQ-vCk", "readable_id": "sum-of-n-squares-1"}, "y2-uaPiyoxc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y2-uaPiyoxc.mp4/y2-uaPiyoxc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y2-uaPiyoxc.mp4/y2-uaPiyoxc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y2-uaPiyoxc.m3u8/y2-uaPiyoxc.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-counting/counting-with-small-numbers/", "duration": 56, "id": "y2-uaPiyoxc", "title": "Counting with small numbers", "format": "mp4", "description": "Learn how to count squirrels and horses.", "slug": "counting-with-small-numbers", "kind": "Video", "video_id": "y2-uaPiyoxc", "keywords": "", "youtube_id": "y2-uaPiyoxc", "readable_id": "counting-with-small-numbers"}, "xgTpGASqrKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xgTpGASqrKY.mp4/xgTpGASqrKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xgTpGASqrKY.mp4/xgTpGASqrKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xgTpGASqrKY.m3u8/xgTpGASqrKY.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/early-empire/the-art-of-gem-carving/", "duration": 249, "id": "xgTpGASqrKY", "title": "The art of gem carving", "format": "mp4", "description": "Since antiquity, gemstones have been engraved using the same methods. Watch the process from start to finish as a gem carver recreates an ancient image. Love art? Follow us on Google+", "slug": "the-art-of-gem-carving", "kind": "Video", "video_id": "xgTpGASqrKY", "keywords": "", "youtube_id": "xgTpGASqrKY", "readable_id": "the-art-of-gem-carving"}, "tRC0HZyNCW4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tRC0HZyNCW4.mp4/tRC0HZyNCW4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tRC0HZyNCW4.mp4/tRC0HZyNCW4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tRC0HZyNCW4.m3u8/tRC0HZyNCW4.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-essays/writing-a-strong-college-admissions-essay/", "duration": 141, "id": "tRC0HZyNCW4", "title": "Writing a strong college admissions essay", "format": "mp4", "description": "", "slug": "writing-a-strong-college-admissions-essay", "kind": "Video", "video_id": "tRC0HZyNCW4", "keywords": "", "youtube_id": "tRC0HZyNCW4", "readable_id": "writing-a-strong-college-admissions-essay"}, "5AIBur4AVrE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5AIBur4AVrE.mp4/5AIBur4AVrE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5AIBur4AVrE.mp4/5AIBur4AVrE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5AIBur4AVrE.m3u8/5AIBur4AVrE.m3u8"}, "duration": 343, "id": "5AIBur4AVrE", "title": "Women as builders of the social safety net", "format": "mp4", "description": "n this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss women and their role in building the American social safety net.\u00a0", "path": "social-safety-net/", "slug": "social-safety-net", "kind": "Video", "video_id": "5AIBur4AVrE", "keywords": "", "youtube_id": "5AIBur4AVrE", "readable_id": "social-safety-net"}, "A_8yPgC9zQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A_8yPgC9zQc.mp4/A_8yPgC9zQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A_8yPgC9zQc.mp4/A_8yPgC9zQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A_8yPgC9zQc.m3u8/A_8yPgC9zQc.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/ancient-near-eastern-and-ancient-egyptian-art/", "duration": 378, "id": "A_8yPgC9zQc", "title": "Ancient Near Eastern and ancient Egyptian art", "format": "mp4", "description": "From the Utah System of Higher Education (with special thanks to Dr. Nancy Ross). Video by Ydraw.", "slug": "ancient-near-eastern-and-ancient-egyptian-art", "kind": "Video", "video_id": "A_8yPgC9zQc", "keywords": "", "youtube_id": "A_8yPgC9zQc", "readable_id": "ancient-near-eastern-and-ancient-egyptian-art"}, "A52fEdPn9lg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A52fEdPn9lg.mp4/A52fEdPn9lg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A52fEdPn9lg.mp4/A52fEdPn9lg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A52fEdPn9lg.m3u8/A52fEdPn9lg.m3u8"}, "duration": 635, "id": "A52fEdPn9lg", "title": "Partial fraction expansion 3", "format": "mp4", "description": "Dealing with repeated factors", "path": "khan/math/algebra2/rational-expressions/partial-fraction-expan-alg/partial-fraction-expansion-3/", "slug": "partial-fraction-expansion-3", "kind": "Video", "video_id": "A52fEdPn9lg", "keywords": "partial, fraction, expansion, decomposition, CC_39336_A-APR_6", "youtube_id": "A52fEdPn9lg", "readable_id": "partial-fraction-expansion-3"}, "AXv9B0bcZ1A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AXv9B0bcZ1A.mp4/AXv9B0bcZ1A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AXv9B0bcZ1A.mp4/AXv9B0bcZ1A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AXv9B0bcZ1A.m3u8/AXv9B0bcZ1A.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/medicaid/", "duration": 848, "id": "AXv9B0bcZ1A", "title": "Medicaid", "format": "mp4", "description": "Medicaid is a federal/state partnership that provides health insurance and other services for low-income families and other eligible people. Learn what services are covered and how states are involved to fund and administer the program.", "slug": "medicaid", "kind": "Video", "video_id": "AXv9B0bcZ1A", "keywords": "", "youtube_id": "AXv9B0bcZ1A", "readable_id": "medicaid"}, "NTUjMpfYWwE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NTUjMpfYWwE.mp4/NTUjMpfYWwE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NTUjMpfYWwE.mp4/NTUjMpfYWwE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NTUjMpfYWwE.m3u8/NTUjMpfYWwE.m3u8"}, "duration": 234, "id": "NTUjMpfYWwE", "title": "Japan in World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/other-fronts-ww1/japan-in-world-war-i/", "slug": "japan-in-world-war-i", "kind": "Video", "video_id": "NTUjMpfYWwE", "keywords": "", "youtube_id": "NTUjMpfYWwE", "readable_id": "japan-in-world-war-i"}, "xPUm5SUVzTE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xPUm5SUVzTE.mp4/xPUm5SUVzTE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xPUm5SUVzTE.mp4/xPUm5SUVzTE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xPUm5SUVzTE.m3u8/xPUm5SUVzTE.m3u8"}, "path": "khan/math/precalculus/prob_comb/dependent_events_precalc/dependent-probability-example-1/", "duration": 541, "id": "xPUm5SUVzTE", "title": "Dependent probability example", "format": "mp4", "description": "We're thinking about how the probability of an event can be dependent on another event occuring in this example problem.", "slug": "dependent-probability-example-1", "kind": "Video", "video_id": "xPUm5SUVzTE", "keywords": "probability, coins, unfair", "youtube_id": "xPUm5SUVzTE", "readable_id": "dependent-probability-example-1"}, "TSTLLFJbaA4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TSTLLFJbaA4.mp4/TSTLLFJbaA4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TSTLLFJbaA4.mp4/TSTLLFJbaA4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TSTLLFJbaA4.m3u8/TSTLLFJbaA4.m3u8"}, "duration": 445, "id": "TSTLLFJbaA4", "title": "Positive externalities", "format": "mp4", "description": "Factoring in external benefits", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/externalities-topic/positive-externalities/", "slug": "positive-externalities", "kind": "Video", "video_id": "TSTLLFJbaA4", "keywords": "microeconomics", "youtube_id": "TSTLLFJbaA4", "readable_id": "positive-externalities"}, "Q1j-gPKAcDA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q1j-gPKAcDA.mp4/Q1j-gPKAcDA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q1j-gPKAcDA.mp4/Q1j-gPKAcDA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q1j-gPKAcDA.m3u8/Q1j-gPKAcDA.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/benvenuto-cellini-perseus-with-the-head-of-medusa-c-1554/", "duration": 772, "id": "Q1j-gPKAcDA", "title": "Cellini, Perseus", "format": "mp4", "description": "Benvenuto Cellini, Perseus with the Head of Medusa, c. 1554, bronze (Loggia dei Lanzi, Piazza della Signoria, Florence)", "slug": "benvenuto-cellini-perseus-with-the-head-of-medusa-c-1554", "kind": "Video", "video_id": "Q1j-gPKAcDA", "keywords": "Cellini, Benvenuto Cellini, Perseus, Medusa, 1554, bronze, Loggia dei Lanzi, Piazza della Signoria, Florence, Mythology, Medici, Mannerism, Sculpture, Mannerist", "youtube_id": "Q1j-gPKAcDA", "readable_id": "benvenuto-cellini-perseus-with-the-head-of-medusa-c-1554"}, "cCMpin3Te4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cCMpin3Te4s.mp4/cCMpin3Te4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cCMpin3Te4s.mp4/cCMpin3Te4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cCMpin3Te4s.m3u8/cCMpin3Te4s.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/writing-and-using-inequalities-2/", "duration": 400, "id": "cCMpin3Te4s", "title": "Constructing and solving a multi-step inequality example", "format": "mp4", "description": "Learn how to solve an inequality word problem about cell phone texting plans.", "slug": "writing-and-using-inequalities-2", "kind": "Video", "video_id": "cCMpin3Te4s", "keywords": "U05_L1_T3_we2, Writing, and, using, inequalities, CC_6_EE_6, CC_6_EE_8, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "cCMpin3Te4s", "readable_id": "writing-and-using-inequalities-2"}, "2EwPpga_XPw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2EwPpga_XPw.mp4/2EwPpga_XPw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2EwPpga_XPw.mp4/2EwPpga_XPw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2EwPpga_XPw.m3u8/2EwPpga_XPw.m3u8"}, "duration": 321, "id": "2EwPpga_XPw", "title": "Talking bird solves systems with substitution", "format": "mp4", "description": "Solving systems of equations with substitution.", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/solving-systems-with-substitution/", "slug": "solving-systems-with-substitution", "kind": "Video", "video_id": "2EwPpga_XPw", "keywords": "", "youtube_id": "2EwPpga_XPw", "readable_id": "solving-systems-with-substitution"}, "AK2aaur00i4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AK2aaur00i4.mp4/AK2aaur00i4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AK2aaur00i4.mp4/AK2aaur00i4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AK2aaur00i4.m3u8/AK2aaur00i4.m3u8"}, "path": "khan/college-admissions/paying-for-college/loans/types-of-college-loans/", "duration": 576, "id": "AK2aaur00i4", "title": "Types of college loans", "format": "mp4", "description": "Learn more about federal government loans for college", "slug": "types-of-college-loans", "kind": "Video", "video_id": "AK2aaur00i4", "keywords": "", "youtube_id": "AK2aaur00i4", "readable_id": "types-of-college-loans"}, "Lo-ajwD953o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lo-ajwD953o.mp4/Lo-ajwD953o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lo-ajwD953o.mp4/Lo-ajwD953o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lo-ajwD953o.m3u8/Lo-ajwD953o.m3u8"}, "path": "khan/humanities/art-asia/korea-japan/joseon-dynasty/royal-palaces-seoul/", "duration": 258, "id": "Lo-ajwD953o", "title": "Royal palaces of Seoul", "format": "mp4", "description": "In the heart of Seoul there are several historic palaces that were the residences of Korea's royal family from the 1400's to the mid-1900's. This documentary explores the art and architecture of these royal palaces of Seoul. Learn more about Korean art and culture on the Asian Art Museum's education website.\u00a0", "slug": "royal-palaces-seoul", "kind": "Video", "video_id": "Lo-ajwD953o", "keywords": "", "youtube_id": "Lo-ajwD953o", "readable_id": "royal-palaces-seoul"}, "oug9h9-komI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oug9h9-komI.mp4/oug9h9-komI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oug9h9-komI.mp4/oug9h9-komI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oug9h9-komI.m3u8/oug9h9-komI.m3u8"}, "duration": 699, "id": "oug9h9-komI", "title": "GMAT: Math 40", "format": "mp4", "description": "198-200, pg. 179", "path": "khan/test-prep/gmat/problem-solving/gmat-math-40/", "slug": "gmat-math-40", "kind": "Video", "video_id": "oug9h9-komI", "keywords": "gmat, math, problem, solving", "youtube_id": "oug9h9-komI", "readable_id": "gmat-math-40"}, "2h09oj26_H0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2h09oj26_H0.mp4/2h09oj26_H0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2h09oj26_H0.mp4/2h09oj26_H0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2h09oj26_H0.m3u8/2h09oj26_H0.m3u8"}, "duration": 776, "id": "2h09oj26_H0", "title": "Flu vaccine risks and benefits", "format": "mp4", "description": "Learn about some of the common and uncommon risks and benefits associated with the flu vaccine! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/flu-vaccine-risks-and-benefits/", "slug": "flu-vaccine-risks-and-benefits", "kind": "Video", "video_id": "2h09oj26_H0", "keywords": "", "youtube_id": "2h09oj26_H0", "readable_id": "flu-vaccine-risks-and-benefits"}, "C_H-ONQFjpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C_H-ONQFjpQ.mp4/C_H-ONQFjpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C_H-ONQFjpQ.mp4/C_H-ONQFjpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C_H-ONQFjpQ.m3u8/C_H-ONQFjpQ.m3u8"}, "path": "khan/test-prep/mcat/cells/transport-across-a-cell-membrane/sodium-potassium-pump/", "duration": 833, "id": "C_H-ONQFjpQ", "title": "Sodium potassium pump", "format": "mp4", "description": "How a sodium potassium pump can maintain a voltage gradient across a cell or neuron's membrane", "slug": "sodium-potassium-pump", "kind": "Video", "video_id": "C_H-ONQFjpQ", "keywords": "sodium, potassium, pump, atp, atpase, voltage, gradient", "youtube_id": "C_H-ONQFjpQ", "readable_id": "sodium-potassium-pump"}, "iiGYwCGNrl8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iiGYwCGNrl8.mp4/iiGYwCGNrl8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iiGYwCGNrl8.mp4/iiGYwCGNrl8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iiGYwCGNrl8.m3u8/iiGYwCGNrl8.m3u8"}, "duration": 691, "id": "iiGYwCGNrl8", "title": "Sn2 reactions", "format": "mp4", "description": "Sn2 Reactions", "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-sal/sn2-reactions/", "slug": "sn2-reactions", "kind": "Video", "video_id": "iiGYwCGNrl8", "keywords": "Sn2, Reactions", "youtube_id": "iiGYwCGNrl8", "readable_id": "sn2-reactions"}, "aietYaTqBss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aietYaTqBss.mp4/aietYaTqBss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aietYaTqBss.mp4/aietYaTqBss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aietYaTqBss.m3u8/aietYaTqBss.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-11/", "duration": 196, "id": "aietYaTqBss", "title": "11 Proportion of total votes", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-11", "kind": "Video", "video_id": "aietYaTqBss", "keywords": "", "youtube_id": "aietYaTqBss", "readable_id": "sat-getting-ready-2-11"}, "mIx2Oj5y9Q8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mIx2Oj5y9Q8.mp4/mIx2Oj5y9Q8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mIx2Oj5y9Q8.mp4/mIx2Oj5y9Q8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mIx2Oj5y9Q8.m3u8/mIx2Oj5y9Q8.m3u8"}, "path": "khan/math/probability/regression/regression-correlation/proof-part-1-minimizing-squared-error-to-regression-line/", "duration": 635, "id": "mIx2Oj5y9Q8", "title": "Proof (part 1) minimizing squared error to regression line", "format": "mp4", "description": "Proof (Part 1) Minimizing Squared Error to Regression Line", "slug": "proof-part-1-minimizing-squared-error-to-regression-line", "kind": "Video", "video_id": "mIx2Oj5y9Q8", "keywords": "Proof, (Part, 1), Minimizing, Squared, Error, to, Regression, Line, CC_8_SP_2, CC_8_SP_3", "youtube_id": "mIx2Oj5y9Q8", "readable_id": "proof-part-1-minimizing-squared-error-to-regression-line"}, "YwnfVj5qeo4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YwnfVj5qeo4.mp4/YwnfVj5qeo4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YwnfVj5qeo4.mp4/YwnfVj5qeo4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YwnfVj5qeo4.m3u8/YwnfVj5qeo4.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/cubism/moma-picasso-guitars-1912-1914/", "duration": 197, "id": "YwnfVj5qeo4", "title": "Conservation | Picasso's Guitars", "format": "mp4", "description": "Photography helps MoMA conservators determine how to treat Picasso's 1913 Cubist sculpture, Still-Life with Guitar. To learn about how art changes over time, enroll in one of MoMA's courses online.", "slug": "moma-picasso-guitars-1912-1914", "kind": "Video", "video_id": "YwnfVj5qeo4", "keywords": "", "youtube_id": "YwnfVj5qeo4", "readable_id": "moma-picasso-guitars-1912-1914"}, "YD82l_bUhLc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YD82l_bUhLc.mp4/YD82l_bUhLc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YD82l_bUhLc.mp4/YD82l_bUhLc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YD82l_bUhLc.m3u8/YD82l_bUhLc.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/conventional-implicature/", "duration": 437, "id": "YD82l_bUhLc", "title": "Language: Conventional implicature", "format": "mp4", "description": "William introduces us to different aspects of meaning, as studied by linguistics and philosophers. He tells us about the difference between the literal meaning of a sentence someone says, and what they intend to convey by using that sentence at that particular time.\n\nSpeaker: Dr. William Salmon, Assistant Professor of Linguistics,\u00a0University of Minnesota Duluth", "slug": "conventional-implicature", "kind": "Video", "video_id": "YD82l_bUhLc", "keywords": "", "youtube_id": "YD82l_bUhLc", "readable_id": "conventional-implicature"}, "kvGsIo1TmsM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kvGsIo1TmsM.mp4/kvGsIo1TmsM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kvGsIo1TmsM.mp4/kvGsIo1TmsM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kvGsIo1TmsM.m3u8/kvGsIo1TmsM.m3u8"}, "duration": 477, "id": "kvGsIo1TmsM", "title": "What is a function?", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/what-is-a-function/", "slug": "what-is-a-function", "kind": "Video", "video_id": "kvGsIo1TmsM", "keywords": "", "youtube_id": "kvGsIo1TmsM", "readable_id": "what-is-a-function"}, "NSPrIjA6T-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NSPrIjA6T-c.mp4/NSPrIjA6T-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NSPrIjA6T-c.mp4/NSPrIjA6T-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NSPrIjA6T-c.m3u8/NSPrIjA6T-c.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/intramolecular-aldol-condensation/", "duration": 722, "id": "NSPrIjA6T-c", "title": "Intramolecular aldol condensation", "format": "mp4", "description": "How to determine the product of an intramolecular aldol condensation", "slug": "intramolecular-aldol-condensation", "kind": "Video", "video_id": "NSPrIjA6T-c", "keywords": "", "youtube_id": "NSPrIjA6T-c", "readable_id": "intramolecular-aldol-condensation"}, "j-enxYaQMdA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j-enxYaQMdA.mp4/j-enxYaQMdA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j-enxYaQMdA.mp4/j-enxYaQMdA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j-enxYaQMdA.m3u8/j-enxYaQMdA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermodynamics-mcat/zeroth-law-of-thermodynamics/", "duration": 372, "id": "j-enxYaQMdA", "title": "Zeroth law of thermodynamics", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "zeroth-law-of-thermodynamics", "kind": "Video", "video_id": "j-enxYaQMdA", "keywords": "", "youtube_id": "j-enxYaQMdA", "readable_id": "zeroth-law-of-thermodynamics"}, "oGAVi4xb7Sg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oGAVi4xb7Sg.mp4/oGAVi4xb7Sg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oGAVi4xb7Sg.mp4/oGAVi4xb7Sg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oGAVi4xb7Sg.m3u8/oGAVi4xb7Sg.m3u8"}, "duration": 385, "id": "oGAVi4xb7Sg", "title": "Equivalent fractions with visuals", "format": "mp4", "description": "Use same-sized wholes to show equivalent fractions.", "path": "equivalent-fractions-with-visuals/", "slug": "equivalent-fractions-with-visuals", "kind": "Video", "video_id": "oGAVi4xb7Sg", "keywords": "", "youtube_id": "oGAVi4xb7Sg", "readable_id": "equivalent-fractions-with-visuals"}, "QgVwzm3u3mc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QgVwzm3u3mc.mp4/QgVwzm3u3mc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QgVwzm3u3mc.mp4/QgVwzm3u3mc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QgVwzm3u3mc.m3u8/QgVwzm3u3mc.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/earth-and-form-solar-system/bhp-how-did-earth-solar-system-form/", "duration": 726, "id": "QgVwzm3u3mc", "title": "How Did Earth and the Solar System Form?", "format": "mp4", "description": "New elements enabled new possibilities, creating conditions around stars that were just right for making planets.", "slug": "bhp-how-did-earth-solar-system-form", "kind": "Video", "video_id": "QgVwzm3u3mc", "keywords": "", "youtube_id": "QgVwzm3u3mc", "readable_id": "bhp-how-did-earth-solar-system-form"}, "axP8LfkPvF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/axP8LfkPvF0.mp4/axP8LfkPvF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/axP8LfkPvF0.mp4/axP8LfkPvF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/axP8LfkPvF0.m3u8/axP8LfkPvF0.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/dvd_player/what-is-inside-of-a-dvd-player-4-of-5/", "duration": 504, "id": "axP8LfkPvF0", "title": "What is inside a DVD player? (4 of 5)", "format": "mp4", "description": "In this video we explore the DVD ROM components inside a DVD player.", "slug": "what-is-inside-of-a-dvd-player-4-of-5", "kind": "Video", "video_id": "axP8LfkPvF0", "keywords": "tolerance, fit, accuracy, fit, precision, electro-mechanical, rare earth magnets, copper coil, tracking, laser diode, mirror, reflector, laser sensor, light sensor, binary, reflection, bumps, pits, aluminum, sputtering, ribbon cable,", "youtube_id": "axP8LfkPvF0", "readable_id": "what-is-inside-of-a-dvd-player-4-of-5"}, "VIdvlSFDl2c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VIdvlSFDl2c.mp4/VIdvlSFDl2c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VIdvlSFDl2c.mp4/VIdvlSFDl2c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VIdvlSFDl2c.m3u8/VIdvlSFDl2c.m3u8"}, "duration": 115, "id": "VIdvlSFDl2c", "title": "Attach Spout's antennae", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-9/", "slug": "solderless-spout-9", "kind": "Video", "video_id": "VIdvlSFDl2c", "keywords": "", "youtube_id": "VIdvlSFDl2c", "readable_id": "solderless-spout-9"}, "FJ7AMaR9miI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FJ7AMaR9miI.mp4/FJ7AMaR9miI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FJ7AMaR9miI.mp4/FJ7AMaR9miI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FJ7AMaR9miI.m3u8/FJ7AMaR9miI.m3u8"}, "duration": 359, "id": "FJ7AMaR9miI", "title": "y-intercept of tangent line example", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/normal-tangent-line-eq/tangent-line-intercept/", "slug": "tangent-line-intercept", "kind": "Video", "video_id": "FJ7AMaR9miI", "keywords": "", "youtube_id": "FJ7AMaR9miI", "readable_id": "tangent-line-intercept"}, "KYoB2mjNdr0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KYoB2mjNdr0.mp4/KYoB2mjNdr0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KYoB2mjNdr0.mp4/KYoB2mjNdr0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KYoB2mjNdr0.m3u8/KYoB2mjNdr0.m3u8"}, "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/french-revolution-part-4-the-rise-of-napoleon-bonaparte/", "duration": 1008, "id": "KYoB2mjNdr0", "title": "French Revolution (part 4) - The Rise of Napoleon Bonaparte", "format": "mp4", "description": "The rise of Napoleon Bonaparte", "slug": "french-revolution-part-4-the-rise-of-napoleon-bonaparte", "kind": "Video", "video_id": "KYoB2mjNdr0", "keywords": "french, revolution, napoleon, bonaparte", "youtube_id": "KYoB2mjNdr0", "readable_id": "french-revolution-part-4-the-rise-of-napoleon-bonaparte"}, "p7ycTWq6BFk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p7ycTWq6BFk.mp4/p7ycTWq6BFk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p7ycTWq6BFk.mp4/p7ycTWq6BFk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p7ycTWq6BFk.m3u8/p7ycTWq6BFk.m3u8"}, "duration": 691, "id": "p7ycTWq6BFk", "title": "A third example of graphing a rational function", "format": "mp4", "description": "A Third Example of Graphing a Rational Function", "path": "khan/math/algebra2/rational-expressions/rational-function-graphing/a-third-example-of-graphing-a-rational-function/", "slug": "a-third-example-of-graphing-a-rational-function", "kind": "Video", "video_id": "p7ycTWq6BFk", "keywords": "Third, Example, of, Graphing, Rational, Function, CC_39336_F-IF_7_d", "youtube_id": "p7ycTWq6BFk", "readable_id": "a-third-example-of-graphing-a-rational-function"}, "juMTnPcfd3A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/juMTnPcfd3A.mp4/juMTnPcfd3A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/juMTnPcfd3A.mp4/juMTnPcfd3A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/juMTnPcfd3A.m3u8/juMTnPcfd3A.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-learning-environments/sscc-blended-modelchoices/", "duration": 92, "id": "juMTnPcfd3A", "title": "How the choices you make in your blended model impact the kind of school you run", "format": "mp4", "description": "", "slug": "sscc-blended-modelchoices", "kind": "Video", "video_id": "juMTnPcfd3A", "keywords": "", "youtube_id": "juMTnPcfd3A", "readable_id": "sscc-blended-modelchoices"}, "1j5WnqwMdCk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1j5WnqwMdCk.mp4/1j5WnqwMdCk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1j5WnqwMdCk.mp4/1j5WnqwMdCk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1j5WnqwMdCk.m3u8/1j5WnqwMdCk.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/change_of_basis/linear-algebra-change-of-basis-matrix/", "duration": 1075, "id": "1j5WnqwMdCk", "title": "Change of basis matrix", "format": "mp4", "description": "Using a change of basis matrix to get us from one coordinate system to another.", "slug": "linear-algebra-change-of-basis-matrix", "kind": "Video", "video_id": "1j5WnqwMdCk", "keywords": "change, of, basis, matrix, coordinate, system", "youtube_id": "1j5WnqwMdCk", "readable_id": "linear-algebra-change-of-basis-matrix"}, "8dMLK2Wueaw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8dMLK2Wueaw.mp4/8dMLK2Wueaw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8dMLK2Wueaw.mp4/8dMLK2Wueaw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8dMLK2Wueaw.m3u8/8dMLK2Wueaw.m3u8"}, "duration": 361, "id": "8dMLK2Wueaw", "title": "Visualizing Taylor series approximations", "format": "mp4", "description": "Using Wolfram Alpha to approximate sin(x)", "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/visualizing-taylor-series-approximations/", "slug": "visualizing-taylor-series-approximations", "kind": "Video", "video_id": "8dMLK2Wueaw", "keywords": "maclaurin, taylor, series, expansion, marquee, CC_39336_F-IF_7_e", "youtube_id": "8dMLK2Wueaw", "readable_id": "visualizing-taylor-series-approximations"}, "hrd3hdosby8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hrd3hdosby8.mp4/hrd3hdosby8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hrd3hdosby8.mp4/hrd3hdosby8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hrd3hdosby8.m3u8/hrd3hdosby8.m3u8"}, "duration": 570, "id": "hrd3hdosby8", "title": "Jan Gossart - Conservation Discoveries", "format": "mp4", "description": "Gossart was among the first northern artists to travel to Rome to make copies after antique sculpture and introduce historical and mythological subjects with erotic nude figures into the mainstream of northern painting. Most often credited with successfully assimilating Italian Renaissance style into northern European art of the early sixteenth century, he is the pivotal Old Master who changed the course of Flemish art from the Medieval craft tradition of its founder, Jan van Eyck (c. 1380/90--1441), and charted new territory that eventually led to the great age of Peter Paul Rubens (1577--1640).\n\nRead more about Jan Gossart and his circle on the Heilbrunn Timeline of Art History.", "path": "gossartconservation/", "slug": "gossartconservation", "kind": "Video", "video_id": "hrd3hdosby8", "keywords": "sculptures, antique, painting, Europe", "youtube_id": "hrd3hdosby8", "readable_id": "gossartconservation"}, "bwOE1MEginA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bwOE1MEginA.mp4/bwOE1MEginA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bwOE1MEginA.mp4/bwOE1MEginA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bwOE1MEginA.m3u8/bwOE1MEginA.m3u8"}, "duration": 689, "id": "bwOE1MEginA", "title": "Three types of muscle", "format": "mp4", "description": "Understanding the structure of a muscle cell.", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/three-types-of-muscle/", "slug": "three-types-of-muscle", "kind": "Video", "video_id": "bwOE1MEginA", "keywords": "", "youtube_id": "bwOE1MEginA", "readable_id": "three-types-of-muscle"}, "e0lBUViss8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e0lBUViss8E.mp4/e0lBUViss8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e0lBUViss8E.mp4/e0lBUViss8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e0lBUViss8E.m3u8/e0lBUViss8E.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial-remainder-theorem-tutorial/constructing-a-polynomial-that-has-a-certain-factor/", "duration": 219, "id": "e0lBUViss8E", "title": "Constructing a polynomial that has a certain factor", "format": "mp4", "description": "", "slug": "constructing-a-polynomial-that-has-a-certain-factor", "kind": "Video", "video_id": "e0lBUViss8E", "keywords": "", "youtube_id": "e0lBUViss8E", "readable_id": "constructing-a-polynomial-that-has-a-certain-factor"}, "14-NdQwKz9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/14-NdQwKz9w.mp4/14-NdQwKz9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/14-NdQwKz9w.mp4/14-NdQwKz9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/14-NdQwKz9w.m3u8/14-NdQwKz9w.m3u8"}, "path": "khan/math/recreational-math/vi-hart/spirals-fibonacci/doodling-in-math-spirals-fibonacci-and-being-a-plant-part-3-of-3/", "duration": 367, "id": "14-NdQwKz9w", "title": "Doodling in math: Spirals, Fibonacci, and being a plant [3 of 3]", "format": "mp4", "description": "Part 1: http://youtu.be/ahXIMUkSXX0 Part 2: http://youtu.be/lOIP_Z_-0Hs How to find the Lucas Angle: http://youtu.be/RRNQAaTVa_A References: Only good article I could find on the subject: http://www.sciencenews.org/view/generic/id/8479/title/Math_Trek__The_Mathematical_Lives_of_Plants Book of Numbers: http://books.google.com/books?id=0--3rcO7dMYC&pg=PA113&lpg=PA113&dq=conway+phyllotaxis&source=bl&ots=-bTLzWkMtB&sig=XnbL9nRYQoWOCbvWdZPAlVa3Co0&hl=en&sa=X&ei=2afqTui9L6OUiAKapaC7BA&ved=0CCkQ6AEwAQ#v=onepage&q&f=false Douady and Couder paper with the magnetized droplets: http://www.math.ntnu.no/~jarlet/Douady96.pdf Pretty sane page on phyllotaxis: http://www.math.smith.edu/phyllo/", "slug": "doodling-in-math-spirals-fibonacci-and-being-a-plant-part-3-of-3", "kind": "Video", "video_id": "14-NdQwKz9w", "keywords": "fibonacci, plants, spirals, mathematics, algorithms, math, vi hart, phyllotaxis, golden ratio, lucas numbers", "youtube_id": "14-NdQwKz9w", "readable_id": "doodling-in-math-spirals-fibonacci-and-being-a-plant-part-3-of-3"}, "-lIc5z3XjXQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-lIc5z3XjXQ.mp4/-lIc5z3XjXQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-lIc5z3XjXQ.mp4/-lIc5z3XjXQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-lIc5z3XjXQ.m3u8/-lIc5z3XjXQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/paramagnetism-and-diamagnetism/", "duration": 485, "id": "-lIc5z3XjXQ", "title": "Paramagnetism and diamagnetism", "format": "mp4", "description": "", "slug": "paramagnetism-and-diamagnetism", "kind": "Video", "video_id": "-lIc5z3XjXQ", "keywords": "", "youtube_id": "-lIc5z3XjXQ", "readable_id": "paramagnetism-and-diamagnetism"}, "HqiBo62O8bk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HqiBo62O8bk.mp4/HqiBo62O8bk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HqiBo62O8bk.mp4/HqiBo62O8bk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HqiBo62O8bk.m3u8/HqiBo62O8bk.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-7/", "duration": 574, "id": "HqiBo62O8bk", "title": "GMAT: Math 7", "format": "mp4", "description": "36-41, pgs. 156-157", "slug": "gmat-math-7", "kind": "Video", "video_id": "HqiBo62O8bk", "keywords": "GMAT, problem, solving, math", "youtube_id": "HqiBo62O8bk", "readable_id": "gmat-math-7"}, "pm6cCg_Do6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pm6cCg_Do6k.mp4/pm6cCg_Do6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pm6cCg_Do6k.mp4/pm6cCg_Do6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pm6cCg_Do6k.m3u8/pm6cCg_Do6k.m3u8"}, "duration": 272, "id": "pm6cCg_Do6k", "title": "Rock cycle", "format": "mp4", "description": "We bet you thought that rocks are just rocks, but the truth is there are three different kinds of rocks. Learn the differences between sedimentary, metamorphic and igneous rocks.", "path": "rock-cycle/", "slug": "rock-cycle", "kind": "Video", "video_id": "pm6cCg_Do6k", "keywords": "rocks", "youtube_id": "pm6cCg_Do6k", "readable_id": "rock-cycle"}, "S3X-NkvE49o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S3X-NkvE49o.mp4/S3X-NkvE49o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S3X-NkvE49o.mp4/S3X-NkvE49o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S3X-NkvE49o.m3u8/S3X-NkvE49o.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/self-presentation-and-interacting-with-others/types-of-animal-communication/", "duration": 538, "id": "S3X-NkvE49o", "title": "Types of animal communication", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "types-of-animal-communication", "kind": "Video", "video_id": "S3X-NkvE49o", "keywords": "", "youtube_id": "S3X-NkvE49o", "readable_id": "types-of-animal-communication"}, "aqsIWLqlDhE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aqsIWLqlDhE.mp4/aqsIWLqlDhE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aqsIWLqlDhE.mp4/aqsIWLqlDhE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aqsIWLqlDhE.m3u8/aqsIWLqlDhE.m3u8"}, "duration": 377, "id": "aqsIWLqlDhE", "title": "Number sets 1", "format": "mp4", "description": "Number Sets 1", "path": "khan/math/pre-algebra/fractions-pre-alg/number-sets-pre-alg/number-sets-1/", "slug": "number-sets-1", "kind": "Video", "video_id": "aqsIWLqlDhE", "keywords": "U12_L1_T1_we1, Number, Sets, CC_6_NS_6, CC_6_NS_6_c, CC_8_NS_1", "youtube_id": "aqsIWLqlDhE", "readable_id": "number-sets-1"}, "QiZNpzeTVKA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QiZNpzeTVKA.mp4/QiZNpzeTVKA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QiZNpzeTVKA.mp4/QiZNpzeTVKA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QiZNpzeTVKA.m3u8/QiZNpzeTVKA.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/justification-and-explanation/", "duration": 192, "id": "QiZNpzeTVKA", "title": "Fundamentals: Justification and explanation", "format": "mp4", "description": "The concept of justification is fundamental to good, careful thinking. But what does it mean for a belief or action to be justified? In this video, Kelley sheds some light on how to assess whether a belief and action is justified. She also clarifies the notion of justification by distinguishing it from explanation and explaining its relationship to the practice of giving reasons.\n\nSpeaker: Kelley Schiffman", "slug": "justification-and-explanation", "kind": "Video", "video_id": "QiZNpzeTVKA", "keywords": "", "youtube_id": "QiZNpzeTVKA", "readable_id": "justification-and-explanation"}, "iF-f2-KSw6E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iF-f2-KSw6E.mp4/iF-f2-KSw6E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iF-f2-KSw6E.mp4/iF-f2-KSw6E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iF-f2-KSw6E.m3u8/iF-f2-KSw6E.m3u8"}, "duration": 395, "id": "iF-f2-KSw6E", "title": "Multiple substituents", "format": "mp4", "description": "The directing effects of substituents on a benzene ring", "path": "khan/science/organic-chemistry/aromatic-compounds/deffect-2013-07-03t144454851z/multiple-substituents/", "slug": "multiple-substituents", "kind": "Video", "video_id": "iF-f2-KSw6E", "keywords": "", "youtube_id": "iF-f2-KSw6E", "readable_id": "multiple-substituents"}, "Q48ddBmCjQA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q48ddBmCjQA.mp4/Q48ddBmCjQA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q48ddBmCjQA.mp4/Q48ddBmCjQA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q48ddBmCjQA.m3u8/Q48ddBmCjQA.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/sinan-sleymaniye-mosque/", "duration": 397, "id": "Q48ddBmCjQA", "title": "Sinan, S\u00fcleymaniye Mosque", "format": "mp4", "description": "Sinan, S\u00fcleymaniye Mosque, Istanbul, completed 1558\nSpeakers: Dr. Elizabeth Macaulay-Lewis and Dr. Steven Zucker\n", "slug": "sinan-sleymaniye-mosque", "kind": "Video", "video_id": "Q48ddBmCjQA", "keywords": "", "youtube_id": "Q48ddBmCjQA", "readable_id": "sinan-sleymaniye-mosque"}, "-rxUip6Ulnw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-rxUip6Ulnw.mp4/-rxUip6Ulnw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-rxUip6Ulnw.mp4/-rxUip6Ulnw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-rxUip6Ulnw.m3u8/-rxUip6Ulnw.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/constructing-numeric-expressions/evaluating-an-expression-with-and-without-parentheses/", "duration": 126, "id": "-rxUip6Ulnw", "title": "Evaluating expressions with and without parentheses", "format": "mp4", "description": "So maybe parentheses don't seem like a big deal? Check out this problem and the difference in the answer when you work it without the parentheses. Wow.", "slug": "evaluating-an-expression-with-and-without-parentheses", "kind": "Video", "video_id": "-rxUip6Ulnw", "keywords": "", "youtube_id": "-rxUip6Ulnw", "readable_id": "evaluating-an-expression-with-and-without-parentheses"}, "6FL81EVJTUE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6FL81EVJTUE.mp4/6FL81EVJTUE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6FL81EVJTUE.mp4/6FL81EVJTUE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6FL81EVJTUE.m3u8/6FL81EVJTUE.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/carolingian1/mosaics-santa-prassede-rome-early-9th-century/", "duration": 278, "id": "6FL81EVJTUE", "title": "Santa Prassede (Praxedes)", "format": "mp4", "description": "Mosaics, Santa Prassede, Rome, early 9th century \n\nMosaics from the early 9th century, under Pope Paschal. The church is dedicated to Saint Praxedes and her sister Saint Pudentiana, daughters of Saint Pudens. The sisters were martyred because they provided Christian burials for martyrs, against Roman law. \n\nA Smarthistory video with Richard Bowen (courtesy of Context Travel, and Drs. Beth Harris and Steven Zucker)", "slug": "mosaics-santa-prassede-rome-early-9th-century", "kind": "Video", "video_id": "6FL81EVJTUE", "keywords": "Santa Prassede, Smarthistory, Khan Academy, Rome, Mosaics, Saint Pudens, Praxedes, Pudens, Context Travel", "youtube_id": "6FL81EVJTUE", "readable_id": "mosaics-santa-prassede-rome-early-9th-century"}, "0lX34MHTs8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0lX34MHTs8E.mp4/0lX34MHTs8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0lX34MHTs8E.mp4/0lX34MHTs8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0lX34MHTs8E.m3u8/0lX34MHTs8E.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/woodwinds/clarinet-interview-and-demonstration-with-principal-jon-manasse/", "duration": 550, "id": "0lX34MHTs8E", "title": "Clarinet: Interview and demonstration with principal Jon Manasse", "format": "mp4", "description": "", "slug": "clarinet-interview-and-demonstration-with-principal-jon-manasse", "kind": "Video", "video_id": "0lX34MHTs8E", "keywords": "", "youtube_id": "0lX34MHTs8E", "readable_id": "clarinet-interview-and-demonstration-with-principal-jon-manasse"}, "_uTAdf_AsfQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_uTAdf_AsfQ.mp4/_uTAdf_AsfQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_uTAdf_AsfQ.mp4/_uTAdf_AsfQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_uTAdf_AsfQ.m3u8/_uTAdf_AsfQ.m3u8"}, "duration": 1513, "id": "_uTAdf_AsfQ", "title": "Null space and column space basis", "format": "mp4", "description": "Figuring out the null space and a basis of a column space for a matrix", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/null-space-and-column-space-basis/", "slug": "null-space-and-column-space-basis", "kind": "Video", "video_id": "_uTAdf_AsfQ", "keywords": "null, space, column, matrix, basis", "youtube_id": "_uTAdf_AsfQ", "readable_id": "null-space-and-column-space-basis"}, "EQhBl75ZiKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EQhBl75ZiKQ.mp4/EQhBl75ZiKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EQhBl75ZiKQ.mp4/EQhBl75ZiKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EQhBl75ZiKQ.m3u8/EQhBl75ZiKQ.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/ss-size-campus-major-selectivity-college-search/", "duration": 58, "id": "EQhBl75ZiKQ", "title": "Student story: Prioritizing size, campus, major, and selectivity in the college search", "format": "mp4", "description": "", "slug": "ss-size-campus-major-selectivity-college-search", "kind": "Video", "video_id": "EQhBl75ZiKQ", "keywords": "", "youtube_id": "EQhBl75ZiKQ", "readable_id": "ss-size-campus-major-selectivity-college-search"}, "dKFE0uJayM8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dKFE0uJayM8.mp4/dKFE0uJayM8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dKFE0uJayM8.mp4/dKFE0uJayM8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dKFE0uJayM8.m3u8/dKFE0uJayM8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/retro-aldol-and-retrosynthesis/", "duration": 673, "id": "dKFE0uJayM8", "title": "Retro-aldol and retrosynthesis", "format": "mp4", "description": "How to think about the aldol condensation using retrosynthesis", "slug": "retro-aldol-and-retrosynthesis", "kind": "Video", "video_id": "dKFE0uJayM8", "keywords": "", "youtube_id": "dKFE0uJayM8", "readable_id": "retro-aldol-and-retrosynthesis"}, "U6U4HhR3Fqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U6U4HhR3Fqc.mp4/U6U4HhR3Fqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U6U4HhR3Fqc.mp4/U6U4HhR3Fqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U6U4HhR3Fqc.m3u8/U6U4HhR3Fqc.m3u8"}, "duration": 266, "id": "U6U4HhR3Fqc", "title": "Orientation and stokes", "format": "mp4", "description": "Determining the proper orientation of a boundary given the orientation of the normal vector", "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/orientation-and-stokes/", "slug": "orientation-and-stokes", "kind": "Video", "video_id": "U6U4HhR3Fqc", "keywords": "stokes, theorem", "youtube_id": "U6U4HhR3Fqc", "readable_id": "orientation-and-stokes"}, "VTfEJo2zhc4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VTfEJo2zhc4.mp4/VTfEJo2zhc4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VTfEJo2zhc4.mp4/VTfEJo2zhc4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VTfEJo2zhc4.m3u8/VTfEJo2zhc4.m3u8"}, "duration": 978, "id": "VTfEJo2zhc4", "title": "Recreating Turner's gallery for the big screen", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nJoin film director Mike Leigh, actor Timothy Spall, and a cast of behind-the-scenes crew as they bring Turner\u2019s famous gallery to life in the 2014 film Mr. Turner. Get a glimpse of what Turner\u2019s gallery and studio would have looked like, complete with critics, patrons, and the artist himself.", "path": "recreating-turners-gallery/", "slug": "recreating-turners-gallery", "kind": "Video", "video_id": "VTfEJo2zhc4", "keywords": "Tate", "youtube_id": "VTfEJo2zhc4", "readable_id": "recreating-turners-gallery"}, "hpBBuaiIkrg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hpBBuaiIkrg.mp4/hpBBuaiIkrg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hpBBuaiIkrg.mp4/hpBBuaiIkrg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hpBBuaiIkrg.m3u8/hpBBuaiIkrg.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/recognizing-features-of-functions-example-1/", "duration": 143, "id": "hpBBuaiIkrg", "title": "Recognizing features of functions (example 1)", "format": "mp4", "description": "", "slug": "recognizing-features-of-functions-example-1", "kind": "Video", "video_id": "hpBBuaiIkrg", "keywords": "", "youtube_id": "hpBBuaiIkrg", "readable_id": "recognizing-features-of-functions-example-1"}, "UV8kgqk_DAY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UV8kgqk_DAY.mp4/UV8kgqk_DAY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UV8kgqk_DAY.mp4/UV8kgqk_DAY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UV8kgqk_DAY.m3u8/UV8kgqk_DAY.m3u8"}, "duration": 822, "id": "UV8kgqk_DAY", "title": "Traditional IRAs", "format": "mp4", "description": "Introduction to traditional IRA's (Individual Retirement Accounts)", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/ira-401ks/traditional-iras/", "slug": "traditional-iras", "kind": "Video", "video_id": "UV8kgqk_DAY", "keywords": "IRA, retirement, investment", "youtube_id": "UV8kgqk_DAY", "readable_id": "traditional-iras"}, "g_agha5-Lhc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g_agha5-Lhc.mp4/g_agha5-Lhc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g_agha5-Lhc.mp4/g_agha5-Lhc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g_agha5-Lhc.m3u8/g_agha5-Lhc.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-6/", "duration": 126, "id": "g_agha5-Lhc", "title": "6 Equivalent expressions", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-6", "kind": "Video", "video_id": "g_agha5-Lhc", "keywords": "", "youtube_id": "g_agha5-Lhc", "readable_id": "2013-sat-practice-6-6"}, "0MKsFD03Ukc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0MKsFD03Ukc.mp4/0MKsFD03Ukc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0MKsFD03Ukc.mp4/0MKsFD03Ukc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0MKsFD03Ukc.m3u8/0MKsFD03Ukc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/electron-configurations-for-the-first-period/", "duration": 382, "id": "0MKsFD03Ukc", "title": "Electron configurations for the first period", "format": "mp4", "description": "", "slug": "electron-configurations-for-the-first-period", "kind": "Video", "video_id": "0MKsFD03Ukc", "keywords": "", "youtube_id": "0MKsFD03Ukc", "readable_id": "electron-configurations-for-the-first-period"}, "pGhBfkBqok0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pGhBfkBqok0.mp4/pGhBfkBqok0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pGhBfkBqok0.mp4/pGhBfkBqok0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pGhBfkBqok0.m3u8/pGhBfkBqok0.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/othogonal_complements/linear-algebra-dim-v-dim-orthogonal-complement-of-v-n/", "duration": 567, "id": "pGhBfkBqok0", "title": "dim(v) + dim(orthogonal complement of v) = n", "format": "mp4", "description": "Showing that if V is a subspace of Rn, then dim(V) + dim(V's orthogonal complement) = n", "slug": "linear-algebra-dim-v-dim-orthogonal-complement-of-v-n", "kind": "Video", "video_id": "pGhBfkBqok0", "keywords": "orthogonal, complement, dimension, dim", "youtube_id": "pGhBfkBqok0", "readable_id": "linear-algebra-dim-v-dim-orthogonal-complement-of-v-n"}, "uFZvWYPfOmw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uFZvWYPfOmw.mp4/uFZvWYPfOmw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uFZvWYPfOmw.mp4/uFZvWYPfOmw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uFZvWYPfOmw.m3u8/uFZvWYPfOmw.m3u8"}, "duration": 327, "id": "uFZvWYPfOmw", "title": "Identifying graph based on roots", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/factoring-higher-deg-polynomials/identifying-graph-based-on-roots/", "slug": "identifying-graph-based-on-roots", "kind": "Video", "video_id": "uFZvWYPfOmw", "keywords": "", "youtube_id": "uFZvWYPfOmw", "readable_id": "identifying-graph-based-on-roots"}, "xFHh89QTRSE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xFHh89QTRSE.mp4/xFHh89QTRSE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xFHh89QTRSE.mp4/xFHh89QTRSE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xFHh89QTRSE.m3u8/xFHh89QTRSE.m3u8"}, "duration": 685, "id": "xFHh89QTRSE", "title": "Globalization I - The upside", "format": "mp4", "description": "In which John Green teaches you about globalization, a subject so epic, so, um, global, it requires two videos. In this video, John follows the surprisingly complex path of t-shirt as it criss-crosses the world before coming to rest on your doorstep, and eventually in your dresser. (Unless you're one of those people who never puts their laundry away and lives out of a laundry basket. If that's the case, shame on you.) Anyway, the story of the t-shirt and its manufacture in far-flung places like China, Guatemala, and India is a microcosm of what's going on in the global economy. Globalization is a bit of a mixed bag, and there have definitely been winners and losers along the way. In this episode John will talk about some of the benefits that have come along with it. Next week, he'll get into some of the less-positive side effects of globalization.", "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-41/", "slug": "crash-course-world-history-41", "kind": "Video", "video_id": "xFHh89QTRSE", "keywords": "crash course", "youtube_id": "xFHh89QTRSE", "readable_id": "crash-course-world-history-41"}, "LwF9nTEB84k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LwF9nTEB84k.mp4/LwF9nTEB84k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LwF9nTEB84k.mp4/LwF9nTEB84k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LwF9nTEB84k.m3u8/LwF9nTEB84k.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/gabriel-orozco/", "duration": 580, "id": "LwF9nTEB84k", "title": "Gabriel Orozco", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nCreative, playful and inventive, Gabriel Orozco creates art in the streets, his apartment or wherever he is inspired. Born in Mexico but working across the globe, Orozco is renowned for his endless experimentation with found objects, which he subtly alters. Join him as he shares his work, throws a boomerang, and marvels at what art can do.", "slug": "gabriel-orozco", "kind": "Video", "video_id": "LwF9nTEB84k", "keywords": "Tate", "youtube_id": "LwF9nTEB84k", "readable_id": "gabriel-orozco"}, "y5lhKvKvWPg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y5lhKvKvWPg.mp4/y5lhKvKvWPg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y5lhKvKvWPg.mp4/y5lhKvKvWPg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y5lhKvKvWPg.m3u8/y5lhKvKvWPg.m3u8"}, "duration": 219, "id": "y5lhKvKvWPg", "title": "Paul Gauguin, Vision after the Sermon, or Jacob Wrestling with the Angel", "format": "mp4", "description": "Paul Gauguin, Vision after the Sermon, or Jacob Wrestling with the Angel, 1888, oil on canvas, 2' 4 3/4\" x 3' 1/2\" (National Gallery of Scotland, Edinburgh)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris\u00a0\n", "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/gauguin-vision-after-the-sermon/", "slug": "gauguin-vision-after-the-sermon", "kind": "Video", "video_id": "y5lhKvKvWPg", "keywords": "", "youtube_id": "y5lhKvKvWPg", "readable_id": "gauguin-vision-after-the-sermon"}, "1POB_czE16k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1POB_czE16k.mp4/1POB_czE16k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1POB_czE16k.mp4/1POB_czE16k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1POB_czE16k.m3u8/1POB_czE16k.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-myeloproliferative-disorders/what-is-essential-thrombocythemia/", "duration": 577, "id": "1POB_czE16k", "title": "What is essential thrombocythemia?", "format": "mp4", "description": "Learn what is essential thrombocythemia as well as how to identify its signs and symptoms, diagnose it, and treat it. By Raja Narayan.\n\nVisit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-essential-thrombocythemia", "kind": "Video", "video_id": "1POB_czE16k", "keywords": "", "youtube_id": "1POB_czE16k", "readable_id": "what-is-essential-thrombocythemia"}, "AurTtzpAr4c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AurTtzpAr4c.mp4/AurTtzpAr4c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AurTtzpAr4c.mp4/AurTtzpAr4c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AurTtzpAr4c.m3u8/AurTtzpAr4c.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/history-of-static-electricity-language-of-coins-6-12/", "duration": 542, "id": "AurTtzpAr4c", "title": "Electrostatic telegraphs (case study)", "format": "mp4", "description": "Long before the internet people thought about sending information along wires using static electricity.", "slug": "history-of-static-electricity-language-of-coins-6-12", "kind": "Video", "video_id": "AurTtzpAr4c", "keywords": "static electricity", "youtube_id": "AurTtzpAr4c", "readable_id": "history-of-static-electricity-language-of-coins-6-12"}, "c3GCZ1_EcIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c3GCZ1_EcIo.mp4/c3GCZ1_EcIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c3GCZ1_EcIo.mp4/c3GCZ1_EcIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c3GCZ1_EcIo.m3u8/c3GCZ1_EcIo.m3u8"}, "duration": 622, "id": "c3GCZ1_EcIo", "title": "Passing gases: Effusion, diffusion, and the velocity of a gas", "format": "mp4", "description": "We have learned over the past few weeks that gases have real-life constraints on how they move here in the non-ideal world. As with most things in chemistry (and also in life) how a gas moves is more complex than it at first appears. In this episode, Hank describes what it means when we talk about the velocity of a gas - to understand gas velocity, we have to know what factors effect it, and how. Hank also teaches you about effusion, diffusion and concentration gradients, before showing off a cool experiment that physically demonstrates the things you have just learned. Sound exciting enough for you? Let's get started.\n*Special Thanks to Matt Young at the University of Montana (Geosciences Department, Environmental Biogeochemistry Lab) who helped with the chemical demonstrations.*\n\nWriter: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem16-passing-gases/", "slug": "chem16-passing-gases", "kind": "Video", "video_id": "c3GCZ1_EcIo", "keywords": "", "youtube_id": "c3GCZ1_EcIo", "readable_id": "chem16-passing-gases"}, "iQk1M3-WvZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iQk1M3-WvZM.mp4/iQk1M3-WvZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iQk1M3-WvZM.mp4/iQk1M3-WvZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iQk1M3-WvZM.m3u8/iQk1M3-WvZM.m3u8"}, "duration": 288, "id": "iQk1M3-WvZM", "title": "Matching expressions to define intervals of functions example", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/matching-expressions-to-define-intervals-of-functions-example/", "slug": "matching-expressions-to-define-intervals-of-functions-example", "kind": "Video", "video_id": "iQk1M3-WvZM", "keywords": "", "youtube_id": "iQk1M3-WvZM", "readable_id": "matching-expressions-to-define-intervals-of-functions-example"}, "6Rp_av9kLPM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Rp_av9kLPM.mp4/6Rp_av9kLPM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Rp_av9kLPM.mp4/6Rp_av9kLPM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Rp_av9kLPM.m3u8/6Rp_av9kLPM.m3u8"}, "duration": 106, "id": "6Rp_av9kLPM", "title": "Marina Abramovi\u0107: Documenting performance", "format": "mp4", "description": "Marina Abramovi\u0107 talks about how performance art has to be live and can be re-performed by others. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-abramovic-documenting-performance/", "slug": "moma-abramovic-documenting-performance", "kind": "Video", "video_id": "6Rp_av9kLPM", "keywords": "", "youtube_id": "6Rp_av9kLPM", "readable_id": "moma-abramovic-documenting-performance"}, "faqhDcrWfHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/faqhDcrWfHQ.mp4/faqhDcrWfHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/faqhDcrWfHQ.mp4/faqhDcrWfHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/faqhDcrWfHQ.m3u8/faqhDcrWfHQ.m3u8"}, "duration": 964, "id": "faqhDcrWfHQ", "title": "Diagnosing active TB", "format": "mp4", "description": "Find out how we can use clinical clues to help figure out if someone has active TB infection.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/diagnosing-active-tb/", "slug": "diagnosing-active-tb", "kind": "Video", "video_id": "faqhDcrWfHQ", "keywords": "", "youtube_id": "faqhDcrWfHQ", "readable_id": "diagnosing-active-tb"}, "5MoIg5lWLXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5MoIg5lWLXA.mp4/5MoIg5lWLXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5MoIg5lWLXA.mp4/5MoIg5lWLXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5MoIg5lWLXA.m3u8/5MoIg5lWLXA.m3u8"}, "path": "khan/test-prep/mcat/cells/cellular-development/cellular-communication/", "duration": 397, "id": "5MoIg5lWLXA", "title": "Cellular communication", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "cellular-communication", "kind": "Video", "video_id": "5MoIg5lWLXA", "keywords": "", "youtube_id": "5MoIg5lWLXA", "readable_id": "cellular-communication"}, "R8UIJm57H8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R8UIJm57H8E.mp4/R8UIJm57H8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R8UIJm57H8E.mp4/R8UIJm57H8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R8UIJm57H8E.m3u8/R8UIJm57H8E.m3u8"}, "duration": 222, "id": "R8UIJm57H8E", "title": "Raja Sanai Hari Singh hunting", "format": "mp4", "description": "Enter this painting of Raja Sanai Hari Singh hunting from India (Rajasthan state), and embark on a journey with Qamar Adamjee, Associate Curator of South Asian and Islamic Art at the Asian Art Museum in San Francisco. For more information: education.asianart.org", "path": "raja-hunting/", "slug": "raja-hunting", "kind": "Video", "video_id": "R8UIJm57H8E", "keywords": "", "youtube_id": "R8UIJm57H8E", "readable_id": "raja-hunting"}, "nONjtiCnbI0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nONjtiCnbI0.mp4/nONjtiCnbI0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nONjtiCnbI0.mp4/nONjtiCnbI0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nONjtiCnbI0.m3u8/nONjtiCnbI0.m3u8"}, "duration": 165, "id": "nONjtiCnbI0", "title": "Philip Rosedale - Founder of Coffee and Power", "format": "mp4", "description": "Philip Rosedale, Founder of Coffee and Power, discusses his recent venture and how a student\u2019s education today can lead to a career tomorrow.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/philip-rosedale/kauffman-philip-rosedale1/", "slug": "kauffman-philip-rosedale1", "kind": "Video", "video_id": "nONjtiCnbI0", "keywords": "", "youtube_id": "nONjtiCnbI0", "readable_id": "kauffman-philip-rosedale1"}, "NWJinKmWzx8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NWJinKmWzx8.mp4/NWJinKmWzx8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NWJinKmWzx8.mp4/NWJinKmWzx8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NWJinKmWzx8.m3u8/NWJinKmWzx8.m3u8"}, "duration": 391, "id": "NWJinKmWzx8", "title": "More ways to think about multiplying", "format": "mp4", "description": "When multiplying, it can be helpful to break numbers into parts.", "path": "more-ways-to-think-about-multiplying/", "slug": "more-ways-to-think-about-multiplying", "kind": "Video", "video_id": "NWJinKmWzx8", "keywords": "", "youtube_id": "NWJinKmWzx8", "readable_id": "more-ways-to-think-about-multiplying"}, "6zV3JEjLoyE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6zV3JEjLoyE.mp4/6zV3JEjLoyE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6zV3JEjLoyE.mp4/6zV3JEjLoyE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6zV3JEjLoyE.m3u8/6zV3JEjLoyE.m3u8"}, "duration": 453, "id": "6zV3JEjLoyE", "title": "Parsec definition", "format": "mp4", "description": "Parsec Definition", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-parallax-tutorial/parsec-definition/", "slug": "parsec-definition", "kind": "Video", "video_id": "6zV3JEjLoyE", "keywords": "Parsec, Definition, parallax, arsecond", "youtube_id": "6zV3JEjLoyE", "readable_id": "parsec-definition"}, "raP1ZWQSXjY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/raP1ZWQSXjY.mp4/raP1ZWQSXjY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/raP1ZWQSXjY.mp4/raP1ZWQSXjY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/raP1ZWQSXjY.m3u8/raP1ZWQSXjY.m3u8"}, "duration": 151, "id": "raP1ZWQSXjY", "title": "The Gates Notes: Sal on Khan Academy", "format": "mp4", "description": "Salman Khan on the future of learning.", "path": "the-gates-notes-sal-on-khan-academy/", "slug": "the-gates-notes-sal-on-khan-academy", "kind": "Video", "video_id": "raP1ZWQSXjY", "keywords": "Gates, Salman, Khan", "youtube_id": "raP1ZWQSXjY", "readable_id": "the-gates-notes-sal-on-khan-academy"}, "sI789G6FBb4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sI789G6FBb4.mp4/sI789G6FBb4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sI789G6FBb4.mp4/sI789G6FBb4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sI789G6FBb4.m3u8/sI789G6FBb4.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formulas-trig/sin-angle-addition/", "duration": 320, "id": "sI789G6FBb4", "title": "Applying angle addition formula for sin", "format": "mp4", "description": "", "slug": "sin-angle-addition", "kind": "Video", "video_id": "sI789G6FBb4", "keywords": "", "youtube_id": "sI789G6FBb4", "readable_id": "sin-angle-addition"}, "oMWTMj78cwc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oMWTMj78cwc.mp4/oMWTMj78cwc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oMWTMj78cwc.mp4/oMWTMj78cwc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oMWTMj78cwc.m3u8/oMWTMj78cwc.m3u8"}, "duration": 592, "id": "oMWTMj78cwc", "title": "Distributive property of matrix products", "format": "mp4", "description": "Showing that matrix products exhibit the distributive property", "path": "khan/math/linear-algebra/matrix_transformations/composition_of_transformations/distributive-property-of-matrix-products/", "slug": "distributive-property-of-matrix-products", "kind": "Video", "video_id": "oMWTMj78cwc", "keywords": "matrix, product, distributive", "youtube_id": "oMWTMj78cwc", "readable_id": "distributive-property-of-matrix-products"}, "Qv2pgv8ea-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qv2pgv8ea-k.mp4/Qv2pgv8ea-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qv2pgv8ea-k.mp4/Qv2pgv8ea-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qv2pgv8ea-k.m3u8/Qv2pgv8ea-k.m3u8"}, "duration": 110, "id": "Qv2pgv8ea-k", "title": "Parabola intuition example 1", "format": "mp4", "description": "", "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/parabola-intuition-example-1/", "slug": "parabola-intuition-example-1", "kind": "Video", "video_id": "Qv2pgv8ea-k", "keywords": "", "youtube_id": "Qv2pgv8ea-k", "readable_id": "parabola-intuition-example-1"}, "65y1SKgRtOc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/65y1SKgRtOc.mp4/65y1SKgRtOc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/65y1SKgRtOc.mp4/65y1SKgRtOc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/65y1SKgRtOc.m3u8/65y1SKgRtOc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-bronchiolitis/what-is-bronchiolitis/", "duration": 505, "id": "65y1SKgRtOc", "title": "What is bronchiolitis?", "format": "mp4", "description": "", "slug": "what-is-bronchiolitis", "kind": "Video", "video_id": "65y1SKgRtOc", "keywords": "", "youtube_id": "65y1SKgRtOc", "readable_id": "what-is-bronchiolitis"}, "MtRXjXdXDow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MtRXjXdXDow.mp4/MtRXjXdXDow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MtRXjXdXDow.mp4/MtRXjXdXDow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MtRXjXdXDow.m3u8/MtRXjXdXDow.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/arc-length/arc-length-example-2/", "duration": 558, "id": "MtRXjXdXDow", "title": "Another arc length integration example", "format": "mp4", "description": "", "slug": "arc-length-example-2", "kind": "Video", "video_id": "MtRXjXdXDow", "keywords": "", "youtube_id": "MtRXjXdXDow", "readable_id": "arc-length-example-2"}, "l_Qj6aC6RV8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l_Qj6aC6RV8.mp4/l_Qj6aC6RV8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l_Qj6aC6RV8.mp4/l_Qj6aC6RV8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l_Qj6aC6RV8.m3u8/l_Qj6aC6RV8.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decomposing-fractions-pre-alg/adding-up-to-a-fraction-drag-and-drop-example/", "duration": 96, "id": "l_Qj6aC6RV8", "title": "Adding up fractions", "format": "mp4", "description": "We need the sum of all the fractions to equal the given fraction. Can you help us choose which ones to use?", "slug": "adding-up-to-a-fraction-drag-and-drop-example", "kind": "Video", "video_id": "l_Qj6aC6RV8", "keywords": "", "youtube_id": "l_Qj6aC6RV8", "readable_id": "adding-up-to-a-fraction-drag-and-drop-example"}, "r6383ZDXB0Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r6383ZDXB0Q.mp4/r6383ZDXB0Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r6383ZDXB0Q.mp4/r6383ZDXB0Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r6383ZDXB0Q.m3u8/r6383ZDXB0Q.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/hagia-sophia-mosque/", "duration": 408, "id": "r6383ZDXB0Q", "title": "Hagia Sophia as a mosque", "format": "mp4", "description": "This video focuses on Hagia Sophia after the conquest of Constantinople by the Ottomans in 1453.\u00a0Speakers: Dr. Elizabeth Macaulay-Lewis and Dr. Steven Zucker", "slug": "hagia-sophia-mosque", "kind": "Video", "video_id": "r6383ZDXB0Q", "keywords": "Ottoman, mosque, Islam, Istanbul, Hagia Sophia, 1453", "youtube_id": "r6383ZDXB0Q", "readable_id": "hagia-sophia-mosque"}, "S-mTwg73jCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S-mTwg73jCY.mp4/S-mTwg73jCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S-mTwg73jCY.mp4/S-mTwg73jCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S-mTwg73jCY.m3u8/S-mTwg73jCY.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/mortgages-tutorial/adjustable-rate-mortgages-arms/", "duration": 703, "id": "S-mTwg73jCY", "title": "Adjustable rate mortgages ARMs", "format": "mp4", "description": "", "slug": "adjustable-rate-mortgages-arms", "kind": "Video", "video_id": "S-mTwg73jCY", "keywords": "", "youtube_id": "S-mTwg73jCY", "readable_id": "adjustable-rate-mortgages-arms"}, "PddbEVNMgTY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PddbEVNMgTY.mp4/PddbEVNMgTY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PddbEVNMgTY.mp4/PddbEVNMgTY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PddbEVNMgTY.m3u8/PddbEVNMgTY.m3u8"}, "path": "khan/partner-content/lebron-asks-subject/lebron-asks/lebron-asks-about-free-throws-versus-three-pointers/", "duration": 347, "id": "PddbEVNMgTY", "title": "Three pointer vs free throwing probability", "format": "mp4", "description": "Our friend and Cleveland Cavalier, LeBron James, asks Sal if there's a high probability of making three free throws in a row or one three-pointer. Before solving the problem, jot down what you think the answer will be!", "slug": "lebron-asks-about-free-throws-versus-three-pointers", "kind": "Video", "video_id": "PddbEVNMgTY", "keywords": "probability, math, basketball", "youtube_id": "PddbEVNMgTY", "readable_id": "lebron-asks-about-free-throws-versus-three-pointers"}, "nO5me_5c8dM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nO5me_5c8dM.mp4/nO5me_5c8dM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nO5me_5c8dM.mp4/nO5me_5c8dM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nO5me_5c8dM.m3u8/nO5me_5c8dM.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/original-position/", "duration": 384, "id": "nO5me_5c8dM", "title": "Political: Original position", "format": "mp4", "description": "Luvell introduces us to the original position -- an idea due to the most important political philosopher of the 20th Century, John Rawls. The original position is a way of thinking about what makes an institution or a society just.\n\nSpeaker: Dr. Luvell Anderson, Assistant Professor of Philosophy, The University of Memphis", "slug": "original-position", "kind": "Video", "video_id": "nO5me_5c8dM", "keywords": "", "youtube_id": "nO5me_5c8dM", "readable_id": "original-position"}, "84NkvxfMPtM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/84NkvxfMPtM.mp4/84NkvxfMPtM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/84NkvxfMPtM.mp4/84NkvxfMPtM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/84NkvxfMPtM.m3u8/84NkvxfMPtM.m3u8"}, "duration": 209, "id": "84NkvxfMPtM", "title": "Orienting boundary with surface", "format": "mp4", "description": "Determining the proper orientation of the boundary given the orientation of the surface", "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/orienting-boundary-with-surface/", "slug": "orienting-boundary-with-surface", "kind": "Video", "video_id": "84NkvxfMPtM", "keywords": "stokes, theorem, orientation", "youtube_id": "84NkvxfMPtM", "readable_id": "orienting-boundary-with-surface"}, "zd3RyRk6wYI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zd3RyRk6wYI.mp4/zd3RyRk6wYI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zd3RyRk6wYI.mp4/zd3RyRk6wYI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zd3RyRk6wYI.m3u8/zd3RyRk6wYI.m3u8"}, "duration": 478, "id": "zd3RyRk6wYI", "title": "Hyperbolic function inspiration", "format": "mp4", "description": "Exploring a motivation for even defining hyperbolic sine and cosine", "path": "khan/math/precalculus/hyperbolic_trig_topic/hyperbolic_trig_intro/hyperbolic-trig-function-inspiration/", "slug": "hyperbolic-trig-function-inspiration", "kind": "Video", "video_id": "zd3RyRk6wYI", "keywords": "", "youtube_id": "zd3RyRk6wYI", "readable_id": "hyperbolic-trig-function-inspiration"}, "NgPqyM3I_8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NgPqyM3I_8o.mp4/NgPqyM3I_8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NgPqyM3I_8o.mp4/NgPqyM3I_8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NgPqyM3I_8o.m3u8/NgPqyM3I_8o.m3u8"}, "duration": 545, "id": "NgPqyM3I_8o", "title": "Changes in market equilibrium", "format": "mp4", "description": "How the equilibrium price or quantity might change due to changes in supply or demand", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/market-equilibrium-tutorial/changes-in-market-equilibrium/", "slug": "changes-in-market-equilibrium", "kind": "Video", "video_id": "NgPqyM3I_8o", "keywords": "supply, demand, economics", "youtube_id": "NgPqyM3I_8o", "readable_id": "changes-in-market-equilibrium"}, "dc7l7Qqa8xk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dc7l7Qqa8xk.mp4/dc7l7Qqa8xk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dc7l7Qqa8xk.mp4/dc7l7Qqa8xk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dc7l7Qqa8xk.m3u8/dc7l7Qqa8xk.m3u8"}, "duration": 636, "id": "dc7l7Qqa8xk", "title": "Introduction to the doppler effect", "format": "mp4", "description": "Introduction to the Doppler Effect", "path": "khan/test-prep/mcat/physical-processes/sound/introduction-to-the-doppler-effect/", "slug": "introduction-to-the-doppler-effect", "kind": "Video", "video_id": "dc7l7Qqa8xk", "keywords": "doppler, effect", "youtube_id": "dc7l7Qqa8xk", "readable_id": "introduction-to-the-doppler-effect"}, "k5EbijWu-Ss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k5EbijWu-Ss.mp4/k5EbijWu-Ss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k5EbijWu-Ss.mp4/k5EbijWu-Ss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k5EbijWu-Ss.m3u8/k5EbijWu-Ss.m3u8"}, "path": "khan/math/probability/descriptive-statistics/central_tendency/statistics-sample-vs-population-mean/", "duration": 603, "id": "k5EbijWu-Ss", "title": "Inferring population mean from sample mean", "format": "mp4", "description": "Much of statistics is based upon using data from a random sample that is representative of the population at large. From that sample mean, we can infer things about the greater population mean. We'll explain.", "slug": "statistics-sample-vs-population-mean", "kind": "Video", "video_id": "k5EbijWu-Ss", "keywords": "statistics, sample, population, average, mean, parameter, statistic, CC_6_SP_3, CC_7_SP_1, CC_7_SP_2", "youtube_id": "k5EbijWu-Ss", "readable_id": "statistics-sample-vs-population-mean"}, "eCrQDI1OAeU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eCrQDI1OAeU.mp4/eCrQDI1OAeU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eCrQDI1OAeU.mp4/eCrQDI1OAeU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eCrQDI1OAeU.m3u8/eCrQDI1OAeU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/supraventricular-tachycardia/", "duration": 399, "id": "eCrQDI1OAeU", "title": "Supraventricular tachycardia (SVT)", "format": "mp4", "description": "", "slug": "supraventricular-tachycardia", "kind": "Video", "video_id": "eCrQDI1OAeU", "keywords": "", "youtube_id": "eCrQDI1OAeU", "readable_id": "supraventricular-tachycardia"}, "OiNh2DswFt4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OiNh2DswFt4.mp4/OiNh2DswFt4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OiNh2DswFt4.mp4/OiNh2DswFt4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OiNh2DswFt4.m3u8/OiNh2DswFt4.m3u8"}, "duration": 481, "id": "OiNh2DswFt4", "title": "Laplace transform 1", "format": "mp4", "description": "Introduction to the Laplace Transform", "path": "khan/math/differential-equations/laplace-transform/laplace-transform-tutorial/laplace-transform-1/", "slug": "laplace-transform-1", "kind": "Video", "video_id": "OiNh2DswFt4", "keywords": "laplace, transform", "youtube_id": "OiNh2DswFt4", "readable_id": "laplace-transform-1"}, "3jBfLaLrk6I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3jBfLaLrk6I.mp4/3jBfLaLrk6I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3jBfLaLrk6I.mp4/3jBfLaLrk6I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3jBfLaLrk6I.m3u8/3jBfLaLrk6I.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/rounding_whole_numbers/rounding-whole-numbers-3/", "duration": 64, "id": "3jBfLaLrk6I", "title": "Rounding whole numbers 3", "format": "mp4", "description": "You're becoming a pro at rounding whole numbers. Here's another example exercise. Can you do it first before watching the end of the video?", "slug": "rounding-whole-numbers-3", "kind": "Video", "video_id": "3jBfLaLrk6I", "keywords": "U01_L1_T2_we3, Rounding, Whole, Numbers, CC_3_OA_8, CC_4_NBT_3, CC_4_OA_3", "youtube_id": "3jBfLaLrk6I", "readable_id": "rounding-whole-numbers-3"}, "RR18ijofPbU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RR18ijofPbU.mp4/RR18ijofPbU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RR18ijofPbU.mp4/RR18ijofPbU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RR18ijofPbU.m3u8/RR18ijofPbU.m3u8"}, "duration": 285, "id": "RR18ijofPbU", "title": "Michelangelo Pistoletto", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nItalian artist and leading member of the arte povera movement \u00a0Michelangelo Pistoletto came to London to recreate a seminal 1966 performance in which he rolled a ball of newspapers through the streets of Turin, Italy. With the help of his wife Maria and a huge crowd, the artist rolled, pushed, and bounced the ball out into the city. We follow Pistoletto as he travels over the Millennium Bridge, through the streets, then back to the gallery on a boat. Listen as the artist shares the political and personal significance of staging such a collaborative action today.", "path": "michelangelo-pistoletto/", "slug": "michelangelo-pistoletto", "kind": "Video", "video_id": "RR18ijofPbU", "keywords": "Tate, performance art", "youtube_id": "RR18ijofPbU", "readable_id": "michelangelo-pistoletto"}, "ixKzDofqMrU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ixKzDofqMrU.mp4/ixKzDofqMrU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ixKzDofqMrU.mp4/ixKzDofqMrU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ixKzDofqMrU.m3u8/ixKzDofqMrU.m3u8"}, "duration": 419, "id": "ixKzDofqMrU", "title": "Switch statements & logic", "format": "mp4", "description": "Control switch statments using logic", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-switchlogic/", "slug": "lego-switchlogic", "kind": "Video", "video_id": "ixKzDofqMrU", "keywords": "", "youtube_id": "ixKzDofqMrU", "readable_id": "lego-switchlogic"}, "4smVBLi3DxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4smVBLi3DxU.mp4/4smVBLi3DxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4smVBLi3DxU.mp4/4smVBLi3DxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4smVBLi3DxU.m3u8/4smVBLi3DxU.m3u8"}, "duration": 213, "id": "4smVBLi3DxU", "title": "Interpreting data in line plot", "format": "mp4", "description": "Line plots are handy graphs that give you a clear snapshot of data.", "path": "interpreting-data-in-line-plots/", "slug": "interpreting-data-in-line-plots", "kind": "Video", "video_id": "4smVBLi3DxU", "keywords": "", "youtube_id": "4smVBLi3DxU", "readable_id": "interpreting-data-in-line-plots"}, "xUDlKV8lJbM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xUDlKV8lJbM.mp4/xUDlKV8lJbM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xUDlKV8lJbM.mp4/xUDlKV8lJbM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xUDlKV8lJbM.m3u8/xUDlKV8lJbM.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dividing-decimals-pre-alg/dividing-completely-to-get-decimal-answer/", "duration": 157, "id": "xUDlKV8lJbM", "title": "Dividing completely to get decimal answer", "format": "mp4", "description": "Sometimes, in order divide numbers completely you have to add a decimal and bring down places. Let's do it together, shall we?", "slug": "dividing-completely-to-get-decimal-answer", "kind": "Video", "video_id": "xUDlKV8lJbM", "keywords": "", "youtube_id": "xUDlKV8lJbM", "readable_id": "dividing-completely-to-get-decimal-answer"}, "0VBQnR2h8XM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0VBQnR2h8XM.mp4/0VBQnR2h8XM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0VBQnR2h8XM.mp4/0VBQnR2h8XM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0VBQnR2h8XM.m3u8/0VBQnR2h8XM.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formula-proofs/proof-angle-addition-cosine/", "duration": 362, "id": "0VBQnR2h8XM", "title": "Proof of angle addition formula for cosine", "format": "mp4", "description": "", "slug": "proof-angle-addition-cosine", "kind": "Video", "video_id": "0VBQnR2h8XM", "keywords": "", "youtube_id": "0VBQnR2h8XM", "readable_id": "proof-angle-addition-cosine"}, "VxEIsPOdOLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VxEIsPOdOLw.mp4/VxEIsPOdOLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VxEIsPOdOLw.mp4/VxEIsPOdOLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VxEIsPOdOLw.m3u8/VxEIsPOdOLw.m3u8"}, "path": "khan/science/health-and-medicine/hematologic-system/bleeding-and-impaired-hemostasis/anticoagulation/", "duration": 625, "id": "VxEIsPOdOLw", "title": "Anticoagulation and thrombolysis", "format": "mp4", "description": "Anticoagulation is the process that prevents clots from forming. Thrombolysis is the process of breaking down clots after they\u2019ve been formed. Learn how the antithrombin III interacts with heparin-like molecules and how plasmin breaks down fibrin.", "slug": "anticoagulation", "kind": "Video", "video_id": "VxEIsPOdOLw", "keywords": "", "youtube_id": "VxEIsPOdOLw", "readable_id": "anticoagulation"}, "UpGsouOnxOU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UpGsouOnxOU.mp4/UpGsouOnxOU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UpGsouOnxOU.mp4/UpGsouOnxOU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UpGsouOnxOU.m3u8/UpGsouOnxOU.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/tice-art-1010-medieval-and-byzantine-art-mp4/", "duration": 308, "id": "UpGsouOnxOU", "title": "Medieval and Byzantine art", "format": "mp4", "description": "A video from the Utah System of Higher Education (with special thanks to Dr. Nancy Ross). Video by Ydraw.", "slug": "tice-art-1010-medieval-and-byzantine-art-mp4", "kind": "Video", "video_id": "UpGsouOnxOU", "keywords": "Medieval, Byzantine, art", "youtube_id": "UpGsouOnxOU", "readable_id": "tice-art-1010-medieval-and-byzantine-art-mp4"}, "5d63YMUxcS4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5d63YMUxcS4.mp4/5d63YMUxcS4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5d63YMUxcS4.mp4/5d63YMUxcS4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5d63YMUxcS4.m3u8/5d63YMUxcS4.m3u8"}, "duration": 468, "id": "5d63YMUxcS4", "title": "Cyclic ethers and epoxide naming", "format": "mp4", "description": "Cyclic ethers and epoxide naming", "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-preparation-epoxides/cyclic-ethers-and-epoxide-naming/", "slug": "cyclic-ethers-and-epoxide-naming", "kind": "Video", "video_id": "5d63YMUxcS4", "keywords": "Cyclic, ethers, and, epoxide, naming", "youtube_id": "5d63YMUxcS4", "readable_id": "cyclic-ethers-and-epoxide-naming"}, "4qY9icExjEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4qY9icExjEw.mp4/4qY9icExjEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4qY9icExjEw.mp4/4qY9icExjEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4qY9icExjEw.m3u8/4qY9icExjEw.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-interviews/succeeding-at-the-admissions-interview/", "duration": 383, "id": "4qY9icExjEw", "title": "Succeeding at the college admissions interview", "format": "mp4", "description": "", "slug": "succeeding-at-the-admissions-interview", "kind": "Video", "video_id": "4qY9icExjEw", "keywords": "", "youtube_id": "4qY9icExjEw", "readable_id": "succeeding-at-the-admissions-interview"}, "ZGl2ExHwdak": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZGl2ExHwdak.mp4/ZGl2ExHwdak.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZGl2ExHwdak.mp4/ZGl2ExHwdak.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZGl2ExHwdak.m3u8/ZGl2ExHwdak.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/adding-and-subtracting-polynomials-2/", "duration": 104, "id": "ZGl2ExHwdak", "title": "Adding and subtracting polynomials 2", "format": "mp4", "description": "Adding and Subtracting Polynomials 2", "slug": "adding-and-subtracting-polynomials-2", "kind": "Video", "video_id": "ZGl2ExHwdak", "keywords": "U08_L2_T2_we2, Adding, and, Subtracting, Polynomials, CC_39336_A-APR_1", "youtube_id": "ZGl2ExHwdak", "readable_id": "adding-and-subtracting-polynomials-2"}, "w2M5CzTFYfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w2M5CzTFYfI.mp4/w2M5CzTFYfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w2M5CzTFYfI.mp4/w2M5CzTFYfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w2M5CzTFYfI.m3u8/w2M5CzTFYfI.m3u8"}, "duration": 382, "id": "w2M5CzTFYfI", "title": "Rounding to the nearest 10", "format": "mp4", "description": "Use a number line to round two-digit numbers to the nearest ten.", "path": "rounding-to-the-nearest-10/", "slug": "rounding-to-the-nearest-10", "kind": "Video", "video_id": "w2M5CzTFYfI", "keywords": "", "youtube_id": "w2M5CzTFYfI", "readable_id": "rounding-to-the-nearest-10"}, "GvbrtnEYRpY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GvbrtnEYRpY.mp4/GvbrtnEYRpY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GvbrtnEYRpY.mp4/GvbrtnEYRpY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GvbrtnEYRpY.m3u8/GvbrtnEYRpY.m3u8"}, "duration": 394, "id": "GvbrtnEYRpY", "title": "Inductive patterns", "format": "mp4", "description": "Inductive Patterns", "path": "khan/math/precalculus/seq_induction/deductive-and-inductive-reasoning/u03-l1-t1-we2-inductive-patterns/", "slug": "u03-l1-t1-we2-inductive-patterns", "kind": "Video", "video_id": "GvbrtnEYRpY", "keywords": "U03, L1, T1, we2, Inductive, Patterns", "youtube_id": "GvbrtnEYRpY", "readable_id": "u03-l1-t1-we2-inductive-patterns"}, "44ZkTayk2hk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/44ZkTayk2hk.mp4/44ZkTayk2hk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/44ZkTayk2hk.mp4/44ZkTayk2hk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/44ZkTayk2hk.m3u8/44ZkTayk2hk.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/shai-kremer/", "duration": 200, "id": "44ZkTayk2hk", "title": "Shai Kremer in an Israeli military training stage", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIsraeli photographer and former solider Shai Kremer invites us into an expansive military training ground. Kremer snuck into an Israeli training compound\u2014or \u201cstage\u201d\u2014for urban military manoeuvres and took photographs of the exercises taking place within. Hiding from an hourly patrol, Kremer secretly took photos of this fake city in hopes of raising discussion about what he see as the militarisation of society. Although it seems empty from afar, looking more closely at Kremer\u2019s photograph reveals even more details.\nWhat message do you think Kremer is trying to convey in this photograph? Is he supportive or against what he sees\u2014or neither?\u00a0\n", "slug": "shai-kremer", "kind": "Video", "video_id": "44ZkTayk2hk", "keywords": "Tate", "youtube_id": "44ZkTayk2hk", "readable_id": "shai-kremer"}, "hhvsPG3STho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hhvsPG3STho.mp4/hhvsPG3STho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hhvsPG3STho.mp4/hhvsPG3STho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hhvsPG3STho.m3u8/hhvsPG3STho.m3u8"}, "duration": 4840, "id": "hhvsPG3STho", "title": "Meet Me | Art Making Programs for Individuals with Dementia", "format": "mp4", "description": "Engaging Individuals with Dementia with Art.\u00a0For more information please visit http://www.moma.org/meetme", "path": "meet-me-art-making/", "slug": "meet-me-art-making", "kind": "Video", "video_id": "hhvsPG3STho", "keywords": "", "youtube_id": "hhvsPG3STho", "readable_id": "meet-me-art-making"}, "g3LrOw1JMi8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g3LrOw1JMi8.mp4/g3LrOw1JMi8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g3LrOw1JMi8.mp4/g3LrOw1JMi8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g3LrOw1JMi8.m3u8/g3LrOw1JMi8.m3u8"}, "duration": 163, "id": "g3LrOw1JMi8", "title": "Domain and range of a relation", "format": "mp4", "description": "Domain and Range of a Relation", "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain-and-range-of-a-relation/", "slug": "domain-and-range-of-a-relation", "kind": "Video", "video_id": "g3LrOw1JMi8", "keywords": "u17_l1_t1_we1, Domain, and, Range, of, Relation", "youtube_id": "g3LrOw1JMi8", "readable_id": "domain-and-range-of-a-relation"}, "-F4qnA1PFzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-F4qnA1PFzE.mp4/-F4qnA1PFzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-F4qnA1PFzE.mp4/-F4qnA1PFzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-F4qnA1PFzE.m3u8/-F4qnA1PFzE.m3u8"}, "duration": 137, "id": "-F4qnA1PFzE", "title": "Drawings", "format": "mp4", "description": "The Getty drawings department oversees a collection strong in old master works and and drawings from the 1800s and 1900s, including a Degas sketchbook. Love art? Follow us on Google+\u00a0at http://bit.ly/gettygoogleplus", "path": "drawings/", "slug": "drawings", "kind": "Video", "video_id": "-F4qnA1PFzE", "keywords": "", "youtube_id": "-F4qnA1PFzE", "readable_id": "drawings"}, "_V9BhPURRw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_V9BhPURRw0.mp4/_V9BhPURRw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_V9BhPURRw0.mp4/_V9BhPURRw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_V9BhPURRw0.m3u8/_V9BhPURRw0.m3u8"}, "duration": 163, "id": "_V9BhPURRw0", "title": "\"Protective\" with Alison Manges Nogueira", "format": "mp4", "description": "Met curator Alison Manges Nogueira on familiarity in Giovanni Bellini\u2019s Madonna and Child, c. 1470.\n\nView this work on metmuseum.org.\u00a0\n", "path": "protective/", "slug": "protective", "kind": "Video", "video_id": "_V9BhPURRw0", "keywords": "compassion, family, painting, touch, wood, Europe", "youtube_id": "_V9BhPURRw0", "readable_id": "protective"}, "g3kDdg8r6NY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g3kDdg8r6NY.mp4/g3kDdg8r6NY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g3kDdg8r6NY.mp4/g3kDdg8r6NY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g3kDdg8r6NY.m3u8/g3kDdg8r6NY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/atherosclerosis/", "duration": 825, "id": "g3kDdg8r6NY", "title": "Atherosclerosis", "format": "mp4", "description": "", "slug": "atherosclerosis", "kind": "Video", "video_id": "g3kDdg8r6NY", "keywords": "", "youtube_id": "g3kDdg8r6NY", "readable_id": "atherosclerosis"}, "OhISsmqv4_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OhISsmqv4_8.mp4/OhISsmqv4_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OhISsmqv4_8.mp4/OhISsmqv4_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OhISsmqv4_8.m3u8/OhISsmqv4_8.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/arc-length/arc-length-example/", "duration": 423, "id": "OhISsmqv4_8", "title": "Arc length integration example", "format": "mp4", "description": "", "slug": "arc-length-example", "kind": "Video", "video_id": "OhISsmqv4_8", "keywords": "", "youtube_id": "OhISsmqv4_8", "readable_id": "arc-length-example"}, "Ihws0d-WLzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ihws0d-WLzU.mp4/Ihws0d-WLzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ihws0d-WLzU.mp4/Ihws0d-WLzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ihws0d-WLzU.m3u8/Ihws0d-WLzU.m3u8"}, "duration": 546, "id": "Ihws0d-WLzU", "title": "Converting repeating decimals to fractions 2", "format": "mp4", "description": "Converting more interesting repeating decimals to fractions", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/conv_rep_decimals/coverting-repeating-decimals-to-fractions-2/", "slug": "coverting-repeating-decimals-to-fractions-2", "kind": "Video", "video_id": "Ihws0d-WLzU", "keywords": "Coverting, Repeating, Decimals, to, Fractions, 2", "youtube_id": "Ihws0d-WLzU", "readable_id": "coverting-repeating-decimals-to-fractions-2"}, "KFgvOQtH0Z0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KFgvOQtH0Z0.mp4/KFgvOQtH0Z0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KFgvOQtH0Z0.mp4/KFgvOQtH0Z0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KFgvOQtH0Z0.m3u8/KFgvOQtH0Z0.m3u8"}, "duration": 531, "id": "KFgvOQtH0Z0", "title": "Intuitive sense of probabilities", "format": "mp4", "description": "Think about what probabilities really mean. What does a probability of 0 mean? How about 1?", "path": "intuitive-sense-of-probabilities/", "slug": "intuitive-sense-of-probabilities", "kind": "Video", "video_id": "KFgvOQtH0Z0", "keywords": "", "youtube_id": "KFgvOQtH0Z0", "readable_id": "intuitive-sense-of-probabilities"}, "kVulo3qDcUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kVulo3qDcUo.mp4/kVulo3qDcUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kVulo3qDcUo.mp4/kVulo3qDcUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kVulo3qDcUo.m3u8/kVulo3qDcUo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/cerebral-blood-supply-part-2/", "duration": 272, "id": "kVulo3qDcUo", "title": "Cerebral blood supply: Part 2", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "cerebral-blood-supply-part-2", "kind": "Video", "video_id": "kVulo3qDcUo", "keywords": "", "youtube_id": "kVulo3qDcUo", "readable_id": "cerebral-blood-supply-part-2"}, "hleYHNMDnBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hleYHNMDnBE.mp4/hleYHNMDnBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hleYHNMDnBE.mp4/hleYHNMDnBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hleYHNMDnBE.m3u8/hleYHNMDnBE.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/other-materials6/bhp-migrations-technology/", "duration": 403, "id": "hleYHNMDnBE", "title": "Migrations and Technological Creativity", "format": "mp4", "description": "Journey with Craig Benjamin through 250,000 years of technological creativity and human migration. Explore how our species has had to adapt, change, and migrate to survive.", "slug": "bhp-migrations-technology", "kind": "Video", "video_id": "hleYHNMDnBE", "keywords": "", "youtube_id": "hleYHNMDnBE", "readable_id": "bhp-migrations-technology"}, "ALJGz4r_VF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ALJGz4r_VF0.mp4/ALJGz4r_VF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ALJGz4r_VF0.mp4/ALJGz4r_VF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ALJGz4r_VF0.m3u8/ALJGz4r_VF0.m3u8"}, "duration": 1222, "id": "ALJGz4r_VF0", "title": "Napoleon's Peninsular Campaigns", "format": "mp4", "description": "French forces get embroiled in the Iberian Peninsula", "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/napoleon-s-peninsular-campaigns/", "slug": "napoleon-s-peninsular-campaigns", "kind": "Video", "video_id": "ALJGz4r_VF0", "keywords": "napoleon, spain, portugal, austria", "youtube_id": "ALJGz4r_VF0", "readable_id": "napoleon-s-peninsular-campaigns"}, "7vHh1sfZ5KE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7vHh1sfZ5KE.mp4/7vHh1sfZ5KE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7vHh1sfZ5KE.mp4/7vHh1sfZ5KE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7vHh1sfZ5KE.m3u8/7vHh1sfZ5KE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/current-and-resistance/circuits-part-2/", "duration": 668, "id": "7vHh1sfZ5KE", "title": "Resistors in series", "format": "mp4", "description": "Resistors in series", "slug": "circuits-part-2", "kind": "Video", "video_id": "7vHh1sfZ5KE", "keywords": "series, resistors", "youtube_id": "7vHh1sfZ5KE", "readable_id": "circuits-part-2"}, "rs1md3e4aYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rs1md3e4aYU.mp4/rs1md3e4aYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rs1md3e4aYU.mp4/rs1md3e4aYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rs1md3e4aYU.m3u8/rs1md3e4aYU.m3u8"}, "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets/bonds-vs-stocks/", "duration": 561, "id": "rs1md3e4aYU", "title": "Bonds vs. stocks", "format": "mp4", "description": "The difference between a bond and a stock.", "slug": "bonds-vs-stocks", "kind": "Video", "video_id": "rs1md3e4aYU", "keywords": "stocks, bonds, equity, debt", "youtube_id": "rs1md3e4aYU", "readable_id": "bonds-vs-stocks"}, "Z3X6QqezqUg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z3X6QqezqUg.mp4/Z3X6QqezqUg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z3X6QqezqUg.mp4/Z3X6QqezqUg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z3X6QqezqUg.m3u8/Z3X6QqezqUg.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-2-a-b/", "duration": 556, "id": "Z3X6QqezqUg", "title": "2011 Calculus AB free response #2 (a & b)", "format": "mp4", "description": "Approximating rate of change and total area under a curve. Trapezoidal sums to approximate integrals", "slug": "2011-calculus-ab-free-response-2-a-b", "kind": "Video", "video_id": "Z3X6QqezqUg", "keywords": "trapezoidal, sum, integration, differentiation", "youtube_id": "Z3X6QqezqUg", "readable_id": "2011-calculus-ab-free-response-2-a-b"}, "5DlzmolR8Cg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5DlzmolR8Cg.mp4/5DlzmolR8Cg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5DlzmolR8Cg.mp4/5DlzmolR8Cg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5DlzmolR8Cg.m3u8/5DlzmolR8Cg.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimal-place-value-pre-alg/writing-a-decimal-to-represent-a-quantity/", "duration": 166, "id": "5DlzmolR8Cg", "title": "Decimals: writing it out as a number", "format": "mp4", "description": "Take your time and remember your order of operations as you translate this into a decimal number.", "slug": "writing-a-decimal-to-represent-a-quantity", "kind": "Video", "video_id": "5DlzmolR8Cg", "keywords": "", "youtube_id": "5DlzmolR8Cg", "readable_id": "writing-a-decimal-to-represent-a-quantity"}, "pWM5ONbMPeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pWM5ONbMPeE.mp4/pWM5ONbMPeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pWM5ONbMPeE.mp4/pWM5ONbMPeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pWM5ONbMPeE.m3u8/pWM5ONbMPeE.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/comparing-colleges-major-offered/", "duration": 56, "id": "pWM5ONbMPeE", "title": "Comparing colleges based on majors offered", "format": "mp4", "description": "Filter by major offered using College Board's college search tool", "slug": "comparing-colleges-major-offered", "kind": "Video", "video_id": "pWM5ONbMPeE", "keywords": "", "youtube_id": "pWM5ONbMPeE", "readable_id": "comparing-colleges-major-offered"}, "QvdMC_wY_K4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QvdMC_wY_K4.mp4/QvdMC_wY_K4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QvdMC_wY_K4.mp4/QvdMC_wY_K4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QvdMC_wY_K4.m3u8/QvdMC_wY_K4.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/song-dynasty/metaphorical/", "duration": 150, "id": "QvdMC_wY_K4", "title": "\"Metaphorical\" with Shi-yee Liu", "format": "mp4", "description": "Met curator Shi-yee Liu on illusory nature in Liang Kai\u2019s Poet Strolling by a Marshy Bank.\n\nLiang Kai served as a painter-in-attendance at the Song Imperial Painting Academy in Hangzhou from about 1201 to 1204; he relinquished that prestigious position to live and paint at a Chan (Zen in Japanese) Buddhist temple. Like his best-known paintings, preserved mostly in Japanese collections, this small landscape conveys a spiritual intensity. Under the great cliff, in the stillness of the landscape, a solitary figure meditates on the illusory world before him.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an educator resource.\n", "slug": "metaphorical", "kind": "Video", "video_id": "QvdMC_wY_K4", "keywords": "light, nature, painting, politics, silk, Asia", "youtube_id": "QvdMC_wY_K4", "readable_id": "metaphorical"}, "wblW_M_HVQ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wblW_M_HVQ8.mp4/wblW_M_HVQ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wblW_M_HVQ8.mp4/wblW_M_HVQ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wblW_M_HVQ8.m3u8/wblW_M_HVQ8.m3u8"}, "duration": 563, "id": "wblW_M_HVQ8", "title": "Proof by induction", "format": "mp4", "description": "Proving an expression for the sum of all positive integers up to and including n by induction", "path": "khan/math/precalculus/seq_induction/proof_by_induction/proof-by-induction/", "slug": "proof-by-induction", "kind": "Video", "video_id": "wblW_M_HVQ8", "keywords": "proof, algebra, induction", "youtube_id": "wblW_M_HVQ8", "readable_id": "proof-by-induction"}, "B_vAlneziHo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B_vAlneziHo.mp4/B_vAlneziHo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B_vAlneziHo.mp4/B_vAlneziHo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B_vAlneziHo.m3u8/B_vAlneziHo.m3u8"}, "duration": 155, "id": "B_vAlneziHo", "title": "Counting pot and flower scenarios", "format": "mp4", "description": "Find the number of ways you can put four types of flowers into three types of pots.", "path": "counting-pot-and-flower-scenarios/", "slug": "counting-pot-and-flower-scenarios", "kind": "Video", "video_id": "B_vAlneziHo", "keywords": "", "youtube_id": "B_vAlneziHo", "readable_id": "counting-pot-and-flower-scenarios"}, "faUh3bAxomM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/faUh3bAxomM.mp4/faUh3bAxomM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/faUh3bAxomM.mp4/faUh3bAxomM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/faUh3bAxomM.m3u8/faUh3bAxomM.m3u8"}, "duration": 226, "id": "faUh3bAxomM", "title": "Interpreting absolute value", "format": "mp4", "description": "", "path": "interpreting-absolute-value/", "slug": "interpreting-absolute-value", "kind": "Video", "video_id": "faUh3bAxomM", "keywords": "", "youtube_id": "faUh3bAxomM", "readable_id": "interpreting-absolute-value"}, "QcAr1552o84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QcAr1552o84.mp4/QcAr1552o84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QcAr1552o84.mp4/QcAr1552o84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QcAr1552o84.m3u8/QcAr1552o84.m3u8"}, "duration": 627, "id": "QcAr1552o84", "title": "GMAT: Math 37", "format": "mp4", "description": "185-189, pgs. 177-178", "path": "khan/test-prep/gmat/problem-solving/gmat-math-37/", "slug": "gmat-math-37", "kind": "Video", "video_id": "QcAr1552o84", "keywords": "gmat, math, problem, solving", "youtube_id": "QcAr1552o84", "readable_id": "gmat-math-37"}, "0dcDHJVojVY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0dcDHJVojVY.mp4/0dcDHJVojVY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0dcDHJVojVY.mp4/0dcDHJVojVY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0dcDHJVojVY.m3u8/0dcDHJVojVY.m3u8"}, "duration": 201, "id": "0dcDHJVojVY", "title": "Taddeo Zuccaro's artistic training: drawings by Federico Zuccaro", "format": "mp4", "description": "What would it have been like in the late 1500s to go to Rome, the artistic and cultural center of the Western world, with hopes of becoming an artist? Discover how a series of drawings made around 1595 by Federico Zuccaro vividly convey the poignant story of older brother Taddeo's hardships and eventual triumph as a young artist in Renaissance Rome. (Captioned without sound) Love art? Follow us on Google+\u00a0at http://bit.ly/gettygoogleplus", "path": "taddeo-zuccaro-artistic-training/", "slug": "taddeo-zuccaro-artistic-training", "kind": "Video", "video_id": "0dcDHJVojVY", "keywords": "", "youtube_id": "0dcDHJVojVY", "readable_id": "taddeo-zuccaro-artistic-training"}, "cdvV8O90HJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cdvV8O90HJM.mp4/cdvV8O90HJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cdvV8O90HJM.mp4/cdvV8O90HJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cdvV8O90HJM.m3u8/cdvV8O90HJM.m3u8"}, "duration": 634, "id": "cdvV8O90HJM", "title": "Precipitation reactions", "format": "mp4", "description": "A lot of ionic compounds dissolve in water, dissociating into individual ions. But when two ions find each other that form an insoluble compound, they suddenly fall out of solution in what's called a precipitation reaction. In this episode of Crash Course Chemistry, we learn about precipitation, precipitates, anions, cations, and how to describe and discuss ionic reactions.\nWriter: Kim Krieger\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem09-precipitation-reactions/", "slug": "chem09-precipitation-reactions", "kind": "Video", "video_id": "cdvV8O90HJM", "keywords": "", "youtube_id": "cdvV8O90HJM", "readable_id": "chem09-precipitation-reactions"}, "WX4T9NjYG94": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WX4T9NjYG94.mp4/WX4T9NjYG94.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WX4T9NjYG94.mp4/WX4T9NjYG94.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WX4T9NjYG94.m3u8/WX4T9NjYG94.m3u8"}, "duration": 543, "id": "WX4T9NjYG94", "title": "Serbian and Macedonian fronts", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/other-fronts-ww1/serbian-and-macedonian-fronts/", "slug": "serbian-and-macedonian-fronts", "kind": "Video", "video_id": "WX4T9NjYG94", "keywords": "", "youtube_id": "WX4T9NjYG94", "readable_id": "serbian-and-macedonian-fronts"}, "S9pTSmXmXH8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S9pTSmXmXH8.mp4/S9pTSmXmXH8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S9pTSmXmXH8.mp4/S9pTSmXmXH8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S9pTSmXmXH8.m3u8/S9pTSmXmXH8.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/equivalent-forms-of-expressions-1/", "duration": 332, "id": "S9pTSmXmXH8", "title": "Equivalent forms of expressions", "format": "mp4", "description": "We're looking to find the expressions that are equivalent to a given expression that can be simplified. Give it a try with us.", "slug": "equivalent-forms-of-expressions-1", "kind": "Video", "video_id": "S9pTSmXmXH8", "keywords": "", "youtube_id": "S9pTSmXmXH8", "readable_id": "equivalent-forms-of-expressions-1"}, "pXFHtwVQxqk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pXFHtwVQxqk.mp4/pXFHtwVQxqk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pXFHtwVQxqk.mp4/pXFHtwVQxqk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pXFHtwVQxqk.m3u8/pXFHtwVQxqk.m3u8"}, "duration": 57, "id": "pXFHtwVQxqk", "title": "How intelligent were dinosaurs?", "format": "mp4", "description": "By measuring the size of the brain cavity in available dinosaur skulls, it's clear that some dinosaurs had relatively larger brains than others and that dinosaurs' brains were not unusually small compared to those of living reptiles, such as crocodiles, turtles and lizards. Does this mean they were equally intelligent? Not necessarily.\u00a0One can also examine the organization of the three main parts of the brain: the stem, which regulates heartbeat, respiration and other functions; the cerebellum, which coordinates muscle movements; and the cerebrum, which is involved with complex sensory functions and memory. In Velociraptor and its close relatives, the cerebrum and cerebellum appear large and bird-like, possibly indicating enhanced abilities.", "path": "colorful-dinosaurs/", "slug": "colorful-dinosaurs", "kind": "Video", "video_id": "pXFHtwVQxqk", "keywords": "", "youtube_id": "pXFHtwVQxqk", "readable_id": "colorful-dinosaurs"}, "we829K4NOq8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/we829K4NOq8.mp4/we829K4NOq8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/we829K4NOq8.mp4/we829K4NOq8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/we829K4NOq8.m3u8/we829K4NOq8.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/lin-alg-projections-onto-subspaces-with-orthonormal-bases/", "duration": 974, "id": "we829K4NOq8", "title": "Projections onto subspaces with orthonormal bases", "format": "mp4", "description": "Projections onto subspaces with orthonormal bases", "slug": "lin-alg-projections-onto-subspaces-with-orthonormal-bases", "kind": "Video", "video_id": "we829K4NOq8", "keywords": "projection, orthonormal, basis", "youtube_id": "we829K4NOq8", "readable_id": "lin-alg-projections-onto-subspaces-with-orthonormal-bases"}, "ryycDVWXDvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ryycDVWXDvc.mp4/ryycDVWXDvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ryycDVWXDvc.mp4/ryycDVWXDvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ryycDVWXDvc.m3u8/ryycDVWXDvc.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap/house-altar-depicting-akhenaten-nefertiti-and-three-daughters/", "duration": 303, "id": "ryycDVWXDvc", "title": "Akhenaten, Nefertiti, and Three Daughters", "format": "mp4", "description": "House Altar depicting Akhenaten, Nefertiti and Three of their Daughters, limestone, New Kingdom, Amarna period, 18th dynasty, c.1350 BCE (\u00c4gyptisches Museum/Neues Museum, Staatliche Museen zu Berlin)", "slug": "house-altar-depicting-akhenaten-nefertiti-and-three-daughters", "kind": "Video", "video_id": "ryycDVWXDvc", "keywords": "Nefertiti (Noble Person), House Altar, Akhenaten, Nefertiti, Egyptian Children, Royal Children, limestone, New Kingdom, Amarna, 18th dynasty, 1350 BCE, \u00c4gyptisches, Egypt, Museum, Berlin, Ancient, monotheism, polytheism, Amun, Aten, Sun God, Family, King, Pharoah", "youtube_id": "ryycDVWXDvc", "readable_id": "house-altar-depicting-akhenaten-nefertiti-and-three-daughters"}, "AcNDiCzz3do": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AcNDiCzz3do.mp4/AcNDiCzz3do.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AcNDiCzz3do.mp4/AcNDiCzz3do.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AcNDiCzz3do.m3u8/AcNDiCzz3do.m3u8"}, "duration": 586, "id": "AcNDiCzz3do", "title": "ATP hydrolysis: Transfer of a phosphate group", "format": "mp4", "description": "How is ATP coupled to energy-requiring processes? How does the transfer of a phosphate group \"fuel\" chemical reactions?", "path": "khan/test-prep/mcat/biomolecules/overview-metabolism/atp-hydrolysis-transfer-of-a-phosphate-group/", "slug": "atp-hydrolysis-transfer-of-a-phosphate-group", "kind": "Video", "video_id": "AcNDiCzz3do", "keywords": "", "youtube_id": "AcNDiCzz3do", "readable_id": "atp-hydrolysis-transfer-of-a-phosphate-group"}, "bUez19ABrI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bUez19ABrI8.mp4/bUez19ABrI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bUez19ABrI8.mp4/bUez19ABrI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bUez19ABrI8.m3u8/bUez19ABrI8.m3u8"}, "duration": 69, "id": "bUez19ABrI8", "title": "Scenario 1: Recommend a skill", "format": "mp4", "description": "Learn how to recommend a skill to a student using the Skill Progress report.", "path": "make-coach-recommendations/", "slug": "make-coach-recommendations", "kind": "Video", "video_id": "bUez19ABrI8", "keywords": "", "youtube_id": "bUez19ABrI8", "readable_id": "make-coach-recommendations"}, "f8B2dBQn3_U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f8B2dBQn3_U.mp4/f8B2dBQn3_U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f8B2dBQn3_U.mp4/f8B2dBQn3_U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f8B2dBQn3_U.m3u8/f8B2dBQn3_U.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/comparing-decimals-pre-alg/comparing-decimals-2-example/", "duration": 264, "id": "f8B2dBQn3_U", "title": "Comparing decimals: difference in largest place value", "format": "mp4", "description": "Confused trying to determine which decimal is larger? Let's compare two decimals in this example. Remember that you're looking for the difference is the largest place value to find the larger decimal.", "slug": "comparing-decimals-2-example", "kind": "Video", "video_id": "f8B2dBQn3_U", "keywords": "", "youtube_id": "f8B2dBQn3_U", "readable_id": "comparing-decimals-2-example"}, "wqnpSzEzq1w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wqnpSzEzq1w.mp4/wqnpSzEzq1w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wqnpSzEzq1w.mp4/wqnpSzEzq1w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wqnpSzEzq1w.m3u8/wqnpSzEzq1w.m3u8"}, "duration": 474, "id": "wqnpSzEzq1w", "title": "Another derivation of the sum of an infinite geometric series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/deriving-geometric-series-sum-formula/", "slug": "deriving-geometric-series-sum-formula", "kind": "Video", "video_id": "wqnpSzEzq1w", "keywords": "", "youtube_id": "wqnpSzEzq1w", "readable_id": "deriving-geometric-series-sum-formula"}, "_LDR1_Prveo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_LDR1_Prveo.mp4/_LDR1_Prveo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_LDR1_Prveo.mp4/_LDR1_Prveo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_LDR1_Prveo.m3u8/_LDR1_Prveo.m3u8"}, "duration": 438, "id": "_LDR1_Prveo", "title": "Origins of algebra", "format": "mp4", "description": "Where did the word \"Algebra\" and its underlying ideas come from?", "path": "khan/math/algebra/introduction-to-algebra/overview_hist_alg/origins-of-algebra/", "slug": "origins-of-algebra", "kind": "Video", "video_id": "_LDR1_Prveo", "keywords": "algebra, kwarizmi, diophantus, brahmagupta, marquee", "youtube_id": "_LDR1_Prveo", "readable_id": "origins-of-algebra"}, "afgbUjRYt3A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/afgbUjRYt3A.mp4/afgbUjRYt3A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/afgbUjRYt3A.mp4/afgbUjRYt3A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/afgbUjRYt3A.m3u8/afgbUjRYt3A.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-13/", "duration": 75, "id": "afgbUjRYt3A", "title": "13 Difference between number and square", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-13", "kind": "Video", "video_id": "afgbUjRYt3A", "keywords": "", "youtube_id": "afgbUjRYt3A", "readable_id": "sat-getting-ready-2-13"}, "2uzDuGp0HQ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2uzDuGp0HQ0.mp4/2uzDuGp0HQ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2uzDuGp0HQ0.mp4/2uzDuGp0HQ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2uzDuGp0HQ0.m3u8/2uzDuGp0HQ0.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/measure-magnets/inverse-square-law-method-of-oscillation/", "duration": 128, "id": "2uzDuGp0HQ0", "title": "Inverse cube law (method of oscillation)", "format": "mp4", "description": "Here we compare the speed of compass oscillation vs. distance from a magnet. What kind of relationship do we observe. Is it linear?", "slug": "inverse-square-law-method-of-oscillation", "kind": "Video", "video_id": "2uzDuGp0HQ0", "keywords": "inverse square", "youtube_id": "2uzDuGp0HQ0", "readable_id": "inverse-square-law-method-of-oscillation"}, "SgKBBUFaGb4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SgKBBUFaGb4.mp4/SgKBBUFaGb4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SgKBBUFaGb4.mp4/SgKBBUFaGb4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SgKBBUFaGb4.m3u8/SgKBBUFaGb4.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/multi-step-inequalities-3/", "duration": 338, "id": "SgKBBUFaGb4", "title": "Multi-step inequalities 3", "format": "mp4", "description": "Multi-Step Inequalities", "slug": "multi-step-inequalities-3", "kind": "Video", "video_id": "SgKBBUFaGb4", "keywords": "u10_l2_t2_we1, Multi-Step, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "SgKBBUFaGb4", "readable_id": "multi-step-inequalities-3"}, "BCEyKQQOl8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BCEyKQQOl8E.mp4/BCEyKQQOl8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BCEyKQQOl8E.mp4/BCEyKQQOl8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BCEyKQQOl8E.m3u8/BCEyKQQOl8E.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-29/", "duration": 593, "id": "BCEyKQQOl8E", "title": "GMAT: Data sufficiency 29", "format": "mp4", "description": "119-120, pg. 288", "slug": "gmat-data-sufficiency-29", "kind": "Video", "video_id": "BCEyKQQOl8E", "keywords": "gmat, data, sufficiency", "youtube_id": "BCEyKQQOl8E", "readable_id": "gmat-data-sufficiency-29"}, "Xt4sT0fV9Pw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xt4sT0fV9Pw.mp4/Xt4sT0fV9Pw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xt4sT0fV9Pw.mp4/Xt4sT0fV9Pw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xt4sT0fV9Pw.m3u8/Xt4sT0fV9Pw.m3u8"}, "duration": 466, "id": "Xt4sT0fV9Pw", "title": "Medians divide into smaller triangles of equal area", "format": "mp4", "description": "Showing that the three medians of a triangle divide it into six smaller triangles of equal area. Brief discussion of the centroid as well", "path": "khan/math/geometry/triangle-properties/medians_centroids/medians-divide-into-smaller-triangles-of-equal-area/", "slug": "medians-divide-into-smaller-triangles-of-equal-area", "kind": "Video", "video_id": "Xt4sT0fV9Pw", "keywords": "Medians, divide, into, smaller, triangles, of, equal, area", "youtube_id": "Xt4sT0fV9Pw", "readable_id": "medians-divide-into-smaller-triangles-of-equal-area"}, "nG7yosFQHP4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nG7yosFQHP4.mp4/nG7yosFQHP4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nG7yosFQHP4.mp4/nG7yosFQHP4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nG7yosFQHP4.m3u8/nG7yosFQHP4.m3u8"}, "duration": 740, "id": "nG7yosFQHP4", "title": "Freud's psychosexual development", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/freuds-psychosexual-development/", "slug": "freuds-psychosexual-development", "kind": "Video", "video_id": "nG7yosFQHP4", "keywords": "", "youtube_id": "nG7yosFQHP4", "readable_id": "freuds-psychosexual-development"}, "iVAYOeGmNqo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iVAYOeGmNqo.mp4/iVAYOeGmNqo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iVAYOeGmNqo.mp4/iVAYOeGmNqo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iVAYOeGmNqo.m3u8/iVAYOeGmNqo.m3u8"}, "duration": 466, "id": "iVAYOeGmNqo", "title": "Approximating incremental cost with derivative", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/differentiation-application/approximating-incremental-cost-with-derivative/", "slug": "approximating-incremental-cost-with-derivative", "kind": "Video", "video_id": "iVAYOeGmNqo", "keywords": "", "youtube_id": "iVAYOeGmNqo", "readable_id": "approximating-incremental-cost-with-derivative"}, "w6O2Rxub6VE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w6O2Rxub6VE.mp4/w6O2Rxub6VE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w6O2Rxub6VE.mp4/w6O2Rxub6VE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w6O2Rxub6VE.m3u8/w6O2Rxub6VE.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/r-greater-than-g/", "duration": 497, "id": "w6O2Rxub6VE", "title": "r greater than g but less inequality", "format": "mp4", "description": "", "slug": "r-greater-than-g", "kind": "Video", "video_id": "w6O2Rxub6VE", "keywords": "", "youtube_id": "w6O2Rxub6VE", "readable_id": "r-greater-than-g"}, "oc9fJCAIRJs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oc9fJCAIRJs.mp4/oc9fJCAIRJs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oc9fJCAIRJs.mp4/oc9fJCAIRJs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oc9fJCAIRJs.m3u8/oc9fJCAIRJs.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/mendelian-genetics/hardy-weinberg/", "duration": 494, "id": "oc9fJCAIRJs", "title": "Hardy Weinberg equation", "format": "mp4", "description": "", "slug": "hardy-weinberg", "kind": "Video", "video_id": "oc9fJCAIRJs", "keywords": "", "youtube_id": "oc9fJCAIRJs", "readable_id": "hardy-weinberg"}, "XhYQYVQq6K0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XhYQYVQq6K0.mp4/XhYQYVQq6K0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XhYQYVQq6K0.mp4/XhYQYVQq6K0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XhYQYVQq6K0.m3u8/XhYQYVQq6K0.m3u8"}, "duration": 628, "id": "XhYQYVQq6K0", "title": "Precocious puberty", "format": "mp4", "description": "At Stanford Medical School with Morgan Theis talking to Dr. Laura Bachrach talking about precocious puberty", "path": "khan/science/health-and-medicine/healthcare-misc/precocious-puberty/", "slug": "precocious-puberty", "kind": "Video", "video_id": "XhYQYVQq6K0", "keywords": "Precocious, Puberty", "youtube_id": "XhYQYVQq6K0", "readable_id": "precocious-puberty"}, "Zj3v-0Q3dpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zj3v-0Q3dpc.mp4/Zj3v-0Q3dpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zj3v-0Q3dpc.mp4/Zj3v-0Q3dpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zj3v-0Q3dpc.m3u8/Zj3v-0Q3dpc.m3u8"}, "duration": 380, "id": "Zj3v-0Q3dpc", "title": "A Juke Box at Tate Britain: Listening to and making audio archives", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn 2013, artist Yuri Suzuki created an immersive sound installation using music, audio archives, and even visitor recordings to act as a \u201csoundtrack\u201d to the Tate Britain collection. Using juke boxes in the gallery, Suzuki created an eclectic archive of sound that visitors could browse and listen to in conjunction with what they were seeing. The juke boxes were filled with sound material including clips of artists speaking about their work, lectures by curators, personal letters from artists like Paul Nash, and music inspired by the art in the gallery. Visitors could play records as they pleased, creating an atmosphere for the entire room, but they could also create their own sonic responses and have their voices recorded into a vinyl record to be saved and added to the juke box collection.\nThe content of an archive might seem like the most important thing about it, but what about the format and system in which it is stored\u2013and shared? Why do you think Suzuki chose the juke box as the medium for this in-gallery archive?\n", "path": "uke-box-meets-tate-britain/", "slug": "uke-box-meets-tate-britain", "kind": "Video", "video_id": "Zj3v-0Q3dpc", "keywords": "Tate", "youtube_id": "Zj3v-0Q3dpc", "readable_id": "uke-box-meets-tate-britain"}, "eu_GFuU7tLI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eu_GFuU7tLI.mp4/eu_GFuU7tLI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eu_GFuU7tLI.mp4/eu_GFuU7tLI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eu_GFuU7tLI.m3u8/eu_GFuU7tLI.m3u8"}, "duration": 599, "id": "eu_GFuU7tLI", "title": "Exact equations example 3", "format": "mp4", "description": "One more exact equation example", "path": "khan/math/differential-equations/first-order-differential-equations/exact-equations/exact-equations-example-3/", "slug": "exact-equations-example-3", "kind": "Video", "video_id": "eu_GFuU7tLI", "keywords": "exact, differential, equations", "youtube_id": "eu_GFuU7tLI", "readable_id": "exact-equations-example-3"}, "LvoONWiXJ5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LvoONWiXJ5I.mp4/LvoONWiXJ5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LvoONWiXJ5I.mp4/LvoONWiXJ5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LvoONWiXJ5I.m3u8/LvoONWiXJ5I.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/acute-treatment-of-stroke-with-medications/", "duration": 558, "id": "LvoONWiXJ5I", "title": "Acute treatment of stroke with medications", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "acute-treatment-of-stroke-with-medications", "kind": "Video", "video_id": "LvoONWiXJ5I", "keywords": "", "youtube_id": "LvoONWiXJ5I", "readable_id": "acute-treatment-of-stroke-with-medications"}, "v1_pCZBVWuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v1_pCZBVWuY.mp4/v1_pCZBVWuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v1_pCZBVWuY.mp4/v1_pCZBVWuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v1_pCZBVWuY.m3u8/v1_pCZBVWuY.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/anavysos-kouros/", "duration": 299, "id": "v1_pCZBVWuY", "title": "Anavysos Kouros", "format": "mp4", "description": "Anavysos Kouros, c. 530 B.C.E., marble, 6' 4\" (National Archaeological Museum, Athens)\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "anavysos-kouros", "kind": "Video", "video_id": "v1_pCZBVWuY", "keywords": "Greek, archaic, male, Anavysos, Kouros, marble, National Archaeological Museum, Athens", "youtube_id": "v1_pCZBVWuY", "readable_id": "anavysos-kouros"}, "aMIyUsF75Pw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aMIyUsF75Pw.mp4/aMIyUsF75Pw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aMIyUsF75Pw.mp4/aMIyUsF75Pw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aMIyUsF75Pw.m3u8/aMIyUsF75Pw.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/evaluating-taylor-polynomial-of-derivative/", "duration": 323, "id": "aMIyUsF75Pw", "title": "Evaluating Taylor Polynomial of derivative", "format": "mp4", "description": "", "slug": "evaluating-taylor-polynomial-of-derivative", "kind": "Video", "video_id": "aMIyUsF75Pw", "keywords": "", "youtube_id": "aMIyUsF75Pw", "readable_id": "evaluating-taylor-polynomial-of-derivative"}, "nITEU4fsqCU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nITEU4fsqCU.mp4/nITEU4fsqCU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nITEU4fsqCU.mp4/nITEU4fsqCU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nITEU4fsqCU.m3u8/nITEU4fsqCU.m3u8"}, "duration": 73, "id": "nITEU4fsqCU", "title": "Demonstration of David Roentgen's Automaton of Queen Marie Antoinette, The Dulcimer Player", "format": "mp4", "description": "Watch this surprising video of an automaton play the dulcimer.\nDavid Roentgen (1743\u20131807) took his royal patron by surprise when he delivered this beautiful automaton to King Louis XVI for his queen, Marie Antoinette, in 1784. The cabinetry for this piece is very much a neoclassical masterwork, and the mechanism behind it is truly extraordinary: the figure strikes the strings in perfect rhythm with two small metal hammers held in her hands, which move with great precision.\n\nSee the full video here.\n", "path": "automaton-demo/", "slug": "automaton-demo", "kind": "Video", "video_id": "nITEU4fsqCU", "keywords": "dulcimer, automaton, royal, Europe", "youtube_id": "nITEU4fsqCU", "readable_id": "automaton-demo"}, "WMv8A9qg6jY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WMv8A9qg6jY.mp4/WMv8A9qg6jY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WMv8A9qg6jY.mp4/WMv8A9qg6jY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WMv8A9qg6jY.m3u8/WMv8A9qg6jY.m3u8"}, "duration": 465, "id": "WMv8A9qg6jY", "title": "Overview of theories of development", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/overview-of-theories-of-development/", "slug": "overview-of-theories-of-development", "kind": "Video", "video_id": "WMv8A9qg6jY", "keywords": "", "youtube_id": "WMv8A9qg6jY", "readable_id": "overview-of-theories-of-development"}, "9XZypM2Z3Ro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9XZypM2Z3Ro.mp4/9XZypM2Z3Ro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9XZypM2Z3Ro.mp4/9XZypM2Z3Ro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9XZypM2Z3Ro.m3u8/9XZypM2Z3Ro.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-numbers-120/number-grid/", "duration": 298, "id": "9XZypM2Z3Ro", "title": "Number grid", "format": "mp4", "description": "In our introductory video to counting, Sal goes through all the numbers from 0 to 100, so we can start to see some interesting patterns.", "slug": "number-grid", "kind": "Video", "video_id": "9XZypM2Z3Ro", "keywords": "", "youtube_id": "9XZypM2Z3Ro", "readable_id": "number-grid"}, "jQ2nD8ZGeEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jQ2nD8ZGeEw.mp4/jQ2nD8ZGeEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jQ2nD8ZGeEw.mp4/jQ2nD8ZGeEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jQ2nD8ZGeEw.m3u8/jQ2nD8ZGeEw.m3u8"}, "duration": 655, "id": "jQ2nD8ZGeEw", "title": "Magnetism 5", "format": "mp4", "description": "Magnetic force on a wire carrying current.", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-5/", "slug": "magnetism-5", "kind": "Video", "video_id": "jQ2nD8ZGeEw", "keywords": "magnetic, force, current, field", "youtube_id": "jQ2nD8ZGeEw", "readable_id": "magnetism-5"}, "M5mH0u0b4W4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M5mH0u0b4W4.mp4/M5mH0u0b4W4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M5mH0u0b4W4.mp4/M5mH0u0b4W4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M5mH0u0b4W4.m3u8/M5mH0u0b4W4.m3u8"}, "duration": 90, "id": "M5mH0u0b4W4", "title": "St. Michael the archangel, sassy devil and crew", "format": "mp4", "description": "Riley and Michael talk about St. Michael the Archangel and sassy devil in Fall of the Rebel Angels, 1715-25. This is from an imaginative tour at the Getty Center: The Supernatural in Art. Follow us on Google+ to stay in touch.", "path": "st-michael-the-archangel-sassy-devil-and-crew/", "slug": "st-michael-the-archangel-sassy-devil-and-crew", "kind": "Video", "video_id": "M5mH0u0b4W4", "keywords": "", "youtube_id": "M5mH0u0b4W4", "readable_id": "st-michael-the-archangel-sassy-devil-and-crew"}, "VpVwgQjjaO4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VpVwgQjjaO4.mp4/VpVwgQjjaO4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VpVwgQjjaO4.mp4/VpVwgQjjaO4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VpVwgQjjaO4.m3u8/VpVwgQjjaO4.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/bali/boar-barong/", "duration": 247, "id": "VpVwgQjjaO4", "title": "Balinese boar Barong dance performance", "format": "mp4", "description": "The Barong is a protective deity that can take on a variety of animal forms\u2014lions, tigers, and boars are some of the more common images\u2014and each one is addressed using a respectful title such as Great God or Great Lord. Many villages, especially in southern Bali, have their own Barong figure. The Barong mask is kept in a shrine within a temple and brought out for use. The Barong is one of the most prominent images seen in the performing arts of Bali. This video features the Calonarang, a dance drama intended to chase away evil and purify a village.", "slug": "boar-barong", "kind": "Video", "video_id": "VpVwgQjjaO4", "keywords": "", "youtube_id": "VpVwgQjjaO4", "readable_id": "boar-barong"}, "_Vxg6bsNgYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_Vxg6bsNgYU.mp4/_Vxg6bsNgYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_Vxg6bsNgYU.mp4/_Vxg6bsNgYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_Vxg6bsNgYU.m3u8/_Vxg6bsNgYU.m3u8"}, "duration": 683, "id": "_Vxg6bsNgYU", "title": "The French Revolution", "format": "mp4", "description": "In which John Green examines the French Revolution, and gets into how and why it differed from the American Revolution. Was it the serial authoritarian regimes? The guillotine? The Reign of Terror? All of this and more contributed to the French Revolution not being quite as revolutionary as it could have been. France endured multiple constitutions, the heads of heads of state literally rolled, and then they ended up with a megalomaniacal little emperor by the name of Napoleon. But how did all of this change the world, and how did it lead to other, more successful revolutions around the world? Watch this video and find out. Spoiler alert: Marie Antoinette never said, \"Let them eat cake.\" Sorry.", "path": "khan/humanities/history/crashcourse-worldhistory/you-aint-the-boss-of-me-2/crash-course-world-history-29/", "slug": "crash-course-world-history-29", "kind": "Video", "video_id": "_Vxg6bsNgYU", "keywords": "crash course", "youtube_id": "_Vxg6bsNgYU", "readable_id": "crash-course-world-history-29"}, "Z30Kkrye47Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z30Kkrye47Y.mp4/Z30Kkrye47Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z30Kkrye47Y.mp4/Z30Kkrye47Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z30Kkrye47Y.m3u8/Z30Kkrye47Y.m3u8"}, "path": "khan/college-admissions/making-high-school-count/extracurricular-and-leadership/ss-extracurriculars-that-are-leadership-opportunities/", "duration": 73, "id": "Z30Kkrye47Y", "title": "Student story: Extracurriculars that are leadership opportunities", "format": "mp4", "description": "", "slug": "ss-extracurriculars-that-are-leadership-opportunities", "kind": "Video", "video_id": "Z30Kkrye47Y", "keywords": "", "youtube_id": "Z30Kkrye47Y", "readable_id": "ss-extracurriculars-that-are-leadership-opportunities"}, "qfQv8GzyjB4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qfQv8GzyjB4.mp4/qfQv8GzyjB4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qfQv8GzyjB4.mp4/qfQv8GzyjB4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qfQv8GzyjB4.m3u8/qfQv8GzyjB4.m3u8"}, "duration": 412, "id": "qfQv8GzyjB4", "title": "Number sets 2", "format": "mp4", "description": "Number Sets 2", "path": "khan/math/pre-algebra/fractions-pre-alg/number-sets-pre-alg/number-sets-2/", "slug": "number-sets-2", "kind": "Video", "video_id": "qfQv8GzyjB4", "keywords": "U12_L1_T1_we2, Number, Sets, CC_6_NS_6, CC_6_NS_6_c", "youtube_id": "qfQv8GzyjB4", "readable_id": "number-sets-2"}, "bFtjG45-Udk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bFtjG45-Udk.mp4/bFtjG45-Udk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bFtjG45-Udk.mp4/bFtjG45-Udk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bFtjG45-Udk.m3u8/bFtjG45-Udk.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/special-products-of-binomials/", "duration": 636, "id": "bFtjG45-Udk", "title": "Special products of binomials", "format": "mp4", "description": "Special Products of Binomials", "slug": "special-products-of-binomials", "kind": "Video", "video_id": "bFtjG45-Udk", "keywords": "Special, Products, of, Binomials, CC_39336_A-APR_5", "youtube_id": "bFtjG45-Udk", "readable_id": "special-products-of-binomials"}, "XS8OhYdc-20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XS8OhYdc-20.mp4/XS8OhYdc-20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XS8OhYdc-20.mp4/XS8OhYdc-20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XS8OhYdc-20.m3u8/XS8OhYdc-20.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/manet-the-balcony-1868-69/", "duration": 242, "id": "XS8OhYdc-20", "title": "Manet, The Balcony", "format": "mp4", "description": "\u00c9douard Manet, The Balcony, 1868-69, oil on canvas, 66-1/2 x 44-1/4 inches (Mus\u00e9e d'Orsay, Paris)\n\nSpeakers: Drs. Beth Harris and Steven Zucker\n\nhttp://www.smarthistory.org/manets-the-balcony.html\n\nThe three principal figures depicted are each a friend of the artist. From left to right they are: the painters Berthe Morisot and Jean Baptiste Antoine Guillemet, and Fanny Claus, a violinist. Some have suggested that the fourth figure, barely visible in the shadows, is the young Leon Leenhoff, the son of Manet's wife.", "slug": "manet-the-balcony-1868-69", "kind": "Video", "video_id": "XS8OhYdc-20", "keywords": "Manet, Balcony, Smarthistory, Art History, Musee d'Orsay", "youtube_id": "XS8OhYdc-20", "readable_id": "manet-the-balcony-1868-69"}, "TlvXGblFsv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TlvXGblFsv8.mp4/TlvXGblFsv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TlvXGblFsv8.mp4/TlvXGblFsv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TlvXGblFsv8.m3u8/TlvXGblFsv8.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-spain/goya-the-family-of-charles-iv-c-1800/", "duration": 210, "id": "TlvXGblFsv8", "title": "Goya, The Family of Charles IV", "format": "mp4", "description": "Francisco Goya, The Family of Charles IV, c. 1800, Prado Museum, 280 cm x 336 cm (Museo Nacional del Prado, Madrid)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "goya-the-family-of-charles-iv-c-1800", "kind": "Video", "video_id": "TlvXGblFsv8", "keywords": "Goya, Royal Family, Charles IV, Prado, Madrid, Art History, Smarthistory", "youtube_id": "TlvXGblFsv8", "readable_id": "goya-the-family-of-charles-iv-c-1800"}, "kOf8fU9iduA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kOf8fU9iduA.mp4/kOf8fU9iduA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kOf8fU9iduA.mp4/kOf8fU9iduA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kOf8fU9iduA.m3u8/kOf8fU9iduA.m3u8"}, "duration": 347, "id": "kOf8fU9iduA", "title": "Deaths in World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/ww1-aftermath/deaths-in-world-war-i/", "slug": "deaths-in-world-war-i", "kind": "Video", "video_id": "kOf8fU9iduA", "keywords": "", "youtube_id": "kOf8fU9iduA", "readable_id": "deaths-in-world-war-i"}, "Z3db5itCIiQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z3db5itCIiQ.mp4/Z3db5itCIiQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z3db5itCIiQ.mp4/Z3db5itCIiQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z3db5itCIiQ.m3u8/Z3db5itCIiQ.m3u8"}, "duration": 298, "id": "Z3db5itCIiQ", "title": "Rationalizing denominators of expressions", "format": "mp4", "description": "Rationalizing Denominators of Expressions", "path": "khan/math/algebra2/rational-expressions/rational_expressions/rationalizing-denominators-of-expressions/", "slug": "rationalizing-denominators-of-expressions", "kind": "Video", "video_id": "Z3db5itCIiQ", "keywords": "u16_l2_t4_we1, Rationalizing, Denominators, of, Expressions", "youtube_id": "Z3db5itCIiQ", "readable_id": "rationalizing-denominators-of-expressions"}, "xvS0CPhJpec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xvS0CPhJpec.mp4/xvS0CPhJpec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xvS0CPhJpec.mp4/xvS0CPhJpec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xvS0CPhJpec.m3u8/xvS0CPhJpec.m3u8"}, "duration": 635, "id": "xvS0CPhJpec", "title": "Nuclear chemistry part 2: Fusion & fission", "format": "mp4", "description": "Continuing our look at Nuclear Chemistry, Hank takes this episode to talk about Fusion and Fission. What they mean, how they work, their positives, negatives, and dangers. Plus, E=mc2, Mass Defect, and Applications of Fission and Fusion in the real world!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem39-nuclear-chemistry-part-2/", "slug": "chem39-nuclear-chemistry-part-2", "kind": "Video", "video_id": "xvS0CPhJpec", "keywords": "", "youtube_id": "xvS0CPhJpec", "readable_id": "chem39-nuclear-chemistry-part-2"}, "GQBRWjHdir0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GQBRWjHdir0.mp4/GQBRWjHdir0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GQBRWjHdir0.mp4/GQBRWjHdir0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GQBRWjHdir0.m3u8/GQBRWjHdir0.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/gilded-age-silicon-valley/", "duration": 431, "id": "GQBRWjHdir0", "title": "Gilded Age versus Silicon Valley", "format": "mp4", "description": "", "slug": "gilded-age-silicon-valley", "kind": "Video", "video_id": "GQBRWjHdir0", "keywords": "", "youtube_id": "GQBRWjHdir0", "readable_id": "gilded-age-silicon-valley"}, "LPYTndFFTko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LPYTndFFTko.mp4/LPYTndFFTko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LPYTndFFTko.mp4/LPYTndFFTko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LPYTndFFTko.m3u8/LPYTndFFTko.m3u8"}, "duration": 278, "id": "LPYTndFFTko", "title": "Conflict theory", "format": "mp4", "description": "Conflict theory observes how the unrest in a society will cause it to change and evolve to relieve the tension. By Sydney Brown. ", "path": "khan/test-prep/mcat/society-and-culture/social-structures/conflict-theory/", "slug": "conflict-theory", "kind": "Video", "video_id": "LPYTndFFTko", "keywords": "conflict theory", "youtube_id": "LPYTndFFTko", "readable_id": "conflict-theory"}, "WZgYhVgWR8g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WZgYhVgWR8g.mp4/WZgYhVgWR8g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WZgYhVgWR8g.mp4/WZgYhVgWR8g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WZgYhVgWR8g.m3u8/WZgYhVgWR8g.m3u8"}, "path": "khan/test-prep/ap-art-history/west-and-central-asia/unesco-siq-project/", "duration": 230, "id": "WZgYhVgWR8g", "title": "Petra: UNESCO Siq Project", "format": "mp4", "description": "The Siq is one of Petra\u2019s most endangered areas, in which natural environmental risks pose a major threat to the cultural heritage and the visitors. Thus, systematic identification and monitoring of its potentially unstable areas is needed. The Jordanian government made a request in 2011 for assistance in this regard, and subsequently a rapid assessment of the Siq was carried out by UNESCO to identify the unstable blocks and map risk zones in the Siq. Read more here.", "slug": "unesco-siq-project", "kind": "Video", "video_id": "WZgYhVgWR8g", "keywords": "", "youtube_id": "WZgYhVgWR8g", "readable_id": "unesco-siq-project"}, "FGq9-R6Yw18": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FGq9-R6Yw18.mp4/FGq9-R6Yw18.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FGq9-R6Yw18.mp4/FGq9-R6Yw18.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FGq9-R6Yw18.m3u8/FGq9-R6Yw18.m3u8"}, "duration": 644, "id": "FGq9-R6Yw18", "title": "Formation of hemiacetals", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/formation-of-hemiacetals/", "slug": "formation-of-hemiacetals", "kind": "Video", "video_id": "FGq9-R6Yw18", "keywords": "", "youtube_id": "FGq9-R6Yw18", "readable_id": "formation-of-hemiacetals"}, "dFFzAP2OZ3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dFFzAP2OZ3E.mp4/dFFzAP2OZ3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dFFzAP2OZ3E.mp4/dFFzAP2OZ3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dFFzAP2OZ3E.m3u8/dFFzAP2OZ3E.m3u8"}, "duration": 536, "id": "dFFzAP2OZ3E", "title": "More on entropy", "format": "mp4", "description": "More clarification as to what entropy is and what entropy is not.", "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/more-on-entropy/", "slug": "more-on-entropy", "kind": "Video", "video_id": "dFFzAP2OZ3E", "keywords": "thermodynamics, carnot, entropy", "youtube_id": "dFFzAP2OZ3E", "readable_id": "more-on-entropy"}, "3NcIK0s3IwU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3NcIK0s3IwU.mp4/3NcIK0s3IwU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3NcIK0s3IwU.mp4/3NcIK0s3IwU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3NcIK0s3IwU.m3u8/3NcIK0s3IwU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/current-and-resistance/circuits-part-4/", "duration": 427, "id": "3NcIK0s3IwU", "title": "Example: Analyzing a more complex resistor circuit", "format": "mp4", "description": "A hairy resistance problem", "slug": "circuits-part-4", "kind": "Video", "video_id": "3NcIK0s3IwU", "keywords": "resistance, circuit", "youtube_id": "3NcIK0s3IwU", "readable_id": "circuits-part-4"}, "L5OkFR8GScU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L5OkFR8GScU.mp4/L5OkFR8GScU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L5OkFR8GScU.mp4/L5OkFR8GScU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L5OkFR8GScU.m3u8/L5OkFR8GScU.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/pair-of-centaurs-fighting-cats-of-prey-from-hadrian-s-villa-c-130-b-c-e-1/", "duration": 289, "id": "L5OkFR8GScU", "title": "Pair of Centaurs Fighting Cats of Prey from Hadrian's Villa, Tivoli", "format": "mp4", "description": "Pair of Centaurs Fighting Cats of Prey from Hadrian's Villa, mosaic, c. 130 C.E. (Altes Museum, Berlin) Speakers: Dr. Beth Harris, Dr. Steven Zucker See this on Smarthistory: http://smarthistory.khanacademy.org/pair-of-centaurs-fighting-cats-of-prey-from-hadrians-villa.html View this mosaic up close in the Google Art Project", "slug": "pair-of-centaurs-fighting-cats-of-prey-from-hadrian-s-villa-c-130-b-c-e-1", "kind": "Video", "video_id": "L5OkFR8GScU", "keywords": "", "youtube_id": "L5OkFR8GScU", "readable_id": "pair-of-centaurs-fighting-cats-of-prey-from-hadrian-s-villa-c-130-b-c-e-1"}, "LrTn4cvsewk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LrTn4cvsewk.mp4/LrTn4cvsewk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LrTn4cvsewk.mp4/LrTn4cvsewk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LrTn4cvsewk.m3u8/LrTn4cvsewk.m3u8"}, "path": "khan/math/geometry/transformations/transformations-symmetry/axis-of-symmetry/", "duration": 167, "id": "LrTn4cvsewk", "title": "Axis of symmetry", "format": "mp4", "description": "Do you know identical twins? Or maybe you are one? If so, then you know something about symmetry. In geometry, the axis of symmetry separates two identical sides.", "slug": "axis-of-symmetry", "kind": "Video", "video_id": "LrTn4cvsewk", "keywords": "", "youtube_id": "LrTn4cvsewk", "readable_id": "axis-of-symmetry"}, "Ddvw2wEBfpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ddvw2wEBfpc.mp4/Ddvw2wEBfpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ddvw2wEBfpc.mp4/Ddvw2wEBfpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ddvw2wEBfpc.m3u8/Ddvw2wEBfpc.m3u8"}, "duration": 163, "id": "Ddvw2wEBfpc", "title": "Integer equations to describe diagram", "format": "mp4", "description": "Integer equations to describe diagram", "path": "integer-equations-to-describe-diagram/", "slug": "integer-equations-to-describe-diagram", "kind": "Video", "video_id": "Ddvw2wEBfpc", "keywords": "", "youtube_id": "Ddvw2wEBfpc", "readable_id": "integer-equations-to-describe-diagram"}, "vAlazPPFlyY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vAlazPPFlyY.mp4/vAlazPPFlyY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vAlazPPFlyY.mp4/vAlazPPFlyY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vAlazPPFlyY.m3u8/vAlazPPFlyY.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/angle_basics/vertical-adjacent-and-linearly-paired-angles/", "duration": 283, "id": "vAlazPPFlyY", "title": "Vertical, adjacent and linearly paired angles", "format": "mp4", "description": "", "slug": "vertical-adjacent-and-linearly-paired-angles", "kind": "Video", "video_id": "vAlazPPFlyY", "keywords": "", "youtube_id": "vAlazPPFlyY", "readable_id": "vertical-adjacent-and-linearly-paired-angles"}, "6DE6PNg58tM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6DE6PNg58tM.mp4/6DE6PNg58tM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6DE6PNg58tM.mp4/6DE6PNg58tM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6DE6PNg58tM.m3u8/6DE6PNg58tM.m3u8"}, "duration": 28, "id": "6DE6PNg58tM", "title": "Fun with Spider Bot", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/spider_bot/fun-with-a-spider-bot/", "slug": "fun-with-a-spider-bot", "kind": "Video", "video_id": "6DE6PNg58tM", "keywords": "", "youtube_id": "6DE6PNg58tM", "readable_id": "fun-with-a-spider-bot"}, "S3z4XqC_YSc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S3z4XqC_YSc.mp4/S3z4XqC_YSc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S3z4XqC_YSc.mp4/S3z4XqC_YSc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S3z4XqC_YSc.m3u8/S3z4XqC_YSc.m3u8"}, "duration": 501, "id": "S3z4XqC_YSc", "title": "Why lattice multiplication works", "format": "mp4", "description": "Understanding why lattice multiplication works", "path": "khan/math/arithmetic/multiplication-division/lattice_multiplication/why-lattice-multiplication-works/", "slug": "why-lattice-multiplication-works", "kind": "Video", "video_id": "S3z4XqC_YSc", "keywords": "lattice, multiplication, CC_3_OA_5, CC_3_OA_7, CC_4_NBT_5", "youtube_id": "S3z4XqC_YSc", "readable_id": "why-lattice-multiplication-works"}, "oIV1zM8qlpk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oIV1zM8qlpk.mp4/oIV1zM8qlpk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oIV1zM8qlpk.mp4/oIV1zM8qlpk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oIV1zM8qlpk.m3u8/oIV1zM8qlpk.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/proof-opposite-angles-of-parallelogram-congruent/", "duration": 248, "id": "oIV1zM8qlpk", "title": "Proof: Opposite angles of parallelogram congruent", "format": "mp4", "description": "Showing that opposite angles of a parallelogram are congruent", "slug": "proof-opposite-angles-of-parallelogram-congruent", "kind": "Video", "video_id": "oIV1zM8qlpk", "keywords": "geometry", "youtube_id": "oIV1zM8qlpk", "readable_id": "proof-opposite-angles-of-parallelogram-congruent"}, "4Xgk3vusxT8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Xgk3vusxT8.mp4/4Xgk3vusxT8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Xgk3vusxT8.mp4/4Xgk3vusxT8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Xgk3vusxT8.m3u8/4Xgk3vusxT8.m3u8"}, "duration": 455, "id": "4Xgk3vusxT8", "title": "When the source and the wave move at the same velocity", "format": "mp4", "description": "When the source and the wave move at the same velocity", "path": "khan/test-prep/mcat/physical-processes/sound/when-the-source-and-the-wave-move-at-the-same-velocity/", "slug": "when-the-source-and-the-wave-move-at-the-same-velocity", "kind": "Video", "video_id": "4Xgk3vusxT8", "keywords": "sonic, boom, doppler, source, wave", "youtube_id": "4Xgk3vusxT8", "readable_id": "when-the-source-and-the-wave-move-at-the-same-velocity"}, "ivbT-wvzK58": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ivbT-wvzK58.mp4/ivbT-wvzK58.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ivbT-wvzK58.mp4/ivbT-wvzK58.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ivbT-wvzK58.m3u8/ivbT-wvzK58.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/string-instruments/viola-interview-and-demonstration-with-principal-rebecca-young/", "duration": 460, "id": "ivbT-wvzK58", "title": "Viola: Interview and demonstration with principal Rebecca Young", "format": "mp4", "description": "", "slug": "viola-interview-and-demonstration-with-principal-rebecca-young", "kind": "Video", "video_id": "ivbT-wvzK58", "keywords": "", "youtube_id": "ivbT-wvzK58", "readable_id": "viola-interview-and-demonstration-with-principal-rebecca-young"}, "abq95BTwOGo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/abq95BTwOGo.mp4/abq95BTwOGo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/abq95BTwOGo.mp4/abq95BTwOGo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/abq95BTwOGo.m3u8/abq95BTwOGo.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/morse-code-the-information-age-language-of-coins-8-12/", "duration": 599, "id": "abq95BTwOGo", "title": "Morse code and the information age", "format": "mp4", "description": "Electric Telegraphs and developments leading to Morse Code.", "slug": "morse-code-the-information-age-language-of-coins-8-12", "kind": "Video", "video_id": "abq95BTwOGo", "keywords": "morse code", "youtube_id": "abq95BTwOGo", "readable_id": "morse-code-the-information-age-language-of-coins-8-12"}, "bhrmEy0wvD0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bhrmEy0wvD0.mp4/bhrmEy0wvD0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bhrmEy0wvD0.mp4/bhrmEy0wvD0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bhrmEy0wvD0.m3u8/bhrmEy0wvD0.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-ex3-part-4-home-stretch/", "duration": 242, "id": "bhrmEy0wvD0", "title": "Surface integral ex3 part 4: Home stretch", "format": "mp4", "description": "Evaluating the third surface integral and coming to the final answer", "slug": "surface-integral-ex3-part-4-home-stretch", "kind": "Video", "video_id": "bhrmEy0wvD0", "keywords": "vector, calculus, multivariable", "youtube_id": "bhrmEy0wvD0", "readable_id": "surface-integral-ex3-part-4-home-stretch"}, "pdleRJd9YNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pdleRJd9YNY.mp4/pdleRJd9YNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pdleRJd9YNY.mp4/pdleRJd9YNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pdleRJd9YNY.m3u8/pdleRJd9YNY.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-word-problems/basic-measurement/", "duration": 248, "id": "pdleRJd9YNY", "title": "Measuring a golden statue", "format": "mp4", "description": "Measure an object with same-size length units that span it with no gaps or overlaps.", "slug": "basic-measurement", "kind": "Video", "video_id": "pdleRJd9YNY", "keywords": "", "youtube_id": "pdleRJd9YNY", "readable_id": "basic-measurement"}, "ZqWB25yUWnc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZqWB25yUWnc.mp4/ZqWB25yUWnc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZqWB25yUWnc.mp4/ZqWB25yUWnc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZqWB25yUWnc.m3u8/ZqWB25yUWnc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/non-movement-symptoms-of-parkinsons-disease/", "duration": 519, "id": "ZqWB25yUWnc", "title": "Non-movement symptoms of Parkinson's disease", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "non-movement-symptoms-of-parkinsons-disease", "kind": "Video", "video_id": "ZqWB25yUWnc", "keywords": "", "youtube_id": "ZqWB25yUWnc", "readable_id": "non-movement-symptoms-of-parkinsons-disease"}, "3quWEMobksw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3quWEMobksw.mp4/3quWEMobksw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3quWEMobksw.mp4/3quWEMobksw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3quWEMobksw.m3u8/3quWEMobksw.m3u8"}, "path": "khan/science/discoveries-projects/lego-robotics/lego-intro/introduction-to-environment/", "duration": 187, "id": "3quWEMobksw", "title": "Introduction to programming", "format": "mp4", "description": "Get to know the NXT-G environment", "slug": "introduction-to-environment", "kind": "Video", "video_id": "3quWEMobksw", "keywords": "", "youtube_id": "3quWEMobksw", "readable_id": "introduction-to-environment"}, "OrRDNKNHtlg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OrRDNKNHtlg.mp4/OrRDNKNHtlg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OrRDNKNHtlg.mp4/OrRDNKNHtlg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OrRDNKNHtlg.m3u8/OrRDNKNHtlg.m3u8"}, "duration": 207, "id": "OrRDNKNHtlg", "title": "Option expiration and price", "format": "mp4", "description": "Option Expiration and Price", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/option-expiration-and-price/", "slug": "option-expiration-and-price", "kind": "Video", "video_id": "OrRDNKNHtlg", "keywords": "Option, Expiration, and, Price", "youtube_id": "OrRDNKNHtlg", "readable_id": "option-expiration-and-price"}, "3-aryZYsoxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3-aryZYsoxU.mp4/3-aryZYsoxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3-aryZYsoxU.mp4/3-aryZYsoxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3-aryZYsoxU.m3u8/3-aryZYsoxU.m3u8"}, "duration": 302, "id": "3-aryZYsoxU", "title": "Negative symbol as opposite", "format": "mp4", "description": "", "path": "negative-symbol-as-opposite/", "slug": "negative-symbol-as-opposite", "kind": "Video", "video_id": "3-aryZYsoxU", "keywords": "", "youtube_id": "3-aryZYsoxU", "readable_id": "negative-symbol-as-opposite"}, "ju4adbg0DB8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ju4adbg0DB8.mp4/ju4adbg0DB8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ju4adbg0DB8.mp4/ju4adbg0DB8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ju4adbg0DB8.m3u8/ju4adbg0DB8.m3u8"}, "duration": 4148, "id": "ju4adbg0DB8", "title": "Meet Me | Art Discussion Programs for Individuals with Dementia", "format": "mp4", "description": "\u200bThe MoMA Alzheimer's Project: Making Art Accessible to People with Dementia. For more information please visit http://www.moma.org/meetme", "path": "meet-me/", "slug": "meet-me", "kind": "Video", "video_id": "ju4adbg0DB8", "keywords": "", "youtube_id": "ju4adbg0DB8", "readable_id": "meet-me"}, "4oeoIOan_h4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4oeoIOan_h4.mp4/4oeoIOan_h4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4oeoIOan_h4.mp4/4oeoIOan_h4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4oeoIOan_h4.m3u8/4oeoIOan_h4.m3u8"}, "duration": 545, "id": "4oeoIOan_h4", "title": "More percent problems", "format": "mp4", "description": "Slightly harder percent problems", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/more-percent-problems/", "slug": "more-percent-problems", "kind": "Video", "video_id": "4oeoIOan_h4", "keywords": "Percent, math, algebra, CC_7_RP_3", "youtube_id": "4oeoIOan_h4", "readable_id": "more-percent-problems"}, "6phoVfGKKec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6phoVfGKKec.mp4/6phoVfGKKec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6phoVfGKKec.mp4/6phoVfGKKec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6phoVfGKKec.m3u8/6phoVfGKKec.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-scientific-notation/scientific-notation-i/", "duration": 252, "id": "6phoVfGKKec", "title": "Scientific notation example 1", "format": "mp4", "description": "Scientific Notation I", "slug": "scientific-notation-i", "kind": "Video", "video_id": "6phoVfGKKec", "keywords": "u11_l1_t4_we1, Scientific, Notation", "youtube_id": "6phoVfGKKec", "readable_id": "scientific-notation-i"}, "Oh_Pt_UrtEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oh_Pt_UrtEE.mp4/Oh_Pt_UrtEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oh_Pt_UrtEE.mp4/Oh_Pt_UrtEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oh_Pt_UrtEE.m3u8/Oh_Pt_UrtEE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/meet-the-gastrointestinal-tract/", "duration": 321, "id": "Oh_Pt_UrtEE", "title": "Meet the gastrointestinal tract!", "format": "mp4", "description": "", "slug": "meet-the-gastrointestinal-tract", "kind": "Video", "video_id": "Oh_Pt_UrtEE", "keywords": "mcat", "youtube_id": "Oh_Pt_UrtEE", "readable_id": "meet-the-gastrointestinal-tract"}, "AqvaQfbAC64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AqvaQfbAC64.mp4/AqvaQfbAC64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AqvaQfbAC64.mp4/AqvaQfbAC64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AqvaQfbAC64.m3u8/AqvaQfbAC64.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/dvorak-symphony-9/joseph-horowitz-on-dvorak-minilecture/", "duration": 291, "id": "AqvaQfbAC64", "title": "Anton\u00edn Dvo\u0159\u00e1k: Symphony No. 9 \"From the New World\" From the New World,\" a commentary by Joseph Horowitz", "format": "mp4", "description": "", "slug": "joseph-horowitz-on-dvorak-minilecture", "kind": "Video", "video_id": "AqvaQfbAC64", "keywords": "", "youtube_id": "AqvaQfbAC64", "readable_id": "joseph-horowitz-on-dvorak-minilecture"}, "b9XDyXiJD7U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b9XDyXiJD7U.mp4/b9XDyXiJD7U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b9XDyXiJD7U.mp4/b9XDyXiJD7U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b9XDyXiJD7U.m3u8/b9XDyXiJD7U.m3u8"}, "duration": 215, "id": "b9XDyXiJD7U", "title": "T.A. McCann - Translating from ideas to execution", "format": "mp4", "description": "T.A. McCann, Founder and CEO of Gist, gives an overview of the company he founded and advocates planning ahead and deciding what you want to achieve. T.A. also describes the construct he uses to scrutinize his ideas.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/ta-mccann/kauffman-ta-mccann2/", "slug": "kauffman-ta-mccann2", "kind": "Video", "video_id": "b9XDyXiJD7U", "keywords": "", "youtube_id": "b9XDyXiJD7U", "readable_id": "kauffman-ta-mccann2"}, "P35LyN9g0oI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P35LyN9g0oI.mp4/P35LyN9g0oI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P35LyN9g0oI.mp4/P35LyN9g0oI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P35LyN9g0oI.m3u8/P35LyN9g0oI.m3u8"}, "duration": 248, "id": "P35LyN9g0oI", "title": "Rotating polygons 180 degrees about their center", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/transformations-symmetry/example-rotating-polygons/", "slug": "example-rotating-polygons", "kind": "Video", "video_id": "P35LyN9g0oI", "keywords": "", "youtube_id": "P35LyN9g0oI", "readable_id": "example-rotating-polygons"}, "dBVoIUASFS0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dBVoIUASFS0.mp4/dBVoIUASFS0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dBVoIUASFS0.mp4/dBVoIUASFS0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dBVoIUASFS0.m3u8/dBVoIUASFS0.m3u8"}, "duration": 250, "id": "dBVoIUASFS0", "title": "Dialogue for 2", "format": "mp4", "description": "A dialogue with the number 2, with special guest Brady Haran of Numberphile and other channels!\nhttp://www.youtube.com/user/numberphile\nhttp://www.youtube.com/user/periodicvideos\nhttp://www.youtube.com/user/sixtysymbols", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/dialogue-for-2/", "slug": "dialogue-for-2", "kind": "Video", "video_id": "dBVoIUASFS0", "keywords": "two, numbers, fractions, addition, vihart", "youtube_id": "dBVoIUASFS0", "readable_id": "dialogue-for-2"}, "acQYX4nwhCk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/acQYX4nwhCk.mp4/acQYX4nwhCk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/acQYX4nwhCk.mp4/acQYX4nwhCk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/acQYX4nwhCk.m3u8/acQYX4nwhCk.m3u8"}, "duration": 142, "id": "acQYX4nwhCk", "title": "Object image height and distance relationship", "format": "mp4", "description": "Object Image Height and Distance Relationship", "path": "khan/test-prep/mcat/physical-processes/thin-lenses/object-image-height-and-distance-relationship/", "slug": "object-image-height-and-distance-relationship", "kind": "Video", "video_id": "acQYX4nwhCk", "keywords": "Object, Image, Height, and, Distance, Relationship", "youtube_id": "acQYX4nwhCk", "readable_id": "object-image-height-and-distance-relationship"}, "5_6m0I1BUp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5_6m0I1BUp4.mp4/5_6m0I1BUp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5_6m0I1BUp4.mp4/5_6m0I1BUp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5_6m0I1BUp4.m3u8/5_6m0I1BUp4.m3u8"}, "duration": 730, "id": "5_6m0I1BUp4", "title": "Big Guns: The Muscular System", "format": "mp4", "description": "Hank tells us the story of the complicated chemical dance that allows our skeletal muscles to contract and relax.", "path": "crash-course-biology-130/", "slug": "crash-course-biology-130", "kind": "Video", "video_id": "5_6m0I1BUp4", "keywords": "", "youtube_id": "5_6m0I1BUp4", "readable_id": "crash-course-biology-130"}, "nxfWL0TR5H4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nxfWL0TR5H4.mp4/nxfWL0TR5H4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nxfWL0TR5H4.mp4/nxfWL0TR5H4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nxfWL0TR5H4.m3u8/nxfWL0TR5H4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-skeletal-system/ligaments-tendons-and-joints/", "duration": 166, "id": "nxfWL0TR5H4", "title": "Ligaments, tendons, and joints", "format": "mp4", "description": "", "slug": "ligaments-tendons-and-joints", "kind": "Video", "video_id": "nxfWL0TR5H4", "keywords": "", "youtube_id": "nxfWL0TR5H4", "readable_id": "ligaments-tendons-and-joints"}, "kdEQGfeC0SE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kdEQGfeC0SE.mp4/kdEQGfeC0SE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kdEQGfeC0SE.mp4/kdEQGfeC0SE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kdEQGfeC0SE.m3u8/kdEQGfeC0SE.m3u8"}, "duration": 674, "id": "kdEQGfeC0SE", "title": "Limits to define continuity", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/continuity-limits/limits-to-define-continuity/", "slug": "limits-to-define-continuity", "kind": "Video", "video_id": "kdEQGfeC0SE", "keywords": "", "youtube_id": "kdEQGfeC0SE", "readable_id": "limits-to-define-continuity"}, "Q7Qj1debVMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q7Qj1debVMM.mp4/Q7Qj1debVMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q7Qj1debVMM.mp4/Q7Qj1debVMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q7Qj1debVMM.m3u8/Q7Qj1debVMM.m3u8"}, "duration": 84, "id": "Q7Qj1debVMM", "title": "Lee Quinones on graffiti", "format": "mp4", "description": "Lee Quinones talks about the unique styles used by graffiti artists. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-lee-quinones/", "slug": "moma-lee-quinones", "kind": "Video", "video_id": "Q7Qj1debVMM", "keywords": "", "youtube_id": "Q7Qj1debVMM", "readable_id": "moma-lee-quinones"}, "Yq9W6B7XnmU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yq9W6B7XnmU.mp4/Yq9W6B7XnmU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yq9W6B7XnmU.mp4/Yq9W6B7XnmU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yq9W6B7XnmU.m3u8/Yq9W6B7XnmU.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-word-problem-2/", "duration": 222, "id": "Yq9W6B7XnmU", "title": "Multiplying fractions word problem: movie marathon", "format": "mp4", "description": "We want to do a movie marathon! Let's figure out how long our marathon will last if each movie length is represented as a mixed number.", "slug": "multiplying-fractions-word-problem-2", "kind": "Video", "video_id": "Yq9W6B7XnmU", "keywords": "", "youtube_id": "Yq9W6B7XnmU", "readable_id": "multiplying-fractions-word-problem-2"}, "wPA2FrET_Ac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wPA2FrET_Ac.mp4/wPA2FrET_Ac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wPA2FrET_Ac.mp4/wPA2FrET_Ac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wPA2FrET_Ac.m3u8/wPA2FrET_Ac.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-37/", "duration": 706, "id": "wPA2FrET_Ac", "title": "GMAT: Data sufficiency 37", "format": "mp4", "description": "142-144, pg. 290", "slug": "gmat-data-sufficiency-37", "kind": "Video", "video_id": "wPA2FrET_Ac", "keywords": "gmat, data, sufficiency, math", "youtube_id": "wPA2FrET_Ac", "readable_id": "gmat-data-sufficiency-37"}, "3euUrtzlnig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3euUrtzlnig.mp4/3euUrtzlnig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3euUrtzlnig.mp4/3euUrtzlnig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3euUrtzlnig.m3u8/3euUrtzlnig.m3u8"}, "duration": 595, "id": "3euUrtzlnig", "title": "Polar & non-polar molecules", "format": "mp4", "description": "*** PLEASE WATCH WITH ANNOTATIONS ON! SOME INACCURACIES IN GRAPHICS ARE NOTED AND CORRECTED IN ANNOTATIONS. THANKS! ***\u00a0\nMolecules come in infinite varieties, so in order to help the complicated chemical world make a little more sense, we classify and categorize them. One of the most important of those classifications is whether a molecule is polar or non-polar, which describes a kind of symmetry - not just of the molecule, but of the charge. In this edition of Crash Course Chemistry, Hank comes out for Team Polar, and describes why these molecules are so interesting to him. You'll learn that molecules need to have both charge asymmetry and geometric asymmetry to be polar, and that charge asymmetry is caused by a difference in electronegativities. You'll also learn how to notate a dipole moment (or charge separation) of a molecule, the physical mechanism behind like dissolves like, and why water is so dang good at fostering life on Earth.\n\nWriters: Hank Green\nChief Editor: Blake de Pastino\nConsultants: Dr. Heiko Langner & Edi Gonzalez\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem23-polar-nonpolar-molecules/", "slug": "chem23-polar-nonpolar-molecules", "kind": "Video", "video_id": "3euUrtzlnig", "keywords": "", "youtube_id": "3euUrtzlnig", "readable_id": "chem23-polar-nonpolar-molecules"}, "QWaUCFccvPk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QWaUCFccvPk.mp4/QWaUCFccvPk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QWaUCFccvPk.mp4/QWaUCFccvPk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QWaUCFccvPk.m3u8/QWaUCFccvPk.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-sept-25-2014/", "duration": 80, "id": "QWaUCFccvPk", "title": "A taste of mount sharp", "format": "mp4", "description": "NASA's Curiosity Mars rover has collected its first drill sample from the base of Mount Sharp. The scientific allure of the layered mountain inside a crater drew the team to choose this part Mars as its landing site.\u00a0", "slug": "curiosity-rover-report-sept-25-2014", "kind": "Video", "video_id": "QWaUCFccvPk", "keywords": "", "youtube_id": "QWaUCFccvPk", "readable_id": "curiosity-rover-report-sept-25-2014"}, "jxf7XqvZWWg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jxf7XqvZWWg.mp4/jxf7XqvZWWg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jxf7XqvZWWg.mp4/jxf7XqvZWWg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jxf7XqvZWWg.m3u8/jxf7XqvZWWg.m3u8"}, "duration": 291, "id": "jxf7XqvZWWg", "title": "Disc method rotating around vertical line", "format": "mp4", "description": "Volume of solid created by rotating around vertical line that is not the y-axis using the disc method.", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/disc-method-rotating-around-vertical-line/", "slug": "disc-method-rotating-around-vertical-line", "kind": "Video", "video_id": "jxf7XqvZWWg", "keywords": "", "youtube_id": "jxf7XqvZWWg", "readable_id": "disc-method-rotating-around-vertical-line"}, "iqf3ft0mh1M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iqf3ft0mh1M.mp4/iqf3ft0mh1M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iqf3ft0mh1M.mp4/iqf3ft0mh1M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iqf3ft0mh1M.m3u8/iqf3ft0mh1M.m3u8"}, "duration": 411, "id": "iqf3ft0mh1M", "title": "Synapse structure", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuronal-synapses/synapse-structure/", "slug": "synapse-structure", "kind": "Video", "video_id": "iqf3ft0mh1M", "keywords": "", "youtube_id": "iqf3ft0mh1M", "readable_id": "synapse-structure"}, "KaY8zqYfQI0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KaY8zqYfQI0.mp4/KaY8zqYfQI0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KaY8zqYfQI0.mp4/KaY8zqYfQI0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KaY8zqYfQI0.m3u8/KaY8zqYfQI0.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/the-pantheon-rome-c-125/", "duration": 487, "id": "KaY8zqYfQI0", "title": "The Pantheon", "format": "mp4", "description": "The Pantheon, Rome, c. 125 Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "the-pantheon-rome-c-125", "kind": "Video", "video_id": "KaY8zqYfQI0", "keywords": "pantheon, Rome, Art History, Khan Academy", "youtube_id": "KaY8zqYfQI0", "readable_id": "the-pantheon-rome-c-125"}, "qSFY7GKhSRs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qSFY7GKhSRs.mp4/qSFY7GKhSRs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qSFY7GKhSRs.mp4/qSFY7GKhSRs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qSFY7GKhSRs.m3u8/qSFY7GKhSRs.m3u8"}, "path": "khan/science/physics/thermodynamics/proof-u-3-2-pv-or-u-3-2-nrt/", "duration": 1016, "id": "qSFY7GKhSRs", "title": "Proof: U = (3/2)PV or U = (3/2)nRT", "format": "mp4", "description": "Conceptual proof that the internal energy of an ideal gas system is 3/2 PV.", "slug": "proof-u-3-2-pv-or-u-3-2-nrt", "kind": "Video", "video_id": "qSFY7GKhSRs", "keywords": "thermodynamics, heat, work, internal, energy", "youtube_id": "qSFY7GKhSRs", "readable_id": "proof-u-3-2-pv-or-u-3-2-nrt"}, "Bv_3hBUTOk4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bv_3hBUTOk4.mp4/Bv_3hBUTOk4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bv_3hBUTOk4.mp4/Bv_3hBUTOk4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bv_3hBUTOk4.m3u8/Bv_3hBUTOk4.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-3-central-park/", "duration": 106, "id": "Bv_3hBUTOk4", "title": "3 Central Park", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-3-central-park", "kind": "Video", "video_id": "Bv_3hBUTOk4", "keywords": "", "youtube_id": "Bv_3hBUTOk4", "readable_id": "sat-3-central-park"}, "emOgJCoUy6Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/emOgJCoUy6Q.mp4/emOgJCoUy6Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/emOgJCoUy6Q.mp4/emOgJCoUy6Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/emOgJCoUy6Q.m3u8/emOgJCoUy6Q.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/sepsis-sirs-mods/", "duration": 464, "id": "emOgJCoUy6Q", "title": "Sepsis: Systemic inflammatory response syndrome (SIRS) to multiple organ dysfunction syndrome (MODS)", "format": "mp4", "description": "", "slug": "sepsis-sirs-mods", "kind": "Video", "video_id": "emOgJCoUy6Q", "keywords": "", "youtube_id": "emOgJCoUy6Q", "readable_id": "sepsis-sirs-mods"}, "Wfpb-fniSSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wfpb-fniSSk.mp4/Wfpb-fniSSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wfpb-fniSSk.mp4/Wfpb-fniSSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wfpb-fniSSk.m3u8/Wfpb-fniSSk.m3u8"}, "duration": 518, "id": "Wfpb-fniSSk", "title": "Hyperbolic functions and the unit hyperbola", "format": "mp4", "description": "Why they are called hyperbolic functions", "path": "khan/math/precalculus/hyperbolic_trig_topic/hyperbolic_trig_intro/hyperbolic-trig-functions-and-the-unit-hyperbola/", "slug": "hyperbolic-trig-functions-and-the-unit-hyperbola", "kind": "Video", "video_id": "Wfpb-fniSSk", "keywords": "", "youtube_id": "Wfpb-fniSSk", "readable_id": "hyperbolic-trig-functions-and-the-unit-hyperbola"}, "mt6Nq0dzFjo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mt6Nq0dzFjo.mp4/mt6Nq0dzFjo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mt6Nq0dzFjo.mp4/mt6Nq0dzFjo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mt6Nq0dzFjo.m3u8/mt6Nq0dzFjo.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/rates_tutorial/usain-bolt-s-average-speed/", "duration": 795, "id": "mt6Nq0dzFjo", "title": "Finding average speed or rate", "format": "mp4", "description": "Using the formula for finding distance we can determine Usian Bolt's average speed, or rate, when he broke the world record in 2009 in the 100m. Watch.", "slug": "usain-bolt-s-average-speed", "kind": "Video", "video_id": "mt6Nq0dzFjo", "keywords": "", "youtube_id": "mt6Nq0dzFjo", "readable_id": "usain-bolt-s-average-speed"}, "k-y6Hu6TUwA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k-y6Hu6TUwA.mp4/k-y6Hu6TUwA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k-y6Hu6TUwA.mp4/k-y6Hu6TUwA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k-y6Hu6TUwA.m3u8/k-y6Hu6TUwA.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-8-4/", "duration": 52, "id": "k-y6Hu6TUwA", "title": "4 y exceeding x", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-4", "kind": "Video", "video_id": "k-y6Hu6TUwA", "keywords": "", "youtube_id": "k-y6Hu6TUwA", "readable_id": "sat-2008-may-8-4"}, "fa__960kzVE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fa__960kzVE.mp4/fa__960kzVE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fa__960kzVE.mp4/fa__960kzVE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fa__960kzVE.m3u8/fa__960kzVE.m3u8"}, "duration": 381, "id": "fa__960kzVE", "title": "Equivalent expressions with negative numbers", "format": "mp4", "description": "Equivalent expressions with negative numbers", "path": "equivalent-expressions-with-negative-numbers/", "slug": "equivalent-expressions-with-negative-numbers", "kind": "Video", "video_id": "fa__960kzVE", "keywords": "", "youtube_id": "fa__960kzVE", "readable_id": "equivalent-expressions-with-negative-numbers"}, "4TBVB4hLQhY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4TBVB4hLQhY.mp4/4TBVB4hLQhY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4TBVB4hLQhY.mp4/4TBVB4hLQhY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4TBVB4hLQhY.m3u8/4TBVB4hLQhY.m3u8"}, "duration": 126, "id": "4TBVB4hLQhY", "title": "Adding mixed numbers", "format": "mp4", "description": "Adding Mixed Numbers", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/adding-mixed-numbers/", "slug": "adding-mixed-numbers", "kind": "Video", "video_id": "4TBVB4hLQhY", "keywords": "U02_L3_T1_we3, Adding, Mixed, Numbers, CC_4_MD_2, CC_4_NF_3_b, CC_4_NF_3_d", "youtube_id": "4TBVB4hLQhY", "readable_id": "adding-mixed-numbers"}, "paQ10POrZh8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/paQ10POrZh8.mp4/paQ10POrZh8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/paQ10POrZh8.mp4/paQ10POrZh8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/paQ10POrZh8.m3u8/paQ10POrZh8.m3u8"}, "duration": 285, "id": "paQ10POrZh8", "title": "Hexaflexagons 2", "format": "mp4", "description": "This video is based on, and in honor of, Martin Gardner's column from 1956, \"Hexaflexagons,\" which can be found here: http://maa.org/pubs/focus/Gardner_Hexaflexagons12_1956.pdf. For more information, see the top comment below.", "path": "khan/math/recreational-math/vi-hart/hexaflexagons/hexaflexagons-2/", "slug": "hexaflexagons-2", "kind": "Video", "video_id": "paQ10POrZh8", "keywords": "", "youtube_id": "paQ10POrZh8", "readable_id": "hexaflexagons-2"}, "JNxXz3cQoNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JNxXz3cQoNo.mp4/JNxXz3cQoNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JNxXz3cQoNo.mp4/JNxXz3cQoNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JNxXz3cQoNo.m3u8/JNxXz3cQoNo.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/who-can-succeed-in-college/", "duration": 82, "id": "JNxXz3cQoNo", "title": "Who can succeed in college?", "format": "mp4", "description": "", "slug": "who-can-succeed-in-college", "kind": "Video", "video_id": "JNxXz3cQoNo", "keywords": "", "youtube_id": "JNxXz3cQoNo", "readable_id": "who-can-succeed-in-college"}, "LDDKjQ-0jss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LDDKjQ-0jss.mp4/LDDKjQ-0jss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LDDKjQ-0jss.mp4/LDDKjQ-0jss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LDDKjQ-0jss.m3u8/LDDKjQ-0jss.m3u8"}, "path": "khan/partner-content/cas-biodiversity/how-is-biodiversity-studied/biodiversity-analyses-and-uncertainties/how-much-biodiversity-do-we-really-know/", "duration": 644, "id": "LDDKjQ-0jss", "title": "How much biodiversity do we really know?", "format": "mp4", "description": "", "slug": "how-much-biodiversity-do-we-really-know", "kind": "Video", "video_id": "LDDKjQ-0jss", "keywords": "", "youtube_id": "LDDKjQ-0jss", "readable_id": "how-much-biodiversity-do-we-really-know"}, "60u_ctp6UIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/60u_ctp6UIw.mp4/60u_ctp6UIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/60u_ctp6UIw.mp4/60u_ctp6UIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/60u_ctp6UIw.m3u8/60u_ctp6UIw.m3u8"}, "path": "khan/humanities/art-americas/british-colonies/colonial-period/john-singleton-copley-a-boy-with-a-flying-squirrel-henry-pelham-1765/", "duration": 259, "id": "60u_ctp6UIw", "title": "Copley, Boy with a Squirrel", "format": "mp4", "description": "John Singleton Copley, A Boy with a Flying Squirrel (Henry Pelham), 1765, 77.15 x 63.82 cm / 30-3/8 x 25-1/8 inches (Museum of Fine Arts, Boston)", "slug": "john-singleton-copley-a-boy-with-a-flying-squirrel-henry-pelham-1765", "kind": "Video", "video_id": "60u_ctp6UIw", "keywords": "copley, squirrel, GAP, John Singleton Copley, Boy with a Flying Squirrel, Henry Pelham, Flying Squirrel, 1765, Museum of Fine Arts, Boston, American Painting, Flying Squirrel America, Colonial Art, Colonial, painting, Royal Academy, London, Georgian, American, Google Art Project, Khan Academy, Smarthistory, OER, Art History", "youtube_id": "60u_ctp6UIw", "readable_id": "john-singleton-copley-a-boy-with-a-flying-squirrel-henry-pelham-1765"}, "mjxCTApdX3Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mjxCTApdX3Q.mp4/mjxCTApdX3Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mjxCTApdX3Q.mp4/mjxCTApdX3Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mjxCTApdX3Q.m3u8/mjxCTApdX3Q.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-near-east-ap/bull-capital-susa/", "duration": 238, "id": "mjxCTApdX3Q", "title": "Capital of a column from the audience hall of the palace of Darius I, Susa", "format": "mp4", "description": "Capital of a column from the audience hall of the palace of Darius I, Susa, c. 510 B.C.E., \u00a0Achaemenid, \u00a0Tell of the Apadana, Susa, Iran (Louvre)\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "bull-capital-susa", "kind": "Video", "video_id": "mjxCTApdX3Q", "keywords": "Bull, Capital, audience hall, palace Darius, Achaemenid, Apadana, Susa, Iran Louvre", "youtube_id": "mjxCTApdX3Q", "readable_id": "bull-capital-susa"}, "2JxIjfqKTLs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2JxIjfqKTLs.mp4/2JxIjfqKTLs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2JxIjfqKTLs.mp4/2JxIjfqKTLs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2JxIjfqKTLs.m3u8/2JxIjfqKTLs.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/deesis-mosaic/", "duration": 309, "id": "2JxIjfqKTLs", "title": "De\u00ebsis mosaic, Hagia Sophia, Istanbul", "format": "mp4", "description": "De\u00ebsis (Christ with the Virgin Mary and John the Baptist), c. 1261, mosaic, imperial enclosure, south gallery, Hagia Sophia, Istanbul\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "deesis-mosaic", "kind": "Video", "video_id": "2JxIjfqKTLs", "keywords": "Deesis, mosaic, Byzantine, Istanbul, Constantinople, Orthodox, Icon, art", "youtube_id": "2JxIjfqKTLs", "readable_id": "deesis-mosaic"}, "x34OTtDE5q8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x34OTtDE5q8.mp4/x34OTtDE5q8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x34OTtDE5q8.mp4/x34OTtDE5q8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x34OTtDE5q8.m3u8/x34OTtDE5q8.m3u8"}, "path": "khan/science/physics/thermodynamics/thermodynamics-part-2/", "duration": 617, "id": "x34OTtDE5q8", "title": "Thermodynamics (part 2)", "format": "mp4", "description": "Example problem that pv=pv. Introduction to temperature.", "slug": "thermodynamics-part-2", "kind": "Video", "video_id": "x34OTtDE5q8", "keywords": "pressure, volume, temperature, physics, boyle, charle's, law, chemistry", "youtube_id": "x34OTtDE5q8", "readable_id": "thermodynamics-part-2"}, "-KrSxA9NCf0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-KrSxA9NCf0.mp4/-KrSxA9NCf0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-KrSxA9NCf0.mp4/-KrSxA9NCf0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-KrSxA9NCf0.m3u8/-KrSxA9NCf0.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-15-more-on-the-solution/", "duration": 609, "id": "-KrSxA9NCf0", "title": "Bailout 15: More on the solution", "format": "mp4", "description": "More on the \"Plutsky Plan\".", "slug": "bailout-15-more-on-the-solution", "kind": "Video", "video_id": "-KrSxA9NCf0", "keywords": "paulson, bailout, fed, inflation, deflation, credit, crunch", "youtube_id": "-KrSxA9NCf0", "readable_id": "bailout-15-more-on-the-solution"}, "-LTXzYXaAuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-LTXzYXaAuk.mp4/-LTXzYXaAuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-LTXzYXaAuk.mp4/-LTXzYXaAuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-LTXzYXaAuk.m3u8/-LTXzYXaAuk.m3u8"}, "duration": 697, "id": "-LTXzYXaAuk", "title": "Cupcake economics 2", "format": "mp4", "description": "More analysis of the cupcake business.", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/cap-util-inflation/cupcake-economics-2/", "slug": "cupcake-economics-2", "kind": "Video", "video_id": "-LTXzYXaAuk", "keywords": "economics, finance, inflation, deflation, income, statement", "youtube_id": "-LTXzYXaAuk", "readable_id": "cupcake-economics-2"}, "MZz4OUOyFvg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MZz4OUOyFvg.mp4/MZz4OUOyFvg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MZz4OUOyFvg.mp4/MZz4OUOyFvg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MZz4OUOyFvg.m3u8/MZz4OUOyFvg.m3u8"}, "duration": 563, "id": "MZz4OUOyFvg", "title": "Neuron action potential mechanism", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/neuron-action-potential-mechanism/", "slug": "neuron-action-potential-mechanism", "kind": "Video", "video_id": "MZz4OUOyFvg", "keywords": "", "youtube_id": "MZz4OUOyFvg", "readable_id": "neuron-action-potential-mechanism"}, "GiSpzFKI5_w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GiSpzFKI5_w.mp4/GiSpzFKI5_w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GiSpzFKI5_w.mp4/GiSpzFKI5_w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GiSpzFKI5_w.m3u8/GiSpzFKI5_w.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-order-of-operations/order-of-operations/", "duration": 267, "id": "GiSpzFKI5_w", "title": "Order of operations example", "format": "mp4", "description": "Work through a challenging order of operations example with only positive numbers.", "slug": "order-of-operations", "kind": "Video", "video_id": "GiSpzFKI5_w", "keywords": "U01_L5_T2_we1, Order, of, Operations, CC_5_OA_1, CC_6_EE_2_c", "youtube_id": "GiSpzFKI5_w", "readable_id": "order-of-operations"}, "8SAMey9Gl5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8SAMey9Gl5I.mp4/8SAMey9Gl5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8SAMey9Gl5I.mp4/8SAMey9Gl5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8SAMey9Gl5I.m3u8/8SAMey9Gl5I.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/frb-commentary-3-big-picture/", "duration": 1287, "id": "8SAMey9Gl5I", "title": "FRB commentary 3: Big picture", "format": "mp4", "description": "Summary of thoughts in last two videos. Discussion of why Fractional Reserve Banking is a subsidy to banks and allows them to arbitrage the yield curve.", "slug": "frb-commentary-3-big-picture", "kind": "Video", "video_id": "8SAMey9Gl5I", "keywords": "fractional, reserve, banking", "youtube_id": "8SAMey9Gl5I", "readable_id": "frb-commentary-3-big-picture"}, "3gUE_P9T-Wk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3gUE_P9T-Wk.mp4/3gUE_P9T-Wk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3gUE_P9T-Wk.mp4/3gUE_P9T-Wk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3gUE_P9T-Wk.m3u8/3gUE_P9T-Wk.m3u8"}, "duration": 335, "id": "3gUE_P9T-Wk", "title": "First living things on land clarification", "format": "mp4", "description": "First living things on land clarification (This video copyrighted under Create Commons Attribution and Share-Alike CC-BY-SA license)", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/history-life-earth-tutorial/first-living-things-on-land-clarification/", "slug": "first-living-things-on-land-clarification", "kind": "Video", "video_id": "3gUE_P9T-Wk", "keywords": "evolution, earth, life, algae", "youtube_id": "3gUE_P9T-Wk", "readable_id": "first-living-things-on-land-clarification"}, "huOnuYAyv6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/huOnuYAyv6w.mp4/huOnuYAyv6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/huOnuYAyv6w.mp4/huOnuYAyv6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/huOnuYAyv6w.m3u8/huOnuYAyv6w.m3u8"}, "duration": 372, "id": "huOnuYAyv6w", "title": "The Great War begins", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-tutorial/the-great-war-begins/", "slug": "the-great-war-begins", "kind": "Video", "video_id": "huOnuYAyv6w", "keywords": "", "youtube_id": "huOnuYAyv6w", "readable_id": "the-great-war-begins"}, "Nwh4MUie74E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nwh4MUie74E.mp4/Nwh4MUie74E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nwh4MUie74E.mp4/Nwh4MUie74E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nwh4MUie74E.m3u8/Nwh4MUie74E.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-15-equation-of-the-line/", "duration": 167, "id": "Nwh4MUie74E", "title": "15 Equation of line", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-15-equation-of-the-line", "kind": "Video", "video_id": "Nwh4MUie74E", "keywords": "", "youtube_id": "Nwh4MUie74E", "readable_id": "sat-15-equation-of-the-line"}, "BdlkhDHbN98": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BdlkhDHbN98.mp4/BdlkhDHbN98.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BdlkhDHbN98.mp4/BdlkhDHbN98.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BdlkhDHbN98.m3u8/BdlkhDHbN98.m3u8"}, "duration": 818, "id": "BdlkhDHbN98", "title": "Reimagine the pressure volume relationship", "format": "mp4", "description": "Understand what is happening at the cellular level to cause two identical left ventricular volumes to have such different pressures! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/reimagine-the-pressure-volume-relationship/", "slug": "reimagine-the-pressure-volume-relationship", "kind": "Video", "video_id": "BdlkhDHbN98", "keywords": "", "youtube_id": "BdlkhDHbN98", "readable_id": "reimagine-the-pressure-volume-relationship"}, "V4z9Y2u30Qs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V4z9Y2u30Qs.mp4/V4z9Y2u30Qs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V4z9Y2u30Qs.mp4/V4z9Y2u30Qs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V4z9Y2u30Qs.m3u8/V4z9Y2u30Qs.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/problem-of-evil-part-1/", "duration": 309, "id": "V4z9Y2u30Qs", "title": "Ethics: Problem of evil part 1", "format": "mp4", "description": "Part 1 of a trilogy. Greg lays out a classic argument that God does not exist, called \u2018The Problem of Evil\u2019. He distinguishes two versions of that argument, which are sometimes called \u2018the deductive\u2019 and \u2018the evidential\u2019 version. He goes into some details on the deductive version.\n\nSpeaker: Dr. Greg Ganssle, Senior Fellow Rivendell Institute, Yale University", "slug": "problem-of-evil-part-1", "kind": "Video", "video_id": "V4z9Y2u30Qs", "keywords": "", "youtube_id": "V4z9Y2u30Qs", "readable_id": "problem-of-evil-part-1"}, "FKraGDm2fUY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FKraGDm2fUY.mp4/FKraGDm2fUY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FKraGDm2fUY.mp4/FKraGDm2fUY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FKraGDm2fUY.m3u8/FKraGDm2fUY.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/proving-the-chain-rule/chain-rule-proof/", "duration": 340, "id": "FKraGDm2fUY", "title": "Chain rule proof", "format": "mp4", "description": "Chain rule proof", "slug": "chain-rule-proof", "kind": "Video", "video_id": "FKraGDm2fUY", "keywords": "", "youtube_id": "FKraGDm2fUY", "readable_id": "chain-rule-proof"}, "ilWo7eWY73M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ilWo7eWY73M.mp4/ilWo7eWY73M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ilWo7eWY73M.mp4/ilWo7eWY73M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ilWo7eWY73M.m3u8/ilWo7eWY73M.m3u8"}, "path": "khan/humanities/art-1010/minimalism-earthworks/moma-serra-torqued-ellipse-iv/", "duration": 191, "id": "ilWo7eWY73M", "title": "Richard Serra, \"Torqued Ellipse IV\"", "format": "mp4", "description": "Richard Serra talks about discovering \"the potential for what steel could be.\" To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "slug": "moma-serra-torqued-ellipse-iv", "kind": "Video", "video_id": "ilWo7eWY73M", "keywords": "", "youtube_id": "ilWo7eWY73M", "readable_id": "moma-serra-torqued-ellipse-iv"}, "wSqkieBUuo8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wSqkieBUuo8.mp4/wSqkieBUuo8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wSqkieBUuo8.mp4/wSqkieBUuo8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wSqkieBUuo8.m3u8/wSqkieBUuo8.m3u8"}, "duration": 251, "id": "wSqkieBUuo8", "title": "Contango", "format": "mp4", "description": null, "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/contango/", "slug": "contango", "kind": "Video", "video_id": "wSqkieBUuo8", "keywords": "Contango", "youtube_id": "wSqkieBUuo8", "readable_id": "contango"}, "Hqzakjo_dYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hqzakjo_dYg.mp4/Hqzakjo_dYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hqzakjo_dYg.mp4/Hqzakjo_dYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hqzakjo_dYg.m3u8/Hqzakjo_dYg.m3u8"}, "duration": 442, "id": "Hqzakjo_dYg", "title": "More exponential decay examples", "format": "mp4", "description": "A few more examples of exponential decay.", "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/more-exponential-decay-examples/", "slug": "more-exponential-decay-examples", "kind": "Video", "video_id": "Hqzakjo_dYg", "keywords": "chemistry, exponential, decay", "youtube_id": "Hqzakjo_dYg", "readable_id": "more-exponential-decay-examples"}, "9fEublFSTOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9fEublFSTOg.mp4/9fEublFSTOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9fEublFSTOg.mp4/9fEublFSTOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9fEublFSTOg.m3u8/9fEublFSTOg.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/frans-hals-malle-babbe-c-1633/", "duration": 218, "id": "9fEublFSTOg", "title": "Hals, Malle Babbe", "format": "mp4", "description": "Frans Hals, Malle Babbe, c. 1633, oil on canvas, 78.50 x 66.20 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin)", "slug": "frans-hals-malle-babbe-c-1633", "kind": "Video", "video_id": "9fEublFSTOg", "keywords": "Smarthistory, Google Art Project, painting, art, Dutch, Khan Academy, art history, OER, stein, owl, drinking, brushwork", "youtube_id": "9fEublFSTOg", "readable_id": "frans-hals-malle-babbe-c-1633"}, "IlFD0LzAZeo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IlFD0LzAZeo.mp4/IlFD0LzAZeo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IlFD0LzAZeo.mp4/IlFD0LzAZeo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IlFD0LzAZeo.m3u8/IlFD0LzAZeo.m3u8"}, "duration": 528, "id": "IlFD0LzAZeo", "title": "Constructing an exponential equation example", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/one-variable-modeling/constructing-an-exponential-equation-example/", "slug": "constructing-an-exponential-equation-example", "kind": "Video", "video_id": "IlFD0LzAZeo", "keywords": "", "youtube_id": "IlFD0LzAZeo", "readable_id": "constructing-an-exponential-equation-example"}, "j55j1NZoAKk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j55j1NZoAKk.mp4/j55j1NZoAKk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j55j1NZoAKk.mp4/j55j1NZoAKk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j55j1NZoAKk.m3u8/j55j1NZoAKk.m3u8"}, "duration": 196, "id": "j55j1NZoAKk", "title": "Portrait head of Queen Tiye with a crown of two feathers", "format": "mp4", "description": "A conversation between Dr. Beth Harris and Dr. Steven Zucker in front of Portrait Head of Queen Tiye with a Crown of Two Feathers, c. 1355 B.C.E., Amarna Period, Dynasty 18, New Kingdom, Egypt, yew wood, lapis lazuli, silver, gold, faience, 22.5 cm high (Egyptian Museum and Papyrus Collection at the Neues Museum, Berlin)", "path": "khan/humanities/ancient-art-civilizations/egypt-art/new-kingdom/portrait-head-of-queen-tiye-with-a-crown-of-two-feathers/", "slug": "portrait-head-of-queen-tiye-with-a-crown-of-two-feathers", "kind": "Video", "video_id": "j55j1NZoAKk", "keywords": "Tiye, Amarna Period, Dynasty 18, New Kingdom, Egypt", "youtube_id": "j55j1NZoAKk", "readable_id": "portrait-head-of-queen-tiye-with-a-crown-of-two-feathers"}, "kzhuZmzoX5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kzhuZmzoX5o.mp4/kzhuZmzoX5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kzhuZmzoX5o.mp4/kzhuZmzoX5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kzhuZmzoX5o.m3u8/kzhuZmzoX5o.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/renaissance-art-introduction/", "duration": 627, "id": "kzhuZmzoX5o", "title": "Renaissance art", "format": "mp4", "description": "This is the Renaissance Art overview video for TICE ART 1010, a video from the Utah System of Higher Education", "slug": "renaissance-art-introduction", "kind": "Video", "video_id": "kzhuZmzoX5o", "keywords": "art history", "youtube_id": "kzhuZmzoX5o", "readable_id": "renaissance-art-introduction"}, "xUJn84k_Br8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xUJn84k_Br8.mp4/xUJn84k_Br8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xUJn84k_Br8.mp4/xUJn84k_Br8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xUJn84k_Br8.m3u8/xUJn84k_Br8.m3u8"}, "duration": 614, "id": "xUJn84k_Br8", "title": "Liquids", "format": "mp4", "description": "In this episode of Crash Course Chemistry, Hank gives you the low down on things like London Dispersion Forces, Hydrogen Bonds, Cohesion, Adhesion, Viscosity, Capillary Action, Surface Tension, and why liquids are just... WEIRD!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem26-liquids/", "slug": "chem26-liquids", "kind": "Video", "video_id": "xUJn84k_Br8", "keywords": "", "youtube_id": "xUJn84k_Br8", "readable_id": "chem26-liquids"}, "AZroE4fJqtQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AZroE4fJqtQ.mp4/AZroE4fJqtQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AZroE4fJqtQ.mp4/AZroE4fJqtQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AZroE4fJqtQ.m3u8/AZroE4fJqtQ.m3u8"}, "duration": 241, "id": "AZroE4fJqtQ", "title": "Recognizing linear functions", "format": "mp4", "description": "Recognizing Linear Functions", "path": "recognizing-linear-functions/", "slug": "recognizing-linear-functions", "kind": "Video", "video_id": "AZroE4fJqtQ", "keywords": "U03_L2_T5_we1, Recognizing, Linear, Functions, CC_8_F_3, CC_8_F_5", "youtube_id": "AZroE4fJqtQ", "readable_id": "recognizing-linear-functions"}, "5HVCFrXQ9pw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5HVCFrXQ9pw.mp4/5HVCFrXQ9pw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5HVCFrXQ9pw.mp4/5HVCFrXQ9pw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5HVCFrXQ9pw.m3u8/5HVCFrXQ9pw.m3u8"}, "duration": 860, "id": "5HVCFrXQ9pw", "title": "Currency effect on trade", "format": "mp4", "description": "Currency Effect on Trade", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/currency-effect-on-trade/", "slug": "currency-effect-on-trade", "kind": "Video", "video_id": "5HVCFrXQ9pw", "keywords": "Currency, Effect, on, Trade, Yuan, Renminbi", "youtube_id": "5HVCFrXQ9pw", "readable_id": "currency-effect-on-trade"}, "yE3eQ6q39f4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yE3eQ6q39f4.mp4/yE3eQ6q39f4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yE3eQ6q39f4.mp4/yE3eQ6q39f4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yE3eQ6q39f4.m3u8/yE3eQ6q39f4.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/current-and-resistance/voltmeters-and-ammeters/", "duration": 498, "id": "yE3eQ6q39f4", "title": "Voltmeters and Ammeters", "format": "mp4", "description": "", "slug": "voltmeters-and-ammeters", "kind": "Video", "video_id": "yE3eQ6q39f4", "keywords": "", "youtube_id": "yE3eQ6q39f4", "readable_id": "voltmeters-and-ammeters"}, "dzjkh9K5Y8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dzjkh9K5Y8o.mp4/dzjkh9K5Y8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dzjkh9K5Y8o.mp4/dzjkh9K5Y8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dzjkh9K5Y8o.m3u8/dzjkh9K5Y8o.m3u8"}, "duration": 739, "id": "dzjkh9K5Y8o", "title": "Birch reduction II", "format": "mp4", "description": "The effect of electron-withdrawing and electron-donating groups", "path": "khan/science/organic-chemistry/aromatic-compounds/other-reactions-and-synthesis/birch-reduction-ii/", "slug": "birch-reduction-ii", "kind": "Video", "video_id": "dzjkh9K5Y8o", "keywords": "", "youtube_id": "dzjkh9K5Y8o", "readable_id": "birch-reduction-ii"}, "3XiHrsZNZko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3XiHrsZNZko.mp4/3XiHrsZNZko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3XiHrsZNZko.mp4/3XiHrsZNZko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3XiHrsZNZko.m3u8/3XiHrsZNZko.m3u8"}, "path": "khan/science/organic-chemistry/ochem-alpha-carbon-chemistry/aldol-condensation-jay/aldol-reaction/", "duration": 701, "id": "3XiHrsZNZko", "title": "Aldol reaction", "format": "mp4", "description": "Aldol Reaction", "slug": "aldol-reaction", "kind": "Video", "video_id": "3XiHrsZNZko", "keywords": "Aldol, Reaction, Enolate, Tautomer, keto, enol, aldehyde", "youtube_id": "3XiHrsZNZko", "readable_id": "aldol-reaction"}, "u1HhUB3NP8g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u1HhUB3NP8g.mp4/u1HhUB3NP8g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u1HhUB3NP8g.mp4/u1HhUB3NP8g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u1HhUB3NP8g.m3u8/u1HhUB3NP8g.m3u8"}, "path": "khan/math/probability/regression/regression-correlation/proof-part-3-minimizing-squared-error-to-regression-line/", "duration": 654, "id": "u1HhUB3NP8g", "title": "Proof (part 3) minimizing squared error to regression line", "format": "mp4", "description": "Proof (Part 3) Minimizing Squared Error to Regression Line", "slug": "proof-part-3-minimizing-squared-error-to-regression-line", "kind": "Video", "video_id": "u1HhUB3NP8g", "keywords": "Proof, (Part, 3), Minimizing, Squared, Error, to, Regression, Line, CC_8_SP_2, CC_8_SP_3", "youtube_id": "u1HhUB3NP8g", "readable_id": "proof-part-3-minimizing-squared-error-to-regression-line"}, "DISpHFWYtRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DISpHFWYtRM.mp4/DISpHFWYtRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DISpHFWYtRM.mp4/DISpHFWYtRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DISpHFWYtRM.m3u8/DISpHFWYtRM.m3u8"}, "duration": 593, "id": "DISpHFWYtRM", "title": "Community ecology II: Predators", "format": "mp4", "description": "", "path": "crash-course-ecology-05/", "slug": "crash-course-ecology-05", "kind": "Video", "video_id": "DISpHFWYtRM", "keywords": "", "youtube_id": "DISpHFWYtRM", "readable_id": "crash-course-ecology-05"}, "tzqMoOk9NWc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tzqMoOk9NWc.mp4/tzqMoOk9NWc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tzqMoOk9NWc.mp4/tzqMoOk9NWc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tzqMoOk9NWc.m3u8/tzqMoOk9NWc.m3u8"}, "duration": 675, "id": "tzqMoOk9NWc", "title": "SOPA and PIPA", "format": "mp4", "description": "What SOPA and PIPA are at face value and what they could end up enabling", "path": "khan/humanities/history/american-civics/american-civics/sopa-and-pipa/", "slug": "sopa-and-pipa", "kind": "Video", "video_id": "tzqMoOk9NWc", "keywords": "privacy, liberty, piracy, sopa, pipa, marquee", "youtube_id": "tzqMoOk9NWc", "readable_id": "sopa-and-pipa"}, "l9ft9jpriNA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l9ft9jpriNA.mp4/l9ft9jpriNA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l9ft9jpriNA.mp4/l9ft9jpriNA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l9ft9jpriNA.m3u8/l9ft9jpriNA.m3u8"}, "duration": 143, "id": "l9ft9jpriNA", "title": "Example: Different ways to pick officers", "format": "mp4", "description": "Thinking about the different ways we can pick officers in order to find the probability of one situation in particular.", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/probability-of-dependent-events/", "slug": "probability-of-dependent-events", "kind": "Video", "video_id": "l9ft9jpriNA", "keywords": "U12_L2_T4_we2, Probability, of, Dependent, Events, CC_7_SP_7", "youtube_id": "l9ft9jpriNA", "readable_id": "probability-of-dependent-events"}, "I7FDx4DPapw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I7FDx4DPapw.mp4/I7FDx4DPapw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I7FDx4DPapw.mp4/I7FDx4DPapw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I7FDx4DPapw.m3u8/I7FDx4DPapw.m3u8"}, "duration": 813, "id": "I7FDx4DPapw", "title": "Relationship between bond prices and interest rates", "format": "mp4", "description": "Why bond prices move inversely to changes in interest rate", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial/relationship-between-bond-prices-and-interest-rates/", "slug": "relationship-between-bond-prices-and-interest-rates", "kind": "Video", "video_id": "I7FDx4DPapw", "keywords": "bond, price, interest, rate", "youtube_id": "I7FDx4DPapw", "readable_id": "relationship-between-bond-prices-and-interest-rates"}, "Ot0FxL8Vl7I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ot0FxL8Vl7I.mp4/Ot0FxL8Vl7I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ot0FxL8Vl7I.mp4/Ot0FxL8Vl7I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ot0FxL8Vl7I.m3u8/Ot0FxL8Vl7I.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/lhopitals-rule-to-solve-for-variable/", "duration": 250, "id": "Ot0FxL8Vl7I", "title": "L'Hopital's Rule to solve for variable", "format": "mp4", "description": "", "slug": "lhopitals-rule-to-solve-for-variable", "kind": "Video", "video_id": "Ot0FxL8Vl7I", "keywords": "", "youtube_id": "Ot0FxL8Vl7I", "readable_id": "lhopitals-rule-to-solve-for-variable"}, "v8plb6V8BQo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v8plb6V8BQo.mp4/v8plb6V8BQo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v8plb6V8BQo.mp4/v8plb6V8BQo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v8plb6V8BQo.m3u8/v8plb6V8BQo.m3u8"}, "duration": 885, "id": "v8plb6V8BQo", "title": "Distance between planes", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 51 Distance Between Planes", "path": "khan/test-prep/iit-jee-subject/iit-jee/distance-between-planes/", "slug": "distance-between-planes", "kind": "Video", "video_id": "v8plb6V8BQo", "keywords": "2010, IIT, JEE, Paper, Problem, 51, Distance, Between, Planes", "youtube_id": "v8plb6V8BQo", "readable_id": "distance-between-planes"}, "jFv6k2OV7IU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jFv6k2OV7IU.mp4/jFv6k2OV7IU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jFv6k2OV7IU.mp4/jFv6k2OV7IU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jFv6k2OV7IU.m3u8/jFv6k2OV7IU.m3u8"}, "duration": 815, "id": "jFv6k2OV7IU", "title": "Stoichiometry example problem 1", "format": "mp4", "description": "Figuring grams of reactants and product produced from reaction of phosphorous and chlorine.", "path": "khan/test-prep/mcat/physical-processes/stoichiometry/stoichiometry-example-problem-1/", "slug": "stoichiometry-example-problem-1", "kind": "Video", "video_id": "jFv6k2OV7IU", "keywords": "stoichiometry, reactant, product", "youtube_id": "jFv6k2OV7IU", "readable_id": "stoichiometry-example-problem-1"}, "HBi8xjMchZc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HBi8xjMchZc.mp4/HBi8xjMchZc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HBi8xjMchZc.mp4/HBi8xjMchZc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HBi8xjMchZc.m3u8/HBi8xjMchZc.m3u8"}, "duration": 184, "id": "HBi8xjMchZc", "title": "Mini-video on ion size", "format": "mp4", "description": "Correcting a mistake and learning a bit about ion size", "path": "khan/science/chemistry/periodic-table/periodic-table-trends-bonding/mini-video-on-ion-size/", "slug": "mini-video-on-ion-size", "kind": "Video", "video_id": "HBi8xjMchZc", "keywords": "chemistry, ion, diameter", "youtube_id": "HBi8xjMchZc", "readable_id": "mini-video-on-ion-size"}, "if5JGssffm8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/if5JGssffm8.mp4/if5JGssffm8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/if5JGssffm8.mp4/if5JGssffm8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/if5JGssffm8.m3u8/if5JGssffm8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/catalysts/", "duration": 450, "id": "if5JGssffm8", "title": "Catalysts", "format": "mp4", "description": "", "slug": "catalysts", "kind": "Video", "video_id": "if5JGssffm8", "keywords": "", "youtube_id": "if5JGssffm8", "readable_id": "catalysts"}, "CcM2R6vIvfw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CcM2R6vIvfw.mp4/CcM2R6vIvfw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CcM2R6vIvfw.mp4/CcM2R6vIvfw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CcM2R6vIvfw.m3u8/CcM2R6vIvfw.m3u8"}, "path": "khan/partner-content/nasa/nasa-welcome/nasa-mission-control/nasa-khan/", "duration": 83, "id": "CcM2R6vIvfw", "title": "Khan Academy & NASA introduction", "format": "mp4", "description": "A brief overview of the topics you can explore!", "slug": "nasa-khan", "kind": "Video", "video_id": "CcM2R6vIvfw", "keywords": "", "youtube_id": "CcM2R6vIvfw", "readable_id": "nasa-khan"}, "JRM7Cy7h-VE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JRM7Cy7h-VE.mp4/JRM7Cy7h-VE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JRM7Cy7h-VE.mp4/JRM7Cy7h-VE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JRM7Cy7h-VE.m3u8/JRM7Cy7h-VE.m3u8"}, "duration": 333, "id": "JRM7Cy7h-VE", "title": "Tone: Telling stories with light and dark", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\n\u201cTone\u201d refers to how light or dark something is, and it can both describe a form and bring in elements of drama and subtlety into an image, fleshing out the contours that line has laid out already. Join Mark Chaplin as he explains how to tell a story through tone in same way that Turner would, avoiding the use of varying colours and sticking to only the dark and light tones of one colour in order to sketch a scene with subtlety and atmosphere.", "path": "watercolour-tone/", "slug": "watercolour-tone", "kind": "Video", "video_id": "JRM7Cy7h-VE", "keywords": "Tate", "youtube_id": "JRM7Cy7h-VE", "readable_id": "watercolour-tone"}, "A_2f3onF3S8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A_2f3onF3S8.mp4/A_2f3onF3S8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A_2f3onF3S8.mp4/A_2f3onF3S8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A_2f3onF3S8.m3u8/A_2f3onF3S8.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/subcortical-cerebrum/", "duration": 522, "id": "A_2f3onF3S8", "title": "Subcortical cerebrum", "format": "mp4", "description": "", "slug": "subcortical-cerebrum", "kind": "Video", "video_id": "A_2f3onF3S8", "keywords": "MCAT", "youtube_id": "A_2f3onF3S8", "readable_id": "subcortical-cerebrum"}, "2B68DWcOLj0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2B68DWcOLj0.mp4/2B68DWcOLj0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2B68DWcOLj0.mp4/2B68DWcOLj0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2B68DWcOLj0.m3u8/2B68DWcOLj0.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/neo-classicism/girodet-the-sleep-of-endymion-1791/", "duration": 169, "id": "2B68DWcOLj0", "title": "Girodet, The Sleep of Endymion", "format": "mp4", "description": "Anne-Louis Girodet de Roussy-Trioson, The Sleep of Endymion, 1791, oil on canvas, 1.98 x 2.61m (6 feet 5-\u00be inches x 8 feet 6-\u00be inches), exhibited in the salons of 1793 and 1814 (Mus\u00e9e du Louvre, Paris) Speakers: Drs. Beth Harris and Steven Zucker", "slug": "girodet-the-sleep-of-endymion-1791", "kind": "Video", "video_id": "2B68DWcOLj0", "keywords": "Girodet, art history, neo-classicism, romanticism, louvre, smarthistory, enydmion", "youtube_id": "2B68DWcOLj0", "readable_id": "girodet-the-sleep-of-endymion-1791"}, "9iulv2QvKwo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9iulv2QvKwo.mp4/9iulv2QvKwo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9iulv2QvKwo.mp4/9iulv2QvKwo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9iulv2QvKwo.m3u8/9iulv2QvKwo.m3u8"}, "duration": 157, "id": "9iulv2QvKwo", "title": "Converting metric units of distance: kilometers, meters, centimeters", "format": "mp4", "description": "Even if you live the U.S. don't assume that you won't use metric distance units. There are lots of situations where your knowledge of kilometers, for example, will come in handy.", "path": "converting-metric-distance/", "slug": "converting-metric-distance", "kind": "Video", "video_id": "9iulv2QvKwo", "keywords": "", "youtube_id": "9iulv2QvKwo", "readable_id": "converting-metric-distance"}, "HvHnYXpeRsA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HvHnYXpeRsA.mp4/HvHnYXpeRsA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HvHnYXpeRsA.mp4/HvHnYXpeRsA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HvHnYXpeRsA.m3u8/HvHnYXpeRsA.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/martian-methane/", "duration": 145, "id": "HvHnYXpeRsA", "title": "Martian methane", "format": "mp4", "description": "", "slug": "martian-methane", "kind": "Video", "video_id": "HvHnYXpeRsA", "keywords": "", "youtube_id": "HvHnYXpeRsA", "readable_id": "martian-methane"}, "1piZ8oYWh3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1piZ8oYWh3E.mp4/1piZ8oYWh3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1piZ8oYWh3E.mp4/1piZ8oYWh3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1piZ8oYWh3E.m3u8/1piZ8oYWh3E.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/system-of-inequalities/ca-algebra-i-systems-of-inequalities/", "duration": 776, "id": "1piZ8oYWh3E", "title": "CA Algebra I: Systems of inequalities", "format": "mp4", "description": "33-37, systems of equations and inequalities", "slug": "ca-algebra-i-systems-of-inequalities", "kind": "Video", "video_id": "1piZ8oYWh3E", "keywords": "algebra, systems, of, equations", "youtube_id": "1piZ8oYWh3E", "readable_id": "ca-algebra-i-systems-of-inequalities"}, "cnCQGKx6LhE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cnCQGKx6LhE.mp4/cnCQGKx6LhE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cnCQGKx6LhE.mp4/cnCQGKx6LhE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cnCQGKx6LhE.m3u8/cnCQGKx6LhE.m3u8"}, "duration": 383, "id": "cnCQGKx6LhE", "title": "Golden ratio to find radius of moon", "format": "mp4", "description": "", "path": "khan/math/geometry/similarity/cc-solving-prob-similar-tri/golden-ratio-to-find-radius-of-moon/", "slug": "golden-ratio-to-find-radius-of-moon", "kind": "Video", "video_id": "cnCQGKx6LhE", "keywords": "", "youtube_id": "cnCQGKx6LhE", "readable_id": "golden-ratio-to-find-radius-of-moon"}, "5I9dH5im24U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5I9dH5im24U.mp4/5I9dH5im24U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5I9dH5im24U.mp4/5I9dH5im24U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5I9dH5im24U.m3u8/5I9dH5im24U.m3u8"}, "duration": 821, "id": "5I9dH5im24U", "title": "Energy inputs for tilling a hectare of land", "format": "mp4", "description": "Thinking about energy consumption for tilling land", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/energy-inputs-for-tilling-a-hectare-of-land/", "slug": "energy-inputs-for-tilling-a-hectare-of-land", "kind": "Video", "video_id": "5I9dH5im24U", "keywords": "plough, till, agriculture, ha, hectare", "youtube_id": "5I9dH5im24U", "readable_id": "energy-inputs-for-tilling-a-hectare-of-land"}, "x-6yMjpsqJU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x-6yMjpsqJU.mp4/x-6yMjpsqJU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x-6yMjpsqJU.mp4/x-6yMjpsqJU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x-6yMjpsqJU.m3u8/x-6yMjpsqJU.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/electromagnet/electromagnetic-field-forward-vs-reverse/", "duration": 35, "id": "x-6yMjpsqJU", "title": "Electromagnetic field (forward vs. reverse)", "format": "mp4", "description": "Apply current in both directions and notice the response is different.", "slug": "electromagnetic-field-forward-vs-reverse", "kind": "Video", "video_id": "x-6yMjpsqJU", "keywords": "right hand rule test", "youtube_id": "x-6yMjpsqJU", "readable_id": "electromagnetic-field-forward-vs-reverse"}, "wUb7tWgv49U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wUb7tWgv49U.mp4/wUb7tWgv49U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wUb7tWgv49U.mp4/wUb7tWgv49U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wUb7tWgv49U.m3u8/wUb7tWgv49U.m3u8"}, "duration": 265, "id": "wUb7tWgv49U", "title": "Estimating a solution to nonlinear system with calculator part 2", "format": "mp4", "description": "", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/estimating-a-solution-to-nonlinear-system-with-calculator-part-2/", "slug": "estimating-a-solution-to-nonlinear-system-with-calculator-part-2", "kind": "Video", "video_id": "wUb7tWgv49U", "keywords": "", "youtube_id": "wUb7tWgv49U", "readable_id": "estimating-a-solution-to-nonlinear-system-with-calculator-part-2"}, "4aNoZjAhSr8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4aNoZjAhSr8.mp4/4aNoZjAhSr8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4aNoZjAhSr8.mp4/4aNoZjAhSr8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4aNoZjAhSr8.m3u8/4aNoZjAhSr8.m3u8"}, "duration": 256, "id": "4aNoZjAhSr8", "title": "China keeps peg but diversifies holdings", "format": "mp4", "description": "China keeps peg but diversifies holdings", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/china-keeps-peg-but-diversifies-holdings/", "slug": "china-keeps-peg-but-diversifies-holdings", "kind": "Video", "video_id": "4aNoZjAhSr8", "keywords": "China, keeps, peg, but, diversifies, holdings", "youtube_id": "4aNoZjAhSr8", "readable_id": "china-keeps-peg-but-diversifies-holdings"}, "JVm-ePTIKR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVm-ePTIKR4.mp4/JVm-ePTIKR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVm-ePTIKR4.mp4/JVm-ePTIKR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVm-ePTIKR4.m3u8/JVm-ePTIKR4.m3u8"}, "path": "khan/humanities/art-1010/architecture-20c/frank-lloyd-wright-solomon-r-guggenheim-museum-new-york-city-1942-1959/", "duration": 433, "id": "JVm-ePTIKR4", "title": "Frank Lloyd Wright, Solomon R. Guggenheim Museum", "format": "mp4", "description": "Frank Lloyd Wright, Solomon R. Guggenheim Museum, New York City, 1942-1959. Speakers: Dr. Matthew Postal and Dr. Steven Zucker", "slug": "frank-lloyd-wright-solomon-r-guggenheim-museum-new-york-city-1942-1959", "kind": "Video", "video_id": "JVm-ePTIKR4", "keywords": "Frank Lloyd Wright, FLW, Wright, architecture, Solomon R. Guggenheim Museum, Guggenheim, New York, 1942, 1959", "youtube_id": "JVm-ePTIKR4", "readable_id": "frank-lloyd-wright-solomon-r-guggenheim-museum-new-york-city-1942-1959"}, "lhLVC1QB_kQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lhLVC1QB_kQ.mp4/lhLVC1QB_kQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lhLVC1QB_kQ.mp4/lhLVC1QB_kQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lhLVC1QB_kQ.m3u8/lhLVC1QB_kQ.m3u8"}, "duration": 343, "id": "lhLVC1QB_kQ", "title": "Marbles for friends", "format": "mp4", "description": "Solve a two-step estimation word problem.", "path": "marbles-for-friends/", "slug": "marbles-for-friends", "kind": "Video", "video_id": "lhLVC1QB_kQ", "keywords": "", "youtube_id": "lhLVC1QB_kQ", "readable_id": "marbles-for-friends"}, "xYoQQCO15GE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xYoQQCO15GE.mp4/xYoQQCO15GE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xYoQQCO15GE.mp4/xYoQQCO15GE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xYoQQCO15GE.m3u8/xYoQQCO15GE.m3u8"}, "path": "khan/science/health-and-medicine/current-issues-in-health-and-medicine/ebola-outbreak/understanding-the-ebola-virus-outbreak/", "duration": 675, "id": "xYoQQCO15GE", "title": "Understanding the Ebola virus outbreak", "format": "mp4", "description": "Dr. Rishi Desai is a pediatric infectious disease physician and former epidemiologist with the Centers for Disease Control and Prevention (CDC)", "slug": "understanding-the-ebola-virus-outbreak", "kind": "Video", "video_id": "xYoQQCO15GE", "keywords": "", "youtube_id": "xYoQQCO15GE", "readable_id": "understanding-the-ebola-virus-outbreak"}, "kYWBbu-FXV0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kYWBbu-FXV0.mp4/kYWBbu-FXV0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kYWBbu-FXV0.mp4/kYWBbu-FXV0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kYWBbu-FXV0.m3u8/kYWBbu-FXV0.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-25/", "duration": 640, "id": "kYWBbu-FXV0", "title": "GMAT: Data sufficiency 25", "format": "mp4", "description": "107-109, pg. 287", "slug": "gmat-data-sufficiency-25", "kind": "Video", "video_id": "kYWBbu-FXV0", "keywords": "gmat, data, sufficiency", "youtube_id": "kYWBbu-FXV0", "readable_id": "gmat-data-sufficiency-25"}, "RgvmKfvCwps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RgvmKfvCwps.mp4/RgvmKfvCwps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RgvmKfvCwps.mp4/RgvmKfvCwps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RgvmKfvCwps.m3u8/RgvmKfvCwps.m3u8"}, "duration": 307, "id": "RgvmKfvCwps", "title": "Theories of language and cognition", "format": "mp4", "description": "Learn about theories of the relationship between language and cognition. By Carole Yue. ", "path": "khan/test-prep/mcat/processing-the-environment/language/language-and-cognition/", "slug": "language-and-cognition", "kind": "Video", "video_id": "RgvmKfvCwps", "keywords": "language, cognition", "youtube_id": "RgvmKfvCwps", "readable_id": "language-and-cognition"}, "ks33lMoxst0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ks33lMoxst0.mp4/ks33lMoxst0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ks33lMoxst0.mp4/ks33lMoxst0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ks33lMoxst0.m3u8/ks33lMoxst0.m3u8"}, "duration": 619, "id": "ks33lMoxst0", "title": "Introduction to present value", "format": "mp4", "description": "A choice between money now and money later.", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/present-value/introduction-to-present-value/", "slug": "introduction-to-present-value", "kind": "Video", "video_id": "ks33lMoxst0", "keywords": "present, value, finance", "youtube_id": "ks33lMoxst0", "readable_id": "introduction-to-present-value"}, "e7C2LRIoVTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e7C2LRIoVTo.mp4/e7C2LRIoVTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e7C2LRIoVTo.mp4/e7C2LRIoVTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e7C2LRIoVTo.m3u8/e7C2LRIoVTo.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-blended-software/sscc-blended-softwarecriteria/", "duration": 678, "id": "e7C2LRIoVTo", "title": "Criteria to pick software", "format": "mp4", "description": "", "slug": "sscc-blended-softwarecriteria", "kind": "Video", "video_id": "e7C2LRIoVTo", "keywords": "", "youtube_id": "e7C2LRIoVTo", "readable_id": "sscc-blended-softwarecriteria"}, "TV5kDqiJ1Os": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TV5kDqiJ1Os.mp4/TV5kDqiJ1Os.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TV5kDqiJ1Os.mp4/TV5kDqiJ1Os.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TV5kDqiJ1Os.m3u8/TV5kDqiJ1Os.m3u8"}, "duration": 344, "id": "TV5kDqiJ1Os", "title": "Example 3: Completing the square", "format": "mp4", "description": "Completing the Square to Solve Quadratic Equations", "path": "khan/math/algebra/quadratics/completing_the_square/completing-the-square-to-solve-quadratic-equations/", "slug": "completing-the-square-to-solve-quadratic-equations", "kind": "Video", "video_id": "TV5kDqiJ1Os", "keywords": "u16_l5_t1_we3, Completing, the, Square, to, Solve, Quadratic, Equations", "youtube_id": "TV5kDqiJ1Os", "readable_id": "completing-the-square-to-solve-quadratic-equations"}, "dgHksfBFbjk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dgHksfBFbjk.mp4/dgHksfBFbjk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dgHksfBFbjk.mp4/dgHksfBFbjk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dgHksfBFbjk.m3u8/dgHksfBFbjk.m3u8"}, "path": "khan/math/geometry/right_triangles_topic/special_right_triangles/30-60-90-triangle-example-problem/", "duration": 400, "id": "dgHksfBFbjk", "title": "30-60-90 triangle example problem", "format": "mp4", "description": "Using what we know about 30-60-90 triangles to solve what at first seems to be a challenging problem", "slug": "30-60-90-triangle-example-problem", "kind": "Video", "video_id": "dgHksfBFbjk", "keywords": "30, 60, 90, Triangle, Example, Problem", "youtube_id": "dgHksfBFbjk", "readable_id": "30-60-90-triangle-example-problem"}, "CrV1xCWdY-g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CrV1xCWdY-g.mp4/CrV1xCWdY-g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CrV1xCWdY-g.mp4/CrV1xCWdY-g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CrV1xCWdY-g.m3u8/CrV1xCWdY-g.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/linear_independence/linear-algebra-introduction-to-linear-independence/", "duration": 946, "id": "CrV1xCWdY-g", "title": "Introduction to linear independence", "format": "mp4", "description": "Introduction to linear dependence and independence", "slug": "linear-algebra-introduction-to-linear-independence", "kind": "Video", "video_id": "CrV1xCWdY-g", "keywords": "Linear, Algebra, Vectors, span, combination", "youtube_id": "CrV1xCWdY-g", "readable_id": "linear-algebra-introduction-to-linear-independence"}, "M-WK4kpvAPw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M-WK4kpvAPw.mp4/M-WK4kpvAPw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M-WK4kpvAPw.mp4/M-WK4kpvAPw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M-WK4kpvAPw.m3u8/M-WK4kpvAPw.m3u8"}, "path": "khan/partner-content/exploratorium/exploratorium-chemistry/penny-battery/penny-battery-how-does-it-work/", "duration": 71, "id": "M-WK4kpvAPw", "title": "What's going on: Chemical energy into electrical energy", "format": "mp4", "description": "What's the science behind this activity? A battery is chemical energy converted into electrical energy.", "slug": "penny-battery-how-does-it-work", "kind": "Video", "video_id": "M-WK4kpvAPw", "keywords": "", "youtube_id": "M-WK4kpvAPw", "readable_id": "penny-battery-how-does-it-work"}, "iJp62jEf6BI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iJp62jEf6BI.mp4/iJp62jEf6BI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iJp62jEf6BI.mp4/iJp62jEf6BI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iJp62jEf6BI.m3u8/iJp62jEf6BI.m3u8"}, "duration": 537, "id": "iJp62jEf6BI", "title": "Kinetics: Chemistry's demolition derby", "format": "mp4", "description": "Have you ever been to a Demolition Derby? Then you have an idea of how molecular collisions happen. In this episode, Hank talks about collisions between molecules and atoms, activation energy, writing rate laws, equilibrium expressions, reactions mechanics, and rate-determining steps. And funnel cakes are AWESOME!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "kinetics/", "slug": "kinetics", "kind": "Video", "video_id": "iJp62jEf6BI", "keywords": "", "youtube_id": "iJp62jEf6BI", "readable_id": "kinetics"}, "vXb0ZvkFkS8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vXb0ZvkFkS8.mp4/vXb0ZvkFkS8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vXb0ZvkFkS8.mp4/vXb0ZvkFkS8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vXb0ZvkFkS8.m3u8/vXb0ZvkFkS8.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/motor-unit/", "duration": 576, "id": "vXb0ZvkFkS8", "title": "Motor unit", "format": "mp4", "description": "", "slug": "motor-unit", "kind": "Video", "video_id": "vXb0ZvkFkS8", "keywords": "MCAT", "youtube_id": "vXb0ZvkFkS8", "readable_id": "motor-unit"}, "1kfq0aR3ASs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1kfq0aR3ASs.mp4/1kfq0aR3ASs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1kfq0aR3ASs.mp4/1kfq0aR3ASs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1kfq0aR3ASs.m3u8/1kfq0aR3ASs.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-polynomials-1/", "duration": 260, "id": "1kfq0aR3ASs", "title": "Examples: Factoring simple quadratics", "format": "mp4", "description": "A few examples of factoring quadratics", "slug": "factoring-polynomials-1", "kind": "Video", "video_id": "1kfq0aR3ASs", "keywords": "", "youtube_id": "1kfq0aR3ASs", "readable_id": "factoring-polynomials-1"}, "5U2XAJNazik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5U2XAJNazik.mp4/5U2XAJNazik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5U2XAJNazik.mp4/5U2XAJNazik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5U2XAJNazik.m3u8/5U2XAJNazik.m3u8"}, "duration": 166, "id": "5U2XAJNazik", "title": "Social constructionism", "format": "mp4", "description": "Social constructionism observes how the interactions of individuals with their society and the world around them gives meaning to otherwise worthless things and creates the reality of the society.\u00a0 By Sydney Brown.", "path": "khan/test-prep/mcat/society-and-culture/social-structures/social-constructionism/", "slug": "social-constructionism", "kind": "Video", "video_id": "5U2XAJNazik", "keywords": "social constructionism", "youtube_id": "5U2XAJNazik", "readable_id": "social-constructionism"}, "QGfdhqbilY8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QGfdhqbilY8.mp4/QGfdhqbilY8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QGfdhqbilY8.mp4/QGfdhqbilY8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QGfdhqbilY8.m3u8/QGfdhqbilY8.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/inverse-tan-domain/", "duration": 584, "id": "QGfdhqbilY8", "title": "Inverse tan domain and range", "format": "mp4", "description": "", "slug": "inverse-tan-domain", "kind": "Video", "video_id": "QGfdhqbilY8", "keywords": "", "youtube_id": "QGfdhqbilY8", "readable_id": "inverse-tan-domain"}, "ceDV0QBpcMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ceDV0QBpcMA.mp4/ceDV0QBpcMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ceDV0QBpcMA.mp4/ceDV0QBpcMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ceDV0QBpcMA.m3u8/ceDV0QBpcMA.m3u8"}, "duration": 334, "id": "ceDV0QBpcMA", "title": "Another isosceles example problem", "format": "mp4", "description": "Possible angles for an isosceles triangle", "path": "khan/math/geometry/congruent-triangles/isoscleles_equil/another-isosceles-example-problem/", "slug": "another-isosceles-example-problem", "kind": "Video", "video_id": "ceDV0QBpcMA", "keywords": "Another, Isosceles, Example, Problem", "youtube_id": "ceDV0QBpcMA", "readable_id": "another-isosceles-example-problem"}, "_w9AwycMm2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_w9AwycMm2g.mp4/_w9AwycMm2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_w9AwycMm2g.mp4/_w9AwycMm2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_w9AwycMm2g.m3u8/_w9AwycMm2g.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sleep-and-consciousness/sleep-wake-disorders-breathing-related-sleep-disorders/", "duration": 541, "id": "_w9AwycMm2g", "title": "Sleep wake disorders breathing related sleep disorders", "format": "mp4", "description": "", "slug": "sleep-wake-disorders-breathing-related-sleep-disorders", "kind": "Video", "video_id": "_w9AwycMm2g", "keywords": "", "youtube_id": "_w9AwycMm2g", "readable_id": "sleep-wake-disorders-breathing-related-sleep-disorders"}, "4PlkCiEXBQI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4PlkCiEXBQI.mp4/4PlkCiEXBQI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4PlkCiEXBQI.mp4/4PlkCiEXBQI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4PlkCiEXBQI.m3u8/4PlkCiEXBQI.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/multiplying-fractions-pre-alg/multiplying-fractions-and-whole-numbers/", "duration": 188, "id": "4PlkCiEXBQI", "title": "Multiplying unit fractions and whole numbers", "format": "mp4", "description": "Don't let multiplying whole numbers and fractions get you down. We got this. This explanation will help you become a pro.", "slug": "multiplying-fractions-and-whole-numbers", "kind": "Video", "video_id": "4PlkCiEXBQI", "keywords": "", "youtube_id": "4PlkCiEXBQI", "readable_id": "multiplying-fractions-and-whole-numbers"}, "Vx1dnPMPhl0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vx1dnPMPhl0.mp4/Vx1dnPMPhl0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vx1dnPMPhl0.mp4/Vx1dnPMPhl0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vx1dnPMPhl0.m3u8/Vx1dnPMPhl0.m3u8"}, "path": "khan/test-prep/mcat/behavior/theories-of-attitude-and-behavior-change/personal-control-locus-of-control-learned-helplessness-and-the-tyranny-of-choice/", "duration": 398, "id": "Vx1dnPMPhl0", "title": "Personal control (locus of control, learned helplessness, and the tyranny of choice)", "format": "mp4", "description": "", "slug": "personal-control-locus-of-control-learned-helplessness-and-the-tyranny-of-choice", "kind": "Video", "video_id": "Vx1dnPMPhl0", "keywords": "", "youtube_id": "Vx1dnPMPhl0", "readable_id": "personal-control-locus-of-control-learned-helplessness-and-the-tyranny-of-choice"}, "_rof2ExUzOU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_rof2ExUzOU.mp4/_rof2ExUzOU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_rof2ExUzOU.mp4/_rof2ExUzOU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_rof2ExUzOU.m3u8/_rof2ExUzOU.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-43-46/", "duration": 302, "id": "_rof2ExUzOU", "title": "CAHSEE practice: Problems 43-46", "format": "mp4", "description": "CAHSEE Practice: Problems 43-46", "slug": "cahsee-practice-problems-43-46", "kind": "Video", "video_id": "_rof2ExUzOU", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "_rof2ExUzOU", "readable_id": "cahsee-practice-problems-43-46"}, "J0ndBMMQW20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J0ndBMMQW20.mp4/J0ndBMMQW20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J0ndBMMQW20.mp4/J0ndBMMQW20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J0ndBMMQW20.m3u8/J0ndBMMQW20.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/forms-of-the-arrhenius-equation/", "duration": 401, "id": "J0ndBMMQW20", "title": "Forms of the Arrhenius equation", "format": "mp4", "description": "", "slug": "forms-of-the-arrhenius-equation", "kind": "Video", "video_id": "J0ndBMMQW20", "keywords": "", "youtube_id": "J0ndBMMQW20", "readable_id": "forms-of-the-arrhenius-equation"}, "aj2el_owSg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aj2el_owSg4.mp4/aj2el_owSg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aj2el_owSg4.mp4/aj2el_owSg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aj2el_owSg4.m3u8/aj2el_owSg4.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/il-gesu-rome-consecrated-1584/", "duration": 488, "id": "aj2el_owSg4", "title": "Il Ges\u00f9, including Triumph of the Name of Jesus ceiling fresco", "format": "mp4", "description": "Giacomo Barozzi da Vignola and Giacomo Barozzi da Vignola, Church of Il Gesu, Rome (consecrated 1584, ceiling fresco, The Triumph of the Name of Jesus, by il Baciccio, also known as Giovanni Battista Gaulli, 1672-1685). Speakers: Frank Dabell, Beth Harris, and Steven Zucker Made with our partners, contexttravel.org", "slug": "il-gesu-rome-consecrated-1584", "kind": "Video", "video_id": "aj2el_owSg4", "keywords": "Rome, Il Gesu, Baroque art, smarthistory, Giacomo Barozzi da Vignola, il Baciccio, Italy, art history", "youtube_id": "aj2el_owSg4", "readable_id": "il-gesu-rome-consecrated-1584"}, "3P-ILdjdipA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3P-ILdjdipA.mp4/3P-ILdjdipA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3P-ILdjdipA.mp4/3P-ILdjdipA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3P-ILdjdipA.m3u8/3P-ILdjdipA.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/the-nonidentity-problem/", "duration": 429, "id": "3P-ILdjdipA", "title": "Ethics: The Nonidentity Problem", "format": "mp4", "description": "In this video, Molly introduces the nonidentity problem. This problem arises in cases where an individual appears to be wronged by the very action upon which his or her own existence depends. We\u2019ll see why this problem has implications for reproductive choices, genetic engineering, and whether we should take care of the environment for the sake of future generations.\n\nSpeaker: Dr. Molly Gardner, Assistant Professor, University of North Carolina, Chapel Hill", "slug": "the-nonidentity-problem", "kind": "Video", "video_id": "3P-ILdjdipA", "keywords": "", "youtube_id": "3P-ILdjdipA", "readable_id": "the-nonidentity-problem"}, "yYbzJs6vgv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yYbzJs6vgv8.mp4/yYbzJs6vgv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yYbzJs6vgv8.mp4/yYbzJs6vgv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yYbzJs6vgv8.m3u8/yYbzJs6vgv8.m3u8"}, "duration": 401, "id": "yYbzJs6vgv8", "title": "A look at a seductive but wrong Gibbs/spontaneity proof", "format": "mp4", "description": "A look at why the \"proof\" of the relation between changes in Gibbs Free Energy and Spontaneity is wrong in many textbooks.", "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/a-look-at-a-seductive-but-wrong-gibbs-spontaneity-proof/", "slug": "a-look-at-a-seductive-but-wrong-gibbs-spontaneity-proof", "kind": "Video", "video_id": "yYbzJs6vgv8", "keywords": "gibbs, free, energy, chemistry, thermodynamics", "youtube_id": "yYbzJs6vgv8", "readable_id": "a-look-at-a-seductive-but-wrong-gibbs-spontaneity-proof"}, "9IZhzUDSBTY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9IZhzUDSBTY.mp4/9IZhzUDSBTY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9IZhzUDSBTY.mp4/9IZhzUDSBTY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9IZhzUDSBTY.m3u8/9IZhzUDSBTY.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/sherrie-levine-untitled-after-edward-weston/", "duration": 266, "id": "9IZhzUDSBTY", "title": "Sherrie Levine, Untitled (After Edward Weston, ca. 1925)", "format": "mp4", "description": "Sherrie Levine, Untitled (After Edward Weston, ca. 1925), Type C color print, 19.5 x 14.625 in. (49.2 x 36.89 cm), 1981 Speakers: Dr. Shana Gallagher-Lindsay, Dr. Beth Harris", "slug": "sherrie-levine-untitled-after-edward-weston", "kind": "Video", "video_id": "9IZhzUDSBTY", "keywords": "", "youtube_id": "9IZhzUDSBTY", "readable_id": "sherrie-levine-untitled-after-edward-weston"}, "HGb9m1dbNdM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HGb9m1dbNdM.mp4/HGb9m1dbNdM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HGb9m1dbNdM.mp4/HGb9m1dbNdM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HGb9m1dbNdM.m3u8/HGb9m1dbNdM.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/influenza/vaccines-and-the-autism-myth-part-2/", "duration": 541, "id": "HGb9m1dbNdM", "title": "Vaccines and the autism myth - part 2", "format": "mp4", "description": "The infamous Wakefield study kickstarted the Autism Myth, but many studies have since shown that there is no link between the MMR Vaccine and autism. Find out how it all got started. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "vaccines-and-the-autism-myth-part-2", "kind": "Video", "video_id": "HGb9m1dbNdM", "keywords": "", "youtube_id": "HGb9m1dbNdM", "readable_id": "vaccines-and-the-autism-myth-part-2"}, "5ctsUsvIp8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ctsUsvIp8w.mp4/5ctsUsvIp8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ctsUsvIp8w.mp4/5ctsUsvIp8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ctsUsvIp8w.m3u8/5ctsUsvIp8w.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-coordinate-plane/plot-ordered-pairs/", "duration": 128, "id": "5ctsUsvIp8w", "title": "Coordinate plane: plot ordered pairs", "format": "mp4", "description": "We're plotting an ordered pair on the x (horizontal) axis and y (vertical) axis of the coordinate plane.", "slug": "plot-ordered-pairs", "kind": "Video", "video_id": "5ctsUsvIp8w", "keywords": "u13_l1_t1_we1, Plot, ordered, pairs", "youtube_id": "5ctsUsvIp8w", "readable_id": "plot-ordered-pairs"}, "oTbvYGH_Hiw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oTbvYGH_Hiw.mp4/oTbvYGH_Hiw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oTbvYGH_Hiw.mp4/oTbvYGH_Hiw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oTbvYGH_Hiw.m3u8/oTbvYGH_Hiw.m3u8"}, "duration": 670, "id": "oTbvYGH_Hiw", "title": "Electoral college", "format": "mp4", "description": "How we elect our President in the United States", "path": "khan/humanities/history/american-civics/american-civics/electoral-college/", "slug": "electoral-college", "kind": "Video", "video_id": "oTbvYGH_Hiw", "keywords": "politics, electoral, college", "youtube_id": "oTbvYGH_Hiw", "readable_id": "electoral-college"}, "v6L8--MlnKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v6L8--MlnKo.mp4/v6L8--MlnKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v6L8--MlnKo.mp4/v6L8--MlnKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v6L8--MlnKo.m3u8/v6L8--MlnKo.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/systems_of_linear_equations_word_problems/substitution-method-3/", "duration": 358, "id": "v6L8--MlnKo", "title": "Systems of equations word problems example 3", "format": "mp4", "description": "", "slug": "substitution-method-3", "kind": "Video", "video_id": "v6L8--MlnKo", "keywords": "u14_l2_t1_we3, Substitution, Method, CC_8_EE_8_a, CC_8_EE_8_b, CC_8_EE_8_c, CC_8_F_3, CC_39336_A-REI_6", "youtube_id": "v6L8--MlnKo", "readable_id": "substitution-method-3"}, "eLdhifUUMmk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eLdhifUUMmk.mp4/eLdhifUUMmk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eLdhifUUMmk.mp4/eLdhifUUMmk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eLdhifUUMmk.m3u8/eLdhifUUMmk.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/calculating-integral-disc-method-around-vertical-line/", "duration": 339, "id": "eLdhifUUMmk", "title": "Calculating integral disc method around vertical line", "format": "mp4", "description": "Let's calculate the integral from the last video.", "slug": "calculating-integral-disc-method-around-vertical-line", "kind": "Video", "video_id": "eLdhifUUMmk", "keywords": "solid of revolution", "youtube_id": "eLdhifUUMmk", "readable_id": "calculating-integral-disc-method-around-vertical-line"}, "QJQOg6umUxA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QJQOg6umUxA.mp4/QJQOg6umUxA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QJQOg6umUxA.mp4/QJQOg6umUxA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QJQOg6umUxA.m3u8/QJQOg6umUxA.m3u8"}, "duration": 244, "id": "QJQOg6umUxA", "title": "MATHletes Challenge 2014 (Ireland)", "format": "mp4", "description": "Learn about the first nationwide Khan Academy competition.", "path": "mathletes_challenge_2014/", "slug": "mathletes_challenge_2014", "kind": "Video", "video_id": "QJQOg6umUxA", "keywords": "", "youtube_id": "QJQOg6umUxA", "readable_id": "mathletes_challenge_2014"}, "JAe14gwSvIU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JAe14gwSvIU.mp4/JAe14gwSvIU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JAe14gwSvIU.mp4/JAe14gwSvIU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JAe14gwSvIU.m3u8/JAe14gwSvIU.m3u8"}, "path": "khan/humanities/art-1010/wwi-dada/art-great-war/raymond-duchamp-villon-horse-1914/", "duration": 229, "id": "JAe14gwSvIU", "title": "Duchamp-Villon, Horse", "format": "mp4", "description": "Raymond Duchamp-Villon, Horse, 1914, bronze, 39-3/8 x 24 x 36 inches / 99 x 61 x 91.4 cm (Art Institute of Chicago)", "slug": "raymond-duchamp-villon-horse-1914", "kind": "Video", "video_id": "JAe14gwSvIU", "keywords": "Raymond Duchamp-Villon, Duchamp-Villon, Horse, 1914, bronze, Art Institute of Chicago, Chicago, WWI, sculpture, First World War, Machine art, modern sculpture, Google Art Project, Khan Academy, Smarthistory, art history, OER", "youtube_id": "JAe14gwSvIU", "readable_id": "raymond-duchamp-villon-horse-1914"}, "YlhDUSntCI4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YlhDUSntCI4.mp4/YlhDUSntCI4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YlhDUSntCI4.mp4/YlhDUSntCI4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YlhDUSntCI4.m3u8/YlhDUSntCI4.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-germany/caspar-david-friedrich-solitary-tree-or-lone-tree-1822/", "duration": 226, "id": "YlhDUSntCI4", "title": "Friedrich, The Lone Tree", "format": "mp4", "description": "Caspar David Friedrich, Solitary Tree (or Lone Tree), 1822, oil on canvas, 55 x 71 cm (Alte Nationalgalerie, Berlin)", "slug": "caspar-david-friedrich-solitary-tree-or-lone-tree-1822", "kind": "Video", "video_id": "YlhDUSntCI4", "keywords": "Caspar David Friedrich, Friedrich, Solitary Tree, Lone Tree, 1822, Alte Nationalgalerie, Berlin, Romanticism, Sublime, Landscape, weathered, gnarled, art, painting, German, art history, Khan Academy, Smarthistory, Google Art Project, OER", "youtube_id": "YlhDUSntCI4", "readable_id": "caspar-david-friedrich-solitary-tree-or-lone-tree-1822"}, "SRPQ62dR6b4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SRPQ62dR6b4.mp4/SRPQ62dR6b4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SRPQ62dR6b4.mp4/SRPQ62dR6b4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SRPQ62dR6b4.m3u8/SRPQ62dR6b4.m3u8"}, "path": "khan/science/organic-chemistry/carboxylic-acids-derivatives/formation-carboxylic-acid-derivatives-sal/amides-anhydrides-esters-and-acyl-chlorides/", "duration": 528, "id": "SRPQ62dR6b4", "title": "Amides, anhydrides, esters, and acyl chlorides", "format": "mp4", "description": "Carboxylic Acid Derivatives - Amides, Anhydrides, Esters and Acyl Chlorides", "slug": "amides-anhydrides-esters-and-acyl-chlorides", "kind": "Video", "video_id": "SRPQ62dR6b4", "keywords": "Anhydrides, Esters and Acyl Chlorides", "youtube_id": "SRPQ62dR6b4", "readable_id": "amides-anhydrides-esters-and-acyl-chlorides"}, "kDOepUPGhFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kDOepUPGhFs.mp4/kDOepUPGhFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kDOepUPGhFs.mp4/kDOepUPGhFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kDOepUPGhFs.m3u8/kDOepUPGhFs.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/naming-alkenes-jay/alkene-intro-and-stability/", "duration": 529, "id": "kDOepUPGhFs", "title": "Alkene intro and stability", "format": "mp4", "description": "", "slug": "alkene-intro-and-stability", "kind": "Video", "video_id": "kDOepUPGhFs", "keywords": "", "youtube_id": "kDOepUPGhFs", "readable_id": "alkene-intro-and-stability"}, "VqAa_cmZ7OY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VqAa_cmZ7OY.mp4/VqAa_cmZ7OY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VqAa_cmZ7OY.mp4/VqAa_cmZ7OY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VqAa_cmZ7OY.m3u8/VqAa_cmZ7OY.m3u8"}, "duration": 762, "id": "VqAa_cmZ7OY", "title": "Spectrophotometry example", "format": "mp4", "description": "Spectrophotometry Example - Determining concentration based on absorbance", "path": "khan/science/chemistry/chemical-equilibrium/spectrophotometry-tutorial/spectrophotometry-example/", "slug": "spectrophotometry-example", "kind": "Video", "video_id": "VqAa_cmZ7OY", "keywords": "spectrophotometry, beer-lambert, absorbance", "youtube_id": "VqAa_cmZ7OY", "readable_id": "spectrophotometry-example"}, "HmAyjo0Ghh0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HmAyjo0Ghh0.mp4/HmAyjo0Ghh0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HmAyjo0Ghh0.mp4/HmAyjo0Ghh0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HmAyjo0Ghh0.m3u8/HmAyjo0Ghh0.m3u8"}, "duration": 690, "id": "HmAyjo0Ghh0", "title": "The reproductive system: How gonads go", "format": "mp4", "description": "Hank lets us in on the meaning of life, at least from a biological perspective - it's reproduction, which answers the essential question of all organisms: how do I make more of myself? So, sex, how does it work?\u00a0", "path": "crash-course-biology-133/", "slug": "crash-course-biology-133", "kind": "Video", "video_id": "HmAyjo0Ghh0", "keywords": "", "youtube_id": "HmAyjo0Ghh0", "readable_id": "crash-course-biology-133"}, "CLpoHZHn56s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CLpoHZHn56s.mp4/CLpoHZHn56s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CLpoHZHn56s.mp4/CLpoHZHn56s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CLpoHZHn56s.m3u8/CLpoHZHn56s.m3u8"}, "duration": 166, "id": "CLpoHZHn56s", "title": "\"Noise\" with Maryan W. Ainsworth", "format": "mp4", "description": "Met curator Maryan W. Ainsworth on the sense of sound in Jan van Eyck\u2019s The Crucifixion; The Last Judgment.\n\nThese exquisite paintings, juxtaposing Christ's sacrifice for the salvation of mankind with the Last Judgment, are by Jan van Eyck, the most celebrated painter of fifteenth-century Europe, and an assistant. The Crucifixion is presented as an eyewitness account set against a distant landscape, astonishing for its depth and subtlety of description. By contrast, the Last Judgment is organized hieratically in three tiers, with the scale of the figures manipulated to indicate their relative importance. The biblical texts on the original frames relate specifically to the scenes depicted, establishing a play between word and image that would have been admired by contemporaries.\n\nView this work on metmuseum.org.\u00a0\n", "path": "noise/", "slug": "noise", "kind": "Video", "video_id": "CLpoHZHn56s", "keywords": "daily life, ingenuity, music, musical instrument, touch, turmoil, wood, Europe, Kellen, Anna-Marie, European Paintings ", "youtube_id": "CLpoHZHn56s", "readable_id": "noise"}, "QCTKPkemffw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QCTKPkemffw.mp4/QCTKPkemffw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QCTKPkemffw.mp4/QCTKPkemffw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QCTKPkemffw.m3u8/QCTKPkemffw.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-7/", "duration": 41, "id": "QCTKPkemffw", "title": "7 Fraction as percent", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-7", "kind": "Video", "video_id": "QCTKPkemffw", "keywords": "", "youtube_id": "QCTKPkemffw", "readable_id": "sat-2010-may-6-7"}, "xRzZuhWSlb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xRzZuhWSlb8.mp4/xRzZuhWSlb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xRzZuhWSlb8.mp4/xRzZuhWSlb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xRzZuhWSlb8.m3u8/xRzZuhWSlb8.m3u8"}, "duration": 179, "id": "xRzZuhWSlb8", "title": "Clarification: Comparing fractions of different wholes", "format": "mp4", "description": "Learn how to compare two fractions that refer to different-sized wholes.", "path": "comparing-fractions-of-different-wholes/", "slug": "comparing-fractions-of-different-wholes", "kind": "Video", "video_id": "xRzZuhWSlb8", "keywords": "", "youtube_id": "xRzZuhWSlb8", "readable_id": "comparing-fractions-of-different-wholes"}, "iewvEGWARBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iewvEGWARBY.mp4/iewvEGWARBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iewvEGWARBY.mp4/iewvEGWARBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iewvEGWARBY.m3u8/iewvEGWARBY.m3u8"}, "duration": 229, "id": "iewvEGWARBY", "title": "Depreciating the truck", "format": "mp4", "description": "Depreciation the truck spreads out the expense", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/depreciation-amortization-tut/depreciating-the-truck/", "slug": "depreciating-the-truck", "kind": "Video", "video_id": "iewvEGWARBY", "keywords": "depreciation, amortization, capital, expenditures", "youtube_id": "iewvEGWARBY", "readable_id": "depreciating-the-truck"}, "5fK8HEYNRuQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5fK8HEYNRuQ.mp4/5fK8HEYNRuQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5fK8HEYNRuQ.mp4/5fK8HEYNRuQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5fK8HEYNRuQ.m3u8/5fK8HEYNRuQ.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/add-subtract-fracs-wp-pre-alg/subtracting-fractions-with-unlike-denominators-word-problem/", "duration": 199, "id": "5fK8HEYNRuQ", "title": "Subtracting fractions with unlike denominators: word problem", "format": "mp4", "description": "To find the answer to this word problem, we'll have to convert the mixed numbers into improper fractions first.", "slug": "subtracting-fractions-with-unlike-denominators-word-problem", "kind": "Video", "video_id": "5fK8HEYNRuQ", "keywords": "", "youtube_id": "5fK8HEYNRuQ", "readable_id": "subtracting-fractions-with-unlike-denominators-word-problem"}, "9pcWAHujSZA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9pcWAHujSZA.mp4/9pcWAHujSZA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9pcWAHujSZA.mp4/9pcWAHujSZA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9pcWAHujSZA.m3u8/9pcWAHujSZA.m3u8"}, "duration": 2175, "id": "9pcWAHujSZA", "title": "A Conversation with US Secretary of Education Arne Duncan", "format": "mp4", "description": "", "path": "sal-khan-talks-to-arne-duncan/", "slug": "sal-khan-talks-to-arne-duncan", "kind": "Video", "video_id": "9pcWAHujSZA", "keywords": "interview, arne duncan", "youtube_id": "9pcWAHujSZA", "readable_id": "sal-khan-talks-to-arne-duncan"}, "R8qygu1RUOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R8qygu1RUOI.mp4/R8qygu1RUOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R8qygu1RUOI.mp4/R8qygu1RUOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R8qygu1RUOI.m3u8/R8qygu1RUOI.m3u8"}, "duration": 241, "id": "R8qygu1RUOI", "title": "LeBron Asks: How does shooting a basketball illustrate Newton's 3rd Law?", "format": "mp4", "description": "How does a basketball apply a force to the shooter's hand?", "path": "khan/partner-content/lebron-asks-subject/lebron-asks/lebron-asks-about-newton-s-3rd-law/", "slug": "lebron-asks-about-newton-s-3rd-law", "kind": "Video", "video_id": "R8qygu1RUOI", "keywords": "lebron, khan, newton's, third, law", "youtube_id": "R8qygu1RUOI", "readable_id": "lebron-asks-about-newton-s-3rd-law"}, "UNWxKDvBFik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UNWxKDvBFik.mp4/UNWxKDvBFik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UNWxKDvBFik.mp4/UNWxKDvBFik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UNWxKDvBFik.m3u8/UNWxKDvBFik.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-non-cyanotic-heart-diseases/atrial-septal-defect/", "duration": 621, "id": "UNWxKDvBFik", "title": "Atrial septal defect", "format": "mp4", "description": "An atrial septal defect is a hole between the two atriums of the heart. Normally this hole is present at birth but closes within a few days of life. Failure of this hole to close is called an atrial septal defect, and usually is asymptomatic (no obvious symptoms are present).", "slug": "atrial-septal-defect", "kind": "Video", "video_id": "UNWxKDvBFik", "keywords": "", "youtube_id": "UNWxKDvBFik", "readable_id": "atrial-septal-defect"}, "-1w9RXhCmsE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-1w9RXhCmsE.mp4/-1w9RXhCmsE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-1w9RXhCmsE.mp4/-1w9RXhCmsE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-1w9RXhCmsE.m3u8/-1w9RXhCmsE.m3u8"}, "duration": 154, "id": "-1w9RXhCmsE", "title": "Data wires", "format": "mp4", "description": "data wires allow you to send values directly from input sensors to output devices", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-datawires/", "slug": "lego-datawires", "kind": "Video", "video_id": "-1w9RXhCmsE", "keywords": "", "youtube_id": "-1w9RXhCmsE", "readable_id": "lego-datawires"}, "ySDcYZEcxcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ySDcYZEcxcQ.mp4/ySDcYZEcxcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ySDcYZEcxcQ.mp4/ySDcYZEcxcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ySDcYZEcxcQ.m3u8/ySDcYZEcxcQ.m3u8"}, "duration": 792, "id": "ySDcYZEcxcQ", "title": "Globalization II - good or bad?", "format": "mp4", "description": "In which John asks whether globalization is a net positive for humanity. While the new global economy has created a lot of wealth, and lifted a lot of people out of poverty, it also has some effects that aren't so hot. Wealth disparity, rising divorce rates, environmental damage, and new paths for the spread of disease. So does all this outweigh the economic benefits, the innovation, and the relative peace that come with interconnected economies? As usual, the answer is not simple. In this case, we're living in the middle of the events we're discussing, so it's hard to know how it's going to turn out.\u00a0", "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-42/", "slug": "crash-course-world-history-42", "kind": "Video", "video_id": "ySDcYZEcxcQ", "keywords": "crash course", "youtube_id": "ySDcYZEcxcQ", "readable_id": "crash-course-world-history-42"}, "8jV1SwpZ-W4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8jV1SwpZ-W4.mp4/8jV1SwpZ-W4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8jV1SwpZ-W4.mp4/8jV1SwpZ-W4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8jV1SwpZ-W4.m3u8/8jV1SwpZ-W4.m3u8"}, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/poor-richard/", "duration": 656, "id": "8jV1SwpZ-W4", "title": "Benjamin Franklin and Poor Richard's Almanac", "format": "mp4", "description": "In this video, Sal and Aspen Institute President and CEO Walter Isaacson discuss Benjamin Franklin's\u00a0Poor Richard's Almanac.", "slug": "poor-richard", "kind": "Video", "video_id": "8jV1SwpZ-W4", "keywords": "", "youtube_id": "8jV1SwpZ-W4", "readable_id": "poor-richard"}, "gYv8sttBIqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gYv8sttBIqs.mp4/gYv8sttBIqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gYv8sttBIqs.mp4/gYv8sttBIqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gYv8sttBIqs.m3u8/gYv8sttBIqs.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-duplicate-row-determinant/", "duration": 499, "id": "gYv8sttBIqs", "title": "Duplicate row determinant", "format": "mp4", "description": "Determinant of a matrix with duplicate rows", "slug": "linear-algebra-duplicate-row-determinant", "kind": "Video", "video_id": "gYv8sttBIqs", "keywords": "linear, algebra, determinant", "youtube_id": "gYv8sttBIqs", "readable_id": "linear-algebra-duplicate-row-determinant"}, "xyTxrbsfLpg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xyTxrbsfLpg.mp4/xyTxrbsfLpg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xyTxrbsfLpg.mp4/xyTxrbsfLpg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xyTxrbsfLpg.m3u8/xyTxrbsfLpg.m3u8"}, "duration": 191, "id": "xyTxrbsfLpg", "title": "Franz Kline", "format": "mp4", "description": "To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting or learn more about the art of this time in the online history course Modern and Contemporary Art: 1945-1989.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-franz-kline/", "slug": "moma-franz-kline", "kind": "Video", "video_id": "xyTxrbsfLpg", "keywords": "", "youtube_id": "xyTxrbsfLpg", "readable_id": "moma-franz-kline"}, "gGeC0ntvxR8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gGeC0ntvxR8.mp4/gGeC0ntvxR8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gGeC0ntvxR8.mp4/gGeC0ntvxR8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gGeC0ntvxR8.m3u8/gGeC0ntvxR8.m3u8"}, "path": "khan/test-prep/mcat/cells/eukaryotic-cells/the-nucleus/", "duration": 365, "id": "gGeC0ntvxR8", "title": "The nucleus", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "the-nucleus", "kind": "Video", "video_id": "gGeC0ntvxR8", "keywords": "", "youtube_id": "gGeC0ntvxR8", "readable_id": "the-nucleus"}, "p5nomPfUF9k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p5nomPfUF9k.mp4/p5nomPfUF9k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p5nomPfUF9k.mp4/p5nomPfUF9k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p5nomPfUF9k.m3u8/p5nomPfUF9k.m3u8"}, "duration": 148, "id": "p5nomPfUF9k", "title": "Simplifying rates and ratios", "format": "mp4", "description": "Simplifying Rates and Ratios", "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/simplifying-rates-and-ratios/", "slug": "simplifying-rates-and-ratios", "kind": "Video", "video_id": "p5nomPfUF9k", "keywords": "U04_L1_T1_we2, Simplifying, Rates, and, Ratios, CC_6_RP_1", "youtube_id": "p5nomPfUF9k", "readable_id": "simplifying-rates-and-ratios"}, "__afuK1CMpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/__afuK1CMpQ.mp4/__afuK1CMpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/__afuK1CMpQ.mp4/__afuK1CMpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/__afuK1CMpQ.m3u8/__afuK1CMpQ.m3u8"}, "duration": 840, "id": "__afuK1CMpQ", "title": "Heart cells up close!", "format": "mp4", "description": "Get a close-up view of the cardiac cells and see what makes them different from the other (skeletal and smooth) muscle cells. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-muscle-contraction/heart-cells-up-close/", "slug": "heart-cells-up-close", "kind": "Video", "video_id": "__afuK1CMpQ", "keywords": "", "youtube_id": "__afuK1CMpQ", "readable_id": "heart-cells-up-close"}, "zpzM3Xun6-Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zpzM3Xun6-Q.mp4/zpzM3Xun6-Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zpzM3Xun6-Q.mp4/zpzM3Xun6-Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zpzM3Xun6-Q.m3u8/zpzM3Xun6-Q.m3u8"}, "path": "khan/partner-content/exploratorium/light-and-color/colored-shadows/colored-shadows-yellow-and-cyan/", "duration": 66, "id": "zpzM3Xun6-Q", "title": "Yellow and cyan challenge", "format": "mp4", "description": "Now that we understand how the magenta shadow is produced, what about the other colors we see?", "slug": "colored-shadows-yellow-and-cyan", "kind": "Video", "video_id": "zpzM3Xun6-Q", "keywords": "", "youtube_id": "zpzM3Xun6-Q", "readable_id": "colored-shadows-yellow-and-cyan"}, "q3g3jsmCOEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q3g3jsmCOEQ.mp4/q3g3jsmCOEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q3g3jsmCOEQ.mp4/q3g3jsmCOEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q3g3jsmCOEQ.m3u8/q3g3jsmCOEQ.m3u8"}, "duration": 562, "id": "q3g3jsmCOEQ", "title": "Dipole moment", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/dipole-moment/", "slug": "dipole-moment", "kind": "Video", "video_id": "q3g3jsmCOEQ", "keywords": "", "youtube_id": "q3g3jsmCOEQ", "readable_id": "dipole-moment"}, "pZOUV_rTyj0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pZOUV_rTyj0.mp4/pZOUV_rTyj0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pZOUV_rTyj0.mp4/pZOUV_rTyj0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pZOUV_rTyj0.m3u8/pZOUV_rTyj0.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/egypt-art/new-kingdom/mortuary-temple-of-hatshepsut-and-large-kneeling-statue-new-kingdom-egypt/", "duration": 457, "id": "pZOUV_rTyj0", "title": "Mortuary Temple of Hatshepsut and Large Kneeling Statue, New Kingdom, Egypt", "format": "mp4", "description": "Mortuary Temple and Large Kneeling Statue of Hatshepsut, c. 1479-58 B.C.E., New Kingdom, Egypt Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "mortuary-temple-of-hatshepsut-and-large-kneeling-statue-new-kingdom-egypt", "kind": "Video", "video_id": "pZOUV_rTyj0", "keywords": "Egypt", "youtube_id": "pZOUV_rTyj0", "readable_id": "mortuary-temple-of-hatshepsut-and-large-kneeling-statue-new-kingdom-egypt"}, "TiXusw8aPMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TiXusw8aPMk.mp4/TiXusw8aPMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TiXusw8aPMk.mp4/TiXusw8aPMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TiXusw8aPMk.m3u8/TiXusw8aPMk.m3u8"}, "duration": 645, "id": "TiXusw8aPMk", "title": "Wait for it... the Mongols!", "format": "mp4", "description": "In which John Green teaches you, at long last, about the most exceptional bunch of empire-building nomads in the history of the world, the Mongols! How did the Mongols go from being a relatively small band of herders who occasionally engaged in some light hunting-gathering to being one of the most formidable fighting forces in the world? It turns out Genghis Khan was a pretty big part of it, but you probably already knew that. The more interesting questions might be, what kind of rulers were they, and what effect did their empire have on the world we know today? Find out, as John FINALLY teaches you about the Mongols.", "path": "khan/humanities/history/crashcourse-worldhistory/road-trip-conquest-trade-2/crash-course-world-history-17/", "slug": "crash-course-world-history-17", "kind": "Video", "video_id": "TiXusw8aPMk", "keywords": "crash course", "youtube_id": "TiXusw8aPMk", "readable_id": "crash-course-world-history-17"}, "ZrKw-SLzNrw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZrKw-SLzNrw.mp4/ZrKw-SLzNrw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZrKw-SLzNrw.mp4/ZrKw-SLzNrw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZrKw-SLzNrw.m3u8/ZrKw-SLzNrw.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/federal-reserve/more-on-quantitative-easing-and-credit-easing/", "duration": 555, "id": "ZrKw-SLzNrw", "title": "More on quantitative easing (and credit easing)", "format": "mp4", "description": "Understanding the difference between quantitative easing in Japan and the United States", "slug": "more-on-quantitative-easing-and-credit-easing", "kind": "Video", "video_id": "ZrKw-SLzNrw", "keywords": "federal, reserve, bernanke, credit, crisis", "youtube_id": "ZrKw-SLzNrw", "readable_id": "more-on-quantitative-easing-and-credit-easing"}, "1_ZAunahU7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1_ZAunahU7c.mp4/1_ZAunahU7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1_ZAunahU7c.mp4/1_ZAunahU7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1_ZAunahU7c.m3u8/1_ZAunahU7c.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/reliquaries-manuscripts-tapestries/boy-genius/", "duration": 175, "id": "1_ZAunahU7c", "title": "\"Boy Genius\" with Timothy B. Husband", "format": "mp4", "description": "Met curator Timothy B. Husband on prodigy in Herman, Paul, and Jean de Limbourg\u2019s The Belles Heures of Jean de France, Duc de Berry.\n\nCompleted by late 1408 or early 1409, probably in Paris, \"The Belles Heures,\" a private devotional book, was the first of two sumptuous manuscripts commissioned by the duke of Berry from the Limbourg brothers, Pol, Jean, and Herman. It is the only manuscript that they completed in its entirety. The other manuscript, \"The Tr\u00e8s Riches Heures,\" was left incomplete at the brothers' deaths in 1416. The richly illustrated text is amplified by unusual cycles reflecting the duke's personal interests. Using a luminous palette, the artists blended an intimate Northern vision of nature with Italianate modes of figural articulation. The keen interest in the natural world and the naturalistic means of representing it, so striking in ninety-four full-page and fifty-four column illuminations, foreshadow the work of Jan van Eyck and the ensuing generations of outstanding fifteenth-century painters in the South Netherlands.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "slug": "boy-genius", "kind": "Video", "video_id": "1_ZAunahU7c", "keywords": "belief, book, ornate, painting, transcendence, vellum, Europe", "youtube_id": "1_ZAunahU7c", "readable_id": "boy-genius"}, "EsQyCHs4IBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EsQyCHs4IBY.mp4/EsQyCHs4IBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EsQyCHs4IBY.mp4/EsQyCHs4IBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EsQyCHs4IBY.m3u8/EsQyCHs4IBY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/clonal-selection/", "duration": 589, "id": "EsQyCHs4IBY", "title": "Clonal selection", "format": "mp4", "description": "", "slug": "clonal-selection", "kind": "Video", "video_id": "EsQyCHs4IBY", "keywords": "", "youtube_id": "EsQyCHs4IBY", "readable_id": "clonal-selection"}, "nFsQA2Zvy1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nFsQA2Zvy1o.mp4/nFsQA2Zvy1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nFsQA2Zvy1o.mp4/nFsQA2Zvy1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nFsQA2Zvy1o.m3u8/nFsQA2Zvy1o.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/greater-than-and-less-than-symbols/", "duration": 304, "id": "nFsQA2Zvy1o", "title": "Greater than and less than symbols", "format": "mp4", "description": "Learn the greater than symbol \">\" and the less than symbol \"<\".", "slug": "greater-than-and-less-than-symbols", "kind": "Video", "video_id": "nFsQA2Zvy1o", "keywords": "", "youtube_id": "nFsQA2Zvy1o", "readable_id": "greater-than-and-less-than-symbols"}, "cu6rfyEMFiQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cu6rfyEMFiQ.mp4/cu6rfyEMFiQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cu6rfyEMFiQ.mp4/cu6rfyEMFiQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cu6rfyEMFiQ.m3u8/cu6rfyEMFiQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-cystic-fibrosis/cystic-fibrosis-pathophysiology/", "duration": 371, "id": "cu6rfyEMFiQ", "title": "Cystic fibrosis pathophysiology", "format": "mp4", "description": "", "slug": "cystic-fibrosis-pathophysiology", "kind": "Video", "video_id": "cu6rfyEMFiQ", "keywords": "", "youtube_id": "cu6rfyEMFiQ", "readable_id": "cystic-fibrosis-pathophysiology"}, "tTF5ZY6aitg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tTF5ZY6aitg.mp4/tTF5ZY6aitg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tTF5ZY6aitg.mp4/tTF5ZY6aitg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tTF5ZY6aitg.m3u8/tTF5ZY6aitg.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/greek-pottery/exekias-dionysos-kylix/", "duration": 232, "id": "tTF5ZY6aitg", "title": "Attic Black-Figure: Exekias, Dionysos Kylix", "format": "mp4", "description": "Exekias, Dionysos Kylix, c. 530 B.C.E. (Antikensammlungen, Munich)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "exekias-dionysos-kylix", "kind": "Video", "video_id": "tTF5ZY6aitg", "keywords": "exekias, ancient greece, archaic, vase painting,", "youtube_id": "tTF5ZY6aitg", "readable_id": "exekias-dionysos-kylix"}, "edVnqL2Z59A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/edVnqL2Z59A.mp4/edVnqL2Z59A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/edVnqL2Z59A.mp4/edVnqL2Z59A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/edVnqL2Z59A.m3u8/edVnqL2Z59A.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/interpreting-linear-expressions-example-2/", "duration": 122, "id": "edVnqL2Z59A", "title": "Interpreting linear expressions, 2", "format": "mp4", "description": "Let's practice matching expressions to their meaning in this example of interpreting linear expressions.", "slug": "interpreting-linear-expressions-example-2", "kind": "Video", "video_id": "edVnqL2Z59A", "keywords": "", "youtube_id": "edVnqL2Z59A", "readable_id": "interpreting-linear-expressions-example-2"}, "OS1g4PDdNdM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OS1g4PDdNdM.mp4/OS1g4PDdNdM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OS1g4PDdNdM.mp4/OS1g4PDdNdM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OS1g4PDdNdM.m3u8/OS1g4PDdNdM.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/converting-decimals-to-fractions-1-ex-3/", "duration": 74, "id": "OS1g4PDdNdM", "title": "Converting decimals to fractions example 3", "format": "mp4", "description": "Converting this decimal results in a fraction that needs to be simplified. Can you help us?", "slug": "converting-decimals-to-fractions-1-ex-3", "kind": "Video", "video_id": "OS1g4PDdNdM", "keywords": "Converting, decimals, to, fractions, 1, ex, 3", "youtube_id": "OS1g4PDdNdM", "readable_id": "converting-decimals-to-fractions-1-ex-3"}, "o52BW3B4efc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o52BW3B4efc.mp4/o52BW3B4efc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o52BW3B4efc.mp4/o52BW3B4efc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o52BW3B4efc.m3u8/o52BW3B4efc.m3u8"}, "duration": 487, "id": "o52BW3B4efc", "title": "Charles's law", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/gas-phase/charles-law/", "slug": "charles-law", "kind": "Video", "video_id": "o52BW3B4efc", "keywords": "", "youtube_id": "o52BW3B4efc", "readable_id": "charles-law"}, "KIvBn6gfRgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KIvBn6gfRgY.mp4/KIvBn6gfRgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KIvBn6gfRgY.mp4/KIvBn6gfRgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KIvBn6gfRgY.m3u8/KIvBn6gfRgY.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/amino-acids-and-proteins1/central-dogma-of-molecular-biology-2/", "duration": 262, "id": "KIvBn6gfRgY", "title": "Central Dogma of Molecular Biology", "format": "mp4", "description": "", "slug": "central-dogma-of-molecular-biology-2", "kind": "Video", "video_id": "KIvBn6gfRgY", "keywords": "", "youtube_id": "KIvBn6gfRgY", "readable_id": "central-dogma-of-molecular-biology-2"}, "IR1Qc9F4GR0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IR1Qc9F4GR0.mp4/IR1Qc9F4GR0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IR1Qc9F4GR0.mp4/IR1Qc9F4GR0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IR1Qc9F4GR0.m3u8/IR1Qc9F4GR0.m3u8"}, "duration": 217, "id": "IR1Qc9F4GR0", "title": "Room: 1840-1890", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Alison Smith explores the period 1840-1890.\n\nLearn more about the art featured in this video:\n-\u00a0Emily Mary Osborn, Nameless and Friendless. \u201cThe rich man\u2019s wealth is his strong city, etc.\u201d - Proverbs, x, 15, 1857\n-\u00a0James Abbott McNeill Whistler, Nocturne: Blue and Silver - Chelsea, 1871\n-\u00a0John Singer Sargent, Carnation, Lily, Lily, Rose, 1885\u20136", "path": "room-1840-1890/", "slug": "room-1840-1890", "kind": "Video", "video_id": "IR1Qc9F4GR0", "keywords": "Tate, Victorian Art, ", "youtube_id": "IR1Qc9F4GR0", "readable_id": "room-1840-1890"}, "rK4sXm_MPWo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rK4sXm_MPWo.mp4/rK4sXm_MPWo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rK4sXm_MPWo.mp4/rK4sXm_MPWo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rK4sXm_MPWo.m3u8/rK4sXm_MPWo.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/why-a-negative-times-a-negative-is-a-positive/", "duration": 347, "id": "rK4sXm_MPWo", "title": "Why a negative times a negative is a positive", "format": "mp4", "description": "Use the distributive property to understand the products of negative numbers.", "slug": "why-a-negative-times-a-negative-is-a-positive", "kind": "Video", "video_id": "rK4sXm_MPWo", "keywords": "math, negative, numbers, marquee", "youtube_id": "rK4sXm_MPWo", "readable_id": "why-a-negative-times-a-negative-is-a-positive"}, "NJRyxmommqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NJRyxmommqQ.mp4/NJRyxmommqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NJRyxmommqQ.mp4/NJRyxmommqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NJRyxmommqQ.m3u8/NJRyxmommqQ.m3u8"}, "duration": 565, "id": "NJRyxmommqQ", "title": "Inconsistent systems of equations", "format": "mp4", "description": "Systems of equations without a solution", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/inconsistent-systems-of-equations/", "slug": "inconsistent-systems-of-equations", "kind": "Video", "video_id": "NJRyxmommqQ", "keywords": "", "youtube_id": "NJRyxmommqQ", "readable_id": "inconsistent-systems-of-equations"}, "UyQoTnWBsKw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UyQoTnWBsKw.mp4/UyQoTnWBsKw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UyQoTnWBsKw.mp4/UyQoTnWBsKw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UyQoTnWBsKw.m3u8/UyQoTnWBsKw.m3u8"}, "duration": 176, "id": "UyQoTnWBsKw", "title": "\"Hipster\" with Jan Glier Reeder", "format": "mp4", "description": "Met curator Jan Glier Reeder on the element of surprise in Charles James\u2019s Evening Dress.\n\nCharles James produced some of the most memorable garments ever made. He began his design career in the 1930s. It peaked between the late 1940s and mid- 1950s, when his scarce and highly original gowns were sought after by society's most prominent women. Personally draping and constructing the garments that bear his label, he is considered to be the only American to work in the true couture tradition. James saw himself as an artist and sculptor of dress rather than a dressmaker. He manipulated fabrics into dramatic shapes using complex seaming and sometimes complicated understructures to create his singular vision of timeless elegance. A master of the relationship between form, color and texture, he often heightened the drama of his evening wear by combining several like fabrics of different colors, or different fabrics in like colors but with different light reflective qualities. Also a perfectionist, he worked for years on refining certain seam lines, shapes and constructs that particularly expressed his vision of artistry through rigorous engineering. Many of his pieces are conceived asymmetrically and possess a sense of movement and vitality that is a signature characteristic of his work. Many historical references in shapes and construction, especially the drapery forms of the 1870s and early teens, are also prevalent throughout his work.\n\nThe construction of this dress reconfigures the body by having the harder draped fabric brought forward and soft fabric at the back, the opposite from the norm, giving the appearance of front and back being reversed. The startling color contrast and different reflective qualities of satin, wool-backed crepe and faille in the skirt reinforce this deception. The form of the hips bears witness to James' claims of being a sculptor of fabric.\n\nView this work on metmuseum.org.\n", "path": "hipster/", "slug": "hipster", "kind": "Video", "video_id": "UyQoTnWBsKw", "keywords": "body, confidence, costume, fashion, silk, wool, North America", "youtube_id": "UyQoTnWBsKw", "readable_id": "hipster"}, "xjCnmPvcmOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xjCnmPvcmOo.mp4/xjCnmPvcmOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xjCnmPvcmOo.mp4/xjCnmPvcmOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xjCnmPvcmOo.m3u8/xjCnmPvcmOo.m3u8"}, "duration": 122, "id": "xjCnmPvcmOo", "title": "Fractional exponent expressions 1", "format": "mp4", "description": "Fractional Exponent Expressions 1", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/fractional-exponent-expressions-1/", "slug": "fractional-exponent-expressions-1", "kind": "Video", "video_id": "xjCnmPvcmOo", "keywords": "U07_L3_T4_we1, Fractional, Exponent, Expressions, CC_6_EE_2_c, CC_6_EE_3, CC_7_NS_2, CC_7_NS_2_a, CC_7_NS_2_c, CC_7_NS_3, CC_8_EE_1", "youtube_id": "xjCnmPvcmOo", "readable_id": "fractional-exponent-expressions-1"}, "e3lRt9XdV0s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e3lRt9XdV0s.mp4/e3lRt9XdV0s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e3lRt9XdV0s.mp4/e3lRt9XdV0s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e3lRt9XdV0s.m3u8/e3lRt9XdV0s.m3u8"}, "duration": 307, "id": "e3lRt9XdV0s", "title": "Thin layer chromatography (TLC)", "format": "mp4", "description": "Learn about how chemicals can be separated based on polarity through thin layer chromatography (TLC). By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/thin-layer-chromatography/", "slug": "thin-layer-chromatography", "kind": "Video", "video_id": "e3lRt9XdV0s", "keywords": "thin layer chromatography", "youtube_id": "e3lRt9XdV0s", "readable_id": "thin-layer-chromatography"}, "2DmYxB97KQ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2DmYxB97KQ0.mp4/2DmYxB97KQ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2DmYxB97KQ0.mp4/2DmYxB97KQ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2DmYxB97KQ0.m3u8/2DmYxB97KQ0.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/comparing-colleges-location-size-housing/", "duration": 217, "id": "2DmYxB97KQ0", "title": "Comparing colleges based on location, size, and housing", "format": "mp4", "description": "Filter by location, size, and housing options using College Board's college search tool", "slug": "comparing-colleges-location-size-housing", "kind": "Video", "video_id": "2DmYxB97KQ0", "keywords": "", "youtube_id": "2DmYxB97KQ0", "readable_id": "comparing-colleges-location-size-housing"}, "8TIben0bJpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8TIben0bJpU.mp4/8TIben0bJpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8TIben0bJpU.mp4/8TIben0bJpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8TIben0bJpU.m3u8/8TIben0bJpU.m3u8"}, "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/getting-exactly-two-heads-combinatorics/", "duration": 600, "id": "8TIben0bJpU", "title": "Getting exactly two heads (combinatorics)", "format": "mp4", "description": "A different way to think about the probability of getting 2 heads in 4 flips", "slug": "getting-exactly-two-heads-combinatorics", "kind": "Video", "video_id": "8TIben0bJpU", "keywords": "probability, combinatorics", "youtube_id": "8TIben0bJpU", "readable_id": "getting-exactly-two-heads-combinatorics"}, "ViqrHGae7FA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ViqrHGae7FA.mp4/ViqrHGae7FA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ViqrHGae7FA.mp4/ViqrHGae7FA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ViqrHGae7FA.m3u8/ViqrHGae7FA.m3u8"}, "duration": 511, "id": "ViqrHGae7FA", "title": "Generalizing a left Riemann sum with equally spaced rectangles", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/generalizing-a-left-riemann-sum-with-equally-spaced-rectangles/", "slug": "generalizing-a-left-riemann-sum-with-equally-spaced-rectangles", "kind": "Video", "video_id": "ViqrHGae7FA", "keywords": "", "youtube_id": "ViqrHGae7FA", "readable_id": "generalizing-a-left-riemann-sum-with-equally-spaced-rectangles"}, "sZMezOCZr40": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sZMezOCZr40.mp4/sZMezOCZr40.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sZMezOCZr40.mp4/sZMezOCZr40.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sZMezOCZr40.m3u8/sZMezOCZr40.m3u8"}, "path": "khan/math/basic-geo/basic-geo-shapes/basic-geo-classifying-shapes/scalene-isosceles-equilateral-from-angle/", "duration": 330, "id": "sZMezOCZr40", "title": "Triangles: using angles to categorize", "format": "mp4", "description": "You say you can't categorize a triangle because you don't know the length of the sides. Guess what? If you know the size of the angles you can!", "slug": "scalene-isosceles-equilateral-from-angle", "kind": "Video", "video_id": "sZMezOCZr40", "keywords": "", "youtube_id": "sZMezOCZr40", "readable_id": "scalene-isosceles-equilateral-from-angle"}, "4xfOq00BzJA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4xfOq00BzJA.mp4/4xfOq00BzJA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4xfOq00BzJA.mp4/4xfOq00BzJA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4xfOq00BzJA.m3u8/4xfOq00BzJA.m3u8"}, "duration": 416, "id": "4xfOq00BzJA", "title": "Vi and Sal explore how we think about scale", "format": "mp4", "description": "Vi Hart (http://www.youtube.com/vihart) and Sal talk about how we humans perceive things nonlinearly", "path": "khan/math/algebra2/exponential_and_logarithmic_func/log_functions/vi-and-sal-explore-how-we-think-about-scale/", "slug": "vi-and-sal-explore-how-we-think-about-scale", "kind": "Video", "video_id": "4xfOq00BzJA", "keywords": "logarithmic, scale, logarithm, vi, hart", "youtube_id": "4xfOq00BzJA", "readable_id": "vi-and-sal-explore-how-we-think-about-scale"}, "vNbgztA5WVc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vNbgztA5WVc.mp4/vNbgztA5WVc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vNbgztA5WVc.mp4/vNbgztA5WVc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vNbgztA5WVc.m3u8/vNbgztA5WVc.m3u8"}, "duration": 565, "id": "vNbgztA5WVc", "title": "Ecological succession: Change is good", "format": "mp4", "description": "", "path": "crash-course-ecology-06/", "slug": "crash-course-ecology-06", "kind": "Video", "video_id": "vNbgztA5WVc", "keywords": "", "youtube_id": "vNbgztA5WVc", "readable_id": "crash-course-ecology-06"}, "9fiJ7mSzamw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9fiJ7mSzamw.mp4/9fiJ7mSzamw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9fiJ7mSzamw.mp4/9fiJ7mSzamw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9fiJ7mSzamw.m3u8/9fiJ7mSzamw.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/gerard-david-the-virgin-and-child-with-saints-and-donor-c-1510/", "duration": 223, "id": "9fiJ7mSzamw", "title": "David, the Virgin and Child with Saints and Donor", "format": "mp4", "description": "Gerard David, The Virgin and Child with Saints and Donor, c. 1510, oil on oak, 105.80 x 144.40 cm (The National Gallery, London)", "slug": "gerard-david-the-virgin-and-child-with-saints-and-donor-c-1510", "kind": "Video", "video_id": "9fiJ7mSzamw", "keywords": "Gerard David Madonna, Saints, Art History, Renaissance, Flanders, Flemish, Northern Renaissance, Bruges, National Gallery, London, Khan Academy, smarthistory, OER", "youtube_id": "9fiJ7mSzamw", "readable_id": "gerard-david-the-virgin-and-child-with-saints-and-donor-c-1510"}, "u-4BXU--G9s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u-4BXU--G9s.mp4/u-4BXU--G9s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u-4BXU--G9s.mp4/u-4BXU--G9s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u-4BXU--G9s.m3u8/u-4BXU--G9s.m3u8"}, "duration": 187, "id": "u-4BXU--G9s", "title": "Preparing dinosaur fossils", "format": "mp4", "description": "Fossil preparators are highly skilled technicians who restore the naturally fractured bones and teeth of fossil to the original state, somewhat like art conservators restore damaged paintings and sculptures.\nWhen fossils arrive from the field, they are encased in plaster jackets and the rock, or matrix, which was deposited around the fossils. Fossil preparation involves cutting open the plaster jacket and removing this matrix surrounding the fossil.", "path": "dinosaur-fossils-amnh/", "slug": "dinosaur-fossils-amnh", "kind": "Video", "video_id": "u-4BXU--G9s", "keywords": "", "youtube_id": "u-4BXU--G9s", "readable_id": "dinosaur-fossils-amnh"}, "o0azgDKAFNI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o0azgDKAFNI.mp4/o0azgDKAFNI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o0azgDKAFNI.mp4/o0azgDKAFNI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o0azgDKAFNI.m3u8/o0azgDKAFNI.m3u8"}, "duration": 650, "id": "o0azgDKAFNI", "title": "GMAT: Math 45", "format": "mp4", "description": "214-216, pg. 181", "path": "khan/test-prep/gmat/problem-solving/gmat-math-45/", "slug": "gmat-math-45", "kind": "Video", "video_id": "o0azgDKAFNI", "keywords": "gmat, math, problem, solving", "youtube_id": "o0azgDKAFNI", "readable_id": "gmat-math-45"}, "1UQ5IbihJNI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1UQ5IbihJNI.mp4/1UQ5IbihJNI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1UQ5IbihJNI.mp4/1UQ5IbihJNI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1UQ5IbihJNI.m3u8/1UQ5IbihJNI.m3u8"}, "duration": 356, "id": "1UQ5IbihJNI", "title": "Pythagorean theorem in 3D", "format": "mp4", "description": "", "path": "pythagoriean-theorem-in-3d/", "slug": "pythagoriean-theorem-in-3d", "kind": "Video", "video_id": "1UQ5IbihJNI", "keywords": "", "youtube_id": "1UQ5IbihJNI", "readable_id": "pythagoriean-theorem-in-3d"}, "zfZu--psur8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zfZu--psur8.mp4/zfZu--psur8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zfZu--psur8.mp4/zfZu--psur8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zfZu--psur8.m3u8/zfZu--psur8.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/ernst-ludwig-kirchner-street-dresden-1908/", "duration": 595, "id": "zfZu--psur8", "title": "Kirchner, Street, Dresden", "format": "mp4", "description": "Ernst Ludwig Kirchner, Street, Dresden, oil on canvas, 1908 (MoMA)\n\nSpeakers: Dr. Juliana Kreinik, Dr. Steven Zucker, Dr. Beth Harris", "slug": "ernst-ludwig-kirchner-street-dresden-1908", "kind": "Video", "video_id": "zfZu--psur8", "keywords": "German art, Smarthistory", "youtube_id": "zfZu--psur8", "readable_id": "ernst-ludwig-kirchner-street-dresden-1908"}, "qPx7i1jwXX4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qPx7i1jwXX4.mp4/qPx7i1jwXX4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qPx7i1jwXX4.mp4/qPx7i1jwXX4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qPx7i1jwXX4.m3u8/qPx7i1jwXX4.m3u8"}, "duration": 298, "id": "qPx7i1jwXX4", "title": "Modeling with linear equations example 1", "format": "mp4", "description": "Exploring linear relationships", "path": "exploring-linear-relationships/", "slug": "exploring-linear-relationships", "kind": "Video", "video_id": "qPx7i1jwXX4", "keywords": "U03_L2_T4_we2, Exploring, linear, relationships, CC_8_F_3, CC_8_F_4, CC_8_F_5", "youtube_id": "qPx7i1jwXX4", "readable_id": "exploring-linear-relationships"}, "RTUYnNn2j8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RTUYnNn2j8s.mp4/RTUYnNn2j8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RTUYnNn2j8s.mp4/RTUYnNn2j8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RTUYnNn2j8s.m3u8/RTUYnNn2j8s.m3u8"}, "duration": 169, "id": "RTUYnNn2j8s", "title": "\"Morning Catch\" with Jeff Munger", "format": "mp4", "description": "Met curator Jeff Munger on excess in Covered Broth Bowl and Stand from the Vincennes Manufactory.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an educator resource.\u00a0\n", "path": "morning-catch/", "slug": "morning-catch", "kind": "Video", "video_id": "RTUYnNn2j8s", "keywords": "ceramic, daily life, nature, ornate vessel, Europe", "youtube_id": "RTUYnNn2j8s", "readable_id": "morning-catch"}, "_npwsLh0vws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_npwsLh0vws.mp4/_npwsLh0vws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_npwsLh0vws.mp4/_npwsLh0vws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_npwsLh0vws.m3u8/_npwsLh0vws.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/recognizing-functions-example-2/", "duration": 100, "id": "_npwsLh0vws", "title": "Does a vertical line represent a function?", "format": "mp4", "description": "", "slug": "recognizing-functions-example-2", "kind": "Video", "video_id": "_npwsLh0vws", "keywords": "", "youtube_id": "_npwsLh0vws", "readable_id": "recognizing-functions-example-2"}, "A5r7wkwDID4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A5r7wkwDID4.mp4/A5r7wkwDID4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A5r7wkwDID4.mp4/A5r7wkwDID4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A5r7wkwDID4.m3u8/A5r7wkwDID4.m3u8"}, "duration": 520, "id": "A5r7wkwDID4", "title": "Naming benzene derivatives introduction", "format": "mp4", "description": "Naming Benzene Derivatives Introduction", "path": "khan/science/organic-chemistry/aromatic-compounds/naming-aromatic/naming-benzene-derivatives-introduction/", "slug": "naming-benzene-derivatives-introduction", "kind": "Video", "video_id": "A5r7wkwDID4", "keywords": "benzene, toluene, phenol, aniline, benzoic, acid, benzaldehyde", "youtube_id": "A5r7wkwDID4", "readable_id": "naming-benzene-derivatives-introduction"}, "YtvL-LQlPrU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YtvL-LQlPrU.mp4/YtvL-LQlPrU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YtvL-LQlPrU.mp4/YtvL-LQlPrU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YtvL-LQlPrU.m3u8/YtvL-LQlPrU.m3u8"}, "path": "khan/test-prep/mcat/cells/cellular-development/cellular-specialization-differentiation/", "duration": 511, "id": "YtvL-LQlPrU", "title": "Cellular specialization (differentiation)", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "cellular-specialization-differentiation", "kind": "Video", "video_id": "YtvL-LQlPrU", "keywords": "", "youtube_id": "YtvL-LQlPrU", "readable_id": "cellular-specialization-differentiation"}, "4IWfJ7-CYfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4IWfJ7-CYfE.mp4/4IWfJ7-CYfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4IWfJ7-CYfE.mp4/4IWfJ7-CYfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4IWfJ7-CYfE.m3u8/4IWfJ7-CYfE.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/multiplying-decimals-pre-alg/more-intuition-on-multiplying-decimals/", "duration": 389, "id": "4IWfJ7-CYfE", "title": "Multiplying decimals: place value and reordering", "format": "mp4", "description": "We want you to develop an intuition about how to work with decimals. Understanding how you can rewrite decimals by considering the place value will help you multiply!", "slug": "more-intuition-on-multiplying-decimals", "kind": "Video", "video_id": "4IWfJ7-CYfE", "keywords": "", "youtube_id": "4IWfJ7-CYfE", "readable_id": "more-intuition-on-multiplying-decimals"}, "CDmJL-VNlaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CDmJL-VNlaM.mp4/CDmJL-VNlaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CDmJL-VNlaM.mp4/CDmJL-VNlaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CDmJL-VNlaM.m3u8/CDmJL-VNlaM.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/local-linearization/local-linearization-example/", "duration": 391, "id": "CDmJL-VNlaM", "title": "Local linearization example", "format": "mp4", "description": "", "slug": "local-linearization-example", "kind": "Video", "video_id": "CDmJL-VNlaM", "keywords": "", "youtube_id": "CDmJL-VNlaM", "readable_id": "local-linearization-example"}, "2DlxIXYEu4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2DlxIXYEu4s.mp4/2DlxIXYEu4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2DlxIXYEu4s.mp4/2DlxIXYEu4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2DlxIXYEu4s.m3u8/2DlxIXYEu4s.m3u8"}, "duration": 189, "id": "2DlxIXYEu4s", "title": "The Gates Notes: Administrators in Los Altos", "format": "mp4", "description": "Administrators in Los Altos School District share their experiences with Khan Academy", "path": "the-gates-notes-administrators-in-los-altos/", "slug": "the-gates-notes-administrators-in-los-altos", "kind": "Video", "video_id": "2DlxIXYEu4s", "keywords": "Gates, LASD", "youtube_id": "2DlxIXYEu4s", "readable_id": "the-gates-notes-administrators-in-los-altos"}, "KNrEAJeRIdo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KNrEAJeRIdo.mp4/KNrEAJeRIdo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KNrEAJeRIdo.mp4/KNrEAJeRIdo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KNrEAJeRIdo.m3u8/KNrEAJeRIdo.m3u8"}, "duration": 256, "id": "KNrEAJeRIdo", "title": "Geometric series convergence and divergence examples", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/geometric-series-convergence-divergence/", "slug": "geometric-series-convergence-divergence", "kind": "Video", "video_id": "KNrEAJeRIdo", "keywords": "", "youtube_id": "KNrEAJeRIdo", "readable_id": "geometric-series-convergence-divergence"}, "H1H0xmjZMPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H1H0xmjZMPA.mp4/H1H0xmjZMPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H1H0xmjZMPA.mp4/H1H0xmjZMPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H1H0xmjZMPA.m3u8/H1H0xmjZMPA.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/comparing-interpreting-functions/comparing-features-of-functions-2-example-3/", "duration": 270, "id": "H1H0xmjZMPA", "title": "Comparing features of functions (example 3)", "format": "mp4", "description": "", "slug": "comparing-features-of-functions-2-example-3", "kind": "Video", "video_id": "H1H0xmjZMPA", "keywords": "", "youtube_id": "H1H0xmjZMPA", "readable_id": "comparing-features-of-functions-2-example-3"}, "5BEaqN92vDk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5BEaqN92vDk.mp4/5BEaqN92vDk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5BEaqN92vDk.mp4/5BEaqN92vDk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5BEaqN92vDk.m3u8/5BEaqN92vDk.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-31/", "duration": 589, "id": "5BEaqN92vDk", "title": "GMAT: Data sufficiency 31", "format": "mp4", "description": "125-128, pg. 288", "slug": "gmat-data-sufficiency-31", "kind": "Video", "video_id": "5BEaqN92vDk", "keywords": "gmat, data, sufficiency, math", "youtube_id": "5BEaqN92vDk", "readable_id": "gmat-data-sufficiency-31"}, "7uFbPec0tR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7uFbPec0tR4.mp4/7uFbPec0tR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7uFbPec0tR4.mp4/7uFbPec0tR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7uFbPec0tR4.m3u8/7uFbPec0tR4.m3u8"}, "duration": 220, "id": "7uFbPec0tR4", "title": "Marc Ecko - Founder of Ecko Unlimited", "format": "mp4", "description": "Marc Ecko, Founder of Ecko Unlimited, discusses his origins as an entrepreneur and the entrepreneurial culture of Hip Hop. Describing graffiti as the extreme sport of art, Marc talks about how this form of artistic expression was his gateway to entrepreneurship and offers advice to young people.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/marc-ecko/kauffman-marc-ecko1/", "slug": "kauffman-marc-ecko1", "kind": "Video", "video_id": "7uFbPec0tR4", "keywords": "", "youtube_id": "7uFbPec0tR4", "readable_id": "kauffman-marc-ecko1"}, "KkaU2ur3Ymw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KkaU2ur3Ymw.mp4/KkaU2ur3Ymw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KkaU2ur3Ymw.mp4/KkaU2ur3Ymw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KkaU2ur3Ymw.m3u8/KkaU2ur3Ymw.m3u8"}, "duration": 584, "id": "KkaU2ur3Ymw", "title": "Review and intuition why we divide by n-1 for the unbiased sample variance", "format": "mp4", "description": "Reviewing the population mean, sample mean, population variance, sample variance and building an intuition for why we divide by n-1 for the unbiased sample variance", "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/review-and-intuition-why-we-divide-by-n-1-for-the-unbiased-sample-variance/", "slug": "review-and-intuition-why-we-divide-by-n-1-for-the-unbiased-sample-variance", "kind": "Video", "video_id": "KkaU2ur3Ymw", "keywords": "intuition, unbiased estimator, sample variance, statistics", "youtube_id": "KkaU2ur3Ymw", "readable_id": "review-and-intuition-why-we-divide-by-n-1-for-the-unbiased-sample-variance"}, "VymVIXcyErI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VymVIXcyErI.mp4/VymVIXcyErI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VymVIXcyErI.mp4/VymVIXcyErI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VymVIXcyErI.m3u8/VymVIXcyErI.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/ir-signals-for-carbonyl-compounds/", "duration": 772, "id": "VymVIXcyErI", "title": "IR signals for carbonyl compounds", "format": "mp4", "description": "", "slug": "ir-signals-for-carbonyl-compounds", "kind": "Video", "video_id": "VymVIXcyErI", "keywords": "", "youtube_id": "VymVIXcyErI", "readable_id": "ir-signals-for-carbonyl-compounds"}, "GHDrDdu6vrU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GHDrDdu6vrU.mp4/GHDrDdu6vrU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GHDrDdu6vrU.mp4/GHDrDdu6vrU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GHDrDdu6vrU.m3u8/GHDrDdu6vrU.m3u8"}, "path": "khan/math/algebra/quadratics/quadratic_odds_ends/algebra-ii-quadratics-and-shifts/", "duration": 714, "id": "GHDrDdu6vrU", "title": "Algebra II: Quadratics and shifts", "format": "mp4", "description": "32-35, Solving quadratics and graph shifts", "slug": "algebra-ii-quadratics-and-shifts", "kind": "Video", "video_id": "GHDrDdu6vrU", "keywords": "algebra, caslifornia, standards, quadratic, graph, shift", "youtube_id": "GHDrDdu6vrU", "readable_id": "algebra-ii-quadratics-and-shifts"}, "fC2BPnoEs3w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fC2BPnoEs3w.mp4/fC2BPnoEs3w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fC2BPnoEs3w.mp4/fC2BPnoEs3w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fC2BPnoEs3w.m3u8/fC2BPnoEs3w.m3u8"}, "duration": 561, "id": "fC2BPnoEs3w", "title": "Nuclear chemistry", "format": "mp4", "description": "In this episode, Hank welcomes you to the new age, to the new age, welcome to the new age. Here he'll talk about transmutation among elements, isotopes, calculating half-life, radioactive decay, and spontaneous fission.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem38-thought-cafe/", "slug": "chem38-thought-cafe", "kind": "Video", "video_id": "fC2BPnoEs3w", "keywords": "", "youtube_id": "fC2BPnoEs3w", "readable_id": "chem38-thought-cafe"}, "F7r7l1VG-Tw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F7r7l1VG-Tw.mp4/F7r7l1VG-Tw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F7r7l1VG-Tw.mp4/F7r7l1VG-Tw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F7r7l1VG-Tw.m3u8/F7r7l1VG-Tw.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-4-multiplier-effect-and-the-money-supply/", "duration": 667, "id": "F7r7l1VG-Tw", "title": "Banking 4: Multiplier effect and the money supply", "format": "mp4", "description": "How \"money\" is created in a fractional reserve banking system. M0 and M1 definitions of the money suppy. The multiplier effect.", "slug": "banking-4-multiplier-effect-and-the-money-supply", "kind": "Video", "video_id": "F7r7l1VG-Tw", "keywords": "money, multiplier, m0, m1, supply, banking, fed, reserve", "youtube_id": "F7r7l1VG-Tw", "readable_id": "banking-4-multiplier-effect-and-the-money-supply"}, "XiAoUDfrar0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XiAoUDfrar0.mp4/XiAoUDfrar0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XiAoUDfrar0.mp4/XiAoUDfrar0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XiAoUDfrar0.m3u8/XiAoUDfrar0.m3u8"}, "path": "khan/math/geometry/transformations/rigid-transformations-intro/introduction-to-transformations/", "duration": 443, "id": "XiAoUDfrar0", "title": "Introduction to transformations", "format": "mp4", "description": "Introduction to transformations", "slug": "introduction-to-transformations", "kind": "Video", "video_id": "XiAoUDfrar0", "keywords": "", "youtube_id": "XiAoUDfrar0", "readable_id": "introduction-to-transformations"}, "sPPjk4aXzmQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sPPjk4aXzmQ.mp4/sPPjk4aXzmQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sPPjk4aXzmQ.mp4/sPPjk4aXzmQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sPPjk4aXzmQ.m3u8/sPPjk4aXzmQ.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/antiderivative-of-x-1/", "duration": 455, "id": "sPPjk4aXzmQ", "title": "Antiderivative of x^-1", "format": "mp4", "description": "", "slug": "antiderivative-of-x-1", "kind": "Video", "video_id": "sPPjk4aXzmQ", "keywords": "", "youtube_id": "sPPjk4aXzmQ", "readable_id": "antiderivative-of-x-1"}, "PIM4G3IZk5Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PIM4G3IZk5Y.mp4/PIM4G3IZk5Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PIM4G3IZk5Y.mp4/PIM4G3IZk5Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PIM4G3IZk5Y.m3u8/PIM4G3IZk5Y.m3u8"}, "duration": 645, "id": "PIM4G3IZk5Y", "title": "Boyle's law", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/gas-phase/boyles-law/", "slug": "boyles-law", "kind": "Video", "video_id": "PIM4G3IZk5Y", "keywords": "", "youtube_id": "PIM4G3IZk5Y", "readable_id": "boyles-law"}, "bS6EmYzpou4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bS6EmYzpou4.mp4/bS6EmYzpou4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bS6EmYzpou4.mp4/bS6EmYzpou4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bS6EmYzpou4.m3u8/bS6EmYzpou4.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/mult-div-word-problems/multiplying-whole-numbers-and-applications-6/", "duration": 159, "id": "bS6EmYzpou4", "title": "Comparing with multiplication: age", "format": "mp4", "description": "Multiplication helps us compare ages. Hint: learn those multiplication tables. They really help on problems like these.", "slug": "multiplying-whole-numbers-and-applications-6", "kind": "Video", "video_id": "bS6EmYzpou4", "keywords": "U01_L3_T1_we6, Multiplying, Whole, Numbers, and, Applications", "youtube_id": "bS6EmYzpou4", "readable_id": "multiplying-whole-numbers-and-applications-6"}, "W1caxQHNYuc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W1caxQHNYuc.mp4/W1caxQHNYuc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W1caxQHNYuc.mp4/W1caxQHNYuc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W1caxQHNYuc.m3u8/W1caxQHNYuc.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-blended-learning-motives/sscc-blended-moves1/", "duration": 471, "id": "W1caxQHNYuc", "title": "Part 1: Tips from blended-learning teachers about the structures and systems that make blended work", "format": "mp4", "description": "", "slug": "sscc-blended-moves1", "kind": "Video", "video_id": "W1caxQHNYuc", "keywords": "", "youtube_id": "W1caxQHNYuc", "readable_id": "sscc-blended-moves1"}, "f_DTiXZpb8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f_DTiXZpb8M.mp4/f_DTiXZpb8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f_DTiXZpb8M.mp4/f_DTiXZpb8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f_DTiXZpb8M.m3u8/f_DTiXZpb8M.m3u8"}, "duration": 741, "id": "f_DTiXZpb8M", "title": "Compositions of linear transformations 1", "format": "mp4", "description": "Introduction to compositions of Linear Transformations", "path": "khan/math/linear-algebra/matrix_transformations/composition_of_transformations/compositions-of-linear-transformations-1/", "slug": "compositions-of-linear-transformations-1", "kind": "Video", "video_id": "f_DTiXZpb8M", "keywords": "linear, transformation, compositions", "youtube_id": "f_DTiXZpb8M", "readable_id": "compositions-of-linear-transformations-1"}, "xAL0tbYU8QU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xAL0tbYU8QU.mp4/xAL0tbYU8QU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xAL0tbYU8QU.mp4/xAL0tbYU8QU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xAL0tbYU8QU.m3u8/xAL0tbYU8QU.m3u8"}, "duration": 722, "id": "xAL0tbYU8QU", "title": "Sympathetic nerves affect myosin activity", "format": "mp4", "description": "Check out how the amount of Myosin that is tugging on your heart can change depending on your activity level! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-muscle-contraction/sympathetic-nerves-affect-myosin-activity/", "slug": "sympathetic-nerves-affect-myosin-activity", "kind": "Video", "video_id": "xAL0tbYU8QU", "keywords": "", "youtube_id": "xAL0tbYU8QU", "readable_id": "sympathetic-nerves-affect-myosin-activity"}, "Tbq-KZaXiL4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tbq-KZaXiL4.mp4/Tbq-KZaXiL4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tbq-KZaXiL4.mp4/Tbq-KZaXiL4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tbq-KZaXiL4.m3u8/Tbq-KZaXiL4.m3u8"}, "path": "khan/science/health-and-medicine/nervous-system-and-sensory-infor/nervous-system-introduction/neuronal-synapses-chemical/", "duration": 953, "id": "Tbq-KZaXiL4", "title": "Neuronal synapses (chemical)", "format": "mp4", "description": "How one neuron can stimulate (or inhibit) another neuron at a chemical synapse", "slug": "neuronal-synapses-chemical", "kind": "Video", "video_id": "Tbq-KZaXiL4", "keywords": "neuron, chemical, synapse", "youtube_id": "Tbq-KZaXiL4", "readable_id": "neuronal-synapses-chemical"}, "9_VCk9tWT0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9_VCk9tWT0Y.mp4/9_VCk9tWT0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9_VCk9tWT0Y.mp4/9_VCk9tWT0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9_VCk9tWT0Y.m3u8/9_VCk9tWT0Y.m3u8"}, "duration": 441, "id": "9_VCk9tWT0Y", "title": "Expression terms, factors, and coefficients", "format": "mp4", "description": "Think of an expression as a sentence. A sentence has parts, and so does an expression. We think this is going to make sense, but take your time and pause if necessary!", "path": "expression-terms-factors-and-coefficients/", "slug": "expression-terms-factors-and-coefficients", "kind": "Video", "video_id": "9_VCk9tWT0Y", "keywords": "", "youtube_id": "9_VCk9tWT0Y", "readable_id": "expression-terms-factors-and-coefficients"}, "S-9iY1OgbDE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S-9iY1OgbDE.mp4/S-9iY1OgbDE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S-9iY1OgbDE.mp4/S-9iY1OgbDE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S-9iY1OgbDE.m3u8/S-9iY1OgbDE.m3u8"}, "duration": 412, "id": "S-9iY1OgbDE", "title": "Pegging the yuan", "format": "mp4", "description": "How the Chinese Central Bank could peg the Yuan to the dollar by printing Yuan and buying dollars (building up a dollar reserve)", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/pegging-the-yuan/", "slug": "pegging-the-yuan", "kind": "Video", "video_id": "S-9iY1OgbDE", "keywords": "yuan, dollar, renminbi, peg, currency, reserve, central, bank, china", "youtube_id": "S-9iY1OgbDE", "readable_id": "pegging-the-yuan"}, "FK6-tZ5D7xM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FK6-tZ5D7xM.mp4/FK6-tZ5D7xM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FK6-tZ5D7xM.mp4/FK6-tZ5D7xM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FK6-tZ5D7xM.m3u8/FK6-tZ5D7xM.m3u8"}, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/tangent-graph/", "duration": 612, "id": "FK6-tZ5D7xM", "title": "Tangent graph", "format": "mp4", "description": "", "slug": "tangent-graph", "kind": "Video", "video_id": "FK6-tZ5D7xM", "keywords": "", "youtube_id": "FK6-tZ5D7xM", "readable_id": "tangent-graph"}, "odpzXKZDTt0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/odpzXKZDTt0.mp4/odpzXKZDTt0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/odpzXKZDTt0.mp4/odpzXKZDTt0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/odpzXKZDTt0.m3u8/odpzXKZDTt0.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-design-building-lego-robots/", "duration": 113, "id": "odpzXKZDTt0", "title": "DLab: Inspired by sumo robots", "format": "mp4", "description": "Inspiration from Khan Academy's Discovery Lab", "slug": "discovery-lab-design-building-lego-robots", "kind": "Video", "video_id": "odpzXKZDTt0", "keywords": "", "youtube_id": "odpzXKZDTt0", "readable_id": "discovery-lab-design-building-lego-robots"}, "C_OmWlMjsxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C_OmWlMjsxQ.mp4/C_OmWlMjsxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C_OmWlMjsxQ.mp4/C_OmWlMjsxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C_OmWlMjsxQ.m3u8/C_OmWlMjsxQ.m3u8"}, "path": "khan/humanities/art-1010/minimalism-earthworks/moma-serra-intersection-ii/", "duration": 218, "id": "C_OmWlMjsxQ", "title": "Richard Serra, \"Intersection II\"", "format": "mp4", "description": "Richard Serra talks about how this sculpture made of 4 identical plates, allows us to explore 3 very different spaces. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "slug": "moma-serra-intersection-ii", "kind": "Video", "video_id": "C_OmWlMjsxQ", "keywords": "", "youtube_id": "C_OmWlMjsxQ", "readable_id": "moma-serra-intersection-ii"}, "ViFLPsLTO1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ViFLPsLTO1k.mp4/ViFLPsLTO1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ViFLPsLTO1k.mp4/ViFLPsLTO1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ViFLPsLTO1k.m3u8/ViFLPsLTO1k.m3u8"}, "duration": 160, "id": "ViFLPsLTO1k", "title": "Find the volume of a ring", "format": "mp4", "description": "See if you can find the incremental volume of a ring in cubic inches. You'll need to put to use your knowledge of how to measure volume.", "path": "volume-of-gold-ring/", "slug": "volume-of-gold-ring", "kind": "Video", "video_id": "ViFLPsLTO1k", "keywords": "", "youtube_id": "ViFLPsLTO1k", "readable_id": "volume-of-gold-ring"}, "hiRGC4lS9k8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hiRGC4lS9k8.mp4/hiRGC4lS9k8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hiRGC4lS9k8.mp4/hiRGC4lS9k8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hiRGC4lS9k8.m3u8/hiRGC4lS9k8.m3u8"}, "duration": 568, "id": "hiRGC4lS9k8", "title": "The Silk Road and ancient trade", "format": "mp4", "description": "In which John Green teaches you about the so-called Silk Road, a network of trade routes where goods such as ivory, silver, iron, wine, and yes, silk were exchanged across the ancient world, from China to the West. Along with all these consumer goods, things like disease and ideas made the trip as well. As is his custom, John ties the Silk Road to modern life, and the ways that we get our stuff today.", "path": "khan/humanities/history/crashcourse-worldhistory/so-thats-where-that-comes-from-2/crash-course-world-history-09/", "slug": "crash-course-world-history-09", "kind": "Video", "video_id": "hiRGC4lS9k8", "keywords": "crash course", "youtube_id": "hiRGC4lS9k8", "readable_id": "crash-course-world-history-09"}, "9hM32lsQ4aI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9hM32lsQ4aI.mp4/9hM32lsQ4aI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9hM32lsQ4aI.mp4/9hM32lsQ4aI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9hM32lsQ4aI.m3u8/9hM32lsQ4aI.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/addition_carrying/example-adding-with-carrying/", "duration": 184, "id": "9hM32lsQ4aI", "title": "Adding three digit numbers with regrouping", "format": "mp4", "description": "In the old days 'regrouping' was known as \"carrying.\" It's the same idea now as then: moving the tens (or hundreds or thousands) over to the next column.", "slug": "example-adding-with-carrying", "kind": "Video", "video_id": "9hM32lsQ4aI", "keywords": "", "youtube_id": "9hM32lsQ4aI", "readable_id": "example-adding-with-carrying"}, "GFnucXG0K1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GFnucXG0K1I.mp4/GFnucXG0K1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GFnucXG0K1I.mp4/GFnucXG0K1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GFnucXG0K1I.m3u8/GFnucXG0K1I.m3u8"}, "path": "khan/partner-content/all-star-orchestra/elements-of-music/lesson-3-meters-in-double-and-triple-time-upbeats/", "duration": 462, "id": "GFnucXG0K1I", "title": "Lesson 3: Meters in double and triple time, upbeats", "format": "mp4", "description": "", "slug": "lesson-3-meters-in-double-and-triple-time-upbeats", "kind": "Video", "video_id": "GFnucXG0K1I", "keywords": "", "youtube_id": "GFnucXG0K1I", "readable_id": "lesson-3-meters-in-double-and-triple-time-upbeats"}, "97POZGcfoY8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/97POZGcfoY8.mp4/97POZGcfoY8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/97POZGcfoY8.mp4/97POZGcfoY8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/97POZGcfoY8.m3u8/97POZGcfoY8.m3u8"}, "duration": 484, "id": "97POZGcfoY8", "title": "VSEPR for 2 electron clouds", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/vsepr-for-2-electron-clouds/", "slug": "vsepr-for-2-electron-clouds", "kind": "Video", "video_id": "97POZGcfoY8", "keywords": "", "youtube_id": "97POZGcfoY8", "readable_id": "vsepr-for-2-electron-clouds"}, "vQnG0fyEr_w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vQnG0fyEr_w.mp4/vQnG0fyEr_w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vQnG0fyEr_w.mp4/vQnG0fyEr_w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vQnG0fyEr_w.m3u8/vQnG0fyEr_w.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/kant-on-space-part-1/", "duration": 435, "id": "vQnG0fyEr_w", "title": "Kant: On Space part 1", "format": "mp4", "description": "What is space? Kant's answer is a head-scratcher:\u00a0space is merely a form of intuition. Scott Edgar explains this rather perplexing answer in accessible, every-day language. He also lays out \u00a0Kant's most famous argument for this view of space (the \"Argument from Geometry\"). Never before has it been so easy to get a handle on Kant's views on space!\n\nSpeaker: Dr. Scott Edgar, Assistant Professor, Saint Mary's University\n\n\u00a0\n", "slug": "kant-on-space-part-1", "kind": "Video", "video_id": "vQnG0fyEr_w", "keywords": "", "youtube_id": "vQnG0fyEr_w", "readable_id": "kant-on-space-part-1"}, "wyT4IvTGSwk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wyT4IvTGSwk.mp4/wyT4IvTGSwk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wyT4IvTGSwk.mp4/wyT4IvTGSwk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wyT4IvTGSwk.m3u8/wyT4IvTGSwk.m3u8"}, "duration": 272, "id": "wyT4IvTGSwk", "title": "Barnett Newman", "format": "mp4", "description": "Set aside the everyday and enter the profound, even spiritual space of Barnett Newman's paintings. To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-barnett-newman/", "slug": "moma-barnett-newman", "kind": "Video", "video_id": "wyT4IvTGSwk", "keywords": "", "youtube_id": "wyT4IvTGSwk", "readable_id": "moma-barnett-newman"}, "B-J9IHGivfQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B-J9IHGivfQ.mp4/B-J9IHGivfQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B-J9IHGivfQ.mp4/B-J9IHGivfQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B-J9IHGivfQ.m3u8/B-J9IHGivfQ.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/social-perception-the-just-world-hypothesis/", "duration": 393, "id": "B-J9IHGivfQ", "title": "Social perception - The Just World Hypothesis", "format": "mp4", "description": "", "slug": "social-perception-the-just-world-hypothesis", "kind": "Video", "video_id": "B-J9IHGivfQ", "keywords": "", "youtube_id": "B-J9IHGivfQ", "readable_id": "social-perception-the-just-world-hypothesis"}, "-ngmZo-dvy4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-ngmZo-dvy4.mp4/-ngmZo-dvy4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-ngmZo-dvy4.mp4/-ngmZo-dvy4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-ngmZo-dvy4.m3u8/-ngmZo-dvy4.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/titian-madonna-of-the-pesaro-family/", "duration": 426, "id": "-ngmZo-dvy4", "title": "Titian, Madonna of the Pesaro Family", "format": "mp4", "description": "Titian, Madonna of the Pesaro Family, 1519-26, oil on canvas, 16' x 9' (Santa Maria Gloriosa die Frari, Venice). Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "titian-madonna-of-the-pesaro-family", "kind": "Video", "video_id": "-ngmZo-dvy4", "keywords": "Titian", "youtube_id": "-ngmZo-dvy4", "readable_id": "titian-madonna-of-the-pesaro-family"}, "TljVBB7gxbE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TljVBB7gxbE.mp4/TljVBB7gxbE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TljVBB7gxbE.mp4/TljVBB7gxbE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TljVBB7gxbE.m3u8/TljVBB7gxbE.m3u8"}, "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-15-part-2/", "duration": 693, "id": "TljVBB7gxbE", "title": "2003 AIME II problem 15 (part 2)", "format": "mp4", "description": "Finding the sum of the absolute value of the imaginary parts of the square of the roots of a crazy polynomial", "slug": "2003-aime-ii-problem-15-part-2", "kind": "Video", "video_id": "TljVBB7gxbE", "keywords": "complex, analysis, trigonometry, competition, math", "youtube_id": "TljVBB7gxbE", "readable_id": "2003-aime-ii-problem-15-part-2"}, "uo5a6Kxf1rA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uo5a6Kxf1rA.mp4/uo5a6Kxf1rA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uo5a6Kxf1rA.mp4/uo5a6Kxf1rA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uo5a6Kxf1rA.m3u8/uo5a6Kxf1rA.m3u8"}, "duration": 109, "id": "uo5a6Kxf1rA", "title": "Mighty mover angel", "format": "mp4", "description": "William talks about the angels in Giovanni Battista Tiepolo's Miracle of the Holy House of Loreto, c. 1744.\u00a0This is from an imaginative tour at the Getty Center: The Supernatural in Art. Follow us on Google+ to stay in touch.", "path": "mighty-mover-angel/", "slug": "mighty-mover-angel", "kind": "Video", "video_id": "uo5a6Kxf1rA", "keywords": "", "youtube_id": "uo5a6Kxf1rA", "readable_id": "mighty-mover-angel"}, "JnpqlXN9Whw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JnpqlXN9Whw.mp4/JnpqlXN9Whw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JnpqlXN9Whw.mp4/JnpqlXN9Whw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JnpqlXN9Whw.m3u8/JnpqlXN9Whw.m3u8"}, "duration": 434, "id": "JnpqlXN9Whw", "title": "Negative exponents", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/exponents-radicals/negative-exponents-tutorial/negative-exponents/", "slug": "negative-exponents", "kind": "Video", "video_id": "JnpqlXN9Whw", "keywords": "", "youtube_id": "JnpqlXN9Whw", "readable_id": "negative-exponents"}, "iEVciE2j6ZA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iEVciE2j6ZA.mp4/iEVciE2j6ZA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iEVciE2j6ZA.mp4/iEVciE2j6ZA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iEVciE2j6ZA.m3u8/iEVciE2j6ZA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/obstructive-shock/", "duration": 677, "id": "iEVciE2j6ZA", "title": "Obstructive shock", "format": "mp4", "description": "", "slug": "obstructive-shock", "kind": "Video", "video_id": "iEVciE2j6ZA", "keywords": "", "youtube_id": "iEVciE2j6ZA", "readable_id": "obstructive-shock"}, "Q3wfb0CPhIY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q3wfb0CPhIY.mp4/Q3wfb0CPhIY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q3wfb0CPhIY.mp4/Q3wfb0CPhIY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q3wfb0CPhIY.m3u8/Q3wfb0CPhIY.m3u8"}, "path": "khan/math/pre-algebra/measurement/area-basics/area-of-rectangles-and-the-distributive-property/", "duration": 229, "id": "Q3wfb0CPhIY", "title": "Area of rectangles and the distributive property", "format": "mp4", "description": "Use the distributive property to find area of rectangles.", "slug": "area-of-rectangles-and-the-distributive-property", "kind": "Video", "video_id": "Q3wfb0CPhIY", "keywords": "", "youtube_id": "Q3wfb0CPhIY", "readable_id": "area-of-rectangles-and-the-distributive-property"}, "eROhIFBGKuU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eROhIFBGKuU.mp4/eROhIFBGKuU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eROhIFBGKuU.mp4/eROhIFBGKuU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eROhIFBGKuU.m3u8/eROhIFBGKuU.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/membrane-potentials-part-2/", "duration": 525, "id": "eROhIFBGKuU", "title": "Membrane potentials - part 2", "format": "mp4", "description": "Find out how a cell that is permeable to one ion can become charged (either positive or negative) if there is permeability and a concentration gradient. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "membrane-potentials-part-2", "kind": "Video", "video_id": "eROhIFBGKuU", "keywords": "", "youtube_id": "eROhIFBGKuU", "readable_id": "membrane-potentials-part-2"}, "5RRyX9mI5Lw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5RRyX9mI5Lw.mp4/5RRyX9mI5Lw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5RRyX9mI5Lw.mp4/5RRyX9mI5Lw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5RRyX9mI5Lw.m3u8/5RRyX9mI5Lw.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/mass-media/", "duration": 357, "id": "5RRyX9mI5Lw", "title": "Mass media", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "mass-media", "kind": "Video", "video_id": "5RRyX9mI5Lw", "keywords": "", "youtube_id": "5RRyX9mI5Lw", "readable_id": "mass-media"}, "rBaCDC52NOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rBaCDC52NOY.mp4/rBaCDC52NOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rBaCDC52NOY.mp4/rBaCDC52NOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rBaCDC52NOY.m3u8/rBaCDC52NOY.m3u8"}, "path": "khan/math/recreational-math/puzzles/brain-teasers/brain-teaser-blue-forehead-room/", "duration": 445, "id": "rBaCDC52NOY", "title": "Blue forehead room brain teaser", "format": "mp4", "description": "What happens when 100 perfect logicians have to figure out if they each have a blue forehead?", "slug": "brain-teaser-blue-forehead-room", "kind": "Video", "video_id": "rBaCDC52NOY", "keywords": "brain, teaser, recursion", "youtube_id": "rBaCDC52NOY", "readable_id": "brain-teaser-blue-forehead-room"}, "y-1Gh4ewklY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y-1Gh4ewklY.mp4/y-1Gh4ewklY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y-1Gh4ewklY.mp4/y-1Gh4ewklY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y-1Gh4ewklY.m3u8/y-1Gh4ewklY.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/mortgages-tutorial/introduction-to-mortgage-loans/", "duration": 1107, "id": "y-1Gh4ewklY", "title": "Introduction to mortgage loans", "format": "mp4", "description": "Introduction to mortgage loans", "slug": "introduction-to-mortgage-loans", "kind": "Video", "video_id": "y-1Gh4ewklY", "keywords": "mortgage, loans", "youtube_id": "y-1Gh4ewklY", "readable_id": "introduction-to-mortgage-loans"}, "yogD_-Op4Wc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yogD_-Op4Wc.mp4/yogD_-Op4Wc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yogD_-Op4Wc.mp4/yogD_-Op4Wc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yogD_-Op4Wc.m3u8/yogD_-Op4Wc.m3u8"}, "duration": 1312, "id": "yogD_-Op4Wc", "title": "Napoleon and the War of the Third Coalition", "format": "mp4", "description": "Napoleon leads France to become the dominant power in Europe. Napoleon I becomes Emperor of France.", "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/napoleon-and-the-war-of-the-third-coalition/", "slug": "napoleon-and-the-war-of-the-third-coalition", "kind": "Video", "video_id": "yogD_-Op4Wc", "keywords": "Napoleon, Bonaparte, France, Coalition, Wars", "youtube_id": "yogD_-Op4Wc", "readable_id": "napoleon-and-the-war-of-the-third-coalition"}, "i6lfVUp5RW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i6lfVUp5RW8.mp4/i6lfVUp5RW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i6lfVUp5RW8.mp4/i6lfVUp5RW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i6lfVUp5RW8.m3u8/i6lfVUp5RW8.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-scientific-notation/scientific-notation/", "duration": 686, "id": "i6lfVUp5RW8", "title": "Scientific notation", "format": "mp4", "description": "Scientific Notation", "slug": "scientific-notation", "kind": "Video", "video_id": "i6lfVUp5RW8", "keywords": "Scientific, Notation", "youtube_id": "i6lfVUp5RW8", "readable_id": "scientific-notation"}, "BSf_YIyZzi8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BSf_YIyZzi8.mp4/BSf_YIyZzi8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BSf_YIyZzi8.mp4/BSf_YIyZzi8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BSf_YIyZzi8.m3u8/BSf_YIyZzi8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/ventricular-fibrillation/", "duration": 529, "id": "BSf_YIyZzi8", "title": "What is ventricle fibrillation (Vfib)?", "format": "mp4", "description": "", "slug": "ventricular-fibrillation", "kind": "Video", "video_id": "BSf_YIyZzi8", "keywords": "", "youtube_id": "BSf_YIyZzi8", "readable_id": "ventricular-fibrillation"}, "YDYxQMBm50k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YDYxQMBm50k.mp4/YDYxQMBm50k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YDYxQMBm50k.mp4/YDYxQMBm50k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YDYxQMBm50k.m3u8/YDYxQMBm50k.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/victorian-late/sir-lawrence-alma-tadema-a-reading-from-homer-1885/", "duration": 241, "id": "YDYxQMBm50k", "title": "Alma-Tadema, Listening to Homer", "format": "mp4", "description": "Sir Lawrence Alma-Tadema, A Reading from Homer, 1885, oil on canvas, 36-1/8 x 72-1/4 inches / 91.8 x 183.5 cm (Philadelphia Museum of Art)", "slug": "sir-lawrence-alma-tadema-a-reading-from-homer-1885", "kind": "Video", "video_id": "YDYxQMBm50k", "keywords": "Sir Lawrence Alma-Tadema, Alma-Tadema, A Reading from Homer, Reading, Homer, 1885, Philadelphia Museum of Art, Philadelphia, Victorian, Ancient Greece, Epic Poetry, Listening, art, painting, art history, Khan Academy, Google Art Project, Smarthistory, OER", "youtube_id": "YDYxQMBm50k", "readable_id": "sir-lawrence-alma-tadema-a-reading-from-homer-1885"}, "Es8yvgc5kvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Es8yvgc5kvY.mp4/Es8yvgc5kvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Es8yvgc5kvY.mp4/Es8yvgc5kvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Es8yvgc5kvY.m3u8/Es8yvgc5kvY.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/writing-expressions-2-exercise-example/", "duration": 143, "id": "Es8yvgc5kvY", "title": "Writing algebraic expressions example 2", "format": "mp4", "description": "Like other exercises in this tutorial, we're rewriting statements into algebraic expression. This time we have to choose which is the correct one among those given.", "slug": "writing-expressions-2-exercise-example", "kind": "Video", "video_id": "Es8yvgc5kvY", "keywords": "", "youtube_id": "Es8yvgc5kvY", "readable_id": "writing-expressions-2-exercise-example"}, "qHO1xH4ilZs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qHO1xH4ilZs.mp4/qHO1xH4ilZs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qHO1xH4ilZs.mp4/qHO1xH4ilZs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qHO1xH4ilZs.m3u8/qHO1xH4ilZs.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-6/", "duration": 634, "id": "qHO1xH4ilZs", "title": "GMAT: Data sufficiency 6", "format": "mp4", "description": "28-32, pg. 280", "slug": "gmat-data-sufficiency-6", "kind": "Video", "video_id": "qHO1xH4ilZs", "keywords": "GMAT, math, data, sufficiency", "youtube_id": "qHO1xH4ilZs", "readable_id": "gmat-data-sufficiency-6"}, "LMHxxvbzFqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LMHxxvbzFqc.mp4/LMHxxvbzFqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LMHxxvbzFqc.mp4/LMHxxvbzFqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LMHxxvbzFqc.m3u8/LMHxxvbzFqc.m3u8"}, "duration": 482, "id": "LMHxxvbzFqc", "title": "Healthcare system overview", "format": "mp4", "description": "The different roles in the healthcare system", "path": "khan/science/health-and-medicine/health-care-system/healthcare-system-overview/", "slug": "healthcare-system-overview", "kind": "Video", "video_id": "LMHxxvbzFqc", "keywords": "healthcare, economics", "youtube_id": "LMHxxvbzFqc", "readable_id": "healthcare-system-overview"}, "iW3EP2FE5zc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iW3EP2FE5zc.mp4/iW3EP2FE5zc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iW3EP2FE5zc.mp4/iW3EP2FE5zc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iW3EP2FE5zc.m3u8/iW3EP2FE5zc.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-14/", "duration": 712, "id": "iW3EP2FE5zc", "title": "GMAT: Data sufficiency 14", "format": "mp4", "description": "63-68, pgs. 282-283", "slug": "gmat-data-sufficiency-14", "kind": "Video", "video_id": "iW3EP2FE5zc", "keywords": "GMAT, data, sufficiency, math", "youtube_id": "iW3EP2FE5zc", "readable_id": "gmat-data-sufficiency-14"}, "un5wOmL3LBQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/un5wOmL3LBQ.mp4/un5wOmL3LBQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/un5wOmL3LBQ.mp4/un5wOmL3LBQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/un5wOmL3LBQ.m3u8/un5wOmL3LBQ.m3u8"}, "path": "khan/partner-content/big-history-project/future/other-materials10/bhp-hlg-visions-future/", "duration": 180, "id": "un5wOmL3LBQ", "title": "Henry Louis Gates, Jr.: Visions of the Future", "format": "mp4", "description": "How will resources and opportunity be distributed in the future? American Scholar Henry Louis Gates, Jr. hopes that the advances of technology will benefit everyone.", "slug": "bhp-hlg-visions-future", "kind": "Video", "video_id": "un5wOmL3LBQ", "keywords": "", "youtube_id": "un5wOmL3LBQ", "readable_id": "bhp-hlg-visions-future"}, "p4M2q1t_Up8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p4M2q1t_Up8.mp4/p4M2q1t_Up8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p4M2q1t_Up8.mp4/p4M2q1t_Up8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p4M2q1t_Up8.m3u8/p4M2q1t_Up8.m3u8"}, "duration": 429, "id": "p4M2q1t_Up8", "title": "Birch reduction I", "format": "mp4", "description": "The mechanism of the Birch Reduction", "path": "khan/science/organic-chemistry/aromatic-compounds/other-reactions-and-synthesis/birch-reduction-i/", "slug": "birch-reduction-i", "kind": "Video", "video_id": "p4M2q1t_Up8", "keywords": "", "youtube_id": "p4M2q1t_Up8", "readable_id": "birch-reduction-i"}, "9wYbsSrDwbA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9wYbsSrDwbA.mp4/9wYbsSrDwbA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9wYbsSrDwbA.mp4/9wYbsSrDwbA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9wYbsSrDwbA.m3u8/9wYbsSrDwbA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/teeth/", "duration": 476, "id": "9wYbsSrDwbA", "title": "Teeth", "format": "mp4", "description": "", "slug": "teeth", "kind": "Video", "video_id": "9wYbsSrDwbA", "keywords": "MCAT", "youtube_id": "9wYbsSrDwbA", "readable_id": "teeth"}, "vItRHYu-A88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vItRHYu-A88.mp4/vItRHYu-A88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vItRHYu-A88.mp4/vItRHYu-A88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vItRHYu-A88.m3u8/vItRHYu-A88.m3u8"}, "duration": 454, "id": "vItRHYu-A88", "title": "Money supply and demand impacting interest rates", "format": "mp4", "description": "Examples showing how various factors can affect interest rates", "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/interest-price-of-money-tutorial/money-supply-and-demand-impacting-interest-rates/", "slug": "money-supply-and-demand-impacting-interest-rates", "kind": "Video", "video_id": "vItRHYu-A88", "keywords": "microeconomics, macroeconomics", "youtube_id": "vItRHYu-A88", "readable_id": "money-supply-and-demand-impacting-interest-rates"}, "8YBQQ0GeusM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8YBQQ0GeusM.mp4/8YBQQ0GeusM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8YBQQ0GeusM.mp4/8YBQQ0GeusM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8YBQQ0GeusM.m3u8/8YBQQ0GeusM.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-more-trig/", "duration": 741, "id": "8YBQQ0GeusM", "title": "CA Geometry: More trig", "format": "mp4", "description": "66-70, more trigonometry", "slug": "ca-geometry-more-trig", "kind": "Video", "video_id": "8YBQQ0GeusM", "keywords": "geometry, trigonometry, trig", "youtube_id": "8YBQQ0GeusM", "readable_id": "ca-geometry-more-trig"}, "3lHBgFvr3yE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3lHBgFvr3yE.mp4/3lHBgFvr3yE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3lHBgFvr3yE.mp4/3lHBgFvr3yE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3lHBgFvr3yE.m3u8/3lHBgFvr3yE.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/regrouping-from-0-when-subtracting-three-digit-numbers/", "duration": 144, "id": "3lHBgFvr3yE", "title": "Subtracting: Regrouping from zero", "format": "mp4", "description": "In Kindergarten you learned the importance of sharing, right? In math, when we lack value in a number to subtract with you borrow or regroup from a neighbor. Sometimes you borrow from the tens...but what if you have zero tens? Ha....let's watch this and learn!", "slug": "regrouping-from-0-when-subtracting-three-digit-numbers", "kind": "Video", "video_id": "3lHBgFvr3yE", "keywords": "", "youtube_id": "3lHBgFvr3yE", "readable_id": "regrouping-from-0-when-subtracting-three-digit-numbers"}, "EPXilYOa71c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EPXilYOa71c.mp4/EPXilYOa71c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EPXilYOa71c.mp4/EPXilYOa71c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EPXilYOa71c.m3u8/EPXilYOa71c.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/intro-to-rsa-encryption/", "duration": 236, "id": "EPXilYOa71c", "title": "RSA encryption: Step 1", "format": "mp4", "description": "Introduction to why we would need RSA", "slug": "intro-to-rsa-encryption", "kind": "Video", "video_id": "EPXilYOa71c", "keywords": "RSA, encryption, public key cryptography", "youtube_id": "EPXilYOa71c", "readable_id": "intro-to-rsa-encryption"}, "VWAfEbgf1Po": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VWAfEbgf1Po.mp4/VWAfEbgf1Po.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VWAfEbgf1Po.mp4/VWAfEbgf1Po.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VWAfEbgf1Po.m3u8/VWAfEbgf1Po.m3u8"}, "path": "khan/math/precalculus/prob_comb/independent_events_precalc/independent-events-2/", "duration": 284, "id": "VWAfEbgf1Po", "title": "Test taking probability and independent events", "format": "mp4", "description": "Have you ever taken a test and discovered you have no choice but to guess on a couple of problems? In this example problem, we are considering the probability of two independent events occurring.", "slug": "independent-events-2", "kind": "Video", "video_id": "VWAfEbgf1Po", "keywords": "U12_L2_T2_we2, Independent, Events, CC_7_SP_8_b, CC_7_SP_8_c", "youtube_id": "VWAfEbgf1Po", "readable_id": "independent-events-2"}, "nJ-PtF14EFw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nJ-PtF14EFw.mp4/nJ-PtF14EFw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nJ-PtF14EFw.mp4/nJ-PtF14EFw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nJ-PtF14EFw.m3u8/nJ-PtF14EFw.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/bohr-model-energy-levels/", "duration": 587, "id": "nJ-PtF14EFw", "title": "Bohr model energy levels", "format": "mp4", "description": "", "slug": "bohr-model-energy-levels", "kind": "Video", "video_id": "nJ-PtF14EFw", "keywords": "", "youtube_id": "nJ-PtF14EFw", "readable_id": "bohr-model-energy-levels"}, "pMFv6liWK4M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pMFv6liWK4M.mp4/pMFv6liWK4M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pMFv6liWK4M.mp4/pMFv6liWK4M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pMFv6liWK4M.m3u8/pMFv6liWK4M.m3u8"}, "duration": 1409, "id": "pMFv6liWK4M", "title": "Linear subspaces", "format": "mp4", "description": "Introduction to linear subspaces of Rn", "path": "khan/math/linear-algebra/vectors_and_spaces/subspace_basis/linear-subspaces/", "slug": "linear-subspaces", "kind": "Video", "video_id": "pMFv6liWK4M", "keywords": "Linear, Algebra, Vectors, span, combination, subspace", "youtube_id": "pMFv6liWK4M", "readable_id": "linear-subspaces"}, "wd4cRAoBOiE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wd4cRAoBOiE.mp4/wd4cRAoBOiE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wd4cRAoBOiE.mp4/wd4cRAoBOiE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wd4cRAoBOiE.m3u8/wd4cRAoBOiE.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/place_value/place-value-2/", "duration": 249, "id": "wd4cRAoBOiE", "title": "Writing a number in standard form", "format": "mp4", "description": "Here's a BIG number that needs to be expressed in standard form. Can you do this example with us? I bet you can!", "slug": "place-value-2", "kind": "Video", "video_id": "wd4cRAoBOiE", "keywords": "U01_L1_T1_we2, Place, Value", "youtube_id": "wd4cRAoBOiE", "readable_id": "place-value-2"}, "jpKjXtywTlQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jpKjXtywTlQ.mp4/jpKjXtywTlQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jpKjXtywTlQ.mp4/jpKjXtywTlQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jpKjXtywTlQ.m3u8/jpKjXtywTlQ.m3u8"}, "duration": 793, "id": "jpKjXtywTlQ", "title": "2003 AIME II problem 7", "format": "mp4", "description": "", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-7/", "slug": "2003-aime-ii-problem-7", "kind": "Video", "video_id": "jpKjXtywTlQ", "keywords": "circumscribed, circle, triangle, circumcircle, rhombus, CC_7_G_6", "youtube_id": "jpKjXtywTlQ", "readable_id": "2003-aime-ii-problem-7"}, "27OStSo6OkA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/27OStSo6OkA.mp4/27OStSo6OkA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/27OStSo6OkA.mp4/27OStSo6OkA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/27OStSo6OkA.m3u8/27OStSo6OkA.m3u8"}, "duration": 61, "id": "27OStSo6OkA", "title": "KA in Idaho: Highlights (2014)", "format": "mp4", "description": "Discover how schools across Idaho are using Khan Academy.", "path": "khan-academy-in-idaho-highlights/", "slug": "khan-academy-in-idaho-highlights", "kind": "Video", "video_id": "27OStSo6OkA", "keywords": "", "youtube_id": "27OStSo6OkA", "readable_id": "khan-academy-in-idaho-highlights"}, "oeyBfrx5RJY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oeyBfrx5RJY.mp4/oeyBfrx5RJY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oeyBfrx5RJY.mp4/oeyBfrx5RJY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oeyBfrx5RJY.m3u8/oeyBfrx5RJY.m3u8"}, "duration": 468, "id": "oeyBfrx5RJY", "title": "Aldehyde introduction", "format": "mp4", "description": "Aldehyde introduction", "path": "khan/science/organic-chemistry/aldehydes-ketones/nomenclature-aldehyde-ketone/aldehyde-introduction/", "slug": "aldehyde-introduction", "kind": "Video", "video_id": "oeyBfrx5RJY", "keywords": "aldehyde, formaldehyde, acetalaldehyde, benzaldehyde, cinnamaldehyde", "youtube_id": "oeyBfrx5RJY", "readable_id": "aldehyde-introduction"}, "hxZ6uooEJOk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hxZ6uooEJOk.mp4/hxZ6uooEJOk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hxZ6uooEJOk.mp4/hxZ6uooEJOk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hxZ6uooEJOk.m3u8/hxZ6uooEJOk.m3u8"}, "duration": 949, "id": "hxZ6uooEJOk", "title": "Confidence interval of difference of means", "format": "mp4", "description": "Confidence Interval of Difference of Means", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/confidence-interval-of-difference-of-means/", "slug": "confidence-interval-of-difference-of-means", "kind": "Video", "video_id": "hxZ6uooEJOk", "keywords": "Confidence, Interval, of, Difference, Means, CC_7_SP_2, CC_7_SP_3, CC_7_SP_4", "youtube_id": "hxZ6uooEJOk", "readable_id": "confidence-interval-of-difference-of-means"}, "2pwnr_soZEU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2pwnr_soZEU.mp4/2pwnr_soZEU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2pwnr_soZEU.mp4/2pwnr_soZEU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2pwnr_soZEU.m3u8/2pwnr_soZEU.m3u8"}, "duration": 503, "id": "2pwnr_soZEU", "title": "Applying inverse trig function with model", "format": "mp4", "description": "", "path": "khan/math/trigonometry/trig-function-graphs/modeling-periodic-functions/inverse-trig-with-model/", "slug": "inverse-trig-with-model", "kind": "Video", "video_id": "2pwnr_soZEU", "keywords": "", "youtube_id": "2pwnr_soZEU", "readable_id": "inverse-trig-with-model"}, "iUlYRyvQAIE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iUlYRyvQAIE.mp4/iUlYRyvQAIE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iUlYRyvQAIE.mp4/iUlYRyvQAIE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iUlYRyvQAIE.m3u8/iUlYRyvQAIE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/diagnosing-diabetes/", "duration": 503, "id": "iUlYRyvQAIE", "title": "Diagnosing diabetes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diagnosing-diabetes", "kind": "Video", "video_id": "iUlYRyvQAIE", "keywords": "", "youtube_id": "iUlYRyvQAIE", "readable_id": "diagnosing-diabetes"}, "kPrv93a5L0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kPrv93a5L0I.mp4/kPrv93a5L0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kPrv93a5L0I.mp4/kPrv93a5L0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kPrv93a5L0I.m3u8/kPrv93a5L0I.m3u8"}, "duration": 169, "id": "kPrv93a5L0I", "title": "Spider's wheels", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/spider_bot/8-attach-spider-s-wheels/", "slug": "8-attach-spider-s-wheels", "kind": "Video", "video_id": "kPrv93a5L0I", "keywords": "", "youtube_id": "kPrv93a5L0I", "readable_id": "8-attach-spider-s-wheels"}, "nRpwdwm06Ic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nRpwdwm06Ic.mp4/nRpwdwm06Ic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nRpwdwm06Ic.mp4/nRpwdwm06Ic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nRpwdwm06Ic.m3u8/nRpwdwm06Ic.m3u8"}, "duration": 706, "id": "nRpwdwm06Ic", "title": "Oxygen movement from alveoli to capillaries", "format": "mp4", "description": "Watch as a molecule of oxygen makes its way from the alveoli (gas layer) through various liquid layers in order to end up in the blood. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/gas-exchange/oxygen-movement-from-alveoli-to-capillaries/", "slug": "oxygen-movement-from-alveoli-to-capillaries", "kind": "Video", "video_id": "nRpwdwm06Ic", "keywords": "", "youtube_id": "nRpwdwm06Ic", "readable_id": "oxygen-movement-from-alveoli-to-capillaries"}, "0pv0QtOi5l8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0pv0QtOi5l8.mp4/0pv0QtOi5l8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0pv0QtOi5l8.mp4/0pv0QtOi5l8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0pv0QtOi5l8.m3u8/0pv0QtOi5l8.m3u8"}, "duration": 598, "id": "0pv0QtOi5l8", "title": "Double integrals 6", "format": "mp4", "description": "Let's evaluate the double integrals with y=x^2 as one of the boundaries.", "path": "khan/math/multivariable-calculus/double_triple_integrals/double_integrals/double-integrals-6/", "slug": "double-integrals-6", "kind": "Video", "video_id": "0pv0QtOi5l8", "keywords": "double, integral, volume, calculus", "youtube_id": "0pv0QtOi5l8", "readable_id": "double-integrals-6"}, "iL6aM2xFixU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iL6aM2xFixU.mp4/iL6aM2xFixU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iL6aM2xFixU.mp4/iL6aM2xFixU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iL6aM2xFixU.m3u8/iL6aM2xFixU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cardiomyopathy/cardiomyopathy-signs-and-symptoms/", "duration": 793, "id": "iL6aM2xFixU", "title": "Cardiomyopathy signs and symptoms", "format": "mp4", "description": "", "slug": "cardiomyopathy-signs-and-symptoms", "kind": "Video", "video_id": "iL6aM2xFixU", "keywords": "", "youtube_id": "iL6aM2xFixU", "readable_id": "cardiomyopathy-signs-and-symptoms"}, "tHYis-DP0oU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tHYis-DP0oU.mp4/tHYis-DP0oU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tHYis-DP0oU.mp4/tHYis-DP0oU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tHYis-DP0oU.m3u8/tHYis-DP0oU.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/what-is-a-variable/", "duration": 198, "id": "tHYis-DP0oU", "title": "What is a variable?", "format": "mp4", "description": "Our focus here is understanding that a variable is just a symbol that can represent different values in an expression. We got this. Just watch.", "slug": "what-is-a-variable", "kind": "Video", "video_id": "tHYis-DP0oU", "keywords": "", "youtube_id": "tHYis-DP0oU", "readable_id": "what-is-a-variable"}, "e3RSRrUL1Os": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e3RSRrUL1Os.mp4/e3RSRrUL1Os.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e3RSRrUL1Os.mp4/e3RSRrUL1Os.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e3RSRrUL1Os.m3u8/e3RSRrUL1Os.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/bernini-apollo-and-daphne-1622-25/", "duration": 184, "id": "e3RSRrUL1Os", "title": "Bernini, Apollo and Daphne", "format": "mp4", "description": "Bernini, Apollo and Daphne, 1622-25 (Galleria Borghese, Rome)\n\nVoices: Dr. Beth Harris and Dr. Steven Zucker", "slug": "bernini-apollo-and-daphne-1622-25", "kind": "Video", "video_id": "e3RSRrUL1Os", "keywords": "bernini, rome, apollo, daphne, borghese, smarthistory, art, art history", "youtube_id": "e3RSRrUL1Os", "readable_id": "bernini-apollo-and-daphne-1622-25"}, "elJUghWSVh4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/elJUghWSVh4.mp4/elJUghWSVh4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/elJUghWSVh4.mp4/elJUghWSVh4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/elJUghWSVh4.m3u8/elJUghWSVh4.m3u8"}, "duration": 757, "id": "elJUghWSVh4", "title": "Electric potential energy", "format": "mp4", "description": "Introduction to electric potential", "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/electric-potential-energy/", "slug": "electric-potential-energy", "kind": "Video", "video_id": "elJUghWSVh4", "keywords": "electric, potential, energy", "youtube_id": "elJUghWSVh4", "readable_id": "electric-potential-energy"}, "v8PPsI0LqOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v8PPsI0LqOY.mp4/v8PPsI0LqOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v8PPsI0LqOY.mp4/v8PPsI0LqOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v8PPsI0LqOY.m3u8/v8PPsI0LqOY.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-origin/speciation-extinction/biodiversity-and-extinction-then-and-now/", "duration": 742, "id": "v8PPsI0LqOY", "title": "Biodiversity and extinction, then and now", "format": "mp4", "description": "", "slug": "biodiversity-and-extinction-then-and-now", "kind": "Video", "video_id": "v8PPsI0LqOY", "keywords": "", "youtube_id": "v8PPsI0LqOY", "readable_id": "biodiversity-and-extinction-then-and-now"}, "Iit8p6xzfr8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Iit8p6xzfr8.mp4/Iit8p6xzfr8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Iit8p6xzfr8.mp4/Iit8p6xzfr8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Iit8p6xzfr8.m3u8/Iit8p6xzfr8.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-jay/nucleophilicity-and-basicity/", "duration": 780, "id": "Iit8p6xzfr8", "title": "Nucleophilicity and basicity", "format": "mp4", "description": "Correction: I forgot to draw a negative charge next to the first iodide anion.", "slug": "nucleophilicity-and-basicity", "kind": "Video", "video_id": "Iit8p6xzfr8", "keywords": "", "youtube_id": "Iit8p6xzfr8", "readable_id": "nucleophilicity-and-basicity"}, "41DBE2mh5o8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/41DBE2mh5o8.mp4/41DBE2mh5o8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/41DBE2mh5o8.mp4/41DBE2mh5o8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/41DBE2mh5o8.m3u8/41DBE2mh5o8.m3u8"}, "duration": 157, "id": "41DBE2mh5o8", "title": "\"Extreme Fashion\" with Andrew Bolton", "format": "mp4", "description": "Met curator Andrew Bolton on extreme fashion in Alexander McQueen\u2019s No. 13 [Collection].\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "extreme-fashion/", "slug": "extreme-fashion", "kind": "Video", "video_id": "41DBE2mh5o8", "keywords": "costume, fashion, leather, light, metal, shock, wood, Europe", "youtube_id": "41DBE2mh5o8", "readable_id": "extreme-fashion"}, "nV8taxEW8-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nV8taxEW8-0.mp4/nV8taxEW8-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nV8taxEW8-0.mp4/nV8taxEW8-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nV8taxEW8-0.m3u8/nV8taxEW8-0.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-translations/determing-a-translation-between-points/", "duration": 194, "id": "nV8taxEW8-0", "title": "Determining a translation between points", "format": "mp4", "description": "", "slug": "determing-a-translation-between-points", "kind": "Video", "video_id": "nV8taxEW8-0", "keywords": "", "youtube_id": "nV8taxEW8-0", "readable_id": "determing-a-translation-between-points"}, "s-5_H3z-Cv0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s-5_H3z-Cv0.mp4/s-5_H3z-Cv0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s-5_H3z-Cv0.mp4/s-5_H3z-Cv0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s-5_H3z-Cv0.m3u8/s-5_H3z-Cv0.m3u8"}, "duration": 177, "id": "s-5_H3z-Cv0", "title": "Fair value accounting", "format": "mp4", "description": "Difference between Historical Cost and Fair Value Accounting", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/financial-statements-tutorial/fair-value-accounting/", "slug": "fair-value-accounting", "kind": "Video", "video_id": "s-5_H3z-Cv0", "keywords": "Fair, Value, Historical, Cost, Accounting, mark, to, market", "youtube_id": "s-5_H3z-Cv0", "readable_id": "fair-value-accounting"}, "U2W7HPyC0cM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U2W7HPyC0cM.mp4/U2W7HPyC0cM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U2W7HPyC0cM.mp4/U2W7HPyC0cM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U2W7HPyC0cM.m3u8/U2W7HPyC0cM.m3u8"}, "duration": 672, "id": "U2W7HPyC0cM", "title": "Language and notation of the circle", "format": "mp4", "description": "Formal definition of a circle. Tangent and secant lines. Diameters and radii. major and minor arcs", "path": "khan/math/geometry/cc-geometry-circles/circles/language-and-notation-of-the-circle/", "slug": "language-and-notation-of-the-circle", "kind": "Video", "video_id": "U2W7HPyC0cM", "keywords": "geometry, locus, circle", "youtube_id": "U2W7HPyC0cM", "readable_id": "language-and-notation-of-the-circle"}, "gHs3zuRek7o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gHs3zuRek7o.mp4/gHs3zuRek7o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gHs3zuRek7o.mp4/gHs3zuRek7o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gHs3zuRek7o.m3u8/gHs3zuRek7o.m3u8"}, "duration": 378, "id": "gHs3zuRek7o", "title": "Adding demand curves", "format": "mp4", "description": "How to add demand curves", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/labor-marginal-product-rev/adding-demand-curves/", "slug": "adding-demand-curves", "kind": "Video", "video_id": "gHs3zuRek7o", "keywords": "microeconomics", "youtube_id": "gHs3zuRek7o", "readable_id": "adding-demand-curves"}, "lF-7leHMUbw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lF-7leHMUbw.mp4/lF-7leHMUbw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lF-7leHMUbw.mp4/lF-7leHMUbw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lF-7leHMUbw.m3u8/lF-7leHMUbw.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/altered-states/", "duration": 160, "id": "lF-7leHMUbw", "title": "\"Altered States\" with Nadine Orenstein", "format": "mp4", "description": "Met curator Nadine Orenstein on universal emotion in Rembrandt van Rijn\u2019s Christ Crucified between the Two Thieves: The Three Crosses.\n\nThe Three Crosses, Rembrandt's finest works in any medium, represents the culmination of his virtuosity as a printmaker. He drew on the copperplate entirely in drypoint which allowed him to fully exploit the velvety areas of burr raised by the drypoint tool as it cut into the copper. When Rembrandt created this impression, he deliberately left ink on the printing plate; it lightly veils the figures standing at the foot of the cross on the right; a thicker layer almost completely covers the bushes along the right edge. By creatively inking the copperplate, Rembrandt in a certain sense painted each impression. Each time he printed the copperplate he created a unique work. He further varied impressions by printing them on different supports; this impression is printed on vellum, which infuses the composition with a warm light. Vellum, less absorbent than paper, holds ink on the surface, softening lines and enhancing the richness of entire effect.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a\u00a0related lesson plan. For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "slug": "altered-states", "kind": "Video", "video_id": "lF-7leHMUbw", "keywords": "body, community, death, light, print, vellum, Europe", "youtube_id": "lF-7leHMUbw", "readable_id": "altered-states"}, "8RasCV_Lggg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8RasCV_Lggg.mp4/8RasCV_Lggg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8RasCV_Lggg.mp4/8RasCV_Lggg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8RasCV_Lggg.m3u8/8RasCV_Lggg.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_analysis/polar-form-complex-number/", "duration": 736, "id": "8RasCV_Lggg", "title": "Rectangular to polar form of complex number", "format": "mp4", "description": "", "slug": "polar-form-complex-number", "kind": "Video", "video_id": "8RasCV_Lggg", "keywords": "", "youtube_id": "8RasCV_Lggg", "readable_id": "polar-form-complex-number"}, "1QihY-g20QA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1QihY-g20QA.mp4/1QihY-g20QA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1QihY-g20QA.mp4/1QihY-g20QA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1QihY-g20QA.m3u8/1QihY-g20QA.m3u8"}, "path": "khan/partner-content/big-history-project/expansion-interconnection/expansion/bhp-why-civilizations-expand/", "duration": 264, "id": "1QihY-g20QA", "title": "Why Did Civilizations Expand?", "format": "mp4", "description": "Expansion meant the addition of new territories, resources, and people.", "slug": "bhp-why-civilizations-expand", "kind": "Video", "video_id": "1QihY-g20QA", "keywords": "", "youtube_id": "1QihY-g20QA", "readable_id": "bhp-why-civilizations-expand"}, "vzID7ds600c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vzID7ds600c.mp4/vzID7ds600c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vzID7ds600c.mp4/vzID7ds600c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vzID7ds600c.m3u8/vzID7ds600c.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-at-rest/fluids-part-5/", "duration": 521, "id": "vzID7ds600c", "title": "Fluids (part 5)", "format": "mp4", "description": "Introduction to Archimedes' principle and buoyant force.", "slug": "fluids-part-5", "kind": "Video", "video_id": "vzID7ds600c", "keywords": "Archimedes, principle, buoyant, force, physics, pressure", "youtube_id": "vzID7ds600c", "readable_id": "fluids-part-5"}, "KVRpXvrsSKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KVRpXvrsSKM.mp4/KVRpXvrsSKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KVRpXvrsSKM.mp4/KVRpXvrsSKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KVRpXvrsSKM.m3u8/KVRpXvrsSKM.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-hairy-trig-and-algebra-part-3/", "duration": 388, "id": "KVRpXvrsSKM", "title": "IIT JEE hairy trig and algebra (part 3)", "format": "mp4", "description": "2010 IIT JEE Paper 1 #38 Hairy Trig and Algebra (Part 3)", "slug": "iit-jee-hairy-trig-and-algebra-part-3", "kind": "Video", "video_id": "KVRpXvrsSKM", "keywords": "2010, IIT, JEE, Paper, #38, Hairy, Trig, and, Algebra, (Part, 3)", "youtube_id": "KVRpXvrsSKM", "readable_id": "iit-jee-hairy-trig-and-algebra-part-3"}, "FycJ8X67xEU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FycJ8X67xEU.mp4/FycJ8X67xEU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FycJ8X67xEU.mp4/FycJ8X67xEU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FycJ8X67xEU.m3u8/FycJ8X67xEU.m3u8"}, "duration": 1005, "id": "FycJ8X67xEU", "title": "Empirical and molecular formulas from stoichiometry", "format": "mp4", "description": "Empirical and Molecular Formulas from Stoichiometry", "path": "khan/science/physics/thermodynamics/empirical-and-molecular-formulas-from-stoichiometry/", "slug": "empirical-and-molecular-formulas-from-stoichiometry", "kind": "Video", "video_id": "FycJ8X67xEU", "keywords": "Empirical, and, Molecular, Formulas, from, Stoichiometry", "youtube_id": "FycJ8X67xEU", "readable_id": "empirical-and-molecular-formulas-from-stoichiometry"}, "4EJay-6Bioo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4EJay-6Bioo.mp4/4EJay-6Bioo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4EJay-6Bioo.mp4/4EJay-6Bioo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4EJay-6Bioo.m3u8/4EJay-6Bioo.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/hexadecimal-number-system/", "duration": 454, "id": "4EJay-6Bioo", "title": "Hexadecimal number system", "format": "mp4", "description": "", "slug": "hexadecimal-number-system", "kind": "Video", "video_id": "4EJay-6Bioo", "keywords": "", "youtube_id": "4EJay-6Bioo", "readable_id": "hexadecimal-number-system"}, "PI9DjVjeV2A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PI9DjVjeV2A.mp4/PI9DjVjeV2A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PI9DjVjeV2A.mp4/PI9DjVjeV2A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PI9DjVjeV2A.m3u8/PI9DjVjeV2A.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/paolo-veronese-the-dream-of-saint-helena-c-1570/", "duration": 267, "id": "PI9DjVjeV2A", "title": "Veronese, the Dream of Saint Helena", "format": "mp4", "description": "Paolo Veronese, The Dream of Saint Helena, c. 1570, oil on canvas, 197.5 x 115.6 cm (The National Gallery, London)", "slug": "paolo-veronese-the-dream-of-saint-helena-c-1570", "kind": "Video", "video_id": "PI9DjVjeV2A", "keywords": "Paolo Veronese, Veronese, The Dream of Saint Helena, 1570, National Gallery, London, Constantine, Helena, Khan Academy, smarthistory, art history, Google Art Project", "youtube_id": "PI9DjVjeV2A", "readable_id": "paolo-veronese-the-dream-of-saint-helena-c-1570"}, "bN7XTFlxPTI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bN7XTFlxPTI.mp4/bN7XTFlxPTI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bN7XTFlxPTI.mp4/bN7XTFlxPTI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bN7XTFlxPTI.m3u8/bN7XTFlxPTI.m3u8"}, "duration": 52, "id": "bN7XTFlxPTI", "title": "What color were extinct dinosaurs?", "format": "mp4", "description": "In 2008, researchers discovered microscopic structures, called melanosomes, within fossilized feathers of an ancient bird. Different kinds of melanosomes create different colors in the feathers. Following this discovery in 2010, two teams of researchers reported finding melanosomes preserved in feathers of two, small, Chinese, non-avian dinosaurs\u2014Sinosauropteryx and Anchiornis. A comprehensive study of Anchiornis revealed that this 155-million-year-old, feathered dinosaur, about the size of a chicken, possessed black-and-white striped wings and a rusty brown crest of feathers along the top and back of its skull.", "path": "dinosaur-color/", "slug": "dinosaur-color", "kind": "Video", "video_id": "bN7XTFlxPTI", "keywords": "", "youtube_id": "bN7XTFlxPTI", "readable_id": "dinosaur-color"}, "RamzvjMF3rc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RamzvjMF3rc.mp4/RamzvjMF3rc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RamzvjMF3rc.mp4/RamzvjMF3rc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RamzvjMF3rc.m3u8/RamzvjMF3rc.m3u8"}, "path": "khan/computing/computer-programming/programming/good-practices/help-others-learn-programming/", "duration": 166, "id": "RamzvjMF3rc", "title": "Help others learn!", "format": "mp4", "description": "", "slug": "help-others-learn-programming", "kind": "Video", "video_id": "RamzvjMF3rc", "keywords": "", "youtube_id": "RamzvjMF3rc", "readable_id": "help-others-learn-programming"}, "rcLw4BlxaRs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rcLw4BlxaRs.mp4/rcLw4BlxaRs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rcLw4BlxaRs.mp4/rcLw4BlxaRs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rcLw4BlxaRs.m3u8/rcLw4BlxaRs.m3u8"}, "path": "khan/math/competition-math/amc-10/2013-amc-10-a/2013-amc-10-a-22-amc-12-a-18/", "duration": 318, "id": "rcLw4BlxaRs", "title": "2013 AMC 10 A #22 / AMC 12 A #18", "format": "mp4", "description": "Video by\u00a0Art of Problem Solving. \u00a0Problem from the MAA\u00a0American Mathematics Competitions", "slug": "2013-amc-10-a-22-amc-12-a-18", "kind": "Video", "video_id": "rcLw4BlxaRs", "keywords": "", "youtube_id": "rcLw4BlxaRs", "readable_id": "2013-amc-10-a-22-amc-12-a-18"}, "uTlh861MtYk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uTlh861MtYk.mp4/uTlh861MtYk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uTlh861MtYk.mp4/uTlh861MtYk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uTlh861MtYk.m3u8/uTlh861MtYk.m3u8"}, "duration": 181, "id": "uTlh861MtYk", "title": "China pegs to dollar to keep trade imbalance", "format": "mp4", "description": "China Pegs to Dollar to Keep Trade Imbalance", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/china-pegs-to-dollar-to-keep-trade-imbalance/", "slug": "china-pegs-to-dollar-to-keep-trade-imbalance", "kind": "Video", "video_id": "uTlh861MtYk", "keywords": "China, Pegs, to, Dollar, Keep, Trade, Imbalance", "youtube_id": "uTlh861MtYk", "readable_id": "china-pegs-to-dollar-to-keep-trade-imbalance"}, "dR_BFmDMRaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dR_BFmDMRaI.mp4/dR_BFmDMRaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dR_BFmDMRaI.mp4/dR_BFmDMRaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dR_BFmDMRaI.m3u8/dR_BFmDMRaI.m3u8"}, "path": "khan/science/biology/her/evolution-and-natural-selection/natural-selection-and-the-owl-butterfly/", "duration": 809, "id": "dR_BFmDMRaI", "title": "Natural selection and the owl butterfly", "format": "mp4", "description": "How the \"Owl Butterfly\" may have gotten the spot on its wings.", "slug": "natural-selection-and-the-owl-butterfly", "kind": "Video", "video_id": "dR_BFmDMRaI", "keywords": "evolution, natural, selection, intelligent, design", "youtube_id": "dR_BFmDMRaI", "readable_id": "natural-selection-and-the-owl-butterfly"}, "9K3R6xtO6SU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9K3R6xtO6SU.mp4/9K3R6xtO6SU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9K3R6xtO6SU.mp4/9K3R6xtO6SU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9K3R6xtO6SU.m3u8/9K3R6xtO6SU.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/preparation-of-acid-anhydrides/", "duration": 429, "id": "9K3R6xtO6SU", "title": "Preparation of acid anhydrides", "format": "mp4", "description": "How to prepare acid anhydrides from carboxylic acids", "slug": "preparation-of-acid-anhydrides", "kind": "Video", "video_id": "9K3R6xtO6SU", "keywords": "", "youtube_id": "9K3R6xtO6SU", "readable_id": "preparation-of-acid-anhydrides"}, "Z9Jh-Q59xso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z9Jh-Q59xso.mp4/Z9Jh-Q59xso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z9Jh-Q59xso.mp4/Z9Jh-Q59xso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z9Jh-Q59xso.m3u8/Z9Jh-Q59xso.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/nucleophilicity-basicity-sal/nucleophilicity-nucleophile-strength/", "duration": 835, "id": "Z9Jh-Q59xso", "title": "Nucleophilicity (nucleophile strength)", "format": "mp4", "description": "Nucleophilicity (Nucleophile Strength)", "slug": "nucleophilicity-nucleophile-strength", "kind": "Video", "video_id": "Z9Jh-Q59xso", "keywords": "Nucleophilicity, Nucleophile, Strength, organic, chemistry", "youtube_id": "Z9Jh-Q59xso", "readable_id": "nucleophilicity-nucleophile-strength"}, "KUhdMbx5ges": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KUhdMbx5ges.mp4/KUhdMbx5ges.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KUhdMbx5ges.mp4/KUhdMbx5ges.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KUhdMbx5ges.m3u8/KUhdMbx5ges.m3u8"}, "duration": 597, "id": "KUhdMbx5ges", "title": "Review of triangle properties", "format": "mp4", "description": "Comparing perpendicular bisectors to angle bisectors to medians to altitudes", "path": "khan/math/geometry/triangle-properties/triangle_property_review/review-of-triangle-properties/", "slug": "review-of-triangle-properties", "kind": "Video", "video_id": "KUhdMbx5ges", "keywords": "orthocenter, circumcenter, centroid", "youtube_id": "KUhdMbx5ges", "readable_id": "review-of-triangle-properties"}, "R0OM94TaZOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R0OM94TaZOo.mp4/R0OM94TaZOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R0OM94TaZOo.mp4/R0OM94TaZOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R0OM94TaZOo.m3u8/R0OM94TaZOo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/einsenmenger-coarctation-of-aorta/", "duration": 282, "id": "R0OM94TaZOo", "title": "Einsenmenger coarctation of aorta", "format": "mp4", "description": "", "slug": "einsenmenger-coarctation-of-aorta", "kind": "Video", "video_id": "R0OM94TaZOo", "keywords": "", "youtube_id": "R0OM94TaZOo", "readable_id": "einsenmenger-coarctation-of-aorta"}, "hMzFbORRiss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hMzFbORRiss.mp4/hMzFbORRiss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hMzFbORRiss.mp4/hMzFbORRiss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hMzFbORRiss.m3u8/hMzFbORRiss.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/masaccio-expulsion-of-adam-and-eve-from-eden-brancacci-chapel-c-1424-1427/", "duration": 300, "id": "hMzFbORRiss", "title": "Masaccio, Expulsion of Adam and Eve from Eden", "format": "mp4", "description": "Masaccio, Expulsion of Adam and Eve from Eden, Brancacci Chapel, Santa Maria del Carmine, Florence, Italy, ca. 1424--1427. Fresco, 7' x 2' 11\"", "slug": "masaccio-expulsion-of-adam-and-eve-from-eden-brancacci-chapel-c-1424-1427", "kind": "Video", "video_id": "hMzFbORRiss", "keywords": "smarthistory, art history, khan academy, florence, renaissance, masaccio, early renaissance, santa maria del carmine, brancacci chapel", "youtube_id": "hMzFbORRiss", "readable_id": "masaccio-expulsion-of-adam-and-eve-from-eden-brancacci-chapel-c-1424-1427"}, "VIrkurR446s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VIrkurR446s.mp4/VIrkurR446s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VIrkurR446s.mp4/VIrkurR446s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VIrkurR446s.m3u8/VIrkurR446s.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/diabetic-retinopathy/", "duration": 801, "id": "VIrkurR446s", "title": "Diabetic retinopathy", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diabetic-retinopathy", "kind": "Video", "video_id": "VIrkurR446s", "keywords": "", "youtube_id": "VIrkurR446s", "readable_id": "diabetic-retinopathy"}, "RUVsEovktGU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RUVsEovktGU.mp4/RUVsEovktGU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RUVsEovktGU.mp4/RUVsEovktGU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RUVsEovktGU.m3u8/RUVsEovktGU.m3u8"}, "duration": 531, "id": "RUVsEovktGU", "title": "Monopolistic competition and economic profit", "format": "mp4", "description": "Why it is hard for a monopolisitc competitor to make economic profit in the long run", "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolistic-competition-oligop/monopolistic-competition-and-economic-profit/", "slug": "monopolistic-competition-and-economic-profit", "kind": "Video", "video_id": "RUVsEovktGU", "keywords": "microeconomics", "youtube_id": "RUVsEovktGU", "readable_id": "monopolistic-competition-and-economic-profit"}, "T2ZnxsBWU3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T2ZnxsBWU3E.mp4/T2ZnxsBWU3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T2ZnxsBWU3E.mp4/T2ZnxsBWU3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T2ZnxsBWU3E.m3u8/T2ZnxsBWU3E.m3u8"}, "path": "khan/science/discoveries-projects/robots/bit-zee/connecting-bit-zee-s-camera-to-the-arduino/", "duration": 225, "id": "T2ZnxsBWU3E", "title": "Camera connection to the Arduino", "format": "mp4", "description": "In this video we wire Bit-zee's camera's shutter and power functions to some transistors on the bread board and then we connect the transistors to the Arduino.", "slug": "connecting-bit-zee-s-camera-to-the-arduino", "kind": "Video", "video_id": "T2ZnxsBWU3E", "keywords": "Connecting, digital camera, arduino, Bit-zee, bot, hack, make, diy, transistor, resistor", "youtube_id": "T2ZnxsBWU3E", "readable_id": "connecting-bit-zee-s-camera-to-the-arduino"}, "8JYP_wU1JTU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8JYP_wU1JTU.mp4/8JYP_wU1JTU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8JYP_wU1JTU.mp4/8JYP_wU1JTU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8JYP_wU1JTU.m3u8/8JYP_wU1JTU.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/econ-intro-in-macro-tutorial/introduction-to-economics/", "duration": 599, "id": "8JYP_wU1JTU", "title": "Introduction to economics", "format": "mp4", "description": "Basic introduction to what microeconomics and macroeconomics study. A bit on Adam Smith.", "slug": "introduction-to-economics", "kind": "Video", "video_id": "8JYP_wU1JTU", "keywords": "the, wealth, of, nations, macro, micro, economics, capitalism", "youtube_id": "8JYP_wU1JTU", "readable_id": "introduction-to-economics"}, "ZjTS8dBsF4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZjTS8dBsF4w.mp4/ZjTS8dBsF4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZjTS8dBsF4w.mp4/ZjTS8dBsF4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZjTS8dBsF4w.m3u8/ZjTS8dBsF4w.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/resistance/current-change-due-to-electromagnet-load/", "duration": 72, "id": "ZjTS8dBsF4w", "title": "Series load", "format": "mp4", "description": "Why does the deflection change when an electromagnet is attached to the circuit? Does it matter what side of the electromagnet we test?", "slug": "current-change-due-to-electromagnet-load", "kind": "Video", "video_id": "ZjTS8dBsF4w", "keywords": "resistance, series", "youtube_id": "ZjTS8dBsF4w", "readable_id": "current-change-due-to-electromagnet-load"}, "eJUGoAtF-7A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eJUGoAtF-7A.mp4/eJUGoAtF-7A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eJUGoAtF-7A.mp4/eJUGoAtF-7A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eJUGoAtF-7A.m3u8/eJUGoAtF-7A.m3u8"}, "duration": 222, "id": "eJUGoAtF-7A", "title": "Quotient rule for derivative of tan x", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/product_rule/quotient-rule-for-derivative-of-tan-x/", "slug": "quotient-rule-for-derivative-of-tan-x", "kind": "Video", "video_id": "eJUGoAtF-7A", "keywords": "", "youtube_id": "eJUGoAtF-7A", "readable_id": "quotient-rule-for-derivative-of-tan-x"}, "55G8037gsKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/55G8037gsKY.mp4/55G8037gsKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/55G8037gsKY.mp4/55G8037gsKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/55G8037gsKY.m3u8/55G8037gsKY.m3u8"}, "duration": 663, "id": "55G8037gsKY", "title": "Solving quadratic equations by square roots", "format": "mp4", "description": "Solving Quadratic Equations by Square Roots", "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/solving-quadratic-equations-by-square-roots/", "slug": "solving-quadratic-equations-by-square-roots", "kind": "Video", "video_id": "55G8037gsKY", "keywords": "Solving, Quadratic, Equations, by, Square, Roots, CC_39336_A-REI_4_b", "youtube_id": "55G8037gsKY", "readable_id": "solving-quadratic-equations-by-square-roots"}, "JVysGX05BEc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVysGX05BEc.mp4/JVysGX05BEc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVysGX05BEc.mp4/JVysGX05BEc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVysGX05BEc.m3u8/JVysGX05BEc.m3u8"}, "duration": 356, "id": "JVysGX05BEc", "title": "Hajj Stories: Takeaways from the Hajj", "format": "mp4", "description": "The hajj, one of the \u201cfive pillars\u201d of Islam, is the pilgrimage to the city of Mecca, in Saudi Arabia, that all Muslims should make at least once in their lifetime if their health and financial means allow it, according to Islamic tradition. Inspired by the British Museum\u2019s videos Hajj Stories (2012), staff at the Asian Art Museum asked Bay Area Muslims who have performed the hajj to share experiences of their journeys. Learn more about the arts of Islamic world on the Asian Art Museum's education website.", "path": "takeaways-from-hajj/", "slug": "takeaways-from-hajj", "kind": "Video", "video_id": "JVysGX05BEc", "keywords": "Islam, hajj", "youtube_id": "JVysGX05BEc", "readable_id": "takeaways-from-hajj"}, "a3NFAnHxpKw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a3NFAnHxpKw.mp4/a3NFAnHxpKw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a3NFAnHxpKw.mp4/a3NFAnHxpKw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a3NFAnHxpKw.m3u8/a3NFAnHxpKw.m3u8"}, "duration": 221, "id": "a3NFAnHxpKw", "title": "Data on Chinese foreign assets increase in 2010", "format": "mp4", "description": "Data on Chinese Foreign Assets Increase in 2010", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/data-on-chinese-foreign-assets-increase-in-2010/", "slug": "data-on-chinese-foreign-assets-increase-in-2010", "kind": "Video", "video_id": "a3NFAnHxpKw", "keywords": "Data, on, Chinese, Foreign, Assets, Increase, in, 2010", "youtube_id": "a3NFAnHxpKw", "readable_id": "data-on-chinese-foreign-assets-increase-in-2010"}, "Z0WsfO-RI8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z0WsfO-RI8Y.mp4/Z0WsfO-RI8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z0WsfO-RI8Y.mp4/Z0WsfO-RI8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z0WsfO-RI8Y.m3u8/Z0WsfO-RI8Y.m3u8"}, "duration": 256, "id": "Z0WsfO-RI8Y", "title": "Fractions on a number line", "format": "mp4", "description": "Graph and locate fractions on a number line.", "path": "fractions-on-a-number-line/", "slug": "fractions-on-a-number-line", "kind": "Video", "video_id": "Z0WsfO-RI8Y", "keywords": "", "youtube_id": "Z0WsfO-RI8Y", "readable_id": "fractions-on-a-number-line"}, "rkeU8_4nzKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rkeU8_4nzKo.mp4/rkeU8_4nzKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rkeU8_4nzKo.mp4/rkeU8_4nzKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rkeU8_4nzKo.m3u8/rkeU8_4nzKo.m3u8"}, "duration": 789, "id": "rkeU8_4nzKo", "title": "More limits", "format": "mp4", "description": "More limit examples", "path": "khan/math/differential-calculus/limits_topic/old-limits-tutorial/more-limits/", "slug": "more-limits", "kind": "Video", "video_id": "rkeU8_4nzKo", "keywords": "limits, calculus, CC_39336_F-IF_7", "youtube_id": "rkeU8_4nzKo", "readable_id": "more-limits"}, "gm7lIcBkXFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gm7lIcBkXFc.mp4/gm7lIcBkXFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gm7lIcBkXFc.mp4/gm7lIcBkXFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gm7lIcBkXFc.m3u8/gm7lIcBkXFc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/shunting-in-the-heart/", "duration": 587, "id": "gm7lIcBkXFc", "title": "Shunting in the heart", "format": "mp4", "description": "", "slug": "shunting-in-the-heart", "kind": "Video", "video_id": "gm7lIcBkXFc", "keywords": "", "youtube_id": "gm7lIcBkXFc", "readable_id": "shunting-in-the-heart"}, "yqwnRekNLg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yqwnRekNLg4.mp4/yqwnRekNLg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yqwnRekNLg4.mp4/yqwnRekNLg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yqwnRekNLg4.m3u8/yqwnRekNLg4.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/enzyme-kinetics/covalent-modifications-to-enzymes/", "duration": 278, "id": "yqwnRekNLg4", "title": "Covalent modifications to enzymes", "format": "mp4", "description": "", "slug": "covalent-modifications-to-enzymes", "kind": "Video", "video_id": "yqwnRekNLg4", "keywords": "", "youtube_id": "yqwnRekNLg4", "readable_id": "covalent-modifications-to-enzymes"}, "DK1lCc9b7bg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DK1lCc9b7bg.mp4/DK1lCc9b7bg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DK1lCc9b7bg.mp4/DK1lCc9b7bg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DK1lCc9b7bg.m3u8/DK1lCc9b7bg.m3u8"}, "duration": 210, "id": "DK1lCc9b7bg", "title": "Inflation data", "format": "mp4", "description": "Looking at actual sequential and year-over-year inflation data", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/inflation-basics-tutorial/inflation-data/", "slug": "inflation-data", "kind": "Video", "video_id": "DK1lCc9b7bg", "keywords": "finance, inflation", "youtube_id": "DK1lCc9b7bg", "readable_id": "inflation-data"}, "zsI4g5XSlbw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zsI4g5XSlbw.mp4/zsI4g5XSlbw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zsI4g5XSlbw.mp4/zsI4g5XSlbw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zsI4g5XSlbw.m3u8/zsI4g5XSlbw.m3u8"}, "duration": 51, "id": "zsI4g5XSlbw", "title": "Converting U.S. customary units of distance: feet to inches", "format": "mp4", "description": "Here's a practice example that gets us thinking about how change feet to inches. Will you get any feet of snow this winter? How many inches is that? Come on, snow days!", "path": "feet-to-inches-exercise-example/", "slug": "feet-to-inches-exercise-example", "kind": "Video", "video_id": "zsI4g5XSlbw", "keywords": "", "youtube_id": "zsI4g5XSlbw", "readable_id": "feet-to-inches-exercise-example"}, "kFpLDQfEg1E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kFpLDQfEg1E.mp4/kFpLDQfEg1E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kFpLDQfEg1E.mp4/kFpLDQfEg1E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kFpLDQfEg1E.m3u8/kFpLDQfEg1E.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/alcohol-nomenclature-properties/alcohol-nomenclature/", "duration": 725, "id": "kFpLDQfEg1E", "title": "Alcohol nomenclature", "format": "mp4", "description": "", "slug": "alcohol-nomenclature", "kind": "Video", "video_id": "kFpLDQfEg1E", "keywords": "", "youtube_id": "kFpLDQfEg1E", "readable_id": "alcohol-nomenclature"}, "EQrCdEF3vNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EQrCdEF3vNE.mp4/EQrCdEF3vNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EQrCdEF3vNE.mp4/EQrCdEF3vNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EQrCdEF3vNE.m3u8/EQrCdEF3vNE.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/adding-and-subtracting-on-number-line-word-problems/", "duration": 267, "id": "EQrCdEF3vNE", "title": "Adding and subtracting on number line word problems", "format": "mp4", "description": "", "slug": "adding-and-subtracting-on-number-line-word-problems", "kind": "Video", "video_id": "EQrCdEF3vNE", "keywords": "", "youtube_id": "EQrCdEF3vNE", "readable_id": "adding-and-subtracting-on-number-line-word-problems"}, "FPNhCVZlbJs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FPNhCVZlbJs.mp4/FPNhCVZlbJs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FPNhCVZlbJs.mp4/FPNhCVZlbJs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FPNhCVZlbJs.m3u8/FPNhCVZlbJs.m3u8"}, "duration": 243, "id": "FPNhCVZlbJs", "title": "Converting repeating decimals to fractions 1", "format": "mp4", "description": "Examples of how to convert basic repeating decimals to fractions", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/conv_rep_decimals/coverting-repeating-decimals-to-fractions-1/", "slug": "coverting-repeating-decimals-to-fractions-1", "kind": "Video", "video_id": "FPNhCVZlbJs", "keywords": "Coverting, Repeating, Decimals, to, Fractions, 1", "youtube_id": "FPNhCVZlbJs", "readable_id": "coverting-repeating-decimals-to-fractions-1"}, "9r8Wb7prWZA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9r8Wb7prWZA.mp4/9r8Wb7prWZA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9r8Wb7prWZA.mp4/9r8Wb7prWZA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9r8Wb7prWZA.m3u8/9r8Wb7prWZA.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-13/", "duration": 630, "id": "9r8Wb7prWZA", "title": "GMAT: Math 13", "format": "mp4", "description": "70-75, pg. 161", "slug": "gmat-math-13", "kind": "Video", "video_id": "9r8Wb7prWZA", "keywords": "gmat, math, problem, solving", "youtube_id": "9r8Wb7prWZA", "readable_id": "gmat-math-13"}, "-h_x8TwC1ik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-h_x8TwC1ik.mp4/-h_x8TwC1ik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-h_x8TwC1ik.mp4/-h_x8TwC1ik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-h_x8TwC1ik.m3u8/-h_x8TwC1ik.m3u8"}, "path": "khan/science/physics/two-dimensional-motion/optimal-projectile-angle/optimal-angle-for-a-projectile-part-3-horizontal-distance-as-a-function-of-angle-and-speed/", "duration": 159, "id": "-h_x8TwC1ik", "title": "Optimal angle for a projectile part 3: Horizontal distance as a function of angle (and speed)", "format": "mp4", "description": "Horizontal distance as a function of angle (and speed)", "slug": "optimal-angle-for-a-projectile-part-3-horizontal-distance-as-a-function-of-angle-and-speed", "kind": "Video", "video_id": "-h_x8TwC1ik", "keywords": "Horizontal, distance, as, function, of, angle, (and, speed)", "youtube_id": "-h_x8TwC1ik", "readable_id": "optimal-angle-for-a-projectile-part-3-horizontal-distance-as-a-function-of-angle-and-speed"}, "z8vj8tUCkxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z8vj8tUCkxY.mp4/z8vj8tUCkxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z8vj8tUCkxY.mp4/z8vj8tUCkxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z8vj8tUCkxY.m3u8/z8vj8tUCkxY.m3u8"}, "duration": 432, "id": "z8vj8tUCkxY", "title": "Radian and degree conversion practice", "format": "mp4", "description": "A little practice converting between radians and degrees and vice versa", "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/radian-and-degree-conversion-practice/", "slug": "radian-and-degree-conversion-practice", "kind": "Video", "video_id": "z8vj8tUCkxY", "keywords": "radian, degree, conversion", "youtube_id": "z8vj8tUCkxY", "readable_id": "radian-and-degree-conversion-practice"}, "r1tggaFV0yo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r1tggaFV0yo.mp4/r1tggaFV0yo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r1tggaFV0yo.mp4/r1tggaFV0yo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r1tggaFV0yo.m3u8/r1tggaFV0yo.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/overview-of-amino-acid-metabolism/", "duration": 799, "id": "r1tggaFV0yo", "title": "Overview of Amino Acid Metabolism", "format": "mp4", "description": "1D: What is unique about the catabolism of amino acids (vs. glucose and fatty acids)?", "slug": "overview-of-amino-acid-metabolism", "kind": "Video", "video_id": "r1tggaFV0yo", "keywords": "", "youtube_id": "r1tggaFV0yo", "readable_id": "overview-of-amino-acid-metabolism"}, "d0Sk5trLUbU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d0Sk5trLUbU.mp4/d0Sk5trLUbU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d0Sk5trLUbU.mp4/d0Sk5trLUbU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d0Sk5trLUbU.m3u8/d0Sk5trLUbU.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/fatty-acid-synthesis-part-i/", "duration": 838, "id": "d0Sk5trLUbU", "title": "Fatty Acid Synthesis - Part I", "format": "mp4", "description": "1D: What are the sources of fatty acids in the blood stream? Where are fatty acids synthesized? How are the synthesized?", "slug": "fatty-acid-synthesis-part-i", "kind": "Video", "video_id": "d0Sk5trLUbU", "keywords": "", "youtube_id": "d0Sk5trLUbU", "readable_id": "fatty-acid-synthesis-part-i"}, "CIH3VBBL69k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CIH3VBBL69k.mp4/CIH3VBBL69k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CIH3VBBL69k.mp4/CIH3VBBL69k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CIH3VBBL69k.m3u8/CIH3VBBL69k.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/american-art-wwii/bellows-pennsylvania-station-c-1907-8/", "duration": 216, "id": "CIH3VBBL69k", "title": "Bellows, Pennsylvania Station Excavation", "format": "mp4", "description": "George Bellows, Pennsylvania Station Excavation, oil on canvas, c. 1907-08 (Brooklyn Museum)\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "bellows-pennsylvania-station-c-1907-8", "kind": "Video", "video_id": "CIH3VBBL69k", "keywords": "bellows, brooklyn museum, art, art history, aschan, ashcan school", "youtube_id": "CIH3VBBL69k", "readable_id": "bellows-pennsylvania-station-c-1907-8"}, "NBxUKzOHFF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NBxUKzOHFF0.mp4/NBxUKzOHFF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NBxUKzOHFF0.mp4/NBxUKzOHFF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NBxUKzOHFF0.m3u8/NBxUKzOHFF0.m3u8"}, "path": "khan/partner-content/exploratorium/sound-explo/vocal-visualizer/vocal-visualizer-introduction/", "duration": 80, "id": "NBxUKzOHFF0", "title": "Vocal Visualizer: Introduction", "format": "mp4", "description": "Use your voice to transform laser light into dazzling shapes and patterns.", "slug": "vocal-visualizer-introduction", "kind": "Video", "video_id": "NBxUKzOHFF0", "keywords": "", "youtube_id": "NBxUKzOHFF0", "readable_id": "vocal-visualizer-introduction"}, "MlMwMqM_Wsg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MlMwMqM_Wsg.mp4/MlMwMqM_Wsg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MlMwMqM_Wsg.mp4/MlMwMqM_Wsg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MlMwMqM_Wsg.m3u8/MlMwMqM_Wsg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/signal-characteristics-wave-number/", "duration": 925, "id": "MlMwMqM_Wsg", "title": "Signal characteristics - wavenumber", "format": "mp4", "description": "", "slug": "signal-characteristics-wave-number", "kind": "Video", "video_id": "MlMwMqM_Wsg", "keywords": "", "youtube_id": "MlMwMqM_Wsg", "readable_id": "signal-characteristics-wave-number"}, "tSMuKcN-RKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tSMuKcN-RKM.mp4/tSMuKcN-RKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tSMuKcN-RKM.mp4/tSMuKcN-RKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tSMuKcN-RKM.m3u8/tSMuKcN-RKM.m3u8"}, "duration": 760, "id": "tSMuKcN-RKM", "title": "Minimizing the cost of a storage container", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/minimizing-the-cost-of-a-storage-container/", "slug": "minimizing-the-cost-of-a-storage-container", "kind": "Video", "video_id": "tSMuKcN-RKM", "keywords": "", "youtube_id": "tSMuKcN-RKM", "readable_id": "minimizing-the-cost-of-a-storage-container"}, "2B4EBvVvf9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2B4EBvVvf9w.mp4/2B4EBvVvf9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2B4EBvVvf9w.mp4/2B4EBvVvf9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2B4EBvVvf9w.m3u8/2B4EBvVvf9w.m3u8"}, "duration": 375, "id": "2B4EBvVvf9w", "title": "Relative complement or difference between sets", "format": "mp4", "description": "", "path": "khan/math/probability/independent-dependent-probability/basic_set_operations/relative-complement-or-difference-between-sets/", "slug": "relative-complement-or-difference-between-sets", "kind": "Video", "video_id": "2B4EBvVvf9w", "keywords": "", "youtube_id": "2B4EBvVvf9w", "readable_id": "relative-complement-or-difference-between-sets"}, "BdSNiuJnZa8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BdSNiuJnZa8.mp4/BdSNiuJnZa8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BdSNiuJnZa8.mp4/BdSNiuJnZa8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BdSNiuJnZa8.m3u8/BdSNiuJnZa8.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-15/", "duration": 673, "id": "BdSNiuJnZa8", "title": "GMAT: Math 15", "format": "mp4", "description": "81-86, pgs. 162-163", "slug": "gmat-math-15", "kind": "Video", "video_id": "BdSNiuJnZa8", "keywords": "gmat, math, problem, solving", "youtube_id": "BdSNiuJnZa8", "readable_id": "gmat-math-15"}, "M0Nf2Osgwkc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M0Nf2Osgwkc.mp4/M0Nf2Osgwkc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M0Nf2Osgwkc.mp4/M0Nf2Osgwkc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M0Nf2Osgwkc.m3u8/M0Nf2Osgwkc.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/giorgione-the-adoration-of-the-shepherds-1505-10/", "duration": 225, "id": "M0Nf2Osgwkc", "title": "Giorgione, the Adoration of the Shepherds", "format": "mp4", "description": "Giorgione, The Adoration of the Shepherds, 1505/1, oil on panel, 90.8 x 110.5 cm / 35 3/4 x 43 1/2 in. (National Gallery of Art, Washington D.C.) Speakers: Dr. Heather Horton and Dr. Mark Trowbridge", "slug": "giorgione-the-adoration-of-the-shepherds-1505-10", "kind": "Video", "video_id": "M0Nf2Osgwkc", "keywords": "", "youtube_id": "M0Nf2Osgwkc", "readable_id": "giorgione-the-adoration-of-the-shepherds-1505-10"}, "2zfdtmlMNDs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2zfdtmlMNDs.mp4/2zfdtmlMNDs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2zfdtmlMNDs.mp4/2zfdtmlMNDs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2zfdtmlMNDs.m3u8/2zfdtmlMNDs.m3u8"}, "duration": 557, "id": "2zfdtmlMNDs", "title": "401(k)s", "format": "mp4", "description": "401(k)s (and how they compare to IRAs)", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/ira-401ks/401-k-s/", "slug": "401-k-s", "kind": "Video", "video_id": "2zfdtmlMNDs", "keywords": "401k, IRA, Roth", "youtube_id": "2zfdtmlMNDs", "readable_id": "401-k-s"}, "69V-60sga3M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/69V-60sga3M.mp4/69V-60sga3M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/69V-60sga3M.mp4/69V-60sga3M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/69V-60sga3M.m3u8/69V-60sga3M.m3u8"}, "duration": 346, "id": "69V-60sga3M", "title": "Ideal gas equation example 3", "format": "mp4", "description": "Figuring out the mass of Oxygen we have.", "path": "khan/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws/ideal-gas-equation-example-3/", "slug": "ideal-gas-equation-example-3", "kind": "Video", "video_id": "69V-60sga3M", "keywords": "ideal, gas, oxygen, constant, pressure, volume", "youtube_id": "69V-60sga3M", "readable_id": "ideal-gas-equation-example-3"}, "WMgJtmjWHYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WMgJtmjWHYg.mp4/WMgJtmjWHYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WMgJtmjWHYg.mp4/WMgJtmjWHYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WMgJtmjWHYg.m3u8/WMgJtmjWHYg.m3u8"}, "duration": 767, "id": "WMgJtmjWHYg", "title": "Photosynthesis", "format": "mp4", "description": "Hank explains the extremely complex series of reactions whereby plants feed themselves on sunlight, carbon dioxide and water, and also create some by products we're pretty fond of as well.", "path": "crash-course-biology-108/", "slug": "crash-course-biology-108", "kind": "Video", "video_id": "WMgJtmjWHYg", "keywords": "", "youtube_id": "WMgJtmjWHYg", "readable_id": "crash-course-biology-108"}, "i8THsl3AYFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i8THsl3AYFI.mp4/i8THsl3AYFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i8THsl3AYFI.mp4/i8THsl3AYFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i8THsl3AYFI.m3u8/i8THsl3AYFI.m3u8"}, "duration": 578, "id": "i8THsl3AYFI", "title": "Formula for a finite geometric series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/geometric-series/", "slug": "geometric-series", "kind": "Video", "video_id": "i8THsl3AYFI", "keywords": "", "youtube_id": "i8THsl3AYFI", "readable_id": "geometric-series"}, "EVkFPeP5sFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EVkFPeP5sFI.mp4/EVkFPeP5sFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EVkFPeP5sFI.mp4/EVkFPeP5sFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EVkFPeP5sFI.m3u8/EVkFPeP5sFI.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/hormone-control-of-hunger/", "duration": 217, "id": "EVkFPeP5sFI", "title": "Hormone control of hunger", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "hormone-control-of-hunger", "kind": "Video", "video_id": "EVkFPeP5sFI", "keywords": "", "youtube_id": "EVkFPeP5sFI", "readable_id": "hormone-control-of-hunger"}, "If4Ar9lnB_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/If4Ar9lnB_4.mp4/If4Ar9lnB_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/If4Ar9lnB_4.mp4/If4Ar9lnB_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/If4Ar9lnB_4.m3u8/If4Ar9lnB_4.m3u8"}, "duration": 618, "id": "If4Ar9lnB_4", "title": "What is an equivalent?", "format": "mp4", "description": "Figure out how to calculate an equivalent and how it relates to a mole. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/lab-values/what-is-an-equivalent/", "slug": "what-is-an-equivalent", "kind": "Video", "video_id": "If4Ar9lnB_4", "keywords": "", "youtube_id": "If4Ar9lnB_4", "readable_id": "what-is-an-equivalent"}, "Qz5zFzvbib4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qz5zFzvbib4.mp4/Qz5zFzvbib4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qz5zFzvbib4.mp4/Qz5zFzvbib4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qz5zFzvbib4.m3u8/Qz5zFzvbib4.m3u8"}, "path": "khan/humanities/history/1600s-1800s/haitian-revolution/haitian-revolution-part-1/", "duration": 1635, "id": "Qz5zFzvbib4", "title": "Haitian Revolution (Part 1)", "format": "mp4", "description": "Slaves rebel in Saint-Domingue (Haiti). Rise of Toussaint L'Ouverture.", "slug": "haitian-revolution-part-1", "kind": "Video", "video_id": "Qz5zFzvbib4", "keywords": "haiti, saint-domingue, toussaint, louverture", "youtube_id": "Qz5zFzvbib4", "readable_id": "haitian-revolution-part-1"}, "GoRhRJXp0j8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GoRhRJXp0j8.mp4/GoRhRJXp0j8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GoRhRJXp0j8.mp4/GoRhRJXp0j8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GoRhRJXp0j8.m3u8/GoRhRJXp0j8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-nose-sinus-upper-respiratory/what-is-a-uri/", "duration": 954, "id": "GoRhRJXp0j8", "title": "What is an upper respiratory infection (URI)?", "format": "mp4", "description": "", "slug": "what-is-a-uri", "kind": "Video", "video_id": "GoRhRJXp0j8", "keywords": "", "youtube_id": "GoRhRJXp0j8", "readable_id": "what-is-a-uri"}, "R948Tsyq4vA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R948Tsyq4vA.mp4/R948Tsyq4vA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R948Tsyq4vA.mp4/R948Tsyq4vA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R948Tsyq4vA.m3u8/R948Tsyq4vA.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/slope-of-a-line/", "duration": 280, "id": "R948Tsyq4vA", "title": "Finding the slope of a line from its graph", "format": "mp4", "description": "Slope of a line", "slug": "slope-of-a-line", "kind": "Video", "video_id": "R948Tsyq4vA", "keywords": "U04_L1_T1_we1, Slope, of, line, CC_8_EE_5", "youtube_id": "R948Tsyq4vA", "readable_id": "slope-of-a-line"}, "4uQtJDf7drU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4uQtJDf7drU.mp4/4uQtJDf7drU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4uQtJDf7drU.mp4/4uQtJDf7drU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4uQtJDf7drU.m3u8/4uQtJDf7drU.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-measurement/on-unit-conversion/converting-gallons-to-quarts-pints-and-cups/", "duration": 317, "id": "4uQtJDf7drU", "title": "Unit conversion: gallons to quarts, pints, and cups", "format": "mp4", "description": "What's the difference between gallons, quarts, pints, and cups? Soooo many people go their entire lives without knowing how to convert one unit of measure to another. Take note.", "slug": "converting-gallons-to-quarts-pints-and-cups", "kind": "Video", "video_id": "4uQtJDf7drU", "keywords": "U06_L1_T3_we1, Converting, Gallons, to, quarts, pints, and, cups, CC_4_MD_1, CC_5_MD_1, CC_6_RP_3_d", "youtube_id": "4uQtJDf7drU", "readable_id": "converting-gallons-to-quarts-pints-and-cups"}, "cgGnvH0Ozvk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cgGnvH0Ozvk.mp4/cgGnvH0Ozvk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cgGnvH0Ozvk.mp4/cgGnvH0Ozvk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cgGnvH0Ozvk.m3u8/cgGnvH0Ozvk.m3u8"}, "duration": 164, "id": "cgGnvH0Ozvk", "title": "Were dinosaurs undergoing long-term decline before mass extinction?", "format": "mp4", "description": "Were dinosaurs already undergoing a long-term decline before an asteroid hit at the end of the Cretaceous about 65.5 million years ago? A study led by Museum scientists gives a multifaceted answer. The findings, published in May, 2012, in the journal Nature Communications, suggest that in general, large-bodied, \u201cbulk-feeding\u201d herbivores were declining during the last 12 million years of the Cretaceous Period. But carnivorous dinosaurs and mid-sized herbivores were not.", "path": "dinosaur-decline/", "slug": "dinosaur-decline", "kind": "Video", "video_id": "cgGnvH0Ozvk", "keywords": "", "youtube_id": "cgGnvH0Ozvk", "readable_id": "dinosaur-decline"}, "chXMpDwjBDk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/chXMpDwjBDk.mp4/chXMpDwjBDk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/chXMpDwjBDk.mp4/chXMpDwjBDk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/chXMpDwjBDk.m3u8/chXMpDwjBDk.m3u8"}, "duration": 940, "id": "chXMpDwjBDk", "title": "Hess's law and reaction enthalpy change", "format": "mp4", "description": "Using Hess's Law and standard heats of formation to determine the enthalpy change for reactions", "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/hess-s-law-and-reaction-enthalpy-change/", "slug": "hess-s-law-and-reaction-enthalpy-change", "kind": "Video", "video_id": "chXMpDwjBDk", "keywords": "chemistry, enthalpy, heat, formation, hess", "youtube_id": "chXMpDwjBDk", "readable_id": "hess-s-law-and-reaction-enthalpy-change"}, "REiDXCN0lGU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/REiDXCN0lGU.mp4/REiDXCN0lGU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/REiDXCN0lGU.mp4/REiDXCN0lGU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/REiDXCN0lGU.m3u8/REiDXCN0lGU.m3u8"}, "duration": 156, "id": "REiDXCN0lGU", "title": "Terms coefficients and exponents in a polynomial", "format": "mp4", "description": "Terms coefficients and exponents in a polynomial", "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/terms-coefficients-and-exponents-in-a-polynomial/", "slug": "terms-coefficients-and-exponents-in-a-polynomial", "kind": "Video", "video_id": "REiDXCN0lGU", "keywords": "u11_l2_t1_we1, Terms, coefficients, and, exponents, in, polynomial, CC_6_EE_2_b, CC_39336_A-SSE_1_a", "youtube_id": "REiDXCN0lGU", "readable_id": "terms-coefficients-and-exponents-in-a-polynomial"}, "2E_DB5VuAoo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2E_DB5VuAoo.mp4/2E_DB5VuAoo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2E_DB5VuAoo.mp4/2E_DB5VuAoo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2E_DB5VuAoo.m3u8/2E_DB5VuAoo.m3u8"}, "duration": 569, "id": "2E_DB5VuAoo", "title": "IIT JEE function maxima", "format": "mp4", "description": "2010 IIT JEE Paper 1 problem 36 Function Maxima", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-function-maxima/", "slug": "iit-jee-function-maxima", "kind": "Video", "video_id": "2E_DB5VuAoo", "keywords": "2010, IIT, JEE, Paper, problem, 36, Function, Maxima", "youtube_id": "2E_DB5VuAoo", "readable_id": "iit-jee-function-maxima"}, "W9AVRhqEkek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W9AVRhqEkek.mp4/W9AVRhqEkek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W9AVRhqEkek.mp4/W9AVRhqEkek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W9AVRhqEkek.m3u8/W9AVRhqEkek.m3u8"}, "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/spout-motor-mount/", "duration": 245, "id": "W9AVRhqEkek", "title": "Spout motor mount", "format": "mp4", "description": "", "slug": "spout-motor-mount", "kind": "Video", "video_id": "W9AVRhqEkek", "keywords": "", "youtube_id": "W9AVRhqEkek", "readable_id": "spout-motor-mount"}, "QOtam19NQcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QOtam19NQcQ.mp4/QOtam19NQcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QOtam19NQcQ.mp4/QOtam19NQcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QOtam19NQcQ.m3u8/QOtam19NQcQ.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/regrouping-when-subtracting-three-digit-numbers/", "duration": 200, "id": "QOtam19NQcQ", "title": "Subtracting: three digit numbers and regrouping", "format": "mp4", "description": "When we don't have enough of something, we sometimes borrow it. Same in math! When there aren't enough tens (or hundreds, etc) to subtract with, we can borrow (also called regrouping).", "slug": "regrouping-when-subtracting-three-digit-numbers", "kind": "Video", "video_id": "QOtam19NQcQ", "keywords": "", "youtube_id": "QOtam19NQcQ", "readable_id": "regrouping-when-subtracting-three-digit-numbers"}, "5NjgcPri07E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5NjgcPri07E.mp4/5NjgcPri07E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5NjgcPri07E.mp4/5NjgcPri07E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5NjgcPri07E.m3u8/5NjgcPri07E.m3u8"}, "duration": 449, "id": "5NjgcPri07E", "title": "Inradius, perimeter, and area", "format": "mp4", "description": "Showing that area is equal to inradius times semiperimeter", "path": "khan/math/geometry/triangle-properties/angle_bisectors/inradius-perimeter-and-area/", "slug": "inradius-perimeter-and-area", "kind": "Video", "video_id": "5NjgcPri07E", "keywords": "perimeter, geometry", "youtube_id": "5NjgcPri07E", "readable_id": "inradius-perimeter-and-area"}, "J0gXdEAaSiA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J0gXdEAaSiA.mp4/J0gXdEAaSiA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J0gXdEAaSiA.mp4/J0gXdEAaSiA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J0gXdEAaSiA.m3u8/J0gXdEAaSiA.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/elimination-reactions-tutorial/e2-reactions/", "duration": 533, "id": "J0gXdEAaSiA", "title": "E2 reactions", "format": "mp4", "description": "E2 Elimination Reactions", "slug": "e2-reactions", "kind": "Video", "video_id": "J0gXdEAaSiA", "keywords": "E2, Elimination, Reactions, organic, chemistry", "youtube_id": "J0gXdEAaSiA", "readable_id": "e2-reactions"}, "xNb7djjLNuU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xNb7djjLNuU.mp4/xNb7djjLNuU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xNb7djjLNuU.mp4/xNb7djjLNuU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xNb7djjLNuU.m3u8/xNb7djjLNuU.m3u8"}, "duration": 340, "id": "xNb7djjLNuU", "title": "Michael Landy and Jean Tinguely: Art that breaks down", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nJoin artist Michael Landy as he rummages through a heap of trash and reminisces about the culmination to his 2001 performance Break Down. Over three years, Landy catalogued each and every one of his worldly possessions and then systematically destroyed them in front of an audience. He draws in inspiration from the work of Swiss painter and sculpture Jean Tinguely, whose 1960 Homage to New York was a great sculptural machine designed to destroy itself and leave nothing behind as a record. Although Tinguely\u2019s piece failed to self-destruct and was prematurely shut down by the fire brigade, it left behind an idea that Landy took up in his own work, decades later.\nWhat\u2019s the point of a self-destructing work of art? Is the work in the object itself, or in the performance around it? And in a world in which everything can be documented in images and videos, can a work of art every really erase itself from memory?\n", "path": "michael-landy/", "slug": "michael-landy", "kind": "Video", "video_id": "xNb7djjLNuU", "keywords": "Tate", "youtube_id": "xNb7djjLNuU", "readable_id": "michael-landy"}, "J4BN4dARpio": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J4BN4dARpio.mp4/J4BN4dARpio.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J4BN4dARpio.mp4/J4BN4dARpio.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J4BN4dARpio.m3u8/J4BN4dARpio.m3u8"}, "path": "khan/test-prep/mcat/cells/viruses/viral-replicaiton-lytic-vs-lysogenic/", "duration": 311, "id": "J4BN4dARpio", "title": "Viral replicaiton Lytic vs lysogenic", "format": "mp4", "description": "", "slug": "viral-replicaiton-lytic-vs-lysogenic", "kind": "Video", "video_id": "J4BN4dARpio", "keywords": "", "youtube_id": "J4BN4dARpio", "readable_id": "viral-replicaiton-lytic-vs-lysogenic"}, "dZnc3PtNaN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dZnc3PtNaN4.mp4/dZnc3PtNaN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dZnc3PtNaN4.mp4/dZnc3PtNaN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dZnc3PtNaN4.m3u8/dZnc3PtNaN4.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/power_rule_tutorial/proof-d-dx-x-n/", "duration": 423, "id": "dZnc3PtNaN4", "title": "Proof: d/dx(x^n)", "format": "mp4", "description": "Proof that d/dx(x^n) = n*x^(n-1)", "slug": "proof-d-dx-x-n", "kind": "Video", "video_id": "dZnc3PtNaN4", "keywords": "calculus, proof, derivative, x^n, CC_39336_A-APR_5", "youtube_id": "dZnc3PtNaN4", "readable_id": "proof-d-dx-x-n"}, "6XOm3Km7r30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6XOm3Km7r30.mp4/6XOm3Km7r30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6XOm3Km7r30.mp4/6XOm3Km7r30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6XOm3Km7r30.m3u8/6XOm3Km7r30.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/reactions-benzene/resonance/", "duration": 711, "id": "6XOm3Km7r30", "title": "Resonance", "format": "mp4", "description": "Resonance in benzene and the carbonate ion", "slug": "resonance", "kind": "Video", "video_id": "6XOm3Km7r30", "keywords": "resonance, benzene, carbonate, ion, organic, chemistry", "youtube_id": "6XOm3Km7r30", "readable_id": "resonance"}, "rESzyhPOJ7I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rESzyhPOJ7I.mp4/rESzyhPOJ7I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rESzyhPOJ7I.mp4/rESzyhPOJ7I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rESzyhPOJ7I.m3u8/rESzyhPOJ7I.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/stoichiometry/stoichiometry-limiting-reagent/", "duration": 904, "id": "rESzyhPOJ7I", "title": "Stoichiometry: Limiting reagent", "format": "mp4", "description": "Stoichiometry problem where we have a limiting reagent! ", "slug": "stoichiometry-limiting-reagent", "kind": "Video", "video_id": "rESzyhPOJ7I", "keywords": "chemistry, reagent, reactant, stoichiometry", "youtube_id": "rESzyhPOJ7I", "readable_id": "stoichiometry-limiting-reagent"}, "ICI0gpCS_Pc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ICI0gpCS_Pc.mp4/ICI0gpCS_Pc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ICI0gpCS_Pc.mp4/ICI0gpCS_Pc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ICI0gpCS_Pc.m3u8/ICI0gpCS_Pc.m3u8"}, "path": "khan/humanities/history/crashcourse-worldhistory/when-people-do-great-and-really-terrible-things-2/crash-course-world-history-26/", "duration": 696, "id": "ICI0gpCS_Pc", "title": "The Seven Years War", "format": "mp4", "description": "In which John teaches you about the Seven Years War, which may have lasted nine years. Or as many as 23. It was a very confusing war. The Seven Years War was a global war, fought on five continents, which is kind of a lot. John focuses on the war as it happened in the Americas, Asia, and Africa. the \"great\" European powers were the primary combatants, but they fought just about everywhere. Of course, this being a history course, the outcomes of this war still resonate in our lives today. The Seven Years war determined the direction of the British Empire, and led pretty directly to the subject of Episode 28, the American Revolution.\u00a0", "slug": "crash-course-world-history-26", "kind": "Video", "video_id": "ICI0gpCS_Pc", "keywords": "crash course", "youtube_id": "ICI0gpCS_Pc", "readable_id": "crash-course-world-history-26"}, "P8wRDGEl4F8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P8wRDGEl4F8.mp4/P8wRDGEl4F8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P8wRDGEl4F8.mp4/P8wRDGEl4F8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P8wRDGEl4F8.m3u8/P8wRDGEl4F8.m3u8"}, "duration": 236, "id": "P8wRDGEl4F8", "title": "Exploring the dark universe: Dark energy", "format": "mp4", "description": "Mordecai-Mark Mac Low is \u200ban astrophysicist and the curator of the Dark Universe\u00a0space show gives an overview of what we know about dark energy.\u00a0\u00a0", "path": "dark-energy/", "slug": "dark-energy", "kind": "Video", "video_id": "P8wRDGEl4F8", "keywords": "", "youtube_id": "P8wRDGEl4F8", "readable_id": "dark-energy"}, "x-Dqe5U1TXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x-Dqe5U1TXA.mp4/x-Dqe5U1TXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x-Dqe5U1TXA.mp4/x-Dqe5U1TXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x-Dqe5U1TXA.m3u8/x-Dqe5U1TXA.m3u8"}, "duration": 240, "id": "x-Dqe5U1TXA", "title": "Decimal place value", "format": "mp4", "description": "Decimal Place Value", "path": "khan/math/pre-algebra/decimals-pre-alg/decimal-place-value-pre-alg/decimal-place-value/", "slug": "decimal-place-value", "kind": "Video", "video_id": "x-Dqe5U1TXA", "keywords": "U03_L1_T1_we1, Decimal, Place, Value, CC_5_NBT_4", "youtube_id": "x-Dqe5U1TXA", "readable_id": "decimal-place-value"}, "iqpDFKIREBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iqpDFKIREBo.mp4/iqpDFKIREBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iqpDFKIREBo.mp4/iqpDFKIREBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iqpDFKIREBo.m3u8/iqpDFKIREBo.m3u8"}, "duration": 132, "id": "iqpDFKIREBo", "title": "Liters of soda for the party", "format": "mp4", "description": "Use a picture and repeated addition to solve a multiplication word problem. \u00a0Watch out for unnecessary information.", "path": "liters-of-soda-for-the-party/", "slug": "liters-of-soda-for-the-party", "kind": "Video", "video_id": "iqpDFKIREBo", "keywords": "", "youtube_id": "iqpDFKIREBo", "readable_id": "liters-of-soda-for-the-party"}, "TOqor4PWGhM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TOqor4PWGhM.mp4/TOqor4PWGhM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TOqor4PWGhM.mp4/TOqor4PWGhM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TOqor4PWGhM.m3u8/TOqor4PWGhM.m3u8"}, "duration": 706, "id": "TOqor4PWGhM", "title": "The electron", "format": "mp4", "description": "Hank brings us the story of the electron and describes how reality is a kind of music, discussing electron shells and orbitals, electron configurations, ionization and electron affinities, and how all these things can be understood via the periodic table.\u00a0\nWriter: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector: Michael Aranda\nEditor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "the-electron/", "slug": "the-electron", "kind": "Video", "video_id": "TOqor4PWGhM", "keywords": "", "youtube_id": "TOqor4PWGhM", "readable_id": "the-electron"}, "97nFwkRiNCc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/97nFwkRiNCc.mp4/97nFwkRiNCc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/97nFwkRiNCc.mp4/97nFwkRiNCc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/97nFwkRiNCc.m3u8/97nFwkRiNCc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/rn-blood-cell-lineages/", "duration": 500, "id": "97nFwkRiNCc", "title": "Blood cell lineages", "format": "mp4", "description": "", "slug": "rn-blood-cell-lineages", "kind": "Video", "video_id": "97nFwkRiNCc", "keywords": "", "youtube_id": "97nFwkRiNCc", "readable_id": "rn-blood-cell-lineages"}, "1_OieLuWGyw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1_OieLuWGyw.mp4/1_OieLuWGyw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1_OieLuWGyw.mp4/1_OieLuWGyw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1_OieLuWGyw.m3u8/1_OieLuWGyw.m3u8"}, "path": "khan/science/discoveries-projects/robots/all-about-spout/spdt-lever-switch/", "duration": 168, "id": "1_OieLuWGyw", "title": "SPDT switch", "format": "mp4", "description": "", "slug": "spdt-lever-switch", "kind": "Video", "video_id": "1_OieLuWGyw", "keywords": "", "youtube_id": "1_OieLuWGyw", "readable_id": "spdt-lever-switch"}, "CfBYGFm5gPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CfBYGFm5gPA.mp4/CfBYGFm5gPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CfBYGFm5gPA.mp4/CfBYGFm5gPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CfBYGFm5gPA.m3u8/CfBYGFm5gPA.m3u8"}, "duration": 316, "id": "CfBYGFm5gPA", "title": "Adding mixed numbers with unlike denominators", "format": "mp4", "description": "Adding Mixed Numbers with Unlike Denominators", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/adding-mixed-numbers-with-unlike-denominators/", "slug": "adding-mixed-numbers-with-unlike-denominators", "kind": "Video", "video_id": "CfBYGFm5gPA", "keywords": "U02_L3_T1_we4, Adding, Mixed, Numbers, with, Unlike, Denominators, CC_5_NF_1, CC_5_NF_2", "youtube_id": "CfBYGFm5gPA", "readable_id": "adding-mixed-numbers-with-unlike-denominators"}, "MKnI3425EMI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MKnI3425EMI.mp4/MKnI3425EMI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MKnI3425EMI.mp4/MKnI3425EMI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MKnI3425EMI.m3u8/MKnI3425EMI.m3u8"}, "duration": 385, "id": "MKnI3425EMI", "title": "Optimal turns at Indianapolis Motor Speedway with JR Hildebrand", "format": "mp4", "description": "", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/jrhildebrand-turning/", "slug": "jrhildebrand-turning", "kind": "Video", "video_id": "MKnI3425EMI", "keywords": "", "youtube_id": "MKnI3425EMI", "readable_id": "jrhildebrand-turning"}, "xM8szz4VB28": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xM8szz4VB28.mp4/xM8szz4VB28.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xM8szz4VB28.mp4/xM8szz4VB28.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xM8szz4VB28.m3u8/xM8szz4VB28.m3u8"}, "duration": 780, "id": "xM8szz4VB28", "title": "Land productivity limiting human population", "format": "mp4", "description": "Thinking about how we get Calories from the land limits human population densities", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/land-productivity-limiting-human-population/", "slug": "land-productivity-limiting-human-population", "kind": "Video", "video_id": "xM8szz4VB28", "keywords": "food, chains, agricultural, productivity", "youtube_id": "xM8szz4VB28", "readable_id": "land-productivity-limiting-human-population"}, "mlrOJgyPySw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mlrOJgyPySw.mp4/mlrOJgyPySw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mlrOJgyPySw.mp4/mlrOJgyPySw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mlrOJgyPySw.m3u8/mlrOJgyPySw.m3u8"}, "duration": 519, "id": "mlrOJgyPySw", "title": "Encoding strategies", "format": "mp4", "description": "Learn about rote rehearsal, chunking, mnemonic devices, self-referencing, and spacing.", "path": "khan/test-prep/mcat/processing-the-environment/memory/encoding-strategies/", "slug": "encoding-strategies", "kind": "Video", "video_id": "mlrOJgyPySw", "keywords": "", "youtube_id": "mlrOJgyPySw", "readable_id": "encoding-strategies"}, "K57qjYYjgIY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K57qjYYjgIY.mp4/K57qjYYjgIY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K57qjYYjgIY.mp4/K57qjYYjgIY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K57qjYYjgIY.m3u8/K57qjYYjgIY.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/rn-circulatory-system/two-circulations-in-the-body/", "duration": 745, "id": "K57qjYYjgIY", "title": "Two circulations in the body", "format": "mp4", "description": "Learn the difference between the pulmonary and systemic circulatory systems in the body. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "two-circulations-in-the-body", "kind": "Video", "video_id": "K57qjYYjgIY", "keywords": "", "youtube_id": "K57qjYYjgIY", "readable_id": "two-circulations-in-the-body"}, "XDF2QyQtd_Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XDF2QyQtd_Q.mp4/XDF2QyQtd_Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XDF2QyQtd_Q.mp4/XDF2QyQtd_Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XDF2QyQtd_Q.m3u8/XDF2QyQtd_Q.m3u8"}, "duration": 753, "id": "XDF2QyQtd_Q", "title": "Umbilical vessels and the ductus venosus", "format": "mp4", "description": "Watch as fetal blood goes through umbilical vessels and takes a shortcut through the Ductus Venosus to make it back to the heart. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/umbilical-vessels-and-the-ductus-venosus/", "slug": "umbilical-vessels-and-the-ductus-venosus", "kind": "Video", "video_id": "XDF2QyQtd_Q", "keywords": "", "youtube_id": "XDF2QyQtd_Q", "readable_id": "umbilical-vessels-and-the-ductus-venosus"}, "SRg_XB83-tw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SRg_XB83-tw.mp4/SRg_XB83-tw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SRg_XB83-tw.mp4/SRg_XB83-tw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SRg_XB83-tw.m3u8/SRg_XB83-tw.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/britain-18c/britain-ageof-revolution/room-1650-1730/", "duration": 183, "id": "SRg_XB83-tw", "title": "Room: 1650-1730", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Tim Batchelor explores the period 1650-1730.\n\nLearn more about the art featured in this video:\n- Jan Siberechts, View of a House and its Estate in Belsize, Middlesex, 1696\n-\u00a0Mary Beale, Portrait of a Young Girl, 1681\n- Mary Beale, Sketch of the Artist's Son, Bartholomew Beale, in Profile, 1660", "slug": "room-1650-1730", "kind": "Video", "video_id": "SRg_XB83-tw", "keywords": "Tate", "youtube_id": "SRg_XB83-tw", "readable_id": "room-1650-1730"}, "h78GdGiRmpM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h78GdGiRmpM.mp4/h78GdGiRmpM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h78GdGiRmpM.mp4/h78GdGiRmpM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h78GdGiRmpM.m3u8/h78GdGiRmpM.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/product-rule/", "duration": 528, "id": "h78GdGiRmpM", "title": "Product rule", "format": "mp4", "description": "The product rule. Examples using the Product and Chain rules.", "slug": "product-rule", "kind": "Video", "video_id": "h78GdGiRmpM", "keywords": "calculus, derivative, product, chain, rule, khan, academy", "youtube_id": "h78GdGiRmpM", "readable_id": "product-rule"}, "SFRTTUtAjg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SFRTTUtAjg4.mp4/SFRTTUtAjg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SFRTTUtAjg4.mp4/SFRTTUtAjg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SFRTTUtAjg4.m3u8/SFRTTUtAjg4.m3u8"}, "duration": 450, "id": "SFRTTUtAjg4", "title": "Introduction to even and odd", "format": "mp4", "description": "What are even and odd numbers? What happens when you add two even numbers? Two odd numbers? How about one odd number and one even number?", "path": "introduction-to-even-and-odd/", "slug": "introduction-to-even-and-odd", "kind": "Video", "video_id": "SFRTTUtAjg4", "keywords": "", "youtube_id": "SFRTTUtAjg4", "readable_id": "introduction-to-even-and-odd"}, "5wptm7lPZyE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5wptm7lPZyE.mp4/5wptm7lPZyE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5wptm7lPZyE.mp4/5wptm7lPZyE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5wptm7lPZyE.m3u8/5wptm7lPZyE.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/central-italy1/francesco-di-giorgio-martini-attributed-architectural-veduta-c-1490/", "duration": 210, "id": "5wptm7lPZyE", "title": "Martini, Architectural Veduta", "format": "mp4", "description": "Francesco di Giorgio Martini (attributed), Architectural Veduta, c. 1490, oil on poplar, 131 x 233 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin)", "slug": "francesco-di-giorgio-martini-attributed-architectural-veduta-c-1490", "kind": "Video", "video_id": "5wptm7lPZyE", "keywords": "Ideal City, ideal, renaissance, architecture, perspective, linear perspective, Francesco di Giorgio Martini, Architectural Veduta, Veduta, 1490, Gem\u00e4ldegalerie, Berlin, Italian, Google Art Project, Art History Khan Academy, Smarthistory, OER, Public Space, Painting", "youtube_id": "5wptm7lPZyE", "readable_id": "francesco-di-giorgio-martini-attributed-architectural-veduta-c-1490"}, "WFk7nT51q4U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WFk7nT51q4U.mp4/WFk7nT51q4U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WFk7nT51q4U.mp4/WFk7nT51q4U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WFk7nT51q4U.m3u8/WFk7nT51q4U.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/fatty-acid-oxidation-part-ii/", "duration": 765, "id": "WFk7nT51q4U", "title": "Fatty Acid Oxidation - Part II", "format": "mp4", "description": "1D: What are the three phases required for fatty acid oxidation? Where in the cell do these reactions take place? How is this process regulated?", "slug": "fatty-acid-oxidation-part-ii", "kind": "Video", "video_id": "WFk7nT51q4U", "keywords": "", "youtube_id": "WFk7nT51q4U", "readable_id": "fatty-acid-oxidation-part-ii"}, "hXg-6YgAARk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hXg-6YgAARk.mp4/hXg-6YgAARk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hXg-6YgAARk.mp4/hXg-6YgAARk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hXg-6YgAARk.m3u8/hXg-6YgAARk.m3u8"}, "duration": 244, "id": "hXg-6YgAARk", "title": "Basic trig and exponential antiderivatives", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/basic-trig-and-exponential-antiderivatives/", "slug": "basic-trig-and-exponential-antiderivatives", "kind": "Video", "video_id": "hXg-6YgAARk", "keywords": "", "youtube_id": "hXg-6YgAARk", "readable_id": "basic-trig-and-exponential-antiderivatives"}, "XysdjxWP1WI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XysdjxWP1WI.mp4/XysdjxWP1WI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XysdjxWP1WI.mp4/XysdjxWP1WI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XysdjxWP1WI.m3u8/XysdjxWP1WI.m3u8"}, "duration": 609, "id": "XysdjxWP1WI", "title": "Redox reactions", "format": "mp4", "description": "All the magic that we know is in the transfer of electrons. Reduction (gaining electrons) and oxidation (the loss of electrons) combine to form Redox chemistry, which contains the majority of chemical reactions. As electrons jump from atom to atom, they carry energy with them, and that transfer of energy is what makes all life on earth possible.\u00a0\nWriters: Kim Krieger & Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem10-redox-reactions/", "slug": "chem10-redox-reactions", "kind": "Video", "video_id": "XysdjxWP1WI", "keywords": "", "youtube_id": "XysdjxWP1WI", "readable_id": "chem10-redox-reactions"}, "qrVvpYt3Vl0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qrVvpYt3Vl0.mp4/qrVvpYt3Vl0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qrVvpYt3Vl0.mp4/qrVvpYt3Vl0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qrVvpYt3Vl0.m3u8/qrVvpYt3Vl0.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/reading-pictographs/", "duration": 141, "id": "qrVvpYt3Vl0", "title": "Reading pictographs", "format": "mp4", "description": "Common sense tells you that a pictograph must be some kind of....picture. Yes! A pictograph is basically a way to represent data with pictures that relate to the data. Let's look at this word problem that asks to interpret a pictograph.", "slug": "reading-pictographs", "kind": "Video", "video_id": "qrVvpYt3Vl0", "keywords": "u08_l1_t1_we1, Reading, Pictographs", "youtube_id": "qrVvpYt3Vl0", "readable_id": "reading-pictographs"}, "iiFWoXQPOJc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iiFWoXQPOJc.mp4/iiFWoXQPOJc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iiFWoXQPOJc.mp4/iiFWoXQPOJc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iiFWoXQPOJc.m3u8/iiFWoXQPOJc.m3u8"}, "duration": 1143, "id": "iiFWoXQPOJc", "title": "Work done by isothermic process", "format": "mp4", "description": "Isothermic and Adiabatic processes. Calculating the work done by an isothermic process. Seeing that it is the same as the heat added.", "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/work-done-by-isothermic-process/", "slug": "work-done-by-isothermic-process", "kind": "Video", "video_id": "iiFWoXQPOJc", "keywords": "thermodynamics, heat, work, internal, energy", "youtube_id": "iiFWoXQPOJc", "readable_id": "work-done-by-isothermic-process"}, "5HMMfiyszjo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5HMMfiyszjo.mp4/5HMMfiyszjo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5HMMfiyszjo.mp4/5HMMfiyszjo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5HMMfiyszjo.m3u8/5HMMfiyszjo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/absorption-in-the-visible-region/", "duration": 311, "id": "5HMMfiyszjo", "title": "Absorption in the visible region", "format": "mp4", "description": "", "slug": "absorption-in-the-visible-region", "kind": "Video", "video_id": "5HMMfiyszjo", "keywords": "", "youtube_id": "5HMMfiyszjo", "readable_id": "absorption-in-the-visible-region"}, "FtUekmRNi8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FtUekmRNi8M.mp4/FtUekmRNi8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FtUekmRNi8M.mp4/FtUekmRNi8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FtUekmRNi8M.m3u8/FtUekmRNi8M.m3u8"}, "duration": 185, "id": "FtUekmRNi8M", "title": "Photographs: a closer look", "format": "mp4", "description": "See how photography is more than a mechanical art, but rather an art infused with imagination, as exemplified by works from photographers Cameron, Watkins, K\u00e4sebier, Ulmann, Evans, Stieglitz, Le Gray, and Hine. Love art? Follow us on Google+", "path": "photographs/", "slug": "photographs", "kind": "Video", "video_id": "FtUekmRNi8M", "keywords": "", "youtube_id": "FtUekmRNi8M", "readable_id": "photographs"}, "oG45EoRh3Fo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oG45EoRh3Fo.mp4/oG45EoRh3Fo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oG45EoRh3Fo.mp4/oG45EoRh3Fo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oG45EoRh3Fo.m3u8/oG45EoRh3Fo.m3u8"}, "duration": 314, "id": "oG45EoRh3Fo", "title": "Jackson Pollock", "format": "mp4", "description": "To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting or enroll in the online course Modern and Contemporary\u00a0Art:\u00a01945-1989.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-jackson-pollock/", "slug": "moma-jackson-pollock", "kind": "Video", "video_id": "oG45EoRh3Fo", "keywords": "", "youtube_id": "oG45EoRh3Fo", "readable_id": "moma-jackson-pollock"}, "QXYbGZ3T3_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QXYbGZ3T3_k.mp4/QXYbGZ3T3_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QXYbGZ3T3_k.mp4/QXYbGZ3T3_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QXYbGZ3T3_k.m3u8/QXYbGZ3T3_k.m3u8"}, "duration": 214, "id": "QXYbGZ3T3_k", "title": "Galactic collisions", "format": "mp4", "description": "Collision of the Milky Way Galaxy with Andromeda (forming \"Milkomeda\")", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/quasars/galactic-collisions/", "slug": "galactic-collisions", "kind": "Video", "video_id": "QXYbGZ3T3_k", "keywords": "Milky, Way, Galactic, Andromeda, Collision", "youtube_id": "QXYbGZ3T3_k", "readable_id": "galactic-collisions"}, "_ce-IVjQYws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_ce-IVjQYws.mp4/_ce-IVjQYws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_ce-IVjQYws.mp4/_ce-IVjQYws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_ce-IVjQYws.m3u8/_ce-IVjQYws.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/anatomy-of-the-male-reproductive-system/", "duration": 600, "id": "_ce-IVjQYws", "title": "Anatomy of the male reproductive system", "format": "mp4", "description": "", "slug": "anatomy-of-the-male-reproductive-system", "kind": "Video", "video_id": "_ce-IVjQYws", "keywords": "", "youtube_id": "_ce-IVjQYws", "readable_id": "anatomy-of-the-male-reproductive-system"}, "vOVPusp5-tg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vOVPusp5-tg.mp4/vOVPusp5-tg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vOVPusp5-tg.mp4/vOVPusp5-tg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vOVPusp5-tg.m3u8/vOVPusp5-tg.m3u8"}, "duration": 185, "id": "vOVPusp5-tg", "title": "Number properties terminology 1", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/number-properties-terminology-1/", "slug": "number-properties-terminology-1", "kind": "Video", "video_id": "vOVPusp5-tg", "keywords": "", "youtube_id": "vOVPusp5-tg", "readable_id": "number-properties-terminology-1"}, "glMvD6x4vqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/glMvD6x4vqw.mp4/glMvD6x4vqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/glMvD6x4vqw.mp4/glMvD6x4vqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/glMvD6x4vqw.m3u8/glMvD6x4vqw.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/the-uninsured/", "duration": 684, "id": "glMvD6x4vqw", "title": "The U.S. uninsured population", "format": "mp4", "description": "More than 45 million Americans lack health insurance. This video explains who they are, what issues they face, how their care is paid for, and the possible future of health care coverage for them.", "slug": "the-uninsured", "kind": "Video", "video_id": "glMvD6x4vqw", "keywords": "", "youtube_id": "glMvD6x4vqw", "readable_id": "the-uninsured"}, "GwjiR2_7A7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GwjiR2_7A7Y.mp4/GwjiR2_7A7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GwjiR2_7A7Y.mp4/GwjiR2_7A7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GwjiR2_7A7Y.m3u8/GwjiR2_7A7Y.m3u8"}, "duration": 156, "id": "GwjiR2_7A7Y", "title": "Absolute value equations 1", "format": "mp4", "description": "Absolute Value Equations 1", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute-value-equations-1/", "slug": "absolute-value-equations-1", "kind": "Video", "video_id": "GwjiR2_7A7Y", "keywords": "U02_L2_T2_we1, Absolute, Value, Equations, CC_6_NS_7_c, CC_8_EE_7, CC_8_EE_7_a", "youtube_id": "GwjiR2_7A7Y", "readable_id": "absolute-value-equations-1"}, "wiWRUuRDXvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wiWRUuRDXvc.mp4/wiWRUuRDXvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wiWRUuRDXvc.mp4/wiWRUuRDXvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wiWRUuRDXvc.m3u8/wiWRUuRDXvc.m3u8"}, "duration": 767, "id": "wiWRUuRDXvc", "title": "What is the flu?", "format": "mp4", "description": "Learn the difference between the cold and the flu, and how we sometimes can get fooled by viruses! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/what-is-the-flu/", "slug": "what-is-the-flu", "kind": "Video", "video_id": "wiWRUuRDXvc", "keywords": "", "youtube_id": "wiWRUuRDXvc", "readable_id": "what-is-the-flu"}, "l3ngsl7FhTc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l3ngsl7FhTc.mp4/l3ngsl7FhTc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l3ngsl7FhTc.mp4/l3ngsl7FhTc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l3ngsl7FhTc.m3u8/l3ngsl7FhTc.m3u8"}, "duration": 796, "id": "l3ngsl7FhTc", "title": "Neuron resting potential mechanism", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/neuron-resting-potential-mechanism/", "slug": "neuron-resting-potential-mechanism", "kind": "Video", "video_id": "l3ngsl7FhTc", "keywords": "", "youtube_id": "l3ngsl7FhTc", "readable_id": "neuron-resting-potential-mechanism"}, "aq_XL6FrmGs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aq_XL6FrmGs.mp4/aq_XL6FrmGs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aq_XL6FrmGs.mp4/aq_XL6FrmGs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aq_XL6FrmGs.m3u8/aq_XL6FrmGs.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/identifying-parallel-and-perpendicular-lines/", "duration": 215, "id": "aq_XL6FrmGs", "title": "Identifying parallel and perpendicular lines", "format": "mp4", "description": "Let's now apply what we learned and do an exercise together in which we identify parallel and perpendicular lines.This is great practice.", "slug": "identifying-parallel-and-perpendicular-lines", "kind": "Video", "video_id": "aq_XL6FrmGs", "keywords": "u07_l1_t2_we1, Identifying, Parallel, and, Perpendicular, Lines", "youtube_id": "aq_XL6FrmGs", "readable_id": "identifying-parallel-and-perpendicular-lines"}, "l3iXON1xEC4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l3iXON1xEC4.mp4/l3iXON1xEC4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l3iXON1xEC4.mp4/l3iXON1xEC4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l3iXON1xEC4.m3u8/l3iXON1xEC4.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function-introduction/difference-between-equations-and-functions/", "duration": 258, "id": "l3iXON1xEC4", "title": "Difference between equations and functions", "format": "mp4", "description": "Jesse Roe and Sal talk about the difference between equations and functions", "slug": "difference-between-equations-and-functions", "kind": "Video", "video_id": "l3iXON1xEC4", "keywords": "", "youtube_id": "l3iXON1xEC4", "readable_id": "difference-between-equations-and-functions"}, "HhN5Zkbpt_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HhN5Zkbpt_k.mp4/HhN5Zkbpt_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HhN5Zkbpt_k.mp4/HhN5Zkbpt_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HhN5Zkbpt_k.m3u8/HhN5Zkbpt_k.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/weyden/rogier-van-der-weyden-crucifixion-triptych-c-1445/", "duration": 297, "id": "HhN5Zkbpt_k", "title": "Van der Weyden, Crucifixion Triptych", "format": "mp4", "description": "Rogier van der Weyden, Crucifixion Triptych, c. 1445, oil on oak, center panel: 101 x 70 cm, each wing: 101 x 35 cm (Kunsthistorisches Museum, Vienna)", "slug": "rogier-van-der-weyden-crucifixion-triptych-c-1445", "kind": "Video", "video_id": "HhN5Zkbpt_k", "keywords": "Weyden, Kunsthistorisches Museum, Rogier van der Weyden, Crucifixion, Triptych, 1445, Vienna, van der Weyden, Flemish, Netherlandish, Northern, Renaissance, Veronica, donors, Khan Academy, smarthistory, art history, Google Art Project, OER, painting", "youtube_id": "HhN5Zkbpt_k", "readable_id": "rogier-van-der-weyden-crucifixion-triptych-c-1445"}, "FwMYoK1QKso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FwMYoK1QKso.mp4/FwMYoK1QKso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FwMYoK1QKso.mp4/FwMYoK1QKso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FwMYoK1QKso.m3u8/FwMYoK1QKso.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/comparing-decimals-pre-alg/comparing-decimals-4/", "duration": 128, "id": "FwMYoK1QKso", "title": "Comparing decimals: place value difference", "format": "mp4", "description": "It's not uncommon to be asked to compare two decimals and judge which one is larger. How do you do that? This video will gave you the confidence to answer that question.", "slug": "comparing-decimals-4", "kind": "Video", "video_id": "FwMYoK1QKso", "keywords": "u03_l1_t2_we4, Comparing, Decimals", "youtube_id": "FwMYoK1QKso", "readable_id": "comparing-decimals-4"}, "Pt-Tn6L60-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pt-Tn6L60-o.mp4/Pt-Tn6L60-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pt-Tn6L60-o.mp4/Pt-Tn6L60-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pt-Tn6L60-o.m3u8/Pt-Tn6L60-o.m3u8"}, "duration": 146, "id": "Pt-Tn6L60-o", "title": "Linear and nonlinear functions (example 1)", "format": "mp4", "description": "", "path": "linear-and-nonlinear-functions-example-3/", "slug": "linear-and-nonlinear-functions-example-3", "kind": "Video", "video_id": "Pt-Tn6L60-o", "keywords": "", "youtube_id": "Pt-Tn6L60-o", "readable_id": "linear-and-nonlinear-functions-example-3"}, "wD15pD5pCt4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wD15pD5pCt4.mp4/wD15pD5pCt4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wD15pD5pCt4.mp4/wD15pD5pCt4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wD15pD5pCt4.m3u8/wD15pD5pCt4.m3u8"}, "duration": 524, "id": "wD15pD5pCt4", "title": "Ketone naming", "format": "mp4", "description": "Ketone Naming", "path": "khan/science/organic-chemistry/aldehydes-ketones/nomenclature-aldehyde-ketone/ketone-naming/", "slug": "ketone-naming", "kind": "Video", "video_id": "wD15pD5pCt4", "keywords": "Ketone, Naming, Acetone", "youtube_id": "wD15pD5pCt4", "readable_id": "ketone-naming"}, "LsvqEN3XVX4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LsvqEN3XVX4.mp4/LsvqEN3XVX4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LsvqEN3XVX4.mp4/LsvqEN3XVX4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LsvqEN3XVX4.m3u8/LsvqEN3XVX4.m3u8"}, "duration": 71, "id": "LsvqEN3XVX4", "title": "Listen to variable resistance", "format": "mp4", "description": "Here we draw a line on a page and use it as a variable resistor in series with a speaker. What relationship do we hear? Does it sound linear?", "path": "khan/science/discoveries-projects/discoveries/resistance/listen-to-variable-resistance/", "slug": "listen-to-variable-resistance", "kind": "Video", "video_id": "LsvqEN3XVX4", "keywords": "variable resistor", "youtube_id": "LsvqEN3XVX4", "readable_id": "listen-to-variable-resistance"}, "FP2arCfAfBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FP2arCfAfBY.mp4/FP2arCfAfBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FP2arCfAfBY.mp4/FP2arCfAfBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FP2arCfAfBY.m3u8/FP2arCfAfBY.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/proof-log-a-log-b-log-ab/", "duration": 428, "id": "FP2arCfAfBY", "title": "Proof: log a + log b = log ab", "format": "mp4", "description": "Proof of the logarithm property: log a + log b = log ab", "slug": "proof-log-a-log-b-log-ab", "kind": "Video", "video_id": "FP2arCfAfBY", "keywords": "logarithm, log, proof, algebra, math, khan, property", "youtube_id": "FP2arCfAfBY", "readable_id": "proof-log-a-log-b-log-ab"}, "_DNM039pUXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_DNM039pUXE.mp4/_DNM039pUXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_DNM039pUXE.mp4/_DNM039pUXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_DNM039pUXE.m3u8/_DNM039pUXE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-throat-conditions/tonsillitis/", "duration": 550, "id": "_DNM039pUXE", "title": "Tonsillitis", "format": "mp4", "description": "", "slug": "tonsillitis", "kind": "Video", "video_id": "_DNM039pUXE", "keywords": "", "youtube_id": "_DNM039pUXE", "readable_id": "tonsillitis"}, "8Y4JSp5U82I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Y4JSp5U82I.mp4/8Y4JSp5U82I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Y4JSp5U82I.mp4/8Y4JSp5U82I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Y4JSp5U82I.m3u8/8Y4JSp5U82I.m3u8"}, "duration": 644, "id": "8Y4JSp5U82I", "title": "Introduction to magnetism", "format": "mp4", "description": "An introduction to magnetism", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/introduction-to-magnetism/", "slug": "introduction-to-magnetism", "kind": "Video", "video_id": "8Y4JSp5U82I", "keywords": "physics, magnetism, magnet", "youtube_id": "8Y4JSp5U82I", "readable_id": "introduction-to-magnetism"}, "5brsc8IbWSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5brsc8IbWSk.mp4/5brsc8IbWSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5brsc8IbWSk.mp4/5brsc8IbWSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5brsc8IbWSk.m3u8/5brsc8IbWSk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/multifocal-atrial-tachycardia/", "duration": 380, "id": "5brsc8IbWSk", "title": "Multifocal atrial tachycardia (MAT)", "format": "mp4", "description": "", "slug": "multifocal-atrial-tachycardia", "kind": "Video", "video_id": "5brsc8IbWSk", "keywords": "", "youtube_id": "5brsc8IbWSk", "readable_id": "multifocal-atrial-tachycardia"}, "3motcx0GRck": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3motcx0GRck.mp4/3motcx0GRck.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3motcx0GRck.mp4/3motcx0GRck.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3motcx0GRck.m3u8/3motcx0GRck.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/gian-lorenzo-bernini-pluto-and-proserpina-1621-22/", "duration": 169, "id": "3motcx0GRck", "title": "Bernini, Pluto and Proserpina", "format": "mp4", "description": "Gian Lorenzo Bernini, Pluto and Proserpina (also know as the Rape of Proserpina), 1621-22, marble (Galleria Borghese, Rome). Proserpina is the Latin varient of the mythic Greek Persephone.", "slug": "gian-lorenzo-bernini-pluto-and-proserpina-1621-22", "kind": "Video", "video_id": "3motcx0GRck", "keywords": "", "youtube_id": "3motcx0GRck", "readable_id": "gian-lorenzo-bernini-pluto-and-proserpina-1621-22"}, "lCRGNykWqFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lCRGNykWqFI.mp4/lCRGNykWqFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lCRGNykWqFI.mp4/lCRGNykWqFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lCRGNykWqFI.m3u8/lCRGNykWqFI.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/change_of_basis/lin-alg-alternate-basis-tranformation-matrix-example/", "duration": 800, "id": "lCRGNykWqFI", "title": "Alternate basis transformation matrix example", "format": "mp4", "description": "Example of finding the transformation matrix for an alternate basis", "slug": "lin-alg-alternate-basis-tranformation-matrix-example", "kind": "Video", "video_id": "lCRGNykWqFI", "keywords": "basis, coordinates, transformation, matrix", "youtube_id": "lCRGNykWqFI", "readable_id": "lin-alg-alternate-basis-tranformation-matrix-example"}, "U2fGKvbir24": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U2fGKvbir24.mp4/U2fGKvbir24.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U2fGKvbir24.mp4/U2fGKvbir24.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U2fGKvbir24.m3u8/U2fGKvbir24.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-non-cyanotic-heart-diseases/patent-ductus-arteriosus/", "duration": 594, "id": "U2fGKvbir24", "title": "Patent ductus arteriosus", "format": "mp4", "description": "Patent ductus arteriosus is a medical condition where a blood vessel called the ductus arteriosus does not permanently close after birth. Learn why the ductus arteriosus does not close, why patients with this condition have a wide pulse pressure, and how the disease is treated with surgery and nonsteroidal anti-inflammatory drugs (NSAIDs).", "slug": "patent-ductus-arteriosus", "kind": "Video", "video_id": "U2fGKvbir24", "keywords": "", "youtube_id": "U2fGKvbir24", "readable_id": "patent-ductus-arteriosus"}, "00qYQahwuSQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/00qYQahwuSQ.mp4/00qYQahwuSQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/00qYQahwuSQ.mp4/00qYQahwuSQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/00qYQahwuSQ.m3u8/00qYQahwuSQ.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/hydroboration-oxidation-mechanism/", "duration": 679, "id": "00qYQahwuSQ", "title": "Hydroboration-oxidation: mechanism", "format": "mp4", "description": "", "slug": "hydroboration-oxidation-mechanism", "kind": "Video", "video_id": "00qYQahwuSQ", "keywords": "", "youtube_id": "00qYQahwuSQ", "readable_id": "hydroboration-oxidation-mechanism"}, "YheIckLuV7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YheIckLuV7c.mp4/YheIckLuV7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YheIckLuV7c.mp4/YheIckLuV7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YheIckLuV7c.m3u8/YheIckLuV7c.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-etruria/etruscan-necropolises-unesconhk/", "duration": 177, "id": "YheIckLuV7c", "title": "Etruscan Necropolises of Cerveteri and Tarquinia (from UNESCO/NHK)", "format": "mp4", "description": "\nThese two large Etruscan cemeteries reflect different types of burial practices from the 9th to the 1st century BC, and bear witness to the achievements of Etruscan culture. Which over nine centuries developed the earliest urban civilization in the northern Mediterranean. Some of the tombs are monumental, cut in rock and topped by impressive tumuli (burial mounds). Many feature carvings on their walls, others have wall paintings of\u00a0outstanding quality. The necropolis near Cerveteri, known as Banditaccia, contains thousands of tombs organized in a city-like plan, with streets, small squares and neighbourhoods. The site contains very different types of tombs: trenches cut in rock; tumuli; and some, also carved in rock, in the shape of huts or houses with a wealth of structural details. These provide the only surviving evidence of Etruscan residential architecture. The necropolis of Tarquinia, also known as Monterozzi, contains 6,000 graves cut in the rock. It is famous for its 200 painted tombs, the earliest of which date from the 7th century BC.\nSource: UNESCO TV / \u00a9 NHK Nippon Hoso Kyokai (URL)\n", "slug": "etruscan-necropolises-unesconhk", "kind": "Video", "video_id": "YheIckLuV7c", "keywords": "", "youtube_id": "YheIckLuV7c", "readable_id": "etruscan-necropolises-unesconhk"}, "ilWDSYnTEFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ilWDSYnTEFs.mp4/ilWDSYnTEFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ilWDSYnTEFs.mp4/ilWDSYnTEFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ilWDSYnTEFs.m3u8/ilWDSYnTEFs.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/plotting-inequalities-on-a-number-line/", "duration": 374, "id": "ilWDSYnTEFs", "title": "Inequalities: plotting on a number line", "format": "mp4", "description": "We've been taking a lot of equalities. What about when the relationships between numbers need to be expressed as inequalities? For example, less/greater than and/or equal to? How can we represent that idea on a number line?", "slug": "plotting-inequalities-on-a-number-line", "kind": "Video", "video_id": "ilWDSYnTEFs", "keywords": "", "youtube_id": "ilWDSYnTEFs", "readable_id": "plotting-inequalities-on-a-number-line"}, "_tNnI_w6TTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_tNnI_w6TTQ.mp4/_tNnI_w6TTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_tNnI_w6TTQ.mp4/_tNnI_w6TTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_tNnI_w6TTQ.m3u8/_tNnI_w6TTQ.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/daedalic-archaic/ancient-greek-temples-at-paestum/", "duration": 392, "id": "_tNnI_w6TTQ", "title": "Ancient Greek temples at Paestum, Italy", "format": "mp4", "description": "Ancient Greek Temples at Paestum: Hera I, c. 560-530 B.C.E., Archaic Period; Hera II, c. 460 B.C.E., Classical Period; Temple of Minerva, c. 500 B.C.E. Archaic Period. A conversation with Dr. Beth Harris and Dr. Steven Zucker", "slug": "ancient-greek-temples-at-paestum", "kind": "Video", "video_id": "_tNnI_w6TTQ", "keywords": "", "youtube_id": "_tNnI_w6TTQ", "readable_id": "ancient-greek-temples-at-paestum"}, "BSeQPlYD6S8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BSeQPlYD6S8.mp4/BSeQPlYD6S8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BSeQPlYD6S8.mp4/BSeQPlYD6S8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BSeQPlYD6S8.m3u8/BSeQPlYD6S8.m3u8"}, "path": "khan/humanities/art-1010/wwi-dada/art-great-war/ludwig-hohlwein/", "duration": 115, "id": "BSeQPlYD6S8", "title": "1913 | Schiess-Dusseldorf by Ludwig Hohlwein", "format": "mp4", "description": "Discover how advertising, machinery and U-boats intersect on the eve of WWI. \u00a0To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945.", "slug": "ludwig-hohlwein", "kind": "Video", "video_id": "BSeQPlYD6S8", "keywords": "", "youtube_id": "BSeQPlYD6S8", "readable_id": "ludwig-hohlwein"}, "0RRVV4Diomg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0RRVV4Diomg.mp4/0RRVV4Diomg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0RRVV4Diomg.mp4/0RRVV4Diomg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0RRVV4Diomg.m3u8/0RRVV4Diomg.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/knowing-stars-elements/bhp-periodic-table-crashcourse/", "duration": 682, "id": "0RRVV4Diomg", "title": "Crash Course Chemistry: Periodic Table of Elements", "format": "mp4", "description": "Hank gives us a tour of the most important table ever, including the life story of the obsessive man who championed it, Dmitri Mendeleev.", "slug": "bhp-periodic-table-crashcourse", "kind": "Video", "video_id": "0RRVV4Diomg", "keywords": "", "youtube_id": "0RRVV4Diomg", "readable_id": "bhp-periodic-table-crashcourse"}, "DjNMJpdFPGA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DjNMJpdFPGA.mp4/DjNMJpdFPGA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DjNMJpdFPGA.mp4/DjNMJpdFPGA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DjNMJpdFPGA.m3u8/DjNMJpdFPGA.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/sir-john-everett-millais-mariana-1851/", "duration": 311, "id": "DjNMJpdFPGA", "title": "Millais, Mariana", "format": "mp4", "description": "Sir John Everett Millais, Mariana, 1851, oil on wood, 597 x 495 mm (Tate Britain)", "slug": "sir-john-everett-millais-mariana-1851", "kind": "Video", "video_id": "DjNMJpdFPGA", "keywords": "Pre-Raphaelite, Tate Britain, Khan Academy, smarthistory, art history, Google Art Project, OER, Sir John Everett Millais, Millais, Mariana, 1851", "youtube_id": "DjNMJpdFPGA", "readable_id": "sir-john-everett-millais-mariana-1851"}, "SysHZ6-yai0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SysHZ6-yai0.mp4/SysHZ6-yai0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SysHZ6-yai0.mp4/SysHZ6-yai0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SysHZ6-yai0.m3u8/SysHZ6-yai0.m3u8"}, "duration": 65, "id": "SysHZ6-yai0", "title": "Magnet near compass", "format": "mp4", "description": "Exploring the effect of a permanent magnet on compass. What is going on?", "path": "khan/science/discoveries-projects/discoveries/magnetic-fields/magnet-near-compass/", "slug": "magnet-near-compass", "kind": "Video", "video_id": "SysHZ6-yai0", "keywords": "magnets", "youtube_id": "SysHZ6-yai0", "readable_id": "magnet-near-compass"}, "8Ryfe82DTcM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Ryfe82DTcM.mp4/8Ryfe82DTcM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Ryfe82DTcM.mp4/8Ryfe82DTcM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Ryfe82DTcM.m3u8/8Ryfe82DTcM.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/properties-matrix-multiplication/associative-property-matrix-multiplication/", "duration": 517, "id": "8Ryfe82DTcM", "title": "Associative property of matrix multiplication", "format": "mp4", "description": "", "slug": "associative-property-matrix-multiplication", "kind": "Video", "video_id": "8Ryfe82DTcM", "keywords": "", "youtube_id": "8Ryfe82DTcM", "readable_id": "associative-property-matrix-multiplication"}, "vx9aRRFQqBU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vx9aRRFQqBU.mp4/vx9aRRFQqBU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vx9aRRFQqBU.mp4/vx9aRRFQqBU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vx9aRRFQqBU.m3u8/vx9aRRFQqBU.m3u8"}, "duration": 154, "id": "vx9aRRFQqBU", "title": "Ludwig Hohlwein, \"Kaffee Hag\"", "format": "mp4", "description": "For more information, please visit\u00a0http://www.moma.org/1913", "path": "hohlwein-kaffee-hag/", "slug": "hohlwein-kaffee-hag", "kind": "Video", "video_id": "vx9aRRFQqBU", "keywords": "", "youtube_id": "vx9aRRFQqBU", "readable_id": "hohlwein-kaffee-hag"}, "Ma9YxZiBiRU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ma9YxZiBiRU.mp4/Ma9YxZiBiRU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ma9YxZiBiRU.mp4/Ma9YxZiBiRU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ma9YxZiBiRU.m3u8/Ma9YxZiBiRU.m3u8"}, "duration": 587, "id": "Ma9YxZiBiRU", "title": "Flu vaccine efficacy", "format": "mp4", "description": "Find out just how useful the flu vaccine actually is at preventing the flu! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/flu-vaccine-efficacy/", "slug": "flu-vaccine-efficacy", "kind": "Video", "video_id": "Ma9YxZiBiRU", "keywords": "", "youtube_id": "Ma9YxZiBiRU", "readable_id": "flu-vaccine-efficacy"}, "qIBqvr5_QqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qIBqvr5_QqQ.mp4/qIBqvr5_QqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qIBqvr5_QqQ.mp4/qIBqvr5_QqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qIBqvr5_QqQ.m3u8/qIBqvr5_QqQ.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_proof/stokes-theorem-proof-part-1/", "duration": 314, "id": "qIBqvr5_QqQ", "title": "Stokes' theorem proof part 1", "format": "mp4", "description": "The beginning of a proof of Stokes' theorem for a special class of surfaces. Finding the curl of our vector field.", "slug": "stokes-theorem-proof-part-1", "kind": "Video", "video_id": "qIBqvr5_QqQ", "keywords": "", "youtube_id": "qIBqvr5_QqQ", "readable_id": "stokes-theorem-proof-part-1"}, "zwUnRQbWPJU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zwUnRQbWPJU.mp4/zwUnRQbWPJU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zwUnRQbWPJU.mp4/zwUnRQbWPJU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zwUnRQbWPJU.m3u8/zwUnRQbWPJU.m3u8"}, "duration": 151, "id": "zwUnRQbWPJU", "title": "Simplifying expressions with exponents 3", "format": "mp4", "description": "Simplifying Expressions with Exponents 3", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/simplifying-expressions-with-exponents-3/", "slug": "simplifying-expressions-with-exponents-3", "kind": "Video", "video_id": "zwUnRQbWPJU", "keywords": "U07_L1_T3_we3, Simplifying, Expressions, with, Exponents, CC_6_EE_2, CC_6_EE_2_c, CC_7_G_6, CC_8_EE_1, CC_8_EE_2", "youtube_id": "zwUnRQbWPJU", "readable_id": "simplifying-expressions-with-exponents-3"}, "PR-A3UAO7_0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PR-A3UAO7_0.mp4/PR-A3UAO7_0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PR-A3UAO7_0.mp4/PR-A3UAO7_0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PR-A3UAO7_0.m3u8/PR-A3UAO7_0.m3u8"}, "duration": 550, "id": "PR-A3UAO7_0", "title": "Compound Sample Spaces", "format": "mp4", "description": "Explore the notion of a \"sample space\". See a sample space represented as a tree diagram, table, and list.", "path": "compound-sample-spaces/", "slug": "compound-sample-spaces", "kind": "Video", "video_id": "PR-A3UAO7_0", "keywords": "", "youtube_id": "PR-A3UAO7_0", "readable_id": "compound-sample-spaces"}, "qo5jU_V6JVo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qo5jU_V6JVo.mp4/qo5jU_V6JVo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qo5jU_V6JVo.mp4/qo5jU_V6JVo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qo5jU_V6JVo.m3u8/qo5jU_V6JVo.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/interpreting_linear_functions/interpreting-features-of-linear-functions-example/", "duration": 163, "id": "qo5jU_V6JVo", "title": "Interpreting linear graphs word problems example 2", "format": "mp4", "description": "", "slug": "interpreting-features-of-linear-functions-example", "kind": "Video", "video_id": "qo5jU_V6JVo", "keywords": "", "youtube_id": "qo5jU_V6JVo", "readable_id": "interpreting-features-of-linear-functions-example"}, "8t-Un7yH99g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8t-Un7yH99g.mp4/8t-Un7yH99g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8t-Un7yH99g.mp4/8t-Un7yH99g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8t-Un7yH99g.m3u8/8t-Un7yH99g.m3u8"}, "path": "khan/science/health-and-medicine/health-care-system/conversation-about-drug-pricing/", "duration": 813, "id": "8t-Un7yH99g", "title": "Conversation about drug pricing", "format": "mp4", "description": "Dr. Laurence Baker talks to Sal about how drug prices are set", "slug": "conversation-about-drug-pricing", "kind": "Video", "video_id": "8t-Un7yH99g", "keywords": "Marquee", "youtube_id": "8t-Un7yH99g", "readable_id": "conversation-about-drug-pricing"}, "jWFcI44eRN8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jWFcI44eRN8.mp4/jWFcI44eRN8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jWFcI44eRN8.mp4/jWFcI44eRN8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jWFcI44eRN8.m3u8/jWFcI44eRN8.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/coins-faith-power/", "duration": 257, "id": "jWFcI44eRN8", "title": "Coins of faith and power at the British Museum", "format": "mp4", "description": "Vesta Sarkhosh Curtis, British Museum curator of Islamic and Iranian coins, talks through the messaging on some Persian coins. \u00a9 Trustees of the British Museum", "slug": "coins-faith-power", "kind": "Video", "video_id": "jWFcI44eRN8", "keywords": "", "youtube_id": "jWFcI44eRN8", "readable_id": "coins-faith-power"}, "kQF9pOqmS0U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kQF9pOqmS0U.mp4/kQF9pOqmS0U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kQF9pOqmS0U.mp4/kQF9pOqmS0U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kQF9pOqmS0U.m3u8/kQF9pOqmS0U.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/rates_of_change/rates-of-change-between-radius-and-area-of-circle/", "duration": 463, "id": "kQF9pOqmS0U", "title": "Rates of change between radius and area of circle", "format": "mp4", "description": "", "slug": "rates-of-change-between-radius-and-area-of-circle", "kind": "Video", "video_id": "kQF9pOqmS0U", "keywords": "", "youtube_id": "kQF9pOqmS0U", "readable_id": "rates-of-change-between-radius-and-area-of-circle"}, "NoCW80MEGXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NoCW80MEGXY.mp4/NoCW80MEGXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NoCW80MEGXY.mp4/NoCW80MEGXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NoCW80MEGXY.m3u8/NoCW80MEGXY.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/turner-slave-ship-slavers-throwing-overboard-the-dead-and-dying-typhoon-coming-on-1840/", "duration": 242, "id": "NoCW80MEGXY", "title": "Turner, Slave Ship", "format": "mp4", "description": "Joseph Mallord William Turner, Slave Ship (Slavers Throwing Overboard the Dead and Dying, Typhoon Coming On), 1840 (Museum of Fine Arts, Boston) Speakers: Lori Landay & Beth Harris", "slug": "turner-slave-ship-slavers-throwing-overboard-the-dead-and-dying-typhoon-coming-on-1840", "kind": "Video", "video_id": "NoCW80MEGXY", "keywords": "", "youtube_id": "NoCW80MEGXY", "readable_id": "turner-slave-ship-slavers-throwing-overboard-the-dead-and-dying-typhoon-coming-on-1840"}, "79OmpES_9OE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/79OmpES_9OE.mp4/79OmpES_9OE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/79OmpES_9OE.mp4/79OmpES_9OE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/79OmpES_9OE.m3u8/79OmpES_9OE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/using-reduction-potentials/", "duration": 364, "id": "79OmpES_9OE", "title": "Using reduction potentials", "format": "mp4", "description": "", "slug": "using-reduction-potentials", "kind": "Video", "video_id": "79OmpES_9OE", "keywords": "", "youtube_id": "79OmpES_9OE", "readable_id": "using-reduction-potentials"}, "6fjkb3FThrg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6fjkb3FThrg.mp4/6fjkb3FThrg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6fjkb3FThrg.mp4/6fjkb3FThrg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6fjkb3FThrg.m3u8/6fjkb3FThrg.m3u8"}, "duration": 437, "id": "6fjkb3FThrg", "title": "The founding fathers of the United States of America: An overview", "format": "mp4", "description": "Introducing the \"Founding Mothers\"", "path": "founding-fathers-intro/", "slug": "founding-fathers-intro", "kind": "Video", "video_id": "6fjkb3FThrg", "keywords": "", "youtube_id": "6fjkb3FThrg", "readable_id": "founding-fathers-intro"}, "YYGb1Fmz6TY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YYGb1Fmz6TY.mp4/YYGb1Fmz6TY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YYGb1Fmz6TY.mp4/YYGb1Fmz6TY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YYGb1Fmz6TY.m3u8/YYGb1Fmz6TY.m3u8"}, "duration": 716, "id": "YYGb1Fmz6TY", "title": "The Haitian Revolutions", "format": "mp4", "description": "Ideas like liberty, freedom, and self-determination were hot stuff in the late 18th century, as evidenced by our recent revolutionary videos. Although freedom was breaking out all over, many of the societies that were touting these ideas relied on slave labor. Few places in the world relied so heavily on slave labor as Saint-Domingue, France's most profitable colony. Slaves made up nearly 90% of Saint-Domingue's population, and in 1789 they couldn't help but hear about the revolution underway in France. All the talk of liberty, equality, and fraternity sounds pretty good to a person in bondage, and so the slaves rebelled. This led to not one but two revolutions, and ended up with France, the rebels, Britain, and Spain all fighting in the territory. Spoiler alert: the slaves won. So how did the slaves of what would become Haiti throw off the yoke of one of the world's great empires? John Green tells how they did it, and what it has meant in Haiti and in the rest of the world.", "path": "khan/humanities/history/crashcourse-worldhistory/you-aint-the-boss-of-me-2/crash-course-world-history-30/", "slug": "crash-course-world-history-30", "kind": "Video", "video_id": "YYGb1Fmz6TY", "keywords": "crash course", "youtube_id": "YYGb1Fmz6TY", "readable_id": "crash-course-world-history-30"}, "NVSFyfli12I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NVSFyfli12I.mp4/NVSFyfli12I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NVSFyfli12I.mp4/NVSFyfli12I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NVSFyfli12I.m3u8/NVSFyfli12I.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/jason-christiansen/jason-christiansen-1/", "duration": 173, "id": "NVSFyfli12I", "title": "Baseball is Just a Game", "format": "mp4", "description": "Jason Christiansen has heard all the familiar comparisons between running a business and being a team player, but as a former major league baseball player, he steps to the plate with a unique perspective. Christiansen talks about building Rigid Industries and how the company deals with imitation product lines and compares the pressure of standing on the mound to standing before his team of employees.", "slug": "jason-christiansen-1", "kind": "Video", "video_id": "NVSFyfli12I", "keywords": "", "youtube_id": "NVSFyfli12I", "readable_id": "jason-christiansen-1"}, "BUmLw5m6F9s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BUmLw5m6F9s.mp4/BUmLw5m6F9s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BUmLw5m6F9s.mp4/BUmLw5m6F9s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BUmLw5m6F9s.m3u8/BUmLw5m6F9s.m3u8"}, "duration": 585, "id": "BUmLw5m6F9s", "title": "Graphing systems of inequalities 2", "format": "mp4", "description": "Graphing systems of inequalities 2", "path": "khan/math/algebra2/systems_eq_ineq/systems_inequalities_precalc/u06-l3-t1-we3-graphing-systems-of-inequalities/", "slug": "u06-l3-t1-we3-graphing-systems-of-inequalities", "kind": "Video", "video_id": "BUmLw5m6F9s", "keywords": "U06, L3, T1, we3, Graphing, Systems, of, Inequalities, CC_39336_A-REI_12", "youtube_id": "BUmLw5m6F9s", "readable_id": "u06-l3-t1-we3-graphing-systems-of-inequalities"}, "f8svAm237xM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f8svAm237xM.mp4/f8svAm237xM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f8svAm237xM.mp4/f8svAm237xM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f8svAm237xM.m3u8/f8svAm237xM.m3u8"}, "duration": 444, "id": "f8svAm237xM", "title": "More on why SSA is not a postulate", "format": "mp4", "description": "SSA special cases including RSH", "path": "khan/math/geometry/congruent-triangles/cong_triangle/more-on-why-ssa-is-not-a-postulate/", "slug": "more-on-why-ssa-is-not-a-postulate", "kind": "Video", "video_id": "f8svAm237xM", "keywords": "geometry, postulates", "youtube_id": "f8svAm237xM", "readable_id": "more-on-why-ssa-is-not-a-postulate"}, "eEUK_ThrHuQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eEUK_ThrHuQ.mp4/eEUK_ThrHuQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eEUK_ThrHuQ.mp4/eEUK_ThrHuQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eEUK_ThrHuQ.m3u8/eEUK_ThrHuQ.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_of_matrices/linear-algebra-formula-for-2x2-inverse/", "duration": 1100, "id": "eEUK_ThrHuQ", "title": "Formula for 2x2 inverse", "format": "mp4", "description": "Figuring out the formula for a 2x2 matrix. Defining the determinant.", "slug": "linear-algebra-formula-for-2x2-inverse", "kind": "Video", "video_id": "eEUK_ThrHuQ", "keywords": "matrix, inverse, determinant", "youtube_id": "eEUK_ThrHuQ", "readable_id": "linear-algebra-formula-for-2x2-inverse"}, "YJgIGwTysk0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YJgIGwTysk0.mp4/YJgIGwTysk0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YJgIGwTysk0.mp4/YJgIGwTysk0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YJgIGwTysk0.m3u8/YJgIGwTysk0.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-word-problem/", "duration": 219, "id": "YJgIGwTysk0", "title": "Multiplying fractions word problem: banana oat muffin recipe", "format": "mp4", "description": "We hope you learn to cook. Everyone should! At some point you'll need to make 1/2 a recipe which means using 1/2 of every ingredient in the recipe. Here's an example.", "slug": "multiplying-fractions-word-problem", "kind": "Video", "video_id": "YJgIGwTysk0", "keywords": "U02_L2_T1_we4, Multiplying, Fractions, Word, Problem, CC_5_NF_6", "youtube_id": "YJgIGwTysk0", "readable_id": "multiplying-fractions-word-problem"}, "JNmCg3nNi1U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JNmCg3nNi1U.mp4/JNmCg3nNi1U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JNmCg3nNi1U.mp4/JNmCg3nNi1U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JNmCg3nNi1U.m3u8/JNmCg3nNi1U.m3u8"}, "path": "khan/humanities/art-africa/ife-art/ife-uncovered/", "duration": 311, "id": "JNmCg3nNi1U", "title": "Ife uncovered", "format": "mp4", "description": "Professor John Picton and metallurgist Paul Craddock discuss the meaning and the making of the sculptures in the exhibition Kingdom of Ife sculptures from West Africa. \u00a9 Trustees of the British Museum", "slug": "ife-uncovered", "kind": "Video", "video_id": "JNmCg3nNi1U", "keywords": "", "youtube_id": "JNmCg3nNi1U", "readable_id": "ife-uncovered"}, "DzJvR56Suss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DzJvR56Suss.mp4/DzJvR56Suss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DzJvR56Suss.mp4/DzJvR56Suss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DzJvR56Suss.m3u8/DzJvR56Suss.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-making-groups-of-ten/adding-by-getting-to-group-of-10-first/", "duration": 170, "id": "DzJvR56Suss", "title": "Adding by getting to group of 10 first", "format": "mp4", "description": "", "slug": "adding-by-getting-to-group-of-10-first", "kind": "Video", "video_id": "DzJvR56Suss", "keywords": "", "youtube_id": "DzJvR56Suss", "readable_id": "adding-by-getting-to-group-of-10-first"}, "XEPdMvZqCHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XEPdMvZqCHQ.mp4/XEPdMvZqCHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XEPdMvZqCHQ.mp4/XEPdMvZqCHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XEPdMvZqCHQ.m3u8/XEPdMvZqCHQ.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/bond-line-structures/condensed-structures/", "duration": 409, "id": "XEPdMvZqCHQ", "title": "Condensed structures", "format": "mp4", "description": "How to go from Lewis dot structures to partially condensed structures to condensed structures", "slug": "condensed-structures", "kind": "Video", "video_id": "XEPdMvZqCHQ", "keywords": "", "youtube_id": "XEPdMvZqCHQ", "readable_id": "condensed-structures"}, "z83guai4S68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z83guai4S68.mp4/z83guai4S68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z83guai4S68.mp4/z83guai4S68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z83guai4S68.m3u8/z83guai4S68.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/markets-of-trajan/", "duration": 235, "id": "z83guai4S68", "title": "Markets of Trajan", "format": "mp4", "description": "Apollodorus of Damascus, The Markets of Trajan, 112 C.E., Rome Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "markets-of-trajan", "kind": "Video", "video_id": "z83guai4S68", "keywords": "", "youtube_id": "z83guai4S68", "readable_id": "markets-of-trajan"}, "CnAi_YXuwq0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CnAi_YXuwq0.mp4/CnAi_YXuwq0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CnAi_YXuwq0.mp4/CnAi_YXuwq0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CnAi_YXuwq0.m3u8/CnAi_YXuwq0.m3u8"}, "path": "khan/college-admissions/paying-for-college/work-study/work-study-study-hall/", "duration": 17, "id": "CnAi_YXuwq0", "title": "Student story: Work study as a study hall", "format": "mp4", "description": "", "slug": "work-study-study-hall", "kind": "Video", "video_id": "CnAi_YXuwq0", "keywords": "", "youtube_id": "CnAi_YXuwq0", "readable_id": "work-study-study-hall"}, "uYXhga17q1g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uYXhga17q1g.mp4/uYXhga17q1g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uYXhga17q1g.mp4/uYXhga17q1g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uYXhga17q1g.m3u8/uYXhga17q1g.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/line-and-angle-proofs-exercise/", "duration": 525, "id": "uYXhga17q1g", "title": "Line and angle proofs exercise", "format": "mp4", "description": "", "slug": "line-and-angle-proofs-exercise", "kind": "Video", "video_id": "uYXhga17q1g", "keywords": "", "youtube_id": "uYXhga17q1g", "readable_id": "line-and-angle-proofs-exercise"}, "05qDIjKevJo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/05qDIjKevJo.mp4/05qDIjKevJo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/05qDIjKevJo.mp4/05qDIjKevJo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/05qDIjKevJo.m3u8/05qDIjKevJo.m3u8"}, "duration": 1247, "id": "05qDIjKevJo", "title": "How earth's tilt causes seasons", "format": "mp4", "description": "How being Earth's tilt causes seasons", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic/how-earth-s-tilt-causes-seasons/", "slug": "how-earth-s-tilt-causes-seasons", "kind": "Video", "video_id": "05qDIjKevJo", "keywords": "earth, science, seasons, tilt, obliquity", "youtube_id": "05qDIjKevJo", "readable_id": "how-earth-s-tilt-causes-seasons"}, "T7JIpsnV71Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T7JIpsnV71Q.mp4/T7JIpsnV71Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T7JIpsnV71Q.mp4/T7JIpsnV71Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T7JIpsnV71Q.m3u8/T7JIpsnV71Q.m3u8"}, "duration": 175, "id": "T7JIpsnV71Q", "title": "\"She\" with Jason Sun", "format": "mp4", "description": "Met curator Jason Sun on the pursuit of beauty in Figure of a Seated Court Lady dating from China\u2019s Tang dynasty.\n\nThis charming figure brings to life a moment of leisure at the Tang imperial court. The plump young lady sits in a relaxed pose, accompanied by a playful lapdog next to her slipper. Bright, clear-toned glazes\u2014a recent innovation in ceramic technology\u2014enhance the beauty of her clothes with striking colors, amber yellow for her jacket and bright green for her sash and skirts. The hourglass-shaped stool, originally made of rattan, points to the trade and exchange with South Asia during this prosperous and cosmopolitan age.\u00a0This classic example of Tang sculpture illustrates the artistic sophistication of figural representation in the eighth century, when Chinese artists first mastered the skills to represent the human form in the round and with naturalistic details, which they adopted from the West through Buddhist art. At the same time, they maintained a certain degree of the Chinese linear tradition, as shown in the rhythmic drapery folds.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art\u00a0visit Find an Educator Resource.\n", "path": "she/", "slug": "she", "kind": "Video", "video_id": "T7JIpsnV71Q", "keywords": "authority, ceramic, fashion, motion, sculpture, Asia", "youtube_id": "T7JIpsnV71Q", "readable_id": "she"}, "Z9IWg0pcpqo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z9IWg0pcpqo.mp4/Z9IWg0pcpqo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z9IWg0pcpqo.mp4/Z9IWg0pcpqo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z9IWg0pcpqo.m3u8/Z9IWg0pcpqo.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/functional-groups/more-functional-groups/", "duration": 532, "id": "Z9IWg0pcpqo", "title": "More functional groups", "format": "mp4", "description": "An overview of the carbonyl-containing functional groups", "slug": "more-functional-groups", "kind": "Video", "video_id": "Z9IWg0pcpqo", "keywords": "", "youtube_id": "Z9IWg0pcpqo", "readable_id": "more-functional-groups"}, "-gB1y-PMWfs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-gB1y-PMWfs.mp4/-gB1y-PMWfs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-gB1y-PMWfs.mp4/-gB1y-PMWfs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-gB1y-PMWfs.m3u8/-gB1y-PMWfs.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/representing-a-number-as-a-decimal-percent-and-fraction/", "duration": 212, "id": "-gB1y-PMWfs", "title": "Converting percent to decimal and fraction", "format": "mp4", "description": "You'll find that be able to move easily between percentages, decimals, and fractions is HUGELY helpful. So let's practice!", "slug": "representing-a-number-as-a-decimal-percent-and-fraction", "kind": "Video", "video_id": "-gB1y-PMWfs", "keywords": "percent, and fraction", "youtube_id": "-gB1y-PMWfs", "readable_id": "representing-a-number-as-a-decimal-percent-and-fraction"}, "QOtyTZGWOmg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QOtyTZGWOmg.mp4/QOtyTZGWOmg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QOtyTZGWOmg.mp4/QOtyTZGWOmg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QOtyTZGWOmg.m3u8/QOtyTZGWOmg.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-23/", "duration": 630, "id": "QOtyTZGWOmg", "title": "GMAT: Data sufficiency 23", "format": "mp4", "description": "99-102, pg. 286", "slug": "gmat-data-sufficiency-23", "kind": "Video", "video_id": "QOtyTZGWOmg", "keywords": "gmat, data, sufficiency", "youtube_id": "QOtyTZGWOmg", "readable_id": "gmat-data-sufficiency-23"}, "bfy6IxsN_lg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bfy6IxsN_lg.mp4/bfy6IxsN_lg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bfy6IxsN_lg.mp4/bfy6IxsN_lg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bfy6IxsN_lg.m3u8/bfy6IxsN_lg.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/cubism/the-language-of-representation-pablo-picasso-s-guitar-1912-14/", "duration": 257, "id": "bfy6IxsN_lg", "title": "Picasso, Guitar", "format": "mp4", "description": "A conversation between Salman Khan and Steven Zucker about Pablo Picasso's sculpture, Guitar and related work, 1912-14 at The Museum of Modern Art\n\n\"I have seen what no man has seen before. When Pablo Picasso, leaving aside painting for a moment, was constructing this immense guitar out of sheet metal whose plans could be dispatched to any ignoramus in the universe who could put it together as well as him, I saw Picasso's studio, and this studio, more incredible than Faust's laboratory, this studio which, according to some, contained no works of art, in the old sense, was furnished with the newest of objects... Some witnesses, already shocked by the things that they saw covering the walls, and that they refused to call paintings because they were made of oilcloth, wrapping paper, and newspaper, said, pointing a haughty finger at the object of Picasso's clever pains: \"What is it? Does it rest on a pedestal? Does it hang on a wall? What is it, painting or sculpture?'\u00a0Picasso, dressed in the blue of Parisian artisans, responded in his finest Andalusian voice: 'It's nothing, it's el guitare!';\u00a0And there you are! The watertight compartments are demolished. We are delivered from painting and sculpture, which already have been liberated from the idiotic tyranny of genres. It is neither this nor that. It is nothing. It's el guitare!\" (Andr\u00e9 Salmon, New French Painting, August 9, 1919)\n", "slug": "the-language-of-representation-pablo-picasso-s-guitar-1912-14", "kind": "Video", "video_id": "bfy6IxsN_lg", "keywords": "", "youtube_id": "bfy6IxsN_lg", "readable_id": "the-language-of-representation-pablo-picasso-s-guitar-1912-14"}, "RrJY9dSbRtI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RrJY9dSbRtI.mp4/RrJY9dSbRtI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RrJY9dSbRtI.mp4/RrJY9dSbRtI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RrJY9dSbRtI.m3u8/RrJY9dSbRtI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/solubility-equilibria-mcat/solubility-and-the-ph-of-the-solution/", "duration": 311, "id": "RrJY9dSbRtI", "title": "Solubility and the pH of the solution", "format": "mp4", "description": "", "slug": "solubility-and-the-ph-of-the-solution", "kind": "Video", "video_id": "RrJY9dSbRtI", "keywords": "", "youtube_id": "RrJY9dSbRtI", "readable_id": "solubility-and-the-ph-of-the-solution"}, "QxbJsg-Vdms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QxbJsg-Vdms.mp4/QxbJsg-Vdms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QxbJsg-Vdms.mp4/QxbJsg-Vdms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QxbJsg-Vdms.m3u8/QxbJsg-Vdms.m3u8"}, "duration": 348, "id": "QxbJsg-Vdms", "title": "Indefinite integrals of x raised to a power", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/indefinite-integrals-of-x-raised-to-a-power/", "slug": "indefinite-integrals-of-x-raised-to-a-power", "kind": "Video", "video_id": "QxbJsg-Vdms", "keywords": "", "youtube_id": "QxbJsg-Vdms", "readable_id": "indefinite-integrals-of-x-raised-to-a-power"}, "E8jeQcDH1fM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E8jeQcDH1fM.mp4/E8jeQcDH1fM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E8jeQcDH1fM.mp4/E8jeQcDH1fM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E8jeQcDH1fM.m3u8/E8jeQcDH1fM.m3u8"}, "path": "khan/college-admissions/paying-for-college/loans/managing-your-debt-level/", "duration": 571, "id": "E8jeQcDH1fM", "title": "Managing your debt level", "format": "mp4", "description": "", "slug": "managing-your-debt-level", "kind": "Video", "video_id": "E8jeQcDH1fM", "keywords": "", "youtube_id": "E8jeQcDH1fM", "readable_id": "managing-your-debt-level"}, "vShCnTY1-T0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vShCnTY1-T0.mp4/vShCnTY1-T0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vShCnTY1-T0.mp4/vShCnTY1-T0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vShCnTY1-T0.m3u8/vShCnTY1-T0.m3u8"}, "duration": 1117, "id": "vShCnTY1-T0", "title": "Acid base introduction", "format": "mp4", "description": "Arrhenius, Bronsted Lowry, and Lewis Acids and Bases.", "path": "khan/science/chemistry/acids-and-bases-topic/acids-and-bases/acid-base-introduction/", "slug": "acid-base-introduction", "kind": "Video", "video_id": "vShCnTY1-T0", "keywords": "chemistry, acid, base", "youtube_id": "vShCnTY1-T0", "readable_id": "acid-base-introduction"}, "NpuvcuzXn9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NpuvcuzXn9w.mp4/NpuvcuzXn9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NpuvcuzXn9w.mp4/NpuvcuzXn9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NpuvcuzXn9w.m3u8/NpuvcuzXn9w.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-myocarditis-and-pericarditis/treatment-of-myocarditis-and-pericarditis/", "duration": 638, "id": "NpuvcuzXn9w", "title": "Myocarditis and pericarditis treatment", "format": "mp4", "description": "", "slug": "treatment-of-myocarditis-and-pericarditis", "kind": "Video", "video_id": "NpuvcuzXn9w", "keywords": "", "youtube_id": "NpuvcuzXn9w", "readable_id": "treatment-of-myocarditis-and-pericarditis"}, "N8dIOmk_lHs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N8dIOmk_lHs.mp4/N8dIOmk_lHs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N8dIOmk_lHs.mp4/N8dIOmk_lHs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N8dIOmk_lHs.m3u8/N8dIOmk_lHs.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/comparing-fractions-pre-alg/ordering-fractions/", "duration": 468, "id": "N8dIOmk_lHs", "title": "Comparing and ordering fractions", "format": "mp4", "description": "Finding common denominators of multiple fractions to order them", "slug": "ordering-fractions", "kind": "Video", "video_id": "N8dIOmk_lHs", "keywords": "fractions, least, common, multiple, LCM", "youtube_id": "N8dIOmk_lHs", "readable_id": "ordering-fractions"}, "PX_XSnVWlNc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PX_XSnVWlNc.mp4/PX_XSnVWlNc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PX_XSnVWlNc.mp4/PX_XSnVWlNc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PX_XSnVWlNc.m3u8/PX_XSnVWlNc.m3u8"}, "duration": 106, "id": "PX_XSnVWlNc", "title": "Quasar correction", "format": "mp4", "description": "Quasar Correction", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/quasars/quasar-correction/", "slug": "quasar-correction", "kind": "Video", "video_id": "PX_XSnVWlNc", "keywords": "Quasar, Correction", "youtube_id": "PX_XSnVWlNc", "readable_id": "quasar-correction"}, "ZUHpAaVpiY8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZUHpAaVpiY8.mp4/ZUHpAaVpiY8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZUHpAaVpiY8.mp4/ZUHpAaVpiY8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZUHpAaVpiY8.m3u8/ZUHpAaVpiY8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/systolic-murmurs-diastolic-murmurs-and-extra-heart-sounds-part-2/", "duration": 879, "id": "ZUHpAaVpiY8", "title": "Systolic murmurs, diastolic murmurs, and extra heart sounds - Part 2", "format": "mp4", "description": "", "slug": "systolic-murmurs-diastolic-murmurs-and-extra-heart-sounds-part-2", "kind": "Video", "video_id": "ZUHpAaVpiY8", "keywords": "", "youtube_id": "ZUHpAaVpiY8", "readable_id": "systolic-murmurs-diastolic-murmurs-and-extra-heart-sounds-part-2"}, "nDXFgexOM5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nDXFgexOM5c.mp4/nDXFgexOM5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nDXFgexOM5c.mp4/nDXFgexOM5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nDXFgexOM5c.m3u8/nDXFgexOM5c.m3u8"}, "duration": 326, "id": "nDXFgexOM5c", "title": "Limits at infinity using algebra", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits-infinity/limits-infinity-algebra/", "slug": "limits-infinity-algebra", "kind": "Video", "video_id": "nDXFgexOM5c", "keywords": "", "youtube_id": "nDXFgexOM5c", "readable_id": "limits-infinity-algebra"}, "dLojFRoSx8I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dLojFRoSx8I.mp4/dLojFRoSx8I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dLojFRoSx8I.mp4/dLojFRoSx8I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dLojFRoSx8I.m3u8/dLojFRoSx8I.m3u8"}, "path": "khan/college-admissions/paying-for-college/financial-aid-packages/financial-aid-package-comparison-part-3/", "duration": 410, "id": "dLojFRoSx8I", "title": "Financial aid package comparison: Part 3", "format": "mp4", "description": "", "slug": "financial-aid-package-comparison-part-3", "kind": "Video", "video_id": "dLojFRoSx8I", "keywords": "", "youtube_id": "dLojFRoSx8I", "readable_id": "financial-aid-package-comparison-part-3"}, "gpn71-aKWwQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gpn71-aKWwQ.mp4/gpn71-aKWwQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gpn71-aKWwQ.mp4/gpn71-aKWwQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gpn71-aKWwQ.m3u8/gpn71-aKWwQ.m3u8"}, "path": "khan/college-admissions/paying-for-college/grants-and-scholarships/ss-applying-for-scholarships/", "duration": 22, "id": "gpn71-aKWwQ", "title": "Student story: Applying for scholarships", "format": "mp4", "description": "", "slug": "ss-applying-for-scholarships", "kind": "Video", "video_id": "gpn71-aKWwQ", "keywords": "", "youtube_id": "gpn71-aKWwQ", "readable_id": "ss-applying-for-scholarships"}, "NaZTlnDlnOA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NaZTlnDlnOA.mp4/NaZTlnDlnOA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NaZTlnDlnOA.mp4/NaZTlnDlnOA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NaZTlnDlnOA.m3u8/NaZTlnDlnOA.m3u8"}, "duration": 829, "id": "NaZTlnDlnOA", "title": "Antiviral drugs for the flu", "format": "mp4", "description": "Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/antiviral-drugs-for-the-flu/", "slug": "antiviral-drugs-for-the-flu", "kind": "Video", "video_id": "NaZTlnDlnOA", "keywords": "", "youtube_id": "NaZTlnDlnOA", "readable_id": "antiviral-drugs-for-the-flu"}, "K4KDLWENXm0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K4KDLWENXm0.mp4/K4KDLWENXm0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K4KDLWENXm0.mp4/K4KDLWENXm0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K4KDLWENXm0.m3u8/K4KDLWENXm0.m3u8"}, "duration": 671, "id": "K4KDLWENXm0", "title": "Small sample size confidence intervals", "format": "mp4", "description": "Constructing small sample size confidence intervals using t-distributions", "path": "khan/math/probability/statistics-inferential/confidence-intervals/small-sample-size-confidence-intervals/", "slug": "small-sample-size-confidence-intervals", "kind": "Video", "video_id": "K4KDLWENXm0", "keywords": "standard, deviation, sample, sampling, distribution, t-distribution", "youtube_id": "K4KDLWENXm0", "readable_id": "small-sample-size-confidence-intervals"}, "7FN1NBoV2u0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7FN1NBoV2u0.mp4/7FN1NBoV2u0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7FN1NBoV2u0.mp4/7FN1NBoV2u0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7FN1NBoV2u0.m3u8/7FN1NBoV2u0.m3u8"}, "path": "khan/test-prep/mcat/cells/eukaryotic-cells/characteristics-of-eukaryotic-cells/", "duration": 535, "id": "7FN1NBoV2u0", "title": "Characteristics of eukaryotic cells", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "characteristics-of-eukaryotic-cells", "kind": "Video", "video_id": "7FN1NBoV2u0", "keywords": "", "youtube_id": "7FN1NBoV2u0", "readable_id": "characteristics-of-eukaryotic-cells"}, "qyu2ubVNJNA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qyu2ubVNJNA.mp4/qyu2ubVNJNA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qyu2ubVNJNA.mp4/qyu2ubVNJNA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qyu2ubVNJNA.m3u8/qyu2ubVNJNA.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2008-may-4-1/", "duration": 58, "id": "qyu2ubVNJNA", "title": "1 Square coordinates", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-1", "kind": "Video", "video_id": "qyu2ubVNJNA", "keywords": "", "youtube_id": "qyu2ubVNJNA", "readable_id": "sat-2008-may-4-1"}, "__nkbr6DeTg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/__nkbr6DeTg.mp4/__nkbr6DeTg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/__nkbr6DeTg.mp4/__nkbr6DeTg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/__nkbr6DeTg.m3u8/__nkbr6DeTg.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-comparing-numbers/comparing-groups-through-10-example/", "duration": 123, "id": "__nkbr6DeTg", "title": "Comparing numbers of objects", "format": "mp4", "description": "Learn what \"more than\" and \"less than\" mean.", "slug": "comparing-groups-through-10-example", "kind": "Video", "video_id": "__nkbr6DeTg", "keywords": "", "youtube_id": "__nkbr6DeTg", "readable_id": "comparing-groups-through-10-example"}, "PDReqvXfkBA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PDReqvXfkBA.mp4/PDReqvXfkBA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PDReqvXfkBA.mp4/PDReqvXfkBA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PDReqvXfkBA.m3u8/PDReqvXfkBA.m3u8"}, "duration": 146, "id": "PDReqvXfkBA", "title": "Why zero divided by zero is undefined/indeterminate", "format": "mp4", "description": "Multiple arguments for what we could get when we divide zero by zero. We will later see that this can be considered indeterminate", "path": "khan/math/algebra2/functions_and_graphs/undefined_indeterminate/why-zero-divided-by-zero-is-undefined-indeterminate/", "slug": "why-zero-divided-by-zero-is-undefined-indeterminate", "kind": "Video", "video_id": "PDReqvXfkBA", "keywords": "zero, divided, undefined", "youtube_id": "PDReqvXfkBA", "readable_id": "why-zero-divided-by-zero-is-undefined-indeterminate"}, "5RXRr8PKunk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5RXRr8PKunk.mp4/5RXRr8PKunk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5RXRr8PKunk.mp4/5RXRr8PKunk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5RXRr8PKunk.m3u8/5RXRr8PKunk.m3u8"}, "duration": 441, "id": "5RXRr8PKunk", "title": "Calculate your own body mass index", "format": "mp4", "description": "Find out how simple it is to calculate your BMI and the common BMI categories. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/healthcare-misc/calculate-your-own-body-mass-index/", "slug": "calculate-your-own-body-mass-index", "kind": "Video", "video_id": "5RXRr8PKunk", "keywords": "", "youtube_id": "5RXRr8PKunk", "readable_id": "calculate-your-own-body-mass-index"}, "GtOt7EBNEwQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GtOt7EBNEwQ.mp4/GtOt7EBNEwQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GtOt7EBNEwQ.mp4/GtOt7EBNEwQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GtOt7EBNEwQ.m3u8/GtOt7EBNEwQ.m3u8"}, "path": "khan/computing/computer-science/cryptography/crypt/random-vs-pseudorandom-number-generators/", "duration": 401, "id": "GtOt7EBNEwQ", "title": "Pseudorandom number generators", "format": "mp4", "description": "Random vs. Pseudorandom Number Generators", "slug": "random-vs-pseudorandom-number-generators", "kind": "Video", "video_id": "GtOt7EBNEwQ", "keywords": "random number generator, pseudorandom number generator, middle squares method", "youtube_id": "GtOt7EBNEwQ", "readable_id": "random-vs-pseudorandom-number-generators"}, "a5QnXi_lZII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a5QnXi_lZII.mp4/a5QnXi_lZII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a5QnXi_lZII.mp4/a5QnXi_lZII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a5QnXi_lZII.m3u8/a5QnXi_lZII.m3u8"}, "duration": 912, "id": "a5QnXi_lZII", "title": "Launching and landing on different elevations", "format": "mp4", "description": "More complicated example involving launching and landing at different elevations", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/launching-and-landing-on-different-elevations/", "slug": "launching-and-landing-on-different-elevations", "kind": "Video", "video_id": "a5QnXi_lZII", "keywords": "physics, projectile, motion", "youtube_id": "a5QnXi_lZII", "readable_id": "launching-and-landing-on-different-elevations"}, "wzZfyhaUvfY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wzZfyhaUvfY.mp4/wzZfyhaUvfY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wzZfyhaUvfY.mp4/wzZfyhaUvfY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wzZfyhaUvfY.m3u8/wzZfyhaUvfY.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/magnetism-mcat/magnetism-part-2/", "duration": 540, "id": "wzZfyhaUvfY", "title": "Magnetism - Part 2", "format": "mp4", "description": "", "slug": "magnetism-part-2", "kind": "Video", "video_id": "wzZfyhaUvfY", "keywords": "", "youtube_id": "wzZfyhaUvfY", "readable_id": "magnetism-part-2"}, "FmQoSenbtnU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FmQoSenbtnU.mp4/FmQoSenbtnU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FmQoSenbtnU.mp4/FmQoSenbtnU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FmQoSenbtnU.m3u8/FmQoSenbtnU.m3u8"}, "duration": 871, "id": "FmQoSenbtnU", "title": "More on orbitals and electron configuration", "format": "mp4", "description": "More intuition on orbitals. Touching on electron configuration.", "path": "khan/science/chemistry/electronic-structure-of-atoms/electron-configurations-jay-sal/more-on-orbitals-and-electron-configuration/", "slug": "more-on-orbitals-and-electron-configuration", "kind": "Video", "video_id": "FmQoSenbtnU", "keywords": "orbitals, electron, configuration", "youtube_id": "FmQoSenbtnU", "readable_id": "more-on-orbitals-and-electron-configuration"}, "qsL_5Y8uWPU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qsL_5Y8uWPU.mp4/qsL_5Y8uWPU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qsL_5Y8uWPU.mp4/qsL_5Y8uWPU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qsL_5Y8uWPU.m3u8/qsL_5Y8uWPU.m3u8"}, "duration": 328, "id": "qsL_5Y8uWPU", "title": "Number of solutions to linear equations", "format": "mp4", "description": "", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solutions-linear-equations/number-of-solutions-to-linear-equations/", "slug": "number-of-solutions-to-linear-equations", "kind": "Video", "video_id": "qsL_5Y8uWPU", "keywords": "", "youtube_id": "qsL_5Y8uWPU", "readable_id": "number-of-solutions-to-linear-equations"}, "DGBYyf08nWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DGBYyf08nWM.mp4/DGBYyf08nWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DGBYyf08nWM.mp4/DGBYyf08nWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DGBYyf08nWM.m3u8/DGBYyf08nWM.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/beethoven-fifth-symphony/ludwig-van-beethoven-symphony-no-5-an-appreciation-by-leon-botstein/", "duration": 398, "id": "DGBYyf08nWM", "title": "Ludwig van Beethoven: Symphony No. 5, an appreciation by Leon Botstein", "format": "mp4", "description": "", "slug": "ludwig-van-beethoven-symphony-no-5-an-appreciation-by-leon-botstein", "kind": "Video", "video_id": "DGBYyf08nWM", "keywords": "", "youtube_id": "DGBYyf08nWM", "readable_id": "ludwig-van-beethoven-symphony-no-5-an-appreciation-by-leon-botstein"}, "rrUW4z5IVcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rrUW4z5IVcQ.mp4/rrUW4z5IVcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rrUW4z5IVcQ.mp4/rrUW4z5IVcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rrUW4z5IVcQ.m3u8/rrUW4z5IVcQ.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-13-possible-values-for-x/", "duration": 152, "id": "rrUW4z5IVcQ", "title": "13 Possible values for x", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-13-possible-values-for-x", "kind": "Video", "video_id": "rrUW4z5IVcQ", "keywords": "", "youtube_id": "rrUW4z5IVcQ", "readable_id": "sat-13-possible-values-for-x"}, "yDCeMg0krRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yDCeMg0krRM.mp4/yDCeMg0krRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yDCeMg0krRM.mp4/yDCeMg0krRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yDCeMg0krRM.m3u8/yDCeMg0krRM.m3u8"}, "duration": 602, "id": "yDCeMg0krRM", "title": "Electron carrier molecules", "format": "mp4", "description": "What are electron carrier molecules? What role do they play in metabolism? Learn how electron carrier molecules capture the flow of electrons from the breakdown of a fuel (e.g. glucose) to produce ATP.", "path": "khan/test-prep/mcat/biomolecules/overview-metabolism/electron-carrier-molecules/", "slug": "electron-carrier-molecules", "kind": "Video", "video_id": "yDCeMg0krRM", "keywords": "", "youtube_id": "yDCeMg0krRM", "readable_id": "electron-carrier-molecules"}, "AO9bHbUdg-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AO9bHbUdg-M.mp4/AO9bHbUdg-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AO9bHbUdg-M.mp4/AO9bHbUdg-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AO9bHbUdg-M.m3u8/AO9bHbUdg-M.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-sub-intro/subtraction-introduction/", "duration": 219, "id": "AO9bHbUdg-M", "title": "Introduction to subtraction", "format": "mp4", "description": "Learn what it means to subtract. The examples used in this video are 4-3 and 5-2.", "slug": "subtraction-introduction", "kind": "Video", "video_id": "AO9bHbUdg-M", "keywords": "", "youtube_id": "AO9bHbUdg-M", "readable_id": "subtraction-introduction"}, "JBOFe2nwob4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JBOFe2nwob4.mp4/JBOFe2nwob4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JBOFe2nwob4.mp4/JBOFe2nwob4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JBOFe2nwob4.m3u8/JBOFe2nwob4.m3u8"}, "duration": 221, "id": "JBOFe2nwob4", "title": "Lara Morgan - Founder of Pacific Direct", "format": "mp4", "description": "Lara Morgan, Founder of Pacific Direct, shares her entrepreneurial story and describes her motivations in founding companies. Lara describes how understanding the mechanisms of money, along with a fearlessness of asking questionshelped her company grow.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/lara-morgan/kauffman-lara-morgan/", "slug": "kauffman-lara-morgan", "kind": "Video", "video_id": "JBOFe2nwob4", "keywords": "", "youtube_id": "JBOFe2nwob4", "readable_id": "kauffman-lara-morgan"}, "7u2MkbsE_dw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7u2MkbsE_dw.mp4/7u2MkbsE_dw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7u2MkbsE_dw.mp4/7u2MkbsE_dw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7u2MkbsE_dw.m3u8/7u2MkbsE_dw.m3u8"}, "duration": 452, "id": "7u2MkbsE_dw", "title": "Steady states and the Michaelis Menten equation", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/enzyme-kinetics/steady-states-and-the-michaelis-menten-equation/", "slug": "steady-states-and-the-michaelis-menten-equation", "kind": "Video", "video_id": "7u2MkbsE_dw", "keywords": "", "youtube_id": "7u2MkbsE_dw", "readable_id": "steady-states-and-the-michaelis-menten-equation"}, "Q35CH9B3tvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q35CH9B3tvc.mp4/Q35CH9B3tvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q35CH9B3tvc.mp4/Q35CH9B3tvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q35CH9B3tvc.m3u8/Q35CH9B3tvc.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-making-groups-of-ten/addition-using-groups-of-10-intro/", "duration": 216, "id": "Q35CH9B3tvc", "title": "Addition using groups of 10 intro", "format": "mp4", "description": "", "slug": "addition-using-groups-of-10-intro", "kind": "Video", "video_id": "Q35CH9B3tvc", "keywords": "", "youtube_id": "Q35CH9B3tvc", "readable_id": "addition-using-groups-of-10-intro"}, "HSWheVsykiA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HSWheVsykiA.mp4/HSWheVsykiA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HSWheVsykiA.mp4/HSWheVsykiA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HSWheVsykiA.m3u8/HSWheVsykiA.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-2-solving-for-mk/", "duration": 41, "id": "HSWheVsykiA", "title": "2 Solving for mk", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2-solving-for-mk", "kind": "Video", "video_id": "HSWheVsykiA", "keywords": "", "youtube_id": "HSWheVsykiA", "readable_id": "sat-2-solving-for-mk"}, "cePkWyXRvIQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cePkWyXRvIQ.mp4/cePkWyXRvIQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cePkWyXRvIQ.mp4/cePkWyXRvIQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cePkWyXRvIQ.m3u8/cePkWyXRvIQ.m3u8"}, "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-10-electric-motors/", "duration": 637, "id": "cePkWyXRvIQ", "title": "Magnetism 10: Electric motors", "format": "mp4", "description": "Why the circuit will keep flipping over.", "slug": "magnetism-10-electric-motors", "kind": "Video", "video_id": "cePkWyXRvIQ", "keywords": "magnetism, motor", "youtube_id": "cePkWyXRvIQ", "readable_id": "magnetism-10-electric-motors"}, "CYoxfm0kcsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CYoxfm0kcsQ.mp4/CYoxfm0kcsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CYoxfm0kcsQ.mp4/CYoxfm0kcsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CYoxfm0kcsQ.m3u8/CYoxfm0kcsQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/differentiating-shock/", "duration": 587, "id": "CYoxfm0kcsQ", "title": "Differentiating shock", "format": "mp4", "description": "", "slug": "differentiating-shock", "kind": "Video", "video_id": "CYoxfm0kcsQ", "keywords": "", "youtube_id": "CYoxfm0kcsQ", "readable_id": "differentiating-shock"}, "ufymsKi9S3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ufymsKi9S3U.mp4/ufymsKi9S3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ufymsKi9S3U.mp4/ufymsKi9S3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ufymsKi9S3U.m3u8/ufymsKi9S3U.m3u8"}, "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/hundred-days-and-waterloo/", "duration": 453, "id": "ufymsKi9S3U", "title": "Hundred days and Waterloo", "format": "mp4", "description": "Napoleon's escapes from Elba and retakes control only to be defeated at Waterloo", "slug": "hundred-days-and-waterloo", "kind": "Video", "video_id": "ufymsKi9S3U", "keywords": "", "youtube_id": "ufymsKi9S3U", "readable_id": "hundred-days-and-waterloo"}, "bamcYQDzVTw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bamcYQDzVTw.mp4/bamcYQDzVTw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bamcYQDzVTw.mp4/bamcYQDzVTw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bamcYQDzVTw.m3u8/bamcYQDzVTw.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/multiplying-polynomials-3/", "duration": 259, "id": "bamcYQDzVTw", "title": "Multiplying polynomials example 2", "format": "mp4", "description": "", "slug": "multiplying-polynomials-3", "kind": "Video", "video_id": "bamcYQDzVTw", "keywords": "U08_L2_T3_we3, Multiplying, Polynomials, CC_7_EE_4_a, CC_8_G_9, CC_39336_A-APR_1", "youtube_id": "bamcYQDzVTw", "readable_id": "multiplying-polynomials-3"}, "0RSMKyRVuV8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0RSMKyRVuV8.mp4/0RSMKyRVuV8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0RSMKyRVuV8.mp4/0RSMKyRVuV8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0RSMKyRVuV8.m3u8/0RSMKyRVuV8.m3u8"}, "duration": 219, "id": "0RSMKyRVuV8", "title": "Semantic networks and spreading activation", "format": "mp4", "description": "\u200bLearn about how knowledge is organized in the mind.", "path": "khan/test-prep/mcat/processing-the-environment/cognition/semantic-networks-and-spreading-activation/", "slug": "semantic-networks-and-spreading-activation", "kind": "Video", "video_id": "0RSMKyRVuV8", "keywords": "", "youtube_id": "0RSMKyRVuV8", "readable_id": "semantic-networks-and-spreading-activation"}, "hJ18CrKU3Zc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hJ18CrKU3Zc.mp4/hJ18CrKU3Zc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hJ18CrKU3Zc.mp4/hJ18CrKU3Zc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hJ18CrKU3Zc.m3u8/hJ18CrKU3Zc.m3u8"}, "duration": 432, "id": "hJ18CrKU3Zc", "title": "Normal forces on Lubricon VI", "format": "mp4", "description": "Whether the normal force balances the force of gravity for a frozen sock or banana", "path": "khan/test-prep/mcat/physical-processes/normal-forces/normal-forces-on-lubricon-vi/", "slug": "normal-forces-on-lubricon-vi", "kind": "Video", "video_id": "hJ18CrKU3Zc", "keywords": "normal, force, centripetal", "youtube_id": "hJ18CrKU3Zc", "readable_id": "normal-forces-on-lubricon-vi"}, "8JyPzTeA_8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8JyPzTeA_8w.mp4/8JyPzTeA_8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8JyPzTeA_8w.mp4/8JyPzTeA_8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8JyPzTeA_8w.m3u8/8JyPzTeA_8w.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/changing-an-improper-fraction-to-a-mixed-number/", "duration": 242, "id": "8JyPzTeA_8w", "title": "Mixed numbers: changing from an improper fraction", "format": "mp4", "description": "Let's help our top-heavy improper fraction friend switch over into a mixed number!", "slug": "changing-an-improper-fraction-to-a-mixed-number", "kind": "Video", "video_id": "8JyPzTeA_8w", "keywords": "U02_L1_T2_we3, Changing, an, Improper, Fraction, to, Mixed, Number, CC_4_NF_3_c", "youtube_id": "8JyPzTeA_8w", "readable_id": "changing-an-improper-fraction-to-a-mixed-number"}, "mMHOM2qaRaE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mMHOM2qaRaE.mp4/mMHOM2qaRaE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mMHOM2qaRaE.mp4/mMHOM2qaRaE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mMHOM2qaRaE.m3u8/mMHOM2qaRaE.m3u8"}, "duration": 705, "id": "mMHOM2qaRaE", "title": "Nucleophilic aromatic substitution II", "format": "mp4", "description": "The elimination-addition mechanism", "path": "khan/science/organic-chemistry/aromatic-compounds/nucleophilic-aromatic-substitution/nucleophilic-aromatic-substitution-ii/", "slug": "nucleophilic-aromatic-substitution-ii", "kind": "Video", "video_id": "mMHOM2qaRaE", "keywords": "", "youtube_id": "mMHOM2qaRaE", "readable_id": "nucleophilic-aromatic-substitution-ii"}, "H235paj_4PE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H235paj_4PE.mp4/H235paj_4PE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H235paj_4PE.mp4/H235paj_4PE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H235paj_4PE.m3u8/H235paj_4PE.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/percussion/percussion-interview-and-demonstration-with-principal-chris-devine/", "duration": 700, "id": "H235paj_4PE", "title": "Percussion: Interview and demonstration with principal Chris Devine and members of the percussion section", "format": "mp4", "description": "", "slug": "percussion-interview-and-demonstration-with-principal-chris-devine", "kind": "Video", "video_id": "H235paj_4PE", "keywords": "", "youtube_id": "H235paj_4PE", "readable_id": "percussion-interview-and-demonstration-with-principal-chris-devine"}, "gtlaJuBuQvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gtlaJuBuQvE.mp4/gtlaJuBuQvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gtlaJuBuQvE.mp4/gtlaJuBuQvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gtlaJuBuQvE.m3u8/gtlaJuBuQvE.m3u8"}, "duration": 191, "id": "gtlaJuBuQvE", "title": "Danny O'Neill - President of The Roasterie", "format": "mp4", "description": "Danny O\u2019Neill, President of The Roasterie, describes the journey that led him to starting his own company as well as some of the key attributes of an entrepreneur.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/danny-oneill/kauffman-danny-oneill1/", "slug": "kauffman-danny-oneill1", "kind": "Video", "video_id": "gtlaJuBuQvE", "keywords": "", "youtube_id": "gtlaJuBuQvE", "readable_id": "kauffman-danny-oneill1"}, "DwcW12J1FFA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DwcW12J1FFA.mp4/DwcW12J1FFA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DwcW12J1FFA.mp4/DwcW12J1FFA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DwcW12J1FFA.m3u8/DwcW12J1FFA.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/urbanization/", "duration": 489, "id": "DwcW12J1FFA", "title": "Urbanization", "format": "mp4", "description": "", "slug": "urbanization", "kind": "Video", "video_id": "DwcW12J1FFA", "keywords": "", "youtube_id": "DwcW12J1FFA", "readable_id": "urbanization"}, "yrlLKwmb5dY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yrlLKwmb5dY.mp4/yrlLKwmb5dY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yrlLKwmb5dY.mp4/yrlLKwmb5dY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yrlLKwmb5dY.m3u8/yrlLKwmb5dY.m3u8"}, "duration": 235, "id": "yrlLKwmb5dY", "title": "Alternative minimum tax", "format": "mp4", "description": "The basics of the alternative minimum tax", "path": "khan/economics-finance-domain/core-finance/taxes-topic/taxes/alternative-minimum-tax/", "slug": "alternative-minimum-tax", "kind": "Video", "video_id": "yrlLKwmb5dY", "keywords": "us, taxes, amt", "youtube_id": "yrlLKwmb5dY", "readable_id": "alternative-minimum-tax"}, "drhoIgAhlQM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/drhoIgAhlQM.mp4/drhoIgAhlQM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/drhoIgAhlQM.mp4/drhoIgAhlQM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/drhoIgAhlQM.m3u8/drhoIgAhlQM.m3u8"}, "duration": 157, "id": "drhoIgAhlQM", "title": "Simplifying a cube root", "format": "mp4", "description": "Simplifying Radical Expressions1", "path": "khan/math/pre-algebra/exponents-radicals/cube-root-tutorial/simplifying-radical-expressions1/", "slug": "simplifying-radical-expressions1", "kind": "Video", "video_id": "drhoIgAhlQM", "keywords": "U07_L3_T1_we1, Simplifying, Radical, Expressions1", "youtube_id": "drhoIgAhlQM", "readable_id": "simplifying-radical-expressions1"}, "6rwoktPmqpY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6rwoktPmqpY.mp4/6rwoktPmqpY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6rwoktPmqpY.mp4/6rwoktPmqpY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6rwoktPmqpY.m3u8/6rwoktPmqpY.m3u8"}, "duration": 522, "id": "6rwoktPmqpY", "title": "Nitrogen and phosphorus cycles: Always recycle!", "format": "mp4", "description": "", "path": "crash-course-ecology-09/", "slug": "crash-course-ecology-09", "kind": "Video", "video_id": "6rwoktPmqpY", "keywords": "", "youtube_id": "6rwoktPmqpY", "readable_id": "crash-course-ecology-09"}, "2ZzuZvz33X0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2ZzuZvz33X0.mp4/2ZzuZvz33X0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2ZzuZvz33X0.mp4/2ZzuZvz33X0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2ZzuZvz33X0.m3u8/2ZzuZvz33X0.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/example-1-solving-a-quadratic-equation-by-factoring/", "duration": 382, "id": "2ZzuZvz33X0", "title": "Solving a quadratic equation by factoring", "format": "mp4", "description": "U09_L2_T2_we1 Solving Quadratic Equations by Factoring.avi", "slug": "example-1-solving-a-quadratic-equation-by-factoring", "kind": "Video", "video_id": "2ZzuZvz33X0", "keywords": "U09_L2_T2_we1, Solving, Quadratic, Equations, by, Factoring.avi, CC_39336_A-REI_4, CC_39336_A-REI_4_b", "youtube_id": "2ZzuZvz33X0", "readable_id": "example-1-solving-a-quadratic-equation-by-factoring"}, "IQiv4uQNaFQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IQiv4uQNaFQ.mp4/IQiv4uQNaFQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IQiv4uQNaFQ.mp4/IQiv4uQNaFQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IQiv4uQNaFQ.m3u8/IQiv4uQNaFQ.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/protein-translation-2/", "duration": 653, "id": "IQiv4uQNaFQ", "title": "Protein translation 2", "format": "mp4", "description": "", "slug": "protein-translation-2", "kind": "Video", "video_id": "IQiv4uQNaFQ", "keywords": "", "youtube_id": "IQiv4uQNaFQ", "readable_id": "protein-translation-2"}, "YtibtTFpF6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YtibtTFpF6U.mp4/YtibtTFpF6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YtibtTFpF6U.mp4/YtibtTFpF6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YtibtTFpF6U.m3u8/YtibtTFpF6U.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/doug-fishbone/", "duration": 256, "id": "YtibtTFpF6U", "title": "Doug Fishbone: Elmina", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nNew Yorker Doug Fishbone talks about his film Elmina, in which he joins the cast of an entirely Ghanaian-written and produced film melodrama as the lead character. There is no explanation for Fishbone's difference, leading us as viewers to question our preconceptions of fiction, narrative, cinema, and race.\u00a0Take a look at the artist's unique project as he guides us through big questions about roles and representations in film.", "slug": "doug-fishbone", "kind": "Video", "video_id": "YtibtTFpF6U", "keywords": "Tate", "youtube_id": "YtibtTFpF6U", "readable_id": "doug-fishbone"}, "pVWQm-GYK_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pVWQm-GYK_Y.mp4/pVWQm-GYK_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pVWQm-GYK_Y.mp4/pVWQm-GYK_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pVWQm-GYK_Y.m3u8/pVWQm-GYK_Y.m3u8"}, "path": "khan/test-prep/mcat/cells/cell-cell-interactions/cell-junctions/", "duration": 269, "id": "pVWQm-GYK_Y", "title": "Cell Junctions", "format": "mp4", "description": "Learn about the three major types of cell junctions and their functions.", "slug": "cell-junctions", "kind": "Video", "video_id": "pVWQm-GYK_Y", "keywords": "", "youtube_id": "pVWQm-GYK_Y", "readable_id": "cell-junctions"}, "_ZAlj2gu0eM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_ZAlj2gu0eM.mp4/_ZAlj2gu0eM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_ZAlj2gu0eM.mp4/_ZAlj2gu0eM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_ZAlj2gu0eM.m3u8/_ZAlj2gu0eM.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/cnn-understanding-the-crisis/", "duration": 876, "id": "_ZAlj2gu0eM", "title": "CNN: Understanding the crisis", "format": "mp4", "description": "Video of Sal on CNN on October 10th discussing the credit crisis and a potential solution to it.", "slug": "cnn-understanding-the-crisis", "kind": "Video", "video_id": "_ZAlj2gu0eM", "keywords": "credit, crisis, bailout, paulson, bernanke, banks, TARP", "youtube_id": "_ZAlj2gu0eM", "readable_id": "cnn-understanding-the-crisis"}, "R7_irilQ_-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R7_irilQ_-A.mp4/R7_irilQ_-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R7_irilQ_-A.mp4/R7_irilQ_-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R7_irilQ_-A.m3u8/R7_irilQ_-A.m3u8"}, "duration": 544, "id": "R7_irilQ_-A", "title": "Drawing a pressure-volume loop", "format": "mp4", "description": "Use the left ventricular pressure and volume information to put together a cool new graph. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/drawing-a-pressure-volume-loop/", "slug": "drawing-a-pressure-volume-loop", "kind": "Video", "video_id": "R7_irilQ_-A", "keywords": "", "youtube_id": "R7_irilQ_-A", "readable_id": "drawing-a-pressure-volume-loop"}, "YZRzt_AsuVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YZRzt_AsuVs.mp4/YZRzt_AsuVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YZRzt_AsuVs.mp4/YZRzt_AsuVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YZRzt_AsuVs.m3u8/YZRzt_AsuVs.m3u8"}, "duration": 361, "id": "YZRzt_AsuVs", "title": "Complex number polar form intuition exercise", "format": "mp4", "description": "", "path": "khan/math/precalculus/imaginary_complex_precalc/complex_analysis/complex-number-polar-form-intuition-exercise/", "slug": "complex-number-polar-form-intuition-exercise", "kind": "Video", "video_id": "YZRzt_AsuVs", "keywords": "", "youtube_id": "YZRzt_AsuVs", "readable_id": "complex-number-polar-form-intuition-exercise"}, "l7h8A6SX5kY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l7h8A6SX5kY.mp4/l7h8A6SX5kY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l7h8A6SX5kY.mp4/l7h8A6SX5kY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l7h8A6SX5kY.m3u8/l7h8A6SX5kY.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/advanced-mult-div-word-problems/multi-step-word-problems-with-whole-numbers-exercise-3/", "duration": 130, "id": "l7h8A6SX5kY", "title": "Multiplication, division word problems: pedaling how fast?", "format": "mp4", "description": "Using multiplication and division to make estimates. Easy? Maybe, but what's more important is that you try.", "slug": "multi-step-word-problems-with-whole-numbers-exercise-3", "kind": "Video", "video_id": "l7h8A6SX5kY", "keywords": "", "youtube_id": "l7h8A6SX5kY", "readable_id": "multi-step-word-problems-with-whole-numbers-exercise-3"}, "M-0qt6tdHzk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M-0qt6tdHzk.mp4/M-0qt6tdHzk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M-0qt6tdHzk.mp4/M-0qt6tdHzk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M-0qt6tdHzk.m3u8/M-0qt6tdHzk.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/diffie-hellman-key-exchange-part-2/", "duration": 139, "id": "M-0qt6tdHzk", "title": "Diffie-hellman key exchange", "format": "mp4", "description": "Walkthrough of Diffie-Hellman Key Exchange", "slug": "diffie-hellman-key-exchange-part-2", "kind": "Video", "video_id": "M-0qt6tdHzk", "keywords": "diffie-hellman, public key, cryptography", "youtube_id": "M-0qt6tdHzk", "readable_id": "diffie-hellman-key-exchange-part-2"}, "CRfgLoV25tA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CRfgLoV25tA.mp4/CRfgLoV25tA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CRfgLoV25tA.mp4/CRfgLoV25tA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CRfgLoV25tA.m3u8/CRfgLoV25tA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cardiomyopathy/restrictive-cardiomyopathy-pathophysiology-and-diagnosis/", "duration": 590, "id": "CRfgLoV25tA", "title": "Restrictive cardiomyopathy: Pathophysiology and diagnosis", "format": "mp4", "description": "", "slug": "restrictive-cardiomyopathy-pathophysiology-and-diagnosis", "kind": "Video", "video_id": "CRfgLoV25tA", "keywords": "", "youtube_id": "CRfgLoV25tA", "readable_id": "restrictive-cardiomyopathy-pathophysiology-and-diagnosis"}, "AuCH7fHZsZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AuCH7fHZsZ4.mp4/AuCH7fHZsZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AuCH7fHZsZ4.mp4/AuCH7fHZsZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AuCH7fHZsZ4.m3u8/AuCH7fHZsZ4.m3u8"}, "duration": 171, "id": "AuCH7fHZsZ4", "title": "Arbitrage basics", "format": "mp4", "description": "Arbitrage Basics", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/arbitrage-basics/", "slug": "arbitrage-basics", "kind": "Video", "video_id": "AuCH7fHZsZ4", "keywords": "arbitrage", "youtube_id": "AuCH7fHZsZ4", "readable_id": "arbitrage-basics"}, "tBRW-CyJE6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tBRW-CyJE6k.mp4/tBRW-CyJE6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tBRW-CyJE6k.mp4/tBRW-CyJE6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tBRW-CyJE6k.m3u8/tBRW-CyJE6k.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/recognizing-functions-example-1/", "duration": 91, "id": "tBRW-CyJE6k", "title": "Recognize functions from verbal descriptions (example 1)", "format": "mp4", "description": "", "slug": "recognizing-functions-example-1", "kind": "Video", "video_id": "tBRW-CyJE6k", "keywords": "", "youtube_id": "tBRW-CyJE6k", "readable_id": "recognizing-functions-example-1"}, "OzDmEA8x0nQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OzDmEA8x0nQ.mp4/OzDmEA8x0nQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OzDmEA8x0nQ.mp4/OzDmEA8x0nQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OzDmEA8x0nQ.m3u8/OzDmEA8x0nQ.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/tour-of-the-ems-02-radio-waves/", "duration": 219, "id": "OzDmEA8x0nQ", "title": "Radio waves (1888)", "format": "mp4", "description": "", "slug": "tour-of-the-ems-02-radio-waves", "kind": "Video", "video_id": "OzDmEA8x0nQ", "keywords": "", "youtube_id": "OzDmEA8x0nQ", "readable_id": "tour-of-the-ems-02-radio-waves"}, "WF7L2waDwLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WF7L2waDwLw.mp4/WF7L2waDwLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WF7L2waDwLw.mp4/WF7L2waDwLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WF7L2waDwLw.m3u8/WF7L2waDwLw.m3u8"}, "duration": 239, "id": "WF7L2waDwLw", "title": "Subtracting mixed numbers", "format": "mp4", "description": "Subtracting Mixed Numbers", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/subtracting-mixed-numbers/", "slug": "subtracting-mixed-numbers", "kind": "Video", "video_id": "WF7L2waDwLw", "keywords": "U02_L3_T2_we2, Subtracting, Mixed, Numbers, CC_4_NF_3_c, CC_5_NF_1", "youtube_id": "WF7L2waDwLw", "readable_id": "subtracting-mixed-numbers"}, "-z9xnAdR2y4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-z9xnAdR2y4.mp4/-z9xnAdR2y4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-z9xnAdR2y4.mp4/-z9xnAdR2y4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-z9xnAdR2y4.m3u8/-z9xnAdR2y4.m3u8"}, "duration": 309, "id": "-z9xnAdR2y4", "title": "The Way of Tea", "format": "mp4", "description": "Discover the rich history of the Japanese tea gathering.\u00a0Learn more about Chanoyu: The Japanese Art of Tea.", "path": "way-of-tea/", "slug": "way-of-tea", "kind": "Video", "video_id": "-z9xnAdR2y4", "keywords": "", "youtube_id": "-z9xnAdR2y4", "readable_id": "way-of-tea"}, "VSUEiTb0tag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VSUEiTb0tag.mp4/VSUEiTb0tag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VSUEiTb0tag.mp4/VSUEiTb0tag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VSUEiTb0tag.m3u8/VSUEiTb0tag.m3u8"}, "duration": 587, "id": "VSUEiTb0tag", "title": "Ecology - Rules for living on earth", "format": "mp4", "description": "Hank introduces us to ecology - the study of the rules of engagement for all of us earthlings - which seeks to explain why the world looks and acts the way it does. The world is crammed with things, both animate and not, that have been interacting with each other all the time, every day, since life on this planet began, and these interactions depend mostly on just two things... Learn what they are as Crash Course Biology takes its final voyage outside the body and into the entire world.\u00a0", "path": "crash-course-biology-139/", "slug": "crash-course-biology-139", "kind": "Video", "video_id": "VSUEiTb0tag", "keywords": "", "youtube_id": "VSUEiTb0tag", "readable_id": "crash-course-biology-139"}, "lEhf75ma7Ww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lEhf75ma7Ww.mp4/lEhf75ma7Ww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lEhf75ma7Ww.mp4/lEhf75ma7Ww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lEhf75ma7Ww.m3u8/lEhf75ma7Ww.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/recognizing-functions-example-3/", "duration": 76, "id": "lEhf75ma7Ww", "title": "Recognizing functions (example 3)", "format": "mp4", "description": "", "slug": "recognizing-functions-example-3", "kind": "Video", "video_id": "lEhf75ma7Ww", "keywords": "", "youtube_id": "lEhf75ma7Ww", "readable_id": "recognizing-functions-example-3"}, "UquFdMg6Z_U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UquFdMg6Z_U.mp4/UquFdMg6Z_U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UquFdMg6Z_U.mp4/UquFdMg6Z_U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UquFdMg6Z_U.m3u8/UquFdMg6Z_U.m3u8"}, "duration": 285, "id": "UquFdMg6Z_U", "title": "Polynomial divided by monomial", "format": "mp4", "description": "Polynomial divided by monomial", "path": "khan/math/algebra2/polynomial_and_rational/dividing_polynomials/polynomial-divided-by-monomial/", "slug": "polynomial-divided-by-monomial", "kind": "Video", "video_id": "UquFdMg6Z_U", "keywords": "u11_l2_t5_we2, Polynomial, divided, by, monomial, CC_6_EE_1, CC_6_EE_2_c, CC_39336_A-APR_1", "youtube_id": "UquFdMg6Z_U", "readable_id": "polynomial-divided-by-monomial"}, "JUbjPICOVgA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JUbjPICOVgA.mp4/JUbjPICOVgA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JUbjPICOVgA.mp4/JUbjPICOVgA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JUbjPICOVgA.m3u8/JUbjPICOVgA.m3u8"}, "duration": 257, "id": "JUbjPICOVgA", "title": "NSA Surveillance: Klayman v Obama, Smith v. Maryland", "format": "mp4", "description": "Neal Katyal, Former Acting Solicitor General of the United States in conversation with Jeffrey Rosen of the National Constitution Center.", "path": "nsa-surveillance-klayman-v-obama-smith-v-maryland/", "slug": "nsa-surveillance-klayman-v-obama-smith-v-maryland", "kind": "Video", "video_id": "JUbjPICOVgA", "keywords": "", "youtube_id": "JUbjPICOVgA", "readable_id": "nsa-surveillance-klayman-v-obama-smith-v-maryland"}, "ZhFPZA35e3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZhFPZA35e3U.mp4/ZhFPZA35e3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZhFPZA35e3U.mp4/ZhFPZA35e3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZhFPZA35e3U.m3u8/ZhFPZA35e3U.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2009-may-3-9/", "duration": 151, "id": "ZhFPZA35e3U", "title": "9 Angles between intersecting lines", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-9", "kind": "Video", "video_id": "ZhFPZA35e3U", "keywords": "", "youtube_id": "ZhFPZA35e3U", "readable_id": "sat-2009-may-3-9"}, "0xrvRKHoO2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0xrvRKHoO2g.mp4/0xrvRKHoO2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0xrvRKHoO2g.mp4/0xrvRKHoO2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0xrvRKHoO2g.m3u8/0xrvRKHoO2g.m3u8"}, "duration": 166, "id": "0xrvRKHoO2g", "title": "Factoring quadratics with two variables example", "format": "mp4", "description": "", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-quadratics-in-two-vari/factoring-quadratics-with-two-variables-example/", "slug": "factoring-quadratics-with-two-variables-example", "kind": "Video", "video_id": "0xrvRKHoO2g", "keywords": "", "youtube_id": "0xrvRKHoO2g", "readable_id": "factoring-quadratics-with-two-variables-example"}, "yvnr0wnmoGY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yvnr0wnmoGY.mp4/yvnr0wnmoGY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yvnr0wnmoGY.mp4/yvnr0wnmoGY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yvnr0wnmoGY.m3u8/yvnr0wnmoGY.m3u8"}, "path": "khan/humanities/medieval-world/early-christian1/the-mausoleum-of-galla-placidia-ravenna/", "duration": 488, "id": "yvnr0wnmoGY", "title": "The Mausoleum of Galla Placidia, Ravenna", "format": "mp4", "description": "The Mausoleum of Galla Placidia, 425 C.E., Ravenna, Italy\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "the-mausoleum-of-galla-placidia-ravenna", "kind": "Video", "video_id": "yvnr0wnmoGY", "keywords": "Mausoleum, Galla Placidia, 425, Ravenna, Italy, Early Christian, Byzantine, mosaic", "youtube_id": "yvnr0wnmoGY", "readable_id": "the-mausoleum-of-galla-placidia-ravenna"}, "RB7H7paHXd0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RB7H7paHXd0.mp4/RB7H7paHXd0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RB7H7paHXd0.mp4/RB7H7paHXd0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RB7H7paHXd0.m3u8/RB7H7paHXd0.m3u8"}, "duration": 274, "id": "RB7H7paHXd0", "title": "Alternative selection", "format": "mp4", "description": "Learn about driving forces of evolution other than natural selection. Group selection and artificial selection are just a few of these forms of \"Alternative Selection.\"\u00a0 By Ross Firestone.", "path": "khan/test-prep/mcat/biomolecules/evolution-population-dynmaics/alternative-selection/", "slug": "alternative-selection", "kind": "Video", "video_id": "RB7H7paHXd0", "keywords": "", "youtube_id": "RB7H7paHXd0", "readable_id": "alternative-selection"}, "MFt3tHNevJg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MFt3tHNevJg.mp4/MFt3tHNevJg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MFt3tHNevJg.mp4/MFt3tHNevJg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MFt3tHNevJg.m3u8/MFt3tHNevJg.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/column-of-trajan-completed-113-c-e/", "duration": 296, "id": "MFt3tHNevJg", "title": "Column of Trajan (Forum of Trajan)", "format": "mp4", "description": "Column of Trajan, Carrara marble, completed 113 C.E., Rome Dedicated to Emperor Trajan (Marcus Ulpius Nerva Traianus b. 53 , d. 117 C.E.) in honor of his victory over Dacia (now Romania) 101-02 and 105-06 C.E.\n\nDedicated to Emperor Trajan (Marcus Ulpius Nerva Traianus b. 53 , d. 117 C.E.) in honor of his victory over Dacia (now Romania) 101-02 and 105-06 C.E.\nThe inscription on the base is the source of the typeface Trajan and reads (with abbreviations spelled out):\n\nSENATUS POPULUSQUE ROMANUS\nIMPERATORI CAESARI DIVI NERVAE FILIO NERVAE\nTRAIANO AUGUSTO GERMANICO DACICO PONTIFICI\nMAXIMO TRIBUNICIA POTESTATE XVII IMPERATORI VI CONSULI VI PATRI PATRIAE\nAD DECLARANDUM QUANTAE ALTITUDINIS\nMONS ET LOCUS TAN[TIS OPER]IBUS SIT EGESTUS\n\nThe Senate and the People of Rome\nTo Emperor Caesar Nerva Trajan Augustus, son of the divine Nerva\nConqueror of Germany and Dacia, high priest, with the office of the tribune 17 times\nProclaimed Imperator 6 times, elected consul 6 times, father of the Empire\nHere shows the height which this hill once stood\nNow removed for such great works as these\n\nSpeakers:\u00a0Valentina Follo (courtesy of\u00a0Context Travel),\u00a0Dr. Beth Harris,\u00a0Dr. Steven Zucker", "slug": "column-of-trajan-completed-113-c-e", "kind": "Video", "video_id": "MFt3tHNevJg", "keywords": "Trajan, Column of Trajan, Rome, Smarthistory, Art History, Khan Academy, Context Travel, Ancient Rome", "youtube_id": "MFt3tHNevJg", "readable_id": "column-of-trajan-completed-113-c-e"}, "b9mBLNOr8rw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b9mBLNOr8rw.mp4/b9mBLNOr8rw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b9mBLNOr8rw.mp4/b9mBLNOr8rw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b9mBLNOr8rw.m3u8/b9mBLNOr8rw.m3u8"}, "path": "khan/humanities/art-asia/south-asia/afghanistan/lasting-legacy-alexander-great/", "duration": 258, "id": "b9mBLNOr8rw", "title": "Afghanistan: The lasting legacy of Alexander the Great", "format": "mp4", "description": "Alexander became king of Macedonia in 336 BC. He immediately set about conquering neighbouring lands. By the time he died in 323 BC, aged 31, he ruled most of the then known world from Greece to in the borders of India.\u00a0\u00a9 Trustees of the British Museum", "slug": "lasting-legacy-alexander-great", "kind": "Video", "video_id": "b9mBLNOr8rw", "keywords": "", "youtube_id": "b9mBLNOr8rw", "readable_id": "lasting-legacy-alexander-great"}, "04RpkdaNzr8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/04RpkdaNzr8.mp4/04RpkdaNzr8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/04RpkdaNzr8.mp4/04RpkdaNzr8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/04RpkdaNzr8.m3u8/04RpkdaNzr8.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/example-2-solving-a-quadratic-equation-by-factoring/", "duration": 199, "id": "04RpkdaNzr8", "title": "Recognizing a perfect square quadratic", "format": "mp4", "description": "U09_L2_T2_we2 Solving Quadratic Equations by Factoring 2.avi", "slug": "example-2-solving-a-quadratic-equation-by-factoring", "kind": "Video", "video_id": "04RpkdaNzr8", "keywords": "U09_L2_T2_we2, Solving, Quadratic, Equations, by, Factoring, 2.avi, CC_39336_A-REI_4, CC_39336_A-REI_4_b", "youtube_id": "04RpkdaNzr8", "readable_id": "example-2-solving-a-quadratic-equation-by-factoring"}, "C0KEPCFZ3so": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C0KEPCFZ3so.mp4/C0KEPCFZ3so.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C0KEPCFZ3so.mp4/C0KEPCFZ3so.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C0KEPCFZ3so.m3u8/C0KEPCFZ3so.m3u8"}, "duration": 478, "id": "C0KEPCFZ3so", "title": "Intelligence", "format": "mp4", "description": "Learn about different definitions of intelligence and the nature/nurture debate in the context of intelligence.", "path": "khan/test-prep/mcat/processing-the-environment/cognition/intelligence/", "slug": "intelligence", "kind": "Video", "video_id": "C0KEPCFZ3so", "keywords": "", "youtube_id": "C0KEPCFZ3so", "readable_id": "intelligence"}, "DPIAVBv5iH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DPIAVBv5iH4.mp4/DPIAVBv5iH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DPIAVBv5iH4.mp4/DPIAVBv5iH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DPIAVBv5iH4.m3u8/DPIAVBv5iH4.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/20-century-art/", "duration": 493, "id": "DPIAVBv5iH4", "title": "Introduction to Twentieth-Century Art", "format": "mp4", "description": "A video from the Utah System of Higher Education (with special thanks to Dr. Nancy Ross)\u00a0", "slug": "20-century-art", "kind": "Video", "video_id": "DPIAVBv5iH4", "keywords": "Modern art, 20th-century art, expressionism, cubism, dada, surrealism, Abstract Expressionism", "youtube_id": "DPIAVBv5iH4", "readable_id": "20-century-art"}, "dAvosUEUH6I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dAvosUEUH6I.mp4/dAvosUEUH6I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dAvosUEUH6I.mp4/dAvosUEUH6I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dAvosUEUH6I.m3u8/dAvosUEUH6I.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/raising-a-number-to-the-0th-and-1st-power/", "duration": 307, "id": "dAvosUEUH6I", "title": "Raising a number to the 0 and 1st power", "format": "mp4", "description": "Discover a pattern that explains why any non-zero number to the zero power equals one.", "slug": "raising-a-number-to-the-0th-and-1st-power", "kind": "Video", "video_id": "dAvosUEUH6I", "keywords": "", "youtube_id": "dAvosUEUH6I", "readable_id": "raising-a-number-to-the-0th-and-1st-power"}, "PASajlCGBTw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PASajlCGBTw.mp4/PASajlCGBTw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PASajlCGBTw.mp4/PASajlCGBTw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PASajlCGBTw.m3u8/PASajlCGBTw.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/factional-reserve-accounting/simple-fractional-reserve-accounting-part-2/", "duration": 425, "id": "PASajlCGBTw", "title": "Simple fractional reserve accounting (part 2)", "format": "mp4", "description": "How banks can actually create checking accounts under a fractional reserve system", "slug": "simple-fractional-reserve-accounting-part-2", "kind": "Video", "video_id": "PASajlCGBTw", "keywords": "banking, macroeconomics", "youtube_id": "PASajlCGBTw", "readable_id": "simple-fractional-reserve-accounting-part-2"}, "_QTFeOvPcbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_QTFeOvPcbY.mp4/_QTFeOvPcbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_QTFeOvPcbY.mp4/_QTFeOvPcbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_QTFeOvPcbY.m3u8/_QTFeOvPcbY.m3u8"}, "duration": 278, "id": "_QTFeOvPcbY", "title": "Rhombus diagonals", "format": "mp4", "description": "Proof that the diagonals of a rhombus are perpendicular bisectors of each other", "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/rhombus-diagonals/", "slug": "rhombus-diagonals", "kind": "Video", "video_id": "_QTFeOvPcbY", "keywords": "rhombus, diagonals, perpendicular, bisectors, CC_3_G_1, CC_3_G_2, CC_5_G_3, CC_6_G_1", "youtube_id": "_QTFeOvPcbY", "readable_id": "rhombus-diagonals"}, "f_Z1zsR9lFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f_Z1zsR9lFM.mp4/f_Z1zsR9lFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f_Z1zsR9lFM.mp4/f_Z1zsR9lFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f_Z1zsR9lFM.m3u8/f_Z1zsR9lFM.m3u8"}, "duration": 577, "id": "f_Z1zsR9lFM", "title": "Intro to the endocrine system", "format": "mp4", "description": "Basic overview of hormones and the endocrine system", "path": "khan/science/health-and-medicine/healthcare-misc/intro-to-the-endocrine-system/", "slug": "intro-to-the-endocrine-system", "kind": "Video", "video_id": "f_Z1zsR9lFM", "keywords": "hormones, endocrine", "youtube_id": "f_Z1zsR9lFM", "readable_id": "intro-to-the-endocrine-system"}, "cugQ4z4cJF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cugQ4z4cJF8.mp4/cugQ4z4cJF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cugQ4z4cJF8.mp4/cugQ4z4cJF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cugQ4z4cJF8.m3u8/cugQ4z4cJF8.m3u8"}, "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/cap-util-inflation/inflation-deflation-capacity-utilization-2/", "duration": 709, "id": "cugQ4z4cJF8", "title": "Inflation, deflation, and capacity utilization 2", "format": "mp4", "description": "More on inflation and capacity utilization", "slug": "inflation-deflation-capacity-utilization-2", "kind": "Video", "video_id": "cugQ4z4cJF8", "keywords": "inflation, money, supply, deflation", "youtube_id": "cugQ4z4cJF8", "readable_id": "inflation-deflation-capacity-utilization-2"}, "fif5ghe8JM0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fif5ghe8JM0.mp4/fif5ghe8JM0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fif5ghe8JM0.mp4/fif5ghe8JM0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fif5ghe8JM0.m3u8/fif5ghe8JM0.m3u8"}, "duration": 698, "id": "fif5ghe8JM0", "title": "Normal colon tissue", "format": "mp4", "description": "Dr. Andy Connolly from Stanford Medical School introduces Sal to what normal colon tissue looks like", "path": "khan/science/health-and-medicine/healthcare-misc/normal-colon-tissue/", "slug": "normal-colon-tissue", "kind": "Video", "video_id": "fif5ghe8JM0", "keywords": "medicine, pathology, histology", "youtube_id": "fif5ghe8JM0", "readable_id": "normal-colon-tissue"}, "OcNt-36QKu8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OcNt-36QKu8.mp4/OcNt-36QKu8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OcNt-36QKu8.mp4/OcNt-36QKu8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OcNt-36QKu8.m3u8/OcNt-36QKu8.m3u8"}, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/trolls-tolls-and-systems-of-equations/", "duration": 411, "id": "OcNt-36QKu8", "title": "Trolls, tolls, and systems of equations", "format": "mp4", "description": "A troll forces us to use algebra to figure out the make-up of his currency. We end up setting up a system of equations", "slug": "trolls-tolls-and-systems-of-equations", "kind": "Video", "video_id": "OcNt-36QKu8", "keywords": "", "youtube_id": "OcNt-36QKu8", "readable_id": "trolls-tolls-and-systems-of-equations"}, "M7NVKImDqGg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M7NVKImDqGg.mp4/M7NVKImDqGg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M7NVKImDqGg.mp4/M7NVKImDqGg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M7NVKImDqGg.m3u8/M7NVKImDqGg.m3u8"}, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-interpreting-angles/decomposing-angles/", "duration": 103, "id": "M7NVKImDqGg", "title": "Solving for an angle", "format": "mp4", "description": "Let's use a little math with our geometry and see if we can solve for a mystery angle. In this example we know the adjacent angle AND the combination of the mystery angle and the adjacent angle. Mystery angle...how big are you?", "slug": "decomposing-angles", "kind": "Video", "video_id": "M7NVKImDqGg", "keywords": "", "youtube_id": "M7NVKImDqGg", "readable_id": "decomposing-angles"}, "T0IOrRETWhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T0IOrRETWhI.mp4/T0IOrRETWhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T0IOrRETWhI.mp4/T0IOrRETWhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T0IOrRETWhI.m3u8/T0IOrRETWhI.m3u8"}, "duration": 180, "id": "T0IOrRETWhI", "title": "Pythagorean theorem 3", "format": "mp4", "description": "Pythagorean Theorem 3", "path": "khan/math/geometry/right_triangles_topic/pyth_theor/pythagorean-theorem-3/", "slug": "pythagorean-theorem-3", "kind": "Video", "video_id": "T0IOrRETWhI", "keywords": "U07_L2_T1_we3, Pythagorean, Theorem, CC_8_G_7", "youtube_id": "T0IOrRETWhI", "readable_id": "pythagorean-theorem-3"}, "i6gz9VFyYks": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i6gz9VFyYks.mp4/i6gz9VFyYks.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i6gz9VFyYks.mp4/i6gz9VFyYks.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i6gz9VFyYks.m3u8/i6gz9VFyYks.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-at-rest/fluids-part-4/", "duration": 609, "id": "i6gz9VFyYks", "title": "Fluids (part 4)", "format": "mp4", "description": "Using our understanding of fluid pressure to figure out the height of a column of mercury.", "slug": "fluids-part-4", "kind": "Video", "video_id": "i6gz9VFyYks", "keywords": "physics, chemistry, atmosphere, pascal, specific, gravity, mercury", "youtube_id": "i6gz9VFyYks", "readable_id": "fluids-part-4"}, "RoGgxrCsCEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RoGgxrCsCEQ.mp4/RoGgxrCsCEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RoGgxrCsCEQ.mp4/RoGgxrCsCEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RoGgxrCsCEQ.m3u8/RoGgxrCsCEQ.m3u8"}, "duration": 182, "id": "RoGgxrCsCEQ", "title": "The Gates Notes: Teachers in Los Altos", "format": "mp4", "description": "Teachers in Los Altos School District share their experiences with Khan Academy", "path": "the-gates-notes-teachers-in-los-altos/", "slug": "the-gates-notes-teachers-in-los-altos", "kind": "Video", "video_id": "RoGgxrCsCEQ", "keywords": "Gates, LASD, teachers", "youtube_id": "RoGgxrCsCEQ", "readable_id": "the-gates-notes-teachers-in-los-altos"}, "7FTNWE7RTfQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7FTNWE7RTfQ.mp4/7FTNWE7RTfQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7FTNWE7RTfQ.mp4/7FTNWE7RTfQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7FTNWE7RTfQ.m3u8/7FTNWE7RTfQ.m3u8"}, "duration": 387, "id": "7FTNWE7RTfQ", "title": "Equilateral and isosceles example problems", "format": "mp4", "description": "Three example problems involving isosceles and equilateral triangles. 2 from Art of Problem Solving (by Richard Rusczyk) book", "path": "khan/math/geometry/congruent-triangles/isoscleles_equil/equilateral-and-isosceles-example-problems/", "slug": "equilateral-and-isosceles-example-problems", "kind": "Video", "video_id": "7FTNWE7RTfQ", "keywords": "Equilateral, and, Isosceles, Example, Problems", "youtube_id": "7FTNWE7RTfQ", "readable_id": "equilateral-and-isosceles-example-problems"}, "jYhnlqE1cJY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jYhnlqE1cJY.mp4/jYhnlqE1cJY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jYhnlqE1cJY.mp4/jYhnlqE1cJY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jYhnlqE1cJY.m3u8/jYhnlqE1cJY.m3u8"}, "duration": 267, "id": "jYhnlqE1cJY", "title": "Flu Symptoms and Diagnosis", "format": "mp4", "description": "Learn the common symptoms of the flu and how it can be diagnosed.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "flu-symptoms-and-diagnosis/", "slug": "flu-symptoms-and-diagnosis", "kind": "Video", "video_id": "jYhnlqE1cJY", "keywords": "", "youtube_id": "jYhnlqE1cJY", "readable_id": "flu-symptoms-and-diagnosis"}, "1og25U-d3_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1og25U-d3_8.mp4/1og25U-d3_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1og25U-d3_8.mp4/1og25U-d3_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1og25U-d3_8.m3u8/1og25U-d3_8.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_proof/stokes-theorem-proof-part-4/", "duration": 439, "id": "1og25U-d3_8", "title": "Stokes' theorem proof part 4", "format": "mp4", "description": "Starting to work on the line integral about the surface", "slug": "stokes-theorem-proof-part-4", "kind": "Video", "video_id": "1og25U-d3_8", "keywords": "", "youtube_id": "1og25U-d3_8", "readable_id": "stokes-theorem-proof-part-4"}, "hTTDI49LhjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hTTDI49LhjE.mp4/hTTDI49LhjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hTTDI49LhjE.mp4/hTTDI49LhjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hTTDI49LhjE.m3u8/hTTDI49LhjE.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/evaluating-definite-integral-from-graph/", "duration": 211, "id": "hTTDI49LhjE", "title": "Evaluating definite integral from graph", "format": "mp4", "description": "", "slug": "evaluating-definite-integral-from-graph", "kind": "Video", "video_id": "hTTDI49LhjE", "keywords": "", "youtube_id": "hTTDI49LhjE", "readable_id": "evaluating-definite-integral-from-graph"}, "zAQz5J3Tpgs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zAQz5J3Tpgs.mp4/zAQz5J3Tpgs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zAQz5J3Tpgs.mp4/zAQz5J3Tpgs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zAQz5J3Tpgs.m3u8/zAQz5J3Tpgs.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/conjugation-and-color-1/", "duration": 574, "id": "zAQz5J3Tpgs", "title": "Conjugation and color", "format": "mp4", "description": "", "slug": "conjugation-and-color-1", "kind": "Video", "video_id": "zAQz5J3Tpgs", "keywords": "", "youtube_id": "zAQz5J3Tpgs", "readable_id": "conjugation-and-color-1"}, "Dk1nuM5JKqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dk1nuM5JKqQ.mp4/Dk1nuM5JKqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dk1nuM5JKqQ.mp4/Dk1nuM5JKqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dk1nuM5JKqQ.m3u8/Dk1nuM5JKqQ.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/millet-gleaners-1857/", "duration": 229, "id": "Dk1nuM5JKqQ", "title": "Millet, The Gleaners", "format": "mp4", "description": "Jean-Fran\u00e7ois Millet (French), The Gleaners, 1857, oil on canvas, 33 x 43 in (83.5 x 110 cm) (Mus\u00e9e d'Orsay, Paris) Speakers: Drs. Beth Harris and Steven Zucker http://www.smarthistory.org/jean-francois-millet-french-the-gleaners-1857.html http://www.smarthistory.org/jean-francois-millet-french-the-gleaners-1857.html", "slug": "millet-gleaners-1857", "kind": "Video", "video_id": "Dk1nuM5JKqQ", "keywords": "Millet, Gleaners, Smarthistory, Art History, Realism", "youtube_id": "Dk1nuM5JKqQ", "readable_id": "millet-gleaners-1857"}, "FZXSc26Sajo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FZXSc26Sajo.mp4/FZXSc26Sajo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FZXSc26Sajo.mp4/FZXSc26Sajo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FZXSc26Sajo.m3u8/FZXSc26Sajo.m3u8"}, "duration": 425, "id": "FZXSc26Sajo", "title": "Another polynomial end behavior example", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/polynomial-end-behavior/another-polynomial-end-behavior-example/", "slug": "another-polynomial-end-behavior-example", "kind": "Video", "video_id": "FZXSc26Sajo", "keywords": "", "youtube_id": "FZXSc26Sajo", "readable_id": "another-polynomial-end-behavior-example"}, "4tsjCND2ZfM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4tsjCND2ZfM.mp4/4tsjCND2ZfM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4tsjCND2ZfM.mp4/4tsjCND2ZfM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4tsjCND2ZfM.m3u8/4tsjCND2ZfM.m3u8"}, "duration": 132, "id": "4tsjCND2ZfM", "title": "Borromean onion rings", "format": "mp4", "description": "Borromean Onion Rings, the perfect way to top your Green Bean Matherole! Borromean onion rings were invented by special guest Marc ten Bosch (http://marctenbosch.com). Also shown are gelatinous cranberry cylinder, bread spheres and butter prism, mathed potatoes, apple pie, and pumpkin tau.\n\nMathed Potatoes: http://youtu.be/F5RyVWI4Onk\nGreen Bean Matherole: http://youtu.be/XwIs1nlDQ2I\nTurduckenen-duckenen: http://youtu.be/pjrI91J6jOw", "path": "khan/math/recreational-math/vi-hart/thanksgiving-math/borromean-onion-rings/", "slug": "borromean-onion-rings", "kind": "Video", "video_id": "4tsjCND2ZfM", "keywords": "", "youtube_id": "4tsjCND2ZfM", "readable_id": "borromean-onion-rings"}, "3A305Mhtkug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3A305Mhtkug.mp4/3A305Mhtkug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3A305Mhtkug.mp4/3A305Mhtkug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3A305Mhtkug.m3u8/3A305Mhtkug.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-35-37/", "duration": 411, "id": "3A305Mhtkug", "title": "CAHSEE practice: Problems 35-37", "format": "mp4", "description": "CAHSEE Practice: Problems 35-37", "slug": "cahsee-practice-problems-35-37", "kind": "Video", "video_id": "3A305Mhtkug", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "3A305Mhtkug", "readable_id": "cahsee-practice-problems-35-37"}, "TD1zuENbEdk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TD1zuENbEdk.mp4/TD1zuENbEdk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TD1zuENbEdk.mp4/TD1zuENbEdk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TD1zuENbEdk.m3u8/TD1zuENbEdk.m3u8"}, "duration": 266, "id": "TD1zuENbEdk", "title": "Metric system: units of weight", "format": "mp4", "description": "Let's jump into the world of metric weight measurement! Nice to meet you, milligram. You, too, gram and kilogram. Let's get to know each other.", "path": "metric-weight/", "slug": "metric-weight", "kind": "Video", "video_id": "TD1zuENbEdk", "keywords": "", "youtube_id": "TD1zuENbEdk", "readable_id": "metric-weight"}, "mPLCXCscqI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mPLCXCscqI8.mp4/mPLCXCscqI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mPLCXCscqI8.mp4/mPLCXCscqI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mPLCXCscqI8.m3u8/mPLCXCscqI8.m3u8"}, "duration": 275, "id": "mPLCXCscqI8", "title": "Interpreting multiplication and division of negative numbers", "format": "mp4", "description": "Let's think about the meaning of negative numbers in different situations.", "path": "interpreting-multiplicationa-and-division-of-negative-numbers/", "slug": "interpreting-multiplicationa-and-division-of-negative-numbers", "kind": "Video", "video_id": "mPLCXCscqI8", "keywords": "", "youtube_id": "mPLCXCscqI8", "readable_id": "interpreting-multiplicationa-and-division-of-negative-numbers"}, "2SOK_IrpHeQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2SOK_IrpHeQ.mp4/2SOK_IrpHeQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2SOK_IrpHeQ.mp4/2SOK_IrpHeQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2SOK_IrpHeQ.m3u8/2SOK_IrpHeQ.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/showing-angles-have-same-measure/", "duration": 293, "id": "2SOK_IrpHeQ", "title": "Showing angles have same measure", "format": "mp4", "description": "", "slug": "showing-angles-have-same-measure", "kind": "Video", "video_id": "2SOK_IrpHeQ", "keywords": "", "youtube_id": "2SOK_IrpHeQ", "readable_id": "showing-angles-have-same-measure"}, "znKX9WcowfY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/znKX9WcowfY.mp4/znKX9WcowfY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/znKX9WcowfY.mp4/znKX9WcowfY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/znKX9WcowfY.m3u8/znKX9WcowfY.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/manet-mile-zola-1868/", "duration": 274, "id": "znKX9WcowfY", "title": "Manet, \u00c9mile Zola", "format": "mp4", "description": "\u00c9douard Manet, \u00c9mile Zola, 1868, oil on canvas, 57 x 45 inches or 146.5 x 114 cm\n(Mus\u00e9e d'Orsay, Paris)\n\nThis portrait was painted in appreciation for the support Zola gave to Manet in his\n1866 essay in La Revue du XXe si\u00e8cle and during Manet's independent exhibition \nheld along side the Universal Exposition in 1867.", "slug": "manet-mile-zola-1868", "kind": "Video", "video_id": "znKX9WcowfY", "keywords": "Manet, Zola, Impressionism, art history, smarthistory, history of art, Realism", "youtube_id": "znKX9WcowfY", "readable_id": "manet-mile-zola-1868"}, "pZ6mMVEE89g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pZ6mMVEE89g.mp4/pZ6mMVEE89g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pZ6mMVEE89g.mp4/pZ6mMVEE89g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pZ6mMVEE89g.m3u8/pZ6mMVEE89g.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/eigen_everything/linear-algebra-example-solving-for-the-eigenvalues-of-a-2x2-matrix/", "duration": 339, "id": "pZ6mMVEE89g", "title": "Example solving for the eigenvalues of a 2x2 matrix", "format": "mp4", "description": "Example solving for the eigenvalues of a 2x2 matrix", "slug": "linear-algebra-example-solving-for-the-eigenvalues-of-a-2x2-matrix", "kind": "Video", "video_id": "pZ6mMVEE89g", "keywords": "eigenvalue", "youtube_id": "pZ6mMVEE89g", "readable_id": "linear-algebra-example-solving-for-the-eigenvalues-of-a-2x2-matrix"}, "7cmv1cEfHto": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7cmv1cEfHto.mp4/7cmv1cEfHto.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7cmv1cEfHto.mp4/7cmv1cEfHto.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7cmv1cEfHto.m3u8/7cmv1cEfHto.m3u8"}, "duration": 471, "id": "7cmv1cEfHto", "title": "Time and Influence: A fashion project with University of the Arts London", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nHow might an archive inspire you? Join a group of young Londoners as they answer that question while researching, designing, and creating a fashion collection inspired by the Tate Britain art and archive collections. After looking at the Tate displays and archives and thinking about the idea of chronology, these students created garments and jewellery inspired by the history of design. In this case, the archive served as a creative laboratory, providing sources of inspiration and allowing the students to feel more confident and involved with the works of art themselves.", "path": "time-and-influence/", "slug": "time-and-influence", "kind": "Video", "video_id": "7cmv1cEfHto", "keywords": "Tate", "youtube_id": "7cmv1cEfHto", "readable_id": "time-and-influence"}, "F2uzWHppVrk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F2uzWHppVrk.mp4/F2uzWHppVrk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F2uzWHppVrk.mp4/F2uzWHppVrk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F2uzWHppVrk.m3u8/F2uzWHppVrk.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/putting-it-all-together-pressure-flow-and-resistance/", "duration": 710, "id": "F2uzWHppVrk", "title": "Putting it all together: Pressure, flow, and resistance", "format": "mp4", "description": "See how pressure, flow, and resistance relate to one another and how they each affect the human body. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "putting-it-all-together-pressure-flow-and-resistance", "kind": "Video", "video_id": "F2uzWHppVrk", "keywords": "", "youtube_id": "F2uzWHppVrk", "readable_id": "putting-it-all-together-pressure-flow-and-resistance"}, "JWmCiZwoyMs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JWmCiZwoyMs.mp4/JWmCiZwoyMs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JWmCiZwoyMs.mp4/JWmCiZwoyMs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JWmCiZwoyMs.m3u8/JWmCiZwoyMs.m3u8"}, "duration": 79, "id": "JWmCiZwoyMs", "title": "Ratios as fractions in simplest form", "format": "mp4", "description": "Ratios as Fractions in Simplest Form", "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/ratios-as-fractions-in-simplest-form/", "slug": "ratios-as-fractions-in-simplest-form", "kind": "Video", "video_id": "JWmCiZwoyMs", "keywords": "U04_L1_T1_we1, Ratios, as, Fractions, in, Simplest, Form, CC_6_RP_1", "youtube_id": "JWmCiZwoyMs", "readable_id": "ratios-as-fractions-in-simplest-form"}, "F0LLR7bs7Qo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F0LLR7bs7Qo.mp4/F0LLR7bs7Qo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F0LLR7bs7Qo.mp4/F0LLR7bs7Qo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F0LLR7bs7Qo.m3u8/F0LLR7bs7Qo.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/can-a-squirrel-avoid-getting-run-over/", "duration": 253, "id": "F0LLR7bs7Qo", "title": "Multi-step unit conversion word problem", "format": "mp4", "description": "The fate of a squirrel is in your hands as it tries to run across the road before a car reaches it. Use what you know about unit conversion to help solve this word problem.", "slug": "can-a-squirrel-avoid-getting-run-over", "kind": "Video", "video_id": "F0LLR7bs7Qo", "keywords": "", "youtube_id": "F0LLR7bs7Qo", "readable_id": "can-a-squirrel-avoid-getting-run-over"}, "5-2RZsU8e3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5-2RZsU8e3U.mp4/5-2RZsU8e3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5-2RZsU8e3U.mp4/5-2RZsU8e3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5-2RZsU8e3U.m3u8/5-2RZsU8e3U.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/youngs-double-slit-problem-solving/", "duration": 429, "id": "5-2RZsU8e3U", "title": "Young's Double Slit problem solving", "format": "mp4", "description": "", "slug": "youngs-double-slit-problem-solving", "kind": "Video", "video_id": "5-2RZsU8e3U", "keywords": "", "youtube_id": "5-2RZsU8e3U", "readable_id": "youngs-double-slit-problem-solving"}, "BWQCAsM-CF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BWQCAsM-CF4.mp4/BWQCAsM-CF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BWQCAsM-CF4.mp4/BWQCAsM-CF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BWQCAsM-CF4.m3u8/BWQCAsM-CF4.m3u8"}, "duration": 424, "id": "BWQCAsM-CF4", "title": "Cell membrane fluidity", "format": "mp4", "description": "Learn how the phospholipids in the cell membrane maintain membrane fluidity. By William Tsai. ", "path": "khan/test-prep/mcat/cells/cell-membrane-overview/cell-membrane-fluidity/", "slug": "cell-membrane-fluidity", "kind": "Video", "video_id": "BWQCAsM-CF4", "keywords": "", "youtube_id": "BWQCAsM-CF4", "readable_id": "cell-membrane-fluidity"}, "ucbxYIVztz8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ucbxYIVztz8.mp4/ucbxYIVztz8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ucbxYIVztz8.mp4/ucbxYIVztz8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ucbxYIVztz8.m3u8/ucbxYIVztz8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-cystic-fibrosis/what-is-cystic-fibrosis/", "duration": 540, "id": "ucbxYIVztz8", "title": "What is cystic fibrosis?", "format": "mp4", "description": "", "slug": "what-is-cystic-fibrosis", "kind": "Video", "video_id": "ucbxYIVztz8", "keywords": "", "youtube_id": "ucbxYIVztz8", "readable_id": "what-is-cystic-fibrosis"}, "0ZstEh_8bYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0ZstEh_8bYc.mp4/0ZstEh_8bYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0ZstEh_8bYc.mp4/0ZstEh_8bYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0ZstEh_8bYc.m3u8/0ZstEh_8bYc.m3u8"}, "duration": 868, "id": "0ZstEh_8bYc", "title": "Sampling distribution example problem", "format": "mp4", "description": "Figuring out the probability of running out of water on a camping trip", "path": "khan/math/probability/statistics-inferential/sampling_distribution/sampling-distribution-example-problem/", "slug": "sampling-distribution-example-problem", "kind": "Video", "video_id": "0ZstEh_8bYc", "keywords": "statistics, sample, distribution, sampling, mean, standard, deviation, error, CC_7_SP_8_c", "youtube_id": "0ZstEh_8bYc", "readable_id": "sampling-distribution-example-problem"}, "789aMeepbxI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/789aMeepbxI.mp4/789aMeepbxI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/789aMeepbxI.mp4/789aMeepbxI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/789aMeepbxI.m3u8/789aMeepbxI.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/power_rule_tutorial/proof-d-dx-sqrt-x/", "duration": 307, "id": "789aMeepbxI", "title": "Proof: d/dx(sqrt(x))", "format": "mp4", "description": "Proof that d/dx (x^.5) = .5x^(-.5)", "slug": "proof-d-dx-sqrt-x", "kind": "Video", "video_id": "789aMeepbxI", "keywords": "Calculus, CC_39336_A-SSE_2", "youtube_id": "789aMeepbxI", "readable_id": "proof-d-dx-sqrt-x"}, "fii9QEVJPas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fii9QEVJPas.mp4/fii9QEVJPas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fii9QEVJPas.mp4/fii9QEVJPas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fii9QEVJPas.m3u8/fii9QEVJPas.m3u8"}, "duration": 355, "id": "fii9QEVJPas", "title": "Values to make absolute value inequality true", "format": "mp4", "description": "", "path": "values-to-make-absolute-value-inequality-true/", "slug": "values-to-make-absolute-value-inequality-true", "kind": "Video", "video_id": "fii9QEVJPas", "keywords": "", "youtube_id": "fii9QEVJPas", "readable_id": "values-to-make-absolute-value-inequality-true"}, "XmkbAduMD_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XmkbAduMD_E.mp4/XmkbAduMD_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XmkbAduMD_E.mp4/XmkbAduMD_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XmkbAduMD_E.m3u8/XmkbAduMD_E.m3u8"}, "duration": 822, "id": "XmkbAduMD_E", "title": "Bay of Pigs Invasion", "format": "mp4", "description": "Bay of Pigs Invasion", "path": "khan/humanities/history/euro-hist/cold-war/bay-of-pigs-invasion/", "slug": "bay-of-pigs-invasion", "kind": "Video", "video_id": "XmkbAduMD_E", "keywords": "Castro, Gueverra, Batista, CIA", "youtube_id": "XmkbAduMD_E", "readable_id": "bay-of-pigs-invasion"}, "jm8Sva2hnvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jm8Sva2hnvY.mp4/jm8Sva2hnvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jm8Sva2hnvY.mp4/jm8Sva2hnvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jm8Sva2hnvY.m3u8/jm8Sva2hnvY.m3u8"}, "path": "khan/humanities/art-history-basics/beginners-art-history/looking-at-paintings/", "duration": 656, "id": "jm8Sva2hnvY", "title": "Looking at paintings", "format": "mp4", "description": "Discover the elements of art seen in such masterpieces as The Dream of Pope Sergius by van der Weyden, La Promenade by Renoir, River Landscape by Koninck, Still Life with Apples by C\u00e9zanne, The Entombment by Rubens, Christ Crowned with Thorns by von Honthorst, Vase of Flowers by van Huysum, and Irises by van Gogh. Love art? Follow us on Google+\u00a0", "slug": "looking-at-paintings", "kind": "Video", "video_id": "jm8Sva2hnvY", "keywords": "", "youtube_id": "jm8Sva2hnvY", "readable_id": "looking-at-paintings"}, "OtmjNuiTHp0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OtmjNuiTHp0.mp4/OtmjNuiTHp0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OtmjNuiTHp0.mp4/OtmjNuiTHp0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OtmjNuiTHp0.m3u8/OtmjNuiTHp0.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-4/", "duration": 502, "id": "OtmjNuiTHp0", "title": "Disc method with outer and inner function boundaries", "format": "mp4", "description": "More volumes around the x-axis.", "slug": "solid-of-revolution-part-4", "kind": "Video", "video_id": "OtmjNuiTHp0", "keywords": "calculus, revolution, rotation, solid, math", "youtube_id": "OtmjNuiTHp0", "readable_id": "solid-of-revolution-part-4"}, "QfsK8ZyC_bE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QfsK8ZyC_bE.mp4/QfsK8ZyC_bE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QfsK8ZyC_bE.mp4/QfsK8ZyC_bE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QfsK8ZyC_bE.m3u8/QfsK8ZyC_bE.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/multistep-word-problems-tut/multistep-word-problems-example-2/", "duration": 145, "id": "QfsK8ZyC_bE", "title": "Multi-step word problem with fractions and units of time", "format": "mp4", "description": "Remember units of measurement? Convert minutes into hours and put your knowledge of fractions to work in this word problem.", "slug": "multistep-word-problems-example-2", "kind": "Video", "video_id": "QfsK8ZyC_bE", "keywords": "", "youtube_id": "QfsK8ZyC_bE", "readable_id": "multistep-word-problems-example-2"}, "UKQ65tiIQ6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UKQ65tiIQ6o.mp4/UKQ65tiIQ6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UKQ65tiIQ6o.mp4/UKQ65tiIQ6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UKQ65tiIQ6o.m3u8/UKQ65tiIQ6o.m3u8"}, "duration": 222, "id": "UKQ65tiIQ6o", "title": "Area of an equilateral triangle", "format": "mp4", "description": "Finding the formula for the area of an equilateral triangle with side s", "path": "khan/math/geometry/basic-geometry/koch_snowflake/area-of-an-equilateral-triangle/", "slug": "area-of-an-equilateral-triangle", "kind": "Video", "video_id": "UKQ65tiIQ6o", "keywords": "30-60-90, triangles, area", "youtube_id": "UKQ65tiIQ6o", "readable_id": "area-of-an-equilateral-triangle"}, "znT4W6n3WkI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/znT4W6n3WkI.mp4/znT4W6n3WkI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/znT4W6n3WkI.mp4/znT4W6n3WkI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/znT4W6n3WkI.m3u8/znT4W6n3WkI.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/power-series-algebra/power-series-using-integration/", "duration": 800, "id": "znT4W6n3WkI", "title": "Power series representation using integration", "format": "mp4", "description": "", "slug": "power-series-using-integration", "kind": "Video", "video_id": "znT4W6n3WkI", "keywords": "", "youtube_id": "znT4W6n3WkI", "readable_id": "power-series-using-integration"}, "QUem_2dkB9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QUem_2dkB9I.mp4/QUem_2dkB9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QUem_2dkB9I.mp4/QUem_2dkB9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QUem_2dkB9I.m3u8/QUem_2dkB9I.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/least_common_multiple/least-common-multiple-exercise-2/", "duration": 155, "id": "QUem_2dkB9I", "title": "Least common multiple exercise 2", "format": "mp4", "description": "Here's a lcm (least common multiple) example exercise that's a little bit harder, but totally doable. Again, we'll use the prime factorization approach.", "slug": "least-common-multiple-exercise-2", "kind": "Video", "video_id": "QUem_2dkB9I", "keywords": "", "youtube_id": "QUem_2dkB9I", "readable_id": "least-common-multiple-exercise-2"}, "8bK-xfh8-rY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8bK-xfh8-rY.mp4/8bK-xfh8-rY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8bK-xfh8-rY.mp4/8bK-xfh8-rY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8bK-xfh8-rY.m3u8/8bK-xfh8-rY.m3u8"}, "duration": 305, "id": "8bK-xfh8-rY", "title": "Making predictions with probability", "format": "mp4", "description": "Predict the number of times a spinner will land on an elephant.", "path": "making-predictions-with-probability/", "slug": "making-predictions-with-probability", "kind": "Video", "video_id": "8bK-xfh8-rY", "keywords": "", "youtube_id": "8bK-xfh8-rY", "readable_id": "making-predictions-with-probability"}, "j01F5xUPAsY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j01F5xUPAsY.mp4/j01F5xUPAsY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j01F5xUPAsY.mp4/j01F5xUPAsY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j01F5xUPAsY.m3u8/j01F5xUPAsY.m3u8"}, "duration": 79, "id": "j01F5xUPAsY", "title": "Student testimonial: Charlie Marsh", "format": "mp4", "description": "Learn how Charlie used Khan Academy to jumpstart his college education.", "path": "charlie-marsh-college-hero/", "slug": "charlie-marsh-college-hero", "kind": "Video", "video_id": "j01F5xUPAsY", "keywords": "", "youtube_id": "j01F5xUPAsY", "readable_id": "charlie-marsh-college-hero"}, "iQY3SdZeZ6g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iQY3SdZeZ6g.mp4/iQY3SdZeZ6g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iQY3SdZeZ6g.mp4/iQY3SdZeZ6g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iQY3SdZeZ6g.m3u8/iQY3SdZeZ6g.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/paul-c-zanne-bathers-les-grandes-baigneuses-c-1894-1905/", "duration": 386, "id": "iQY3SdZeZ6g", "title": "C\u00e9zanne, Bathers", "format": "mp4", "description": "Paul C\u00e9zanne, Bathers (Les Grandes Baigneuses), c. 1894-1905, oil on canvas, 127.2 x 196.1 cm (The National Gallery, London)", "slug": "paul-c-zanne-bathers-les-grandes-baigneuses-c-1894-1905", "kind": "Video", "video_id": "iQY3SdZeZ6g", "keywords": "National Gallery, Paul C\u00e9zanne, C\u00e9zanne, Cezanne, Bathers, Les Grandes Baigneuses, 1894, 1905, smarthistory, art history, Google Art Project, OER", "youtube_id": "iQY3SdZeZ6g", "readable_id": "paul-c-zanne-bathers-les-grandes-baigneuses-c-1894-1905"}, "WBsyjezwfYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WBsyjezwfYc.mp4/WBsyjezwfYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WBsyjezwfYc.mp4/WBsyjezwfYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WBsyjezwfYc.m3u8/WBsyjezwfYc.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-blended-software/sscc-blended-softwareresources/", "duration": 148, "id": "WBsyjezwfYc", "title": "Resources to learn about software: the \"consumer reports\" of ed tech", "format": "mp4", "description": "", "slug": "sscc-blended-softwareresources", "kind": "Video", "video_id": "WBsyjezwfYc", "keywords": "", "youtube_id": "WBsyjezwfYc", "readable_id": "sscc-blended-softwareresources"}, "sPz5RrFus1Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sPz5RrFus1Q.mp4/sPz5RrFus1Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sPz5RrFus1Q.mp4/sPz5RrFus1Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sPz5RrFus1Q.m3u8/sPz5RrFus1Q.m3u8"}, "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/proof-s-or-entropy-is-a-valid-state-variable/", "duration": 938, "id": "sPz5RrFus1Q", "title": "Proof: S (or entropy) is a valid state variable", "format": "mp4", "description": "Proof that S (or entropy) is a valid state variable.", "slug": "proof-s-or-entropy-is-a-valid-state-variable", "kind": "Video", "video_id": "sPz5RrFus1Q", "keywords": "entropy, internal, energy, heat, thermodynamics", "youtube_id": "sPz5RrFus1Q", "readable_id": "proof-s-or-entropy-is-a-valid-state-variable"}, "J8wW1t1JqUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J8wW1t1JqUc.mp4/J8wW1t1JqUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J8wW1t1JqUc.mp4/J8wW1t1JqUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J8wW1t1JqUc.m3u8/J8wW1t1JqUc.m3u8"}, "duration": 580, "id": "J8wW1t1JqUc", "title": "Neuroplasticity", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuronal-synapses/neuroplasticity/", "slug": "neuroplasticity", "kind": "Video", "video_id": "J8wW1t1JqUc", "keywords": "", "youtube_id": "J8wW1t1JqUc", "readable_id": "neuroplasticity"}, "er1L9BB6UoE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/er1L9BB6UoE.mp4/er1L9BB6UoE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/er1L9BB6UoE.mp4/er1L9BB6UoE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/er1L9BB6UoE.m3u8/er1L9BB6UoE.m3u8"}, "path": "khan/humanities/history/1600s-1800s/declaration-of-independence/background-and-introduction-to-the-united-states-declaration-of-independence/", "duration": 518, "id": "er1L9BB6UoE", "title": "Background and introduction to the United States Declaration of Independence", "format": "mp4", "description": "In this video, Aspen Institute President and CEO Walter Isaacson talks to Sal about the background to the Declaration of Independence.", "slug": "background-and-introduction-to-the-united-states-declaration-of-independence", "kind": "Video", "video_id": "er1L9BB6UoE", "keywords": "", "youtube_id": "er1L9BB6UoE", "readable_id": "background-and-introduction-to-the-united-states-declaration-of-independence"}, "laBUtu_QEEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/laBUtu_QEEE.mp4/laBUtu_QEEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/laBUtu_QEEE.mp4/laBUtu_QEEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/laBUtu_QEEE.m3u8/laBUtu_QEEE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-emphysema/what-is-emphysema/", "duration": 450, "id": "laBUtu_QEEE", "title": "What is emphysema?", "format": "mp4", "description": "Emphysema is a chronic medical condition (most often caused by smoking and air pollution) where lung tissue is damaged and traps air inside the lung. Learn how shortness of breath, persistent cough, and wheezing are common symptoms of this condition and why they occur in emphysema.", "slug": "what-is-emphysema", "kind": "Video", "video_id": "laBUtu_QEEE", "keywords": "", "youtube_id": "laBUtu_QEEE", "readable_id": "what-is-emphysema"}, "XMJ72mtMn4Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XMJ72mtMn4Y.mp4/XMJ72mtMn4Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XMJ72mtMn4Y.mp4/XMJ72mtMn4Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XMJ72mtMn4Y.m3u8/XMJ72mtMn4Y.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/equation-of-a-line-3/", "duration": 402, "id": "XMJ72mtMn4Y", "title": "Slope-intercept equation from two solutions example", "format": "mp4", "description": "Equation of a line 3", "slug": "equation-of-a-line-3", "kind": "Video", "video_id": "XMJ72mtMn4Y", "keywords": "u13_l2_t2_we3, Equation, of, line, CC_8_EE_6, CC_8_F_3", "youtube_id": "XMJ72mtMn4Y", "readable_id": "equation-of-a-line-3"}, "_86K0yQ8BQY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_86K0yQ8BQY.mp4/_86K0yQ8BQY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_86K0yQ8BQY.mp4/_86K0yQ8BQY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_86K0yQ8BQY.m3u8/_86K0yQ8BQY.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/identity-property-of-1-second-example/", "duration": 115, "id": "_86K0yQ8BQY", "title": "Identity property of 1 (second example)", "format": "mp4", "description": "Identity property of 1", "slug": "identity-property-of-1-second-example", "kind": "Video", "video_id": "_86K0yQ8BQY", "keywords": "U09_L2_T4_we3, Identity, property, of", "youtube_id": "_86K0yQ8BQY", "readable_id": "identity-property-of-1-second-example"}, "2XQH-J5KeHI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2XQH-J5KeHI.mp4/2XQH-J5KeHI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2XQH-J5KeHI.mp4/2XQH-J5KeHI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2XQH-J5KeHI.m3u8/2XQH-J5KeHI.m3u8"}, "duration": 238, "id": "2XQH-J5KeHI", "title": "Squeeze theorem exercise example", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/squeeze_theorem/squeeze-theorem-exercise-example/", "slug": "squeeze-theorem-exercise-example", "kind": "Video", "video_id": "2XQH-J5KeHI", "keywords": "", "youtube_id": "2XQH-J5KeHI", "readable_id": "squeeze-theorem-exercise-example"}, "73yFDlgqPio": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/73yFDlgqPio.mp4/73yFDlgqPio.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/73yFDlgqPio.mp4/73yFDlgqPio.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/73yFDlgqPio.m3u8/73yFDlgqPio.m3u8"}, "duration": 530, "id": "73yFDlgqPio", "title": "Indus Valley civilization", "format": "mp4", "description": "In which John Green teaches you about the Indus Valley Civilization, one of the largest of the ancient civilizations. John teaches you the who, how, when, where and why of the Indus Valley Civilization, and dispenses advice on how to be more successful in your romantic relationships.", "path": "khan/humanities/history/crashcourse-worldhistory/what-happens-when-you-stay-put-2/crash-course-world-history-02/", "slug": "crash-course-world-history-02", "kind": "Video", "video_id": "73yFDlgqPio", "keywords": "crash course", "youtube_id": "73yFDlgqPio", "readable_id": "crash-course-world-history-02"}, "Jqgpq8vn_oU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jqgpq8vn_oU.mp4/Jqgpq8vn_oU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jqgpq8vn_oU.mp4/Jqgpq8vn_oU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jqgpq8vn_oU.m3u8/Jqgpq8vn_oU.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/egypt-art/ptolemaic/ancient-egyptian-coffin/", "duration": 69, "id": "Jqgpq8vn_oU", "title": "Ancient Egyptian coffin prepared for the Book of the Dead exhibition at the British Museum", "format": "mp4", "description": "Conservators at the British Museum preparing an ancient Egyptian coffin for display in the exhibition Journey through the afterlife: ancient Egyptian Book of the Dead. \u00a9 Trustees of the British Museum.", "slug": "ancient-egyptian-coffin", "kind": "Video", "video_id": "Jqgpq8vn_oU", "keywords": "", "youtube_id": "Jqgpq8vn_oU", "readable_id": "ancient-egyptian-coffin"}, "JPQ8cfOsYxo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JPQ8cfOsYxo.mp4/JPQ8cfOsYxo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JPQ8cfOsYxo.mp4/JPQ8cfOsYxo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JPQ8cfOsYxo.m3u8/JPQ8cfOsYxo.m3u8"}, "duration": 368, "id": "JPQ8cfOsYxo", "title": "2003 AIME II problem 1", "format": "mp4", "description": "2003 AIME II Problem 1", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-1/", "slug": "2003-aime-ii-problem-1", "kind": "Video", "video_id": "JPQ8cfOsYxo", "keywords": "2003, AIME, II, Problem, greatest, integer, divisibility", "youtube_id": "JPQ8cfOsYxo", "readable_id": "2003-aime-ii-problem-1"}, "8M4c8TB3Cdc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8M4c8TB3Cdc.mp4/8M4c8TB3Cdc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8M4c8TB3Cdc.mp4/8M4c8TB3Cdc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8M4c8TB3Cdc.m3u8/8M4c8TB3Cdc.m3u8"}, "path": "khan/math/algebra/quadratics/quadratic_odds_ends/ca-algebra-i-completing-the-square/", "duration": 828, "id": "8M4c8TB3Cdc", "title": "CA Algebra I: Completing the square", "format": "mp4", "description": "48-52, completing the square", "slug": "ca-algebra-i-completing-the-square", "kind": "Video", "video_id": "8M4c8TB3Cdc", "keywords": "algebra, completing, the, square", "youtube_id": "8M4c8TB3Cdc", "readable_id": "ca-algebra-i-completing-the-square"}, "xV5gCoDUDjY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xV5gCoDUDjY.mp4/xV5gCoDUDjY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xV5gCoDUDjY.mp4/xV5gCoDUDjY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xV5gCoDUDjY.m3u8/xV5gCoDUDjY.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-spout-bot-builds/", "duration": 167, "id": "xV5gCoDUDjY", "title": "DLab: Spout Bot project", "format": "mp4", "description": "", "slug": "discovery-lab-spout-bot-builds", "kind": "Video", "video_id": "xV5gCoDUDjY", "keywords": "", "youtube_id": "xV5gCoDUDjY", "readable_id": "discovery-lab-spout-bot-builds"}, "M-9t4RrhKJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M-9t4RrhKJE.mp4/M-9t4RrhKJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M-9t4RrhKJE.mp4/M-9t4RrhKJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M-9t4RrhKJE.m3u8/M-9t4RrhKJE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-laryngeal-conditions/laryngitis-diagnosis-treatment-and-prevention/", "duration": 331, "id": "M-9t4RrhKJE", "title": "Laryngitis diagnosis, treatment, and prevention", "format": "mp4", "description": "", "slug": "laryngitis-diagnosis-treatment-and-prevention", "kind": "Video", "video_id": "M-9t4RrhKJE", "keywords": "", "youtube_id": "M-9t4RrhKJE", "readable_id": "laryngitis-diagnosis-treatment-and-prevention"}, "Mcm0Q3wGhMo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mcm0Q3wGhMo.mp4/Mcm0Q3wGhMo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mcm0Q3wGhMo.mp4/Mcm0Q3wGhMo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mcm0Q3wGhMo.m3u8/Mcm0Q3wGhMo.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/dividing-fractions-pre-alg/creating-a-fraction-through-division-of-whole-numbers/", "duration": 165, "id": "Mcm0Q3wGhMo", "title": "Creating a fraction through division of whole numbers", "format": "mp4", "description": "Learn how 3 \u00f7 2 is the same as 3 \u2022 1/2, which is the same as 3/2.", "slug": "creating-a-fraction-through-division-of-whole-numbers", "kind": "Video", "video_id": "Mcm0Q3wGhMo", "keywords": "", "youtube_id": "Mcm0Q3wGhMo", "readable_id": "creating-a-fraction-through-division-of-whole-numbers"}, "Rw_pDVbnfQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rw_pDVbnfQk.mp4/Rw_pDVbnfQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rw_pDVbnfQk.mp4/Rw_pDVbnfQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rw_pDVbnfQk.m3u8/Rw_pDVbnfQk.m3u8"}, "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/covalent-networks-metallic-and-ionic-crystals/", "duration": 554, "id": "Rw_pDVbnfQk", "title": "Covalent networks, metallic, and ionic crystals", "format": "mp4", "description": "Covalent Networks, Metallic, and Ionic Crystals: Some of the strongest molecular structures.", "slug": "covalent-networks-metallic-and-ionic-crystals", "kind": "Video", "video_id": "Rw_pDVbnfQk", "keywords": "chemistry, covalent, molecular", "youtube_id": "Rw_pDVbnfQk", "readable_id": "covalent-networks-metallic-and-ionic-crystals"}, "EdYyuUUY-nc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EdYyuUUY-nc.mp4/EdYyuUUY-nc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EdYyuUUY-nc.mp4/EdYyuUUY-nc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EdYyuUUY-nc.m3u8/EdYyuUUY-nc.m3u8"}, "duration": 774, "id": "EdYyuUUY-nc", "title": "White and black dwarfs", "format": "mp4", "description": "White and Black Dwarfs", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/white-and-black-dwarfs/", "slug": "white-and-black-dwarfs", "kind": "Video", "video_id": "EdYyuUUY-nc", "keywords": "White, and, Black, Dwarfs, stellar, evolution", "youtube_id": "EdYyuUUY-nc", "readable_id": "white-and-black-dwarfs"}, "mKu0L46Qed4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mKu0L46Qed4.mp4/mKu0L46Qed4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mKu0L46Qed4.mp4/mKu0L46Qed4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mKu0L46Qed4.m3u8/mKu0L46Qed4.m3u8"}, "duration": 305, "id": "mKu0L46Qed4", "title": "Addition elimination method 3", "format": "mp4", "description": "Addition Elimination Method 3", "path": "addition-elimination-method-3/", "slug": "addition-elimination-method-3", "kind": "Video", "video_id": "mKu0L46Qed4", "keywords": "u14_l2_t2_we3, Addition, Elimination, Method, CC_8_EE_8, CC_8_EE_8_a, CC_8_EE_8_b, CC_39336_A-REI_5, CC_39336_A-REI_6", "youtube_id": "mKu0L46Qed4", "readable_id": "addition-elimination-method-3"}, "EdyociU35u8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EdyociU35u8.mp4/EdyociU35u8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EdyociU35u8.mp4/EdyociU35u8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EdyociU35u8.m3u8/EdyociU35u8.m3u8"}, "duration": 474, "id": "EdyociU35u8", "title": "Doodling in math: Dragons", "format": "mp4", "description": "", "path": "khan/math/recreational-math/vi-hart/doodling-in-math/dragons/", "slug": "dragons", "kind": "Video", "video_id": "EdyociU35u8", "keywords": "", "youtube_id": "EdyociU35u8", "readable_id": "dragons"}, "uSywjCBfSO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uSywjCBfSO8.mp4/uSywjCBfSO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uSywjCBfSO8.mp4/uSywjCBfSO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uSywjCBfSO8.m3u8/uSywjCBfSO8.m3u8"}, "duration": 597, "id": "uSywjCBfSO8", "title": "Heredity", "format": "mp4", "description": "Hank and his brother John discuss heredity via the gross example of relative ear wax moistness.\u00a0", "path": "crash-course-biology-109/", "slug": "crash-course-biology-109", "kind": "Video", "video_id": "uSywjCBfSO8", "keywords": "", "youtube_id": "uSywjCBfSO8", "readable_id": "crash-course-biology-109"}, "MK-dN5WVVrk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MK-dN5WVVrk.mp4/MK-dN5WVVrk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MK-dN5WVVrk.mp4/MK-dN5WVVrk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MK-dN5WVVrk.m3u8/MK-dN5WVVrk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/kawasaki-disease/", "duration": 342, "id": "MK-dN5WVVrk", "title": "What is Kawasaki disease?", "format": "mp4", "description": "Kawasaki disease (also known as mucocutaneous lymph node syndrome) is a type of vasculitis that affects medium arteries. Patients with Kawasaki disease can have symptoms like rashes on the palms of hands, soles of feet, in the eyes, and on the tongue (called strawberry tongue).", "slug": "kawasaki-disease", "kind": "Video", "video_id": "MK-dN5WVVrk", "keywords": "", "youtube_id": "MK-dN5WVVrk", "readable_id": "kawasaki-disease"}, "sD123svCFHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sD123svCFHQ.mp4/sD123svCFHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sD123svCFHQ.mp4/sD123svCFHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sD123svCFHQ.m3u8/sD123svCFHQ.m3u8"}, "duration": 191, "id": "sD123svCFHQ", "title": "David Hockney's \"Pearblossom Hwy\"", "format": "mp4", "description": "The artist David Hockney called his photo collages, \u201cdrawing with a camera.\u201d Here he discusses perspective and other issues in Pearblossom Hwy., 11-18th April 1986, #2. Love art? Follow us on Google+", "path": "david-hockney-pearblossom-hwy/", "slug": "david-hockney-pearblossom-hwy", "kind": "Video", "video_id": "sD123svCFHQ", "keywords": "", "youtube_id": "sD123svCFHQ", "readable_id": "david-hockney-pearblossom-hwy"}, "47wjId9k2Hs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/47wjId9k2Hs.mp4/47wjId9k2Hs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/47wjId9k2Hs.mp4/47wjId9k2Hs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/47wjId9k2Hs.m3u8/47wjId9k2Hs.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/multiplying-positive-and-negative-numbers/", "duration": 334, "id": "47wjId9k2Hs", "title": "Multiplying positive and negative numbers", "format": "mp4", "description": "Learn some rules of thumb for multiplying positive and negative numbers.", "slug": "multiplying-positive-and-negative-numbers", "kind": "Video", "video_id": "47wjId9k2Hs", "keywords": "negative, number, multiplication", "youtube_id": "47wjId9k2Hs", "readable_id": "multiplying-positive-and-negative-numbers"}, "q-3BctoUpHE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q-3BctoUpHE.mp4/q-3BctoUpHE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q-3BctoUpHE.mp4/q-3BctoUpHE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q-3BctoUpHE.m3u8/q-3BctoUpHE.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/testtest/", "duration": 325, "id": "q-3BctoUpHE", "title": "Error correction", "format": "mp4", "description": "How can we communicate in the presence of noise?", "slug": "testtest", "kind": "Video", "video_id": "q-3BctoUpHE", "keywords": "", "youtube_id": "q-3BctoUpHE", "readable_id": "testtest"}, "CGC533KyVIE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CGC533KyVIE.mp4/CGC533KyVIE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CGC533KyVIE.mp4/CGC533KyVIE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CGC533KyVIE.m3u8/CGC533KyVIE.m3u8"}, "duration": 133, "id": "CGC533KyVIE", "title": "Common Core Standards: Introduction", "format": "mp4", "description": "Sal introduces the series of videos he's created with Bill McCallum, a lead author of the Common Core, to demystify the new standards.", "path": "common-core-standards-introduction/", "slug": "common-core-standards-introduction", "kind": "Video", "video_id": "CGC533KyVIE", "keywords": "", "youtube_id": "CGC533KyVIE", "readable_id": "common-core-standards-introduction"}, "h2CcewghKoo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h2CcewghKoo.mp4/h2CcewghKoo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h2CcewghKoo.mp4/h2CcewghKoo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h2CcewghKoo.m3u8/h2CcewghKoo.m3u8"}, "path": "khan/humanities/medieval-world/medieval-book/using-medieval-book/medieval-calendar/", "duration": 270, "id": "h2CcewghKoo", "title": "The medieval calendar", "format": "mp4", "description": "The medieval calendar served as a map of the Church year and featured illustrations of saints, feasts, monthly labors, leisure activities, and signs of the zodiac. Learn how to read one, and discover the meanings of the illustrations. Love art? Follow us on Google+", "slug": "medieval-calendar", "kind": "Video", "video_id": "h2CcewghKoo", "keywords": "", "youtube_id": "h2CcewghKoo", "readable_id": "medieval-calendar"}, "VhNkWdLGpmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VhNkWdLGpmA.mp4/VhNkWdLGpmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VhNkWdLGpmA.mp4/VhNkWdLGpmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VhNkWdLGpmA.m3u8/VhNkWdLGpmA.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-coordinate-plane/the-coordinate-plane/", "duration": 410, "id": "VhNkWdLGpmA", "title": "Coordinate plane examples", "format": "mp4", "description": "Let's get familiar with the x/y coordinate plane, both from the perspective of plotting points and interpreting the placement of points on a plane.", "slug": "the-coordinate-plane", "kind": "Video", "video_id": "VhNkWdLGpmA", "keywords": "The, Coordinate, Plane, CC_6_G_3, CC_6_NS_6_c", "youtube_id": "VhNkWdLGpmA", "readable_id": "the-coordinate-plane"}, "m5Tf6vgoJtQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m5Tf6vgoJtQ.mp4/m5Tf6vgoJtQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m5Tf6vgoJtQ.mp4/m5Tf6vgoJtQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m5Tf6vgoJtQ.m3u8/m5Tf6vgoJtQ.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exponential-modeling/word-problem-solving-exponential-growth-and-decay/", "duration": 441, "id": "m5Tf6vgoJtQ", "title": "Exponential growth and decay word problems", "format": "mp4", "description": "Word Problem Solving- Exponential Growth and Decay", "slug": "word-problem-solving-exponential-growth-and-decay", "kind": "Video", "video_id": "m5Tf6vgoJtQ", "keywords": "Word, Problem, Solving, Exponential, Growth, and, Decay", "youtube_id": "m5Tf6vgoJtQ", "readable_id": "word-problem-solving-exponential-growth-and-decay"}, "6dP-mNDnU-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6dP-mNDnU-A.mp4/6dP-mNDnU-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6dP-mNDnU-A.mp4/6dP-mNDnU-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6dP-mNDnU-A.m3u8/6dP-mNDnU-A.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/integration/", "duration": 270, "id": "6dP-mNDnU-A", "title": "Integration", "format": "mp4", "description": "", "slug": "integration", "kind": "Video", "video_id": "6dP-mNDnU-A", "keywords": "", "youtube_id": "6dP-mNDnU-A", "readable_id": "integration"}, "R2JsjJyr0ck": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R2JsjJyr0ck.mp4/R2JsjJyr0ck.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R2JsjJyr0ck.mp4/R2JsjJyr0ck.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R2JsjJyr0ck.m3u8/R2JsjJyr0ck.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivatives-inverse-functions/derivative-log-properties/", "duration": 361, "id": "R2JsjJyr0ck", "title": "Derivative using log properties", "format": "mp4", "description": "", "slug": "derivative-log-properties", "kind": "Video", "video_id": "R2JsjJyr0ck", "keywords": "", "youtube_id": "R2JsjJyr0ck", "readable_id": "derivative-log-properties"}, "Qov3zXKrBPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qov3zXKrBPA.mp4/Qov3zXKrBPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qov3zXKrBPA.mp4/Qov3zXKrBPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qov3zXKrBPA.m3u8/Qov3zXKrBPA.m3u8"}, "duration": 172, "id": "Qov3zXKrBPA", "title": "\"Looming Change\" with Melinda Watt", "format": "mp4", "description": "Met curator Melinda Watt on beauty and technology in Shawl, designed by Deneirouse and Boisglavy.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "loomingchange/", "slug": "loomingchange", "kind": "Video", "video_id": "Qov3zXKrBPA", "keywords": "control, costume, daily life, fashion, nature, ornate, silk, textile, Europe", "youtube_id": "Qov3zXKrBPA", "readable_id": "loomingchange"}, "AHRh3EpJQH0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AHRh3EpJQH0.mp4/AHRh3EpJQH0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AHRh3EpJQH0.mp4/AHRh3EpJQH0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AHRh3EpJQH0.m3u8/AHRh3EpJQH0.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/divisibility_and_factors/divisibility-intuition/", "duration": 190, "id": "AHRh3EpJQH0", "title": "Interactive module: finding factors", "format": "mp4", "description": "Here's a video of Sal working on a exercise which helps you visualize the process of finding a number's factors.", "slug": "divisibility-intuition", "kind": "Video", "video_id": "AHRh3EpJQH0", "keywords": "divisibility, factors, intuition", "youtube_id": "AHRh3EpJQH0", "readable_id": "divisibility-intuition"}, "-0zm323sehQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-0zm323sehQ.mp4/-0zm323sehQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-0zm323sehQ.mp4/-0zm323sehQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-0zm323sehQ.m3u8/-0zm323sehQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/cardiogenic-shock/", "duration": 704, "id": "-0zm323sehQ", "title": "Cardiogenic shock", "format": "mp4", "description": "", "slug": "cardiogenic-shock", "kind": "Video", "video_id": "-0zm323sehQ", "keywords": "", "youtube_id": "-0zm323sehQ", "readable_id": "cardiogenic-shock"}, "iz1SAa1JEaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iz1SAa1JEaA.mp4/iz1SAa1JEaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iz1SAa1JEaA.mp4/iz1SAa1JEaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iz1SAa1JEaA.m3u8/iz1SAa1JEaA.m3u8"}, "duration": 164, "id": "iz1SAa1JEaA", "title": "\"Phenomenon\" with Bradley Strauchen-Scherer", "format": "mp4", "description": "Met curator Bradley Strauchen-Scherer on intuition in Bartolomeo Cristofori\u2019s Grand Piano.\n\nBartolomeo Cristofori was the first person to create a successful hammer-action keyboard instrument and, accordingly, deserves to be credited as the inventor of the piano. This example is the oldest of the three extant pianos by Cristofori. About 1700 he began to work on an instrument on which the player could achieve changes in loudness solely by changing the force with which the keys were struck. By 1700 he had made at least one successful instrument, which he called \"gravicembalo col piano e forte\" (harpsichord with soft and loud). His instrument still generally resembles a harpsichord, though its case is thicker and the quill mechanism has been replaced by a hammer mechanism. Cristofori's hammer mechanism is so well designed and made that no other of comparable sensitivity and reliability was devised for another seventy-five years. In fact, the highly complex action of the modern piano may be traced directly to his original conception.\n\nView this work on metmuseum.org.\n", "path": "phenomenon/", "slug": "phenomenon", "kind": "Video", "video_id": "iz1SAa1JEaA", "keywords": "daily life, ingenuity, music, musical instrument, touch, wood, Europe", "youtube_id": "iz1SAa1JEaA", "readable_id": "phenomenon"}, "eUsWUiVCq5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eUsWUiVCq5U.mp4/eUsWUiVCq5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eUsWUiVCq5U.mp4/eUsWUiVCq5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eUsWUiVCq5U.m3u8/eUsWUiVCq5U.m3u8"}, "duration": 359, "id": "eUsWUiVCq5U", "title": "Earth's Tilt 2: Land of the Midnight Sun", "format": "mp4", "description": "How can you tell when to go to bed when the sun never sets? Ask a reindeer from Norway.\n\nLicense: Creative Commons BY-NC-SA\nMore information at http://k12videos.mit.edu/terms-conditions", "path": "earth-s-tilt-2-land-of-the-midnight-sun/", "slug": "earth-s-tilt-2-land-of-the-midnight-sun", "kind": "Video", "video_id": "eUsWUiVCq5U", "keywords": "", "youtube_id": "eUsWUiVCq5U", "readable_id": "earth-s-tilt-2-land-of-the-midnight-sun"}, "mkyZ45KQYi4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mkyZ45KQYi4.mp4/mkyZ45KQYi4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mkyZ45KQYi4.mp4/mkyZ45KQYi4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mkyZ45KQYi4.m3u8/mkyZ45KQYi4.m3u8"}, "path": "khan/math/precalculus/prob_comb/independent_events_precalc/getting-at-least-one-heads/", "duration": 560, "id": "mkyZ45KQYi4", "title": "Coin flipping probability", "format": "mp4", "description": "In this video, we 'll explore the probability of getting at least one heads in multiple flips of a fair coin.", "slug": "getting-at-least-one-heads", "kind": "Video", "video_id": "mkyZ45KQYi4", "keywords": "probability, statistics", "youtube_id": "mkyZ45KQYi4", "readable_id": "getting-at-least-one-heads"}, "H6gtCQUhNGk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H6gtCQUhNGk.mp4/H6gtCQUhNGk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H6gtCQUhNGk.mp4/H6gtCQUhNGk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H6gtCQUhNGk.m3u8/H6gtCQUhNGk.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/protein-translation-1/", "duration": 577, "id": "H6gtCQUhNGk", "title": "Protein translation 1", "format": "mp4", "description": "", "slug": "protein-translation-1", "kind": "Video", "video_id": "H6gtCQUhNGk", "keywords": "", "youtube_id": "H6gtCQUhNGk", "readable_id": "protein-translation-1"}, "XIkryXkz8a4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XIkryXkz8a4.mp4/XIkryXkz8a4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XIkryXkz8a4.mp4/XIkryXkz8a4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XIkryXkz8a4.m3u8/XIkryXkz8a4.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/central-italy1/piero-della-francesca-portraits-of-the-duke-and-duchess-of-urbino-1467-72/", "duration": 238, "id": "XIkryXkz8a4", "title": "Piero della Francesca, Portraits of the Duke and Duchess of Urbino", "format": "mp4", "description": "Piero della Francesca, Portraits of the Duke and Duchess of Urbino, Federico da Montefeltro and Battista Sforza, 1467-72, tempera on panel, 47 x 33 cm (Galleria degli Uffizi, Florence)", "slug": "piero-della-francesca-portraits-of-the-duke-and-duchess-of-urbino-1467-72", "kind": "Video", "video_id": "XIkryXkz8a4", "keywords": "Piero, Portrait, GAP, Piero della Francesca, della Francesca, Duke, Duchess, Urbino, Federico da Montefeltro, Battista Sforza, 1467, 1472, tempera, panel, Uffizi, Florence, Sforza, da Montefeltro, Google Art Project, Khan Academy, Smarthistory, OER, art history, renaissance, italian renaissance, painting, nobility", "youtube_id": "XIkryXkz8a4", "readable_id": "piero-della-francesca-portraits-of-the-duke-and-duchess-of-urbino-1467-72"}, "6_PP49FuyTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6_PP49FuyTM.mp4/6_PP49FuyTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6_PP49FuyTM.mp4/6_PP49FuyTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6_PP49FuyTM.m3u8/6_PP49FuyTM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-skeletal-system/microscopic-structure-of-bone-haversian-system/", "duration": 248, "id": "6_PP49FuyTM", "title": "Microscopic structure of bone - the Haversian system", "format": "mp4", "description": "", "slug": "microscopic-structure-of-bone-haversian-system", "kind": "Video", "video_id": "6_PP49FuyTM", "keywords": "", "youtube_id": "6_PP49FuyTM", "readable_id": "microscopic-structure-of-bone-haversian-system"}, "xeoVPSBP9WI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xeoVPSBP9WI.mp4/xeoVPSBP9WI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xeoVPSBP9WI.mp4/xeoVPSBP9WI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xeoVPSBP9WI.m3u8/xeoVPSBP9WI.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-fractions/fractions-on-number-line-widget/", "duration": 59, "id": "xeoVPSBP9WI", "title": "Fractions on number line widget", "format": "mp4", "description": "Learn how to use the Khan Academy number line widget.", "slug": "fractions-on-number-line-widget", "kind": "Video", "video_id": "xeoVPSBP9WI", "keywords": "", "youtube_id": "xeoVPSBP9WI", "readable_id": "fractions-on-number-line-widget"}, "z0mqaTOu1e4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z0mqaTOu1e4.mp4/z0mqaTOu1e4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z0mqaTOu1e4.mp4/z0mqaTOu1e4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z0mqaTOu1e4.m3u8/z0mqaTOu1e4.m3u8"}, "duration": 254, "id": "z0mqaTOu1e4", "title": "More than Picasso's muse: Fran\u00e7oise Gilot", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nAt the age of 92, artist Fran\u00e7oise Gilot is brimming with creative energy and continues to paint every day.\u00a0Back in the 1940s, Gilot was Pablo Picasso\u2019s lover and muse, and a close affiliate with a generation of artists including Henri Matisse, Fernand Leger, and Georges Braque. In this interview from her New York studio, she talks about what her life was like at the centre of French modernism, and how she learned from her peers yet forged her own style even among the superstars of an art movement. As she puts it, \"you have to put the energy of your being into the painting.\u201d\nMost people are familiar with Picasso, but had you heard of Fran\u00e7oise Gilot before? Why do you think this is?\n", "path": "francoise-gilot/", "slug": "francoise-gilot", "kind": "Video", "video_id": "z0mqaTOu1e4", "keywords": "Tate", "youtube_id": "z0mqaTOu1e4", "readable_id": "francoise-gilot"}, "yqJB8XMXzE4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yqJB8XMXzE4.mp4/yqJB8XMXzE4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yqJB8XMXzE4.mp4/yqJB8XMXzE4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yqJB8XMXzE4.m3u8/yqJB8XMXzE4.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/digestion-mobilization-and-transport-of-fats-part-i/", "duration": 607, "id": "yqJB8XMXzE4", "title": "Digestion, Mobilization, and Transport of Fats - Part I", "format": "mp4", "description": "1D: How are fats digested, mobilized, and transported inside the body in the fed and fasted states?", "slug": "digestion-mobilization-and-transport-of-fats-part-i", "kind": "Video", "video_id": "yqJB8XMXzE4", "keywords": "", "youtube_id": "yqJB8XMXzE4", "readable_id": "digestion-mobilization-and-transport-of-fats-part-i"}, "Rq56-OJR964": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rq56-OJR964.mp4/Rq56-OJR964.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rq56-OJR964.mp4/Rq56-OJR964.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rq56-OJR964.m3u8/Rq56-OJR964.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/linear-models-2/", "duration": 337, "id": "Rq56-OJR964", "title": "Linear models example 2", "format": "mp4", "description": "Marbles and water in tank", "slug": "linear-models-2", "kind": "Video", "video_id": "Rq56-OJR964", "keywords": "", "youtube_id": "Rq56-OJR964", "readable_id": "linear-models-2"}, "MiAhPIUno1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MiAhPIUno1o.mp4/MiAhPIUno1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MiAhPIUno1o.mp4/MiAhPIUno1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MiAhPIUno1o.m3u8/MiAhPIUno1o.m3u8"}, "duration": 373, "id": "MiAhPIUno1o", "title": "The wet collodion process", "format": "mp4", "description": "The wet collodion photographic process produced a glass negative and a beautifully detailed print that was preferred over earlier techniques. This method thrived from the 1850s until about 1880. Love art? Follow us on Google+", "path": "khan/humanities/becoming-modern/early-photography/wet-collodion-process/", "slug": "wet-collodion-process", "kind": "Video", "video_id": "MiAhPIUno1o", "keywords": "", "youtube_id": "MiAhPIUno1o", "readable_id": "wet-collodion-process"}, "z0wg9ZPyL38": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z0wg9ZPyL38.mp4/z0wg9ZPyL38.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z0wg9ZPyL38.mp4/z0wg9ZPyL38.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z0wg9ZPyL38.m3u8/z0wg9ZPyL38.m3u8"}, "duration": 361, "id": "z0wg9ZPyL38", "title": "First degree price discrimination", "format": "mp4", "description": "Charging different consumers different amounts in an attempt to optimize economic profit", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/price-discrimination-tutorial/first-degree-price-discrimination/", "slug": "first-degree-price-discrimination", "kind": "Video", "video_id": "z0wg9ZPyL38", "keywords": "microeconomics", "youtube_id": "z0wg9ZPyL38", "readable_id": "first-degree-price-discrimination"}, "XHLgY7Z3cb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XHLgY7Z3cb8.mp4/XHLgY7Z3cb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XHLgY7Z3cb8.mp4/XHLgY7Z3cb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XHLgY7Z3cb8.m3u8/XHLgY7Z3cb8.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/rewriting-a-fraction-as-a-decimal/", "duration": 240, "id": "XHLgY7Z3cb8", "title": "Basic example of rewriting a fraction as a decimal", "format": "mp4", "description": "Learn how to rewrite a fraction as a decimal. The example in this video: 3/5 --> 0.6", "slug": "rewriting-a-fraction-as-a-decimal", "kind": "Video", "video_id": "XHLgY7Z3cb8", "keywords": "", "youtube_id": "XHLgY7Z3cb8", "readable_id": "rewriting-a-fraction-as-a-decimal"}, "1F7LAJEVp-U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1F7LAJEVp-U.mp4/1F7LAJEVp-U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1F7LAJEVp-U.mp4/1F7LAJEVp-U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1F7LAJEVp-U.m3u8/1F7LAJEVp-U.m3u8"}, "duration": 271, "id": "1F7LAJEVp-U", "title": "Graphing proportional relationships example", "format": "mp4", "description": "", "path": "graphing-proportional-relationships-example/", "slug": "graphing-proportional-relationships-example", "kind": "Video", "video_id": "1F7LAJEVp-U", "keywords": "", "youtube_id": "1F7LAJEVp-U", "readable_id": "graphing-proportional-relationships-example"}, "kiQ6MUQZHSs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kiQ6MUQZHSs.mp4/kiQ6MUQZHSs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kiQ6MUQZHSs.mp4/kiQ6MUQZHSs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kiQ6MUQZHSs.m3u8/kiQ6MUQZHSs.m3u8"}, "duration": 179, "id": "kiQ6MUQZHSs", "title": "Reading bar graphs", "format": "mp4", "description": "Reading Bar Graphs", "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/reading-bar-graphs/", "slug": "reading-bar-graphs", "kind": "Video", "video_id": "kiQ6MUQZHSs", "keywords": "u08_l1_t1_we2, Reading, Bar, Graphs", "youtube_id": "kiQ6MUQZHSs", "readable_id": "reading-bar-graphs"}, "-Jx6vyc_830": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-Jx6vyc_830.mp4/-Jx6vyc_830.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-Jx6vyc_830.mp4/-Jx6vyc_830.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-Jx6vyc_830.m3u8/-Jx6vyc_830.m3u8"}, "duration": 621, "id": "-Jx6vyc_830", "title": "GMAT: Math 20", "format": "mp4", "description": "106-109, pg. 166", "path": "khan/test-prep/gmat/problem-solving/gmat-math-20/", "slug": "gmat-math-20", "kind": "Video", "video_id": "-Jx6vyc_830", "keywords": "GMAT, Math, problem, solving", "youtube_id": "-Jx6vyc_830", "readable_id": "gmat-math-20"}, "gnyHsgTFXIY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gnyHsgTFXIY.mp4/gnyHsgTFXIY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gnyHsgTFXIY.mp4/gnyHsgTFXIY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gnyHsgTFXIY.m3u8/gnyHsgTFXIY.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/reading-bar-charts-2/", "duration": 90, "id": "gnyHsgTFXIY", "title": "Reading bar charts: comparing two sets of data", "format": "mp4", "description": "A bar chart is especially useful with comparing two sets of data. The difference in the bars give us a quick snapshot that allows us to draw some conclusions.", "slug": "reading-bar-charts-2", "kind": "Video", "video_id": "gnyHsgTFXIY", "keywords": "", "youtube_id": "gnyHsgTFXIY", "readable_id": "reading-bar-charts-2"}, "lG6NWLxDbNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lG6NWLxDbNo.mp4/lG6NWLxDbNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lG6NWLxDbNo.mp4/lG6NWLxDbNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lG6NWLxDbNo.m3u8/lG6NWLxDbNo.m3u8"}, "duration": 242, "id": "lG6NWLxDbNo", "title": "Oil paint in Venice", "format": "mp4", "description": "A review of fresco and tempera and the development of the use of\u00a0oil paint by artists in Venice.", "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/oil-paint-in-venice/", "slug": "oil-paint-in-venice", "kind": "Video", "video_id": "lG6NWLxDbNo", "keywords": "oil, paint, Venice, art, painting, Bellini", "youtube_id": "lG6NWLxDbNo", "readable_id": "oil-paint-in-venice"}, "eoJGBr-tJXo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eoJGBr-tJXo.mp4/eoJGBr-tJXo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eoJGBr-tJXo.mp4/eoJGBr-tJXo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eoJGBr-tJXo.m3u8/eoJGBr-tJXo.m3u8"}, "duration": 884, "id": "eoJGBr-tJXo", "title": "2D divergence theorem", "format": "mp4", "description": "Using Green's Theorem to establish a two dimensional version of the Divergence Theorem", "path": "khan/math/multivariable-calculus/line_integrals_topic/2d_divergence_theorem/2-d-divergence-theorem/", "slug": "2-d-divergence-theorem", "kind": "Video", "video_id": "eoJGBr-tJXo", "keywords": "Divergence, Theorem", "youtube_id": "eoJGBr-tJXo", "readable_id": "2-d-divergence-theorem"}, "Alhcv5d_XOs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Alhcv5d_XOs.mp4/Alhcv5d_XOs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Alhcv5d_XOs.mp4/Alhcv5d_XOs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Alhcv5d_XOs.m3u8/Alhcv5d_XOs.m3u8"}, "duration": 1058, "id": "Alhcv5d_XOs", "title": "More on linear independence", "format": "mp4", "description": "More examples determining linear dependence or independence.", "path": "khan/math/linear-algebra/vectors_and_spaces/linear_independence/more-on-linear-independence/", "slug": "more-on-linear-independence", "kind": "Video", "video_id": "Alhcv5d_XOs", "keywords": "Linear, Algebra, Vectors, span, combination, dependence, independence", "youtube_id": "Alhcv5d_XOs", "readable_id": "more-on-linear-independence"}, "tkzi8etP7no": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tkzi8etP7no.mp4/tkzi8etP7no.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tkzi8etP7no.mp4/tkzi8etP7no.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tkzi8etP7no.m3u8/tkzi8etP7no.m3u8"}, "path": "khan/science/organic-chemistry/stereochemistry-topic/optical-activity/optical-activity-i-theory/", "duration": 803, "id": "tkzi8etP7no", "title": "Optical activity I: Theory", "format": "mp4", "description": "Correction: Specific rotation is usually given without units. Therefore, I should have left off the degrees sign on the carvone enantiomers.", "slug": "optical-activity-i-theory", "kind": "Video", "video_id": "tkzi8etP7no", "keywords": "", "youtube_id": "tkzi8etP7no", "readable_id": "optical-activity-i-theory"}, "KDb3YEnM0WY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KDb3YEnM0WY.mp4/KDb3YEnM0WY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KDb3YEnM0WY.mp4/KDb3YEnM0WY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KDb3YEnM0WY.m3u8/KDb3YEnM0WY.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-essays/ss-admissions-essay-personal-identity/", "duration": 117, "id": "KDb3YEnM0WY", "title": "Student story: Admissions essay about personal identity", "format": "mp4", "description": "", "slug": "ss-admissions-essay-personal-identity", "kind": "Video", "video_id": "KDb3YEnM0WY", "keywords": "", "youtube_id": "KDb3YEnM0WY", "readable_id": "ss-admissions-essay-personal-identity"}, "OFNGpKGg9IQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OFNGpKGg9IQ.mp4/OFNGpKGg9IQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OFNGpKGg9IQ.mp4/OFNGpKGg9IQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OFNGpKGg9IQ.m3u8/OFNGpKGg9IQ.m3u8"}, "duration": 398, "id": "OFNGpKGg9IQ", "title": "Washer method rotating around non-axis", "format": "mp4", "description": "Washer method when rotating around a horizontal line that is not the x-axis", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/washer-method-rotating-around-non-axis/", "slug": "washer-method-rotating-around-non-axis", "kind": "Video", "video_id": "OFNGpKGg9IQ", "keywords": "", "youtube_id": "OFNGpKGg9IQ", "readable_id": "washer-method-rotating-around-non-axis"}, "WSLad3lN6Jc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WSLad3lN6Jc.mp4/WSLad3lN6Jc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WSLad3lN6Jc.mp4/WSLad3lN6Jc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WSLad3lN6Jc.m3u8/WSLad3lN6Jc.m3u8"}, "duration": 215, "id": "WSLad3lN6Jc", "title": "Conserving bronze: \"The Lamp with Erotes from Vani\"", "format": "mp4", "description": "Four well-preserved ancient bronze lamps were recently discovered in a rock-cut pit in the Republic of Georgia. Watch conservators study and clean the Lamp with Erotes from Vani. Love art? Follow us on Google+", "path": "lamp-with-erotes-from-vani/", "slug": "lamp-with-erotes-from-vani", "kind": "Video", "video_id": "WSLad3lN6Jc", "keywords": "", "youtube_id": "WSLad3lN6Jc", "readable_id": "lamp-with-erotes-from-vani"}, "Q4Z3W1RXh_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q4Z3W1RXh_g.mp4/Q4Z3W1RXh_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q4Z3W1RXh_g.mp4/Q4Z3W1RXh_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q4Z3W1RXh_g.m3u8/Q4Z3W1RXh_g.m3u8"}, "duration": 416, "id": "Q4Z3W1RXh_g", "title": "Gebelein Man: virtual autopsy, exploring a natural mummy from early Egypt", "format": "mp4", "description": "This man died more than five thousand years ago and was buried at the site of Gebelein, in Upper Egypt. The reconstruction of his grave illustrates the early Egyptian custom of placing the body in a contracted, foetal position, usually on the left side, with the head to the south, facing the west, the land of the dead where he would be reborn. Around him were all the things he might need for his afterlife, especially pottery to hold and serve food.\nBefore the pharaohs\n\nIn the Predynastic period (4400-3100 B.C.E.), the time before the pharaohs, the dead were buried in shallow graves cut into the desert sand. The graves were often lined with reed mats, making them like a bed, and the body was covered with linen or skins and more mats, like a blanket, before the grave was refilled and perhaps topped by a mound of dirt. Contact with the hot dry sand naturally preserved the bodies because the sand absorbed the water that constitutes approximately 75% by weight of the human body. Bacteria cannot breed without moisture and as a result, the bodies frequently did not decay, but simply dried out. The body of this man is remarkably well-preserved, even down to his finger-nails and hair, which has probably faded with time.\n\nChance discoveries of these sand-dried mummies (for example, when a grave was disturbed by animals or robbers), may have promoted the belief that physical preservation of the body was necessary for the afterlife. This may have led the later Egyptians to develop means of artificial mummification after the introduction of coffins and deeper graves separated the body from the natural drying effects of the sand.\n\nThe objects that surrounded Gebelein Man in his original burial are unknown. On display\u00a0is a selection of typical grave-goods from other graves of the middle Predynastic period (about 3500 B.C.E.), the time we believe he died. Attempts to date the body using Carbon 14 (the radiocarbon method) have so far been unsuccessful.\nHe has been in the British Museum collection for over 100 years, but it was not until 2012 that he was CT scanned for the first time. Detailed images created from the CT scans' high resolution X-rays are allowing us to look inside his body and learn about his life and his death in ways never before possible. \u00a9 Trustees of the British Museum", "path": "virtual-autopsy/", "slug": "virtual-autopsy", "kind": "Video", "video_id": "Q4Z3W1RXh_g", "keywords": "British Museum", "youtube_id": "Q4Z3W1RXh_g", "readable_id": "virtual-autopsy"}, "dWY25vb1ZB0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dWY25vb1ZB0.mp4/dWY25vb1ZB0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dWY25vb1ZB0.mp4/dWY25vb1ZB0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dWY25vb1ZB0.m3u8/dWY25vb1ZB0.m3u8"}, "duration": 360, "id": "dWY25vb1ZB0", "title": "Convex parabolic mirrors", "format": "mp4", "description": "Convex Parabolic Mirrors", "path": "khan/test-prep/mcat/physical-processes/spherical-mirrors/convex-parabolic-mirrors/", "slug": "convex-parabolic-mirrors", "kind": "Video", "video_id": "dWY25vb1ZB0", "keywords": "Convex, Parabolic, Mirrors, optics", "youtube_id": "dWY25vb1ZB0", "readable_id": "convex-parabolic-mirrors"}, "bIKmw0aTmYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bIKmw0aTmYc.mp4/bIKmw0aTmYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bIKmw0aTmYc.mp4/bIKmw0aTmYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bIKmw0aTmYc.m3u8/bIKmw0aTmYc.m3u8"}, "duration": 238, "id": "bIKmw0aTmYc", "title": "Introduction to ratios", "format": "mp4", "description": "Learn how to find the ratio between two things. In this video, we find the ratio of apples to oranges.", "path": "ratios-intro/", "slug": "ratios-intro", "kind": "Video", "video_id": "bIKmw0aTmYc", "keywords": "", "youtube_id": "bIKmw0aTmYc", "readable_id": "ratios-intro"}, "Zm0KaIw-35k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zm0KaIw-35k.mp4/Zm0KaIw-35k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zm0KaIw-35k.mp4/Zm0KaIw-35k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zm0KaIw-35k.m3u8/Zm0KaIw-35k.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/rates_tutorial/finding-unit-rates/", "duration": 151, "id": "Zm0KaIw-35k", "title": "Solving unit rates problem", "format": "mp4", "description": "Finding a unit rate is a skill often required in real life. How fast is that plane flying? How many lawns can you mow in an afternoon? You see, with our knowledge of ratios and fractions, we can now solve unit rates problems like this.", "slug": "finding-unit-rates", "kind": "Video", "video_id": "Zm0KaIw-35k", "keywords": "U04_L1_T1_we3, Finding, Unit, Rates, CC_6_RP_2, CC_6_RP_3, CC_7_RP_2_b", "youtube_id": "Zm0KaIw-35k", "readable_id": "finding-unit-rates"}, "ld8kHvz1yN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ld8kHvz1yN4.mp4/ld8kHvz1yN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ld8kHvz1yN4.mp4/ld8kHvz1yN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ld8kHvz1yN4.m3u8/ld8kHvz1yN4.m3u8"}, "path": "khan/test-prep/ap-art-history/global-prehistory-ap/paleolithic-mesolithic-neolithic/jade-cong/", "duration": 311, "id": "ld8kHvz1yN4", "title": "Jade Cong", "format": "mp4", "description": "Jade Cong, c. 2500 B.C.E., Liangzhu culture, Neolithic period, China (British Museum)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "jade-cong", "kind": "Video", "video_id": "ld8kHvz1yN4", "keywords": "jade cong neolithic", "youtube_id": "ld8kHvz1yN4", "readable_id": "jade-cong"}, "03fkmtPDhcE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/03fkmtPDhcE.mp4/03fkmtPDhcE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/03fkmtPDhcE.mp4/03fkmtPDhcE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/03fkmtPDhcE.m3u8/03fkmtPDhcE.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/lemonade-stand-competitive-markets/", "duration": 97, "id": "03fkmtPDhcE", "title": "DLab: Lemonade stand simulation", "format": "mp4", "description": "", "slug": "lemonade-stand-competitive-markets", "kind": "Video", "video_id": "03fkmtPDhcE", "keywords": "", "youtube_id": "03fkmtPDhcE", "readable_id": "lemonade-stand-competitive-markets"}, "IXLC14sWqNM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IXLC14sWqNM.mp4/IXLC14sWqNM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IXLC14sWqNM.mp4/IXLC14sWqNM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IXLC14sWqNM.m3u8/IXLC14sWqNM.m3u8"}, "duration": 33, "id": "IXLC14sWqNM", "title": "Access the Khan Academy Coach Report Demo", "format": "mp4", "description": "Learn how to access our Coach Report Demo with this video. \u00a0Link to coach report demo: \u00a0khanacademy.org/coach/demo.", "path": "access-the-khan-academy-coach-report-demo/", "slug": "access-the-khan-academy-coach-report-demo", "kind": "Video", "video_id": "IXLC14sWqNM", "keywords": "", "youtube_id": "IXLC14sWqNM", "readable_id": "access-the-khan-academy-coach-report-demo"}, "Phu1yteO-HU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Phu1yteO-HU.mp4/Phu1yteO-HU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Phu1yteO-HU.mp4/Phu1yteO-HU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Phu1yteO-HU.m3u8/Phu1yteO-HU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/dissociative-shock/", "duration": 739, "id": "Phu1yteO-HU", "title": "Dissociative shock", "format": "mp4", "description": "", "slug": "dissociative-shock", "kind": "Video", "video_id": "Phu1yteO-HU", "keywords": "", "youtube_id": "Phu1yteO-HU", "readable_id": "dissociative-shock"}, "NqbkvEK46xM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NqbkvEK46xM.mp4/NqbkvEK46xM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NqbkvEK46xM.mp4/NqbkvEK46xM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NqbkvEK46xM.m3u8/NqbkvEK46xM.m3u8"}, "duration": 178, "id": "NqbkvEK46xM", "title": "Converting Fahrenheit to Celsius", "format": "mp4", "description": "Converting Fahrenheit to Celsius", "path": "khan/math/pre-algebra/rates-and-ratios/farenheit-celsius-conversion/converting-farenheit-to-celsius/", "slug": "converting-farenheit-to-celsius", "kind": "Video", "video_id": "NqbkvEK46xM", "keywords": "Converting, Fahrenheit, to, Celsius, CC_6_RP_3_d", "youtube_id": "NqbkvEK46xM", "readable_id": "converting-farenheit-to-celsius"}, "765X_PAxhAw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/765X_PAxhAw.mp4/765X_PAxhAw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/765X_PAxhAw.mp4/765X_PAxhAw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/765X_PAxhAw.m3u8/765X_PAxhAw.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivatives-inverse-functions/derivative-natural-logarithm/", "duration": 188, "id": "765X_PAxhAw", "title": "Derivative of natural logarithm", "format": "mp4", "description": "", "slug": "derivative-natural-logarithm", "kind": "Video", "video_id": "765X_PAxhAw", "keywords": "", "youtube_id": "765X_PAxhAw", "readable_id": "derivative-natural-logarithm"}, "1m9p9iubMLU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1m9p9iubMLU.mp4/1m9p9iubMLU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1m9p9iubMLU.mp4/1m9p9iubMLU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1m9p9iubMLU.m3u8/1m9p9iubMLU.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-unit-circle/unit-circle-definition-of-trig-functions-1/", "duration": 544, "id": "1m9p9iubMLU", "title": "Introduction to the unit circle", "format": "mp4", "description": "Extending SOH CAH TOA so that we can define trig functions for a broader class of angles", "slug": "unit-circle-definition-of-trig-functions-1", "kind": "Video", "video_id": "1m9p9iubMLU", "keywords": "unit circle, trig, sin, cos, tan", "youtube_id": "1m9p9iubMLU", "readable_id": "unit-circle-definition-of-trig-functions-1"}, "g7wX-feyWac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g7wX-feyWac.mp4/g7wX-feyWac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g7wX-feyWac.mp4/g7wX-feyWac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g7wX-feyWac.m3u8/g7wX-feyWac.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-aug-5-2014/", "duration": 72, "id": "g7wX-feyWac", "title": "A softer trek to mount sharp", "format": "mp4", "description": "On the second anniversary of landing, NASA's Curiosity rover on Mars is preparing to navigate through a series of sandy valleys on its way to Mount Sharp. The base of Mount Sharp sits 3 kilometers (1.8 miles) from the rover's current position.", "slug": "curiosity-rover-report-aug-5-2014", "kind": "Video", "video_id": "g7wX-feyWac", "keywords": "", "youtube_id": "g7wX-feyWac", "readable_id": "curiosity-rover-report-aug-5-2014"}, "a-LoetNvu0U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a-LoetNvu0U.mp4/a-LoetNvu0U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a-LoetNvu0U.mp4/a-LoetNvu0U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a-LoetNvu0U.m3u8/a-LoetNvu0U.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-12/", "duration": 47, "id": "a-LoetNvu0U", "title": "11 Bacteria in a dish", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-12", "kind": "Video", "video_id": "a-LoetNvu0U", "keywords": "", "youtube_id": "a-LoetNvu0U", "readable_id": "sat-2010-may-6-12"}, "BINElq3DFkg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BINElq3DFkg.mp4/BINElq3DFkg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BINElq3DFkg.mp4/BINElq3DFkg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BINElq3DFkg.m3u8/BINElq3DFkg.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/comparing-decimals-pre-alg/another-ordering-decimals-example/", "duration": 88, "id": "BINElq3DFkg", "title": "Comparing decimals: ordering from smallest to biggest", "format": "mp4", "description": "Let's move the decimals around and reorder them from least to greatest. Hint: look at one place value and then compare it to the decimals before moving on to the next place value.", "slug": "another-ordering-decimals-example", "kind": "Video", "video_id": "BINElq3DFkg", "keywords": "", "youtube_id": "BINElq3DFkg", "readable_id": "another-ordering-decimals-example"}, "rgqFXkLAc-4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rgqFXkLAc-4.mp4/rgqFXkLAc-4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rgqFXkLAc-4.mp4/rgqFXkLAc-4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rgqFXkLAc-4.m3u8/rgqFXkLAc-4.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-15-more-on-the-fed-funds-rate/", "duration": 736, "id": "rgqFXkLAc-4", "title": "Banking 15: More on the Fed funds rate", "format": "mp4", "description": "More on the mechanics of the Federal Funds rate and how it increases the money supply.", "slug": "banking-15-more-on-the-fed-funds-rate", "kind": "Video", "video_id": "rgqFXkLAc-4", "keywords": "federal, reserve, funds, money, suplly, m0, m1, open, market, operations", "youtube_id": "rgqFXkLAc-4", "readable_id": "banking-15-more-on-the-fed-funds-rate"}, "zz4KbvF_X-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zz4KbvF_X-0.mp4/zz4KbvF_X-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zz4KbvF_X-0.mp4/zz4KbvF_X-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zz4KbvF_X-0.m3u8/zz4KbvF_X-0.m3u8"}, "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/specific-heat-heat-of-fusion-and-vaporization/", "duration": 889, "id": "zz4KbvF_X-0", "title": "Specific heat, heat of fusion and vaporization", "format": "mp4", "description": "Specifict heat and phase changes: Calculating how much heat is needed to convert 200g of ice at -10C to 110 degree steam.", "slug": "specific-heat-heat-of-fusion-and-vaporization", "kind": "Video", "video_id": "zz4KbvF_X-0", "keywords": "chemistry, specific, heat, phase, changes", "youtube_id": "zz4KbvF_X-0", "readable_id": "specific-heat-heat-of-fusion-and-vaporization"}, "lnf5ywUA2Y4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lnf5ywUA2Y4.mp4/lnf5ywUA2Y4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lnf5ywUA2Y4.mp4/lnf5ywUA2Y4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lnf5ywUA2Y4.m3u8/lnf5ywUA2Y4.m3u8"}, "path": "khan/college-admissions/paying-for-college/introduction-pfc/overview-paying-for-college/", "duration": 170, "id": "lnf5ywUA2Y4", "title": "Overview: Paying for college", "format": "mp4", "description": "", "slug": "overview-paying-for-college", "kind": "Video", "video_id": "lnf5ywUA2Y4", "keywords": "", "youtube_id": "lnf5ywUA2Y4", "readable_id": "overview-paying-for-college"}, "QIAI6KOwKII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QIAI6KOwKII.mp4/QIAI6KOwKII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QIAI6KOwKII.mp4/QIAI6KOwKII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QIAI6KOwKII.m3u8/QIAI6KOwKII.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/what-is-a-stroke/", "duration": 688, "id": "QIAI6KOwKII", "title": "What is a stroke?", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-a-stroke", "kind": "Video", "video_id": "QIAI6KOwKII", "keywords": "", "youtube_id": "QIAI6KOwKII", "readable_id": "what-is-a-stroke"}, "6Ozz3J-LRrY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Ozz3J-LRrY.mp4/6Ozz3J-LRrY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Ozz3J-LRrY.mp4/6Ozz3J-LRrY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Ozz3J-LRrY.m3u8/6Ozz3J-LRrY.m3u8"}, "duration": 333, "id": "6Ozz3J-LRrY", "title": "Shell method for rotating around vertical line", "format": "mp4", "description": "Introducing the shell method for rotation around a vertical line.", "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/shell-method-for-rotating-around-vertical-line/", "slug": "shell-method-for-rotating-around-vertical-line", "kind": "Video", "video_id": "6Ozz3J-LRrY", "keywords": "", "youtube_id": "6Ozz3J-LRrY", "readable_id": "shell-method-for-rotating-around-vertical-line"}, "_9x2cqO7-Ig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_9x2cqO7-Ig.mp4/_9x2cqO7-Ig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_9x2cqO7-Ig.mp4/_9x2cqO7-Ig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_9x2cqO7-Ig.m3u8/_9x2cqO7-Ig.m3u8"}, "duration": 608, "id": "_9x2cqO7-Ig", "title": "Constructing a unit normal vector to a curve", "format": "mp4", "description": "Figuring out a unit normal vector at any point along a curve defined by a position vector function", "path": "khan/math/multivariable-calculus/line_integrals_topic/2d_divergence_theorem/constructing-a-unit-normal-vector-to-a-curve/", "slug": "constructing-a-unit-normal-vector-to-a-curve", "kind": "Video", "video_id": "_9x2cqO7-Ig", "keywords": "vector, calculus, normal, tanget, unti", "youtube_id": "_9x2cqO7-Ig", "readable_id": "constructing-a-unit-normal-vector-to-a-curve"}, "aASSUcUSBro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aASSUcUSBro.mp4/aASSUcUSBro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aASSUcUSBro.mp4/aASSUcUSBro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aASSUcUSBro.m3u8/aASSUcUSBro.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/upper-motor-neurons/", "duration": 821, "id": "aASSUcUSBro", "title": "Upper motor neurons", "format": "mp4", "description": "", "slug": "upper-motor-neurons", "kind": "Video", "video_id": "aASSUcUSBro", "keywords": "MCAT", "youtube_id": "aASSUcUSBro", "readable_id": "upper-motor-neurons"}, "nVPrWz8Jfgo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nVPrWz8Jfgo.mp4/nVPrWz8Jfgo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nVPrWz8Jfgo.mp4/nVPrWz8Jfgo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nVPrWz8Jfgo.m3u8/nVPrWz8Jfgo.m3u8"}, "duration": 190, "id": "nVPrWz8Jfgo", "title": "Specific gravity", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/stoichiometry/specific-gravity/", "slug": "specific-gravity", "kind": "Video", "video_id": "nVPrWz8Jfgo", "keywords": "", "youtube_id": "nVPrWz8Jfgo", "readable_id": "specific-gravity"}, "4fBXIcO0It4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4fBXIcO0It4.mp4/4fBXIcO0It4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4fBXIcO0It4.mp4/4fBXIcO0It4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4fBXIcO0It4.m3u8/4fBXIcO0It4.m3u8"}, "duration": 144, "id": "4fBXIcO0It4", "title": "Compound events example with tree diagram", "format": "mp4", "description": "", "path": "khan/math/precalculus/prob_comb/independent_events_precalc/compound-events-tree-diagram/", "slug": "compound-events-tree-diagram", "kind": "Video", "video_id": "4fBXIcO0It4", "keywords": "", "youtube_id": "4fBXIcO0It4", "readable_id": "compound-events-tree-diagram"}, "OelluIKIkCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OelluIKIkCY.mp4/OelluIKIkCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OelluIKIkCY.mp4/OelluIKIkCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OelluIKIkCY.m3u8/OelluIKIkCY.m3u8"}, "duration": 431, "id": "OelluIKIkCY", "title": "Shell method with two functions of y", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/shell-method-with-two-functions-of-y/", "slug": "shell-method-with-two-functions-of-y", "kind": "Video", "video_id": "OelluIKIkCY", "keywords": "", "youtube_id": "OelluIKIkCY", "readable_id": "shell-method-with-two-functions-of-y"}, "5S03uylNn-Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5S03uylNn-Q.mp4/5S03uylNn-Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5S03uylNn-Q.mp4/5S03uylNn-Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5S03uylNn-Q.m3u8/5S03uylNn-Q.m3u8"}, "duration": 559, "id": "5S03uylNn-Q", "title": "IIT JEE trace and determinant", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 43 Trace and Determinant", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-trace-and-determinant/", "slug": "iit-jee-trace-and-determinant", "kind": "Video", "video_id": "5S03uylNn-Q", "keywords": "2010, IIT, JEE, Paper, Problem, 43, Trace, and, Determinant", "youtube_id": "5S03uylNn-Q", "readable_id": "iit-jee-trace-and-determinant"}, "LXaPt9i9hqk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LXaPt9i9hqk.mp4/LXaPt9i9hqk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LXaPt9i9hqk.mp4/LXaPt9i9hqk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LXaPt9i9hqk.m3u8/LXaPt9i9hqk.m3u8"}, "duration": 532, "id": "LXaPt9i9hqk", "title": "Cell membrane overview and fluid mosaic model", "format": "mp4", "description": "Learn about the major components that make up our cell membrane and the fluid mosaic model. By William Tsai. ", "path": "khan/test-prep/mcat/cells/cell-membrane-overview/cell-membrane-overview-fluid-mosaic-model/", "slug": "cell-membrane-overview-fluid-mosaic-model", "kind": "Video", "video_id": "LXaPt9i9hqk", "keywords": "", "youtube_id": "LXaPt9i9hqk", "readable_id": "cell-membrane-overview-fluid-mosaic-model"}, "H-E5rlpCVu4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H-E5rlpCVu4.mp4/H-E5rlpCVu4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H-E5rlpCVu4.mp4/H-E5rlpCVu4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H-E5rlpCVu4.m3u8/H-E5rlpCVu4.m3u8"}, "duration": 427, "id": "H-E5rlpCVu4", "title": "Angles formed by parallel lines and transversals", "format": "mp4", "description": "Parallel lines, transversal lines, corresponding angles", "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/angles-formed-by-parallel-lines-and-transversals/", "slug": "angles-formed-by-parallel-lines-and-transversals", "kind": "Video", "video_id": "H-E5rlpCVu4", "keywords": "alternate, interior, angles, exterior", "youtube_id": "H-E5rlpCVu4", "readable_id": "angles-formed-by-parallel-lines-and-transversals"}, "aUUi1DrghQc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aUUi1DrghQc.mp4/aUUi1DrghQc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aUUi1DrghQc.mp4/aUUi1DrghQc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aUUi1DrghQc.m3u8/aUUi1DrghQc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-asthma/asthma-shortterm-treatment/", "duration": 309, "id": "aUUi1DrghQc", "title": "Asthma shortterm treatments", "format": "mp4", "description": "", "slug": "asthma-shortterm-treatment", "kind": "Video", "video_id": "aUUi1DrghQc", "keywords": "", "youtube_id": "aUUi1DrghQc", "readable_id": "asthma-shortterm-treatment"}, "0WiTaBI82Mc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0WiTaBI82Mc.mp4/0WiTaBI82Mc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0WiTaBI82Mc.mp4/0WiTaBI82Mc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0WiTaBI82Mc.m3u8/0WiTaBI82Mc.m3u8"}, "duration": 614, "id": "0WiTaBI82Mc", "title": "Bitcoin: Cryptographic hash functions", "format": "mp4", "description": "What cryptographic hash functions are and what properties are desired of them.", "path": "bitcoin-cryptographic-hash-function/", "slug": "bitcoin-cryptographic-hash-function", "kind": "Video", "video_id": "0WiTaBI82Mc", "keywords": "bitcoin, currency", "youtube_id": "0WiTaBI82Mc", "readable_id": "bitcoin-cryptographic-hash-function"}, "iATjsfAX8yc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iATjsfAX8yc.mp4/iATjsfAX8yc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iATjsfAX8yc.mp4/iATjsfAX8yc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iATjsfAX8yc.m3u8/iATjsfAX8yc.m3u8"}, "path": "khan/math/geometry/analytic-geometry-topic/parallel-and-perpendicular/distance-between-a-point-and-a-line/", "duration": 332, "id": "iATjsfAX8yc", "title": "Distance between a point and a line", "format": "mp4", "description": "", "slug": "distance-between-a-point-and-a-line", "kind": "Video", "video_id": "iATjsfAX8yc", "keywords": "", "youtube_id": "iATjsfAX8yc", "readable_id": "distance-between-a-point-and-a-line"}, "K0sjZ5nqQ7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K0sjZ5nqQ7g.mp4/K0sjZ5nqQ7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K0sjZ5nqQ7g.mp4/K0sjZ5nqQ7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K0sjZ5nqQ7g.m3u8/K0sjZ5nqQ7g.m3u8"}, "duration": 563, "id": "K0sjZ5nqQ7g", "title": "Convex lenses", "format": "mp4", "description": "Convex Lenses", "path": "khan/test-prep/mcat/physical-processes/thin-lenses/convex-lenses/", "slug": "convex-lenses", "kind": "Video", "video_id": "K0sjZ5nqQ7g", "keywords": "Convex, Lenses, optics", "youtube_id": "K0sjZ5nqQ7g", "readable_id": "convex-lenses"}, "EATkbpqlxvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EATkbpqlxvc.mp4/EATkbpqlxvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EATkbpqlxvc.mp4/EATkbpqlxvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EATkbpqlxvc.m3u8/EATkbpqlxvc.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/what-is-coronary-artery-disease/", "duration": 819, "id": "EATkbpqlxvc", "title": "What is coronary artery disease?", "format": "mp4", "description": "", "slug": "what-is-coronary-artery-disease", "kind": "Video", "video_id": "EATkbpqlxvc", "keywords": "", "youtube_id": "EATkbpqlxvc", "readable_id": "what-is-coronary-artery-disease"}, "O3A47Il5h1A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O3A47Il5h1A.mp4/O3A47Il5h1A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O3A47Il5h1A.mp4/O3A47Il5h1A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O3A47Il5h1A.m3u8/O3A47Il5h1A.m3u8"}, "duration": 360, "id": "O3A47Il5h1A", "title": "Spotting salty foods", "format": "mp4", "description": "Find out how much sodium is in some common foods and how you can maintain a low sodium diet. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/healthcare-misc/spotting-salty-foods/", "slug": "spotting-salty-foods", "kind": "Video", "video_id": "O3A47Il5h1A", "keywords": "", "youtube_id": "O3A47Il5h1A", "readable_id": "spotting-salty-foods"}, "eji8zKa7H7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eji8zKa7H7s.mp4/eji8zKa7H7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eji8zKa7H7s.mp4/eji8zKa7H7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eji8zKa7H7s.m3u8/eji8zKa7H7s.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/thin-lenses/diopters-aberration-and-the-human-eye/", "duration": 777, "id": "eji8zKa7H7s", "title": "Diopters, Aberration, and the Human Eye", "format": "mp4", "description": "", "slug": "diopters-aberration-and-the-human-eye", "kind": "Video", "video_id": "eji8zKa7H7s", "keywords": "", "youtube_id": "eji8zKa7H7s", "readable_id": "diopters-aberration-and-the-human-eye"}, "BfVjTOjvI30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BfVjTOjvI30.mp4/BfVjTOjvI30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BfVjTOjvI30.mp4/BfVjTOjvI30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BfVjTOjvI30.m3u8/BfVjTOjvI30.m3u8"}, "duration": 513, "id": "BfVjTOjvI30", "title": "Showing relation between basis cols and pivot cols", "format": "mp4", "description": "Showing that linear independence of pivot columns implies linear independence of the corresponding columns in the original equation", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/showing-relation-between-basis-cols-and-pivot-cols/", "slug": "showing-relation-between-basis-cols-and-pivot-cols", "kind": "Video", "video_id": "BfVjTOjvI30", "keywords": "column, space, matrix, dimension, rank", "youtube_id": "BfVjTOjvI30", "readable_id": "showing-relation-between-basis-cols-and-pivot-cols"}, "DseIYQdjzgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DseIYQdjzgE.mp4/DseIYQdjzgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DseIYQdjzgE.mp4/DseIYQdjzgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DseIYQdjzgE.m3u8/DseIYQdjzgE.m3u8"}, "path": "khan/test-prep/ap-art-history/global-contemporary/xubing-book/", "duration": 303, "id": "DseIYQdjzgE", "title": "Xu Bing, Book from the Sky", "format": "mp4", "description": "Xu Bing, Book from the Sky, c. 1987-91, hand-printed books and ceiling and wall scrolls printed from wood letterpress type; ink on paper, each book, open: 18 1/8 \u00d7 20 inches / 46 \u00d7 51 cm; each of three ceiling scrolls 38 inches \u00d7 c. 114 feet 9-7/8 inches / 96.5 \u00d7 3500 cm; each wall scroll 9 feet 2-1/4 inches \u00d7 39-3/8 inches / 280 \u00d7 100 cm (installation at the Metropolitan Museum of Art, 2014), collection of the artist, \u00a9 Xu Bing\nSpeakers: Allison Young and Steven Zucker", "slug": "xubing-book", "kind": "Video", "video_id": "DseIYQdjzgE", "keywords": "Xu Bing, Book from the Sky, print, letterpress, ink, paper, book, scrolls", "youtube_id": "DseIYQdjzgE", "readable_id": "xubing-book"}, "BTNarhvGX88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BTNarhvGX88.mp4/BTNarhvGX88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BTNarhvGX88.mp4/BTNarhvGX88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BTNarhvGX88.m3u8/BTNarhvGX88.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-13-open-market-operations/", "duration": 748, "id": "BTNarhvGX88", "title": "Banking 13: Open market operations", "format": "mp4", "description": "Tools of the Central Bank to increase the money supply.", "slug": "banking-13-open-market-operations", "kind": "Video", "video_id": "BTNarhvGX88", "keywords": "Open, market, reserve, requirement, money, supply, m0, m1", "youtube_id": "BTNarhvGX88", "readable_id": "banking-13-open-market-operations"}, "6UqtgH_Zy1Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6UqtgH_Zy1Y.mp4/6UqtgH_Zy1Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6UqtgH_Zy1Y.mp4/6UqtgH_Zy1Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6UqtgH_Zy1Y.m3u8/6UqtgH_Zy1Y.m3u8"}, "duration": 700, "id": "6UqtgH_Zy1Y", "title": "Endoplasmic reticulum and Golgi bodies", "format": "mp4", "description": "", "path": "khan/science/biology/cellular-molecular-biology/cell-division/endoplasmic-reticulum-and-golgi-bodies/", "slug": "endoplasmic-reticulum-and-golgi-bodies", "kind": "Video", "video_id": "6UqtgH_Zy1Y", "keywords": "", "youtube_id": "6UqtgH_Zy1Y", "readable_id": "endoplasmic-reticulum-and-golgi-bodies"}, "8jFxkEQacVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8jFxkEQacVA.mp4/8jFxkEQacVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8jFxkEQacVA.mp4/8jFxkEQacVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8jFxkEQacVA.m3u8/8jFxkEQacVA.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/northern-qi/bodhisattva-probably-avalokiteshvara-guanyin-northern-qi-dynasty-c-550-60/", "duration": 467, "id": "8jFxkEQacVA", "title": "Bodhisattva", "format": "mp4", "description": "Bodhisattva, probably Avalokiteshvara (Guanyin), Northern Qi dynasty, c. 550-60, Shanxi Province, China, sandstone with pigments, 13-3/4 feet / 419.1 cm high (Metropolitan Museum of Art, New York)", "slug": "bodhisattva-probably-avalokiteshvara-guanyin-northern-qi-dynasty-c-550-60", "kind": "Video", "video_id": "8jFxkEQacVA", "keywords": "Bodhisattva, Avalokiteshvara, Guanyin, Northern Qi, 550, 560, Shanxi, China, sandstone, Metropolitan Museum, New York, Sculpture, Monumental, Buddhist, Google Art Project, Khan Academy, Smarthistory, OER, Art History, Non-Western, art", "youtube_id": "8jFxkEQacVA", "readable_id": "bodhisattva-probably-avalokiteshvara-guanyin-northern-qi-dynasty-c-550-60"}, "JLTde8PxhQ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JLTde8PxhQ8.mp4/JLTde8PxhQ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JLTde8PxhQ8.mp4/JLTde8PxhQ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JLTde8PxhQ8.m3u8/JLTde8PxhQ8.m3u8"}, "path": "khan/partner-content/exploratorium/sound-explo/vocal-visualizer/vocal-visualizer-whats-going-on/", "duration": 116, "id": "JLTde8PxhQ8", "title": "What\u2019s Going On: Transforming vibrating air molecules into patterns you can see", "format": "mp4", "description": "What\u2019s the science? This activity transforms the vibrating air molecules from your voice into Lissajous patterns, allowing you to visualize harmonic motions and resonant vibration modes.", "slug": "vocal-visualizer-whats-going-on", "kind": "Video", "video_id": "JLTde8PxhQ8", "keywords": "", "youtube_id": "JLTde8PxhQ8", "readable_id": "vocal-visualizer-whats-going-on"}, "pMMRE4Q2FGk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pMMRE4Q2FGk.mp4/pMMRE4Q2FGk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pMMRE4Q2FGk.mp4/pMMRE4Q2FGk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pMMRE4Q2FGk.m3u8/pMMRE4Q2FGk.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/memory/information-processing-model-sensory-working-and-long-term-memory/", "duration": 454, "id": "pMMRE4Q2FGk", "title": "Information processing model: Sensory, working, and long term memory", "format": "mp4", "description": "Learn about the information processing model of human memory.", "slug": "information-processing-model-sensory-working-and-long-term-memory", "kind": "Video", "video_id": "pMMRE4Q2FGk", "keywords": "", "youtube_id": "pMMRE4Q2FGk", "readable_id": "information-processing-model-sensory-working-and-long-term-memory"}, "otzNXFPg1j0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/otzNXFPg1j0.mp4/otzNXFPg1j0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/otzNXFPg1j0.mp4/otzNXFPg1j0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/otzNXFPg1j0.m3u8/otzNXFPg1j0.m3u8"}, "duration": 143, "id": "otzNXFPg1j0", "title": "\"Self-Portrait with Cropped Hair\" by Frida Kahlo, 1940 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how she teaches \"Self-Portrait with Cropped Hair\" by Frida Kahlo, 1940.\u00a0Visit MoMA Learning for more teaching and learning resources.\u00a0", "path": "teaching-kahlo/", "slug": "teaching-kahlo", "kind": "Video", "video_id": "otzNXFPg1j0", "keywords": "", "youtube_id": "otzNXFPg1j0", "readable_id": "teaching-kahlo"}, "kzpDXYJXNy0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kzpDXYJXNy0.mp4/kzpDXYJXNy0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kzpDXYJXNy0.mp4/kzpDXYJXNy0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kzpDXYJXNy0.m3u8/kzpDXYJXNy0.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/denying-the-antecedent/", "duration": 217, "id": "kzpDXYJXNy0", "title": "Fallacies: Denying the antecedent", "format": "mp4", "description": "In this video, Matthew C. Harris explains the fallacy of denying the antecedent, the formal fallacy that arises from inferring the inverse of a conditional statement. He also explains why graduate students might also be humans.\n\nSpeaker: Matthew C. Harris", "slug": "denying-the-antecedent", "kind": "Video", "video_id": "kzpDXYJXNy0", "keywords": "", "youtube_id": "kzpDXYJXNy0", "readable_id": "denying-the-antecedent"}, "lt3nPxVTC5M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lt3nPxVTC5M.mp4/lt3nPxVTC5M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lt3nPxVTC5M.mp4/lt3nPxVTC5M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lt3nPxVTC5M.m3u8/lt3nPxVTC5M.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/preterm-labor/", "duration": 721, "id": "lt3nPxVTC5M", "title": "Preterm labor", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "preterm-labor", "kind": "Video", "video_id": "lt3nPxVTC5M", "keywords": "", "youtube_id": "lt3nPxVTC5M", "readable_id": "preterm-labor"}, "ZJdVCIljBVI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZJdVCIljBVI.mp4/ZJdVCIljBVI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZJdVCIljBVI.mp4/ZJdVCIljBVI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZJdVCIljBVI.m3u8/ZJdVCIljBVI.m3u8"}, "duration": 61, "id": "ZJdVCIljBVI", "title": "KA in Marsing (2014)", "format": "mp4", "description": "Learn how one small town in Idaho is using Khan Acacdemy to transform math education.", "path": "marsing/", "slug": "marsing", "kind": "Video", "video_id": "ZJdVCIljBVI", "keywords": "", "youtube_id": "ZJdVCIljBVI", "readable_id": "marsing"}, "BGIkU1yzBNM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BGIkU1yzBNM.mp4/BGIkU1yzBNM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BGIkU1yzBNM.mp4/BGIkU1yzBNM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BGIkU1yzBNM.m3u8/BGIkU1yzBNM.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/arterial-elastance-ea-and-afterload/", "duration": 573, "id": "BGIkU1yzBNM", "title": "Arterial elastance (Ea) and afterload", "format": "mp4", "description": "First, learn the difference between arterial elastance (Ea) and afterload. Then, understand how Ea is affected by changes in afterload, and in turn, how the PV loop can shift. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "arterial-elastance-ea-and-afterload", "kind": "Video", "video_id": "BGIkU1yzBNM", "keywords": "", "youtube_id": "BGIkU1yzBNM", "readable_id": "arterial-elastance-ea-and-afterload"}, "VMRuR1imeE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VMRuR1imeE0.mp4/VMRuR1imeE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VMRuR1imeE0.mp4/VMRuR1imeE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VMRuR1imeE0.m3u8/VMRuR1imeE0.m3u8"}, "duration": 449, "id": "VMRuR1imeE0", "title": "U.S. Supreme Court Justice Anthony Kennedy on civil liberties and privacy", "format": "mp4", "description": "U.S. Supreme Court Justice Anthony Kennedy discusses freedom, liberty, autonomy and personal dignity and the case Wooley v. Maynard, and technology. \u00a0\nU.S. Supreme Court Justice Anthony Kennedy in conversation with Elliot Gerson of the Aspen Institute.\n", "path": "us-supreme-court-kennedy/", "slug": "us-supreme-court-kennedy", "kind": "Video", "video_id": "VMRuR1imeE0", "keywords": "", "youtube_id": "VMRuR1imeE0", "readable_id": "us-supreme-court-kennedy"}, "lCRePFf4zNs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lCRePFf4zNs.mp4/lCRePFf4zNs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lCRePFf4zNs.mp4/lCRePFf4zNs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lCRePFf4zNs.m3u8/lCRePFf4zNs.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/acute-leukemias/", "duration": 582, "id": "lCRePFf4zNs", "title": "Acute leukemia", "format": "mp4", "description": "Acute leukemias affect specialized blood cells at the most immature stage in their growth. Acute lymphoblastic leukemias (ALL) are the most common cancer in children and is often associated with people who have down syndrome. Learn about B-cell ALL and T-cell ALL, as well as the different acute myeloid leukemias.", "slug": "acute-leukemias", "kind": "Video", "video_id": "lCRePFf4zNs", "keywords": "", "youtube_id": "lCRePFf4zNs", "readable_id": "acute-leukemias"}, "y7YPTD7QwR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y7YPTD7QwR4.mp4/y7YPTD7QwR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y7YPTD7QwR4.mp4/y7YPTD7QwR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y7YPTD7QwR4.m3u8/y7YPTD7QwR4.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/social-movements/", "duration": 455, "id": "y7YPTD7QwR4", "title": "Social movements", "format": "mp4", "description": "", "slug": "social-movements", "kind": "Video", "video_id": "y7YPTD7QwR4", "keywords": "", "youtube_id": "y7YPTD7QwR4", "readable_id": "social-movements"}, "LU_6amWC6H8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LU_6amWC6H8.mp4/LU_6amWC6H8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LU_6amWC6H8.mp4/LU_6amWC6H8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LU_6amWC6H8.m3u8/LU_6amWC6H8.m3u8"}, "duration": 241, "id": "LU_6amWC6H8", "title": "Comparing accrual and cash accounting", "format": "mp4", "description": "Comparing Accrual and Cash Accounting", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/cash-accrual-accounting/comparing-accrual-and-cash-accounting/", "slug": "comparing-accrual-and-cash-accounting", "kind": "Video", "video_id": "LU_6amWC6H8", "keywords": "accrual, cash, accounting", "youtube_id": "LU_6amWC6H8", "readable_id": "comparing-accrual-and-cash-accounting"}, "sqnrJMTp9dc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sqnrJMTp9dc.mp4/sqnrJMTp9dc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sqnrJMTp9dc.mp4/sqnrJMTp9dc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sqnrJMTp9dc.m3u8/sqnrJMTp9dc.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/ceramics-glass/glassmaking-technique-free-blown-glass/", "duration": 124, "id": "sqnrJMTp9dc", "title": "Glassmaking technique: free-blown glass", "format": "mp4", "description": "Ancient glass makers near Jerusalem discovered they could inflate hot glass to make vessels quickly and more cheaply. Watch this ancient technique (footage from the Corning Museum of Glass). Love art? Follow us on Google+", "slug": "glassmaking-technique-free-blown-glass", "kind": "Video", "video_id": "sqnrJMTp9dc", "keywords": "", "youtube_id": "sqnrJMTp9dc", "readable_id": "glassmaking-technique-free-blown-glass"}, "vFfriC55fFw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vFfriC55fFw.mp4/vFfriC55fFw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vFfriC55fFw.mp4/vFfriC55fFw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vFfriC55fFw.m3u8/vFfriC55fFw.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/reactions-benzene/friedel-crafts-acylation/", "duration": 678, "id": "vFfriC55fFw", "title": "Friedel crafts acylation", "format": "mp4", "description": "Friedel Crafts Acylation", "slug": "friedel-crafts-acylation", "kind": "Video", "video_id": "vFfriC55fFw", "keywords": "Friedel, Crafts, Acylation, Acetyl, Chloride, Benzene, Electrophilic, Aromatic, Substitution", "youtube_id": "vFfriC55fFw", "readable_id": "friedel-crafts-acylation"}, "mX91_3GQqLY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mX91_3GQqLY.mp4/mX91_3GQqLY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mX91_3GQqLY.mp4/mX91_3GQqLY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mX91_3GQqLY.m3u8/mX91_3GQqLY.m3u8"}, "duration": 467, "id": "mX91_3GQqLY", "title": "Proof that square root of 2 is irrational", "format": "mp4", "description": "", "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/proof-that-square-root-of-2-is-irrational/", "slug": "proof-that-square-root-of-2-is-irrational", "kind": "Video", "video_id": "mX91_3GQqLY", "keywords": "", "youtube_id": "mX91_3GQqLY", "readable_id": "proof-that-square-root-of-2-is-irrational"}, "RpOHZc6cDIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RpOHZc6cDIw.mp4/RpOHZc6cDIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RpOHZc6cDIw.mp4/RpOHZc6cDIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RpOHZc6cDIw.m3u8/RpOHZc6cDIw.m3u8"}, "duration": 493, "id": "RpOHZc6cDIw", "title": "Why gravity gets so strong near dense objects", "format": "mp4", "description": "Why Gravity Gets So Strong Near Dense Objects", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/cepheid-variables/why-gravity-gets-so-strong-near-dense-objects/", "slug": "why-gravity-gets-so-strong-near-dense-objects", "kind": "Video", "video_id": "RpOHZc6cDIw", "keywords": "Why, Gravity, Gets, So, Strong, Near, Dense, Objects, Black, hole, marquee", "youtube_id": "RpOHZc6cDIw", "readable_id": "why-gravity-gets-so-strong-near-dense-objects"}, "muiNDpURT9M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/muiNDpURT9M.mp4/muiNDpURT9M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/muiNDpURT9M.mp4/muiNDpURT9M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/muiNDpURT9M.m3u8/muiNDpURT9M.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-skeletal-system/skeletal-structure-and-function/", "duration": 412, "id": "muiNDpURT9M", "title": "Skeletal structure and function", "format": "mp4", "description": "", "slug": "skeletal-structure-and-function", "kind": "Video", "video_id": "muiNDpURT9M", "keywords": "", "youtube_id": "muiNDpURT9M", "readable_id": "skeletal-structure-and-function"}, "MEGyRgYJKEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MEGyRgYJKEY.mp4/MEGyRgYJKEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MEGyRgYJKEY.mp4/MEGyRgYJKEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MEGyRgYJKEY.m3u8/MEGyRgYJKEY.m3u8"}, "duration": 970, "id": "MEGyRgYJKEY", "title": "Korean War overview", "format": "mp4", "description": "Korean War Overview", "path": "khan/humanities/history/euro-hist/cold-war/korean-war-overview/", "slug": "korean-war-overview", "kind": "Video", "video_id": "MEGyRgYJKEY", "keywords": "kim, il, sung, syngman, rhee, macarthur, truman", "youtube_id": "MEGyRgYJKEY", "readable_id": "korean-war-overview"}, "Qst1UVtq8pE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qst1UVtq8pE.mp4/Qst1UVtq8pE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qst1UVtq8pE.mp4/Qst1UVtq8pE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qst1UVtq8pE.m3u8/Qst1UVtq8pE.m3u8"}, "duration": 317, "id": "Qst1UVtq8pE", "title": "Constructing linear and exponential functions from data", "format": "mp4", "description": "", "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/constructing-linear-and-exponential-functions-from-data/", "slug": "constructing-linear-and-exponential-functions-from-data", "kind": "Video", "video_id": "Qst1UVtq8pE", "keywords": "", "youtube_id": "Qst1UVtq8pE", "readable_id": "constructing-linear-and-exponential-functions-from-data"}, "rMYdKz4xxMc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rMYdKz4xxMc.mp4/rMYdKz4xxMc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rMYdKz4xxMc.mp4/rMYdKz4xxMc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rMYdKz4xxMc.m3u8/rMYdKz4xxMc.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/the-true-self/", "duration": 300, "id": "rMYdKz4xxMc", "title": "Psychology: The True Self", "format": "mp4", "description": "Does our ordinary notion of a \u201ctrue self\u201d simply pick out a certain part of the mind? Or is this notion actually wrapped up in some inextricable way with our own values and ideals?\n\nSpeaker: Dr.\u00a0Joshua Knobe,\u00a0Professor of Philosophy and Cognitive Science, Yale University", "slug": "the-true-self", "kind": "Video", "video_id": "rMYdKz4xxMc", "keywords": "", "youtube_id": "rMYdKz4xxMc", "readable_id": "the-true-self"}, "rYG1D5lUE4I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rYG1D5lUE4I.mp4/rYG1D5lUE4I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rYG1D5lUE4I.mp4/rYG1D5lUE4I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rYG1D5lUE4I.m3u8/rYG1D5lUE4I.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/i_precalc/i-as-the-principal-root-of-1-a-little-technical/", "duration": 404, "id": "rYG1D5lUE4I", "title": "i as the principal root of -1 (a little technical)", "format": "mp4", "description": "i as the principal square root of -1", "slug": "i-as-the-principal-root-of-1-a-little-technical", "kind": "Video", "video_id": "rYG1D5lUE4I", "keywords": "complex, imagnary, numbers", "youtube_id": "rYG1D5lUE4I", "readable_id": "i-as-the-principal-root-of-1-a-little-technical"}, "JCdbCdwqXbc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JCdbCdwqXbc.mp4/JCdbCdwqXbc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JCdbCdwqXbc.mp4/JCdbCdwqXbc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JCdbCdwqXbc.m3u8/JCdbCdwqXbc.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-bar-graphs/solving-problems-with-bar-graphs-2/", "duration": 103, "id": "JCdbCdwqXbc", "title": "Solving problems with bar graphs 2", "format": "mp4", "description": "", "slug": "solving-problems-with-bar-graphs-2", "kind": "Video", "video_id": "JCdbCdwqXbc", "keywords": "", "youtube_id": "JCdbCdwqXbc", "readable_id": "solving-problems-with-bar-graphs-2"}, "9zspW8u6kQM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9zspW8u6kQM.mp4/9zspW8u6kQM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9zspW8u6kQM.mp4/9zspW8u6kQM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9zspW8u6kQM.m3u8/9zspW8u6kQM.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/radians-and-degrees/", "duration": 595, "id": "9zspW8u6kQM", "title": "Radians and degrees", "format": "mp4", "description": "What a radian is. Converting radians to degrees and vice versa.", "slug": "radians-and-degrees", "kind": "Video", "video_id": "9zspW8u6kQM", "keywords": "Trigonometry, radian, degree, math, khan", "youtube_id": "9zspW8u6kQM", "readable_id": "radians-and-degrees"}, "D1eibbfAEVk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D1eibbfAEVk.mp4/D1eibbfAEVk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D1eibbfAEVk.mp4/D1eibbfAEVk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D1eibbfAEVk.m3u8/D1eibbfAEVk.m3u8"}, "duration": 481, "id": "D1eibbfAEVk", "title": "Hawaiian islands formation", "format": "mp4", "description": "Hawaiian Islands formed by stationary hot spot under Pacific plate", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/hawaiian-islands-formation/", "slug": "hawaiian-islands-formation", "kind": "Video", "video_id": "D1eibbfAEVk", "keywords": "geology, mantle, plume, marquee", "youtube_id": "D1eibbfAEVk", "readable_id": "hawaiian-islands-formation"}, "Hkmsu9Tl7NE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hkmsu9Tl7NE.mp4/Hkmsu9Tl7NE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hkmsu9Tl7NE.mp4/Hkmsu9Tl7NE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hkmsu9Tl7NE.m3u8/Hkmsu9Tl7NE.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/demographic-structure-of-society-sex-gender-and-sexual-orientation/", "duration": 461, "id": "Hkmsu9Tl7NE", "title": "Demographic structure of society - sex, gender, and sexual orientation", "format": "mp4", "description": "", "slug": "demographic-structure-of-society-sex-gender-and-sexual-orientation", "kind": "Video", "video_id": "Hkmsu9Tl7NE", "keywords": "", "youtube_id": "Hkmsu9Tl7NE", "readable_id": "demographic-structure-of-society-sex-gender-and-sexual-orientation"}, "XdYgyO0RmFI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XdYgyO0RmFI.mp4/XdYgyO0RmFI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XdYgyO0RmFI.mp4/XdYgyO0RmFI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XdYgyO0RmFI.m3u8/XdYgyO0RmFI.m3u8"}, "path": "khan/humanities/art-history-basics/art-1010/19-century-art/", "duration": 527, "id": "XdYgyO0RmFI", "title": "Nineteenth-century art", "format": "mp4", "description": "A video from the Utah System of Higher Education (with special thanks to Dr. Nancy Ross)\u00a0", "slug": "19-century-art", "kind": "Video", "video_id": "XdYgyO0RmFI", "keywords": "Romanticism, Realism, Impressionism, Post-Impressionism, Symbolism", "youtube_id": "XdYgyO0RmFI", "readable_id": "19-century-art"}, "D8cHdto-G-I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D8cHdto-G-I.mp4/D8cHdto-G-I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D8cHdto-G-I.mp4/D8cHdto-G-I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D8cHdto-G-I.m3u8/D8cHdto-G-I.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/claude-monet-cliff-walk-at-pourville-1882/", "duration": 270, "id": "D8cHdto-G-I", "title": "Monet, Cliff Walk at Pourville", "format": "mp4", "description": "Claude Monet, Cliff Walk at Pourville, 1882, oil on canvas, 26-1/8 x 32-7/16 inches / 66.5 x 82.3 cm (Art Institute of Chicago)", "slug": "claude-monet-cliff-walk-at-pourville-1882", "kind": "Video", "video_id": "D8cHdto-G-I", "keywords": "Monet, Impressionism, Pourville, France, Art Institute of Chicago, Seaside, Cliff, Claude Monet, Khan Academy, smarthistory, art history, Google Art Project, OER, painting", "youtube_id": "D8cHdto-G-I", "readable_id": "claude-monet-cliff-walk-at-pourville-1882"}, "Xc3oHzKXVh8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xc3oHzKXVh8.mp4/Xc3oHzKXVh8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xc3oHzKXVh8.mp4/Xc3oHzKXVh8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xc3oHzKXVh8.m3u8/Xc3oHzKXVh8.m3u8"}, "duration": 734, "id": "Xc3oHzKXVh8", "title": "Congruent triangle example 2", "format": "mp4", "description": "Showing that segments have the same length", "path": "khan/math/geometry/congruent-triangles/cong_triangle/congruent-triangle-example-2/", "slug": "congruent-triangle-example-2", "kind": "Video", "video_id": "Xc3oHzKXVh8", "keywords": "congruent, triangles, ASA, SSS, SAS, AAS", "youtube_id": "Xc3oHzKXVh8", "readable_id": "congruent-triangle-example-2"}, "xF_hJaXUNfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xF_hJaXUNfE.mp4/xF_hJaXUNfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xF_hJaXUNfE.mp4/xF_hJaXUNfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xF_hJaXUNfE.m3u8/xF_hJaXUNfE.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/binomial-theorem-part-3/", "duration": 719, "id": "xF_hJaXUNfE", "title": "Binomial theorem combinatorics connection", "format": "mp4", "description": "Intuition behind why binomial expansion involves combinatorics", "slug": "binomial-theorem-part-3", "kind": "Video", "video_id": "xF_hJaXUNfE", "keywords": "binomial, combinatorics, CC_39336_A-APR_5", "youtube_id": "xF_hJaXUNfE", "readable_id": "binomial-theorem-part-3"}, "uA6mcx4FMN8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uA6mcx4FMN8.mp4/uA6mcx4FMN8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uA6mcx4FMN8.mp4/uA6mcx4FMN8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uA6mcx4FMN8.m3u8/uA6mcx4FMN8.m3u8"}, "path": "khan/math/algebra/quadratics/quadratic_odds_ends/ca-algebra-i-quadratic-roots/", "duration": 866, "id": "uA6mcx4FMN8", "title": "CA Algebra I: Quadratic roots", "format": "mp4", "description": "58-62, x-intercepts of a quadratic function", "slug": "ca-algebra-i-quadratic-roots", "kind": "Video", "video_id": "uA6mcx4FMN8", "keywords": "algebra, x-intercept, quadratic, function", "youtube_id": "uA6mcx4FMN8", "readable_id": "ca-algebra-i-quadratic-roots"}, "w6AWQb3r9o8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w6AWQb3r9o8.mp4/w6AWQb3r9o8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w6AWQb3r9o8.mp4/w6AWQb3r9o8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w6AWQb3r9o8.m3u8/w6AWQb3r9o8.m3u8"}, "duration": 67, "id": "w6AWQb3r9o8", "title": "Electrode (surface area test)", "format": "mp4", "description": "What's the difference between one piece of metal and three pieces of metal in our cell. Does deflection change? Why?", "path": "khan/science/discoveries-projects/discoveries/batteries/electrode-surface-area/", "slug": "electrode-surface-area", "kind": "Video", "video_id": "w6AWQb3r9o8", "keywords": "surface area", "youtube_id": "w6AWQb3r9o8", "readable_id": "electrode-surface-area"}, "AnATlMVA12E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AnATlMVA12E.mp4/AnATlMVA12E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AnATlMVA12E.mp4/AnATlMVA12E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AnATlMVA12E.m3u8/AnATlMVA12E.m3u8"}, "duration": 199, "id": "AnATlMVA12E", "title": "Futures and forward curves", "format": "mp4", "description": "Normal and Inverted Futures Curves", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/futures-and-forward-curves/", "slug": "futures-and-forward-curves", "kind": "Video", "video_id": "AnATlMVA12E", "keywords": "normal, inverted, futures, forward, curves", "youtube_id": "AnATlMVA12E", "readable_id": "futures-and-forward-curves"}, "M8Cbv0yptNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M8Cbv0yptNE.mp4/M8Cbv0yptNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M8Cbv0yptNE.mp4/M8Cbv0yptNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M8Cbv0yptNE.m3u8/M8Cbv0yptNE.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-12/", "duration": 120, "id": "M8Cbv0yptNE", "title": "12 Probability satisfying inequality", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-12", "kind": "Video", "video_id": "M8Cbv0yptNE", "keywords": "", "youtube_id": "M8Cbv0yptNE", "readable_id": "sat-getting-ready-2-12"}, "XQTIKNXDAao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XQTIKNXDAao.mp4/XQTIKNXDAao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XQTIKNXDAao.mp4/XQTIKNXDAao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XQTIKNXDAao.m3u8/XQTIKNXDAao.m3u8"}, "duration": 833, "id": "XQTIKNXDAao", "title": "What is inside a coffee maker?", "format": "mp4", "description": "In this video we explore what is inside a coffee maker, how it is made, and how it works.", "path": "khan/science/discoveries-projects/reverse-engin/reverse-engineering/what-is-inside-a-coffee-maker/", "slug": "what-is-inside-a-coffee-maker", "kind": "Video", "video_id": "XQTIKNXDAao", "keywords": "Ni-Chrome wire, Nickel-Chrome alloy, switch, housing, injection molding, PP, polypropylene, vent, filter, grill, insulation, thermal fuse, bi-metallic switch, heat, cost reduced, inexpensive, rectifier, copper coil, glass, stainless steel, coffee, maker", "youtube_id": "XQTIKNXDAao", "readable_id": "what-is-inside-a-coffee-maker"}, "2h8XiqSnzaU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2h8XiqSnzaU.mp4/2h8XiqSnzaU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2h8XiqSnzaU.mp4/2h8XiqSnzaU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2h8XiqSnzaU.m3u8/2h8XiqSnzaU.m3u8"}, "duration": 101, "id": "2h8XiqSnzaU", "title": "Proper and improper fractions", "format": "mp4", "description": "Proper and Improper Fractions", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/proper-and-improper-fractions/", "slug": "proper-and-improper-fractions", "kind": "Video", "video_id": "2h8XiqSnzaU", "keywords": "u2_l1_t2_we1, Proper, and, Improper, Fractions, CC_3_G_2, CC_4_NF_4_a", "youtube_id": "2h8XiqSnzaU", "readable_id": "proper-and-improper-fractions"}, "lJdb4_Fuxvw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lJdb4_Fuxvw.mp4/lJdb4_Fuxvw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lJdb4_Fuxvw.mp4/lJdb4_Fuxvw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lJdb4_Fuxvw.m3u8/lJdb4_Fuxvw.m3u8"}, "duration": 286, "id": "lJdb4_Fuxvw", "title": "Multiplying two fractions: number line approach", "format": "mp4", "description": "Fraction multiplication getting you down? No worries. This explanation which uses a number line to visualize the problem will lift your spirits.", "path": "concept-fraction-mult-number-line/", "slug": "concept-fraction-mult-number-line", "kind": "Video", "video_id": "lJdb4_Fuxvw", "keywords": "", "youtube_id": "lJdb4_Fuxvw", "readable_id": "concept-fraction-mult-number-line"}, "NdRl1C6Jr5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NdRl1C6Jr5o.mp4/NdRl1C6Jr5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NdRl1C6Jr5o.mp4/NdRl1C6Jr5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NdRl1C6Jr5o.m3u8/NdRl1C6Jr5o.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/keto-enol-tautomerization-2/", "duration": 689, "id": "NdRl1C6Jr5o", "title": "Keto-enol tautomerization", "format": "mp4", "description": "Mechanisms for acid and base catalyzed keto-enol tautomerization. By Jay.", "slug": "keto-enol-tautomerization-2", "kind": "Video", "video_id": "NdRl1C6Jr5o", "keywords": "", "youtube_id": "NdRl1C6Jr5o", "readable_id": "keto-enol-tautomerization-2"}, "8183HPmA2_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8183HPmA2_I.mp4/8183HPmA2_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8183HPmA2_I.mp4/8183HPmA2_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8183HPmA2_I.m3u8/8183HPmA2_I.m3u8"}, "path": "khan/science/biology/her/tree-of-life/human-prehistory-101-part-1-out-of-eastern-africa/", "duration": 335, "id": "8183HPmA2_I", "title": "Human prehistory 101 part 1: Out of (eastern) Africa", "format": "mp4", "description": "Second in a series of videos that introduces human prehistory, this video describes how our human ancestors spread throughout Africa and then into other regions such as Australia and Europe. How did they reach Australia so early on? What happened when our ancestors encountered Neanderthals?", "slug": "human-prehistory-101-part-1-out-of-eastern-africa", "kind": "Video", "video_id": "8183HPmA2_I", "keywords": "genetics, dna, testing, kit, genome, test, prehistory, ancestry, decode, navigenics, genomics", "youtube_id": "8183HPmA2_I", "readable_id": "human-prehistory-101-part-1-out-of-eastern-africa"}, "pInFesXIfg8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pInFesXIfg8.mp4/pInFesXIfg8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pInFesXIfg8.mp4/pInFesXIfg8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pInFesXIfg8.m3u8/pInFesXIfg8.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/critical_points_graphing/identifying-minima-and-maxima-for-x-3-12x-5/", "duration": 582, "id": "pInFesXIfg8", "title": "Identifying minima and maxima for x^3 - 12x + 2", "format": "mp4", "description": "", "slug": "identifying-minima-and-maxima-for-x-3-12x-5", "kind": "Video", "video_id": "pInFesXIfg8", "keywords": "", "youtube_id": "pInFesXIfg8", "readable_id": "identifying-minima-and-maxima-for-x-3-12x-5"}, "eUF59jCFcyQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eUF59jCFcyQ.mp4/eUF59jCFcyQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eUF59jCFcyQ.mp4/eUF59jCFcyQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eUF59jCFcyQ.m3u8/eUF59jCFcyQ.m3u8"}, "duration": 663, "id": "eUF59jCFcyQ", "title": "Big bang introduction", "format": "mp4", "description": null, "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/big-bang-introduction/", "slug": "big-bang-introduction", "kind": "Video", "video_id": "eUF59jCFcyQ", "keywords": "Big, Bang, Introduction", "youtube_id": "eUF59jCFcyQ", "readable_id": "big-bang-introduction"}, "ZvLo4bGRJQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZvLo4bGRJQE.mp4/ZvLo4bGRJQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZvLo4bGRJQE.mp4/ZvLo4bGRJQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZvLo4bGRJQE.m3u8/ZvLo4bGRJQE.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2008-may-4-7/", "duration": 122, "id": "ZvLo4bGRJQE", "title": "7 Solution to simultaneous equations", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-7", "kind": "Video", "video_id": "ZvLo4bGRJQE", "keywords": "", "youtube_id": "ZvLo4bGRJQE", "readable_id": "sat-2008-may-4-7"}, "HY-8ydAbiik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HY-8ydAbiik.mp4/HY-8ydAbiik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HY-8ydAbiik.mp4/HY-8ydAbiik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HY-8ydAbiik.m3u8/HY-8ydAbiik.m3u8"}, "duration": 223, "id": "HY-8ydAbiik", "title": "Dividing numbers: long division example", "format": "mp4", "description": "Have a go at this one on your own before listening to the solution. You're doing great and we believe in you!", "path": "dividing-3-digit-by-1-digit-without-remainder/", "slug": "dividing-3-digit-by-1-digit-without-remainder", "kind": "Video", "video_id": "HY-8ydAbiik", "keywords": "", "youtube_id": "HY-8ydAbiik", "readable_id": "dividing-3-digit-by-1-digit-without-remainder"}, "qOYCeAlukMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qOYCeAlukMk.mp4/qOYCeAlukMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qOYCeAlukMk.mp4/qOYCeAlukMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qOYCeAlukMk.m3u8/qOYCeAlukMk.m3u8"}, "duration": 483, "id": "qOYCeAlukMk", "title": "Three components of emotion and the universal emotions", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/emotion/three-components-of-emotion-and-the-universal-emotions/", "slug": "three-components-of-emotion-and-the-universal-emotions", "kind": "Video", "video_id": "qOYCeAlukMk", "keywords": "", "youtube_id": "qOYCeAlukMk", "readable_id": "three-components-of-emotion-and-the-universal-emotions"}, "oj8Lkb-61BI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oj8Lkb-61BI.mp4/oj8Lkb-61BI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oj8Lkb-61BI.mp4/oj8Lkb-61BI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oj8Lkb-61BI.m3u8/oj8Lkb-61BI.m3u8"}, "duration": 395, "id": "oj8Lkb-61BI", "title": "Situational approach", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/situational-approach/", "slug": "situational-approach", "kind": "Video", "video_id": "oj8Lkb-61BI", "keywords": "", "youtube_id": "oj8Lkb-61BI", "readable_id": "situational-approach"}, "AwKTZK8gqZI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AwKTZK8gqZI.mp4/AwKTZK8gqZI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AwKTZK8gqZI.mp4/AwKTZK8gqZI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AwKTZK8gqZI.m3u8/AwKTZK8gqZI.m3u8"}, "duration": 695, "id": "AwKTZK8gqZI", "title": "GMAT: Math 51", "format": "mp4", "description": "237-239, pg. 185", "path": "khan/test-prep/gmat/problem-solving/gmat-math-51/", "slug": "gmat-math-51", "kind": "Video", "video_id": "AwKTZK8gqZI", "keywords": "GMAT, Math", "youtube_id": "AwKTZK8gqZI", "readable_id": "gmat-math-51"}, "KFzcwWTEDDI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KFzcwWTEDDI.mp4/KFzcwWTEDDI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KFzcwWTEDDI.mp4/KFzcwWTEDDI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KFzcwWTEDDI.m3u8/KFzcwWTEDDI.m3u8"}, "duration": 195, "id": "KFzcwWTEDDI", "title": "Dividing numbers: intro to long division", "format": "mp4", "description": "Division isn't magic. It's perfectly logical. In this example we'll do a long division problem together and find the resulting answer (without a remainder).", "path": "long-division-without-remainder/", "slug": "long-division-without-remainder", "kind": "Video", "video_id": "KFzcwWTEDDI", "keywords": "", "youtube_id": "KFzcwWTEDDI", "readable_id": "long-division-without-remainder"}, "RhzXX5PbsuQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RhzXX5PbsuQ.mp4/RhzXX5PbsuQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RhzXX5PbsuQ.mp4/RhzXX5PbsuQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RhzXX5PbsuQ.m3u8/RhzXX5PbsuQ.m3u8"}, "duration": 130, "id": "RhzXX5PbsuQ", "title": "Using multiple logarithm properties to simplify", "format": "mp4", "description": "Using Multiple Logarithm Properties to Simplify", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/using-multiple-logarithm-properties-to-simplify/", "slug": "using-multiple-logarithm-properties-to-simplify", "kind": "Video", "video_id": "RhzXX5PbsuQ", "keywords": "u18_l2_t2_we4, Using, Multiple, Logarithm, Properties, to, Simplify", "youtube_id": "RhzXX5PbsuQ", "readable_id": "using-multiple-logarithm-properties-to-simplify"}, "jFSenp9ueaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jFSenp9ueaI.mp4/jFSenp9ueaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jFSenp9ueaI.mp4/jFSenp9ueaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jFSenp9ueaI.m3u8/jFSenp9ueaI.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/unit-conversion-with-fractions/", "duration": 348, "id": "jFSenp9ueaI", "title": "Unit conversion word problem: yards to inches", "format": "mp4", "description": "In this example, we need to convert from yards to inches. We'll do it a couple of ways.", "slug": "unit-conversion-with-fractions", "kind": "Video", "video_id": "jFSenp9ueaI", "keywords": "u6_l1_t1_we1, Unit, Conversion, with, Fractions", "youtube_id": "jFSenp9ueaI", "readable_id": "unit-conversion-with-fractions"}, "wiVWafc3JBM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wiVWafc3JBM.mp4/wiVWafc3JBM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wiVWafc3JBM.mp4/wiVWafc3JBM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wiVWafc3JBM.m3u8/wiVWafc3JBM.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-ex3-part-3-top-surface/", "duration": 761, "id": "wiVWafc3JBM", "title": "Surface integral ex3 part 3: Top surface", "format": "mp4", "description": "Parametrizing the top surface", "slug": "surface-integral-ex3-part-3-top-surface", "kind": "Video", "video_id": "wiVWafc3JBM", "keywords": "surface, integrals", "youtube_id": "wiVWafc3JBM", "readable_id": "surface-integral-ex3-part-3-top-surface"}, "w2QVg9mezcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w2QVg9mezcY.mp4/w2QVg9mezcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w2QVg9mezcY.mp4/w2QVg9mezcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w2QVg9mezcY.m3u8/w2QVg9mezcY.m3u8"}, "duration": 528, "id": "w2QVg9mezcY", "title": "Ritual of the bedside exam", "format": "mp4", "description": "Dr. Abraham Verghese explains the ritual of the bedside exam", "path": "khan/science/health-and-medicine/healthcare-misc/ritual-of-the-bedside-exam/", "slug": "ritual-of-the-bedside-exam", "kind": "Video", "video_id": "w2QVg9mezcY", "keywords": "medicine, verghese", "youtube_id": "w2QVg9mezcY", "readable_id": "ritual-of-the-bedside-exam"}, "U7HQ_G_N6vo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U7HQ_G_N6vo.mp4/U7HQ_G_N6vo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U7HQ_G_N6vo.mp4/U7HQ_G_N6vo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U7HQ_G_N6vo.m3u8/U7HQ_G_N6vo.m3u8"}, "duration": 585, "id": "U7HQ_G_N6vo", "title": "Gradient 1", "format": "mp4", "description": "Introduction to the gradient", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/gradient/gradient-1/", "slug": "gradient-1", "kind": "Video", "video_id": "U7HQ_G_N6vo", "keywords": "vector, gradient", "youtube_id": "U7HQ_G_N6vo", "readable_id": "gradient-1"}, "e3XNXl_6NSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e3XNXl_6NSg.mp4/e3XNXl_6NSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e3XNXl_6NSg.mp4/e3XNXl_6NSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e3XNXl_6NSg.m3u8/e3XNXl_6NSg.m3u8"}, "duration": 66, "id": "e3XNXl_6NSg", "title": "Electrode (distance test)", "format": "mp4", "description": "Does the distance between the copper and zinc electrodes matter? What happens to the deflection when we hold them close vs. far apart? Why is there a difference?", "path": "khan/science/discoveries-projects/discoveries/batteries/electrode-distance-test/", "slug": "electrode-distance-test", "kind": "Video", "video_id": "e3XNXl_6NSg", "keywords": "electrode distance", "youtube_id": "e3XNXl_6NSg", "readable_id": "electrode-distance-test"}, "umoSO56Nwa8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/umoSO56Nwa8.mp4/umoSO56Nwa8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/umoSO56Nwa8.mp4/umoSO56Nwa8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/umoSO56Nwa8.m3u8/umoSO56Nwa8.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/dvorak-symphony-9/dvorak-three/", "duration": 295, "id": "umoSO56Nwa8", "title": "Antoni\u0301n Dvor\u030ca\u0301k: Symphony No. 9 \"From the New World,\" analysis by Gerard Schwarz (part 3)", "format": "mp4", "description": "Watch the full performance here (starting at 7:15)", "slug": "dvorak-three", "kind": "Video", "video_id": "umoSO56Nwa8", "keywords": "", "youtube_id": "umoSO56Nwa8", "readable_id": "dvorak-three"}, "BKGx8GMVu88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BKGx8GMVu88.mp4/BKGx8GMVu88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BKGx8GMVu88.mp4/BKGx8GMVu88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BKGx8GMVu88.m3u8/BKGx8GMVu88.m3u8"}, "duration": 698, "id": "BKGx8GMVu88", "title": "e and compound interest", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/cont-comp-int-and-e/e-through-compound-interest/", "slug": "e-through-compound-interest", "kind": "Video", "video_id": "BKGx8GMVu88", "keywords": "", "youtube_id": "BKGx8GMVu88", "readable_id": "e-through-compound-interest"}, "tVcasOt55Lc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tVcasOt55Lc.mp4/tVcasOt55Lc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tVcasOt55Lc.mp4/tVcasOt55Lc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tVcasOt55Lc.m3u8/tVcasOt55Lc.m3u8"}, "duration": 298, "id": "tVcasOt55Lc", "title": "Length of an arc that subtends a central angle", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/circles/length-of-an-arc-that-subtends-a-central-angle/", "slug": "length-of-an-arc-that-subtends-a-central-angle", "kind": "Video", "video_id": "tVcasOt55Lc", "keywords": "", "youtube_id": "tVcasOt55Lc", "readable_id": "length-of-an-arc-that-subtends-a-central-angle"}, "1015d63VKh4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1015d63VKh4.mp4/1015d63VKh4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1015d63VKh4.mp4/1015d63VKh4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1015d63VKh4.m3u8/1015d63VKh4.m3u8"}, "duration": 292, "id": "1015d63VKh4", "title": "Chain rule with triple composition", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-with-triple-composition/", "slug": "chain-rule-with-triple-composition", "kind": "Video", "video_id": "1015d63VKh4", "keywords": "", "youtube_id": "1015d63VKh4", "readable_id": "chain-rule-with-triple-composition"}, "Pj3HdzOR2pY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pj3HdzOR2pY.mp4/Pj3HdzOR2pY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pj3HdzOR2pY.mp4/Pj3HdzOR2pY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pj3HdzOR2pY.m3u8/Pj3HdzOR2pY.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/bruegel-hunters/", "duration": 267, "id": "Pj3HdzOR2pY", "title": "Bruegel, Hunters in the Snow (Winter)", "format": "mp4", "description": "Pieter Bruegel the Elder, Hunters in the Snow (Winter), 1565, oil on wood, 118 x 161 cm (Kunsthistorisches Museum, Vienna),\u00a0Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "bruegel-hunters", "kind": "Video", "video_id": "Pj3HdzOR2pY", "keywords": "", "youtube_id": "Pj3HdzOR2pY", "readable_id": "bruegel-hunters"}, "Vc09LURoMQ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vc09LURoMQ8.mp4/Vc09LURoMQ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vc09LURoMQ8.mp4/Vc09LURoMQ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vc09LURoMQ8.m3u8/Vc09LURoMQ8.m3u8"}, "path": "khan/math/geometry/triangle-properties/medians_centroids/triangle-medians-and-centroids-2d-proof/", "duration": 915, "id": "Vc09LURoMQ8", "title": "Triangle medians and centroids (2D proof)", "format": "mp4", "description": "Showing that the centroid is 2/3 of the way along a median", "slug": "triangle-medians-and-centroids-2d-proof", "kind": "Video", "video_id": "Vc09LURoMQ8", "keywords": "centroid, geometry, proof, median, triangle", "youtube_id": "Vc09LURoMQ8", "readable_id": "triangle-medians-and-centroids-2d-proof"}, "EncR_T0faKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EncR_T0faKM.mp4/EncR_T0faKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EncR_T0faKM.mp4/EncR_T0faKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EncR_T0faKM.m3u8/EncR_T0faKM.m3u8"}, "duration": 242, "id": "EncR_T0faKM", "title": "The Painting Techniques of Jackson Pollock", "format": "mp4", "description": "Learn about the drip-style painting techniques of one of America's most iconic and influential painters. To learn more and create your own works, take our online course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-painting-technique-pollock/", "slug": "moma-painting-technique-pollock", "kind": "Video", "video_id": "EncR_T0faKM", "keywords": "", "youtube_id": "EncR_T0faKM", "readable_id": "moma-painting-technique-pollock"}, "-J--4Jc5FB0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-J--4Jc5FB0.mp4/-J--4Jc5FB0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-J--4Jc5FB0.mp4/-J--4Jc5FB0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-J--4Jc5FB0.m3u8/-J--4Jc5FB0.m3u8"}, "duration": 462, "id": "-J--4Jc5FB0", "title": "Genetic shift in flu", "format": "mp4", "description": "Find out how the genetic material in the Type A flu virus can get shuffled around to create brand new types of viruses! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/genetic-shift-in-flu/", "slug": "genetic-shift-in-flu", "kind": "Video", "video_id": "-J--4Jc5FB0", "keywords": "", "youtube_id": "-J--4Jc5FB0", "readable_id": "genetic-shift-in-flu"}, "K5ggNnKTmNM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K5ggNnKTmNM.mp4/K5ggNnKTmNM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K5ggNnKTmNM.mp4/K5ggNnKTmNM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K5ggNnKTmNM.m3u8/K5ggNnKTmNM.m3u8"}, "path": "khan/math/algebra/quadratics/quadratic_odds_ends/ca-algebra-i-factoring-quadratics/", "duration": 712, "id": "K5ggNnKTmNM", "title": "CA Algebra I: Factoring quadratics", "format": "mp4", "description": "44-47, factoring quadratics", "slug": "ca-algebra-i-factoring-quadratics", "kind": "Video", "video_id": "K5ggNnKTmNM", "keywords": "algebra, factoring, quadratic", "youtube_id": "K5ggNnKTmNM", "readable_id": "ca-algebra-i-factoring-quadratics"}, "FKJjqEdfB9Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FKJjqEdfB9Y.mp4/FKJjqEdfB9Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FKJjqEdfB9Y.mp4/FKJjqEdfB9Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FKJjqEdfB9Y.m3u8/FKJjqEdfB9Y.m3u8"}, "duration": 498, "id": "FKJjqEdfB9Y", "title": "Area models to visualize division using place value", "format": "mp4", "description": "We can break up big division problems into smaller, easier problems. In this video, we solve 268 divided by 2 and 856 divided by 8.", "path": "area-models-to-visualize-division-using-place-value/", "slug": "area-models-to-visualize-division-using-place-value", "kind": "Video", "video_id": "FKJjqEdfB9Y", "keywords": "", "youtube_id": "FKJjqEdfB9Y", "readable_id": "area-models-to-visualize-division-using-place-value"}, "MyzGVbCHh5M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MyzGVbCHh5M.mp4/MyzGVbCHh5M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MyzGVbCHh5M.mp4/MyzGVbCHh5M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MyzGVbCHh5M.m3u8/MyzGVbCHh5M.m3u8"}, "duration": 856, "id": "MyzGVbCHh5M", "title": "Inscribed and central angles", "format": "mp4", "description": "Showing that an inscribed angle is half of a central angle that subtends the same arc", "path": "khan/math/geometry/cc-geometry-circles/central-inscribed-circumscribed/inscribed-and-central-angles/", "slug": "inscribed-and-central-angles", "kind": "Video", "video_id": "MyzGVbCHh5M", "keywords": "geometry, inscribed, central, angle, subtend, arc", "youtube_id": "MyzGVbCHh5M", "readable_id": "inscribed-and-central-angles"}, "rYjs8Wtfnzo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rYjs8Wtfnzo.mp4/rYjs8Wtfnzo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rYjs8Wtfnzo.mp4/rYjs8Wtfnzo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rYjs8Wtfnzo.m3u8/rYjs8Wtfnzo.m3u8"}, "duration": 115, "id": "rYjs8Wtfnzo", "title": "How are dinosaur fossils discovered and collected?", "format": "mp4", "description": "To find fossils, paleontologists first carry out an operation called prospecting, which involves hiking while keeping one's eyes focused on the ground in hopes of finding fragments of fossils on the surface. Once a fossil fragment is found, the collector brushes away the loose dirt on the surface to see if more of the specimen is buried in the ground. Awls, rock hammers, chisels, and other tools are used to remove the rock covering the bones to see how much of the skeleton is present. Special glue is applied to the cracks and fractures to hold the fossil together. Next, a trench is dug around the bones so that they sit on a low pedestal. A layer of plaster bandages is wrapped around the bones to create a hard cast. Once the cast hardens, the fossil in is packed for shipment back to the museum.", "path": "collecting-dinosaur-fossils/", "slug": "collecting-dinosaur-fossils", "kind": "Video", "video_id": "rYjs8Wtfnzo", "keywords": "", "youtube_id": "rYjs8Wtfnzo", "readable_id": "collecting-dinosaur-fossils"}, "rIVCuC-Etc0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rIVCuC-Etc0.mp4/rIVCuC-Etc0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rIVCuC-Etc0.mp4/rIVCuC-Etc0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rIVCuC-Etc0.m3u8/rIVCuC-Etc0.m3u8"}, "duration": 731, "id": "rIVCuC-Etc0", "title": "Action potentials in cardiac myocytes", "format": "mp4", "description": "See how muscle cells in the heart contract by allowing Calcium to flow inside and bringing along some positive charge with it! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/action-potentials-in-cardiac-myocytes/", "slug": "action-potentials-in-cardiac-myocytes", "kind": "Video", "video_id": "rIVCuC-Etc0", "keywords": "", "youtube_id": "rIVCuC-Etc0", "readable_id": "action-potentials-in-cardiac-myocytes"}, "S4n-tQZnU6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S4n-tQZnU6o.mp4/S4n-tQZnU6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S4n-tQZnU6o.mp4/S4n-tQZnU6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S4n-tQZnU6o.m3u8/S4n-tQZnU6o.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/inverting-matrices-part-2/", "duration": 1004, "id": "S4n-tQZnU6o", "title": "Classic video on inverting a 3x3 matrix part 1", "format": "mp4", "description": "Inverting a 3x3 matrix", "slug": "inverting-matrices-part-2", "kind": "Video", "video_id": "S4n-tQZnU6o", "keywords": "inverting, inverse, matrix, matrices", "youtube_id": "S4n-tQZnU6o", "readable_id": "inverting-matrices-part-2"}, "o5iot_ZsoV0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o5iot_ZsoV0.mp4/o5iot_ZsoV0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o5iot_ZsoV0.mp4/o5iot_ZsoV0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o5iot_ZsoV0.m3u8/o5iot_ZsoV0.m3u8"}, "duration": 399, "id": "o5iot_ZsoV0", "title": "Consumption function basics", "format": "mp4", "description": "The basic idea of a consumption function", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/consumption-function/consumption-function-basics/", "slug": "consumption-function-basics", "kind": "Video", "video_id": "o5iot_ZsoV0", "keywords": "macroeconomics, MPC", "youtube_id": "o5iot_ZsoV0", "readable_id": "consumption-function-basics"}, "oOIqk5hXBt4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oOIqk5hXBt4.mp4/oOIqk5hXBt4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oOIqk5hXBt4.mp4/oOIqk5hXBt4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oOIqk5hXBt4.m3u8/oOIqk5hXBt4.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/peripheral-somatosensation/", "duration": 568, "id": "oOIqk5hXBt4", "title": "Peripheral somatosensation", "format": "mp4", "description": "", "slug": "peripheral-somatosensation", "kind": "Video", "video_id": "oOIqk5hXBt4", "keywords": "MCAT", "youtube_id": "oOIqk5hXBt4", "readable_id": "peripheral-somatosensation"}, "hr_mTd-oJ-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hr_mTd-oJ-M.mp4/hr_mTd-oJ-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hr_mTd-oJ-M.mp4/hr_mTd-oJ-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hr_mTd-oJ-M.m3u8/hr_mTd-oJ-M.m3u8"}, "duration": 297, "id": "hr_mTd-oJ-M", "title": "Multiplying fractions: visualizing", "format": "mp4", "description": "Here's a great way to visualize fraction multiplication problems. Once you understand this, doing them on your own will be a lot easier!", "path": "visualizing-fraction-products/", "slug": "visualizing-fraction-products", "kind": "Video", "video_id": "hr_mTd-oJ-M", "keywords": "", "youtube_id": "hr_mTd-oJ-M", "readable_id": "visualizing-fraction-products"}, "pCGnyaa5E5g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pCGnyaa5E5g.mp4/pCGnyaa5E5g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pCGnyaa5E5g.mp4/pCGnyaa5E5g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pCGnyaa5E5g.m3u8/pCGnyaa5E5g.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/critical-thinking-truth-and-validity/", "duration": 414, "id": "pCGnyaa5E5g", "title": "Fundamentals: Truth and validity", "format": "mp4", "description": "In this video, Julianne Chung explains the philosophical concepts of truth and validity before going on to illustrate how truth and falsity, as well as validity and invalidity, can appear in various combinations in an argument. She then introduces the concept of a sound argument (i.e., a valid argument whose premises are all true) and presents one reason to think that valid arguments with false premises are also of interest. \u00a0For more detailed discussions of validity and soundness, please be sure to have a look at the videos on these topics by Paul Henne (Duke University) and Aaron Ancell (Duke University), respectively.\n\nSpeaker: Julianne Chung, Yale University", "slug": "critical-thinking-truth-and-validity", "kind": "Video", "video_id": "pCGnyaa5E5g", "keywords": "", "youtube_id": "pCGnyaa5E5g", "readable_id": "critical-thinking-truth-and-validity"}, "qkLzAXUP_K0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qkLzAXUP_K0.mp4/qkLzAXUP_K0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qkLzAXUP_K0.mp4/qkLzAXUP_K0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qkLzAXUP_K0.m3u8/qkLzAXUP_K0.m3u8"}, "path": "khan/science/chemistry/electronic-structure-of-atoms/electron-configurations-jay-sal/electron-configuration-d-block/", "duration": 426, "id": "qkLzAXUP_K0", "title": "Electron configuration for d block element", "format": "mp4", "description": "", "slug": "electron-configuration-d-block", "kind": "Video", "video_id": "qkLzAXUP_K0", "keywords": "", "youtube_id": "qkLzAXUP_K0", "readable_id": "electron-configuration-d-block"}, "HiphWQfB6J0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HiphWQfB6J0.mp4/HiphWQfB6J0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HiphWQfB6J0.mp4/HiphWQfB6J0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HiphWQfB6J0.m3u8/HiphWQfB6J0.m3u8"}, "duration": 215, "id": "HiphWQfB6J0", "title": "Accumulating foreign currency reserves", "format": "mp4", "description": "How and why a central bank would build foreign currency reserves", "path": "khan/economics-finance-domain/macroeconomics/forex-trade-topic/currency-reserves/accumulating-foreign-currency-reserves/", "slug": "accumulating-foreign-currency-reserves", "kind": "Video", "video_id": "HiphWQfB6J0", "keywords": "Accumulating, Foreign, Currency, Reserves", "youtube_id": "HiphWQfB6J0", "readable_id": "accumulating-foreign-currency-reserves"}, "PKh5B9xyzSc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PKh5B9xyzSc.mp4/PKh5B9xyzSc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PKh5B9xyzSc.mp4/PKh5B9xyzSc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PKh5B9xyzSc.m3u8/PKh5B9xyzSc.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-fractions/adding-fractions-with-unlike-denominators-word-problem/", "duration": 347, "id": "PKh5B9xyzSc", "title": "Adding fractions with unlike denominators: word problem", "format": "mp4", "description": "We can do math problem all day long, but to really understand math--you have to apply it. Let's apply adding fractions to this word problem.", "slug": "adding-fractions-with-unlike-denominators-word-problem", "kind": "Video", "video_id": "PKh5B9xyzSc", "keywords": "", "youtube_id": "PKh5B9xyzSc", "readable_id": "adding-fractions-with-unlike-denominators-word-problem"}, "_5ei_I02huY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_5ei_I02huY.mp4/_5ei_I02huY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_5ei_I02huY.mp4/_5ei_I02huY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_5ei_I02huY.m3u8/_5ei_I02huY.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-complex-numbers-part-1/", "duration": 441, "id": "_5ei_I02huY", "title": "IIT JEE complex numbers (part 1)", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 39 Complex Numbers (part 1)", "slug": "iit-jee-complex-numbers-part-1", "kind": "Video", "video_id": "_5ei_I02huY", "keywords": "2010, IIT, JEE, Paper, Problem, 39, Complex, Numbers, (part, 1)", "youtube_id": "_5ei_I02huY", "readable_id": "iit-jee-complex-numbers-part-1"}, "D_jevR2FvzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D_jevR2FvzE.mp4/D_jevR2FvzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D_jevR2FvzE.mp4/D_jevR2FvzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D_jevR2FvzE.m3u8/D_jevR2FvzE.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/ways-of-knowing-early-humans/bhp-intro-anthropology/", "duration": 346, "id": "D_jevR2FvzE", "title": "Intro to Anthropology", "format": "mp4", "description": "Kathy Schick defines the role of the anthropologist in understanding our past and present.", "slug": "bhp-intro-anthropology", "kind": "Video", "video_id": "D_jevR2FvzE", "keywords": "", "youtube_id": "D_jevR2FvzE", "readable_id": "bhp-intro-anthropology"}, "GuwIBNbJKkQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GuwIBNbJKkQ.mp4/GuwIBNbJKkQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GuwIBNbJKkQ.mp4/GuwIBNbJKkQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GuwIBNbJKkQ.m3u8/GuwIBNbJKkQ.m3u8"}, "duration": 100, "id": "GuwIBNbJKkQ", "title": "Horned monster", "format": "mp4", "description": "William talks about Paul Gauguin's Head with Horns, 1895-97. This is from an imaginative audio tour at the Getty Center: The Supernatural in Art. Love art? Follow us on Google+ to stay in touch.", "path": "horned-monster/", "slug": "horned-monster", "kind": "Video", "video_id": "GuwIBNbJKkQ", "keywords": "", "youtube_id": "GuwIBNbJKkQ", "readable_id": "horned-monster"}, "BIZNBfBuu1w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BIZNBfBuu1w.mp4/BIZNBfBuu1w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BIZNBfBuu1w.mp4/BIZNBfBuu1w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BIZNBfBuu1w.m3u8/BIZNBfBuu1w.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/dot-strcutures-jay/dot-structures-i-single-bonds-1/", "duration": 417, "id": "BIZNBfBuu1w", "title": "Dot structures I: Single bonds", "format": "mp4", "description": "", "slug": "dot-structures-i-single-bonds-1", "kind": "Video", "video_id": "BIZNBfBuu1w", "keywords": "", "youtube_id": "BIZNBfBuu1w", "readable_id": "dot-structures-i-single-bonds-1"}, "m6xURMj2ztk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m6xURMj2ztk.mp4/m6xURMj2ztk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m6xURMj2ztk.mp4/m6xURMj2ztk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m6xURMj2ztk.m3u8/m6xURMj2ztk.m3u8"}, "duration": 198, "id": "m6xURMj2ztk", "title": "Box and whisker plot exercise example", "format": "mp4", "description": "Learn how to create a box plot. The data set used in this example has 11 data points.", "path": "box-and-whisker-plot-exercise-example/", "slug": "box-and-whisker-plot-exercise-example", "kind": "Video", "video_id": "m6xURMj2ztk", "keywords": "", "youtube_id": "m6xURMj2ztk", "readable_id": "box-and-whisker-plot-exercise-example"}, "AM63tLZZzNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AM63tLZZzNo.mp4/AM63tLZZzNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AM63tLZZzNo.mp4/AM63tLZZzNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AM63tLZZzNo.m3u8/AM63tLZZzNo.m3u8"}, "path": "khan/partner-content/big-history-project/acceleration/other-materials9/bhp-chemistry-energy/", "duration": 249, "id": "AM63tLZZzNo", "title": "Chemistry and Energy", "format": "mp4", "description": "Sustainable energy is one of the greatest challenges for chemists today.", "slug": "bhp-chemistry-energy", "kind": "Video", "video_id": "AM63tLZZzNo", "keywords": "", "youtube_id": "AM63tLZZzNo", "readable_id": "bhp-chemistry-energy"}, "v4Fq9LEspzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v4Fq9LEspzw.mp4/v4Fq9LEspzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v4Fq9LEspzw.mp4/v4Fq9LEspzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v4Fq9LEspzw.m3u8/v4Fq9LEspzw.m3u8"}, "duration": 847, "id": "v4Fq9LEspzw", "title": "EBITDA", "format": "mp4", "description": "Review of Enterprise Value and comparing it to EBITDA", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/ebitda/", "slug": "ebitda", "kind": "Video", "video_id": "v4Fq9LEspzw", "keywords": "earnings, before, interest, taxes, depreciation, amortization, EBITDA", "youtube_id": "v4Fq9LEspzw", "readable_id": "ebitda"}, "guxLpVICBjg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/guxLpVICBjg.mp4/guxLpVICBjg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/guxLpVICBjg.mp4/guxLpVICBjg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/guxLpVICBjg.m3u8/guxLpVICBjg.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/mary-cassatt-woman-with-a-pearl-necklace-in-a-loge-1879/", "duration": 310, "id": "guxLpVICBjg", "title": "Cassatt, Woman with a Pearl Necklace in a Loge", "format": "mp4", "description": "Mary Cassatt, Woman with a Pearl Necklace in a Loge, 1879, oil on canvas, 32 x 23-1/2 inches or 81.3 x 59.7 cm (Philadelphia Museum of Art)", "slug": "mary-cassatt-woman-with-a-pearl-necklace-in-a-loge-1879", "kind": "Video", "video_id": "guxLpVICBjg", "keywords": "Mary Cassatt, Cassatt, Lydia, Pearl Necklace, Loge, 1879, Philadelphia, Impressionism, Paris, Second Empire, Palais Garnier, Opera House, Google Art Project, Smarthistory, Khan Academy, art history, OER", "youtube_id": "guxLpVICBjg", "readable_id": "mary-cassatt-woman-with-a-pearl-necklace-in-a-loge-1879"}, "vaOXkt7uuac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vaOXkt7uuac.mp4/vaOXkt7uuac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vaOXkt7uuac.mp4/vaOXkt7uuac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vaOXkt7uuac.m3u8/vaOXkt7uuac.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-pythagorean-theorem-area/", "duration": 644, "id": "vaOXkt7uuac", "title": "CA Geometry: Pythagorean theorem, area", "format": "mp4", "description": "36-40, Pythagorean Theorem and Area", "slug": "ca-geometry-pythagorean-theorem-area", "kind": "Video", "video_id": "vaOXkt7uuac", "keywords": "geometry, pythagorean, theorem, area", "youtube_id": "vaOXkt7uuac", "readable_id": "ca-geometry-pythagorean-theorem-area"}, "q7STpNRwzzc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q7STpNRwzzc.mp4/q7STpNRwzzc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q7STpNRwzzc.mp4/q7STpNRwzzc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q7STpNRwzzc.m3u8/q7STpNRwzzc.m3u8"}, "duration": 58, "id": "q7STpNRwzzc", "title": "Art Terms in Action: Tint, Shade, and Tone", "format": "mp4", "description": "To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.\u00a0", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-tint-shade-tone/", "slug": "moma-art-term-tint-shade-tone", "kind": "Video", "video_id": "q7STpNRwzzc", "keywords": "", "youtube_id": "q7STpNRwzzc", "readable_id": "moma-art-term-tint-shade-tone"}, "r4rWWtSWf_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r4rWWtSWf_k.mp4/r4rWWtSWf_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r4rWWtSWf_k.mp4/r4rWWtSWf_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r4rWWtSWf_k.m3u8/r4rWWtSWf_k.m3u8"}, "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/ancient-temples-nara/", "duration": 321, "id": "r4rWWtSWf_k", "title": "Ancient temples of Nara Japan", "format": "mp4", "description": "Explore Nara's ancient Buddhist art and architecture. Learn more about Buddhism in Japan on the Asian Art Museum's education website.", "slug": "ancient-temples-nara", "kind": "Video", "video_id": "r4rWWtSWf_k", "keywords": "", "youtube_id": "r4rWWtSWf_k", "readable_id": "ancient-temples-nara"}, "TyZODv-UqvU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TyZODv-UqvU.mp4/TyZODv-UqvU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TyZODv-UqvU.mp4/TyZODv-UqvU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TyZODv-UqvU.m3u8/TyZODv-UqvU.m3u8"}, "duration": 679, "id": "TyZODv-UqvU", "title": "In da club - Membranes & transport", "format": "mp4", "description": "Hank describes how cells regulate their contents and communicate with one another via mechanisms within the cell membrane.", "path": "crash-course-biology-105/", "slug": "crash-course-biology-105", "kind": "Video", "video_id": "TyZODv-UqvU", "keywords": "", "youtube_id": "TyZODv-UqvU", "readable_id": "crash-course-biology-105"}, "GGQngIp0YGI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GGQngIp0YGI.mp4/GGQngIp0YGI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GGQngIp0YGI.mp4/GGQngIp0YGI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GGQngIp0YGI.m3u8/GGQngIp0YGI.m3u8"}, "path": "khan/math/differential-calculus/limits_topic/old-limits-tutorial/limit-examples-part-1/", "duration": 536, "id": "GGQngIp0YGI", "title": "Limit examples (part 1)", "format": "mp4", "description": "Some limit exercises", "slug": "limit-examples-part-1", "kind": "Video", "video_id": "GGQngIp0YGI", "keywords": "calculus, limits, limit, examples, khan, academy, CC_39336_A-CED_2, CC_39336_A-CED_3, CC_39336_A-REI_10, CC_39336_F-BF_1, CC_39336_F-IF_7_d", "youtube_id": "GGQngIp0YGI", "readable_id": "limit-examples-part-1"}, "tkG960qqMlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tkG960qqMlE.mp4/tkG960qqMlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tkG960qqMlE.mp4/tkG960qqMlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tkG960qqMlE.m3u8/tkG960qqMlE.m3u8"}, "duration": 141, "id": "tkG960qqMlE", "title": "Johno Verity, avalanche survivor, on \"An Avalanche in the Alps\"", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn 2008, professional snowboarder Johno Verity was being filmed when he was taken by surprise and nearly buried by an avalanche. To see if an artist\u2019s depiction could measure up to his own experience, Verity took close look at Philip James de Loutherbourg\u2019s 1803 painting An Avalanche in the Alps. Looking at the painting gave Verity the chance to reflect upon the memory of his own avalanche survival experience\u2013and to point out any inconsistencies in the artist\u2019s depiction.\nWhile the billowing clouds of snow and debris evoke the feelings of being in an avalanche, Verity rightfully points out that this painting is just an artist\u2019s impression of such an experience. On the other hand, it is important to remember that every time we look at art we are undertaking an act of interpretation\u2014we all bring personal experience to an artwork, and this influences the way we see and think about it.\u00a0Do you think\u00a0an artist capture the feeling of being somewhere without actually having been there him or herself? Does this make their work somehow less effective? And what about artists that depict things that aren\u2019t even real?\u00a0\n", "path": "johno-verity/", "slug": "johno-verity", "kind": "Video", "video_id": "tkG960qqMlE", "keywords": "Tate", "youtube_id": "tkG960qqMlE", "readable_id": "johno-verity"}, "Sh9uYq05zPk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Sh9uYq05zPk.mp4/Sh9uYq05zPk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Sh9uYq05zPk.mp4/Sh9uYq05zPk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Sh9uYq05zPk.m3u8/Sh9uYq05zPk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-nose-sinus-upper-respiratory/allergic-rhinitis-diagnosis-and-treatment/", "duration": 631, "id": "Sh9uYq05zPk", "title": "Allergic rhinitis diagnosis and treatment", "format": "mp4", "description": "", "slug": "allergic-rhinitis-diagnosis-and-treatment", "kind": "Video", "video_id": "Sh9uYq05zPk", "keywords": "", "youtube_id": "Sh9uYq05zPk", "readable_id": "allergic-rhinitis-diagnosis-and-treatment"}, "1213qW5k55I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1213qW5k55I.mp4/1213qW5k55I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1213qW5k55I.mp4/1213qW5k55I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1213qW5k55I.m3u8/1213qW5k55I.m3u8"}, "duration": 277, "id": "1213qW5k55I", "title": "Discriminant for types of solutions for a quadratic", "format": "mp4", "description": "Discriminant for Types of Solutions for a Quadratic", "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/discriminant-for-types-of-solutions-for-a-quadratic/", "slug": "discriminant-for-types-of-solutions-for-a-quadratic", "kind": "Video", "video_id": "1213qW5k55I", "keywords": "u16_l5_t2_we4, Discriminant, for, Types, of, Solutions, Quadratic", "youtube_id": "1213qW5k55I", "readable_id": "discriminant-for-types-of-solutions-for-a-quadratic"}, "YEZMReBbkP0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YEZMReBbkP0.mp4/YEZMReBbkP0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YEZMReBbkP0.mp4/YEZMReBbkP0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YEZMReBbkP0.m3u8/YEZMReBbkP0.m3u8"}, "duration": 241, "id": "YEZMReBbkP0", "title": "Basic capital structure differences", "format": "mp4", "description": "Understanding basic capital structure differences", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/company-statements-capital-struc/basic-capital-structure-differences/", "slug": "basic-capital-structure-differences", "kind": "Video", "video_id": "YEZMReBbkP0", "keywords": "debt, equity, capital, structure", "youtube_id": "YEZMReBbkP0", "readable_id": "basic-capital-structure-differences"}, "qEdevRBLKVE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qEdevRBLKVE.mp4/qEdevRBLKVE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qEdevRBLKVE.mp4/qEdevRBLKVE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qEdevRBLKVE.m3u8/qEdevRBLKVE.m3u8"}, "path": "khan/college-admissions/making-high-school-count/extracurricular-and-leadership/ss-extracurriculars-that-are-a-passion/", "duration": 64, "id": "qEdevRBLKVE", "title": "Student story: Extracurriculars that are a passion", "format": "mp4", "description": "", "slug": "ss-extracurriculars-that-are-a-passion", "kind": "Video", "video_id": "qEdevRBLKVE", "keywords": "", "youtube_id": "qEdevRBLKVE", "readable_id": "ss-extracurriculars-that-are-a-passion"}, "5M0vOHFm3Ww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5M0vOHFm3Ww.mp4/5M0vOHFm3Ww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5M0vOHFm3Ww.mp4/5M0vOHFm3Ww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5M0vOHFm3Ww.m3u8/5M0vOHFm3Ww.m3u8"}, "path": "khan/humanities/art-americas/new-topic-2015-04-22t180902849z/ancient-colombia/depletion-gilding/", "duration": 230, "id": "5M0vOHFm3Ww", "title": "Depletion gilding: Goldmaking techniques of the ancient Colombians", "format": "mp4", "description": "Depletion gilding (dorado por oxidaci\u00f3n). The gold-making techniques of the ancient Colombians. \u00a9 Trustees of the British Museum", "slug": "depletion-gilding", "kind": "Video", "video_id": "5M0vOHFm3Ww", "keywords": "", "youtube_id": "5M0vOHFm3Ww", "readable_id": "depletion-gilding"}, "i9z6x1LbdW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i9z6x1LbdW8.mp4/i9z6x1LbdW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i9z6x1LbdW8.mp4/i9z6x1LbdW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i9z6x1LbdW8.m3u8/i9z6x1LbdW8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/buerger-disease/", "duration": 274, "id": "i9z6x1LbdW8", "title": "Buerger disease", "format": "mp4", "description": "Buerger disease (also known as the thromboangiitis obliterans) is a type of vasculitis that affects small and medium blood vessels and has been linked strongly to smoking. Buerger disease is characterised by poor blood flow through blood vessels due to inflammation and blood clotting. Symptoms typically include pain (claudication), increased sensitivity to cold, diminished pulses, and cyanosis. Gangrene is often a complication which may require amputation of the affected area. Learn how health care professionals diagnose Buerger disease using ultrasound and angiography.", "slug": "buerger-disease", "kind": "Video", "video_id": "i9z6x1LbdW8", "keywords": "", "youtube_id": "i9z6x1LbdW8", "readable_id": "buerger-disease"}, "ZzwuHS9ldbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZzwuHS9ldbY.mp4/ZzwuHS9ldbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZzwuHS9ldbY.mp4/ZzwuHS9ldbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZzwuHS9ldbY.m3u8/ZzwuHS9ldbY.m3u8"}, "duration": 605, "id": "ZzwuHS9ldbY", "title": "Intro to springs and Hooke's law", "format": "mp4", "description": "Introduction to Hooke's Law", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/intro-to-springs-and-hooke-s-law/", "slug": "intro-to-springs-and-hooke-s-law", "kind": "Video", "video_id": "ZzwuHS9ldbY", "keywords": "physics, springs, hooke's, law, force", "youtube_id": "ZzwuHS9ldbY", "readable_id": "intro-to-springs-and-hooke-s-law"}, "62zKxexJrIM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/62zKxexJrIM.mp4/62zKxexJrIM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/62zKxexJrIM.mp4/62zKxexJrIM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/62zKxexJrIM.m3u8/62zKxexJrIM.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/exploring_mars_ancient/mars-in-a-minute-is-mars-red-hot/", "duration": 61, "id": "62zKxexJrIM", "title": "Temperature & atmosphere", "format": "mp4", "description": "", "slug": "mars-in-a-minute-is-mars-red-hot", "kind": "Video", "video_id": "62zKxexJrIM", "keywords": "", "youtube_id": "62zKxexJrIM", "readable_id": "mars-in-a-minute-is-mars-red-hot"}, "qDsLxwmW_Ms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qDsLxwmW_Ms.mp4/qDsLxwmW_Ms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qDsLxwmW_Ms.mp4/qDsLxwmW_Ms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qDsLxwmW_Ms.m3u8/qDsLxwmW_Ms.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-13/", "duration": 702, "id": "qDsLxwmW_Ms", "title": "GMAT: Data sufficiency 13", "format": "mp4", "description": "59-62, pg. 282", "slug": "gmat-data-sufficiency-13", "kind": "Video", "video_id": "qDsLxwmW_Ms", "keywords": "GMAT, data, sufficiency, math", "youtube_id": "qDsLxwmW_Ms", "readable_id": "gmat-data-sufficiency-13"}, "CSXP02Cl3zM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CSXP02Cl3zM.mp4/CSXP02Cl3zM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CSXP02Cl3zM.mp4/CSXP02Cl3zM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CSXP02Cl3zM.m3u8/CSXP02Cl3zM.m3u8"}, "duration": 393, "id": "CSXP02Cl3zM", "title": "Motor controller connections", "format": "mp4", "description": "In this video we show you how to attach and wire the L-298 motor controller board to Bit-zee's frame.", "path": "khan/science/discoveries-projects/robots/bit-zee/attach-and-wire-bit-zee-s-motor-controller/", "slug": "attach-and-wire-bit-zee-s-motor-controller", "kind": "Video", "video_id": "CSXP02Cl3zM", "keywords": "Attach motor controller, L-298, Bit-zee, make, hack, diy", "youtube_id": "CSXP02Cl3zM", "readable_id": "attach-and-wire-bit-zee-s-motor-controller"}, "54--44LhQRU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/54--44LhQRU.mp4/54--44LhQRU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/54--44LhQRU.mp4/54--44LhQRU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/54--44LhQRU.m3u8/54--44LhQRU.m3u8"}, "duration": 492, "id": "54--44LhQRU", "title": "Avogadro's law", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/gas-phase/avogadros-law/", "slug": "avogadros-law", "kind": "Video", "video_id": "54--44LhQRU", "keywords": "", "youtube_id": "54--44LhQRU", "readable_id": "avogadros-law"}, "TPov_v9mLWc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TPov_v9mLWc.mp4/TPov_v9mLWc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TPov_v9mLWc.mp4/TPov_v9mLWc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TPov_v9mLWc.m3u8/TPov_v9mLWc.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/green-s-and-stokes-theorem-relationship/", "duration": 415, "id": "TPov_v9mLWc", "title": "Green's and Stokes' theorem relationship", "format": "mp4", "description": "Seeing that Green's Theorem is just a special case of Stokes' Theorem", "slug": "green-s-and-stokes-theorem-relationship", "kind": "Video", "video_id": "TPov_v9mLWc", "keywords": "vector, multivariable, calculus", "youtube_id": "TPov_v9mLWc", "readable_id": "green-s-and-stokes-theorem-relationship"}, "eIndU6kmH58": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eIndU6kmH58.mp4/eIndU6kmH58.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eIndU6kmH58.mp4/eIndU6kmH58.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eIndU6kmH58.m3u8/eIndU6kmH58.m3u8"}, "path": "khan/computing/computer-programming/programming/intro-to-programming/programming-intro/", "duration": 143, "id": "eIndU6kmH58", "title": "What is Programming?", "format": "mp4", "description": "", "slug": "programming-intro", "kind": "Video", "video_id": "eIndU6kmH58", "keywords": "", "youtube_id": "eIndU6kmH58", "readable_id": "programming-intro"}, "NQazgcu8c7s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NQazgcu8c7s.mp4/NQazgcu8c7s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NQazgcu8c7s.mp4/NQazgcu8c7s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NQazgcu8c7s.m3u8/NQazgcu8c7s.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-6b/", "duration": 599, "id": "NQazgcu8c7s", "title": "2011 Calculus BC free response #6b", "format": "mp4", "description": "Taylor Series for cos x at x=0", "slug": "2011-calculus-bc-free-response-6b", "kind": "Video", "video_id": "NQazgcu8c7s", "keywords": "2011, Calculus, BC, Free, Response, #6b", "youtube_id": "NQazgcu8c7s", "readable_id": "2011-calculus-bc-free-response-6b"}, "pmHlKhv7C0E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pmHlKhv7C0E.mp4/pmHlKhv7C0E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pmHlKhv7C0E.mp4/pmHlKhv7C0E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pmHlKhv7C0E.m3u8/pmHlKhv7C0E.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-of-a-weak-base-with-a-strong-acid/", "duration": 898, "id": "pmHlKhv7C0E", "title": "Titration of a weak base with a strong acid", "format": "mp4", "description": "", "slug": "titration-of-a-weak-base-with-a-strong-acid", "kind": "Video", "video_id": "pmHlKhv7C0E", "keywords": "", "youtube_id": "pmHlKhv7C0E", "readable_id": "titration-of-a-weak-base-with-a-strong-acid"}, "5uuQ77vAV_U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5uuQ77vAV_U.mp4/5uuQ77vAV_U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5uuQ77vAV_U.mp4/5uuQ77vAV_U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5uuQ77vAV_U.m3u8/5uuQ77vAV_U.m3u8"}, "duration": 335, "id": "5uuQ77vAV_U", "title": "Flocculation: Making Clean Water", "format": "mp4", "description": "Making clean and tasty water with cool science!", "path": "flocculation/", "slug": "flocculation", "kind": "Video", "video_id": "5uuQ77vAV_U", "keywords": "MIT, M.I.T., K-12, K12, engineering, teaching, learning, demo*, science, flocculation, Physics, Chemistry", "youtube_id": "5uuQ77vAV_U", "readable_id": "flocculation"}, "L3nH3KTNS3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L3nH3KTNS3E.mp4/L3nH3KTNS3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L3nH3KTNS3E.mp4/L3nH3KTNS3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L3nH3KTNS3E.m3u8/L3nH3KTNS3E.m3u8"}, "path": "khan/test-prep/mcat/cells/cell-theory/history-and-development-of-cell-theory/", "duration": 674, "id": "L3nH3KTNS3E", "title": "History and development of cell theory", "format": "mp4", "description": "", "slug": "history-and-development-of-cell-theory", "kind": "Video", "video_id": "L3nH3KTNS3E", "keywords": "", "youtube_id": "L3nH3KTNS3E", "readable_id": "history-and-development-of-cell-theory"}, "KWf5kSNPbz0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KWf5kSNPbz0.mp4/KWf5kSNPbz0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KWf5kSNPbz0.mp4/KWf5kSNPbz0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KWf5kSNPbz0.m3u8/KWf5kSNPbz0.m3u8"}, "path": "khan/science/discoveries-projects/robots/all-about-spout/spout_battery/", "duration": 110, "id": "KWf5kSNPbz0", "title": "Spout battery configuration and polarization", "format": "mp4", "description": "", "slug": "spout_battery", "kind": "Video", "video_id": "KWf5kSNPbz0", "keywords": "", "youtube_id": "KWf5kSNPbz0", "readable_id": "spout_battery"}, "SjY5UytlTTs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SjY5UytlTTs.mp4/SjY5UytlTTs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SjY5UytlTTs.mp4/SjY5UytlTTs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SjY5UytlTTs.m3u8/SjY5UytlTTs.m3u8"}, "duration": 487, "id": "SjY5UytlTTs", "title": "Magnitude and direction of vector sums", "format": "mp4", "description": "", "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/mag-dir-vec-sums-2/", "slug": "mag-dir-vec-sums-2", "kind": "Video", "video_id": "SjY5UytlTTs", "keywords": "", "youtube_id": "SjY5UytlTTs", "readable_id": "mag-dir-vec-sums-2"}, "Yz2OosyMTmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yz2OosyMTmY.mp4/Yz2OosyMTmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yz2OosyMTmY.mp4/Yz2OosyMTmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yz2OosyMTmY.m3u8/Yz2OosyMTmY.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/linear-algebra-simplifying-conditions-for-invertibility/", "duration": 397, "id": "Yz2OosyMTmY", "title": "Simplifying conditions for invertibility", "format": "mp4", "description": "Showing that a transformation is invertible if and only if rref(A) is equal to the identity matrix", "slug": "linear-algebra-simplifying-conditions-for-invertibility", "kind": "Video", "video_id": "Yz2OosyMTmY", "keywords": "identity, transformation, invertible", "youtube_id": "Yz2OosyMTmY", "readable_id": "linear-algebra-simplifying-conditions-for-invertibility"}, "uc2xgyjxKHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uc2xgyjxKHg.mp4/uc2xgyjxKHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uc2xgyjxKHg.mp4/uc2xgyjxKHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uc2xgyjxKHg.m3u8/uc2xgyjxKHg.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/curators-choice-browns-work/", "duration": 214, "id": "uc2xgyjxKHg", "title": "Pre-Raphaelites: Curator's choice - Ford Madox Brown's 'Work'", "format": "mp4", "description": "One of the most radical paintings of the Pre-Raphaelite movement is Work by Ford Madox Brown, which attempts to capture the entire social fabric of Victorian London in a single scene. Curator Tim Barringer explores its multiple stories. Ford Madox Brown's Work is one of over 150 works currently on show at Tate Britain in the exhibition Pre-Raphaelites: Victorian Avant-Garde (2013).", "slug": "curators-choice-browns-work", "kind": "Video", "video_id": "uc2xgyjxKHg", "keywords": "Pre-raphaleite, Tate", "youtube_id": "uc2xgyjxKHg", "readable_id": "curators-choice-browns-work"}, "uVWquWFjnCw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uVWquWFjnCw.mp4/uVWquWFjnCw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uVWquWFjnCw.mp4/uVWquWFjnCw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uVWquWFjnCw.m3u8/uVWquWFjnCw.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/first-and-second-ionization-energy/", "duration": 455, "id": "uVWquWFjnCw", "title": "First and second ionization energy", "format": "mp4", "description": "", "slug": "first-and-second-ionization-energy", "kind": "Video", "video_id": "uVWquWFjnCw", "keywords": "", "youtube_id": "uVWquWFjnCw", "readable_id": "first-and-second-ionization-energy"}, "z4vB44Rdq48": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z4vB44Rdq48.mp4/z4vB44Rdq48.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z4vB44Rdq48.mp4/z4vB44Rdq48.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z4vB44Rdq48.m3u8/z4vB44Rdq48.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/roverupdate_dec2/", "duration": 108, "id": "z4vB44Rdq48", "title": "Calcium-rich deposits found", "format": "mp4", "description": "First candidate drill site found", "slug": "roverupdate_dec2", "kind": "Video", "video_id": "z4vB44Rdq48", "keywords": "", "youtube_id": "z4vB44Rdq48", "readable_id": "roverupdate_dec2"}, "itnwiwRpw4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/itnwiwRpw4w.mp4/itnwiwRpw4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/itnwiwRpw4w.mp4/itnwiwRpw4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/itnwiwRpw4w.m3u8/itnwiwRpw4w.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-alcohols-tutorial/synthesis-of-alcohols-using-grignard-reagents-i/", "duration": 825, "id": "itnwiwRpw4w", "title": "Synthesis of alcohols using Grignard reagents I", "format": "mp4", "description": "", "slug": "synthesis-of-alcohols-using-grignard-reagents-i", "kind": "Video", "video_id": "itnwiwRpw4w", "keywords": "", "youtube_id": "itnwiwRpw4w", "readable_id": "synthesis-of-alcohols-using-grignard-reagents-i"}, "MarqSlyz-lU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MarqSlyz-lU.mp4/MarqSlyz-lU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MarqSlyz-lU.mp4/MarqSlyz-lU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MarqSlyz-lU.m3u8/MarqSlyz-lU.m3u8"}, "duration": 104, "id": "MarqSlyz-lU", "title": "Interpreting two way tables", "format": "mp4", "description": "", "path": "interpreting-two-way-tables/", "slug": "interpreting-two-way-tables", "kind": "Video", "video_id": "MarqSlyz-lU", "keywords": "", "youtube_id": "MarqSlyz-lU", "readable_id": "interpreting-two-way-tables"}, "3g6P0lRXotI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3g6P0lRXotI.mp4/3g6P0lRXotI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3g6P0lRXotI.mp4/3g6P0lRXotI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3g6P0lRXotI.m3u8/3g6P0lRXotI.m3u8"}, "duration": 209, "id": "3g6P0lRXotI", "title": "Futures introduction", "format": "mp4", "description": "Futures Introduction", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/futures-introduction/", "slug": "futures-introduction", "kind": "Video", "video_id": "3g6P0lRXotI", "keywords": "Futures, Introduction, marquee", "youtube_id": "3g6P0lRXotI", "readable_id": "futures-introduction"}, "ZN48Ub3k8uE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZN48Ub3k8uE.mp4/ZN48Ub3k8uE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZN48Ub3k8uE.mp4/ZN48Ub3k8uE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZN48Ub3k8uE.m3u8/ZN48Ub3k8uE.m3u8"}, "path": "khan/math/recreational-math/puzzles/brain-teasers/finding-heavier-ball/", "duration": 326, "id": "ZN48Ub3k8uE", "title": "Heavier ball", "format": "mp4", "description": "", "slug": "finding-heavier-ball", "kind": "Video", "video_id": "ZN48Ub3k8uE", "keywords": "", "youtube_id": "ZN48Ub3k8uE", "readable_id": "finding-heavier-ball"}, "PX7EZPcamk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PX7EZPcamk8.mp4/PX7EZPcamk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PX7EZPcamk8.mp4/PX7EZPcamk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PX7EZPcamk8.m3u8/PX7EZPcamk8.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-10/", "duration": 234, "id": "PX7EZPcamk8", "title": "10 Maximum triangle area given side lengths", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-10", "kind": "Video", "video_id": "PX7EZPcamk8", "keywords": "", "youtube_id": "PX7EZPcamk8", "readable_id": "sat-getting-ready-2-10"}, "PXKHyT__B2k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PXKHyT__B2k.mp4/PXKHyT__B2k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PXKHyT__B2k.mp4/PXKHyT__B2k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PXKHyT__B2k.m3u8/PXKHyT__B2k.m3u8"}, "duration": 188, "id": "PXKHyT__B2k", "title": "Reading stem and leaf plots", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/reading-stem-and-leaf-plots/", "slug": "reading-stem-and-leaf-plots", "kind": "Video", "video_id": "PXKHyT__B2k", "keywords": "", "youtube_id": "PXKHyT__B2k", "readable_id": "reading-stem-and-leaf-plots"}, "rxMF2RYzlto": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rxMF2RYzlto.mp4/rxMF2RYzlto.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rxMF2RYzlto.mp4/rxMF2RYzlto.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rxMF2RYzlto.m3u8/rxMF2RYzlto.m3u8"}, "path": "khan/partner-content/big-history-project/life/how-did-life-begin-change/bhp-earth-life-interact/", "duration": 598, "id": "rxMF2RYzlto", "title": "How Do Earth and Life Interact?", "format": "mp4", "description": "A look at the \"comfort zone\" humans live in, and the interplay of life and the biosphere.", "slug": "bhp-earth-life-interact", "kind": "Video", "video_id": "rxMF2RYzlto", "keywords": "", "youtube_id": "rxMF2RYzlto", "readable_id": "bhp-earth-life-interact"}, "cYUVtdpTlEo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cYUVtdpTlEo.mp4/cYUVtdpTlEo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cYUVtdpTlEo.mp4/cYUVtdpTlEo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cYUVtdpTlEo.m3u8/cYUVtdpTlEo.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/caillebotte-man-at-his-bath-1884/", "duration": 256, "id": "cYUVtdpTlEo", "title": "Caillebotte, Man at his Bath", "format": "mp4", "description": "Gustave Caillebotte, Man at his Bath, 1884, oil on canvas, 57 x 45 in. (144.8 x 114.3 cm), (Private Collection, on loan to the National Gallery, London) Speakers: Dr. Parme Giuntini, Director of Art History, Otis College of Art and Design Dr. Robert Summers, Lecturer, Otis College of Art and Design", "slug": "caillebotte-man-at-his-bath-1884", "kind": "Video", "video_id": "cYUVtdpTlEo", "keywords": "smarthistory, art history, caillebotte, impressionism, National Gallery", "youtube_id": "cYUVtdpTlEo", "readable_id": "caillebotte-man-at-his-bath-1884"}, "-6KzZKuQ1lk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-6KzZKuQ1lk.mp4/-6KzZKuQ1lk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-6KzZKuQ1lk.mp4/-6KzZKuQ1lk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-6KzZKuQ1lk.m3u8/-6KzZKuQ1lk.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/classical-conditioning-neutral-conditioned-and-unconditioned-stimuli-and-responses/", "duration": 347, "id": "-6KzZKuQ1lk", "title": "Classical conditioning: Neutral, conditioned, and unconditioned stimuli and responses", "format": "mp4", "description": "", "slug": "classical-conditioning-neutral-conditioned-and-unconditioned-stimuli-and-responses", "kind": "Video", "video_id": "-6KzZKuQ1lk", "keywords": "", "youtube_id": "-6KzZKuQ1lk", "readable_id": "classical-conditioning-neutral-conditioned-and-unconditioned-stimuli-and-responses"}, "7WXijfIZh64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7WXijfIZh64.mp4/7WXijfIZh64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7WXijfIZh64.mp4/7WXijfIZh64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7WXijfIZh64.m3u8/7WXijfIZh64.m3u8"}, "duration": 248, "id": "7WXijfIZh64", "title": "Basic rate problem", "format": "mp4", "description": "Basic Rate Problem", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/basic-rate-problem/", "slug": "basic-rate-problem", "kind": "Video", "video_id": "7WXijfIZh64", "keywords": "U03_L2_T3_we2, Basic, Rate, Problem, CC_7_EE_3, CC_7_RP_1, CC_39336_F-IF_6", "youtube_id": "7WXijfIZh64", "readable_id": "basic-rate-problem"}, "0eu-3FIRRz8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0eu-3FIRRz8.mp4/0eu-3FIRRz8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0eu-3FIRRz8.mp4/0eu-3FIRRz8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0eu-3FIRRz8.m3u8/0eu-3FIRRz8.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/nerve-regulation-of-the-heart/increasing-ventricular-contractility-inotropic-effect/", "duration": 625, "id": "0eu-3FIRRz8", "title": "Increasing ventricular contractility - inotropic effect", "format": "mp4", "description": "Find out how the sympathetic nerves increase the heart's force of contraction and speed of relaxation! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "increasing-ventricular-contractility-inotropic-effect", "kind": "Video", "video_id": "0eu-3FIRRz8", "keywords": "", "youtube_id": "0eu-3FIRRz8", "readable_id": "increasing-ventricular-contractility-inotropic-effect"}, "PQ48N5jaG2w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PQ48N5jaG2w.mp4/PQ48N5jaG2w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PQ48N5jaG2w.mp4/PQ48N5jaG2w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PQ48N5jaG2w.m3u8/PQ48N5jaG2w.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/lead-storage-battery/", "duration": 546, "id": "PQ48N5jaG2w", "title": "Lead storage battery", "format": "mp4", "description": "", "slug": "lead-storage-battery", "kind": "Video", "video_id": "PQ48N5jaG2w", "keywords": "", "youtube_id": "PQ48N5jaG2w", "readable_id": "lead-storage-battery"}, "eQEUHxzLmDE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eQEUHxzLmDE.mp4/eQEUHxzLmDE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eQEUHxzLmDE.mp4/eQEUHxzLmDE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eQEUHxzLmDE.m3u8/eQEUHxzLmDE.m3u8"}, "path": "khan/partner-content/big-history-project/life/other-materials5/bhp-carbon-cycle/", "duration": 512, "id": "eQEUHxzLmDE", "title": "The Carbon Cycle", "format": "mp4", "description": "Carbon's ability to form chemical bonds is very important to the history of life on Earth and continues to influence our own future.", "slug": "bhp-carbon-cycle", "kind": "Video", "video_id": "eQEUHxzLmDE", "keywords": "", "youtube_id": "eQEUHxzLmDE", "readable_id": "bhp-carbon-cycle"}, "ZRMSHG18aMY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZRMSHG18aMY.mp4/ZRMSHG18aMY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZRMSHG18aMY.mp4/ZRMSHG18aMY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZRMSHG18aMY.m3u8/ZRMSHG18aMY.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial/sn1-vs-sn2-solvent-effects/", "duration": 631, "id": "ZRMSHG18aMY", "title": "Sn1 vs Sn2: Solvent effects", "format": "mp4", "description": "", "slug": "sn1-vs-sn2-solvent-effects", "kind": "Video", "video_id": "ZRMSHG18aMY", "keywords": "", "youtube_id": "ZRMSHG18aMY", "readable_id": "sn1-vs-sn2-solvent-effects"}, "gRKZaojKeP0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gRKZaojKeP0.mp4/gRKZaojKeP0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gRKZaojKeP0.mp4/gRKZaojKeP0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gRKZaojKeP0.m3u8/gRKZaojKeP0.m3u8"}, "duration": 473, "id": "gRKZaojKeP0", "title": "Angles formed between transversals and parallel lines", "format": "mp4", "description": "Angles of parallel lines", "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/angles-formed-between-transversals-and-parallel-lines/", "slug": "angles-formed-between-transversals-and-parallel-lines", "kind": "Video", "video_id": "gRKZaojKeP0", "keywords": "Angles, of, parallel, lines, transversal, CC_8_G_5", "youtube_id": "gRKZaojKeP0", "readable_id": "angles-formed-between-transversals-and-parallel-lines"}, "AjvLQJ6PIiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AjvLQJ6PIiU.mp4/AjvLQJ6PIiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AjvLQJ6PIiU.mp4/AjvLQJ6PIiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AjvLQJ6PIiU.m3u8/AjvLQJ6PIiU.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-levels/biodiversity-tree-of-life/discovering-the-tree-of-life/", "duration": 470, "id": "AjvLQJ6PIiU", "title": "Discovering the tree of life", "format": "mp4", "description": "", "slug": "discovering-the-tree-of-life", "kind": "Video", "video_id": "AjvLQJ6PIiU", "keywords": "", "youtube_id": "AjvLQJ6PIiU", "readable_id": "discovering-the-tree-of-life"}, "fnuIT7EhAvs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fnuIT7EhAvs.mp4/fnuIT7EhAvs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fnuIT7EhAvs.mp4/fnuIT7EhAvs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fnuIT7EhAvs.m3u8/fnuIT7EhAvs.m3u8"}, "duration": 84, "id": "fnuIT7EhAvs", "title": "Solving for a variable", "format": "mp4", "description": "Solving for a Variable", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solving_for_variable/solving-for-a-variable/", "slug": "solving-for-a-variable", "kind": "Video", "video_id": "fnuIT7EhAvs", "keywords": "u15_l3_t1_we1, Solving, for, Variable, CC_6_EE_2_c", "youtube_id": "fnuIT7EhAvs", "readable_id": "solving-for-a-variable"}, "vcn2ruTOwFo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vcn2ruTOwFo.mp4/vcn2ruTOwFo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vcn2ruTOwFo.mp4/vcn2ruTOwFo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vcn2ruTOwFo.m3u8/vcn2ruTOwFo.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/divisibility_and_factors/finding-factors-of-a-number/", "duration": 593, "id": "vcn2ruTOwFo", "title": "Finding factors of a number", "format": "mp4", "description": "To find the factors of a number means to find all the whole numbers that the number in question is divisible by. Can you help us find the factors in this example?", "slug": "finding-factors-of-a-number", "kind": "Video", "video_id": "vcn2ruTOwFo", "keywords": "U02_L1_T3_we2, Finding, Factors, of, Number, CC_3_OA_6, CC_4_OA_4, CC_6_NS_4, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_a", "youtube_id": "vcn2ruTOwFo", "readable_id": "finding-factors-of-a-number"}, "WAPZihVUmzE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WAPZihVUmzE.mp4/WAPZihVUmzE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WAPZihVUmzE.mp4/WAPZihVUmzE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WAPZihVUmzE.m3u8/WAPZihVUmzE.m3u8"}, "duration": 470, "id": "WAPZihVUmzE", "title": "Washer or ring method for vertical line rotation", "format": "mp4", "description": "Setting up the definite integral for the volume of a solid of revolution around a vertical line using the \"washer\" or \"ring\" method.", "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/washer-or-ring-method-for-vertical-line-rotation/", "slug": "washer-or-ring-method-for-vertical-line-rotation", "kind": "Video", "video_id": "WAPZihVUmzE", "keywords": "", "youtube_id": "WAPZihVUmzE", "readable_id": "washer-or-ring-method-for-vertical-line-rotation"}, "toKu2-qzJeM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/toKu2-qzJeM.mp4/toKu2-qzJeM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/toKu2-qzJeM.mp4/toKu2-qzJeM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/toKu2-qzJeM.m3u8/toKu2-qzJeM.m3u8"}, "duration": 185, "id": "toKu2-qzJeM", "title": "Sphereflakes", "format": "mp4", "description": "Folding and cutting spheres.\n\nAwesome symmetry balls include card constructions by George Hart, which you can learn about here (and others are on georgehart.com): http://youtu.be/YBUEYrzMijA\nand the Gardner Ball by Oskar van Deventer with design by Scott Kim made in honor of Martin Gardner, which you can learn about here: http://youtu.be/rVHXlltXIlI\nand the Wolfram rhombic hexacontahedron thingy, and others!", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/sphereflakes/", "slug": "sphereflakes", "kind": "Video", "video_id": "toKu2-qzJeM", "keywords": "", "youtube_id": "toKu2-qzJeM", "readable_id": "sphereflakes"}, "ujYRgDi3Lz8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ujYRgDi3Lz8.mp4/ujYRgDi3Lz8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ujYRgDi3Lz8.mp4/ujYRgDi3Lz8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ujYRgDi3Lz8.m3u8/ujYRgDi3Lz8.m3u8"}, "path": "khan/humanities/art-1010/architecture-20c/gordon-bunshaft-for-skidmore-owings-and-merrill-lever-house-1951-52/", "duration": 237, "id": "ujYRgDi3Lz8", "title": "Gordon Bunshaft, Lever House", "format": "mp4", "description": "Gordon Bunshaft for Skidmore Owings and Merrill, Lever House, 1951-52 (390 Park Avenue, NYC) Speakers: Dr. Matthew A. Postal and Dr. Steven Zucker", "slug": "gordon-bunshaft-for-skidmore-owings-and-merrill-lever-house-1951-52", "kind": "Video", "video_id": "ujYRgDi3Lz8", "keywords": "Gordon Bunshaft, Bunshaft, Skidmore Owings and Merrill, SOM, Lever House, Lever Brothers, 1951, 1952, 390 Park Avenue, Architecture, Modern, International Style, Postwar, Glass and Steel, Matthew Postal", "youtube_id": "ujYRgDi3Lz8", "readable_id": "gordon-bunshaft-for-skidmore-owings-and-merrill-lever-house-1951-52"}, "a29qZSRDBdE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a29qZSRDBdE.mp4/a29qZSRDBdE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a29qZSRDBdE.mp4/a29qZSRDBdE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a29qZSRDBdE.m3u8/a29qZSRDBdE.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_proof/stokes-theorem-proof-part-5/", "duration": 328, "id": "a29qZSRDBdE", "title": "Stokes' theorem proof part 5", "format": "mp4", "description": "Working on the integrals...", "slug": "stokes-theorem-proof-part-5", "kind": "Video", "video_id": "a29qZSRDBdE", "keywords": "", "youtube_id": "a29qZSRDBdE", "readable_id": "stokes-theorem-proof-part-5"}, "3o82OwR78wU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3o82OwR78wU.mp4/3o82OwR78wU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3o82OwR78wU.mp4/3o82OwR78wU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3o82OwR78wU.m3u8/3o82OwR78wU.m3u8"}, "duration": 210, "id": "3o82OwR78wU", "title": "Actual option quotes", "format": "mp4", "description": "Actual Option Quotes", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/actual-option-quotes/", "slug": "actual-option-quotes", "kind": "Video", "video_id": "3o82OwR78wU", "keywords": "options, open, interest, expiration", "youtube_id": "3o82OwR78wU", "readable_id": "actual-option-quotes"}, "BvQeXZg8_rY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BvQeXZg8_rY.mp4/BvQeXZg8_rY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BvQeXZg8_rY.mp4/BvQeXZg8_rY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BvQeXZg8_rY.m3u8/BvQeXZg8_rY.m3u8"}, "duration": 172, "id": "BvQeXZg8_rY", "title": "\"Blazing Saddle\" with Donald La Rocca", "format": "mp4", "description": "Met curator Donald La Rocca on cultural continuity in Saddle (gser sga) from Derge, Tibet.\n\nLike the Surkhang saddle also in the Metropolitan Museum's collection (acc. no. 2005.427.1), this example demonstrates that the long tradition of finely made and ornately decorated ceremonial saddles flourished in Tibet until the mid-twentieth century. This saddle is distinguished by elaborate mounts of intricately modeled gilt copper set with turquoise. It was made in Derge (in present-day Ganzi Tibetan Autonomous Prefecture, Sichuan Province, China), famous for centuries for its metalwork. It is rare and important as a fine example of high-quality, late Derge metalwork made for a known patron: the Tibetan nobleman Yuthok Tashi Dundrup (1906\u20131983) commissioned the saddle when he assumed the post of govornor of Eastern Tibet in 1942.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "blazingsaddle/", "slug": "blazingsaddle", "kind": "Video", "video_id": "BvQeXZg8_rY", "keywords": "arms and armor, authority, metal, ornate, textile, wood Asia", "youtube_id": "BvQeXZg8_rY", "readable_id": "blazingsaddle"}, "J1HAY8E3gms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J1HAY8E3gms.mp4/J1HAY8E3gms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J1HAY8E3gms.mp4/J1HAY8E3gms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J1HAY8E3gms.m3u8/J1HAY8E3gms.m3u8"}, "duration": 288, "id": "J1HAY8E3gms", "title": "Multiplying binomials word problem", "format": "mp4", "description": "Multiplying binomials word problem", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/multiplying-polynomials-2/", "slug": "multiplying-polynomials-2", "kind": "Video", "video_id": "J1HAY8E3gms", "keywords": "U08_L2_T3_we2, Multiplying, Polynomials, CC_7_EE_4_a, CC_39336_A-APR_1", "youtube_id": "J1HAY8E3gms", "readable_id": "multiplying-polynomials-2"}, "9A8wM1UMLyo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9A8wM1UMLyo.mp4/9A8wM1UMLyo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9A8wM1UMLyo.mp4/9A8wM1UMLyo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9A8wM1UMLyo.m3u8/9A8wM1UMLyo.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/vector-component-in-direction/", "duration": 536, "id": "9A8wM1UMLyo", "title": "Force contribution while pushing box", "format": "mp4", "description": "", "slug": "vector-component-in-direction", "kind": "Video", "video_id": "9A8wM1UMLyo", "keywords": "", "youtube_id": "9A8wM1UMLyo", "readable_id": "vector-component-in-direction"}, "FBoYigdnLKQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FBoYigdnLKQ.mp4/FBoYigdnLKQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FBoYigdnLKQ.mp4/FBoYigdnLKQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FBoYigdnLKQ.m3u8/FBoYigdnLKQ.m3u8"}, "duration": 429, "id": "FBoYigdnLKQ", "title": "What is hypertension?", "format": "mp4", "description": "Learn the categories of hypertension for systolic and diastolic blood pressures. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/circulatory-system-diseases/hypertension/what-is-hypertension/", "slug": "what-is-hypertension", "kind": "Video", "video_id": "FBoYigdnLKQ", "keywords": "", "youtube_id": "FBoYigdnLKQ", "readable_id": "what-is-hypertension"}, "yiH6GoscimY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yiH6GoscimY.mp4/yiH6GoscimY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yiH6GoscimY.mp4/yiH6GoscimY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yiH6GoscimY.m3u8/yiH6GoscimY.m3u8"}, "duration": 245, "id": "yiH6GoscimY", "title": "Sine and cosine of complements example", "format": "mp4", "description": "", "path": "khan/math/trigonometry/basic-trigonometry/cc-trig-ratios-similarity/sine-and-cosine-of-complements-example/", "slug": "sine-and-cosine-of-complements-example", "kind": "Video", "video_id": "yiH6GoscimY", "keywords": "", "youtube_id": "yiH6GoscimY", "readable_id": "sine-and-cosine-of-complements-example"}, "nkOtOMNS5bQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nkOtOMNS5bQ.mp4/nkOtOMNS5bQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nkOtOMNS5bQ.mp4/nkOtOMNS5bQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nkOtOMNS5bQ.m3u8/nkOtOMNS5bQ.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermodynamics-mcat/pv-diagrams-part-2-isothermal-isometric-adiabatic-processes/", "duration": 780, "id": "nkOtOMNS5bQ", "title": "PV diagrams - part 2: Isothermal, isometric, adiabatic processes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "pv-diagrams-part-2-isothermal-isometric-adiabatic-processes", "kind": "Video", "video_id": "nkOtOMNS5bQ", "keywords": "", "youtube_id": "nkOtOMNS5bQ", "readable_id": "pv-diagrams-part-2-isothermal-isometric-adiabatic-processes"}, "Oga0K4reWoY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oga0K4reWoY.mp4/Oga0K4reWoY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oga0K4reWoY.mp4/Oga0K4reWoY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oga0K4reWoY.m3u8/Oga0K4reWoY.m3u8"}, "duration": 497, "id": "Oga0K4reWoY", "title": "Fetal structures in an adult", "format": "mp4", "description": "Find out what happens to those nifty fetal structures once we get older. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/fetal-structures-in-an-adult/", "slug": "fetal-structures-in-an-adult", "kind": "Video", "video_id": "Oga0K4reWoY", "keywords": "", "youtube_id": "Oga0K4reWoY", "readable_id": "fetal-structures-in-an-adult"}, "LlKvubIqHc8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LlKvubIqHc8.mp4/LlKvubIqHc8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LlKvubIqHc8.mp4/LlKvubIqHc8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LlKvubIqHc8.m3u8/LlKvubIqHc8.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/sine-taylor-series-at-0-maclaurin/", "duration": 393, "id": "LlKvubIqHc8", "title": "Sine Taylor series at 0 (Maclaurin)", "format": "mp4", "description": "Sine Taylor Series at 0 (Maclaurin)", "slug": "sine-taylor-series-at-0-maclaurin", "kind": "Video", "video_id": "LlKvubIqHc8", "keywords": "sin, cos, taylor", "youtube_id": "LlKvubIqHc8", "readable_id": "sine-taylor-series-at-0-maclaurin"}, "yKrp0sO3PJg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yKrp0sO3PJg.mp4/yKrp0sO3PJg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yKrp0sO3PJg.mp4/yKrp0sO3PJg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yKrp0sO3PJg.m3u8/yKrp0sO3PJg.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/copy-of-khan-academy-living-room-chats/scott-cook/", "duration": 2607, "id": "yKrp0sO3PJg", "title": "Scott Cook - Founder and Chairman of the Executive Committee, Intuit", "format": "mp4", "description": "", "slug": "scott-cook", "kind": "Video", "video_id": "yKrp0sO3PJg", "keywords": "", "youtube_id": "yKrp0sO3PJg", "readable_id": "scott-cook"}, "ck0pF7xub-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ck0pF7xub-k.mp4/ck0pF7xub-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ck0pF7xub-k.mp4/ck0pF7xub-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ck0pF7xub-k.m3u8/ck0pF7xub-k.m3u8"}, "path": "khan/college-admissions/paying-for-college/financial-aid-process/overview-of-fafsa-and-css-profile/", "duration": 635, "id": "ck0pF7xub-k", "title": "Overview of FAFSA and CSS PROFILE", "format": "mp4", "description": "FAFSA - Submit ASAP After Jan 1\u00a0| CSS PROFILE - Submit ASAP\u00a0", "slug": "overview-of-fafsa-and-css-profile", "kind": "Video", "video_id": "ck0pF7xub-k", "keywords": "", "youtube_id": "ck0pF7xub-k", "readable_id": "overview-of-fafsa-and-css-profile"}, "6bpoes4E8Vs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6bpoes4E8Vs.mp4/6bpoes4E8Vs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6bpoes4E8Vs.mp4/6bpoes4E8Vs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6bpoes4E8Vs.m3u8/6bpoes4E8Vs.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/what-young-earth-was-like/bhp-what-was-young-earth-like/", "duration": 670, "id": "6bpoes4E8Vs", "title": "What Was The Young Earth Like?", "format": "mp4", "description": "Travel back in time to the early days of Earth; explore its surface and atmosphere over the ages.", "slug": "bhp-what-was-young-earth-like", "kind": "Video", "video_id": "6bpoes4E8Vs", "keywords": "", "youtube_id": "6bpoes4E8Vs", "readable_id": "bhp-what-was-young-earth-like"}, "FogJFEEYuO0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FogJFEEYuO0.mp4/FogJFEEYuO0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FogJFEEYuO0.mp4/FogJFEEYuO0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FogJFEEYuO0.m3u8/FogJFEEYuO0.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/abs-value-pre-alg/constructing-and-interpreting-absolute-value/", "duration": 440, "id": "FogJFEEYuO0", "title": "Constructing and interpreting absolute value", "format": "mp4", "description": "Apply an understanding of absolute value and adding/subtracting negative numbers to solve word problems.", "slug": "constructing-and-interpreting-absolute-value", "kind": "Video", "video_id": "FogJFEEYuO0", "keywords": "", "youtube_id": "FogJFEEYuO0", "readable_id": "constructing-and-interpreting-absolute-value"}, "_ElAuQyw4uA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_ElAuQyw4uA.mp4/_ElAuQyw4uA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_ElAuQyw4uA.mp4/_ElAuQyw4uA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_ElAuQyw4uA.m3u8/_ElAuQyw4uA.m3u8"}, "duration": 306, "id": "_ElAuQyw4uA", "title": "Photoreceptors (rods vs cones)", "format": "mp4", "description": "In this video, I explore the similarities and differences between rods and cones. By Ronald Sahyouni. ", "path": "khan/test-prep/mcat/processing-the-environment/sight/photoreceptors-rods-cones/", "slug": "photoreceptors-rods-cones", "kind": "Video", "video_id": "_ElAuQyw4uA", "keywords": "photoreceptors, rods, cones, vision", "youtube_id": "_ElAuQyw4uA", "readable_id": "photoreceptors-rods-cones"}, "PvoigrzODdE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PvoigrzODdE.mp4/PvoigrzODdE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PvoigrzODdE.mp4/PvoigrzODdE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PvoigrzODdE.m3u8/PvoigrzODdE.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/intro-to-cell-division/somatic-germ-cells/", "duration": 575, "id": "PvoigrzODdE", "title": "Zygote differentiating into somatic and germ cells", "format": "mp4", "description": "", "slug": "somatic-germ-cells", "kind": "Video", "video_id": "PvoigrzODdE", "keywords": "", "youtube_id": "PvoigrzODdE", "readable_id": "somatic-germ-cells"}, "rRZR3nsiIeA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rRZR3nsiIeA.mp4/rRZR3nsiIeA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rRZR3nsiIeA.mp4/rRZR3nsiIeA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rRZR3nsiIeA.m3u8/rRZR3nsiIeA.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/yayoi-kusama/", "duration": 444, "id": "rRZR3nsiIeA", "title": "Yayoi Kusama", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nThe nine decades of Yayoi Kusama's life have taken her from rural Japan to the New York art scene to contemporary Tokyo, in a career in which she has continuously innovated and re-invented her style. Learn more about how the artist strove to establish herself both in and beyond Japan, and how she harnessed those struggles to forge a remarkable artistic legacy.", "slug": "yayoi-kusama", "kind": "Video", "video_id": "rRZR3nsiIeA", "keywords": "Tate", "youtube_id": "rRZR3nsiIeA", "readable_id": "yayoi-kusama"}, "0lOpqmTdtzk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0lOpqmTdtzk.mp4/0lOpqmTdtzk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0lOpqmTdtzk.mp4/0lOpqmTdtzk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0lOpqmTdtzk.m3u8/0lOpqmTdtzk.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/calculating-red-blood-cells-in-the-body-using-scientific-notation/", "duration": 286, "id": "0lOpqmTdtzk", "title": "Calculating red blood cells in the body using scientific notation", "format": "mp4", "description": "", "slug": "calculating-red-blood-cells-in-the-body-using-scientific-notation", "kind": "Video", "video_id": "0lOpqmTdtzk", "keywords": "", "youtube_id": "0lOpqmTdtzk", "readable_id": "calculating-red-blood-cells-in-the-body-using-scientific-notation"}, "fa-VZ-SDxgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fa-VZ-SDxgY.mp4/fa-VZ-SDxgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fa-VZ-SDxgY.mp4/fa-VZ-SDxgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fa-VZ-SDxgY.m3u8/fa-VZ-SDxgY.m3u8"}, "duration": 715, "id": "fa-VZ-SDxgY", "title": "Price and market capitalization", "format": "mp4", "description": "Introduction to price and market capitalization", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/price-and-market-capitalization/", "slug": "price-and-market-capitalization", "kind": "Video", "video_id": "fa-VZ-SDxgY", "keywords": "finance, investing, stocks, valuation", "youtube_id": "fa-VZ-SDxgY", "readable_id": "price-and-market-capitalization"}, "0D_rc92g27w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0D_rc92g27w.mp4/0D_rc92g27w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0D_rc92g27w.mp4/0D_rc92g27w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0D_rc92g27w.m3u8/0D_rc92g27w.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/rembrandt-nightwatch/", "duration": 398, "id": "0D_rc92g27w", "title": "Rembrandt, The Night Watch", "format": "mp4", "description": "Rembrandt van Rijn, The Night Watch (Militia Company of District II under the Command of Captain Frans Banninck Cocq), 1642, oil on canvas, 379.5 x 453.5 cm (Rijksmuseum, Amsterdam)\n\nSpeakers: Dr Beth Harris and Dr. Steven Zucker\n", "slug": "rembrandt-nightwatch", "kind": "Video", "video_id": "0D_rc92g27w", "keywords": "", "youtube_id": "0D_rc92g27w", "readable_id": "rembrandt-nightwatch"}, "JZRY6Eco7BM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JZRY6Eco7BM.mp4/JZRY6Eco7BM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JZRY6Eco7BM.mp4/JZRY6Eco7BM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JZRY6Eco7BM.m3u8/JZRY6Eco7BM.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/francis-bacon-triptych-august-1972-1972/", "duration": 324, "id": "JZRY6Eco7BM", "title": "Bacon, Triptych - August 1972", "format": "mp4", "description": "Francis Bacon, Triptych - August 1972, 1972, oil on canvas, 72 x 61 x 22 in. (183 x 155 x 64 cm), (Tate Modern, London)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker\n\nFor more: http://smarthistory.org/francis-bacon-triptych-august-1972.html", "slug": "francis-bacon-triptych-august-1972-1972", "kind": "Video", "video_id": "JZRY6Eco7BM", "keywords": "Francis Bacon, Triptych, Tate Modern, Art History, Art, Smarthistory", "youtube_id": "JZRY6Eco7BM", "readable_id": "francis-bacon-triptych-august-1972-1972"}, "IZgM4NPN4eU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IZgM4NPN4eU.mp4/IZgM4NPN4eU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IZgM4NPN4eU.mp4/IZgM4NPN4eU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IZgM4NPN4eU.m3u8/IZgM4NPN4eU.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/self-presentation-and-interacting-with-others/three-components-of-emotion-and-universal-emotions/", "duration": 483, "id": "IZgM4NPN4eU", "title": "Three components of emotion and universal emotions", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "three-components-of-emotion-and-universal-emotions", "kind": "Video", "video_id": "IZgM4NPN4eU", "keywords": "", "youtube_id": "IZgM4NPN4eU", "readable_id": "three-components-of-emotion-and-universal-emotions"}, "z9LxdqYntlU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z9LxdqYntlU.mp4/z9LxdqYntlU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z9LxdqYntlU.mp4/z9LxdqYntlU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z9LxdqYntlU.m3u8/z9LxdqYntlU.m3u8"}, "duration": 840, "id": "z9LxdqYntlU", "title": "Boiling point elevation and freezing point depression", "format": "mp4", "description": "Raising or lowering the boiling or freezing point of a solution by adding solute.", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/boiling-point-elevation-and-freezing-point-supression/", "slug": "boiling-point-elevation-and-freezing-point-supression", "kind": "Video", "video_id": "z9LxdqYntlU", "keywords": "chemistry, solution, molality", "youtube_id": "z9LxdqYntlU", "readable_id": "boiling-point-elevation-and-freezing-point-supression"}, "ey_b3aPsRl8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ey_b3aPsRl8.mp4/ey_b3aPsRl8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ey_b3aPsRl8.mp4/ey_b3aPsRl8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ey_b3aPsRl8.m3u8/ey_b3aPsRl8.m3u8"}, "duration": 233, "id": "ey_b3aPsRl8", "title": "Simplifying rational expressions 3", "format": "mp4", "description": "U11_L1_T1_we3 Simplifying Rational Expressions 3", "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying-rational-expressions-3/", "slug": "simplifying-rational-expressions-3", "kind": "Video", "video_id": "ey_b3aPsRl8", "keywords": "U11_L1_T1_we3, Simplifying, Rational, Expressions, CC_39336_A-APR_6, CC_39336_A-APR_7, CC_39336_A-CED_1, CC_39336_A-REI_2, CC_39336_A-SSE_2, CC_39336_F-IF_2, CC_39336_F-IF_5", "youtube_id": "ey_b3aPsRl8", "readable_id": "simplifying-rational-expressions-3"}, "dawGZs4TaTU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dawGZs4TaTU.mp4/dawGZs4TaTU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dawGZs4TaTU.mp4/dawGZs4TaTU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dawGZs4TaTU.m3u8/dawGZs4TaTU.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/super-yoga/super-yoga-plans-solving-systems-by-substitution/", "duration": 494, "id": "dawGZs4TaTU", "title": "Super Yoga plans: Solving systems by substitution", "format": "mp4", "description": "Continuing our Yoga plan debate by determining where the lines representing the two plans intersect", "slug": "super-yoga-plans-solving-systems-by-substitution", "kind": "Video", "video_id": "dawGZs4TaTU", "keywords": "", "youtube_id": "dawGZs4TaTU", "readable_id": "super-yoga-plans-solving-systems-by-substitution"}, "QP8ImP6NCk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QP8ImP6NCk8.mp4/QP8ImP6NCk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QP8ImP6NCk8.mp4/QP8ImP6NCk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QP8ImP6NCk8.m3u8/QP8ImP6NCk8.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/hemoglobin-moves-o2-and-co2/", "duration": 898, "id": "QP8ImP6NCk8", "title": "Hemoglobin moves O2 and CO2", "format": "mp4", "description": "Learn the two ways that oxygen moves from the lungs to the tissues, and the three ways that carbon dioxide returns from the tissues to the lungs. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "hemoglobin-moves-o2-and-co2", "kind": "Video", "video_id": "QP8ImP6NCk8", "keywords": "", "youtube_id": "QP8ImP6NCk8", "readable_id": "hemoglobin-moves-o2-and-co2"}, "Oqhe31kjlQM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oqhe31kjlQM.mp4/Oqhe31kjlQM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oqhe31kjlQM.mp4/Oqhe31kjlQM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oqhe31kjlQM.m3u8/Oqhe31kjlQM.m3u8"}, "duration": 618, "id": "Oqhe31kjlQM", "title": "Evolutionary development: Chicken teeth", "format": "mp4", "description": "Hank introduces us to the relatively new field of evolutionary developmental biology, which compares the developmental processes of different organisms to determine their ancestral relationship, and to discover how those processes evolved. Also fruit flies with eyes on their legs and chickens with teeth!", "path": "crash-course-biology-116/", "slug": "crash-course-biology-116", "kind": "Video", "video_id": "Oqhe31kjlQM", "keywords": "", "youtube_id": "Oqhe31kjlQM", "readable_id": "crash-course-biology-116"}, "4gwbyfERDrA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4gwbyfERDrA.mp4/4gwbyfERDrA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4gwbyfERDrA.mp4/4gwbyfERDrA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4gwbyfERDrA.m3u8/4gwbyfERDrA.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/fiona-rae/", "duration": 282, "id": "4gwbyfERDrA", "title": "Fiona Rae on paint and passion", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nYBA (Young British Artist) Fiona Rae\u2019s paintings are clever, lively, and full of restless energy. Her abstract canvases are an exuberant collision of painting styles: encrusted surfaces, brushy swathes and watery pools, along with kitsch cartoon elements, which somehow coalesce despite their differences. Similarly exuberant is Rae\u2019s method of painting, using an eight-foot-long palette, an array of vivid colours, and a cart full of brushes she uses to craft her canvases.\nMany years into her artistic career,\u00a0Rae admits she is still amazed by the possibilities of painting, and her passion for paint is evident in the way she speaks about it. Do you think that passion for a particular material can change the way an artist uses it?\n\nRead more about Fiona Rae and explore her work in the Tate Collection here.\n", "slug": "fiona-rae", "kind": "Video", "video_id": "4gwbyfERDrA", "keywords": "Tate", "youtube_id": "4gwbyfERDrA", "readable_id": "fiona-rae"}, "O9zSHs1TWMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O9zSHs1TWMM.mp4/O9zSHs1TWMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O9zSHs1TWMM.mp4/O9zSHs1TWMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O9zSHs1TWMM.m3u8/O9zSHs1TWMM.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/addition_carrying/why-carrying-works/", "duration": 150, "id": "O9zSHs1TWMM", "title": "Adding: why carrying works", "format": "mp4", "description": "Sometimes when we add, we carry our tens to the next column. Let's watch this so we can understand why it works.", "slug": "why-carrying-works", "kind": "Video", "video_id": "O9zSHs1TWMM", "keywords": "", "youtube_id": "O9zSHs1TWMM", "readable_id": "why-carrying-works"}, "6bQ6HJsAv4A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6bQ6HJsAv4A.mp4/6bQ6HJsAv4A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6bQ6HJsAv4A.mp4/6bQ6HJsAv4A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6bQ6HJsAv4A.m3u8/6bQ6HJsAv4A.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-measurement/on-unit-conversion/cm-to-meters/", "duration": 184, "id": "6bQ6HJsAv4A", "title": "Unit conversion: centimeters to meters", "format": "mp4", "description": "Which are smaller: centimeters or meters? If you know the answer to that question, then solving this problem gets a little easier. Let's convert centimeters to meters.", "slug": "cm-to-meters", "kind": "Video", "video_id": "6bQ6HJsAv4A", "keywords": "", "youtube_id": "6bQ6HJsAv4A", "readable_id": "cm-to-meters"}, "wZtNRT_-p7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wZtNRT_-p7E.mp4/wZtNRT_-p7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wZtNRT_-p7E.mp4/wZtNRT_-p7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wZtNRT_-p7E.m3u8/wZtNRT_-p7E.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens/subtract-tens-exercise/", "duration": 130, "id": "wZtNRT_-p7E", "title": "Subtract tens exercise", "format": "mp4", "description": "Learn how to add and subtract tens.", "slug": "subtract-tens-exercise", "kind": "Video", "video_id": "wZtNRT_-p7E", "keywords": "", "youtube_id": "wZtNRT_-p7E", "readable_id": "subtract-tens-exercise"}, "v6-Ijv3wOAM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v6-Ijv3wOAM.mp4/v6-Ijv3wOAM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v6-Ijv3wOAM.mp4/v6-Ijv3wOAM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v6-Ijv3wOAM.m3u8/v6-Ijv3wOAM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-throat-conditions/pharyngitis/", "duration": 406, "id": "v6-Ijv3wOAM", "title": "Pharyngitis", "format": "mp4", "description": "", "slug": "pharyngitis", "kind": "Video", "video_id": "v6-Ijv3wOAM", "keywords": "", "youtube_id": "v6-Ijv3wOAM", "readable_id": "pharyngitis"}, "ZVl1M3D2B80": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZVl1M3D2B80.mp4/ZVl1M3D2B80.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZVl1M3D2B80.mp4/ZVl1M3D2B80.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZVl1M3D2B80.m3u8/ZVl1M3D2B80.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pulmonary-hypertension/pulmonary-hypertension-symptoms-and-causes/", "duration": 417, "id": "ZVl1M3D2B80", "title": "Pulmonary hypertension symptoms and causes", "format": "mp4", "description": "", "slug": "pulmonary-hypertension-symptoms-and-causes", "kind": "Video", "video_id": "ZVl1M3D2B80", "keywords": "", "youtube_id": "ZVl1M3D2B80", "readable_id": "pulmonary-hypertension-symptoms-and-causes"}, "XBI7DqttyOQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XBI7DqttyOQ.mp4/XBI7DqttyOQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XBI7DqttyOQ.mp4/XBI7DqttyOQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XBI7DqttyOQ.m3u8/XBI7DqttyOQ.m3u8"}, "duration": 744, "id": "XBI7DqttyOQ", "title": "Debt loops rationale and effects", "format": "mp4", "description": "Positive and negative effects of China's devaluing of their currency", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/debt-loops-rationale-and-effects/", "slug": "debt-loops-rationale-and-effects", "kind": "Video", "video_id": "XBI7DqttyOQ", "keywords": "renminbi, china, currency, export, growth", "youtube_id": "XBI7DqttyOQ", "readable_id": "debt-loops-rationale-and-effects"}, "7NbzVvgDyqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7NbzVvgDyqw.mp4/7NbzVvgDyqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7NbzVvgDyqw.mp4/7NbzVvgDyqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7NbzVvgDyqw.m3u8/7NbzVvgDyqw.m3u8"}, "duration": 495, "id": "7NbzVvgDyqw", "title": "The ideal gas law", "format": "mp4", "description": "Gases are everywhere, and this is good news and bad news for chemists. The good news: when they are behaving themselves, it's extremely easy to describe their behavior theoretically, experimentally and mathematically. The bad news is they almost never behave themselves.\u00a0\nIn this episode of Crash Course Chemistry, Hank tells how the work of some amazing thinkers combined to produce the Ideal Gas Law, how none of those people were Robert Boyle, and how the ideal gas equation allows you to find out pressure, volume, temperature or number of moles. You'll also get a quick introduction to a few jargon-y phrases to help you sound like you know what you're talking about.\n\nWriter: Hank Green\nChief Editor: Blake de Pastino\nConsultants: Dr. Heiko Langner & Edi Gonzalez\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem12-ideal-gas-law/", "slug": "chem12-ideal-gas-law", "kind": "Video", "video_id": "7NbzVvgDyqw", "keywords": "", "youtube_id": "7NbzVvgDyqw", "readable_id": "chem12-ideal-gas-law"}, "1BGlbx67B6s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1BGlbx67B6s.mp4/1BGlbx67B6s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1BGlbx67B6s.mp4/1BGlbx67B6s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1BGlbx67B6s.m3u8/1BGlbx67B6s.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-6a/", "duration": 462, "id": "1BGlbx67B6s", "title": "2011 Calculus BC free response #6a", "format": "mp4", "description": "Taylor Series approximation of sin(x)", "slug": "2011-calculus-bc-free-response-6a", "kind": "Video", "video_id": "1BGlbx67B6s", "keywords": "calculus", "youtube_id": "1BGlbx67B6s", "readable_id": "2011-calculus-bc-free-response-6a"}, "wvwLy9ifmX0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wvwLy9ifmX0.mp4/wvwLy9ifmX0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wvwLy9ifmX0.mp4/wvwLy9ifmX0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wvwLy9ifmX0.m3u8/wvwLy9ifmX0.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/reactions-alcohols-tutorial/oxidation-of-alcohols-ii-examples/", "duration": 422, "id": "wvwLy9ifmX0", "title": "Oxidation of alcohols II: Examples", "format": "mp4", "description": "", "slug": "oxidation-of-alcohols-ii-examples", "kind": "Video", "video_id": "wvwLy9ifmX0", "keywords": "", "youtube_id": "wvwLy9ifmX0", "readable_id": "oxidation-of-alcohols-ii-examples"}, "9mU3MVtsqic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9mU3MVtsqic.mp4/9mU3MVtsqic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9mU3MVtsqic.mp4/9mU3MVtsqic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9mU3MVtsqic.m3u8/9mU3MVtsqic.m3u8"}, "duration": 145, "id": "9mU3MVtsqic", "title": "Compound events example using diagram", "format": "mp4", "description": "", "path": "khan/math/precalculus/prob_comb/independent_events_precalc/compound-events-diagram/", "slug": "compound-events-diagram", "kind": "Video", "video_id": "9mU3MVtsqic", "keywords": "", "youtube_id": "9mU3MVtsqic", "readable_id": "compound-events-diagram"}, "EFsaaK1w2Ao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EFsaaK1w2Ao.mp4/EFsaaK1w2Ao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EFsaaK1w2Ao.mp4/EFsaaK1w2Ao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EFsaaK1w2Ao.m3u8/EFsaaK1w2Ao.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/bernini-baldacchino/", "duration": 254, "id": "EFsaaK1w2Ao", "title": "Gian Lorenzo Bernini, Baldacchino", "format": "mp4", "description": "Bernini, Baldacchino, 1624-33, 100 feet high, gilded bronze (Saint Peter's Basilica, Vatican City, Rome)\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "bernini-baldacchino", "kind": "Video", "video_id": "EFsaaK1w2Ao", "keywords": "bernini, baldacchino, St. Peter's Basilica, Vatican, Rome", "youtube_id": "EFsaaK1w2Ao", "readable_id": "bernini-baldacchino"}, "1p0NHR5w0Lc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1p0NHR5w0Lc.mp4/1p0NHR5w0Lc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1p0NHR5w0Lc.mp4/1p0NHR5w0Lc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1p0NHR5w0Lc.m3u8/1p0NHR5w0Lc.m3u8"}, "duration": 507, "id": "1p0NHR5w0Lc", "title": "Trapezoidal approximation of area under curve", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/trapezoidal-approximation-of-area-under-curve/", "slug": "trapezoidal-approximation-of-area-under-curve", "kind": "Video", "video_id": "1p0NHR5w0Lc", "keywords": "", "youtube_id": "1p0NHR5w0Lc", "readable_id": "trapezoidal-approximation-of-area-under-curve"}, "Vqce2dtg45U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vqce2dtg45U.mp4/Vqce2dtg45U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vqce2dtg45U.mp4/Vqce2dtg45U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vqce2dtg45U.m3u8/Vqce2dtg45U.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/countercurrent-multiplication-in-the-kidney/", "duration": 653, "id": "Vqce2dtg45U", "title": "Countercurrent multiplication in the kidney", "format": "mp4", "description": "", "slug": "countercurrent-multiplication-in-the-kidney", "kind": "Video", "video_id": "Vqce2dtg45U", "keywords": "", "youtube_id": "Vqce2dtg45U", "readable_id": "countercurrent-multiplication-in-the-kidney"}, "mS7t91U9Qqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mS7t91U9Qqg.mp4/mS7t91U9Qqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mS7t91U9Qqg.mp4/mS7t91U9Qqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mS7t91U9Qqg.m3u8/mS7t91U9Qqg.m3u8"}, "duration": 227, "id": "mS7t91U9Qqg", "title": "Treasury bond prices and yields", "format": "mp4", "description": "Why yields go down when prices go up", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial/treasury-bond-prices-and-yields/", "slug": "treasury-bond-prices-and-yields", "kind": "Video", "video_id": "mS7t91U9Qqg", "keywords": "treasury, yield, debt", "youtube_id": "mS7t91U9Qqg", "readable_id": "treasury-bond-prices-and-yields"}, "57BiI_iD3-U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/57BiI_iD3-U.mp4/57BiI_iD3-U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/57BiI_iD3-U.mp4/57BiI_iD3-U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/57BiI_iD3-U.m3u8/57BiI_iD3-U.m3u8"}, "duration": 772, "id": "57BiI_iD3-U", "title": "Parametric equations 3", "format": "mp4", "description": "Removing the parameter from a more interesting example", "path": "khan/math/precalculus/parametric_equations/parametric/parametric-equations-3/", "slug": "parametric-equations-3", "kind": "Video", "video_id": "57BiI_iD3-U", "keywords": "parametric, equation, ellipse, CC_39336_F-BF_1_c", "youtube_id": "57BiI_iD3-U", "readable_id": "parametric-equations-3"}, "-YI6UC4qVEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-YI6UC4qVEY.mp4/-YI6UC4qVEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-YI6UC4qVEY.mp4/-YI6UC4qVEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-YI6UC4qVEY.m3u8/-YI6UC4qVEY.m3u8"}, "duration": 283, "id": "-YI6UC4qVEY", "title": "Heron's formula", "format": "mp4", "description": "Using Heron's Formula to determine the area of a triangle while only knowing the lengths of the sides", "path": "khan/math/geometry/basic-geometry/heron_formula_tutorial/heron-s-formula/", "slug": "heron-s-formula", "kind": "Video", "video_id": "-YI6UC4qVEY", "keywords": "heron's, formula, geometry, area, triangle", "youtube_id": "-YI6UC4qVEY", "readable_id": "heron-s-formula"}, "1abpdO27KTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1abpdO27KTo.mp4/1abpdO27KTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1abpdO27KTo.mp4/1abpdO27KTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1abpdO27KTo.m3u8/1abpdO27KTo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/youngs-double-slit-part-2/", "duration": 401, "id": "1abpdO27KTo", "title": "Young's Double slit part 2", "format": "mp4", "description": "", "slug": "youngs-double-slit-part-2", "kind": "Video", "video_id": "1abpdO27KTo", "keywords": "", "youtube_id": "1abpdO27KTo", "readable_id": "youngs-double-slit-part-2"}, "yGbh89CgM-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yGbh89CgM-c.mp4/yGbh89CgM-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yGbh89CgM-c.mp4/yGbh89CgM-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yGbh89CgM-c.m3u8/yGbh89CgM-c.m3u8"}, "duration": 165, "id": "yGbh89CgM-c", "title": "\"Atmospheric\" with Malcolm Daniel", "format": "mp4", "description": "Met curator Malcolm Daniel on humility in Roger Fenton\u2019s [Landscape with Clouds].\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit\u00a0Find an Educator Resource.\n", "path": "atmospheric/", "slug": "atmospheric", "kind": "Video", "video_id": "yGbh89CgM-c", "keywords": "light, nature, paper, photography, simplicity, transcendence, Europe", "youtube_id": "yGbh89CgM-c", "readable_id": "atmospheric"}, "3RDytvJYehY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3RDytvJYehY.mp4/3RDytvJYehY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3RDytvJYehY.mp4/3RDytvJYehY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3RDytvJYehY.m3u8/3RDytvJYehY.m3u8"}, "duration": 753, "id": "3RDytvJYehY", "title": "VSEPR for 3 electron clouds", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/vsepr-for-3-electron-clouds/", "slug": "vsepr-for-3-electron-clouds", "kind": "Video", "video_id": "3RDytvJYehY", "keywords": "", "youtube_id": "3RDytvJYehY", "readable_id": "vsepr-for-3-electron-clouds"}, "2WjGD3LZEWo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2WjGD3LZEWo.mp4/2WjGD3LZEWo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2WjGD3LZEWo.mp4/2WjGD3LZEWo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2WjGD3LZEWo.m3u8/2WjGD3LZEWo.m3u8"}, "duration": 136, "id": "2WjGD3LZEWo", "title": "Figuring out angles between transversal and parallel lines", "format": "mp4", "description": "", "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/figuring-out-angles-between-transversal-and-parallel-lines/", "slug": "figuring-out-angles-between-transversal-and-parallel-lines", "kind": "Video", "video_id": "2WjGD3LZEWo", "keywords": "", "youtube_id": "2WjGD3LZEWo", "readable_id": "figuring-out-angles-between-transversal-and-parallel-lines"}, "ALU24yhKJZw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ALU24yhKJZw.mp4/ALU24yhKJZw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ALU24yhKJZw.mp4/ALU24yhKJZw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ALU24yhKJZw.m3u8/ALU24yhKJZw.m3u8"}, "duration": 336, "id": "ALU24yhKJZw", "title": "Enzymatic inhibition and Lineweaver Burke plots", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/enzyme-kinetics/enzymatic-inhibition-and-lineweaver-burke-plots/", "slug": "enzymatic-inhibition-and-lineweaver-burke-plots", "kind": "Video", "video_id": "ALU24yhKJZw", "keywords": "", "youtube_id": "ALU24yhKJZw", "readable_id": "enzymatic-inhibition-and-lineweaver-burke-plots"}, "dbxJ6LD0344": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dbxJ6LD0344.mp4/dbxJ6LD0344.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dbxJ6LD0344.mp4/dbxJ6LD0344.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dbxJ6LD0344.m3u8/dbxJ6LD0344.m3u8"}, "duration": 241, "id": "dbxJ6LD0344", "title": "Complex conjugates example", "format": "mp4", "description": "Complex Conjugates", "path": "khan/math/precalculus/imaginary_complex_precalc/multiplying-dividing-complex/complex-conjugates-example/", "slug": "complex-conjugates-example", "kind": "Video", "video_id": "dbxJ6LD0344", "keywords": "u16_l4_t2_we4, Complex, Conjugates", "youtube_id": "dbxJ6LD0344", "readable_id": "complex-conjugates-example"}, "59UeshgSuEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/59UeshgSuEE.mp4/59UeshgSuEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/59UeshgSuEE.mp4/59UeshgSuEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/59UeshgSuEE.m3u8/59UeshgSuEE.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/function-average-value/mean-value-theorem-integrals/", "duration": 547, "id": "59UeshgSuEE", "title": "Mean value theorem for integrals", "format": "mp4", "description": "", "slug": "mean-value-theorem-integrals", "kind": "Video", "video_id": "59UeshgSuEE", "keywords": "", "youtube_id": "59UeshgSuEE", "readable_id": "mean-value-theorem-integrals"}, "bRZmfc1YFsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bRZmfc1YFsQ.mp4/bRZmfc1YFsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bRZmfc1YFsQ.mp4/bRZmfc1YFsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bRZmfc1YFsQ.m3u8/bRZmfc1YFsQ.m3u8"}, "duration": 234, "id": "bRZmfc1YFsQ", "title": "Power rule", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/power_rule_tutorial/power-rule/", "slug": "power-rule", "kind": "Video", "video_id": "bRZmfc1YFsQ", "keywords": "", "youtube_id": "bRZmfc1YFsQ", "readable_id": "power-rule"}, "kGzXIbauGQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kGzXIbauGQk.mp4/kGzXIbauGQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kGzXIbauGQk.mp4/kGzXIbauGQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kGzXIbauGQk.m3u8/kGzXIbauGQk.m3u8"}, "duration": 74, "id": "kGzXIbauGQk", "title": "Plotting complex numbers on the complex plane", "format": "mp4", "description": "", "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/plotting-complex-numbers-on-the-complex-plane/", "slug": "plotting-complex-numbers-on-the-complex-plane", "kind": "Video", "video_id": "kGzXIbauGQk", "keywords": "", "youtube_id": "kGzXIbauGQk", "readable_id": "plotting-complex-numbers-on-the-complex-plane"}, "P1DJxuG7U9A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P1DJxuG7U9A.mp4/P1DJxuG7U9A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P1DJxuG7U9A.mp4/P1DJxuG7U9A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P1DJxuG7U9A.m3u8/P1DJxuG7U9A.m3u8"}, "duration": 320, "id": "P1DJxuG7U9A", "title": "Fancy algebra to find a limit and make a function continuous", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/continuity-limits/fancy-algebra-to-find-a-limit-and-make-a-function-continuous/", "slug": "fancy-algebra-to-find-a-limit-and-make-a-function-continuous", "kind": "Video", "video_id": "P1DJxuG7U9A", "keywords": "", "youtube_id": "P1DJxuG7U9A", "readable_id": "fancy-algebra-to-find-a-limit-and-make-a-function-continuous"}, "6YU9HVS2GT0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6YU9HVS2GT0.mp4/6YU9HVS2GT0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6YU9HVS2GT0.mp4/6YU9HVS2GT0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6YU9HVS2GT0.m3u8/6YU9HVS2GT0.m3u8"}, "duration": 874, "id": "6YU9HVS2GT0", "title": "Health care costs in US vs Europe", "format": "mp4", "description": "A discussion about US health care costs", "path": "khan/science/health-and-medicine/health-care-system/health-care-costs-in-us-vs-europe/", "slug": "health-care-costs-in-us-vs-europe", "kind": "Video", "video_id": "6YU9HVS2GT0", "keywords": "marquee", "youtube_id": "6YU9HVS2GT0", "readable_id": "health-care-costs-in-us-vs-europe"}, "uBVhtGL9y88": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uBVhtGL9y88.mp4/uBVhtGL9y88.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uBVhtGL9y88.mp4/uBVhtGL9y88.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uBVhtGL9y88.m3u8/uBVhtGL9y88.m3u8"}, "duration": 643, "id": "uBVhtGL9y88", "title": "Example: Amplitude and period cosine transformations", "format": "mp4", "description": "Visualizing changes in amplitude and period for a cosine function", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/amplitude-and-period-cosine-transformations/", "slug": "amplitude-and-period-cosine-transformations", "kind": "Video", "video_id": "uBVhtGL9y88", "keywords": "trig, amplitude, period, cos", "youtube_id": "uBVhtGL9y88", "readable_id": "amplitude-and-period-cosine-transformations"}, "hShqXKpI6KA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hShqXKpI6KA.mp4/hShqXKpI6KA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hShqXKpI6KA.mp4/hShqXKpI6KA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hShqXKpI6KA.m3u8/hShqXKpI6KA.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/unit_conversion/performing-arithmetic-calculations-on-units-of-volume/", "duration": 323, "id": "hShqXKpI6KA", "title": "Unit conversion: arithmetic calculations on units of volume", "format": "mp4", "description": "Sometimes we have different units of measure and are asked to add them up. The answer can't be stated in ALL units so we have to pick one unit of measure. In this example, you'll practice that scenario with us.", "slug": "performing-arithmetic-calculations-on-units-of-volume", "kind": "Video", "video_id": "hShqXKpI6KA", "keywords": "U06_L1_T3_we2, Performing, arithmetic, calculations, on, units, of, volume, CC_3_MD_2, CC_4_MD_1, CC_4_MD_2, CC_5_MD_1, CC_5_MD_3, CC_5_MD_5, CC_5_MD_5_c, CC_6_RP_3_d, CC_7_G_6", "youtube_id": "hShqXKpI6KA", "readable_id": "performing-arithmetic-calculations-on-units-of-volume"}, "9DxrF6Ttws4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9DxrF6Ttws4.mp4/9DxrF6Ttws4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9DxrF6Ttws4.mp4/9DxrF6Ttws4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9DxrF6Ttws4.m3u8/9DxrF6Ttws4.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/one-step-equations/", "duration": 750, "id": "9DxrF6Ttws4", "title": "Simple equations: examples solving a variety of forms", "format": "mp4", "description": "Some quick examples to practice solving a variety of one step equations. All 4 operations (add, subtract, multiple, divide) are paired with variables.", "slug": "one-step-equations", "kind": "Video", "video_id": "9DxrF6Ttws4", "keywords": "One, Step, Equations, CC_39336_A-REI_3", "youtube_id": "9DxrF6Ttws4", "readable_id": "one-step-equations"}, "jqpQPxWj8gE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jqpQPxWj8gE.mp4/jqpQPxWj8gE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jqpQPxWj8gE.mp4/jqpQPxWj8gE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jqpQPxWj8gE.m3u8/jqpQPxWj8gE.m3u8"}, "duration": 729, "id": "jqpQPxWj8gE", "title": "Forehead numbers brain teaser", "format": "mp4", "description": "The perfect logicians are at it again.", "path": "khan/math/recreational-math/puzzles/brain-teasers/forehead-numbers-brain-teaser/", "slug": "forehead-numbers-brain-teaser", "kind": "Video", "video_id": "jqpQPxWj8gE", "keywords": "logic, brain, teaser, math", "youtube_id": "jqpQPxWj8gE", "readable_id": "forehead-numbers-brain-teaser"}, "Psl3LWRAysQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Psl3LWRAysQ.mp4/Psl3LWRAysQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Psl3LWRAysQ.mp4/Psl3LWRAysQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Psl3LWRAysQ.m3u8/Psl3LWRAysQ.m3u8"}, "path": "khan/computing/computer-programming/meet-the-computing-professional/welcome-meet-the-computing-professional/", "duration": 52, "id": "Psl3LWRAysQ", "title": "Welcome to \"Meet the Professional\"!", "format": "mp4", "description": "Pamela welcomes you to our new series about computing professionals.", "slug": "welcome-meet-the-computing-professional", "kind": "Video", "video_id": "Psl3LWRAysQ", "keywords": "", "youtube_id": "Psl3LWRAysQ", "readable_id": "welcome-meet-the-computing-professional"}, "r6hS_8nm1jM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r6hS_8nm1jM.mp4/r6hS_8nm1jM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r6hS_8nm1jM.mp4/r6hS_8nm1jM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r6hS_8nm1jM.m3u8/r6hS_8nm1jM.m3u8"}, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/abs-value-pre-alg/absolute-value-of-integers/", "duration": 142, "id": "r6hS_8nm1jM", "title": "Absolute value of integers", "format": "mp4", "description": "Let's mix a little algebra into our discussion of absolute value. What if we are looking for the |x|? If we know what x equals, we can do it. Follow along.", "slug": "absolute-value-of-integers", "kind": "Video", "video_id": "r6hS_8nm1jM", "keywords": "U09_L1_T2_we2, Absolute, Value, of, Integers, CC_6_NS_7, CC_6_NS_7_c", "youtube_id": "r6hS_8nm1jM", "readable_id": "absolute-value-of-integers"}, "XwIs1nlDQ2I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XwIs1nlDQ2I.mp4/XwIs1nlDQ2I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XwIs1nlDQ2I.mp4/XwIs1nlDQ2I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XwIs1nlDQ2I.m3u8/XwIs1nlDQ2I.m3u8"}, "duration": 230, "id": "XwIs1nlDQ2I", "title": "Green bean matherole", "format": "mp4", "description": "This Thanksgiving, make sure your table isn't missing the all-important green bean matherole. Pick your favorite vector field and have at it!\n\nMathed Potatoes: http://youtu.be/F5RyVWI4Onk\nBorromean Onion Rings: http://youtu.be/4tsjCND2ZfM\nTurduckenen-duckenen: http://youtu.be/pjrI91J6jOw", "path": "khan/math/recreational-math/vi-hart/thanksgiving-math/green-bean-matherole/", "slug": "green-bean-matherole", "kind": "Video", "video_id": "XwIs1nlDQ2I", "keywords": "", "youtube_id": "XwIs1nlDQ2I", "readable_id": "green-bean-matherole"}, "Kjlqcz5RiTw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kjlqcz5RiTw.mp4/Kjlqcz5RiTw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kjlqcz5RiTw.mp4/Kjlqcz5RiTw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kjlqcz5RiTw.m3u8/Kjlqcz5RiTw.m3u8"}, "duration": 2043, "id": "Kjlqcz5RiTw", "title": "Davis Guggenheim - Filmmaker", "format": "mp4", "description": "", "path": "davis-guggenheim/", "slug": "davis-guggenheim", "kind": "Video", "video_id": "Kjlqcz5RiTw", "keywords": "", "youtube_id": "Kjlqcz5RiTw", "readable_id": "davis-guggenheim"}, "z9s_uJlG3b8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z9s_uJlG3b8.mp4/z9s_uJlG3b8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z9s_uJlG3b8.mp4/z9s_uJlG3b8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z9s_uJlG3b8.m3u8/z9s_uJlG3b8.m3u8"}, "path": "khan/humanities/art-americas/us-art-19c/realism-us/winslow-homer-the-fog-warning-halibut-fishing-1885/", "duration": 257, "id": "z9s_uJlG3b8", "title": "Homer, The Fog Warning (Halibut Fishing)", "format": "mp4", "description": "Winslow Homer, The Fog Warning (Halibut Fishing), 1885, oil on canvas, 30-1/4 x 48-1/2 inches / 76.83 x 123.19 cm (Museum of Fine Arts, Boston)", "slug": "winslow-homer-the-fog-warning-halibut-fishing-1885", "kind": "Video", "video_id": "z9s_uJlG3b8", "keywords": "Winslow Homer, Homer, The Fog Warning, Fog, Warning, Halibut, Fishing, 1885, Museum of Fine Arts, Boston, American, Painting, Atlantic, outer banks, dory, sublime, 19th century, realism, Maine, art history, art, Smarthistory, Google Art Project, Khan Academy, OER", "youtube_id": "z9s_uJlG3b8", "readable_id": "winslow-homer-the-fog-warning-halibut-fishing-1885"}, "U1lQbh21y1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U1lQbh21y1k.mp4/U1lQbh21y1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U1lQbh21y1k.mp4/U1lQbh21y1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U1lQbh21y1k.m3u8/U1lQbh21y1k.m3u8"}, "path": "khan/math/algebra/algebra-functions/average_rate_of_change/average-rate-of-change-example-3/", "duration": 140, "id": "U1lQbh21y1k", "title": "Finding average rate of change from table", "format": "mp4", "description": "", "slug": "average-rate-of-change-example-3", "kind": "Video", "video_id": "U1lQbh21y1k", "keywords": "", "youtube_id": "U1lQbh21y1k", "readable_id": "average-rate-of-change-example-3"}, "fCdT2z0JcU8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fCdT2z0JcU8.mp4/fCdT2z0JcU8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fCdT2z0JcU8.mp4/fCdT2z0JcU8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fCdT2z0JcU8.m3u8/fCdT2z0JcU8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/first-order-reaction-example/", "duration": 620, "id": "fCdT2z0JcU8", "title": "First-order reaction example", "format": "mp4", "description": "", "slug": "first-order-reaction-example", "kind": "Video", "video_id": "fCdT2z0JcU8", "keywords": "", "youtube_id": "fCdT2z0JcU8", "readable_id": "first-order-reaction-example"}, "eVnwEIvwmCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eVnwEIvwmCE.mp4/eVnwEIvwmCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eVnwEIvwmCE.mp4/eVnwEIvwmCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eVnwEIvwmCE.m3u8/eVnwEIvwmCE.m3u8"}, "duration": 141, "id": "eVnwEIvwmCE", "title": "De Wain Valentine's \"Gray Column\" and the Getty Conservation Institute", "format": "mp4", "description": "A short film about the installation of De Wain Valentine's Gray Column at the Getty Center.\u00a0Love art? Follow us on Google+", "path": "valentine-gray-column-getty-conservation-institute/", "slug": "valentine-gray-column-getty-conservation-institute", "kind": "Video", "video_id": "eVnwEIvwmCE", "keywords": "", "youtube_id": "eVnwEIvwmCE", "readable_id": "valentine-gray-column-getty-conservation-institute"}, "ry81_iSHt6E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ry81_iSHt6E.mp4/ry81_iSHt6E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ry81_iSHt6E.mp4/ry81_iSHt6E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ry81_iSHt6E.m3u8/ry81_iSHt6E.m3u8"}, "duration": 419, "id": "ry81_iSHt6E", "title": "Bernoulli distribution mean and variance formulas", "format": "mp4", "description": "Bernoulli Distribution Mean and Variance Formulas", "path": "khan/math/probability/statistics-inferential/margin-of-error/bernoulli-distribution-mean-and-variance-formulas/", "slug": "bernoulli-distribution-mean-and-variance-formulas", "kind": "Video", "video_id": "ry81_iSHt6E", "keywords": "Bernoulli, Distribution, Mean, and, Variance, Formulas", "youtube_id": "ry81_iSHt6E", "readable_id": "bernoulli-distribution-mean-and-variance-formulas"}, "1mnKCkmeaYs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1mnKCkmeaYs.mp4/1mnKCkmeaYs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1mnKCkmeaYs.mp4/1mnKCkmeaYs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1mnKCkmeaYs.m3u8/1mnKCkmeaYs.m3u8"}, "duration": 228, "id": "1mnKCkmeaYs", "title": "Verifying hedge with futures margin mechanics", "format": "mp4", "description": "Verifying Hedge with Futures Margin Mechanics", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/verifying-hedge-with-futures-margin-mechanics/", "slug": "verifying-hedge-with-futures-margin-mechanics", "kind": "Video", "video_id": "1mnKCkmeaYs", "keywords": "futures, hedge, margin", "youtube_id": "1mnKCkmeaYs", "readable_id": "verifying-hedge-with-futures-margin-mechanics"}, "1h4kW8RX-6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1h4kW8RX-6k.mp4/1h4kW8RX-6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1h4kW8RX-6k.mp4/1h4kW8RX-6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1h4kW8RX-6k.m3u8/1h4kW8RX-6k.m3u8"}, "duration": 424, "id": "1h4kW8RX-6k", "title": "Overview of neuron structure", "format": "mp4", "description": "This video introduces the structure and structural types of neurons.\u00a0 By Matt Jensen.", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neural-cells/overview-of-neuron-structure/", "slug": "overview-of-neuron-structure", "kind": "Video", "video_id": "1h4kW8RX-6k", "keywords": "", "youtube_id": "1h4kW8RX-6k", "readable_id": "overview-of-neuron-structure"}, "HbmePz_MktE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HbmePz_MktE.mp4/HbmePz_MktE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HbmePz_MktE.mp4/HbmePz_MktE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HbmePz_MktE.m3u8/HbmePz_MktE.m3u8"}, "duration": 77, "id": "HbmePz_MktE", "title": "Homeschool testimonial: Tim Peters", "format": "mp4", "description": "Tim and his daughters explain why they enjoy using Khan Academy in homeschool.", "path": "homeschool-testimonial-tim-peter/", "slug": "homeschool-testimonial-tim-peter", "kind": "Video", "video_id": "HbmePz_MktE", "keywords": "", "youtube_id": "HbmePz_MktE", "readable_id": "homeschool-testimonial-tim-peter"}, "FC50D7mQhGg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FC50D7mQhGg.mp4/FC50D7mQhGg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FC50D7mQhGg.mp4/FC50D7mQhGg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FC50D7mQhGg.m3u8/FC50D7mQhGg.m3u8"}, "duration": 177, "id": "FC50D7mQhGg", "title": "\"Celestial\" with Clare Vincent", "format": "mp4", "description": "Met curator Clare Vincent on art and science in Gerhard Emmoser\u2019s Celestial globe with clockwork.\n\nThis globe houses a movement made by Gerhard Emmoser, imperial clockmaker from 1566 until his death in 1584, who signed and dated the meridian ring. The movement, which has been extensively rebuilt, rotated in the celestial sphere and drove a small image of the sun along the path of the ecliptic. The hour was indicated on a dial mounted at the top of the globe's axis and the day of the year appeared on a calendar rotating in the instrument's horizon ring. The silver globe, with its exquisitely engraved constellations and Pegasus support, is the work of an anonymous goldsmith who was probably employed in the imperial workshops in Vienna or Prague.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a\u00a0related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "celestial/", "slug": "celestial", "kind": "Video", "video_id": "FC50D7mQhGg", "keywords": "calm, decorative arts, ingenuity, light, metal, transcendence, Europe, Travell, Eileen, European Sculpture and Decorative Arts", "youtube_id": "FC50D7mQhGg", "readable_id": "celestial"}, "HpDJBFflYKI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HpDJBFflYKI.mp4/HpDJBFflYKI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HpDJBFflYKI.mp4/HpDJBFflYKI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HpDJBFflYKI.m3u8/HpDJBFflYKI.m3u8"}, "path": "khan/partner-content/cas-biodiversity/cas-welcome/cal-academy-welcome/california-academy-of-sciences/", "duration": 10, "id": "HpDJBFflYKI", "title": "California Academy of Sciences", "format": "mp4", "description": "", "slug": "california-academy-of-sciences", "kind": "Video", "video_id": "HpDJBFflYKI", "keywords": "", "youtube_id": "HpDJBFflYKI", "readable_id": "california-academy-of-sciences"}, "76gw8PA12ag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/76gw8PA12ag.mp4/76gw8PA12ag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/76gw8PA12ag.mp4/76gw8PA12ag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/76gw8PA12ag.m3u8/76gw8PA12ag.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/bonheur-sheep-in-the-highlands-1857/", "duration": 145, "id": "76gw8PA12ag", "title": "Bonheur, Sheep in the Highlands", "format": "mp4", "description": "Rosa Bonheur, Sheep in the Highlands, 1857, oil on canvas, 46 x 65 cm (Wallace Collection, London) Speakers: Dr. Beth Harris, Dr. Steven Zucker The Wallace Collection suggests that this painting is likely the result of a trip that the artist made to Scotland the previous year.", "slug": "bonheur-sheep-in-the-highlands-1857", "kind": "Video", "video_id": "76gw8PA12ag", "keywords": "Smarthistory, Art History, Bonheur, Rose Bonheur, Realism", "youtube_id": "76gw8PA12ag", "readable_id": "bonheur-sheep-in-the-highlands-1857"}, "ITVQrzDSekU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ITVQrzDSekU.mp4/ITVQrzDSekU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ITVQrzDSekU.mp4/ITVQrzDSekU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ITVQrzDSekU.m3u8/ITVQrzDSekU.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/ratio-problem-with-basic-algebra-new-hd/", "duration": 312, "id": "ITVQrzDSekU", "title": "Ratio problem with basic algebra", "format": "mp4", "description": "A slightly more involved ratio problem with algebra", "slug": "ratio-problem-with-basic-algebra-new-hd", "kind": "Video", "video_id": "ITVQrzDSekU", "keywords": "ratio, algebra, CC_7_RP_3", "youtube_id": "ITVQrzDSekU", "readable_id": "ratio-problem-with-basic-algebra-new-hd"}, "cBi4a1iSaPk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cBi4a1iSaPk.mp4/cBi4a1iSaPk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cBi4a1iSaPk.mp4/cBi4a1iSaPk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cBi4a1iSaPk.m3u8/cBi4a1iSaPk.m3u8"}, "duration": 376, "id": "cBi4a1iSaPk", "title": "Antiderivative of hairier expression", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/antiderivative-of-hairier-expression/", "slug": "antiderivative-of-hairier-expression", "kind": "Video", "video_id": "cBi4a1iSaPk", "keywords": "", "youtube_id": "cBi4a1iSaPk", "readable_id": "antiderivative-of-hairier-expression"}, "xoxUWGl8WFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xoxUWGl8WFs.mp4/xoxUWGl8WFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xoxUWGl8WFs.mp4/xoxUWGl8WFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xoxUWGl8WFs.m3u8/xoxUWGl8WFs.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/hybridization-microarray/", "duration": 537, "id": "xoxUWGl8WFs", "title": "Hybridization (microarray)", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "hybridization-microarray", "kind": "Video", "video_id": "xoxUWGl8WFs", "keywords": "", "youtube_id": "xoxUWGl8WFs", "readable_id": "hybridization-microarray"}, "3GL69IA2q4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3GL69IA2q4s.mp4/3GL69IA2q4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3GL69IA2q4s.mp4/3GL69IA2q4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3GL69IA2q4s.m3u8/3GL69IA2q4s.m3u8"}, "duration": 218, "id": "3GL69IA2q4s", "title": "Multiplying and dividing rational expressions 1", "format": "mp4", "description": "Multiplying and Dividing Rational Expressions 1", "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying-and-dividing-rational-expressions-1/", "slug": "multiplying-and-dividing-rational-expressions-1", "kind": "Video", "video_id": "3GL69IA2q4s", "keywords": "U11_L1_T2_we1, Multiplying, and, Dividing, Rational, Expressions, CC_39336_A-APR_7, CC_39336_F-IF_2", "youtube_id": "3GL69IA2q4s", "readable_id": "multiplying-and-dividing-rational-expressions-1"}, "GWsVTu1rgUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GWsVTu1rgUo.mp4/GWsVTu1rgUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GWsVTu1rgUo.mp4/GWsVTu1rgUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GWsVTu1rgUo.m3u8/GWsVTu1rgUo.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/renaud-laplance/kauffman-renaud-laplanche-1/", "duration": 197, "id": "GWsVTu1rgUo", "title": "Finding an Idea in the Mail", "format": "mp4", "description": "Renaud Laplanche was opening his mail when the idea for Lending Club came to him. He tells the story of seeing\nthe opportunity and creating the online Lending Club to fill the gap in the financial industries market. Laplache\u2019s\u00a0\ncompetitive nature extends to one-man sailboat racing and he compares the risks and rewards of racing with setting\u00a0\nthe pace as an entrepreneur.\n\u00a0", "slug": "kauffman-renaud-laplanche-1", "kind": "Video", "video_id": "GWsVTu1rgUo", "keywords": "", "youtube_id": "GWsVTu1rgUo", "readable_id": "kauffman-renaud-laplanche-1"}, "QuZMXVJNLCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QuZMXVJNLCo.mp4/QuZMXVJNLCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QuZMXVJNLCo.mp4/QuZMXVJNLCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QuZMXVJNLCo.m3u8/QuZMXVJNLCo.m3u8"}, "path": "khan/math/trigonometry/basic-trigonometry/cc-trig-ratios-similarity/similarity-to-define-sine-cosine-and-tangent/", "duration": 536, "id": "QuZMXVJNLCo", "title": "Similarity to define sine, cosine, and tangent", "format": "mp4", "description": "", "slug": "similarity-to-define-sine-cosine-and-tangent", "kind": "Video", "video_id": "QuZMXVJNLCo", "keywords": "", "youtube_id": "QuZMXVJNLCo", "readable_id": "similarity-to-define-sine-cosine-and-tangent"}, "yXg5CYuCcU4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yXg5CYuCcU4.mp4/yXg5CYuCcU4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yXg5CYuCcU4.mp4/yXg5CYuCcU4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yXg5CYuCcU4.m3u8/yXg5CYuCcU4.m3u8"}, "duration": 147, "id": "yXg5CYuCcU4", "title": "2003 AIME II problem 5 minor correction", "format": "mp4", "description": "2003 AIME II Problem 5 Minor Correction", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-5-minor-correction/", "slug": "2003-aime-ii-problem-5-minor-correction", "kind": "Video", "video_id": "yXg5CYuCcU4", "keywords": "2003, AIME, II, Problem, Minor, Correction", "youtube_id": "yXg5CYuCcU4", "readable_id": "2003-aime-ii-problem-5-minor-correction"}, "bZ8YAHDTFJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bZ8YAHDTFJ8.mp4/bZ8YAHDTFJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bZ8YAHDTFJ8.mp4/bZ8YAHDTFJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bZ8YAHDTFJ8.m3u8/bZ8YAHDTFJ8.m3u8"}, "duration": 232, "id": "bZ8YAHDTFJ8", "title": "Antiderivative of xcosx using integration by parts", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/integration-techniques/integration_by_parts/antiderivative-of-xcosx-using-integration-by-parts/", "slug": "antiderivative-of-xcosx-using-integration-by-parts", "kind": "Video", "video_id": "bZ8YAHDTFJ8", "keywords": "", "youtube_id": "bZ8YAHDTFJ8", "readable_id": "antiderivative-of-xcosx-using-integration-by-parts"}, "yTOS61GFq0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yTOS61GFq0g.mp4/yTOS61GFq0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yTOS61GFq0g.mp4/yTOS61GFq0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yTOS61GFq0g.m3u8/yTOS61GFq0g.m3u8"}, "path": "khan/computing/computer-programming/html-css/css-text-properties/css-zen-garden/", "duration": 92, "id": "yTOS61GFq0g", "title": "CSS Zen Garden", "format": "mp4", "description": "", "slug": "css-zen-garden", "kind": "Video", "video_id": "yTOS61GFq0g", "keywords": "", "youtube_id": "yTOS61GFq0g", "readable_id": "css-zen-garden"}, "dBGeri4eFv4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dBGeri4eFv4.mp4/dBGeri4eFv4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dBGeri4eFv4.mp4/dBGeri4eFv4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dBGeri4eFv4.m3u8/dBGeri4eFv4.m3u8"}, "duration": 167, "id": "dBGeri4eFv4", "title": "Constructing an equation for a proportional relationship", "format": "mp4", "description": "Write an equation that describes the proportional relationship between a table of two variables. We're building on our knowledge of algebra and ratios and proportions.", "path": "constructing-an-equation-for-a-proportional-relationship/", "slug": "constructing-an-equation-for-a-proportional-relationship", "kind": "Video", "video_id": "dBGeri4eFv4", "keywords": "", "youtube_id": "dBGeri4eFv4", "readable_id": "constructing-an-equation-for-a-proportional-relationship"}, "MkpbtCRwcCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MkpbtCRwcCE.mp4/MkpbtCRwcCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MkpbtCRwcCE.mp4/MkpbtCRwcCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MkpbtCRwcCE.m3u8/MkpbtCRwcCE.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/converting-percents-to-decimals-ex-1/", "duration": 83, "id": "MkpbtCRwcCE", "title": "Converting percents to decimals", "format": "mp4", "description": "Remember that \"per cent\" means \"per hundred.\" Knowing that, converting a percent to a decimal is done by dividing by a 100. We'll demonstrate.", "slug": "converting-percents-to-decimals-ex-1", "kind": "Video", "video_id": "MkpbtCRwcCE", "keywords": "", "youtube_id": "MkpbtCRwcCE", "readable_id": "converting-percents-to-decimals-ex-1"}, "C3QPTCwpIZo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C3QPTCwpIZo.mp4/C3QPTCwpIZo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C3QPTCwpIZo.mp4/C3QPTCwpIZo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C3QPTCwpIZo.m3u8/C3QPTCwpIZo.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/factoring-with-complex-numbers/factoring-sum-of-squares/", "duration": 152, "id": "C3QPTCwpIZo", "title": "Example factoring sum of squares", "format": "mp4", "description": "", "slug": "factoring-sum-of-squares", "kind": "Video", "video_id": "C3QPTCwpIZo", "keywords": "", "youtube_id": "C3QPTCwpIZo", "readable_id": "factoring-sum-of-squares"}, "mvoE6HYzBdY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mvoE6HYzBdY.mp4/mvoE6HYzBdY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mvoE6HYzBdY.mp4/mvoE6HYzBdY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mvoE6HYzBdY.m3u8/mvoE6HYzBdY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-4-7/", "duration": 147, "id": "mvoE6HYzBdY", "title": "7 Coordinate on number line", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-7", "kind": "Video", "video_id": "mvoE6HYzBdY", "keywords": "", "youtube_id": "mvoE6HYzBdY", "readable_id": "sat-2010-may-4-7"}, "wyxqq9Tc7GQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wyxqq9Tc7GQ.mp4/wyxqq9Tc7GQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wyxqq9Tc7GQ.mp4/wyxqq9Tc7GQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wyxqq9Tc7GQ.m3u8/wyxqq9Tc7GQ.m3u8"}, "duration": 759, "id": "wyxqq9Tc7GQ", "title": "Oxidation of alcohols", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/oxidation-of-alcohols/", "slug": "oxidation-of-alcohols", "kind": "Video", "video_id": "wyxqq9Tc7GQ", "keywords": "", "youtube_id": "wyxqq9Tc7GQ", "readable_id": "oxidation-of-alcohols"}, "3eL_6VWexuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3eL_6VWexuk.mp4/3eL_6VWexuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3eL_6VWexuk.mp4/3eL_6VWexuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3eL_6VWexuk.m3u8/3eL_6VWexuk.m3u8"}, "duration": 691, "id": "3eL_6VWexuk", "title": "Mitochondria, apoptosis, and oxidative stress", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/mitochondria-apoptosis-oxidative-stress/", "slug": "mitochondria-apoptosis-oxidative-stress", "kind": "Video", "video_id": "3eL_6VWexuk", "keywords": "", "youtube_id": "3eL_6VWexuk", "readable_id": "mitochondria-apoptosis-oxidative-stress"}, "Zn03u3-U1fk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zn03u3-U1fk.mp4/Zn03u3-U1fk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zn03u3-U1fk.mp4/Zn03u3-U1fk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zn03u3-U1fk.m3u8/Zn03u3-U1fk.m3u8"}, "path": "khan/test-prep/ap-art-history/indigenous-americas/sun-stone/", "duration": 389, "id": "Zn03u3-U1fk", "title": "The Sun Stone (The Calendar Stone)", "format": "mp4", "description": "The Sun Stone (or The Calendar Stone), Aztec, reign of Moctezuma II (1502-20), discovered in 1790 at the southeastern edge of the Plaza Mayor (Zocalo) in Mexico City, stone (unfinished), 358 cm diameter x 98 cm depth (Museo Nacional de Antropolog\u00eda)\n\nSpeakers: Dr. Lauren Kilroy-Ewbank and Dr. Beth Harris\n", "slug": "sun-stone", "kind": "Video", "video_id": "Zn03u3-U1fk", "keywords": "Calendar Aztec Mesoamerica Precolumbian", "youtube_id": "Zn03u3-U1fk", "readable_id": "sun-stone"}, "MfOoWkH2NUA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MfOoWkH2NUA.mp4/MfOoWkH2NUA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MfOoWkH2NUA.mp4/MfOoWkH2NUA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MfOoWkH2NUA.m3u8/MfOoWkH2NUA.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-14/", "duration": 205, "id": "MfOoWkH2NUA", "title": "14 Distance within cylinder", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-14", "kind": "Video", "video_id": "MfOoWkH2NUA", "keywords": "", "youtube_id": "MfOoWkH2NUA", "readable_id": "sat-getting-ready-2-14"}, "ctGkLYuUCvU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ctGkLYuUCvU.mp4/ctGkLYuUCvU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ctGkLYuUCvU.mp4/ctGkLYuUCvU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ctGkLYuUCvU.m3u8/ctGkLYuUCvU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/how-do-our-kidneys-work/", "duration": 478, "id": "ctGkLYuUCvU", "title": "Kidney function and anatomy", "format": "mp4", "description": "", "slug": "how-do-our-kidneys-work", "kind": "Video", "video_id": "ctGkLYuUCvU", "keywords": "", "youtube_id": "ctGkLYuUCvU", "readable_id": "how-do-our-kidneys-work"}, "DplUpe3oyWo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DplUpe3oyWo.mp4/DplUpe3oyWo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DplUpe3oyWo.mp4/DplUpe3oyWo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DplUpe3oyWo.m3u8/DplUpe3oyWo.m3u8"}, "duration": 248, "id": "DplUpe3oyWo", "title": "Age word problems 3", "format": "mp4", "description": "Part 3 of the presentation on age word problems", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/age-word-problems-3/", "slug": "age-word-problems-3", "kind": "Video", "video_id": "DplUpe3oyWo", "keywords": "algebra, word, problems, CC_7_RP_2_c", "youtube_id": "DplUpe3oyWo", "readable_id": "age-word-problems-3"}, "H3uBAVI4xC4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H3uBAVI4xC4.mp4/H3uBAVI4xC4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H3uBAVI4xC4.mp4/H3uBAVI4xC4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H3uBAVI4xC4.m3u8/H3uBAVI4xC4.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/france/nicolas-poussin-landscape-with-saint-john-on-patmos-1640/", "duration": 306, "id": "H3uBAVI4xC4", "title": "Poussin, Landscape with St. John", "format": "mp4", "description": "Nicolas Poussin,\u00a0Landscape with Saint John on PatmosSpeakp, 1640, oil on canvas, 100.3 x 136.4 cm / 39-1/2 x 53-5/8 inches (Art Institute of Chicago).\u00a0", "slug": "nicolas-poussin-landscape-with-saint-john-on-patmos-1640", "kind": "Video", "video_id": "H3uBAVI4xC4", "keywords": "Nicolas Poussin, Poussin, Landscape, Saint John, St. John, Patmos, 1640, Art Institute of Chicago, Evangelist, Classical, Stoic, Neo-Stoicism, Rome, Chicago, French, Baroque, art, painting, art history, smarthistory, Khan Academy, Google Art Project, OER", "youtube_id": "H3uBAVI4xC4", "readable_id": "nicolas-poussin-landscape-with-saint-john-on-patmos-1640"}, "xsxReqs1-4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xsxReqs1-4Q.mp4/xsxReqs1-4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xsxReqs1-4Q.mp4/xsxReqs1-4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xsxReqs1-4Q.m3u8/xsxReqs1-4Q.m3u8"}, "path": "khan/partner-content/big-history-project/life/other-materials5/bhp-intro-to-biology/", "duration": 355, "id": "xsxReqs1-4Q", "title": "Introduction to Biology", "format": "mp4", "description": "Ursula Goodenough takes a closer look at biology and the study of life.", "slug": "bhp-intro-to-biology", "kind": "Video", "video_id": "xsxReqs1-4Q", "keywords": "", "youtube_id": "xsxReqs1-4Q", "readable_id": "bhp-intro-to-biology"}, "7p2qfyqiXHc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7p2qfyqiXHc.mp4/7p2qfyqiXHc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7p2qfyqiXHc.mp4/7p2qfyqiXHc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7p2qfyqiXHc.m3u8/7p2qfyqiXHc.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/oxidation-reduction-review/formal-charge-on-carbon/", "duration": 576, "id": "7p2qfyqiXHc", "title": "Formal charge on carbon", "format": "mp4", "description": "How to calculate the formal charge on carbon", "slug": "formal-charge-on-carbon", "kind": "Video", "video_id": "7p2qfyqiXHc", "keywords": "", "youtube_id": "7p2qfyqiXHc", "readable_id": "formal-charge-on-carbon"}, "1c5HY3z4k8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1c5HY3z4k8M.mp4/1c5HY3z4k8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1c5HY3z4k8M.mp4/1c5HY3z4k8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1c5HY3z4k8M.m3u8/1c5HY3z4k8M.m3u8"}, "duration": 246, "id": "1c5HY3z4k8M", "title": "Example 2: Variables on both sides", "format": "mp4", "description": "Solving Equations 2", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/basic-equation-practice/solving-equations-2/", "slug": "solving-equations-2", "kind": "Video", "video_id": "1c5HY3z4k8M", "keywords": "U02_L1_T1_we2, Solving, Equations, CC_8_EE_7, CC_8_EE_7_b, CC_39336_A-REI_1, CC_39336_A-REI_3", "youtube_id": "1c5HY3z4k8M", "readable_id": "solving-equations-2"}, "DfO27juYly8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DfO27juYly8.mp4/DfO27juYly8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DfO27juYly8.mp4/DfO27juYly8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DfO27juYly8.m3u8/DfO27juYly8.m3u8"}, "duration": 662, "id": "DfO27juYly8", "title": "Cahn-Ingold-Prelog system for naming enantiomers", "format": "mp4", "description": "Cahn-Ingold-Prelog System for Naming Enantiomers", "path": "khan/science/organic-chemistry/stereochemistry-topic/chirality-r-s-system/cahn-ingold-prelog-system-for-naming-enantiomers/", "slug": "cahn-ingold-prelog-system-for-naming-enantiomers", "kind": "Video", "video_id": "DfO27juYly8", "keywords": "Cahn-Ingold-Prelog, System, for, Naming, Enantiomers", "youtube_id": "DfO27juYly8", "readable_id": "cahn-ingold-prelog-system-for-naming-enantiomers"}, "x3CbfUr449Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x3CbfUr449Y.mp4/x3CbfUr449Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x3CbfUr449Y.mp4/x3CbfUr449Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x3CbfUr449Y.m3u8/x3CbfUr449Y.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-of-a-weak-acid-with-a-strong-base/", "duration": 867, "id": "x3CbfUr449Y", "title": "Titration of a weak acid with a strong base", "format": "mp4", "description": "", "slug": "titration-of-a-weak-acid-with-a-strong-base", "kind": "Video", "video_id": "x3CbfUr449Y", "keywords": "", "youtube_id": "x3CbfUr449Y", "readable_id": "titration-of-a-weak-acid-with-a-strong-base"}, "O0uUVH8dRiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O0uUVH8dRiU.mp4/O0uUVH8dRiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O0uUVH8dRiU.mp4/O0uUVH8dRiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O0uUVH8dRiU.m3u8/O0uUVH8dRiU.m3u8"}, "duration": 772, "id": "O0uUVH8dRiU", "title": "Domain and range of a function", "format": "mp4", "description": null, "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain-and-range-of-a-function/", "slug": "domain-and-range-of-a-function", "kind": "Video", "video_id": "O0uUVH8dRiU", "keywords": "Function, Domain, Range, CC_39336_F-IF_5", "youtube_id": "O0uUVH8dRiU", "readable_id": "domain-and-range-of-a-function"}, "1RxngIFOGas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1RxngIFOGas.mp4/1RxngIFOGas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1RxngIFOGas.mp4/1RxngIFOGas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1RxngIFOGas.m3u8/1RxngIFOGas.m3u8"}, "duration": 141, "id": "1RxngIFOGas", "title": "Marina Abramovi\u0107: \"Cleaning the House\" workshop", "format": "mp4", "description": "Performance artists talk about their workshop with Marina Abramovi\u0107 in preparation for re-performing her works at MoMA. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-abramovic-cleaning-the-house/", "slug": "moma-abramovic-cleaning-the-house", "kind": "Video", "video_id": "1RxngIFOGas", "keywords": "", "youtube_id": "1RxngIFOGas", "readable_id": "moma-abramovic-cleaning-the-house"}, "A7zPgMV4eTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A7zPgMV4eTM.mp4/A7zPgMV4eTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A7zPgMV4eTM.mp4/A7zPgMV4eTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A7zPgMV4eTM.m3u8/A7zPgMV4eTM.m3u8"}, "path": "khan/math/pre-algebra/measurement/area-basics/introduction-to-area-and-unit-squares/", "duration": 257, "id": "A7zPgMV4eTM", "title": "Introduction to area and unit squares", "format": "mp4", "description": "Cover figures with square units to find their area.", "slug": "introduction-to-area-and-unit-squares", "kind": "Video", "video_id": "A7zPgMV4eTM", "keywords": "", "youtube_id": "A7zPgMV4eTM", "readable_id": "introduction-to-area-and-unit-squares"}, "2MYA8Ba2PvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2MYA8Ba2PvM.mp4/2MYA8Ba2PvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2MYA8Ba2PvM.mp4/2MYA8Ba2PvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2MYA8Ba2PvM.m3u8/2MYA8Ba2PvM.m3u8"}, "path": "khan/math/precalculus/prob_comb/independent_events_precalc/independent-events-3/", "duration": 148, "id": "2MYA8Ba2PvM", "title": "Die rolling probability with independent events", "format": "mp4", "description": "We hope you're not a gambler, but if you had to bet on whether you can roll even numbers three times in a row, you might want to figure this probability first.", "slug": "independent-events-3", "kind": "Video", "video_id": "2MYA8Ba2PvM", "keywords": "U12_L2_T2_we3, Independent, Events, CC_7_SP_6", "youtube_id": "2MYA8Ba2PvM", "readable_id": "independent-events-3"}, "jR_XZyhLSA8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jR_XZyhLSA8.mp4/jR_XZyhLSA8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jR_XZyhLSA8.mp4/jR_XZyhLSA8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jR_XZyhLSA8.m3u8/jR_XZyhLSA8.m3u8"}, "path": "khan/humanities/history/euro-hist/world-war-i-fighting/battles-of-verdun-somme-and-the-hindenburg-line/", "duration": 392, "id": "jR_XZyhLSA8", "title": "Battles of Verdun, Somme and the Hindenburg Line", "format": "mp4", "description": "", "slug": "battles-of-verdun-somme-and-the-hindenburg-line", "kind": "Video", "video_id": "jR_XZyhLSA8", "keywords": "", "youtube_id": "jR_XZyhLSA8", "readable_id": "battles-of-verdun-somme-and-the-hindenburg-line"}, "k9MEOgcc5KY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k9MEOgcc5KY.mp4/k9MEOgcc5KY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k9MEOgcc5KY.mp4/k9MEOgcc5KY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k9MEOgcc5KY.m3u8/k9MEOgcc5KY.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/partial-sum-notation/", "duration": 369, "id": "k9MEOgcc5KY", "title": "Partial sum notation", "format": "mp4", "description": "Partial sum notation", "slug": "partial-sum-notation", "kind": "Video", "video_id": "k9MEOgcc5KY", "keywords": "", "youtube_id": "k9MEOgcc5KY", "readable_id": "partial-sum-notation"}, "D5fmcpNygQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D5fmcpNygQk.mp4/D5fmcpNygQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D5fmcpNygQk.mp4/D5fmcpNygQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D5fmcpNygQk.m3u8/D5fmcpNygQk.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/more-involved-multiplying-decimals-example/", "duration": 265, "id": "D5fmcpNygQk", "title": "Multiplying challenging decimals", "format": "mp4", "description": "Sometimes multiplying really small decimals (with all those zeros!) can be a little intimidating. Watch as we show you a handy trick to simplify these problems and solve them.", "slug": "more-involved-multiplying-decimals-example", "kind": "Video", "video_id": "D5fmcpNygQk", "keywords": "", "youtube_id": "D5fmcpNygQk", "readable_id": "more-involved-multiplying-decimals-example"}, "zcnnZz2pCSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zcnnZz2pCSg.mp4/zcnnZz2pCSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zcnnZz2pCSg.mp4/zcnnZz2pCSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zcnnZz2pCSg.m3u8/zcnnZz2pCSg.m3u8"}, "duration": 288, "id": "zcnnZz2pCSg", "title": "Loop de loop answer part 2", "format": "mp4", "description": "Figuring out the car's average speed while completing the loop de loop", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/loop-de-loop-answer-part-2/", "slug": "loop-de-loop-answer-part-2", "kind": "Video", "video_id": "zcnnZz2pCSg", "keywords": "average, velocity", "youtube_id": "zcnnZz2pCSg", "readable_id": "loop-de-loop-answer-part-2"}, "2tYdClfLSCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2tYdClfLSCE.mp4/2tYdClfLSCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2tYdClfLSCE.mp4/2tYdClfLSCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2tYdClfLSCE.m3u8/2tYdClfLSCE.m3u8"}, "duration": 307, "id": "2tYdClfLSCE", "title": "Khan Academy at Oakland Unity High School", "format": "mp4", "description": "How Khan Academy helped increase student responsibility and motivation in east Oakland", "path": "oakland-unity/", "slug": "oakland-unity", "kind": "Video", "video_id": "2tYdClfLSCE", "keywords": "Oakland, Unity", "youtube_id": "2tYdClfLSCE", "readable_id": "oakland-unity"}, "bUCu7bPkZeI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bUCu7bPkZeI.mp4/bUCu7bPkZeI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bUCu7bPkZeI.mp4/bUCu7bPkZeI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bUCu7bPkZeI.m3u8/bUCu7bPkZeI.m3u8"}, "duration": 375, "id": "bUCu7bPkZeI", "title": "Resonance and dot structures", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/resonance-and-dot-structures/", "slug": "resonance-and-dot-structures", "kind": "Video", "video_id": "bUCu7bPkZeI", "keywords": "", "youtube_id": "bUCu7bPkZeI", "readable_id": "resonance-and-dot-structures"}, "ggpKKlsaeac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ggpKKlsaeac.mp4/ggpKKlsaeac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ggpKKlsaeac.mp4/ggpKKlsaeac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ggpKKlsaeac.m3u8/ggpKKlsaeac.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/brunelleschi-s-santo-spirito-florence-1428-81/", "duration": 235, "id": "ggpKKlsaeac", "title": "Brunelleschi, Santo Spirito", "format": "mp4", "description": "Filippo Brunelleschi's Santo Spirito, Florence, 1428-81\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "brunelleschi-s-santo-spirito-florence-1428-81", "kind": "Video", "video_id": "ggpKKlsaeac", "keywords": "art history, khan academy, Brunelleschi, Florence, Santo Spirito, Renaissance, Early Renaissance", "youtube_id": "ggpKKlsaeac", "readable_id": "brunelleschi-s-santo-spirito-florence-1428-81"}, "2t0003_sxtU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2t0003_sxtU.mp4/2t0003_sxtU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2t0003_sxtU.mp4/2t0003_sxtU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2t0003_sxtU.m3u8/2t0003_sxtU.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/linear-algebra-transpose-of-a-matrix/", "duration": 517, "id": "2t0003_sxtU", "title": "Transpose of a matrix", "format": "mp4", "description": "Transpose of a matrix", "slug": "linear-algebra-transpose-of-a-matrix", "kind": "Video", "video_id": "2t0003_sxtU", "keywords": "matrix, transpose", "youtube_id": "2t0003_sxtU", "readable_id": "linear-algebra-transpose-of-a-matrix"}, "tedzsRH0Jas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tedzsRH0Jas.mp4/tedzsRH0Jas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tedzsRH0Jas.mp4/tedzsRH0Jas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tedzsRH0Jas.m3u8/tedzsRH0Jas.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/piecewise-function-example/", "duration": 229, "id": "tedzsRH0Jas", "title": "Piecewise function formula from graph", "format": "mp4", "description": "Piecewise function example", "slug": "piecewise-function-example", "kind": "Video", "video_id": "tedzsRH0Jas", "keywords": "", "youtube_id": "tedzsRH0Jas", "readable_id": "piecewise-function-example"}, "ppIzSaP2jWI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ppIzSaP2jWI.mp4/ppIzSaP2jWI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ppIzSaP2jWI.mp4/ppIzSaP2jWI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ppIzSaP2jWI.m3u8/ppIzSaP2jWI.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/how-ancestors-evolved/bhp-threshold6/", "duration": 163, "id": "ppIzSaP2jWI", "title": "Threshold 6: Humans and Collective Learning", "format": "mp4", "description": "About 200,000 years ago, man evolved to become the most important force for change on the Earth's surface. What makes us so different from other living things? How did we, together, make something entirely new?", "slug": "bhp-threshold6", "kind": "Video", "video_id": "ppIzSaP2jWI", "keywords": "", "youtube_id": "ppIzSaP2jWI", "readable_id": "bhp-threshold6"}, "oYyh9gPUyCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oYyh9gPUyCA.mp4/oYyh9gPUyCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oYyh9gPUyCA.mp4/oYyh9gPUyCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oYyh9gPUyCA.m3u8/oYyh9gPUyCA.m3u8"}, "duration": 855, "id": "oYyh9gPUyCA", "title": "Human evolution", "format": "mp4", "description": "Many species of humans have existed besides Homo sapiens. This video covers the diversity of humans in the past and what it means to be human in terms of paleoanthropology.", "path": "human-evolution/", "slug": "human-evolution", "kind": "Video", "video_id": "oYyh9gPUyCA", "keywords": "", "youtube_id": "oYyh9gPUyCA", "readable_id": "human-evolution"}, "tf4C8x8e7HQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tf4C8x8e7HQ.mp4/tf4C8x8e7HQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tf4C8x8e7HQ.mp4/tf4C8x8e7HQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tf4C8x8e7HQ.m3u8/tf4C8x8e7HQ.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/volume-solids-known-cross-sectio/volume-solid-semicircle-cross-section/", "duration": 497, "id": "tf4C8x8e7HQ", "title": "Semi circle cross sections with triangular base", "format": "mp4", "description": "", "slug": "volume-solid-semicircle-cross-section", "kind": "Video", "video_id": "tf4C8x8e7HQ", "keywords": "", "youtube_id": "tf4C8x8e7HQ", "readable_id": "volume-solid-semicircle-cross-section"}, "mtL_plJXv3c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mtL_plJXv3c.mp4/mtL_plJXv3c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mtL_plJXv3c.mp4/mtL_plJXv3c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mtL_plJXv3c.m3u8/mtL_plJXv3c.m3u8"}, "path": "khan/economics-finance-domain/core-finance/housing/renting-v-buying/renting-vs-buying-detailed-analysis/", "duration": 917, "id": "mtL_plJXv3c", "title": "Renting vs. buying (detailed analysis)", "format": "mp4", "description": "Detailed analysis of the rent vs. buy decision.", "slug": "renting-vs-buying-detailed-analysis", "kind": "Video", "video_id": "mtL_plJXv3c", "keywords": "finance, mortgage, home, buying, interest, model", "youtube_id": "mtL_plJXv3c", "readable_id": "renting-vs-buying-detailed-analysis"}, "V7P2dnrWDeQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V7P2dnrWDeQ.mp4/V7P2dnrWDeQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V7P2dnrWDeQ.mp4/V7P2dnrWDeQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V7P2dnrWDeQ.m3u8/V7P2dnrWDeQ.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/hair_dryer/compare-motors/", "duration": 136, "id": "V7P2dnrWDeQ", "title": "Compare the hair dryer motor to the one you can build", "format": "mp4", "description": "In this video we compare our hair dryer motor to the motor we built.", "slug": "compare-motors", "kind": "Video", "video_id": "V7P2dnrWDeQ", "keywords": "Hair dryer motor, motor you can build, magnets, brushes, awesome fan", "youtube_id": "V7P2dnrWDeQ", "readable_id": "compare-motors"}, "5SO58NndlPI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5SO58NndlPI.mp4/5SO58NndlPI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5SO58NndlPI.mp4/5SO58NndlPI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5SO58NndlPI.m3u8/5SO58NndlPI.m3u8"}, "duration": 858, "id": "5SO58NndlPI", "title": "Frank-Starling mechanism", "format": "mp4", "description": "Carefully follow 5 different preload scenarios to see how each one will have a different effect on how actin and myosin line up. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/preload-and-afterload/frank-starling-mechanism/", "slug": "frank-starling-mechanism", "kind": "Video", "video_id": "5SO58NndlPI", "keywords": "", "youtube_id": "5SO58NndlPI", "readable_id": "frank-starling-mechanism"}, "K_uaUQY6MVQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K_uaUQY6MVQ.mp4/K_uaUQY6MVQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K_uaUQY6MVQ.mp4/K_uaUQY6MVQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K_uaUQY6MVQ.m3u8/K_uaUQY6MVQ.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-34/", "duration": 585, "id": "K_uaUQY6MVQ", "title": "GMAT: Data sufficiency 34", "format": "mp4", "description": "135-137, pg. 289", "slug": "gmat-data-sufficiency-34", "kind": "Video", "video_id": "K_uaUQY6MVQ", "keywords": "gmat, data, sufficiency, math", "youtube_id": "K_uaUQY6MVQ", "readable_id": "gmat-data-sufficiency-34"}, "NQSN00zL5gg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NQSN00zL5gg.mp4/NQSN00zL5gg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NQSN00zL5gg.mp4/NQSN00zL5gg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NQSN00zL5gg.m3u8/NQSN00zL5gg.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/adding-and-subtracting-negative-number-examples/", "duration": 247, "id": "NQSN00zL5gg", "title": "Learn how to add and subtract negative numbers", "format": "mp4", "description": "Use a number line to add and subtract integers.\u00a0", "slug": "adding-and-subtracting-negative-number-examples", "kind": "Video", "video_id": "NQSN00zL5gg", "keywords": "", "youtube_id": "NQSN00zL5gg", "readable_id": "adding-and-subtracting-negative-number-examples"}, "xlJYYM5TWoA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xlJYYM5TWoA.mp4/xlJYYM5TWoA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xlJYYM5TWoA.mp4/xlJYYM5TWoA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xlJYYM5TWoA.m3u8/xlJYYM5TWoA.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/fluids-in-motion/fluids-part-12/", "duration": 466, "id": "xlJYYM5TWoA", "title": "Fluids (part 12)", "format": "mp4", "description": "Complete example of a Bernoulli's Equation exercise.", "slug": "fluids-part-12", "kind": "Video", "video_id": "xlJYYM5TWoA", "keywords": "bernoulli's, equation, laminar, flow, flux, physics, fluid, motion", "youtube_id": "xlJYYM5TWoA", "readable_id": "fluids-part-12"}, "9UhChwcVWq8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9UhChwcVWq8.mp4/9UhChwcVWq8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9UhChwcVWq8.mp4/9UhChwcVWq8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9UhChwcVWq8.m3u8/9UhChwcVWq8.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-3-a-b/", "duration": 493, "id": "9UhChwcVWq8", "title": "2011 Calculus AB free response #3 (a & b)", "format": "mp4", "description": "Equation of a tangent line and area between curves", "slug": "2011-calculus-ab-free-response-3-a-b", "kind": "Video", "video_id": "9UhChwcVWq8", "keywords": "advanced, placement", "youtube_id": "9UhChwcVWq8", "readable_id": "2011-calculus-ab-free-response-3-a-b"}, "rPoqpQcgNv4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rPoqpQcgNv4.mp4/rPoqpQcgNv4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rPoqpQcgNv4.mp4/rPoqpQcgNv4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rPoqpQcgNv4.m3u8/rPoqpQcgNv4.m3u8"}, "duration": 737, "id": "rPoqpQcgNv4", "title": "IIT JEE circle hyperbola common tangent part 5", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 45 Circle Hyperbola Common Tangent Part 5", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-circle-hyperbola-common-tangent-part-5/", "slug": "iit-jee-circle-hyperbola-common-tangent-part-5", "kind": "Video", "video_id": "rPoqpQcgNv4", "keywords": "2010, IIT, JEE, Paper, Problem, 45, Circle, Hyperbola, Common, Tangent, Part", "youtube_id": "rPoqpQcgNv4", "readable_id": "iit-jee-circle-hyperbola-common-tangent-part-5"}, "ZS1OZj_oWao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZS1OZj_oWao.mp4/ZS1OZj_oWao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZS1OZj_oWao.mp4/ZS1OZj_oWao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZS1OZj_oWao.m3u8/ZS1OZj_oWao.m3u8"}, "duration": 254, "id": "ZS1OZj_oWao", "title": "Unit measurement word problem: distance (US customary)", "format": "mp4", "description": "We're applying what we've learned about converting units of measure in this word problem. We're also using arithmetic calculations. Let's give it a try!", "path": "unit-conversion-word-problem/", "slug": "unit-conversion-word-problem", "kind": "Video", "video_id": "ZS1OZj_oWao", "keywords": "", "youtube_id": "ZS1OZj_oWao", "readable_id": "unit-conversion-word-problem"}, "q87L9R9v274": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q87L9R9v274.mp4/q87L9R9v274.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q87L9R9v274.mp4/q87L9R9v274.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q87L9R9v274.m3u8/q87L9R9v274.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/eulers-method-tutorial/eulers-method/", "duration": 608, "id": "q87L9R9v274", "title": "Euler's method", "format": "mp4", "description": "", "slug": "eulers-method", "kind": "Video", "video_id": "q87L9R9v274", "keywords": "", "youtube_id": "q87L9R9v274", "readable_id": "eulers-method"}, "fXF6vm-6TBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fXF6vm-6TBE.mp4/fXF6vm-6TBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fXF6vm-6TBE.mp4/fXF6vm-6TBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fXF6vm-6TBE.m3u8/fXF6vm-6TBE.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/jason-christiansen/jason-christiansen-2/", "duration": 192, "id": "fXF6vm-6TBE", "title": "The World of Copy Cat Companies", "format": "mp4", "description": "Jason Christiansen has heard all the familiar comparisons between running a business and being a team player, but\u00a0as a former major league baseball player, he steps to the plate with a unique perspective. Christiansen talks about\u00a0building Rigid Industries and how the company deals with imitation product lines and compares the pressure of\u00a0\nstanding on the mound to standing before his team of employees.", "slug": "jason-christiansen-2", "kind": "Video", "video_id": "fXF6vm-6TBE", "keywords": "", "youtube_id": "fXF6vm-6TBE", "readable_id": "jason-christiansen-2"}, "n34jx1FIN8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n34jx1FIN8M.mp4/n34jx1FIN8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n34jx1FIN8M.mp4/n34jx1FIN8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n34jx1FIN8M.m3u8/n34jx1FIN8M.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/integration-using-trig-identities/trig-identies-for-trig-integral/", "duration": 333, "id": "n34jx1FIN8M", "title": "Trig identities for trig integral", "format": "mp4", "description": "", "slug": "trig-identies-for-trig-integral", "kind": "Video", "video_id": "n34jx1FIN8M", "keywords": "", "youtube_id": "n34jx1FIN8M", "readable_id": "trig-identies-for-trig-integral"}, "CYNUwiUzlPk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CYNUwiUzlPk.mp4/CYNUwiUzlPk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CYNUwiUzlPk.mp4/CYNUwiUzlPk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CYNUwiUzlPk.m3u8/CYNUwiUzlPk.m3u8"}, "duration": 389, "id": "CYNUwiUzlPk", "title": "Equilateral triangle sides and angles congruent", "format": "mp4", "description": "Showing that all of the angles of an equilateral triangle are 60 degrees", "path": "khan/math/geometry/congruent-triangles/isoscleles_equil/equilateral-triangle-sides-and-angles-congruent/", "slug": "equilateral-triangle-sides-and-angles-congruent", "kind": "Video", "video_id": "CYNUwiUzlPk", "keywords": "Equilateral, Triangle, Sides, and, Angles, Congruent", "youtube_id": "CYNUwiUzlPk", "readable_id": "equilateral-triangle-sides-and-angles-congruent"}, "OJhdag89Pq4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OJhdag89Pq4.mp4/OJhdag89Pq4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OJhdag89Pq4.mp4/OJhdag89Pq4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OJhdag89Pq4.m3u8/OJhdag89Pq4.m3u8"}, "duration": 321, "id": "OJhdag89Pq4", "title": "Co-factors, co-enzymes, and vitamins", "format": "mp4", "description": "Co-factors and co-enzymes assist enzymes in their function. We will learn what both co-enzymes and co-factors are, and how they might affect the catalysis of a reaction.\u00a0By Ross Firestone.", "path": "khan/test-prep/mcat/biomolecules/enzyme-structure-and-function/cofactors-coenzymes-and-vitamins/", "slug": "cofactors-coenzymes-and-vitamins", "kind": "Video", "video_id": "OJhdag89Pq4", "keywords": "", "youtube_id": "OJhdag89Pq4", "readable_id": "cofactors-coenzymes-and-vitamins"}, "CgRLm2srV1E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CgRLm2srV1E.mp4/CgRLm2srV1E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CgRLm2srV1E.mp4/CgRLm2srV1E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CgRLm2srV1E.m3u8/CgRLm2srV1E.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/roverupdate_dec/", "duration": 109, "id": "CgRLm2srV1E", "title": "Preparation for holidays", "format": "mp4", "description": "11 sols of activities are uploaded for the holidays", "slug": "roverupdate_dec", "kind": "Video", "video_id": "CgRLm2srV1E", "keywords": "", "youtube_id": "CgRLm2srV1E", "readable_id": "roverupdate_dec"}, "eYS3-ShEnbs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eYS3-ShEnbs.mp4/eYS3-ShEnbs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eYS3-ShEnbs.mp4/eYS3-ShEnbs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eYS3-ShEnbs.m3u8/eYS3-ShEnbs.m3u8"}, "path": "khan/partner-content/big-history-project/expansion-interconnection/expansion/crash-course-big-history-modernity/", "duration": 806, "id": "eYS3-ShEnbs", "title": "Crash Course Big History: Modernity", "format": "mp4", "description": "As civilizations grew larger, demand for resources grew along with it. This led people to spread out over larger territories in search of food, natural resources, and new ideas.", "slug": "crash-course-big-history-modernity", "kind": "Video", "video_id": "eYS3-ShEnbs", "keywords": "", "youtube_id": "eYS3-ShEnbs", "readable_id": "crash-course-big-history-modernity"}, "3AMENlm4pOw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3AMENlm4pOw.mp4/3AMENlm4pOw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3AMENlm4pOw.mp4/3AMENlm4pOw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3AMENlm4pOw.m3u8/3AMENlm4pOw.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-anemia/rn-microcytic-normocytic-macrocytic-anemias/", "duration": 357, "id": "3AMENlm4pOw", "title": "Microcytic, normocytic, and macrocytic anemias", "format": "mp4", "description": "", "slug": "rn-microcytic-normocytic-macrocytic-anemias", "kind": "Video", "video_id": "3AMENlm4pOw", "keywords": "", "youtube_id": "3AMENlm4pOw", "readable_id": "rn-microcytic-normocytic-macrocytic-anemias"}, "FfyNtrmmGEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FfyNtrmmGEI.mp4/FfyNtrmmGEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FfyNtrmmGEI.mp4/FfyNtrmmGEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FfyNtrmmGEI.m3u8/FfyNtrmmGEI.m3u8"}, "duration": 340, "id": "FfyNtrmmGEI", "title": "Spider's Arduino Nano", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/spider_bot/9-make-the-connnectors-for-spider-s-arduino-nano/", "slug": "9-make-the-connnectors-for-spider-s-arduino-nano", "kind": "Video", "video_id": "FfyNtrmmGEI", "keywords": "", "youtube_id": "FfyNtrmmGEI", "readable_id": "9-make-the-connnectors-for-spider-s-arduino-nano"}, "YURReI6OJsg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YURReI6OJsg.mp4/YURReI6OJsg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YURReI6OJsg.mp4/YURReI6OJsg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YURReI6OJsg.m3u8/YURReI6OJsg.m3u8"}, "duration": 618, "id": "YURReI6OJsg", "title": "Electron configurations 2", "format": "mp4", "description": "Figuring out configurations for the d-block elements", "path": "khan/science/chemistry/electronic-structure-of-atoms/electron-configurations-jay-sal/electron-configurations-2/", "slug": "electron-configurations-2", "kind": "Video", "video_id": "YURReI6OJsg", "keywords": "electron, configuration", "youtube_id": "YURReI6OJsg", "readable_id": "electron-configurations-2"}, "nRPLiTZAry4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nRPLiTZAry4.mp4/nRPLiTZAry4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nRPLiTZAry4.mp4/nRPLiTZAry4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nRPLiTZAry4.m3u8/nRPLiTZAry4.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/sir-john-everett-millais-christ-in-the-house-of-his-parents-1849-50/", "duration": 270, "id": "nRPLiTZAry4", "title": "Sir John Everett Millais, Christ in the House of His Parents", "format": "mp4", "description": "Sir John Everett Millais, Christ in the House of His Parents, 1849-50, oil on canvas, 864 x 1397 mm (Tate Britain, London)", "slug": "sir-john-everett-millais-christ-in-the-house-of-his-parents-1849-50", "kind": "Video", "video_id": "nRPLiTZAry4", "keywords": "Millais, GAP, Art History, Pre-Raphaelites, Victorian, Christ, Typology, Sir John Everett Millais, 1849, 1850, Tate Britain, London, Khan Academy, smarthistory, Google Art Project, OER, painting", "youtube_id": "nRPLiTZAry4", "readable_id": "sir-john-everett-millais-christ-in-the-house-of-his-parents-1849-50"}, "h2H6POZowiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h2H6POZowiU.mp4/h2H6POZowiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h2H6POZowiU.mp4/h2H6POZowiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h2H6POZowiU.m3u8/h2H6POZowiU.m3u8"}, "duration": 414, "id": "h2H6POZowiU", "title": "Neuron action potential description", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuron-membrane-potentials/neuron-action-potential-description/", "slug": "neuron-action-potential-description", "kind": "Video", "video_id": "h2H6POZowiU", "keywords": "", "youtube_id": "h2H6POZowiU", "readable_id": "neuron-action-potential-description"}, "ks1B1_umFk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ks1B1_umFk8.mp4/ks1B1_umFk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ks1B1_umFk8.mp4/ks1B1_umFk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ks1B1_umFk8.m3u8/ks1B1_umFk8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/electric-potential-at-a-point-in-space/", "duration": 675, "id": "ks1B1_umFk8", "title": "Electric potential at a point in space", "format": "mp4", "description": "", "slug": "electric-potential-at-a-point-in-space", "kind": "Video", "video_id": "ks1B1_umFk8", "keywords": "", "youtube_id": "ks1B1_umFk8", "readable_id": "electric-potential-at-a-point-in-space"}, "d1oO1kbtt4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d1oO1kbtt4s.mp4/d1oO1kbtt4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d1oO1kbtt4s.mp4/d1oO1kbtt4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d1oO1kbtt4s.m3u8/d1oO1kbtt4s.m3u8"}, "path": "khan/test-prep/ap-art-history/global-prehistory-ap/paleolithic-mesolithic-neolithic/working-jade/", "duration": 229, "id": "d1oO1kbtt4s", "title": "Working jade", "format": "mp4", "description": "This video explores the significance and working of jade in China. Learn more about jade on the Asian Art Museum's education website.", "slug": "working-jade", "kind": "Video", "video_id": "d1oO1kbtt4s", "keywords": "", "youtube_id": "d1oO1kbtt4s", "readable_id": "working-jade"}, "H-ykHosJW9c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H-ykHosJW9c.mp4/H-ykHosJW9c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H-ykHosJW9c.mp4/H-ykHosJW9c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H-ykHosJW9c.m3u8/H-ykHosJW9c.m3u8"}, "duration": 487, "id": "H-ykHosJW9c", "title": "Introduction to types of quadrilaterals", "format": "mp4", "description": "Discover attributes and features of four-sided shapes, including parallelograms, rhombuses, rectangles, and squares.", "path": "introduction-to-types-of-quadrilaterals/", "slug": "introduction-to-types-of-quadrilaterals", "kind": "Video", "video_id": "H-ykHosJW9c", "keywords": "", "youtube_id": "H-ykHosJW9c", "readable_id": "introduction-to-types-of-quadrilaterals"}, "t_EgAi574sM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t_EgAi574sM.mp4/t_EgAi574sM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t_EgAi574sM.mp4/t_EgAi574sM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t_EgAi574sM.m3u8/t_EgAi574sM.m3u8"}, "duration": 590, "id": "t_EgAi574sM", "title": "Euler's line proof", "format": "mp4", "description": "Proving the somewhat mystical result that the circumcenter, centroid and orthocenter", "path": "khan/math/geometry/triangle-properties/triangle_property_review/euler-s-line-proof/", "slug": "euler-s-line-proof", "kind": "Video", "video_id": "t_EgAi574sM", "keywords": "geometry", "youtube_id": "t_EgAi574sM", "readable_id": "euler-s-line-proof"}, "K_na_j1Msfg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K_na_j1Msfg.mp4/K_na_j1Msfg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K_na_j1Msfg.mp4/K_na_j1Msfg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K_na_j1Msfg.m3u8/K_na_j1Msfg.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/change_of_basis/lin-alg-changing-coordinate-systems-to-help-find-a-transformation-matrix/", "duration": 1739, "id": "K_na_j1Msfg", "title": "Changing coordinate systems to help find a transformation matrix", "format": "mp4", "description": "Changing our coordinate system to find the transformation matrix with respect to standard coordinates", "slug": "lin-alg-changing-coordinate-systems-to-help-find-a-transformation-matrix", "kind": "Video", "video_id": "K_na_j1Msfg", "keywords": "basis, coordinates, transformation, matrix", "youtube_id": "K_na_j1Msfg", "readable_id": "lin-alg-changing-coordinate-systems-to-help-find-a-transformation-matrix"}, "e1noAqa_Ukc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e1noAqa_Ukc.mp4/e1noAqa_Ukc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e1noAqa_Ukc.mp4/e1noAqa_Ukc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e1noAqa_Ukc.m3u8/e1noAqa_Ukc.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/robotic-arm-attached/", "duration": 133, "id": "e1noAqa_Ukc", "title": "Curiosity's arm", "format": "mp4", "description": "Introduction to the rover's arm", "slug": "robotic-arm-attached", "kind": "Video", "video_id": "e1noAqa_Ukc", "keywords": "", "youtube_id": "e1noAqa_Ukc", "readable_id": "robotic-arm-attached"}, "st6D5OdFV9M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/st6D5OdFV9M.mp4/st6D5OdFV9M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/st6D5OdFV9M.mp4/st6D5OdFV9M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/st6D5OdFV9M.m3u8/st6D5OdFV9M.m3u8"}, "duration": 640, "id": "st6D5OdFV9M", "title": "Column space of a matrix", "format": "mp4", "description": "Introduction to the column space of a matrix", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/column-space-of-a-matrix/", "slug": "column-space-of-a-matrix", "kind": "Video", "video_id": "st6D5OdFV9M", "keywords": "column, space, matrix", "youtube_id": "st6D5OdFV9M", "readable_id": "column-space-of-a-matrix"}, "CXCtqBlEZ7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CXCtqBlEZ7g.mp4/CXCtqBlEZ7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CXCtqBlEZ7g.mp4/CXCtqBlEZ7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CXCtqBlEZ7g.m3u8/CXCtqBlEZ7g.m3u8"}, "duration": 266, "id": "CXCtqBlEZ7g", "title": "Riemann sums and integrals", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/definite_integrals/riemann-sums-and-integrals/", "slug": "riemann-sums-and-integrals", "kind": "Video", "video_id": "CXCtqBlEZ7g", "keywords": "", "youtube_id": "CXCtqBlEZ7g", "readable_id": "riemann-sums-and-integrals"}, "RpbxIG5HTf4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RpbxIG5HTf4.mp4/RpbxIG5HTf4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RpbxIG5HTf4.mp4/RpbxIG5HTf4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RpbxIG5HTf4.m3u8/RpbxIG5HTf4.m3u8"}, "duration": 346, "id": "RpbxIG5HTf4", "title": "Power", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/power/", "slug": "power", "kind": "Video", "video_id": "RpbxIG5HTf4", "keywords": "", "youtube_id": "RpbxIG5HTf4", "readable_id": "power"}, "yDwIfYjKEeo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yDwIfYjKEeo.mp4/yDwIfYjKEeo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yDwIfYjKEeo.mp4/yDwIfYjKEeo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yDwIfYjKEeo.m3u8/yDwIfYjKEeo.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/lin-alg-orthogonal-matrices-preserve-angles-and-lengths/", "duration": 676, "id": "yDwIfYjKEeo", "title": "Orthogonal matrices preserve angles and lengths", "format": "mp4", "description": "Showing that orthogonal matrices preserve angles and lengths", "slug": "lin-alg-orthogonal-matrices-preserve-angles-and-lengths", "kind": "Video", "video_id": "yDwIfYjKEeo", "keywords": "orthogonal, matrix", "youtube_id": "yDwIfYjKEeo", "readable_id": "lin-alg-orthogonal-matrices-preserve-angles-and-lengths"}, "_-1m1GsuH1M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_-1m1GsuH1M.mp4/_-1m1GsuH1M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_-1m1GsuH1M.mp4/_-1m1GsuH1M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_-1m1GsuH1M.m3u8/_-1m1GsuH1M.m3u8"}, "path": "khan/test-prep/mcat/cells/embryology/gestation/", "duration": 265, "id": "_-1m1GsuH1M", "title": "Gestation", "format": "mp4", "description": "", "slug": "gestation", "kind": "Video", "video_id": "_-1m1GsuH1M", "keywords": "", "youtube_id": "_-1m1GsuH1M", "readable_id": "gestation"}, "EyORbCPUAd4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EyORbCPUAd4.mp4/EyORbCPUAd4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EyORbCPUAd4.mp4/EyORbCPUAd4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EyORbCPUAd4.m3u8/EyORbCPUAd4.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/change_of_basis/lin-alg-alternate-basis-tranformation-matrix-example-part-2/", "duration": 756, "id": "EyORbCPUAd4", "title": "Alternate basis transformation matrix example part 2", "format": "mp4", "description": "Showing that the transformation matrix with respect to basis B actually works. Brief point on why someone would want to operate in a different basis to begin with.", "slug": "lin-alg-alternate-basis-tranformation-matrix-example-part-2", "kind": "Video", "video_id": "EyORbCPUAd4", "keywords": "Linear, Algebra, basis, coordinates, transformation", "youtube_id": "EyORbCPUAd4", "readable_id": "lin-alg-alternate-basis-tranformation-matrix-example-part-2"}, "vbslqfcBpnU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vbslqfcBpnU.mp4/vbslqfcBpnU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vbslqfcBpnU.mp4/vbslqfcBpnU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vbslqfcBpnU.m3u8/vbslqfcBpnU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/ablation/", "duration": 423, "id": "vbslqfcBpnU", "title": "Ablation", "format": "mp4", "description": "", "slug": "ablation", "kind": "Video", "video_id": "vbslqfcBpnU", "keywords": "", "youtube_id": "vbslqfcBpnU", "readable_id": "ablation"}, "lM32TL7VnOw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lM32TL7VnOw.mp4/lM32TL7VnOw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lM32TL7VnOw.mp4/lM32TL7VnOw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lM32TL7VnOw.m3u8/lM32TL7VnOw.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/isaac-julien/", "duration": 223, "id": "lM32TL7VnOw", "title": "Isaac Julien, Ten Thousand Waves | MoMA", "format": "mp4", "description": "Artist Isaac Julien discusses his work, Ten Thousand Waves, and its installation.\u00a0To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "slug": "isaac-julien", "kind": "Video", "video_id": "lM32TL7VnOw", "keywords": "", "youtube_id": "lM32TL7VnOw", "readable_id": "isaac-julien"}, "pMoA65Dj-zk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pMoA65Dj-zk.mp4/pMoA65Dj-zk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pMoA65Dj-zk.mp4/pMoA65Dj-zk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pMoA65Dj-zk.m3u8/pMoA65Dj-zk.m3u8"}, "duration": 449, "id": "pMoA65Dj-zk", "title": "Representing structures of organic molecules", "format": "mp4", "description": "Representing Structures of Organic Molecules", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/representing-structures-of-organic-molecules/", "slug": "representing-structures-of-organic-molecules", "kind": "Video", "video_id": "pMoA65Dj-zk", "keywords": "Organic, Chemistry, molecular, structure", "youtube_id": "pMoA65Dj-zk", "readable_id": "representing-structures-of-organic-molecules"}, "H9eo5CTB74Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H9eo5CTB74Q.mp4/H9eo5CTB74Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H9eo5CTB74Q.mp4/H9eo5CTB74Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H9eo5CTB74Q.m3u8/H9eo5CTB74Q.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-teacher-experience/sscc-blended-roles/", "duration": 993, "id": "H9eo5CTB74Q", "title": "Rethinking the role of the teacher and the key shifts a teacher experiences", "format": "mp4", "description": "", "slug": "sscc-blended-roles", "kind": "Video", "video_id": "H9eo5CTB74Q", "keywords": "", "youtube_id": "H9eo5CTB74Q", "readable_id": "sscc-blended-roles"}, "d842mfzMMao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d842mfzMMao.mp4/d842mfzMMao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d842mfzMMao.mp4/d842mfzMMao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d842mfzMMao.m3u8/d842mfzMMao.m3u8"}, "duration": 203, "id": "d842mfzMMao", "title": "\"Dedicated to Myself\" with Doug Eklund", "format": "mp4", "description": "Met curator Doug Eklund on teenage irreverence in Dan Rochford\u2019s Girls I Have Known.\n\nThe invention and mass marketing of Kodak cameras in the late 1880s transformed photography into an everyday activity. By the turn of the century, amateurs everywhere were filling album pages with the fruits of their own labors.\u00a0Mass-media imagery suited the album format just as well. Sparked by advancements in photomechanical reproduction, a profusion of new illustrated magazines began to appear just after the turn of the century. This, in tandem with a burgeoning film industry\u2014well off the ground by 1910\u2014wrought dramatic changes in public perceptions of fame, sophistication, and ideal beauty.\n\nGirls I Have Known, compiled by Daniel Rochford when he was sixteen, stands at the crossroads of these various cultural and technological currents. This eccentric scrapbook-filled with handwritten commentary, folded notes passed in school, and snapshot portraits\u2014documents the \"girls\" the author has liked (and disliked), from his first kindergarten \"crushes\" to later, unrequited high-school romances. More than an example of oddball juvenilia, Girls I Have Known is a testament to photography's signal importance in the structuring of mass desire at the dawn of the media age.\n\nView this work on metmuseum.org.\n", "path": "dedicated-myself/", "slug": "dedicated-myself", "kind": "Video", "video_id": "d842mfzMMao", "keywords": "book, daily life, humor, memory, paper, photography, writing, youth, North America", "youtube_id": "d842mfzMMao", "readable_id": "dedicated-myself"}, "7Un_Uu_sACI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Un_Uu_sACI.mp4/7Un_Uu_sACI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Un_Uu_sACI.mp4/7Un_Uu_sACI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Un_Uu_sACI.m3u8/7Un_Uu_sACI.m3u8"}, "path": "khan/college-admissions/applying-to-college/college-application-process/early-vs-regular-decision/", "duration": 602, "id": "7Un_Uu_sACI", "title": "Deciding when to apply: Early vs regular decision", "format": "mp4", "description": "", "slug": "early-vs-regular-decision", "kind": "Video", "video_id": "7Un_Uu_sACI", "keywords": "", "youtube_id": "7Un_Uu_sACI", "readable_id": "early-vs-regular-decision"}, "vIZ0LnLo3jE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vIZ0LnLo3jE.mp4/vIZ0LnLo3jE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vIZ0LnLo3jE.mp4/vIZ0LnLo3jE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vIZ0LnLo3jE.m3u8/vIZ0LnLo3jE.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/elementary-rate-laws/", "duration": 335, "id": "vIZ0LnLo3jE", "title": "Elementary rate laws", "format": "mp4", "description": "", "slug": "elementary-rate-laws", "kind": "Video", "video_id": "vIZ0LnLo3jE", "keywords": "", "youtube_id": "vIZ0LnLo3jE", "readable_id": "elementary-rate-laws"}, "Io9i1JkKgN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Io9i1JkKgN4.mp4/Io9i1JkKgN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Io9i1JkKgN4.mp4/Io9i1JkKgN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Io9i1JkKgN4.m3u8/Io9i1JkKgN4.m3u8"}, "duration": 150, "id": "Io9i1JkKgN4", "title": "Comparing fractions", "format": "mp4", "description": "Comparing Fractions", "path": "khan/math/pre-algebra/fractions-pre-alg/comparing-fractions-pre-alg/comparing-fractions/", "slug": "comparing-fractions", "kind": "Video", "video_id": "Io9i1JkKgN4", "keywords": "U02_L1_T5_we1, Comparing, Fractions, CC_3_NF_3, CC_3_NF_3_a, CC_3_NF_3_b, CC_6_NS_4", "youtube_id": "Io9i1JkKgN4", "readable_id": "comparing-fractions"}, "KKAD-OOOHxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KKAD-OOOHxg.mp4/KKAD-OOOHxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KKAD-OOOHxg.mp4/KKAD-OOOHxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KKAD-OOOHxg.m3u8/KKAD-OOOHxg.m3u8"}, "duration": 664, "id": "KKAD-OOOHxg", "title": "Naming alkanes with alkyl groups", "format": "mp4", "description": "Naming Alkanes with Alkyl Groups", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/naming-alkanes-with-alkyl-groups/", "slug": "naming-alkanes-with-alkyl-groups", "kind": "Video", "video_id": "KKAD-OOOHxg", "keywords": "Naming, Alkanes, with, Alkyl, Groups", "youtube_id": "KKAD-OOOHxg", "readable_id": "naming-alkanes-with-alkyl-groups"}, "NC7iWEQ9Kug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NC7iWEQ9Kug.mp4/NC7iWEQ9Kug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NC7iWEQ9Kug.mp4/NC7iWEQ9Kug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NC7iWEQ9Kug.m3u8/NC7iWEQ9Kug.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/sine-solutions/", "duration": 370, "id": "NC7iWEQ9Kug", "title": "Solution set to sin equation", "format": "mp4", "description": "", "slug": "sine-solutions", "kind": "Video", "video_id": "NC7iWEQ9Kug", "keywords": "", "youtube_id": "NC7iWEQ9Kug", "readable_id": "sine-solutions"}, "ualmyZiPs9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ualmyZiPs9w.mp4/ualmyZiPs9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ualmyZiPs9w.mp4/ualmyZiPs9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ualmyZiPs9w.m3u8/ualmyZiPs9w.m3u8"}, "duration": 908, "id": "ualmyZiPs9w", "title": "Covariance and the regression line", "format": "mp4", "description": "Covariance, Variance and the Slope of the Regression Line", "path": "khan/math/probability/regression/regression-correlation/covariance-and-the-regression-line/", "slug": "covariance-and-the-regression-line", "kind": "Video", "video_id": "ualmyZiPs9w", "keywords": "Covariance, CC_8_SP_2, CC_8_SP_3", "youtube_id": "ualmyZiPs9w", "readable_id": "covariance-and-the-regression-line"}, "FfdpupKByiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FfdpupKByiU.mp4/FfdpupKByiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FfdpupKByiU.mp4/FfdpupKByiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FfdpupKByiU.m3u8/FfdpupKByiU.m3u8"}, "duration": 239, "id": "FfdpupKByiU", "title": "Cash accounting", "format": "mp4", "description": "Simple example of cash accounting", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/cash-accrual-accounting/cash-accounting/", "slug": "cash-accounting", "kind": "Video", "video_id": "FfdpupKByiU", "keywords": "cash, accounting, accrual", "youtube_id": "FfdpupKByiU", "readable_id": "cash-accounting"}, "SFL4stapeUs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SFL4stapeUs.mp4/SFL4stapeUs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SFL4stapeUs.mp4/SFL4stapeUs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SFL4stapeUs.m3u8/SFL4stapeUs.m3u8"}, "duration": 419, "id": "SFL4stapeUs", "title": "30-60-90 triangle side ratios proof", "format": "mp4", "description": "Proving the ratios between the sides of a 30-60-90 triangle", "path": "khan/math/geometry/right_triangles_topic/special_right_triangles/30-60-90-triangle-side-ratios-proof/", "slug": "30-60-90-triangle-side-ratios-proof", "kind": "Video", "video_id": "SFL4stapeUs", "keywords": "30, 60, 90, Triangle, Side, Ratios, Proof", "youtube_id": "SFL4stapeUs", "readable_id": "30-60-90-triangle-side-ratios-proof"}, "XZWoMXVANww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XZWoMXVANww.mp4/XZWoMXVANww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XZWoMXVANww.mp4/XZWoMXVANww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XZWoMXVANww.m3u8/XZWoMXVANww.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/ph-of-salt-solutions/", "duration": 855, "id": "XZWoMXVANww", "title": "pH of salt solutions", "format": "mp4", "description": "", "slug": "ph-of-salt-solutions", "kind": "Video", "video_id": "XZWoMXVANww", "keywords": "", "youtube_id": "XZWoMXVANww", "readable_id": "ph-of-salt-solutions"}, "S-eipYmOy9Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S-eipYmOy9Q.mp4/S-eipYmOy9Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S-eipYmOy9Q.mp4/S-eipYmOy9Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S-eipYmOy9Q.m3u8/S-eipYmOy9Q.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-type-of-college/comparing-vocational-vs-2-year-vs-4-year-colleges/", "duration": 214, "id": "S-eipYmOy9Q", "title": "Comparing vocational vs 2 year vs 4 year colleges", "format": "mp4", "description": "Filter by 2-year vs. 4-year options using College Board's college search tool", "slug": "comparing-vocational-vs-2-year-vs-4-year-colleges", "kind": "Video", "video_id": "S-eipYmOy9Q", "keywords": "", "youtube_id": "S-eipYmOy9Q", "readable_id": "comparing-vocational-vs-2-year-vs-4-year-colleges"}, "G7WyEp8gHs0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G7WyEp8gHs0.mp4/G7WyEp8gHs0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G7WyEp8gHs0.mp4/G7WyEp8gHs0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G7WyEp8gHs0.m3u8/G7WyEp8gHs0.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivatives-inverse-functions/derivative-inverse-tangent/", "duration": 362, "id": "G7WyEp8gHs0", "title": "Derivative of inverse tangent", "format": "mp4", "description": "", "slug": "derivative-inverse-tangent", "kind": "Video", "video_id": "G7WyEp8gHs0", "keywords": "", "youtube_id": "G7WyEp8gHs0", "readable_id": "derivative-inverse-tangent"}, "gmKAuceSf-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gmKAuceSf-s.mp4/gmKAuceSf-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gmKAuceSf-s.mp4/gmKAuceSf-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gmKAuceSf-s.m3u8/gmKAuceSf-s.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/reproductive-cycle-graph-follicular-phase/", "duration": 516, "id": "gmKAuceSf-s", "title": "Reproductive cycle graph - Follicular phase", "format": "mp4", "description": "", "slug": "reproductive-cycle-graph-follicular-phase", "kind": "Video", "video_id": "gmKAuceSf-s", "keywords": "", "youtube_id": "gmKAuceSf-s", "readable_id": "reproductive-cycle-graph-follicular-phase"}, "7I42-iVCVNQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7I42-iVCVNQ.mp4/7I42-iVCVNQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7I42-iVCVNQ.mp4/7I42-iVCVNQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7I42-iVCVNQ.m3u8/7I42-iVCVNQ.m3u8"}, "duration": 547, "id": "7I42-iVCVNQ", "title": "Aromatics and cyclic compounds", "format": "mp4", "description": "What's that smell? Smell's like Organic Chemistry! This week Hank talks about Aromatics and Cyclic Compounds and naming their substituents, resonance as well as common reactions & uses.\u00a0\nWriters: Edi Gonzalez & Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem42-aromatics-cyclic-compounds/", "slug": "chem42-aromatics-cyclic-compounds", "kind": "Video", "video_id": "7I42-iVCVNQ", "keywords": "", "youtube_id": "7I42-iVCVNQ", "readable_id": "chem42-aromatics-cyclic-compounds"}, "ZeHRxcAS2Gc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZeHRxcAS2Gc.mp4/ZeHRxcAS2Gc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZeHRxcAS2Gc.mp4/ZeHRxcAS2Gc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZeHRxcAS2Gc.m3u8/ZeHRxcAS2Gc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2008-may-8-12/", "duration": 152, "id": "ZeHRxcAS2Gc", "title": "12 Estimating number products", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-12", "kind": "Video", "video_id": "ZeHRxcAS2Gc", "keywords": "", "youtube_id": "ZeHRxcAS2Gc", "readable_id": "sat-2008-may-8-12"}, "iFpyKTuC7jY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iFpyKTuC7jY.mp4/iFpyKTuC7jY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iFpyKTuC7jY.mp4/iFpyKTuC7jY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iFpyKTuC7jY.m3u8/iFpyKTuC7jY.m3u8"}, "duration": 214, "id": "iFpyKTuC7jY", "title": "Why we got zero flux in divergence theorem example 1", "format": "mp4", "description": "Intuition as to why we go no net flux in the last worked example", "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem/why-we-got-zero-flux-in-divergence-theorem-example-1/", "slug": "why-we-got-zero-flux-in-divergence-theorem-example-1", "kind": "Video", "video_id": "iFpyKTuC7jY", "keywords": "", "youtube_id": "iFpyKTuC7jY", "readable_id": "why-we-got-zero-flux-in-divergence-theorem-example-1"}, "ZN7YaSbY3-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZN7YaSbY3-w.mp4/ZN7YaSbY3-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZN7YaSbY3-w.mp4/ZN7YaSbY3-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZN7YaSbY3-w.m3u8/ZN7YaSbY3-w.m3u8"}, "duration": 344, "id": "ZN7YaSbY3-w", "title": "Multiplying a vector by a scalar", "format": "mp4", "description": "", "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/multiplying-vector-by-scalar/", "slug": "multiplying-vector-by-scalar", "kind": "Video", "video_id": "ZN7YaSbY3-w", "keywords": "", "youtube_id": "ZN7YaSbY3-w", "readable_id": "multiplying-vector-by-scalar"}, "z-DvmxflJgA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z-DvmxflJgA.mp4/z-DvmxflJgA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z-DvmxflJgA.mp4/z-DvmxflJgA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z-DvmxflJgA.m3u8/z-DvmxflJgA.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/startled/", "duration": 159, "id": "z-DvmxflJgA", "title": "\"Startled\" with John Carpenter", "format": "mp4", "description": "Met curator John Carpenter on perception in Kohei Nawa\u2019s PixCell-Deer#24.\n\nThis taxidermied deer has been completely transformed through the artist\u2019s use of variably sized \u201cPixCell\u201d beads, a term he invented. PixCell is a portmanteau word combining the idea of a \u201ccell\u201d with that of a \u201cpixel,\u201d the smallest unit of a digital image. Whether intentionally or unintentionally on the artist\u2019s part, PixCell-Deer#24 resonates with a type of religious painting known as a Kasuga Deer Mandala, which features a deer\u2014the messenger animal of Shinto deities\u2014posed similarly with its head turned to the side, and with a round sacred mirror on its back. For Japanese artists the deer was depicted often as a companion of ancient sages and had auspicious or poetic associations.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "slug": "startled", "kind": "Video", "video_id": "z-DvmxflJgA", "keywords": "glass, light, nature, sculpture, shock, transcendence, Asia", "youtube_id": "z-DvmxflJgA", "readable_id": "startled"}, "Esj5juUzhpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Esj5juUzhpU.mp4/Esj5juUzhpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Esj5juUzhpU.mp4/Esj5juUzhpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Esj5juUzhpU.m3u8/Esj5juUzhpU.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/mars-curiosity-descent/", "duration": 175, "id": "Esj5juUzhpU", "title": "Curiosity descent", "format": "mp4", "description": "", "slug": "mars-curiosity-descent", "kind": "Video", "video_id": "Esj5juUzhpU", "keywords": "", "youtube_id": "Esj5juUzhpU", "readable_id": "mars-curiosity-descent"}, "98qfFzqDKR8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/98qfFzqDKR8.mp4/98qfFzqDKR8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/98qfFzqDKR8.mp4/98qfFzqDKR8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/98qfFzqDKR8.m3u8/98qfFzqDKR8.m3u8"}, "duration": 845, "id": "98qfFzqDKR8", "title": "What it means to buy a company's stock", "format": "mp4", "description": "What it means to buy a company's stock", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/stocks-intro-tutorial/what-it-means-to-buy-a-company-s-stock/", "slug": "what-it-means-to-buy-a-company-s-stock", "kind": "Video", "video_id": "98qfFzqDKR8", "keywords": "stock, shares, investment, personal, finance", "youtube_id": "98qfFzqDKR8", "readable_id": "what-it-means-to-buy-a-company-s-stock"}, "EGr3KC55sfU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EGr3KC55sfU.mp4/EGr3KC55sfU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EGr3KC55sfU.mp4/EGr3KC55sfU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EGr3KC55sfU.m3u8/EGr3KC55sfU.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/converting-decimals-to-fractions-2-ex-1/", "duration": 74, "id": "EGr3KC55sfU", "title": "Converting decimals to fractions 2 (ex 1)", "format": "mp4", "description": "", "slug": "converting-decimals-to-fractions-2-ex-1", "kind": "Video", "video_id": "EGr3KC55sfU", "keywords": "Converting, decimals, to, fractions, 2, ex, 1", "youtube_id": "EGr3KC55sfU", "readable_id": "converting-decimals-to-fractions-2-ex-1"}, "yChPRfm4yvg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yChPRfm4yvg.mp4/yChPRfm4yvg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yChPRfm4yvg.mp4/yChPRfm4yvg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yChPRfm4yvg.m3u8/yChPRfm4yvg.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/chiral-achiral-jay/", "duration": 257, "id": "yChPRfm4yvg", "title": "Chiral vs achiral", "format": "mp4", "description": "", "slug": "chiral-achiral-jay", "kind": "Video", "video_id": "yChPRfm4yvg", "keywords": "", "youtube_id": "yChPRfm4yvg", "readable_id": "chiral-achiral-jay"}, "pADnoU7FWLg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pADnoU7FWLg.mp4/pADnoU7FWLg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pADnoU7FWLg.mp4/pADnoU7FWLg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pADnoU7FWLg.m3u8/pADnoU7FWLg.m3u8"}, "duration": 190, "id": "pADnoU7FWLg", "title": "Aging and cognitive abilities", "format": "mp4", "description": "\u200bLearn about how cognitive abilities change as we age.", "path": "khan/test-prep/mcat/processing-the-environment/cognition/aging-and-cognitive/", "slug": "aging-and-cognitive", "kind": "Video", "video_id": "pADnoU7FWLg", "keywords": "", "youtube_id": "pADnoU7FWLg", "readable_id": "aging-and-cognitive"}, "zU9qSQi1E68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zU9qSQi1E68.mp4/zU9qSQi1E68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zU9qSQi1E68.mp4/zU9qSQi1E68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zU9qSQi1E68.m3u8/zU9qSQi1E68.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/parthenon-ergastines/", "duration": 277, "id": "zU9qSQi1E68", "title": "\"Plaque of the Ergastines\" fragment from the frieze on the east side of the Parthenon", "format": "mp4", "description": "Phidias (?), \"Plaque of the Ergastines,\" 445 - 438 B.C.E., Pentelic marble (Attica), 0.96 x 2.07 m, fragment from the frieze on the east side of the Parthenon (Mus\u00e9e du Louvre, Paris)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "parthenon-ergastines", "kind": "Video", "video_id": "zU9qSQi1E68", "keywords": "parthenon, classical, ", "youtube_id": "zU9qSQi1E68", "readable_id": "parthenon-ergastines"}, "QIU1daMN8fw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QIU1daMN8fw.mp4/QIU1daMN8fw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QIU1daMN8fw.mp4/QIU1daMN8fw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QIU1daMN8fw.m3u8/QIU1daMN8fw.m3u8"}, "duration": 391, "id": "QIU1daMN8fw", "title": "Relating invertibility to being onto and one-to-one", "format": "mp4", "description": "Relating invertibility to being onto (surjective) and one-to-one (injective)", "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/relating-invertibility-to-being-onto-and-one-to-one/", "slug": "relating-invertibility-to-being-onto-and-one-to-one", "kind": "Video", "video_id": "QIU1daMN8fw", "keywords": "invertibility, surjective, injective, onto, one-to-one", "youtube_id": "QIU1daMN8fw", "readable_id": "relating-invertibility-to-being-onto-and-one-to-one"}, "AY8ldIEi3fU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AY8ldIEi3fU.mp4/AY8ldIEi3fU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AY8ldIEi3fU.mp4/AY8ldIEi3fU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AY8ldIEi3fU.m3u8/AY8ldIEi3fU.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/interpreting_linear_functions/interpreting-linear-formulas-2/", "duration": 155, "id": "AY8ldIEi3fU", "title": "Interpreting linear formulas example 2", "format": "mp4", "description": "Linear equation for file transfer", "slug": "interpreting-linear-formulas-2", "kind": "Video", "video_id": "AY8ldIEi3fU", "keywords": "", "youtube_id": "AY8ldIEi3fU", "readable_id": "interpreting-linear-formulas-2"}, "NYI0bJK64MY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NYI0bJK64MY.mp4/NYI0bJK64MY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NYI0bJK64MY.mp4/NYI0bJK64MY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NYI0bJK64MY.m3u8/NYI0bJK64MY.m3u8"}, "path": "khan/science/organic-chemistry/carboxylic-acids-derivatives/formation-carboxylic-acid-derivatives-sal/relative-stability-of-amides-esters-anhydrides-and-acyl-chlorides/", "duration": 669, "id": "NYI0bJK64MY", "title": "Relative stability of amides, esters, anhydrides, and acyl chlorides", "format": "mp4", "description": "Relative Stability of Amides Esters Anhydrides and Acyl Chlorides", "slug": "relative-stability-of-amides-esters-anhydrides-and-acyl-chlorides", "kind": "Video", "video_id": "NYI0bJK64MY", "keywords": "Relative, Stability, of, Amides, Esters, Anhydrides, and, Acyl, Chlorides", "youtube_id": "NYI0bJK64MY", "readable_id": "relative-stability-of-amides-esters-anhydrides-and-acyl-chlorides"}, "BRXBCxKjiK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BRXBCxKjiK8.mp4/BRXBCxKjiK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BRXBCxKjiK8.mp4/BRXBCxKjiK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BRXBCxKjiK8.m3u8/BRXBCxKjiK8.m3u8"}, "duration": 160, "id": "BRXBCxKjiK8", "title": "Tax lever of fiscal policy", "format": "mp4", "description": "How government can effect aggregate demand through tax policy", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/monetary-fiscal-policy/tax-lever-of-fiscal-policy/", "slug": "tax-lever-of-fiscal-policy", "kind": "Video", "video_id": "BRXBCxKjiK8", "keywords": "macroeconomics", "youtube_id": "BRXBCxKjiK8", "readable_id": "tax-lever-of-fiscal-policy"}, "WO1I1dN0DaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WO1I1dN0DaA.mp4/WO1I1dN0DaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WO1I1dN0DaA.mp4/WO1I1dN0DaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WO1I1dN0DaA.m3u8/WO1I1dN0DaA.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/vermeer-woman-with-balance/", "duration": 331, "id": "WO1I1dN0DaA", "title": "Johannes Vermeer, Woman Holding a Balance", "format": "mp4", "description": "Johannes Vermeer, Woman Holding a Balance, 1664, oil on canvas, 42.5 cm \u00d7 38 cm / 16.7 in \u00d7 15 in (National Gallery of Art)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris\n", "slug": "vermeer-woman-with-balance", "kind": "Video", "video_id": "WO1I1dN0DaA", "keywords": "", "youtube_id": "WO1I1dN0DaA", "readable_id": "vermeer-woman-with-balance"}, "7yaNXogaFMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7yaNXogaFMM.mp4/7yaNXogaFMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7yaNXogaFMM.mp4/7yaNXogaFMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7yaNXogaFMM.m3u8/7yaNXogaFMM.m3u8"}, "duration": 493, "id": "7yaNXogaFMM", "title": "Electrochemistry", "format": "mp4", "description": "Chemistry raised to the power of AWESOME! That's what Hank is talking about today with Electrochemistry. Contained within, Hank discusses electrochemical reactions, half reactions, how batteries work, galvanic cells, voltage, standard reduction potential, cell potential, electrolysis, and electro plating and the things that go into making it possible for you to watch this episode of Crash Course Chemistry!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem36-electrochemistry/", "slug": "chem36-electrochemistry", "kind": "Video", "video_id": "7yaNXogaFMM", "keywords": "", "youtube_id": "7yaNXogaFMM", "readable_id": "chem36-electrochemistry"}, "ypH-hDKpCY0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ypH-hDKpCY0.mp4/ypH-hDKpCY0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ypH-hDKpCY0.mp4/ypH-hDKpCY0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ypH-hDKpCY0.m3u8/ypH-hDKpCY0.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/gene-control/regulation-of-transcription/", "duration": 407, "id": "ypH-hDKpCY0", "title": "Regulation of transcription", "format": "mp4", "description": "", "slug": "regulation-of-transcription", "kind": "Video", "video_id": "ypH-hDKpCY0", "keywords": "", "youtube_id": "ypH-hDKpCY0", "readable_id": "regulation-of-transcription"}, "1byR9UEQJN0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1byR9UEQJN0.mp4/1byR9UEQJN0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1byR9UEQJN0.mp4/1byR9UEQJN0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1byR9UEQJN0.m3u8/1byR9UEQJN0.m3u8"}, "duration": 321, "id": "1byR9UEQJN0", "title": "Synthetic division", "format": "mp4", "description": "Basic algorithm for Synthetic Division", "path": "khan/math/algebra2/polynomial_and_rational/synthetic-division/synthetic-division/", "slug": "synthetic-division", "kind": "Video", "video_id": "1byR9UEQJN0", "keywords": "algebra, synthetic, division", "youtube_id": "1byR9UEQJN0", "readable_id": "synthetic-division"}, "tk-SNvCPLCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tk-SNvCPLCE.mp4/tk-SNvCPLCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tk-SNvCPLCE.mp4/tk-SNvCPLCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tk-SNvCPLCE.m3u8/tk-SNvCPLCE.m3u8"}, "duration": 406, "id": "tk-SNvCPLCE", "title": "Introduction to chirality", "format": "mp4", "description": "Introduction to Chirality", "path": "khan/science/organic-chemistry/stereochemistry-topic/chirality-r-s-system/introduction-to-chirality/", "slug": "introduction-to-chirality", "kind": "Video", "video_id": "tk-SNvCPLCE", "keywords": "Introduction, to, Chirality", "youtube_id": "tk-SNvCPLCE", "readable_id": "introduction-to-chirality"}, "l3BoIj9_oRs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l3BoIj9_oRs.mp4/l3BoIj9_oRs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l3BoIj9_oRs.mp4/l3BoIj9_oRs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l3BoIj9_oRs.m3u8/l3BoIj9_oRs.m3u8"}, "duration": 78, "id": "l3BoIj9_oRs", "title": "Spider's stablizer bar", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/spider_bot/11-connect-spider-s-stablizer-bar/", "slug": "11-connect-spider-s-stablizer-bar", "kind": "Video", "video_id": "l3BoIj9_oRs", "keywords": "", "youtube_id": "l3BoIj9_oRs", "readable_id": "11-connect-spider-s-stablizer-bar"}, "nm1FMb73dnQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nm1FMb73dnQ.mp4/nm1FMb73dnQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nm1FMb73dnQ.mp4/nm1FMb73dnQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nm1FMb73dnQ.m3u8/nm1FMb73dnQ.m3u8"}, "duration": 165, "id": "nm1FMb73dnQ", "title": "\"Shellshocked\" with Yassana Croizat-Glazer", "format": "mp4", "description": "Met curator Yassana Croizat-Glazer on sensuality in Bernard Palissy\u2019s Pilgrim Flask.\n\nView this work on metmuseum.org.\n", "path": "shellshocked/", "slug": "shellshocked", "kind": "Video", "video_id": "nm1FMb73dnQ", "keywords": "belief, ceramic, motion, nature, ornate, practicality, vessel, Europe", "youtube_id": "nm1FMb73dnQ", "readable_id": "shellshocked"}, "bhxo9Wwr4mA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bhxo9Wwr4mA.mp4/bhxo9Wwr4mA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bhxo9Wwr4mA.mp4/bhxo9Wwr4mA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bhxo9Wwr4mA.m3u8/bhxo9Wwr4mA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/enolate-formation-from-aldehydes/", "duration": 372, "id": "bhxo9Wwr4mA", "title": "Enolate formation from aldehydes", "format": "mp4", "description": "How to form enolates from aldehydes using sodium ethoxide and sodium hydride", "slug": "enolate-formation-from-aldehydes", "kind": "Video", "video_id": "bhxo9Wwr4mA", "keywords": "", "youtube_id": "bhxo9Wwr4mA", "readable_id": "enolate-formation-from-aldehydes"}, "eDv7dk9uNmM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eDv7dk9uNmM.mp4/eDv7dk9uNmM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eDv7dk9uNmM.mp4/eDv7dk9uNmM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eDv7dk9uNmM.m3u8/eDv7dk9uNmM.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/when-a-function-is-positive-or-negative/", "duration": 70, "id": "eDv7dk9uNmM", "title": "Positive and negative intervals examples", "format": "mp4", "description": "", "slug": "when-a-function-is-positive-or-negative", "kind": "Video", "video_id": "eDv7dk9uNmM", "keywords": "", "youtube_id": "eDv7dk9uNmM", "readable_id": "when-a-function-is-positive-or-negative"}, "3P0fUHUaZcs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3P0fUHUaZcs.mp4/3P0fUHUaZcs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3P0fUHUaZcs.mp4/3P0fUHUaZcs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3P0fUHUaZcs.m3u8/3P0fUHUaZcs.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/soundness/", "duration": 317, "id": "3P0fUHUaZcs", "title": "Fundamentals: Soundness", "format": "mp4", "description": "Aaron Ancell discusses the philosophical concept of soundness. After reviewing validity, he defines soundness: an argument is sound when it is valid and has all true premises. He reviews a few examples of sound and unsound arguments, and he encourages you to develop sound arguments on your own.\n\nSpeaker: Aaron Ancell, Duke University", "slug": "soundness", "kind": "Video", "video_id": "3P0fUHUaZcs", "keywords": "", "youtube_id": "3P0fUHUaZcs", "readable_id": "soundness"}, "wDghWK_Rr_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wDghWK_Rr_E.mp4/wDghWK_Rr_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wDghWK_Rr_E.mp4/wDghWK_Rr_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wDghWK_Rr_E.m3u8/wDghWK_Rr_E.m3u8"}, "duration": 479, "id": "wDghWK_Rr_E", "title": "5 common flu vaccine excuses", "format": "mp4", "description": "Many people choose to avoid the flu vaccine each year. Review five popular excuses, and how they relate to common misunderstandings about the flu. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/5-common-flu-vaccine-excuses/", "slug": "5-common-flu-vaccine-excuses", "kind": "Video", "video_id": "wDghWK_Rr_E", "keywords": "", "youtube_id": "wDghWK_Rr_E", "readable_id": "5-common-flu-vaccine-excuses"}, "RY66P59MTCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RY66P59MTCA.mp4/RY66P59MTCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RY66P59MTCA.mp4/RY66P59MTCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RY66P59MTCA.m3u8/RY66P59MTCA.m3u8"}, "duration": 583, "id": "RY66P59MTCA", "title": "Gluconeogenesis: unique reactions", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/carbohydrate-metabolism/gluconeogenesis-unique-reactions/", "slug": "gluconeogenesis-unique-reactions", "kind": "Video", "video_id": "RY66P59MTCA", "keywords": "", "youtube_id": "RY66P59MTCA", "readable_id": "gluconeogenesis-unique-reactions"}, "WGjKtuS8i8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WGjKtuS8i8s.mp4/WGjKtuS8i8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WGjKtuS8i8s.mp4/WGjKtuS8i8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WGjKtuS8i8s.m3u8/WGjKtuS8i8s.m3u8"}, "duration": 648, "id": "WGjKtuS8i8s", "title": "Common Core Standards: Decimals", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the decimal standards.", "path": "ccc-decimals/", "slug": "ccc-decimals", "kind": "Video", "video_id": "WGjKtuS8i8s", "keywords": "", "youtube_id": "WGjKtuS8i8s", "readable_id": "ccc-decimals"}, "9YrS35wxE7o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9YrS35wxE7o.mp4/9YrS35wxE7o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9YrS35wxE7o.mp4/9YrS35wxE7o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9YrS35wxE7o.m3u8/9YrS35wxE7o.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/gene-control/non-coding-rna-ncrna/", "duration": 280, "id": "9YrS35wxE7o", "title": "Non-coding RNA (ncRNA)", "format": "mp4", "description": "", "slug": "non-coding-rna-ncrna", "kind": "Video", "video_id": "9YrS35wxE7o", "keywords": "", "youtube_id": "9YrS35wxE7o", "readable_id": "non-coding-rna-ncrna"}, "dE7aS-HPwKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dE7aS-HPwKo.mp4/dE7aS-HPwKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dE7aS-HPwKo.mp4/dE7aS-HPwKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dE7aS-HPwKo.m3u8/dE7aS-HPwKo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/churg-strauss-syndrome/", "duration": 245, "id": "dE7aS-HPwKo", "title": "Churg-Strauss syndrome", "format": "mp4", "description": "Churg-Strauss syndrome (also known as eosinophilic granulomatosis with polyangiitis) is a type of vasculitis that affects small and medium blood vessels. Symptoms of this disease are similar to seasonal allergies, such as runny nose, cough, sneezing. Health professionals diagnosis Churg-Strauss syndrome by examining eosinophil levels and pANCA antibody levels, in addition to the presence of granulomas from a tissue sample (biopsy).", "slug": "churg-strauss-syndrome", "kind": "Video", "video_id": "dE7aS-HPwKo", "keywords": "", "youtube_id": "dE7aS-HPwKo", "readable_id": "churg-strauss-syndrome"}, "q19UnHEofOA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q19UnHEofOA.mp4/q19UnHEofOA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q19UnHEofOA.mp4/q19UnHEofOA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q19UnHEofOA.m3u8/q19UnHEofOA.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/adding-subtracting-mixed-numbers-0-5-ex-2/", "duration": 151, "id": "q19UnHEofOA", "title": "Subtracting mixed numbers with like denominators", "format": "mp4", "description": "Think of a mixed numbers as a number AND a fraction. You can subtract numbers....you can subtract fractions with like denominators. Therefore, you can subtract mixed numbers! Watch.", "slug": "adding-subtracting-mixed-numbers-0-5-ex-2", "kind": "Video", "video_id": "q19UnHEofOA", "keywords": "Adding, subtracting, mixed, numbers, 0, 5, ex, 2", "youtube_id": "q19UnHEofOA", "readable_id": "adding-subtracting-mixed-numbers-0-5-ex-2"}, "l5xbFna_j0Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l5xbFna_j0Q.mp4/l5xbFna_j0Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l5xbFna_j0Q.mp4/l5xbFna_j0Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l5xbFna_j0Q.m3u8/l5xbFna_j0Q.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-8-romantic-poets/", "duration": 257, "id": "l5xbFna_j0Q", "title": "8 Romantic poets", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-8-romantic-poets", "kind": "Video", "video_id": "l5xbFna_j0Q", "keywords": "", "youtube_id": "l5xbFna_j0Q", "readable_id": "sat-8-romantic-poets"}, "TUuABq95BBM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TUuABq95BBM.mp4/TUuABq95BBM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TUuABq95BBM.mp4/TUuABq95BBM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TUuABq95BBM.m3u8/TUuABq95BBM.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/copy-of-balancing-chemical-equations/balancing-chemical-equations-introduction/", "duration": 304, "id": "TUuABq95BBM", "title": "Balancing chemical equations", "format": "mp4", "description": "", "slug": "balancing-chemical-equations-introduction", "kind": "Video", "video_id": "TUuABq95BBM", "keywords": "", "youtube_id": "TUuABq95BBM", "readable_id": "balancing-chemical-equations-introduction"}, "Gyn754vw8ZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gyn754vw8ZQ.mp4/Gyn754vw8ZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gyn754vw8ZQ.mp4/Gyn754vw8ZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gyn754vw8ZQ.m3u8/Gyn754vw8ZQ.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/what-young-earth-was-like/bhp-earth-and-early-atmosphere/", "duration": 333, "id": "Gyn754vw8ZQ", "title": "Earth and the Early Atmosphere", "format": "mp4", "description": "The Earth's atmosphere keeps changing, creating an endless cycle of warming, cooling, and recovery.", "slug": "bhp-earth-and-early-atmosphere", "kind": "Video", "video_id": "Gyn754vw8ZQ", "keywords": "", "youtube_id": "Gyn754vw8ZQ", "readable_id": "bhp-earth-and-early-atmosphere"}, "4nUq7ZMeueE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4nUq7ZMeueE.mp4/4nUq7ZMeueE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4nUq7ZMeueE.mp4/4nUq7ZMeueE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4nUq7ZMeueE.m3u8/4nUq7ZMeueE.m3u8"}, "duration": 645, "id": "4nUq7ZMeueE", "title": "Bonding models and Lewis structures", "format": "mp4", "description": "Models are great, except they're also usually inaccurate. In this episode of Crash Course Chemistry, Hank discusses why we need models in the world and how we can learn from them... even when they're almost completely wrong. Plus, Lewis Structures!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem24-bonding-models-lewis-structures/", "slug": "chem24-bonding-models-lewis-structures", "kind": "Video", "video_id": "4nUq7ZMeueE", "keywords": "", "youtube_id": "4nUq7ZMeueE", "readable_id": "chem24-bonding-models-lewis-structures"}, "LJTJN1sqCHM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LJTJN1sqCHM.mp4/LJTJN1sqCHM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LJTJN1sqCHM.mp4/LJTJN1sqCHM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LJTJN1sqCHM.m3u8/LJTJN1sqCHM.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2010-may-9-01/", "duration": 107, "id": "LJTJN1sqCHM", "title": "1 Unknown variable and operation", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-01", "kind": "Video", "video_id": "LJTJN1sqCHM", "keywords": "", "youtube_id": "LJTJN1sqCHM", "readable_id": "sat-2010-may-9-01"}, "9bWJt2hjBH0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9bWJt2hjBH0.mp4/9bWJt2hjBH0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9bWJt2hjBH0.mp4/9bWJt2hjBH0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9bWJt2hjBH0.m3u8/9bWJt2hjBH0.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/ny-school/jasper-johns-flag/", "duration": 365, "id": "9bWJt2hjBH0", "title": "Jasper Johns, Flag", "format": "mp4", "description": "A conversation between Salman Khan and Steven Zucker about Jasper Johns, Flag, 1954-55 (dated on reverse 1954), encaustic, oil, and collage on fabric mounted on plywood, three panels, 42-1/4 x 60-5/8 inches /107.3 x 153.8 cm (The Museum of Modern Art)\n\n\"One night I dreamed I painted a large American flag, and the next morning I got up and I went out and bought the materials to begin it. And I did. I worked on that painting a long time. It's a very rotten painting\u2014physically rotten\u2014because I began it in house enamel paint, which you paint furniture with, and it wouldn't dry quickly enough. Then I had in my head this idea of something I had read or heard about: wax encaustic. \"\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 --Jasper Johns\n", "slug": "jasper-johns-flag", "kind": "Video", "video_id": "9bWJt2hjBH0", "keywords": "New York School, Jasper Johns, Flag,", "youtube_id": "9bWJt2hjBH0", "readable_id": "jasper-johns-flag"}, "ivQ85hdpsBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ivQ85hdpsBE.mp4/ivQ85hdpsBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ivQ85hdpsBE.mp4/ivQ85hdpsBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ivQ85hdpsBE.m3u8/ivQ85hdpsBE.m3u8"}, "duration": 457, "id": "ivQ85hdpsBE", "title": "Network solids and carbon", "format": "mp4", "description": "In this episode, Hank talks about Network solids and Carbon and how you can actually create a Diamond from plain old Carbon... well, YOU probably can't unless you own a bunch of elephants. It's a long story. BUT, within you will learn about Solid Networks, Diamond and Graphite Network Structures, as well as Sheet and 3D Networks. It's not making diamonds from scratch, but it's still pretty cool!\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem34-network-solids-carbon/", "slug": "chem34-network-solids-carbon", "kind": "Video", "video_id": "ivQ85hdpsBE", "keywords": "", "youtube_id": "ivQ85hdpsBE", "readable_id": "chem34-network-solids-carbon"}, "jtPvDycHVQw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jtPvDycHVQw.mp4/jtPvDycHVQw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jtPvDycHVQw.mp4/jtPvDycHVQw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jtPvDycHVQw.m3u8/jtPvDycHVQw.m3u8"}, "duration": 105, "id": "jtPvDycHVQw", "title": "Determining mistakes in steps example", "format": "mp4", "description": "", "path": "khan/math/algebra/quadratics/quadratics-square-root/determining-mistakes-in-steps-example/", "slug": "determining-mistakes-in-steps-example", "kind": "Video", "video_id": "jtPvDycHVQw", "keywords": "", "youtube_id": "jtPvDycHVQw", "readable_id": "determining-mistakes-in-steps-example"}, "ZBSo_GFN3qI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZBSo_GFN3qI.mp4/ZBSo_GFN3qI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZBSo_GFN3qI.mp4/ZBSo_GFN3qI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZBSo_GFN3qI.m3u8/ZBSo_GFN3qI.m3u8"}, "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-biosignaling/g-protein-coupled-receptors/", "duration": 768, "id": "ZBSo_GFN3qI", "title": "G Protein Coupled Receptors", "format": "mp4", "description": "Learn about how g protein coupled receptors work in the cell membrane.", "slug": "g-protein-coupled-receptors", "kind": "Video", "video_id": "ZBSo_GFN3qI", "keywords": "", "youtube_id": "ZBSo_GFN3qI", "readable_id": "g-protein-coupled-receptors"}, "Sx_KqnkcJVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Sx_KqnkcJVA.mp4/Sx_KqnkcJVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Sx_KqnkcJVA.mp4/Sx_KqnkcJVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Sx_KqnkcJVA.m3u8/Sx_KqnkcJVA.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-10/", "duration": 618, "id": "Sx_KqnkcJVA", "title": "GMAT: Data sufficiency 10", "format": "mp4", "description": "47-50, pg. 281", "slug": "gmat-data-sufficiency-10", "kind": "Video", "video_id": "Sx_KqnkcJVA", "keywords": "GMAT, data, sufficiency", "youtube_id": "Sx_KqnkcJVA", "readable_id": "gmat-data-sufficiency-10"}, "4ZyTVTGVPgE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4ZyTVTGVPgE.mp4/4ZyTVTGVPgE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4ZyTVTGVPgE.mp4/4ZyTVTGVPgE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4ZyTVTGVPgE.m3u8/4ZyTVTGVPgE.m3u8"}, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-interpreting-angles/drawing-acute-right-and-obtuse-angles/", "duration": 160, "id": "4ZyTVTGVPgE", "title": "Drawing acute, right and obtuse angles", "format": "mp4", "description": "These 3 types of angles will often come up in your geometry studies. Let's make sure you know how to draw an acute, obtuse, and right angle.", "slug": "drawing-acute-right-and-obtuse-angles", "kind": "Video", "video_id": "4ZyTVTGVPgE", "keywords": "", "youtube_id": "4ZyTVTGVPgE", "readable_id": "drawing-acute-right-and-obtuse-angles"}, "rw3s2C2TIO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rw3s2C2TIO8.mp4/rw3s2C2TIO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rw3s2C2TIO8.mp4/rw3s2C2TIO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rw3s2C2TIO8.m3u8/rw3s2C2TIO8.m3u8"}, "duration": 382, "id": "rw3s2C2TIO8", "title": "Case study: Numeric in South Africa", "format": "mp4", "description": "Numeric uses Khan Academy in an after-school setting.", "path": "numeric_welovemaths/", "slug": "numeric_welovemaths", "kind": "Video", "video_id": "rw3s2C2TIO8", "keywords": "", "youtube_id": "rw3s2C2TIO8", "readable_id": "numeric_welovemaths"}, "Wl4re38deh0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wl4re38deh0.mp4/Wl4re38deh0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wl4re38deh0.mp4/Wl4re38deh0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wl4re38deh0.m3u8/Wl4re38deh0.m3u8"}, "duration": 252, "id": "Wl4re38deh0", "title": "Hubble image of galaxies", "format": "mp4", "description": "Hubble Image of Galaxies", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/scale-earth-galaxy-tutorial/hubble-image-of-galaxies/", "slug": "hubble-image-of-galaxies", "kind": "Video", "video_id": "Wl4re38deh0", "keywords": "Hubble, Image, of, Galaxies, cosmology, cosmos, astronomy", "youtube_id": "Wl4re38deh0", "readable_id": "hubble-image-of-galaxies"}, "cvB8b4AACyE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cvB8b4AACyE.mp4/cvB8b4AACyE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cvB8b4AACyE.mp4/cvB8b4AACyE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cvB8b4AACyE.m3u8/cvB8b4AACyE.m3u8"}, "duration": 268, "id": "cvB8b4AACyE", "title": "Compound inequalities 3", "format": "mp4", "description": "Compound Inequalities 3", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/compound-inequalities-3/", "slug": "compound-inequalities-3", "kind": "Video", "video_id": "cvB8b4AACyE", "keywords": "u10_l3_t1_we3, Compound, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "cvB8b4AACyE", "readable_id": "compound-inequalities-3"}, "xbyfeEW56Nc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xbyfeEW56Nc.mp4/xbyfeEW56Nc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xbyfeEW56Nc.mp4/xbyfeEW56Nc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xbyfeEW56Nc.m3u8/xbyfeEW56Nc.m3u8"}, "duration": 368, "id": "xbyfeEW56Nc", "title": "Strokes", "format": "mp4", "description": "Basics of strokes", "path": "khan/science/health-and-medicine/healthcare-misc/strokes/", "slug": "strokes", "kind": "Video", "video_id": "xbyfeEW56Nc", "keywords": "hemorrhagic, ischemic, strokes", "youtube_id": "xbyfeEW56Nc", "readable_id": "strokes"}, "iKy-d5_erhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iKy-d5_erhI.mp4/iKy-d5_erhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iKy-d5_erhI.mp4/iKy-d5_erhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iKy-d5_erhI.m3u8/iKy-d5_erhI.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinations/introduction-to-combinations/", "duration": 378, "id": "iKy-d5_erhI", "title": "Introduction to combinations", "format": "mp4", "description": "", "slug": "introduction-to-combinations", "kind": "Video", "video_id": "iKy-d5_erhI", "keywords": "", "youtube_id": "iKy-d5_erhI", "readable_id": "introduction-to-combinations"}, "iLFcSfzrlMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iLFcSfzrlMk.mp4/iLFcSfzrlMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iLFcSfzrlMk.mp4/iLFcSfzrlMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iLFcSfzrlMk.m3u8/iLFcSfzrlMk.m3u8"}, "duration": 667, "id": "iLFcSfzrlMk", "title": "K-Ar dating calculation", "format": "mp4", "description": "Working through a calculation for K-Ar dating (good to have some prior experience with e and logarithms)", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/measuring-age-tutorial/k-ar-dating-calculation/", "slug": "k-ar-dating-calculation", "kind": "Video", "video_id": "iLFcSfzrlMk", "keywords": "K, Ar, Dating, Calculation", "youtube_id": "iLFcSfzrlMk", "readable_id": "k-ar-dating-calculation"}, "53zzt2SVde4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/53zzt2SVde4.mp4/53zzt2SVde4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/53zzt2SVde4.mp4/53zzt2SVde4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/53zzt2SVde4.m3u8/53zzt2SVde4.m3u8"}, "duration": 137, "id": "53zzt2SVde4", "title": "Demonstration of the Roentgens' Dressing Table (Poudreuse)", "format": "mp4", "description": "See how this desk converts into a dressing table.\nWhen closed, this table may not seem like one of the most complex pieces of European furniture ever made. However, once opened, its concealed drawers and hidden features are exposed, and the entire piece transforms into a dressing table, or poudreuse. Scholars believe it was commissioned as a wedding gift from Abraham (1711\u20131793) and David Roentgen (1743\u20131807) by Friedrich August III, Elector of Saxony, to his bride in 1769.\n", "path": "dressing-table-demo/", "slug": "dressing-table-demo", "kind": "Video", "video_id": "53zzt2SVde4", "keywords": "table, Europe, dressing, ornate, hidden, furniture", "youtube_id": "53zzt2SVde4", "readable_id": "dressing-table-demo"}, "m2ayMP7UbEM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m2ayMP7UbEM.mp4/m2ayMP7UbEM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m2ayMP7UbEM.mp4/m2ayMP7UbEM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m2ayMP7UbEM.m3u8/m2ayMP7UbEM.m3u8"}, "duration": 355, "id": "m2ayMP7UbEM", "title": "Craftsman Allan Breed Carves a Bow Knot and Thunderbolt Crest", "format": "mp4", "description": "Craftsman Allan Breed demonstrates low-relief carving, taking us through the creation of a bow knot and thunderbolt crest motif after the renowned nineteenth-century furniture maker Duncan Phyfe. As he works, Breed describes the cuts, the tools, and the intricate and highly refined methods and behind each move, bringing the age-old art form to life.\n\nRead more about Duncan Phyfe on the\u00a0Heilbrunn Timeline of Art History.", "path": "lowreliefcarving/", "slug": "lowreliefcarving", "kind": "Video", "video_id": "m2ayMP7UbEM", "keywords": "cabinet, bow, thunderbolt, furniture, carving, leaf, ornate", "youtube_id": "m2ayMP7UbEM", "readable_id": "lowreliefcarving"}, "lP1DGtZ8Wys": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lP1DGtZ8Wys.mp4/lP1DGtZ8Wys.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lP1DGtZ8Wys.mp4/lP1DGtZ8Wys.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lP1DGtZ8Wys.m3u8/lP1DGtZ8Wys.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/matrices_elimination/matrices-reduced-row-echelon-form-2/", "duration": 457, "id": "lP1DGtZ8Wys", "title": "Matrices: Reduced row echelon form 2", "format": "mp4", "description": "Another example of solving a system of linear equations by putting an augmented matrix into reduced row echelon form", "slug": "matrices-reduced-row-echelon-form-2", "kind": "Video", "video_id": "lP1DGtZ8Wys", "keywords": "matrix, augmented, echelon", "youtube_id": "lP1DGtZ8Wys", "readable_id": "matrices-reduced-row-echelon-form-2"}, "XKk9K5xTgDA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XKk9K5xTgDA.mp4/XKk9K5xTgDA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XKk9K5xTgDA.mp4/XKk9K5xTgDA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XKk9K5xTgDA.m3u8/XKk9K5xTgDA.m3u8"}, "path": "khan/science/organic-chemistry/carboxylic-acids-derivatives/formation-carboxylic-acid-derivatives-sal/acid-chloride-formation/", "duration": 709, "id": "XKk9K5xTgDA", "title": "Acid chloride formation", "format": "mp4", "description": "Acetic Acid to Acetyl Chloride mechanism. Can be generalized to forming any acid halide from a carboxylic acid", "slug": "acid-chloride-formation", "kind": "Video", "video_id": "XKk9K5xTgDA", "keywords": "acid, chloride, halide, acyl, carboxylic, acetic, acetyl", "youtube_id": "XKk9K5xTgDA", "readable_id": "acid-chloride-formation"}, "g6QuuoTs2Oo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g6QuuoTs2Oo.mp4/g6QuuoTs2Oo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g6QuuoTs2Oo.mp4/g6QuuoTs2Oo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g6QuuoTs2Oo.m3u8/g6QuuoTs2Oo.m3u8"}, "duration": 537, "id": "g6QuuoTs2Oo", "title": "Graham's law of diffusion", "format": "mp4", "description": "Find out whether oxygen or carbon dioxide has a higher rate of diffusion (Hint: It pays to be small!). Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/gas-exchange/graham-s-law-of-diffusion/", "slug": "graham-s-law-of-diffusion", "kind": "Video", "video_id": "g6QuuoTs2Oo", "keywords": "", "youtube_id": "g6QuuoTs2Oo", "readable_id": "graham-s-law-of-diffusion"}, "s6NOa1KTCxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s6NOa1KTCxQ.mp4/s6NOa1KTCxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s6NOa1KTCxQ.mp4/s6NOa1KTCxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s6NOa1KTCxQ.m3u8/s6NOa1KTCxQ.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-money/counting-dollars/", "duration": 198, "id": "s6NOa1KTCxQ", "title": "Counting dollars", "format": "mp4", "description": "", "slug": "counting-dollars", "kind": "Video", "video_id": "s6NOa1KTCxQ", "keywords": "", "youtube_id": "s6NOa1KTCxQ", "readable_id": "counting-dollars"}, "64bH_27Ehoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/64bH_27Ehoc.mp4/64bH_27Ehoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/64bH_27Ehoc.mp4/64bH_27Ehoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/64bH_27Ehoc.m3u8/64bH_27Ehoc.m3u8"}, "path": "khan/math/geometry/basic-geometry/koch_snowflake/area-of-koch-snowflake-part-1-advanced/", "duration": 750, "id": "64bH_27Ehoc", "title": "Area of Koch snowflake (part 1) - advanced", "format": "mp4", "description": "Starting to figure out the area of a Koch Snowflake (which has an infinite perimeter)", "slug": "area-of-koch-snowflake-part-1-advanced", "kind": "Video", "video_id": "64bH_27Ehoc", "keywords": "geometric, series", "youtube_id": "64bH_27Ehoc", "readable_id": "area-of-koch-snowflake-part-1-advanced"}, "u84TMEdR6C4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u84TMEdR6C4.mp4/u84TMEdR6C4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u84TMEdR6C4.mp4/u84TMEdR6C4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u84TMEdR6C4.m3u8/u84TMEdR6C4.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-preparing-students/sscc-blended-noncog/", "duration": 316, "id": "u84TMEdR6C4", "title": "How the concepts of \"non-cognitive skills\" play out in a blended-learning setting", "format": "mp4", "description": "", "slug": "sscc-blended-noncog", "kind": "Video", "video_id": "u84TMEdR6C4", "keywords": "", "youtube_id": "u84TMEdR6C4", "readable_id": "sscc-blended-noncog"}, "QrHsibKBVwI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QrHsibKBVwI.mp4/QrHsibKBVwI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QrHsibKBVwI.mp4/QrHsibKBVwI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QrHsibKBVwI.m3u8/QrHsibKBVwI.m3u8"}, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/simple-elimination-practice/", "duration": 258, "id": "QrHsibKBVwI", "title": "Solving systems of linear equations with elimination example 1", "format": "mp4", "description": "Practice solving systems of equations through simple elimination", "slug": "simple-elimination-practice", "kind": "Video", "video_id": "QrHsibKBVwI", "keywords": "", "youtube_id": "QrHsibKBVwI", "readable_id": "simple-elimination-practice"}, "OvMBNVi5bLY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OvMBNVi5bLY.mp4/OvMBNVi5bLY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OvMBNVi5bLY.mp4/OvMBNVi5bLY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OvMBNVi5bLY.m3u8/OvMBNVi5bLY.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-4b/", "duration": 795, "id": "OvMBNVi5bLY", "title": "2011 Calculus AB free response #4b", "format": "mp4", "description": "Absolute maximum over an interval. Critical points and differentiability.", "slug": "2011-calculus-ab-free-response-4b", "kind": "Video", "video_id": "OvMBNVi5bLY", "keywords": "advanced, placement, exam, AP", "youtube_id": "OvMBNVi5bLY", "readable_id": "2011-calculus-ab-free-response-4b"}, "HwSszh3L358": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HwSszh3L358.mp4/HwSszh3L358.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HwSszh3L358.mp4/HwSszh3L358.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HwSszh3L358.m3u8/HwSszh3L358.m3u8"}, "duration": 100, "id": "HwSszh3L358", "title": "Commutative law of addition", "format": "mp4", "description": "Commutative Law of Addition", "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-properties-numbers/commutative-law-of-addition/", "slug": "commutative-law-of-addition", "kind": "Video", "video_id": "HwSszh3L358", "keywords": "U01_L4_T1_we3, Commutative, Law, of, Addition, CC_1_OA_3", "youtube_id": "HwSszh3L358", "readable_id": "commutative-law-of-addition"}, "E0d3b7uoxCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E0d3b7uoxCA.mp4/E0d3b7uoxCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E0d3b7uoxCA.mp4/E0d3b7uoxCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E0d3b7uoxCA.m3u8/E0d3b7uoxCA.m3u8"}, "path": "khan/test-prep/sat/overview-sat-prep/sal-talks-to-college-board/", "duration": 238, "id": "E0d3b7uoxCA", "title": "Sal talks to CEO of the College Board, David Coleman", "format": "mp4", "description": "", "slug": "sal-talks-to-college-board", "kind": "Video", "video_id": "E0d3b7uoxCA", "keywords": "", "youtube_id": "E0d3b7uoxCA", "readable_id": "sal-talks-to-college-board"}, "LDuJ1AD7n54": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LDuJ1AD7n54.mp4/LDuJ1AD7n54.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LDuJ1AD7n54.mp4/LDuJ1AD7n54.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LDuJ1AD7n54.m3u8/LDuJ1AD7n54.m3u8"}, "duration": 237, "id": "LDuJ1AD7n54", "title": "Backwardation", "format": "mp4", "description": "Backwardation and the theory of Normal Backwardation", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/backwardation/", "slug": "backwardation", "kind": "Video", "video_id": "LDuJ1AD7n54", "keywords": "normal, backwardation", "youtube_id": "LDuJ1AD7n54", "readable_id": "backwardation"}, "O_Oozju3RRI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O_Oozju3RRI.mp4/O_Oozju3RRI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O_Oozju3RRI.mp4/O_Oozju3RRI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O_Oozju3RRI.m3u8/O_Oozju3RRI.m3u8"}, "duration": 593, "id": "O_Oozju3RRI", "title": "MPC and multiplier", "format": "mp4", "description": "Introduction to the marginal propensity to consume and the multiplier", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/mpc-tutorial/mpc-and-multiplier/", "slug": "mpc-and-multiplier", "kind": "Video", "video_id": "O_Oozju3RRI", "keywords": "mpc, multiplier, keynes", "youtube_id": "O_Oozju3RRI", "readable_id": "mpc-and-multiplier"}, "3UlE8gyKbkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3UlE8gyKbkU.mp4/3UlE8gyKbkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3UlE8gyKbkU.mp4/3UlE8gyKbkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3UlE8gyKbkU.m3u8/3UlE8gyKbkU.m3u8"}, "duration": 134, "id": "3UlE8gyKbkU", "title": "Example: All the ways you can flip a coin", "format": "mp4", "description": "Manually going through the combinatorics to determine the probability of an event occuring", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/coin-flipping-example/", "slug": "coin-flipping-example", "kind": "Video", "video_id": "3UlE8gyKbkU", "keywords": "u08_l4_t1_we3, Coin, Flipping, Example", "youtube_id": "3UlE8gyKbkU", "readable_id": "coin-flipping-example"}, "Kl4Dcj9o570": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kl4Dcj9o570.mp4/Kl4Dcj9o570.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kl4Dcj9o570.mp4/Kl4Dcj9o570.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kl4Dcj9o570.m3u8/Kl4Dcj9o570.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/masaccio-holy-trinity-c-1427/", "duration": 517, "id": "Kl4Dcj9o570", "title": "Masaccio, Holy Trinity", "format": "mp4", "description": "Masaccio, Holy Trinity, c. 1427, Fresco, 667 x 317 cm, Santa Maria Novella, Florence", "slug": "masaccio-holy-trinity-c-1427", "kind": "Video", "video_id": "Kl4Dcj9o570", "keywords": "Masaccio, Florence, Art History, Smarthistory, Khan Academy, Santa Maria Novella, Renaissance, Fresco", "youtube_id": "Kl4Dcj9o570", "readable_id": "masaccio-holy-trinity-c-1427"}, "2BgWWsypzLA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2BgWWsypzLA.mp4/2BgWWsypzLA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2BgWWsypzLA.mp4/2BgWWsypzLA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2BgWWsypzLA.m3u8/2BgWWsypzLA.m3u8"}, "duration": 482, "id": "2BgWWsypzLA", "title": "Repeating decimal as infinite geometric series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/repeating-decimal-geometric-series/", "slug": "repeating-decimal-geometric-series", "kind": "Video", "video_id": "2BgWWsypzLA", "keywords": "", "youtube_id": "2BgWWsypzLA", "readable_id": "repeating-decimal-geometric-series"}, "3Po3nfITsok": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Po3nfITsok.mp4/3Po3nfITsok.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Po3nfITsok.mp4/3Po3nfITsok.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Po3nfITsok.m3u8/3Po3nfITsok.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/order-of-operations-example/", "duration": 863, "id": "3Po3nfITsok", "title": "Order of operations, more examples", "format": "mp4", "description": "Complete a series of order of operations problems, including expressions with variables.", "slug": "order-of-operations-example", "kind": "Video", "video_id": "3Po3nfITsok", "keywords": "Order, Of, Operations", "youtube_id": "3Po3nfITsok", "readable_id": "order-of-operations-example"}, "YrHx2R72hFk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YrHx2R72hFk.mp4/YrHx2R72hFk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YrHx2R72hFk.mp4/YrHx2R72hFk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YrHx2R72hFk.m3u8/YrHx2R72hFk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/proton-nmr-practice-1/", "duration": 696, "id": "YrHx2R72hFk", "title": "Proton NMR practice 1", "format": "mp4", "description": "", "slug": "proton-nmr-practice-1", "kind": "Video", "video_id": "YrHx2R72hFk", "keywords": "", "youtube_id": "YrHx2R72hFk", "readable_id": "proton-nmr-practice-1"}, "z_5AAk1jABI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z_5AAk1jABI.mp4/z_5AAk1jABI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z_5AAk1jABI.mp4/z_5AAk1jABI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z_5AAk1jABI.m3u8/z_5AAk1jABI.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/catacomb-priscilla/", "duration": 664, "id": "z_5AAk1jABI", "title": "Catacomb of Priscilla, Rome", "format": "mp4", "description": "Catacomb of Priscilla, Rome, late 2nd century through the 4th century C.E.\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "catacomb-priscilla", "kind": "Video", "video_id": "z_5AAk1jABI", "keywords": "Rome Priscilla catacombs catacomb Early Christian fresco burial Good Shepherd Madonna", "youtube_id": "z_5AAk1jABI", "readable_id": "catacomb-priscilla"}, "2aUFB9hQncQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2aUFB9hQncQ.mp4/2aUFB9hQncQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2aUFB9hQncQ.mp4/2aUFB9hQncQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2aUFB9hQncQ.m3u8/2aUFB9hQncQ.m3u8"}, "path": "khan/humanities/art-1010/beginners-guide-20-21/art-context/", "duration": 627, "id": "2aUFB9hQncQ", "title": "Art and context: Monet's Cliff Walk at Pourville and Malevich's White on White", "format": "mp4", "description": "Art & Context: Monet's Cliff Walk at Pourville & Malevich's Suprematist Composition: White on White A conversation with Sal Khan, Steven Zucker & Beth Harris", "slug": "art-context", "kind": "Video", "video_id": "2aUFB9hQncQ", "keywords": "art history,", "youtube_id": "2aUFB9hQncQ", "readable_id": "art-context"}, "dtAyPy1OZCw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dtAyPy1OZCw.mp4/dtAyPy1OZCw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dtAyPy1OZCw.mp4/dtAyPy1OZCw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dtAyPy1OZCw.m3u8/dtAyPy1OZCw.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-behavior/secure-and-insecure-attachment/", "duration": 410, "id": "dtAyPy1OZCw", "title": "Secure and insecure attachment", "format": "mp4", "description": "", "slug": "secure-and-insecure-attachment", "kind": "Video", "video_id": "dtAyPy1OZCw", "keywords": "", "youtube_id": "dtAyPy1OZCw", "readable_id": "secure-and-insecure-attachment"}, "D4nK5uXuPXM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D4nK5uXuPXM.mp4/D4nK5uXuPXM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D4nK5uXuPXM.mp4/D4nK5uXuPXM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D4nK5uXuPXM.m3u8/D4nK5uXuPXM.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/equestrian-sculpture-of-marcus-aurelius-c-173-76-c-e/", "duration": 228, "id": "D4nK5uXuPXM", "title": "Equestrian Sculpture of Marcus Aurelius", "format": "mp4", "description": "Empire: Equestrian Sculpture of Marcus Aurelius, bronze, c. 173-76 C.E., (Capitoline Museums, Rome). The original location of the sculpture is unknown though it had been housed in the Lateran Palace since the 8th century until it was placed in the center of the Piazza del Campidoglio by Michelangelo in 1538. The original is now indoors for purposes of conservation. Marcus Aurelius ruled 161-180 C.E.", "slug": "equestrian-sculpture-of-marcus-aurelius-c-173-76-c-e", "kind": "Video", "video_id": "D4nK5uXuPXM", "keywords": "rome, equestrian, marcus aurelius, smarthistory, art, art history, roman, ancient rome, emporer", "youtube_id": "D4nK5uXuPXM", "readable_id": "equestrian-sculpture-of-marcus-aurelius-c-173-76-c-e"}, "PzmKc8leu9o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PzmKc8leu9o.mp4/PzmKc8leu9o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PzmKc8leu9o.mp4/PzmKc8leu9o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PzmKc8leu9o.m3u8/PzmKc8leu9o.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/comparing-colleges-special-focus-or-affiliation/", "duration": 167, "id": "PzmKc8leu9o", "title": "Comparing colleges based on special focus or affiliation", "format": "mp4", "description": "FIlter by special focus or affiliation using College Board's college search tool", "slug": "comparing-colleges-special-focus-or-affiliation", "kind": "Video", "video_id": "PzmKc8leu9o", "keywords": "", "youtube_id": "PzmKc8leu9o", "readable_id": "comparing-colleges-special-focus-or-affiliation"}, "SFdsY9Rdh6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SFdsY9Rdh6w.mp4/SFdsY9Rdh6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SFdsY9Rdh6w.mp4/SFdsY9Rdh6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SFdsY9Rdh6w.m3u8/SFdsY9Rdh6w.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/mutual-funds/exchange-traded-funds-etfs/", "duration": 302, "id": "SFdsY9Rdh6w", "title": "Exchange traded funds (ETFs)", "format": "mp4", "description": "Comparing ETF's, open-end, and closed-end funds", "slug": "exchange-traded-funds-etfs", "kind": "Video", "video_id": "SFdsY9Rdh6w", "keywords": "ETFs", "youtube_id": "SFdsY9Rdh6w", "readable_id": "exchange-traded-funds-etfs"}, "eSXvvUmu7II": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eSXvvUmu7II.mp4/eSXvvUmu7II.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eSXvvUmu7II.mp4/eSXvvUmu7II.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eSXvvUmu7II.m3u8/eSXvvUmu7II.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-9-11/", "duration": 85, "id": "eSXvvUmu7II", "title": "11 Allowance savings", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-11", "kind": "Video", "video_id": "eSXvvUmu7II", "keywords": "", "youtube_id": "eSXvvUmu7II", "readable_id": "sat-2010-may-9-11"}, "XdsifNBa9kk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XdsifNBa9kk.mp4/XdsifNBa9kk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XdsifNBa9kk.mp4/XdsifNBa9kk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XdsifNBa9kk.m3u8/XdsifNBa9kk.m3u8"}, "duration": 441, "id": "XdsifNBa9kk", "title": "Slope of a secant line example 2", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/secant-line-slope-tangent/slopes-of-secant-lines/", "slug": "slopes-of-secant-lines", "kind": "Video", "video_id": "XdsifNBa9kk", "keywords": "", "youtube_id": "XdsifNBa9kk", "readable_id": "slopes-of-secant-lines"}, "o_eNoF1DnZs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o_eNoF1DnZs.mp4/o_eNoF1DnZs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o_eNoF1DnZs.mp4/o_eNoF1DnZs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o_eNoF1DnZs.m3u8/o_eNoF1DnZs.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-30/", "duration": 737, "id": "o_eNoF1DnZs", "title": "GMAT: Data sufficiency 30", "format": "mp4", "description": "121-124, pg. 288", "slug": "gmat-data-sufficiency-30", "kind": "Video", "video_id": "o_eNoF1DnZs", "keywords": "gmat, data, sufficiency, math", "youtube_id": "o_eNoF1DnZs", "readable_id": "gmat-data-sufficiency-30"}, "YvUWkJcfp1w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YvUWkJcfp1w.mp4/YvUWkJcfp1w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YvUWkJcfp1w.mp4/YvUWkJcfp1w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YvUWkJcfp1w.m3u8/YvUWkJcfp1w.m3u8"}, "duration": 331, "id": "YvUWkJcfp1w", "title": "Component mounting holes", "format": "mp4", "description": "In this video we show you how and where to create the mounting holes in BIt-zee's Lexan base for the arduino, batteries, camera, on/off switch and wire routing.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-component-mounting-holes/", "slug": "bit-zee-s-component-mounting-holes", "kind": "Video", "video_id": "YvUWkJcfp1w", "keywords": "", "youtube_id": "YvUWkJcfp1w", "readable_id": "bit-zee-s-component-mounting-holes"}, "WQBBbAhjxq0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WQBBbAhjxq0.mp4/WQBBbAhjxq0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WQBBbAhjxq0.mp4/WQBBbAhjxq0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WQBBbAhjxq0.m3u8/WQBBbAhjxq0.m3u8"}, "path": "khan/humanities/art-asia/art-japan/edo-period/courtesan-cat/", "duration": 113, "id": "WQBBbAhjxq0", "title": "Courtesan playing with a cat", "format": "mp4", "description": "Laura Allen, Curator of Japanese Art at the Asian Art Museum discusses a monochrome woodblock print of a courtesan playing with a cat from the Grabhorn collection.", "slug": "courtesan-cat", "kind": "Video", "video_id": "WQBBbAhjxq0", "keywords": "", "youtube_id": "WQBBbAhjxq0", "readable_id": "courtesan-cat"}, "Nu_6X04EGHk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nu_6X04EGHk.mp4/Nu_6X04EGHk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nu_6X04EGHk.mp4/Nu_6X04EGHk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nu_6X04EGHk.m3u8/Nu_6X04EGHk.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/a-tour-of-hadrian-s-villa-with-dr-bernard-frischer/", "duration": 484, "id": "Nu_6X04EGHk", "title": "Hadrian's Villa, Tivoli: A virtual tour", "format": "mp4", "description": "A virtual tour of Hadrian's Villa using a 3D digital model of the villa created under the direction of Dr. Bernard Frischer. The ruins of Hadrian's Villa, in the town of Tivoli, near Rome, is spread over an area of approximately 250 acres. Many of the structures were designed by the Emperor Hadrian who ruled from 117 until his death in 138 C.E. This virtual rendering is based on current archeological research and has been created in consultation with art historians, archaeologists, and museum curators with expertise in this area. Please note, a few features are necessarily assumptions based on the best available evidence. Speakers: Dr. Bernard Frischer and Dr. Beth Harris", "slug": "a-tour-of-hadrian-s-villa-with-dr-bernard-frischer", "kind": "Video", "video_id": "Nu_6X04EGHk", "keywords": "art history, khan academy, smarthistory, Hadrian, Rome, Tivoli, Hadrians Villa, Ancient Rome, Roman architecture", "youtube_id": "Nu_6X04EGHk", "readable_id": "a-tour-of-hadrian-s-villa-with-dr-bernard-frischer"}, "Cz_GWNdf_68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Cz_GWNdf_68.mp4/Cz_GWNdf_68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Cz_GWNdf_68.mp4/Cz_GWNdf_68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Cz_GWNdf_68.m3u8/Cz_GWNdf_68.m3u8"}, "duration": 744, "id": "Cz_GWNdf_68", "title": "Intuition for second fundamental theorem of calculus", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/definite_integrals/intuition-for-second-fundamental-theorem-of-calculus/", "slug": "intuition-for-second-fundamental-theorem-of-calculus", "kind": "Video", "video_id": "Cz_GWNdf_68", "keywords": "", "youtube_id": "Cz_GWNdf_68", "readable_id": "intuition-for-second-fundamental-theorem-of-calculus"}, "n9C7sMb7MmI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n9C7sMb7MmI.mp4/n9C7sMb7MmI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n9C7sMb7MmI.mp4/n9C7sMb7MmI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n9C7sMb7MmI.m3u8/n9C7sMb7MmI.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-late-period/damascus-room/", "duration": 400, "id": "n9C7sMb7MmI", "title": "Qa'a: The Damascus room", "format": "mp4", "description": "Reception Room (Qa'a), Ottoman period, 1119 a.h. / 1707 a.d., Damascus, Syria, poplar, gesso relief with gold and tin leaf, glazes and paint; cypress, poplar, walnut, black mulberry, mother-of pearl, marble and other stones, stucco with glass, plaster, ceramic tiles, iron, brass, 22 feet and a 1/2 inch high x 16 feet, 8-1/2 inches deep x 26 feet, 4-3/4 inches long, Metropolitan Museum of Art.\nA conversation between Dr. Elizabeth Macaulay-Lewis and Dr. Steven Zucker by the Damascus Room.", "slug": "damascus-room", "kind": "Video", "video_id": "n9C7sMb7MmI", "keywords": "", "youtube_id": "n9C7sMb7MmI", "readable_id": "damascus-room"}, "WWe7pZjc4s8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WWe7pZjc4s8.mp4/WWe7pZjc4s8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WWe7pZjc4s8.mp4/WWe7pZjc4s8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WWe7pZjc4s8.m3u8/WWe7pZjc4s8.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/cosine-taylor-series-at-0-maclaurin/", "duration": 337, "id": "WWe7pZjc4s8", "title": "Cosine Taylor series at 0 (Maclaurin)", "format": "mp4", "description": "Approximating f(x)=cos x using a Maclauren Series (special case of a Taylor series at x=0)", "slug": "cosine-taylor-series-at-0-maclaurin", "kind": "Video", "video_id": "WWe7pZjc4s8", "keywords": "taylor, maclauren, approximation, polynomial", "youtube_id": "WWe7pZjc4s8", "readable_id": "cosine-taylor-series-at-0-maclaurin"}, "bcrsyGxUbkA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bcrsyGxUbkA.mp4/bcrsyGxUbkA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bcrsyGxUbkA.mp4/bcrsyGxUbkA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bcrsyGxUbkA.m3u8/bcrsyGxUbkA.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/new-topic-2015-04-17t152348757z/petrus-christus-portrait-of-a-young-woman-c-1470/", "duration": 109, "id": "bcrsyGxUbkA", "title": "Christus, Portrait of a Young Girl", "format": "mp4", "description": "Petrus Christus, Portrait of a Young Woman, c. 1470, oil on oak, 29 x 22.50 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin). In the Google Art Project: http://www.googleartproject.com/collection/gemaldegalerie/artwork/portrait-of-a-young-woman-petrus-christus/324332/", "slug": "petrus-christus-portrait-of-a-young-woman-c-1470", "kind": "Video", "video_id": "bcrsyGxUbkA", "keywords": "Christus, Girl, GAP, Google Art Project, Petrus Christus, Portrait of a Young Woman, 1470, oil on oak, Gem\u00e4ldegalerie, Staatliche Museen zu Berlin, Berlin, Netherlandish, Renaissance, Northern, Painting, Portrait", "youtube_id": "bcrsyGxUbkA", "readable_id": "petrus-christus-portrait-of-a-young-woman-c-1470"}, "LPZ5C3CgavE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LPZ5C3CgavE.mp4/LPZ5C3CgavE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LPZ5C3CgavE.mp4/LPZ5C3CgavE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LPZ5C3CgavE.m3u8/LPZ5C3CgavE.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/nanni-di-banco-four-crowned-saints/", "duration": 202, "id": "LPZ5C3CgavE", "title": "Nanni di Banco, Four Crowned Saints", "format": "mp4", "description": "Nanni Di Banco,\u00a0Four Crowned Saints, Or San Michele, Florence, Italy, c. 1410-16, marble, figures 6' high", "slug": "nanni-di-banco-four-crowned-saints", "kind": "Video", "video_id": "LPZ5C3CgavE", "keywords": "", "youtube_id": "LPZ5C3CgavE", "readable_id": "nanni-di-banco-four-crowned-saints"}, "L0CmbneYETs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L0CmbneYETs.mp4/L0CmbneYETs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L0CmbneYETs.mp4/L0CmbneYETs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L0CmbneYETs.m3u8/L0CmbneYETs.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/matrices_elimination/matrices-reduced-row-echelon-form-1/", "duration": 1063, "id": "L0CmbneYETs", "title": "Matrices: Reduced row echelon form 1", "format": "mp4", "description": "Solving a system of linear equations by putting an augmented matrix into reduced row echelon form", "slug": "matrices-reduced-row-echelon-form-1", "kind": "Video", "video_id": "L0CmbneYETs", "keywords": "matrix, augmented, echelon", "youtube_id": "L0CmbneYETs", "readable_id": "matrices-reduced-row-echelon-form-1"}, "Z0XPMFL45oo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z0XPMFL45oo.mp4/Z0XPMFL45oo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z0XPMFL45oo.mp4/Z0XPMFL45oo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z0XPMFL45oo.m3u8/Z0XPMFL45oo.m3u8"}, "duration": 587, "id": "Z0XPMFL45oo", "title": "Aldosterone and ADH", "format": "mp4", "description": "Find out how Aldosterone and ADH cause changes in volume and osmolarity. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/aldosterone-and-adh/", "slug": "aldosterone-and-adh", "kind": "Video", "video_id": "Z0XPMFL45oo", "keywords": "", "youtube_id": "Z0XPMFL45oo", "readable_id": "aldosterone-and-adh"}, "23I5GS4JiDg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/23I5GS4JiDg.mp4/23I5GS4JiDg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/23I5GS4JiDg.mp4/23I5GS4JiDg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/23I5GS4JiDg.m3u8/23I5GS4JiDg.m3u8"}, "path": "khan/math/recreational-math/vi-hart/infinity/kinds-of-infinity/", "duration": 896, "id": "23I5GS4JiDg", "title": "How many kinds of infinity are there?", "format": "mp4", "description": "", "slug": "kinds-of-infinity", "kind": "Video", "video_id": "23I5GS4JiDg", "keywords": "mathematics, numbers, repeating decimals, real numbers, surreal numbers, hyperreal numbers", "youtube_id": "23I5GS4JiDg", "readable_id": "kinds-of-infinity"}, "9FC0WT186aY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9FC0WT186aY.mp4/9FC0WT186aY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9FC0WT186aY.mp4/9FC0WT186aY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9FC0WT186aY.m3u8/9FC0WT186aY.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-make-10/adding-to-10-example/", "duration": 120, "id": "9FC0WT186aY", "title": "Adding to 10", "format": "mp4", "description": "Learn that if we have 3 bananas, then we need 7 more bananas to make 10 bananas.", "slug": "adding-to-10-example", "kind": "Video", "video_id": "9FC0WT186aY", "keywords": "", "youtube_id": "9FC0WT186aY", "readable_id": "adding-to-10-example"}, "S6JoxHSxS6A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S6JoxHSxS6A.mp4/S6JoxHSxS6A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S6JoxHSxS6A.mp4/S6JoxHSxS6A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S6JoxHSxS6A.m3u8/S6JoxHSxS6A.m3u8"}, "duration": 192, "id": "S6JoxHSxS6A", "title": "Fashion meets art: Preen inspired by David Hockney", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nJustin Thornton and Thea Bregazzi make up the design duo Preen. For their resort collection 2014, they drew on David Hockney's 1967 painting A Bigger Splash\u00a0to create a line of swimwear and clothing that captured the sunny colours and warm climate of the painting. Here they show how they transformed Hockney's painting with its hot Los Angeles light and inviting pool into fashion that reflects what they call a \"romance of a dream of an ideal.\"", "path": "preen-inspired-by-david-hockney/", "slug": "preen-inspired-by-david-hockney", "kind": "Video", "video_id": "S6JoxHSxS6A", "keywords": "Tate, David Hockey", "youtube_id": "S6JoxHSxS6A", "readable_id": "preen-inspired-by-david-hockney"}, "H3i-OUb5z1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H3i-OUb5z1k.mp4/H3i-OUb5z1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H3i-OUb5z1k.mp4/H3i-OUb5z1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H3i-OUb5z1k.m3u8/H3i-OUb5z1k.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/jacob-monod-lac-operon/", "duration": 718, "id": "H3i-OUb5z1k", "title": "Jacob Monod lac operon", "format": "mp4", "description": "", "slug": "jacob-monod-lac-operon", "kind": "Video", "video_id": "H3i-OUb5z1k", "keywords": "", "youtube_id": "H3i-OUb5z1k", "readable_id": "jacob-monod-lac-operon"}, "PWUuGDovHEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PWUuGDovHEI.mp4/PWUuGDovHEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PWUuGDovHEI.mp4/PWUuGDovHEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PWUuGDovHEI.m3u8/PWUuGDovHEI.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/michelangelo/carving-marble-with-traditional-tools/", "duration": 168, "id": "PWUuGDovHEI", "title": "Carving marble with traditional tools", "format": "mp4", "description": "Watch a sculptor demonstrate the use of traditional tools\u2014such as the tooth chisel, the point chisel, the drill, and the rasp\u2014as he creates a finished figure \u00a0from a block of marble. Love art? Follow us on Google+", "slug": "carving-marble-with-traditional-tools", "kind": "Video", "video_id": "PWUuGDovHEI", "keywords": "", "youtube_id": "PWUuGDovHEI", "readable_id": "carving-marble-with-traditional-tools"}, "FgsgpoFhleA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FgsgpoFhleA.mp4/FgsgpoFhleA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FgsgpoFhleA.mp4/FgsgpoFhleA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FgsgpoFhleA.m3u8/FgsgpoFhleA.m3u8"}, "path": "khan/test-prep/mcat/cells/prokaryotes-bacteria/bacterial-characteristics-gram-staining/", "duration": 445, "id": "FgsgpoFhleA", "title": "Bacterial characteristics - Gram staining", "format": "mp4", "description": "", "slug": "bacterial-characteristics-gram-staining", "kind": "Video", "video_id": "FgsgpoFhleA", "keywords": "", "youtube_id": "FgsgpoFhleA", "readable_id": "bacterial-characteristics-gram-staining"}, "SUrlTlI-oxI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SUrlTlI-oxI.mp4/SUrlTlI-oxI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SUrlTlI-oxI.mp4/SUrlTlI-oxI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SUrlTlI-oxI.m3u8/SUrlTlI-oxI.m3u8"}, "duration": 106, "id": "SUrlTlI-oxI", "title": "Visually determining vertical asymptotes", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/limits-infinity/visual-vertical-asymptotes/", "slug": "visual-vertical-asymptotes", "kind": "Video", "video_id": "SUrlTlI-oxI", "keywords": "", "youtube_id": "SUrlTlI-oxI", "readable_id": "visual-vertical-asymptotes"}, "7aGEvpHaNJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7aGEvpHaNJ8.mp4/7aGEvpHaNJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7aGEvpHaNJ8.mp4/7aGEvpHaNJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7aGEvpHaNJ8.m3u8/7aGEvpHaNJ8.m3u8"}, "duration": 593, "id": "7aGEvpHaNJ8", "title": "Challenging similarity problem", "format": "mp4", "description": "Interesting similarity problem where we don't have a lot of information to work with", "path": "khan/math/geometry/similarity/cc-solving-prob-similar-tri/challenging-similarity-problem/", "slug": "challenging-similarity-problem", "kind": "Video", "video_id": "7aGEvpHaNJ8", "keywords": "Challenging, Similarity, Problem", "youtube_id": "7aGEvpHaNJ8", "readable_id": "challenging-similarity-problem"}, "UgnF1w-H8vw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UgnF1w-H8vw.mp4/UgnF1w-H8vw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UgnF1w-H8vw.mp4/UgnF1w-H8vw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UgnF1w-H8vw.m3u8/UgnF1w-H8vw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/small-intestine-part-1/", "duration": 390, "id": "UgnF1w-H8vw", "title": "Small intestine 1: Structure", "format": "mp4", "description": "", "slug": "small-intestine-part-1", "kind": "Video", "video_id": "UgnF1w-H8vw", "keywords": "MCAT", "youtube_id": "UgnF1w-H8vw", "readable_id": "small-intestine-part-1"}, "ArcrdMkEmKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ArcrdMkEmKo.mp4/ArcrdMkEmKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ArcrdMkEmKo.mp4/ArcrdMkEmKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ArcrdMkEmKo.m3u8/ArcrdMkEmKo.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/inverting-3x3-part-2-determinant-and-adjugate-of-a-matrix/", "duration": 383, "id": "ArcrdMkEmKo", "title": "Inverting 3x3 part 2: Determinant and adjugate of a matrix", "format": "mp4", "description": "Finishing up our 3x3 matrix inversion", "slug": "inverting-3x3-part-2-determinant-and-adjugate-of-a-matrix", "kind": "Video", "video_id": "ArcrdMkEmKo", "keywords": "", "youtube_id": "ArcrdMkEmKo", "readable_id": "inverting-3x3-part-2-determinant-and-adjugate-of-a-matrix"}, "X-iqwAt2Qmk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X-iqwAt2Qmk.mp4/X-iqwAt2Qmk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X-iqwAt2Qmk.mp4/X-iqwAt2Qmk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X-iqwAt2Qmk.m3u8/X-iqwAt2Qmk.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/roverupdate_dec2013/", "duration": 140, "id": "X-iqwAt2Qmk", "title": "Dating younger rocks", "format": "mp4", "description": "NASA's Curiosity has determined the age of a Martian rock and provided first readings of radiation on the surface of Mars.", "slug": "roverupdate_dec2013", "kind": "Video", "video_id": "X-iqwAt2Qmk", "keywords": "", "youtube_id": "X-iqwAt2Qmk", "readable_id": "roverupdate_dec2013"}, "tvO0358YUYM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tvO0358YUYM.mp4/tvO0358YUYM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tvO0358YUYM.mp4/tvO0358YUYM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tvO0358YUYM.m3u8/tvO0358YUYM.m3u8"}, "duration": 458, "id": "tvO0358YUYM", "title": "Change of state example", "format": "mp4", "description": "Specific Heat Capacity and Enthalpy of Vaporization example", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/change-of-state-example/", "slug": "change-of-state-example", "kind": "Video", "video_id": "tvO0358YUYM", "keywords": "Specific, Heat, Capacity, Enthalpy, of, Vaporization, State, Change, Changes", "youtube_id": "tvO0358YUYM", "readable_id": "change-of-state-example"}, "aTjNDKlz8G4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aTjNDKlz8G4.mp4/aTjNDKlz8G4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aTjNDKlz8G4.mp4/aTjNDKlz8G4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aTjNDKlz8G4.m3u8/aTjNDKlz8G4.m3u8"}, "duration": 595, "id": "aTjNDKlz8G4", "title": "Speed translation", "format": "mp4", "description": "Translating speed units", "path": "khan/math/pre-algebra/rates-and-ratios/unit_conversion/speed-translation/", "slug": "speed-translation", "kind": "Video", "video_id": "aTjNDKlz8G4", "keywords": "Math, units, speed, CC_6_RP_3_d", "youtube_id": "aTjNDKlz8G4", "readable_id": "speed-translation"}, "m6c6dlmUT1c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m6c6dlmUT1c.mp4/m6c6dlmUT1c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m6c6dlmUT1c.mp4/m6c6dlmUT1c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m6c6dlmUT1c.m3u8/m6c6dlmUT1c.m3u8"}, "duration": 668, "id": "m6c6dlmUT1c", "title": "Parametric equations 1", "format": "mp4", "description": "Introduction to parametric equations", "path": "khan/math/precalculus/parametric_equations/parametric/parametric-equations-1/", "slug": "parametric-equations-1", "kind": "Video", "video_id": "m6c6dlmUT1c", "keywords": "parametric, equation, physics, CC_39336_A-CED_2, CC_39336_F-BF_1_c, CC_39336_F-IF_4, CC_39336_F-IF_6", "youtube_id": "m6c6dlmUT1c", "readable_id": "parametric-equations-1"}, "cUVS0AlRyw8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cUVS0AlRyw8.mp4/cUVS0AlRyw8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cUVS0AlRyw8.mp4/cUVS0AlRyw8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cUVS0AlRyw8.m3u8/cUVS0AlRyw8.m3u8"}, "duration": 620, "id": "cUVS0AlRyw8", "title": "Activating angiotensin 2", "format": "mp4", "description": "See how Renin and ACE work to cut Angiotensinogen down to size! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/activating-angiotensin-2/", "slug": "activating-angiotensin-2", "kind": "Video", "video_id": "cUVS0AlRyw8", "keywords": "", "youtube_id": "cUVS0AlRyw8", "readable_id": "activating-angiotensin-2"}, "j_dqT-XeIjA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j_dqT-XeIjA.mp4/j_dqT-XeIjA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j_dqT-XeIjA.mp4/j_dqT-XeIjA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j_dqT-XeIjA.m3u8/j_dqT-XeIjA.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/tateshots-vito-acconci/", "duration": 279, "id": "j_dqT-XeIjA", "title": "Vito Acconci", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nPioneer of performance art Vito Acconci talks about three ground-breaking actions he staged at the Sonnabend Gallery, New York in January 1972. In Seedbed, Transference Zone, and Supply Room, the artist explores the interplay between the psychological and the social, and the overlapping boundaries of interior and exterior. Listen as Acconci, who still lives and works in New York, shares his thoughts on these three performances.", "slug": "tateshots-vito-acconci", "kind": "Video", "video_id": "j_dqT-XeIjA", "keywords": "Tate, performance art", "youtube_id": "j_dqT-XeIjA", "readable_id": "tateshots-vito-acconci"}, "I4iwhvDhvKE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I4iwhvDhvKE.mp4/I4iwhvDhvKE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I4iwhvDhvKE.mp4/I4iwhvDhvKE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I4iwhvDhvKE.m3u8/I4iwhvDhvKE.m3u8"}, "duration": 663, "id": "I4iwhvDhvKE", "title": "Les Miserables and France's many revolutions", "format": "mp4", "description": "Overview of early 19th century French history and context for Les Miserables", "path": "khan/humanities/history/1600s-1800s/many-french-revolutions/les-miserables-and-france-s-many-revolutions/", "slug": "les-miserables-and-france-s-many-revolutions", "kind": "Video", "video_id": "I4iwhvDhvKE", "keywords": "napoleon, republic, louis", "youtube_id": "I4iwhvDhvKE", "readable_id": "les-miserables-and-france-s-many-revolutions"}, "_jz7yo7L3Z0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_jz7yo7L3Z0.mp4/_jz7yo7L3Z0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_jz7yo7L3Z0.mp4/_jz7yo7L3Z0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_jz7yo7L3Z0.m3u8/_jz7yo7L3Z0.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/perception-prejudice-and-bias/stigma-social-and-self/", "duration": 436, "id": "_jz7yo7L3Z0", "title": "Stigma - Social and self", "format": "mp4", "description": "", "slug": "stigma-social-and-self", "kind": "Video", "video_id": "_jz7yo7L3Z0", "keywords": "", "youtube_id": "_jz7yo7L3Z0", "readable_id": "stigma-social-and-self"}, "uDuzy-t7GDA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uDuzy-t7GDA.mp4/uDuzy-t7GDA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uDuzy-t7GDA.mp4/uDuzy-t7GDA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uDuzy-t7GDA.m3u8/uDuzy-t7GDA.m3u8"}, "path": "khan/humanities/global-culture/beginners-guide-contemporary-art1/hirst-s-shark-interpreting-contemporary-art/", "duration": 469, "id": "uDuzy-t7GDA", "title": "Damien Hirst, The Physical Impossibility of Death in the Mind of Someone Living", "format": "mp4", "description": "Beth Harris, Sal Khan and Steven Zucker discuss the Damien Hirst sculpture, The Physical Impossibility of Death in the Mind of Someone Living, and issues of interpretation.", "slug": "hirst-s-shark-interpreting-contemporary-art", "kind": "Video", "video_id": "uDuzy-t7GDA", "keywords": "Beth Harris, Sal Khan, Steven Zucker, Damien Hirst, sculpture, Shark, contemporary art, art", "youtube_id": "uDuzy-t7GDA", "readable_id": "hirst-s-shark-interpreting-contemporary-art"}, "1NjuXzHByN8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1NjuXzHByN8.mp4/1NjuXzHByN8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1NjuXzHByN8.mp4/1NjuXzHByN8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1NjuXzHByN8.m3u8/1NjuXzHByN8.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/measure-magnets/inverse-square-law-deflection-method/", "duration": 107, "id": "1NjuXzHByN8", "title": "Inverse cube law (deflection method)", "format": "mp4", "description": "Attempt to measure the change in force of a magnet over a distance using the deflection of a compass. What is wrong with this approach?", "slug": "inverse-square-law-deflection-method", "kind": "Video", "video_id": "1NjuXzHByN8", "keywords": "inverse square law", "youtube_id": "1NjuXzHByN8", "readable_id": "inverse-square-law-deflection-method"}, "ISGFo8t0a4c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ISGFo8t0a4c.mp4/ISGFo8t0a4c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ISGFo8t0a4c.mp4/ISGFo8t0a4c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ISGFo8t0a4c.m3u8/ISGFo8t0a4c.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2009-may-3-3/", "duration": 88, "id": "ISGFo8t0a4c", "title": "3 Solving inequality", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-3", "kind": "Video", "video_id": "ISGFo8t0a4c", "keywords": "", "youtube_id": "ISGFo8t0a4c", "readable_id": "sat-2009-may-3-3"}, "ALlKbGE6BH0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ALlKbGE6BH0.mp4/ALlKbGE6BH0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ALlKbGE6BH0.mp4/ALlKbGE6BH0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ALlKbGE6BH0.m3u8/ALlKbGE6BH0.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/ss-financial-aid-major-location-college-search/", "duration": 57, "id": "ALlKbGE6BH0", "title": "Student story: Prioritizing financial aid, major, and location in the college search", "format": "mp4", "description": "", "slug": "ss-financial-aid-major-location-college-search", "kind": "Video", "video_id": "ALlKbGE6BH0", "keywords": "", "youtube_id": "ALlKbGE6BH0", "readable_id": "ss-financial-aid-major-location-college-search"}, "Idxeo49szW0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Idxeo49szW0.mp4/Idxeo49szW0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Idxeo49szW0.mp4/Idxeo49szW0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Idxeo49szW0.m3u8/Idxeo49szW0.m3u8"}, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/inverse-trig-functions-arctan/", "duration": 606, "id": "Idxeo49szW0", "title": "Inverse trig functions: arctan", "format": "mp4", "description": "Understanding the arctan or inverse tangent function.", "slug": "inverse-trig-functions-arctan", "kind": "Video", "video_id": "Idxeo49szW0", "keywords": "trigonometry, arctan, inverse, CC_39336_F-BF_4, CC_39336_F-BF_4_b, CC_39336_F-BF_4_c", "youtube_id": "Idxeo49szW0", "readable_id": "inverse-trig-functions-arctan"}, "2G_Jr_XpnY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2G_Jr_XpnY4.mp4/2G_Jr_XpnY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2G_Jr_XpnY4.mp4/2G_Jr_XpnY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2G_Jr_XpnY4.m3u8/2G_Jr_XpnY4.m3u8"}, "duration": 386, "id": "2G_Jr_XpnY4", "title": "Recognizing divisibility", "format": "mp4", "description": "Recognizing Divisibility", "path": "khan/math/pre-algebra/factors-multiples/divisibility_tests/recognizing-divisibility/", "slug": "recognizing-divisibility", "kind": "Video", "video_id": "2G_Jr_XpnY4", "keywords": "U02_L1_T3_we1, Recognizing, Divisibility, CC_3_OA_7", "youtube_id": "2G_Jr_XpnY4", "readable_id": "recognizing-divisibility"}, "DahDvwYY28Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DahDvwYY28Y.mp4/DahDvwYY28Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DahDvwYY28Y.mp4/DahDvwYY28Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DahDvwYY28Y.m3u8/DahDvwYY28Y.m3u8"}, "duration": 448, "id": "DahDvwYY28Y", "title": "The American Revolution: 1775", "format": "mp4", "description": "Find out what the American Revolution was all about.", "path": "american-revolution-intro/", "slug": "american-revolution-intro", "kind": "Video", "video_id": "DahDvwYY28Y", "keywords": "", "youtube_id": "DahDvwYY28Y", "readable_id": "american-revolution-intro"}, "rm4pzNYDHAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rm4pzNYDHAI.mp4/rm4pzNYDHAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rm4pzNYDHAI.mp4/rm4pzNYDHAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rm4pzNYDHAI.m3u8/rm4pzNYDHAI.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/culture-lag-and-culture-shock/", "duration": 181, "id": "rm4pzNYDHAI", "title": "Culture lag and culture shock", "format": "mp4", "description": "", "slug": "culture-lag-and-culture-shock", "kind": "Video", "video_id": "rm4pzNYDHAI", "keywords": "", "youtube_id": "rm4pzNYDHAI", "readable_id": "culture-lag-and-culture-shock"}, "Khzs4k2a-mw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Khzs4k2a-mw.mp4/Khzs4k2a-mw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Khzs4k2a-mw.mp4/Khzs4k2a-mw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Khzs4k2a-mw.m3u8/Khzs4k2a-mw.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/vector-basic/visualizing-vector-addition-examples/", "duration": 139, "id": "Khzs4k2a-mw", "title": "Visualizing vector addition examples", "format": "mp4", "description": "", "slug": "visualizing-vector-addition-examples", "kind": "Video", "video_id": "Khzs4k2a-mw", "keywords": "", "youtube_id": "Khzs4k2a-mw", "readable_id": "visualizing-vector-addition-examples"}, "5cK86VKoBPw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5cK86VKoBPw.mp4/5cK86VKoBPw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5cK86VKoBPw.mp4/5cK86VKoBPw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5cK86VKoBPw.m3u8/5cK86VKoBPw.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/functional-relationships-1/", "duration": 280, "id": "5cK86VKoBPw", "title": "Recognize functions from tables", "format": "mp4", "description": "Functional Relationships 1", "slug": "functional-relationships-1", "kind": "Video", "video_id": "5cK86VKoBPw", "keywords": "U03_L2_T1_we1, Functional, Relationships, CC_8_F_1, CC_8_F_5, CC_39336_F-IF_4, CC_39336_F-IF_7", "youtube_id": "5cK86VKoBPw", "readable_id": "functional-relationships-1"}, "2dZpQJSSSAs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2dZpQJSSSAs.mp4/2dZpQJSSSAs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2dZpQJSSSAs.mp4/2dZpQJSSSAs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2dZpQJSSSAs.m3u8/2dZpQJSSSAs.m3u8"}, "duration": 421, "id": "2dZpQJSSSAs", "title": "Endocrine system and influence on behavior - Part 2", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-endocrine-system/endocrine-system-and-influence-on-behavior-part-2/", "slug": "endocrine-system-and-influence-on-behavior-part-2", "kind": "Video", "video_id": "2dZpQJSSSAs", "keywords": "", "youtube_id": "2dZpQJSSSAs", "readable_id": "endocrine-system-and-influence-on-behavior-part-2"}, "uGjR338bHPs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uGjR338bHPs.mp4/uGjR338bHPs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uGjR338bHPs.mp4/uGjR338bHPs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uGjR338bHPs.m3u8/uGjR338bHPs.m3u8"}, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/benjamin-franklin-inventor/", "duration": 504, "id": "uGjR338bHPs", "title": "Benjamin Franklin the inventor", "format": "mp4", "description": "In this video, Sal and Aspen Institute President and CEO Walter Isaacson discuss Benjamin Franklin as an inventor.\u00a0", "slug": "benjamin-franklin-inventor", "kind": "Video", "video_id": "uGjR338bHPs", "keywords": "", "youtube_id": "uGjR338bHPs", "readable_id": "benjamin-franklin-inventor"}, "RweAgQwLdMs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RweAgQwLdMs.mp4/RweAgQwLdMs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RweAgQwLdMs.mp4/RweAgQwLdMs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RweAgQwLdMs.m3u8/RweAgQwLdMs.m3u8"}, "duration": 138, "id": "RweAgQwLdMs", "title": "Example: Solving simple quadratic", "format": "mp4", "description": "Simple Quadratic Equation", "path": "khan/math/algebra/quadratics/quadratics-square-root/simple-quadratic-equation/", "slug": "simple-quadratic-equation", "kind": "Video", "video_id": "RweAgQwLdMs", "keywords": "u16_l5_t1_we1, Simple, Quadratic, Equation", "youtube_id": "RweAgQwLdMs", "readable_id": "simple-quadratic-equation"}, "UHEiWws8t-g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UHEiWws8t-g.mp4/UHEiWws8t-g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UHEiWws8t-g.mp4/UHEiWws8t-g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UHEiWws8t-g.m3u8/UHEiWws8t-g.m3u8"}, "duration": 303, "id": "UHEiWws8t-g", "title": "Signal detection theory - part 2", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/sensory-perception/signal-detection-theory-part-2/", "slug": "signal-detection-theory-part-2", "kind": "Video", "video_id": "UHEiWws8t-g", "keywords": "", "youtube_id": "UHEiWws8t-g", "readable_id": "signal-detection-theory-part-2"}, "ogrRKL30iJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ogrRKL30iJ8.mp4/ogrRKL30iJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ogrRKL30iJ8.mp4/ogrRKL30iJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ogrRKL30iJ8.m3u8/ogrRKL30iJ8.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/vienna-genesis/", "duration": 352, "id": "ogrRKL30iJ8", "title": "Jacob wresting the angel, Vienna Genesis", "format": "mp4", "description": "The Story of Jacob, Vienna Genesis, \u00a0folio 12v, early 6th century, \u00a0tempera, gold and silver on purple vellum, \u00a0cod. theol. gr. 31 (\u00d6sterreichische Nationalbibliothek, Vienna). Speakers: Dr. Nancy Ross and Dr. Steven Zucker\n", "slug": "vienna-genesis", "kind": "Video", "video_id": "ogrRKL30iJ8", "keywords": "art history, early christian, byzantine, manuscript, Genesis, Jacob", "youtube_id": "ogrRKL30iJ8", "readable_id": "vienna-genesis"}, "ORTI4kk1okM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ORTI4kk1okM.mp4/ORTI4kk1okM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ORTI4kk1okM.mp4/ORTI4kk1okM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ORTI4kk1okM.m3u8/ORTI4kk1okM.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/conditional-and-absolute-convergence/", "duration": 301, "id": "ORTI4kk1okM", "title": "Conditional and absolute convergence", "format": "mp4", "description": "Conditional and absolute convergence", "slug": "conditional-and-absolute-convergence", "kind": "Video", "video_id": "ORTI4kk1okM", "keywords": "", "youtube_id": "ORTI4kk1okM", "readable_id": "conditional-and-absolute-convergence"}, "aNqG4ChKShI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aNqG4ChKShI.mp4/aNqG4ChKShI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aNqG4ChKShI.mp4/aNqG4ChKShI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aNqG4ChKShI.m3u8/aNqG4ChKShI.m3u8"}, "duration": 512, "id": "aNqG4ChKShI", "title": "Basic subtraction", "format": "mp4", "description": "Introduction to subtraction", "path": "khan/math/arithmetic/addition-subtraction/basic_addition/basic-subtraction/", "slug": "basic-subtraction", "kind": "Video", "video_id": "aNqG4ChKShI", "keywords": "math, subtraction, CC_1_OA_5, CC_1_OA_4, CC_1_OA_6", "youtube_id": "aNqG4ChKShI", "readable_id": "basic-subtraction"}, "UTs4uZhu5t8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UTs4uZhu5t8.mp4/UTs4uZhu5t8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UTs4uZhu5t8.mp4/UTs4uZhu5t8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UTs4uZhu5t8.m3u8/UTs4uZhu5t8.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/inequalities-using-addition-and-subtraction/", "duration": 468, "id": "UTs4uZhu5t8", "title": "Inequalities using addition and subtraction", "format": "mp4", "description": "Inequalities Using Addition and Subtraction", "slug": "inequalities-using-addition-and-subtraction", "kind": "Video", "video_id": "UTs4uZhu5t8", "keywords": "Inequalities, Using, Addition, and, Subtraction, CC_39336_A-REI_3", "youtube_id": "UTs4uZhu5t8", "readable_id": "inequalities-using-addition-and-subtraction"}, "9UBZchwb2KI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9UBZchwb2KI.mp4/9UBZchwb2KI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9UBZchwb2KI.mp4/9UBZchwb2KI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9UBZchwb2KI.m3u8/9UBZchwb2KI.m3u8"}, "duration": 330, "id": "9UBZchwb2KI", "title": "Equations for radical functions example", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/shifting-reflecting-functions/radical-functions-equations/", "slug": "radical-functions-equations", "kind": "Video", "video_id": "9UBZchwb2KI", "keywords": "", "youtube_id": "9UBZchwb2KI", "readable_id": "radical-functions-equations"}, "J9_ouZpBknM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J9_ouZpBknM.mp4/J9_ouZpBknM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J9_ouZpBknM.mp4/J9_ouZpBknM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J9_ouZpBknM.m3u8/J9_ouZpBknM.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/donatello-feast-of-herod-1423-27/", "duration": 274, "id": "J9_ouZpBknM", "title": "Donatello, Feast of Herod", "format": "mp4", "description": "Donatello, Feast of Herod, panel on the baptismal font of Siena Cathedral, Siena, Italy, Gilded bronze,1423--1427.", "slug": "donatello-feast-of-herod-1423-27", "kind": "Video", "video_id": "J9_ouZpBknM", "keywords": "smarthistory, khan academy, donatello, art history, renaissance, siena, baptistry", "youtube_id": "J9_ouZpBknM", "readable_id": "donatello-feast-of-herod-1423-27"}, "XLMs9jqMYOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XLMs9jqMYOY.mp4/XLMs9jqMYOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XLMs9jqMYOY.mp4/XLMs9jqMYOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XLMs9jqMYOY.m3u8/XLMs9jqMYOY.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-explore-instructor-reflections/", "duration": 140, "id": "XLMs9jqMYOY", "title": "DLab: Instructor reflections on the Explore program", "format": "mp4", "description": "", "slug": "discovery-lab-explore-instructor-reflections", "kind": "Video", "video_id": "XLMs9jqMYOY", "keywords": "", "youtube_id": "XLMs9jqMYOY", "readable_id": "discovery-lab-explore-instructor-reflections"}, "N2c78pv7f1g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N2c78pv7f1g.mp4/N2c78pv7f1g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N2c78pv7f1g.mp4/N2c78pv7f1g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N2c78pv7f1g.m3u8/N2c78pv7f1g.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/disaccharides-and-polysaccharides/", "duration": 783, "id": "N2c78pv7f1g", "title": "Disaccharides and polysaccharides", "format": "mp4", "description": "", "slug": "disaccharides-and-polysaccharides", "kind": "Video", "video_id": "N2c78pv7f1g", "keywords": "", "youtube_id": "N2c78pv7f1g", "readable_id": "disaccharides-and-polysaccharides"}, "0YOGrTNgGhE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0YOGrTNgGhE.mp4/0YOGrTNgGhE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0YOGrTNgGhE.mp4/0YOGrTNgGhE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0YOGrTNgGhE.m3u8/0YOGrTNgGhE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/electrostatics-part-2/", "duration": 812, "id": "0YOGrTNgGhE", "title": "Electric field", "format": "mp4", "description": "Electric Fields", "slug": "electrostatics-part-2", "kind": "Video", "video_id": "0YOGrTNgGhE", "keywords": "Electric, field, coulomb, physics", "youtube_id": "0YOGrTNgGhE", "readable_id": "electrostatics-part-2"}, "6z_Kjsn8VLI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6z_Kjsn8VLI.mp4/6z_Kjsn8VLI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6z_Kjsn8VLI.mp4/6z_Kjsn8VLI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6z_Kjsn8VLI.m3u8/6z_Kjsn8VLI.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/giotto-arena-scrovegni-chapel-part-4-of-4/", "duration": 383, "id": "6z_Kjsn8VLI", "title": "Giotto, Arena (Scrovegni) Chapel (part 4)", "format": "mp4", "description": "Part 4: The Last Judgment from Giotto's Arena (Scrovegni) Chapel, Padua, c. 1305\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "giotto-arena-scrovegni-chapel-part-4-of-4", "kind": "Video", "video_id": "6z_Kjsn8VLI", "keywords": "Giotto, Scrovegni, Last Judgment, Padua, Arena Chapel, fresco", "youtube_id": "6z_Kjsn8VLI", "readable_id": "giotto-arena-scrovegni-chapel-part-4-of-4"}, "IYiy0UlL8_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IYiy0UlL8_E.mp4/IYiy0UlL8_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IYiy0UlL8_E.mp4/IYiy0UlL8_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IYiy0UlL8_E.m3u8/IYiy0UlL8_E.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction/diels-alder-iv-stereochemistry-of-diene/", "duration": 823, "id": "IYiy0UlL8_E", "title": "Diels-Alder IV: Stereochemistry of diene", "format": "mp4", "description": "", "slug": "diels-alder-iv-stereochemistry-of-diene", "kind": "Video", "video_id": "IYiy0UlL8_E", "keywords": "", "youtube_id": "IYiy0UlL8_E", "readable_id": "diels-alder-iv-stereochemistry-of-diene"}, "PxCTyVQMVbs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PxCTyVQMVbs.mp4/PxCTyVQMVbs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PxCTyVQMVbs.mp4/PxCTyVQMVbs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PxCTyVQMVbs.m3u8/PxCTyVQMVbs.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/bellini-san-giobbe-altarpiece/", "duration": 362, "id": "PxCTyVQMVbs", "title": "Bellini, San Giobbe Altarpiece", "format": "mp4", "description": "Giovanni Bellini, San Giobbe Altarpiece, c. 1485, oil on panel, 471 cm \u00d7 258 cm / 185 in \u00d7 102 in (Accademia, Venice) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "bellini-san-giobbe-altarpiece", "kind": "Video", "video_id": "PxCTyVQMVbs", "keywords": "art history, venice, Bellini", "youtube_id": "PxCTyVQMVbs", "readable_id": "bellini-san-giobbe-altarpiece"}, "Xrh3cInCFFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xrh3cInCFFc.mp4/Xrh3cInCFFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xrh3cInCFFc.mp4/Xrh3cInCFFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xrh3cInCFFc.m3u8/Xrh3cInCFFc.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-9/", "duration": 62, "id": "Xrh3cInCFFc", "title": "9 Substituting function definition", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-9", "kind": "Video", "video_id": "Xrh3cInCFFc", "keywords": "", "youtube_id": "Xrh3cInCFFc", "readable_id": "sat-getting-ready-2-9"}, "b8CWoxRYBDo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b8CWoxRYBDo.mp4/b8CWoxRYBDo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b8CWoxRYBDo.mp4/b8CWoxRYBDo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b8CWoxRYBDo.m3u8/b8CWoxRYBDo.m3u8"}, "duration": 251, "id": "b8CWoxRYBDo", "title": "Hadrian, The power of image", "format": "mp4", "description": "For many years Hadrian was perceived as a peace-loving admirer of Greek culture and customs, a philhellene. But the one statue on which this long-standing perception was based is not all that it should be. British Museum curator Thorsten Opper and conservator Tracey Sweek investigate.\u00a0\u00a9 Trustees of the British Museum", "path": "hadrian-power-of-the-imahe/", "slug": "hadrian-power-of-the-imahe", "kind": "Video", "video_id": "b8CWoxRYBDo", "keywords": "Hadrian, Ancient Rome,", "youtube_id": "b8CWoxRYBDo", "readable_id": "hadrian-power-of-the-imahe"}, "Mdk2HeiDUqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mdk2HeiDUqQ.mp4/Mdk2HeiDUqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mdk2HeiDUqQ.mp4/Mdk2HeiDUqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mdk2HeiDUqQ.m3u8/Mdk2HeiDUqQ.m3u8"}, "path": "khan/college-admissions/making-high-school-count/extracurricular-and-leadership/ss-extracurriculars-that-are-nontraditional/", "duration": 63, "id": "Mdk2HeiDUqQ", "title": "Student story: Extracurriculars that are nontraditional", "format": "mp4", "description": "", "slug": "ss-extracurriculars-that-are-nontraditional", "kind": "Video", "video_id": "Mdk2HeiDUqQ", "keywords": "", "youtube_id": "Mdk2HeiDUqQ", "readable_id": "ss-extracurriculars-that-are-nontraditional"}, "OjzfQDFf7Uk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OjzfQDFf7Uk.mp4/OjzfQDFf7Uk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OjzfQDFf7Uk.mp4/OjzfQDFf7Uk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OjzfQDFf7Uk.m3u8/OjzfQDFf7Uk.m3u8"}, "duration": 574, "id": "OjzfQDFf7Uk", "title": "Statistical questions", "format": "mp4", "description": "What makes a question a \"statistical question\"?", "path": "understanding-statistical-questions/", "slug": "understanding-statistical-questions", "kind": "Video", "video_id": "OjzfQDFf7Uk", "keywords": "", "youtube_id": "OjzfQDFf7Uk", "readable_id": "understanding-statistical-questions"}, "QXMTzXaWJyk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QXMTzXaWJyk.mp4/QXMTzXaWJyk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QXMTzXaWJyk.mp4/QXMTzXaWJyk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QXMTzXaWJyk.m3u8/QXMTzXaWJyk.m3u8"}, "duration": 313, "id": "QXMTzXaWJyk", "title": "The food chain", "format": "mp4", "description": "", "path": "a-million-sharks/", "slug": "a-million-sharks", "kind": "Video", "video_id": "QXMTzXaWJyk", "keywords": "", "youtube_id": "QXMTzXaWJyk", "readable_id": "a-million-sharks"}, "Rw8XE6hvHBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rw8XE6hvHBo.mp4/Rw8XE6hvHBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rw8XE6hvHBo.mp4/Rw8XE6hvHBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rw8XE6hvHBo.m3u8/Rw8XE6hvHBo.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/titian-noli-me-tangere-c-1514/", "duration": 234, "id": "Rw8XE6hvHBo", "title": "Titian, Noli me Tangere", "format": "mp4", "description": "Titian, Noli me Tangere, c. 1514, oil on canvas, 110.5 x 91.9 cm (The National Gallery, London)", "slug": "titian-noli-me-tangere-c-1514", "kind": "Video", "video_id": "Rw8XE6hvHBo", "keywords": "Titian, Noli me Tangere, 1514, National Gallery, London, Venice, Venetian, Renaissance, glazing, landscape, Don't Touch Me, art, painting, art history, Khan Academy, Smarthistory, Google Art Project, OER", "youtube_id": "Rw8XE6hvHBo", "readable_id": "titian-noli-me-tangere-c-1514"}, "V6bs91KND8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V6bs91KND8E.mp4/V6bs91KND8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V6bs91KND8E.mp4/V6bs91KND8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V6bs91KND8E.m3u8/V6bs91KND8E.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2008-may-4-18/", "duration": 284, "id": "V6bs91KND8E", "title": "18 Average tree height", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-18", "kind": "Video", "video_id": "V6bs91KND8E", "keywords": "", "youtube_id": "V6bs91KND8E", "readable_id": "sat-2008-may-4-18"}, "-yCIMk1x0Pk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-yCIMk1x0Pk.mp4/-yCIMk1x0Pk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-yCIMk1x0Pk.mp4/-yCIMk1x0Pk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-yCIMk1x0Pk.m3u8/-yCIMk1x0Pk.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/stem-cells-and-cancer/embryonic-stem-cells/", "duration": 1194, "id": "-yCIMk1x0Pk", "title": "Embryonic stem cells", "format": "mp4", "description": "An overview of early development of a zygote to an embryo. Embryonic and somatic stem cells.", "slug": "embryonic-stem-cells", "kind": "Video", "video_id": "-yCIMk1x0Pk", "keywords": "biology, stem, cells, embryonic", "youtube_id": "-yCIMk1x0Pk", "readable_id": "embryonic-stem-cells"}, "1-AaLq7VS0s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1-AaLq7VS0s.mp4/1-AaLq7VS0s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1-AaLq7VS0s.mp4/1-AaLq7VS0s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1-AaLq7VS0s.m3u8/1-AaLq7VS0s.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-4-6/", "duration": 152, "id": "1-AaLq7VS0s", "title": "6 Area of small circles", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-6", "kind": "Video", "video_id": "1-AaLq7VS0s", "keywords": "", "youtube_id": "1-AaLq7VS0s", "readable_id": "sat-2010-may-4-6"}, "-BYHn5Vum_A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-BYHn5Vum_A.mp4/-BYHn5Vum_A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-BYHn5Vum_A.mp4/-BYHn5Vum_A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-BYHn5Vum_A.m3u8/-BYHn5Vum_A.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/printmaking/moma-printmaking-01/", "duration": 109, "id": "-BYHn5Vum_A", "title": "Introduction to printmaking", "format": "mp4", "description": "Learn about the main types of printmaking: relief, intaglio and lithography. Did you know that MoMA offers studio courses online? Check out the list of offerings including online courses on collage and painting techniques.", "slug": "moma-printmaking-01", "kind": "Video", "video_id": "-BYHn5Vum_A", "keywords": "", "youtube_id": "-BYHn5Vum_A", "readable_id": "moma-printmaking-01"}, "K_fgnCJOI8I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K_fgnCJOI8I.mp4/K_fgnCJOI8I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K_fgnCJOI8I.mp4/K_fgnCJOI8I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K_fgnCJOI8I.m3u8/K_fgnCJOI8I.m3u8"}, "duration": 1034, "id": "K_fgnCJOI8I", "title": "Path independence for line integrals", "format": "mp4", "description": "Showing that if a vector field is the gradient of a scalar field, then its line integral is path independent", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/path-independence-for-line-integrals/", "slug": "path-independence-for-line-integrals", "kind": "Video", "video_id": "K_fgnCJOI8I", "keywords": "path, independent, potential, conservative, line, integral, vector", "youtube_id": "K_fgnCJOI8I", "readable_id": "path-independence-for-line-integrals"}, "xL9ejqb53ms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xL9ejqb53ms.mp4/xL9ejqb53ms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xL9ejqb53ms.mp4/xL9ejqb53ms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xL9ejqb53ms.m3u8/xL9ejqb53ms.m3u8"}, "duration": 309, "id": "xL9ejqb53ms", "title": "Detectable civilizations in our galaxy 5", "format": "mp4", "description": "More reasons why we haven't detected anything yet.", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/life-in-universe-topic/detectable-civilizations-in-our-galaxy-5/", "slug": "detectable-civilizations-in-our-galaxy-5", "kind": "Video", "video_id": "xL9ejqb53ms", "keywords": "extraterrestrial, drake, civilizations", "youtube_id": "xL9ejqb53ms", "readable_id": "detectable-civilizations-in-our-galaxy-5"}, "gMcs6RF_LrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gMcs6RF_LrQ.mp4/gMcs6RF_LrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gMcs6RF_LrQ.mp4/gMcs6RF_LrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gMcs6RF_LrQ.m3u8/gMcs6RF_LrQ.m3u8"}, "path": "khan/math/differential-equations/laplace-transform/laplace-transform-tutorial/laplace-transform-3-l-sin-at/", "duration": 644, "id": "gMcs6RF_LrQ", "title": "L{sin(at)}) - transform of sin(at)", "format": "mp4", "description": "Laplace Transform of sin(at) (part 1)", "slug": "laplace-transform-3-l-sin-at", "kind": "Video", "video_id": "gMcs6RF_LrQ", "keywords": "laplace, transform", "youtube_id": "gMcs6RF_LrQ", "readable_id": "laplace-transform-3-l-sin-at"}, "9McJ3GobPaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9McJ3GobPaY.mp4/9McJ3GobPaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9McJ3GobPaY.mp4/9McJ3GobPaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9McJ3GobPaY.m3u8/9McJ3GobPaY.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/two_dig_add_sub/subtracting-within-20/", "duration": 243, "id": "9McJ3GobPaY", "title": "Subtracting 14 - 6", "format": "mp4", "description": "Learn how to subtract 14 - 6 by first thinking about subtracting 2 and 4.", "slug": "subtracting-within-20", "kind": "Video", "video_id": "9McJ3GobPaY", "keywords": "", "youtube_id": "9McJ3GobPaY", "readable_id": "subtracting-within-20"}, "2oJldeE4JcU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2oJldeE4JcU.mp4/2oJldeE4JcU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2oJldeE4JcU.mp4/2oJldeE4JcU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2oJldeE4JcU.m3u8/2oJldeE4JcU.m3u8"}, "duration": 307, "id": "2oJldeE4JcU", "title": "Shapes of distributions", "format": "mp4", "description": "Some distributions are symmetrical, with data evenly distributed about the mean. Other distributions are \"skewed,\" with data tending to the left or right of the mean. We sometimes say that skewed distributions have \"tails.\"", "path": "shapes-of-distributions/", "slug": "shapes-of-distributions", "kind": "Video", "video_id": "2oJldeE4JcU", "keywords": "", "youtube_id": "2oJldeE4JcU", "readable_id": "shapes-of-distributions"}, "3cccLMqZlcI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3cccLMqZlcI.mp4/3cccLMqZlcI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3cccLMqZlcI.mp4/3cccLMqZlcI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3cccLMqZlcI.m3u8/3cccLMqZlcI.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-11/", "duration": 60, "id": "3cccLMqZlcI", "title": "11 Book sales", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-11", "kind": "Video", "video_id": "3cccLMqZlcI", "keywords": "", "youtube_id": "3cccLMqZlcI", "readable_id": "2013-sat-practice-6-11"}, "XUT7zEffaTY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XUT7zEffaTY.mp4/XUT7zEffaTY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XUT7zEffaTY.mp4/XUT7zEffaTY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XUT7zEffaTY.m3u8/XUT7zEffaTY.m3u8"}, "duration": 461, "id": "XUT7zEffaTY", "title": "Meta directors II", "format": "mp4", "description": "Inductive and Resonance effects", "path": "khan/science/organic-chemistry/aromatic-compounds/deffect-2013-07-03t144454851z/meta-directors-ii/", "slug": "meta-directors-ii", "kind": "Video", "video_id": "XUT7zEffaTY", "keywords": "", "youtube_id": "XUT7zEffaTY", "readable_id": "meta-directors-ii"}, "HCC96awA-FM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HCC96awA-FM.mp4/HCC96awA-FM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HCC96awA-FM.mp4/HCC96awA-FM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HCC96awA-FM.m3u8/HCC96awA-FM.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/comparing-decimals-pre-alg/comparing-decimals/", "duration": 89, "id": "HCC96awA-FM", "title": "Comparing decimals example 2", "format": "mp4", "description": "We're using the less than (<) and greater than (>) symbols to compare decimals now. Cool!", "slug": "comparing-decimals", "kind": "Video", "video_id": "HCC96awA-FM", "keywords": "U03_L1_T2_we1, Comparing, Decimals, CC_4_NF_7, CC_5_NBT_3, CC_5_NBT_3_b", "youtube_id": "HCC96awA-FM", "readable_id": "comparing-decimals"}, "sTcqtljxLOk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sTcqtljxLOk.mp4/sTcqtljxLOk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sTcqtljxLOk.mp4/sTcqtljxLOk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sTcqtljxLOk.m3u8/sTcqtljxLOk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/ultrasound-medical-imaging/", "duration": 335, "id": "sTcqtljxLOk", "title": "Ultrasound medical imaging", "format": "mp4", "description": "", "slug": "ultrasound-medical-imaging", "kind": "Video", "video_id": "sTcqtljxLOk", "keywords": "", "youtube_id": "sTcqtljxLOk", "readable_id": "ultrasound-medical-imaging"}, "6yrPU8rYOhs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6yrPU8rYOhs.mp4/6yrPU8rYOhs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6yrPU8rYOhs.mp4/6yrPU8rYOhs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6yrPU8rYOhs.m3u8/6yrPU8rYOhs.m3u8"}, "duration": 923, "id": "6yrPU8rYOhs", "title": "Preimage and kernel example", "format": "mp4", "description": "Example involving the preimage of a set under a transformation. Definition of kernel of a transformation.", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/preimage-and-kernel-example/", "slug": "preimage-and-kernel-example", "kind": "Video", "video_id": "6yrPU8rYOhs", "keywords": "preimage, kernel", "youtube_id": "6yrPU8rYOhs", "readable_id": "preimage-and-kernel-example"}, "MxJ7taVhYwA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MxJ7taVhYwA.mp4/MxJ7taVhYwA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MxJ7taVhYwA.mp4/MxJ7taVhYwA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MxJ7taVhYwA.m3u8/MxJ7taVhYwA.m3u8"}, "duration": 298, "id": "MxJ7taVhYwA", "title": "The Constitution and slavery part 1", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the Constitution and the ideological divide around slavery in addition to the Three-Fifths compromise.", "path": "slavery-part-one/", "slug": "slavery-part-one", "kind": "Video", "video_id": "MxJ7taVhYwA", "keywords": "", "youtube_id": "MxJ7taVhYwA", "readable_id": "slavery-part-one"}, "T5DGZIsfK-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T5DGZIsfK-0.mp4/T5DGZIsfK-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T5DGZIsfK-0.mp4/T5DGZIsfK-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T5DGZIsfK-0.m3u8/T5DGZIsfK-0.m3u8"}, "duration": 375, "id": "T5DGZIsfK-0", "title": "Detectable civilizations in our galaxy 4", "format": "mp4", "description": "Taking a shot at estimating the number of detectable civilizations", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/life-in-universe-topic/detectable-civilizations-in-our-galaxy-4/", "slug": "detectable-civilizations-in-our-galaxy-4", "kind": "Video", "video_id": "T5DGZIsfK-0", "keywords": "drake, alien, astronomy", "youtube_id": "T5DGZIsfK-0", "readable_id": "detectable-civilizations-in-our-galaxy-4"}, "NU1v-8VRirU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NU1v-8VRirU.mp4/NU1v-8VRirU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NU1v-8VRirU.mp4/NU1v-8VRirU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NU1v-8VRirU.m3u8/NU1v-8VRirU.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/logistic-differential-equation/solving-logistic-differential-equation-part2/", "duration": 598, "id": "NU1v-8VRirU", "title": "Solving the logistic differential equation part 2", "format": "mp4", "description": "", "slug": "solving-logistic-differential-equation-part2", "kind": "Video", "video_id": "NU1v-8VRirU", "keywords": "", "youtube_id": "NU1v-8VRirU", "readable_id": "solving-logistic-differential-equation-part2"}, "ix7nCARbyWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ix7nCARbyWs.mp4/ix7nCARbyWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ix7nCARbyWs.mp4/ix7nCARbyWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ix7nCARbyWs.m3u8/ix7nCARbyWs.m3u8"}, "duration": 808, "id": "ix7nCARbyWs", "title": "Common Core Standards: Expressions and equations (grades 5-7)", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the standards for expressions and equations, with a focus on grades 5-7.", "path": "ccc-expressions-equations-grades-5-7/", "slug": "ccc-expressions-equations-grades-5-7", "kind": "Video", "video_id": "ix7nCARbyWs", "keywords": "", "youtube_id": "ix7nCARbyWs", "readable_id": "ccc-expressions-equations-grades-5-7"}, "3aDV3L8aZtY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3aDV3L8aZtY.mp4/3aDV3L8aZtY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3aDV3L8aZtY.mp4/3aDV3L8aZtY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3aDV3L8aZtY.m3u8/3aDV3L8aZtY.m3u8"}, "duration": 237, "id": "3aDV3L8aZtY", "title": "Example of rigid transformation and congruence", "format": "mp4", "description": "", "path": "khan/math/geometry/congruent-triangles/transformations-congruence/example-of-rigid-transformation-and-congruence/", "slug": "example-of-rigid-transformation-and-congruence", "kind": "Video", "video_id": "3aDV3L8aZtY", "keywords": "", "youtube_id": "3aDV3L8aZtY", "readable_id": "example-of-rigid-transformation-and-congruence"}, "oxf0LMJTklg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oxf0LMJTklg.mp4/oxf0LMJTklg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oxf0LMJTklg.mp4/oxf0LMJTklg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oxf0LMJTklg.m3u8/oxf0LMJTklg.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/formal-charge-resonance/resonance-benzene-phenoxide/", "duration": 422, "id": "oxf0LMJTklg", "title": "Resonance structures for benzene and the phenoxide anion", "format": "mp4", "description": "", "slug": "resonance-benzene-phenoxide", "kind": "Video", "video_id": "oxf0LMJTklg", "keywords": "", "youtube_id": "oxf0LMJTklg", "readable_id": "resonance-benzene-phenoxide"}, "A-YEtgZPcFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A-YEtgZPcFc.mp4/A-YEtgZPcFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A-YEtgZPcFc.mp4/A-YEtgZPcFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A-YEtgZPcFc.m3u8/A-YEtgZPcFc.m3u8"}, "duration": 522, "id": "A-YEtgZPcFc", "title": "Equilibrium equations", "format": "mp4", "description": "In which Hank shows you that, while it may seem like the Universe is messing with us, equilibrium isn't a cosmic trick. Here, he shows you how to calculate equilibrium constant & conditions of reactions and use RICE tables all with some very easy, not-so-scary math.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem29-equilibrium-equations/", "slug": "chem29-equilibrium-equations", "kind": "Video", "video_id": "A-YEtgZPcFc", "keywords": "", "youtube_id": "A-YEtgZPcFc", "readable_id": "chem29-equilibrium-equations"}, "8xbIS2UkQxI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8xbIS2UkQxI.mp4/8xbIS2UkQxI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8xbIS2UkQxI.mp4/8xbIS2UkQxI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8xbIS2UkQxI.m3u8/8xbIS2UkQxI.m3u8"}, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-properties-shapes/sides-corners/", "duration": 259, "id": "8xbIS2UkQxI", "title": "Cousin Fal's shape collection", "format": "mp4", "description": "Learn how to classify shapes based on their number of sides, number of corners, and side-lengths.", "slug": "sides-corners", "kind": "Video", "video_id": "8xbIS2UkQxI", "keywords": "", "youtube_id": "8xbIS2UkQxI", "readable_id": "sides-corners"}, "X2jVap1YgwI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X2jVap1YgwI.mp4/X2jVap1YgwI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X2jVap1YgwI.mp4/X2jVap1YgwI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X2jVap1YgwI.m3u8/X2jVap1YgwI.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/growing-by-a-percentage/", "duration": 582, "id": "X2jVap1YgwI", "title": "Growing by a percentage", "format": "mp4", "description": "In this example we grow a whole number by a percentage of itself. Growing by percentage is a common skill often used when figuring how much is owed or earned with interest.", "slug": "growing-by-a-percentage", "kind": "Video", "video_id": "X2jVap1YgwI", "keywords": "Percentage, math, khan, CC_7_EE_2, CC_7_RP_3", "youtube_id": "X2jVap1YgwI", "readable_id": "growing-by-a-percentage"}, "czY5nyvZ7cU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/czY5nyvZ7cU.mp4/czY5nyvZ7cU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/czY5nyvZ7cU.mp4/czY5nyvZ7cU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/czY5nyvZ7cU.m3u8/czY5nyvZ7cU.m3u8"}, "duration": 853, "id": "czY5nyvZ7cU", "title": "Secondary active transport in the nephron", "format": "mp4", "description": "Secondary Active Transport in the Nephron", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/secondary-active-transport-in-the-nephron/", "slug": "secondary-active-transport-in-the-nephron", "kind": "Video", "video_id": "czY5nyvZ7cU", "keywords": "secondary, active, transport, nephron, symporter, antiporter", "youtube_id": "czY5nyvZ7cU", "readable_id": "secondary-active-transport-in-the-nephron"}, "mLRYCaYVWFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mLRYCaYVWFc.mp4/mLRYCaYVWFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mLRYCaYVWFc.mp4/mLRYCaYVWFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mLRYCaYVWFc.m3u8/mLRYCaYVWFc.m3u8"}, "duration": 288, "id": "mLRYCaYVWFc", "title": "Liter intuition", "format": "mp4", "description": "What is the volume of a jar of milk? How about a spoon? A swimming pool?\u00a0", "path": "liter-intuition/", "slug": "liter-intuition", "kind": "Video", "video_id": "mLRYCaYVWFc", "keywords": "", "youtube_id": "mLRYCaYVWFc", "readable_id": "liter-intuition"}, "xN3UV5FsBkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xN3UV5FsBkU.mp4/xN3UV5FsBkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xN3UV5FsBkU.mp4/xN3UV5FsBkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xN3UV5FsBkU.m3u8/xN3UV5FsBkU.m3u8"}, "duration": 616, "id": "xN3UV5FsBkU", "title": "Comparative advantage and absolute advantage", "format": "mp4", "description": "Showing that a party benefits from trade as long as there is a comparative advantage (and not necessarily an absolute advantage)", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/gains-from-trade-tutorial/comparative-advantage-and-absolute-advantage/", "slug": "comparative-advantage-and-absolute-advantage", "kind": "Video", "video_id": "xN3UV5FsBkU", "keywords": "trade, comparative, advantage, absolute, economics", "youtube_id": "xN3UV5FsBkU", "readable_id": "comparative-advantage-and-absolute-advantage"}, "A6fbDssPeac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A6fbDssPeac.mp4/A6fbDssPeac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A6fbDssPeac.mp4/A6fbDssPeac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A6fbDssPeac.m3u8/A6fbDssPeac.m3u8"}, "duration": 858, "id": "A6fbDssPeac", "title": "Series sum example", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 54 Series Sum", "path": "khan/test-prep/iit-jee-subject/iit-jee/series-sum-example/", "slug": "series-sum-example", "kind": "Video", "video_id": "A6fbDssPeac", "keywords": "2010, IIT, JEE, Paper, Problem, 54, Series, Sum", "youtube_id": "A6fbDssPeac", "readable_id": "series-sum-example"}, "ZRRG386v6DI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZRRG386v6DI.mp4/ZRRG386v6DI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZRRG386v6DI.mp4/ZRRG386v6DI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZRRG386v6DI.m3u8/ZRRG386v6DI.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthonormal_basis/linear-algebra-gram-schmidt-example-with-3-basis-vectors/", "duration": 837, "id": "ZRRG386v6DI", "title": "Gram-Schmidt example with 3 basis vectors", "format": "mp4", "description": "Gram-Schmidt example with 3 basis vectors", "slug": "linear-algebra-gram-schmidt-example-with-3-basis-vectors", "kind": "Video", "video_id": "ZRRG386v6DI", "keywords": "gram, schmidt", "youtube_id": "ZRRG386v6DI", "readable_id": "linear-algebra-gram-schmidt-example-with-3-basis-vectors"}, "JVhwinCiELI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVhwinCiELI.mp4/JVhwinCiELI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVhwinCiELI.mp4/JVhwinCiELI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVhwinCiELI.m3u8/JVhwinCiELI.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/burgundy-netherlands/ghent-altar-open/", "duration": 443, "id": "JVhwinCiELI", "title": "Jan van Eyck, The Ghent Altarpiece (2 of 2)", "format": "mp4", "description": "Jan van Eyck, Ghent Altarpiece (open), completed 1432, oil on wood, 11\u2019 5\u201d x 7\u2019 6\u201d (Saint Bavo Cathedral, Ghent, Belgium).\u00a0Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "ghent-altar-open", "kind": "Video", "video_id": "JVhwinCiELI", "keywords": "", "youtube_id": "JVhwinCiELI", "readable_id": "ghent-altar-open"}, "s_iwrt7D5OA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s_iwrt7D5OA.mp4/s_iwrt7D5OA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s_iwrt7D5OA.mp4/s_iwrt7D5OA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s_iwrt7D5OA.m3u8/s_iwrt7D5OA.m3u8"}, "path": "khan/partner-content/big-history-project/future/the-biosphere/bhp-globalization-crashcourse/", "duration": 835, "id": "s_iwrt7D5OA", "title": "Crash Course World History: Globalization II \u2013 Good or Bad?", "format": "mp4", "description": "In which John asks whether globalization is a net positive for humanity. While the new global economy has created a lot of wealth, and lifted a lot of people out of poverty, it also has some effects that aren't so hot.\u00a0", "slug": "bhp-globalization-crashcourse", "kind": "Video", "video_id": "s_iwrt7D5OA", "keywords": "", "youtube_id": "s_iwrt7D5OA", "readable_id": "bhp-globalization-crashcourse"}, "zC_dTaEY2AY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zC_dTaEY2AY.mp4/zC_dTaEY2AY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zC_dTaEY2AY.mp4/zC_dTaEY2AY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zC_dTaEY2AY.m3u8/zC_dTaEY2AY.m3u8"}, "duration": 1508, "id": "zC_dTaEY2AY", "title": "Another example graphing with derivatives", "format": "mp4", "description": "Using the first and second derivatives to identify critical points and inflection points and to graph the function.", "path": "khan/math/differential-calculus/derivative_applications/concavity-inflection-points/calculus-graphing-with-derivatives-example/", "slug": "calculus-graphing-with-derivatives-example", "kind": "Video", "video_id": "zC_dTaEY2AY", "keywords": "derivative, calculus, function, graphing, inflection, critical, points, CC_39336_F-IF_7", "youtube_id": "zC_dTaEY2AY", "readable_id": "calculus-graphing-with-derivatives-example"}, "qzsR7cChujg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qzsR7cChujg.mp4/qzsR7cChujg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qzsR7cChujg.mp4/qzsR7cChujg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qzsR7cChujg.m3u8/qzsR7cChujg.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/proportions-2-exercise-examples/", "duration": 264, "id": "qzsR7cChujg", "title": "Proportions 2 exercise examples", "format": "mp4", "description": "", "slug": "proportions-2-exercise-examples", "kind": "Video", "video_id": "qzsR7cChujg", "keywords": "", "youtube_id": "qzsR7cChujg", "readable_id": "proportions-2-exercise-examples"}, "kul2ZmVIQZk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kul2ZmVIQZk.mp4/kul2ZmVIQZk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kul2ZmVIQZk.mp4/kul2ZmVIQZk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kul2ZmVIQZk.m3u8/kul2ZmVIQZk.m3u8"}, "duration": 249, "id": "kul2ZmVIQZk", "title": "Units of measurement word problem: time to leave for home", "format": "mp4", "description": "Mom asks you to be home by 5:45. You know the number of minutes it takes to get home. What time do you leave?", "path": "time-to-leave-for-home/", "slug": "time-to-leave-for-home", "kind": "Video", "video_id": "kul2ZmVIQZk", "keywords": "", "youtube_id": "kul2ZmVIQZk", "readable_id": "time-to-leave-for-home"}, "86NwKBcOlow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/86NwKBcOlow.mp4/86NwKBcOlow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/86NwKBcOlow.mp4/86NwKBcOlow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/86NwKBcOlow.m3u8/86NwKBcOlow.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/solutions-to-two-var-linear-equations/plotting-x-y-relationships/", "duration": 269, "id": "86NwKBcOlow", "title": "Graphing solutions to two-variable linear equations example 1", "format": "mp4", "description": "Plotting (x,y) relationships", "slug": "plotting-x-y-relationships", "kind": "Video", "video_id": "86NwKBcOlow", "keywords": "u13_l1_t2_we1 Plotting (x, y) relationships t2, CC_8_EE_7, CC_39336_A-REI_3", "youtube_id": "86NwKBcOlow", "readable_id": "plotting-x-y-relationships"}, "-ejyeII0i5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-ejyeII0i5c.mp4/-ejyeII0i5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-ejyeII0i5c.mp4/-ejyeII0i5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-ejyeII0i5c.m3u8/-ejyeII0i5c.m3u8"}, "duration": 768, "id": "-ejyeII0i5c", "title": "Epsilon-delta limit definition 1", "format": "mp4", "description": "Introduction to the Epsilon Delta Definition of a Limit.", "path": "khan/math/differential-calculus/limits_topic/epsilon_delta/epsilon-delta-limit-definition-1/", "slug": "epsilon-delta-limit-definition-1", "kind": "Video", "video_id": "-ejyeII0i5c", "keywords": "calculus, epsilon, delta, limit", "youtube_id": "-ejyeII0i5c", "readable_id": "epsilon-delta-limit-definition-1"}, "DK5Z709J2eo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DK5Z709J2eo.mp4/DK5Z709J2eo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DK5Z709J2eo.mp4/DK5Z709J2eo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DK5Z709J2eo.m3u8/DK5Z709J2eo.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-class-infinity-elephants/", "duration": 276, "id": "DK5Z709J2eo", "title": "Doodling in math: Infinity elephants", "format": "mp4", "description": "More videos/info: http://vihart.com/doodlingDoodling Snakes + Graphs: http://www.youtube.com/watch?v=heKK95DAKmsDoodling Stars: http://www.youtube.com/watch?v=CfJzrmS9UfYDoodling Binary Trees: http://www.youtube.com/watch?v=e4MSN6IImpIhttp://vihart.com", "slug": "doodling-in-math-class-infinity-elephants", "kind": "Video", "video_id": "DK5Z709J2eo", "keywords": "math, doodles, mathematics, doodling, school, apollonian gasket, fractals, infinity, infinite series, elephants, mr tusks, puppy-sized elephant", "youtube_id": "DK5Z709J2eo", "readable_id": "doodling-in-math-class-infinity-elephants"}, "Gy_7ZMdpNy0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gy_7ZMdpNy0.mp4/Gy_7ZMdpNy0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gy_7ZMdpNy0.mp4/Gy_7ZMdpNy0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gy_7ZMdpNy0.m3u8/Gy_7ZMdpNy0.m3u8"}, "duration": 262, "id": "Gy_7ZMdpNy0", "title": "2D Equilibrium -- Balancing Games", "format": "mp4", "description": "How does everything even out? Learn what 2D Equilibrium is and how it effects the balance of life.", "path": "2d-equilibrium-balancing-games/", "slug": "2d-equilibrium-balancing-games", "kind": "Video", "video_id": "Gy_7ZMdpNy0", "keywords": "equilibrium", "youtube_id": "Gy_7ZMdpNy0", "readable_id": "2d-equilibrium-balancing-games"}, "UZeBzTI5Omk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UZeBzTI5Omk.mp4/UZeBzTI5Omk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UZeBzTI5Omk.mp4/UZeBzTI5Omk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UZeBzTI5Omk.m3u8/UZeBzTI5Omk.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/microwaves/", "duration": 184, "id": "UZeBzTI5Omk", "title": "Microwaves (1930)", "format": "mp4", "description": "", "slug": "microwaves", "kind": "Video", "video_id": "UZeBzTI5Omk", "keywords": "", "youtube_id": "UZeBzTI5Omk", "readable_id": "microwaves"}, "QaOtsYouet0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QaOtsYouet0.mp4/QaOtsYouet0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QaOtsYouet0.mp4/QaOtsYouet0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QaOtsYouet0.m3u8/QaOtsYouet0.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/nernst-equation/", "duration": 393, "id": "QaOtsYouet0", "title": "Nernst equation", "format": "mp4", "description": "", "slug": "nernst-equation", "kind": "Video", "video_id": "QaOtsYouet0", "keywords": "", "youtube_id": "QaOtsYouet0", "readable_id": "nernst-equation"}, "snw0BrCBQYQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/snw0BrCBQYQ.mp4/snw0BrCBQYQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/snw0BrCBQYQ.mp4/snw0BrCBQYQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/snw0BrCBQYQ.m3u8/snw0BrCBQYQ.m3u8"}, "path": "khan/science/physics/two-dimensional-motion/optimal-projectile-angle/optimal-angle-for-a-projectile-part-4-finding-the-optimal-angle-and-distance-with-a-bit-of-calculus/", "duration": 641, "id": "snw0BrCBQYQ", "title": "Optimal angle for a projectile part 4: Finding the optimal angle and distance with a bit of calculus", "format": "mp4", "description": null, "slug": "optimal-angle-for-a-projectile-part-4-finding-the-optimal-angle-and-distance-with-a-bit-of-calculus", "kind": "Video", "video_id": "snw0BrCBQYQ", "keywords": "Optimal, angle, for, a, projectile, part, 4, Finding, the, and, distance, with, bit, of, calculus", "youtube_id": "snw0BrCBQYQ", "readable_id": "optimal-angle-for-a-projectile-part-4-finding-the-optimal-angle-and-distance-with-a-bit-of-calculus"}, "70tpqg58Oug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/70tpqg58Oug.mp4/70tpqg58Oug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/70tpqg58Oug.mp4/70tpqg58Oug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/70tpqg58Oug.m3u8/70tpqg58Oug.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/preeclampsia/", "duration": 815, "id": "70tpqg58Oug", "title": "Preeclampsia", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "preeclampsia", "kind": "Video", "video_id": "70tpqg58Oug", "keywords": "", "youtube_id": "70tpqg58Oug", "readable_id": "preeclampsia"}, "axB6uhEx628": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/axB6uhEx628.mp4/axB6uhEx628.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/axB6uhEx628.mp4/axB6uhEx628.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/axB6uhEx628.m3u8/axB6uhEx628.m3u8"}, "duration": 358, "id": "axB6uhEx628", "title": "Pangaea", "format": "mp4", "description": "Pangaea - the idea of Pangaea and some of the evidence behind it", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/pangaea/", "slug": "pangaea", "kind": "Video", "video_id": "axB6uhEx628", "keywords": "Pangaea, pangea, marquee", "youtube_id": "axB6uhEx628", "readable_id": "pangaea"}, "dNPs-cr_6Bk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dNPs-cr_6Bk.mp4/dNPs-cr_6Bk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dNPs-cr_6Bk.mp4/dNPs-cr_6Bk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dNPs-cr_6Bk.m3u8/dNPs-cr_6Bk.m3u8"}, "duration": 690, "id": "dNPs-cr_6Bk", "title": "Formal charge and dot structures", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/formal-charge-and-dot-structures/", "slug": "formal-charge-and-dot-structures", "kind": "Video", "video_id": "dNPs-cr_6Bk", "keywords": "", "youtube_id": "dNPs-cr_6Bk", "readable_id": "formal-charge-and-dot-structures"}, "64_ZfIemRGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/64_ZfIemRGM.mp4/64_ZfIemRGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/64_ZfIemRGM.mp4/64_ZfIemRGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/64_ZfIemRGM.m3u8/64_ZfIemRGM.m3u8"}, "duration": 798, "id": "64_ZfIemRGM", "title": "Aldosterone raises blood pressure and lowers potassium", "format": "mp4", "description": "See how Aldosterone effects the principal cells of the kidney to raise BP and lower potassium. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/aldosterone-raises-blood-pressure-and-lowers-potassium/", "slug": "aldosterone-raises-blood-pressure-and-lowers-potassium", "kind": "Video", "video_id": "64_ZfIemRGM", "keywords": "", "youtube_id": "64_ZfIemRGM", "readable_id": "aldosterone-raises-blood-pressure-and-lowers-potassium"}, "tu5mKn3_h7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tu5mKn3_h7Y.mp4/tu5mKn3_h7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tu5mKn3_h7Y.mp4/tu5mKn3_h7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tu5mKn3_h7Y.m3u8/tu5mKn3_h7Y.m3u8"}, "duration": 398, "id": "tu5mKn3_h7Y", "title": "Lion Gate, Mycenae, c. 1300-1250 B.C.E.", "format": "mp4", "description": "\u00a0limestone, relief panel 9' 6\" highSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "path": "khan/humanities/ancient-art-civilizations/aegean-art1/mycenaean/mycenae-lion-gate/", "slug": "mycenae-lion-gate", "kind": "Video", "video_id": "tu5mKn3_h7Y", "keywords": "", "youtube_id": "tu5mKn3_h7Y", "readable_id": "mycenae-lion-gate"}, "JBSDQLZtjFo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JBSDQLZtjFo.mp4/JBSDQLZtjFo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JBSDQLZtjFo.mp4/JBSDQLZtjFo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JBSDQLZtjFo.m3u8/JBSDQLZtjFo.m3u8"}, "duration": 614, "id": "JBSDQLZtjFo", "title": "Discriminant of quadratic equations", "format": "mp4", "description": "Discriminant of Quadratic Equations", "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/discriminant-of-quadratic-equations/", "slug": "discriminant-of-quadratic-equations", "kind": "Video", "video_id": "JBSDQLZtjFo", "keywords": "Discriminant, of, Quadratic, Equations, CC_39336_A-REI_4_b", "youtube_id": "JBSDQLZtjFo", "readable_id": "discriminant-of-quadratic-equations"}, "QqRjcPOt4Ss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QqRjcPOt4Ss.mp4/QqRjcPOt4Ss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QqRjcPOt4Ss.mp4/QqRjcPOt4Ss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QqRjcPOt4Ss.m3u8/QqRjcPOt4Ss.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e1-elimination-carbocation-rearrangements/", "duration": 835, "id": "QqRjcPOt4Ss", "title": "E1 elimination: Carbocation rearrangements", "format": "mp4", "description": "", "slug": "e1-elimination-carbocation-rearrangements", "kind": "Video", "video_id": "QqRjcPOt4Ss", "keywords": "", "youtube_id": "QqRjcPOt4Ss", "readable_id": "e1-elimination-carbocation-rearrangements"}, "mGF7_nqgRpU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mGF7_nqgRpU.mp4/mGF7_nqgRpU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mGF7_nqgRpU.mp4/mGF7_nqgRpU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mGF7_nqgRpU.m3u8/mGF7_nqgRpU.m3u8"}, "path": "khan/partner-content/big-history-project/life/what-is-life/bhp-life-in-all-forms/", "duration": 169, "id": "mGF7_nqgRpU", "title": "Life In All Its Forms", "format": "mp4", "description": "A closer look at the life on Earth and the techniques scientists use to study living organisms.", "slug": "bhp-life-in-all-forms", "kind": "Video", "video_id": "mGF7_nqgRpU", "keywords": "", "youtube_id": "mGF7_nqgRpU", "readable_id": "bhp-life-in-all-forms"}, "T-pMxaKnFx8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T-pMxaKnFx8.mp4/T-pMxaKnFx8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T-pMxaKnFx8.mp4/T-pMxaKnFx8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T-pMxaKnFx8.m3u8/T-pMxaKnFx8.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-2013-build-up-to-bridge-testing/", "duration": 82, "id": "T-pMxaKnFx8", "title": "DLab: Build up to bridge testing", "format": "mp4", "description": "", "slug": "discovery-lab-2013-build-up-to-bridge-testing", "kind": "Video", "video_id": "T-pMxaKnFx8", "keywords": "", "youtube_id": "T-pMxaKnFx8", "readable_id": "discovery-lab-2013-build-up-to-bridge-testing"}, "wf8L9AZa2H4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wf8L9AZa2H4.mp4/wf8L9AZa2H4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wf8L9AZa2H4.mp4/wf8L9AZa2H4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wf8L9AZa2H4.m3u8/wf8L9AZa2H4.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/fra-fillippo-lippi-portrait-of-a-man-and-woman-at-a-casement-c-1440/", "duration": 358, "id": "wf8L9AZa2H4", "title": "Lippi, Portrait of a Man and Woman at a Casement", "format": "mp4", "description": "Fra Fillippo Lippi, Portrait of a Man and Woman at a Casement, tempera on wood, c. 1440 (Metropolitan Museum of Art)\n\nSpeakers: Dr. David Drogin, Dr. Beth Harris\n\nFor more: http://smarthistory.org/lippis-portrait-of-a-man-and-woman-at-a-casement.html", "slug": "fra-fillippo-lippi-portrait-of-a-man-and-woman-at-a-casement-c-1440", "kind": "Video", "video_id": "wf8L9AZa2H4", "keywords": "art history, smarthistory, Lippi", "youtube_id": "wf8L9AZa2H4", "readable_id": "fra-fillippo-lippi-portrait-of-a-man-and-woman-at-a-casement-c-1440"}, "j9gDsCOVab8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j9gDsCOVab8.mp4/j9gDsCOVab8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j9gDsCOVab8.mp4/j9gDsCOVab8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j9gDsCOVab8.m3u8/j9gDsCOVab8.m3u8"}, "duration": 168, "id": "j9gDsCOVab8", "title": "\"Magical\" with Adela Oppenheim", "format": "mp4", "description": "Met curator Adela Oppenheim on emptiness in Pectoral and Necklace of Sithathoryunet with the Name of Senwosret II dating from Egypt\u2019s Middle Kingdom.\n\nThis pectoral is composed around the throne name of King Senwosret II. It was found among the jewelry of Princess Sithathoryunet in a special niche of her underground tomb beside the pyramid of Senwosret II at Lahun. Hieroglyphic signs make up the design, and the whole may be read: \"The god of the rising sun grants life and dominion over all that the sun encircles for one million one hundred thousand years [i.e., eternity] to King Khakheperre [Senwosret II].\"\n\nThis cloisonn\u00e9 pectoral is inlaid with 372 carefully cut pieces of semiprecious stones. The heraldic design is replete with symbolism. Zigzag lines on the base bar represent the primordial waters out of which the primeval hill emerged. Each of the falcons, symbols of the sun god, clasps a circular hieroglyph meaning \"encircled,\" thus declaring the solar deity's supreme power over the universe. The same hieroglyph, elongated to form a cartouche, encircles the throne name of Senwosret II, Khakheperre. Flanking the king's name are two ankh hieroglyphs (meaning \"life\") suspended from cobras whose tails are wound around the sun disk on the falcons' heads. These snakes represent Nekhbet and Udjo, the traditional protector goddesses of the king. Supporting the royal cartouche is the kneeling god Heh clutching two palm ribs symbolizing \"millions of years.\" Thus the king's life and existence in time are described as part of a universe created and sustained by the supreme sun god.\n\nJewelry worn by royal women during the Middle Kingdom was not simply for adornment or an indication of status but was also symbolic of concepts and myths surrounding Egyptian royalty. Jewelry imbued a royal woman with superhuman powers and thus enabled her to support the king in his role as guarantor of divine order on earth. It was essentially the king who benefited from the magical powers inherent in the jewelry worn by the female members of his family, which explains why his name, rather than that of the princess, appears in the designs.\n\nSince the tomb of the princess was beside the pyramid of Senwosret, scholars speculate that she was his daughter. Other items in the tomb bear the name of Amenemhat III, suggesting that the princess lived during the reigns of three of the most powerful rulers of Dynasty 12: Senwosret II, Senwosret III, and Amenemhat III.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "magical/", "slug": "magical", "kind": "Video", "video_id": "j9gDsCOVab8", "keywords": "authority, costume, daily life, death, gemstones, metal, Africa", "youtube_id": "j9gDsCOVab8", "readable_id": "magical"}, "GDppV18XDCs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GDppV18XDCs.mp4/GDppV18XDCs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GDppV18XDCs.mp4/GDppV18XDCs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GDppV18XDCs.m3u8/GDppV18XDCs.m3u8"}, "duration": 600, "id": "GDppV18XDCs", "title": "Quadratic inequality word problem", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/one-variable-modeling/quadratic-inequality-word-problem/", "slug": "quadratic-inequality-word-problem", "kind": "Video", "video_id": "GDppV18XDCs", "keywords": "", "youtube_id": "GDppV18XDCs", "readable_id": "quadratic-inequality-word-problem"}, "lpVCcQtZ9FI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lpVCcQtZ9FI.mp4/lpVCcQtZ9FI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lpVCcQtZ9FI.mp4/lpVCcQtZ9FI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lpVCcQtZ9FI.m3u8/lpVCcQtZ9FI.m3u8"}, "duration": 1528, "id": "lpVCcQtZ9FI", "title": "Workshop presentation: Suney's class", "format": "mp4", "description": "6th grade teacher Suney shows how her KA implementation has evolved", "path": "ka-workshop-presentation-suneys-classroom/", "slug": "ka-workshop-presentation-suneys-classroom", "kind": "Video", "video_id": "lpVCcQtZ9FI", "keywords": "", "youtube_id": "lpVCcQtZ9FI", "readable_id": "ka-workshop-presentation-suneys-classroom"}, "UWrJssS76XE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UWrJssS76XE.mp4/UWrJssS76XE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UWrJssS76XE.mp4/UWrJssS76XE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UWrJssS76XE.m3u8/UWrJssS76XE.m3u8"}, "duration": 365, "id": "UWrJssS76XE", "title": "Allosteric regulation and feedback loops", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/enzymes/allosteric-regulation-and-feedback-loops/", "slug": "allosteric-regulation-and-feedback-loops", "kind": "Video", "video_id": "UWrJssS76XE", "keywords": "", "youtube_id": "UWrJssS76XE", "readable_id": "allosteric-regulation-and-feedback-loops"}, "d4bqNf37mBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d4bqNf37mBY.mp4/d4bqNf37mBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d4bqNf37mBY.mp4/d4bqNf37mBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d4bqNf37mBY.m3u8/d4bqNf37mBY.m3u8"}, "duration": 909, "id": "d4bqNf37mBY", "title": "Partial pressure", "format": "mp4", "description": "Figuring out the partial pressures of various gases in a container.", "path": "khan/test-prep/mcat/physical-processes/gas-phase/partial-pressure/", "slug": "partial-pressure", "kind": "Video", "video_id": "d4bqNf37mBY", "keywords": "partial, pressure, chemistry", "youtube_id": "d4bqNf37mBY", "readable_id": "partial-pressure"}, "e1XCEJUqOQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e1XCEJUqOQE.mp4/e1XCEJUqOQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e1XCEJUqOQE.mp4/e1XCEJUqOQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e1XCEJUqOQE.m3u8/e1XCEJUqOQE.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/leukemia-pathophysiology/", "duration": 609, "id": "e1XCEJUqOQE", "title": "Leukemia pathophysiology", "format": "mp4", "description": "Sometimes an immature blast cell have two gene mutations which prevent it from maturing into a specialized blood cell and cause it to multiply out of control. These immature blast cells crowd the bone marrow and impair the ability of the bones to make healthy blood cells. This leads to a decrease in platelets, red blood cells (RBCs) and white blood cells (WBCs).", "slug": "leukemia-pathophysiology", "kind": "Video", "video_id": "e1XCEJUqOQE", "keywords": "", "youtube_id": "e1XCEJUqOQE", "readable_id": "leukemia-pathophysiology"}, "tj9oLZYA-AQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tj9oLZYA-AQ.mp4/tj9oLZYA-AQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tj9oLZYA-AQ.mp4/tj9oLZYA-AQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tj9oLZYA-AQ.m3u8/tj9oLZYA-AQ.m3u8"}, "duration": 281, "id": "tj9oLZYA-AQ", "title": "Subtracting mixed numbers word problem", "format": "mp4", "description": "Subtracting Mixed Numbers Word Problem", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/subtracting-mixed-numbers-word-problem/", "slug": "subtracting-mixed-numbers-word-problem", "kind": "Video", "video_id": "tj9oLZYA-AQ", "keywords": "U02_L3_T2_we4, Subtracting, Mixed, Numbers, Word, Problem, CC_4_NF_3_c, CC_5_NF_1", "youtube_id": "tj9oLZYA-AQ", "readable_id": "subtracting-mixed-numbers-word-problem"}, "j3-XYLnxJDY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j3-XYLnxJDY.mp4/j3-XYLnxJDY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j3-XYLnxJDY.mp4/j3-XYLnxJDY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j3-XYLnxJDY.m3u8/j3-XYLnxJDY.m3u8"}, "path": "khan/math/geometry/basic-geometry/area_non_standard/area-of-a-trapezoid-1/", "duration": 288, "id": "j3-XYLnxJDY", "title": "Area of a trapezoid", "format": "mp4", "description": "A trapezoid is a cousin of the parallelogram. However, in trapezoid only two of the opposing sides are parallel to each other. Here's we explain how to find its area.", "slug": "area-of-a-trapezoid-1", "kind": "Video", "video_id": "j3-XYLnxJDY", "keywords": "", "youtube_id": "j3-XYLnxJDY", "readable_id": "area-of-a-trapezoid-1"}, "76O8KpO_4Zw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/76O8KpO_4Zw.mp4/76O8KpO_4Zw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/76O8KpO_4Zw.mp4/76O8KpO_4Zw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/76O8KpO_4Zw.m3u8/76O8KpO_4Zw.m3u8"}, "duration": 461, "id": "76O8KpO_4Zw", "title": "ATP hydrolysis: Gibbs free energy", "format": "mp4", "description": "\nHow does ATP provide energy for biosynthesis reactions? Use an understanding of Gibbs Free Energy to understand how ATP is coupled to energy-requiring processes. By Jasmine Rana.\n\n", "path": "khan/test-prep/mcat/biomolecules/overview-metabolism/atp-hydrolysis-gibbs-free-energy/", "slug": "atp-hydrolysis-gibbs-free-energy", "kind": "Video", "video_id": "76O8KpO_4Zw", "keywords": "", "youtube_id": "76O8KpO_4Zw", "readable_id": "atp-hydrolysis-gibbs-free-energy"}, "A8GQfq3U96M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A8GQfq3U96M.mp4/A8GQfq3U96M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A8GQfq3U96M.mp4/A8GQfq3U96M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A8GQfq3U96M.m3u8/A8GQfq3U96M.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/donatello-st-mark-1411-13/", "duration": 335, "id": "A8GQfq3U96M", "title": "Donatello, Saint Mark", "format": "mp4", "description": "Donatello, St. Mark, 1411-13, marble, 93\" (236 cm), Orsanmichele, Florence\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "donatello-st-mark-1411-13", "kind": "Video", "video_id": "A8GQfq3U96M", "keywords": "Donatello, St. Mark, Art History, Smarthistory, Orsanmichele, Florence", "youtube_id": "A8GQfq3U96M", "readable_id": "donatello-st-mark-1411-13"}, "CN-wjj_phVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CN-wjj_phVA.mp4/CN-wjj_phVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CN-wjj_phVA.mp4/CN-wjj_phVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CN-wjj_phVA.m3u8/CN-wjj_phVA.m3u8"}, "duration": 453, "id": "CN-wjj_phVA", "title": "Thomas Young's Double Slit Experiment", "format": "mp4", "description": "Seeing light in a different way. Ever wonder what happens to light when it gets in its own way? \n\nLicense: Creative Commons BY-NC-SA\nMore information at http://k12videos.mit.edu/terms-conditions", "path": "thomas-young-s-double-slit-experiment/", "slug": "thomas-young-s-double-slit-experiment", "kind": "Video", "video_id": "CN-wjj_phVA", "keywords": "double slit", "youtube_id": "CN-wjj_phVA", "readable_id": "thomas-young-s-double-slit-experiment"}, "o4yJF90OR9M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o4yJF90OR9M.mp4/o4yJF90OR9M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o4yJF90OR9M.mp4/o4yJF90OR9M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o4yJF90OR9M.m3u8/o4yJF90OR9M.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/dna-repair-1/", "duration": 676, "id": "o4yJF90OR9M", "title": "DNA repair 1", "format": "mp4", "description": "", "slug": "dna-repair-1", "kind": "Video", "video_id": "o4yJF90OR9M", "keywords": "", "youtube_id": "o4yJF90OR9M", "readable_id": "dna-repair-1"}, "jT0hslicvFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jT0hslicvFc.mp4/jT0hslicvFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jT0hslicvFc.mp4/jT0hslicvFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jT0hslicvFc.m3u8/jT0hslicvFc.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/colonial-americas/brooklyn-biombo/", "duration": 451, "id": "jT0hslicvFc", "title": "Screen with the Siege of Belgrade and Hunting Scene (Brooklyn Biombo)", "format": "mp4", "description": "Circle of the Gonzales family (artist), c. 1697-1701, Mexico, oil on wood, inlaid with mother-of-pearl, 229.9 x 275.8 cm (Brooklyn Museum and Museo Nacional del Virreinato - INAH, Tepotzotl\u00e1n)\nSpeakers: Dr. Lauren G. Kilroy-Ewbank and Dr. Steven Zucker", "slug": "brooklyn-biombo", "kind": "Video", "video_id": "jT0hslicvFc", "keywords": "", "youtube_id": "jT0hslicvFc", "readable_id": "brooklyn-biombo"}, "IX85uiG86RA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IX85uiG86RA.mp4/IX85uiG86RA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IX85uiG86RA.mp4/IX85uiG86RA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IX85uiG86RA.m3u8/IX85uiG86RA.m3u8"}, "path": "khan/test-prep/ap-art-history/cultures-religions-ap-arthistory/beliefs-made-visible-i/", "duration": 1769, "id": "IX85uiG86RA", "title": "Beliefs made visible: Hindu art in South Asia", "format": "mp4", "description": "Explore Hinduism through clips of significant sites in South Asia and interviews with members of the Bay Area South Asian community. Learn more about Hinduism on the Asian Art Museum's education website.\u00a0", "slug": "beliefs-made-visible-i", "kind": "Video", "video_id": "IX85uiG86RA", "keywords": "", "youtube_id": "IX85uiG86RA", "readable_id": "beliefs-made-visible-i"}, "CVKAro3HUxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CVKAro3HUxQ.mp4/CVKAro3HUxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CVKAro3HUxQ.mp4/CVKAro3HUxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CVKAro3HUxQ.m3u8/CVKAro3HUxQ.m3u8"}, "duration": 195, "id": "CVKAro3HUxQ", "title": "Example involving an isosceles triangle and parallel lines", "format": "mp4", "description": "Integrating what we know about isosceles triangles and parallel lines", "path": "khan/math/geometry/congruent-triangles/isoscleles_equil/example-involving-an-isosceles-triangle-and-parallel-lines/", "slug": "example-involving-an-isosceles-triangle-and-parallel-lines", "kind": "Video", "video_id": "CVKAro3HUxQ", "keywords": "Example, involving, an, isosceles, triangle, and, parallel, lines", "youtube_id": "CVKAro3HUxQ", "readable_id": "example-involving-an-isosceles-triangle-and-parallel-lines"}, "sXP7VhU1gYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sXP7VhU1gYE.mp4/sXP7VhU1gYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sXP7VhU1gYE.mp4/sXP7VhU1gYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sXP7VhU1gYE.m3u8/sXP7VhU1gYE.m3u8"}, "path": "khan/math/algebra/algebra-functions/domain-and-range/domain-and-range-from-graphs/", "duration": 214, "id": "sXP7VhU1gYE", "title": "Domain and range from graph", "format": "mp4", "description": "", "slug": "domain-and-range-from-graphs", "kind": "Video", "video_id": "sXP7VhU1gYE", "keywords": "", "youtube_id": "sXP7VhU1gYE", "readable_id": "domain-and-range-from-graphs"}, "wWsdcfGta4k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wWsdcfGta4k.mp4/wWsdcfGta4k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wWsdcfGta4k.mp4/wWsdcfGta4k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wWsdcfGta4k.m3u8/wWsdcfGta4k.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/glomerular-filtration-in-the-nephron/", "duration": 438, "id": "wWsdcfGta4k", "title": "Glomerular filtration in the nephron", "format": "mp4", "description": "", "slug": "glomerular-filtration-in-the-nephron", "kind": "Video", "video_id": "wWsdcfGta4k", "keywords": "", "youtube_id": "wWsdcfGta4k", "readable_id": "glomerular-filtration-in-the-nephron"}, "ppOipR32GOk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ppOipR32GOk.mp4/ppOipR32GOk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ppOipR32GOk.mp4/ppOipR32GOk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ppOipR32GOk.m3u8/ppOipR32GOk.m3u8"}, "duration": 136, "id": "ppOipR32GOk", "title": "Marina Abramovi\u0107: Teaching the next generation", "format": "mp4", "description": "Marina Abramovi\u0107 talks about teaching a new generation of performance artists. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-abramovic-teaching-next-generation/", "slug": "moma-abramovic-teaching-next-generation", "kind": "Video", "video_id": "ppOipR32GOk", "keywords": "", "youtube_id": "ppOipR32GOk", "readable_id": "moma-abramovic-teaching-next-generation"}, "6FTiHeius1c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6FTiHeius1c.mp4/6FTiHeius1c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6FTiHeius1c.mp4/6FTiHeius1c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6FTiHeius1c.m3u8/6FTiHeius1c.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/area-under-rate-function/area-under-rate-net-change/", "duration": 447, "id": "6FTiHeius1c", "title": "Area under rate function", "format": "mp4", "description": "", "slug": "area-under-rate-net-change", "kind": "Video", "video_id": "6FTiHeius1c", "keywords": "", "youtube_id": "6FTiHeius1c", "readable_id": "area-under-rate-net-change"}, "gMKtGulgGH8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gMKtGulgGH8.mp4/gMKtGulgGH8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gMKtGulgGH8.mp4/gMKtGulgGH8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gMKtGulgGH8.m3u8/gMKtGulgGH8.m3u8"}, "path": "khan/science/organic-chemistry/carboxylic-acids-derivatives/formation-carboxylic-acid-derivatives-sal/amide-formation-from-acyl-chloride/", "duration": 541, "id": "gMKtGulgGH8", "title": "Amide formation from acyl chloride", "format": "mp4", "description": "Amide Formation from Acyl Chloride", "slug": "amide-formation-from-acyl-chloride", "kind": "Video", "video_id": "gMKtGulgGH8", "keywords": "Amide, Formation, Acyl, Chloride", "youtube_id": "gMKtGulgGH8", "readable_id": "amide-formation-from-acyl-chloride"}, "LHPOLSywdi0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LHPOLSywdi0.mp4/LHPOLSywdi0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LHPOLSywdi0.mp4/LHPOLSywdi0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LHPOLSywdi0.m3u8/LHPOLSywdi0.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/feminist-theory/", "duration": 406, "id": "LHPOLSywdi0", "title": "Feminist theory", "format": "mp4", "description": "", "slug": "feminist-theory", "kind": "Video", "video_id": "LHPOLSywdi0", "keywords": "", "youtube_id": "LHPOLSywdi0", "readable_id": "feminist-theory"}, "s2ILpsLcUqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s2ILpsLcUqY.mp4/s2ILpsLcUqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s2ILpsLcUqY.mp4/s2ILpsLcUqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s2ILpsLcUqY.m3u8/s2ILpsLcUqY.m3u8"}, "duration": 172, "id": "s2ILpsLcUqY", "title": "\"In Conversation\" with Ellenor Alcorn", "format": "mp4", "description": "Met curator Ellenor Alcorn on the creative moment in Ewer, a work of Chinese porcelain with English mounts.\n\nIn the sixteenth century Chinese porcelain was occasionally brought to England, sometimes by way of the Levant, sometimes by sea around the Cape of Good Hope. As it was very rare and considered a special treasure, the most accomplished English silversmiths were often commissioned to make mounts for it. Pieces such as these were regarded as suitable for royal gifts or for the furnishing of princely houses.\u00a0The ewer shown here is one of a group of Chinese porcelains of the Wan Li period (1575\u20131619) with silver-gilt mounts made by an unidentified English silversmith about 1585. They were all acquired by the Museum from the estate of J.P. Morgan.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "in-conversation/", "slug": "in-conversation", "kind": "Video", "video_id": "s2ILpsLcUqY", "keywords": "ceramic, ingenuity, metal, mystery, politics, shock, vessel, Asia, Europe", "youtube_id": "s2ILpsLcUqY", "readable_id": "in-conversation"}, "0P0SCQf-hWQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0P0SCQf-hWQ.mp4/0P0SCQf-hWQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0P0SCQf-hWQ.mp4/0P0SCQf-hWQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0P0SCQf-hWQ.m3u8/0P0SCQf-hWQ.m3u8"}, "duration": 218, "id": "0P0SCQf-hWQ", "title": "Addition elimination method 1", "format": "mp4", "description": "Addition Elimination Method 1", "path": "addition-elimination-method-1/", "slug": "addition-elimination-method-1", "kind": "Video", "video_id": "0P0SCQf-hWQ", "keywords": "u14_l2_t2_we1, Addition, Elimination, Method, CC_8_EE_8_b, CC_39336_A-REI_6", "youtube_id": "0P0SCQf-hWQ", "readable_id": "addition-elimination-method-1"}, "ZbAh3QoKd3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZbAh3QoKd3U.mp4/ZbAh3QoKd3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZbAh3QoKd3U.mp4/ZbAh3QoKd3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZbAh3QoKd3U.m3u8/ZbAh3QoKd3U.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/health-care-for-the-chronically-ill/", "duration": 747, "id": "ZbAh3QoKd3U", "title": "Health care for the chronically ill", "format": "mp4", "description": "Caring for chronically ill patients raises significant challenges and is consuming a greater percentage of health care services and spending. These patients often require special care outside of the hospital setting, including rehabilitation, post-acute care, and long-term care. This video explains how and where chronically ill patients receive care, who pays for these services, and how the needs of this population affect the overall health care system.\u00a0", "slug": "health-care-for-the-chronically-ill", "kind": "Video", "video_id": "ZbAh3QoKd3U", "keywords": "", "youtube_id": "ZbAh3QoKd3U", "readable_id": "health-care-for-the-chronically-ill"}, "l_EM39_z7AQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l_EM39_z7AQ.mp4/l_EM39_z7AQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l_EM39_z7AQ.mp4/l_EM39_z7AQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l_EM39_z7AQ.m3u8/l_EM39_z7AQ.m3u8"}, "path": "khan/math/recreational-math/math-warmup/independent-events-warmup/frequency-stability-2/", "duration": 71, "id": "l_EM39_z7AQ", "title": "Frequency stability solution", "format": "mp4", "description": "How to think about this problem", "slug": "frequency-stability-2", "kind": "Video", "video_id": "l_EM39_z7AQ", "keywords": "", "youtube_id": "l_EM39_z7AQ", "readable_id": "frequency-stability-2"}, "L-0LuSw2bTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L-0LuSw2bTM.mp4/L-0LuSw2bTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L-0LuSw2bTM.mp4/L-0LuSw2bTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L-0LuSw2bTM.m3u8/L-0LuSw2bTM.m3u8"}, "duration": 388, "id": "L-0LuSw2bTM", "title": "GDP deflator", "format": "mp4", "description": "Relationship between the GDP deflator, nominal GDP and real GDP", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/real-nominal-gdp-tutorial/gdp-deflator/", "slug": "gdp-deflator", "kind": "Video", "video_id": "L-0LuSw2bTM", "keywords": "macroeconomics", "youtube_id": "L-0LuSw2bTM", "readable_id": "gdp-deflator"}, "ImZO2ytl9P4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ImZO2ytl9P4.mp4/ImZO2ytl9P4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ImZO2ytl9P4.mp4/ImZO2ytl9P4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ImZO2ytl9P4.m3u8/ImZO2ytl9P4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/treating-type-i-diabetes/", "duration": 529, "id": "ImZO2ytl9P4", "title": "Treating type I diabetes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "treating-type-i-diabetes", "kind": "Video", "video_id": "ImZO2ytl9P4", "keywords": "", "youtube_id": "ImZO2ytl9P4", "readable_id": "treating-type-i-diabetes"}, "GOjMC00-3uQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GOjMC00-3uQ.mp4/GOjMC00-3uQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GOjMC00-3uQ.mp4/GOjMC00-3uQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GOjMC00-3uQ.m3u8/GOjMC00-3uQ.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-preparing-students/sscc-blended-successes/", "duration": 357, "id": "GOjMC00-3uQ", "title": "Stories of success from the protagonist schools about their forays into blended learning", "format": "mp4", "description": "", "slug": "sscc-blended-successes", "kind": "Video", "video_id": "GOjMC00-3uQ", "keywords": "", "youtube_id": "GOjMC00-3uQ", "readable_id": "sscc-blended-successes"}, "4mXv-Pa4CMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4mXv-Pa4CMM.mp4/4mXv-Pa4CMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4mXv-Pa4CMM.mp4/4mXv-Pa4CMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4mXv-Pa4CMM.m3u8/4mXv-Pa4CMM.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/influenza/two-flu-vaccines-tiv-and-laiv/", "duration": 653, "id": "4mXv-Pa4CMM", "title": "Two flu vaccines (TIV and LAIV)", "format": "mp4", "description": "Understand the differences between TIV (dead virus) and LAIV (alive, but weakened virus) and who should get which one. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "two-flu-vaccines-tiv-and-laiv", "kind": "Video", "video_id": "4mXv-Pa4CMM", "keywords": "", "youtube_id": "4mXv-Pa4CMM", "readable_id": "two-flu-vaccines-tiv-and-laiv"}, "7Zin8hG9Nhw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Zin8hG9Nhw.mp4/7Zin8hG9Nhw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Zin8hG9Nhw.mp4/7Zin8hG9Nhw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Zin8hG9Nhw.m3u8/7Zin8hG9Nhw.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/bohr-model-energy-levels-derivation-using-physics/", "duration": 728, "id": "7Zin8hG9Nhw", "title": "Bohr model energy levels (derivation using physics)", "format": "mp4", "description": "", "slug": "bohr-model-energy-levels-derivation-using-physics", "kind": "Video", "video_id": "7Zin8hG9Nhw", "keywords": "", "youtube_id": "7Zin8hG9Nhw", "readable_id": "bohr-model-energy-levels-derivation-using-physics"}, "I6LsWSXx8fg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I6LsWSXx8fg.mp4/I6LsWSXx8fg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I6LsWSXx8fg.mp4/I6LsWSXx8fg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I6LsWSXx8fg.m3u8/I6LsWSXx8fg.m3u8"}, "duration": 878, "id": "I6LsWSXx8fg", "title": "Double Newman diagram for methylcyclohexane", "format": "mp4", "description": "Double Newman diagram for methylcyclohexane", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations/double-newman-diagram-for-methcyclohexane/", "slug": "double-newman-diagram-for-methcyclohexane", "kind": "Video", "video_id": "I6LsWSXx8fg", "keywords": "Double, Newman, Diagram, for, Methcyclohexane", "youtube_id": "I6LsWSXx8fg", "readable_id": "double-newman-diagram-for-methcyclohexane"}, "7bO0TmJ6Ba4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7bO0TmJ6Ba4.mp4/7bO0TmJ6Ba4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7bO0TmJ6Ba4.mp4/7bO0TmJ6Ba4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7bO0TmJ6Ba4.m3u8/7bO0TmJ6Ba4.m3u8"}, "path": "khan/math/geometry/similarity/triangle_similarlity/similarity-postulates/", "duration": 734, "id": "7bO0TmJ6Ba4", "title": "Similarity postulates", "format": "mp4", "description": "Thinking about what we need to know to determine whether two triangles are similar", "slug": "similarity-postulates", "kind": "Video", "video_id": "7bO0TmJ6Ba4", "keywords": "Similarity, Postulates", "youtube_id": "7bO0TmJ6Ba4", "readable_id": "similarity-postulates"}, "Gn3mJOC1wK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Gn3mJOC1wK8.mp4/Gn3mJOC1wK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Gn3mJOC1wK8.mp4/Gn3mJOC1wK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Gn3mJOC1wK8.m3u8/Gn3mJOC1wK8.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/graphs-of-indefinite-integrals/", "duration": 246, "id": "Gn3mJOC1wK8", "title": "Graphs of indefinite integrals", "format": "mp4", "description": "", "slug": "graphs-of-indefinite-integrals", "kind": "Video", "video_id": "Gn3mJOC1wK8", "keywords": "", "youtube_id": "Gn3mJOC1wK8", "readable_id": "graphs-of-indefinite-integrals"}, "L-0FkEPPdXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L-0FkEPPdXE.mp4/L-0FkEPPdXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L-0FkEPPdXE.mp4/L-0FkEPPdXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L-0FkEPPdXE.m3u8/L-0FkEPPdXE.m3u8"}, "path": "khan/science/chemistry/electronic-structure-of-atoms/electron-configurations-jay-sal/electron-configuration-f-block/", "duration": 356, "id": "L-0FkEPPdXE", "title": "Electron configuration for f block element Nd", "format": "mp4", "description": "", "slug": "electron-configuration-f-block", "kind": "Video", "video_id": "L-0FkEPPdXE", "keywords": "", "youtube_id": "L-0FkEPPdXE", "readable_id": "electron-configuration-f-block"}, "PFcGiMLwjeY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PFcGiMLwjeY.mp4/PFcGiMLwjeY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PFcGiMLwjeY.mp4/PFcGiMLwjeY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PFcGiMLwjeY.m3u8/PFcGiMLwjeY.m3u8"}, "duration": 938, "id": "PFcGiMLwjeY", "title": "Thermodynamic entropy definition clarification", "format": "mp4", "description": "Clarifying that the thermodynamic definition of Entropy requires a reversible system.", "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/thermodynamic-entropy-definition-clarification/", "slug": "thermodynamic-entropy-definition-clarification", "kind": "Video", "video_id": "PFcGiMLwjeY", "keywords": "thermodynamics, carnot, entropy, maxwell, demon", "youtube_id": "PFcGiMLwjeY", "readable_id": "thermodynamic-entropy-definition-clarification"}, "kexFINXbJo4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kexFINXbJo4.mp4/kexFINXbJo4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kexFINXbJo4.mp4/kexFINXbJo4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kexFINXbJo4.m3u8/kexFINXbJo4.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/operant-conditioning-shaping/", "duration": 440, "id": "kexFINXbJo4", "title": "Operant conditioning: Shaping", "format": "mp4", "description": "", "slug": "operant-conditioning-shaping", "kind": "Video", "video_id": "kexFINXbJo4", "keywords": "", "youtube_id": "kexFINXbJo4", "readable_id": "operant-conditioning-shaping"}, "HXy34-mIPuI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HXy34-mIPuI.mp4/HXy34-mIPuI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HXy34-mIPuI.mp4/HXy34-mIPuI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HXy34-mIPuI.m3u8/HXy34-mIPuI.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2008-may-4-9/", "duration": 120, "id": "HXy34-mIPuI", "title": "9 Evaluating expression in 2 variables", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-9", "kind": "Video", "video_id": "HXy34-mIPuI", "keywords": "", "youtube_id": "HXy34-mIPuI", "readable_id": "sat-2008-may-4-9"}, "-oXAekrYytA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-oXAekrYytA.mp4/-oXAekrYytA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-oXAekrYytA.mp4/-oXAekrYytA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-oXAekrYytA.m3u8/-oXAekrYytA.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/michelangelo/michelangelo-david-marble-1501-04-galleria-dell-accademia-florence/", "duration": 341, "id": "-oXAekrYytA", "title": "Michelangelo, David", "format": "mp4", "description": "Michelangelo, David, marble, 1501-04 (Galleria dell'Accademia, Florence) A conversation with Khan Academy's Dr. Steven Zucker and Dr. Beth Harris.\n\nHis perfect beauty reminds me of Pico della Mirandola, who imagines God saying to man at the creation, \u201cThou shalt have the power out of thy soul\u2019s judgment to be reborn into the higher forms which are divine.\u201d\nHere is Vasari\u2019s description of David,\n\n\u2026nor has there ever been seen a pose so easy, or any grace to equal that in this work, or feet, hands and head so well in accord, one member with another, in harmony, design, and excellence of artistry. (Translated by Gaston du C. de Vere)\n\nMichelangelo\u2019s David stands nearly 17 feet tall. \u00a0Remember that the biblical figure of David was special to the citizens of Florence\u2014he symbolized the liberty and freedom of their republican ideals, which were threatened at various points in the fifteenth century by the Medici family and others. Watch a video about the importance of the figure of David for Florence.\n\n", "slug": "michelangelo-david-marble-1501-04-galleria-dell-accademia-florence", "kind": "Video", "video_id": "-oXAekrYytA", "keywords": "Michelangelo, David, art history, khan academy, renaissance, high renaissance, florence, accademia, Palazzo Vecchio", "youtube_id": "-oXAekrYytA", "readable_id": "michelangelo-david-marble-1501-04-galleria-dell-accademia-florence"}, "uXZ_P_LOKPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uXZ_P_LOKPQ.mp4/uXZ_P_LOKPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uXZ_P_LOKPQ.mp4/uXZ_P_LOKPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uXZ_P_LOKPQ.m3u8/uXZ_P_LOKPQ.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2009-may-3-12/", "duration": 203, "id": "uXZ_P_LOKPQ", "title": "12 Percent of toy sales", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-12", "kind": "Video", "video_id": "uXZ_P_LOKPQ", "keywords": "", "youtube_id": "uXZ_P_LOKPQ", "readable_id": "sat-2009-may-3-12"}, "sSyPAAyL8nQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sSyPAAyL8nQ.mp4/sSyPAAyL8nQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sSyPAAyL8nQ.mp4/sSyPAAyL8nQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sSyPAAyL8nQ.m3u8/sSyPAAyL8nQ.m3u8"}, "duration": 427, "id": "sSyPAAyL8nQ", "title": "Green's theorem example 2", "format": "mp4", "description": "Another example applying Green's Theorem", "path": "khan/math/multivariable-calculus/line_integrals_topic/greens_theorem/green-s-theorem-example-2/", "slug": "green-s-theorem-example-2", "kind": "Video", "video_id": "sSyPAAyL8nQ", "keywords": "Green's, theorem, line, integral, vector, calculus", "youtube_id": "sSyPAAyL8nQ", "readable_id": "green-s-theorem-example-2"}, "4Mr7aEHQr8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Mr7aEHQr8E.mp4/4Mr7aEHQr8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Mr7aEHQr8E.mp4/4Mr7aEHQr8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Mr7aEHQr8E.m3u8/4Mr7aEHQr8E.m3u8"}, "duration": 1455, "id": "4Mr7aEHQr8E", "title": "Laplace transform of the unit step function", "format": "mp4", "description": "Introduction to the unit step function and its Laplace Transform", "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/laplace-transform-of-the-unit-step-function/", "slug": "laplace-transform-of-the-unit-step-function", "kind": "Video", "video_id": "4Mr7aEHQr8E", "keywords": "differential, equations, laplace, transform", "youtube_id": "4Mr7aEHQr8E", "readable_id": "laplace-transform-of-the-unit-step-function"}, "_yR9DBHMFXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_yR9DBHMFXE.mp4/_yR9DBHMFXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_yR9DBHMFXE.mp4/_yR9DBHMFXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_yR9DBHMFXE.m3u8/_yR9DBHMFXE.m3u8"}, "duration": 805, "id": "_yR9DBHMFXE", "title": "A race to keep pace!", "format": "mp4", "description": "Find out how the various pacemaker cells in the heart actually race against the clock to try to keep pace for the heart, and how the heart has not one but two back up systems! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/a-race-to-keep-pace/", "slug": "a-race-to-keep-pace", "kind": "Video", "video_id": "_yR9DBHMFXE", "keywords": "", "youtube_id": "_yR9DBHMFXE", "readable_id": "a-race-to-keep-pace"}, "4I9iibPLdBw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4I9iibPLdBw.mp4/4I9iibPLdBw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4I9iibPLdBw.mp4/4I9iibPLdBw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4I9iibPLdBw.m3u8/4I9iibPLdBw.m3u8"}, "duration": 148, "id": "4I9iibPLdBw", "title": "Example: Expressing division in multiple ways", "format": "mp4", "description": "Dividing Whole Numbers and Applications 1", "path": "khan/math/arithmetic/multiplication-division/delightful_division/dividing-whole-numbers-and-applications-1/", "slug": "dividing-whole-numbers-and-applications-1", "kind": "Video", "video_id": "4I9iibPLdBw", "keywords": "U01_L3_T2_we1, Dividing, Whole, Numbers, and, Applications, CC_3_OA_5, CC_3_OA_7, CC_4_NBT_6, CC_6_NS_3", "youtube_id": "4I9iibPLdBw", "readable_id": "dividing-whole-numbers-and-applications-1"}, "aUBJtHwHASA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aUBJtHwHASA.mp4/aUBJtHwHASA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aUBJtHwHASA.mp4/aUBJtHwHASA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aUBJtHwHASA.m3u8/aUBJtHwHASA.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/polymerase-chain-reaction-pcr/", "duration": 278, "id": "aUBJtHwHASA", "title": "Polymerase chain reaction (PCR)", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "polymerase-chain-reaction-pcr", "kind": "Video", "video_id": "aUBJtHwHASA", "keywords": "", "youtube_id": "aUBJtHwHASA", "readable_id": "polymerase-chain-reaction-pcr"}, "M-jLsoA1i_o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M-jLsoA1i_o.mp4/M-jLsoA1i_o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M-jLsoA1i_o.mp4/M-jLsoA1i_o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M-jLsoA1i_o.m3u8/M-jLsoA1i_o.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/vermeer-pearl-earring/", "duration": 191, "id": "M-jLsoA1i_o", "title": "Johannes Vermeer, Girl with a Pearl Earring", "format": "mp4", "description": "Johannes Vermeer, Girl with a Pearl Earring, c. 1665, oil on canvas, 44.5 x 39 inches (Mauritshuis, The Hague). \u00a0A conversation with Dr. Steven Zucker and Dr. Beth Harris.", "slug": "vermeer-pearl-earring", "kind": "Video", "video_id": "M-jLsoA1i_o", "keywords": "", "youtube_id": "M-jLsoA1i_o", "readable_id": "vermeer-pearl-earring"}, "t_f8bB1kf6M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t_f8bB1kf6M.mp4/t_f8bB1kf6M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t_f8bB1kf6M.mp4/t_f8bB1kf6M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t_f8bB1kf6M.m3u8/t_f8bB1kf6M.m3u8"}, "duration": 536, "id": "t_f8bB1kf6M", "title": "The periodic table - classification of elements", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/periodic-table-introduction/", "slug": "periodic-table-introduction", "kind": "Video", "video_id": "t_f8bB1kf6M", "keywords": "", "youtube_id": "t_f8bB1kf6M", "readable_id": "periodic-table-introduction"}, "5OEZTU8FdVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5OEZTU8FdVA.mp4/5OEZTU8FdVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5OEZTU8FdVA.mp4/5OEZTU8FdVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5OEZTU8FdVA.m3u8/5OEZTU8FdVA.m3u8"}, "duration": 585, "id": "5OEZTU8FdVA", "title": "Venice and the Ottoman Empire", "format": "mp4", "description": "In which John Green discusses the strange and mutually beneficial relationship between a republic, the citystate of Venice, and an Empire, the Ottomans--and how studying history can help you to be a better boyfriend and/or girlfriend. Together, the Ottoman Empire and Venice grew wealthy by facilitating trade: The Venetians had ships and nautical expertise; the Ottomans had access to many of the most valuable goods in the world, especially pepper and grain. Working together across cultural and religious divides, they both become very rich, and the Ottomans became one of the most powerful political entities in the world. We also discuss how economic realities can overcome religious and political differences (in this case between Muslims and Christians), the doges of Venice, the sultans of the Ottoman empire, the janissaries and so-called slave aristocracy of the Ottoman Empire, and how money and knowledge from the Islamic world helped fuel and fund the European Renaissance. Also, there's a They Might Be Giants joke.", "path": "khan/humanities/history/crashcourse-worldhistory/road-trip-conquest-trade-2/crash-course-world-history-19/", "slug": "crash-course-world-history-19", "kind": "Video", "video_id": "5OEZTU8FdVA", "keywords": "crash course", "youtube_id": "5OEZTU8FdVA", "readable_id": "crash-course-world-history-19"}, "lohMwoq3WFA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lohMwoq3WFA.mp4/lohMwoq3WFA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lohMwoq3WFA.mp4/lohMwoq3WFA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lohMwoq3WFA.m3u8/lohMwoq3WFA.m3u8"}, "duration": 86, "id": "lohMwoq3WFA", "title": "Construct a right isosceles triangle", "format": "mp4", "description": "Can you build a triangle that is both a right triangle and an isosceles triangle?", "path": "constructing-right-isosceles/", "slug": "constructing-right-isosceles", "kind": "Video", "video_id": "lohMwoq3WFA", "keywords": "", "youtube_id": "lohMwoq3WFA", "readable_id": "constructing-right-isosceles"}, "gjrGd9TjjnY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gjrGd9TjjnY.mp4/gjrGd9TjjnY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gjrGd9TjjnY.mp4/gjrGd9TjjnY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gjrGd9TjjnY.m3u8/gjrGd9TjjnY.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-order-of-operations/order-of-operations-1/", "duration": 276, "id": "gjrGd9TjjnY", "title": "Order of operations example: putting it all together", "format": "mp4", "description": "Simplify this tricky expression using the order of operations. \u00a0 Expression include negative numbers and exponents.", "slug": "order-of-operations-1", "kind": "Video", "video_id": "gjrGd9TjjnY", "keywords": "U09_L4_T1_we1, Order, of, Operations", "youtube_id": "gjrGd9TjjnY", "readable_id": "order-of-operations-1"}, "RX0DY9eRp8g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RX0DY9eRp8g.mp4/RX0DY9eRp8g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RX0DY9eRp8g.mp4/RX0DY9eRp8g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RX0DY9eRp8g.m3u8/RX0DY9eRp8g.m3u8"}, "path": "khan/math/trigonometry/trig-function-graphs/modeling-periodic-functions/modeling-with-shifted-trig-functions/", "duration": 655, "id": "RX0DY9eRp8g", "title": "Modeling temperature through the day", "format": "mp4", "description": "", "slug": "modeling-with-shifted-trig-functions", "kind": "Video", "video_id": "RX0DY9eRp8g", "keywords": "", "youtube_id": "RX0DY9eRp8g", "readable_id": "modeling-with-shifted-trig-functions"}, "m6oMgtGsAa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m6oMgtGsAa4.mp4/m6oMgtGsAa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m6oMgtGsAa4.mp4/m6oMgtGsAa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m6oMgtGsAa4.m3u8/m6oMgtGsAa4.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-6d/", "duration": 712, "id": "m6oMgtGsAa4", "title": "2011 Calculus BC free response #6d", "format": "mp4", "description": "Lagrange error bound for Taylor Polynomial approximation", "slug": "2011-calculus-bc-free-response-6d", "kind": "Video", "video_id": "m6oMgtGsAa4", "keywords": "2011, Calculus, BC, Free, Response, #6d", "youtube_id": "m6oMgtGsAa4", "readable_id": "2011-calculus-bc-free-response-6d"}, "prtRr80l7-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/prtRr80l7-M.mp4/prtRr80l7-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/prtRr80l7-M.mp4/prtRr80l7-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/prtRr80l7-M.m3u8/prtRr80l7-M.m3u8"}, "duration": 152, "id": "prtRr80l7-M", "title": "\"Poetic License\" with Martina Rugiadi", "format": "mp4", "description": "Met curator Martina Rugiadi on poetic license in Ibn Sukkara al-Hashimi\u2019s Wine Cup.\n\nThe decoration of this cup, with a calligraphic band at its rim and a vegetal scroll at its base, is rather austere in appearance, but the inscription, a verse in Arabic, celebrates the pleasures of drinking. The cup compares closely with items in a hoard of silver found in northwest Iran that has been associated with Buyid patronage.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\u00a0\n", "path": "poetic-license/", "slug": "poetic-license", "kind": "Video", "video_id": "prtRr80l7-M", "keywords": "confidence, decorative arts, metal, vessel, writing, Middle East", "youtube_id": "prtRr80l7-M", "readable_id": "poetic-license"}, "GfUKL30pG08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GfUKL30pG08.mp4/GfUKL30pG08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GfUKL30pG08.mp4/GfUKL30pG08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GfUKL30pG08.m3u8/GfUKL30pG08.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2010-may-6-18/", "duration": 257, "id": "GfUKL30pG08", "title": "18 Median mileage", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-18", "kind": "Video", "video_id": "GfUKL30pG08", "keywords": "", "youtube_id": "GfUKL30pG08", "readable_id": "sat-2010-may-6-18"}, "27vT-NWuw0M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/27vT-NWuw0M.mp4/27vT-NWuw0M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/27vT-NWuw0M.mp4/27vT-NWuw0M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/27vT-NWuw0M.m3u8/27vT-NWuw0M.m3u8"}, "duration": 877, "id": "27vT-NWuw0M", "title": "Introduction to projections", "format": "mp4", "description": "Determining the projection of a vector on s line", "path": "khan/math/linear-algebra/matrix_transformations/lin_trans_examples/introduction-to-projections/", "slug": "introduction-to-projections", "kind": "Video", "video_id": "27vT-NWuw0M", "keywords": "projection, vector, line, linear, algebra", "youtube_id": "27vT-NWuw0M", "readable_id": "introduction-to-projections"}, "K_PiPfYxtao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K_PiPfYxtao.mp4/K_PiPfYxtao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K_PiPfYxtao.mp4/K_PiPfYxtao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K_PiPfYxtao.m3u8/K_PiPfYxtao.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/log_functions/comparing-exponential-logarithmic-functions/", "duration": 342, "id": "K_PiPfYxtao", "title": "Comparing exponential and logarithmic functions", "format": "mp4", "description": "", "slug": "comparing-exponential-logarithmic-functions", "kind": "Video", "video_id": "K_PiPfYxtao", "keywords": "", "youtube_id": "K_PiPfYxtao", "readable_id": "comparing-exponential-logarithmic-functions"}, "hPkh8kOldU4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hPkh8kOldU4.mp4/hPkh8kOldU4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hPkh8kOldU4.mp4/hPkh8kOldU4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hPkh8kOldU4.m3u8/hPkh8kOldU4.m3u8"}, "duration": 725, "id": "hPkh8kOldU4", "title": "Keynesian economics", "format": "mp4", "description": "Contrasting Keynesian and Classical Thinking", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/keynesian-thinking/keynesian-economics/", "slug": "keynesian-economics", "kind": "Video", "video_id": "hPkh8kOldU4", "keywords": "macroeconomics, keynes", "youtube_id": "hPkh8kOldU4", "readable_id": "keynesian-economics"}, "h6Bprry-E20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h6Bprry-E20.mp4/h6Bprry-E20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h6Bprry-E20.mp4/h6Bprry-E20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h6Bprry-E20.m3u8/h6Bprry-E20.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-4-8/", "duration": 207, "id": "h6Bprry-E20", "title": "8 Least possible value for variable", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-8", "kind": "Video", "video_id": "h6Bprry-E20", "keywords": "", "youtube_id": "h6Bprry-E20", "readable_id": "sat-2010-may-4-8"}, "92U67CUy9Gc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/92U67CUy9Gc.mp4/92U67CUy9Gc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/92U67CUy9Gc.mp4/92U67CUy9Gc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/92U67CUy9Gc.m3u8/92U67CUy9Gc.m3u8"}, "duration": 594, "id": "92U67CUy9Gc", "title": "Direct and inverse variation", "format": "mp4", "description": "Understanding direct and inverse variation", "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/direct-and-inverse-variation/", "slug": "direct-and-inverse-variation", "kind": "Video", "video_id": "92U67CUy9Gc", "keywords": "direct, inverse, variation", "youtube_id": "92U67CUy9Gc", "readable_id": "direct-and-inverse-variation"}, "vKfkOF2sJSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vKfkOF2sJSg.mp4/vKfkOF2sJSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vKfkOF2sJSg.mp4/vKfkOF2sJSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vKfkOF2sJSg.m3u8/vKfkOF2sJSg.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-intro-blended-learning/sscc-overview-blended-learning/sscc-blended-thecase/", "duration": 168, "id": "vKfkOF2sJSg", "title": "The Case for Blended Learning", "format": "mp4", "description": "Learn more about blended learning by exploring tutorials from Silicon Schools Fund and Clayton Christensen Institute here", "slug": "sscc-blended-thecase", "kind": "Video", "video_id": "vKfkOF2sJSg", "keywords": "", "youtube_id": "vKfkOF2sJSg", "readable_id": "sscc-blended-thecase"}, "aobWzlXIooQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aobWzlXIooQ.mp4/aobWzlXIooQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aobWzlXIooQ.mp4/aobWzlXIooQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aobWzlXIooQ.m3u8/aobWzlXIooQ.m3u8"}, "duration": 250, "id": "aobWzlXIooQ", "title": "Visual field processing", "format": "mp4", "description": "In this video, I review how we process our visual field, and how information from the right and left visual field is broken down and sent to the brain. By Ronald Sahyouni. ", "path": "khan/test-prep/mcat/processing-the-environment/sight/visual-field-processing/", "slug": "visual-field-processing", "kind": "Video", "video_id": "aobWzlXIooQ", "keywords": "vision, visual field", "youtube_id": "aobWzlXIooQ", "readable_id": "visual-field-processing"}, "02-uWdzs7o8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/02-uWdzs7o8.mp4/02-uWdzs7o8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/02-uWdzs7o8.mp4/02-uWdzs7o8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/02-uWdzs7o8.m3u8/02-uWdzs7o8.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-spout-comes-alive/", "duration": 61, "id": "02-uWdzs7o8", "title": "DLab: Student perspective on the Spout Bot project (2)", "format": "mp4", "description": "", "slug": "discovery-lab-spout-comes-alive", "kind": "Video", "video_id": "02-uWdzs7o8", "keywords": "", "youtube_id": "02-uWdzs7o8", "readable_id": "discovery-lab-spout-comes-alive"}, "W-Nio466Ek4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W-Nio466Ek4.mp4/W-Nio466Ek4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W-Nio466Ek4.mp4/W-Nio466Ek4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W-Nio466Ek4.m3u8/W-Nio466Ek4.m3u8"}, "duration": 448, "id": "W-Nio466Ek4", "title": "Proof that square root of prime number is irrational", "format": "mp4", "description": "", "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/proof-that-square-root-of-prime-number-is-irrational/", "slug": "proof-that-square-root-of-prime-number-is-irrational", "kind": "Video", "video_id": "W-Nio466Ek4", "keywords": "", "youtube_id": "W-Nio466Ek4", "readable_id": "proof-that-square-root-of-prime-number-is-irrational"}, "iwi2aLgnqO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iwi2aLgnqO8.mp4/iwi2aLgnqO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iwi2aLgnqO8.mp4/iwi2aLgnqO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iwi2aLgnqO8.m3u8/iwi2aLgnqO8.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/regulation-of-oxidative-phosphorylation/", "duration": 589, "id": "iwi2aLgnqO8", "title": "Regulation of oxidative phosphorylation", "format": "mp4", "description": "", "slug": "regulation-of-oxidative-phosphorylation", "kind": "Video", "video_id": "iwi2aLgnqO8", "keywords": "", "youtube_id": "iwi2aLgnqO8", "readable_id": "regulation-of-oxidative-phosphorylation"}, "qh10-sfZNJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qh10-sfZNJE.mp4/qh10-sfZNJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qh10-sfZNJE.mp4/qh10-sfZNJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qh10-sfZNJE.m3u8/qh10-sfZNJE.m3u8"}, "duration": 314, "id": "qh10-sfZNJE", "title": "AB EX NY: MoMA and Abstract Expressionism", "format": "mp4", "description": "Take the online course Modern and Contemporary Art: 1945-1989 to find out what happens next or experiment with Abstract Expressionist painting techniques in the online course, Materials and Techniques of Postwar painting.\u00a0", "path": "moma-abstract-expressionism/", "slug": "moma-abstract-expressionism", "kind": "Video", "video_id": "qh10-sfZNJE", "keywords": "", "youtube_id": "qh10-sfZNJE", "readable_id": "moma-abstract-expressionism"}, "p8PSIpMkEvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p8PSIpMkEvA.mp4/p8PSIpMkEvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p8PSIpMkEvA.mp4/p8PSIpMkEvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p8PSIpMkEvA.m3u8/p8PSIpMkEvA.m3u8"}, "duration": 542, "id": "p8PSIpMkEvA", "title": "How many people to hire given the MPR curve", "format": "mp4", "description": "Thinking about how many people it makes sense to hire. Brief discussion of a monopsony.", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/labor-marginal-product-rev/how-many-people-to-hire-given-the-mpr-curve/", "slug": "how-many-people-to-hire-given-the-mpr-curve", "kind": "Video", "video_id": "p8PSIpMkEvA", "keywords": "microeconomics", "youtube_id": "p8PSIpMkEvA", "readable_id": "how-many-people-to-hire-given-the-mpr-curve"}, "cDpBtkU2cf8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cDpBtkU2cf8.mp4/cDpBtkU2cf8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cDpBtkU2cf8.mp4/cDpBtkU2cf8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cDpBtkU2cf8.m3u8/cDpBtkU2cf8.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/mult-div-concept/multiplication-as-groups-of-objects/", "duration": 259, "id": "cDpBtkU2cf8", "title": "Multiplication as groups of objects", "format": "mp4", "description": "Use arrays to show different ways to multiply and get the same solution.", "slug": "multiplication-as-groups-of-objects", "kind": "Video", "video_id": "cDpBtkU2cf8", "keywords": "", "youtube_id": "cDpBtkU2cf8", "readable_id": "multiplication-as-groups-of-objects"}, "OiSTT4z4zJI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OiSTT4z4zJI.mp4/OiSTT4z4zJI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OiSTT4z4zJI.mp4/OiSTT4z4zJI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OiSTT4z4zJI.m3u8/OiSTT4z4zJI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-emphysema/emphysema-pathophysiology/", "duration": 340, "id": "OiSTT4z4zJI", "title": "Emphysema pathophysiology", "format": "mp4", "description": "Smoking and air pollution cause the alveoli in the lungs stiff and less stretchy, making it difficult for air to escape during exhalation. Learn how the destruction of the protein elastin is key to the progression of emphysema, and how the over production of elastase occurs.", "slug": "emphysema-pathophysiology", "kind": "Video", "video_id": "OiSTT4z4zJI", "keywords": "", "youtube_id": "OiSTT4z4zJI", "readable_id": "emphysema-pathophysiology"}, "tdO4UOLW9d8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tdO4UOLW9d8.mp4/tdO4UOLW9d8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tdO4UOLW9d8.mp4/tdO4UOLW9d8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tdO4UOLW9d8.m3u8/tdO4UOLW9d8.m3u8"}, "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/simplifying-expressions-with-exponents/", "duration": 130, "id": "tdO4UOLW9d8", "title": "Simplifying expressions with exponents", "format": "mp4", "description": "Simplifying Expressions with Exponents", "slug": "simplifying-expressions-with-exponents", "kind": "Video", "video_id": "tdO4UOLW9d8", "keywords": "U07_L1_T3_we1, Simplifying, Expressions, with, Exponents, CC_6_EE_2, CC_8_EE_1, CC_8_EE_2", "youtube_id": "tdO4UOLW9d8", "readable_id": "simplifying-expressions-with-exponents"}, "1xioYgUWsHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1xioYgUWsHg.mp4/1xioYgUWsHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1xioYgUWsHg.mp4/1xioYgUWsHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1xioYgUWsHg.m3u8/1xioYgUWsHg.m3u8"}, "path": "khan/humanities/art-1010/art-post-war-britain/henry-moore/", "duration": 312, "id": "1xioYgUWsHg", "title": "Room: Henry Moore", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nChris Stephens takes a look an iconic character in British art, the artist's relationship to Tate, and the work he crafted for a post-war society.\n\nLearn more about the art featured in this video:\n-\u00a0Henry Moore, Reclining Figure,\u00a01951\n- Henry Moore, Family Group, 1949", "slug": "henry-moore", "kind": "Video", "video_id": "1xioYgUWsHg", "keywords": "Tate, henry moore", "youtube_id": "1xioYgUWsHg", "readable_id": "henry-moore"}, "zPcObUqM-Zs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zPcObUqM-Zs.mp4/zPcObUqM-Zs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zPcObUqM-Zs.mp4/zPcObUqM-Zs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zPcObUqM-Zs.m3u8/zPcObUqM-Zs.m3u8"}, "duration": 294, "id": "zPcObUqM-Zs", "title": "Translating the 4th Amendment into a new technological age: United States v. Jones", "format": "mp4", "description": "Neal Katyal, Former Acting Solicitor General of the United States in conversation with Jeffrey Rosen of the National Constitution Center.", "path": "translating-the-4th-amendment-into-a-new-technological-age-united-states-v-jones/", "slug": "translating-the-4th-amendment-into-a-new-technological-age-united-states-v-jones", "kind": "Video", "video_id": "zPcObUqM-Zs", "keywords": "", "youtube_id": "zPcObUqM-Zs", "readable_id": "translating-the-4th-amendment-into-a-new-technological-age-united-states-v-jones"}, "_p-WyPg1sbU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_p-WyPg1sbU.mp4/_p-WyPg1sbU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_p-WyPg1sbU.mp4/_p-WyPg1sbU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_p-WyPg1sbU.m3u8/_p-WyPg1sbU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/decibel-scale/", "duration": 630, "id": "_p-WyPg1sbU", "title": "Decibel Scale", "format": "mp4", "description": "", "slug": "decibel-scale", "kind": "Video", "video_id": "_p-WyPg1sbU", "keywords": "", "youtube_id": "_p-WyPg1sbU", "readable_id": "decibel-scale"}, "38gXbN1dVrg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/38gXbN1dVrg.mp4/38gXbN1dVrg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/38gXbN1dVrg.mp4/38gXbN1dVrg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/38gXbN1dVrg.m3u8/38gXbN1dVrg.m3u8"}, "duration": 652, "id": "38gXbN1dVrg", "title": "Ideal gas law", "format": "mp4", "description": "We don't live in a perfect world, and neither do gases - it would be great if their particles always fulfilled the assumptions of the ideal gas law, and we could use PV=nRT to get the right answer every time. Unfortunately, the ideal gas law (like our culture) has unrealistic expectations when it comes to size and attraction: it assumes that particles do not have size at all and that they never attract each other. So the ideal gas \"law\" often becomes little more than the ideal gas estimate when it comes to what gases do naturally. But it's a close enough estimate in enough situations that it's very valuable to know. In this episode, Hank goes through a bunch of calculations according to the ideal gas law so you can get familiar with it.\nWriter: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem13-ideal-gas-problems/", "slug": "chem13-ideal-gas-problems", "kind": "Video", "video_id": "38gXbN1dVrg", "keywords": "", "youtube_id": "38gXbN1dVrg", "readable_id": "chem13-ideal-gas-problems"}, "RHe9X2HDEjA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RHe9X2HDEjA.mp4/RHe9X2HDEjA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RHe9X2HDEjA.mp4/RHe9X2HDEjA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RHe9X2HDEjA.m3u8/RHe9X2HDEjA.m3u8"}, "duration": 278, "id": "RHe9X2HDEjA", "title": "Writing and using inequalities", "format": "mp4", "description": "Writing and using inequalities", "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/writing-and-using-inequalities/", "slug": "writing-and-using-inequalities", "kind": "Video", "video_id": "RHe9X2HDEjA", "keywords": "U05_L1_T3_we1, Writing, and, using, inequalities, CC_6_EE_8, CC_6_NS_7_c, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-CED_3, CC_39336_A-REI_3", "youtube_id": "RHe9X2HDEjA", "readable_id": "writing-and-using-inequalities"}, "9lIxelNVmNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9lIxelNVmNU.mp4/9lIxelNVmNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9lIxelNVmNU.mp4/9lIxelNVmNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9lIxelNVmNU.m3u8/9lIxelNVmNU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/healing-after-a-heart-attack-myocardial-infarction/", "duration": 463, "id": "9lIxelNVmNU", "title": "Healing after a heart attack (myocardial infarction)", "format": "mp4", "description": "", "slug": "healing-after-a-heart-attack-myocardial-infarction", "kind": "Video", "video_id": "9lIxelNVmNU", "keywords": "", "youtube_id": "9lIxelNVmNU", "readable_id": "healing-after-a-heart-attack-myocardial-infarction"}, "91wF7Ef_k8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/91wF7Ef_k8Y.mp4/91wF7Ef_k8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/91wF7Ef_k8Y.mp4/91wF7Ef_k8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/91wF7Ef_k8Y.m3u8/91wF7Ef_k8Y.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/knowing-stars-elements/bhp-intro-to-chemistry/", "duration": 284, "id": "91wF7Ef_k8Y", "title": "Intro to Chemistry", "format": "mp4", "description": "Anne McNeil introduces the central science and discusses how the study of matter has changed over time.", "slug": "bhp-intro-to-chemistry", "kind": "Video", "video_id": "91wF7Ef_k8Y", "keywords": "", "youtube_id": "91wF7Ef_k8Y", "readable_id": "bhp-intro-to-chemistry"}, "r3SEkdtpobo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r3SEkdtpobo.mp4/r3SEkdtpobo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r3SEkdtpobo.mp4/r3SEkdtpobo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r3SEkdtpobo.m3u8/r3SEkdtpobo.m3u8"}, "duration": 464, "id": "r3SEkdtpobo", "title": "Proof of quadratic formula", "format": "mp4", "description": "Proof of Quadratic Formula", "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/proof-of-quadratic-formula/", "slug": "proof-of-quadratic-formula", "kind": "Video", "video_id": "r3SEkdtpobo", "keywords": "Proof, of, Quadratic, Formula, CC_39336_A-REI_4_a", "youtube_id": "r3SEkdtpobo", "readable_id": "proof-of-quadratic-formula"}, "eTSVTTg_QZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eTSVTTg_QZ4.mp4/eTSVTTg_QZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eTSVTTg_QZ4.mp4/eTSVTTg_QZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eTSVTTg_QZ4.m3u8/eTSVTTg_QZ4.m3u8"}, "duration": 149, "id": "eTSVTTg_QZ4", "title": "Rearrange formulas to isolate specific variables", "format": "mp4", "description": "Rearrange formulas to isolate specific variables", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solving_for_variable/rearrange-formulas-to-isolate-specific-variables/", "slug": "rearrange-formulas-to-isolate-specific-variables", "kind": "Video", "video_id": "eTSVTTg_QZ4", "keywords": "u10_l1_t4_we2, Rearrange, formulas, to, isolate, specific, variables, CC_3_MD_5, CC_3_MD_7, CC_6_EE_2_c, CC_6_G_1, CC_39336_A-CED_4", "youtube_id": "eTSVTTg_QZ4", "readable_id": "rearrange-formulas-to-isolate-specific-variables"}, "oYUzKAfrx0w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oYUzKAfrx0w.mp4/oYUzKAfrx0w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oYUzKAfrx0w.mp4/oYUzKAfrx0w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oYUzKAfrx0w.m3u8/oYUzKAfrx0w.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/algorithmic-efficiency/", "duration": 522, "id": "oYUzKAfrx0w", "title": "Algorithmic efficiency", "format": "mp4", "description": "How can we improve the speed of a (deterministic) primality test?", "slug": "algorithmic-efficiency", "kind": "Video", "video_id": "oYUzKAfrx0w", "keywords": "algorithms, algorithmic efficiency, time complexity", "youtube_id": "oYUzKAfrx0w", "readable_id": "algorithmic-efficiency"}, "x_aax6LSRtE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x_aax6LSRtE.mp4/x_aax6LSRtE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x_aax6LSRtE.mp4/x_aax6LSRtE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x_aax6LSRtE.m3u8/x_aax6LSRtE.m3u8"}, "duration": 546, "id": "x_aax6LSRtE", "title": "Area circumradius formula proof", "format": "mp4", "description": "Proof of the formula relating the area of a triangle to its circumradius", "path": "khan/math/competition-math/aime/2003-aime/area-circumradius-formula-proof/", "slug": "area-circumradius-formula-proof", "kind": "Video", "video_id": "x_aax6LSRtE", "keywords": "circumscribed, circle, circumcircle, area, radius", "youtube_id": "x_aax6LSRtE", "readable_id": "area-circumradius-formula-proof"}, "iQ5uG6ryCa4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iQ5uG6ryCa4.mp4/iQ5uG6ryCa4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iQ5uG6ryCa4.mp4/iQ5uG6ryCa4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iQ5uG6ryCa4.m3u8/iQ5uG6ryCa4.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/frans-hals-singing-boy-with-flute-c-1623/", "duration": 136, "id": "iQ5uG6ryCa4", "title": "Hals, Singing Boy with Flute", "format": "mp4", "description": "Frans Hals, Singing Boy with Flute, c. 1623, oil on canvas, 68.8 x 55.2 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin)", "slug": "frans-hals-singing-boy-with-flute-c-1623", "kind": "Video", "video_id": "iQ5uG6ryCa4", "keywords": "Hals, Frans Hals, Singing, Boy, Flute GAP, Google Art Project, OER, Khan Academy, Smarthistory, Art History, Gem\u00e4ldegalerie, Dutch, Painting, Genre, 1623, Singing Boy with Flute", "youtube_id": "iQ5uG6ryCa4", "readable_id": "frans-hals-singing-boy-with-flute-c-1623"}, "d8lP5tR2R3Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d8lP5tR2R3Q.mp4/d8lP5tR2R3Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d8lP5tR2R3Q.mp4/d8lP5tR2R3Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d8lP5tR2R3Q.m3u8/d8lP5tR2R3Q.m3u8"}, "duration": 508, "id": "d8lP5tR2R3Q", "title": "Multiplying and dividing negative numbers", "format": "mp4", "description": "Multiplying and dividing negative numbers", "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/mult-div-negatives-pre-alg/multiplying-and-dividing-negative-numbers/", "slug": "multiplying-and-dividing-negative-numbers", "kind": "Video", "video_id": "d8lP5tR2R3Q", "keywords": "multiplication, division, negative, CC_7_NS_2_a, CC_7_NS_2_b", "youtube_id": "d8lP5tR2R3Q", "readable_id": "multiplying-and-dividing-negative-numbers"}, "O5gN-IK6uKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O5gN-IK6uKs.mp4/O5gN-IK6uKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O5gN-IK6uKs.mp4/O5gN-IK6uKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O5gN-IK6uKs.m3u8/O5gN-IK6uKs.m3u8"}, "duration": 529, "id": "O5gN-IK6uKs", "title": "Four levels of protein structure", "format": "mp4", "description": "The four levels of protein structure are primary, secondary, tertiary, and quaternary. It is helpful to understand the nature and function of each level of protein structure in order to fully understand how a protein works. \u00a0By Tracy Kovach.", "path": "khan/test-prep/mcat/chemical-processes/proteins/four-levels-of-protein-structure/", "slug": "four-levels-of-protein-structure", "kind": "Video", "video_id": "O5gN-IK6uKs", "keywords": "", "youtube_id": "O5gN-IK6uKs", "readable_id": "four-levels-of-protein-structure"}, "SwB9Fq5VRZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SwB9Fq5VRZY.mp4/SwB9Fq5VRZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SwB9Fq5VRZY.mp4/SwB9Fq5VRZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SwB9Fq5VRZY.m3u8/SwB9Fq5VRZY.m3u8"}, "duration": 256, "id": "SwB9Fq5VRZY", "title": "The yield curve", "format": "mp4", "description": "The Yield Curve", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial/the-yield-curve/", "slug": "the-yield-curve", "kind": "Video", "video_id": "SwB9Fq5VRZY", "keywords": "federal, reserve, yield, banking", "youtube_id": "SwB9Fq5VRZY", "readable_id": "the-yield-curve"}, "yNz3ybrEe3I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yNz3ybrEe3I.mp4/yNz3ybrEe3I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yNz3ybrEe3I.mp4/yNz3ybrEe3I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yNz3ybrEe3I.m3u8/yNz3ybrEe3I.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/cildo-meireles/", "duration": 310, "id": "yNz3ybrEe3I", "title": "Cildo Meireles", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nBrazilian artist Cildo Meireles joins us at Tate Modern for the artist's first UK retrospective. His work is characterised by a high degree of interactivity, as well as recurring motifs of barriers, fencing and mesh. For a special event at the gallery, Meireles invited members of the public to help create the latest version of his work Meshes of Freedom. Listen as he shares his thoughts on the significance of the work, and why art is not just for the eyes.", "slug": "cildo-meireles", "kind": "Video", "video_id": "yNz3ybrEe3I", "keywords": "Tate", "youtube_id": "yNz3ybrEe3I", "readable_id": "cildo-meireles"}, "G1Hs2GZKOhw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G1Hs2GZKOhw.mp4/G1Hs2GZKOhw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G1Hs2GZKOhw.mp4/G1Hs2GZKOhw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G1Hs2GZKOhw.m3u8/G1Hs2GZKOhw.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/bruegel-peasant-wedding/", "duration": 329, "id": "G1Hs2GZKOhw", "title": "Pieter Bruegel the Elder's Peasant Wedding", "format": "mp4", "description": "\u00a0oil on canvas, 114 x 164 cm (Kunsthistorisches Museum, Vienna)Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "bruegel-peasant-wedding", "kind": "Video", "video_id": "G1Hs2GZKOhw", "keywords": "", "youtube_id": "G1Hs2GZKOhw", "readable_id": "bruegel-peasant-wedding"}, "IJySBMtFlnQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IJySBMtFlnQ.mp4/IJySBMtFlnQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IJySBMtFlnQ.mp4/IJySBMtFlnQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IJySBMtFlnQ.m3u8/IJySBMtFlnQ.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law-of-sines-example/", "duration": 334, "id": "IJySBMtFlnQ", "title": "Law of sines for missing angle", "format": "mp4", "description": "", "slug": "law-of-sines-example", "kind": "Video", "video_id": "IJySBMtFlnQ", "keywords": "", "youtube_id": "IJySBMtFlnQ", "readable_id": "law-of-sines-example"}, "U2cKywEn6KY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U2cKywEn6KY.mp4/U2cKywEn6KY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U2cKywEn6KY.mp4/U2cKywEn6KY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U2cKywEn6KY.m3u8/U2cKywEn6KY.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/restriction-enzymes/", "duration": 478, "id": "U2cKywEn6KY", "title": "Restriction enzymes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "restriction-enzymes", "kind": "Video", "video_id": "U2cKywEn6KY", "keywords": "", "youtube_id": "U2cKywEn6KY", "readable_id": "restriction-enzymes"}, "gyXzJ3as26k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gyXzJ3as26k.mp4/gyXzJ3as26k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gyXzJ3as26k.mp4/gyXzJ3as26k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gyXzJ3as26k.m3u8/gyXzJ3as26k.m3u8"}, "duration": 242, "id": "gyXzJ3as26k", "title": "Secure and wire the motors", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-6/", "slug": "solderless-spout-6", "kind": "Video", "video_id": "gyXzJ3as26k", "keywords": "", "youtube_id": "gyXzJ3as26k", "readable_id": "solderless-spout-6"}, "qqTGtLZeoCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qqTGtLZeoCY.mp4/qqTGtLZeoCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qqTGtLZeoCY.mp4/qqTGtLZeoCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qqTGtLZeoCY.m3u8/qqTGtLZeoCY.m3u8"}, "duration": 324, "id": "qqTGtLZeoCY", "title": "Cyprien Gaillard: Memory, nostalgia, and anachronism", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nMixed-media artist Cyprian Gaillard is interested in memory, nostalgia, and how we can look at things around us in relation to the things of the past. His electronic opera Desniansky Raion is a combination of film and music that looks at the relics of architectural modernism. In his film, a modern gang fight in a tower bloc neighbourhood of St. Petersburg recalls the battlefield paintings of the 18th century, modernist buildings facing demolition are illuminated with sound and light shows, and a circular suburb outside of Kiev serves as a modern stand-in for Stonehenge. These strange, obsolete, and practically medieval-looking building projects serve as both backdrop and subject, inviting us to look at something modern that evokes images from the past.\nWhat might Gaillard be trying to say about these modern blocs by juxtaposing them with other historical periods? And what about the presence of violence and demolition? What might it say about our relationship to history?\n", "path": "cyprien-gaillard/", "slug": "cyprien-gaillard", "kind": "Video", "video_id": "qqTGtLZeoCY", "keywords": "Tate", "youtube_id": "qqTGtLZeoCY", "readable_id": "cyprien-gaillard"}, "Bdd1Lu5jN08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bdd1Lu5jN08.mp4/Bdd1Lu5jN08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bdd1Lu5jN08.mp4/Bdd1Lu5jN08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bdd1Lu5jN08.m3u8/Bdd1Lu5jN08.m3u8"}, "duration": 657, "id": "Bdd1Lu5jN08", "title": "Update and modify your ping pong ball launcher", "format": "mp4", "description": "We upgrade our ping pong ball launcher to make it safer, more accurate and more reliable.", "path": "khan/science/discoveries-projects/projectile_launcher/update-and-modify-your-ping-pong-ball-launcher/", "slug": "update-and-modify-your-ping-pong-ball-launcher", "kind": "Video", "video_id": "Bdd1Lu5jN08", "keywords": "", "youtube_id": "Bdd1Lu5jN08", "readable_id": "update-and-modify-your-ping-pong-ball-launcher"}, "BdmI14oSe4g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BdmI14oSe4g.mp4/BdmI14oSe4g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BdmI14oSe4g.mp4/BdmI14oSe4g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BdmI14oSe4g.m3u8/BdmI14oSe4g.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-14-possible-solution/", "duration": 742, "id": "BdmI14oSe4g", "title": "Bailout 14: Possible solution", "format": "mp4", "description": "A solution that is MUCH fairer that has a MUCH better chance of working!", "slug": "bailout-14-possible-solution", "kind": "Video", "video_id": "BdmI14oSe4g", "keywords": "bailout, paulson, bank, bernanke, credit, crisis", "youtube_id": "BdmI14oSe4g", "readable_id": "bailout-14-possible-solution"}, "EGy1W24EPEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EGy1W24EPEI.mp4/EGy1W24EPEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EGy1W24EPEI.mp4/EGy1W24EPEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EGy1W24EPEI.m3u8/EGy1W24EPEI.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/adding-subtracting-mixed-numbers-0-5-ex-1/", "duration": 95, "id": "EGy1W24EPEI", "title": "Adding mixed numbers with like denominators", "format": "mp4", "description": "Think of a mixed numbers as a number AND a fraction. You can add numbers....you can add fractions with like denominators. Therefore, you can add mixed numbers! Watch.", "slug": "adding-subtracting-mixed-numbers-0-5-ex-1", "kind": "Video", "video_id": "EGy1W24EPEI", "keywords": "Adding, subtracting, mixed, numbers, 0, 5, ex, 1", "youtube_id": "EGy1W24EPEI", "readable_id": "adding-subtracting-mixed-numbers-0-5-ex-1"}, "Q1XPg-2KB_A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q1XPg-2KB_A.mp4/Q1XPg-2KB_A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q1XPg-2KB_A.mp4/Q1XPg-2KB_A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q1XPg-2KB_A.m3u8/Q1XPg-2KB_A.m3u8"}, "duration": 378, "id": "Q1XPg-2KB_A", "title": "Create the motor mounts", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-5/", "slug": "solderless-spout-5", "kind": "Video", "video_id": "Q1XPg-2KB_A", "keywords": "", "youtube_id": "Q1XPg-2KB_A", "readable_id": "solderless-spout-5"}, "UHZHkZ6_H5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UHZHkZ6_H5o.mp4/UHZHkZ6_H5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UHZHkZ6_H5o.mp4/UHZHkZ6_H5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UHZHkZ6_H5o.m3u8/UHZHkZ6_H5o.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/formal-charge-resonance/resonance-pattern-jay/", "duration": 591, "id": "UHZHkZ6_H5o", "title": "Resonance structure patterns", "format": "mp4", "description": "", "slug": "resonance-pattern-jay", "kind": "Video", "video_id": "UHZHkZ6_H5o", "keywords": "", "youtube_id": "UHZHkZ6_H5o", "readable_id": "resonance-pattern-jay"}, "3X5UEYD94-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3X5UEYD94-M.mp4/3X5UEYD94-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3X5UEYD94-M.mp4/3X5UEYD94-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3X5UEYD94-M.m3u8/3X5UEYD94-M.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/what-is-arthritis/", "duration": 561, "id": "3X5UEYD94-M", "title": "What is arthritis?", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-arthritis", "kind": "Video", "video_id": "3X5UEYD94-M", "keywords": "", "youtube_id": "3X5UEYD94-M", "readable_id": "what-is-arthritis"}, "T_yFszI7Aso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T_yFszI7Aso.mp4/T_yFszI7Aso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T_yFszI7Aso.mp4/T_yFszI7Aso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T_yFszI7Aso.m3u8/T_yFszI7Aso.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/formal-informal-fallacy/", "duration": 244, "id": "T_yFszI7Aso", "title": "Fallacies: Formal and informal fallacies", "format": "mp4", "description": "In this video, Paul describes the distinction between formal and informal fallacies. This distinction is useful for understanding the fallacies in Wi-Phi's Critical Thinking section.\n\nSpeaker: Paul Henne", "slug": "formal-informal-fallacy", "kind": "Video", "video_id": "T_yFszI7Aso", "keywords": "", "youtube_id": "T_yFszI7Aso", "readable_id": "formal-informal-fallacy"}, "ETdNsO7mKXM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ETdNsO7mKXM.mp4/ETdNsO7mKXM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ETdNsO7mKXM.mp4/ETdNsO7mKXM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ETdNsO7mKXM.m3u8/ETdNsO7mKXM.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/bonds-as-springs/", "duration": 740, "id": "ETdNsO7mKXM", "title": "Bonds as springs", "format": "mp4", "description": "", "slug": "bonds-as-springs", "kind": "Video", "video_id": "ETdNsO7mKXM", "keywords": "", "youtube_id": "ETdNsO7mKXM", "readable_id": "bonds-as-springs"}, "f3nJOCfkerI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f3nJOCfkerI.mp4/f3nJOCfkerI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f3nJOCfkerI.mp4/f3nJOCfkerI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f3nJOCfkerI.m3u8/f3nJOCfkerI.m3u8"}, "path": "khan/partner-content/big-history-project/big-bang/the-big-bang/bhp-threshold-1-big-bang/", "duration": 120, "id": "f3nJOCfkerI", "title": "Threshold 1: The Big Bang", "format": "mp4", "description": "Space, time, matter, and energy. The Big Bang provided the raw materials for everything around us today.", "slug": "bhp-threshold-1-big-bang", "kind": "Video", "video_id": "f3nJOCfkerI", "keywords": "", "youtube_id": "f3nJOCfkerI", "readable_id": "bhp-threshold-1-big-bang"}, "BYE5lxTzNVM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BYE5lxTzNVM.mp4/BYE5lxTzNVM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BYE5lxTzNVM.mp4/BYE5lxTzNVM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BYE5lxTzNVM.m3u8/BYE5lxTzNVM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/treatment-of-stroke-with-interventions/", "duration": 434, "id": "BYE5lxTzNVM", "title": "Treatment of stroke with interventions", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "treatment-of-stroke-with-interventions", "kind": "Video", "video_id": "BYE5lxTzNVM", "keywords": "", "youtube_id": "BYE5lxTzNVM", "readable_id": "treatment-of-stroke-with-interventions"}, "zM4cHiV3kF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zM4cHiV3kF4.mp4/zM4cHiV3kF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zM4cHiV3kF4.mp4/zM4cHiV3kF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zM4cHiV3kF4.m3u8/zM4cHiV3kF4.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-16-18/", "duration": 383, "id": "zM4cHiV3kF4", "title": "16-18 Shortest paths on grid", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-16-18", "kind": "Video", "video_id": "zM4cHiV3kF4", "keywords": "", "youtube_id": "zM4cHiV3kF4", "readable_id": "sat-getting-ready-2-16-18"}, "Hoyv3-BMAGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hoyv3-BMAGc.mp4/Hoyv3-BMAGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hoyv3-BMAGc.mp4/Hoyv3-BMAGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hoyv3-BMAGc.m3u8/Hoyv3-BMAGc.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/absolute-relative-maxima-minima/relative-minima-maxima/", "duration": 330, "id": "Hoyv3-BMAGc", "title": "Absolute and relative minima and maxima", "format": "mp4", "description": "", "slug": "relative-minima-maxima", "kind": "Video", "video_id": "Hoyv3-BMAGc", "keywords": "", "youtube_id": "Hoyv3-BMAGc", "readable_id": "relative-minima-maxima"}, "erjMiErRgSQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/erjMiErRgSQ.mp4/erjMiErRgSQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/erjMiErRgSQ.mp4/erjMiErRgSQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/erjMiErRgSQ.m3u8/erjMiErRgSQ.m3u8"}, "duration": 608, "id": "erjMiErRgSQ", "title": "Ideal gas equation example 1", "format": "mp4", "description": "Figuring out the number of moles of gas we have using the ideal gas equation: PV=nRT.", "path": "khan/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws/ideal-gas-equation-example-1/", "slug": "ideal-gas-equation-example-1", "kind": "Video", "video_id": "erjMiErRgSQ", "keywords": "ideal, gas, equation, chemistry", "youtube_id": "erjMiErRgSQ", "readable_id": "ideal-gas-equation-example-1"}, "Km3Z7Ack2Dc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Km3Z7Ack2Dc.mp4/Km3Z7Ack2Dc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Km3Z7Ack2Dc.mp4/Km3Z7Ack2Dc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Km3Z7Ack2Dc.m3u8/Km3Z7Ack2Dc.m3u8"}, "duration": 64, "id": "Km3Z7Ack2Dc", "title": "Scenario 3: Plan targeted tutoring", "format": "mp4", "description": "Learn how to identify struggling students and pinpoint their misunderstandings using the Student Progress report.", "path": "plan-targeted-tutoring/", "slug": "plan-targeted-tutoring", "kind": "Video", "video_id": "Km3Z7Ack2Dc", "keywords": "", "youtube_id": "Km3Z7Ack2Dc", "readable_id": "plan-targeted-tutoring"}, "6xPkG2pA-TU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6xPkG2pA-TU.mp4/6xPkG2pA-TU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6xPkG2pA-TU.mp4/6xPkG2pA-TU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6xPkG2pA-TU.m3u8/6xPkG2pA-TU.m3u8"}, "path": "khan/math/probability/independent-dependent-probability/dependent_probability/calculating-conditional-probability/", "duration": 403, "id": "6xPkG2pA-TU", "title": "Calculating conditional probability", "format": "mp4", "description": "", "slug": "calculating-conditional-probability", "kind": "Video", "video_id": "6xPkG2pA-TU", "keywords": "", "youtube_id": "6xPkG2pA-TU", "readable_id": "calculating-conditional-probability"}, "lEXuBpu8jys": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lEXuBpu8jys.mp4/lEXuBpu8jys.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lEXuBpu8jys.mp4/lEXuBpu8jys.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lEXuBpu8jys.m3u8/lEXuBpu8jys.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-asthma/asthma-longterm-treatment/", "duration": 401, "id": "lEXuBpu8jys", "title": "Asthma longterm treatment", "format": "mp4", "description": "", "slug": "asthma-longterm-treatment", "kind": "Video", "video_id": "lEXuBpu8jys", "keywords": "", "youtube_id": "lEXuBpu8jys", "readable_id": "asthma-longterm-treatment"}, "BXHNzUaIRR0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BXHNzUaIRR0.mp4/BXHNzUaIRR0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BXHNzUaIRR0.mp4/BXHNzUaIRR0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BXHNzUaIRR0.m3u8/BXHNzUaIRR0.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/variable-and-expressions/evaluating-expressions-with-two-variables/", "duration": 106, "id": "BXHNzUaIRR0", "title": "Example: Evaluating expressions with 2 variables", "format": "mp4", "description": "Evaluating Expressions with Two Variables", "slug": "evaluating-expressions-with-two-variables", "kind": "Video", "video_id": "BXHNzUaIRR0", "keywords": "u09_l1_t1_we2, Evaluating, Expressions, with, Two, Variables", "youtube_id": "BXHNzUaIRR0", "readable_id": "evaluating-expressions-with-two-variables"}, "HFecdPI_-dg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HFecdPI_-dg.mp4/HFecdPI_-dg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HFecdPI_-dg.mp4/HFecdPI_-dg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HFecdPI_-dg.m3u8/HFecdPI_-dg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/managing-parkinsons-disease-with-surgery/", "duration": 541, "id": "HFecdPI_-dg", "title": "Managing Parkinson's disease with surgery", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "managing-parkinsons-disease-with-surgery", "kind": "Video", "video_id": "HFecdPI_-dg", "keywords": "", "youtube_id": "HFecdPI_-dg", "readable_id": "managing-parkinsons-disease-with-surgery"}, "hbJ2o9EUmJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hbJ2o9EUmJ0.mp4/hbJ2o9EUmJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hbJ2o9EUmJ0.mp4/hbJ2o9EUmJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hbJ2o9EUmJ0.m3u8/hbJ2o9EUmJ0.m3u8"}, "duration": 660, "id": "hbJ2o9EUmJ0", "title": "Undetermined coefficients 2", "format": "mp4", "description": "Another example using undetermined coefficients.", "path": "khan/math/differential-equations/second-order-differential-equations/undetermined-coefficients/undetermined-coefficients-2/", "slug": "undetermined-coefficients-2", "kind": "Video", "video_id": "hbJ2o9EUmJ0", "keywords": "nonhomogeneous, differential, equation, undetermined, coefficients", "youtube_id": "hbJ2o9EUmJ0", "readable_id": "undetermined-coefficients-2"}, "GR2GA7chA_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GR2GA7chA_c.mp4/GR2GA7chA_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GR2GA7chA_c.mp4/GR2GA7chA_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GR2GA7chA_c.m3u8/GR2GA7chA_c.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/photosynthesis/photosynthesis-light-reactions-1/", "duration": 1216, "id": "GR2GA7chA_c", "title": "Photosynthesis: Light reactions 1", "format": "mp4", "description": "Details on the light-dependent reactions of photosynthesis", "slug": "photosynthesis-light-reactions-1", "kind": "Video", "video_id": "GR2GA7chA_c", "keywords": "light, reaction, photosynthesis", "youtube_id": "GR2GA7chA_c", "readable_id": "photosynthesis-light-reactions-1"}, "UXORCpvKYiI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UXORCpvKYiI.mp4/UXORCpvKYiI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UXORCpvKYiI.mp4/UXORCpvKYiI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UXORCpvKYiI.m3u8/UXORCpvKYiI.m3u8"}, "duration": 826, "id": "UXORCpvKYiI", "title": "Total displacement for projectile", "format": "mp4", "description": "Reconstructing the total displacement vector for a projectile", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/total-displacement-for-projectile/", "slug": "total-displacement-for-projectile", "kind": "Video", "video_id": "UXORCpvKYiI", "keywords": "kinematics, vector, acceleration", "youtube_id": "UXORCpvKYiI", "readable_id": "total-displacement-for-projectile"}, "0Dd-y_apbRw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0Dd-y_apbRw.mp4/0Dd-y_apbRw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0Dd-y_apbRw.mp4/0Dd-y_apbRw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0Dd-y_apbRw.m3u8/0Dd-y_apbRw.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-scientific-notation/scientific-notation-examples/", "duration": 769, "id": "0Dd-y_apbRw", "title": "Scientific notation examples", "format": "mp4", "description": "More scientific notation examples", "slug": "scientific-notation-examples", "kind": "Video", "video_id": "0Dd-y_apbRw", "keywords": "scientific, notation, CC_8_EE_3, CC_8_EE_4", "youtube_id": "0Dd-y_apbRw", "readable_id": "scientific-notation-examples"}, "5lmHzAHbtzg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5lmHzAHbtzg.mp4/5lmHzAHbtzg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5lmHzAHbtzg.mp4/5lmHzAHbtzg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5lmHzAHbtzg.m3u8/5lmHzAHbtzg.m3u8"}, "duration": 190, "id": "5lmHzAHbtzg", "title": "Market capitalization", "format": "mp4", "description": "Market versus book value of equity", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/company-statements-capital-struc/market-capitalization/", "slug": "market-capitalization", "kind": "Video", "video_id": "5lmHzAHbtzg", "keywords": "market, cap, book, value, investing", "youtube_id": "5lmHzAHbtzg", "readable_id": "market-capitalization"}, "ZD8THEz18gc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZD8THEz18gc.mp4/ZD8THEz18gc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZD8THEz18gc.mp4/ZD8THEz18gc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZD8THEz18gc.m3u8/ZD8THEz18gc.m3u8"}, "path": "khan/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic/milankovitch-cycles-precession-and-obliquity/", "duration": 777, "id": "ZD8THEz18gc", "title": "Milankovitch cycles precession and obliquity", "format": "mp4", "description": "How changes in Earth's rotation can effect Earth's seasons and climate", "slug": "milankovitch-cycles-precession-and-obliquity", "kind": "Video", "video_id": "ZD8THEz18gc", "keywords": "Milankovitch, Cycles, Precession, and, Obliquity", "youtube_id": "ZD8THEz18gc", "readable_id": "milankovitch-cycles-precession-and-obliquity"}, "sGHV5_ieDP4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sGHV5_ieDP4.mp4/sGHV5_ieDP4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sGHV5_ieDP4.mp4/sGHV5_ieDP4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sGHV5_ieDP4.m3u8/sGHV5_ieDP4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/how-to-identify-murmurs/", "duration": 542, "id": "sGHV5_ieDP4", "title": "How to identify murmurs", "format": "mp4", "description": "", "slug": "how-to-identify-murmurs", "kind": "Video", "video_id": "sGHV5_ieDP4", "keywords": "", "youtube_id": "sGHV5_ieDP4", "readable_id": "how-to-identify-murmurs"}, "PixZzV4Iz1M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PixZzV4Iz1M.mp4/PixZzV4Iz1M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PixZzV4Iz1M.mp4/PixZzV4Iz1M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PixZzV4Iz1M.m3u8/PixZzV4Iz1M.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2008-may-8-7/", "duration": 83, "id": "PixZzV4Iz1M", "title": "7 Area of the shaded region", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-7", "kind": "Video", "video_id": "PixZzV4Iz1M", "keywords": "", "youtube_id": "PixZzV4Iz1M", "readable_id": "sat-2008-may-8-7"}, "BLQNL_UGONg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BLQNL_UGONg.mp4/BLQNL_UGONg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BLQNL_UGONg.mp4/BLQNL_UGONg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BLQNL_UGONg.m3u8/BLQNL_UGONg.m3u8"}, "duration": 255, "id": "BLQNL_UGONg", "title": "Showing relationship between cosine and sine of complements", "format": "mp4", "description": "", "path": "khan/math/trigonometry/basic-trigonometry/cc-trig-ratios-similarity/showing-relationship-between-cosine-and-sine-of-complements/", "slug": "showing-relationship-between-cosine-and-sine-of-complements", "kind": "Video", "video_id": "BLQNL_UGONg", "keywords": "", "youtube_id": "BLQNL_UGONg", "readable_id": "showing-relationship-between-cosine-and-sine-of-complements"}, "j2-95i4pq9g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j2-95i4pq9g.mp4/j2-95i4pq9g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j2-95i4pq9g.mp4/j2-95i4pq9g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j2-95i4pq9g.m3u8/j2-95i4pq9g.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/cubism/braque-le-viaduc-l-estaque-the-viaduct-at-l-estaque-1908/", "duration": 231, "id": "j2-95i4pq9g", "title": "Braque, The Viaduct at L'Estaque", "format": "mp4", "description": "Georges Braque, Le Viaduc \u00e0 L'Estaque, (The Viaduct at L'Estaque), 1908, oil on canvas, 28-5/8 x 23-1/4 inches or 72.5 x 59 cm (Mus\u00e9e national d'art moderne, Centre Pompidou, Paris). Speakers: Dr. Beth Harris and Dr. Steven Zucker\u00a0", "slug": "braque-le-viaduc-l-estaque-the-viaduct-at-l-estaque-1908", "kind": "Video", "video_id": "j2-95i4pq9g", "keywords": "Braque, Pompidou, L'Estaque Viaduct, Art History, Smarthistory, Art, Impressionism, Cezanne", "youtube_id": "j2-95i4pq9g", "readable_id": "braque-le-viaduc-l-estaque-the-viaduct-at-l-estaque-1908"}, "4yyLfrsSXQQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4yyLfrsSXQQ.mp4/4yyLfrsSXQQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4yyLfrsSXQQ.mp4/4yyLfrsSXQQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4yyLfrsSXQQ.m3u8/4yyLfrsSXQQ.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/harmonic-series-divergent/", "duration": 393, "id": "4yyLfrsSXQQ", "title": "Famous proof that harmonic series diverges", "format": "mp4", "description": "", "slug": "harmonic-series-divergent", "kind": "Video", "video_id": "4yyLfrsSXQQ", "keywords": "", "youtube_id": "4yyLfrsSXQQ", "readable_id": "harmonic-series-divergent"}, "PzDthFTzEa0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PzDthFTzEa0.mp4/PzDthFTzEa0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PzDthFTzEa0.mp4/PzDthFTzEa0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PzDthFTzEa0.m3u8/PzDthFTzEa0.m3u8"}, "duration": 561, "id": "PzDthFTzEa0", "title": "Oligopolies and monopolistic competition", "format": "mp4", "description": "Thinking about different markets that are in-between monopolies and perfect competition", "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolistic-competition-oligop/oligopolies-and-monopolisitc-competition/", "slug": "oligopolies-and-monopolisitc-competition", "kind": "Video", "video_id": "PzDthFTzEa0", "keywords": "microeconomics", "youtube_id": "PzDthFTzEa0", "readable_id": "oligopolies-and-monopolisitc-competition"}, "LXi5FUMNTjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LXi5FUMNTjE.mp4/LXi5FUMNTjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LXi5FUMNTjE.mp4/LXi5FUMNTjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LXi5FUMNTjE.m3u8/LXi5FUMNTjE.m3u8"}, "path": "khan/science/discoveries-projects/robots/all-about-spout/spout_motor/", "duration": 199, "id": "LXi5FUMNTjE", "title": "Spout motor", "format": "mp4", "description": "", "slug": "spout_motor", "kind": "Video", "video_id": "LXi5FUMNTjE", "keywords": "", "youtube_id": "LXi5FUMNTjE", "readable_id": "spout_motor"}, "EvvxBdNIUeQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EvvxBdNIUeQ.mp4/EvvxBdNIUeQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EvvxBdNIUeQ.mp4/EvvxBdNIUeQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EvvxBdNIUeQ.m3u8/EvvxBdNIUeQ.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/polynomials1/", "duration": 277, "id": "EvvxBdNIUeQ", "title": "Polynomials 1", "format": "mp4", "description": "Polynomials 1", "slug": "polynomials1", "kind": "Video", "video_id": "EvvxBdNIUeQ", "keywords": "U08_L2_T1_we1, Polynomials1, CC_6_EE_2_c, CC_7_G_1, CC_7_G_4, CC_7_G_6, CC_39336_A-APR_1", "youtube_id": "EvvxBdNIUeQ", "readable_id": "polynomials1"}, "ekVXPYwvaJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ekVXPYwvaJE.mp4/ekVXPYwvaJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ekVXPYwvaJE.mp4/ekVXPYwvaJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ekVXPYwvaJE.m3u8/ekVXPYwvaJE.m3u8"}, "duration": 498, "id": "ekVXPYwvaJE", "title": "Hajj Stories: Introduction to the Hajj", "format": "mp4", "description": "The hajj, one of the \u201cfive pillars\u201d of Islam, is the pilgrimage to the city of Mecca, in Saudi Arabia, that all Muslims should make at least once in their lifetime if their health and financial means allow it, according to Islamic tradition. Inspired by the British Museum\u2019s videos Hajj Stories (2012), staff at the Asian Art Museum asked Bay Area Muslims who have performed the hajj to share experiences of their journeys. Learn more about the arts of the Islamic world on the\u00a0 Asian Art Museum's education website.", "path": "introduction-to-the-hajj/", "slug": "introduction-to-the-hajj", "kind": "Video", "video_id": "ekVXPYwvaJE", "keywords": "Islam, hajj", "youtube_id": "ekVXPYwvaJE", "readable_id": "introduction-to-the-hajj"}, "Qp87Z4m8R-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qp87Z4m8R-w.mp4/Qp87Z4m8R-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qp87Z4m8R-w.mp4/Qp87Z4m8R-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qp87Z4m8R-w.m3u8/Qp87Z4m8R-w.m3u8"}, "duration": 756, "id": "Qp87Z4m8R-w", "title": "Phase diagrams", "format": "mp4", "description": "Understanding and interpreting phase diagrams", "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/phase-diagrams/", "slug": "phase-diagrams", "kind": "Video", "video_id": "Qp87Z4m8R-w", "keywords": "chemistry, phase, diagram", "youtube_id": "Qp87Z4m8R-w", "readable_id": "phase-diagrams"}, "VP3nKDUw1jA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VP3nKDUw1jA.mp4/VP3nKDUw1jA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VP3nKDUw1jA.mp4/VP3nKDUw1jA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VP3nKDUw1jA.m3u8/VP3nKDUw1jA.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-8-reserve-ratios/", "duration": 649, "id": "VP3nKDUw1jA", "title": "Banking 8: Reserve ratios", "format": "mp4", "description": "How reserve requirements limit how much lending a bank can do.", "slug": "banking-8-reserve-ratios", "kind": "Video", "video_id": "VP3nKDUw1jA", "keywords": "reserve, requirement, banking", "youtube_id": "VP3nKDUw1jA", "readable_id": "banking-8-reserve-ratios"}, "xFNeN9rONKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xFNeN9rONKY.mp4/xFNeN9rONKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xFNeN9rONKY.mp4/xFNeN9rONKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xFNeN9rONKY.m3u8/xFNeN9rONKY.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/signal-characteristics-intensity/", "duration": 335, "id": "xFNeN9rONKY", "title": "Signal characteristics - intensity", "format": "mp4", "description": "", "slug": "signal-characteristics-intensity", "kind": "Video", "video_id": "xFNeN9rONKY", "keywords": "", "youtube_id": "xFNeN9rONKY", "readable_id": "signal-characteristics-intensity"}, "E_1gEtiGPNI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E_1gEtiGPNI.mp4/E_1gEtiGPNI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E_1gEtiGPNI.mp4/E_1gEtiGPNI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E_1gEtiGPNI.m3u8/E_1gEtiGPNI.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/quotient-rule/", "duration": 571, "id": "E_1gEtiGPNI", "title": "Quotient rule and common derivatives", "format": "mp4", "description": "Why the quotient rule is the same thing as the product rule. Introduction to the derivative of e^x, ln x, sin x, cos x, and tan x", "slug": "quotient-rule", "kind": "Video", "video_id": "E_1gEtiGPNI", "keywords": "derivatives, calculus, trigonometry, khan, academy", "youtube_id": "E_1gEtiGPNI", "readable_id": "quotient-rule"}, "I8BLj7cRM7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I8BLj7cRM7c.mp4/I8BLj7cRM7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I8BLj7cRM7c.mp4/I8BLj7cRM7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I8BLj7cRM7c.m3u8/I8BLj7cRM7c.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-5-paying-off-the-debt/", "duration": 651, "id": "I8BLj7cRM7c", "title": "Bailout 5: Paying off the debt", "format": "mp4", "description": "How the bank can liquidate assets to pay off debt that comes due.", "slug": "bailout-5-paying-off-the-debt", "kind": "Video", "video_id": "I8BLj7cRM7c", "keywords": "bailout, credit, crunch, paulson, bernanke, leverage, CDO", "youtube_id": "I8BLj7cRM7c", "readable_id": "bailout-5-paying-off-the-debt"}, "47JRs6hF_ic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/47JRs6hF_ic.mp4/47JRs6hF_ic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/47JRs6hF_ic.mp4/47JRs6hF_ic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/47JRs6hF_ic.m3u8/47JRs6hF_ic.m3u8"}, "duration": 273, "id": "47JRs6hF_ic", "title": "Decay and interference", "format": "mp4", "description": "Learn about decay and interference in human memory.", "path": "khan/test-prep/mcat/processing-the-environment/memory/decay-and-interference/", "slug": "decay-and-interference", "kind": "Video", "video_id": "47JRs6hF_ic", "keywords": "", "youtube_id": "47JRs6hF_ic", "readable_id": "decay-and-interference"}, "cTveNRjWQYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cTveNRjWQYo.mp4/cTveNRjWQYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cTveNRjWQYo.mp4/cTveNRjWQYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cTveNRjWQYo.m3u8/cTveNRjWQYo.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/advanced-mult-div-word-problems/multi-step-word-problems-with-whole-numbers-exercise-t2/", "duration": 158, "id": "cTveNRjWQYo", "title": "Multiplication, division word problems: how many pieces of pizzas?", "format": "mp4", "description": "How many pizzas, pieces per pizza, and eaten pieces were there? Oh, the questions we must answer! It's enough to make you hungry.", "slug": "multi-step-word-problems-with-whole-numbers-exercise-t2", "kind": "Video", "video_id": "cTveNRjWQYo", "keywords": "", "youtube_id": "cTveNRjWQYo", "readable_id": "multi-step-word-problems-with-whole-numbers-exercise-t2"}, "TJaHNxJk5-4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TJaHNxJk5-4.mp4/TJaHNxJk5-4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TJaHNxJk5-4.mp4/TJaHNxJk5-4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TJaHNxJk5-4.m3u8/TJaHNxJk5-4.m3u8"}, "duration": 496, "id": "TJaHNxJk5-4", "title": "Three equation application problem", "format": "mp4", "description": "Three Equation Application Problem", "path": "khan/math/algebra2/systems_eq_ineq/fancier_systems_precalc/three-equation-application-problem/", "slug": "three-equation-application-problem", "kind": "Video", "video_id": "TJaHNxJk5-4", "keywords": "u14_l3_t1_we3, Three, Equation, Application, Problem, CC_39336_A-REI_6", "youtube_id": "TJaHNxJk5-4", "readable_id": "three-equation-application-problem"}, "GZUn5RYkSkE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GZUn5RYkSkE.mp4/GZUn5RYkSkE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GZUn5RYkSkE.mp4/GZUn5RYkSkE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GZUn5RYkSkE.m3u8/GZUn5RYkSkE.m3u8"}, "duration": 656, "id": "GZUn5RYkSkE", "title": "Great glands - Your endocrine system", "format": "mp4", "description": "Hank fills us in on the endocrine system - the system of glands which produce and secrete different types of hormones directly into the bloodstream to regulate the body's growth, metabolism, and sexual development & function.", "path": "crash-course-biology-132/", "slug": "crash-course-biology-132", "kind": "Video", "video_id": "GZUn5RYkSkE", "keywords": "", "youtube_id": "GZUn5RYkSkE", "readable_id": "crash-course-biology-132"}, "GDcVdBAnBdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GDcVdBAnBdU.mp4/GDcVdBAnBdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GDcVdBAnBdU.mp4/GDcVdBAnBdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GDcVdBAnBdU.m3u8/GDcVdBAnBdU.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/proof-rhombus-diagonals-are-perpendicular-bisectors/", "duration": 244, "id": "GDcVdBAnBdU", "title": "Proof: Rhombus diagonals are perpendicular bisectors", "format": "mp4", "description": "Proving that the diagonals of a rhombus are perpendicular", "slug": "proof-rhombus-diagonals-are-perpendicular-bisectors", "kind": "Video", "video_id": "GDcVdBAnBdU", "keywords": "Proof, Rhombus, Diagonals, are, Perpendicular, Bisectors", "youtube_id": "GDcVdBAnBdU", "readable_id": "proof-rhombus-diagonals-are-perpendicular-bisectors"}, "ubXjr_dQ-y0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ubXjr_dQ-y0.mp4/ubXjr_dQ-y0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ubXjr_dQ-y0.mp4/ubXjr_dQ-y0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ubXjr_dQ-y0.m3u8/ubXjr_dQ-y0.m3u8"}, "duration": 44, "id": "ubXjr_dQ-y0", "title": "Spider's romance", "format": "mp4", "description": "Happy Valentines Day from Khan Academy Projects", "path": "khan/science/discoveries-projects/robots/spider_bot/12-spiders-romance/", "slug": "12-spiders-romance", "kind": "Video", "video_id": "ubXjr_dQ-y0", "keywords": "", "youtube_id": "ubXjr_dQ-y0", "readable_id": "12-spiders-romance"}, "ik2CZqsAw28": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ik2CZqsAw28.mp4/ik2CZqsAw28.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ik2CZqsAw28.mp4/ik2CZqsAw28.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ik2CZqsAw28.m3u8/ik2CZqsAw28.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-class-squiggle-inception/", "duration": 326, "id": "ik2CZqsAw28", "title": "Doodling in math: Squiggle inception", "format": "mp4", "description": "How to draw squiggles like a Hilbert.", "slug": "doodling-in-math-class-squiggle-inception", "kind": "Video", "video_id": "ik2CZqsAw28", "keywords": "squiggle, inception, doodling, math, mathematics, hilbert, curve, doodle, fractal, space-filling curve, vi hart", "youtube_id": "ik2CZqsAw28", "readable_id": "doodling-in-math-class-squiggle-inception"}, "Br_8t58mdeI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Br_8t58mdeI.mp4/Br_8t58mdeI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Br_8t58mdeI.mp4/Br_8t58mdeI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Br_8t58mdeI.m3u8/Br_8t58mdeI.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/linear-algebra-transposes-of-sums-and-inverses/", "duration": 521, "id": "Br_8t58mdeI", "title": "Transposes of sums and inverses", "format": "mp4", "description": "Transposes of sums and inverses", "slug": "linear-algebra-transposes-of-sums-and-inverses", "kind": "Video", "video_id": "Br_8t58mdeI", "keywords": "transpose, sum, inverse", "youtube_id": "Br_8t58mdeI", "readable_id": "linear-algebra-transposes-of-sums-and-inverses"}, "FfugceYn140": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FfugceYn140.mp4/FfugceYn140.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FfugceYn140.mp4/FfugceYn140.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FfugceYn140.m3u8/FfugceYn140.m3u8"}, "duration": 333, "id": "FfugceYn140", "title": "Biological theory", "format": "mp4", "description": "Nature or Nurture? The Biologic Theory of Personality addresses the role evolution and biology play in our personality development. By Shreena Desai. ", "path": "khan/test-prep/mcat/behavior/theories-personality/biological-theory/", "slug": "biological-theory", "kind": "Video", "video_id": "FfugceYn140", "keywords": "biologic theory", "youtube_id": "FfugceYn140", "readable_id": "biological-theory"}, "aOSlXuDO4UU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aOSlXuDO4UU.mp4/aOSlXuDO4UU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aOSlXuDO4UU.mp4/aOSlXuDO4UU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aOSlXuDO4UU.m3u8/aOSlXuDO4UU.m3u8"}, "duration": 825, "id": "aOSlXuDO4UU", "title": "More on internal energy", "format": "mp4", "description": "Getting more intuition of internal energy, heat, and work", "path": "khan/science/chemistry/thermodynamics-chemistry/internal-energy-sal/more-on-internal-energy/", "slug": "more-on-internal-energy", "kind": "Video", "video_id": "aOSlXuDO4UU", "keywords": "thermodynamics, heat, work, internal, energy", "youtube_id": "aOSlXuDO4UU", "readable_id": "more-on-internal-energy"}, "nZui6Ti9ChQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nZui6Ti9ChQ.mp4/nZui6Ti9ChQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nZui6Ti9ChQ.mp4/nZui6Ti9ChQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nZui6Ti9ChQ.m3u8/nZui6Ti9ChQ.m3u8"}, "duration": 485, "id": "nZui6Ti9ChQ", "title": "The founding mothers of the United States of America: An overview", "format": "mp4", "description": "In this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson introduce\u00a0the \"Founding Mothers\"", "path": "overview-founding-mothers/", "slug": "overview-founding-mothers", "kind": "Video", "video_id": "nZui6Ti9ChQ", "keywords": "", "youtube_id": "nZui6Ti9ChQ", "readable_id": "overview-founding-mothers"}, "YF2JdYpsFcQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YF2JdYpsFcQ.mp4/YF2JdYpsFcQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YF2JdYpsFcQ.mp4/YF2JdYpsFcQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YF2JdYpsFcQ.m3u8/YF2JdYpsFcQ.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-5/", "duration": 136, "id": "YF2JdYpsFcQ", "title": "5 Equation that describes number pairs", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-5", "kind": "Video", "video_id": "YF2JdYpsFcQ", "keywords": "", "youtube_id": "YF2JdYpsFcQ", "readable_id": "sat-getting-ready-2-5"}, "oqAgaGeBOAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oqAgaGeBOAU.mp4/oqAgaGeBOAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oqAgaGeBOAU.mp4/oqAgaGeBOAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oqAgaGeBOAU.m3u8/oqAgaGeBOAU.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/cross-topic-arithmetic/rational-number-word-problem-example-2/", "duration": 153, "id": "oqAgaGeBOAU", "title": "Rational number word problem with ratios", "format": "mp4", "description": "In this word problem, we'll compare the weight of two objects using a ratio of integers. We'll practice simplifying a fraction, too.", "slug": "rational-number-word-problem-example-2", "kind": "Video", "video_id": "oqAgaGeBOAU", "keywords": "", "youtube_id": "oqAgaGeBOAU", "readable_id": "rational-number-word-problem-example-2"}, "26_SmkN7M_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/26_SmkN7M_Y.mp4/26_SmkN7M_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/26_SmkN7M_Y.mp4/26_SmkN7M_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/26_SmkN7M_Y.m3u8/26_SmkN7M_Y.m3u8"}, "duration": 152, "id": "26_SmkN7M_Y", "title": "Olga Rozanova, \"A Little Duck's Nest... of Bad Words\"", "format": "mp4", "description": "To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art.", "path": "moma-rozanova-ducksnest/", "slug": "moma-rozanova-ducksnest", "kind": "Video", "video_id": "26_SmkN7M_Y", "keywords": "", "youtube_id": "26_SmkN7M_Y", "readable_id": "moma-rozanova-ducksnest"}, "ZUEjRYe7MRk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZUEjRYe7MRk.mp4/ZUEjRYe7MRk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZUEjRYe7MRk.mp4/ZUEjRYe7MRk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZUEjRYe7MRk.m3u8/ZUEjRYe7MRk.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-1-liquidity-vs-solvency/", "duration": 686, "id": "ZUEjRYe7MRk", "title": "Bailout 1: Liquidity vs. solvency", "format": "mp4", "description": "Review of balance sheets. Difference between illiquidity and insolvency.", "slug": "bailout-1-liquidity-vs-solvency", "kind": "Video", "video_id": "ZUEjRYe7MRk", "keywords": "bailout, fed, treasury, insolvency, credit, crunch", "youtube_id": "ZUEjRYe7MRk", "readable_id": "bailout-1-liquidity-vs-solvency"}, "Kt7Dwr7BftE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kt7Dwr7BftE.mp4/Kt7Dwr7BftE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kt7Dwr7BftE.mp4/Kt7Dwr7BftE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kt7Dwr7BftE.m3u8/Kt7Dwr7BftE.m3u8"}, "duration": 283, "id": "Kt7Dwr7BftE", "title": "Comparing fractions visually and on number line", "format": "mp4", "description": "Compare fractions by graphing them a number line and drawing fraction models.", "path": "comparing-fractions-visually-and-on-number-line/", "slug": "comparing-fractions-visually-and-on-number-line", "kind": "Video", "video_id": "Kt7Dwr7BftE", "keywords": "", "youtube_id": "Kt7Dwr7BftE", "readable_id": "comparing-fractions-visually-and-on-number-line"}, "GUwV0gibLx8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GUwV0gibLx8.mp4/GUwV0gibLx8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GUwV0gibLx8.mp4/GUwV0gibLx8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GUwV0gibLx8.m3u8/GUwV0gibLx8.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/psychoactive-drugs-hallucinogens/", "duration": 226, "id": "GUwV0gibLx8", "title": "Psychoactive drugs: Hallucinogens", "format": "mp4", "description": "", "slug": "psychoactive-drugs-hallucinogens", "kind": "Video", "video_id": "GUwV0gibLx8", "keywords": "", "youtube_id": "GUwV0gibLx8", "readable_id": "psychoactive-drugs-hallucinogens"}, "xC55TgPmfZ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xC55TgPmfZ0.mp4/xC55TgPmfZ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xC55TgPmfZ0.mp4/xC55TgPmfZ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xC55TgPmfZ0.m3u8/xC55TgPmfZ0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/diagnosing-strokes-with-imaging-ct-mri-and-angiography/", "duration": 570, "id": "xC55TgPmfZ0", "title": "Diagnosing strokes with imaging CT, MRI, and Angiography", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diagnosing-strokes-with-imaging-ct-mri-and-angiography", "kind": "Video", "video_id": "xC55TgPmfZ0", "keywords": "", "youtube_id": "xC55TgPmfZ0", "readable_id": "diagnosing-strokes-with-imaging-ct-mri-and-angiography"}, "6hRAK7QyxPc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6hRAK7QyxPc.mp4/6hRAK7QyxPc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6hRAK7QyxPc.mp4/6hRAK7QyxPc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6hRAK7QyxPc.m3u8/6hRAK7QyxPc.m3u8"}, "duration": 219, "id": "6hRAK7QyxPc", "title": "Contested Terrains, Part 2", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn these two videos, we take a close look at an exhibition put on by four artists currently living and working in Africa.\u00a0These artists subvert assumptions about Africa's past and present, exploring the tensions between tradition and modernity. In this part, Kader Attia\u00a0creates a dialogue between Western and African art and theory, while Sammy Baloji creates parallel stories of industrial heritage.", "path": "contested-terrains-2/", "slug": "contested-terrains-2", "kind": "Video", "video_id": "6hRAK7QyxPc", "keywords": "Tate", "youtube_id": "6hRAK7QyxPc", "readable_id": "contested-terrains-2"}, "3Ya7I-oDGU0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Ya7I-oDGU0.mp4/3Ya7I-oDGU0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Ya7I-oDGU0.mp4/3Ya7I-oDGU0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Ya7I-oDGU0.m3u8/3Ya7I-oDGU0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/stereoisomer-enantiomer-jay/", "duration": 328, "id": "3Ya7I-oDGU0", "title": "Stereoisomers, enantiomers, and chirality centers", "format": "mp4", "description": "", "slug": "stereoisomer-enantiomer-jay", "kind": "Video", "video_id": "3Ya7I-oDGU0", "keywords": "", "youtube_id": "3Ya7I-oDGU0", "readable_id": "stereoisomer-enantiomer-jay"}, "z-Qi4w6Xkuc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z-Qi4w6Xkuc.mp4/z-Qi4w6Xkuc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z-Qi4w6Xkuc.mp4/z-Qi4w6Xkuc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z-Qi4w6Xkuc.m3u8/z-Qi4w6Xkuc.m3u8"}, "path": "khan/math/probability/statistical-studies/types-of-studies/types-statistical-studies/", "duration": 592, "id": "z-Qi4w6Xkuc", "title": "Types of statistical studies", "format": "mp4", "description": "", "slug": "types-statistical-studies", "kind": "Video", "video_id": "z-Qi4w6Xkuc", "keywords": "", "youtube_id": "z-Qi4w6Xkuc", "readable_id": "types-statistical-studies"}, "d2TCfex1aFw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d2TCfex1aFw.mp4/d2TCfex1aFw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d2TCfex1aFw.mp4/d2TCfex1aFw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d2TCfex1aFw.m3u8/d2TCfex1aFw.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/zimbardo-prison-study-the-stanford-prison-experiment/", "duration": 422, "id": "d2TCfex1aFw", "title": "Zimbardo prison study The Stanford prison experiment", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "zimbardo-prison-study-the-stanford-prison-experiment", "kind": "Video", "video_id": "d2TCfex1aFw", "keywords": "", "youtube_id": "d2TCfex1aFw", "readable_id": "zimbardo-prison-study-the-stanford-prison-experiment"}, "Zplk5NcBt3c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zplk5NcBt3c.mp4/Zplk5NcBt3c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zplk5NcBt3c.mp4/Zplk5NcBt3c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zplk5NcBt3c.m3u8/Zplk5NcBt3c.m3u8"}, "duration": 698, "id": "Zplk5NcBt3c", "title": "GMAT: Math 22", "format": "mp4", "description": "115-119, pgs. 168-169", "path": "khan/test-prep/gmat/problem-solving/gmat-math-22/", "slug": "gmat-math-22", "kind": "Video", "video_id": "Zplk5NcBt3c", "keywords": "GMAT, Math, problem, solving", "youtube_id": "Zplk5NcBt3c", "readable_id": "gmat-math-22"}, "nVbgByJNLOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nVbgByJNLOo.mp4/nVbgByJNLOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nVbgByJNLOo.mp4/nVbgByJNLOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nVbgByJNLOo.m3u8/nVbgByJNLOo.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/influenza/naming-the-flu-h-something-n-something/", "duration": 594, "id": "nVbgByJNLOo", "title": "Naming the flu: H-something, N-something", "format": "mp4", "description": "We've all heard of H1N1 or H3N2; now you can understand what all of those names mean and find out why they are helpful in keeping track of the different flu virueses! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "naming-the-flu-h-something-n-something", "kind": "Video", "video_id": "nVbgByJNLOo", "keywords": "", "youtube_id": "nVbgByJNLOo", "readable_id": "naming-the-flu-h-something-n-something"}, "PK_JXzYcme0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PK_JXzYcme0.mp4/PK_JXzYcme0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PK_JXzYcme0.mp4/PK_JXzYcme0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PK_JXzYcme0.m3u8/PK_JXzYcme0.m3u8"}, "duration": 755, "id": "PK_JXzYcme0", "title": "Heat of formation", "format": "mp4", "description": "Standard heat of formation or standard enthalpy change of formation.", "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/heat-of-formation/", "slug": "heat-of-formation", "kind": "Video", "video_id": "PK_JXzYcme0", "keywords": "chemistry, enthalpy, heat, formation", "youtube_id": "PK_JXzYcme0", "readable_id": "heat-of-formation"}, "nyZuite17Pc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nyZuite17Pc.mp4/nyZuite17Pc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nyZuite17Pc.mp4/nyZuite17Pc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nyZuite17Pc.m3u8/nyZuite17Pc.m3u8"}, "duration": 579, "id": "nyZuite17Pc", "title": "Distance formula", "format": "mp4", "description": "How to find the distance between lines using the Pythagorean Formula", "path": "khan/math/geometry/analytic-geometry-topic/cc-distances-between-points/distance-formula/", "slug": "distance-formula", "kind": "Video", "video_id": "nyZuite17Pc", "keywords": "Distance, formula, points, pythagorean, CC_8_G_8", "youtube_id": "nyZuite17Pc", "readable_id": "distance-formula"}, "S8s-g7KZR50": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S8s-g7KZR50.mp4/S8s-g7KZR50.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S8s-g7KZR50.mp4/S8s-g7KZR50.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S8s-g7KZR50.m3u8/S8s-g7KZR50.m3u8"}, "duration": 537, "id": "S8s-g7KZR50", "title": "TB and HIV", "format": "mp4", "description": "Two deadly diseases, HIV and TB, can often co-exist in the same patient.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/tb-and-hiv/", "slug": "tb-and-hiv", "kind": "Video", "video_id": "S8s-g7KZR50", "keywords": "", "youtube_id": "S8s-g7KZR50", "readable_id": "tb-and-hiv"}, "VYbqG2NuOo8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VYbqG2NuOo8.mp4/VYbqG2NuOo8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VYbqG2NuOo8.mp4/VYbqG2NuOo8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VYbqG2NuOo8.m3u8/VYbqG2NuOo8.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinatorics_precalc/possible-three-letter-words/", "duration": 339, "id": "VYbqG2NuOo8", "title": "Possible three letter words", "format": "mp4", "description": "", "slug": "possible-three-letter-words", "kind": "Video", "video_id": "VYbqG2NuOo8", "keywords": "", "youtube_id": "VYbqG2NuOo8", "readable_id": "possible-three-letter-words"}, "r2PogGDl8_U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r2PogGDl8_U.mp4/r2PogGDl8_U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r2PogGDl8_U.mp4/r2PogGDl8_U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r2PogGDl8_U.m3u8/r2PogGDl8_U.m3u8"}, "duration": 1015, "id": "r2PogGDl8_U", "title": "Proof of the Cauchy-Schwarz inequality", "format": "mp4", "description": "Proof of the Cauchy-Schwarz Inequality", "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/proof-of-the-cauchy-schwarz-inequality/", "slug": "proof-of-the-cauchy-schwarz-inequality", "kind": "Video", "video_id": "r2PogGDl8_U", "keywords": "cauchy, swarz, vector, dot, product, length, linear, algebra", "youtube_id": "r2PogGDl8_U", "readable_id": "proof-of-the-cauchy-schwarz-inequality"}, "diaHpLIyWAw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/diaHpLIyWAw.mp4/diaHpLIyWAw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/diaHpLIyWAw.mp4/diaHpLIyWAw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/diaHpLIyWAw.m3u8/diaHpLIyWAw.m3u8"}, "duration": 251, "id": "diaHpLIyWAw", "title": "Personal memory versus political history in Eastern Europe", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\n\u201cGoing from one political formation to another is a big, radical change,\u201d says Lithuanian artist Deimantas Narkevicius. Originally trained as a sculptor, Narkevicius soon began working with film, now using it to explore how we interact with memory in the face of ideology and oppression. His films examine the relationship between personal memory and political history, particularly in relation to the profound social changes experienced in Eastern Europe. Employing archival footage, voice-overs, re-enactments and found photographs, Narkevicius's films reinterpret historical events by placing them in different narrative structures, such as memoir, documentary, and drama.\nNarkevicius believes that stories and novels can be \u201cmore authentic\u201d than historical documents. What do you think he means by this? More authentic in what way?\n", "path": "deimantas-narkevicius/", "slug": "deimantas-narkevicius", "kind": "Video", "video_id": "diaHpLIyWAw", "keywords": "Tate", "youtube_id": "diaHpLIyWAw", "readable_id": "deimantas-narkevicius"}, "5HgzsltWwK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5HgzsltWwK8.mp4/5HgzsltWwK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5HgzsltWwK8.mp4/5HgzsltWwK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5HgzsltWwK8.m3u8/5HgzsltWwK8.m3u8"}, "duration": 825, "id": "5HgzsltWwK8", "title": "Free radical reactions", "format": "mp4", "description": "Free Radical Reactions", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/free-radical-reaction-alkanes/free-radical-reactions/", "slug": "free-radical-reactions", "kind": "Video", "video_id": "5HgzsltWwK8", "keywords": "Free, Radical, Reactions, organic, chemistry", "youtube_id": "5HgzsltWwK8", "readable_id": "free-radical-reactions"}, "8OKTrN0uT-Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8OKTrN0uT-Q.mp4/8OKTrN0uT-Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8OKTrN0uT-Q.mp4/8OKTrN0uT-Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8OKTrN0uT-Q.m3u8/8OKTrN0uT-Q.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/comparing-fractions-pre-alg/comparing-fractions-with-greater-than-and-less-than-symbols/", "duration": 319, "id": "8OKTrN0uT-Q", "title": "Comparing fractions with greater than and less than symbols", "format": "mp4", "description": "Shade visual fraction models to compare fractions. \u00a0", "slug": "comparing-fractions-with-greater-than-and-less-than-symbols", "kind": "Video", "video_id": "8OKTrN0uT-Q", "keywords": "", "youtube_id": "8OKTrN0uT-Q", "readable_id": "comparing-fractions-with-greater-than-and-less-than-symbols"}, "vl9o9XEfXtw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vl9o9XEfXtw.mp4/vl9o9XEfXtw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vl9o9XEfXtw.mp4/vl9o9XEfXtw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vl9o9XEfXtw.m3u8/vl9o9XEfXtw.m3u8"}, "path": "khan/math/algebra/quadratics/factoring_quadratics/example-3-solving-a-quadratic-equation-by-factoring/", "duration": 354, "id": "vl9o9XEfXtw", "title": "Dimensions from volume of box", "format": "mp4", "description": "U09_L2_T2_we3 Solving Quadratic Equations by Factoring 3", "slug": "example-3-solving-a-quadratic-equation-by-factoring", "kind": "Video", "video_id": "vl9o9XEfXtw", "keywords": "U09_L2_T2_we3, Solving, Quadratic, Equations, by, Factoring, 3.avi, CC_6_EE_2_c, CC_7_G_6, CC_39336_A-REI_4, CC_39336_A-REI_4_b", "youtube_id": "vl9o9XEfXtw", "readable_id": "example-3-solving-a-quadratic-equation-by-factoring"}, "xvvI_QRYxBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xvvI_QRYxBY.mp4/xvvI_QRYxBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xvvI_QRYxBY.mp4/xvvI_QRYxBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xvvI_QRYxBY.m3u8/xvvI_QRYxBY.m3u8"}, "duration": 525, "id": "xvvI_QRYxBY", "title": "Calculus BC 2008 2 a", "format": "mp4", "description": "2a of 2008 Calculus BC exam (free response)", "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/calculus-bc-2008-2-a/", "slug": "calculus-bc-2008-2-a", "kind": "Video", "video_id": "xvvI_QRYxBY", "keywords": "Calculus, BC, CC_8_F_4, CC_39336_A-REI_10", "youtube_id": "xvvI_QRYxBY", "readable_id": "calculus-bc-2008-2-a"}, "Bgrwohxf9Ws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bgrwohxf9Ws.mp4/Bgrwohxf9Ws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bgrwohxf9Ws.mp4/Bgrwohxf9Ws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bgrwohxf9Ws.m3u8/Bgrwohxf9Ws.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/jacopo-tintoretto-the-origin-of-the-milky-way-c-1575/", "duration": 319, "id": "Bgrwohxf9Ws", "title": "Tintoretto, the Origin of the Milky Way", "format": "mp4", "description": "Jacopo Tintoretto, The Origin of the Milky Way, c. 1575, oil on canvas, 149.4 x 168 cm (The National Gallery, London)", "slug": "jacopo-tintoretto-the-origin-of-the-milky-way-c-1575", "kind": "Video", "video_id": "Bgrwohxf9Ws", "keywords": "Tintoretto, The Origin of the Milky Way, Origin, Myth, Mythology, Milky Way, Venice, Venetian, art, painting, 1575, National Gallery, London, Renaissance, Italian, Mannerism, glazing, Google Art Project, Khan Academy, Smarthistory, OER, art history, Hercules, Hera, Juno, Milk", "youtube_id": "Bgrwohxf9Ws", "readable_id": "jacopo-tintoretto-the-origin-of-the-milky-way-c-1575"}, "nbFXM_SqBrM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nbFXM_SqBrM.mp4/nbFXM_SqBrM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nbFXM_SqBrM.mp4/nbFXM_SqBrM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nbFXM_SqBrM.m3u8/nbFXM_SqBrM.m3u8"}, "duration": 74, "id": "nbFXM_SqBrM", "title": "Scenario 4: Set up peer tutoring", "format": "mp4", "description": "Learn how to use the Skill Progress report\u00a0to identify struggling students and peers that can help tutor them.", "path": "set-up-peer-tutoring/", "slug": "set-up-peer-tutoring", "kind": "Video", "video_id": "nbFXM_SqBrM", "keywords": "", "youtube_id": "nbFXM_SqBrM", "readable_id": "set-up-peer-tutoring"}, "nhSSu0Nzs30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nhSSu0Nzs30.mp4/nhSSu0Nzs30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nhSSu0Nzs30.mp4/nhSSu0Nzs30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nhSSu0Nzs30.m3u8/nhSSu0Nzs30.m3u8"}, "duration": 564, "id": "nhSSu0Nzs30", "title": "Optimal point on budget line", "format": "mp4", "description": "Using indifference curves to think about the point on the budget line that maximizes total utility", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial/optimal-point-on-budget-line/", "slug": "optimal-point-on-budget-line", "kind": "Video", "video_id": "nhSSu0Nzs30", "keywords": "microeconomics", "youtube_id": "nhSSu0Nzs30", "readable_id": "optimal-point-on-budget-line"}, "fp9DZYmiSC4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fp9DZYmiSC4.mp4/fp9DZYmiSC4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fp9DZYmiSC4.mp4/fp9DZYmiSC4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fp9DZYmiSC4.m3u8/fp9DZYmiSC4.m3u8"}, "duration": 667, "id": "fp9DZYmiSC4", "title": "Example: Intersection of sine and cosine", "format": "mp4", "description": "Thinking about where the graphs of sin and cos intersect.", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/we-graphs-of-sine-and-cosine-functions/", "slug": "we-graphs-of-sine-and-cosine-functions", "kind": "Video", "video_id": "fp9DZYmiSC4", "keywords": "sin, cos, sine, cosine, graph, trig", "youtube_id": "fp9DZYmiSC4", "readable_id": "we-graphs-of-sine-and-cosine-functions"}, "VX643tF89ZE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VX643tF89ZE.mp4/VX643tF89ZE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VX643tF89ZE.mp4/VX643tF89ZE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VX643tF89ZE.m3u8/VX643tF89ZE.m3u8"}, "path": "khan/college-admissions/applying-to-college/admissions-essays/ss-admissions-essay-community-impact/", "duration": 59, "id": "VX643tF89ZE", "title": "Student story: Admissions essay about community impact", "format": "mp4", "description": "", "slug": "ss-admissions-essay-community-impact", "kind": "Video", "video_id": "VX643tF89ZE", "keywords": "", "youtube_id": "VX643tF89ZE", "readable_id": "ss-admissions-essay-community-impact"}, "J5iEY4hapMQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J5iEY4hapMQ.mp4/J5iEY4hapMQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J5iEY4hapMQ.mp4/J5iEY4hapMQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J5iEY4hapMQ.m3u8/J5iEY4hapMQ.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/assyrian/ashurbanipal-hunting-lions-assyrian/", "duration": 354, "id": "J5iEY4hapMQ", "title": "Ashurbanipal hunting lions", "format": "mp4", "description": "Ashurbanipal Hunting Lions, gypsum hall relief from the North Palace, Ninevah, c. 645-635 B.C.E., excavated by H. Rassam beginning in 1853 (British Museum)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris\n", "slug": "ashurbanipal-hunting-lions-assyrian", "kind": "Video", "video_id": "J5iEY4hapMQ", "keywords": "assyrian assyria ancient ANE", "youtube_id": "J5iEY4hapMQ", "readable_id": "ashurbanipal-hunting-lions-assyrian"}, "PATkTJhAUhM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PATkTJhAUhM.mp4/PATkTJhAUhM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PATkTJhAUhM.mp4/PATkTJhAUhM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PATkTJhAUhM.m3u8/PATkTJhAUhM.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/tympanum-of-the-last-judgment-autun/", "duration": 631, "id": "PATkTJhAUhM", "title": "Last Judgment Tympanum, Cathedral of St. Lazare, Autun", "format": "mp4", "description": "Last Judgment Tympanum, Central Portal on West facade of the Cathedral of St. Lazare, Autun, c. 1130-46", "slug": "tympanum-of-the-last-judgment-autun", "kind": "Video", "video_id": "PATkTJhAUhM", "keywords": "Autun, Smarthistory, Art History, Khan Academy, Gislebertus, Romanesque, Pilgrimage", "youtube_id": "PATkTJhAUhM", "readable_id": "tympanum-of-the-last-judgment-autun"}, "CYomswUKFuI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CYomswUKFuI.mp4/CYomswUKFuI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CYomswUKFuI.mp4/CYomswUKFuI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CYomswUKFuI.m3u8/CYomswUKFuI.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/creation-complex-elements/bhp-stars-galaxies-crashcourse/", "duration": 848, "id": "CYomswUKFuI", "title": "Crash Course Big History: Stars & Galaxies", "format": "mp4", "description": "The guys at CrashCourse explain the process by which stars are formed and explode, in their own unique style.", "slug": "bhp-stars-galaxies-crashcourse", "kind": "Video", "video_id": "CYomswUKFuI", "keywords": "", "youtube_id": "CYomswUKFuI", "readable_id": "bhp-stars-galaxies-crashcourse"}, "920PtNX-WCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/920PtNX-WCE.mp4/920PtNX-WCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/920PtNX-WCE.mp4/920PtNX-WCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/920PtNX-WCE.m3u8/920PtNX-WCE.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/permeability-and-membrane-potentials/", "duration": 762, "id": "920PtNX-WCE", "title": "Permeability and membrane potentials", "format": "mp4", "description": "Find out why a cell that is permeable to multiple ions has a membrane potential that is influenced by the ion with the highest permeability. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "permeability-and-membrane-potentials", "kind": "Video", "video_id": "920PtNX-WCE", "keywords": "", "youtube_id": "920PtNX-WCE", "readable_id": "permeability-and-membrane-potentials"}, "gLHUCUv1e5Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gLHUCUv1e5Y.mp4/gLHUCUv1e5Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gLHUCUv1e5Y.mp4/gLHUCUv1e5Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gLHUCUv1e5Y.m3u8/gLHUCUv1e5Y.m3u8"}, "duration": 389, "id": "gLHUCUv1e5Y", "title": "Social security intro", "format": "mp4", "description": "Basics on how social security works", "path": "khan/humanities/history/american-civics/american-civics/social-security-intro/", "slug": "social-security-intro", "kind": "Video", "video_id": "gLHUCUv1e5Y", "keywords": "united, states, debt, deficit, budget, OASDI, trust", "youtube_id": "gLHUCUv1e5Y", "readable_id": "social-security-intro"}, "5-MM39VCwc0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5-MM39VCwc0.mp4/5-MM39VCwc0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5-MM39VCwc0.mp4/5-MM39VCwc0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5-MM39VCwc0.m3u8/5-MM39VCwc0.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/oxidation-reduction-review/formal-charge-on-nitrogen/", "duration": 545, "id": "5-MM39VCwc0", "title": "Formal charge on nitrogen", "format": "mp4", "description": "How to calculate the formal charge on nitrogen", "slug": "formal-charge-on-nitrogen", "kind": "Video", "video_id": "5-MM39VCwc0", "keywords": "", "youtube_id": "5-MM39VCwc0", "readable_id": "formal-charge-on-nitrogen"}, "9ylUcCOTH8Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9ylUcCOTH8Y.mp4/9ylUcCOTH8Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9ylUcCOTH8Y.mp4/9ylUcCOTH8Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9ylUcCOTH8Y.m3u8/9ylUcCOTH8Y.m3u8"}, "duration": 479, "id": "9ylUcCOTH8Y", "title": "Unit vector notation", "format": "mp4", "description": "", "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/intro-unit-vector-notation/", "slug": "intro-unit-vector-notation", "kind": "Video", "video_id": "9ylUcCOTH8Y", "keywords": "", "youtube_id": "9ylUcCOTH8Y", "readable_id": "intro-unit-vector-notation"}, "-bX9cFGKm1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-bX9cFGKm1o.mp4/-bX9cFGKm1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-bX9cFGKm1o.mp4/-bX9cFGKm1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-bX9cFGKm1o.m3u8/-bX9cFGKm1o.m3u8"}, "duration": 80, "id": "-bX9cFGKm1o", "title": "Conservation | Ren\u00e9 Magritte, \"The False Mirror,\" 1928", "format": "mp4", "description": "For more information please visit http://www.moma.org/magritte", "path": "magritte-false-mirror/", "slug": "magritte-false-mirror", "kind": "Video", "video_id": "-bX9cFGKm1o", "keywords": "", "youtube_id": "-bX9cFGKm1o", "readable_id": "magritte-false-mirror"}, "E444KhRcWSk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E444KhRcWSk.mp4/E444KhRcWSk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E444KhRcWSk.mp4/E444KhRcWSk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E444KhRcWSk.m3u8/E444KhRcWSk.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/separable-equations/particular-solution-to-differential-equation-example/", "duration": 338, "id": "E444KhRcWSk", "title": "Particular solution to differential equation example", "format": "mp4", "description": "", "slug": "particular-solution-to-differential-equation-example", "kind": "Video", "video_id": "E444KhRcWSk", "keywords": "", "youtube_id": "E444KhRcWSk", "readable_id": "particular-solution-to-differential-equation-example"}, "utQi1ZhF__Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/utQi1ZhF__Q.mp4/utQi1ZhF__Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/utQi1ZhF__Q.mp4/utQi1ZhF__Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/utQi1ZhF__Q.m3u8/utQi1ZhF__Q.m3u8"}, "duration": 481, "id": "utQi1ZhF__Q", "title": "Exact equations example 2", "format": "mp4", "description": "Some more exact equation examples", "path": "khan/math/differential-equations/first-order-differential-equations/exact-equations/exact-equations-example-2/", "slug": "exact-equations-example-2", "kind": "Video", "video_id": "utQi1ZhF__Q", "keywords": "exact, differential, equations", "youtube_id": "utQi1ZhF__Q", "readable_id": "exact-equations-example-2"}, "XUvKjC21fYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XUvKjC21fYU.mp4/XUvKjC21fYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XUvKjC21fYU.mp4/XUvKjC21fYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XUvKjC21fYU.m3u8/XUvKjC21fYU.m3u8"}, "duration": 299, "id": "XUvKjC21fYU", "title": "Example 3: Using the quadratic formula", "format": "mp4", "description": "Quadratic Formula 3", "path": "khan/math/algebra/quadratics/quadratic-formula/quadratic-formula-3/", "slug": "quadratic-formula-3", "kind": "Video", "video_id": "XUvKjC21fYU", "keywords": "U10_L1_T3_we3, Quadratic, Formula, CC_39336_A-REI_4, CC_39336_A-SSE_3_a", "youtube_id": "XUvKjC21fYU", "readable_id": "quadratic-formula-3"}, "JDMkWZQjaE8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JDMkWZQjaE8.mp4/JDMkWZQjaE8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JDMkWZQjaE8.mp4/JDMkWZQjaE8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JDMkWZQjaE8.m3u8/JDMkWZQjaE8.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/impression-management/", "duration": 248, "id": "JDMkWZQjaE8", "title": "Impression management", "format": "mp4", "description": "", "slug": "impression-management", "kind": "Video", "video_id": "JDMkWZQjaE8", "keywords": "", "youtube_id": "JDMkWZQjaE8", "readable_id": "impression-management"}, "5u2pDR634Fw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5u2pDR634Fw.mp4/5u2pDR634Fw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5u2pDR634Fw.mp4/5u2pDR634Fw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5u2pDR634Fw.m3u8/5u2pDR634Fw.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/chronic-leukemia/", "duration": 483, "id": "5u2pDR634Fw", "title": "Chronic leukemia", "format": "mp4", "description": "Chronic leukemias affect specialized blood cells that are partially through the process of maturation. Chronic lymphoblastic leukemias (CLL) often cause an enlargement of the liver and spleen. Involvement of the lymph nodes in CLL is often called small lymphocytic lymphoma. Learn how small lymphocytic lymphoma can transition to diffuse B cell lymphoma.", "slug": "chronic-leukemia", "kind": "Video", "video_id": "5u2pDR634Fw", "keywords": "", "youtube_id": "5u2pDR634Fw", "readable_id": "chronic-leukemia"}, "JjtzMQDdyuM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JjtzMQDdyuM.mp4/JjtzMQDdyuM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JjtzMQDdyuM.mp4/JjtzMQDdyuM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JjtzMQDdyuM.m3u8/JjtzMQDdyuM.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/cis-trans-isomerism/", "duration": 324, "id": "JjtzMQDdyuM", "title": "Cis-trans isomerism", "format": "mp4", "description": "How to assign cis-trans terminology to double bonds", "slug": "cis-trans-isomerism", "kind": "Video", "video_id": "JjtzMQDdyuM", "keywords": "", "youtube_id": "JjtzMQDdyuM", "readable_id": "cis-trans-isomerism"}, "1h-EUy0Bybg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1h-EUy0Bybg.mp4/1h-EUy0Bybg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1h-EUy0Bybg.mp4/1h-EUy0Bybg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1h-EUy0Bybg.m3u8/1h-EUy0Bybg.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/total-videos-rented/", "duration": 213, "id": "1h-EUy0Bybg", "title": "8 Total videos rented", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "total-videos-rented", "kind": "Video", "video_id": "1h-EUy0Bybg", "keywords": "", "youtube_id": "1h-EUy0Bybg", "readable_id": "total-videos-rented"}, "Tm98lnrlbMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tm98lnrlbMA.mp4/Tm98lnrlbMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tm98lnrlbMA.mp4/Tm98lnrlbMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tm98lnrlbMA.m3u8/Tm98lnrlbMA.m3u8"}, "duration": 184, "id": "Tm98lnrlbMA", "title": "Why all the letters in algebra?", "format": "mp4", "description": "Jesse Roe and Sal Khan talk about why we use letters in algebra", "path": "khan/math/algebra/introduction-to-algebra/overview_hist_alg/why-all-the-letters-in-algebra/", "slug": "why-all-the-letters-in-algebra", "kind": "Video", "video_id": "Tm98lnrlbMA", "keywords": "", "youtube_id": "Tm98lnrlbMA", "readable_id": "why-all-the-letters-in-algebra"}, "2RnS3fSHVV8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2RnS3fSHVV8.mp4/2RnS3fSHVV8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2RnS3fSHVV8.mp4/2RnS3fSHVV8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2RnS3fSHVV8.m3u8/2RnS3fSHVV8.m3u8"}, "duration": 795, "id": "2RnS3fSHVV8", "title": "Rational inequalities 2", "format": "mp4", "description": "Slightly harder rational inequality problem", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/rational-inequalities-2/", "slug": "rational-inequalities-2", "kind": "Video", "video_id": "2RnS3fSHVV8", "keywords": "algebra, rational, inequality", "youtube_id": "2RnS3fSHVV8", "readable_id": "rational-inequalities-2"}, "DPuK6ZgBGmE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DPuK6ZgBGmE.mp4/DPuK6ZgBGmE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DPuK6ZgBGmE.mp4/DPuK6ZgBGmE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DPuK6ZgBGmE.m3u8/DPuK6ZgBGmE.m3u8"}, "duration": 382, "id": "DPuK6ZgBGmE", "title": "Mean absolute deviation example", "format": "mp4", "description": "", "path": "mean-absolute-deviation-example/", "slug": "mean-absolute-deviation-example", "kind": "Video", "video_id": "DPuK6ZgBGmE", "keywords": "", "youtube_id": "DPuK6ZgBGmE", "readable_id": "mean-absolute-deviation-example"}, "eytyVWA5ZQs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eytyVWA5ZQs.mp4/eytyVWA5ZQs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eytyVWA5ZQs.mp4/eytyVWA5ZQs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eytyVWA5ZQs.m3u8/eytyVWA5ZQs.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/proving-the-chain-rule/differentiability-implies-continuity/", "duration": 700, "id": "eytyVWA5ZQs", "title": "Differentiability implies continuity", "format": "mp4", "description": "Differentiability implies continuity", "slug": "differentiability-implies-continuity", "kind": "Video", "video_id": "eytyVWA5ZQs", "keywords": "", "youtube_id": "eytyVWA5ZQs", "readable_id": "differentiability-implies-continuity"}, "bvcXEJbEzSs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bvcXEJbEzSs.mp4/bvcXEJbEzSs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bvcXEJbEzSs.mp4/bvcXEJbEzSs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bvcXEJbEzSs.m3u8/bvcXEJbEzSs.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/alternate-number-bases/large-number-decimal-to-binary/", "duration": 252, "id": "bvcXEJbEzSs", "title": "Converting larger number from decimal to binary", "format": "mp4", "description": "", "slug": "large-number-decimal-to-binary", "kind": "Video", "video_id": "bvcXEJbEzSs", "keywords": "", "youtube_id": "bvcXEJbEzSs", "readable_id": "large-number-decimal-to-binary"}, "feNWZEln6Nc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/feNWZEln6Nc.mp4/feNWZEln6Nc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/feNWZEln6Nc.mp4/feNWZEln6Nc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/feNWZEln6Nc.m3u8/feNWZEln6Nc.m3u8"}, "duration": 229, "id": "feNWZEln6Nc", "title": "Volume through decomposition", "format": "mp4", "description": "Find the volume of an irregular 3D figure by dividing the figure into two rectangular prisms and finding the volume of each part.", "path": "volume-through-decomposition/", "slug": "volume-through-decomposition", "kind": "Video", "video_id": "feNWZEln6Nc", "keywords": "", "youtube_id": "feNWZEln6Nc", "readable_id": "volume-through-decomposition"}, "--VYlmbkzNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/--VYlmbkzNY.mp4/--VYlmbkzNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/--VYlmbkzNY.mp4/--VYlmbkzNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/--VYlmbkzNY.m3u8/--VYlmbkzNY.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/piketty-spreadsheet-1/", "duration": 466, "id": "--VYlmbkzNY", "title": "Simple model to understand r and g relationship", "format": "mp4", "description": "", "slug": "piketty-spreadsheet-1", "kind": "Video", "video_id": "--VYlmbkzNY", "keywords": "", "youtube_id": "--VYlmbkzNY", "readable_id": "piketty-spreadsheet-1"}, "m9h7Vt8ZjqE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m9h7Vt8ZjqE.mp4/m9h7Vt8ZjqE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m9h7Vt8ZjqE.mp4/m9h7Vt8ZjqE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m9h7Vt8ZjqE.m3u8/m9h7Vt8ZjqE.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/beethoven-fifth-symphony/gerard-schwarz-gives-a-conducting-lesson-beethoven-5th-part-1/", "duration": 1441, "id": "m9h7Vt8ZjqE", "title": "Ludwig van Beethoven: Symphony No. 5, a conducting lesson by Gerard Schwarz (1st Movement)", "format": "mp4", "description": "Watch the full performance here (starting at 10:40)", "slug": "gerard-schwarz-gives-a-conducting-lesson-beethoven-5th-part-1", "kind": "Video", "video_id": "m9h7Vt8ZjqE", "keywords": "", "youtube_id": "m9h7Vt8ZjqE", "readable_id": "gerard-schwarz-gives-a-conducting-lesson-beethoven-5th-part-1"}, "cGrqnKiOUio": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cGrqnKiOUio.mp4/cGrqnKiOUio.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cGrqnKiOUio.mp4/cGrqnKiOUio.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cGrqnKiOUio.m3u8/cGrqnKiOUio.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/telomeres-and-single-copy-dna-vs-repetitive-dna/", "duration": 334, "id": "cGrqnKiOUio", "title": "Telomeres and single copy DNA vs repetitive DNA", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "telomeres-and-single-copy-dna-vs-repetitive-dna", "kind": "Video", "video_id": "cGrqnKiOUio", "keywords": "", "youtube_id": "cGrqnKiOUio", "readable_id": "telomeres-and-single-copy-dna-vs-repetitive-dna"}, "N4kDzoQOngY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N4kDzoQOngY.mp4/N4kDzoQOngY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N4kDzoQOngY.mp4/N4kDzoQOngY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N4kDzoQOngY.m3u8/N4kDzoQOngY.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-word-probs-pre-alg/solving-percent-problems-2/", "duration": 277, "id": "N4kDzoQOngY", "title": "Percent word problem example 4", "format": "mp4", "description": "This word problem is expressed simply which can be confusing to some. Take your time and focus on the what is being asked for.", "slug": "solving-percent-problems-2", "kind": "Video", "video_id": "N4kDzoQOngY", "keywords": "U05_L2_T1_we2, Solving, Percent, Problems, CC_6_RP_3_c", "youtube_id": "N4kDzoQOngY", "readable_id": "solving-percent-problems-2"}, "9GPuoukU8fM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9GPuoukU8fM.mp4/9GPuoukU8fM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9GPuoukU8fM.mp4/9GPuoukU8fM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9GPuoukU8fM.m3u8/9GPuoukU8fM.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/symmetric-and-asymmetric-stretching/", "duration": 662, "id": "9GPuoukU8fM", "title": "Symmetric and asymmetric stretching", "format": "mp4", "description": "", "slug": "symmetric-and-asymmetric-stretching", "kind": "Video", "video_id": "9GPuoukU8fM", "keywords": "", "youtube_id": "9GPuoukU8fM", "readable_id": "symmetric-and-asymmetric-stretching"}, "AGXgGfA4PHA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AGXgGfA4PHA.mp4/AGXgGfA4PHA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AGXgGfA4PHA.mp4/AGXgGfA4PHA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AGXgGfA4PHA.m3u8/AGXgGfA4PHA.m3u8"}, "duration": 234, "id": "AGXgGfA4PHA", "title": "Gabriel Byrne revisiting \"The Quiet Man\"", "format": "mp4", "description": "Gabriel Byrne on the idea of looking at the story of Ireland and Irish America on film. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-byrne-revisiting-the-quiet-man/", "slug": "moma-byrne-revisiting-the-quiet-man", "kind": "Video", "video_id": "AGXgGfA4PHA", "keywords": "", "youtube_id": "AGXgGfA4PHA", "readable_id": "moma-byrne-revisiting-the-quiet-man"}, "OgxsswJEZ7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OgxsswJEZ7k.mp4/OgxsswJEZ7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OgxsswJEZ7k.mp4/OgxsswJEZ7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OgxsswJEZ7k.m3u8/OgxsswJEZ7k.m3u8"}, "duration": 597, "id": "OgxsswJEZ7k", "title": "GMAT: Math 34", "format": "mp4", "description": "173-176, pgs. 175-176", "path": "khan/test-prep/gmat/problem-solving/gmat-math-34/", "slug": "gmat-math-34", "kind": "Video", "video_id": "OgxsswJEZ7k", "keywords": "GMAT, Math, problem, solving", "youtube_id": "OgxsswJEZ7k", "readable_id": "gmat-math-34"}, "Y1V5mZaMfTk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y1V5mZaMfTk.mp4/Y1V5mZaMfTk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y1V5mZaMfTk.mp4/Y1V5mZaMfTk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y1V5mZaMfTk.m3u8/Y1V5mZaMfTk.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/converting-fractions-to-decimals-example/", "duration": 137, "id": "Y1V5mZaMfTk", "title": "Fraction to decimal", "format": "mp4", "description": "Converting fractions to decimals sometimes requires us to brush up on our long division skills. We'll walk you through it.", "slug": "converting-fractions-to-decimals-example", "kind": "Video", "video_id": "Y1V5mZaMfTk", "keywords": "u03_l1_t1_we4, Converting, Fractions, to, Decimals", "youtube_id": "Y1V5mZaMfTk", "readable_id": "converting-fractions-to-decimals-example"}, "7sQCcGlK2bY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7sQCcGlK2bY.mp4/7sQCcGlK2bY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7sQCcGlK2bY.mp4/7sQCcGlK2bY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7sQCcGlK2bY.m3u8/7sQCcGlK2bY.m3u8"}, "duration": 645, "id": "7sQCcGlK2bY", "title": "Example of calculating a surface integral part 1", "format": "mp4", "description": "Example of calculating a surface integral part 1", "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/example-of-calculating-a-surface-integral-part-1/", "slug": "example-of-calculating-a-surface-integral-part-1", "kind": "Video", "video_id": "7sQCcGlK2bY", "keywords": "surface, integral", "youtube_id": "7sQCcGlK2bY", "readable_id": "example-of-calculating-a-surface-integral-part-1"}, "CbeCE1HoGfA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CbeCE1HoGfA.mp4/CbeCE1HoGfA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CbeCE1HoGfA.mp4/CbeCE1HoGfA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CbeCE1HoGfA.m3u8/CbeCE1HoGfA.m3u8"}, "path": "khan/science/physics/torque-angular-momentum/torque-tutorial/constant-angular-momentum-when-no-net-torque/", "duration": 356, "id": "CbeCE1HoGfA", "title": "Constant angular momentum when no net torque", "format": "mp4", "description": "", "slug": "constant-angular-momentum-when-no-net-torque", "kind": "Video", "video_id": "CbeCE1HoGfA", "keywords": "", "youtube_id": "CbeCE1HoGfA", "readable_id": "constant-angular-momentum-when-no-net-torque"}, "sxnX5_LbBDU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sxnX5_LbBDU.mp4/sxnX5_LbBDU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sxnX5_LbBDU.mp4/sxnX5_LbBDU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sxnX5_LbBDU.m3u8/sxnX5_LbBDU.m3u8"}, "duration": 617, "id": "sxnX5_LbBDU", "title": "The Gauss Christmath Special", "format": "mp4", "description": "Christmas ain't over yet. The 12th day is Jan. 6th!\n\nYou can get just the song here: http://vihart.com/music/gauss12days.mp3\n\nhttp://vihart.com", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/the-gauss-christmath-special/", "slug": "the-gauss-christmath-special", "kind": "Video", "video_id": "sxnX5_LbBDU", "keywords": "math, gauss, triangles, mathematics, triangular numbers, vihart, christmas, 12 days, math class, doodling", "youtube_id": "sxnX5_LbBDU", "readable_id": "the-gauss-christmath-special"}, "G0fH6blRMHI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G0fH6blRMHI.mp4/G0fH6blRMHI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G0fH6blRMHI.mp4/G0fH6blRMHI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G0fH6blRMHI.m3u8/G0fH6blRMHI.m3u8"}, "duration": 489, "id": "G0fH6blRMHI", "title": "System of inequalities application", "format": "mp4", "description": "System of Inequalities Application", "path": "khan/math/algebra/systems-of-eq-and-ineq/system-of-inequalities/system-of-inequalities-application/", "slug": "system-of-inequalities-application", "kind": "Video", "video_id": "G0fH6blRMHI", "keywords": "u14_l1_t2_we3, System, of, Inequalities, Application, CC_39336_A-CED_3, CC_39336_A-REI_12", "youtube_id": "G0fH6blRMHI", "readable_id": "system-of-inequalities-application"}, "y19jYxzY8Y8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y19jYxzY8Y8.mp4/y19jYxzY8Y8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y19jYxzY8Y8.mp4/y19jYxzY8Y8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y19jYxzY8Y8.m3u8/y19jYxzY8Y8.m3u8"}, "duration": 554, "id": "y19jYxzY8Y8", "title": "Quadratic equation part 2", "format": "mp4", "description": "2 more examples of solving equations using the quadratic equation", "path": "khan/math/algebra/quadratics/quadratic_odds_ends/quadratic-equation-part-2/", "slug": "quadratic-equation-part-2", "kind": "Video", "video_id": "y19jYxzY8Y8", "keywords": "algebra, quadratic, equation, CC_39336_A-REI_4, CC_39336_A-REI_4_b", "youtube_id": "y19jYxzY8Y8", "readable_id": "quadratic-equation-part-2"}, "NeujZgfq7hA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NeujZgfq7hA.mp4/NeujZgfq7hA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NeujZgfq7hA.mp4/NeujZgfq7hA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NeujZgfq7hA.m3u8/NeujZgfq7hA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/beginners-guide-greece/long-jump/", "duration": 85, "id": "NeujZgfq7hA", "title": "A competitor in the long jump", "format": "mp4", "description": "The long jump was the only type of jumping contest in the ancient Olympics. It differed vitally from our long jump in that athletes used pairs of weights or halteres, swung forward on take-off and back just before landing, probably as a handicap.\n\u00a9 Trustees of the British Museum\n", "slug": "long-jump", "kind": "Video", "video_id": "NeujZgfq7hA", "keywords": "olympics, ancient greece,", "youtube_id": "NeujZgfq7hA", "readable_id": "long-jump"}, "JBWdbzzYbtU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JBWdbzzYbtU.mp4/JBWdbzzYbtU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JBWdbzzYbtU.mp4/JBWdbzzYbtU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JBWdbzzYbtU.m3u8/JBWdbzzYbtU.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-12-treasuries-government-debt/", "duration": 678, "id": "JBWdbzzYbtU", "title": "Banking 12: Treasuries (government debt)", "format": "mp4", "description": "Introduction to government debt and treasuries. What it means when we say that Federal Reserve Notes are issued by the Reserve bank but are an obligation of the Government.", "slug": "banking-12-treasuries-government-debt", "kind": "Video", "video_id": "JBWdbzzYbtU", "keywords": "treasury, federal, reserve, notes, banks", "youtube_id": "JBWdbzzYbtU", "readable_id": "banking-12-treasuries-government-debt"}, "rhxDfbIjRNk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rhxDfbIjRNk.mp4/rhxDfbIjRNk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rhxDfbIjRNk.mp4/rhxDfbIjRNk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rhxDfbIjRNk.m3u8/rhxDfbIjRNk.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-may-4-2/", "duration": 72, "id": "rhxDfbIjRNk", "title": "2 Distance from origin", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-may-4-2", "kind": "Video", "video_id": "rhxDfbIjRNk", "keywords": "", "youtube_id": "rhxDfbIjRNk", "readable_id": "sat-may-4-2"}, "CPIS3JBcE2s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CPIS3JBcE2s.mp4/CPIS3JBcE2s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CPIS3JBcE2s.mp4/CPIS3JBcE2s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CPIS3JBcE2s.m3u8/CPIS3JBcE2s.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2010-may-4-9/", "duration": 144, "id": "CPIS3JBcE2s", "title": "9 Calculating hourly rate", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-9", "kind": "Video", "video_id": "CPIS3JBcE2s", "keywords": "", "youtube_id": "CPIS3JBcE2s", "readable_id": "sat-2010-may-4-9"}, "gbpc_JBG1F0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gbpc_JBG1F0.mp4/gbpc_JBG1F0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gbpc_JBG1F0.mp4/gbpc_JBG1F0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gbpc_JBG1F0.m3u8/gbpc_JBG1F0.m3u8"}, "duration": 624, "id": "gbpc_JBG1F0", "title": "Weak acid titration", "format": "mp4", "description": "Equivalence point when titrating a weak acid", "path": "khan/science/chemistry/acid-base-equilibrium/titrations/weak-acid-titration/", "slug": "weak-acid-titration", "kind": "Video", "video_id": "gbpc_JBG1F0", "keywords": "chemistry, titration, equivalence", "youtube_id": "gbpc_JBG1F0", "readable_id": "weak-acid-titration"}, "e523Snw21Hk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e523Snw21Hk.mp4/e523Snw21Hk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e523Snw21Hk.mp4/e523Snw21Hk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e523Snw21Hk.m3u8/e523Snw21Hk.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/meschac-gaba/", "duration": 280, "id": "e523Snw21Hk", "title": "Meschac Gaba", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nDrawing his greatest inspiration from his hometown of Cotonou, Benin, artist Meschac Gaba uses the city as his workspace and presentation site. Take a look as Gaba parades his work through the street, encouraging passersby to engage with his art, questioning what contemporary African art is and where it dwells. Find out what the artist means when he says, \"The Africa I come from, a lot of people don't know this Africa.\"", "slug": "meschac-gaba", "kind": "Video", "video_id": "e523Snw21Hk", "keywords": "Tate", "youtube_id": "e523Snw21Hk", "readable_id": "meschac-gaba"}, "iX7ivCww2ws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iX7ivCww2ws.mp4/iX7ivCww2ws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iX7ivCww2ws.mp4/iX7ivCww2ws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iX7ivCww2ws.m3u8/iX7ivCww2ws.m3u8"}, "duration": 526, "id": "iX7ivCww2ws", "title": "Radical expressions with higher roots", "format": "mp4", "description": "Radical Expressions with Higher Roots", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/radical-expressions-with-higher-roots/", "slug": "radical-expressions-with-higher-roots", "kind": "Video", "video_id": "iX7ivCww2ws", "keywords": "Radical, Expressions, with, Higher, Roots", "youtube_id": "iX7ivCww2ws", "readable_id": "radical-expressions-with-higher-roots"}, "5ZGCqKAl_CA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5ZGCqKAl_CA.mp4/5ZGCqKAl_CA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5ZGCqKAl_CA.mp4/5ZGCqKAl_CA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5ZGCqKAl_CA.m3u8/5ZGCqKAl_CA.m3u8"}, "duration": 660, "id": "5ZGCqKAl_CA", "title": "Evaluating integral for shell method example", "format": "mp4", "description": "Evaluating the definite integral set up using the shell method", "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/evaluating-integral-for-shell-method-example/", "slug": "evaluating-integral-for-shell-method-example", "kind": "Video", "video_id": "5ZGCqKAl_CA", "keywords": "", "youtube_id": "5ZGCqKAl_CA", "readable_id": "evaluating-integral-for-shell-method-example"}, "zGpbSGj_vfE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zGpbSGj_vfE.mp4/zGpbSGj_vfE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zGpbSGj_vfE.mp4/zGpbSGj_vfE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zGpbSGj_vfE.m3u8/zGpbSGj_vfE.m3u8"}, "duration": 571, "id": "zGpbSGj_vfE", "title": "Polar coordinates 2", "format": "mp4", "description": "Conversion from Cartesian to Polar Coordinates", "path": "khan/math/precalculus/parametric_equations/polar_coor/polar-coordinates-2/", "slug": "polar-coordinates-2", "kind": "Video", "video_id": "zGpbSGj_vfE", "keywords": "cartesian, polar, coordinates, CC_8_G_8", "youtube_id": "zGpbSGj_vfE", "readable_id": "polar-coordinates-2"}, "M5uOIy-JTmo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M5uOIy-JTmo.mp4/M5uOIy-JTmo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M5uOIy-JTmo.mp4/M5uOIy-JTmo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M5uOIy-JTmo.m3u8/M5uOIy-JTmo.m3u8"}, "duration": 924, "id": "M5uOIy-JTmo", "title": "Pv-diagrams and expansion work", "format": "mp4", "description": "Why work from expansion is the area under the curve of a PV-diagram", "path": "khan/science/chemistry/thermodynamics-chemistry/internal-energy-sal/pv-diagrams-and-expansion-work/", "slug": "pv-diagrams-and-expansion-work", "kind": "Video", "video_id": "M5uOIy-JTmo", "keywords": "thermodynamics, heat, work, internal, energy", "youtube_id": "M5uOIy-JTmo", "readable_id": "pv-diagrams-and-expansion-work"}, "nM-O8llUdwg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nM-O8llUdwg.mp4/nM-O8llUdwg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nM-O8llUdwg.mp4/nM-O8llUdwg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nM-O8llUdwg.m3u8/nM-O8llUdwg.m3u8"}, "duration": 72, "id": "nM-O8llUdwg", "title": "Constructing a perpendicular line using a compass and straightedge", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/geo-bisectors/constructing-a-perpendicular-line-using-a-compass-and-straightedge/", "slug": "constructing-a-perpendicular-line-using-a-compass-and-straightedge", "kind": "Video", "video_id": "nM-O8llUdwg", "keywords": "", "youtube_id": "nM-O8llUdwg", "readable_id": "constructing-a-perpendicular-line-using-a-compass-and-straightedge"}, "632MAqIB14E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/632MAqIB14E.mp4/632MAqIB14E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/632MAqIB14E.mp4/632MAqIB14E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/632MAqIB14E.m3u8/632MAqIB14E.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/formation-of-hydrates/", "duration": 447, "id": "632MAqIB14E", "title": "Formation of hydrates", "format": "mp4", "description": "", "slug": "formation-of-hydrates", "kind": "Video", "video_id": "632MAqIB14E", "keywords": "", "youtube_id": "632MAqIB14E", "readable_id": "formation-of-hydrates"}, "D2Ks5SKU6GM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D2Ks5SKU6GM.mp4/D2Ks5SKU6GM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D2Ks5SKU6GM.mp4/D2Ks5SKU6GM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D2Ks5SKU6GM.m3u8/D2Ks5SKU6GM.m3u8"}, "path": "khan/math/pre-algebra/measurement/rectangle-area-perimeter-word-pr/comparing-area/", "duration": 141, "id": "D2Ks5SKU6GM", "title": "Area and perimeter word problem: comparing areas of rectangles", "format": "mp4", "description": "We know the length and width of two rectangles. Guess what? We can compare the areas!", "slug": "comparing-area", "kind": "Video", "video_id": "D2Ks5SKU6GM", "keywords": "", "youtube_id": "D2Ks5SKU6GM", "readable_id": "comparing-area"}, "jq6WFvMikBQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jq6WFvMikBQ.mp4/jq6WFvMikBQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jq6WFvMikBQ.mp4/jq6WFvMikBQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jq6WFvMikBQ.m3u8/jq6WFvMikBQ.m3u8"}, "duration": 239, "id": "jq6WFvMikBQ", "title": "Dilating one line onto another", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/dilations-scaling/dilating-one-line-onto-another/", "slug": "dilating-one-line-onto-another", "kind": "Video", "video_id": "jq6WFvMikBQ", "keywords": "", "youtube_id": "jq6WFvMikBQ", "readable_id": "dilating-one-line-onto-another"}, "mCKeogDioWE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mCKeogDioWE.mp4/mCKeogDioWE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mCKeogDioWE.mp4/mCKeogDioWE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mCKeogDioWE.m3u8/mCKeogDioWE.m3u8"}, "duration": 115, "id": "mCKeogDioWE", "title": "How did all dinosaurs except birds go extinct?", "format": "mp4", "description": "The extinction of non-avian dinosaurs except birds at the end of the Cretaceous has intrigued paleontologists for more than a century. One theory is that an asteroid impact 65 million years ago off the coast of Mexico generated massive tsunamis, with impact debris cutting off sunlight for months, stopping photosynthesis and causing freezing temperatures. Chemical reactions in the atmosphere caused acid rain and long-term global warming, all of which extinguished non-avian dinosaurs. However, at the same time, massive lava flows erupted across what is now southwest India. The eruptions probably caused many of the same effects as the asteroid impact. Although most scientists believe that the impact was the final blow for non-avian dinosaurs, both events could well have played a role.", "path": "how-did-dinosaurs-go-extinct/", "slug": "how-did-dinosaurs-go-extinct", "kind": "Video", "video_id": "mCKeogDioWE", "keywords": "", "youtube_id": "mCKeogDioWE", "readable_id": "how-did-dinosaurs-go-extinct"}, "mcQQGGShmLs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mcQQGGShmLs.mp4/mcQQGGShmLs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mcQQGGShmLs.mp4/mcQQGGShmLs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mcQQGGShmLs.m3u8/mcQQGGShmLs.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-the-renal-system/meet-the-kidneys/", "duration": 384, "id": "mcQQGGShmLs", "title": "Meet the kidneys!", "format": "mp4", "description": "", "slug": "meet-the-kidneys", "kind": "Video", "video_id": "mcQQGGShmLs", "keywords": "", "youtube_id": "mcQQGGShmLs", "readable_id": "meet-the-kidneys"}, "9k97m8oWnaY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9k97m8oWnaY.mp4/9k97m8oWnaY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9k97m8oWnaY.mp4/9k97m8oWnaY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9k97m8oWnaY.m3u8/9k97m8oWnaY.m3u8"}, "duration": 1334, "id": "9k97m8oWnaY", "title": "Introduction to the surface integral", "format": "mp4", "description": "Introduction to the surface integral", "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/introduction-to-the-surface-integral/", "slug": "introduction-to-the-surface-integral", "kind": "Video", "video_id": "9k97m8oWnaY", "keywords": "vector, calculus, surface, integral", "youtube_id": "9k97m8oWnaY", "readable_id": "introduction-to-the-surface-integral"}, "gPbN26bYyN8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gPbN26bYyN8.mp4/gPbN26bYyN8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gPbN26bYyN8.mp4/gPbN26bYyN8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gPbN26bYyN8.m3u8/gPbN26bYyN8.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/add-and-subtract-fracs-pre-alg/adding-fractions-word-problem-2/", "duration": 149, "id": "gPbN26bYyN8", "title": "Word problem: How long is this lizard?", "format": "mp4", "description": "Add the fractions to find out how long this lizard is.", "slug": "adding-fractions-word-problem-2", "kind": "Video", "video_id": "gPbN26bYyN8", "keywords": "", "youtube_id": "gPbN26bYyN8", "readable_id": "adding-fractions-word-problem-2"}, "77KwjG79Dxw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/77KwjG79Dxw.mp4/77KwjG79Dxw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/77KwjG79Dxw.mp4/77KwjG79Dxw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/77KwjG79Dxw.m3u8/77KwjG79Dxw.m3u8"}, "duration": 261, "id": "77KwjG79Dxw", "title": "\"Immigrant Movement International\": Nationalism and immigration in the gallery", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\n\"When you are doing political work, ambiguity is very dangerous. How do you balance clarity with enough emotion with sufficient creative space?\" In another performance by Cuban artist Tania Bruguera, we are confronted with questions about immigration, nationalism, and what it means to be a citizen of the world. After lining up to visit the exhibition, some visitors are required to pass an \u201cimmigration test\u201d and a polygraph test before being granted access to the inner gallery. Once inside, the darkened space is lit only by the sparks of a migrant worker welding a sign. The sign reads \u201cArbeit Macht Frei\u201d (\u201cwork makes you free\u201d)\u2013the very same words that hung over the entrance to the Nazi concentration camp in Auschwitz.\nIn this case the gallery provides a more secluded space in which to confront and contemplate issues of discrimination and nationalism. What do you think Bruguera is trying to say with this piece?\n\nClick here to learn more about Tania Bruguera and how she engages with performace, interdisciplinary practice, and activism.\u00a0\n", "path": "tania-bruguera-the-tanks/", "slug": "tania-bruguera-the-tanks", "kind": "Video", "video_id": "77KwjG79Dxw", "keywords": "Tate", "youtube_id": "77KwjG79Dxw", "readable_id": "tania-bruguera-the-tanks"}, "aQE5PcQQ2b4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aQE5PcQQ2b4.mp4/aQE5PcQQ2b4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aQE5PcQQ2b4.mp4/aQE5PcQQ2b4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aQE5PcQQ2b4.m3u8/aQE5PcQQ2b4.m3u8"}, "duration": 30, "id": "aQE5PcQQ2b4", "title": "DLab: Students pit their robots against one another", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/discovery-lab-2012/antbots-in-action/", "slug": "antbots-in-action", "kind": "Video", "video_id": "aQE5PcQQ2b4", "keywords": "", "youtube_id": "aQE5PcQQ2b4", "readable_id": "antbots-in-action"}, "-bE-Pydad7U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-bE-Pydad7U.mp4/-bE-Pydad7U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-bE-Pydad7U.mp4/-bE-Pydad7U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-bE-Pydad7U.m3u8/-bE-Pydad7U.m3u8"}, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-important-ca/biodiversity-and-ecosystem-funct/biodiversity-ecosystems-and-ecological-networks/", "duration": 536, "id": "-bE-Pydad7U", "title": "Ecosystems and ecological networks", "format": "mp4", "description": "", "slug": "biodiversity-ecosystems-and-ecological-networks", "kind": "Video", "video_id": "-bE-Pydad7U", "keywords": "", "youtube_id": "-bE-Pydad7U", "readable_id": "biodiversity-ecosystems-and-ecological-networks"}, "dzQwIqc6dQE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dzQwIqc6dQE.mp4/dzQwIqc6dQE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dzQwIqc6dQE.mp4/dzQwIqc6dQE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dzQwIqc6dQE.m3u8/dzQwIqc6dQE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/reiters-syndrome/", "duration": 477, "id": "dzQwIqc6dQE", "title": "Reiter's syndrome", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "reiters-syndrome", "kind": "Video", "video_id": "dzQwIqc6dQE", "keywords": "", "youtube_id": "dzQwIqc6dQE", "readable_id": "reiters-syndrome"}, "AR1uqNbjM5s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AR1uqNbjM5s.mp4/AR1uqNbjM5s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AR1uqNbjM5s.mp4/AR1uqNbjM5s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AR1uqNbjM5s.m3u8/AR1uqNbjM5s.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/core-algebra-exponent-properties/exponent-properties-involving-quotients/", "duration": 562, "id": "AR1uqNbjM5s", "title": "Exponent properties involving quotients", "format": "mp4", "description": "Exponent Properties Involving Quotients", "slug": "exponent-properties-involving-quotients", "kind": "Video", "video_id": "AR1uqNbjM5s", "keywords": "Exponent, Properties, Involving, Quotients, CC_8_EE_1, CC_39336_A-SSE_3_c", "youtube_id": "AR1uqNbjM5s", "readable_id": "exponent-properties-involving-quotients"}, "iPb5zeXTsSE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iPb5zeXTsSE.mp4/iPb5zeXTsSE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iPb5zeXTsSE.mp4/iPb5zeXTsSE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iPb5zeXTsSE.m3u8/iPb5zeXTsSE.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/burne-jones-king-cophetua-and-the-beggar-maid-1884/", "duration": 274, "id": "iPb5zeXTsSE", "title": "Burne-Jones, King Cophetua and the Beggar Maid", "format": "mp4", "description": "Edward Burne-Jones, King Cophetua and the Beggar Maid, oil on canvas, 1884\n(Tate Britain, London)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "burne-jones-king-cophetua-and-the-beggar-maid-1884", "kind": "Video", "video_id": "iPb5zeXTsSE", "keywords": "Pre-Raphaelites, Smarthistory, Art History", "youtube_id": "iPb5zeXTsSE", "readable_id": "burne-jones-king-cophetua-and-the-beggar-maid-1884"}, "UvtWf4TVawE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UvtWf4TVawE.mp4/UvtWf4TVawE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UvtWf4TVawE.mp4/UvtWf4TVawE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UvtWf4TVawE.m3u8/UvtWf4TVawE.m3u8"}, "duration": 290, "id": "UvtWf4TVawE", "title": "Absolute value equation example", "format": "mp4", "description": "", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute-value-equation-example/", "slug": "absolute-value-equation-example", "kind": "Video", "video_id": "UvtWf4TVawE", "keywords": "", "youtube_id": "UvtWf4TVawE", "readable_id": "absolute-value-equation-example"}, "BIpsQIJUCC8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BIpsQIJUCC8.mp4/BIpsQIJUCC8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BIpsQIJUCC8.mp4/BIpsQIJUCC8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BIpsQIJUCC8.m3u8/BIpsQIJUCC8.m3u8"}, "duration": 445, "id": "BIpsQIJUCC8", "title": "Constructing probability model from observations", "format": "mp4", "description": "Model the probability of a frozen yogurt line having 0, 1, or 2 people in it.", "path": "constructing-probability-model-from-observations/", "slug": "constructing-probability-model-from-observations", "kind": "Video", "video_id": "BIpsQIJUCC8", "keywords": "", "youtube_id": "BIpsQIJUCC8", "readable_id": "constructing-probability-model-from-observations"}, "VNwh90eJels": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VNwh90eJels.mp4/VNwh90eJels.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VNwh90eJels.mp4/VNwh90eJels.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VNwh90eJels.m3u8/VNwh90eJels.m3u8"}, "path": "khan/partner-content/big-history-project/agriculture-civilization/other-materials7/bhp-transition-to-agriculture/", "duration": 411, "id": "VNwh90eJels", "title": "Transition to Agriculture", "format": "mp4", "description": "Craig Benjamin explains how agriculture drove change and why humans took the risk of abandoning foraging.", "slug": "bhp-transition-to-agriculture", "kind": "Video", "video_id": "VNwh90eJels", "keywords": "", "youtube_id": "VNwh90eJels", "readable_id": "bhp-transition-to-agriculture"}, "LicLl3epJqg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LicLl3epJqg.mp4/LicLl3epJqg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LicLl3epJqg.mp4/LicLl3epJqg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LicLl3epJqg.m3u8/LicLl3epJqg.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-numbers-120/finding-missing-numbers/", "duration": 232, "id": "LicLl3epJqg", "title": "Ben Eater eats the numbers", "format": "mp4", "description": "Learn how to find which numbers are missing in a number grid.", "slug": "finding-missing-numbers", "kind": "Video", "video_id": "LicLl3epJqg", "keywords": "", "youtube_id": "LicLl3epJqg", "readable_id": "finding-missing-numbers"}, "Hur3v1hrX3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hur3v1hrX3U.mp4/Hur3v1hrX3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hur3v1hrX3U.mp4/Hur3v1hrX3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hur3v1hrX3U.m3u8/Hur3v1hrX3U.m3u8"}, "duration": 147, "id": "Hur3v1hrX3U", "title": "Rotation of polygons example", "format": "mp4", "description": "", "path": "khan/math/basic-geo/transformations-congruence-similarity-geo/transformations-basics/rotation-of-polygons-example/", "slug": "rotation-of-polygons-example", "kind": "Video", "video_id": "Hur3v1hrX3U", "keywords": "", "youtube_id": "Hur3v1hrX3U", "readable_id": "rotation-of-polygons-example"}, "GTwrVAbV56o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GTwrVAbV56o.mp4/GTwrVAbV56o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GTwrVAbV56o.mp4/GTwrVAbV56o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GTwrVAbV56o.m3u8/GTwrVAbV56o.m3u8"}, "duration": 165, "id": "GTwrVAbV56o", "title": "Flex Mex", "format": "mp4", "description": "Might as well.", "path": "khan/math/recreational-math/vi-hart/hexaflexagons/flex-mex/", "slug": "flex-mex", "kind": "Video", "video_id": "GTwrVAbV56o", "keywords": "marquee", "youtube_id": "GTwrVAbV56o", "readable_id": "flex-mex"}, "QYoNHOjr7Rg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QYoNHOjr7Rg.mp4/QYoNHOjr7Rg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QYoNHOjr7Rg.mp4/QYoNHOjr7Rg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QYoNHOjr7Rg.m3u8/QYoNHOjr7Rg.m3u8"}, "duration": 220, "id": "QYoNHOjr7Rg", "title": "Comparing linear functions 3", "format": "mp4", "description": "", "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/comparing_linear_functions/comparing-features-of-functions-5/", "slug": "comparing-features-of-functions-5", "kind": "Video", "video_id": "QYoNHOjr7Rg", "keywords": "", "youtube_id": "QYoNHOjr7Rg", "readable_id": "comparing-features-of-functions-5"}, "lfZGtjSWcQs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lfZGtjSWcQs.mp4/lfZGtjSWcQs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lfZGtjSWcQs.mp4/lfZGtjSWcQs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lfZGtjSWcQs.m3u8/lfZGtjSWcQs.m3u8"}, "duration": 299, "id": "lfZGtjSWcQs", "title": "Convergent and divergent sequences", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq-conv-diverg/convergent-and-divergent-sequences/", "slug": "convergent-and-divergent-sequences", "kind": "Video", "video_id": "lfZGtjSWcQs", "keywords": "", "youtube_id": "lfZGtjSWcQs", "readable_id": "convergent-and-divergent-sequences"}, "DLno3b-Xsmo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DLno3b-Xsmo.mp4/DLno3b-Xsmo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DLno3b-Xsmo.mp4/DLno3b-Xsmo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DLno3b-Xsmo.m3u8/DLno3b-Xsmo.m3u8"}, "duration": 294, "id": "DLno3b-Xsmo", "title": "Unit conversion: minutes to hours", "format": "mp4", "description": "We're going to convert minutes into hours, but consider whether it is best to state the answer as a decimal or a mixed number. In truth, it doesn't make a difference...both are correct!", "path": "minutes-to-hours/", "slug": "minutes-to-hours", "kind": "Video", "video_id": "DLno3b-Xsmo", "keywords": "", "youtube_id": "DLno3b-Xsmo", "readable_id": "minutes-to-hours"}, "h-TPSylHrvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h-TPSylHrvE.mp4/h-TPSylHrvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h-TPSylHrvE.mp4/h-TPSylHrvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h-TPSylHrvE.m3u8/h-TPSylHrvE.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/trig-symmetry-periodicity/trig-angle-rotations/", "duration": 373, "id": "h-TPSylHrvE", "title": "Relating trig function through angle rotations", "format": "mp4", "description": "", "slug": "trig-angle-rotations", "kind": "Video", "video_id": "h-TPSylHrvE", "keywords": "", "youtube_id": "h-TPSylHrvE", "readable_id": "trig-angle-rotations"}, "wzw9ll80Zbc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wzw9ll80Zbc.mp4/wzw9ll80Zbc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wzw9ll80Zbc.mp4/wzw9ll80Zbc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wzw9ll80Zbc.m3u8/wzw9ll80Zbc.m3u8"}, "duration": 289, "id": "wzw9ll80Zbc", "title": "Definition of limit of a sequence and sequence convergence", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq-conv-diverg/definition-of-limit-of-a-sequence-and-sequence-convergence/", "slug": "definition-of-limit-of-a-sequence-and-sequence-convergence", "kind": "Video", "video_id": "wzw9ll80Zbc", "keywords": "", "youtube_id": "wzw9ll80Zbc", "readable_id": "definition-of-limit-of-a-sequence-and-sequence-convergence"}, "vVXbgbMp0oY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vVXbgbMp0oY.mp4/vVXbgbMp0oY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vVXbgbMp0oY.mp4/vVXbgbMp0oY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vVXbgbMp0oY.m3u8/vVXbgbMp0oY.m3u8"}, "path": "khan/computing/computer-science/cryptography/crypt/frequency-stability/", "duration": 129, "id": "vVXbgbMp0oY", "title": "Frequency stability property short film", "format": "mp4", "description": "Can you tell the difference between actions based upon flipping a coin and those based upon blind guessing or simulating randomness? This short video examines the frequency stability property.", "slug": "frequency-stability", "kind": "Video", "video_id": "vVXbgbMp0oY", "keywords": "probability, statistics, frequency stability", "youtube_id": "vVXbgbMp0oY", "readable_id": "frequency-stability"}, "lSV-J1JHDFY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lSV-J1JHDFY.mp4/lSV-J1JHDFY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lSV-J1JHDFY.mp4/lSV-J1JHDFY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lSV-J1JHDFY.m3u8/lSV-J1JHDFY.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/ingres-la-grande-odalisque-1814/", "duration": 250, "id": "lSV-J1JHDFY", "title": "Ingres, La Grande Odalisque", "format": "mp4", "description": "Jean-Auguste-Dominique Ingres, La Grande Odalisque, 1814, Oil on canvas, 36\" x 63\" (91 x 162 cm), (Mus\u00e9e du Louvre, Paris)", "slug": "ingres-la-grande-odalisque-1814", "kind": "Video", "video_id": "lSV-J1JHDFY", "keywords": "Ingres, Odalisque, Louvre, Art History, Smarthistory, Smarthistory. Art history", "youtube_id": "lSV-J1JHDFY", "readable_id": "ingres-la-grande-odalisque-1814"}, "wT4tXGcoyWw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wT4tXGcoyWw.mp4/wT4tXGcoyWw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wT4tXGcoyWw.mp4/wT4tXGcoyWw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wT4tXGcoyWw.m3u8/wT4tXGcoyWw.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/beginners-guide-imperial-china/buddhist-temples-wutaishan/", "duration": 248, "id": "wT4tXGcoyWw", "title": "Buddhist Temples at Wutaishan", "format": "mp4", "description": "The Chinese Buddhist figures seen in the galleries at the Asian Art Museum were originally placed in temples and monastic buildings. This video explores Wutaishan, an area with one of the heaviest concentration of Buddhist temples in China. Learn more about Buddhism on the Asian Art Museum's education website.", "slug": "buddhist-temples-wutaishan", "kind": "Video", "video_id": "wT4tXGcoyWw", "keywords": "", "youtube_id": "wT4tXGcoyWw", "readable_id": "buddhist-temples-wutaishan"}, "QXNg_u5Tv8Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QXNg_u5Tv8Q.mp4/QXNg_u5Tv8Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QXNg_u5Tv8Q.mp4/QXNg_u5Tv8Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QXNg_u5Tv8Q.m3u8/QXNg_u5Tv8Q.m3u8"}, "duration": 243, "id": "QXNg_u5Tv8Q", "title": "Blueberries for friends", "format": "mp4", "description": "Use a picture and understanding of multiplcation to solve a division word problem. \u00a0Watch out for unnecessary information.", "path": "blueberries-for-friends/", "slug": "blueberries-for-friends", "kind": "Video", "video_id": "QXNg_u5Tv8Q", "keywords": "", "youtube_id": "QXNg_u5Tv8Q", "readable_id": "blueberries-for-friends"}, "GKlUFww2g7U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GKlUFww2g7U.mp4/GKlUFww2g7U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GKlUFww2g7U.mp4/GKlUFww2g7U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GKlUFww2g7U.m3u8/GKlUFww2g7U.m3u8"}, "duration": 923, "id": "GKlUFww2g7U", "title": "Calculating ATP produced in cellular respiration", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/calculating-atp-produced-in-cellular-respiration/", "slug": "calculating-atp-produced-in-cellular-respiration", "kind": "Video", "video_id": "GKlUFww2g7U", "keywords": "", "youtube_id": "GKlUFww2g7U", "readable_id": "calculating-atp-produced-in-cellular-respiration"}, "dencuBNp_Ck": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dencuBNp_Ck.mp4/dencuBNp_Ck.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dencuBNp_Ck.mp4/dencuBNp_Ck.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dencuBNp_Ck.m3u8/dencuBNp_Ck.m3u8"}, "duration": 1069, "id": "dencuBNp_Ck", "title": "pH of a weak acid", "format": "mp4", "description": "Calculating the pH of a weak acid", "path": "khan/science/chemistry/acids-and-bases-topic/copy-of-acid-base-equilibria/ph-of-a-weak-acid/", "slug": "ph-of-a-weak-acid", "kind": "Video", "video_id": "dencuBNp_Ck", "keywords": "ph, acid, base, chemistry", "youtube_id": "dencuBNp_Ck", "readable_id": "ph-of-a-weak-acid"}, "95logvV8nXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/95logvV8nXY.mp4/95logvV8nXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/95logvV8nXY.mp4/95logvV8nXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/95logvV8nXY.m3u8/95logvV8nXY.m3u8"}, "duration": 517, "id": "95logvV8nXY", "title": "Challenging triangle angle problem", "format": "mp4", "description": "Interesting problem finding the sums of particular exterior angles of an irregular pentagon", "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/challenging-triangle-angle-problem/", "slug": "challenging-triangle-angle-problem", "kind": "Video", "video_id": "95logvV8nXY", "keywords": "Challenging, Triangle, Angle, Problem", "youtube_id": "95logvV8nXY", "readable_id": "challenging-triangle-angle-problem"}, "jSWLolne0Oc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jSWLolne0Oc.mp4/jSWLolne0Oc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jSWLolne0Oc.mp4/jSWLolne0Oc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jSWLolne0Oc.m3u8/jSWLolne0Oc.m3u8"}, "duration": 77, "id": "jSWLolne0Oc", "title": "Polling sensors", "format": "mp4", "description": "Check the real-time values of your\u00a0sensors\u00a0", "path": "khan/science/discoveries-projects/lego-robotics/lego-programming-basics/lego-sensorpolling/", "slug": "lego-sensorpolling", "kind": "Video", "video_id": "jSWLolne0Oc", "keywords": "", "youtube_id": "jSWLolne0Oc", "readable_id": "lego-sensorpolling"}, "dBrKCtx4TfA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dBrKCtx4TfA.mp4/dBrKCtx4TfA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dBrKCtx4TfA.mp4/dBrKCtx4TfA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dBrKCtx4TfA.m3u8/dBrKCtx4TfA.m3u8"}, "path": "khan/humanities/art-americas/us-art-19c/romanticism-us/thomas-cole-expulsion-from-the-garden-of-eden-1828/", "duration": 235, "id": "dBrKCtx4TfA", "title": "Cole, Expulsion from the Garden of Eden", "format": "mp4", "description": "Thomas Cole, Expulsion from the Garden of Eden, 1828, oil on canvas, 100.96 x 138.43 cm / 39-3/4 x 54-1/2 inches (Museum of Fine Arts, Boston)", "slug": "thomas-cole-expulsion-from-the-garden-of-eden-1828", "kind": "Video", "video_id": "dBrKCtx4TfA", "keywords": "Cole, Expulsion, Eden, GAP, Thomas Cole, 1828, Museum of Fine Arts, Boston, American Art, Painting, Landscape, Hudson River School, Google Art Project, Khan Academy, Smarthstory, OER, art history, American Painting, American, Art", "youtube_id": "dBrKCtx4TfA", "readable_id": "thomas-cole-expulsion-from-the-garden-of-eden-1828"}, "ENKH97PYssg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ENKH97PYssg.mp4/ENKH97PYssg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ENKH97PYssg.mp4/ENKH97PYssg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ENKH97PYssg.m3u8/ENKH97PYssg.m3u8"}, "duration": 108, "id": "ENKH97PYssg", "title": "Commutative law of multiplication", "format": "mp4", "description": "Commutative Law of Multiplication", "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-properties-numbers/commutative-law-of-multiplication/", "slug": "commutative-law-of-multiplication", "kind": "Video", "video_id": "ENKH97PYssg", "keywords": "U01_L4_T1_we4, Commutative, Law, of, Multiplication, CC_3_OA_5", "youtube_id": "ENKH97PYssg", "readable_id": "commutative-law-of-multiplication"}, "Cw30IAkS7Fs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Cw30IAkS7Fs.mp4/Cw30IAkS7Fs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Cw30IAkS7Fs.mp4/Cw30IAkS7Fs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Cw30IAkS7Fs.m3u8/Cw30IAkS7Fs.m3u8"}, "duration": 513, "id": "Cw30IAkS7Fs", "title": "Conserving the Emperors Carpet", "format": "mp4", "description": "The magnificent sixteenth-century Emperor's Carpet from Safavid Iran was acquired by the Metropolitan Museum in 1941, but its condition was so fragile that it was only displayed for public twice over the next sixty years. This video documents the ambitious three-year conservation program that was launched in 2006 to stabilize the condition of the carpet so its lustrous wools and dazzling colors can be displayed the Museum on a regular basis.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "path": "emperorscarpet/", "slug": "emperorscarpet", "kind": "Video", "video_id": "Cw30IAkS7Fs", "keywords": "carpet, emperor, conservation, restore", "youtube_id": "Cw30IAkS7Fs", "readable_id": "emperorscarpet"}, "SPgYrsONgwU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SPgYrsONgwU.mp4/SPgYrsONgwU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SPgYrsONgwU.mp4/SPgYrsONgwU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SPgYrsONgwU.m3u8/SPgYrsONgwU.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/spectroscopy/spectroscopy-in-action/", "duration": 356, "id": "SPgYrsONgwU", "title": "Spectroscopy", "format": "mp4", "description": "", "slug": "spectroscopy-in-action", "kind": "Video", "video_id": "SPgYrsONgwU", "keywords": "", "youtube_id": "SPgYrsONgwU", "readable_id": "spectroscopy-in-action"}, "tJW_a6JeXD8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tJW_a6JeXD8.mp4/tJW_a6JeXD8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tJW_a6JeXD8.mp4/tJW_a6JeXD8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tJW_a6JeXD8.m3u8/tJW_a6JeXD8.m3u8"}, "path": "khan/science/physics/mechanical-waves-and-sound/mechanical-waves/amplitude-period-frequency-and-wavelength-of-periodic-waves/", "duration": 866, "id": "tJW_a6JeXD8", "title": "Amplitude, period, frequency and wavelength of periodic waves", "format": "mp4", "description": "Amplitude, period, frequency and wavelength of periodic waves", "slug": "amplitude-period-frequency-and-wavelength-of-periodic-waves", "kind": "Video", "video_id": "tJW_a6JeXD8", "keywords": "amplitude, period, frequency, wavelength, wave", "youtube_id": "tJW_a6JeXD8", "readable_id": "amplitude-period-frequency-and-wavelength-of-periodic-waves"}, "vN7O7zsRKb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vN7O7zsRKb8.mp4/vN7O7zsRKb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vN7O7zsRKb8.mp4/vN7O7zsRKb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vN7O7zsRKb8.m3u8/vN7O7zsRKb8.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/plotting-data-for-a-first-order-reaction/", "duration": 561, "id": "vN7O7zsRKb8", "title": "Plotting data for a first-order reaction", "format": "mp4", "description": "", "slug": "plotting-data-for-a-first-order-reaction", "kind": "Video", "video_id": "vN7O7zsRKb8", "keywords": "", "youtube_id": "vN7O7zsRKb8", "readable_id": "plotting-data-for-a-first-order-reaction"}, "C2PC9185gIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C2PC9185gIw.mp4/C2PC9185gIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C2PC9185gIw.mp4/C2PC9185gIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C2PC9185gIw.m3u8/C2PC9185gIw.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/eigen_everything/linear-algebra-showing-that-an-eigenbasis-makes-for-good-coordinate-systems/", "duration": 789, "id": "C2PC9185gIw", "title": "Showing that an eigenbasis makes for good coordinate systems", "format": "mp4", "description": "Showing that an eigenbasis makes for good coordinate systems", "slug": "linear-algebra-showing-that-an-eigenbasis-makes-for-good-coordinate-systems", "kind": "Video", "video_id": "C2PC9185gIw", "keywords": "eigenbasis, eigenvector", "youtube_id": "C2PC9185gIw", "readable_id": "linear-algebra-showing-that-an-eigenbasis-makes-for-good-coordinate-systems"}, "2GrvBLKaRSI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2GrvBLKaRSI.mp4/2GrvBLKaRSI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2GrvBLKaRSI.mp4/2GrvBLKaRSI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2GrvBLKaRSI.m3u8/2GrvBLKaRSI.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-near-east-ap/lamassu/", "duration": 309, "id": "2GrvBLKaRSI", "title": "Lamassu from the citadel of Sargon II", "format": "mp4", "description": "Lamassu (winged human-headed bulls possibly lamassu or shedu) from the citadel of Sargon II, Dur Sharrukin (now Khorsabad, Iraq), Neo-Assyrian, c. 720-705 B.C.E., gypseous alabaster, 4.20 x 4.36 x 0.97 m, excavated by P.-E. Botta 1843-44 (Mus\u00e9e du Louvre)\u00a0Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\nIN THE NEWS: Irreplaceable Lamassu sculpture, Assyrian\u00a0architecture and whole archaeological sites have recently been destroyed by militants that control large areas of\u00a0Iraq and Syria. This tragedy cannot be undone and is an attack on our shared\u00a0history and cultural heritage. To learn more: February 27, 2015 New York Times article\n", "slug": "lamassu", "kind": "Video", "video_id": "2GrvBLKaRSI", "keywords": "Lamassu, Assyrian, Sargon II, Mesopotamia, Iraq, ancient, bull, Louvre", "youtube_id": "2GrvBLKaRSI", "readable_id": "lamassu"}, "j0c2vmFGbtk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j0c2vmFGbtk.mp4/j0c2vmFGbtk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j0c2vmFGbtk.mp4/j0c2vmFGbtk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j0c2vmFGbtk.m3u8/j0c2vmFGbtk.m3u8"}, "duration": 546, "id": "j0c2vmFGbtk", "title": "Minimum wage and price floors", "format": "mp4", "description": "How a minimum wage might effect the labor market", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/deadweight-loss-tutorial/minimum-wage-and-price-floors/", "slug": "minimum-wage-and-price-floors", "kind": "Video", "video_id": "j0c2vmFGbtk", "keywords": "economics, surplus, dead, weight, loss", "youtube_id": "j0c2vmFGbtk", "readable_id": "minimum-wage-and-price-floors"}, "EFdlFoHI_0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EFdlFoHI_0I.mp4/EFdlFoHI_0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EFdlFoHI_0I.mp4/EFdlFoHI_0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EFdlFoHI_0I.m3u8/EFdlFoHI_0I.m3u8"}, "path": "khan/math/probability/statistics-inferential/anova/anova-1-calculating-sst-total-sum-of-squares/", "duration": 459, "id": "EFdlFoHI_0I", "title": "ANOVA 1: Calculating SST (total sum of squares)", "format": "mp4", "description": "Analysis of Variance 1 - Calculating SST (Total Sum of Squares)", "slug": "anova-1-calculating-sst-total-sum-of-squares", "kind": "Video", "video_id": "EFdlFoHI_0I", "keywords": "ANOVA, Calculating, SST, (Total, Sum, of, Squares), analysis, variance, CC_7_SP_3, CC_7_SP_4", "youtube_id": "EFdlFoHI_0I", "readable_id": "anova-1-calculating-sst-total-sum-of-squares"}, "3sCB3udmu1Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3sCB3udmu1Y.mp4/3sCB3udmu1Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3sCB3udmu1Y.mp4/3sCB3udmu1Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3sCB3udmu1Y.m3u8/3sCB3udmu1Y.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/amedeo-modigliani-young-woman-in-a-shirt-1918/", "duration": 277, "id": "3sCB3udmu1Y", "title": "Modigliani, Young Woman in a Shirt", "format": "mp4", "description": "Amedeo Modigliani, Young Woman in a Shirt, 1918, oil on canvas (Albertina, Vienna)", "slug": "amedeo-modigliani-young-woman-in-a-shirt-1918", "kind": "Video", "video_id": "3sCB3udmu1Y", "keywords": "Modigliani, Shirt, GAP, Albertina, Art History, Smarthistory, Khan Academy, Google Art Project, OER, Italian, Modernism, Abstraction, Nude, Painting, Art, Viena, Vien, Amedeo Modigliani, Young Woman in a Shirt, 1918", "youtube_id": "3sCB3udmu1Y", "readable_id": "amedeo-modigliani-young-woman-in-a-shirt-1918"}, "J9xUL5Yi_8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J9xUL5Yi_8M.mp4/J9xUL5Yi_8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J9xUL5Yi_8M.mp4/J9xUL5Yi_8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J9xUL5Yi_8M.m3u8/J9xUL5Yi_8M.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/leonardo-da-vinci/leonardo-anatomist/", "duration": 414, "id": "J9xUL5Yi_8M", "title": "Leonardo: Anatomist - by Nature Video", "format": "mp4", "description": "Nature Video was invited to Windsor Castle to see some of Leonardo da Vinci's anatomical drawings. The drawings show that Leonardo did more than dabble in the sciences; he carried out experiments and made staggering medical discoveries which could have transformed the study of anatomy in Europe -- had they not languished unpublished for centuries. In this video, Senior Curator Martin Clayton shows us three of Leonardo's most intriguing anatomical studies.\u00a0", "slug": "leonardo-anatomist", "kind": "Video", "video_id": "J9xUL5Yi_8M", "keywords": "", "youtube_id": "J9xUL5Yi_8M", "readable_id": "leonardo-anatomist"}, "soIt2TwV6Xk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/soIt2TwV6Xk.mp4/soIt2TwV6Xk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/soIt2TwV6Xk.mp4/soIt2TwV6Xk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/soIt2TwV6Xk.m3u8/soIt2TwV6Xk.m3u8"}, "duration": 375, "id": "soIt2TwV6Xk", "title": "Using the Pythagorean trig identity", "format": "mp4", "description": "", "path": "khan/math/trigonometry/less-basic-trigonometry/pythagorean-identity/using-the-pythagorean-trig-identity/", "slug": "using-the-pythagorean-trig-identity", "kind": "Video", "video_id": "soIt2TwV6Xk", "keywords": "", "youtube_id": "soIt2TwV6Xk", "readable_id": "using-the-pythagorean-trig-identity"}, "KibTbfkoPTs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KibTbfkoPTs.mp4/KibTbfkoPTs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KibTbfkoPTs.mp4/KibTbfkoPTs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KibTbfkoPTs.m3u8/KibTbfkoPTs.m3u8"}, "duration": 329, "id": "KibTbfkoPTs", "title": "Sorting irrational numbers involving radicals", "format": "mp4", "description": "Learn how to sort a bunch of numbers (many of them involving square roots) from least to greatest without using a calculator.", "path": "sorting-irrational-numbers-involving-radicals/", "slug": "sorting-irrational-numbers-involving-radicals", "kind": "Video", "video_id": "KibTbfkoPTs", "keywords": "", "youtube_id": "KibTbfkoPTs", "readable_id": "sorting-irrational-numbers-involving-radicals"}, "lRJd56BCidg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lRJd56BCidg.mp4/lRJd56BCidg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lRJd56BCidg.mp4/lRJd56BCidg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lRJd56BCidg.m3u8/lRJd56BCidg.m3u8"}, "duration": 540, "id": "lRJd56BCidg", "title": "Neuromuscular junction, motor end-plate", "format": "mp4", "description": "How do neurons talk directly to muscle cells? Learn about how a neuronal message is translated into a muscular action at the neuromuscular junction. By Raja Narayan.", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/neuromuscular-junction/", "slug": "neuromuscular-junction", "kind": "Video", "video_id": "lRJd56BCidg", "keywords": "neuromuscular junction,", "youtube_id": "lRJd56BCidg", "readable_id": "neuromuscular-junction"}, "gWMTTP58_J0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gWMTTP58_J0.mp4/gWMTTP58_J0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gWMTTP58_J0.mp4/gWMTTP58_J0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gWMTTP58_J0.m3u8/gWMTTP58_J0.m3u8"}, "duration": 208, "id": "gWMTTP58_J0", "title": "Constructing equilateral triangle inscribed in circle", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/polygons-inscribed-in-circles/constructing-equilateral-triangle-inscribed-in-circle/", "slug": "constructing-equilateral-triangle-inscribed-in-circle", "kind": "Video", "video_id": "gWMTTP58_J0", "keywords": "", "youtube_id": "gWMTTP58_J0", "readable_id": "constructing-equilateral-triangle-inscribed-in-circle"}, "j2iY1cT2gEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j2iY1cT2gEE.mp4/j2iY1cT2gEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j2iY1cT2gEE.mp4/j2iY1cT2gEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j2iY1cT2gEE.m3u8/j2iY1cT2gEE.m3u8"}, "duration": 898, "id": "j2iY1cT2gEE", "title": "Resetting cardiac concentration gradients", "format": "mp4", "description": "Watch as the heart cells use energy to reset the concentration gradients for all of the ions after the action potential has gone through. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/heart-depolarization/reseting-cardiac-concentration-gradients/", "slug": "reseting-cardiac-concentration-gradients", "kind": "Video", "video_id": "j2iY1cT2gEE", "keywords": "", "youtube_id": "j2iY1cT2gEE", "readable_id": "reseting-cardiac-concentration-gradients"}, "TQJQeTpH_lw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TQJQeTpH_lw.mp4/TQJQeTpH_lw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TQJQeTpH_lw.mp4/TQJQeTpH_lw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TQJQeTpH_lw.m3u8/TQJQeTpH_lw.m3u8"}, "path": "khan/math/probability/statistical-studies/categorical-data/frequency-table-independent-events/", "duration": 296, "id": "TQJQeTpH_lw", "title": "Filling out frequency table for independent events", "format": "mp4", "description": "", "slug": "frequency-table-independent-events", "kind": "Video", "video_id": "TQJQeTpH_lw", "keywords": "", "youtube_id": "TQJQeTpH_lw", "readable_id": "frequency-table-independent-events"}, "dSOnLt3YVl0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dSOnLt3YVl0.mp4/dSOnLt3YVl0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dSOnLt3YVl0.mp4/dSOnLt3YVl0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dSOnLt3YVl0.m3u8/dSOnLt3YVl0.m3u8"}, "path": "khan/humanities/renaissance-reformation/protestant-reformation1/introduction-to-the-protestant-reformation-luther-2-of-4/", "duration": 675, "id": "dSOnLt3YVl0", "title": "Introduction to the Protestant Reformation: Martin Luther (part 2)", "format": "mp4", "description": "An Introduction to the Protestant Reformation: Martin Luther (2 of 4) Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "introduction-to-the-protestant-reformation-luther-2-of-4", "kind": "Video", "video_id": "dSOnLt3YVl0", "keywords": "Protestant Reformation, Martin Luther", "youtube_id": "dSOnLt3YVl0", "readable_id": "introduction-to-the-protestant-reformation-luther-2-of-4"}, "6hFiTU77Sm0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6hFiTU77Sm0.mp4/6hFiTU77Sm0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6hFiTU77Sm0.mp4/6hFiTU77Sm0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6hFiTU77Sm0.m3u8/6hFiTU77Sm0.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/ss-financial-aid-college-search/", "duration": 72, "id": "6hFiTU77Sm0", "title": "Student story: Prioritizing financial aid in the college search", "format": "mp4", "description": "", "slug": "ss-financial-aid-college-search", "kind": "Video", "video_id": "6hFiTU77Sm0", "keywords": "", "youtube_id": "6hFiTU77Sm0", "readable_id": "ss-financial-aid-college-search"}, "gGEP_PjLjw4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gGEP_PjLjw4.mp4/gGEP_PjLjw4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gGEP_PjLjw4.mp4/gGEP_PjLjw4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gGEP_PjLjw4.m3u8/gGEP_PjLjw4.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/biodiversity-hotspot-sao-tome/", "duration": 140, "id": "gGEP_PjLjw4", "title": "Biodiversity hotspot case study: Sao Tom\u00e9", "format": "mp4", "description": "", "slug": "biodiversity-hotspot-sao-tome", "kind": "Video", "video_id": "gGEP_PjLjw4", "keywords": "", "youtube_id": "gGEP_PjLjw4", "readable_id": "biodiversity-hotspot-sao-tome"}, "KXZ6w91DioU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KXZ6w91DioU.mp4/KXZ6w91DioU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KXZ6w91DioU.mp4/KXZ6w91DioU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KXZ6w91DioU.m3u8/KXZ6w91DioU.m3u8"}, "duration": 749, "id": "KXZ6w91DioU", "title": "Circumcenter of a triangle", "format": "mp4", "description": "Multiple proofs showing that a point is on a perpendicular bisector of a segment if and only if it is equidistant from the endpoints. Using this to establish the circumcenter, circumradius, and circumcircle for a triangle", "path": "khan/math/geometry/triangle-properties/perpendicular_bisectors/circumcenter-of-a-triangle/", "slug": "circumcenter-of-a-triangle", "kind": "Video", "video_id": "KXZ6w91DioU", "keywords": "circumscribe", "youtube_id": "KXZ6w91DioU", "readable_id": "circumcenter-of-a-triangle"}, "Ctytn4a6zjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ctytn4a6zjw.mp4/Ctytn4a6zjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ctytn4a6zjw.mp4/Ctytn4a6zjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ctytn4a6zjw.m3u8/Ctytn4a6zjw.m3u8"}, "path": "khan/math/probability/random-variables-topic/binomial_distribution/probability-of-making-2-shots-in-6-attempts/", "duration": 624, "id": "Ctytn4a6zjw", "title": "Probability of making 2 shots in 6 attempts", "format": "mp4", "description": "", "slug": "probability-of-making-2-shots-in-6-attempts", "kind": "Video", "video_id": "Ctytn4a6zjw", "keywords": "", "youtube_id": "Ctytn4a6zjw", "readable_id": "probability-of-making-2-shots-in-6-attempts"}, "wnbK76m691I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wnbK76m691I.mp4/wnbK76m691I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wnbK76m691I.mp4/wnbK76m691I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wnbK76m691I.m3u8/wnbK76m691I.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/critical-thinking-introduction-to-ad-hominem-fallacies/", "duration": 401, "id": "wnbK76m691I", "title": "Fallacies: Introduction to ad hominem", "format": "mp4", "description": "In this video, Julianne Chung offers a brief introduction to ad hominem fallacies, or fallacies of personal attack. She surveys six different types (abusive ad hominem, circumstantial ad hominem, tu quoque, guilt by association, genetic fallacy, and ad feminam), offering examples of each along the way. For a more detailed discussion of ad hominem fallacies, please see the video on ad hominem fallacies by Paul Henne.\n\nSpeaker: Julianne Chung, Yale University", "slug": "critical-thinking-introduction-to-ad-hominem-fallacies", "kind": "Video", "video_id": "wnbK76m691I", "keywords": "", "youtube_id": "wnbK76m691I", "readable_id": "critical-thinking-introduction-to-ad-hominem-fallacies"}, "C1smdOKd4Ds": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C1smdOKd4Ds.mp4/C1smdOKd4Ds.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C1smdOKd4Ds.mp4/C1smdOKd4Ds.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C1smdOKd4Ds.m3u8/C1smdOKd4Ds.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/ventricular-tachycardias/", "duration": 464, "id": "C1smdOKd4Ds", "title": "Ventricular tachycardia (Vtach)", "format": "mp4", "description": "", "slug": "ventricular-tachycardias", "kind": "Video", "video_id": "C1smdOKd4Ds", "keywords": "", "youtube_id": "C1smdOKd4Ds", "readable_id": "ventricular-tachycardias"}, "f6OnoxctvUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f6OnoxctvUk.mp4/f6OnoxctvUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f6OnoxctvUk.mp4/f6OnoxctvUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f6OnoxctvUk.m3u8/f6OnoxctvUk.m3u8"}, "duration": 594, "id": "f6OnoxctvUk", "title": "Proof (part 2) minimizing squared error to regression line", "format": "mp4", "description": "Proof Part 2 Minimizing Squared Error to Line", "path": "khan/math/probability/regression/regression-correlation/proof-part-2-minimizing-squared-error-to-line/", "slug": "proof-part-2-minimizing-squared-error-to-line", "kind": "Video", "video_id": "f6OnoxctvUk", "keywords": "Proof, Part, Minimizing, Squared, Error, to, Line, CC_8_SP_2, CC_8_SP_3", "youtube_id": "f6OnoxctvUk", "readable_id": "proof-part-2-minimizing-squared-error-to-line"}, "HkBFunEh8iY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HkBFunEh8iY.mp4/HkBFunEh8iY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HkBFunEh8iY.mp4/HkBFunEh8iY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HkBFunEh8iY.m3u8/HkBFunEh8iY.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-9/", "duration": 591, "id": "HkBFunEh8iY", "title": "GMAT: Math 9", "format": "mp4", "description": "49-54, pgs. 158-159", "slug": "gmat-math-9", "kind": "Video", "video_id": "HkBFunEh8iY", "keywords": "gmat, math, problem, solving", "youtube_id": "HkBFunEh8iY", "readable_id": "gmat-math-9"}, "607Buvyc0VI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/607Buvyc0VI.mp4/607Buvyc0VI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/607Buvyc0VI.mp4/607Buvyc0VI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/607Buvyc0VI.m3u8/607Buvyc0VI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/total-anomalous-pulmonary-venous-return/", "duration": 220, "id": "607Buvyc0VI", "title": "Total anomalous pulmonary venous return", "format": "mp4", "description": "", "slug": "total-anomalous-pulmonary-venous-return", "kind": "Video", "video_id": "607Buvyc0VI", "keywords": "", "youtube_id": "607Buvyc0VI", "readable_id": "total-anomalous-pulmonary-venous-return"}, "JXeji_6wJAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JXeji_6wJAA.mp4/JXeji_6wJAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JXeji_6wJAA.mp4/JXeji_6wJAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JXeji_6wJAA.m3u8/JXeji_6wJAA.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-blended-software/sscc-blended-softwarechallenges/", "duration": 180, "id": "JXeji_6wJAA", "title": "The challenges to picking software", "format": "mp4", "description": "", "slug": "sscc-blended-softwarechallenges", "kind": "Video", "video_id": "JXeji_6wJAA", "keywords": "", "youtube_id": "JXeji_6wJAA", "readable_id": "sscc-blended-softwarechallenges"}, "zaGUlwslGGg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zaGUlwslGGg.mp4/zaGUlwslGGg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zaGUlwslGGg.mp4/zaGUlwslGGg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zaGUlwslGGg.m3u8/zaGUlwslGGg.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/writing-expressions-3-exercise-example-3/", "duration": 44, "id": "zaGUlwslGGg", "title": "Writing algebraic expressions example 3", "format": "mp4", "description": "The more you practice, the better you get at writing algebraic expressions. So don't hesitate. Let's go!", "slug": "writing-expressions-3-exercise-example-3", "kind": "Video", "video_id": "zaGUlwslGGg", "keywords": "", "youtube_id": "zaGUlwslGGg", "readable_id": "writing-expressions-3-exercise-example-3"}, "hV4pdjHCKuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hV4pdjHCKuA.mp4/hV4pdjHCKuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hV4pdjHCKuA.mp4/hV4pdjHCKuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hV4pdjHCKuA.m3u8/hV4pdjHCKuA.m3u8"}, "duration": 707, "id": "hV4pdjHCKuA", "title": "T-statistic confidence interval", "format": "mp4", "description": "T-Statistic Confidence Interval (for small sample sizes)", "path": "khan/math/probability/statistics-inferential/hypothesis-testing/t-statistic-confidence-interval/", "slug": "t-statistic-confidence-interval", "kind": "Video", "video_id": "hV4pdjHCKuA", "keywords": "T-Statistic, Confidence, Interval, (for, small, sample, sizes)", "youtube_id": "hV4pdjHCKuA", "readable_id": "t-statistic-confidence-interval"}, "D2sMsmL0ScQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D2sMsmL0ScQ.mp4/D2sMsmL0ScQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D2sMsmL0ScQ.mp4/D2sMsmL0ScQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D2sMsmL0ScQ.m3u8/D2sMsmL0ScQ.m3u8"}, "duration": 544, "id": "D2sMsmL0ScQ", "title": "Small sample hypothesis test", "format": "mp4", "description": "Small Sample Hypothesis Test", "path": "khan/math/probability/statistics-inferential/hypothesis-testing/small-sample-hypothesis-test/", "slug": "small-sample-hypothesis-test", "kind": "Video", "video_id": "D2sMsmL0ScQ", "keywords": "Small, Sample, Hypothesis, Test, t-statistic", "youtube_id": "D2sMsmL0ScQ", "readable_id": "small-sample-hypothesis-test"}, "1BH2TNzAAik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1BH2TNzAAik.mp4/1BH2TNzAAik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1BH2TNzAAik.mp4/1BH2TNzAAik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1BH2TNzAAik.m3u8/1BH2TNzAAik.m3u8"}, "duration": 138, "id": "1BH2TNzAAik", "title": "Finding central angle measure given arc length", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/circles/finding-central-angle-measure-given-arc-length/", "slug": "finding-central-angle-measure-given-arc-length", "kind": "Video", "video_id": "1BH2TNzAAik", "keywords": "", "youtube_id": "1BH2TNzAAik", "readable_id": "finding-central-angle-measure-given-arc-length"}, "OanPzjf2EYY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OanPzjf2EYY.mp4/OanPzjf2EYY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OanPzjf2EYY.mp4/OanPzjf2EYY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OanPzjf2EYY.m3u8/OanPzjf2EYY.m3u8"}, "path": "khan/math/pre-algebra/measurement/volume-introduction-rectangular/volume-word-problem-example/", "duration": 280, "id": "OanPzjf2EYY", "title": "Volume word problem", "format": "mp4", "description": "Perhaps you've noticed that after teaching you the concept and doing a few example problems together, we always like to throw you a word problem in which you have to apply what you've learned. So here let's find the volume!", "slug": "volume-word-problem-example", "kind": "Video", "video_id": "OanPzjf2EYY", "keywords": "", "youtube_id": "OanPzjf2EYY", "readable_id": "volume-word-problem-example"}, "mzOBlH32qdk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mzOBlH32qdk.mp4/mzOBlH32qdk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mzOBlH32qdk.mp4/mzOBlH32qdk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mzOBlH32qdk.m3u8/mzOBlH32qdk.m3u8"}, "duration": 593, "id": "mzOBlH32qdk", "title": "Derivative properties and polynomial derivatives", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/power_rule_tutorial/derivative-properties-and-polynomial-derivatives/", "slug": "derivative-properties-and-polynomial-derivatives", "kind": "Video", "video_id": "mzOBlH32qdk", "keywords": "", "youtube_id": "mzOBlH32qdk", "readable_id": "derivative-properties-and-polynomial-derivatives"}, "wtLTb_VaI-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wtLTb_VaI-k.mp4/wtLTb_VaI-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wtLTb_VaI-k.mp4/wtLTb_VaI-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wtLTb_VaI-k.m3u8/wtLTb_VaI-k.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-1a/", "duration": 403, "id": "wtLTb_VaI-k", "title": "2011 Calculus BC free response #1a", "format": "mp4", "description": "Velocity and acceleration vectors for particle", "slug": "2011-calculus-bc-free-response-1a", "kind": "Video", "video_id": "wtLTb_VaI-k", "keywords": "AP, exam, advanced, placement", "youtube_id": "wtLTb_VaI-k", "readable_id": "2011-calculus-bc-free-response-1a"}, "5fkh01mClLU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5fkh01mClLU.mp4/5fkh01mClLU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5fkh01mClLU.mp4/5fkh01mClLU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5fkh01mClLU.m3u8/5fkh01mClLU.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/linear-equations-in-slope-intercept-form/", "duration": 898, "id": "5fkh01mClLU", "title": "More examples of constructing linear equations in slope-intercept form", "format": "mp4", "description": "Linear Equations in Slope Intercept Form", "slug": "linear-equations-in-slope-intercept-form", "kind": "Video", "video_id": "5fkh01mClLU", "keywords": "Linear, Equations, in, Slope, Intercept, Form, CC_8_EE_6, CC_8_F_3, CC_8_F_4", "youtube_id": "5fkh01mClLU", "readable_id": "linear-equations-in-slope-intercept-form"}, "JXCiFbEMTZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JXCiFbEMTZ4.mp4/JXCiFbEMTZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JXCiFbEMTZ4.mp4/JXCiFbEMTZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JXCiFbEMTZ4.m3u8/JXCiFbEMTZ4.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/trig_iden_tutorial/trig-identies-part-3-part-5-if-you-watch-the-proofs/", "duration": 515, "id": "JXCiFbEMTZ4", "title": "Trig identities part 3 (part 5 if you watch the proofs)", "format": "mp4", "description": "Continuation of the playing around with trig identities", "slug": "trig-identies-part-3-part-5-if-you-watch-the-proofs", "kind": "Video", "video_id": "JXCiFbEMTZ4", "keywords": "Trigonometry, trig, identities, math, khan, academy", "youtube_id": "JXCiFbEMTZ4", "readable_id": "trig-identies-part-3-part-5-if-you-watch-the-proofs"}, "KwR_ysrv3sg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KwR_ysrv3sg.mp4/KwR_ysrv3sg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KwR_ysrv3sg.mp4/KwR_ysrv3sg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KwR_ysrv3sg.m3u8/KwR_ysrv3sg.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/area-polar-graphs/area-defined-by-two-polar-graphs/", "duration": 369, "id": "KwR_ysrv3sg", "title": "Area between two polar graphs", "format": "mp4", "description": "", "slug": "area-defined-by-two-polar-graphs", "kind": "Video", "video_id": "KwR_ysrv3sg", "keywords": "", "youtube_id": "KwR_ysrv3sg", "readable_id": "area-defined-by-two-polar-graphs"}, "RL7NmWVmSF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RL7NmWVmSF0.mp4/RL7NmWVmSF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RL7NmWVmSF0.mp4/RL7NmWVmSF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RL7NmWVmSF0.m3u8/RL7NmWVmSF0.m3u8"}, "duration": 155, "id": "RL7NmWVmSF0", "title": "Jean-Baptiste Greuze's drawings", "format": "mp4", "description": "Jean-Baptiste Greuze was one of the most celebrated draftsmen and painters in France during the 1700s. Paintings curator Scott Schaefer talks about Greuze and his popular images of ordinary lives. Love art? Follow us on Google+\u00a0at http://bit.ly/gettygoogleplus", "path": "jean-baptiste-greuze-drawings/", "slug": "jean-baptiste-greuze-drawings", "kind": "Video", "video_id": "RL7NmWVmSF0", "keywords": "", "youtube_id": "RL7NmWVmSF0", "readable_id": "jean-baptiste-greuze-drawings"}, "f7cX-Ar2cEM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f7cX-Ar2cEM.mp4/f7cX-Ar2cEM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f7cX-Ar2cEM.mp4/f7cX-Ar2cEM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f7cX-Ar2cEM.m3u8/f7cX-Ar2cEM.m3u8"}, "duration": 420, "id": "f7cX-Ar2cEM", "title": "Systems of three variables 2", "format": "mp4", "description": "Systems of Three Variables 2", "path": "khan/math/algebra2/systems_eq_ineq/fancier_systems_precalc/systems-of-three-variables-2/", "slug": "systems-of-three-variables-2", "kind": "Video", "video_id": "f7cX-Ar2cEM", "keywords": "u14_l3_t1_we2, Systems, of, Three, Variables, CC_39336_A-REI_6", "youtube_id": "f7cX-Ar2cEM", "readable_id": "systems-of-three-variables-2"}, "TQwe0Y4Ynjs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TQwe0Y4Ynjs.mp4/TQwe0Y4Ynjs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TQwe0Y4Ynjs.mp4/TQwe0Y4Ynjs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TQwe0Y4Ynjs.m3u8/TQwe0Y4Ynjs.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/electrical-conduction-in-heart-cells/", "duration": 466, "id": "TQwe0Y4Ynjs", "title": "Electrical conduction in heart cells", "format": "mp4", "description": "", "slug": "electrical-conduction-in-heart-cells", "kind": "Video", "video_id": "TQwe0Y4Ynjs", "keywords": "", "youtube_id": "TQwe0Y4Ynjs", "readable_id": "electrical-conduction-in-heart-cells"}, "dviyBH3pOk8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dviyBH3pOk8.mp4/dviyBH3pOk8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dviyBH3pOk8.mp4/dviyBH3pOk8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dviyBH3pOk8.m3u8/dviyBH3pOk8.m3u8"}, "duration": 226, "id": "dviyBH3pOk8", "title": "Different ways to represent 1 as a fraction", "format": "mp4", "description": "Use fraction models and a number line to represent 1 as a fraction.", "path": "different-ways-to-represent-1-as-a-fraction/", "slug": "different-ways-to-represent-1-as-a-fraction", "kind": "Video", "video_id": "dviyBH3pOk8", "keywords": "", "youtube_id": "dviyBH3pOk8", "readable_id": "different-ways-to-represent-1-as-a-fraction"}, "LSnZ0ZX60hI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LSnZ0ZX60hI.mp4/LSnZ0ZX60hI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LSnZ0ZX60hI.mp4/LSnZ0ZX60hI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LSnZ0ZX60hI.m3u8/LSnZ0ZX60hI.m3u8"}, "duration": 605, "id": "LSnZ0ZX60hI", "title": "Columbus, de Gama, and Zheng He! 15th Century Mariners", "format": "mp4", "description": "In which John Green teaches you about the beginning of the so-called Age of Discovery. You've probably heard of Christopher Columbus, who \"discovered\" America in 1492, but what about Vasco da Gama? How about Zheng He? Columbus gets a bad rap from many modern historians, but it turns out he was pretty important as far as the history of the world goes. That said, he wasn't the only pioneer plying the seas in the 1400s. In Portugal, Vasco da Gama was busy integrating Europe into the Indian Ocean Trade by sailing around Africa. Chinese admiral Zheng He was also traveling far and wide in the largest wooden ships ever built. Columbus, whether portrayed as hero or villain, is usually credited as the great sailor of the 15th century, but he definitely wasn't the only contender. What better way to settle this question than with a knock-down, drag-out, no holds barred, old-fashioned battle royal? We were going to make it a cage match, but welding is EXPENSIVE.", "path": "khan/humanities/history/crashcourse-worldhistory/road-trip-conquest-trade-2/crash-course-world-history-21/", "slug": "crash-course-world-history-21", "kind": "Video", "video_id": "LSnZ0ZX60hI", "keywords": "crash course", "youtube_id": "LSnZ0ZX60hI", "readable_id": "crash-course-world-history-21"}, "dpBA1lH39L8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dpBA1lH39L8.mp4/dpBA1lH39L8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dpBA1lH39L8.mp4/dpBA1lH39L8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dpBA1lH39L8.m3u8/dpBA1lH39L8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/breaking-down-diabetes/", "duration": 417, "id": "dpBA1lH39L8", "title": "Breaking down diabetes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "breaking-down-diabetes", "kind": "Video", "video_id": "dpBA1lH39L8", "keywords": "", "youtube_id": "dpBA1lH39L8", "readable_id": "breaking-down-diabetes"}, "H3tVuMFFQpM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H3tVuMFFQpM.mp4/H3tVuMFFQpM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H3tVuMFFQpM.mp4/H3tVuMFFQpM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H3tVuMFFQpM.m3u8/H3tVuMFFQpM.m3u8"}, "duration": 88, "id": "H3tVuMFFQpM", "title": "Sad angels", "format": "mp4", "description": "Kayla and Bryn talk about angels in a follower of Rogier van der Weyden's Deposition, c. 1490.\u00a0This is from an imaginative tour at the Getty Center: The Supernatural in Art. Love art? Follow us on Google+ to stay in touch.", "path": "sad-angels/", "slug": "sad-angels", "kind": "Video", "video_id": "H3tVuMFFQpM", "keywords": "", "youtube_id": "H3tVuMFFQpM", "readable_id": "sad-angels"}, "SMqERP-J2tQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SMqERP-J2tQ.mp4/SMqERP-J2tQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SMqERP-J2tQ.mp4/SMqERP-J2tQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SMqERP-J2tQ.m3u8/SMqERP-J2tQ.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/gaud-church-of-the-sagrada-fam-lia-1882-consecrated-2010-still-under-construction/", "duration": 339, "id": "SMqERP-J2tQ", "title": "Gaud\u00ed, Sagrada Fam\u00edlia", "format": "mp4", "description": "Antoni Gaud\u00ed, Church of the Sagrada Fam\u00edlia or Bas\u00edlica i Temple Expiatori de la Sagrada Fam\u00edlia Basilica, 1882- (consecrated 2010, but still under construction), Barcelona, Spain", "slug": "gaud-church-of-the-sagrada-fam-lia-1882-consecrated-2010-still-under-construction", "kind": "Video", "video_id": "SMqERP-J2tQ", "keywords": "Architecture, Spanish art, Barcelona", "youtube_id": "SMqERP-J2tQ", "readable_id": "gaud-church-of-the-sagrada-fam-lia-1882-consecrated-2010-still-under-construction"}, "fD7MbnXbTls": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fD7MbnXbTls.mp4/fD7MbnXbTls.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fD7MbnXbTls.mp4/fD7MbnXbTls.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fD7MbnXbTls.m3u8/fD7MbnXbTls.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/integrals-trig-substitution-2/", "duration": 491, "id": "fD7MbnXbTls", "title": "Integrals: Trig substitution 2", "format": "mp4", "description": "Another example of finding an anti-derivative using trigonometric substitution", "slug": "integrals-trig-substitution-2", "kind": "Video", "video_id": "fD7MbnXbTls", "keywords": "calculus, trig, substitution", "youtube_id": "fD7MbnXbTls", "readable_id": "integrals-trig-substitution-2"}, "VMEV__2wW3E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VMEV__2wW3E.mp4/VMEV__2wW3E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VMEV__2wW3E.mp4/VMEV__2wW3E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VMEV__2wW3E.m3u8/VMEV__2wW3E.m3u8"}, "duration": 237, "id": "VMEV__2wW3E", "title": "Deductive reasoning 2", "format": "mp4", "description": "Deductive Reasoning 2", "path": "khan/math/precalculus/seq_induction/deductive-and-inductive-reasoning/deductive-reasoning-2/", "slug": "deductive-reasoning-2", "kind": "Video", "video_id": "VMEV__2wW3E", "keywords": "U12_L1_T4_we2, Deductive, Reasoning, CC_39336_A-SSE_2", "youtube_id": "VMEV__2wW3E", "readable_id": "deductive-reasoning-2"}, "P7OYvxG_iFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P7OYvxG_iFc.mp4/P7OYvxG_iFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P7OYvxG_iFc.mp4/P7OYvxG_iFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P7OYvxG_iFc.m3u8/P7OYvxG_iFc.m3u8"}, "duration": 233, "id": "P7OYvxG_iFc", "title": "Fashion meets art: Jonathan Saunders inspired by Anthony Caro", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nFashion designer Jonathan Saunders staged his spring/summer collection 2014 at Tate Britain, inspired by the grandeur of its neo-classical architecture, as well as by the art within its walls. Walking through the galleries, he chose a favourite sculpture by Anthony Caro, Early One Morning\u00a0(1962)\u00a0to explore the relationship between form, colour and structure in art, and to think about how it relates to his own work with textiles.", "path": "jonathan-saunders-inspired-by-caro/", "slug": "jonathan-saunders-inspired-by-caro", "kind": "Video", "video_id": "P7OYvxG_iFc", "keywords": "Tate, Anthony Caro", "youtube_id": "P7OYvxG_iFc", "readable_id": "jonathan-saunders-inspired-by-caro"}, "Q0rGqxpOZM4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q0rGqxpOZM4.mp4/Q0rGqxpOZM4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q0rGqxpOZM4.mp4/Q0rGqxpOZM4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q0rGqxpOZM4.m3u8/Q0rGqxpOZM4.m3u8"}, "duration": 530, "id": "Q0rGqxpOZM4", "title": "Atomic hook-ups: Types of chemical bonds", "format": "mp4", "description": "Atoms are a lot like us - we call their relationships \"bonds,\" and there are many different types. Each kind of atomic relationship requires a different type of energy, but they all do best when they settle into the lowest stress situation possible. The nature of the bond between atoms is related to the distance between them and, like people, it also depends on how positive or negative they are. Unlike with human relationships, we can analyze exactly what makes chemical relationships work, and that's what this episode is all about. If you are paying attention, you will learn that chemical bonds form in order to minimize the energy difference between two atoms or ions; that those chemical bonds may be covalent if atoms share electrons, and that covalent bonds can share those electrons evenly or unevenly; that bonds can also be ionic if the electrons are transferred instead of shared: and how to calculate the energy transferred in an ionic bond using Coulomb's Law.\u00a0\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem22-chemical-bonds/", "slug": "chem22-chemical-bonds", "kind": "Video", "video_id": "Q0rGqxpOZM4", "keywords": "", "youtube_id": "Q0rGqxpOZM4", "readable_id": "chem22-chemical-bonds"}, "DMyhUb1pZT0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DMyhUb1pZT0.mp4/DMyhUb1pZT0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DMyhUb1pZT0.mp4/DMyhUb1pZT0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DMyhUb1pZT0.m3u8/DMyhUb1pZT0.m3u8"}, "duration": 147, "id": "DMyhUb1pZT0", "title": "Adding and subtracting polynomials 3", "format": "mp4", "description": "Adding and Subtracting Polynomials 3", "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/adding-and-subtracting-polynomials-3/", "slug": "adding-and-subtracting-polynomials-3", "kind": "Video", "video_id": "DMyhUb1pZT0", "keywords": "U08_L2_T2_we3, Adding, and, Subtracting, Polynomials, CC_39336_A-APR_1", "youtube_id": "DMyhUb1pZT0", "readable_id": "adding-and-subtracting-polynomials-3"}, "YqTbqKCiYJw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YqTbqKCiYJw.mp4/YqTbqKCiYJw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YqTbqKCiYJw.mp4/YqTbqKCiYJw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YqTbqKCiYJw.m3u8/YqTbqKCiYJw.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/tempera-paint/", "duration": 708, "id": "YqTbqKCiYJw", "title": "Tempera paint", "format": "mp4", "description": "Speakers: Dr. David Drogin and Dr. Steven Zucker", "slug": "tempera-paint", "kind": "Video", "video_id": "YqTbqKCiYJw", "keywords": "", "youtube_id": "YqTbqKCiYJw", "readable_id": "tempera-paint"}, "P9s3YA-glNk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P9s3YA-glNk.mp4/P9s3YA-glNk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P9s3YA-glNk.mp4/P9s3YA-glNk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P9s3YA-glNk.m3u8/P9s3YA-glNk.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/giotto-the-ognissanti-madonna-1306-10/", "duration": 245, "id": "P9s3YA-glNk", "title": "Giotto, The Ognissanti Madonna", "format": "mp4", "description": "Giotto, The Ognissanti Madonna, 1306-10, tempera on panel, 128 x 80 1/4\" (325 x 204 cm). Painted for the Church of Ognissanti, Florence Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "giotto-the-ognissanti-madonna-1306-10", "kind": "Video", "video_id": "P9s3YA-glNk", "keywords": "art history, art, Smarthistory, Giotto", "youtube_id": "P9s3YA-glNk", "readable_id": "giotto-the-ognissanti-madonna-1306-10"}, "5Cqbf86jTro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5Cqbf86jTro.mp4/5Cqbf86jTro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5Cqbf86jTro.mp4/5Cqbf86jTro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5Cqbf86jTro.m3u8/5Cqbf86jTro.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/sleeping-beauty-problem/", "duration": 397, "id": "5Cqbf86jTro", "title": "Epistemology: Sleeping Beauty", "format": "mp4", "description": "In this video, Michael introduces the Sleeping Beauty problem. This is a problem in formal epistemology about how to correctly assign probabilities to an odd scenario in which we flip a coin and, depending on the outcome, wake Sleeping Beauty up according to two different patterns. We\u2019ll discover some very strange consequences for our beliefs as a result.\n\nSpeaker: Michael Campbell, Duke University", "slug": "sleeping-beauty-problem", "kind": "Video", "video_id": "5Cqbf86jTro", "keywords": "", "youtube_id": "5Cqbf86jTro", "readable_id": "sleeping-beauty-problem"}, "KiVGac1aBt8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KiVGac1aBt8.mp4/KiVGac1aBt8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KiVGac1aBt8.mp4/KiVGac1aBt8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KiVGac1aBt8.m3u8/KiVGac1aBt8.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/cross-topic-arithmetic/rational-number-word-problem-example-3/", "duration": 248, "id": "KiVGac1aBt8", "title": "Rational number word problem with proportions", "format": "mp4", "description": "Use your knowledge of proportions and fractions to determine shareholders profit in this word problem.", "slug": "rational-number-word-problem-example-3", "kind": "Video", "video_id": "KiVGac1aBt8", "keywords": "", "youtube_id": "KiVGac1aBt8", "readable_id": "rational-number-word-problem-example-3"}, "ivg3dLTarbs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ivg3dLTarbs.mp4/ivg3dLTarbs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ivg3dLTarbs.mp4/ivg3dLTarbs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ivg3dLTarbs.m3u8/ivg3dLTarbs.m3u8"}, "duration": 503, "id": "ivg3dLTarbs", "title": "Conceptual understanding of flux in three dimensions", "format": "mp4", "description": "Conceptual understanding of flux across a two-dimensional surface", "path": "khan/math/multivariable-calculus/surface-integrals/3d_flux/conceputal-understanding-of-flux-in-three-dimensions/", "slug": "conceputal-understanding-of-flux-in-three-dimensions", "kind": "Video", "video_id": "ivg3dLTarbs", "keywords": "surface, integral, vector, calculus", "youtube_id": "ivg3dLTarbs", "readable_id": "conceputal-understanding-of-flux-in-three-dimensions"}, "VlaGxYjnoPY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VlaGxYjnoPY.mp4/VlaGxYjnoPY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VlaGxYjnoPY.mp4/VlaGxYjnoPY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VlaGxYjnoPY.m3u8/VlaGxYjnoPY.m3u8"}, "duration": 244, "id": "VlaGxYjnoPY", "title": "Mach numbers", "format": "mp4", "description": "Mach numbers", "path": "khan/science/physics/mechanical-waves-and-sound/sound-topic/mach-numbers/", "slug": "mach-numbers", "kind": "Video", "video_id": "VlaGxYjnoPY", "keywords": "mach, sound, speed", "youtube_id": "VlaGxYjnoPY", "readable_id": "mach-numbers"}, "kuTKfmgzGYI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kuTKfmgzGYI.mp4/kuTKfmgzGYI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kuTKfmgzGYI.mp4/kuTKfmgzGYI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kuTKfmgzGYI.m3u8/kuTKfmgzGYI.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-early/kairouan-unesco/", "duration": 179, "id": "kuTKfmgzGYI", "title": "Kairouan (from UNESCO)", "format": "mp4", "description": "\nFounded in 670, Kairouan flourished under the Aghlabid dynasty in the 9th century. Despite the transfer of the political capital to Tunis in the 12th century, Kairouan remained the Maghreb's principal holy city. Its rich architectural heritage includes the Great Mosque, with its marble and porphyry columns, and the 9th-century Mosque of the Three Gates.\nSource: UNESCO TV / \u00a9 NHK Nippon Hoso Kyokai (URL)\n", "slug": "kairouan-unesco", "kind": "Video", "video_id": "kuTKfmgzGYI", "keywords": "", "youtube_id": "kuTKfmgzGYI", "readable_id": "kairouan-unesco"}, "Jgliqx42_BA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jgliqx42_BA.mp4/Jgliqx42_BA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jgliqx42_BA.mp4/Jgliqx42_BA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jgliqx42_BA.m3u8/Jgliqx42_BA.m3u8"}, "path": "khan/partner-content/lebron-asks-subject/lebron-asks/lebron-asks-why-does-humidity-make-it-feel-hotter/", "duration": 394, "id": "Jgliqx42_BA", "title": "LeBron Asks: Why does humidity make it feel hotter?", "format": "mp4", "description": "LeBron asks Sal why humidity makes it feel so much hotter.", "slug": "lebron-asks-why-does-humidity-make-it-feel-hotter", "kind": "Video", "video_id": "Jgliqx42_BA", "keywords": "lebron, khan", "youtube_id": "Jgliqx42_BA", "readable_id": "lebron-asks-why-does-humidity-make-it-feel-hotter"}, "hfG8J_X1D5Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hfG8J_X1D5Q.mp4/hfG8J_X1D5Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hfG8J_X1D5Q.mp4/hfG8J_X1D5Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hfG8J_X1D5Q.m3u8/hfG8J_X1D5Q.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/cerebral-blood-supply-part-1/", "duration": 623, "id": "hfG8J_X1D5Q", "title": "Cerebral blood supply: Part 1", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "cerebral-blood-supply-part-1", "kind": "Video", "video_id": "hfG8J_X1D5Q", "keywords": "", "youtube_id": "hfG8J_X1D5Q", "readable_id": "cerebral-blood-supply-part-1"}, "HjwELgIh_qc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HjwELgIh_qc.mp4/HjwELgIh_qc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HjwELgIh_qc.mp4/HjwELgIh_qc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HjwELgIh_qc.m3u8/HjwELgIh_qc.m3u8"}, "path": "khan/humanities/medieval-world/byzantine1/venice-ravenna/sant-apollinare-in-classe/", "duration": 254, "id": "HjwELgIh_qc", "title": "Sant'Apollinare in Classe, Ravenna", "format": "mp4", "description": "Sant'Apollinare in Classe, Ravenna, Italy, c. 533-49 (apse mosaic, 6th century, triumphal arch mosaics, likely c. 7th-12th centuries) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "sant-apollinare-in-classe", "kind": "Video", "video_id": "HjwELgIh_qc", "keywords": "art history, Byzantine", "youtube_id": "HjwELgIh_qc", "readable_id": "sant-apollinare-in-classe"}, "wBCowBiXV7A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wBCowBiXV7A.mp4/wBCowBiXV7A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wBCowBiXV7A.mp4/wBCowBiXV7A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wBCowBiXV7A.m3u8/wBCowBiXV7A.m3u8"}, "duration": 217, "id": "wBCowBiXV7A", "title": "LIBOR", "format": "mp4", "description": "London InterBank Offer Rate", "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/libor/", "slug": "libor", "kind": "Video", "video_id": "wBCowBiXV7A", "keywords": "Libor, Federal, Funds, finance", "youtube_id": "wBCowBiXV7A", "readable_id": "libor"}, "cWn6g8Qqvs4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cWn6g8Qqvs4.mp4/cWn6g8Qqvs4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cWn6g8Qqvs4.mp4/cWn6g8Qqvs4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cWn6g8Qqvs4.m3u8/cWn6g8Qqvs4.m3u8"}, "duration": 332, "id": "cWn6g8Qqvs4", "title": "Multiplying complex numbers", "format": "mp4", "description": "Multiplying Complex Numbers", "path": "khan/math/precalculus/imaginary_complex_precalc/multiplying-dividing-complex/multiplying-complex-numbers/", "slug": "multiplying-complex-numbers", "kind": "Video", "video_id": "cWn6g8Qqvs4", "keywords": "u16_l4_t2_we3, Multiplying, Complex, Numbers", "youtube_id": "cWn6g8Qqvs4", "readable_id": "multiplying-complex-numbers"}, "IePCHjMeFkE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IePCHjMeFkE.mp4/IePCHjMeFkE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IePCHjMeFkE.mp4/IePCHjMeFkE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IePCHjMeFkE.m3u8/IePCHjMeFkE.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/calculus-derivatives-2-new-hd-version/", "duration": 508, "id": "IePCHjMeFkE", "title": "Calculating slope of tangent line using derivative definition", "format": "mp4", "description": "Calculus-Derivative: Finding the slope (or derivative) of a curve at a particular point.", "slug": "calculus-derivatives-2-new-hd-version", "kind": "Video", "video_id": "IePCHjMeFkE", "keywords": "slope, derivative, CC_8_EE_5", "youtube_id": "IePCHjMeFkE", "readable_id": "calculus-derivatives-2-new-hd-version"}, "8Amgakx5aII": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Amgakx5aII.mp4/8Amgakx5aII.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Amgakx5aII.mp4/8Amgakx5aII.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Amgakx5aII.m3u8/8Amgakx5aII.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/differential-equations-intro/creating-a-slope-field/", "duration": 352, "id": "8Amgakx5aII", "title": "Creating a slope field", "format": "mp4", "description": "", "slug": "creating-a-slope-field", "kind": "Video", "video_id": "8Amgakx5aII", "keywords": "", "youtube_id": "8Amgakx5aII", "readable_id": "creating-a-slope-field"}, "-u8xi7KFHY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-u8xi7KFHY4.mp4/-u8xi7KFHY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-u8xi7KFHY4.mp4/-u8xi7KFHY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-u8xi7KFHY4.m3u8/-u8xi7KFHY4.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-protection/science-education/conservation-and-the-race-to-save-biodiversity/", "duration": 724, "id": "-u8xi7KFHY4", "title": "Conservation and the race to save biodiversity", "format": "mp4", "description": "", "slug": "conservation-and-the-race-to-save-biodiversity", "kind": "Video", "video_id": "-u8xi7KFHY4", "keywords": "", "youtube_id": "-u8xi7KFHY4", "readable_id": "conservation-and-the-race-to-save-biodiversity"}, "IeUiL5vzSzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IeUiL5vzSzA.mp4/IeUiL5vzSzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IeUiL5vzSzA.mp4/IeUiL5vzSzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IeUiL5vzSzA.m3u8/IeUiL5vzSzA.m3u8"}, "path": "khan/humanities/art-1010/minimalism-earthworks/robert-morris-bodyspacemotionthings/", "duration": 212, "id": "IeUiL5vzSzA", "title": "Robert Morris: Bodyspacemotionthings at Tate Modern", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nParticipatory art was a new concept when the exhibition Bodyspacemotionthings first went on show at the Tate in 1971. Created by the American artist Robert Morris, it consists of a series of beams, weights, platforms, rollers, tunnels and ramps that people can clamber all over. It closed just four days after opening, due to safety concerns over the wildly enthusiastic reaction of the audience. Take a look at this 2009 recreation of the piece and listen as curators Catherine Wood and Kathy Noble talk about Morris's vision of art and participation.", "slug": "robert-morris-bodyspacemotionthings", "kind": "Video", "video_id": "IeUiL5vzSzA", "keywords": "Tate, performance art", "youtube_id": "IeUiL5vzSzA", "readable_id": "robert-morris-bodyspacemotionthings"}, "t2AeULH_Ijw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t2AeULH_Ijw.mp4/t2AeULH_Ijw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t2AeULH_Ijw.mp4/t2AeULH_Ijw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t2AeULH_Ijw.m3u8/t2AeULH_Ijw.m3u8"}, "duration": 244, "id": "t2AeULH_Ijw", "title": "Deflation despite increases in money supply", "format": "mp4", "description": "How you can have deflation even if the money supply increases", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/deflation-tutorial/deflation-despite-increases-in-money-supply/", "slug": "deflation-despite-increases-in-money-supply", "kind": "Video", "video_id": "t2AeULH_Ijw", "keywords": "deflation, inflation, japan", "youtube_id": "t2AeULH_Ijw", "readable_id": "deflation-despite-increases-in-money-supply"}, "bUstOWF_Ftc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bUstOWF_Ftc.mp4/bUstOWF_Ftc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bUstOWF_Ftc.mp4/bUstOWF_Ftc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bUstOWF_Ftc.m3u8/bUstOWF_Ftc.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/stress/responding-to-stress/", "duration": 526, "id": "bUstOWF_Ftc", "title": "Responding to stress", "format": "mp4", "description": "", "slug": "responding-to-stress", "kind": "Video", "video_id": "bUstOWF_Ftc", "keywords": "MCAT", "youtube_id": "bUstOWF_Ftc", "readable_id": "responding-to-stress"}, "6kGi1dvGZNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6kGi1dvGZNY.mp4/6kGi1dvGZNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6kGi1dvGZNY.mp4/6kGi1dvGZNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6kGi1dvGZNY.m3u8/6kGi1dvGZNY.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law-of-cosines-word-problem/", "duration": 360, "id": "6kGi1dvGZNY", "title": "Law of cosines for star distance", "format": "mp4", "description": "", "slug": "law-of-cosines-word-problem", "kind": "Video", "video_id": "6kGi1dvGZNY", "keywords": "", "youtube_id": "6kGi1dvGZNY", "readable_id": "law-of-cosines-word-problem"}, "4dpE80AU-oI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4dpE80AU-oI.mp4/4dpE80AU-oI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4dpE80AU-oI.mp4/4dpE80AU-oI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4dpE80AU-oI.m3u8/4dpE80AU-oI.m3u8"}, "path": "khan/humanities/art-americas/early-cultures/classic-veracruz/the-mesoamerican-ballgame-and-a-classic-veracruz-yoke/", "duration": 433, "id": "4dpE80AU-oI", "title": "The Mesoamerican Ballgame and a Classic Veracruz yoke", "format": "mp4", "description": "Yoke, c. 1 - 900 C.E., Classic Veracruz culture, greenstone, 11.5 x 38 x 41.5 cm (American Museum of Natural History)\n\nSpeakers: Dr. Rex Koontz and Dr. Steven Zucker", "slug": "the-mesoamerican-ballgame-and-a-classic-veracruz-yoke", "kind": "Video", "video_id": "4dpE80AU-oI", "keywords": "Mesoamerican ballgame Veracruz greenstone Mexico", "youtube_id": "4dpE80AU-oI", "readable_id": "the-mesoamerican-ballgame-and-a-classic-veracruz-yoke"}, "eajQ4ZY2r-U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eajQ4ZY2r-U.mp4/eajQ4ZY2r-U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eajQ4ZY2r-U.mp4/eajQ4ZY2r-U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eajQ4ZY2r-U.m3u8/eajQ4ZY2r-U.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/plotting-data-for-a-second-order-reaction/", "duration": 488, "id": "eajQ4ZY2r-U", "title": "Plotting data for a second-order reaction", "format": "mp4", "description": "", "slug": "plotting-data-for-a-second-order-reaction", "kind": "Video", "video_id": "eajQ4ZY2r-U", "keywords": "", "youtube_id": "eajQ4ZY2r-U", "readable_id": "plotting-data-for-a-second-order-reaction"}, "76KtDSfWnkw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/76KtDSfWnkw.mp4/76KtDSfWnkw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/76KtDSfWnkw.mp4/76KtDSfWnkw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/76KtDSfWnkw.m3u8/76KtDSfWnkw.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/syn-dihydroxylation/", "duration": 812, "id": "76KtDSfWnkw", "title": "Syn dihydroxylation", "format": "mp4", "description": "", "slug": "syn-dihydroxylation", "kind": "Video", "video_id": "76KtDSfWnkw", "keywords": "", "youtube_id": "76KtDSfWnkw", "readable_id": "syn-dihydroxylation"}, "QQhkEGp-YQQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QQhkEGp-YQQ.mp4/QQhkEGp-YQQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QQhkEGp-YQQ.mp4/QQhkEGp-YQQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QQhkEGp-YQQ.m3u8/QQhkEGp-YQQ.m3u8"}, "duration": 307, "id": "QQhkEGp-YQQ", "title": "Example 2: Factoring by grouping", "format": "mp4", "description": "U09_L1_T2_we2 Factoring Trinomials by Grouping 2", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-by-grouping/ex2-factoring-quad/", "slug": "ex2-factoring-quad", "kind": "Video", "video_id": "QQhkEGp-YQQ", "keywords": "U09_L1_T2_we2, Factoring, Trinomials, by, Grouping, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "QQhkEGp-YQQ", "readable_id": "ex2-factoring-quad"}, "rqubRA14Aww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rqubRA14Aww.mp4/rqubRA14Aww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rqubRA14Aww.mp4/rqubRA14Aww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rqubRA14Aww.m3u8/rqubRA14Aww.m3u8"}, "path": "khan/partner-content/big-history-project/life/other-materials5/bhp-life-italian-limestone/", "duration": 461, "id": "rqubRA14Aww", "title": "Life in Italian Limestone", "format": "mp4", "description": "Walter Alvarez shows how well-preserved limestone layers in the mountains of Italy offer a rare glimpse at Earth history and early forms of life.\u00a0", "slug": "bhp-life-italian-limestone", "kind": "Video", "video_id": "rqubRA14Aww", "keywords": "", "youtube_id": "rqubRA14Aww", "readable_id": "bhp-life-italian-limestone"}, "Y0ibXbKwN4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y0ibXbKwN4w.mp4/Y0ibXbKwN4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y0ibXbKwN4w.mp4/Y0ibXbKwN4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y0ibXbKwN4w.m3u8/Y0ibXbKwN4w.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/linda-jeschofnig/kauffman-linda-jeschofnig-1/", "duration": 163, "id": "Y0ibXbKwN4w", "title": "Creating a Poof and Not a Giant Kaboom", "format": "mp4", "description": "A passion for science education led Linda Jeschognig from her life in accounting to a second act as an entrepreneur. She talks about the inspiration behind Hands-on Labs and overcoming the obstacles with a company created to send kits containing hydrochloric acid, cobalt nitrate and other hazardous elements to college chemistry students. Along the way, Jeschofnig has gained support and reached out to guide other women on the entrepreneurial path.", "slug": "kauffman-linda-jeschofnig-1", "kind": "Video", "video_id": "Y0ibXbKwN4w", "keywords": "", "youtube_id": "Y0ibXbKwN4w", "readable_id": "kauffman-linda-jeschofnig-1"}, "OE0MMIyMTNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OE0MMIyMTNU.mp4/OE0MMIyMTNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OE0MMIyMTNU.mp4/OE0MMIyMTNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OE0MMIyMTNU.m3u8/OE0MMIyMTNU.m3u8"}, "duration": 654, "id": "OE0MMIyMTNU", "title": "Oxidation reduction or redox reactions", "format": "mp4", "description": "", "path": "khan/science/chemistry/oxidation-reduction/redox-oxidation-reduction/oxidation-reduction-or-redox-reactions/", "slug": "oxidation-reduction-or-redox-reactions", "kind": "Video", "video_id": "OE0MMIyMTNU", "keywords": "", "youtube_id": "OE0MMIyMTNU", "readable_id": "oxidation-reduction-or-redox-reactions"}, "D1cKk48kz-E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D1cKk48kz-E.mp4/D1cKk48kz-E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D1cKk48kz-E.mp4/D1cKk48kz-E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D1cKk48kz-E.m3u8/D1cKk48kz-E.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/one-step-inequalities-2/", "duration": 174, "id": "D1cKk48kz-E", "title": "Multiplying and dividing with inequalities example", "format": "mp4", "description": "In addition to solving the inequality, we'll graph the solution. Remember to swap if you mutiply both sides of the inequality by a negative number.", "slug": "one-step-inequalities-2", "kind": "Video", "video_id": "D1cKk48kz-E", "keywords": "u10_l2_t1_we3, One-Step, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_39336_A-CED_1, CC_39336_A-CED_3", "youtube_id": "D1cKk48kz-E", "readable_id": "one-step-inequalities-2"}, "FaDtge_vkbg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FaDtge_vkbg.mp4/FaDtge_vkbg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FaDtge_vkbg.mp4/FaDtge_vkbg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FaDtge_vkbg.m3u8/FaDtge_vkbg.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/finding-percentages-example/", "duration": 213, "id": "FaDtge_vkbg", "title": "Finding a percentage", "format": "mp4", "description": "Once again, fractions are our friends as we use them to find a percentage. You'll also see a couple of different ways to arrive at the answer.", "slug": "finding-percentages-example", "kind": "Video", "video_id": "FaDtge_vkbg", "keywords": "", "youtube_id": "FaDtge_vkbg", "readable_id": "finding-percentages-example"}, "fd1eLcFCxlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fd1eLcFCxlE.mp4/fd1eLcFCxlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fd1eLcFCxlE.mp4/fd1eLcFCxlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fd1eLcFCxlE.m3u8/fd1eLcFCxlE.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-1-running-distance/", "duration": 128, "id": "fd1eLcFCxlE", "title": "1 Running distance", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-1-running-distance", "kind": "Video", "video_id": "fd1eLcFCxlE", "keywords": "", "youtube_id": "fd1eLcFCxlE", "readable_id": "sat-1-running-distance"}, "jQ15tkoXZoA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jQ15tkoXZoA.mp4/jQ15tkoXZoA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jQ15tkoXZoA.mp4/jQ15tkoXZoA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jQ15tkoXZoA.m3u8/jQ15tkoXZoA.m3u8"}, "duration": 540, "id": "jQ15tkoXZoA", "title": "Making more pizzas to spread cost per pizza", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/one-variable-modeling/making-more-pizzas-to-spread-cost-per-pizza/", "slug": "making-more-pizzas-to-spread-cost-per-pizza", "kind": "Video", "video_id": "jQ15tkoXZoA", "keywords": "", "youtube_id": "jQ15tkoXZoA", "readable_id": "making-more-pizzas-to-spread-cost-per-pizza"}, "ihNZlp7iUHE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ihNZlp7iUHE.mp4/ihNZlp7iUHE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ihNZlp7iUHE.mp4/ihNZlp7iUHE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ihNZlp7iUHE.m3u8/ihNZlp7iUHE.m3u8"}, "duration": 519, "id": "ihNZlp7iUHE", "title": "Introduction to vectors and scalars", "format": "mp4", "description": "Distance, displacement, speed and velocity. Difference between vectors and scalars", "path": "khan/test-prep/mcat/physical-processes/vectors-and-scalars/introduction-to-vectors-and-scalars/", "slug": "introduction-to-vectors-and-scalars", "kind": "Video", "video_id": "ihNZlp7iUHE", "keywords": "physics, motion, kinematics", "youtube_id": "ihNZlp7iUHE", "readable_id": "introduction-to-vectors-and-scalars"}, "6QJtWfIiyZo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6QJtWfIiyZo.mp4/6QJtWfIiyZo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6QJtWfIiyZo.mp4/6QJtWfIiyZo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6QJtWfIiyZo.m3u8/6QJtWfIiyZo.m3u8"}, "duration": 585, "id": "6QJtWfIiyZo", "title": "Simplifying radicals", "format": "mp4", "description": "Using exponent rules to simplify radicals or square roots", "path": "khan/math/algebra-basics/core-algebra-foundations/square-roots-for-college/simplifying-radicals/", "slug": "simplifying-radicals", "kind": "Video", "video_id": "6QJtWfIiyZo", "keywords": "Math, radical, square, root, exponent, simplification", "youtube_id": "6QJtWfIiyZo", "readable_id": "simplifying-radicals"}, "rVQ3G9epCjw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rVQ3G9epCjw.mp4/rVQ3G9epCjw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rVQ3G9epCjw.mp4/rVQ3G9epCjw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rVQ3G9epCjw.m3u8/rVQ3G9epCjw.m3u8"}, "duration": 645, "id": "rVQ3G9epCjw", "title": "Proving vector dot product properties", "format": "mp4", "description": "Proving the \"associative\", \"distributive\" and \"commutative\" properties for vector dot products.", "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/proving-vector-dot-product-properties/", "slug": "proving-vector-dot-product-properties", "kind": "Video", "video_id": "rVQ3G9epCjw", "keywords": "vector, dot, product, length", "youtube_id": "rVQ3G9epCjw", "readable_id": "proving-vector-dot-product-properties"}, "74oju-0NExU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/74oju-0NExU.mp4/74oju-0NExU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/74oju-0NExU.mp4/74oju-0NExU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/74oju-0NExU.m3u8/74oju-0NExU.m3u8"}, "path": "khan/math/algebra2/conics_precalc/conics_precalc_eqs/algebra-conic-sections/", "duration": 811, "id": "74oju-0NExU", "title": "Hyperbola and parabola examples", "format": "mp4", "description": "Parabola, Hyperbolas, etc.", "slug": "algebra-conic-sections", "kind": "Video", "video_id": "74oju-0NExU", "keywords": "algebra, conic, sections, hyperbola, parabola, vertex", "youtube_id": "74oju-0NExU", "readable_id": "algebra-conic-sections"}, "D_smr0GBPvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D_smr0GBPvA.mp4/D_smr0GBPvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D_smr0GBPvA.mp4/D_smr0GBPvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D_smr0GBPvA.m3u8/D_smr0GBPvA.m3u8"}, "duration": 208, "id": "D_smr0GBPvA", "title": "Double angle formula for cosine example", "format": "mp4", "description": "", "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formulas-trig/double-angle-formula-for-cosine-example-c/", "slug": "double-angle-formula-for-cosine-example-c", "kind": "Video", "video_id": "D_smr0GBPvA", "keywords": "", "youtube_id": "D_smr0GBPvA", "readable_id": "double-angle-formula-for-cosine-example-c"}, "UR4Zr0hE-As": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UR4Zr0hE-As.mp4/UR4Zr0hE-As.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UR4Zr0hE-As.mp4/UR4Zr0hE-As.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UR4Zr0hE-As.m3u8/UR4Zr0hE-As.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-18/", "duration": 665, "id": "UR4Zr0hE-As", "title": "GMAT: Data sufficiency 18", "format": "mp4", "description": "80-83, pg. 284", "slug": "gmat-data-sufficiency-18", "kind": "Video", "video_id": "UR4Zr0hE-As", "keywords": "gmat, data, sufficiency", "youtube_id": "UR4Zr0hE-As", "readable_id": "gmat-data-sufficiency-18"}, "eNhrYgYV0MA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eNhrYgYV0MA.mp4/eNhrYgYV0MA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eNhrYgYV0MA.mp4/eNhrYgYV0MA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eNhrYgYV0MA.m3u8/eNhrYgYV0MA.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/edouard-manet-in-the-conservatory-1878-1879/", "duration": 205, "id": "eNhrYgYV0MA", "title": "Manet, In the Conservatory", "format": "mp4", "description": "Edouard Manet, In the Conservatory, 1878-1879, oil on canvas, 115 x 150 cm (Alte Nationalgalerie, Staatliche Museen zu Berlin)", "slug": "edouard-manet-in-the-conservatory-1878-1879", "kind": "Video", "video_id": "eNhrYgYV0MA", "keywords": "Manet, Conservatory, GAP, Edouard Manet, In the Conservatory, 1878, 1879, Alte Nationalgalerie, Berlin, Paris, Realism, Impressionism, Bourgeois, New Painting, Google Art Project, Smarthistory, Khan Academy, OER, Art History, Painting, Art, Painterly, brushwork, fashion, French, France", "youtube_id": "eNhrYgYV0MA", "readable_id": "edouard-manet-in-the-conservatory-1878-1879"}, "x-bWkfve9k4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x-bWkfve9k4.mp4/x-bWkfve9k4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x-bWkfve9k4.mp4/x-bWkfve9k4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x-bWkfve9k4.m3u8/x-bWkfve9k4.m3u8"}, "duration": 151, "id": "x-bWkfve9k4", "title": "\"Motion Picture\" with Asher Miller", "format": "mp4", "description": "Met curator Asher Miller on improvisation in Eug\u00e8ne Delacroix\u2019s The Abduction of Rebecca.\n\nThroughout his career, Delacroix was inspired by the novels of Sir Walter Scott, a favorite author of the French Romantics. This painting depicts a scene from Ivanhoe: the Jewish heroine Rebecca, who had been confined in the castle of Front de Boeuf (seen in flames), is carried off by two Saracen slaves commanded by the covetous Christian knight Bois-Guilbert. The contorted, interlocking poses and compacted space, which shifts abruptly from the elevated foregound to the fortress behind, create a sense of intense drama. Apart from the still life at lower left, the only element of calm is Rebecca herself.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an educator resource.\n", "path": "motion-picture/", "slug": "motion-picture", "kind": "Video", "video_id": "x-bWkfve9k4", "keywords": "canvas, confidence, defeat, motion, painting, turmoil, Europe", "youtube_id": "x-bWkfve9k4", "readable_id": "motion-picture"}, "HeUuToFuao0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HeUuToFuao0.mp4/HeUuToFuao0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HeUuToFuao0.mp4/HeUuToFuao0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HeUuToFuao0.m3u8/HeUuToFuao0.m3u8"}, "duration": 660, "id": "HeUuToFuao0", "title": "Partial pressure & vapor pressure", "format": "mp4", "description": "This week we continue to spend quality time with gases, more deeply investigating some principles regarding pressure - including John Dalton's Law of Partial Pressures, vapor pressure - and demonstrating the method for collecting gas over water.\nWriter: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nB-Camera Operator: Henry Reich\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem15-partial-pressure-vapor-pressure/", "slug": "chem15-partial-pressure-vapor-pressure", "kind": "Video", "video_id": "HeUuToFuao0", "keywords": "", "youtube_id": "HeUuToFuao0", "readable_id": "chem15-partial-pressure-vapor-pressure"}, "Jhu1M53AF0E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jhu1M53AF0E.mp4/Jhu1M53AF0E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jhu1M53AF0E.mp4/Jhu1M53AF0E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jhu1M53AF0E.m3u8/Jhu1M53AF0E.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/evaluating-line-integral-directly-part-2/", "duration": 383, "id": "Jhu1M53AF0E", "title": "Evaluating line integral directly - part 2", "format": "mp4", "description": "Finishing up the line integral with a little trigonometric integration", "slug": "evaluating-line-integral-directly-part-2", "kind": "Video", "video_id": "Jhu1M53AF0E", "keywords": "", "youtube_id": "Jhu1M53AF0E", "readable_id": "evaluating-line-integral-directly-part-2"}, "HEiO1n_zMLk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HEiO1n_zMLk.mp4/HEiO1n_zMLk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HEiO1n_zMLk.mp4/HEiO1n_zMLk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HEiO1n_zMLk.m3u8/HEiO1n_zMLk.m3u8"}, "duration": 355, "id": "HEiO1n_zMLk", "title": "Finding the best deal on pesticides", "format": "mp4", "description": "", "path": "khan/math/algebra/introduction-to-algebra/units-algebra/finding-the-best-deal-on-pesticides/", "slug": "finding-the-best-deal-on-pesticides", "kind": "Video", "video_id": "HEiO1n_zMLk", "keywords": "", "youtube_id": "HEiO1n_zMLk", "readable_id": "finding-the-best-deal-on-pesticides"}, "Z7C69xP08d8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z7C69xP08d8.mp4/Z7C69xP08d8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z7C69xP08d8.mp4/Z7C69xP08d8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z7C69xP08d8.m3u8/Z7C69xP08d8.m3u8"}, "duration": 204, "id": "Z7C69xP08d8", "title": "Ex 2: Multi-step equation", "format": "mp4", "description": "Turning a non-linear equation into a linear one.", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/complicated_equations/ex-2-multi-step-equation/", "slug": "ex-2-multi-step-equation", "kind": "Video", "video_id": "Z7C69xP08d8", "keywords": "", "youtube_id": "Z7C69xP08d8", "readable_id": "ex-2-multi-step-equation"}, "_X5erR9LKUs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_X5erR9LKUs.mp4/_X5erR9LKUs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_X5erR9LKUs.mp4/_X5erR9LKUs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_X5erR9LKUs.m3u8/_X5erR9LKUs.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/the-monty-hall-problem/", "duration": 258, "id": "_X5erR9LKUs", "title": "Probability: The Monty Hall Problem", "format": "mp4", "description": "The Monty Hall problem is a strange result arising from a very simple situation. In this video, Bryce Gessell explains why it seems so counterintuitive and why the solution isn't counterintuitive at all.\n\nSpeaker: Bryce Gessell, Duke University", "slug": "the-monty-hall-problem", "kind": "Video", "video_id": "_X5erR9LKUs", "keywords": "", "youtube_id": "_X5erR9LKUs", "readable_id": "the-monty-hall-problem"}, "3jvQrpVQaYM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3jvQrpVQaYM.mp4/3jvQrpVQaYM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3jvQrpVQaYM.mp4/3jvQrpVQaYM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3jvQrpVQaYM.m3u8/3jvQrpVQaYM.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/intro-to-critical-thinking-deductive-arguments/", "duration": 343, "id": "3jvQrpVQaYM", "title": "Fundamentals: Deductive arguments", "format": "mp4", "description": "In this video, Geoff Pynn follows up on his introduction to critical thinking by exploring how deductive arguments give us reason to believe their conclusions. \u00a0Good deductive arguments guarantee their conclusions, and so must be valid (i.e., it must be impossible for the premises to be true while the conclusion is false) and have true premises. \u00a0Philosophers call arguments like these \"sound\". \u00a0You can see whether an argument is sound by trying to think of a counterexample to it, but to see whether its premises are true, you need to do some research.\n\nSpeaker: Dr. Geoff Pynn, Assistant Professor, Northern\u00a0llinois\u00a0University", "slug": "intro-to-critical-thinking-deductive-arguments", "kind": "Video", "video_id": "3jvQrpVQaYM", "keywords": "", "youtube_id": "3jvQrpVQaYM", "readable_id": "intro-to-critical-thinking-deductive-arguments"}, "Oc1XmBVyXMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oc1XmBVyXMk.mp4/Oc1XmBVyXMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oc1XmBVyXMk.mp4/Oc1XmBVyXMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oc1XmBVyXMk.m3u8/Oc1XmBVyXMk.m3u8"}, "duration": 305, "id": "Oc1XmBVyXMk", "title": "Marking data on line plots", "format": "mp4", "description": "Show measurements on line plots (also called dot plots).", "path": "marking-data-on-line-plots/", "slug": "marking-data-on-line-plots", "kind": "Video", "video_id": "Oc1XmBVyXMk", "keywords": "", "youtube_id": "Oc1XmBVyXMk", "readable_id": "marking-data-on-line-plots"}, "6brUGBR6ll0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6brUGBR6ll0.mp4/6brUGBR6ll0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6brUGBR6ll0.mp4/6brUGBR6ll0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6brUGBR6ll0.m3u8/6brUGBR6ll0.m3u8"}, "duration": 37, "id": "6brUGBR6ll0", "title": "How are dinosaur fossils prepared in the laboratory?", "format": "mp4", "description": "Fossil preparators are highly skilled technicians who restore the naturally fractured bones and teeth of fossil to the original state, just as art conservators restore damaged paintings and sculptures. When fossils arrive from the field, they are encased in plaster jackets and the rock\u2014or matrix\u2014which was deposited around the fossils. Fossil preparation involves cutting open the plaster jacket and removing this matrix surrounding the fossil. The matrix may be soft and crumbly, when the sand or mud is poorly cemented together, or it can be extremely hard, when the sediments are well cemented.", "path": "dinosaur-fossils-lab/", "slug": "dinosaur-fossils-lab", "kind": "Video", "video_id": "6brUGBR6ll0", "keywords": "", "youtube_id": "6brUGBR6ll0", "readable_id": "dinosaur-fossils-lab"}, "dMzX3odi1K8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dMzX3odi1K8.mp4/dMzX3odi1K8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dMzX3odi1K8.mp4/dMzX3odi1K8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dMzX3odi1K8.m3u8/dMzX3odi1K8.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/mars-odyssey/", "duration": 73, "id": "dMzX3odi1K8", "title": "Mars odyssey", "format": "mp4", "description": "", "slug": "mars-odyssey", "kind": "Video", "video_id": "dMzX3odi1K8", "keywords": "", "youtube_id": "dMzX3odi1K8", "readable_id": "mars-odyssey"}, "3HAMk_ZYO7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3HAMk_ZYO7g.mp4/3HAMk_ZYO7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3HAMk_ZYO7g.mp4/3HAMk_ZYO7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3HAMk_ZYO7g.m3u8/3HAMk_ZYO7g.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/killing-animals-for-food/", "duration": 557, "id": "3HAMk_ZYO7g", "title": "Ethics: Killing animals for food", "format": "mp4", "description": "In this video, Tyler asks why it is morally permissible to kill animals for food. He offers a few explanations that seem unsatisfactory. So, he asks you for help answering this question about animals ethics.\n\nSpeaker: Tyler Doggett", "slug": "killing-animals-for-food", "kind": "Video", "video_id": "3HAMk_ZYO7g", "keywords": "", "youtube_id": "3HAMk_ZYO7g", "readable_id": "killing-animals-for-food"}, "ejIjaaocVvE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ejIjaaocVvE.mp4/ejIjaaocVvE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ejIjaaocVvE.mp4/ejIjaaocVvE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ejIjaaocVvE.m3u8/ejIjaaocVvE.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-15/", "duration": 663, "id": "ejIjaaocVvE", "title": "GMAT: Data sufficiency 15", "format": "mp4", "description": "68-72, pg. 283", "slug": "gmat-data-sufficiency-15", "kind": "Video", "video_id": "ejIjaaocVvE", "keywords": "GMAT, data, sufficiency, math", "youtube_id": "ejIjaaocVvE", "readable_id": "gmat-data-sufficiency-15"}, "fVIZmOQBS5M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fVIZmOQBS5M.mp4/fVIZmOQBS5M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fVIZmOQBS5M.mp4/fVIZmOQBS5M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fVIZmOQBS5M.m3u8/fVIZmOQBS5M.m3u8"}, "duration": 191, "id": "fVIZmOQBS5M", "title": "Example 3: Factoring by grouping", "format": "mp4", "description": "Factoring simple quadratic expressions", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-by-grouping/u09-l1-t2-we3-factoring-trinomials/", "slug": "u09-l1-t2-we3-factoring-trinomials", "kind": "Video", "video_id": "fVIZmOQBS5M", "keywords": "U09_L1_T2_we3, Factoring, Trinomials, by, Grouping, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "fVIZmOQBS5M", "readable_id": "u09-l1-t2-we3-factoring-trinomials"}, "vfMx9-rJXuo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vfMx9-rJXuo.mp4/vfMx9-rJXuo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vfMx9-rJXuo.mp4/vfMx9-rJXuo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vfMx9-rJXuo.m3u8/vfMx9-rJXuo.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/mult-div-concept/more-on-the-concept-of-multiplication/", "duration": 329, "id": "vfMx9-rJXuo", "title": "More on the concept of multiplication", "format": "mp4", "description": "Use arrays and repeated addition to multiply.\u00a0", "slug": "more-on-the-concept-of-multiplication", "kind": "Video", "video_id": "vfMx9-rJXuo", "keywords": "", "youtube_id": "vfMx9-rJXuo", "readable_id": "more-on-the-concept-of-multiplication"}, "0VARkb_n-Bs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0VARkb_n-Bs.mp4/0VARkb_n-Bs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0VARkb_n-Bs.mp4/0VARkb_n-Bs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0VARkb_n-Bs.m3u8/0VARkb_n-Bs.m3u8"}, "duration": 76, "id": "0VARkb_n-Bs", "title": "Reflecting line across another line example", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/properties-definitions-of-translations/reflecting-line-across-another-line-example/", "slug": "reflecting-line-across-another-line-example", "kind": "Video", "video_id": "0VARkb_n-Bs", "keywords": "", "youtube_id": "0VARkb_n-Bs", "readable_id": "reflecting-line-across-another-line-example"}, "--ezF4qkjxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/--ezF4qkjxg.mp4/--ezF4qkjxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/--ezF4qkjxg.mp4/--ezF4qkjxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/--ezF4qkjxg.m3u8/--ezF4qkjxg.m3u8"}, "duration": 56, "id": "--ezF4qkjxg", "title": "Frequency stability", "format": "mp4", "description": "Is there a difference between a coinflip and a \"random\" guess?", "path": "khan/math/recreational-math/math-warmup/independent-events-warmup/frequency-stability-1/", "slug": "frequency-stability-1", "kind": "Video", "video_id": "--ezF4qkjxg", "keywords": "", "youtube_id": "--ezF4qkjxg", "readable_id": "frequency-stability-1"}, "wx2gI8iwMCA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wx2gI8iwMCA.mp4/wx2gI8iwMCA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wx2gI8iwMCA.mp4/wx2gI8iwMCA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wx2gI8iwMCA.m3u8/wx2gI8iwMCA.m3u8"}, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-tens/place-value-introduction/", "duration": 359, "id": "wx2gI8iwMCA", "title": "Introduction to place value", "format": "mp4", "description": "Learn why we use a \"ones place\" and a \"tens place\" when writing numbers. This video uses the number 37 as an example.", "slug": "place-value-introduction", "kind": "Video", "video_id": "wx2gI8iwMCA", "keywords": "", "youtube_id": "wx2gI8iwMCA", "readable_id": "place-value-introduction"}, "-2HwisGonfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-2HwisGonfc.mp4/-2HwisGonfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-2HwisGonfc.mp4/-2HwisGonfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-2HwisGonfc.m3u8/-2HwisGonfc.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/rect-form/adding-vectors-exercise-example/", "duration": 89, "id": "-2HwisGonfc", "title": "Adding vectors exercise example", "format": "mp4", "description": "", "slug": "adding-vectors-exercise-example", "kind": "Video", "video_id": "-2HwisGonfc", "keywords": "", "youtube_id": "-2HwisGonfc", "readable_id": "adding-vectors-exercise-example"}, "W20SoZiJOHU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W20SoZiJOHU.mp4/W20SoZiJOHU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W20SoZiJOHU.mp4/W20SoZiJOHU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W20SoZiJOHU.m3u8/W20SoZiJOHU.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/functions-defined-by-integrals/integral-defined-function-0/", "duration": 585, "id": "W20SoZiJOHU", "title": "When an integral defined function is 0", "format": "mp4", "description": "", "slug": "integral-defined-function-0", "kind": "Video", "video_id": "W20SoZiJOHU", "keywords": "", "youtube_id": "W20SoZiJOHU", "readable_id": "integral-defined-function-0"}, "sQYpUJV8foY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sQYpUJV8foY.mp4/sQYpUJV8foY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sQYpUJV8foY.mp4/sQYpUJV8foY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sQYpUJV8foY.m3u8/sQYpUJV8foY.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/continuous_compounding/compound-interest-and-e-part-3/", "duration": 604, "id": "sQYpUJV8foY", "title": "Compound interest and e (part 3)", "format": "mp4", "description": "Continuously compounding $P in principal at an annual interest rate of r for a year ends up with a final payment of $Pe^r", "slug": "compound-interest-and-e-part-3", "kind": "Video", "video_id": "sQYpUJV8foY", "keywords": "continuous, compounding, interest, math, finance", "youtube_id": "sQYpUJV8foY", "readable_id": "compound-interest-and-e-part-3"}, "1_ymCFwbGGY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1_ymCFwbGGY.mp4/1_ymCFwbGGY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1_ymCFwbGGY.mp4/1_ymCFwbGGY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1_ymCFwbGGY.m3u8/1_ymCFwbGGY.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-5-book-costs/", "duration": 181, "id": "1_ymCFwbGGY", "title": "5 Book costs", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-5-book-costs", "kind": "Video", "video_id": "1_ymCFwbGGY", "keywords": "", "youtube_id": "1_ymCFwbGGY", "readable_id": "sat-5-book-costs"}, "Ei54NnQ0FKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ei54NnQ0FKs.mp4/Ei54NnQ0FKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ei54NnQ0FKs.mp4/Ei54NnQ0FKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ei54NnQ0FKs.m3u8/Ei54NnQ0FKs.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law-of-cosines-missing-angle/", "duration": 401, "id": "Ei54NnQ0FKs", "title": "Law of cosines to determine grade", "format": "mp4", "description": "", "slug": "law-of-cosines-missing-angle", "kind": "Video", "video_id": "Ei54NnQ0FKs", "keywords": "", "youtube_id": "Ei54NnQ0FKs", "readable_id": "law-of-cosines-missing-angle"}, "11dNghWC4HI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/11dNghWC4HI.mp4/11dNghWC4HI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/11dNghWC4HI.mp4/11dNghWC4HI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/11dNghWC4HI.m3u8/11dNghWC4HI.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/eigen_everything/linear-algebra-eigenvalues-of-a-3x3-matrix/", "duration": 848, "id": "11dNghWC4HI", "title": "Eigenvalues of a 3x3 matrix", "format": "mp4", "description": "Determining the eigenvalues of a 3x3 matrix", "slug": "linear-algebra-eigenvalues-of-a-3x3-matrix", "kind": "Video", "video_id": "11dNghWC4HI", "keywords": "eigenvalue, eigenvector", "youtube_id": "11dNghWC4HI", "readable_id": "linear-algebra-eigenvalues-of-a-3x3-matrix"}, "Touv2APcBRw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Touv2APcBRw.mp4/Touv2APcBRw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Touv2APcBRw.mp4/Touv2APcBRw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Touv2APcBRw.m3u8/Touv2APcBRw.m3u8"}, "duration": 286, "id": "Touv2APcBRw", "title": "Factoring sum of cubes", "format": "mp4", "description": "Factoring Sum of Cubes", "path": "khan/math/algebra2/polynomial_and_rational/factoring-higher-deg-polynomials/factoring-sum-of-cubes/", "slug": "factoring-sum-of-cubes", "kind": "Video", "video_id": "Touv2APcBRw", "keywords": "u12_l2_t3_we1, Factoring, Sum, of, Cubes, CC_39336_A-SSE_1_a, CC_39336_A-SSE_1_b, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "Touv2APcBRw", "readable_id": "factoring-sum-of-cubes"}, "ons-gYLeNjU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ons-gYLeNjU.mp4/ons-gYLeNjU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ons-gYLeNjU.mp4/ons-gYLeNjU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ons-gYLeNjU.m3u8/ons-gYLeNjU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/transposition-of-great-arteries/", "duration": 318, "id": "ons-gYLeNjU", "title": "Transposition of great arteries", "format": "mp4", "description": "", "slug": "transposition-of-great-arteries", "kind": "Video", "video_id": "ons-gYLeNjU", "keywords": "", "youtube_id": "ons-gYLeNjU", "readable_id": "transposition-of-great-arteries"}, "Z-zDGIEPxUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z-zDGIEPxUo.mp4/Z-zDGIEPxUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z-zDGIEPxUo.mp4/Z-zDGIEPxUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z-zDGIEPxUo.m3u8/Z-zDGIEPxUo.m3u8"}, "duration": 273, "id": "Z-zDGIEPxUo", "title": "The Folkestone Mermaid and the model figure", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn a piece for the Folkestone Triennial 2011, artist Cornelia Parker immortalised one local woman in a sculpture perched upon a seaside rock. Parker selected 38-year-old mother of two Georgina Baker as the model of her version of Copenhagen\u2019s Little Mermaid sculpture. Danish artist Edvard Eriksen\u2019s original was cast in 1913, and he created its dainty fairy-tale figure by fusing the physical characteristics of his wife and a ballerina. Parker, on the other hand, modelled her sculpture in the image of a real woman, casting her body in bronze with complete realism, both imbuing her figure with monumentality while turning an idealised character into a real person.\nWhat do you think Parker is encouraging us to think about with this sculpture? Is she defying the notion that only idealised female bodies have a place in art, or perhaps encouraging us to see the everyday as something more heroic?\n\nRead more about Cornelia Parker and explore her work in the Tate collection here.\n", "path": "cornelia-parkers-folkestone-mermaid/", "slug": "cornelia-parkers-folkestone-mermaid", "kind": "Video", "video_id": "Z-zDGIEPxUo", "keywords": "Tate", "youtube_id": "Z-zDGIEPxUo", "readable_id": "cornelia-parkers-folkestone-mermaid"}, "1op92ojA6q0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1op92ojA6q0.mp4/1op92ojA6q0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1op92ojA6q0.mp4/1op92ojA6q0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1op92ojA6q0.m3u8/1op92ojA6q0.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/copy-of-cc-6th-coordinate-plane/quadrants-of-coordinate-plane/", "duration": 144, "id": "1op92ojA6q0", "title": "Coordinate plane: quadrants", "format": "mp4", "description": "You like dividing up a pizza into slices? In geometry, we slice up the coordinate plane into quadrants. Although these are more like squares than triangular pizza slices! Let's learn about them.", "slug": "quadrants-of-coordinate-plane", "kind": "Video", "video_id": "1op92ojA6q0", "keywords": "u13_l1_t1_we2, Quadrants, of, Coordinate, Plane, CC_6_NS_6, CC_6_NS_6_b, CC_6_NS_6_c", "youtube_id": "1op92ojA6q0", "readable_id": "quadrants-of-coordinate-plane"}, "4Q2oqG6S4Mk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Q2oqG6S4Mk.mp4/4Q2oqG6S4Mk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Q2oqG6S4Mk.mp4/4Q2oqG6S4Mk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Q2oqG6S4Mk.m3u8/4Q2oqG6S4Mk.m3u8"}, "duration": 95, "id": "4Q2oqG6S4Mk", "title": "Introduction to intaglio", "format": "mp4", "description": "What's the difference between etching and drypoint?\u00a0Did you know that MoMA offers studio courses online?\u00a0Check out the\u00a0list\u00a0of offerings including online courses on collage and painting techniques.", "path": "khan/humanities/art-history-basics/artists-materials-techniques/printmaking/moma-intro-to-intaglio/", "slug": "moma-intro-to-intaglio", "kind": "Video", "video_id": "4Q2oqG6S4Mk", "keywords": "", "youtube_id": "4Q2oqG6S4Mk", "readable_id": "moma-intro-to-intaglio"}, "snX4Wf7PGts": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/snX4Wf7PGts.mp4/snX4Wf7PGts.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/snX4Wf7PGts.mp4/snX4Wf7PGts.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/snX4Wf7PGts.m3u8/snX4Wf7PGts.m3u8"}, "duration": 231, "id": "snX4Wf7PGts", "title": "Deflationary spiral", "format": "mp4", "description": "Basics of a deflationary spiral", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/deflation-tutorial/deflationary-spiral/", "slug": "deflationary-spiral", "kind": "Video", "video_id": "snX4Wf7PGts", "keywords": "finance, depression", "youtube_id": "snX4Wf7PGts", "readable_id": "deflationary-spiral"}, "fsaRisPpzjU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fsaRisPpzjU.mp4/fsaRisPpzjU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fsaRisPpzjU.mp4/fsaRisPpzjU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fsaRisPpzjU.m3u8/fsaRisPpzjU.m3u8"}, "duration": 37, "id": "fsaRisPpzjU", "title": "Art Terms in Action: Turpentine Burn", "format": "mp4", "description": "Abstract Expressionist New YorkTo experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.\u00a0", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-turpentine-burn/", "slug": "moma-art-term-turpentine-burn", "kind": "Video", "video_id": "fsaRisPpzjU", "keywords": "", "youtube_id": "fsaRisPpzjU", "readable_id": "moma-art-term-turpentine-burn"}, "t4zfiBw0hwM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t4zfiBw0hwM.mp4/t4zfiBw0hwM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t4zfiBw0hwM.mp4/t4zfiBw0hwM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t4zfiBw0hwM.m3u8/t4zfiBw0hwM.m3u8"}, "path": "khan/economics-finance-domain/core-finance/interest-tutorial/interest-basics-tutorial/interest-part-2/", "duration": 481, "id": "t4zfiBw0hwM", "title": "Interest (part 2)", "format": "mp4", "description": "More on simple and compound interest", "slug": "interest-part-2", "kind": "Video", "video_id": "t4zfiBw0hwM", "keywords": "simple, compound, interest, math, finance, money, CC_39336_A-SSE_3_c", "youtube_id": "t4zfiBw0hwM", "readable_id": "interest-part-2"}, "pSSqUF_mmtM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pSSqUF_mmtM.mp4/pSSqUF_mmtM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pSSqUF_mmtM.mp4/pSSqUF_mmtM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pSSqUF_mmtM.m3u8/pSSqUF_mmtM.m3u8"}, "duration": 428, "id": "pSSqUF_mmtM", "title": "Derivative of triple composition", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-visual-triple-comp/", "slug": "chain-rule-visual-triple-comp", "kind": "Video", "video_id": "pSSqUF_mmtM", "keywords": "", "youtube_id": "pSSqUF_mmtM", "readable_id": "chain-rule-visual-triple-comp"}, "eQjpTvM4lR0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eQjpTvM4lR0.mp4/eQjpTvM4lR0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eQjpTvM4lR0.mp4/eQjpTvM4lR0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eQjpTvM4lR0.m3u8/eQjpTvM4lR0.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-may-4-3/", "duration": 148, "id": "eQjpTvM4lR0", "title": "3 Letter in pattern", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-may-4-3", "kind": "Video", "video_id": "eQjpTvM4lR0", "keywords": "", "youtube_id": "eQjpTvM4lR0", "readable_id": "sat-may-4-3"}, "yrxAKGGEWZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yrxAKGGEWZY.mp4/yrxAKGGEWZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yrxAKGGEWZY.mp4/yrxAKGGEWZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yrxAKGGEWZY.m3u8/yrxAKGGEWZY.m3u8"}, "duration": 563, "id": "yrxAKGGEWZY", "title": "The hydrologic and carbon cycles: Always recycle!", "format": "mp4", "description": "", "path": "crash-course-ecology-08/", "slug": "crash-course-ecology-08", "kind": "Video", "video_id": "yrxAKGGEWZY", "keywords": "", "youtube_id": "yrxAKGGEWZY", "readable_id": "crash-course-ecology-08"}, "thvh5PdR6yM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/thvh5PdR6yM.mp4/thvh5PdR6yM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/thvh5PdR6yM.mp4/thvh5PdR6yM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/thvh5PdR6yM.m3u8/thvh5PdR6yM.m3u8"}, "path": "khan/humanities/art-asia/korea-japan/korean-art/korean-buddhist-art/", "duration": 332, "id": "thvh5PdR6yM", "title": "Korean Buddhist art", "format": "mp4", "description": "This video documents the creation of a Buddhist painting by the monk artist, Seol-min (formerly known as Jae-u), who has dedicated her life to keeping the tradition of Buddhist painting alive. Learn more about Korean Buddhism on the Asian Art Museum's education website.\u00a0", "slug": "korean-buddhist-art", "kind": "Video", "video_id": "thvh5PdR6yM", "keywords": "", "youtube_id": "thvh5PdR6yM", "readable_id": "korean-buddhist-art"}, "MC0tq6fNRwU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MC0tq6fNRwU.mp4/MC0tq6fNRwU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MC0tq6fNRwU.mp4/MC0tq6fNRwU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MC0tq6fNRwU.m3u8/MC0tq6fNRwU.m3u8"}, "duration": 590, "id": "MC0tq6fNRwU", "title": "Optimizing box volume graphically", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/optimizing-box-volume-graphically/", "slug": "optimizing-box-volume-graphically", "kind": "Video", "video_id": "MC0tq6fNRwU", "keywords": "", "youtube_id": "MC0tq6fNRwU", "readable_id": "optimizing-box-volume-graphically"}, "SH3O8G5B8dE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SH3O8G5B8dE.mp4/SH3O8G5B8dE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SH3O8G5B8dE.mp4/SH3O8G5B8dE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SH3O8G5B8dE.m3u8/SH3O8G5B8dE.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/stress/what-is-stress/", "duration": 366, "id": "SH3O8G5B8dE", "title": "What is stress?", "format": "mp4", "description": "", "slug": "what-is-stress", "kind": "Video", "video_id": "SH3O8G5B8dE", "keywords": "MCAT", "youtube_id": "SH3O8G5B8dE", "readable_id": "what-is-stress"}, "S-4pFl3mjr8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S-4pFl3mjr8.mp4/S-4pFl3mjr8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S-4pFl3mjr8.mp4/S-4pFl3mjr8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S-4pFl3mjr8.m3u8/S-4pFl3mjr8.m3u8"}, "duration": 743, "id": "S-4pFl3mjr8", "title": "Preload and pressure", "format": "mp4", "description": "Find out how left ventricular end-diastolic pressure helps you make an educated guess about preload. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/preload-and-afterload/preload-and-pressure/", "slug": "preload-and-pressure", "kind": "Video", "video_id": "S-4pFl3mjr8", "keywords": "", "youtube_id": "S-4pFl3mjr8", "readable_id": "preload-and-pressure"}, "awGM1UAok_8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/awGM1UAok_8.mp4/awGM1UAok_8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/awGM1UAok_8.mp4/awGM1UAok_8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/awGM1UAok_8.m3u8/awGM1UAok_8.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-16-legislators/", "duration": 60, "id": "awGM1UAok_8", "title": "16 Legislators", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-16-legislators", "kind": "Video", "video_id": "awGM1UAok_8", "keywords": "", "youtube_id": "awGM1UAok_8", "readable_id": "sat-16-legislators"}, "ACxH7ZVUOLk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ACxH7ZVUOLk.mp4/ACxH7ZVUOLk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ACxH7ZVUOLk.mp4/ACxH7ZVUOLk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ACxH7ZVUOLk.m3u8/ACxH7ZVUOLk.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-origin/speciation-extinction/new-localities-lead-to-new-biodiversity/", "duration": 630, "id": "ACxH7ZVUOLk", "title": "New localities lead to new biodiversity", "format": "mp4", "description": "", "slug": "new-localities-lead-to-new-biodiversity", "kind": "Video", "video_id": "ACxH7ZVUOLk", "keywords": "", "youtube_id": "ACxH7ZVUOLk", "readable_id": "new-localities-lead-to-new-biodiversity"}, "eKj12_KS8m0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eKj12_KS8m0.mp4/eKj12_KS8m0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eKj12_KS8m0.mp4/eKj12_KS8m0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eKj12_KS8m0.m3u8/eKj12_KS8m0.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/caillebotte-the-floor-scrapers-1875/", "duration": 267, "id": "eKj12_KS8m0", "title": "Caillebotte, The Floor Scrapers", "format": "mp4", "description": "Gustave Caillebotte, The Floor Scrapers (Les raboteurs de parquet), 1875, oil on canvas, 102 x 146.5 cm (Mus\u00e9e d'Orsay, Paris). Speakers: Dr. Parmi Giuntini, Director of Art History, Otis College of Art and Design and Dr. Robert Summers, lecturer, Otis College of Art and Design", "slug": "caillebotte-the-floor-scrapers-1875", "kind": "Video", "video_id": "eKj12_KS8m0", "keywords": "caillebotte, Mus\u00e9e d'Orsay, Art History, Smarthistory, Otis College of Art and Design", "youtube_id": "eKj12_KS8m0", "readable_id": "caillebotte-the-floor-scrapers-1875"}, "HJV_HY0Sh0s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HJV_HY0Sh0s.mp4/HJV_HY0Sh0s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HJV_HY0Sh0s.mp4/HJV_HY0Sh0s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HJV_HY0Sh0s.m3u8/HJV_HY0Sh0s.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/analyzing_the_solutions_to_systems_of_equations/solving-systems-by-substitution-1/", "duration": 224, "id": "HJV_HY0Sh0s", "title": "Analyzing solutions to linear systems algebraically", "format": "mp4", "description": "", "slug": "solving-systems-by-substitution-1", "kind": "Video", "video_id": "HJV_HY0Sh0s", "keywords": "U06_L1_T2_we1, Solving, systems, by, substitution, CC_6_EE_5, CC_8_EE_8_b", "youtube_id": "HJV_HY0Sh0s", "readable_id": "solving-systems-by-substitution-1"}, "ohxQKCbCfow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ohxQKCbCfow.mp4/ohxQKCbCfow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ohxQKCbCfow.mp4/ohxQKCbCfow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ohxQKCbCfow.m3u8/ohxQKCbCfow.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/kinetic-molecular-theory-of-gas/heat-capacity-at-constant-volume-and-pressure/", "duration": 736, "id": "ohxQKCbCfow", "title": "Heat capacity at constant volume and pressure", "format": "mp4", "description": "", "slug": "heat-capacity-at-constant-volume-and-pressure", "kind": "Video", "video_id": "ohxQKCbCfow", "keywords": "", "youtube_id": "ohxQKCbCfow", "readable_id": "heat-capacity-at-constant-volume-and-pressure"}, "ulHnX0DG8_U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ulHnX0DG8_U.mp4/ulHnX0DG8_U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ulHnX0DG8_U.mp4/ulHnX0DG8_U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ulHnX0DG8_U.m3u8/ulHnX0DG8_U.m3u8"}, "path": "khan/humanities/art-1010/wwi-dada/dada1/duchamp-3-standard-stoppages/", "duration": 149, "id": "ulHnX0DG8_U", "title": "\"3 Standard Stoppages,\" Marcel Duchamp", "format": "mp4", "description": "Learn how Marcel Duchamp reconceived a standard unit of measure.\u00a0To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945.", "slug": "duchamp-3-standard-stoppages", "kind": "Video", "video_id": "ulHnX0DG8_U", "keywords": "", "youtube_id": "ulHnX0DG8_U", "readable_id": "duchamp-3-standard-stoppages"}, "hJOqGkWElNs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hJOqGkWElNs.mp4/hJOqGkWElNs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hJOqGkWElNs.mp4/hJOqGkWElNs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hJOqGkWElNs.m3u8/hJOqGkWElNs.m3u8"}, "duration": 266, "id": "hJOqGkWElNs", "title": "Addition elimination method 2", "format": "mp4", "description": "Addition Elimination Method 2", "path": "addition-elimination-method-2/", "slug": "addition-elimination-method-2", "kind": "Video", "video_id": "hJOqGkWElNs", "keywords": "u14_l2_t2_we2, Addition, Elimination, Method, CC_8_EE_8_b, CC_39336_A-REI_6", "youtube_id": "hJOqGkWElNs", "readable_id": "addition-elimination-method-2"}, "66pQLO--Ghk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/66pQLO--Ghk.mp4/66pQLO--Ghk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/66pQLO--Ghk.mp4/66pQLO--Ghk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/66pQLO--Ghk.m3u8/66pQLO--Ghk.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-perpendicular-plane-part-2/", "duration": 485, "id": "66pQLO--Ghk", "title": "IIT JEE perpendicular plane (part 2)", "format": "mp4", "description": "2010 IIT JEE Paper 1 #30 normal vector and planes (Part 2)", "slug": "iit-jee-perpendicular-plane-part-2", "kind": "Video", "video_id": "66pQLO--Ghk", "keywords": "IIT, JEE, normal, vector, linear, algebra, orthogonal", "youtube_id": "66pQLO--Ghk", "readable_id": "iit-jee-perpendicular-plane-part-2"}, "zjIVJh4JLNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zjIVJh4JLNo.mp4/zjIVJh4JLNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zjIVJh4JLNo.mp4/zjIVJh4JLNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zjIVJh4JLNo.m3u8/zjIVJh4JLNo.m3u8"}, "duration": 802, "id": "zjIVJh4JLNo", "title": "Solubility", "format": "mp4", "description": "Solubility of salt and gas solutes in liquid solvent.", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/solubility/", "slug": "solubility", "kind": "Video", "video_id": "zjIVJh4JLNo", "keywords": "chemistry, solution, solubility", "youtube_id": "zjIVJh4JLNo", "readable_id": "solubility"}, "9gPTOKcwp3c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9gPTOKcwp3c.mp4/9gPTOKcwp3c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9gPTOKcwp3c.mp4/9gPTOKcwp3c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9gPTOKcwp3c.m3u8/9gPTOKcwp3c.m3u8"}, "path": "khan/humanities/art-asia/south-asia/buddhist-art2/dark-lord/", "duration": 175, "id": "9gPTOKcwp3c", "title": "\"The Dark Lord\" with Kurt Behrendt", "format": "mp4", "description": "Met curator Kurt Behrendt on darkness in Mahakala, Protector of the Tent by the Sakya Order of Central Tibet.\n\nMahakala, the fierce emanation of the bodhisattva Avalokiteshvara, is one of the most popular guardians in the Tibetan Buddhist pantheon. He is especially revered by the Sakya Order, and the presence of Mahasiddhas and Sakyapa teachers framing the deity makes clear that this protector was commissioned for a Sakya monastery.\n\nMahakala tramples a corpse and holds a flaying knife and blood-filled skull cup, signifying the defeat of all impediments to enlightenment. He wears a profusion of gold and bone ornaments, and coiled around his belly is his Brahmin cord of a live green snake. Beneath it hangs a garland of severed heads. In the crooks of his elbows he supports a gandi gong, used to summon monks to assemblies and a symbol of his vow to protect the Buddhist university of Nalanda. His principal companions, Palden Remati and Palden Lhamo, appear to his left, and Legden Nagpo and Bhutadamara appear to his right. To the lower left is Brahmarupa, blowing a thighbone trumpet.\n\nThis tangka is one of the earliest and grandest of this subject, and marks the beginning of a transfer from what was largely a mural tradition to large-scale cloth paintings. Although commissioned for a Tibetan monastery, the work is strongly Nepali in style and composition, and can be related to paintings in the fifteenth-century Kumbum at Gyantse monastery, believed to have been painted under Newari direction.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n\nView this work on metmuseum.org.\u00a0\n\n\u00a0\n", "slug": "dark-lord", "kind": "Video", "video_id": "9gPTOKcwp3c", "keywords": "authority, belief, death, painting, shock, textile, turmoil, Asia", "youtube_id": "9gPTOKcwp3c", "readable_id": "dark-lord"}, "VbNXh0GaLYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VbNXh0GaLYo.mp4/VbNXh0GaLYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VbNXh0GaLYo.mp4/VbNXh0GaLYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VbNXh0GaLYo.m3u8/VbNXh0GaLYo.m3u8"}, "duration": 608, "id": "VbNXh0GaLYo", "title": "Earth formation", "format": "mp4", "description": "How the Earth is a the byproduct of a local supernova", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/history-life-earth-tutorial/earth-formation/", "slug": "earth-formation", "kind": "Video", "video_id": "VbNXh0GaLYo", "keywords": "hadean, eon, earth, solar, system, formation, marquee", "youtube_id": "VbNXh0GaLYo", "readable_id": "earth-formation"}, "VNfASWRrTYY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VNfASWRrTYY.mp4/VNfASWRrTYY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VNfASWRrTYY.mp4/VNfASWRrTYY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VNfASWRrTYY.m3u8/VNfASWRrTYY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-4-17/", "duration": 306, "id": "VNfASWRrTYY", "title": "17 Number of rectangular solids to make cubic meter", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-17", "kind": "Video", "video_id": "VNfASWRrTYY", "keywords": "", "youtube_id": "VNfASWRrTYY", "readable_id": "sat-2010-may-4-17"}, "Qh-M3_L4xYk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qh-M3_L4xYk.mp4/Qh-M3_L4xYk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qh-M3_L4xYk.mp4/Qh-M3_L4xYk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qh-M3_L4xYk.m3u8/Qh-M3_L4xYk.m3u8"}, "duration": 541, "id": "Qh-M3_L4xYk", "title": "Introduction to bonds", "format": "mp4", "description": "What it means to buy a bond", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial/introduction-to-bonds/", "slug": "introduction-to-bonds", "kind": "Video", "video_id": "Qh-M3_L4xYk", "keywords": "bonds, stocks, finance", "youtube_id": "Qh-M3_L4xYk", "readable_id": "introduction-to-bonds"}, "z8BM6cHifPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z8BM6cHifPA.mp4/z8BM6cHifPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z8BM6cHifPA.mp4/z8BM6cHifPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z8BM6cHifPA.m3u8/z8BM6cHifPA.m3u8"}, "duration": 483, "id": "z8BM6cHifPA", "title": "Double integrals 3", "format": "mp4", "description": "Let's integrate dy first!", "path": "khan/math/multivariable-calculus/double_triple_integrals/double_integrals/double-integrals-3/", "slug": "double-integrals-3", "kind": "Video", "video_id": "z8BM6cHifPA", "keywords": "double, integral, volume, under, surface", "youtube_id": "z8BM6cHifPA", "readable_id": "double-integrals-3"}, "0FxRYePmogU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0FxRYePmogU.mp4/0FxRYePmogU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0FxRYePmogU.mp4/0FxRYePmogU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0FxRYePmogU.m3u8/0FxRYePmogU.m3u8"}, "duration": 744, "id": "0FxRYePmogU", "title": "Geithner plan 3", "format": "mp4", "description": "More exotic ways that a bank could buy transfer exposure to the taxpayer.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/geithner-plan/geithner-plan-2-5/", "slug": "geithner-plan-2-5", "kind": "Video", "video_id": "0FxRYePmogU", "keywords": "geithner, tim, TARP, bailout", "youtube_id": "0FxRYePmogU", "readable_id": "geithner-plan-2-5"}, "3_caioiRu5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3_caioiRu5I.mp4/3_caioiRu5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3_caioiRu5I.mp4/3_caioiRu5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3_caioiRu5I.m3u8/3_caioiRu5I.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/converting-decimals-to-percents-ex-2/", "duration": 108, "id": "3_caioiRu5I", "title": "Converting decimals to percents example 2", "format": "mp4", "description": "Understanding how to convert a decimal to a percent comes in really handy sometimes. Let's practice using this problem.", "slug": "converting-decimals-to-percents-ex-2", "kind": "Video", "video_id": "3_caioiRu5I", "keywords": "Converting, decimals, to, percents, ex, 2", "youtube_id": "3_caioiRu5I", "readable_id": "converting-decimals-to-percents-ex-2"}, "N-mAEwzCwMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N-mAEwzCwMM.mp4/N-mAEwzCwMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N-mAEwzCwMM.mp4/N-mAEwzCwMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N-mAEwzCwMM.m3u8/N-mAEwzCwMM.m3u8"}, "path": "khan/science/health-and-medicine/circulatory-system-diseases/blood-vessel-diseases/atherosclerosis-part-2/", "duration": 539, "id": "N-mAEwzCwMM", "title": "Atherosclerosis - part 2", "format": "mp4", "description": "See how Atherosclerosis (Fat in the blood vessel wall) hardens the arterial wall and makes it harder for blood to flow through. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "atherosclerosis-part-2", "kind": "Video", "video_id": "N-mAEwzCwMM", "keywords": "", "youtube_id": "N-mAEwzCwMM", "readable_id": "atherosclerosis-part-2"}, "Nb_4nEFyeGk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nb_4nEFyeGk.mp4/Nb_4nEFyeGk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nb_4nEFyeGk.mp4/Nb_4nEFyeGk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nb_4nEFyeGk.m3u8/Nb_4nEFyeGk.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/manet-le-d-jeuner-sur-l-herbe-luncheon-on-the-grass-1863/", "duration": 387, "id": "Nb_4nEFyeGk", "title": "Manet, Le d\u00e9jeuner sur l'herbe", "format": "mp4", "description": "\u00c9douard Manet, Le d\u00e9jeuner sur l'herbe (Luncheon on the Grass), oil on canvas, 1863 (Mus\u00e9e d'Orsay, Paris)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "manet-le-d-jeuner-sur-l-herbe-luncheon-on-the-grass-1863", "kind": "Video", "video_id": "Nb_4nEFyeGk", "keywords": "Manet, Luncheon on the Grass, \u00c9douard Manet, Musee d'Orsay, Paris, Realism, Impressionism", "youtube_id": "Nb_4nEFyeGk", "readable_id": "manet-le-d-jeuner-sur-l-herbe-luncheon-on-the-grass-1863"}, "jCwRV1QL_Xs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jCwRV1QL_Xs.mp4/jCwRV1QL_Xs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jCwRV1QL_Xs.mp4/jCwRV1QL_Xs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jCwRV1QL_Xs.m3u8/jCwRV1QL_Xs.m3u8"}, "duration": 623, "id": "jCwRV1QL_Xs", "title": "Introduction to the null space of a matrix", "format": "mp4", "description": "Showing that the Null Space of a Matrix is a valid Subspace", "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/introduction-to-the-null-space-of-a-matrix/", "slug": "introduction-to-the-null-space-of-a-matrix", "kind": "Video", "video_id": "jCwRV1QL_Xs", "keywords": "nullspace, null, space, subspace, matrix, vector", "youtube_id": "jCwRV1QL_Xs", "readable_id": "introduction-to-the-null-space-of-a-matrix"}, "vmgKC2IJjOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vmgKC2IJjOI.mp4/vmgKC2IJjOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vmgKC2IJjOI.mp4/vmgKC2IJjOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vmgKC2IJjOI.m3u8/vmgKC2IJjOI.m3u8"}, "duration": 299, "id": "vmgKC2IJjOI", "title": "Reproductive isolation", "format": "mp4", "description": "What makes two organisms members of different species? Learn about the forces behind reproductive isolation. By Ross Firestone. ", "path": "khan/test-prep/mcat/biomolecules/evolution-population-dynmaics/reproductive-isolation/", "slug": "reproductive-isolation", "kind": "Video", "video_id": "vmgKC2IJjOI", "keywords": "", "youtube_id": "vmgKC2IJjOI", "readable_id": "reproductive-isolation"}, "TktF6unUlso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TktF6unUlso.mp4/TktF6unUlso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TktF6unUlso.mp4/TktF6unUlso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TktF6unUlso.m3u8/TktF6unUlso.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/role-strain-and-role-conflict/", "duration": 138, "id": "TktF6unUlso", "title": "Role strain and role conflict", "format": "mp4", "description": "", "slug": "role-strain-and-role-conflict", "kind": "Video", "video_id": "TktF6unUlso", "keywords": "", "youtube_id": "TktF6unUlso", "readable_id": "role-strain-and-role-conflict"}, "orm6muAaZsA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/orm6muAaZsA.mp4/orm6muAaZsA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/orm6muAaZsA.mp4/orm6muAaZsA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/orm6muAaZsA.m3u8/orm6muAaZsA.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/addition-reactions-conjugated-dienes/addition-reaction-of-conjugated-dienes-iii-control/", "duration": 643, "id": "orm6muAaZsA", "title": "Addition reaction of conjugated dienes III: Control", "format": "mp4", "description": "", "slug": "addition-reaction-of-conjugated-dienes-iii-control", "kind": "Video", "video_id": "orm6muAaZsA", "keywords": "", "youtube_id": "orm6muAaZsA", "readable_id": "addition-reaction-of-conjugated-dienes-iii-control"}, "IkmM4CPnqF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IkmM4CPnqF0.mp4/IkmM4CPnqF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IkmM4CPnqF0.mp4/IkmM4CPnqF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IkmM4CPnqF0.m3u8/IkmM4CPnqF0.m3u8"}, "duration": 862, "id": "IkmM4CPnqF0", "title": "Newman projections", "format": "mp4", "description": "Newman Projections", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations/newman-projections/", "slug": "newman-projections", "kind": "Video", "video_id": "IkmM4CPnqF0", "keywords": "Newman, Projections", "youtube_id": "IkmM4CPnqF0", "readable_id": "newman-projections"}, "R-rhSQzFJL0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R-rhSQzFJL0.mp4/R-rhSQzFJL0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R-rhSQzFJL0.mp4/R-rhSQzFJL0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R-rhSQzFJL0.m3u8/R-rhSQzFJL0.m3u8"}, "duration": 286, "id": "R-rhSQzFJL0", "title": "Example 5: Factoring by grouping", "format": "mp4", "description": "Factoring Trinomials by Grouping 5", "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-trinomials-by-grouping-5/", "slug": "factoring-trinomials-by-grouping-5", "kind": "Video", "video_id": "R-rhSQzFJL0", "keywords": "U09_L1_T3_we2, Factoring, Trinomials, by, Grouping, CC_39336_A-SSE_1_a, CC_39336_A-SSE_2", "youtube_id": "R-rhSQzFJL0", "readable_id": "factoring-trinomials-by-grouping-5"}, "AbecBgtWehE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AbecBgtWehE.mp4/AbecBgtWehE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AbecBgtWehE.mp4/AbecBgtWehE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AbecBgtWehE.m3u8/AbecBgtWehE.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/mark-ruwedel/", "duration": 141, "id": "AbecBgtWehE", "title": "Traces of illegal migration in Mexico: Mark Ruwedel", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn photographer Mark Ruwedel\u2019s Crossing (2005), we come across a landscape littered with strange and incongruous objects: inner tubes, water bottles, passports, and single shoes are scattered across the desert that stretches over the border between Mexico and Southern California. While we don\u2019t see the players in the drama Ruwedel has documented, his photographs reveal the traces they have left behind, both banal and poignant, as the attempt to cross an invisible line in the desert while escaping detection. Ruwedel walked miles along the US-Mexico border and photographed every object he came across in order to tell the story of undocumented migrants attempting to cross the border in secret.\n\nAs Ruwedel puts it, his photographs deal with \u201cforensic evidence as it is embedded in a landscape that speaks of human histories.\" What purpose do you think Ruwedel\u2019s photographs serve? Are they merely documenting evidence, or telling more complex stories?\n", "slug": "mark-ruwedel", "kind": "Video", "video_id": "AbecBgtWehE", "keywords": "Tate", "youtube_id": "AbecBgtWehE", "readable_id": "mark-ruwedel"}, "4qgOSBHptLM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4qgOSBHptLM.mp4/4qgOSBHptLM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4qgOSBHptLM.mp4/4qgOSBHptLM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4qgOSBHptLM.m3u8/4qgOSBHptLM.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/barnett-newman-onement-i-1948/", "duration": 293, "id": "4qgOSBHptLM", "title": "Newman's Onement I, 1948", "format": "mp4", "description": "Barnett Newman, Onement I, 1948, oil on canvas ,27 1/4 x 16 1/4\" (69.2 x 41.2 cm), The Museum of Modern Art\n\nSpeakers: Dr. Steven Zucker, Dr. Beth Harris \n\nhttp://smarthistory.org/barnett-newman.html", "slug": "barnett-newman-onement-i-1948", "kind": "Video", "video_id": "4qgOSBHptLM", "keywords": "Newman, Onement I, Barnett Newman, Museum of Modern Art, MoMA, Smarthistory, abstract expressionism, art history", "youtube_id": "4qgOSBHptLM", "readable_id": "barnett-newman-onement-i-1948"}, "GEJ5c2ACtGk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GEJ5c2ACtGk.mp4/GEJ5c2ACtGk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GEJ5c2ACtGk.mp4/GEJ5c2ACtGk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GEJ5c2ACtGk.m3u8/GEJ5c2ACtGk.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/the-old-brain/", "duration": 431, "id": "GEJ5c2ACtGk", "title": "The old brain", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "the-old-brain", "kind": "Video", "video_id": "GEJ5c2ACtGk", "keywords": "", "youtube_id": "GEJ5c2ACtGk", "readable_id": "the-old-brain"}, "WxgNAsiOXY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WxgNAsiOXY4.mp4/WxgNAsiOXY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WxgNAsiOXY4.mp4/WxgNAsiOXY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WxgNAsiOXY4.m3u8/WxgNAsiOXY4.m3u8"}, "duration": 123, "id": "WxgNAsiOXY4", "title": "Magnetic permeability", "format": "mp4", "description": "What happens to the magnetic field of a magnet in the presence of a another material which is attracted to it. Why does this happen?", "path": "khan/science/discoveries-projects/discoveries/magnetic-fields/magnetic-permeability/", "slug": "magnetic-permeability", "kind": "Video", "video_id": "WxgNAsiOXY4", "keywords": "permability", "youtube_id": "WxgNAsiOXY4", "readable_id": "magnetic-permeability"}, "jMXf2lgddOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jMXf2lgddOg.mp4/jMXf2lgddOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jMXf2lgddOg.mp4/jMXf2lgddOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jMXf2lgddOg.m3u8/jMXf2lgddOg.m3u8"}, "duration": 176, "id": "jMXf2lgddOg", "title": "Oligodendrocytes", "format": "mp4", "description": "This video describes the structure and function of oligodendrocytes.\u00a0 By Matt Jensen.", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neural-cells/oligodendrocytes/", "slug": "oligodendrocytes", "kind": "Video", "video_id": "jMXf2lgddOg", "keywords": "", "youtube_id": "jMXf2lgddOg", "readable_id": "oligodendrocytes"}, "8Xx-JlsX_Ww": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Xx-JlsX_Ww.mp4/8Xx-JlsX_Ww.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Xx-JlsX_Ww.mp4/8Xx-JlsX_Ww.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Xx-JlsX_Ww.m3u8/8Xx-JlsX_Ww.m3u8"}, "duration": 161, "id": "8Xx-JlsX_Ww", "title": "\"Monsters\" with Kiki Karoglou", "format": "mp4", "description": "Met curator Kiki Karoglou on dangerous beauty in Marble capital and finial in the form of a sphinx dating from the Attic period of ancient Greece.\n\nThis capital and sphinx originally crowned the tall grave marker of a youth and a little girl on view in this gallery. A plaster copy has been set on the monument itself.\u00a0The sphinx, a mythological creature with a lion's body and a human head, was known in various forms throughout the eastern Mediterranean region from the Bronze Age onward. The Greeks represented it as a winged female and often placed its image on grave monuments as guardian of the dead. This sphinx, which retains abundant traces of red, black, and blue pigment, was carved separately from the capital on which it stands. Its plinth was let into a socket at the top of the capital and secured by a metal dowel and a bed of molten lead. The capital is in the form of two double volutes (spiral scrolls) designed like a lyre. The front face of the capital also had a painted design of palmettes and volutes.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "monsters/", "slug": "monsters", "kind": "Video", "video_id": "8Xx-JlsX_Ww", "keywords": "authority, danger, death, sculpture, stone, Europe", "youtube_id": "8Xx-JlsX_Ww", "readable_id": "monsters"}, "ZEml96_kyN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZEml96_kyN4.mp4/ZEml96_kyN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZEml96_kyN4.mp4/ZEml96_kyN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZEml96_kyN4.m3u8/ZEml96_kyN4.m3u8"}, "duration": 107, "id": "ZEml96_kyN4", "title": "Absolute value equations", "format": "mp4", "description": "Absolute Value Equations", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/u02-l2-t2-we1-absolute-value-equations-avi/", "slug": "u02-l2-t2-we1-absolute-value-equations-avi", "kind": "Video", "video_id": "ZEml96_kyN4", "keywords": "U02, L2, T2, we1, Absolute, Value, Equations", "youtube_id": "ZEml96_kyN4", "readable_id": "u02-l2-t2-we1-absolute-value-equations-avi"}, "EOnlvbWjFOE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EOnlvbWjFOE.mp4/EOnlvbWjFOE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EOnlvbWjFOE.mp4/EOnlvbWjFOE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EOnlvbWjFOE.m3u8/EOnlvbWjFOE.m3u8"}, "path": "khan/science/health-and-medicine/circulatory-system-diseases/blood-vessel-diseases/arteriolosclerosis-part-2/", "duration": 311, "id": "EOnlvbWjFOE", "title": "Arteriolosclerosis - part 2", "format": "mp4", "description": "See how hyperplastic arteriolosclerosis (Protein in the arterial wall) makes it difficult for blood to go through blood vessels. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "arteriolosclerosis-part-2", "kind": "Video", "video_id": "EOnlvbWjFOE", "keywords": "", "youtube_id": "EOnlvbWjFOE", "readable_id": "arteriolosclerosis-part-2"}, "eBYbnYNl0rw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eBYbnYNl0rw.mp4/eBYbnYNl0rw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eBYbnYNl0rw.mp4/eBYbnYNl0rw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eBYbnYNl0rw.m3u8/eBYbnYNl0rw.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-9-paulson-s-plan/", "duration": 665, "id": "eBYbnYNl0rw", "title": "Bailout 9: Paulson's plan", "format": "mp4", "description": "What Paulson wants to do and why I don't like it.", "slug": "bailout-9-paulson-s-plan", "kind": "Video", "video_id": "eBYbnYNl0rw", "keywords": "credit, crunch, moral, hazard, paulson, treasury, bailout, finance", "youtube_id": "eBYbnYNl0rw", "readable_id": "bailout-9-paulson-s-plan"}, "1JL5ZR-ocOs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1JL5ZR-ocOs.mp4/1JL5ZR-ocOs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1JL5ZR-ocOs.mp4/1JL5ZR-ocOs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1JL5ZR-ocOs.m3u8/1JL5ZR-ocOs.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/duccio-the-rucellai-madonna-1285-86/", "duration": 256, "id": "1JL5ZR-ocOs", "title": "Duccio, The Rucellai Madonna", "format": "mp4", "description": "Duccio, The Rucellai Madonna, 1285-86, tempera on panel, 177 x 114\" or 450 x 290 cm (Uffizi, Florence) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "duccio-the-rucellai-madonna-1285-86", "kind": "Video", "video_id": "1JL5ZR-ocOs", "keywords": "art history, Smarthistory Art History, Siena, Florence, Uffizi", "youtube_id": "1JL5ZR-ocOs", "readable_id": "duccio-the-rucellai-madonna-1285-86"}, "qpP8D7yQV50": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qpP8D7yQV50.mp4/qpP8D7yQV50.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qpP8D7yQV50.mp4/qpP8D7yQV50.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qpP8D7yQV50.m3u8/qpP8D7yQV50.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/formal-charge-resonance/common-mistakes-when-drawing-resonance-structures/", "duration": 465, "id": "qpP8D7yQV50", "title": "Common mistakes when drawing resonance structures", "format": "mp4", "description": "How to avoid common mistakes when drawing resonance structures", "slug": "common-mistakes-when-drawing-resonance-structures", "kind": "Video", "video_id": "qpP8D7yQV50", "keywords": "", "youtube_id": "qpP8D7yQV50", "readable_id": "common-mistakes-when-drawing-resonance-structures"}, "2SQb-LzDaCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2SQb-LzDaCY.mp4/2SQb-LzDaCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2SQb-LzDaCY.mp4/2SQb-LzDaCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2SQb-LzDaCY.m3u8/2SQb-LzDaCY.m3u8"}, "duration": 97, "id": "2SQb-LzDaCY", "title": "The Mahmal", "format": "mp4", "description": "This magnificent mahmal which would have travelled on top of a camel on the route to Mecca. \u00a9 Trustees of the British Museum", "path": "mahmal/", "slug": "mahmal", "kind": "Video", "video_id": "2SQb-LzDaCY", "keywords": "", "youtube_id": "2SQb-LzDaCY", "readable_id": "mahmal"}, "GO5ajwbFqVQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GO5ajwbFqVQ.mp4/GO5ajwbFqVQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GO5ajwbFqVQ.mp4/GO5ajwbFqVQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GO5ajwbFqVQ.m3u8/GO5ajwbFqVQ.m3u8"}, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/find-an-unknown-in-a-proportion/", "duration": 440, "id": "GO5ajwbFqVQ", "title": "Solve a proportion with unknown variable", "format": "mp4", "description": "Here's a great video where we explain the reasoning behind solving proportions. We'll put some algebra to work to get our answers, too.", "slug": "find-an-unknown-in-a-proportion", "kind": "Video", "video_id": "GO5ajwbFqVQ", "keywords": "U04_L2_T1_we2, t2, Find, an, Unknown, in, Proportion, CC_7_RP_2", "youtube_id": "GO5ajwbFqVQ", "readable_id": "find-an-unknown-in-a-proportion"}, "hHteUIS0OFY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hHteUIS0OFY.mp4/hHteUIS0OFY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hHteUIS0OFY.mp4/hHteUIS0OFY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hHteUIS0OFY.m3u8/hHteUIS0OFY.m3u8"}, "duration": 710, "id": "hHteUIS0OFY", "title": "Compositional and mechanical layers of the earth", "format": "mp4", "description": "Crust, mantle, core, lithosphere, asthenosphere, mesosphere, outer core, inner core", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/compositional-and-mechanical-layers-of-the-earth/", "slug": "compositional-and-mechanical-layers-of-the-earth", "kind": "Video", "video_id": "hHteUIS0OFY", "keywords": "geology, layers, of, earth, mechanical", "youtube_id": "hHteUIS0OFY", "readable_id": "compositional-and-mechanical-layers-of-the-earth"}, "x726HASktrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x726HASktrQ.mp4/x726HASktrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x726HASktrQ.mp4/x726HASktrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x726HASktrQ.m3u8/x726HASktrQ.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/god-morality-part-2/", "duration": 337, "id": "x726HASktrQ", "title": "Ethics: God and morality part 2", "format": "mp4", "description": "Part 2 of a pair. Stephen considers the relationship between morality and God. Specifically, he asks: is morality the same thing as the commands of God? Is there no morality if there is no God? Stephen thinks the answer to both these questions is 'no'. He argues that, if you believe God exists and that we should follow his commands *for certain reasons*, then you should *not* think that morality just is whatever God commands.\n\nSpeaker:\u00a0Dr.\u00a0Stephen Darwall, Andrew Downey Orrick Professor of Philosophy, Yale University", "slug": "god-morality-part-2", "kind": "Video", "video_id": "x726HASktrQ", "keywords": "", "youtube_id": "x726HASktrQ", "readable_id": "god-morality-part-2"}, "inlMrf2d-k4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/inlMrf2d-k4.mp4/inlMrf2d-k4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/inlMrf2d-k4.mp4/inlMrf2d-k4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/inlMrf2d-k4.m3u8/inlMrf2d-k4.m3u8"}, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/kites-as-a-mathematical-shape/", "duration": 338, "id": "inlMrf2d-k4", "title": "Quadrilaterals: kites as a geometric shape", "format": "mp4", "description": "Is a kite a quadrilateral? Is it a rhombus? A parallelogram? Let's find out.", "slug": "kites-as-a-mathematical-shape", "kind": "Video", "video_id": "inlMrf2d-k4", "keywords": "", "youtube_id": "inlMrf2d-k4", "readable_id": "kites-as-a-mathematical-shape"}, "I9efKVtLCf4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I9efKVtLCf4.mp4/I9efKVtLCf4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I9efKVtLCf4.mp4/I9efKVtLCf4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I9efKVtLCf4.m3u8/I9efKVtLCf4.m3u8"}, "path": "khan/math/pre-algebra/measurement/volume-introduction-rectangular/volume-of-a-rectangular-prism-or-box-examples/", "duration": 119, "id": "I9efKVtLCf4", "title": "Volume of a rectangular prism or box examples", "format": "mp4", "description": "Let's do some example problems together in which we use the area times length formula for finding volume.", "slug": "volume-of-a-rectangular-prism-or-box-examples", "kind": "Video", "video_id": "I9efKVtLCf4", "keywords": "", "youtube_id": "I9efKVtLCf4", "readable_id": "volume-of-a-rectangular-prism-or-box-examples"}, "_sIuZHYrdWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_sIuZHYrdWM.mp4/_sIuZHYrdWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_sIuZHYrdWM.mp4/_sIuZHYrdWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_sIuZHYrdWM.m3u8/_sIuZHYrdWM.m3u8"}, "duration": 328, "id": "_sIuZHYrdWM", "title": "Factor expressions using the GCF", "format": "mp4", "description": "Factor expressions using the GCF", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-simple-expressions/factor-polynomials-using-the-gcf/", "slug": "factor-polynomials-using-the-gcf", "kind": "Video", "video_id": "_sIuZHYrdWM", "keywords": "Factor, polynomials, using, the, GCF, CC_39336_A-SSE_1_a, CC_39336_A-SSE_1_b", "youtube_id": "_sIuZHYrdWM", "readable_id": "factor-polynomials-using-the-gcf"}, "9T3AAn-Cw3g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9T3AAn-Cw3g.mp4/9T3AAn-Cw3g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9T3AAn-Cw3g.mp4/9T3AAn-Cw3g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9T3AAn-Cw3g.m3u8/9T3AAn-Cw3g.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/basic-regrouping-or-borrowing-when-subtracting-three-digit-numbers/", "duration": 167, "id": "9T3AAn-Cw3g", "title": "Subtracting: three digit numbers and basic regrouping", "format": "mp4", "description": "Subtracting multi-digit numbers can be a little confusing when the top digits are smaller than the bottom ones. Let's look at regrouping together. It will help!", "slug": "basic-regrouping-or-borrowing-when-subtracting-three-digit-numbers", "kind": "Video", "video_id": "9T3AAn-Cw3g", "keywords": "", "youtube_id": "9T3AAn-Cw3g", "readable_id": "basic-regrouping-or-borrowing-when-subtracting-three-digit-numbers"}, "RdYA8ZpqdJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RdYA8ZpqdJE.mp4/RdYA8ZpqdJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RdYA8ZpqdJE.mp4/RdYA8ZpqdJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RdYA8ZpqdJE.m3u8/RdYA8ZpqdJE.m3u8"}, "duration": 248, "id": "RdYA8ZpqdJE", "title": "Solving rational equations 2", "format": "mp4", "description": "Solving Rational Equations 2", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/solving-rational-equations-2/", "slug": "solving-rational-equations-2", "kind": "Video", "video_id": "RdYA8ZpqdJE", "keywords": "U11_L2_T1_we2, Solving, Rational, Equations, CC_39336_A-APR_7, CC_39336_A-REI_2", "youtube_id": "RdYA8ZpqdJE", "readable_id": "solving-rational-equations-2"}, "4T9Blye_QGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4T9Blye_QGE.mp4/4T9Blye_QGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4T9Blye_QGE.mp4/4T9Blye_QGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4T9Blye_QGE.m3u8/4T9Blye_QGE.m3u8"}, "duration": 250, "id": "4T9Blye_QGE", "title": "Units of measurement word problem: distance", "format": "mp4", "description": "We're moving between metric units of distance measurement (meters and kilometers) in this word problem. Hint: when doing any word problem, be sure and make note of the unit measurement wanted in the answer!", "path": "jogging-and-walking/", "slug": "jogging-and-walking", "kind": "Video", "video_id": "4T9Blye_QGE", "keywords": "", "youtube_id": "4T9Blye_QGE", "readable_id": "jogging-and-walking"}, "7Uos1ED3KHI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Uos1ED3KHI.mp4/7Uos1ED3KHI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Uos1ED3KHI.mp4/7Uos1ED3KHI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Uos1ED3KHI.m3u8/7Uos1ED3KHI.m3u8"}, "duration": 922, "id": "7Uos1ED3KHI", "title": "Simplifying rational expressions introduction", "format": "mp4", "description": "Simplifying Rational Expressions", "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying-rational-expressions-introduction/", "slug": "simplifying-rational-expressions-introduction", "kind": "Video", "video_id": "7Uos1ED3KHI", "keywords": "Simplifying, Rational, Expressions", "youtube_id": "7Uos1ED3KHI", "readable_id": "simplifying-rational-expressions-introduction"}, "Cz7V7QoD1LA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Cz7V7QoD1LA.mp4/Cz7V7QoD1LA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Cz7V7QoD1LA.mp4/Cz7V7QoD1LA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Cz7V7QoD1LA.m3u8/Cz7V7QoD1LA.m3u8"}, "duration": 41, "id": "Cz7V7QoD1LA", "title": "Discovery of electromagnetism", "format": "mp4", "description": "Hans Christian \u00d8rsted made this famous observation in 1819.", "path": "khan/science/discoveries-projects/discoveries/electromagnet/discovery-of-electromagnetism/", "slug": "discovery-of-electromagnetism", "kind": "Video", "video_id": "Cz7V7QoD1LA", "keywords": "electromagnetism", "youtube_id": "Cz7V7QoD1LA", "readable_id": "discovery-of-electromagnetism"}, "x0mPTh8eNGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x0mPTh8eNGE.mp4/x0mPTh8eNGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x0mPTh8eNGE.mp4/x0mPTh8eNGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x0mPTh8eNGE.m3u8/x0mPTh8eNGE.m3u8"}, "duration": 252, "id": "x0mPTh8eNGE", "title": "Installation of the St Baudime reliquary in the Treasures of Heaven exhibition at the British Museum", "format": "mp4", "description": "This reliquary was made between 1146 and 1178 and may once have held a relic\u00a0\nof St Baudime\u2019s blood. The relic would have been held in a cavity at the back of the reliquary but it is no longer contained inside. There is no record of relics being contained inside the reliquary beyond 1871.\n\nSt Baudime\u2019s reliquary has a turbulent history \u2013 the gemstones which were once studded all over his vestments were likely removed during the French Revolution in the 1790s. The reliquary was also stolen at the beginning of the 20th century by a notorious art thief. It was found soon after by police, apparently languishing in a wine cellar.\n\nWe might normally expect this type of reliquary (known as a \u2018speaking reliquary\u2019) to contain a skull \u2013 as the form of the reliquary would literally speak its contents. However, there is no record of this container ever having held a skull relic, which further adds to the object\u2019s mystery.\u00a0\u00a9 Trustees of the British Museum\n", "path": "st-baudime/", "slug": "st-baudime", "kind": "Video", "video_id": "x0mPTh8eNGE", "keywords": "reliquary", "youtube_id": "x0mPTh8eNGE", "readable_id": "st-baudime"}, "B_P48TakY3Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B_P48TakY3Y.mp4/B_P48TakY3Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B_P48TakY3Y.mp4/B_P48TakY3Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B_P48TakY3Y.m3u8/B_P48TakY3Y.m3u8"}, "path": "khan/humanities/history/euro-hist/american-entry-world-war-i/blockades-u-boats-and-sinking-of-the-lusitania/", "duration": 724, "id": "B_P48TakY3Y", "title": "Blockades, u-boats and sinking of the Lusitania", "format": "mp4", "description": "", "slug": "blockades-u-boats-and-sinking-of-the-lusitania", "kind": "Video", "video_id": "B_P48TakY3Y", "keywords": "", "youtube_id": "B_P48TakY3Y", "readable_id": "blockades-u-boats-and-sinking-of-the-lusitania"}, "sSqxVMbml_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sSqxVMbml_k.mp4/sSqxVMbml_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sSqxVMbml_k.mp4/sSqxVMbml_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sSqxVMbml_k.m3u8/sSqxVMbml_k.m3u8"}, "duration": 190, "id": "sSqxVMbml_k", "title": "Simple analysis of cost per job saved from stimulus", "format": "mp4", "description": "Simple analysis of cost per job saved from stimulus", "path": "khan/economics-finance-domain/core-finance/current-economics/unemployment-tutorial/simple-analysis-of-cost-per-job-saved-from-stimulus/", "slug": "simple-analysis-of-cost-per-job-saved-from-stimulus", "kind": "Video", "video_id": "sSqxVMbml_k", "keywords": "stimulus, jobs", "youtube_id": "sSqxVMbml_k", "readable_id": "simple-analysis-of-cost-per-job-saved-from-stimulus"}, "0JW9P_T4P_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0JW9P_T4P_Y.mp4/0JW9P_T4P_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0JW9P_T4P_Y.mp4/0JW9P_T4P_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0JW9P_T4P_Y.m3u8/0JW9P_T4P_Y.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/equivalent-fractions-pre-alg/equivalent-fractions-example/", "duration": 290, "id": "0JW9P_T4P_Y", "title": "Equivalent fraction word problem example 4", "format": "mp4", "description": "How may times have you been told, \"Save your money!\" We thought so. What if you wanted to save a fractional amount of your allowance? How would you go about figuring out how much to save?", "slug": "equivalent-fractions-example", "kind": "Video", "video_id": "0JW9P_T4P_Y", "keywords": "U02_L1_T4_we1, Equivalent, Fractions", "youtube_id": "0JW9P_T4P_Y", "readable_id": "equivalent-fractions-example"}, "FwuPXchH2rA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FwuPXchH2rA.mp4/FwuPXchH2rA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FwuPXchH2rA.mp4/FwuPXchH2rA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FwuPXchH2rA.m3u8/FwuPXchH2rA.m3u8"}, "duration": 784, "id": "FwuPXchH2rA", "title": "Basic complex analysis", "format": "mp4", "description": "Argand Diagram, magnitude, modulus, argument, exponential form", "path": "khan/math/precalculus/imaginary_complex_precalc/complex_analysis/basic-complex-analysis/", "slug": "basic-complex-analysis", "kind": "Video", "video_id": "FwuPXchH2rA", "keywords": "Argand, Diagram, magnitude, modulus, argument, exponential, form, complex", "youtube_id": "FwuPXchH2rA", "readable_id": "basic-complex-analysis"}, "1dZsuE0vxEI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1dZsuE0vxEI.mp4/1dZsuE0vxEI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1dZsuE0vxEI.mp4/1dZsuE0vxEI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1dZsuE0vxEI.m3u8/1dZsuE0vxEI.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/fence-posts-for-horses/", "duration": 211, "id": "1dZsuE0vxEI", "title": "Fence posts for horses", "format": "mp4", "description": "", "slug": "fence-posts-for-horses", "kind": "Video", "video_id": "1dZsuE0vxEI", "keywords": "", "youtube_id": "1dZsuE0vxEI", "readable_id": "fence-posts-for-horses"}, "fy2TlYnYIzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fy2TlYnYIzA.mp4/fy2TlYnYIzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fy2TlYnYIzA.mp4/fy2TlYnYIzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fy2TlYnYIzA.m3u8/fy2TlYnYIzA.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/picasso-les-demoiselles-d-avignon-1907/", "duration": 465, "id": "fy2TlYnYIzA", "title": "Picasso, Les Demoiselles d'Avignon", "format": "mp4", "description": "Pablo Picasso, Les Demoiselles d'Avignon, 1907 (Museum of Modern Art)", "slug": "picasso-les-demoiselles-d-avignon-1907", "kind": "Video", "video_id": "fy2TlYnYIzA", "keywords": "picasso, cubism, art, art history, smarthistory, MoMA, Les Demoiselles d'Avignon", "youtube_id": "fy2TlYnYIzA", "readable_id": "picasso-les-demoiselles-d-avignon-1907"}, "Q3DpCMAyWyw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q3DpCMAyWyw.mp4/Q3DpCMAyWyw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q3DpCMAyWyw.mp4/Q3DpCMAyWyw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q3DpCMAyWyw.m3u8/Q3DpCMAyWyw.m3u8"}, "path": "khan/test-prep/ap-art-history/global-prehistory-ap/paleolithic-mesolithic-neolithic/tlatilco-figurines/", "duration": 307, "id": "Q3DpCMAyWyw", "title": "Tlatilco figurines", "format": "mp4", "description": "Tlatilco figurines (from the National Museum of Anthropology, but also including the Female Figure at the Princeton University Art Museum), ceramic, Tlatilco, Mesoamerica (present-day Mexico), c. 1200\u2013600 B.C.E. \u00a0Speakers: Dr. Lauren Kilroy-Ewbank and Dr. Steven Zucker.\n\nTlatilco is a Nahuatl word, given to this \u201cculture\u201d later. It means \u201cplace of hidden things.\u201d We don\u2019t know what the people here called themselves. Around 2000 B.C.E., maize, squash and other crops were domesticated, which allowed people to settle in villages. The settlement of Tlatilco was located close to a lake, and fishing and the hunting of birds became important food sources.\n\nArchaeologists have found more than 340 burials at Tlatilco, with many more destroyed in the first half of the 20th century.\n", "slug": "tlatilco-figurines", "kind": "Video", "video_id": "Q3DpCMAyWyw", "keywords": "", "youtube_id": "Q3DpCMAyWyw", "readable_id": "tlatilco-figurines"}, "ALaBkdJYXqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ALaBkdJYXqs.mp4/ALaBkdJYXqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ALaBkdJYXqs.mp4/ALaBkdJYXqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ALaBkdJYXqs.m3u8/ALaBkdJYXqs.m3u8"}, "duration": 278, "id": "ALaBkdJYXqs", "title": "Figuring out units from formula", "format": "mp4", "description": "", "path": "khan/math/algebra/introduction-to-algebra/units-algebra/figuring-out-units-from-formula/", "slug": "figuring-out-units-from-formula", "kind": "Video", "video_id": "ALaBkdJYXqs", "keywords": "", "youtube_id": "ALaBkdJYXqs", "readable_id": "figuring-out-units-from-formula"}, "JoFSRuJDp5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JoFSRuJDp5o.mp4/JoFSRuJDp5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JoFSRuJDp5o.mp4/JoFSRuJDp5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JoFSRuJDp5o.m3u8/JoFSRuJDp5o.m3u8"}, "duration": 255, "id": "JoFSRuJDp5o", "title": "Heat transfer", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/biomolecules/principles-of-bioenergetics/heat-transfer-1/", "slug": "heat-transfer-1", "kind": "Video", "video_id": "JoFSRuJDp5o", "keywords": "", "youtube_id": "JoFSRuJDp5o", "readable_id": "heat-transfer-1"}, "W7DmsJKLoxc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W7DmsJKLoxc.mp4/W7DmsJKLoxc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W7DmsJKLoxc.mp4/W7DmsJKLoxc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W7DmsJKLoxc.m3u8/W7DmsJKLoxc.m3u8"}, "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/probability-and-combinations-part-2/", "duration": 636, "id": "W7DmsJKLoxc", "title": "Probability and combinations (part 2)", "format": "mp4", "description": "Making at least 3 out of 5 free throws.", "slug": "probability-and-combinations-part-2", "kind": "Video", "video_id": "W7DmsJKLoxc", "keywords": "probability, combinations, basketball", "youtube_id": "W7DmsJKLoxc", "readable_id": "probability-and-combinations-part-2"}, "RZhL7LDPk8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RZhL7LDPk8w.mp4/RZhL7LDPk8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RZhL7LDPk8w.mp4/RZhL7LDPk8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RZhL7LDPk8w.m3u8/RZhL7LDPk8w.m3u8"}, "duration": 756, "id": "RZhL7LDPk8w", "title": "Cancer", "format": "mp4", "description": "An introduction to what cancer is and how it is the by-product of broken DNA replication", "path": "khan/science/biology/cellular-molecular-biology/stem-cells-and-cancer/cancer/", "slug": "cancer", "kind": "Video", "video_id": "RZhL7LDPk8w", "keywords": "cancer, biology, mitosis", "youtube_id": "RZhL7LDPk8w", "readable_id": "cancer"}, "l-l_8cSQdEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l-l_8cSQdEw.mp4/l-l_8cSQdEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l-l_8cSQdEw.mp4/l-l_8cSQdEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l-l_8cSQdEw.m3u8/l-l_8cSQdEw.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/principles-of-bioenergetics/thermodynamics-vs-kinetics/", "duration": 558, "id": "l-l_8cSQdEw", "title": "Thermodynamics vs kinetics", "format": "mp4", "description": "", "slug": "thermodynamics-vs-kinetics", "kind": "Video", "video_id": "l-l_8cSQdEw", "keywords": "", "youtube_id": "l-l_8cSQdEw", "readable_id": "thermodynamics-vs-kinetics"}, "Qqanbd3gLhw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qqanbd3gLhw.mp4/Qqanbd3gLhw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qqanbd3gLhw.mp4/Qqanbd3gLhw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qqanbd3gLhw.m3u8/Qqanbd3gLhw.m3u8"}, "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals/line-integral-example-2-part-2/", "duration": 598, "id": "Qqanbd3gLhw", "title": "Line integral example 2 (part 2)", "format": "mp4", "description": "Part 2 of an example of taking a line integral over a closed path", "slug": "line-integral-example-2-part-2", "kind": "Video", "video_id": "Qqanbd3gLhw", "keywords": "line, integral, closed, path, calculus", "youtube_id": "Qqanbd3gLhw", "readable_id": "line-integral-example-2-part-2"}, "Q_Lp76ZkDE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q_Lp76ZkDE0.mp4/Q_Lp76ZkDE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q_Lp76ZkDE0.mp4/Q_Lp76ZkDE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q_Lp76ZkDE0.m3u8/Q_Lp76ZkDE0.m3u8"}, "path": "khan/test-prep/ap-art-history/indigenous-americas/feathered-headdress-aztec/", "duration": 257, "id": "Q_Lp76ZkDE0", "title": "Feathered headdress", "format": "mp4", "description": "Feathered headdress, Aztec, reproduction (National Anthropology Museum, Mexico City) Original: Feathered headdress, Mexico, Aztec, early 16th century, quetzal, cotinga, roseate spoonbill, piaya feathers; wood, fibers, amate paper, cotton, gold, gilded brass (World Museum, Vienna)\n\nThe headdress is also called the \u201cPenacho of Moctezuma II.\u201d\n\n\u201cMoctezuma II\u2019s Headdress\u201d was first mentioned in a European inventory in 1596, when it was acquired by Austrian Archduke Ferdinand II von Tyrol. It was listed there as \u201ca Moorish hat.\u201d\u00a0It was likely an object sent from Mesoamerica\u00a0to Europe by Hernan Cortes, but it is unknown whether it actually belonged to Moctezuma II himself.\n\nA conversation with Dr. Lauren Kilroy-Ewbank and Dr. Beth Harris\n", "slug": "feathered-headdress-aztec", "kind": "Video", "video_id": "Q_Lp76ZkDE0", "keywords": "Aztec, feather, headdress, Mesoamerica, Vienna, Mexico City, Mexico", "youtube_id": "Q_Lp76ZkDE0", "readable_id": "feathered-headdress-aztec"}, "Onkd8tChC2A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Onkd8tChC2A.mp4/Onkd8tChC2A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Onkd8tChC2A.mp4/Onkd8tChC2A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Onkd8tChC2A.m3u8/Onkd8tChC2A.m3u8"}, "duration": 593, "id": "Onkd8tChC2A", "title": "Kohlberg moral development", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/kohlberg-moral-development/", "slug": "kohlberg-moral-development", "kind": "Video", "video_id": "Onkd8tChC2A", "keywords": "", "youtube_id": "Onkd8tChC2A", "readable_id": "kohlberg-moral-development"}, "WAoaBTWKLoI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WAoaBTWKLoI.mp4/WAoaBTWKLoI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WAoaBTWKLoI.mp4/WAoaBTWKLoI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WAoaBTWKLoI.m3u8/WAoaBTWKLoI.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/trig-and-u-substitution-together-part-2/", "duration": 345, "id": "WAoaBTWKLoI", "title": "Trig and u substitution together (part 2)", "format": "mp4", "description": "", "slug": "trig-and-u-substitution-together-part-2", "kind": "Video", "video_id": "WAoaBTWKLoI", "keywords": "", "youtube_id": "WAoaBTWKLoI", "readable_id": "trig-and-u-substitution-together-part-2"}, "frUCL0snbPk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/frUCL0snbPk.mp4/frUCL0snbPk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/frUCL0snbPk.mp4/frUCL0snbPk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/frUCL0snbPk.m3u8/frUCL0snbPk.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-leukemia/leukemia-classifications/", "duration": 368, "id": "frUCL0snbPk", "title": "Leukemia classifications", "format": "mp4", "description": "Learn how leukemia can be classified as an acute or chronic and myeloid or lymphoid disease.", "slug": "leukemia-classifications", "kind": "Video", "video_id": "frUCL0snbPk", "keywords": "", "youtube_id": "frUCL0snbPk", "readable_id": "leukemia-classifications"}, "cJvoi0LuutQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cJvoi0LuutQ.mp4/cJvoi0LuutQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cJvoi0LuutQ.mp4/cJvoi0LuutQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cJvoi0LuutQ.m3u8/cJvoi0LuutQ.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/rsa-encryption-step-3/", "duration": 178, "id": "cJvoi0LuutQ", "title": "RSA encryption: Step 3", "format": "mp4", "description": "RSA Encryption (step 3)", "slug": "rsa-encryption-step-3", "kind": "Video", "video_id": "cJvoi0LuutQ", "keywords": "", "youtube_id": "cJvoi0LuutQ", "readable_id": "rsa-encryption-step-3"}, "PdSzruR5OeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PdSzruR5OeE.mp4/PdSzruR5OeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PdSzruR5OeE.mp4/PdSzruR5OeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PdSzruR5OeE.m3u8/PdSzruR5OeE.m3u8"}, "duration": 531, "id": "PdSzruR5OeE", "title": "Introduction to l'H\u00f4pital's rule", "format": "mp4", "description": "Introduction to L'H\u00f4pital's Rule", "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/introduction-to-l-hopital-s-rule/", "slug": "introduction-to-l-hopital-s-rule", "kind": "Video", "video_id": "PdSzruR5OeE", "keywords": "l'hopital's, rule, limit, derivative", "youtube_id": "PdSzruR5OeE", "readable_id": "introduction-to-l-hopital-s-rule"}, "EHLRl2D6zyE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EHLRl2D6zyE.mp4/EHLRl2D6zyE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EHLRl2D6zyE.mp4/EHLRl2D6zyE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EHLRl2D6zyE.m3u8/EHLRl2D6zyE.m3u8"}, "duration": 67, "id": "EHLRl2D6zyE", "title": "Discovery of magnetic fields", "format": "mp4", "description": "magnetic materials seem to have two sides (we could call them poles). Depending on orientation they can be attractive or repulsive. What is the shape of the force between fields?", "path": "khan/science/discoveries-projects/discoveries/magnetic-fields/discovery-of-magnetic-fields/", "slug": "discovery-of-magnetic-fields", "kind": "Video", "video_id": "EHLRl2D6zyE", "keywords": "magnetic fields, magnets", "youtube_id": "EHLRl2D6zyE", "readable_id": "discovery-of-magnetic-fields"}, "fVsxYtXOIXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fVsxYtXOIXg.mp4/fVsxYtXOIXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fVsxYtXOIXg.mp4/fVsxYtXOIXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fVsxYtXOIXg.m3u8/fVsxYtXOIXg.m3u8"}, "duration": 233, "id": "fVsxYtXOIXg", "title": "Plotting basic fractions on the number line", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/fractions-pre-alg/understanding-fractions-pre-alg/plotting-basic-fractions-on-the-number-line/", "slug": "plotting-basic-fractions-on-the-number-line", "kind": "Video", "video_id": "fVsxYtXOIXg", "keywords": "", "youtube_id": "fVsxYtXOIXg", "readable_id": "plotting-basic-fractions-on-the-number-line"}, "8XoQH1MVLew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8XoQH1MVLew.mp4/8XoQH1MVLew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8XoQH1MVLew.mp4/8XoQH1MVLew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8XoQH1MVLew.m3u8/8XoQH1MVLew.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/super-yoga/super-yoga-plans-solving-systems-by-elimination/", "duration": 456, "id": "8XoQH1MVLew", "title": "Super Yoga plans: Solving systems by elimination", "format": "mp4", "description": "Another way to solve for the number of sessions at which both plans cost the same", "slug": "super-yoga-plans-solving-systems-by-elimination", "kind": "Video", "video_id": "8XoQH1MVLew", "keywords": "", "youtube_id": "8XoQH1MVLew", "readable_id": "super-yoga-plans-solving-systems-by-elimination"}, "NLg6hfoKKlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NLg6hfoKKlE.mp4/NLg6hfoKKlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NLg6hfoKKlE.mp4/NLg6hfoKKlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NLg6hfoKKlE.m3u8/NLg6hfoKKlE.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/angles-part-3/", "duration": 587, "id": "NLg6hfoKKlE", "title": "Angles (part 3)", "format": "mp4", "description": "Angles formed when a transversal intersects parallel lines.", "slug": "angles-part-3", "kind": "Video", "video_id": "NLg6hfoKKlE", "keywords": "geometry, angles, transversal, parallel, alternate, interior, exterior, coressponding, math, CC_4_G_1, CC_8_G_5", "youtube_id": "NLg6hfoKKlE", "readable_id": "angles-part-3"}, "uXTRmzXlorI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uXTRmzXlorI.mp4/uXTRmzXlorI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uXTRmzXlorI.mp4/uXTRmzXlorI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uXTRmzXlorI.m3u8/uXTRmzXlorI.m3u8"}, "duration": 286, "id": "uXTRmzXlorI", "title": "Identity property of 0", "format": "mp4", "description": "Identity property of 0", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/identity-property-of-0/", "slug": "identity-property-of-0", "kind": "Video", "video_id": "uXTRmzXlorI", "keywords": "U09_L2_T2_we3, Identity, property, of, CC_6_EE_2_c", "youtube_id": "uXTRmzXlorI", "readable_id": "identity-property-of-0"}, "KfTosrMs5W0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KfTosrMs5W0.mp4/KfTosrMs5W0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KfTosrMs5W0.mp4/KfTosrMs5W0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KfTosrMs5W0.m3u8/KfTosrMs5W0.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/epoxide-formation-and-anti-dihydroxylation/", "duration": 740, "id": "KfTosrMs5W0", "title": "Epoxide formation and anti dihydroxylation", "format": "mp4", "description": "", "slug": "epoxide-formation-and-anti-dihydroxylation", "kind": "Video", "video_id": "KfTosrMs5W0", "keywords": "", "youtube_id": "KfTosrMs5W0", "readable_id": "epoxide-formation-and-anti-dihydroxylation"}, "3t1n5szXriQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3t1n5szXriQ.mp4/3t1n5szXriQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3t1n5szXriQ.mp4/3t1n5szXriQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3t1n5szXriQ.m3u8/3t1n5szXriQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/aortic-stenosis-and-aortic-regurgitation/", "duration": 727, "id": "3t1n5szXriQ", "title": "Aortic stenosis and aortic regurgitation", "format": "mp4", "description": "", "slug": "aortic-stenosis-and-aortic-regurgitation", "kind": "Video", "video_id": "3t1n5szXriQ", "keywords": "", "youtube_id": "3t1n5szXriQ", "readable_id": "aortic-stenosis-and-aortic-regurgitation"}, "xqpYeiefZl8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xqpYeiefZl8.mp4/xqpYeiefZl8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xqpYeiefZl8.mp4/xqpYeiefZl8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xqpYeiefZl8.m3u8/xqpYeiefZl8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/copy-of-balancing-chemical-equations/balancing-more-complex-chemical-equation/", "duration": 277, "id": "xqpYeiefZl8", "title": "Balancing more complex chemical equation", "format": "mp4", "description": "", "slug": "balancing-more-complex-chemical-equation", "kind": "Video", "video_id": "xqpYeiefZl8", "keywords": "", "youtube_id": "xqpYeiefZl8", "readable_id": "balancing-more-complex-chemical-equation"}, "Pl7nzXaVqak": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pl7nzXaVqak.mp4/Pl7nzXaVqak.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pl7nzXaVqak.mp4/Pl7nzXaVqak.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pl7nzXaVqak.m3u8/Pl7nzXaVqak.m3u8"}, "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-biosignaling/ligand-gated-ion-channels/", "duration": 443, "id": "Pl7nzXaVqak", "title": "Ligand Gated Ion Channels", "format": "mp4", "description": "Learn about how ligand gated ion channels work in the cell membrane.", "slug": "ligand-gated-ion-channels", "kind": "Video", "video_id": "Pl7nzXaVqak", "keywords": "", "youtube_id": "Pl7nzXaVqak", "readable_id": "ligand-gated-ion-channels"}, "nXgL7C7emDQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nXgL7C7emDQ.mp4/nXgL7C7emDQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nXgL7C7emDQ.mp4/nXgL7C7emDQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nXgL7C7emDQ.m3u8/nXgL7C7emDQ.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sight/vision-structure-of-the-eye/", "duration": 628, "id": "nXgL7C7emDQ", "title": "The structure of the eye", "format": "mp4", "description": "In this video, I review the structure of the eye. By Ronald Sahyouni. ", "slug": "vision-structure-of-the-eye", "kind": "Video", "video_id": "nXgL7C7emDQ", "keywords": "vision, eye, structure", "youtube_id": "nXgL7C7emDQ", "readable_id": "vision-structure-of-the-eye"}, "cw3mp8oNASk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cw3mp8oNASk.mp4/cw3mp8oNASk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cw3mp8oNASk.mp4/cw3mp8oNASk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cw3mp8oNASk.m3u8/cw3mp8oNASk.m3u8"}, "duration": 189, "id": "cw3mp8oNASk", "title": "Simplifying square roots", "format": "mp4", "description": "", "path": "khan/math/algebra-basics/core-algebra-foundations/square-roots-for-college/simplifying-square-roots-1/", "slug": "simplifying-square-roots-1", "kind": "Video", "video_id": "cw3mp8oNASk", "keywords": "", "youtube_id": "cw3mp8oNASk", "readable_id": "simplifying-square-roots-1"}, "XBPgPEo0Xx4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XBPgPEo0Xx4.mp4/XBPgPEo0Xx4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XBPgPEo0Xx4.mp4/XBPgPEo0Xx4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XBPgPEo0Xx4.m3u8/XBPgPEo0Xx4.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/c-zanne-still-life-with-plaster-cupid-c-1895/", "duration": 305, "id": "XBPgPEo0Xx4", "title": "C\u00e9zanne, Still Life with Plaster Cupid", "format": "mp4", "description": "Paul C\u00e9zanne, Still Life with Plaster Cupid, oil on canvas, c.1895 (Courtauld Gallery, London) Speakers: Beth Harris, Rachel Ropeik, and Steven Zucker For more: http://smarthistory.org/Cezannes-Still-Life-with-Apples.html", "slug": "c-zanne-still-life-with-plaster-cupid-c-1895", "kind": "Video", "video_id": "XBPgPEo0Xx4", "keywords": "Paul C\u00e9zanne Cupid, Smarthistory, Art History, Impressionism", "youtube_id": "XBPgPEo0Xx4", "readable_id": "c-zanne-still-life-with-plaster-cupid-c-1895"}, "rLNM8zI4Q_M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rLNM8zI4Q_M.mp4/rLNM8zI4Q_M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rLNM8zI4Q_M.mp4/rLNM8zI4Q_M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rLNM8zI4Q_M.m3u8/rLNM8zI4Q_M.m3u8"}, "duration": 577, "id": "rLNM8zI4Q_M", "title": "Introduction to light", "format": "mp4", "description": "Light and electromagnetic radiation", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/light-fundamental-forces/introduction-to-light/", "slug": "introduction-to-light", "kind": "Video", "video_id": "rLNM8zI4Q_M", "keywords": "physics, light, quantum, photon, speed", "youtube_id": "rLNM8zI4Q_M", "readable_id": "introduction-to-light"}, "vN0aL-_vIKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vN0aL-_vIKM.mp4/vN0aL-_vIKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vN0aL-_vIKM.mp4/vN0aL-_vIKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vN0aL-_vIKM.m3u8/vN0aL-_vIKM.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/simply-a-polynomial/", "duration": 217, "id": "vN0aL-_vIKM", "title": "Simplify a polynomial", "format": "mp4", "description": "Working through simplifying a polynomial", "slug": "simply-a-polynomial", "kind": "Video", "video_id": "vN0aL-_vIKM", "keywords": "u11_l2_t1_we3, Simplify, polynomial", "youtube_id": "vN0aL-_vIKM", "readable_id": "simply-a-polynomial"}, "3SO1BQQ9_1E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3SO1BQQ9_1E.mp4/3SO1BQQ9_1E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3SO1BQQ9_1E.mp4/3SO1BQQ9_1E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3SO1BQQ9_1E.m3u8/3SO1BQQ9_1E.m3u8"}, "duration": 143, "id": "3SO1BQQ9_1E", "title": "Testing if a relationship is a function", "format": "mp4", "description": "Testing if a relationship is a function", "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/testing-if-a-relationship-is-a-function/", "slug": "testing-if-a-relationship-is-a-function", "kind": "Video", "video_id": "3SO1BQQ9_1E", "keywords": "U03_L2_T1_we2, Testing, if, relationship, is, function, CC_8_F_1, CC_8_F_5, CC_39336_F-IF_4, CC_39336_F-IF_7", "youtube_id": "3SO1BQQ9_1E", "readable_id": "testing-if-a-relationship-is-a-function"}, "KNtVlP9Htnk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KNtVlP9Htnk.mp4/KNtVlP9Htnk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KNtVlP9Htnk.mp4/KNtVlP9Htnk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KNtVlP9Htnk.m3u8/KNtVlP9Htnk.m3u8"}, "duration": 93, "id": "KNtVlP9Htnk", "title": "IR sensor", "format": "mp4", "description": "In this video we connect, bend and wire Bit-zee's IR sensor. This sensor will allow Bit-zee to receive commands from a universal remote control.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-ir-sensor/", "slug": "bit-zee-s-ir-sensor", "kind": "Video", "video_id": "KNtVlP9Htnk", "keywords": "IR sensor, Infrared, bit-zee, bot, universal remote,", "youtube_id": "KNtVlP9Htnk", "readable_id": "bit-zee-s-ir-sensor"}, "fSk1Crn3R2E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fSk1Crn3R2E.mp4/fSk1Crn3R2E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fSk1Crn3R2E.mp4/fSk1Crn3R2E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fSk1Crn3R2E.m3u8/fSk1Crn3R2E.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/hydrogenation/", "duration": 702, "id": "fSk1Crn3R2E", "title": "Hydrogenation", "format": "mp4", "description": "", "slug": "hydrogenation", "kind": "Video", "video_id": "fSk1Crn3R2E", "keywords": "", "youtube_id": "fSk1Crn3R2E", "readable_id": "hydrogenation"}, "S-XKGBesRzk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S-XKGBesRzk.mp4/S-XKGBesRzk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S-XKGBesRzk.mp4/S-XKGBesRzk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S-XKGBesRzk.m3u8/S-XKGBesRzk.m3u8"}, "duration": 688, "id": "S-XKGBesRzk", "title": "Partial fraction expansion 1", "format": "mp4", "description": "Introduction to partial fraction expansion", "path": "khan/math/algebra2/rational-expressions/partial-fraction-expan-alg/partial-fraction-expansion-1/", "slug": "partial-fraction-expansion-1", "kind": "Video", "video_id": "S-XKGBesRzk", "keywords": "partial, fraction, expansion, decomposition, CC_39336_A-APR_6", "youtube_id": "S-XKGBesRzk", "readable_id": "partial-fraction-expansion-1"}, "_dLpDljQWis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_dLpDljQWis.mp4/_dLpDljQWis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_dLpDljQWis.mp4/_dLpDljQWis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_dLpDljQWis.m3u8/_dLpDljQWis.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/lynda-benglis-omega-1973/", "duration": 283, "id": "_dLpDljQWis", "title": "Chicago, Pasadena Lifesaver, Blue Series, No. 4 & Benglis, Omega", "format": "mp4", "description": "Lynda Benglis, Omega, 1973 (Portland Art Museum) Judy Chicago, Pasadena Lifesaver, Blue Series, Number 4, 1969-70 (Portland Art Museum) Speakers: Bruce Guenther, Dr. Beth Harris For more: http://smarthistory.org/judy-chicagos-pasadena-lifesaver-4-and-lynda-bengliss-omega.html", "slug": "lynda-benglis-omega-1973", "kind": "Video", "video_id": "_dLpDljQWis", "keywords": "Chicago, Benglis, Art History, Smarthistory", "youtube_id": "_dLpDljQWis", "readable_id": "lynda-benglis-omega-1973"}, "iA7Thhnzc64": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iA7Thhnzc64.mp4/iA7Thhnzc64.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iA7Thhnzc64.mp4/iA7Thhnzc64.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iA7Thhnzc64.m3u8/iA7Thhnzc64.m3u8"}, "duration": 549, "id": "iA7Thhnzc64", "title": "Force of friction keeping velocity constant", "format": "mp4", "description": "Calculating the coefficient of kinetic friction (correction made in next video)", "path": "khan/test-prep/mcat/physical-processes/forces-on-inclined-planes/force-of-friction-keeping-velocity-constant/", "slug": "force-of-friction-keeping-velocity-constant", "kind": "Video", "video_id": "iA7Thhnzc64", "keywords": "friction, coefficient, static, mechanics, physics", "youtube_id": "iA7Thhnzc64", "readable_id": "force-of-friction-keeping-velocity-constant"}, "oDPNSPbjzQ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oDPNSPbjzQ8.mp4/oDPNSPbjzQ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oDPNSPbjzQ8.mp4/oDPNSPbjzQ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oDPNSPbjzQ8.m3u8/oDPNSPbjzQ8.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/masaccio-the-tribute-money-1427/", "duration": 485, "id": "oDPNSPbjzQ8", "title": "Masaccio, The Tribute Money in the Brancacci Chapel", "format": "mp4", "description": "Masaccio, The Tribute Money, 1427, fresco (Brancacci Chapel, Santa Maria del Carmine, Florence)\n\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "masaccio-the-tribute-money-1427", "kind": "Video", "video_id": "oDPNSPbjzQ8", "keywords": "Masaccio, Tribute Money, Smarthistory, Khan Academy, Florence, Renaissance, Early Renaissance, Brancacci Chapel", "youtube_id": "oDPNSPbjzQ8", "readable_id": "masaccio-the-tribute-money-1427"}, "EgOyJJxuuP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EgOyJJxuuP8.mp4/EgOyJJxuuP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EgOyJJxuuP8.mp4/EgOyJJxuuP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EgOyJJxuuP8.m3u8/EgOyJJxuuP8.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-scale-drawings/scale-drawing-example-2/", "duration": 351, "id": "EgOyJJxuuP8", "title": "Solve a scale drawing word problem", "format": "mp4", "description": "See how we solve a word problem by using a scale drawing and finding the scale factor.", "slug": "scale-drawing-example-2", "kind": "Video", "video_id": "EgOyJJxuuP8", "keywords": "", "youtube_id": "EgOyJJxuuP8", "readable_id": "scale-drawing-example-2"}, "CEPuNmVKnZM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CEPuNmVKnZM.mp4/CEPuNmVKnZM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CEPuNmVKnZM.mp4/CEPuNmVKnZM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CEPuNmVKnZM.m3u8/CEPuNmVKnZM.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/arc-length-polar-graphs/polar-arc-length-formula/", "duration": 706, "id": "CEPuNmVKnZM", "title": "Justification for polar arc length formula", "format": "mp4", "description": "", "slug": "polar-arc-length-formula", "kind": "Video", "video_id": "CEPuNmVKnZM", "keywords": "", "youtube_id": "CEPuNmVKnZM", "readable_id": "polar-arc-length-formula"}, "DFD1oDbrSjM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DFD1oDbrSjM.mp4/DFD1oDbrSjM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DFD1oDbrSjM.mp4/DFD1oDbrSjM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DFD1oDbrSjM.m3u8/DFD1oDbrSjM.m3u8"}, "duration": 688, "id": "DFD1oDbrSjM", "title": "Social influences", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/social-influences/", "slug": "social-influences", "kind": "Video", "video_id": "DFD1oDbrSjM", "keywords": "", "youtube_id": "DFD1oDbrSjM", "readable_id": "social-influences"}, "awzOvyMKeMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/awzOvyMKeMA.mp4/awzOvyMKeMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/awzOvyMKeMA.mp4/awzOvyMKeMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/awzOvyMKeMA.m3u8/awzOvyMKeMA.m3u8"}, "duration": 575, "id": "awzOvyMKeMA", "title": "Solving for time", "format": "mp4", "description": "Simple example of solving for time given distance and rate", "path": "khan/test-prep/mcat/physical-processes/speed-and-velocity/solving-for-time/", "slug": "solving-for-time", "kind": "Video", "video_id": "awzOvyMKeMA", "keywords": "velocity, physics, mechanics", "youtube_id": "awzOvyMKeMA", "readable_id": "solving-for-time"}, "L1qpKn2hNF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L1qpKn2hNF0.mp4/L1qpKn2hNF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L1qpKn2hNF0.mp4/L1qpKn2hNF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L1qpKn2hNF0.m3u8/L1qpKn2hNF0.m3u8"}, "duration": 670, "id": "L1qpKn2hNF0", "title": "Circulatory & respiratory systems", "format": "mp4", "description": "Hank takes us on a trip around the body - we follow the circulatory and respiratory systems as they deliver oxygen and remove carbon dioxide from cells, and help make it possible for our bodies to function.", "path": "crash-course-biology-126/", "slug": "crash-course-biology-126", "kind": "Video", "video_id": "L1qpKn2hNF0", "keywords": "", "youtube_id": "L1qpKn2hNF0", "readable_id": "crash-course-biology-126"}, "trdbaV4TaAo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/trdbaV4TaAo.mp4/trdbaV4TaAo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/trdbaV4TaAo.mp4/trdbaV4TaAo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/trdbaV4TaAo.m3u8/trdbaV4TaAo.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-scientific-notation/scientific-notation-old/", "duration": 1248, "id": "trdbaV4TaAo", "title": "Introduction to scientific notation", "format": "mp4", "description": "Introduction to scientific notation. An in-depth discussion about why and how scientific notation is used.", "slug": "scientific-notation-old", "kind": "Video", "video_id": "trdbaV4TaAo", "keywords": "scientific, notation, CC_8_EE_3, CC_8_EE_4", "youtube_id": "trdbaV4TaAo", "readable_id": "scientific-notation-old"}, "E9fw0EU4wpA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E9fw0EU4wpA.mp4/E9fw0EU4wpA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E9fw0EU4wpA.mp4/E9fw0EU4wpA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E9fw0EU4wpA.m3u8/E9fw0EU4wpA.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-preparation-epoxides/preparation-of-epoxides-stereochemistry/", "duration": 896, "id": "E9fw0EU4wpA", "title": "Preparation of epoxides: Stereochemistry", "format": "mp4", "description": "", "slug": "preparation-of-epoxides-stereochemistry", "kind": "Video", "video_id": "E9fw0EU4wpA", "keywords": "", "youtube_id": "E9fw0EU4wpA", "readable_id": "preparation-of-epoxides-stereochemistry"}, "dvoHB9djouc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dvoHB9djouc.mp4/dvoHB9djouc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dvoHB9djouc.mp4/dvoHB9djouc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dvoHB9djouc.m3u8/dvoHB9djouc.m3u8"}, "duration": 485, "id": "dvoHB9djouc", "title": "Variance of a population", "format": "mp4", "description": "Variance as a measure of, on average, how far the data points in a population are from the population mean", "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/variance-of-a-population/", "slug": "variance-of-a-population", "kind": "Video", "video_id": "dvoHB9djouc", "keywords": "variance, standard deviation, population, mean, parameter", "youtube_id": "dvoHB9djouc", "readable_id": "variance-of-a-population"}, "MamrTJ7V_Vg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MamrTJ7V_Vg.mp4/MamrTJ7V_Vg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MamrTJ7V_Vg.mp4/MamrTJ7V_Vg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MamrTJ7V_Vg.m3u8/MamrTJ7V_Vg.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-area-perimeter-polygon/area-comparisons/", "duration": 237, "id": "MamrTJ7V_Vg", "title": "Finding area by rearranging parts", "format": "mp4", "description": "Sometimes it helps to rearrange the parts of geometric figures to find the area. That's what we're going to do here.", "slug": "area-comparisons", "kind": "Video", "video_id": "MamrTJ7V_Vg", "keywords": "", "youtube_id": "MamrTJ7V_Vg", "readable_id": "area-comparisons"}, "LO7-3MpWijU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LO7-3MpWijU.mp4/LO7-3MpWijU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LO7-3MpWijU.mp4/LO7-3MpWijU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LO7-3MpWijU.m3u8/LO7-3MpWijU.m3u8"}, "duration": 378, "id": "LO7-3MpWijU", "title": "Cosmological time scale 2", "format": "mp4", "description": "Cosmological Time Scale 2", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/cosmos-time-scale-tutorial/cosmological-time-scale-2/", "slug": "cosmological-time-scale-2", "kind": "Video", "video_id": "LO7-3MpWijU", "keywords": "Cosmological, Time, Scale, Big, Bang, Age, Universe", "youtube_id": "LO7-3MpWijU", "readable_id": "cosmological-time-scale-2"}, "SvFtmPhbNRw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SvFtmPhbNRw.mp4/SvFtmPhbNRw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SvFtmPhbNRw.mp4/SvFtmPhbNRw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SvFtmPhbNRw.m3u8/SvFtmPhbNRw.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/courbet-the-artist-s-studio-1854-55/", "duration": 325, "id": "SvFtmPhbNRw", "title": "Courbet, The Artist's Studio, a real allegory summing up seven years of my artistic and moral life", "format": "mp4", "description": "Gustave Courbet, The Artist's Studio; A real allegory summing up seven years of my artistic and moral life, oil on canvas, 1854-55 (Mus\u00e9e d'Orsay, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "courbet-the-artist-s-studio-1854-55", "kind": "Video", "video_id": "SvFtmPhbNRw", "keywords": "Courbet, The artist's studio, art history, smarthistory, realism, Mus\u00e9e d'Orsay, Paris, history of art", "youtube_id": "SvFtmPhbNRw", "readable_id": "courbet-the-artist-s-studio-1854-55"}, "R528WbVdC0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R528WbVdC0I.mp4/R528WbVdC0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R528WbVdC0I.mp4/R528WbVdC0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R528WbVdC0I.m3u8/R528WbVdC0I.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-13-does-the-bailout-have-a-chance-of-working/", "duration": 659, "id": "R528WbVdC0I", "title": "Bailout 13: Does the bailout have a chance of working?", "format": "mp4", "description": "Can the bailout work?", "slug": "bailout-13-does-the-bailout-have-a-chance-of-working", "kind": "Video", "video_id": "R528WbVdC0I", "keywords": "bailout, 700, billion, paulson, bernanke, fed", "youtube_id": "R528WbVdC0I", "readable_id": "bailout-13-does-the-bailout-have-a-chance-of-working"}, "MMv-027KEqU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MMv-027KEqU.mp4/MMv-027KEqU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MMv-027KEqU.mp4/MMv-027KEqU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MMv-027KEqU.m3u8/MMv-027KEqU.m3u8"}, "duration": 223, "id": "MMv-027KEqU", "title": "Antiderivatives and indefinite integrals", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/antiderivatives-and-indefinite-integrals/", "slug": "antiderivatives-and-indefinite-integrals", "kind": "Video", "video_id": "MMv-027KEqU", "keywords": "", "youtube_id": "MMv-027KEqU", "readable_id": "antiderivatives-and-indefinite-integrals"}, "ZBLoUQAMWP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZBLoUQAMWP8.mp4/ZBLoUQAMWP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZBLoUQAMWP8.mp4/ZBLoUQAMWP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZBLoUQAMWP8.m3u8/ZBLoUQAMWP8.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/principles-of-bioenergetics/gibbs-free-energy-introduction/", "duration": 588, "id": "ZBLoUQAMWP8", "title": "Gibbs free energy introduction", "format": "mp4", "description": "", "slug": "gibbs-free-energy-introduction", "kind": "Video", "video_id": "ZBLoUQAMWP8", "keywords": "", "youtube_id": "ZBLoUQAMWP8", "readable_id": "gibbs-free-energy-introduction"}, "7UISwx2Mr4c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7UISwx2Mr4c.mp4/7UISwx2Mr4c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7UISwx2Mr4c.mp4/7UISwx2Mr4c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7UISwx2Mr4c.m3u8/7UISwx2Mr4c.m3u8"}, "duration": 543, "id": "7UISwx2Mr4c", "title": "Congruent legs and base angles of isosceles triangles", "format": "mp4", "description": "Showing that congruent legs imply equal base angles and vice versa", "path": "khan/math/geometry/congruent-triangles/isoscleles_equil/congruent-legs-and-base-angles-of-isosceles-triangles/", "slug": "congruent-legs-and-base-angles-of-isosceles-triangles", "kind": "Video", "video_id": "7UISwx2Mr4c", "keywords": "Congruent, legs, and, base, angles, of, Isosceles, Triangles", "youtube_id": "7UISwx2Mr4c", "readable_id": "congruent-legs-and-base-angles-of-isosceles-triangles"}, "5jwXThH6fg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5jwXThH6fg4.mp4/5jwXThH6fg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5jwXThH6fg4.mp4/5jwXThH6fg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5jwXThH6fg4.m3u8/5jwXThH6fg4.m3u8"}, "duration": 267, "id": "5jwXThH6fg4", "title": "Sigma notation for sums", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/sigma-notation-sum/", "slug": "sigma-notation-sum", "kind": "Video", "video_id": "5jwXThH6fg4", "keywords": "", "youtube_id": "5jwXThH6fg4", "readable_id": "sigma-notation-sum"}, "DuArVnT1i-E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DuArVnT1i-E.mp4/DuArVnT1i-E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DuArVnT1i-E.mp4/DuArVnT1i-E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DuArVnT1i-E.m3u8/DuArVnT1i-E.m3u8"}, "duration": 1191, "id": "DuArVnT1i-E", "title": "Variation in a species", "format": "mp4", "description": "How variation can be introduced into a species.", "path": "khan/science/biology/her/evolution-and-natural-selection/variation-in-a-species/", "slug": "variation-in-a-species", "kind": "Video", "video_id": "DuArVnT1i-E", "keywords": "natural, selection, biology, evolution, variation", "youtube_id": "DuArVnT1i-E", "readable_id": "variation-in-a-species"}, "79NnsYrAXz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/79NnsYrAXz4.mp4/79NnsYrAXz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/79NnsYrAXz4.mp4/79NnsYrAXz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/79NnsYrAXz4.m3u8/79NnsYrAXz4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/placental-abruption/", "duration": 453, "id": "79NnsYrAXz4", "title": "Placental abruption", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "placental-abruption", "kind": "Video", "video_id": "79NnsYrAXz4", "keywords": "", "youtube_id": "79NnsYrAXz4", "readable_id": "placental-abruption"}, "iKGCnjBi2sQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iKGCnjBi2sQ.mp4/iKGCnjBi2sQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iKGCnjBi2sQ.mp4/iKGCnjBi2sQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iKGCnjBi2sQ.m3u8/iKGCnjBi2sQ.m3u8"}, "duration": 140, "id": "iKGCnjBi2sQ", "title": "Fernand L\u00e9ger, \"Contrast of Forms\"", "format": "mp4", "description": "To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art. ", "path": "khan/humanities/art-1010/early-abstraction/cubism/moma-contrast-of-forms/", "slug": "moma-contrast-of-forms", "kind": "Video", "video_id": "iKGCnjBi2sQ", "keywords": "", "youtube_id": "iKGCnjBi2sQ", "readable_id": "moma-contrast-of-forms"}, "GBtcGO44e-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GBtcGO44e-A.mp4/GBtcGO44e-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GBtcGO44e-A.mp4/GBtcGO44e-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GBtcGO44e-A.m3u8/GBtcGO44e-A.m3u8"}, "duration": 310, "id": "GBtcGO44e-A", "title": "Alternate mental subtraction method", "format": "mp4", "description": "How I subtract in my head", "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/alternate-mental-subtraction-method/", "slug": "alternate-mental-subtraction-method", "kind": "Video", "video_id": "GBtcGO44e-A", "keywords": "mental, subtraction, CC_1_OA_6, CC_2_OA_2", "youtube_id": "GBtcGO44e-A", "readable_id": "alternate-mental-subtraction-method"}, "1yInzfzDDKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1yInzfzDDKY.mp4/1yInzfzDDKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1yInzfzDDKY.mp4/1yInzfzDDKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1yInzfzDDKY.m3u8/1yInzfzDDKY.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/divergence-test/", "duration": 476, "id": "1yInzfzDDKY", "title": "The nth term divergence test", "format": "mp4", "description": "Our first test to see whether a series diverges!", "slug": "divergence-test", "kind": "Video", "video_id": "1yInzfzDDKY", "keywords": "", "youtube_id": "1yInzfzDDKY", "readable_id": "divergence-test"}, "JKvmAexeMgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JKvmAexeMgY.mp4/JKvmAexeMgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JKvmAexeMgY.mp4/JKvmAexeMgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JKvmAexeMgY.m3u8/JKvmAexeMgY.m3u8"}, "duration": 180, "id": "JKvmAexeMgY", "title": "Product of functions", "format": "mp4", "description": "Product of Functions", "path": "khan/math/algebra2/functions_and_graphs/function_expressions/product-of-functions/", "slug": "product-of-functions", "kind": "Video", "video_id": "JKvmAexeMgY", "keywords": "u17_l3_t1_we3, Product, of, Functions", "youtube_id": "JKvmAexeMgY", "readable_id": "product-of-functions"}, "MoCuVa9UeR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MoCuVa9UeR4.mp4/MoCuVa9UeR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MoCuVa9UeR4.mp4/MoCuVa9UeR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MoCuVa9UeR4.m3u8/MoCuVa9UeR4.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/utilitarianism-part-3/", "duration": 210, "id": "MoCuVa9UeR4", "title": "Ethics: Utilitarianism part 3", "format": "mp4", "description": "Julia Markovits (Cornell University) gives an introduction to the moral theory of utilitarianism. Utilitarianism is the view that the right moral action is the one that maximizes happiness for all.\n\nSpeaker: Dr.\u00a0Julia Markovits, Associate Professor, Sage School of Philosophy, Cornell Universtiy", "slug": "utilitarianism-part-3", "kind": "Video", "video_id": "MoCuVa9UeR4", "keywords": "", "youtube_id": "MoCuVa9UeR4", "readable_id": "utilitarianism-part-3"}, "KyYC8XzKsHU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KyYC8XzKsHU.mp4/KyYC8XzKsHU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KyYC8XzKsHU.mp4/KyYC8XzKsHU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KyYC8XzKsHU.m3u8/KyYC8XzKsHU.m3u8"}, "duration": 325, "id": "KyYC8XzKsHU", "title": "Finding slope of tangent line with implicit differentiation", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/finding-slope-of-tangent-line-with-implicit-differentiation/", "slug": "finding-slope-of-tangent-line-with-implicit-differentiation", "kind": "Video", "video_id": "KyYC8XzKsHU", "keywords": "", "youtube_id": "KyYC8XzKsHU", "readable_id": "finding-slope-of-tangent-line-with-implicit-differentiation"}, "E4WYJC85UQk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E4WYJC85UQk.mp4/E4WYJC85UQk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E4WYJC85UQk.mp4/E4WYJC85UQk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E4WYJC85UQk.m3u8/E4WYJC85UQk.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/batteries/electrolyte-test-pure-water-vs-vinegr/", "duration": 83, "id": "E4WYJC85UQk", "title": "Electrolyte test (pure water vs. vinegar)", "format": "mp4", "description": "First we attach our galvanometer to a piece of copper and zinc. Then we submerge the metals in pure water and vinegar. What is the difference? Why?", "slug": "electrolyte-test-pure-water-vs-vinegr", "kind": "Video", "video_id": "E4WYJC85UQk", "keywords": "battery", "youtube_id": "E4WYJC85UQk", "readable_id": "electrolyte-test-pure-water-vs-vinegr"}, "m5xu4r0szaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m5xu4r0szaA.mp4/m5xu4r0szaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m5xu4r0szaA.mp4/m5xu4r0szaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m5xu4r0szaA.m3u8/m5xu4r0szaA.m3u8"}, "duration": 927, "id": "m5xu4r0szaA", "title": "American-Chinese debt loop", "format": "mp4", "description": "How the Chinese buying of American debt leads to lower interest rates", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/american-chinese-debt-loop/", "slug": "american-chinese-debt-loop", "kind": "Video", "video_id": "m5xu4r0szaA", "keywords": "china, america, us, debt, currency, crisis", "youtube_id": "m5xu4r0szaA", "readable_id": "american-chinese-debt-loop"}, "ATVo6knQ4wA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ATVo6knQ4wA.mp4/ATVo6knQ4wA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ATVo6knQ4wA.mp4/ATVo6knQ4wA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ATVo6knQ4wA.m3u8/ATVo6knQ4wA.m3u8"}, "duration": 375, "id": "ATVo6knQ4wA", "title": "Article III of the U.S. Constitution", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "article-iii-three-of-the-us-constitution/", "slug": "article-iii-three-of-the-us-constitution", "kind": "Video", "video_id": "ATVo6knQ4wA", "keywords": "", "youtube_id": "ATVo6knQ4wA", "readable_id": "article-iii-three-of-the-us-constitution"}, "MQfzFjedKeo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MQfzFjedKeo.mp4/MQfzFjedKeo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MQfzFjedKeo.mp4/MQfzFjedKeo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MQfzFjedKeo.m3u8/MQfzFjedKeo.m3u8"}, "path": "khan/partner-content/big-history-project/life/other-materials5/bhp-lifes-evolution-story/", "duration": 414, "id": "MQfzFjedKeo", "title": "Life's Evolutionary Story", "format": "mp4", "description": "Today's amazing biodiversity all began with a common single-celled ancestor billions of years ago.", "slug": "bhp-lifes-evolution-story", "kind": "Video", "video_id": "MQfzFjedKeo", "keywords": "", "youtube_id": "MQfzFjedKeo", "readable_id": "bhp-lifes-evolution-story"}, "eS-_ZFzHjYA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eS-_ZFzHjYA.mp4/eS-_ZFzHjYA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eS-_ZFzHjYA.mp4/eS-_ZFzHjYA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eS-_ZFzHjYA.m3u8/eS-_ZFzHjYA.m3u8"}, "duration": 331, "id": "eS-_ZFzHjYA", "title": "Minimizing combined area", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/minimizing-combined-area/", "slug": "minimizing-combined-area", "kind": "Video", "video_id": "eS-_ZFzHjYA", "keywords": "", "youtube_id": "eS-_ZFzHjYA", "readable_id": "minimizing-combined-area"}, "hq1bUM2tyg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hq1bUM2tyg0.mp4/hq1bUM2tyg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hq1bUM2tyg0.mp4/hq1bUM2tyg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hq1bUM2tyg0.m3u8/hq1bUM2tyg0.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/super-yoga/super-yoga-plans-solving-one-step-equations/", "duration": 460, "id": "hq1bUM2tyg0", "title": "Variables and equations word problem: Which Super Yoga plan is best?", "format": "mp4", "description": "If you're coming to this video before seeing the previous one, back up! Otherwise, we're solving one-step equations to learn which Super Plan is the best value for our budget.", "slug": "super-yoga-plans-solving-one-step-equations", "kind": "Video", "video_id": "hq1bUM2tyg0", "keywords": "", "youtube_id": "hq1bUM2tyg0", "readable_id": "super-yoga-plans-solving-one-step-equations"}, "P7LKEkcNibo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P7LKEkcNibo.mp4/P7LKEkcNibo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P7LKEkcNibo.mp4/P7LKEkcNibo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P7LKEkcNibo.m3u8/P7LKEkcNibo.m3u8"}, "duration": 429, "id": "P7LKEkcNibo", "title": "Deriving max projectile displacement given time", "format": "mp4", "description": "Deriving a formula for maximum projectile displacement as a function of elapsed time", "path": "khan/science/physics/one-dimensional-motion/kinematic_formulas/deriving-max-projectile-displacement-given-time/", "slug": "deriving-max-projectile-displacement-given-time", "kind": "Video", "video_id": "P7LKEkcNibo", "keywords": "physics, projectile, motion", "youtube_id": "P7LKEkcNibo", "readable_id": "deriving-max-projectile-displacement-given-time"}, "zfJqkiNXShI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zfJqkiNXShI.mp4/zfJqkiNXShI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zfJqkiNXShI.mp4/zfJqkiNXShI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zfJqkiNXShI.m3u8/zfJqkiNXShI.m3u8"}, "duration": 667, "id": "zfJqkiNXShI", "title": "Christianity from Judaism to Constantine", "format": "mp4", "description": "In which John Green teaches you the history of Christianity, from the beginnings of Judaism and the development of monotheism, right up to Paul and how Christianity stormed the Roman Empire in just a few hundred years. Along the way, John will cover Abram/Abraham, the Covenant, the Roman Occupation of Judea, and the birth, life, death and legacy of Jesus of Nazareth. No flame wars! Let's keep the commentary civil.", "path": "khan/humanities/history/crashcourse-worldhistory/whats-god-got-to-do-with-it-2/crash-course-world-history-11/", "slug": "crash-course-world-history-11", "kind": "Video", "video_id": "zfJqkiNXShI", "keywords": "crash course", "youtube_id": "zfJqkiNXShI", "readable_id": "crash-course-world-history-11"}, "TDQAd2N2Cls": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TDQAd2N2Cls.mp4/TDQAd2N2Cls.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TDQAd2N2Cls.mp4/TDQAd2N2Cls.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TDQAd2N2Cls.m3u8/TDQAd2N2Cls.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-laryngeal-conditions/hib-vaccine/", "duration": 542, "id": "TDQAd2N2Cls", "title": "Hib vaccine", "format": "mp4", "description": "", "slug": "hib-vaccine", "kind": "Video", "video_id": "TDQAd2N2Cls", "keywords": "", "youtube_id": "TDQAd2N2Cls", "readable_id": "hib-vaccine"}, "sBuM8hTGlag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sBuM8hTGlag.mp4/sBuM8hTGlag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sBuM8hTGlag.mp4/sBuM8hTGlag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sBuM8hTGlag.m3u8/sBuM8hTGlag.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/kinetic-and-thermodynamic-enolates/", "duration": 499, "id": "sBuM8hTGlag", "title": "Kinetic and thermodynamic enolates", "format": "mp4", "description": "How to form different enolates from ketones", "slug": "kinetic-and-thermodynamic-enolates", "kind": "Video", "video_id": "sBuM8hTGlag", "keywords": "", "youtube_id": "sBuM8hTGlag", "readable_id": "kinetic-and-thermodynamic-enolates"}, "_JpS8k1a9yE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_JpS8k1a9yE.mp4/_JpS8k1a9yE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_JpS8k1a9yE.mp4/_JpS8k1a9yE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_JpS8k1a9yE.m3u8/_JpS8k1a9yE.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/logistic-differential-equation/modeling-population-with-differential-equations/", "duration": 577, "id": "_JpS8k1a9yE", "title": "Modeling population as an exponential function", "format": "mp4", "description": "", "slug": "modeling-population-with-differential-equations", "kind": "Video", "video_id": "_JpS8k1a9yE", "keywords": "", "youtube_id": "_JpS8k1a9yE", "readable_id": "modeling-population-with-differential-equations"}, "hjigR_rHKDI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hjigR_rHKDI.mp4/hjigR_rHKDI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hjigR_rHKDI.mp4/hjigR_rHKDI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hjigR_rHKDI.m3u8/hjigR_rHKDI.m3u8"}, "duration": 344, "id": "hjigR_rHKDI", "title": "Non-linear systems of equations 1", "format": "mp4", "description": "Non-Linear Systems of Equations 1", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/non-linear-systems-of-equations-1/", "slug": "non-linear-systems-of-equations-1", "kind": "Video", "video_id": "hjigR_rHKDI", "keywords": "U10_L2_T2_we1, Non-Linear, Systems, of, Equations, CC_39336_A-REI_10, CC_39336_A-REI_7, CC_39336_F-IF_7_a", "youtube_id": "hjigR_rHKDI", "readable_id": "non-linear-systems-of-equations-1"}, "5kFnAmmGXM4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5kFnAmmGXM4.mp4/5kFnAmmGXM4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5kFnAmmGXM4.mp4/5kFnAmmGXM4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5kFnAmmGXM4.m3u8/5kFnAmmGXM4.m3u8"}, "duration": 241, "id": "5kFnAmmGXM4", "title": "Arbitraging futures contracts II", "format": "mp4", "description": "Arbitraging Futures Contracts II", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/arbitraging-futures-contracts-ii/", "slug": "arbitraging-futures-contracts-ii", "kind": "Video", "video_id": "5kFnAmmGXM4", "keywords": "Arbitraging, Futures, Contracts, II", "youtube_id": "5kFnAmmGXM4", "readable_id": "arbitraging-futures-contracts-ii"}, "Rr7LhdSKMxY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Rr7LhdSKMxY.mp4/Rr7LhdSKMxY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Rr7LhdSKMxY.mp4/Rr7LhdSKMxY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Rr7LhdSKMxY.m3u8/Rr7LhdSKMxY.m3u8"}, "path": "khan/science/chemistry/chemical-bonds/types-chemical-bonds/electronegativity-trends/", "duration": 594, "id": "Rr7LhdSKMxY", "title": "Electronegativity", "format": "mp4", "description": "", "slug": "electronegativity-trends", "kind": "Video", "video_id": "Rr7LhdSKMxY", "keywords": "", "youtube_id": "Rr7LhdSKMxY", "readable_id": "electronegativity-trends"}, "xv-UAPbcbNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xv-UAPbcbNU.mp4/xv-UAPbcbNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xv-UAPbcbNU.mp4/xv-UAPbcbNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xv-UAPbcbNU.m3u8/xv-UAPbcbNU.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/memory/memory-reconstruction-source-monitoring-and-emotional-memories/", "duration": 287, "id": "xv-UAPbcbNU", "title": "Memory reconstruction, source monitoring, and emotional memories", "format": "mp4", "description": "Learn about memory reconstruction, source monitoring, and flashbulb memories.", "slug": "memory-reconstruction-source-monitoring-and-emotional-memories", "kind": "Video", "video_id": "xv-UAPbcbNU", "keywords": "", "youtube_id": "xv-UAPbcbNU", "readable_id": "memory-reconstruction-source-monitoring-and-emotional-memories"}, "k45QTFCHSVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k45QTFCHSVs.mp4/k45QTFCHSVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k45QTFCHSVs.mp4/k45QTFCHSVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k45QTFCHSVs.m3u8/k45QTFCHSVs.m3u8"}, "duration": 540, "id": "k45QTFCHSVs", "title": "Median centroid right triangle example", "format": "mp4", "description": "Example involving properties of medians", "path": "khan/math/geometry/triangle-properties/medians_centroids/median-centroid-right-triangle-example/", "slug": "median-centroid-right-triangle-example", "kind": "Video", "video_id": "k45QTFCHSVs", "keywords": "geometry", "youtube_id": "k45QTFCHSVs", "readable_id": "median-centroid-right-triangle-example"}, "XLcbGHNFcpM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XLcbGHNFcpM.mp4/XLcbGHNFcpM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XLcbGHNFcpM.mp4/XLcbGHNFcpM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XLcbGHNFcpM.m3u8/XLcbGHNFcpM.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/henri-de-toulouse-lautrec-at-the-moulin-rouge-1893-95/", "duration": 191, "id": "XLcbGHNFcpM", "title": "Toulouse-Lautrec, At the Moulin Rouge", "format": "mp4", "description": "Henri de Toulouse-Lautrec, At the Moulin Rouge, 1893-95, oil on canvas, 48-1/2 x 55-1/2 inches / 123 x 141 cm (Art Institute of Chicago)", "slug": "henri-de-toulouse-lautrec-at-the-moulin-rouge-1893-95", "kind": "Video", "video_id": "XLcbGHNFcpM", "keywords": "Henri de Toulouse-Lautrec, Toulouse-Lautrec, At the Moulin Rouge, Moulin Rouge, Cabaret, 1893, 1895, Art Institute of Chicago, Paris, Demimonde, Demi-monde, Nightlife, Night Club, art, painting, art history, smarthistory, Khan Academy, Google Art Project, OER", "youtube_id": "XLcbGHNFcpM", "readable_id": "henri-de-toulouse-lautrec-at-the-moulin-rouge-1893-95"}, "5A7hSaoRv0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5A7hSaoRv0g.mp4/5A7hSaoRv0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5A7hSaoRv0g.mp4/5A7hSaoRv0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5A7hSaoRv0g.m3u8/5A7hSaoRv0g.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/post-hoc/", "duration": 343, "id": "5A7hSaoRv0g", "title": "Fallacies: Post Hoc Ergo Propter Hoc", "format": "mp4", "description": "In this video, Paul explains the post-hoc-ergo-propter-hoc fallacy. This is an informal fallacy committed when a person reasons that because one event happened after another event, the first event caused the second. He also discusses why it is sometimes hasty to conclude that your cat scratch caused your fever.\n\nSpeaker: Paul Henne, Duke University", "slug": "post-hoc", "kind": "Video", "video_id": "5A7hSaoRv0g", "keywords": "", "youtube_id": "5A7hSaoRv0g", "readable_id": "post-hoc"}, "APNkWrD-U1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/APNkWrD-U1k.mp4/APNkWrD-U1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/APNkWrD-U1k.mp4/APNkWrD-U1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/APNkWrD-U1k.m3u8/APNkWrD-U1k.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/proof-law-of-sines/", "duration": 392, "id": "APNkWrD-U1k", "title": "Proof: Law of sines", "format": "mp4", "description": "A simple proof of the Law of Sines", "slug": "proof-law-of-sines", "kind": "Video", "video_id": "APNkWrD-U1k", "keywords": "law, of, sines, trigonometry, sin, cos, hypotenuse", "youtube_id": "APNkWrD-U1k", "readable_id": "proof-law-of-sines"}, "NnlAI4ZiUrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NnlAI4ZiUrQ.mp4/NnlAI4ZiUrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NnlAI4ZiUrQ.mp4/NnlAI4ZiUrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NnlAI4ZiUrQ.m3u8/NnlAI4ZiUrQ.m3u8"}, "duration": 538, "id": "NnlAI4ZiUrQ", "title": "Magnetism 2", "format": "mp4", "description": "Magnetic fields and their effects on moving electrical charges", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-2/", "slug": "magnetism-2", "kind": "Video", "video_id": "NnlAI4ZiUrQ", "keywords": "physics, magnetic, field, cross, product", "youtube_id": "NnlAI4ZiUrQ", "readable_id": "magnetism-2"}, "UFNsjLUN1g8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UFNsjLUN1g8.mp4/UFNsjLUN1g8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UFNsjLUN1g8.mp4/UFNsjLUN1g8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UFNsjLUN1g8.m3u8/UFNsjLUN1g8.m3u8"}, "path": "khan/computing/computer-science/informationtheory/moderninfotheory/seti/", "duration": 616, "id": "UFNsjLUN1g8", "title": "The search for extraterrestrial intelligence", "format": "mp4", "description": "Can information theory help us talk to aliens?", "slug": "seti", "kind": "Video", "video_id": "UFNsjLUN1g8", "keywords": "", "youtube_id": "UFNsjLUN1g8", "readable_id": "seti"}, "rUT0pa87m7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rUT0pa87m7E.mp4/rUT0pa87m7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rUT0pa87m7E.mp4/rUT0pa87m7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rUT0pa87m7E.m3u8/rUT0pa87m7E.m3u8"}, "duration": 798, "id": "rUT0pa87m7E", "title": "Bunch of examples", "format": "mp4", "description": null, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/patterns-and-equations/", "slug": "patterns-and-equations", "kind": "Video", "video_id": "rUT0pa87m7E", "keywords": "Patterns, And, Equations, CC_7_EE_4, CC_39336_A-CED_1", "youtube_id": "rUT0pa87m7E", "readable_id": "patterns-and-equations"}, "tyVCA_8MUV4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tyVCA_8MUV4.mp4/tyVCA_8MUV4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tyVCA_8MUV4.mp4/tyVCA_8MUV4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tyVCA_8MUV4.m3u8/tyVCA_8MUV4.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/surface-integral-example-part-2-calculating-the-surface-differential/", "duration": 771, "id": "tyVCA_8MUV4", "title": "Surface integral example part 2: Calculating the surface differential", "format": "mp4", "description": "Taking the cross product to calculate the surface differential in terms of the parameters", "slug": "surface-integral-example-part-2-calculating-the-surface-differential", "kind": "Video", "video_id": "tyVCA_8MUV4", "keywords": "Surface, Integral, Example, Part, 2, Calculating, the, Differential", "youtube_id": "tyVCA_8MUV4", "readable_id": "surface-integral-example-part-2-calculating-the-surface-differential"}, "VvuuRpJbbHE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VvuuRpJbbHE.mp4/VvuuRpJbbHE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VvuuRpJbbHE.mp4/VvuuRpJbbHE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VvuuRpJbbHE.m3u8/VvuuRpJbbHE.m3u8"}, "duration": 202, "id": "VvuuRpJbbHE", "title": "Example 1: Completing the square", "format": "mp4", "description": "U10_L1_T2_we1 Completing the Square 1", "path": "khan/math/algebra/quadratics/completing_the_square/ex1-completing-the-square/", "slug": "ex1-completing-the-square", "kind": "Video", "video_id": "VvuuRpJbbHE", "keywords": "U10_L1_T2_we1, Completing, the, Square, CC_39336_A-REI_4_a, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_b", "youtube_id": "VvuuRpJbbHE", "readable_id": "ex1-completing-the-square"}, "lDXaju6JoQ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lDXaju6JoQ0.mp4/lDXaju6JoQ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lDXaju6JoQ0.mp4/lDXaju6JoQ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lDXaju6JoQ0.m3u8/lDXaju6JoQ0.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/subtracting-decimals-up-to-thousandths-place/", "duration": 126, "id": "lDXaju6JoQ0", "title": "Subtracting decimals example 2", "format": "mp4", "description": "In this example where we subtract decimals we do so up to the thousandths place. It's a little tricky, but not if we do it together.", "slug": "subtracting-decimals-up-to-thousandths-place", "kind": "Video", "video_id": "lDXaju6JoQ0", "keywords": "", "youtube_id": "lDXaju6JoQ0", "readable_id": "subtracting-decimals-up-to-thousandths-place"}, "HsQqb1E-bAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HsQqb1E-bAU.mp4/HsQqb1E-bAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HsQqb1E-bAU.mp4/HsQqb1E-bAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HsQqb1E-bAU.m3u8/HsQqb1E-bAU.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/observational-learning-bobo-doll-experiment-and-social-cognitive-theory/", "duration": 586, "id": "HsQqb1E-bAU", "title": "Observational learning: Bobo doll experiment and social cognitive theory", "format": "mp4", "description": "", "slug": "observational-learning-bobo-doll-experiment-and-social-cognitive-theory", "kind": "Video", "video_id": "HsQqb1E-bAU", "keywords": "", "youtube_id": "HsQqb1E-bAU", "readable_id": "observational-learning-bobo-doll-experiment-and-social-cognitive-theory"}, "EhEg8Wx_NA8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EhEg8Wx_NA8.mp4/EhEg8Wx_NA8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EhEg8Wx_NA8.mp4/EhEg8Wx_NA8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EhEg8Wx_NA8.m3u8/EhEg8Wx_NA8.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/bernini-sant-andrea-al-quirinale/", "duration": 507, "id": "EhEg8Wx_NA8", "title": "Bernini, Sant'Andrea al Quirinale", "format": "mp4", "description": "Gian Lorenzo Bernini, Sant'Andrea al Quirinale, 1658-70, Rome; commissioned by Cardinal Camillo Francesco Maria Pamphili for the nearby Jesuit seminary", "slug": "bernini-sant-andrea-al-quirinale", "kind": "Video", "video_id": "EhEg8Wx_NA8", "keywords": "Bernini, Sant'Andrea, Rome, Baroque, Smarthistory, Khan Academy, Art History", "youtube_id": "EhEg8Wx_NA8", "readable_id": "bernini-sant-andrea-al-quirinale"}, "l-6uEtTBH7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l-6uEtTBH7g.mp4/l-6uEtTBH7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l-6uEtTBH7g.mp4/l-6uEtTBH7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l-6uEtTBH7g.m3u8/l-6uEtTBH7g.m3u8"}, "duration": 217, "id": "l-6uEtTBH7g", "title": "Practice finding patterns in numbers", "format": "mp4", "description": "Learn how to spot a pattern in a sequence of numbers, such as 3, 6, 9, 12...", "path": "practice-finding-patterns-in-numbers/", "slug": "practice-finding-patterns-in-numbers", "kind": "Video", "video_id": "l-6uEtTBH7g", "keywords": "", "youtube_id": "l-6uEtTBH7g", "readable_id": "practice-finding-patterns-in-numbers"}, "CGS0vihzSlc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CGS0vihzSlc.mp4/CGS0vihzSlc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CGS0vihzSlc.mp4/CGS0vihzSlc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CGS0vihzSlc.m3u8/CGS0vihzSlc.m3u8"}, "duration": 273, "id": "CGS0vihzSlc", "title": "Example 1: Variables on both sides", "format": "mp4", "description": "Multi-step equations 1", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/basic-equation-practice/multi-step-equations-1/", "slug": "multi-step-equations-1", "kind": "Video", "video_id": "CGS0vihzSlc", "keywords": "u10_l1_t2_we1, Multi-step, equations, CC_6_EE_2, CC_6_EE_2_c", "youtube_id": "CGS0vihzSlc", "readable_id": "multi-step-equations-1"}, "s2_NTiISZl4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s2_NTiISZl4.mp4/s2_NTiISZl4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s2_NTiISZl4.mp4/s2_NTiISZl4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s2_NTiISZl4.m3u8/s2_NTiISZl4.m3u8"}, "duration": 594, "id": "s2_NTiISZl4", "title": "Example of calculating a surface integral part 3", "format": "mp4", "description": "Example of calculating a surface integral part 3", "path": "khan/math/multivariable-calculus/surface-integrals/surface_integrals/example-of-calculating-a-surface-integral-part-3/", "slug": "example-of-calculating-a-surface-integral-part-3", "kind": "Video", "video_id": "s2_NTiISZl4", "keywords": "surface, integral", "youtube_id": "s2_NTiISZl4", "readable_id": "example-of-calculating-a-surface-integral-part-3"}, "2-nCSLMGwhI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2-nCSLMGwhI.mp4/2-nCSLMGwhI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2-nCSLMGwhI.mp4/2-nCSLMGwhI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2-nCSLMGwhI.m3u8/2-nCSLMGwhI.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/nucleic-acid-structure-2/", "duration": 699, "id": "2-nCSLMGwhI", "title": "Nucleic acid structure 2", "format": "mp4", "description": "", "slug": "nucleic-acid-structure-2", "kind": "Video", "video_id": "2-nCSLMGwhI", "keywords": "", "youtube_id": "2-nCSLMGwhI", "readable_id": "nucleic-acid-structure-2"}, "Z5EnuVJawmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z5EnuVJawmY.mp4/Z5EnuVJawmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z5EnuVJawmY.mp4/Z5EnuVJawmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z5EnuVJawmY.m3u8/Z5EnuVJawmY.m3u8"}, "duration": 344, "id": "Z5EnuVJawmY", "title": "How much of a pyramid is submerged", "format": "mp4", "description": "", "path": "khan/math/trigonometry/basic-trigonometry/trig-application-problems/how-much-of-a-pyramid-is-submerged/", "slug": "how-much-of-a-pyramid-is-submerged", "kind": "Video", "video_id": "Z5EnuVJawmY", "keywords": "", "youtube_id": "Z5EnuVJawmY", "readable_id": "how-much-of-a-pyramid-is-submerged"}, "TkH-yjJ35vU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TkH-yjJ35vU.mp4/TkH-yjJ35vU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TkH-yjJ35vU.mp4/TkH-yjJ35vU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TkH-yjJ35vU.m3u8/TkH-yjJ35vU.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/caravaggio-death-of-the-virgin-1605-06/", "duration": 237, "id": "TkH-yjJ35vU", "title": "Caravaggio, Death of the Virgin", "format": "mp4", "description": "Caravaggio, Death of the Virgin, 1605-06, Oil on canvas, 12 feet, 10 inches x 8 feet (369 x 245 cm) (Mus\u00e9e du Louvre, Paris) Painted for the altar of a family chapel in the church of Santa Maria della Scala del Trastevere, Rome. Speakers: Drs. Beth Harris and Steven Zucker http://www.smarthistory.org/caravaggios-death-of-the-virgin.html", "slug": "caravaggio-death-of-the-virgin-1605-06", "kind": "Video", "video_id": "TkH-yjJ35vU", "keywords": "Caravaggio, Art History, Smarthistory, Baroque, Rome", "youtube_id": "TkH-yjJ35vU", "readable_id": "caravaggio-death-of-the-virgin-1605-06"}, "rTey6h4BQhc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rTey6h4BQhc.mp4/rTey6h4BQhc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rTey6h4BQhc.mp4/rTey6h4BQhc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rTey6h4BQhc.m3u8/rTey6h4BQhc.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/andrea-mantegna-san-zeno-altarpiece/", "duration": 336, "id": "rTey6h4BQhc", "title": "Andrea Mantegna, San Zeno Altarpiece", "format": "mp4", "description": "Andrea Mantegna, San Zeno Altarpiece, 1456-59, oil on panel, 212 x 460 cm / 83 x 180 inches, comissioned by the Benedictine Abbot, Gregorio Correr (Basilica of San Zeno, Verona)", "slug": "andrea-mantegna-san-zeno-altarpiece", "kind": "Video", "video_id": "rTey6h4BQhc", "keywords": "Mantegna San Zeno", "youtube_id": "rTey6h4BQhc", "readable_id": "andrea-mantegna-san-zeno-altarpiece"}, "IY8BXNFgnyI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IY8BXNFgnyI.mp4/IY8BXNFgnyI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IY8BXNFgnyI.mp4/IY8BXNFgnyI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IY8BXNFgnyI.m3u8/IY8BXNFgnyI.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/rsa-encryption-step-2/", "duration": 145, "id": "IY8BXNFgnyI", "title": "RSA encryption: Step 2", "format": "mp4", "description": "Setting up a trapdoor one-way function", "slug": "rsa-encryption-step-2", "kind": "Video", "video_id": "IY8BXNFgnyI", "keywords": "trapdoor function, one-way function", "youtube_id": "IY8BXNFgnyI", "readable_id": "rsa-encryption-step-2"}, "WeVWv_OEJsY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WeVWv_OEJsY.mp4/WeVWv_OEJsY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WeVWv_OEJsY.mp4/WeVWv_OEJsY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WeVWv_OEJsY.m3u8/WeVWv_OEJsY.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/riemann-sum-negative-function/", "duration": 396, "id": "WeVWv_OEJsY", "title": "Riemann sum when function is negative", "format": "mp4", "description": "", "slug": "riemann-sum-negative-function", "kind": "Video", "video_id": "WeVWv_OEJsY", "keywords": "", "youtube_id": "WeVWv_OEJsY", "readable_id": "riemann-sum-negative-function"}, "AtiOjlyOQf4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AtiOjlyOQf4.mp4/AtiOjlyOQf4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AtiOjlyOQf4.mp4/AtiOjlyOQf4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AtiOjlyOQf4.m3u8/AtiOjlyOQf4.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-line-plots/introduction-to-line-plots/", "duration": 241, "id": "AtiOjlyOQf4", "title": "Introduction to line plots", "format": "mp4", "description": "Create a line plot from a set of data. \u00a0Use the line plot to answer questions.", "slug": "introduction-to-line-plots", "kind": "Video", "video_id": "AtiOjlyOQf4", "keywords": "", "youtube_id": "AtiOjlyOQf4", "readable_id": "introduction-to-line-plots"}, "SrvPOkMs4U4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SrvPOkMs4U4.mp4/SrvPOkMs4U4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SrvPOkMs4U4.mp4/SrvPOkMs4U4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SrvPOkMs4U4.m3u8/SrvPOkMs4U4.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/ways-of-knowing-early-humans/bhp-making-stone-tool/", "duration": 469, "id": "SrvPOkMs4U4", "title": "Making Stone Tools", "format": "mp4", "description": "Nicholas Toth shows how early humans made stone tools that were simple but effective.", "slug": "bhp-making-stone-tool", "kind": "Video", "video_id": "SrvPOkMs4U4", "keywords": "", "youtube_id": "SrvPOkMs4U4", "readable_id": "bhp-making-stone-tool"}, "9P80OLC6wKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9P80OLC6wKY.mp4/9P80OLC6wKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9P80OLC6wKY.mp4/9P80OLC6wKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9P80OLC6wKY.m3u8/9P80OLC6wKY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/converting-decimals-to-fractions-1-ex-2/", "duration": 53, "id": "9P80OLC6wKY", "title": "Converting decimals to fractions example 2", "format": "mp4", "description": "Being a decimal is hard. Everyone picks on you. Not like those lucky fractions. Let's convert the decimal together.", "slug": "converting-decimals-to-fractions-1-ex-2", "kind": "Video", "video_id": "9P80OLC6wKY", "keywords": "Converting, decimals, to, fractions, 1, ex, 2", "youtube_id": "9P80OLC6wKY", "readable_id": "converting-decimals-to-fractions-1-ex-2"}, "qPoLL0E2W8A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qPoLL0E2W8A.mp4/qPoLL0E2W8A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qPoLL0E2W8A.mp4/qPoLL0E2W8A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qPoLL0E2W8A.m3u8/qPoLL0E2W8A.m3u8"}, "duration": 262, "id": "qPoLL0E2W8A", "title": "Comparing the Eastern and Western fronts in WWI", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-fighting/comparing-the-eastern-and-western-fronts-in-wwi/", "slug": "comparing-the-eastern-and-western-fronts-in-wwi", "kind": "Video", "video_id": "qPoLL0E2W8A", "keywords": "", "youtube_id": "qPoLL0E2W8A", "readable_id": "comparing-the-eastern-and-western-fronts-in-wwi"}, "SqE5S1qS7ZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SqE5S1qS7ZU.mp4/SqE5S1qS7ZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SqE5S1qS7ZU.mp4/SqE5S1qS7ZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SqE5S1qS7ZU.m3u8/SqE5S1qS7ZU.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/fetal-hemoglobin-and-hematocrit/", "duration": 872, "id": "SqE5S1qS7ZU", "title": "Fetal hemoglobin and hematocrit", "format": "mp4", "description": "Although mom controls the oxygen source, the fetus has a couple of clever tricks to get the most oxygen possible! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "fetal-hemoglobin-and-hematocrit", "kind": "Video", "video_id": "SqE5S1qS7ZU", "keywords": "", "youtube_id": "SqE5S1qS7ZU", "readable_id": "fetal-hemoglobin-and-hematocrit"}, "EtZnPoYbRyA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EtZnPoYbRyA.mp4/EtZnPoYbRyA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EtZnPoYbRyA.mp4/EtZnPoYbRyA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EtZnPoYbRyA.m3u8/EtZnPoYbRyA.m3u8"}, "duration": 716, "id": "EtZnPoYbRyA", "title": "Hitler and the Nazis come to power", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/hitler-nazis/hitler-and-the-nazis-come-to-power/", "slug": "hitler-and-the-nazis-come-to-power", "kind": "Video", "video_id": "EtZnPoYbRyA", "keywords": "", "youtube_id": "EtZnPoYbRyA", "readable_id": "hitler-and-the-nazis-come-to-power"}, "hgtMWR3TFnY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hgtMWR3TFnY.mp4/hgtMWR3TFnY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hgtMWR3TFnY.mp4/hgtMWR3TFnY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hgtMWR3TFnY.m3u8/hgtMWR3TFnY.m3u8"}, "duration": 1584, "id": "hgtMWR3TFnY", "title": "Introduction to the normal distribution", "format": "mp4", "description": "Exploring the normal distribution", "path": "khan/math/probability/statistics-inferential/normal_distribution/introduction-to-the-normal-distribution/", "slug": "introduction-to-the-normal-distribution", "kind": "Video", "video_id": "hgtMWR3TFnY", "keywords": "statistics, normal, distribution, gaussian, bell, curve, CC_6_SP_5_d, CC_7_SP_2", "youtube_id": "hgtMWR3TFnY", "readable_id": "introduction-to-the-normal-distribution"}, "x3GFqNYaVRE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x3GFqNYaVRE.mp4/x3GFqNYaVRE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x3GFqNYaVRE.mp4/x3GFqNYaVRE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x3GFqNYaVRE.m3u8/x3GFqNYaVRE.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/tintoretto-finding-mark/", "duration": 297, "id": "x3GFqNYaVRE", "title": "Tintoretto, The Finding of the Body of Saint Mark", "format": "mp4", "description": "Jacopo Tintoretto, The Finding of the Body of Saint Mark, c. 1562-66, oil on canvas, 396 x 400 cm (Pinacoteca di Brera, Milan)\u00a0Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "tintoretto-finding-mark", "kind": "Video", "video_id": "x3GFqNYaVRE", "keywords": "Venice, Mannerism, Tintoretto, Renaissance, painting, art", "youtube_id": "x3GFqNYaVRE", "readable_id": "tintoretto-finding-mark"}, "5bWxTfRZx70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5bWxTfRZx70.mp4/5bWxTfRZx70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5bWxTfRZx70.mp4/5bWxTfRZx70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5bWxTfRZx70.m3u8/5bWxTfRZx70.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/hydrogen-deficiency-index/", "duration": 531, "id": "5bWxTfRZx70", "title": "Hydrogen deficiency index", "format": "mp4", "description": "", "slug": "hydrogen-deficiency-index", "kind": "Video", "video_id": "5bWxTfRZx70", "keywords": "", "youtube_id": "5bWxTfRZx70", "readable_id": "hydrogen-deficiency-index"}, "egjDLFX9VHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/egjDLFX9VHg.mp4/egjDLFX9VHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/egjDLFX9VHg.mp4/egjDLFX9VHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/egjDLFX9VHg.m3u8/egjDLFX9VHg.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/introduction-to-regrouping-borrowing/", "duration": 327, "id": "egjDLFX9VHg", "title": "Subtracting with regrouping (borrowing)", "format": "mp4", "description": "Learn how to subtract 23 from 65 by thinking about tens and ones.", "slug": "introduction-to-regrouping-borrowing", "kind": "Video", "video_id": "egjDLFX9VHg", "keywords": "", "youtube_id": "egjDLFX9VHg", "readable_id": "introduction-to-regrouping-borrowing"}, "ioieTr41L24": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ioieTr41L24.mp4/ioieTr41L24.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ioieTr41L24.mp4/ioieTr41L24.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ioieTr41L24.m3u8/ioieTr41L24.m3u8"}, "duration": 77, "id": "ioieTr41L24", "title": "Estimating the line of best fit exercise", "format": "mp4", "description": "", "path": "khan/math/probability/regression/regression-correlation/estimating-the-line-of-best-fit-exercise/", "slug": "estimating-the-line-of-best-fit-exercise", "kind": "Video", "video_id": "ioieTr41L24", "keywords": "", "youtube_id": "ioieTr41L24", "readable_id": "estimating-the-line-of-best-fit-exercise"}, "npUtXLjTnxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/npUtXLjTnxg.mp4/npUtXLjTnxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/npUtXLjTnxg.mp4/npUtXLjTnxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/npUtXLjTnxg.m3u8/npUtXLjTnxg.m3u8"}, "duration": 199, "id": "npUtXLjTnxg", "title": "Applying radical equations 3", "format": "mp4", "description": "Applying Radical Equations 3", "path": "khan/math/algebra/exponent-equations/radical_equations/applying-radical-equations-3/", "slug": "applying-radical-equations-3", "kind": "Video", "video_id": "npUtXLjTnxg", "keywords": "U07_L3_T3_we3, Applying, Radical, Equations, CC_7_G_3, CC_8_G_9, CC_39336_A-REI_2", "youtube_id": "npUtXLjTnxg", "readable_id": "applying-radical-equations-3"}, "a7wYAtMjORQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a7wYAtMjORQ.mp4/a7wYAtMjORQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a7wYAtMjORQ.mp4/a7wYAtMjORQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a7wYAtMjORQ.m3u8/a7wYAtMjORQ.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/exact-equations/exact-equations-intuition-2-proofy/", "duration": 651, "id": "a7wYAtMjORQ", "title": "Exact equations intuition 2 (proofy)", "format": "mp4", "description": "More intuitive building blocks for exact equations.", "slug": "exact-equations-intuition-2-proofy", "kind": "Video", "video_id": "a7wYAtMjORQ", "keywords": "exact, partial, differential, equations", "youtube_id": "a7wYAtMjORQ", "readable_id": "exact-equations-intuition-2-proofy"}, "YwNX9uWszQY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YwNX9uWszQY.mp4/YwNX9uWszQY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YwNX9uWszQY.mp4/YwNX9uWszQY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YwNX9uWszQY.m3u8/YwNX9uWszQY.m3u8"}, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-fractions-of-shapes/equal-parts-of-circles-and-rectangles/", "duration": 185, "id": "YwNX9uWszQY", "title": "Equal parts of circles and rectangles", "format": "mp4", "description": "Learn how to tell if shapes are divided into two or four equal sections.", "slug": "equal-parts-of-circles-and-rectangles", "kind": "Video", "video_id": "YwNX9uWszQY", "keywords": "", "youtube_id": "YwNX9uWszQY", "readable_id": "equal-parts-of-circles-and-rectangles"}, "dJhxphep_gY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dJhxphep_gY.mp4/dJhxphep_gY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dJhxphep_gY.mp4/dJhxphep_gY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dJhxphep_gY.m3u8/dJhxphep_gY.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/hydration/", "duration": 861, "id": "dJhxphep_gY", "title": "Hydration", "format": "mp4", "description": "", "slug": "hydration", "kind": "Video", "video_id": "dJhxphep_gY", "keywords": "", "youtube_id": "dJhxphep_gY", "readable_id": "hydration"}, "OCNXS_m1HWU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OCNXS_m1HWU.mp4/OCNXS_m1HWU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OCNXS_m1HWU.mp4/OCNXS_m1HWU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OCNXS_m1HWU.m3u8/OCNXS_m1HWU.m3u8"}, "duration": 388, "id": "OCNXS_m1HWU", "title": "Bringing the set operations together", "format": "mp4", "description": "", "path": "khan/math/probability/independent-dependent-probability/basic_set_operations/bringing-the-set-operations-together/", "slug": "bringing-the-set-operations-together", "kind": "Video", "video_id": "OCNXS_m1HWU", "keywords": "", "youtube_id": "OCNXS_m1HWU", "readable_id": "bringing-the-set-operations-together"}, "N5kkwVoAtkc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N5kkwVoAtkc.mp4/N5kkwVoAtkc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N5kkwVoAtkc.mp4/N5kkwVoAtkc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N5kkwVoAtkc.m3u8/N5kkwVoAtkc.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivatives-inverse-functions/calculus-derivative-of-x-x-x/", "duration": 542, "id": "N5kkwVoAtkc", "title": "Derivative of x^(x^x)", "format": "mp4", "description": "Derivative of x^(x^x)", "slug": "calculus-derivative-of-x-x-x", "kind": "Video", "video_id": "N5kkwVoAtkc", "keywords": "calculus, derivative, implicit, differentiation", "youtube_id": "N5kkwVoAtkc", "readable_id": "calculus-derivative-of-x-x-x"}, "WdSxjy-KkZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WdSxjy-KkZY.mp4/WdSxjy-KkZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WdSxjy-KkZY.mp4/WdSxjy-KkZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WdSxjy-KkZY.m3u8/WdSxjy-KkZY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2009-may-3-10/", "duration": 130, "id": "WdSxjy-KkZY", "title": "10 Maximizing game tokens", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-10", "kind": "Video", "video_id": "WdSxjy-KkZY", "keywords": "", "youtube_id": "WdSxjy-KkZY", "readable_id": "sat-2009-may-3-10"}, "Eq4mVCd-yyo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Eq4mVCd-yyo.mp4/Eq4mVCd-yyo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Eq4mVCd-yyo.mp4/Eq4mVCd-yyo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Eq4mVCd-yyo.m3u8/Eq4mVCd-yyo.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/adding-decimals-pre-alg/subtracting-decimals/", "duration": 128, "id": "Eq4mVCd-yyo", "title": "Subtracting decimals example 1", "format": "mp4", "description": "Just like when add, be sure you align decimals before subtracting.", "slug": "subtracting-decimals", "kind": "Video", "video_id": "Eq4mVCd-yyo", "keywords": "U03_L2_T1_we2, Subtracting, Decimals", "youtube_id": "Eq4mVCd-yyo", "readable_id": "subtracting-decimals"}, "1xSQlwWGT8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1xSQlwWGT8M.mp4/1xSQlwWGT8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1xSQlwWGT8M.mp4/1xSQlwWGT8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1xSQlwWGT8M.m3u8/1xSQlwWGT8M.m3u8"}, "duration": 1265, "id": "1xSQlwWGT8M", "title": "Introduction to the atom", "format": "mp4", "description": "The atom, proton, neutron and electron", "path": "khan/science/chemistry/atomic-structure-and-properties/introduction-to-the-atom/introduction-to-the-atom/", "slug": "introduction-to-the-atom", "kind": "Video", "video_id": "1xSQlwWGT8M", "keywords": "atom, chemistry, proton, electron, neutron", "youtube_id": "1xSQlwWGT8M", "readable_id": "introduction-to-the-atom"}, "IbI-l7mbKO4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IbI-l7mbKO4.mp4/IbI-l7mbKO4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IbI-l7mbKO4.mp4/IbI-l7mbKO4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IbI-l7mbKO4.m3u8/IbI-l7mbKO4.m3u8"}, "duration": 340, "id": "IbI-l7mbKO4", "title": "Finding the vertex of a parabola example", "format": "mp4", "description": "", "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/finding-the-vertex-of-a-parabola-example/", "slug": "finding-the-vertex-of-a-parabola-example", "kind": "Video", "video_id": "IbI-l7mbKO4", "keywords": "", "youtube_id": "IbI-l7mbKO4", "readable_id": "finding-the-vertex-of-a-parabola-example"}, "SE1ltVuE5yM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SE1ltVuE5yM.mp4/SE1ltVuE5yM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SE1ltVuE5yM.mp4/SE1ltVuE5yM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SE1ltVuE5yM.m3u8/SE1ltVuE5yM.m3u8"}, "duration": 537, "id": "SE1ltVuE5yM", "title": "When is a particle speeding up", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/motion-along-line-derivatives/when-is-a-particle-speeding-up/", "slug": "when-is-a-particle-speeding-up", "kind": "Video", "video_id": "SE1ltVuE5yM", "keywords": "", "youtube_id": "SE1ltVuE5yM", "readable_id": "when-is-a-particle-speeding-up"}, "i4ZiV6NIs98": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i4ZiV6NIs98.mp4/i4ZiV6NIs98.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i4ZiV6NIs98.mp4/i4ZiV6NIs98.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i4ZiV6NIs98.m3u8/i4ZiV6NIs98.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/doppler-effect-reflection-off-a-moving-object/", "duration": 469, "id": "i4ZiV6NIs98", "title": "Doppler effect: reflection off a moving object", "format": "mp4", "description": "", "slug": "doppler-effect-reflection-off-a-moving-object", "kind": "Video", "video_id": "i4ZiV6NIs98", "keywords": "", "youtube_id": "i4ZiV6NIs98", "readable_id": "doppler-effect-reflection-off-a-moving-object"}, "8TqFGD9tZto": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8TqFGD9tZto.mp4/8TqFGD9tZto.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8TqFGD9tZto.mp4/8TqFGD9tZto.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8TqFGD9tZto.m3u8/8TqFGD9tZto.m3u8"}, "path": "khan/humanities/art-asia/korea-japan/korean-art/confucian-house/", "duration": 260, "id": "8TqFGD9tZto", "title": "Confucian scholar's house", "format": "mp4", "description": "An introduction to Korean Confucianism and related architecture.\u00a0Learn more about Korean art and culture on the Asian Art Museum's education website.\u00a0", "slug": "confucian-house", "kind": "Video", "video_id": "8TqFGD9tZto", "keywords": "", "youtube_id": "8TqFGD9tZto", "readable_id": "confucian-house"}, "eOksHhQ8TLM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eOksHhQ8TLM.mp4/eOksHhQ8TLM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eOksHhQ8TLM.mp4/eOksHhQ8TLM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eOksHhQ8TLM.m3u8/eOksHhQ8TLM.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/beginners-renaissance-florence/how-one-point-linear-perspective-works/", "duration": 716, "id": "eOksHhQ8TLM", "title": "How one-point linear perspective works", "format": "mp4", "description": "Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "how-one-point-linear-perspective-works", "kind": "Video", "video_id": "eOksHhQ8TLM", "keywords": "perspective", "youtube_id": "eOksHhQ8TLM", "readable_id": "how-one-point-linear-perspective-works"}, "Nok4cBt0V6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Nok4cBt0V6w.mp4/Nok4cBt0V6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Nok4cBt0V6w.mp4/Nok4cBt0V6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Nok4cBt0V6w.m3u8/Nok4cBt0V6w.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-near-east-ap/standard-of-ur-c-2600-2400-b-c-e/", "duration": 529, "id": "Nok4cBt0V6w", "title": "Standard of Ur from the Royal Tombs at Ur", "format": "mp4", "description": "Standard of Ur, c. 2600-2400 B.C.E., 21.59 x 49.5 x 12 cm (British Museum) Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "standard-of-ur-c-2600-2400-b-c-e", "kind": "Video", "video_id": "Nok4cBt0V6w", "keywords": "Ancient Near East, Smarthistory, Art History, Khan Academy, Ur, British Museum", "youtube_id": "Nok4cBt0V6w", "readable_id": "standard-of-ur-c-2600-2400-b-c-e"}, "vO63j9m5grE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vO63j9m5grE.mp4/vO63j9m5grE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vO63j9m5grE.mp4/vO63j9m5grE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vO63j9m5grE.m3u8/vO63j9m5grE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-intro-to-pulmonary-diseases/respiratory-distress/", "duration": 439, "id": "vO63j9m5grE", "title": "Respiratory distress", "format": "mp4", "description": "How can you tell someone is having troubles breathing? Increased work of breathing, the feeling of shortness of breath, and cyanosis are all common symptoms of respiratory distress. Learn what these symptoms look like and why they occur.", "slug": "respiratory-distress", "kind": "Video", "video_id": "vO63j9m5grE", "keywords": "", "youtube_id": "vO63j9m5grE", "readable_id": "respiratory-distress"}, "VAxHMTJRhmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VAxHMTJRhmY.mp4/VAxHMTJRhmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VAxHMTJRhmY.mp4/VAxHMTJRhmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VAxHMTJRhmY.m3u8/VAxHMTJRhmY.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/continuous_compounding/compound-interest-and-e-part-4/", "duration": 484, "id": "VAxHMTJRhmY", "title": "Compound interest and e (part 4)", "format": "mp4", "description": "Continuously compounding for multiple years.", "slug": "compound-interest-and-e-part-4", "kind": "Video", "video_id": "VAxHMTJRhmY", "keywords": "finance, math, compound, interest, continuous", "youtube_id": "VAxHMTJRhmY", "readable_id": "compound-interest-and-e-part-4"}, "Q8uhzlJ5tws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q8uhzlJ5tws.mp4/Q8uhzlJ5tws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q8uhzlJ5tws.mp4/Q8uhzlJ5tws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q8uhzlJ5tws.m3u8/Q8uhzlJ5tws.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/mars-pathfinder/", "duration": 163, "id": "Q8uhzlJ5tws", "title": "Pathfinder", "format": "mp4", "description": "Short video introducing the people behind the Pathfinder mission.\u00a0For more information check out NASA's mission page", "slug": "mars-pathfinder", "kind": "Video", "video_id": "Q8uhzlJ5tws", "keywords": "", "youtube_id": "Q8uhzlJ5tws", "readable_id": "mars-pathfinder"}, "Xb05CaG7TsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xb05CaG7TsQ.mp4/Xb05CaG7TsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xb05CaG7TsQ.mp4/Xb05CaG7TsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xb05CaG7TsQ.m3u8/Xb05CaG7TsQ.m3u8"}, "path": "khan/science/chemistry/thermodynamics-chemistry/internal-energy-sal/first-law-of-thermodynamics-internal-energy/", "duration": 1060, "id": "Xb05CaG7TsQ", "title": "First law of thermodynamics / internal energy", "format": "mp4", "description": "First law of thermodynamic and Internal Energy", "slug": "first-law-of-thermodynamics-internal-energy", "kind": "Video", "video_id": "Xb05CaG7TsQ", "keywords": "chemistry, thermodynamics, internal, energy", "youtube_id": "Xb05CaG7TsQ", "readable_id": "first-law-of-thermodynamics-internal-energy"}, "-4kGMI-qQ3I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-4kGMI-qQ3I.mp4/-4kGMI-qQ3I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-4kGMI-qQ3I.mp4/-4kGMI-qQ3I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-4kGMI-qQ3I.m3u8/-4kGMI-qQ3I.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/rn-circulatory-system/lub-dub/", "duration": 590, "id": "-4kGMI-qQ3I", "title": "Lub dub", "format": "mp4", "description": "Ever wonder why the heart sounds the way that it does? Opening and closing of heart valves makes the heart rhythm come alive with its lub dub beats... Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "lub-dub", "kind": "Video", "video_id": "-4kGMI-qQ3I", "keywords": "", "youtube_id": "-4kGMI-qQ3I", "readable_id": "lub-dub"}, "DGMs81-Rp1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DGMs81-Rp1o.mp4/DGMs81-Rp1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DGMs81-Rp1o.mp4/DGMs81-Rp1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DGMs81-Rp1o.m3u8/DGMs81-Rp1o.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/relationship-between-ka-and-kb/", "duration": 680, "id": "DGMs81-Rp1o", "title": "Relationship between Ka and Kb", "format": "mp4", "description": "", "slug": "relationship-between-ka-and-kb", "kind": "Video", "video_id": "DGMs81-Rp1o", "keywords": "", "youtube_id": "DGMs81-Rp1o", "readable_id": "relationship-between-ka-and-kb"}, "znlvsmuROwI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/znlvsmuROwI.mp4/znlvsmuROwI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/znlvsmuROwI.mp4/znlvsmuROwI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/znlvsmuROwI.m3u8/znlvsmuROwI.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/stabilization-of-a-conjugate-base-induction-new/", "duration": 298, "id": "znlvsmuROwI", "title": "Stabilization of a conjugate base: induction", "format": "mp4", "description": "How a conjugate base is stabilized by the inductive effect", "slug": "stabilization-of-a-conjugate-base-induction-new", "kind": "Video", "video_id": "znlvsmuROwI", "keywords": "", "youtube_id": "znlvsmuROwI", "readable_id": "stabilization-of-a-conjugate-base-induction-new"}, "RFC3RP2jvxE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RFC3RP2jvxE.mp4/RFC3RP2jvxE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RFC3RP2jvxE.mp4/RFC3RP2jvxE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RFC3RP2jvxE.m3u8/RFC3RP2jvxE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-nose-sinus-upper-respiratory/what-is-allergic-rhinitis/", "duration": 531, "id": "RFC3RP2jvxE", "title": "What is allergic rhinitis?", "format": "mp4", "description": "", "slug": "what-is-allergic-rhinitis", "kind": "Video", "video_id": "RFC3RP2jvxE", "keywords": "", "youtube_id": "RFC3RP2jvxE", "readable_id": "what-is-allergic-rhinitis"}, "D02rH3Ufcy8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D02rH3Ufcy8.mp4/D02rH3Ufcy8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D02rH3Ufcy8.mp4/D02rH3Ufcy8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D02rH3Ufcy8.m3u8/D02rH3Ufcy8.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-type-of-college/universities-vs-liberal-arts-colleges/", "duration": 206, "id": "D02rH3Ufcy8", "title": "Comparing universities vs liberal arts colleges", "format": "mp4", "description": "Search for universities and liberal arts colleges using College Board's search tool", "slug": "universities-vs-liberal-arts-colleges", "kind": "Video", "video_id": "D02rH3Ufcy8", "keywords": "", "youtube_id": "D02rH3Ufcy8", "readable_id": "universities-vs-liberal-arts-colleges"}, "K3GV13uokbk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K3GV13uokbk.mp4/K3GV13uokbk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K3GV13uokbk.mp4/K3GV13uokbk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K3GV13uokbk.m3u8/K3GV13uokbk.m3u8"}, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-composing-shapes/compose-shapes/", "duration": 124, "id": "K3GV13uokbk", "title": "Compose shapes", "format": "mp4", "description": "Learn how to combine shapes to make other shapes.", "slug": "compose-shapes", "kind": "Video", "video_id": "K3GV13uokbk", "keywords": "", "youtube_id": "K3GV13uokbk", "readable_id": "compose-shapes"}, "polop-89aIA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/polop-89aIA.mp4/polop-89aIA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/polop-89aIA.mp4/polop-89aIA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/polop-89aIA.m3u8/polop-89aIA.m3u8"}, "duration": 553, "id": "polop-89aIA", "title": "Decay of cesium 137 example", "format": "mp4", "description": "", "path": "khan/math/algebra2/exponential_and_logarithmic_func/exponential-modeling/decay-of-cesium-137-example/", "slug": "decay-of-cesium-137-example", "kind": "Video", "video_id": "polop-89aIA", "keywords": "", "youtube_id": "polop-89aIA", "readable_id": "decay-of-cesium-137-example"}, "bLTfBvkrfsM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bLTfBvkrfsM.mp4/bLTfBvkrfsM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bLTfBvkrfsM.mp4/bLTfBvkrfsM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bLTfBvkrfsM.m3u8/bLTfBvkrfsM.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/greatest_common_divisor/greatest-common-divisor-factor-exercise/", "duration": 410, "id": "bLTfBvkrfsM", "title": "Greatest common factor exercise", "format": "mp4", "description": "Find the biggest number that will divide into the given 2 numbers. This is called the GCF or greatest common factor.No worries, we'll show you how to do it.", "slug": "greatest-common-divisor-factor-exercise", "kind": "Video", "video_id": "bLTfBvkrfsM", "keywords": "", "youtube_id": "bLTfBvkrfsM", "readable_id": "greatest-common-divisor-factor-exercise"}, "zwDJ1wVr7Is": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zwDJ1wVr7Is.mp4/zwDJ1wVr7Is.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zwDJ1wVr7Is.mp4/zwDJ1wVr7Is.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zwDJ1wVr7Is.m3u8/zwDJ1wVr7Is.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/force-of-tension/tension-part-2/", "duration": 619, "id": "zwDJ1wVr7Is", "title": "Introduction to tension (part 2)", "format": "mp4", "description": "A slightly more difficult tension problem.", "slug": "tension-part-2", "kind": "Video", "video_id": "zwDJ1wVr7Is", "keywords": "force, tension, vectors, physics, algebra, math, mass", "youtube_id": "zwDJ1wVr7Is", "readable_id": "tension-part-2"}, "O64YFlX1_aI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O64YFlX1_aI.mp4/O64YFlX1_aI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O64YFlX1_aI.mp4/O64YFlX1_aI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O64YFlX1_aI.m3u8/O64YFlX1_aI.m3u8"}, "duration": 257, "id": "O64YFlX1_aI", "title": "Pythagorean theorem 2", "format": "mp4", "description": "Pythagorean Theorem 2", "path": "khan/math/geometry/right_triangles_topic/pyth_theor/pythagorean-theorem-2/", "slug": "pythagorean-theorem-2", "kind": "Video", "video_id": "O64YFlX1_aI", "keywords": "U07_L2_T1_we2, Pythagorean, Theorem, CC_8_G_7", "youtube_id": "O64YFlX1_aI", "readable_id": "pythagorean-theorem-2"}, "h5P4hHAYPOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h5P4hHAYPOI.mp4/h5P4hHAYPOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h5P4hHAYPOI.mp4/h5P4hHAYPOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h5P4hHAYPOI.m3u8/h5P4hHAYPOI.m3u8"}, "path": "khan/partner-content/big-history-project/future/other-materials10/bhp-sanjayan-visions-future/", "duration": 381, "id": "h5P4hHAYPOI", "title": "Sanjayan: Visions of the Future", "format": "mp4", "description": "What can we learn from volcanic ash in Laetoli? Sanjayan discusses human interaction with the biosphere and how we are reconnecting with nature.", "slug": "bhp-sanjayan-visions-future", "kind": "Video", "video_id": "h5P4hHAYPOI", "keywords": "", "youtube_id": "h5P4hHAYPOI", "readable_id": "bhp-sanjayan-visions-future"}, "nBbgad3BZm4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nBbgad3BZm4.mp4/nBbgad3BZm4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nBbgad3BZm4.mp4/nBbgad3BZm4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nBbgad3BZm4.m3u8/nBbgad3BZm4.m3u8"}, "duration": 602, "id": "nBbgad3BZm4", "title": "How to speak chemistrian", "format": "mp4", "description": "Learning to talk about chemistry can be like learning a foreign language, but Hank is here to help with some straightforward and simple rules to help you learn to speak Chemistrian like a native.\nWriter/Chief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem11-how-to-speak-chemistrian/", "slug": "chem11-how-to-speak-chemistrian", "kind": "Video", "video_id": "nBbgad3BZm4", "keywords": "", "youtube_id": "nBbgad3BZm4", "readable_id": "chem11-how-to-speak-chemistrian"}, "0HScNiJWPKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0HScNiJWPKY.mp4/0HScNiJWPKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0HScNiJWPKY.mp4/0HScNiJWPKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0HScNiJWPKY.m3u8/0HScNiJWPKY.m3u8"}, "duration": 177, "id": "0HScNiJWPKY", "title": "Drawing triangles with blocks", "format": "mp4", "description": "", "path": "drawing-triangles-with-blocks/", "slug": "drawing-triangles-with-blocks", "kind": "Video", "video_id": "0HScNiJWPKY", "keywords": "", "youtube_id": "0HScNiJWPKY", "readable_id": "drawing-triangles-with-blocks"}, "pzqdoXwLBT8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pzqdoXwLBT8.mp4/pzqdoXwLBT8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pzqdoXwLBT8.mp4/pzqdoXwLBT8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pzqdoXwLBT8.m3u8/pzqdoXwLBT8.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/seven-minutes-of-terror/", "duration": 307, "id": "pzqdoXwLBT8", "title": "Entry, descent & landing", "format": "mp4", "description": "Seven minutes of terror. EDL plans for Curiosity", "slug": "seven-minutes-of-terror", "kind": "Video", "video_id": "pzqdoXwLBT8", "keywords": "", "youtube_id": "pzqdoXwLBT8", "readable_id": "seven-minutes-of-terror"}, "32rdijPB-rA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/32rdijPB-rA.mp4/32rdijPB-rA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/32rdijPB-rA.mp4/32rdijPB-rA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/32rdijPB-rA.m3u8/32rdijPB-rA.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/determinant_depth/linear-algebra-determinant-when-row-multiplied-by-scalar/", "duration": 800, "id": "32rdijPB-rA", "title": "Determinant when row multiplied by scalar", "format": "mp4", "description": "The determinant when a row is multiplied by a scalar", "slug": "linear-algebra-determinant-when-row-multiplied-by-scalar", "kind": "Video", "video_id": "32rdijPB-rA", "keywords": "determinant, matrix, linear, algebra", "youtube_id": "32rdijPB-rA", "readable_id": "linear-algebra-determinant-when-row-multiplied-by-scalar"}, "WrsROtPSeuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WrsROtPSeuA.mp4/WrsROtPSeuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WrsROtPSeuA.mp4/WrsROtPSeuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WrsROtPSeuA.m3u8/WrsROtPSeuA.m3u8"}, "duration": 601, "id": "WrsROtPSeuA", "title": "Sn2 stereochemistry", "format": "mp4", "description": "Sn2 Stereochemistry", "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-sal/sn2-stereochemistry/", "slug": "sn2-stereochemistry", "kind": "Video", "video_id": "WrsROtPSeuA", "keywords": "Sn2, Stereochemistry", "youtube_id": "WrsROtPSeuA", "readable_id": "sn2-stereochemistry"}, "WenwtcuqOj8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WenwtcuqOj8.mp4/WenwtcuqOj8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WenwtcuqOj8.mp4/WenwtcuqOj8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WenwtcuqOj8.m3u8/WenwtcuqOj8.m3u8"}, "duration": 525, "id": "WenwtcuqOj8", "title": "States of matter follow-up", "format": "mp4", "description": "More on Plasma and Hydrogen bonds.", "path": "khan/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter/states-of-matter-follow-up/", "slug": "states-of-matter-follow-up", "kind": "Video", "video_id": "WenwtcuqOj8", "keywords": "chemistry, states, phases, of, matter, hydrogen, bonds", "youtube_id": "WenwtcuqOj8", "readable_id": "states-of-matter-follow-up"}, "56tSt0TpnAk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/56tSt0TpnAk.mp4/56tSt0TpnAk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/56tSt0TpnAk.mp4/56tSt0TpnAk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/56tSt0TpnAk.m3u8/56tSt0TpnAk.m3u8"}, "duration": 367, "id": "56tSt0TpnAk", "title": "TB epidemiology", "format": "mp4", "description": "Find out how many lives are affected by TB around the world. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/tb-epidemiology/", "slug": "tb-epidemiology", "kind": "Video", "video_id": "56tSt0TpnAk", "keywords": "", "youtube_id": "56tSt0TpnAk", "readable_id": "tb-epidemiology"}, "VFBXT9D00kM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VFBXT9D00kM.mp4/VFBXT9D00kM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VFBXT9D00kM.mp4/VFBXT9D00kM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VFBXT9D00kM.m3u8/VFBXT9D00kM.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/copy-of-khan-academy-living-room-chats/a-conversation-with-eric-schmidt-and-jonathan-rosenberg/", "duration": 3803, "id": "VFBXT9D00kM", "title": "A conversation with Eric Schmidt and Jonathan Rosenberg", "format": "mp4", "description": "", "slug": "a-conversation-with-eric-schmidt-and-jonathan-rosenberg", "kind": "Video", "video_id": "VFBXT9D00kM", "keywords": "", "youtube_id": "VFBXT9D00kM", "readable_id": "a-conversation-with-eric-schmidt-and-jonathan-rosenberg"}, "6o7b9yyhH7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6o7b9yyhH7k.mp4/6o7b9yyhH7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6o7b9yyhH7k.mp4/6o7b9yyhH7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6o7b9yyhH7k.m3u8/6o7b9yyhH7k.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/differential-equations-intro/differential-equation-introduction/", "duration": 470, "id": "6o7b9yyhH7k", "title": "Differential equation introduction", "format": "mp4", "description": "", "slug": "differential-equation-introduction", "kind": "Video", "video_id": "6o7b9yyhH7k", "keywords": "", "youtube_id": "6o7b9yyhH7k", "readable_id": "differential-equation-introduction"}, "gs9O255gdEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gs9O255gdEY.mp4/gs9O255gdEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gs9O255gdEY.mp4/gs9O255gdEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gs9O255gdEY.m3u8/gs9O255gdEY.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/estimating-infinite-series/alternating-series-error-estimation/", "duration": 558, "id": "gs9O255gdEY", "title": "Alternating series error estimation", "format": "mp4", "description": "", "slug": "alternating-series-error-estimation", "kind": "Video", "video_id": "gs9O255gdEY", "keywords": "", "youtube_id": "gs9O255gdEY", "readable_id": "alternating-series-error-estimation"}, "cZuYdIRAIAs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cZuYdIRAIAs.mp4/cZuYdIRAIAs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cZuYdIRAIAs.mp4/cZuYdIRAIAs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cZuYdIRAIAs.m3u8/cZuYdIRAIAs.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/egypt-art/new-kingdom/thutmose-bust-of-nefertiti-c-1340-bce/", "duration": 241, "id": "cZuYdIRAIAs", "title": "Thutmose, Bust of Nefertiti", "format": "mp4", "description": "Thutmose, Model Bust of Queen Nefertiti, c. 1340 BCE, limestone and plaster, New Kingdom, 18th dynasty, Amarna Period (Egyptian Museum and Papyrus Collection/Neues Museum, Berlin)", "slug": "thutmose-bust-of-nefertiti-c-1340-bce", "kind": "Video", "video_id": "cZuYdIRAIAs", "keywords": "Model, Bust, Queen, Nefertiti, New Kingdom, 18th dynasty, 1340 BCE, limestone, plaster, Egyptian, Egypt, Neues Museum, Berlin Ancient, sculpture, art, Amarna, Pharaoh, Nile, Thutmose, Thotmose", "youtube_id": "cZuYdIRAIAs", "readable_id": "thutmose-bust-of-nefertiti-c-1340-bce"}, "y55tzg_jW9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y55tzg_jW9I.mp4/y55tzg_jW9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y55tzg_jW9I.mp4/y55tzg_jW9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y55tzg_jW9I.m3u8/y55tzg_jW9I.m3u8"}, "duration": 864, "id": "y55tzg_jW9I", "title": "Refraction and Snell's law", "format": "mp4", "description": "Refraction and Snell's Law", "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/refraction-and-snell-s-law/", "slug": "refraction-and-snell-s-law", "kind": "Video", "video_id": "y55tzg_jW9I", "keywords": "Refraction, and, Snell's, Law", "youtube_id": "y55tzg_jW9I", "readable_id": "refraction-and-snell-s-law"}, "MkGXR8umLco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MkGXR8umLco.mp4/MkGXR8umLco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MkGXR8umLco.mp4/MkGXR8umLco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MkGXR8umLco.m3u8/MkGXR8umLco.m3u8"}, "duration": 312, "id": "MkGXR8umLco", "title": "Finding the sum of n squares part 2", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/sum-n-squares-2/", "slug": "sum-n-squares-2", "kind": "Video", "video_id": "MkGXR8umLco", "keywords": "", "youtube_id": "MkGXR8umLco", "readable_id": "sum-n-squares-2"}, "sX97LcDpgzo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sX97LcDpgzo.mp4/sX97LcDpgzo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sX97LcDpgzo.mp4/sX97LcDpgzo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sX97LcDpgzo.m3u8/sX97LcDpgzo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/anaphylactic-shock/", "duration": 510, "id": "sX97LcDpgzo", "title": "Anaphylactic shock", "format": "mp4", "description": "", "slug": "anaphylactic-shock", "kind": "Video", "video_id": "sX97LcDpgzo", "keywords": "", "youtube_id": "sX97LcDpgzo", "readable_id": "anaphylactic-shock"}, "pnBbFIxCIGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pnBbFIxCIGw.mp4/pnBbFIxCIGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pnBbFIxCIGw.mp4/pnBbFIxCIGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pnBbFIxCIGw.m3u8/pnBbFIxCIGw.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/michelangelo/michelangelo-moses-ca-1513-15/", "duration": 252, "id": "pnBbFIxCIGw", "title": "Michelangelo, Moses", "format": "mp4", "description": "Michelangelo, Moses, marble, ca. 1513-15 (San Pietro in Vincoli, Rome) Speakers: Dr. Beth Harris, Dr. Steven Zucker. \u00a0\n\nUsually considered unfinished, these sculptures were originally intended for\u00a0\nthe tomb of Pope Julius II. According to the Louvre, the artist gave the marbles\u00a0\n\nto Roberto Strozzi who presented them to the King of France.\n", "slug": "michelangelo-moses-ca-1513-15", "kind": "Video", "video_id": "pnBbFIxCIGw", "keywords": "Rome, San Pietro in Vincoli, marble, sculpture, Italian art, Renaissance", "youtube_id": "pnBbFIxCIGw", "readable_id": "michelangelo-moses-ca-1513-15"}, "TJUm860AjNw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TJUm860AjNw.mp4/TJUm860AjNw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TJUm860AjNw.mp4/TJUm860AjNw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TJUm860AjNw.m3u8/TJUm860AjNw.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/common-and-systematic-naming-iso-sec-and-tert-prefixes/", "duration": 812, "id": "TJUm860AjNw", "title": "Common and systematic naming: iso-, sec-, and tert- prefixes", "format": "mp4", "description": "Common and Systematic Naming-Iso, Sec and Tert Prefixes", "slug": "common-and-systematic-naming-iso-sec-and-tert-prefixes", "kind": "Video", "video_id": "TJUm860AjNw", "keywords": "Sec and Tert Prefixes", "youtube_id": "TJUm860AjNw", "readable_id": "common-and-systematic-naming-iso-sec-and-tert-prefixes"}, "kpxe-xbVyK8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kpxe-xbVyK8.mp4/kpxe-xbVyK8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kpxe-xbVyK8.mp4/kpxe-xbVyK8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kpxe-xbVyK8.m3u8/kpxe-xbVyK8.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-4-13/", "duration": 97, "id": "kpxe-xbVyK8", "title": "13 Triangle angles", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-13", "kind": "Video", "video_id": "kpxe-xbVyK8", "keywords": "", "youtube_id": "kpxe-xbVyK8", "readable_id": "sat-2010-may-4-13"}, "EYlT-9KYPO0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EYlT-9KYPO0.mp4/EYlT-9KYPO0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EYlT-9KYPO0.mp4/EYlT-9KYPO0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EYlT-9KYPO0.m3u8/EYlT-9KYPO0.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/resistance/variable-resistor-pencil/", "duration": 88, "id": "EYlT-9KYPO0", "title": "Variable resistor (pencil)", "format": "mp4", "description": "We use the inside of a pencil (graphite) to apply different \"lengths of pencil\" to the circuit. What relationship do you observe between length of graphite and deflection angle?", "slug": "variable-resistor-pencil", "kind": "Video", "video_id": "EYlT-9KYPO0", "keywords": "variable resistor", "youtube_id": "EYlT-9KYPO0", "readable_id": "variable-resistor-pencil"}, "XympPG5iD-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XympPG5iD-Y.mp4/XympPG5iD-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XympPG5iD-Y.mp4/XympPG5iD-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XympPG5iD-Y.m3u8/XympPG5iD-Y.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/g-ricault-raft-of-the-medusa-1818-19/", "duration": 394, "id": "XympPG5iD-Y", "title": "G\u00e9ricault, Raft of the Medusa", "format": "mp4", "description": "Th\u00e9odore G\u00e9ricault, Raft of the Medusa, oil on canvas, 193 x 282 inches, 1818-19 (Mus\u00e9e du Louvre, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "g-ricault-raft-of-the-medusa-1818-19", "kind": "Video", "video_id": "XympPG5iD-Y", "keywords": "Gericault, Raft of the Medusa, Romanticism, Louvre, Paris, Art History, Smarthistory, Mus\u00e9e du Louvre", "youtube_id": "XympPG5iD-Y", "readable_id": "g-ricault-raft-of-the-medusa-1818-19"}, "PXlvKtpvUEk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PXlvKtpvUEk.mp4/PXlvKtpvUEk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PXlvKtpvUEk.mp4/PXlvKtpvUEk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PXlvKtpvUEk.m3u8/PXlvKtpvUEk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/redox-reactions/disproportionation/", "duration": 303, "id": "PXlvKtpvUEk", "title": "Disproportionation", "format": "mp4", "description": "Assigning oxidation states for the decomposition of hydrogen peroxide. ", "slug": "disproportionation", "kind": "Video", "video_id": "PXlvKtpvUEk", "keywords": "disproportionation", "youtube_id": "PXlvKtpvUEk", "readable_id": "disproportionation"}, "tvnOWIoeeaU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tvnOWIoeeaU.mp4/tvnOWIoeeaU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tvnOWIoeeaU.mp4/tvnOWIoeeaU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tvnOWIoeeaU.m3u8/tvnOWIoeeaU.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-difference-of-squares/", "duration": 109, "id": "tvnOWIoeeaU", "title": "Example 1: Factoring difference of squares", "format": "mp4", "description": "Factoring difference of squares", "slug": "factoring-difference-of-squares", "kind": "Video", "video_id": "tvnOWIoeeaU", "keywords": "u12_l2_t2_we2, Factoring, difference, of, squares, CC_39336_A-SSE_1_a, CC_39336_A-SSE_1_b, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "tvnOWIoeeaU", "readable_id": "factoring-difference-of-squares"}, "Q_IXQZkMEAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Q_IXQZkMEAU.mp4/Q_IXQZkMEAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Q_IXQZkMEAU.mp4/Q_IXQZkMEAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Q_IXQZkMEAU.m3u8/Q_IXQZkMEAU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2008-may-8-2/", "duration": 72, "id": "Q_IXQZkMEAU", "title": "2 Solving for a", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-2", "kind": "Video", "video_id": "Q_IXQZkMEAU", "keywords": "", "youtube_id": "Q_IXQZkMEAU", "readable_id": "sat-2008-may-8-2"}, "PPOIlLhsT6s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PPOIlLhsT6s.mp4/PPOIlLhsT6s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PPOIlLhsT6s.mp4/PPOIlLhsT6s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PPOIlLhsT6s.m3u8/PPOIlLhsT6s.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/data-in-matrices/", "duration": 343, "id": "PPOIlLhsT6s", "title": "Representing data with matrices", "format": "mp4", "description": "", "slug": "data-in-matrices", "kind": "Video", "video_id": "PPOIlLhsT6s", "keywords": "", "youtube_id": "PPOIlLhsT6s", "readable_id": "data-in-matrices"}, "bV_HSZ_W0nk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bV_HSZ_W0nk.mp4/bV_HSZ_W0nk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bV_HSZ_W0nk.mp4/bV_HSZ_W0nk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bV_HSZ_W0nk.m3u8/bV_HSZ_W0nk.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-complex-root-probability-part-1/", "duration": 823, "id": "bV_HSZ_W0nk", "title": "IIT JEE complex root probability (part 1)", "format": "mp4", "description": "2010 Paper 1 problem 31 Math (part 1)", "slug": "iit-jee-complex-root-probability-part-1", "kind": "Video", "video_id": "bV_HSZ_W0nk", "keywords": "IIT, JEE, Complex, Root, Probability", "youtube_id": "bV_HSZ_W0nk", "readable_id": "iit-jee-complex-root-probability-part-1"}, "k_wJsio68D4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k_wJsio68D4.mp4/k_wJsio68D4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k_wJsio68D4.mp4/k_wJsio68D4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k_wJsio68D4.m3u8/k_wJsio68D4.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/trig-symmetry-periodicity/tan-symmetries-unit-circle/", "duration": 435, "id": "k_wJsio68D4", "title": "Unit circle symmetries for tan", "format": "mp4", "description": "", "slug": "tan-symmetries-unit-circle", "kind": "Video", "video_id": "k_wJsio68D4", "keywords": "", "youtube_id": "k_wJsio68D4", "readable_id": "tan-symmetries-unit-circle"}, "ifv0KWw4pns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ifv0KWw4pns.mp4/ifv0KWw4pns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ifv0KWw4pns.mp4/ifv0KWw4pns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ifv0KWw4pns.m3u8/ifv0KWw4pns.m3u8"}, "path": "khan/humanities/art-1010/art-post-war-britain/room-1950/", "duration": 145, "id": "ifv0KWw4pns", "title": "Room: 1950s", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Chris Stephens explores the 1950s.\n\nLearn more about the art featured in this video:\n-\u00a0Lucian Freud, Girl with a White Dog,\u00a01950\u20131\n-\u00a0Patrick Heron, Azalea Garden: May 1956, 1956", "slug": "room-1950", "kind": "Video", "video_id": "ifv0KWw4pns", "keywords": "modern art, Tate", "youtube_id": "ifv0KWw4pns", "readable_id": "room-1950"}, "DqeMQHomwAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DqeMQHomwAU.mp4/DqeMQHomwAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DqeMQHomwAU.mp4/DqeMQHomwAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DqeMQHomwAU.m3u8/DqeMQHomwAU.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/solving-one-step-equations-2/", "duration": 143, "id": "DqeMQHomwAU", "title": "Simple equations of the form x/a = b", "format": "mp4", "description": "Remember that what you do to one side, you have to do to the other. Will you multiply or divide both sides to dump the fraction, x/a? Let's do it together.", "slug": "solving-one-step-equations-2", "kind": "Video", "video_id": "DqeMQHomwAU", "keywords": "u10_L1_T1_we3, Solving, One-Step, Equations, CC_6_EE_2, CC_6_EE_2_c", "youtube_id": "DqeMQHomwAU", "readable_id": "solving-one-step-equations-2"}, "CJyVct57-9s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CJyVct57-9s.mp4/CJyVct57-9s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CJyVct57-9s.mp4/CJyVct57-9s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CJyVct57-9s.m3u8/CJyVct57-9s.m3u8"}, "duration": 346, "id": "CJyVct57-9s", "title": "Ex 2: Distributive property to simplify", "format": "mp4", "description": "Multi-step equations 2", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/complicated_equations/multi-step-equations-2/", "slug": "multi-step-equations-2", "kind": "Video", "video_id": "CJyVct57-9s", "keywords": "u10_l1_t2_we2, Multi-step, equations, CC_6_EE_2, CC_6_EE_2_c, CC_6_EE_3, CC_8_EE_7_b", "youtube_id": "CJyVct57-9s", "readable_id": "multi-step-equations-2"}, "EoCeL4SPIcA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EoCeL4SPIcA.mp4/EoCeL4SPIcA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EoCeL4SPIcA.mp4/EoCeL4SPIcA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EoCeL4SPIcA.m3u8/EoCeL4SPIcA.m3u8"}, "duration": 135, "id": "EoCeL4SPIcA", "title": "Solving and graphing linear inequalities in two variables 1", "format": "mp4", "description": "Solving and graphing linear inequalities in two variables", "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/solving-and-graphing-linear-inequalities-in-two-variables-1/", "slug": "solving-and-graphing-linear-inequalities-in-two-variables-1", "kind": "Video", "video_id": "EoCeL4SPIcA", "keywords": "U05_L2_T1_we1, Solving, and, graphing, linear, inequalities, in, two, variables, CC_6_EE_8, CC_7_EE_4_b, CC_39336_A-REI_10", "youtube_id": "EoCeL4SPIcA", "readable_id": "solving-and-graphing-linear-inequalities-in-two-variables-1"}, "l6T4RhlgkG0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l6T4RhlgkG0.mp4/l6T4RhlgkG0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l6T4RhlgkG0.mp4/l6T4RhlgkG0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l6T4RhlgkG0.m3u8/l6T4RhlgkG0.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/proving-the-chain-rule/change-in-continuous-function-approaches-0/", "duration": 385, "id": "l6T4RhlgkG0", "title": "Change in continuous function approaches 0", "format": "mp4", "description": "Change in continuous function approaches 0", "slug": "change-in-continuous-function-approaches-0", "kind": "Video", "video_id": "l6T4RhlgkG0", "keywords": "", "youtube_id": "l6T4RhlgkG0", "readable_id": "change-in-continuous-function-approaches-0"}, "gY5TvlHg4Vk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gY5TvlHg4Vk.mp4/gY5TvlHg4Vk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gY5TvlHg4Vk.mp4/gY5TvlHg4Vk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gY5TvlHg4Vk.m3u8/gY5TvlHg4Vk.m3u8"}, "duration": 618, "id": "gY5TvlHg4Vk", "title": "How to rationalize a denominator", "format": "mp4", "description": "How to Rationalize a Denominator", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/how-to-rationalize-a-denominator/", "slug": "how-to-rationalize-a-denominator", "kind": "Video", "video_id": "gY5TvlHg4Vk", "keywords": "How, to, Rationalize, Denominator", "youtube_id": "gY5TvlHg4Vk", "readable_id": "how-to-rationalize-a-denominator"}, "GAQ9KyxDYUY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GAQ9KyxDYUY.mp4/GAQ9KyxDYUY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GAQ9KyxDYUY.mp4/GAQ9KyxDYUY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GAQ9KyxDYUY.m3u8/GAQ9KyxDYUY.m3u8"}, "duration": 142, "id": "GAQ9KyxDYUY", "title": "Richard Serra, \"Band,\" 2006", "format": "mp4", "description": "Richard Serra on his sculpture, Band: \"you can walk inside and outside continuously and never stop\u201d for more than 70 feet. Learn more about what artists have to say in our online course, Modern and Contemporary Art, 1945-1989.", "path": "khan/humanities/art-1010/minimalism-earthworks/moma-serra-band/", "slug": "moma-serra-band", "kind": "Video", "video_id": "GAQ9KyxDYUY", "keywords": "", "youtube_id": "GAQ9KyxDYUY", "readable_id": "moma-serra-band"}, "zv8LHyH7_rI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zv8LHyH7_rI.mp4/zv8LHyH7_rI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zv8LHyH7_rI.mp4/zv8LHyH7_rI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zv8LHyH7_rI.m3u8/zv8LHyH7_rI.m3u8"}, "duration": 393, "id": "zv8LHyH7_rI", "title": "Physiological concept of positive and negative feedback", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/physiological-concept-of-positive-and-negative-feedback/", "slug": "physiological-concept-of-positive-and-negative-feedback", "kind": "Video", "video_id": "zv8LHyH7_rI", "keywords": "", "youtube_id": "zv8LHyH7_rI", "readable_id": "physiological-concept-of-positive-and-negative-feedback"}, "hu067I_BcGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hu067I_BcGc.mp4/hu067I_BcGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hu067I_BcGc.mp4/hu067I_BcGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hu067I_BcGc.m3u8/hu067I_BcGc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2008-may-4-15/", "duration": 147, "id": "hu067I_BcGc", "title": "15 Median of 5 consecutive integers", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-15", "kind": "Video", "video_id": "hu067I_BcGc", "keywords": "", "youtube_id": "hu067I_BcGc", "readable_id": "sat-2008-may-4-15"}, "lqUEWp-D3IM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lqUEWp-D3IM.mp4/lqUEWp-D3IM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lqUEWp-D3IM.mp4/lqUEWp-D3IM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lqUEWp-D3IM.m3u8/lqUEWp-D3IM.m3u8"}, "path": "khan/partner-content/cas-biodiversity/how-is-biodiversity-studied/biodiversity-analyses-and-uncertainties/studying-biodiversity-in-the-lab/", "duration": 461, "id": "lqUEWp-D3IM", "title": "Studying biodiversity in the lab", "format": "mp4", "description": "", "slug": "studying-biodiversity-in-the-lab", "kind": "Video", "video_id": "lqUEWp-D3IM", "keywords": "", "youtube_id": "lqUEWp-D3IM", "readable_id": "studying-biodiversity-in-the-lab"}, "xXIG8ouHcsc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xXIG8ouHcsc.mp4/xXIG8ouHcsc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xXIG8ouHcsc.mp4/xXIG8ouHcsc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xXIG8ouHcsc.m3u8/xXIG8ouHcsc.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/long_division/dividing-by-a-two-digit-number/", "duration": 169, "id": "xXIG8ouHcsc", "title": "Dividing by two digits example 2", "format": "mp4", "description": "Here's another practice example where you divide by two digits.", "slug": "dividing-by-a-two-digit-number", "kind": "Video", "video_id": "xXIG8ouHcsc", "keywords": "", "youtube_id": "xXIG8ouHcsc", "readable_id": "dividing-by-a-two-digit-number"}, "rfepM3L7Pqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rfepM3L7Pqc.mp4/rfepM3L7Pqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rfepM3L7Pqc.mp4/rfepM3L7Pqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rfepM3L7Pqc.m3u8/rfepM3L7Pqc.m3u8"}, "duration": 446, "id": "rfepM3L7Pqc", "title": "Astrocytes", "format": "mp4", "description": "\nThis video describes the structure and function of astrocytes. By Matt Jensen.\n\n", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neural-cells/astrocytes/", "slug": "astrocytes", "kind": "Video", "video_id": "rfepM3L7Pqc", "keywords": "", "youtube_id": "rfepM3L7Pqc", "readable_id": "astrocytes"}, "_NznT4Cn8As": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_NznT4Cn8As.mp4/_NznT4Cn8As.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_NznT4Cn8As.mp4/_NznT4Cn8As.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_NznT4Cn8As.m3u8/_NznT4Cn8As.m3u8"}, "duration": 617, "id": "_NznT4Cn8As", "title": "Perfect competition", "format": "mp4", "description": "Conditions for perfect competition. Looking at the airline industry", "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/perfect-competition/perfect-competition/", "slug": "perfect-competition", "kind": "Video", "video_id": "_NznT4Cn8As", "keywords": "microeconomics", "youtube_id": "_NznT4Cn8As", "readable_id": "perfect-competition"}, "ppNmUPTbXtU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ppNmUPTbXtU.mp4/ppNmUPTbXtU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ppNmUPTbXtU.mp4/ppNmUPTbXtU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ppNmUPTbXtU.m3u8/ppNmUPTbXtU.m3u8"}, "path": "khan/partner-content/big-history-project/agriculture-civilization/first-cities-states/bhp-where-when-cities-states/", "duration": 646, "id": "ppNmUPTbXtU", "title": "Where and Why Did the First Cities and States Appear?", "format": "mp4", "description": "Fueled by surplus crops, agriculture led to the formation of the world's first large-scale civilizations.", "slug": "bhp-where-when-cities-states", "kind": "Video", "video_id": "ppNmUPTbXtU", "keywords": "", "youtube_id": "ppNmUPTbXtU", "readable_id": "bhp-where-when-cities-states"}, "9uOF3AZI_Gc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9uOF3AZI_Gc.mp4/9uOF3AZI_Gc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9uOF3AZI_Gc.mp4/9uOF3AZI_Gc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9uOF3AZI_Gc.m3u8/9uOF3AZI_Gc.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/more-about-necessary-and-sufficient-conditions/", "duration": 475, "id": "9uOF3AZI_Gc", "title": "Fundamentals: More about necessary and sufficient conditions", "format": "mp4", "description": "In this video, Kelley builds on the understanding of necessary and sufficient conditions laid out in her previous video on the topic. In addition to providing further illustrative examples, Kelley addresses a new complexity: that our judgments of necessity and sufficiency very often rely on implicit background assumptions. Kelley also tackles the difficult question \"What's so important about distinguishing necessary from sufficient conditions anyway?\".\n\nSpeaker: Kelley Schiffman, Yale University", "slug": "more-about-necessary-and-sufficient-conditions", "kind": "Video", "video_id": "9uOF3AZI_Gc", "keywords": "", "youtube_id": "9uOF3AZI_Gc", "readable_id": "more-about-necessary-and-sufficient-conditions"}, "bQfZXeksysw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bQfZXeksysw.mp4/bQfZXeksysw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bQfZXeksysw.mp4/bQfZXeksysw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bQfZXeksysw.m3u8/bQfZXeksysw.m3u8"}, "duration": 744, "id": "bQfZXeksysw", "title": "Natural Selection", "format": "mp4", "description": "Hank guides us through the process of natural selection, the key mechanism of evolution.", "path": "crash-course-biology-113/", "slug": "crash-course-biology-113", "kind": "Video", "video_id": "bQfZXeksysw", "keywords": "", "youtube_id": "bQfZXeksysw", "readable_id": "crash-course-biology-113"}, "ZJm57F8NGEc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZJm57F8NGEc.mp4/ZJm57F8NGEc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZJm57F8NGEc.mp4/ZJm57F8NGEc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZJm57F8NGEc.m3u8/ZJm57F8NGEc.m3u8"}, "duration": 173, "id": "ZJm57F8NGEc", "title": "Ben Milne - Importance of Curiosity", "format": "mp4", "description": "Ben Milne, CEO of Dwolla, discusses how tinkering and trying to figure out how the world works can lead to being a successful producer rather than just a consumer. Ben also addresses the importance of surrounding yourself with the right people to work on a problem that\u2019s meaningful to you.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/ben-milne/kauffman-ben-milne2/", "slug": "kauffman-ben-milne2", "kind": "Video", "video_id": "ZJm57F8NGEc", "keywords": "", "youtube_id": "ZJm57F8NGEc", "readable_id": "kauffman-ben-milne2"}, "CAz6a5FwZJQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CAz6a5FwZJQ.mp4/CAz6a5FwZJQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CAz6a5FwZJQ.mp4/CAz6a5FwZJQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CAz6a5FwZJQ.m3u8/CAz6a5FwZJQ.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/unlock-art-frank-skinner-on-performance-art/", "duration": 357, "id": "CAz6a5FwZJQ", "title": "Unlock Art: Frank Skinner on Performance Art", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nArtist Joseph Beuys argued that every human activity counts as art so long as it is a conscious act. What do you think? In this video, comedian and art enthusiast Frank Skinner takes us on a journey through performance art and its origins, from movements like Dada and Surrealism through to challenging oppressive regimes and making a social critique.", "slug": "unlock-art-frank-skinner-on-performance-art", "kind": "Video", "video_id": "CAz6a5FwZJQ", "keywords": "Tate, performance art", "youtube_id": "CAz6a5FwZJQ", "readable_id": "unlock-art-frank-skinner-on-performance-art"}, "816WMQIwNoY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/816WMQIwNoY.mp4/816WMQIwNoY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/816WMQIwNoY.mp4/816WMQIwNoY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/816WMQIwNoY.m3u8/816WMQIwNoY.m3u8"}, "path": "khan/test-prep/mcat/behavior/psychological-disorders/biological-basis-of-alzheimers-disease/", "duration": 675, "id": "816WMQIwNoY", "title": "Biological basis of alzheimer's disease", "format": "mp4", "description": "", "slug": "biological-basis-of-alzheimers-disease", "kind": "Video", "video_id": "816WMQIwNoY", "keywords": "", "youtube_id": "816WMQIwNoY", "readable_id": "biological-basis-of-alzheimers-disease"}, "ZyyaE3DIxhc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZyyaE3DIxhc.mp4/ZyyaE3DIxhc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZyyaE3DIxhc.mp4/ZyyaE3DIxhc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZyyaE3DIxhc.m3u8/ZyyaE3DIxhc.m3u8"}, "duration": 1153, "id": "ZyyaE3DIxhc", "title": "Fractional Reserve banking commentary 1", "format": "mp4", "description": "Understanding the weak points of Fractional Reserve Banking", "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/fractional-reserve-banking-commentary-1/", "slug": "fractional-reserve-banking-commentary-1", "kind": "Video", "video_id": "ZyyaE3DIxhc", "keywords": "fractional, reserve, banking", "youtube_id": "ZyyaE3DIxhc", "readable_id": "fractional-reserve-banking-commentary-1"}, "M5AxwBJ3pT0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M5AxwBJ3pT0.mp4/M5AxwBJ3pT0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M5AxwBJ3pT0.mp4/M5AxwBJ3pT0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M5AxwBJ3pT0.m3u8/M5AxwBJ3pT0.m3u8"}, "duration": 163, "id": "M5AxwBJ3pT0", "title": "\"Head of Class\" with Stuart Pyhrr", "format": "mp4", "description": "Met curator Stuart Pyhrr on virtuoso craftsmanship in Filippo Negroli\u2019s Burgonet.\n\nThis masterpiece of Renaissance metalwork is signed on the browplate by Filippo Negroli, whose embossed armor was praised by sixteenth-century writers as \"miraculous\" and deserving \"immortal merit.\" Formed of one plate of steel and patinated to look like bronze, the bowl is raised in high relief with motifs inspired by classical art. The graceful mermaidlike siren forming the helmet's comb holds a grimacing head of Medusa by the hair. The sides of the helmet are covered with acanthus scrolls inhabited by putti, a motif ultimately derived from ancient Roman sculpture and wall paintings.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "head-class/", "slug": "head-class", "kind": "Video", "video_id": "M5AxwBJ3pT0", "keywords": "arms and armor, authority, fashion, metal, nature, ornate, Europe", "youtube_id": "M5AxwBJ3pT0", "readable_id": "head-class"}, "XMElagkUBmY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XMElagkUBmY.mp4/XMElagkUBmY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XMElagkUBmY.mp4/XMElagkUBmY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XMElagkUBmY.m3u8/XMElagkUBmY.m3u8"}, "duration": 996, "id": "XMElagkUBmY", "title": "Woodrow Wilson's Fourteen Points", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/ww1-aftermath/woodrow-wilson-s-fourteen-points/", "slug": "woodrow-wilson-s-fourteen-points", "kind": "Video", "video_id": "XMElagkUBmY", "keywords": "", "youtube_id": "XMElagkUBmY", "readable_id": "woodrow-wilson-s-fourteen-points"}, "IDQYakHRAG8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IDQYakHRAG8.mp4/IDQYakHRAG8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IDQYakHRAG8.mp4/IDQYakHRAG8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IDQYakHRAG8.m3u8/IDQYakHRAG8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/triboelectric-effect-and-charge/", "duration": 706, "id": "IDQYakHRAG8", "title": "Triboelectric effect and charge", "format": "mp4", "description": "", "slug": "triboelectric-effect-and-charge", "kind": "Video", "video_id": "IDQYakHRAG8", "keywords": "", "youtube_id": "IDQYakHRAG8", "readable_id": "triboelectric-effect-and-charge"}, "9kW6zFK5E5c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9kW6zFK5E5c.mp4/9kW6zFK5E5c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9kW6zFK5E5c.mp4/9kW6zFK5E5c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9kW6zFK5E5c.m3u8/9kW6zFK5E5c.m3u8"}, "duration": 1013, "id": "9kW6zFK5E5c", "title": "Span and linear independence example", "format": "mp4", "description": "Determining whether 3 vectors are linearly independent and/or span R3", "path": "khan/math/linear-algebra/vectors_and_spaces/linear_independence/span-and-linear-independence-example/", "slug": "span-and-linear-independence-example", "kind": "Video", "video_id": "9kW6zFK5E5c", "keywords": "Linear, Algebra, Vectors, span, combination, dependence, independence", "youtube_id": "9kW6zFK5E5c", "readable_id": "span-and-linear-independence-example"}, "M8oITAoaCr4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M8oITAoaCr4.mp4/M8oITAoaCr4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M8oITAoaCr4.mp4/M8oITAoaCr4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M8oITAoaCr4.m3u8/M8oITAoaCr4.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/the-grandfather-paradox/", "duration": 538, "id": "M8oITAoaCr4", "title": "Metaphysics: The Grandfather Paradox", "format": "mp4", "description": "Agust\u00edn Rayo explains the grandfather paradox, one of the classic paradoxes of time travel.\n\nSpeaker:\u00a0Dr.\u00a0Agust\u00edn Rayo, Professor of Philosophy, MIT\n", "slug": "the-grandfather-paradox", "kind": "Video", "video_id": "M8oITAoaCr4", "keywords": "", "youtube_id": "M8oITAoaCr4", "readable_id": "the-grandfather-paradox"}, "N4nrdf0yYfM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N4nrdf0yYfM.mp4/N4nrdf0yYfM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N4nrdf0yYfM.mp4/N4nrdf0yYfM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N4nrdf0yYfM.m3u8/N4nrdf0yYfM.m3u8"}, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-coordinate-plane/descartes-and-cartesian-coordinates/", "duration": 682, "id": "N4nrdf0yYfM", "title": "Introduction to the coordinate plane", "format": "mp4", "description": "Bridging algebra and geometry. What makes linear equations so linear.", "slug": "descartes-and-cartesian-coordinates", "kind": "Video", "video_id": "N4nrdf0yYfM", "keywords": "algebra, decartes, cartesian, coordinates", "youtube_id": "N4nrdf0yYfM", "readable_id": "descartes-and-cartesian-coordinates"}, "tqTJZEglrvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tqTJZEglrvc.mp4/tqTJZEglrvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tqTJZEglrvc.mp4/tqTJZEglrvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tqTJZEglrvc.m3u8/tqTJZEglrvc.m3u8"}, "duration": 310, "id": "tqTJZEglrvc", "title": "Vertical distance of bouncing ball", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/bouncing-ball-distance/", "slug": "bouncing-ball-distance", "kind": "Video", "video_id": "tqTJZEglrvc", "keywords": "", "youtube_id": "tqTJZEglrvc", "readable_id": "bouncing-ball-distance"}, "fJiCHUimtpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fJiCHUimtpc.mp4/fJiCHUimtpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fJiCHUimtpc.mp4/fJiCHUimtpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fJiCHUimtpc.m3u8/fJiCHUimtpc.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/string-instruments/cello-interview-and-demonstration-with-principal-jerry-grossman/", "duration": 385, "id": "fJiCHUimtpc", "title": "Cello: Interview and demonstration with principal Jerry Grossman", "format": "mp4", "description": "", "slug": "cello-interview-and-demonstration-with-principal-jerry-grossman", "kind": "Video", "video_id": "fJiCHUimtpc", "keywords": "", "youtube_id": "fJiCHUimtpc", "readable_id": "cello-interview-and-demonstration-with-principal-jerry-grossman"}, "INvpZ9Ra4NI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/INvpZ9Ra4NI.mp4/INvpZ9Ra4NI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/INvpZ9Ra4NI.mp4/INvpZ9Ra4NI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/INvpZ9Ra4NI.m3u8/INvpZ9Ra4NI.m3u8"}, "duration": 502, "id": "INvpZ9Ra4NI", "title": "Doing solids", "format": "mp4", "description": "In which Hank blows our minds with the different kinds of Solids out there and talks about why they're all different and have different properties. Today, you'll learn about amorphous and crystalline solids, types of crystalline solids, types of crystalline atomic solids, properties of each type of solid, and that the properties depend on the bond types.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem33-doing-solids/", "slug": "chem33-doing-solids", "kind": "Video", "video_id": "INvpZ9Ra4NI", "keywords": "", "youtube_id": "INvpZ9Ra4NI", "readable_id": "chem33-doing-solids"}, "gL3HxBQyeg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gL3HxBQyeg0.mp4/gL3HxBQyeg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gL3HxBQyeg0.mp4/gL3HxBQyeg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gL3HxBQyeg0.m3u8/gL3HxBQyeg0.m3u8"}, "duration": 487, "id": "gL3HxBQyeg0", "title": "Cylinder volume and surface area", "format": "mp4", "description": "Finding the volume and surface area of a cylinder", "path": "khan/math/geometry/basic-geometry/volume_tutorial/cylinder-volume-and-surface-area/", "slug": "cylinder-volume-and-surface-area", "kind": "Video", "video_id": "gL3HxBQyeg0", "keywords": "cylinder, volume, surface, area, CC_8_G_9", "youtube_id": "gL3HxBQyeg0", "readable_id": "cylinder-volume-and-surface-area"}, "XkcHktjqI1s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XkcHktjqI1s.mp4/XkcHktjqI1s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XkcHktjqI1s.mp4/XkcHktjqI1s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XkcHktjqI1s.m3u8/XkcHktjqI1s.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-germany/caspar-david-friedrich-monk-by-the-sea-1808-or-1810/", "duration": 246, "id": "XkcHktjqI1s", "title": "Friedrich, Monk by the Sea", "format": "mp4", "description": "Caspar David Friedrich, Monk by the Sea, 1808 or 1810, oil on canvas, 110 x 171.5 cm (Alte Nationalgalerie, Staatliche Museen zu Berlin)", "slug": "caspar-david-friedrich-monk-by-the-sea-1808-or-1810", "kind": "Video", "video_id": "XkcHktjqI1s", "keywords": "Friedrich, Monk, Sea, GAP, Google Art Project, Smarthistory, Khan Academy, Romanticism, Romantic, German, Caspar David Friedrich, Monk by the Sea, 1808, 1810, Alte Nationalgalerie, Baltic, Solitude, Educational", "youtube_id": "XkcHktjqI1s", "readable_id": "caspar-david-friedrich-monk-by-the-sea-1808-or-1810"}, "blbR5f2dq_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/blbR5f2dq_g.mp4/blbR5f2dq_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/blbR5f2dq_g.mp4/blbR5f2dq_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/blbR5f2dq_g.m3u8/blbR5f2dq_g.m3u8"}, "duration": 367, "id": "blbR5f2dq_g", "title": "Loanable funds interpretation of IS curve", "format": "mp4", "description": "Thinking about how real GDP can drive real interest rates", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/is-lm-model-tutorial/loanable-funds-interpretation-of-is-curve/", "slug": "loanable-funds-interpretation-of-is-curve", "kind": "Video", "video_id": "blbR5f2dq_g", "keywords": "ISLM, IS-LM, IS/LM", "youtube_id": "blbR5f2dq_g", "readable_id": "loanable-funds-interpretation-of-is-curve"}, "h6HmHjkA034": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h6HmHjkA034.mp4/h6HmHjkA034.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h6HmHjkA034.mp4/h6HmHjkA034.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h6HmHjkA034.m3u8/h6HmHjkA034.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/special-polynomials-products-1/", "duration": 149, "id": "h6HmHjkA034", "title": "Multiplying binomials to get difference of squares", "format": "mp4", "description": "Multiplying binomials to get difference of squares", "slug": "special-polynomials-products-1", "kind": "Video", "video_id": "h6HmHjkA034", "keywords": "u11_l2_t4_we1, Special, Polynomials, Products, CC_39336_A-APR_1", "youtube_id": "h6HmHjkA034", "readable_id": "special-polynomials-products-1"}, "Z_GWBW_GVGA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z_GWBW_GVGA.mp4/Z_GWBW_GVGA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z_GWBW_GVGA.mp4/Z_GWBW_GVGA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z_GWBW_GVGA.m3u8/Z_GWBW_GVGA.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions/introduction-to-reaction-mechanisms/", "duration": 682, "id": "Z_GWBW_GVGA", "title": "Introduction to reaction mechanisms", "format": "mp4", "description": "Introduction to Reaction Mechanisms . Addition reaction to an alkene", "slug": "introduction-to-reaction-mechanisms", "kind": "Video", "video_id": "Z_GWBW_GVGA", "keywords": "Introduction, to, Reaction, Mechanisms", "youtube_id": "Z_GWBW_GVGA", "readable_id": "introduction-to-reaction-mechanisms"}, "aTX7DcwQE-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aTX7DcwQE-k.mp4/aTX7DcwQE-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aTX7DcwQE-k.mp4/aTX7DcwQE-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aTX7DcwQE-k.m3u8/aTX7DcwQE-k.m3u8"}, "path": "khan/college-admissions/making-high-school-count/extracurricular-and-leadership/ss-extracurriculars-that-are-self-created/", "duration": 48, "id": "aTX7DcwQE-k", "title": "Student story: Extracurriculars that are self created", "format": "mp4", "description": "", "slug": "ss-extracurriculars-that-are-self-created", "kind": "Video", "video_id": "aTX7DcwQE-k", "keywords": "", "youtube_id": "aTX7DcwQE-k", "readable_id": "ss-extracurriculars-that-are-self-created"}, "dTwZ5N126gw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dTwZ5N126gw.mp4/dTwZ5N126gw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dTwZ5N126gw.mp4/dTwZ5N126gw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dTwZ5N126gw.m3u8/dTwZ5N126gw.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/inequalities-on-a-number-line/", "duration": 94, "id": "dTwZ5N126gw", "title": "A simple inequality: plotting on a number line", "format": "mp4", "description": "We're plotting a simple inequality on a number line in this example.", "slug": "inequalities-on-a-number-line", "kind": "Video", "video_id": "dTwZ5N126gw", "keywords": "u10_l2_t1_we1, Inequalities, on, number, line, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4", "youtube_id": "dTwZ5N126gw", "readable_id": "inequalities-on-a-number-line"}, "WII2kc2QYdU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WII2kc2QYdU.mp4/WII2kc2QYdU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WII2kc2QYdU.mp4/WII2kc2QYdU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WII2kc2QYdU.m3u8/WII2kc2QYdU.m3u8"}, "duration": 67, "id": "WII2kc2QYdU", "title": "Compass build (magnet orientation)", "format": "mp4", "description": "Making a Compass: does it matter if we stroke the needle with the North vs. South pole of the magnet? Why?", "path": "khan/science/discoveries-projects/discoveries/magnetism/making-a-compass-orientation/", "slug": "making-a-compass-orientation", "kind": "Video", "video_id": "WII2kc2QYdU", "keywords": "magnets", "youtube_id": "WII2kc2QYdU", "readable_id": "making-a-compass-orientation"}, "kZk3prERLec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kZk3prERLec.mp4/kZk3prERLec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kZk3prERLec.mp4/kZk3prERLec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kZk3prERLec.m3u8/kZk3prERLec.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-3/", "duration": 111, "id": "kZk3prERLec", "title": "3 Average of 4 numbers", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-3", "kind": "Video", "video_id": "kZk3prERLec", "keywords": "", "youtube_id": "kZk3prERLec", "readable_id": "2013-sat-practice-6-3"}, "O3HxPDH-s7w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O3HxPDH-s7w.mp4/O3HxPDH-s7w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O3HxPDH-s7w.mp4/O3HxPDH-s7w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O3HxPDH-s7w.m3u8/O3HxPDH-s7w.m3u8"}, "duration": 978, "id": "O3HxPDH-s7w", "title": "Napoleon and the War of the Fourth Coalition", "format": "mp4", "description": "Napoleon takes on Prussia and Russia and wins again", "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/napoleon-and-the-war-of-the-fourth-coalition/", "slug": "napoleon-and-the-war-of-the-fourth-coalition", "kind": "Video", "video_id": "O3HxPDH-s7w", "keywords": "napoleon, prussia, russia", "youtube_id": "O3HxPDH-s7w", "readable_id": "napoleon-and-the-war-of-the-fourth-coalition"}, "pFNwgwqSWDo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pFNwgwqSWDo.mp4/pFNwgwqSWDo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pFNwgwqSWDo.mp4/pFNwgwqSWDo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pFNwgwqSWDo.m3u8/pFNwgwqSWDo.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/collective-learning/bhp-early-evidence-collective-learning/", "duration": 213, "id": "pFNwgwqSWDo", "title": "Early Evidence of Collective Learning", "format": "mp4", "description": "Stone tools, changes in the human skull, and mutant genes: John Shea discusses some of the early evidence we have for collective learning.", "slug": "bhp-early-evidence-collective-learning", "kind": "Video", "video_id": "pFNwgwqSWDo", "keywords": "", "youtube_id": "pFNwgwqSWDo", "readable_id": "bhp-early-evidence-collective-learning"}, "y-IAOPxkNWo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y-IAOPxkNWo.mp4/y-IAOPxkNWo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y-IAOPxkNWo.mp4/y-IAOPxkNWo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y-IAOPxkNWo.m3u8/y-IAOPxkNWo.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/trajans-forum/", "duration": 361, "id": "y-IAOPxkNWo", "title": "The Forum of Trajan", "format": "mp4", "description": "Apollodorus of Damascus, The Forum of Trajan, dedicated 112 C.E.., Rome. \u00a0A conversation with Dr. Beth Harris and Dr. Steven Zucker.", "slug": "trajans-forum", "kind": "Video", "video_id": "y-IAOPxkNWo", "keywords": "art history, Rome, Trajan, ", "youtube_id": "y-IAOPxkNWo", "readable_id": "trajans-forum"}, "uQs100shv-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uQs100shv-A.mp4/uQs100shv-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uQs100shv-A.mp4/uQs100shv-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uQs100shv-A.m3u8/uQs100shv-A.m3u8"}, "duration": 83, "id": "uQs100shv-A", "title": "Number of solutions to linear equations ex 2", "format": "mp4", "description": "", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solutions-linear-equations/number-of-solutions-to-linear-equations-ex-2/", "slug": "number-of-solutions-to-linear-equations-ex-2", "kind": "Video", "video_id": "uQs100shv-A", "keywords": "", "youtube_id": "uQs100shv-A", "readable_id": "number-of-solutions-to-linear-equations-ex-2"}, "esbqpgAD-EM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/esbqpgAD-EM.mp4/esbqpgAD-EM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/esbqpgAD-EM.mp4/esbqpgAD-EM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/esbqpgAD-EM.m3u8/esbqpgAD-EM.m3u8"}, "path": "khan/partner-content/all-star-orchestra/elements-of-music/lesson-6-constant-versus-changing-time-adding-triplets-and-duplets/", "duration": 277, "id": "esbqpgAD-EM", "title": "Lesson 6: Constant versus changing time, adding triplets, and duplets", "format": "mp4", "description": "", "slug": "lesson-6-constant-versus-changing-time-adding-triplets-and-duplets", "kind": "Video", "video_id": "esbqpgAD-EM", "keywords": "", "youtube_id": "esbqpgAD-EM", "readable_id": "lesson-6-constant-versus-changing-time-adding-triplets-and-duplets"}, "FYjCUGK-fT0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FYjCUGK-fT0.mp4/FYjCUGK-fT0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FYjCUGK-fT0.mp4/FYjCUGK-fT0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FYjCUGK-fT0.m3u8/FYjCUGK-fT0.m3u8"}, "duration": 181, "id": "FYjCUGK-fT0", "title": "\"Modern Living\" with Amelia Peck", "format": "mp4", "description": "Met curator Amelia Peck on modern living in Frank Lloyd Wright\u2019s Living room from the Little House, Wayzata, Minnesota.\n\nThe Frank Lloyd Wright Room was originally the living room of the summer residence of Frances W. Little, designed and built between 1912 and 1914 in Wayzata, Minnesota, a suburb of Minneapolis. The room epitomizes Wright's concept of \"organic architecture,\" in which the building, setting, interior, and furnishings are inextricably related. The house is composed of a group of low pavilions interspersed with gardens and terraces, which, in plan, radiate from a central symbolic hearth.\u00a0The Frank Lloyd Wright Room also exemplifies one of Wright's most important contributions to modern architecture: the idea of spatial continuity. Low overhanging roofs and geometric window \"grilles\" with stylized plant motifs once linked the interior visually and spatially to the wooded site overlooking Lake Minnetonka. The living room itself is not merely a single, enclosed volume but a series of horizontal levels surrounded by glass, which allows the interplay of natural light and the rich, earthy tones that Wright employed throughout the room.\n\nThis room achieves tonal harmony through the combination of ocher plaster walls, natural oak trim and flooring, the use of the exterior reddish brown bricks for the fireplace, and leaded windows with an electroplated copper finish. The bold forms of the oak furniture were likewise conceived as an integral part of the composition. The center of the room is empty and furniture groupings enliven the peripheral space. Many of the accessories are similar to those original to the room, and others recall objects that appear in period photographs. The use of Japanese prints and natural flower arrangements are characteristic Wright touches.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also\u00a0visit Find an educator resource.\u00a0\n", "path": "modern-living/", "slug": "modern-living", "kind": "Video", "video_id": "FYjCUGK-fT0", "keywords": "architecture, daily life, family, light, music, nature, room, North America", "youtube_id": "FYjCUGK-fT0", "readable_id": "modern-living"}, "_KyyVhlUDNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_KyyVhlUDNU.mp4/_KyyVhlUDNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_KyyVhlUDNU.mp4/_KyyVhlUDNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_KyyVhlUDNU.m3u8/_KyyVhlUDNU.m3u8"}, "duration": 1028, "id": "_KyyVhlUDNU", "title": "Oxidation and reduction in cellular respiration", "format": "mp4", "description": "Oxidation and reduction in cellular respiration. Reconciling the biology and chemistry definitions of oxidation and reduction.", "path": "khan/science/biology/cellular-molecular-biology/cellular-respiration/oxidation-and-reduction-in-cellular-respiration/", "slug": "oxidation-and-reduction-in-cellular-respiration", "kind": "Video", "video_id": "_KyyVhlUDNU", "keywords": "oxidation, reduction, cellular, respiration", "youtube_id": "_KyyVhlUDNU", "readable_id": "oxidation-and-reduction-in-cellular-respiration"}, "smtrrefmC40": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/smtrrefmC40.mp4/smtrrefmC40.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/smtrrefmC40.mp4/smtrrefmC40.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/smtrrefmC40.m3u8/smtrrefmC40.m3u8"}, "duration": 995, "id": "smtrrefmC40", "title": "2003 AIME II problem 11", "format": "mp4", "description": "A little trigonometry to figure out the area of a triangle", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-11-avi/", "slug": "2003-aime-ii-problem-11-avi", "kind": "Video", "video_id": "smtrrefmC40", "keywords": "law, of, cosines, trigonometry, area", "youtube_id": "smtrrefmC40", "readable_id": "2003-aime-ii-problem-11-avi"}, "-4bTgmmWI9k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-4bTgmmWI9k.mp4/-4bTgmmWI9k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-4bTgmmWI9k.mp4/-4bTgmmWI9k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-4bTgmmWI9k.m3u8/-4bTgmmWI9k.m3u8"}, "duration": 333, "id": "-4bTgmmWI9k", "title": "Negative number practice", "format": "mp4", "description": "", "path": "negative-number-practice/", "slug": "negative-number-practice", "kind": "Video", "video_id": "-4bTgmmWI9k", "keywords": "", "youtube_id": "-4bTgmmWI9k", "readable_id": "negative-number-practice"}, "2BIFnNT69yU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2BIFnNT69yU.mp4/2BIFnNT69yU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2BIFnNT69yU.mp4/2BIFnNT69yU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2BIFnNT69yU.m3u8/2BIFnNT69yU.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/characteristics-of-an-ideal-bureaucracy/", "duration": 277, "id": "2BIFnNT69yU", "title": "Characteristics of an ideal bureaucracy", "format": "mp4", "description": "", "slug": "characteristics-of-an-ideal-bureaucracy", "kind": "Video", "video_id": "2BIFnNT69yU", "keywords": "", "youtube_id": "2BIFnNT69yU", "readable_id": "characteristics-of-an-ideal-bureaucracy"}, "MM0FTzvedH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MM0FTzvedH4.mp4/MM0FTzvedH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MM0FTzvedH4.mp4/MM0FTzvedH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MM0FTzvedH4.m3u8/MM0FTzvedH4.m3u8"}, "duration": 448, "id": "MM0FTzvedH4", "title": "Definite integrals and negative area", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/definite_integrals/definite-integrals-and-negative-area/", "slug": "definite-integrals-and-negative-area", "kind": "Video", "video_id": "MM0FTzvedH4", "keywords": "", "youtube_id": "MM0FTzvedH4", "readable_id": "definite-integrals-and-negative-area"}, "1tvvSUySfls": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1tvvSUySfls.mp4/1tvvSUySfls.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1tvvSUySfls.mp4/1tvvSUySfls.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1tvvSUySfls.m3u8/1tvvSUySfls.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/introduction-to-electrolysis/", "duration": 415, "id": "1tvvSUySfls", "title": "Introduction to electrolysis", "format": "mp4", "description": "", "slug": "introduction-to-electrolysis", "kind": "Video", "video_id": "1tvvSUySfls", "keywords": "", "youtube_id": "1tvvSUySfls", "readable_id": "introduction-to-electrolysis"}, "fpgvjMKCyAA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fpgvjMKCyAA.mp4/fpgvjMKCyAA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fpgvjMKCyAA.mp4/fpgvjMKCyAA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fpgvjMKCyAA.m3u8/fpgvjMKCyAA.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/bronzino-portrait-of-eleonora-di-toledo-with-her-son-giovanni-1544-1545/", "duration": 173, "id": "fpgvjMKCyAA", "title": "Bronzino, Portrait of Eleonora of Toledo with her son Giovanni", "format": "mp4", "description": "Bronzino, Portrait of Eleonora di Toledo with her son Giovanni, 1544-1545, oil on panel, 115 x 96 cm (Galleria degli Uffizi)", "slug": "bronzino-portrait-of-eleonora-di-toledo-with-her-son-giovanni-1544-1545", "kind": "Video", "video_id": "fpgvjMKCyAA", "keywords": "Bronzino, Eleonora, GAP, Uffizi, Smarthistory, Portrait, Medici, Florence, Khan Academy, art history, Google Art Project, OER", "youtube_id": "fpgvjMKCyAA", "readable_id": "bronzino-portrait-of-eleonora-di-toledo-with-her-son-giovanni-1544-1545"}, "6ycEasF48zI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6ycEasF48zI.mp4/6ycEasF48zI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6ycEasF48zI.mp4/6ycEasF48zI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6ycEasF48zI.m3u8/6ycEasF48zI.m3u8"}, "duration": 225, "id": "6ycEasF48zI", "title": "Relation between nominal and real returns and inflation", "format": "mp4", "description": "Relation between nominal and real returns and inflation", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/real-nominal-return-tut/relation-between-nominal-and-real-returns-and-inflation/", "slug": "relation-between-nominal-and-real-returns-and-inflation", "kind": "Video", "video_id": "6ycEasF48zI", "keywords": "finance, real, return, inflation, nominal", "youtube_id": "6ycEasF48zI", "readable_id": "relation-between-nominal-and-real-returns-and-inflation"}, "JUouea9XoF8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JUouea9XoF8.mp4/JUouea9XoF8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JUouea9XoF8.mp4/JUouea9XoF8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JUouea9XoF8.m3u8/JUouea9XoF8.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/integrating-function-sums/", "duration": 406, "id": "JUouea9XoF8", "title": "Integrating sums of functions", "format": "mp4", "description": "", "slug": "integrating-function-sums", "kind": "Video", "video_id": "JUouea9XoF8", "keywords": "", "youtube_id": "JUouea9XoF8", "readable_id": "integrating-function-sums"}, "QcK7n-EqnQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QcK7n-EqnQU.mp4/QcK7n-EqnQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QcK7n-EqnQU.mp4/QcK7n-EqnQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QcK7n-EqnQU.m3u8/QcK7n-EqnQU.m3u8"}, "duration": 381, "id": "QcK7n-EqnQU", "title": "Stored elastic energy in large and middle sized arteries", "format": "mp4", "description": "See how arteries behave like sling shots, shooting blood (not rocks) onwards! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/arterial-stiffness/stored-elastic-energy-in-large-and-middle-sized-arteries/", "slug": "stored-elastic-energy-in-large-and-middle-sized-arteries", "kind": "Video", "video_id": "QcK7n-EqnQU", "keywords": "", "youtube_id": "QcK7n-EqnQU", "readable_id": "stored-elastic-energy-in-large-and-middle-sized-arteries"}, "UgE2GIQwUCw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UgE2GIQwUCw.mp4/UgE2GIQwUCw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UgE2GIQwUCw.mp4/UgE2GIQwUCw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UgE2GIQwUCw.m3u8/UgE2GIQwUCw.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/speed-of-sound/", "duration": 225, "id": "UgE2GIQwUCw", "title": "Speed of Sound", "format": "mp4", "description": "", "slug": "speed-of-sound", "kind": "Video", "video_id": "UgE2GIQwUCw", "keywords": "", "youtube_id": "UgE2GIQwUCw", "readable_id": "speed-of-sound"}, "EowIec7Y8HM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EowIec7Y8HM.mp4/EowIec7Y8HM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EowIec7Y8HM.mp4/EowIec7Y8HM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EowIec7Y8HM.m3u8/EowIec7Y8HM.m3u8"}, "duration": 204, "id": "EowIec7Y8HM", "title": "Type 1 errors", "format": "mp4", "description": "Type 1 Errors", "path": "khan/math/probability/statistics-inferential/hypothesis-testing/type-1-errors/", "slug": "type-1-errors", "kind": "Video", "video_id": "EowIec7Y8HM", "keywords": "Type, Errors, hypothesis, testing", "youtube_id": "EowIec7Y8HM", "readable_id": "type-1-errors"}, "um2nlNVM_YM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/um2nlNVM_YM.mp4/um2nlNVM_YM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/um2nlNVM_YM.mp4/um2nlNVM_YM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/um2nlNVM_YM.m3u8/um2nlNVM_YM.m3u8"}, "duration": 514, "id": "um2nlNVM_YM", "title": "Properties and patterns for multiplication", "format": "mp4", "description": "Change the order of numbers or decompose numbers to simplify multiplication problems. \u00a0\u00a0", "path": "properties-and-patterns-for-multiplication/", "slug": "properties-and-patterns-for-multiplication", "kind": "Video", "video_id": "um2nlNVM_YM", "keywords": "", "youtube_id": "um2nlNVM_YM", "readable_id": "properties-and-patterns-for-multiplication"}, "McH0dsTOg2E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/McH0dsTOg2E.mp4/McH0dsTOg2E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/McH0dsTOg2E.mp4/McH0dsTOg2E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/McH0dsTOg2E.m3u8/McH0dsTOg2E.m3u8"}, "path": "khan/science/discoveries-projects/lego-robotics/lego-intro/lego-robots-anything-is-possible/", "duration": 97, "id": "McH0dsTOg2E", "title": "Anything is possible!", "format": "mp4", "description": "Anything robots can do, lego robots can do!", "slug": "lego-robots-anything-is-possible", "kind": "Video", "video_id": "McH0dsTOg2E", "keywords": "", "youtube_id": "McH0dsTOg2E", "readable_id": "lego-robots-anything-is-possible"}, "0UgQ0B_0hAg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0UgQ0B_0hAg.mp4/0UgQ0B_0hAg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0UgQ0B_0hAg.mp4/0UgQ0B_0hAg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0UgQ0B_0hAg.m3u8/0UgQ0B_0hAg.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/1944-allies-advance-further-in-europe/", "duration": 385, "id": "0UgQ0B_0hAg", "title": "1944 - Allies advance further in Europe", "format": "mp4", "description": "As we go into 1944, we see the allies land at Normandy, liberate France and face Germany in their last major counteroffensive at the Battle of the Bulge. On the Eastern Front, the Soviets end Siege of Leningrad and begin to push through Poland and Romania. In the south, Allies land in southern France and take Rome.", "slug": "1944-allies-advance-further-in-europe", "kind": "Video", "video_id": "0UgQ0B_0hAg", "keywords": "", "youtube_id": "0UgQ0B_0hAg", "readable_id": "1944-allies-advance-further-in-europe"}, "gfBcM3uvWfs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gfBcM3uvWfs.mp4/gfBcM3uvWfs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gfBcM3uvWfs.mp4/gfBcM3uvWfs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gfBcM3uvWfs.m3u8/gfBcM3uvWfs.m3u8"}, "duration": 954, "id": "gfBcM3uvWfs", "title": "Molecular and empirical formulas", "format": "mp4", "description": "Introduction to molecular and empirical formulas. Calculating molecular mass.", "path": "khan/test-prep/mcat/physical-processes/stoichiometry/molecular-and-empirical-formulas/", "slug": "molecular-and-empirical-formulas", "kind": "Video", "video_id": "gfBcM3uvWfs", "keywords": "molecular, empirical, structural, formulas, chemistry, science", "youtube_id": "gfBcM3uvWfs", "readable_id": "molecular-and-empirical-formulas"}, "xYOK-yzUWSI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xYOK-yzUWSI.mp4/xYOK-yzUWSI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xYOK-yzUWSI.mp4/xYOK-yzUWSI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xYOK-yzUWSI.m3u8/xYOK-yzUWSI.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/genetic-mutations/the-different-types-of-mutations/", "duration": 352, "id": "xYOK-yzUWSI", "title": "The different types of mutations", "format": "mp4", "description": "", "slug": "the-different-types-of-mutations", "kind": "Video", "video_id": "xYOK-yzUWSI", "keywords": "MCAT", "youtube_id": "xYOK-yzUWSI", "readable_id": "the-different-types-of-mutations"}, "MCL1qhlSq1Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MCL1qhlSq1Y.mp4/MCL1qhlSq1Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MCL1qhlSq1Y.mp4/MCL1qhlSq1Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MCL1qhlSq1Y.m3u8/MCL1qhlSq1Y.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/moma-nolde-youngcouple/", "duration": 136, "id": "MCL1qhlSq1Y", "title": "Emil Nolde, \"Young Couple,\" 1913", "format": "mp4", "description": "To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art.", "slug": "moma-nolde-youngcouple", "kind": "Video", "video_id": "MCL1qhlSq1Y", "keywords": "", "youtube_id": "MCL1qhlSq1Y", "readable_id": "moma-nolde-youngcouple"}, "Hfz1bwK5C4o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hfz1bwK5C4o.mp4/Hfz1bwK5C4o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hfz1bwK5C4o.mp4/Hfz1bwK5C4o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hfz1bwK5C4o.m3u8/Hfz1bwK5C4o.m3u8"}, "duration": 538, "id": "Hfz1bwK5C4o", "title": "Circular flow of income and expenditures", "format": "mp4", "description": "Understanding the flow of resources in the simplest possible economy", "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/circular-econ-gdp-tutorial/circular-flow-of-income-and-expenditures/", "slug": "circular-flow-of-income-and-expenditures", "kind": "Video", "video_id": "Hfz1bwK5C4o", "keywords": "macroeconomics", "youtube_id": "Hfz1bwK5C4o", "readable_id": "circular-flow-of-income-and-expenditures"}, "MS7x2hDEhrw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MS7x2hDEhrw.mp4/MS7x2hDEhrw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MS7x2hDEhrw.mp4/MS7x2hDEhrw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MS7x2hDEhrw.m3u8/MS7x2hDEhrw.m3u8"}, "duration": 628, "id": "MS7x2hDEhrw", "title": "Biodiversity flourishes in Phanerozoic eon", "format": "mp4", "description": "Cambrian explosion and biodiversity in the Phanerozoic Eon", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/history-life-earth-tutorial/biodiversity-flourishes-in-phanerozoic-eon/", "slug": "biodiversity-flourishes-in-phanerozoic-eon", "kind": "Video", "video_id": "MS7x2hDEhrw", "keywords": "big, history, cambrian, explosion, biodiversity, phanerozoic, eon, era, paleozoic", "youtube_id": "MS7x2hDEhrw", "readable_id": "biodiversity-flourishes-in-phanerozoic-eon"}, "QxNqWZPzsGw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QxNqWZPzsGw.mp4/QxNqWZPzsGw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QxNqWZPzsGw.mp4/QxNqWZPzsGw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QxNqWZPzsGw.m3u8/QxNqWZPzsGw.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/leonardo-da-vinci/leonardo-da-vinci-adoration-of-the-magi-1481-mov/", "duration": 276, "id": "QxNqWZPzsGw", "title": "Leonardo, Adoration of the Magi", "format": "mp4", "description": "Leonardo da Vinci, Adoration of the Magi, 1481, oil on panel (Galleria degli Uffizi, Florence) http://smarthistory.khanacademy.org/leonardo-adoration-of-the-magi.html", "slug": "leonardo-da-vinci-adoration-of-the-magi-1481-mov", "kind": "Video", "video_id": "QxNqWZPzsGw", "keywords": "Leonardo, da Vinci, Adoration of the Magi, 1481, oil on panel, Galleria degli Uffizi, Florence, Uffizi, High Renaissance, unfinished, under painting", "youtube_id": "QxNqWZPzsGw", "readable_id": "leonardo-da-vinci-adoration-of-the-magi-1481-mov"}, "eg4r1ev0xYs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eg4r1ev0xYs.mp4/eg4r1ev0xYs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eg4r1ev0xYs.mp4/eg4r1ev0xYs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eg4r1ev0xYs.m3u8/eg4r1ev0xYs.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-3/", "duration": 747, "id": "eg4r1ev0xYs", "title": "GMAT: Data sufficiency 3", "format": "mp4", "description": "10-15, pgs. 278-279", "slug": "gmat-data-sufficiency-3", "kind": "Video", "video_id": "eg4r1ev0xYs", "keywords": "gmat, data, sufficiency", "youtube_id": "eg4r1ev0xYs", "readable_id": "gmat-data-sufficiency-3"}, "-JTw7gNwT6Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-JTw7gNwT6Y.mp4/-JTw7gNwT6Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-JTw7gNwT6Y.mp4/-JTw7gNwT6Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-JTw7gNwT6Y.m3u8/-JTw7gNwT6Y.m3u8"}, "duration": 448, "id": "-JTw7gNwT6Y", "title": "Actual CPI-U basket of goods", "format": "mp4", "description": "Exploring the actual weightings for the CPI-U basket of goods", "path": "khan/economics-finance-domain/macroeconomics/inflation-topic/cost-of-living-tutorial/actual-cpi-u-basket-of-goods/", "slug": "actual-cpi-u-basket-of-goods", "kind": "Video", "video_id": "-JTw7gNwT6Y", "keywords": "macroeconomics, inflation", "youtube_id": "-JTw7gNwT6Y", "readable_id": "actual-cpi-u-basket-of-goods"}, "j24uh8cZ3wA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j24uh8cZ3wA.mp4/j24uh8cZ3wA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j24uh8cZ3wA.mp4/j24uh8cZ3wA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j24uh8cZ3wA.m3u8/j24uh8cZ3wA.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/american-art-wwii/edward-hopper-nighthawks-1942/", "duration": 288, "id": "j24uh8cZ3wA", "title": "Hopper, Nighthawks", "format": "mp4", "description": "Edward Hopper, Nighthawks, 1942, oil on canvas, 84.1 x 152.4 cm / 33-1/8 x 60 inches (The Art Institut of Chicago) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "edward-hopper-nighthawks-1942", "kind": "Video", "video_id": "j24uh8cZ3wA", "keywords": "Edward Hopper, Hopper, Nighthawks, 1942, smarthistory, art history, Google Art Project, OER", "youtube_id": "j24uh8cZ3wA", "readable_id": "edward-hopper-nighthawks-1942"}, "QR2vxfwiHAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QR2vxfwiHAU.mp4/QR2vxfwiHAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QR2vxfwiHAU.mp4/QR2vxfwiHAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QR2vxfwiHAU.m3u8/QR2vxfwiHAU.m3u8"}, "duration": 829, "id": "QR2vxfwiHAU", "title": "Foci of an ellipse", "format": "mp4", "description": "Calculating the foci (or focuses) of an Ellipse.", "path": "khan/math/algebra2/conics_precalc/ellipses-precalc/foci-of-an-ellipse/", "slug": "foci-of-an-ellipse", "kind": "Video", "video_id": "QR2vxfwiHAU", "keywords": "foci, focus, ellipse, conic, section", "youtube_id": "QR2vxfwiHAU", "readable_id": "foci-of-an-ellipse"}, "vUxYPrznFLw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vUxYPrznFLw.mp4/vUxYPrznFLw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vUxYPrznFLw.mp4/vUxYPrznFLw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vUxYPrznFLw.m3u8/vUxYPrznFLw.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/alexej-von-jawlensky-young-girl-in-a-flowered-hat-1910/", "duration": 261, "id": "vUxYPrznFLw", "title": "Jawlensky, Young Girl in a Flowered Hat", "format": "mp4", "description": "Alexej von Jawlensky, Young Girl in a Flowered Hat, 1910, oil on cardboard (Albertina, Vienna)", "slug": "alexej-von-jawlensky-young-girl-in-a-flowered-hat-1910", "kind": "Video", "video_id": "vUxYPrznFLw", "keywords": "Jawlensky, Hat, Young Girl, Flowered Hat, GAP Google Art Project, Art History, Smarthistory, Khan Academy, OER, Albertina, Vienna, Vien, 1910, Expressionism, Fauvism, Blue Four, Modernism, Painting, Russian, Munich", "youtube_id": "vUxYPrznFLw", "readable_id": "alexej-von-jawlensky-young-girl-in-a-flowered-hat-1910"}, "xKNX8BUWR0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xKNX8BUWR0g.mp4/xKNX8BUWR0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xKNX8BUWR0g.mp4/xKNX8BUWR0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xKNX8BUWR0g.m3u8/xKNX8BUWR0g.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/surjective-onto-and-injective-one-to-one-functions/", "duration": 571, "id": "xKNX8BUWR0g", "title": "Surjective (onto) and injective (one-to-one) functions", "format": "mp4", "description": "Introduction to surjective and injective functions", "slug": "surjective-onto-and-injective-one-to-one-functions", "kind": "Video", "video_id": "xKNX8BUWR0g", "keywords": "surjective, onto, injective, one-to-one, functions", "youtube_id": "xKNX8BUWR0g", "readable_id": "surjective-onto-and-injective-one-to-one-functions"}, "LTuGQy4rmmo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LTuGQy4rmmo.mp4/LTuGQy4rmmo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LTuGQy4rmmo.mp4/LTuGQy4rmmo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LTuGQy4rmmo.m3u8/LTuGQy4rmmo.m3u8"}, "duration": 647, "id": "LTuGQy4rmmo", "title": "Magnetism 3", "format": "mp4", "description": "Whats happens when a speeding proton goes through a magnetic field", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-3/", "slug": "magnetism-3", "kind": "Video", "video_id": "LTuGQy4rmmo", "keywords": "physics, magnetic, field, cross, product", "youtube_id": "LTuGQy4rmmo", "readable_id": "magnetism-3"}, "15s6B7K9paA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/15s6B7K9paA.mp4/15s6B7K9paA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/15s6B7K9paA.mp4/15s6B7K9paA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/15s6B7K9paA.m3u8/15s6B7K9paA.m3u8"}, "duration": 230, "id": "15s6B7K9paA", "title": "Absolute value equation with no solution", "format": "mp4", "description": "", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute-value-equation-with-no-solution/", "slug": "absolute-value-equation-with-no-solution", "kind": "Video", "video_id": "15s6B7K9paA", "keywords": "", "youtube_id": "15s6B7K9paA", "readable_id": "absolute-value-equation-with-no-solution"}, "X58FV7MwdbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X58FV7MwdbY.mp4/X58FV7MwdbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X58FV7MwdbY.mp4/X58FV7MwdbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X58FV7MwdbY.m3u8/X58FV7MwdbY.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-4/", "duration": 611, "id": "X58FV7MwdbY", "title": "GMAT: Math 4", "format": "mp4", "description": "20-23, pgs. 154-155", "slug": "gmat-math-4", "kind": "Video", "video_id": "X58FV7MwdbY", "keywords": "GMAT, math, problem, solving", "youtube_id": "X58FV7MwdbY", "readable_id": "gmat-math-4"}, "cmi8EnJQA84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cmi8EnJQA84.mp4/cmi8EnJQA84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cmi8EnJQA84.mp4/cmi8EnJQA84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cmi8EnJQA84.m3u8/cmi8EnJQA84.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/copy-of-balancing-chemical-equations/balancing-another-combustion-reaction/", "duration": 298, "id": "cmi8EnJQA84", "title": "Balancing another combustion reaction", "format": "mp4", "description": "", "slug": "balancing-another-combustion-reaction", "kind": "Video", "video_id": "cmi8EnJQA84", "keywords": "", "youtube_id": "cmi8EnJQA84", "readable_id": "balancing-another-combustion-reaction"}, "8XMXDUa8dcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8XMXDUa8dcY.mp4/8XMXDUa8dcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8XMXDUa8dcY.mp4/8XMXDUa8dcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8XMXDUa8dcY.m3u8/8XMXDUa8dcY.m3u8"}, "duration": 596, "id": "8XMXDUa8dcY", "title": "Chemistry 101: The nucleus", "format": "mp4", "description": "Hank does his best to convince us that chemistry is not torture, but is instead the amazing and beautiful science of stuff. Chemistry can tell us how three tiny particles - the proton, neutron and electron - come together in trillions of combinations to form ... everything. In this inaugural episode of Crash Course Chemistry, we start out with one of the biggest ideas in chemistry ever - stuff is made from atoms. More specifically, we learn about the properties of the nucleus and why they are important to defining what an atom actually is.\nWriter: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem01-the-nucleus/", "slug": "chem01-the-nucleus", "kind": "Video", "video_id": "8XMXDUa8dcY", "keywords": "", "youtube_id": "8XMXDUa8dcY", "readable_id": "chem01-the-nucleus"}, "mx_JUo_s-Ok": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mx_JUo_s-Ok.mp4/mx_JUo_s-Ok.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mx_JUo_s-Ok.mp4/mx_JUo_s-Ok.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mx_JUo_s-Ok.m3u8/mx_JUo_s-Ok.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-11-function-equaling-zero/", "duration": 100, "id": "mx_JUo_s-Ok", "title": "11 Function equaling zero", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-11-function-equaling-zero", "kind": "Video", "video_id": "mx_JUo_s-Ok", "keywords": "", "youtube_id": "mx_JUo_s-Ok", "readable_id": "sat-11-function-equaling-zero"}, "7b6LRebCgb4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7b6LRebCgb4.mp4/7b6LRebCgb4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7b6LRebCgb4.mp4/7b6LRebCgb4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7b6LRebCgb4.m3u8/7b6LRebCgb4.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/rn-circulatory-system/arteries-vs-veins-what-s-the-difference/", "duration": 669, "id": "7b6LRebCgb4", "title": "Arteries vs. veins - what's the difference?", "format": "mp4", "description": "Learn some important differences between arteries (high pressure/low volume) and veins (low pressure/high volume). Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "arteries-vs-veins-what-s-the-difference", "kind": "Video", "video_id": "7b6LRebCgb4", "keywords": "", "youtube_id": "7b6LRebCgb4", "readable_id": "arteries-vs-veins-what-s-the-difference"}, "1WOrgrIcQZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1WOrgrIcQZU.mp4/1WOrgrIcQZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1WOrgrIcQZU.mp4/1WOrgrIcQZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1WOrgrIcQZU.m3u8/1WOrgrIcQZU.m3u8"}, "duration": 438, "id": "1WOrgrIcQZU", "title": "Normal force and contact force", "format": "mp4", "description": "The force that keeps a block of ice from falling towards the center of the earth", "path": "khan/test-prep/mcat/physical-processes/normal-forces/normal-force-and-contact-force/", "slug": "normal-force-and-contact-force", "kind": "Video", "video_id": "1WOrgrIcQZU", "keywords": "normal, force, contact, physics", "youtube_id": "1WOrgrIcQZU", "readable_id": "normal-force-and-contact-force"}, "FpI2PhJn86s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FpI2PhJn86s.mp4/FpI2PhJn86s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FpI2PhJn86s.mp4/FpI2PhJn86s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FpI2PhJn86s.m3u8/FpI2PhJn86s.m3u8"}, "duration": 158, "id": "FpI2PhJn86s", "title": "Glassmaking technique: cameo glass", "format": "mp4", "description": "Ancient Roman cameo glass layers different colors of glass. The top layer is partly cut away to create a design of contrasting color (footage from the Corning Museum of Glass). Love art? Follow us on Google+", "path": "glassmaking-technique-cameo-glass/", "slug": "glassmaking-technique-cameo-glass", "kind": "Video", "video_id": "FpI2PhJn86s", "keywords": "", "youtube_id": "FpI2PhJn86s", "readable_id": "glassmaking-technique-cameo-glass"}, "jA1NyCE4M2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jA1NyCE4M2g.mp4/jA1NyCE4M2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jA1NyCE4M2g.mp4/jA1NyCE4M2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jA1NyCE4M2g.m3u8/jA1NyCE4M2g.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/autonomic-nervous-system/", "duration": 684, "id": "jA1NyCE4M2g", "title": "Autonomic nervous system", "format": "mp4", "description": "", "slug": "autonomic-nervous-system", "kind": "Video", "video_id": "jA1NyCE4M2g", "keywords": "MCAT", "youtube_id": "jA1NyCE4M2g", "readable_id": "autonomic-nervous-system"}, "KhyDlw99aSY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KhyDlw99aSY.mp4/KhyDlw99aSY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KhyDlw99aSY.mp4/KhyDlw99aSY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KhyDlw99aSY.m3u8/KhyDlw99aSY.m3u8"}, "duration": 200, "id": "KhyDlw99aSY", "title": "Camera wiring update", "format": "mp4", "description": "This video shows you how to reduce the complexity of your Bit-zee while improving the speed of your Bit-zee digital camera.", "path": "khan/science/discoveries-projects/robots/bit-zee/camera-wiring-update/", "slug": "camera-wiring-update", "kind": "Video", "video_id": "KhyDlw99aSY", "keywords": "Camera, update, bit-zee, wiring, improve speed, make, diy, hack", "youtube_id": "KhyDlw99aSY", "readable_id": "camera-wiring-update"}, "cbkTTluHaTw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cbkTTluHaTw.mp4/cbkTTluHaTw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cbkTTluHaTw.mp4/cbkTTluHaTw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cbkTTluHaTw.m3u8/cbkTTluHaTw.m3u8"}, "duration": 424, "id": "cbkTTluHaTw", "title": "Adequacy of the lateral cervical spine X-ray", "format": "mp4", "description": "Dr. Mahadevan from Stanford School of Medicine explains adequacy for lateral cervical (neck) x-rays", "path": "khan/science/health-and-medicine/healthcare-misc/adequacy-of-the-lateral-cervical-spine-x-ray/", "slug": "adequacy-of-the-lateral-cervical-spine-x-ray", "kind": "Video", "video_id": "cbkTTluHaTw", "keywords": "medicine, x-rays", "youtube_id": "cbkTTluHaTw", "readable_id": "adequacy-of-the-lateral-cervical-spine-x-ray"}, "M7eAyjGZd-4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M7eAyjGZd-4.mp4/M7eAyjGZd-4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M7eAyjGZd-4.mp4/M7eAyjGZd-4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M7eAyjGZd-4.m3u8/M7eAyjGZd-4.m3u8"}, "duration": 448, "id": "M7eAyjGZd-4", "title": "Period trend for electron affinity", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/period-trend-for-electron-affinity/", "slug": "period-trend-for-electron-affinity", "kind": "Video", "video_id": "M7eAyjGZd-4", "keywords": "", "youtube_id": "M7eAyjGZd-4", "readable_id": "period-trend-for-electron-affinity"}, "jl6S0wdeWk4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jl6S0wdeWk4.mp4/jl6S0wdeWk4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jl6S0wdeWk4.mp4/jl6S0wdeWk4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jl6S0wdeWk4.m3u8/jl6S0wdeWk4.m3u8"}, "path": "khan/test-prep/ap-art-history/south-east-southeast-asia/beliefs-made-visible-ii/", "duration": 1224, "id": "jl6S0wdeWk4", "title": "Beliefs made visible: Buddhist art in South Asia", "format": "mp4", "description": "Explore Buddhism through clips of significant sites in South Asia and interviews with members of the Bay Area South Asian community. Learn more about Buddhism on the Asian Art Museum's education website.\u00a0", "slug": "beliefs-made-visible-ii", "kind": "Video", "video_id": "jl6S0wdeWk4", "keywords": "", "youtube_id": "jl6S0wdeWk4", "readable_id": "beliefs-made-visible-ii"}, "WHOwbEu7sWI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WHOwbEu7sWI.mp4/WHOwbEu7sWI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WHOwbEu7sWI.mp4/WHOwbEu7sWI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WHOwbEu7sWI.m3u8/WHOwbEu7sWI.m3u8"}, "duration": 613, "id": "WHOwbEu7sWI", "title": "Common Core Standards: Negative numbers", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the standards for negative numbers.", "path": "ccc-negative-numbers/", "slug": "ccc-negative-numbers", "kind": "Video", "video_id": "WHOwbEu7sWI", "keywords": "", "youtube_id": "WHOwbEu7sWI", "readable_id": "ccc-negative-numbers"}, "ryvh7I9rBeg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ryvh7I9rBeg.mp4/ryvh7I9rBeg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ryvh7I9rBeg.mp4/ryvh7I9rBeg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ryvh7I9rBeg.m3u8/ryvh7I9rBeg.m3u8"}, "duration": 155, "id": "ryvh7I9rBeg", "title": "Room: 1810-1840", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Greg Sullivan explores the period 1810-1840.\n\n-\u00a0Edward Hodges Baily, The First Duke of Wellington (after Joseph Nollekens), 1828\u201330\n- JMW\u00a0Turner, The Field of Waterloo, exhibited 1818\n-\u00a0John Gibson, Hylas Surprised by the Naiades, 1827\u201336", "path": "video-1810-1840/", "slug": "video-1810-1840", "kind": "Video", "video_id": "ryvh7I9rBeg", "keywords": "Tate, ", "youtube_id": "ryvh7I9rBeg", "readable_id": "video-1810-1840"}, "FD-A0MhYc7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FD-A0MhYc7Y.mp4/FD-A0MhYc7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FD-A0MhYc7Y.mp4/FD-A0MhYc7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FD-A0MhYc7Y.m3u8/FD-A0MhYc7Y.m3u8"}, "path": "khan/test-prep/mcat/cells/cellular-development/cellular-movement/", "duration": 454, "id": "FD-A0MhYc7Y", "title": "Cellular movement", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "cellular-movement", "kind": "Video", "video_id": "FD-A0MhYc7Y", "keywords": "", "youtube_id": "FD-A0MhYc7Y", "readable_id": "cellular-movement"}, "OCwLwaAQlMA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OCwLwaAQlMA.mp4/OCwLwaAQlMA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OCwLwaAQlMA.mp4/OCwLwaAQlMA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OCwLwaAQlMA.m3u8/OCwLwaAQlMA.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/mult-div-word-problems/comparing-with-multiplication-exercise/", "duration": 137, "id": "OCwLwaAQlMA", "title": "Comparing with multiplication: basic exercises", "format": "mp4", "description": "If you think about it, multiplying is just another way of comparing numbers. How do we compare 4 and 20 using multiplication? Let's find out together.", "slug": "comparing-with-multiplication-exercise", "kind": "Video", "video_id": "OCwLwaAQlMA", "keywords": "", "youtube_id": "OCwLwaAQlMA", "readable_id": "comparing-with-multiplication-exercise"}, "6i3EmBNYptk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6i3EmBNYptk.mp4/6i3EmBNYptk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6i3EmBNYptk.mp4/6i3EmBNYptk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6i3EmBNYptk.m3u8/6i3EmBNYptk.m3u8"}, "duration": 63, "id": "6i3EmBNYptk", "title": "What was dinosaur skin like?", "format": "mp4", "description": "Reptile skin is a complex system of scales separated by flexible joints. In birds, the only living group of dinosaurs, the scales are modified into feathers, except around the feet and beak. The hind feet of extinct dinosaurs probably looked like a bird's foot, but what about the rest of their body? Rare, non-avian dinosaur \"mummies\" provide intriguing direct evidence. One of these is the AMNH Edmontosaurus \"mummy\", one of the greatest dinosaur fossils ever collected. Impressions of skin are preserved over almost the entire body. Around the base of the limbs, on the neck, and at other joints, the skin is folded, like that surrounding the joints of an elephant, presumably to allow flexibility during movement. Classroom activity: Fossilized Fashion", "path": "dinosaur-skin/", "slug": "dinosaur-skin", "kind": "Video", "video_id": "6i3EmBNYptk", "keywords": "", "youtube_id": "6i3EmBNYptk", "readable_id": "dinosaur-skin"}, "wOw7LWCW_Zk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wOw7LWCW_Zk.mp4/wOw7LWCW_Zk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wOw7LWCW_Zk.mp4/wOw7LWCW_Zk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wOw7LWCW_Zk.m3u8/wOw7LWCW_Zk.m3u8"}, "path": "khan/test-prep/mcat/behavior/normative-and-non-normative-behavior/aspects-of-collective-behavior/", "duration": 387, "id": "wOw7LWCW_Zk", "title": "Aspects of Collective Behavior: Fads, Mass Hysteria, and Riots", "format": "mp4", "description": "", "slug": "aspects-of-collective-behavior", "kind": "Video", "video_id": "wOw7LWCW_Zk", "keywords": "", "youtube_id": "wOw7LWCW_Zk", "readable_id": "aspects-of-collective-behavior"}, "o5-T52bh-eQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o5-T52bh-eQ.mp4/o5-T52bh-eQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o5-T52bh-eQ.mp4/o5-T52bh-eQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o5-T52bh-eQ.m3u8/o5-T52bh-eQ.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/wealth-vs-income/", "duration": 272, "id": "o5-T52bh-eQ", "title": "Difference between wealth and income", "format": "mp4", "description": "", "slug": "wealth-vs-income", "kind": "Video", "video_id": "o5-T52bh-eQ", "keywords": "", "youtube_id": "o5-T52bh-eQ", "readable_id": "wealth-vs-income"}, "iK0y39rjBgQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iK0y39rjBgQ.mp4/iK0y39rjBgQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iK0y39rjBgQ.mp4/iK0y39rjBgQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iK0y39rjBgQ.m3u8/iK0y39rjBgQ.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/place_value/place-value-3/", "duration": 320, "id": "iK0y39rjBgQ", "title": "Writing a number in expanded form", "format": "mp4", "description": "What is the \"expanded\" form of a number? Take a big number and break it down to its ones, tens, hundreds, and other place values and you have expanded form. Not sure what we mean? No worries. We'll explain.", "slug": "place-value-3", "kind": "Video", "video_id": "iK0y39rjBgQ", "keywords": "U01_L1_T1_we3, Place, Value", "youtube_id": "iK0y39rjBgQ", "readable_id": "place-value-3"}, "xiIQQNufFuU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xiIQQNufFuU.mp4/xiIQQNufFuU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xiIQQNufFuU.mp4/xiIQQNufFuU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xiIQQNufFuU.m3u8/xiIQQNufFuU.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/x-and-y-intercepts/finding-x-intercept-of-a-line/", "duration": 103, "id": "xiIQQNufFuU", "title": "Finding the x-intercept of a line", "format": "mp4", "description": "", "slug": "finding-x-intercept-of-a-line", "kind": "Video", "video_id": "xiIQQNufFuU", "keywords": "", "youtube_id": "xiIQQNufFuU", "readable_id": "finding-x-intercept-of-a-line"}, "6OFwfxmhtE8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6OFwfxmhtE8.mp4/6OFwfxmhtE8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6OFwfxmhtE8.mp4/6OFwfxmhtE8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6OFwfxmhtE8.m3u8/6OFwfxmhtE8.m3u8"}, "duration": 242, "id": "6OFwfxmhtE8", "title": "Solving for a fractional exponent", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/solving-for-a-fractional-exponent/", "slug": "solving-for-a-fractional-exponent", "kind": "Video", "video_id": "6OFwfxmhtE8", "keywords": "", "youtube_id": "6OFwfxmhtE8", "readable_id": "solving-for-a-fractional-exponent"}, "uA3m8vbd2wc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uA3m8vbd2wc.mp4/uA3m8vbd2wc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uA3m8vbd2wc.mp4/uA3m8vbd2wc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uA3m8vbd2wc.m3u8/uA3m8vbd2wc.m3u8"}, "duration": 427, "id": "uA3m8vbd2wc", "title": "Early train word problem", "format": "mp4", "description": "Fun word problem that is almost a brain teaser.", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/early-train-word-problem/", "slug": "early-train-word-problem", "kind": "Video", "video_id": "uA3m8vbd2wc", "keywords": "algebra, word, problem, brain, teaser", "youtube_id": "uA3m8vbd2wc", "readable_id": "early-train-word-problem"}, "wdAgEzdkFZI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wdAgEzdkFZI.mp4/wdAgEzdkFZI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wdAgEzdkFZI.mp4/wdAgEzdkFZI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wdAgEzdkFZI.m3u8/wdAgEzdkFZI.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/function-average-value/average-acceleration-over-interval/", "duration": 307, "id": "wdAgEzdkFZI", "title": "Average acceleration over interval", "format": "mp4", "description": "", "slug": "average-acceleration-over-interval", "kind": "Video", "video_id": "wdAgEzdkFZI", "keywords": "", "youtube_id": "wdAgEzdkFZI", "readable_id": "average-acceleration-over-interval"}, "AjYil74WrVo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AjYil74WrVo.mp4/AjYil74WrVo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AjYil74WrVo.mp4/AjYil74WrVo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AjYil74WrVo.m3u8/AjYil74WrVo.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/percent-word-problems/", "duration": 169, "id": "AjYil74WrVo", "title": "Percent word problem example 2", "format": "mp4", "description": "It's nice to practice conversion problems, but how about applying our new knowledge of percentages to a real life problem like recycling? Hint: don't forget your long division!", "slug": "percent-word-problems", "kind": "Video", "video_id": "AjYil74WrVo", "keywords": "", "youtube_id": "AjYil74WrVo", "readable_id": "percent-word-problems"}, "tNZrKDq9Iqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tNZrKDq9Iqc.mp4/tNZrKDq9Iqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tNZrKDq9Iqc.mp4/tNZrKDq9Iqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tNZrKDq9Iqc.m3u8/tNZrKDq9Iqc.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-18/", "duration": 344, "id": "tNZrKDq9Iqc", "title": "18 Area of rectangle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-18", "kind": "Video", "video_id": "tNZrKDq9Iqc", "keywords": "", "youtube_id": "tNZrKDq9Iqc", "readable_id": "2013-sat-practice-6-18"}, "mfgCcFXUZRk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mfgCcFXUZRk.mp4/mfgCcFXUZRk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mfgCcFXUZRk.mp4/mfgCcFXUZRk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mfgCcFXUZRk.m3u8/mfgCcFXUZRk.m3u8"}, "duration": 1036, "id": "mfgCcFXUZRk", "title": "Electron transport chain", "format": "mp4", "description": "Overview of the Electron Transport Chain", "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/electron-transport-chain/", "slug": "electron-transport-chain", "kind": "Video", "video_id": "mfgCcFXUZRk", "keywords": "Electron, Transport, Chain", "youtube_id": "mfgCcFXUZRk", "readable_id": "electron-transport-chain"}, "3uYb-RhM7lU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3uYb-RhM7lU.mp4/3uYb-RhM7lU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3uYb-RhM7lU.mp4/3uYb-RhM7lU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3uYb-RhM7lU.m3u8/3uYb-RhM7lU.m3u8"}, "duration": 651, "id": "3uYb-RhM7lU", "title": "Laplace transform to solve an equation", "format": "mp4", "description": "Using the Laplace Transform to solve an equation we already knew how to solve.", "path": "khan/math/differential-equations/laplace-transform/laplace-transform-to-solve-differential-equation/laplace-transform-to-solve-an-equation/", "slug": "laplace-transform-to-solve-an-equation", "kind": "Video", "video_id": "3uYb-RhM7lU", "keywords": "laplace, transform, differential, equation", "youtube_id": "3uYb-RhM7lU", "readable_id": "laplace-transform-to-solve-an-equation"}, "QecJrH1FTCc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QecJrH1FTCc.mp4/QecJrH1FTCc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QecJrH1FTCc.mp4/QecJrH1FTCc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QecJrH1FTCc.m3u8/QecJrH1FTCc.m3u8"}, "duration": 484, "id": "QecJrH1FTCc", "title": "The Constitution and democracy", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss the Constitution and democracy and different forms of government.", "path": "constitution-and-democracy/", "slug": "constitution-and-democracy", "kind": "Video", "video_id": "QecJrH1FTCc", "keywords": "", "youtube_id": "QecJrH1FTCc", "readable_id": "constitution-and-democracy"}, "fwzEbzgPszk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fwzEbzgPszk.mp4/fwzEbzgPszk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fwzEbzgPszk.mp4/fwzEbzgPszk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fwzEbzgPszk.m3u8/fwzEbzgPszk.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/operant-conditioning-escape-and-avoidance-learning/", "duration": 140, "id": "fwzEbzgPszk", "title": "Operant conditioning: Escape and avoidance learning", "format": "mp4", "description": "", "slug": "operant-conditioning-escape-and-avoidance-learning", "kind": "Video", "video_id": "fwzEbzgPszk", "keywords": "", "youtube_id": "fwzEbzgPszk", "readable_id": "operant-conditioning-escape-and-avoidance-learning"}, "P1paaFPcdak": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P1paaFPcdak.mp4/P1paaFPcdak.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P1paaFPcdak.mp4/P1paaFPcdak.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P1paaFPcdak.m3u8/P1paaFPcdak.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-aortic-dissection-and-aneurysm/abdominal-aortic-aneurysms/", "duration": 768, "id": "P1paaFPcdak", "title": "Abdominal aortic aneurysms", "format": "mp4", "description": "", "slug": "abdominal-aortic-aneurysms", "kind": "Video", "video_id": "P1paaFPcdak", "keywords": "", "youtube_id": "P1paaFPcdak", "readable_id": "abdominal-aortic-aneurysms"}, "ZxaSItfd9ao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZxaSItfd9ao.mp4/ZxaSItfd9ao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZxaSItfd9ao.mp4/ZxaSItfd9ao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZxaSItfd9ao.m3u8/ZxaSItfd9ao.m3u8"}, "duration": 210, "id": "ZxaSItfd9ao", "title": "The Preamble of the U.S. Constitution", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "the-preamble-of-the-us-constitution/", "slug": "the-preamble-of-the-us-constitution", "kind": "Video", "video_id": "ZxaSItfd9ao", "keywords": "", "youtube_id": "ZxaSItfd9ao", "readable_id": "the-preamble-of-the-us-constitution"}, "PoHKNFGbwjM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PoHKNFGbwjM.mp4/PoHKNFGbwjM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PoHKNFGbwjM.mp4/PoHKNFGbwjM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PoHKNFGbwjM.m3u8/PoHKNFGbwjM.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/brass/french-horn-interview-demo/", "duration": 1427, "id": "PoHKNFGbwjM", "title": "French Horn: Interview and demonstration with principal John Cerminaro", "format": "mp4", "description": "", "slug": "french-horn-interview-demo", "kind": "Video", "video_id": "PoHKNFGbwjM", "keywords": "", "youtube_id": "PoHKNFGbwjM", "readable_id": "french-horn-interview-demo"}, "gKhw23Tfn1U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gKhw23Tfn1U.mp4/gKhw23Tfn1U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gKhw23Tfn1U.mp4/gKhw23Tfn1U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gKhw23Tfn1U.m3u8/gKhw23Tfn1U.m3u8"}, "path": "khan/humanities/art-asia/korea-japan/goryeo-dynasty/ewer-with-lid/", "duration": 145, "id": "gKhw23Tfn1U", "title": "Ewer with lid", "format": "mp4", "description": "This lustrous stoneware vessel is a ewer, or pitcher, dating to the early 1100s, during Korea's Goryeo dynasty (918\u20131392). It was probably used for wine, which may have been warmed by placing the ewer in a matching bowl of heated water. The ewer's color is called celadon, which is created by a glaze that includes iron oxide. Today, connoisseurs around the world continue to treasure Goryeo celadon as among the most precious items created by Korean artisans. Learn more about Korean art on the Asian Art Museum's education website.", "slug": "ewer-with-lid", "kind": "Video", "video_id": "gKhw23Tfn1U", "keywords": "", "youtube_id": "gKhw23Tfn1U", "readable_id": "ewer-with-lid"}, "gmYPum38T00": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gmYPum38T00.mp4/gmYPum38T00.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gmYPum38T00.mp4/gmYPum38T00.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gmYPum38T00.m3u8/gmYPum38T00.m3u8"}, "path": "khan/humanities/art-africa/ife-art/ife-remembered-godfrey/", "duration": 274, "id": "gmYPum38T00", "title": "Ife remembered", "format": "mp4", "description": "Godfrey Abeshin, in conversation with curator Hassan Arero, remembers the Ife of his childhood. \u00a9 Trustees of the British Museum\n", "slug": "ife-remembered-godfrey", "kind": "Video", "video_id": "gmYPum38T00", "keywords": "", "youtube_id": "gmYPum38T00", "readable_id": "ife-remembered-godfrey"}, "GZInN7p1D0M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GZInN7p1D0M.mp4/GZInN7p1D0M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GZInN7p1D0M.mp4/GZInN7p1D0M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GZInN7p1D0M.m3u8/GZInN7p1D0M.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-1/", "duration": 635, "id": "GZInN7p1D0M", "title": "GMAT: Data sufficiency 1", "format": "mp4", "description": "1-5, pg. 278", "slug": "gmat-data-sufficiency-1", "kind": "Video", "video_id": "GZInN7p1D0M", "keywords": "gmat, data, sufficiency, math", "youtube_id": "GZInN7p1D0M", "readable_id": "gmat-data-sufficiency-1"}, "ovOKjwLE4qA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ovOKjwLE4qA.mp4/ovOKjwLE4qA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ovOKjwLE4qA.mp4/ovOKjwLE4qA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ovOKjwLE4qA.m3u8/ovOKjwLE4qA.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/neo-classicism/david-the-intervention-of-the-sabine-women-1799/", "duration": 267, "id": "ovOKjwLE4qA", "title": "David, The Intervention of the Sabine Women", "format": "mp4", "description": "Jacques-Louis David, The Intervention of the Sabine Women, 1799, Oil on canvas, 12 feet, 8 inches x 17 feet and 3/4 of an inch or 3.85 x 5.22 m (Mus\u00e9e du Louvre, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\n\u00a0\n\nAt this juncture the Sabine women, from the outrage on whom the war originated,\u00a0\n\nwith hair dishevelled and garments rent, the timidity of their sex being overcome\u00a0\n\nby such dreadful scenes, had the courage to throw themselves amid the flying\u00a0\n\nweapons, and making a rush across, to part the incensed armies, and assuage their\u00a0\n\nfury; imploring their fathers on the one side, their husbands on the other, \"that as\u00a0\n\nfathers-in-law and sons-in-law they would not contaminate each other with impious\u00a0\n\nblood, nor stain their offspring with parricide, the one their grandchildren, the other\u00a0\n\ntheir children. If you are dissatisfied with the affinity between you, if with our\u00a0\n\nmarriages, turn your resentment against us; we are the cause of war, we of wounds\u00a0\n\nand of bloodshed to our husbands and parents. It were better that we perish than\u00a0\n\nlive widowed or fatherless without one or other of you.\" The silence affects both the multitudes and the leaders. Silence and sudden suspension ensue. Upon this the leaders come forward in order to concert a treaty, and they not only conclude a peace, but form one state out of two.\u00a0\n\nLivy,\u00a0The History of Rome\u00a0tranlated by D. Spillan, London: Bohn, 1849: book 1, section 13,\u00a0\n\npage 19\n", "slug": "david-the-intervention-of-the-sabine-women-1799", "kind": "Video", "video_id": "ovOKjwLE4qA", "keywords": "Smarthistory, Art History, Louvre, Sabine", "youtube_id": "ovOKjwLE4qA", "readable_id": "david-the-intervention-of-the-sabine-women-1799"}, "Y7sqB1e4RBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y7sqB1e4RBI.mp4/Y7sqB1e4RBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y7sqB1e4RBI.mp4/Y7sqB1e4RBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y7sqB1e4RBI.m3u8/Y7sqB1e4RBI.m3u8"}, "duration": 380, "id": "Y7sqB1e4RBI", "title": "Limit at a point of discontinuity", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/calculus-estimating-limits-graph/limit-at-a-point-of-discontinuity/", "slug": "limit-at-a-point-of-discontinuity", "kind": "Video", "video_id": "Y7sqB1e4RBI", "keywords": "", "youtube_id": "Y7sqB1e4RBI", "readable_id": "limit-at-a-point-of-discontinuity"}, "46V8qqVRirk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/46V8qqVRirk.mp4/46V8qqVRirk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/46V8qqVRirk.mp4/46V8qqVRirk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/46V8qqVRirk.m3u8/46V8qqVRirk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/why-do-sounds-get-softer/", "duration": 528, "id": "46V8qqVRirk", "title": "Why do sounds get softer?", "format": "mp4", "description": "", "slug": "why-do-sounds-get-softer", "kind": "Video", "video_id": "46V8qqVRirk", "keywords": "", "youtube_id": "46V8qqVRirk", "readable_id": "why-do-sounds-get-softer"}, "BT2Mfmmjm4E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BT2Mfmmjm4E.mp4/BT2Mfmmjm4E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BT2Mfmmjm4E.mp4/BT2Mfmmjm4E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BT2Mfmmjm4E.m3u8/BT2Mfmmjm4E.m3u8"}, "duration": 172, "id": "BT2Mfmmjm4E", "title": "\"Enigma\" with Janice Kamrin", "format": "mp4", "description": "Met curator Janice Kamrin on anonymity in Canopic Jar with a Lid in the Shape of a Royal Woman\u2019s Head from Egypt\u2019s Valley of the Kings.\n\nAlthough this canopic jar was intended for a funerary context, the face on the lid was carved by a master with the skill and care one might expect in a more public portrait. Whatever the age of the owner at her death, she was given a youthful countenance for the eternal afterlife. The shape of the face, with its long slender nose, sloe eyes, and sensuous mouth, identifies it as a product of the latter half of the Amarna period. The jar and lid were altered in antiquity, making it extremely difficult to identify the original owner.\n\nThe striking face carved on the jar lid represents one of the royal women of Amarna. Her hairstyle of overlapping curls, known as the Nubian wig, was worn only by adults and was popular among the female members of Akhenaten's family. The hole at the center of the forehead once secured the separately carved upper body of a rearing cobra whose tail is visible across the top of the wig. This royal protector was exclusively worn by kings and queens.\u00a0Since its discovery in 1907, the face has been variously identified as that of Queen Tiye, Akhenaten's mother; Queen Nefertiti, his principal wife; Queen Kiya, his beloved secondary wife; and Princess Merytaten, his eldest daughter. For a time, it was even identified as Akhenaten himself. This confusion is understandable, since the inscription identifying the owner was almost completely erased. Faint traces of hieroglyphs indicate that the jar was originally inscribed for Kiya, and the Nubian wig is most frequently associated with this queen. In some respects, however, the face more closely resembles later representations of Tiye, and it is possible that the lid originally belonged to her burial equipment and was later placed on Kiya's canopic jar.\n\nThe tomb in which the jar was found, KV 55 in the Valley of the Kings, is probably the most controversial of all Egyptian tombs. It contained burial equipment inscribed for Queen Tiye and magical bricks with the name of Akhenaten. There were also four canopic jars (including this one) and an inlaid wooden coffin almost certainly made for Kiya. It appears that, for safekeeping, Tutankhamun had this material transferred to Thebes from Akhenaten's tomb at Amarna, which seems to have been plundered soon after Akhenaten's death. The jars and coffin of Kiya may have been reused at that time for the burial of another member of the royal family.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a\u00a0related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "enigma/", "slug": "enigma", "kind": "Video", "video_id": "BT2Mfmmjm4E", "keywords": "calm, death, glass, mystery, stone, vessel, Africa", "youtube_id": "BT2Mfmmjm4E", "readable_id": "enigma"}, "SXbc4J1qWjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SXbc4J1qWjE.mp4/SXbc4J1qWjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SXbc4J1qWjE.mp4/SXbc4J1qWjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SXbc4J1qWjE.m3u8/SXbc4J1qWjE.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/keto-enol-tautomerization/", "duration": 483, "id": "SXbc4J1qWjE", "title": "Keto-enol tautomerization", "format": "mp4", "description": "Keto Enol Tautomerization", "slug": "keto-enol-tautomerization", "kind": "Video", "video_id": "SXbc4J1qWjE", "keywords": "Keto, Enol, Tautomerization, Tautomer", "youtube_id": "SXbc4J1qWjE", "readable_id": "keto-enol-tautomerization"}, "LtGoBZ4D4_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LtGoBZ4D4_E.mp4/LtGoBZ4D4_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LtGoBZ4D4_E.mp4/LtGoBZ4D4_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LtGoBZ4D4_E.m3u8/LtGoBZ4D4_E.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/the-animated-bayeux-tapestry/", "duration": 265, "id": "LtGoBZ4D4_E", "title": "Bayeux Tapestry", "format": "mp4", "description": "Animation by David Newton, Sound Design by Marc Sylvan.\u00a0Copyright Potion Pictures Limited\n\nThe title \"Bayeux Tapestry\" (1066-82) is a bit of a misnomer\u2014the textile is embroidered wool on linen, and not actually a woven tapestry. The wool was dyed using the plants Woad, Madder, and Rocket. The linen canvas measures 20 inches in height by 130 feet\u00a0 in length (50 cm x 70 m), and supports the narrative embroidery that tells of the Norman invasion of England\u2014though very much from the Norman perspective.\n\nThe tapestry depicts Duke William of Normandy's conquest of Harold Godwinson\u2014England's new and ill-fated King. The conquest is portrayed as fully justified, and Harold is represented as an opportunist who broke his oaths to Edward the Confessor, former King of England, and to William himself. Although first known as William the \"Bastard\" (he was the illegitimate son of Robert the Magnificent and Herleva of Falaise), a name change accompanied his military success: he became known as William the \u201cConqueror.\" The Norman conquest is a key turning point in Western history, and the English language still reflects this dominance of French over Saxon culture.\u00a0\n", "slug": "the-animated-bayeux-tapestry", "kind": "Video", "video_id": "LtGoBZ4D4_E", "keywords": "", "youtube_id": "LtGoBZ4D4_E", "readable_id": "the-animated-bayeux-tapestry"}, "hD4ySbQYYyA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hD4ySbQYYyA.mp4/hD4ySbQYYyA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hD4ySbQYYyA.mp4/hD4ySbQYYyA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hD4ySbQYYyA.m3u8/hD4ySbQYYyA.m3u8"}, "duration": 214, "id": "hD4ySbQYYyA", "title": "Accreting mass due to gravity simulation", "format": "mp4", "description": "", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/accreting-mass-due-to-gravity-simulation/", "slug": "accreting-mass-due-to-gravity-simulation", "kind": "Video", "video_id": "hD4ySbQYYyA", "keywords": "", "youtube_id": "hD4ySbQYYyA", "readable_id": "accreting-mass-due-to-gravity-simulation"}, "hEgLzTtQj7I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hEgLzTtQj7I.mp4/hEgLzTtQj7I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hEgLzTtQj7I.mp4/hEgLzTtQj7I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hEgLzTtQj7I.m3u8/hEgLzTtQj7I.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/xunzi-on-human-nature/", "duration": 337, "id": "hEgLzTtQj7I", "title": "Ancient: Xunzi on Human Nature", "format": "mp4", "description": "In this video, David Wong discusses Xunzi's view of human nature.\n\nSpeaker: Dr. David Wong,\u00a0Susan Fox Beischer and George D. Beischer Professor of Philosophy, Duke University", "slug": "xunzi-on-human-nature", "kind": "Video", "video_id": "hEgLzTtQj7I", "keywords": "", "youtube_id": "hEgLzTtQj7I", "readable_id": "xunzi-on-human-nature"}, "KDHuWxy53uM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KDHuWxy53uM.mp4/KDHuWxy53uM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KDHuWxy53uM.mp4/KDHuWxy53uM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KDHuWxy53uM.m3u8/KDHuWxy53uM.m3u8"}, "duration": 633, "id": "KDHuWxy53uM", "title": "The dot product", "format": "mp4", "description": "Introduction to the vector dot product.", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/the-dot-product/", "slug": "the-dot-product", "kind": "Video", "video_id": "KDHuWxy53uM", "keywords": "vector, dot, product", "youtube_id": "KDHuWxy53uM", "readable_id": "the-dot-product"}, "hLy2KhCUwN0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hLy2KhCUwN0.mp4/hLy2KhCUwN0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hLy2KhCUwN0.mp4/hLy2KhCUwN0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hLy2KhCUwN0.m3u8/hLy2KhCUwN0.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/locke-personal-identity-part-2/", "duration": 789, "id": "hLy2KhCUwN0", "title": "Early Modern: Locke on Personal Identity part 2", "format": "mp4", "description": "Part 2\u00a0of 3. What makes you the same person as the little kid growing up a number of years ago? \u00a0Is the identity of a person tied to the persistence of a body or a soul or something else entirely? \u00a0Can we even give\u00a0any explanation at all of the persistence of a person? \u00a0Michael Della Rocca (Yale University) explores some of the puzzles and problems of personal identity that arise from the revolutionary work of the philosopher John Locke.\n\nSpeaker: Dr. Michael Della Rocca,\u00a0Andrew Downey Orrick Professor of Philosophy, Yale University\u00a0\n", "slug": "locke-personal-identity-part-2", "kind": "Video", "video_id": "hLy2KhCUwN0", "keywords": "", "youtube_id": "hLy2KhCUwN0", "readable_id": "locke-personal-identity-part-2"}, "vxQvL_WhBGU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vxQvL_WhBGU.mp4/vxQvL_WhBGU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vxQvL_WhBGU.mp4/vxQvL_WhBGU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vxQvL_WhBGU.m3u8/vxQvL_WhBGU.m3u8"}, "duration": 446, "id": "vxQvL_WhBGU", "title": "Triple integrals 2", "format": "mp4", "description": "Using a triple integral to find the mass of a volume of variable density.", "path": "khan/math/multivariable-calculus/double_triple_integrals/triple_integrals/triple-integrals-2/", "slug": "triple-integrals-2", "kind": "Video", "video_id": "vxQvL_WhBGU", "keywords": "calculus, triple, integral, density", "youtube_id": "vxQvL_WhBGU", "readable_id": "triple-integrals-2"}, "61ecnr8m04U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/61ecnr8m04U.mp4/61ecnr8m04U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/61ecnr8m04U.mp4/61ecnr8m04U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/61ecnr8m04U.m3u8/61ecnr8m04U.m3u8"}, "duration": 405, "id": "61ecnr8m04U", "title": "Intuitively drawing the antiderivative of a function", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/intuitively-drawing-the-anitderivative-of-a-function/", "slug": "intuitively-drawing-the-anitderivative-of-a-function", "kind": "Video", "video_id": "61ecnr8m04U", "keywords": "", "youtube_id": "61ecnr8m04U", "readable_id": "intuitively-drawing-the-anitderivative-of-a-function"}, "f8LDv2kthzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f8LDv2kthzw.mp4/f8LDv2kthzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f8LDv2kthzw.mp4/f8LDv2kthzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f8LDv2kthzw.m3u8/f8LDv2kthzw.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-europe/dia-al-azzawi/", "duration": 240, "id": "f8LDv2kthzw", "title": "Dia Al-Azzawi", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nHaving moved to the UK in 1976, artist Dia\u00a0Al-Azzawi found that by viewing Iraq from afar, he could understand more about Iraqi and Arabic culture than if he had remained there. Al-Azzawi's vast drawing Sabra and Shatila Massacre 1982-3\u00a0is an example of work that arose from this process of\u00a0observation. Here\u00a0Al-Azzawi explains how working from imagination, he depicted the painting's scenes of chaos\u00a0in a semi-abstract style to create a work that is not a propaganda piece, but which documents a\u00a0tragedy.\n", "slug": "dia-al-azzawi", "kind": "Video", "video_id": "f8LDv2kthzw", "keywords": "Tate", "youtube_id": "f8LDv2kthzw", "readable_id": "dia-al-azzawi"}, "2lXL4HscWGI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2lXL4HscWGI.mp4/2lXL4HscWGI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2lXL4HscWGI.mp4/2lXL4HscWGI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2lXL4HscWGI.m3u8/2lXL4HscWGI.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/rosso-fiorentino-the-dead-christ-with-angels-c-1524-7/", "duration": 263, "id": "2lXL4HscWGI", "title": "Rosso Fiorentino, the Dead Christ with Angels", "format": "mp4", "description": "Rosso Fiorentino, The Dead Christ with Angels, c. 1524-7, oil on panel, 133.4 x 104.1 cm / 52-1/2 x 41 inches (Museum of Fine Arts, Boston)", "slug": "rosso-fiorentino-the-dead-christ-with-angels-c-1524-7", "kind": "Video", "video_id": "2lXL4HscWGI", "keywords": "Mannerism, Christ, Jesus, Angels, Google Art Project, GAP, Smarthistory, Khan Academy, OER, Museum of Fine Arts, Boston, Rosso Fiorentino", "youtube_id": "2lXL4HscWGI", "readable_id": "rosso-fiorentino-the-dead-christ-with-angels-c-1524-7"}, "E2qP4TsHGGQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E2qP4TsHGGQ.mp4/E2qP4TsHGGQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E2qP4TsHGGQ.mp4/E2qP4TsHGGQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E2qP4TsHGGQ.m3u8/E2qP4TsHGGQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/what-is-cyanotic-heart-disease/", "duration": 432, "id": "E2qP4TsHGGQ", "title": "What is cyanotic heart disease", "format": "mp4", "description": "", "slug": "what-is-cyanotic-heart-disease", "kind": "Video", "video_id": "E2qP4TsHGGQ", "keywords": "", "youtube_id": "E2qP4TsHGGQ", "readable_id": "what-is-cyanotic-heart-disease"}, "-_xZZt99MzY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-_xZZt99MzY.mp4/-_xZZt99MzY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-_xZZt99MzY.mp4/-_xZZt99MzY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-_xZZt99MzY.m3u8/-_xZZt99MzY.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/sound/sound-properties-amplitude-period-frequency-wavelength/", "duration": 316, "id": "-_xZZt99MzY", "title": "Sound Properties (Amplitude, Period, Frequency, Wavelength)", "format": "mp4", "description": "", "slug": "sound-properties-amplitude-period-frequency-wavelength", "kind": "Video", "video_id": "-_xZZt99MzY", "keywords": "", "youtube_id": "-_xZZt99MzY", "readable_id": "sound-properties-amplitude-period-frequency-wavelength"}, "OgTpVth-aUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OgTpVth-aUk.mp4/OgTpVth-aUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OgTpVth-aUk.mp4/OgTpVth-aUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OgTpVth-aUk.m3u8/OgTpVth-aUk.m3u8"}, "duration": 298, "id": "OgTpVth-aUk", "title": "Comparing fractions of different wholes", "format": "mp4", "description": "Comparing fractions of different wholes", "path": "comparing-fractions-different-wholes/", "slug": "comparing-fractions-different-wholes", "kind": "Video", "video_id": "OgTpVth-aUk", "keywords": "", "youtube_id": "OgTpVth-aUk", "readable_id": "comparing-fractions-different-wholes"}, "b-7kCymoUpg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b-7kCymoUpg.mp4/b-7kCymoUpg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b-7kCymoUpg.mp4/b-7kCymoUpg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b-7kCymoUpg.m3u8/b-7kCymoUpg.m3u8"}, "duration": 286, "id": "b-7kCymoUpg", "title": "Sum of an infinite geometric series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/infinite-geometric-series/", "slug": "infinite-geometric-series", "kind": "Video", "video_id": "b-7kCymoUpg", "keywords": "", "youtube_id": "b-7kCymoUpg", "readable_id": "infinite-geometric-series"}, "0boZOi9-U-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0boZOi9-U-k.mp4/0boZOi9-U-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0boZOi9-U-k.mp4/0boZOi9-U-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0boZOi9-U-k.m3u8/0boZOi9-U-k.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-5/", "duration": 95, "id": "0boZOi9-U-k", "title": "5 Triangle angle measure", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-5", "kind": "Video", "video_id": "0boZOi9-U-k", "keywords": "", "youtube_id": "0boZOi9-U-k", "readable_id": "2013-sat-practice-6-5"}, "p8Vasl3L5p8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p8Vasl3L5p8.mp4/p8Vasl3L5p8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p8Vasl3L5p8.mp4/p8Vasl3L5p8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p8Vasl3L5p8.m3u8/p8Vasl3L5p8.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/paolo-uccello-battle-of-san-romano-c-1538-40/", "duration": 213, "id": "p8Vasl3L5p8", "title": "Uccello, The Battle of San Romano", "format": "mp4", "description": "Paolo Uccello's Battle of San Romano, probably c. 1438-40 in the National Gallery, London\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "paolo-uccello-battle-of-san-romano-c-1538-40", "kind": "Video", "video_id": "p8Vasl3L5p8", "keywords": "", "youtube_id": "p8Vasl3L5p8", "readable_id": "paolo-uccello-battle-of-san-romano-c-1538-40"}, "eKw3Aq0vvbo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eKw3Aq0vvbo.mp4/eKw3Aq0vvbo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eKw3Aq0vvbo.mp4/eKw3Aq0vvbo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eKw3Aq0vvbo.m3u8/eKw3Aq0vvbo.m3u8"}, "duration": 228, "id": "eKw3Aq0vvbo", "title": "Amortization and depreciation", "format": "mp4", "description": "Comparing depreciation and amortization", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/depreciation-amortization-tut/amortization-and-depreciation/", "slug": "amortization-and-depreciation", "kind": "Video", "video_id": "eKw3Aq0vvbo", "keywords": "Depreciation, and, Amortization", "youtube_id": "eKw3Aq0vvbo", "readable_id": "amortization-and-depreciation"}, "1k6MUeM-pEo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1k6MUeM-pEo.mp4/1k6MUeM-pEo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1k6MUeM-pEo.mp4/1k6MUeM-pEo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1k6MUeM-pEo.m3u8/1k6MUeM-pEo.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-cleavage-ethers/acidic-cleavage-of-ethers/", "duration": 749, "id": "1k6MUeM-pEo", "title": "Acidic cleavage of ethers", "format": "mp4", "description": "", "slug": "acidic-cleavage-of-ethers", "kind": "Video", "video_id": "1k6MUeM-pEo", "keywords": "", "youtube_id": "1k6MUeM-pEo", "readable_id": "acidic-cleavage-of-ethers"}, "d-_eqgj5-K8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d-_eqgj5-K8.mp4/d-_eqgj5-K8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d-_eqgj5-K8.mp4/d-_eqgj5-K8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d-_eqgj5-K8.m3u8/d-_eqgj5-K8.m3u8"}, "duration": 566, "id": "d-_eqgj5-K8", "title": "Why distance is area under velocity-time line", "format": "mp4", "description": "Understanding why distance is area under velocity-time line", "path": "khan/test-prep/mcat/physical-processes/acceleration-mcat/why-distance-is-area-under-velocity-time-line/", "slug": "why-distance-is-area-under-velocity-time-line", "kind": "Video", "video_id": "d-_eqgj5-K8", "keywords": "physics, area, integral, accleration, slope", "youtube_id": "d-_eqgj5-K8", "readable_id": "why-distance-is-area-under-velocity-time-line"}, "0ZKtsUkrgFQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0ZKtsUkrgFQ.mp4/0ZKtsUkrgFQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0ZKtsUkrgFQ.mp4/0ZKtsUkrgFQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0ZKtsUkrgFQ.m3u8/0ZKtsUkrgFQ.m3u8"}, "duration": 498, "id": "0ZKtsUkrgFQ", "title": "Ways to represent data", "format": "mp4", "description": "Here are a few of the many ways to look at data. Which is your favorite?", "path": "ways-to-represent-data/", "slug": "ways-to-represent-data", "kind": "Video", "video_id": "0ZKtsUkrgFQ", "keywords": "", "youtube_id": "0ZKtsUkrgFQ", "readable_id": "ways-to-represent-data"}, "gSzxeL64Cn0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gSzxeL64Cn0.mp4/gSzxeL64Cn0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gSzxeL64Cn0.mp4/gSzxeL64Cn0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gSzxeL64Cn0.m3u8/gSzxeL64Cn0.m3u8"}, "duration": 580, "id": "gSzxeL64Cn0", "title": "Formation of oximes and hydrazones", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/formation-of-oximes-and-hydrazones/", "slug": "formation-of-oximes-and-hydrazones", "kind": "Video", "video_id": "gSzxeL64Cn0", "keywords": "", "youtube_id": "gSzxeL64Cn0", "readable_id": "formation-of-oximes-and-hydrazones"}, "Hh3iY4tdkGI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hh3iY4tdkGI.mp4/Hh3iY4tdkGI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hh3iY4tdkGI.mp4/Hh3iY4tdkGI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hh3iY4tdkGI.m3u8/Hh3iY4tdkGI.m3u8"}, "duration": 805, "id": "Hh3iY4tdkGI", "title": "2003 AIME II problem 10", "format": "mp4", "description": "perfect squares integers square root", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-10/", "slug": "2003-aime-ii-problem-10", "kind": "Video", "video_id": "Hh3iY4tdkGI", "keywords": "2003, AIME, II, Problem, 10", "youtube_id": "Hh3iY4tdkGI", "readable_id": "2003-aime-ii-problem-10"}, "7Ig6kVZaWoU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7Ig6kVZaWoU.mp4/7Ig6kVZaWoU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7Ig6kVZaWoU.mp4/7Ig6kVZaWoU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7Ig6kVZaWoU.m3u8/7Ig6kVZaWoU.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exponential-modeling/solve-exponentials/", "duration": 312, "id": "7Ig6kVZaWoU", "title": "Solving exponential equation", "format": "mp4", "description": "", "slug": "solve-exponentials", "kind": "Video", "video_id": "7Ig6kVZaWoU", "keywords": "", "youtube_id": "7Ig6kVZaWoU", "readable_id": "solve-exponentials"}, "Sn5CwAODVdI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Sn5CwAODVdI.mp4/Sn5CwAODVdI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Sn5CwAODVdI.mp4/Sn5CwAODVdI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Sn5CwAODVdI.m3u8/Sn5CwAODVdI.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electrostatics-1/conservation-of-charge/", "duration": 528, "id": "Sn5CwAODVdI", "title": "Conservation of Charge", "format": "mp4", "description": "", "slug": "conservation-of-charge", "kind": "Video", "video_id": "Sn5CwAODVdI", "keywords": "", "youtube_id": "Sn5CwAODVdI", "readable_id": "conservation-of-charge"}, "egNq4tSfi1I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/egNq4tSfi1I.mp4/egNq4tSfi1I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/egNq4tSfi1I.mp4/egNq4tSfi1I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/egNq4tSfi1I.m3u8/egNq4tSfi1I.m3u8"}, "duration": 281, "id": "egNq4tSfi1I", "title": "Adding and simplifying radicals", "format": "mp4", "description": "Adding and Simplifying Radicals", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/adding-and-simplifying-radicals/", "slug": "adding-and-simplifying-radicals", "kind": "Video", "video_id": "egNq4tSfi1I", "keywords": "u16_l2_t2_we1, Adding, and, Simplifying, Radicals", "youtube_id": "egNq4tSfi1I", "readable_id": "adding-and-simplifying-radicals"}, "wPLKm-ho1Bw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wPLKm-ho1Bw.mp4/wPLKm-ho1Bw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wPLKm-ho1Bw.mp4/wPLKm-ho1Bw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wPLKm-ho1Bw.m3u8/wPLKm-ho1Bw.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2009-may-3-4/", "duration": 118, "id": "wPLKm-ho1Bw", "title": "4 Thinking about sets", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-4", "kind": "Video", "video_id": "wPLKm-ho1Bw", "keywords": "", "youtube_id": "wPLKm-ho1Bw", "readable_id": "sat-2009-may-3-4"}, "gDbpcwwUgjI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gDbpcwwUgjI.mp4/gDbpcwwUgjI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gDbpcwwUgjI.mp4/gDbpcwwUgjI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gDbpcwwUgjI.m3u8/gDbpcwwUgjI.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/mary-cassatt-breakfast-in-bed-1897/", "duration": 187, "id": "gDbpcwwUgjI", "title": "Cassatt, Breakfast in Bed", "format": "mp4", "description": "Mary Cassatt, Breakfast In Bed, 1897 (Huntington Library) \n\nSpeakers: Beth Harris and Steven Zucker", "slug": "mary-cassatt-breakfast-in-bed-1897", "kind": "Video", "video_id": "gDbpcwwUgjI", "keywords": "Cassatt, Breakfast, Huntington Library, Art, Art History, Smarthistory, Impressionism", "youtube_id": "gDbpcwwUgjI", "readable_id": "mary-cassatt-breakfast-in-bed-1897"}, "JOkEfbaaK-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JOkEfbaaK-o.mp4/JOkEfbaaK-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JOkEfbaaK-o.mp4/JOkEfbaaK-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JOkEfbaaK-o.m3u8/JOkEfbaaK-o.m3u8"}, "path": "khan/humanities/art-islam/islamic-art-medieval/coronation-mantle-new/", "duration": 247, "id": "JOkEfbaaK-o", "title": "Coronation mantle", "format": "mp4", "description": "Coronation Mantle, 1133/34, fabric from Byzantium or Thebes, samite, silk, gold, pearls, filigree, sapphires, garnets, glass, and cloisonn\u00e9 enamel, 146 x 345 cm (Neue Hofburg, Vienna).\u00a0Likely made for the Norman ruler Roger II in 1133/34 in the royal workshop in Palermo of fabric from Byzantium or Thebes, Samite, silk, gold, pearls, filigree, sapphires, garnets, glass, and cloisonn\u00e9 enamel. The Kufic script reads: \"This mantle was worked in the most magnificent clothing workshop and is connected with the desire and hopes, felicitous days and nights without cease or change, with authority, with honor and felicity, assurances of trust, reverent care, protection, good destiny, freedom from harm, triumph and livelihood in the capital city of Sicily in the year 528\" (or 1133/34 in the Gregorian calendar). Neue Hofburg, Vienna. \u00a0Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "coronation-mantle-new", "kind": "Video", "video_id": "JOkEfbaaK-o", "keywords": "Neue Hofburg, Vienna 1133, Palermo, Norman, Cape, Cloak, mantle, coronation, Roger II, educational, Vienna (City/Town/Village)", "youtube_id": "JOkEfbaaK-o", "readable_id": "coronation-mantle-new"}, "4YUtnod-YuE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4YUtnod-YuE.mp4/4YUtnod-YuE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4YUtnod-YuE.mp4/4YUtnod-YuE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4YUtnod-YuE.m3u8/4YUtnod-YuE.m3u8"}, "duration": 255, "id": "4YUtnod-YuE", "title": "Carbon 14 dating 2", "format": "mp4", "description": "Carbon 14 Dating 2", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/measuring-age-tutorial/carbon-14-dating-2/", "slug": "carbon-14-dating-2", "kind": "Video", "video_id": "4YUtnod-YuE", "keywords": "Carbon, 14, Dating", "youtube_id": "4YUtnod-YuE", "readable_id": "carbon-14-dating-2"}, "f93KCgI4DGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f93KCgI4DGM.mp4/f93KCgI4DGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f93KCgI4DGM.mp4/f93KCgI4DGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f93KCgI4DGM.m3u8/f93KCgI4DGM.m3u8"}, "duration": 538, "id": "f93KCgI4DGM", "title": "Testing for the flu", "format": "mp4", "description": "Learn when testing for influenza makes sense, and the most common test that is used. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/testing-for-the-flu/", "slug": "testing-for-the-flu", "kind": "Video", "video_id": "f93KCgI4DGM", "keywords": "", "youtube_id": "f93KCgI4DGM", "readable_id": "testing-for-the-flu"}, "SSNA9gaAOVc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SSNA9gaAOVc.mp4/SSNA9gaAOVc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SSNA9gaAOVc.mp4/SSNA9gaAOVc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SSNA9gaAOVc.m3u8/SSNA9gaAOVc.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/solutions-graphs-two-variable-equations/ordered-pair-solutions-of-equations-2/", "duration": 306, "id": "SSNA9gaAOVc", "title": "Ordered pair solutions to equations", "format": "mp4", "description": "Ordered Pair Solutions of Equations", "slug": "ordered-pair-solutions-of-equations-2", "kind": "Video", "video_id": "SSNA9gaAOVc", "keywords": "u13, l1, t2, we3, Ordered, Pair, Solutions, of, Equations", "youtube_id": "SSNA9gaAOVc", "readable_id": "ordered-pair-solutions-of-equations-2"}, "R2cCoswXvZA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R2cCoswXvZA.mp4/R2cCoswXvZA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R2cCoswXvZA.mp4/R2cCoswXvZA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R2cCoswXvZA.m3u8/R2cCoswXvZA.m3u8"}, "duration": 93, "id": "R2cCoswXvZA", "title": "Art Terms in Action: Paint", "format": "mp4", "description": "To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.\u00a0", "path": "khan/humanities/art-history-basics/artists-materials-techniques/painting-materials-techniques/moma-art-term-paint/", "slug": "moma-art-term-paint", "kind": "Video", "video_id": "R2cCoswXvZA", "keywords": "", "youtube_id": "R2cCoswXvZA", "readable_id": "moma-art-term-paint"}, "PV5u5xskBKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PV5u5xskBKM.mp4/PV5u5xskBKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PV5u5xskBKM.mp4/PV5u5xskBKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PV5u5xskBKM.m3u8/PV5u5xskBKM.m3u8"}, "path": "khan/science/health-and-medicine/healthcare-misc/assessing-alignment-of-the-lateral-cervical-spine-neck-x-ray/", "duration": 452, "id": "PV5u5xskBKM", "title": "Assessing alignment of the lateral cervical spine (neck) X-ray", "format": "mp4", "description": "Dr. Mahadevan of Stanford Medical School shows Sal what misalignment in the neck could look like in an X-ray", "slug": "assessing-alignment-of-the-lateral-cervical-spine-neck-x-ray", "kind": "Video", "video_id": "PV5u5xskBKM", "keywords": "medicine, global, health, x-ray, cervical, trauma", "youtube_id": "PV5u5xskBKM", "readable_id": "assessing-alignment-of-the-lateral-cervical-spine-neck-x-ray"}, "rKoIcgBM4Vg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rKoIcgBM4Vg.mp4/rKoIcgBM4Vg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rKoIcgBM4Vg.mp4/rKoIcgBM4Vg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rKoIcgBM4Vg.m3u8/rKoIcgBM4Vg.m3u8"}, "duration": 686, "id": "rKoIcgBM4Vg", "title": "Atomic and ionic radii", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/atomic-and-ionic-radii/", "slug": "atomic-and-ionic-radii", "kind": "Video", "video_id": "rKoIcgBM4Vg", "keywords": "", "youtube_id": "rKoIcgBM4Vg", "readable_id": "atomic-and-ionic-radii"}, "Ysk1ySejuCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ysk1ySejuCQ.mp4/Ysk1ySejuCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ysk1ySejuCQ.mp4/Ysk1ySejuCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ysk1ySejuCQ.m3u8/Ysk1ySejuCQ.m3u8"}, "duration": 606, "id": "Ysk1ySejuCQ", "title": "Currency effect on trade review", "format": "mp4", "description": "Currency Effect on Trade Review", "path": "khan/economics-finance-domain/core-finance/money-and-banking/currency-tutorial/currency-effect-on-trade-review/", "slug": "currency-effect-on-trade-review", "kind": "Video", "video_id": "Ysk1ySejuCQ", "keywords": "Currency, Effect, on, Trade, Review", "youtube_id": "Ysk1ySejuCQ", "readable_id": "currency-effect-on-trade-review"}, "XhCSHu6dHb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XhCSHu6dHb8.mp4/XhCSHu6dHb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XhCSHu6dHb8.mp4/XhCSHu6dHb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XhCSHu6dHb8.m3u8/XhCSHu6dHb8.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/lin-alg-another-example-of-a-projection-matrix/", "duration": 1295, "id": "XhCSHu6dHb8", "title": "Another example of a projection matrix", "format": "mp4", "description": "Figuring out the transformation matrix for a projection onto a subspace by figuring out the matrix for the projection onto the subspace's orthogonal complement first", "slug": "lin-alg-another-example-of-a-projection-matrix", "kind": "Video", "video_id": "XhCSHu6dHb8", "keywords": "projection, subspace", "youtube_id": "XhCSHu6dHb8", "readable_id": "lin-alg-another-example-of-a-projection-matrix"}, "8OCjwBkMJ_E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8OCjwBkMJ_E.mp4/8OCjwBkMJ_E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8OCjwBkMJ_E.mp4/8OCjwBkMJ_E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8OCjwBkMJ_E.m3u8/8OCjwBkMJ_E.m3u8"}, "duration": 722, "id": "8OCjwBkMJ_E", "title": "Raising money for a startup", "format": "mp4", "description": "Raising money from an angel investor. Pre-money and post-money valuation.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets/raising-money-for-a-startup/", "slug": "raising-money-for-a-startup", "kind": "Video", "video_id": "8OCjwBkMJ_E", "keywords": "vencture, capital, angel, pre, post, money, valuation", "youtube_id": "8OCjwBkMJ_E", "readable_id": "raising-money-for-a-startup"}, "ZMitVox1veo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZMitVox1veo.mp4/ZMitVox1veo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZMitVox1veo.mp4/ZMitVox1veo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZMitVox1veo.m3u8/ZMitVox1veo.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-design-blended-learning/sscc-leading-change/sscc-blended-leadingchange/", "duration": 898, "id": "ZMitVox1veo", "title": "Leading organizational change to transform existing schools or launch new schools", "format": "mp4", "description": "", "slug": "sscc-blended-leadingchange", "kind": "Video", "video_id": "ZMitVox1veo", "keywords": "", "youtube_id": "ZMitVox1veo", "readable_id": "sscc-blended-leadingchange"}, "CA4S7S-3Lg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CA4S7S-3Lg4.mp4/CA4S7S-3Lg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CA4S7S-3Lg4.mp4/CA4S7S-3Lg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CA4S7S-3Lg4.m3u8/CA4S7S-3Lg4.m3u8"}, "duration": 336, "id": "CA4S7S-3Lg4", "title": "Visualizing the solution set for a system of inequalities", "format": "mp4", "description": "Visualizing the solution set for a system of inequalities", "path": "khan/math/algebra2/systems_eq_ineq/systems_inequalities_precalc/graphical-system-of-inequalities/", "slug": "graphical-system-of-inequalities", "kind": "Video", "video_id": "CA4S7S-3Lg4", "keywords": "u14_l1_t2_we1, Graphical, System, of, Inequalities, CC_39336_A-REI_12", "youtube_id": "CA4S7S-3Lg4", "readable_id": "graphical-system-of-inequalities"}, "Z19-ObbmHJE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z19-ObbmHJE.mp4/Z19-ObbmHJE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z19-ObbmHJE.mp4/Z19-ObbmHJE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z19-ObbmHJE.m3u8/Z19-ObbmHJE.m3u8"}, "duration": 641, "id": "Z19-ObbmHJE", "title": "More on matrix addition and scalar multiplication", "format": "mp4", "description": "More on Matrix Addition and Scalar Multiplication", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/more-on-matrix-addition-and-scalar-multiplication/", "slug": "more-on-matrix-addition-and-scalar-multiplication", "kind": "Video", "video_id": "Z19-ObbmHJE", "keywords": "matrix, addition, scalar, multiplication", "youtube_id": "Z19-ObbmHJE", "readable_id": "more-on-matrix-addition-and-scalar-multiplication"}, "GDXyGy5TjnI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GDXyGy5TjnI.mp4/GDXyGy5TjnI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GDXyGy5TjnI.mp4/GDXyGy5TjnI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GDXyGy5TjnI.m3u8/GDXyGy5TjnI.m3u8"}, "duration": 403, "id": "GDXyGy5TjnI", "title": "IIT JEE position vectors", "format": "mp4", "description": "2010 IIT JEE Paper 1 problem 32 Position Vectors", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-position-vectors/", "slug": "iit-jee-position-vectors", "kind": "Video", "video_id": "GDXyGy5TjnI", "keywords": "2010, IIT, JEE, Paper, problem, 32, Position, Vectors, rhombus, parallelogram", "youtube_id": "GDXyGy5TjnI", "readable_id": "iit-jee-position-vectors"}, "_rdhFaROsVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_rdhFaROsVA.mp4/_rdhFaROsVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_rdhFaROsVA.mp4/_rdhFaROsVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_rdhFaROsVA.m3u8/_rdhFaROsVA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/hellenistic/enamored/", "duration": 171, "id": "_rdhFaROsVA", "title": "\"Enamored\" with Se\u00e1n Hemingway", "format": "mp4", "description": "Met curator Se\u00e1n Hemingway on the purity of love in Bronze statue of Eros sleeping from Greece\u2019s Hellenistic Period.\n\nThe Hellenistic period introduced the accurate characterization of age. Young children enjoyed great favor, whether in mythological form, as baby Herakles or Eros, or in genre scenes, playing with each other or with pets. This Eros, god of love, has been brought down to earth and disarmed, a conception considerably different from that of the powerful, often cruel, and capricious being so often addressed in Archaic poetry. One of the few bronze statues to have survived from antiquity, this figure of a plump baby in relaxed pose conveys a sense of the immediacy and naturalistic detail that the medium of bronze made possible. He is clearly based on firsthand observation. The support on which the god rests is a modern addition, but the work originally would have had a separate base, most likely of stone.\u00a0\n\nThis statue is the finest example of its kind. Judging from the large number of extant replicas, the type was popular in Hellenistic and, especially, Roman times. In the Roman period, Sleeping Eros statues decorated villa gardens and fountains. Their function in the Hellenistic period is less clear. They may have been used as dedications within a sanctuary of Aphrodite or possibly may have been erected in a public park or private, even royal, garden.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "slug": "enamored", "kind": "Video", "video_id": "_rdhFaROsVA", "keywords": "body, calm, metal, sculpture, youth, Europe", "youtube_id": "_rdhFaROsVA", "readable_id": "enamored"}, "Utm875JRi-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Utm875JRi-o.mp4/Utm875JRi-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Utm875JRi-o.mp4/Utm875JRi-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Utm875JRi-o.m3u8/Utm875JRi-o.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-add-20/adding-3-numbers/", "duration": 158, "id": "Utm875JRi-o", "title": "Adding 5 + 3 + 6", "format": "mp4", "description": "Learn how to add 5 + 3 + 6.", "slug": "adding-3-numbers", "kind": "Video", "video_id": "Utm875JRi-o", "keywords": "", "youtube_id": "Utm875JRi-o", "readable_id": "adding-3-numbers"}, "jEeJkkMXt6c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jEeJkkMXt6c.mp4/jEeJkkMXt6c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jEeJkkMXt6c.mp4/jEeJkkMXt6c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jEeJkkMXt6c.m3u8/jEeJkkMXt6c.m3u8"}, "duration": 498, "id": "jEeJkkMXt6c", "title": "Scale of distance to closest stars", "format": "mp4", "description": "Scale of Distance to Closest Stars", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/scale-earth-galaxy-tutorial/scale-of-distance-to-closest-stars/", "slug": "scale-of-distance-to-closest-stars", "kind": "Video", "video_id": "jEeJkkMXt6c", "keywords": "Scale, of, Distance, to, Closest, Stars, Astronomy, Cosmology", "youtube_id": "jEeJkkMXt6c", "readable_id": "scale-of-distance-to-closest-stars"}, "QXIXA4_5ehw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QXIXA4_5ehw.mp4/QXIXA4_5ehw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QXIXA4_5ehw.mp4/QXIXA4_5ehw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QXIXA4_5ehw.m3u8/QXIXA4_5ehw.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/bramante/donato-bramante-tempietto-rome/", "duration": 361, "id": "QXIXA4_5ehw", "title": "Bramante, Tempietto", "format": "mp4", "description": "Donato Bramante, Tempietto, c. 1502, San Pietro in Montorio, Rome", "slug": "donato-bramante-tempietto-rome", "kind": "Video", "video_id": "QXIXA4_5ehw", "keywords": "High Renaissance, Renaissance, Italian, Rome, Bramante, Donato Bramante, St. Peter, Saint Peter, Martyria, Martyrium, Classical, Vitruvius, marker, San Pietro in Montorio, Tempietto, Educational", "youtube_id": "QXIXA4_5ehw", "readable_id": "donato-bramante-tempietto-rome"}, "1jLifFl9HLA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1jLifFl9HLA.mp4/1jLifFl9HLA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1jLifFl9HLA.mp4/1jLifFl9HLA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1jLifFl9HLA.m3u8/1jLifFl9HLA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-lung-cancer/lung-cancer-metastasis/", "duration": 290, "id": "1jLifFl9HLA", "title": "Lung cancer metastasis", "format": "mp4", "description": "Metastasis is the spread of cancer cells from one area of the body (such as an organ) to another. As cancerous cells multiply, some cells may find their way into the circulating blood or lymphatic systems, where they\u2019re transported around the rest of the body. They may eventually land in another organ where they continue to multiply and spread.", "slug": "lung-cancer-metastasis", "kind": "Video", "video_id": "1jLifFl9HLA", "keywords": "", "youtube_id": "1jLifFl9HLA", "readable_id": "lung-cancer-metastasis"}, "kl7Xw2zk-Aw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kl7Xw2zk-Aw.mp4/kl7Xw2zk-Aw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kl7Xw2zk-Aw.mp4/kl7Xw2zk-Aw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kl7Xw2zk-Aw.m3u8/kl7Xw2zk-Aw.m3u8"}, "duration": 448, "id": "kl7Xw2zk-Aw", "title": "Deborah Franklin", "format": "mp4", "description": "In this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss Deborah Franklin and her role in the founding of the United States of America.", "path": "deborah-franklin-intro/", "slug": "deborah-franklin-intro", "kind": "Video", "video_id": "kl7Xw2zk-Aw", "keywords": "", "youtube_id": "kl7Xw2zk-Aw", "readable_id": "deborah-franklin-intro"}, "t3MxJEbJN3k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t3MxJEbJN3k.mp4/t3MxJEbJN3k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t3MxJEbJN3k.mp4/t3MxJEbJN3k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t3MxJEbJN3k.m3u8/t3MxJEbJN3k.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-plasma-cell-dyscrasias/what-are-plasma-cell-dyscrasias/", "duration": 474, "id": "t3MxJEbJN3k", "title": "What are plasma cell dyscrasias?", "format": "mp4", "description": "", "slug": "what-are-plasma-cell-dyscrasias", "kind": "Video", "video_id": "t3MxJEbJN3k", "keywords": "", "youtube_id": "t3MxJEbJN3k", "readable_id": "what-are-plasma-cell-dyscrasias"}, "t5ry2rasWvI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t5ry2rasWvI.mp4/t5ry2rasWvI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t5ry2rasWvI.mp4/t5ry2rasWvI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t5ry2rasWvI.m3u8/t5ry2rasWvI.m3u8"}, "duration": 435, "id": "t5ry2rasWvI", "title": "Flipping and shifting radical functions", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/shifting-reflecting-functions/flipping-shifting-radical-functions/", "slug": "flipping-shifting-radical-functions", "kind": "Video", "video_id": "t5ry2rasWvI", "keywords": "", "youtube_id": "t5ry2rasWvI", "readable_id": "flipping-shifting-radical-functions"}, "MxiqyE2uMCo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MxiqyE2uMCo.mp4/MxiqyE2uMCo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MxiqyE2uMCo.mp4/MxiqyE2uMCo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MxiqyE2uMCo.m3u8/MxiqyE2uMCo.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-equation-of-a-line/equation-of-a-line-2/", "duration": 237, "id": "MxiqyE2uMCo", "title": "Finding a linear equation given a point and slope", "format": "mp4", "description": "Equation of a line 2", "slug": "equation-of-a-line-2", "kind": "Video", "video_id": "MxiqyE2uMCo", "keywords": "u13_l2_t2_we2, Equation, of, line, CC_8_EE_6, CC_8_F_3", "youtube_id": "MxiqyE2uMCo", "readable_id": "equation-of-a-line-2"}, "gFFvaLzhYew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gFFvaLzhYew.mp4/gFFvaLzhYew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gFFvaLzhYew.mp4/gFFvaLzhYew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gFFvaLzhYew.m3u8/gFFvaLzhYew.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/hair_dryer/what-is-inside-a-hairdryer-1-of-2/", "duration": 369, "id": "gFFvaLzhYew", "title": "What is inside a hair dryer? (1 of 2)", "format": "mp4", "description": "In this video we explore ground fault interrupt circuits and how they keep us safe.", "slug": "what-is-inside-a-hairdryer-1-of-2", "kind": "Video", "video_id": "gFFvaLzhYew", "keywords": "Hairdryer ground fault interrupter circuit", "youtube_id": "gFFvaLzhYew", "readable_id": "what-is-inside-a-hairdryer-1-of-2"}, "N9hXqzkH7YA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N9hXqzkH7YA.mp4/N9hXqzkH7YA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N9hXqzkH7YA.mp4/N9hXqzkH7YA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N9hXqzkH7YA.m3u8/N9hXqzkH7YA.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-has-landed/", "duration": 152, "id": "N9hXqzkH7YA", "title": "Curiosity has landed", "format": "mp4", "description": "", "slug": "curiosity-has-landed", "kind": "Video", "video_id": "N9hXqzkH7YA", "keywords": "", "youtube_id": "N9hXqzkH7YA", "readable_id": "curiosity-has-landed"}, "VXrn5HOQmHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VXrn5HOQmHQ.mp4/VXrn5HOQmHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VXrn5HOQmHQ.mp4/VXrn5HOQmHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VXrn5HOQmHQ.m3u8/VXrn5HOQmHQ.m3u8"}, "duration": 334, "id": "VXrn5HOQmHQ", "title": "Order doesn't matter when purely multiplying", "format": "mp4", "description": "Use pictures and practice problems to see commutativity in multiplication. \u00a0", "path": "order-doesn-t-matter-when-purely-multiplying/", "slug": "order-doesn-t-matter-when-purely-multiplying", "kind": "Video", "video_id": "VXrn5HOQmHQ", "keywords": "", "youtube_id": "VXrn5HOQmHQ", "readable_id": "order-doesn-t-matter-when-purely-multiplying"}, "6vRgqB0PSXE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6vRgqB0PSXE.mp4/6vRgqB0PSXE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6vRgqB0PSXE.mp4/6vRgqB0PSXE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6vRgqB0PSXE.m3u8/6vRgqB0PSXE.m3u8"}, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-angle-basics/naming-angles/", "duration": 71, "id": "6vRgqB0PSXE", "title": "Naming angles exercise example", "format": "mp4", "description": "Here's an example exercise in which we find the correct angle name(s).", "slug": "naming-angles", "kind": "Video", "video_id": "6vRgqB0PSXE", "keywords": "", "youtube_id": "6vRgqB0PSXE", "readable_id": "naming-angles"}, "4iUdgr_ccxk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4iUdgr_ccxk.mp4/4iUdgr_ccxk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4iUdgr_ccxk.mp4/4iUdgr_ccxk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4iUdgr_ccxk.m3u8/4iUdgr_ccxk.m3u8"}, "duration": 101, "id": "4iUdgr_ccxk", "title": "Analyzing proportional relationships in a graph", "format": "mp4", "description": "Let's use our knowledge of proportional relationships to interpret a graph that maps out the number of hours spent on computer games vs hours spent on homework. We know which one you spend more time on!", "path": "analyzing-and-identifying-proportional-relationships-ex2/", "slug": "analyzing-and-identifying-proportional-relationships-ex2", "kind": "Video", "video_id": "4iUdgr_ccxk", "keywords": "", "youtube_id": "4iUdgr_ccxk", "readable_id": "analyzing-and-identifying-proportional-relationships-ex2"}, "yvddTWa9ptU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yvddTWa9ptU.mp4/yvddTWa9ptU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yvddTWa9ptU.mp4/yvddTWa9ptU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yvddTWa9ptU.m3u8/yvddTWa9ptU.m3u8"}, "duration": 265, "id": "yvddTWa9ptU", "title": "Explicitly defining a series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/explicitly-defining-series/", "slug": "explicitly-defining-series", "kind": "Video", "video_id": "yvddTWa9ptU", "keywords": "", "youtube_id": "yvddTWa9ptU", "readable_id": "explicitly-defining-series"}, "n-ZCEXWdIMg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n-ZCEXWdIMg.mp4/n-ZCEXWdIMg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n-ZCEXWdIMg.mp4/n-ZCEXWdIMg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n-ZCEXWdIMg.m3u8/n-ZCEXWdIMg.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/american-art-wwii/adams-visualizing/", "duration": 85, "id": "n-ZCEXWdIMg", "title": "Ansel Adams: Visualizing a Photograph", "format": "mp4", "description": "Ansel Adams talks about seeing and feeling photography.\u00a0Love art?\u00a0Follow us on Google+", "slug": "adams-visualizing", "kind": "Video", "video_id": "n-ZCEXWdIMg", "keywords": "", "youtube_id": "n-ZCEXWdIMg", "readable_id": "adams-visualizing"}, "eaHzeFUxSYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eaHzeFUxSYc.mp4/eaHzeFUxSYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eaHzeFUxSYc.mp4/eaHzeFUxSYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eaHzeFUxSYc.m3u8/eaHzeFUxSYc.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-monty-hall/", "duration": 72, "id": "eaHzeFUxSYc", "title": "DLab: Monty Hall simulation", "format": "mp4", "description": "", "slug": "discovery-lab-monty-hall", "kind": "Video", "video_id": "eaHzeFUxSYc", "keywords": "Discovery Lab Monty Hall", "youtube_id": "eaHzeFUxSYc", "readable_id": "discovery-lab-monty-hall"}, "PMNIEfo6vZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PMNIEfo6vZY.mp4/PMNIEfo6vZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PMNIEfo6vZY.mp4/PMNIEfo6vZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PMNIEfo6vZY.m3u8/PMNIEfo6vZY.m3u8"}, "duration": 88, "id": "PMNIEfo6vZY", "title": "Glassmaking technique: Roman mold-blown glass", "format": "mp4", "description": "Mold-blown glass is forced against the inner surfaces of a mold and assumes its shape. Watch this ancient process (footage courtesy of Mark Taylor and David Hill-the Roman Glassmakers). Love art? Follow us on Google+", "path": "glassmaking-technique-roman-mold-blown-glass/", "slug": "glassmaking-technique-roman-mold-blown-glass", "kind": "Video", "video_id": "PMNIEfo6vZY", "keywords": "", "youtube_id": "PMNIEfo6vZY", "readable_id": "glassmaking-technique-roman-mold-blown-glass"}, "j2eKaxU-8kA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j2eKaxU-8kA.mp4/j2eKaxU-8kA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j2eKaxU-8kA.mp4/j2eKaxU-8kA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j2eKaxU-8kA.m3u8/j2eKaxU-8kA.m3u8"}, "path": "khan/humanities/history/history-survey/us-history/us-history-overview-3-wwii-to-vietnam/", "duration": 886, "id": "j2eKaxU-8kA", "title": "US History overview 3: WWII to Vietnam", "format": "mp4", "description": "World War II, Hitler, Cold War, Bay of Pigs, Cuban Missile Crisis and the Space Race", "slug": "us-history-overview-3-wwii-to-vietnam", "kind": "Video", "video_id": "j2eKaxU-8kA", "keywords": "World War II, Hitler, Cold War, Bay of Pigs", "youtube_id": "j2eKaxU-8kA", "readable_id": "us-history-overview-3-wwii-to-vietnam"}, "EHUlWm0kFTA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EHUlWm0kFTA.mp4/EHUlWm0kFTA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EHUlWm0kFTA.mp4/EHUlWm0kFTA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EHUlWm0kFTA.m3u8/EHUlWm0kFTA.m3u8"}, "duration": 423, "id": "EHUlWm0kFTA", "title": "Lipid and protein transport in the lymphatic system", "format": "mp4", "description": "Learn about a third function of the lymphatic system. See how it finds a sneaky way to get fats and proteins into your bloodstream. By Patrick van Nieuwenhuizen. ", "path": "khan/test-prep/nclex-rn/rn-lymphatic-system/rn-the-lymphatic-system/lipid-and-protein-transport-lymphatic-system/", "slug": "lipid-and-protein-transport-lymphatic-system", "kind": "Video", "video_id": "EHUlWm0kFTA", "keywords": "lipid, protein, lymphatic system", "youtube_id": "EHUlWm0kFTA", "readable_id": "lipid-and-protein-transport-lymphatic-system"}, "NXeZk1umylo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NXeZk1umylo.mp4/NXeZk1umylo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NXeZk1umylo.mp4/NXeZk1umylo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NXeZk1umylo.m3u8/NXeZk1umylo.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/margaret-cavendish-part-1/", "duration": 246, "id": "NXeZk1umylo", "title": "Early Modern: Margaret Cavendish part 1", "format": "mp4", "description": "In the first of two videos, Adela Deanova introduces Margaret Cavendish, an early modern English philosopher, and discusses the background to her critique of experimental philosophy. This video is a part of a series of videos coming from Project Vox (Duke), a project recovering the lost voices of women philosophers.\n\nSpeaker: Adela Deanova, Duke University\n\u00a0", "slug": "margaret-cavendish-part-1", "kind": "Video", "video_id": "NXeZk1umylo", "keywords": "", "youtube_id": "NXeZk1umylo", "readable_id": "margaret-cavendish-part-1"}, "v-pyuaThp-c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v-pyuaThp-c.mp4/v-pyuaThp-c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v-pyuaThp-c.mp4/v-pyuaThp-c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v-pyuaThp-c.m3u8/v-pyuaThp-c.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-class-connecting-dots/", "duration": 467, "id": "v-pyuaThp-c", "title": "Doodling in math: Connecting dots", "format": "mp4", "description": "Anti-parabola propoganda, plus musing on math class, cardioids, connect the dots, envelopes of lines, even a bit of origami.Extra points to a certain Andrea whose line-enveloped Hilbert curve inspired me to finish this video.", "slug": "doodling-in-math-class-connecting-dots", "kind": "Video", "video_id": "v-pyuaThp-c", "keywords": "mathematics, doodling, parabola, cardioid, conic section, hyperbola, ellipse, math, art", "youtube_id": "v-pyuaThp-c", "readable_id": "doodling-in-math-class-connecting-dots"}, "KQOiHKT46zk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KQOiHKT46zk.mp4/KQOiHKT46zk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KQOiHKT46zk.mp4/KQOiHKT46zk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KQOiHKT46zk.m3u8/KQOiHKT46zk.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/normative-and-descriptive-claims/", "duration": 256, "id": "KQOiHKT46zk", "title": "Fundamentals: Normative and descriptive claims", "format": "mp4", "description": "We humans are a chatty bunch--we talk A LOT. But each claim we make can be sorted neatly into one of two categories: it either describes something or it evaluates something (philosophers call these descriptive and normative claims respectively). In this video\u00a0Kelley\u00a0illustrates the descriptive/normative distinction, and its importance, with the use of ample examples\n\nSpeaker: Kelley Schiffman", "slug": "normative-and-descriptive-claims", "kind": "Video", "video_id": "KQOiHKT46zk", "keywords": "", "youtube_id": "KQOiHKT46zk", "readable_id": "normative-and-descriptive-claims"}, "WBNJWACE8sQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WBNJWACE8sQ.mp4/WBNJWACE8sQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WBNJWACE8sQ.mp4/WBNJWACE8sQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WBNJWACE8sQ.m3u8/WBNJWACE8sQ.m3u8"}, "duration": 440, "id": "WBNJWACE8sQ", "title": "Josef Herman's personal sketches of Wales", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nAt the climax of World War II, Polish-Jewish artist Josef Herman finally left his war-torn home to seek refuge abroad. In 1944, he settled in the South Wales mining town of Ystradgynlais which would be his home for years to come and became deeply involved with the local community. Every morning he would sketch the miners and their families, creating pictures that capture the grandeur and sadness of the working man, the dignity of manual labour, and the relentless difficulty faced by the miners each and every day. Take a look at how Herman\u2019s sketches and archival drawings bring his time in Ystradgynlais to life.\nBeing an exile and a refugee, do you think documentation and archiving played a special role in Josef Herman\u2019s practice as an artist? Would being so far from home influence his relationship with documenting the things around him?\n\nExplore the sketches in Josef Herman's archive collection here.\n\n\n", "path": "josef-herman-sketches-of-wales/", "slug": "josef-herman-sketches-of-wales", "kind": "Video", "video_id": "WBNJWACE8sQ", "keywords": "Tate", "youtube_id": "WBNJWACE8sQ", "readable_id": "josef-herman-sketches-of-wales"}, "wLpOw8M7ucE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wLpOw8M7ucE.mp4/wLpOw8M7ucE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wLpOw8M7ucE.mp4/wLpOw8M7ucE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wLpOw8M7ucE.m3u8/wLpOw8M7ucE.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/new-topic-2014-10-02t171114060z/room-1540-1650/", "duration": 208, "id": "wLpOw8M7ucE", "title": "Room: 1540-1650", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Tim Batchelor explores the period 1540-1650.\n\nLearn more about the art featured in this video:\n- Marcus Gheeraerts II, Portrait of Captain Thomas Lee, 1594\n- Sir Nathaniel Bacon, Cookmaid with Still Life of Vegetables and Fruit, 1620\u20135\n- David Des Granges, The Saltonstall Family, 1636\u20137", "slug": "room-1540-1650", "kind": "Video", "video_id": "wLpOw8M7ucE", "keywords": "Tate", "youtube_id": "wLpOw8M7ucE", "readable_id": "room-1540-1650"}, "NqR_dtZu4Mo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NqR_dtZu4Mo.mp4/NqR_dtZu4Mo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NqR_dtZu4Mo.mp4/NqR_dtZu4Mo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NqR_dtZu4Mo.m3u8/NqR_dtZu4Mo.m3u8"}, "duration": 797, "id": "NqR_dtZu4Mo", "title": "Collective learning", "format": "mp4", "description": "How symbolic language drives collective learning and how this is one of the truly differentiating aspects of human beings relative to the rest of the animal kingdom", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/collective-learning/", "slug": "collective-learning", "kind": "Video", "video_id": "NqR_dtZu4Mo", "keywords": "big, history, language", "youtube_id": "NqR_dtZu4Mo", "readable_id": "collective-learning"}, "bLQBbA8yh7c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bLQBbA8yh7c.mp4/bLQBbA8yh7c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bLQBbA8yh7c.mp4/bLQBbA8yh7c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bLQBbA8yh7c.m3u8/bLQBbA8yh7c.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds/hedge-funds-venture-capital-and-private-equity/", "duration": 174, "id": "bLQBbA8yh7c", "title": "Hedge funds, venture capital, and private equity", "format": "mp4", "description": "Similarities in compensation structure for hedge funds, venture capital firms, and private equity investors", "slug": "hedge-funds-venture-capital-and-private-equity", "kind": "Video", "video_id": "bLQBbA8yh7c", "keywords": "hedge, fund, private, equity, venture, capital, finance", "youtube_id": "bLQBbA8yh7c", "readable_id": "hedge-funds-venture-capital-and-private-equity"}, "pfnX-zgXHBM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pfnX-zgXHBM.mp4/pfnX-zgXHBM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pfnX-zgXHBM.mp4/pfnX-zgXHBM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pfnX-zgXHBM.m3u8/pfnX-zgXHBM.m3u8"}, "path": "khan/humanities/renaissance-reformation/mannerism1/parmigianino-self-portrait-in-a-convex-mirror-1523-24/", "duration": 173, "id": "pfnX-zgXHBM", "title": "Parmigianino, Self-Portrait in a Convex Mirror", "format": "mp4", "description": "Francesco Mazzola, called Parmigianino, Self-Portrait in a Convex Mirror, 1523-24 (Kunsthistorisches Museum, Vienna) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "parmigianino-self-portrait-in-a-convex-mirror-1523-24", "kind": "Video", "video_id": "pfnX-zgXHBM", "keywords": "", "youtube_id": "pfnX-zgXHBM", "readable_id": "parmigianino-self-portrait-in-a-convex-mirror-1523-24"}, "arY-EUZDNfk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/arY-EUZDNfk.mp4/arY-EUZDNfk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/arY-EUZDNfk.mp4/arY-EUZDNfk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/arY-EUZDNfk.m3u8/arY-EUZDNfk.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/constructing-numeric-expressions/constructing-numerical-expressions-example/", "duration": 82, "id": "arY-EUZDNfk", "title": "Constructing numerical expressions", "format": "mp4", "description": "This word problem can be solved by constructing a numerical expression. Can you help? We bet you can!", "slug": "constructing-numerical-expressions-example", "kind": "Video", "video_id": "arY-EUZDNfk", "keywords": "", "youtube_id": "arY-EUZDNfk", "readable_id": "constructing-numerical-expressions-example"}, "4jhG7g5qgO0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4jhG7g5qgO0.mp4/4jhG7g5qgO0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4jhG7g5qgO0.mp4/4jhG7g5qgO0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4jhG7g5qgO0.m3u8/4jhG7g5qgO0.m3u8"}, "duration": 170, "id": "4jhG7g5qgO0", "title": "Exponent properties 5", "format": "mp4", "description": "Exponent Properties 5", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/exponent-properties-5/", "slug": "exponent-properties-5", "kind": "Video", "video_id": "4jhG7g5qgO0", "keywords": "u11_l1_t3_we1, Exponent, Properties, CC_6_EE_1, CC_6_EE_2_c, CC_8_EE_1", "youtube_id": "4jhG7g5qgO0", "readable_id": "exponent-properties-5"}, "iBge6zxqWv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iBge6zxqWv8.mp4/iBge6zxqWv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iBge6zxqWv8.mp4/iBge6zxqWv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iBge6zxqWv8.m3u8/iBge6zxqWv8.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/room-1930/", "duration": 180, "id": "iBge6zxqWv8", "title": "Room: 1930s", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Chris Stephens explores the 1930s.\n\nLearn more about the art featured in this video:\n-\u00a0Leon Underwood, Totem to the Artist,\u00a01925\u201330\n- Christopher Wood, Zebra and Parachute, 1930\n-\u00a0Julian Trevelyan, The Potteries,\u00a01938", "slug": "room-1930", "kind": "Video", "video_id": "iBge6zxqWv8", "keywords": "Tate", "youtube_id": "iBge6zxqWv8", "readable_id": "room-1930"}, "Xw1CMTXQGPY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xw1CMTXQGPY.mp4/Xw1CMTXQGPY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xw1CMTXQGPY.mp4/Xw1CMTXQGPY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xw1CMTXQGPY.m3u8/Xw1CMTXQGPY.m3u8"}, "duration": 173, "id": "Xw1CMTXQGPY", "title": "Naming two isobutlyl groups systematically", "format": "mp4", "description": "", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/systematic-naming-of-isobutyl-groups/", "slug": "systematic-naming-of-isobutyl-groups", "kind": "Video", "video_id": "Xw1CMTXQGPY", "keywords": "", "youtube_id": "Xw1CMTXQGPY", "readable_id": "systematic-naming-of-isobutyl-groups"}, "DfhhHr1KQic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DfhhHr1KQic.mp4/DfhhHr1KQic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DfhhHr1KQic.mp4/DfhhHr1KQic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DfhhHr1KQic.m3u8/DfhhHr1KQic.m3u8"}, "duration": 757, "id": "DfhhHr1KQic", "title": "Complex animals: Annelids & arthropods", "format": "mp4", "description": "Hank continues our exploration of animal phyla with the more complexly organized annelida and arthropoda, and a biolography on insects.", "path": "crash-course-biology-122/", "slug": "crash-course-biology-122", "kind": "Video", "video_id": "DfhhHr1KQic", "keywords": "", "youtube_id": "DfhhHr1KQic", "readable_id": "crash-course-biology-122"}, "FqGLqdk9Sr0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FqGLqdk9Sr0.mp4/FqGLqdk9Sr0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FqGLqdk9Sr0.mp4/FqGLqdk9Sr0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FqGLqdk9Sr0.m3u8/FqGLqdk9Sr0.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/1942-tide-turning-in-world-war-ii-in-europe/", "duration": 312, "id": "FqGLqdk9Sr0", "title": "1942 Tide turning in World War II in Europe", "format": "mp4", "description": "In 1942 we see the Axis get pushed back in North Africa and get bogged down in the Soviet Union. The tide of war turns in favor of the Allies.", "slug": "1942-tide-turning-in-world-war-ii-in-europe", "kind": "Video", "video_id": "FqGLqdk9Sr0", "keywords": "", "youtube_id": "FqGLqdk9Sr0", "readable_id": "1942-tide-turning-in-world-war-ii-in-europe"}, "quBogKF8atM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/quBogKF8atM.mp4/quBogKF8atM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/quBogKF8atM.mp4/quBogKF8atM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/quBogKF8atM.m3u8/quBogKF8atM.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-27-theories-of-evolution/", "duration": 119, "id": "quBogKF8atM", "title": "27 Theories of evolution", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-27-theories-of-evolution", "kind": "Video", "video_id": "quBogKF8atM", "keywords": "", "youtube_id": "quBogKF8atM", "readable_id": "sat-27-theories-of-evolution"}, "eOp-GTRP-to": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eOp-GTRP-to.mp4/eOp-GTRP-to.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eOp-GTRP-to.mp4/eOp-GTRP-to.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eOp-GTRP-to.m3u8/eOp-GTRP-to.m3u8"}, "path": "khan/humanities/history/crashcourse-worldhistory/so-thats-where-that-comes-from-2/crash-course-world-history-10/", "duration": 699, "id": "eOp-GTRP-to", "title": "The Roman Empire. Or Republic. Or... which was it?", "format": "mp4", "description": "In which John Green explores exactly when Rome went from being the Roman Republic to the Roman Empire. Here's a hint: it had something to do with Julius Caesar, but maybe less than you think. Find out how Caesar came to rule the empire, what led to him getting stabbed 23 times on the floor of the senate, and what happened in the scramble for power after his assassination. John covers Rome's transition from city-state to dominant force in the Mediterranean in less than 12 minutes. Well, Rome's expansion took hundreds of years, he just explains it in under 12 minutes. The senate, the people, Rome, the Cesarean section, the Julian calendar and our old friend Pompey all make appearances, but NOT the Caesar Salad, as Julius had nothing to do with it.", "slug": "crash-course-world-history-10", "kind": "Video", "video_id": "eOp-GTRP-to", "keywords": "crash course", "youtube_id": "eOp-GTRP-to", "readable_id": "crash-course-world-history-10"}, "0eWm-LY23W0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0eWm-LY23W0.mp4/0eWm-LY23W0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0eWm-LY23W0.mp4/0eWm-LY23W0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0eWm-LY23W0.m3u8/0eWm-LY23W0.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/feel-for-equations-and-inequalit/dependent-and-independent-variables-exercise-example-2/", "duration": 60, "id": "0eWm-LY23W0", "title": "Dependent and independent variables exercise: graphing the equation", "format": "mp4", "description": "It's helpful to express an equation on a graph where we plot at least 2 points. Watch and we'll show you.", "slug": "dependent-and-independent-variables-exercise-example-2", "kind": "Video", "video_id": "0eWm-LY23W0", "keywords": "", "youtube_id": "0eWm-LY23W0", "readable_id": "dependent-and-independent-variables-exercise-example-2"}, "0A7RR0oy2ho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0A7RR0oy2ho.mp4/0A7RR0oy2ho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0A7RR0oy2ho.mp4/0A7RR0oy2ho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0A7RR0oy2ho.m3u8/0A7RR0oy2ho.m3u8"}, "duration": 658, "id": "0A7RR0oy2ho", "title": "Introduction to conic sections", "format": "mp4", "description": "What are conic sections and why are they called \"conic sections\"?", "path": "khan/math/algebra2/conics_precalc/conic_section_intro/introduction-to-conic-sections/", "slug": "introduction-to-conic-sections", "kind": "Video", "video_id": "0A7RR0oy2ho", "keywords": "algebra, conic, sections, parabola, circle, ellipse, hyperbola", "youtube_id": "0A7RR0oy2ho", "readable_id": "introduction-to-conic-sections"}, "CGOIJdBXQno": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CGOIJdBXQno.mp4/CGOIJdBXQno.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CGOIJdBXQno.mp4/CGOIJdBXQno.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CGOIJdBXQno.m3u8/CGOIJdBXQno.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-19-selling-stock/", "duration": 52, "id": "CGOIJdBXQno", "title": "19 Selling stock", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-19-selling-stock", "kind": "Video", "video_id": "CGOIJdBXQno", "keywords": "", "youtube_id": "CGOIJdBXQno", "readable_id": "sat-19-selling-stock"}, "qVn_Lfec-Ac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qVn_Lfec-Ac.mp4/qVn_Lfec-Ac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qVn_Lfec-Ac.mp4/qVn_Lfec-Ac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qVn_Lfec-Ac.m3u8/qVn_Lfec-Ac.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/area-polar-graphs/formula-area-polar-graph/", "duration": 391, "id": "qVn_Lfec-Ac", "title": "Area enclosed by polar graph formula intuition", "format": "mp4", "description": "", "slug": "formula-area-polar-graph", "kind": "Video", "video_id": "qVn_Lfec-Ac", "keywords": "", "youtube_id": "qVn_Lfec-Ac", "readable_id": "formula-area-polar-graph"}, "Xl724v0CU7E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xl724v0CU7E.mp4/Xl724v0CU7E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xl724v0CU7E.mp4/Xl724v0CU7E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xl724v0CU7E.m3u8/Xl724v0CU7E.m3u8"}, "duration": 250, "id": "Xl724v0CU7E", "title": "Approximating with powers of 10", "format": "mp4", "description": "Learn how to approximate how much larger the world population was than the US population in 2014.", "path": "approximating-with-powers-of-10/", "slug": "approximating-with-powers-of-10", "kind": "Video", "video_id": "Xl724v0CU7E", "keywords": "", "youtube_id": "Xl724v0CU7E", "readable_id": "approximating-with-powers-of-10"}, "o_Vt7J08PE4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o_Vt7J08PE4.mp4/o_Vt7J08PE4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o_Vt7J08PE4.mp4/o_Vt7J08PE4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o_Vt7J08PE4.m3u8/o_Vt7J08PE4.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/writing-expressions-tutorial/writing-expressions-3-exercise-example-2/", "duration": 80, "id": "o_Vt7J08PE4", "title": "Writing algebraic expressions word problem example 2", "format": "mp4", "description": "We're writing an expression to answer a word problem about butter. Could there be a better reason to do this?", "slug": "writing-expressions-3-exercise-example-2", "kind": "Video", "video_id": "o_Vt7J08PE4", "keywords": "", "youtube_id": "o_Vt7J08PE4", "readable_id": "writing-expressions-3-exercise-example-2"}, "TZ1CRFgBK4o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TZ1CRFgBK4o.mp4/TZ1CRFgBK4o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TZ1CRFgBK4o.mp4/TZ1CRFgBK4o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TZ1CRFgBK4o.m3u8/TZ1CRFgBK4o.m3u8"}, "duration": 273, "id": "TZ1CRFgBK4o", "title": "Khan Academy at Summit Public Schools", "format": "mp4", "description": "", "path": "summit/", "slug": "summit", "kind": "Video", "video_id": "TZ1CRFgBK4o", "keywords": "Summit", "youtube_id": "TZ1CRFgBK4o", "readable_id": "summit"}, "UdHgWK13x5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UdHgWK13x5I.mp4/UdHgWK13x5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UdHgWK13x5I.mp4/UdHgWK13x5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UdHgWK13x5I.m3u8/UdHgWK13x5I.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/linear-algebra-transpose-of-a-matrix-product/", "duration": 530, "id": "UdHgWK13x5I", "title": "Transpose of a matrix product", "format": "mp4", "description": "Taking the transpose of the product of two matrices", "slug": "linear-algebra-transpose-of-a-matrix-product", "kind": "Video", "video_id": "UdHgWK13x5I", "keywords": "transpose, matrix", "youtube_id": "UdHgWK13x5I", "readable_id": "linear-algebra-transpose-of-a-matrix-product"}, "WjfWCyEt07M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WjfWCyEt07M.mp4/WjfWCyEt07M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WjfWCyEt07M.mp4/WjfWCyEt07M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WjfWCyEt07M.m3u8/WjfWCyEt07M.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-9/", "duration": 94, "id": "WjfWCyEt07M", "title": "9 Perfect squares in set", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-9", "kind": "Video", "video_id": "WjfWCyEt07M", "keywords": "", "youtube_id": "WjfWCyEt07M", "readable_id": "sat-2010-may-6-9"}, "dzMvqJMLy9c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dzMvqJMLy9c.mp4/dzMvqJMLy9c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dzMvqJMLy9c.mp4/dzMvqJMLy9c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dzMvqJMLy9c.m3u8/dzMvqJMLy9c.m3u8"}, "path": "khan/math/algebra2/exponential_and_logarithmic_func/continuous_compounding/compound-interest-and-e-part-2/", "duration": 614, "id": "dzMvqJMLy9c", "title": "Compound interest and e (part 2)", "format": "mp4", "description": "Compounding 100% annual interest continuously over a year converges to e (2.71...)", "slug": "compound-interest-and-e-part-2", "kind": "Video", "video_id": "dzMvqJMLy9c", "keywords": "Continuously, Compounding, interest, finance, math, limit", "youtube_id": "dzMvqJMLy9c", "readable_id": "compound-interest-and-e-part-2"}, "XwtyQsCLnEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XwtyQsCLnEE.mp4/XwtyQsCLnEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XwtyQsCLnEE.mp4/XwtyQsCLnEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XwtyQsCLnEE.m3u8/XwtyQsCLnEE.m3u8"}, "duration": 495, "id": "XwtyQsCLnEE", "title": "Using the focus and directrix to find the equation of a parabola", "format": "mp4", "description": "", "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/using-the-focus-and-directrix-to-find-the-equation-of-a-parabola/", "slug": "using-the-focus-and-directrix-to-find-the-equation-of-a-parabola", "kind": "Video", "video_id": "XwtyQsCLnEE", "keywords": "", "youtube_id": "XwtyQsCLnEE", "readable_id": "using-the-focus-and-directrix-to-find-the-equation-of-a-parabola"}, "BuqcKpe5ZQs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BuqcKpe5ZQs.mp4/BuqcKpe5ZQs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BuqcKpe5ZQs.mp4/BuqcKpe5ZQs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BuqcKpe5ZQs.m3u8/BuqcKpe5ZQs.m3u8"}, "duration": 990, "id": "BuqcKpe5ZQs", "title": "Compositions of linear transformations 2", "format": "mp4", "description": "Providing the motivation for definition of matrix products", "path": "khan/math/linear-algebra/matrix_transformations/composition_of_transformations/compositions-of-linear-transformations-2/", "slug": "compositions-of-linear-transformations-2", "kind": "Video", "video_id": "BuqcKpe5ZQs", "keywords": "matrix, products, composition", "youtube_id": "BuqcKpe5ZQs", "readable_id": "compositions-of-linear-transformations-2"}, "VZer0w7foLg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VZer0w7foLg.mp4/VZer0w7foLg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VZer0w7foLg.mp4/VZer0w7foLg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VZer0w7foLg.m3u8/VZer0w7foLg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/the-basal-ganglia-details-of-the-indirect-pathway/", "duration": 506, "id": "VZer0w7foLg", "title": "The basal ganglia - Details of the indirect pathway", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "the-basal-ganglia-details-of-the-indirect-pathway", "kind": "Video", "video_id": "VZer0w7foLg", "keywords": "", "youtube_id": "VZer0w7foLg", "readable_id": "the-basal-ganglia-details-of-the-indirect-pathway"}, "wYGKRP0gD3I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wYGKRP0gD3I.mp4/wYGKRP0gD3I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wYGKRP0gD3I.mp4/wYGKRP0gD3I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wYGKRP0gD3I.m3u8/wYGKRP0gD3I.m3u8"}, "duration": 206, "id": "wYGKRP0gD3I", "title": "GMAT: Math 31", "format": "mp4", "description": "161-162, pg. 174", "path": "khan/test-prep/gmat/problem-solving/gmat-math-31/", "slug": "gmat-math-31", "kind": "Video", "video_id": "wYGKRP0gD3I", "keywords": "gmat, math, problem, solving", "youtube_id": "wYGKRP0gD3I", "readable_id": "gmat-math-31"}, "K38zMmtjxEw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K38zMmtjxEw.mp4/K38zMmtjxEw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K38zMmtjxEw.mp4/K38zMmtjxEw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K38zMmtjxEw.m3u8/K38zMmtjxEw.m3u8"}, "duration": 274, "id": "K38zMmtjxEw", "title": "Solutions to three variable system", "format": "mp4", "description": " Solutions to Three Variable System", "path": "khan/math/algebra2/systems_eq_ineq/fancier_systems_precalc/solutions-to-three-variable-system/", "slug": "solutions-to-three-variable-system", "kind": "Video", "video_id": "K38zMmtjxEw", "keywords": "u14_l3_t1_we4, Solutions, to, Three, Variable, System, CC_39336_A-REI_6", "youtube_id": "K38zMmtjxEw", "readable_id": "solutions-to-three-variable-system"}, "k-f5VectwnE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k-f5VectwnE.mp4/k-f5VectwnE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k-f5VectwnE.mp4/k-f5VectwnE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k-f5VectwnE.m3u8/k-f5VectwnE.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-1/", "duration": 57, "id": "k-f5VectwnE", "title": "1 Solving for 2x", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-1", "kind": "Video", "video_id": "k-f5VectwnE", "keywords": "", "youtube_id": "k-f5VectwnE", "readable_id": "sat-getting-ready-2-1"}, "uvgru6FcyxU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uvgru6FcyxU.mp4/uvgru6FcyxU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uvgru6FcyxU.mp4/uvgru6FcyxU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uvgru6FcyxU.m3u8/uvgru6FcyxU.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/change_of_basis/linear-algebra-coordinates-with-respect-to-a-basis/", "duration": 968, "id": "uvgru6FcyxU", "title": "Coordinates with respect to a basis", "format": "mp4", "description": "Understanding alternate coordinate systems", "slug": "linear-algebra-coordinates-with-respect-to-a-basis", "kind": "Video", "video_id": "uvgru6FcyxU", "keywords": "basis, coordinates", "youtube_id": "uvgru6FcyxU", "readable_id": "linear-algebra-coordinates-with-respect-to-a-basis"}, "dvSa_tx04hw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dvSa_tx04hw.mp4/dvSa_tx04hw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dvSa_tx04hw.mp4/dvSa_tx04hw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dvSa_tx04hw.m3u8/dvSa_tx04hw.m3u8"}, "duration": 973, "id": "dvSa_tx04hw", "title": "Hypothesis test comparing population proportions", "format": "mp4", "description": "Hypothesis Test Comparing Population Proportions", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/hypothesis-test-comparing-population-proportions/", "slug": "hypothesis-test-comparing-population-proportions", "kind": "Video", "video_id": "dvSa_tx04hw", "keywords": "Hypothesis, Test, Comparing, Population, Proportions, CC_7_SP_3, CC_7_SP_4", "youtube_id": "dvSa_tx04hw", "readable_id": "hypothesis-test-comparing-population-proportions"}, "iNBN4PuG_fo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iNBN4PuG_fo.mp4/iNBN4PuG_fo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iNBN4PuG_fo.mp4/iNBN4PuG_fo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iNBN4PuG_fo.m3u8/iNBN4PuG_fo.m3u8"}, "duration": 444, "id": "iNBN4PuG_fo", "title": "Curiosity: Searching for carbon", "format": "mp4", "description": "The Curiosity rover is seeking environments on Mars that could support life\u2014or could have in the past. Earlier Mars missions found signs of water, but not organic carbon\u2014life\u2019s essential building block. Watch the Curiosity team prepare to hunt for carbon at Mount Sharp, which holds a geologic record hundreds of millions of years old.", "path": "curiosity-searching-for-carbon/", "slug": "curiosity-searching-for-carbon", "kind": "Video", "video_id": "iNBN4PuG_fo", "keywords": "", "youtube_id": "iNBN4PuG_fo", "readable_id": "curiosity-searching-for-carbon"}, "NUu0_Zn55yM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NUu0_Zn55yM.mp4/NUu0_Zn55yM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NUu0_Zn55yM.mp4/NUu0_Zn55yM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NUu0_Zn55yM.m3u8/NUu0_Zn55yM.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/smithson-spiral-jetty-1970/", "duration": 225, "id": "NUu0_Zn55yM", "title": "Smithson, Spiral Jetty", "format": "mp4", "description": "Robert Smithson, Spiral Jetty, 1970 (Great Salt Lake, Utah) Speakers: Dr. Beth Harris and Dr. Shana Gallagher-Lindsay http://www.smarthistory.org/earth-artsmithsons-spiral-jetty.html", "slug": "smithson-spiral-jetty-1970", "kind": "Video", "video_id": "NUu0_Zn55yM", "keywords": "Robert Smithson, Spiral Jetty, Earth Art, Smarthistory, Art History", "youtube_id": "NUu0_Zn55yM", "readable_id": "smithson-spiral-jetty-1970"}, "b2rwWECbEHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b2rwWECbEHg.mp4/b2rwWECbEHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b2rwWECbEHg.mp4/b2rwWECbEHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b2rwWECbEHg.m3u8/b2rwWECbEHg.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/curiosity-s-cameras/", "duration": 215, "id": "b2rwWECbEHg", "title": "Rover vision", "format": "mp4", "description": "", "slug": "curiosity-s-cameras", "kind": "Video", "video_id": "b2rwWECbEHg", "keywords": "", "youtube_id": "b2rwWECbEHg", "readable_id": "curiosity-s-cameras"}, "vOPuAPCioE4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vOPuAPCioE4.mp4/vOPuAPCioE4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vOPuAPCioE4.mp4/vOPuAPCioE4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vOPuAPCioE4.m3u8/vOPuAPCioE4.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-myeloproliferative-disorders/what-is-polycythemia-vera/", "duration": 635, "id": "vOPuAPCioE4", "title": "What is polycythemia vera?", "format": "mp4", "description": "Learn to recognize the symptoms of polycythemia vera as well as how to diagnosis and treat it. By Raja Narayan.\n\nVisit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-is-polycythemia-vera", "kind": "Video", "video_id": "vOPuAPCioE4", "keywords": "", "youtube_id": "vOPuAPCioE4", "readable_id": "what-is-polycythemia-vera"}, "tqqVOWm9YsU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tqqVOWm9YsU.mp4/tqqVOWm9YsU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tqqVOWm9YsU.mp4/tqqVOWm9YsU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tqqVOWm9YsU.m3u8/tqqVOWm9YsU.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/linear-algebra-rank-a-rank-transpose-of-a/", "duration": 673, "id": "tqqVOWm9YsU", "title": "rank(a) = rank(transpose of a)", "format": "mp4", "description": "Rank(A) = Rank(transpose of A)", "slug": "linear-algebra-rank-a-rank-transpose-of-a", "kind": "Video", "video_id": "tqqVOWm9YsU", "keywords": "rank, transpose", "youtube_id": "tqqVOWm9YsU", "readable_id": "linear-algebra-rank-a-rank-transpose-of-a"}, "qdf2CuMGdKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qdf2CuMGdKs.mp4/qdf2CuMGdKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qdf2CuMGdKs.mp4/qdf2CuMGdKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qdf2CuMGdKs.m3u8/qdf2CuMGdKs.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/othogonal_complements/linear-alg-rowspace-solution-to-ax-b-example/", "duration": 1178, "id": "qdf2CuMGdKs", "title": "Rowspace solution to Ax = b example", "format": "mp4", "description": "Visualizing the rowspace solution to Ax=b", "slug": "linear-alg-rowspace-solution-to-ax-b-example", "kind": "Video", "video_id": "qdf2CuMGdKs", "keywords": "rowspace, columnspace, solution", "youtube_id": "qdf2CuMGdKs", "readable_id": "linear-alg-rowspace-solution-to-ax-b-example"}, "jPrEKz1rAno": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jPrEKz1rAno.mp4/jPrEKz1rAno.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jPrEKz1rAno.mp4/jPrEKz1rAno.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jPrEKz1rAno.m3u8/jPrEKz1rAno.m3u8"}, "path": "khan/college-admissions/applying-to-college/introduction-atc/overview-applying-to-college/", "duration": 84, "id": "jPrEKz1rAno", "title": "Overview: Applying to college", "format": "mp4", "description": "", "slug": "overview-applying-to-college", "kind": "Video", "video_id": "jPrEKz1rAno", "keywords": "", "youtube_id": "jPrEKz1rAno", "readable_id": "overview-applying-to-college"}, "XChok8XlF90": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XChok8XlF90.mp4/XChok8XlF90.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XChok8XlF90.mp4/XChok8XlF90.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XChok8XlF90.m3u8/XChok8XlF90.m3u8"}, "duration": 251, "id": "XChok8XlF90", "title": "Simplifying rational expressions 1", "format": "mp4", "description": "U11_L1_T1_we1 Simplifying Rational Expressions 1", "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying-rational-expressions-1/", "slug": "simplifying-rational-expressions-1", "kind": "Video", "video_id": "XChok8XlF90", "keywords": "U11_L1_T1_we1, Simplifying, Rational, Expressions, CC_39336_A-APR_6, CC_39336_A-APR_7, CC_39336_A-CED_1, CC_39336_A-REI_2, CC_39336_A-SSE_2", "youtube_id": "XChok8XlF90", "readable_id": "simplifying-rational-expressions-1"}, "Am-a5x9DGjg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Am-a5x9DGjg.mp4/Am-a5x9DGjg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Am-a5x9DGjg.mp4/Am-a5x9DGjg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Am-a5x9DGjg.m3u8/Am-a5x9DGjg.m3u8"}, "path": "khan/math/recreational-math/vi-hart/mobius-strips/math-improv-fruit-by-the-foot/", "duration": 292, "id": "Am-a5x9DGjg", "title": "Math improv: Fruit by the foot", "format": "mp4", "description": "Playing mathematically with fruits by the foot.\nMobius Story, Wind and Mr. Ug: http://www.youtube.com/watch?v=4mdEsouIXGM\nMobius Candy buttons: http://www.youtube.com/watch?v=OOLIB3cjFqw\nMobius Music box: http://www.youtube.com/watch?v=3iMI_uOM_fY\n\nDoodling Snakes + Graphs (Useful for drawing Borromean rings): http://youtu.be/heKK95DAKms", "slug": "math-improv-fruit-by-the-foot", "kind": "Video", "video_id": "Am-a5x9DGjg", "keywords": "mathematics, mobius strip, frieze pattern, borromean rings, symmetry, fruit by the foot", "youtube_id": "Am-a5x9DGjg", "readable_id": "math-improv-fruit-by-the-foot"}, "1xQTlp0hscs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1xQTlp0hscs.mp4/1xQTlp0hscs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1xQTlp0hscs.mp4/1xQTlp0hscs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1xQTlp0hscs.m3u8/1xQTlp0hscs.m3u8"}, "duration": 235, "id": "1xQTlp0hscs", "title": "The Painting Techniques of Franz Kline", "format": "mp4", "description": "Learn how Franz Kline turned small sketches done on the pages of a phone book into large, gestural abstractions. To experiment on your own, take our online studio course Materials and Techniques of Postwar Abstract Painting.", "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/moma-painting-technique-kline/", "slug": "moma-painting-technique-kline", "kind": "Video", "video_id": "1xQTlp0hscs", "keywords": "", "youtube_id": "1xQTlp0hscs", "readable_id": "moma-painting-technique-kline"}, "aP1KZzgR_dg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aP1KZzgR_dg.mp4/aP1KZzgR_dg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aP1KZzgR_dg.mp4/aP1KZzgR_dg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aP1KZzgR_dg.m3u8/aP1KZzgR_dg.m3u8"}, "duration": 697, "id": "aP1KZzgR_dg", "title": "The nervous system", "format": "mp4", "description": "Hank begins a series of videos on organ systems with a look at the nervous system and all of the things that it is responsible for in the body.", "path": "crash-course-biology-125/", "slug": "crash-course-biology-125", "kind": "Video", "video_id": "aP1KZzgR_dg", "keywords": "", "youtube_id": "aP1KZzgR_dg", "readable_id": "crash-course-biology-125"}, "clL2jLXtX4I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/clL2jLXtX4I.mp4/clL2jLXtX4I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/clL2jLXtX4I.mp4/clL2jLXtX4I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/clL2jLXtX4I.m3u8/clL2jLXtX4I.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/stokes-example-part-4-curl-and-final-answer/", "duration": 414, "id": "clL2jLXtX4I", "title": "Stokes example part 4: Curl and final answer", "format": "mp4", "description": "Finding the curl of the vector field and then evaluating the double integral in the parameter domain", "slug": "stokes-example-part-4-curl-and-final-answer", "kind": "Video", "video_id": "clL2jLXtX4I", "keywords": "stokes', theorem, vector, calculus", "youtube_id": "clL2jLXtX4I", "readable_id": "stokes-example-part-4-curl-and-final-answer"}, "dNp7vErqlaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dNp7vErqlaA.mp4/dNp7vErqlaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dNp7vErqlaA.mp4/dNp7vErqlaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dNp7vErqlaA.m3u8/dNp7vErqlaA.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/intro-to-cell-division/fertilization-haploid-diploid-gamete-zygote-homologous/", "duration": 627, "id": "dNp7vErqlaA", "title": "Fertilization terminology: gametes, zygotes, haploid and diploid", "format": "mp4", "description": "", "slug": "fertilization-haploid-diploid-gamete-zygote-homologous", "kind": "Video", "video_id": "dNp7vErqlaA", "keywords": "", "youtube_id": "dNp7vErqlaA", "readable_id": "fertilization-haploid-diploid-gamete-zygote-homologous"}, "lxjmR4pYIVU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lxjmR4pYIVU.mp4/lxjmR4pYIVU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lxjmR4pYIVU.mp4/lxjmR4pYIVU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lxjmR4pYIVU.m3u8/lxjmR4pYIVU.m3u8"}, "duration": 282, "id": "lxjmR4pYIVU", "title": "Finding common denominators", "format": "mp4", "description": "Finding Common Denominators", "path": "khan/math/pre-algebra/fractions-pre-alg/equivalent-fractions-pre-alg/finding-common-denominators/", "slug": "finding-common-denominators", "kind": "Video", "video_id": "lxjmR4pYIVU", "keywords": "U02_l3_t1_we7, Finding, Common, Denominators", "youtube_id": "lxjmR4pYIVU", "readable_id": "finding-common-denominators"}, "KyEk35-Uwh0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KyEk35-Uwh0.mp4/KyEk35-Uwh0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KyEk35-Uwh0.mp4/KyEk35-Uwh0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KyEk35-Uwh0.m3u8/KyEk35-Uwh0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/mouth/", "duration": 450, "id": "KyEk35-Uwh0", "title": "Mouth", "format": "mp4", "description": "", "slug": "mouth", "kind": "Video", "video_id": "KyEk35-Uwh0", "keywords": "MCAT", "youtube_id": "KyEk35-Uwh0", "readable_id": "mouth"}, "sxbPwl_KRuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sxbPwl_KRuA.mp4/sxbPwl_KRuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sxbPwl_KRuA.mp4/sxbPwl_KRuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sxbPwl_KRuA.m3u8/sxbPwl_KRuA.m3u8"}, "duration": 696, "id": "sxbPwl_KRuA", "title": "Cosmic background radiation", "format": "mp4", "description": "Cosmic Background Radiation", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/cosmic-background-radiation/", "slug": "cosmic-background-radiation", "kind": "Video", "video_id": "sxbPwl_KRuA", "keywords": "Cosmic, Background, Radiation, microwave, big, bang", "youtube_id": "sxbPwl_KRuA", "readable_id": "cosmic-background-radiation"}, "_20mkyAB7tY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_20mkyAB7tY.mp4/_20mkyAB7tY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_20mkyAB7tY.mp4/_20mkyAB7tY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_20mkyAB7tY.m3u8/_20mkyAB7tY.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/preventing-tb-using-the-4-i-s/", "duration": 692, "id": "_20mkyAB7tY", "title": "Preventing TB using the \"4 I's\"", "format": "mp4", "description": "Learn how to help prevent TB disease using Intensive case finding, Isoniazid, Isolation, and Immunization.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "preventing-tb-using-the-4-i-s", "kind": "Video", "video_id": "_20mkyAB7tY", "keywords": "", "youtube_id": "_20mkyAB7tY", "readable_id": "preventing-tb-using-the-4-i-s"}, "mbbk7oehP1Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mbbk7oehP1Y.mp4/mbbk7oehP1Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mbbk7oehP1Y.mp4/mbbk7oehP1Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mbbk7oehP1Y.m3u8/mbbk7oehP1Y.m3u8"}, "duration": 161, "id": "mbbk7oehP1Y", "title": "Flu Epidemiology", "format": "mp4", "description": "The flu has been causing disease and death for a long time. Get a feel for exactly how many folks are affected each year by this disease. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "flu-epidemiology/", "slug": "flu-epidemiology", "kind": "Video", "video_id": "mbbk7oehP1Y", "keywords": "", "youtube_id": "mbbk7oehP1Y", "readable_id": "flu-epidemiology"}, "2jO--kC3aqk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2jO--kC3aqk.mp4/2jO--kC3aqk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2jO--kC3aqk.mp4/2jO--kC3aqk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2jO--kC3aqk.m3u8/2jO--kC3aqk.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/elimination-reactions-tutorial/zaitsev-s-rule/", "duration": 809, "id": "2jO--kC3aqk", "title": "Zaitsev's rule", "format": "mp4", "description": "Zaitsev's Rule for E2 and E1 reactions", "slug": "zaitsev-s-rule", "kind": "Video", "video_id": "2jO--kC3aqk", "keywords": "zaitsev's, rule, e2, e1, hyperconjugation, organic, chemistry", "youtube_id": "2jO--kC3aqk", "readable_id": "zaitsev-s-rule"}, "fNzM0lQHZsk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fNzM0lQHZsk.mp4/fNzM0lQHZsk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fNzM0lQHZsk.mp4/fNzM0lQHZsk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fNzM0lQHZsk.m3u8/fNzM0lQHZsk.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/regrouping-decimals-pre-alg/regrouping-with-decimals-example/", "duration": 243, "id": "fNzM0lQHZsk", "title": "Regrouping with decimals example 1", "format": "mp4", "description": "Similar to a problem we did earlier but with whole numbers, this time we're having to regroup with decimals and find the right answer. Take your time.", "slug": "regrouping-with-decimals-example", "kind": "Video", "video_id": "fNzM0lQHZsk", "keywords": "", "youtube_id": "fNzM0lQHZsk", "readable_id": "regrouping-with-decimals-example"}, "RkIM0Mbc8YQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RkIM0Mbc8YQ.mp4/RkIM0Mbc8YQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RkIM0Mbc8YQ.mp4/RkIM0Mbc8YQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RkIM0Mbc8YQ.m3u8/RkIM0Mbc8YQ.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/paulson-bailout/bailout-11-why-these-cdos-could-be-worth-nothing/", "duration": 644, "id": "RkIM0Mbc8YQ", "title": "Bailout 11: Why these CDOs could be worth nothing", "format": "mp4", "description": "Why a CDO could be worth nothing even though they are \"collateralized\".", "slug": "bailout-11-why-these-cdos-could-be-worth-nothing", "kind": "Video", "video_id": "RkIM0Mbc8YQ", "keywords": "bailout, collateralized, debt, obligations, CDO, MBS", "youtube_id": "RkIM0Mbc8YQ", "readable_id": "bailout-11-why-these-cdos-could-be-worth-nothing"}, "dzJNabJAPaE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dzJNabJAPaE.mp4/dzJNabJAPaE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dzJNabJAPaE.mp4/dzJNabJAPaE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dzJNabJAPaE.m3u8/dzJNabJAPaE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pneumonia/what-is-pneumonia/", "duration": 623, "id": "dzJNabJAPaE", "title": "What is pneumonia?", "format": "mp4", "description": "Pneumonia is a medical condition where lung tissue becomes inflamed, usually caused by a virus or bacteria. Learn how shortness of breath, cough, and fever are common symptoms of this condition and why they occur in pneumonia.", "slug": "what-is-pneumonia", "kind": "Video", "video_id": "dzJNabJAPaE", "keywords": "", "youtube_id": "dzJNabJAPaE", "readable_id": "what-is-pneumonia"}, "W3_A_A0XBiY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W3_A_A0XBiY.mp4/W3_A_A0XBiY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W3_A_A0XBiY.mp4/W3_A_A0XBiY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W3_A_A0XBiY.m3u8/W3_A_A0XBiY.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/diffusion/", "duration": 95, "id": "W3_A_A0XBiY", "title": "Diffusion", "format": "mp4", "description": "", "slug": "diffusion", "kind": "Video", "video_id": "W3_A_A0XBiY", "keywords": "", "youtube_id": "W3_A_A0XBiY", "readable_id": "diffusion"}, "jdawTFsCNtc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jdawTFsCNtc.mp4/jdawTFsCNtc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jdawTFsCNtc.mp4/jdawTFsCNtc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jdawTFsCNtc.m3u8/jdawTFsCNtc.m3u8"}, "duration": 463, "id": "jdawTFsCNtc", "title": "Psychoanalytic theory", "format": "mp4", "description": "Learn about Sigmund Freud's Psychoanalytic Theory of Personality and the different structures of our mind that contribute to our personality. By Shreena Desai. ", "path": "khan/test-prep/mcat/behavior/theories-personality/psychoanalytic-theory/", "slug": "psychoanalytic-theory", "kind": "Video", "video_id": "jdawTFsCNtc", "keywords": "psychoanalytic", "youtube_id": "jdawTFsCNtc", "readable_id": "psychoanalytic-theory"}, "yKfpBGicqNQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yKfpBGicqNQ.mp4/yKfpBGicqNQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yKfpBGicqNQ.mp4/yKfpBGicqNQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yKfpBGicqNQ.m3u8/yKfpBGicqNQ.m3u8"}, "duration": 318, "id": "yKfpBGicqNQ", "title": "Proprioception and kinesthesia", "format": "mp4", "description": "The differences between propioception (sense of body position) and kinesthesia (sense of body movement) are discussed.\u00a0 By Ronald Sahyouni.", "path": "khan/test-prep/mcat/processing-the-environment/somatosensation/proprioception-kinesthesia/", "slug": "proprioception-kinesthesia", "kind": "Video", "video_id": "yKfpBGicqNQ", "keywords": "proprioception, kinesthesia", "youtube_id": "yKfpBGicqNQ", "readable_id": "proprioception-kinesthesia"}, "zA0fvwtvgvA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zA0fvwtvgvA.mp4/zA0fvwtvgvA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zA0fvwtvgvA.mp4/zA0fvwtvgvA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zA0fvwtvgvA.m3u8/zA0fvwtvgvA.m3u8"}, "duration": 602, "id": "zA0fvwtvgvA", "title": "Cross product 1", "format": "mp4", "description": "Introduction to the cross product", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/cross-product-1/", "slug": "cross-product-1", "kind": "Video", "video_id": "zA0fvwtvgvA", "keywords": "vector, cross, product", "youtube_id": "zA0fvwtvgvA", "readable_id": "cross-product-1"}, "CxcP4ylUP5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CxcP4ylUP5w.mp4/CxcP4ylUP5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CxcP4ylUP5w.mp4/CxcP4ylUP5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CxcP4ylUP5w.m3u8/CxcP4ylUP5w.m3u8"}, "duration": 252, "id": "CxcP4ylUP5w", "title": "Difference of cubes factoring", "format": "mp4", "description": "u12 l2 t3 we2 Difference of Cubes Factoring", "path": "khan/math/algebra2/polynomial_and_rational/factoring-higher-deg-polynomials/difference-of-cubes-factoring/", "slug": "difference-of-cubes-factoring", "kind": "Video", "video_id": "CxcP4ylUP5w", "keywords": "u12, l2, t3, we2, Difference, of, Cubes, Factoring", "youtube_id": "CxcP4ylUP5w", "readable_id": "difference-of-cubes-factoring"}, "S7HJB0PtiW0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S7HJB0PtiW0.mp4/S7HJB0PtiW0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S7HJB0PtiW0.mp4/S7HJB0PtiW0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S7HJB0PtiW0.m3u8/S7HJB0PtiW0.m3u8"}, "duration": 253, "id": "S7HJB0PtiW0", "title": "The \"Palace\" and Grave Circle A, Mycenae, c. 1600-1100 B.C.E.", "format": "mp4", "description": "Speakers: Dr. Steven Zucker and Dr. Beth Harris", "path": "khan/humanities/ancient-art-civilizations/aegean-art1/mycenaean/mycenae-palace/", "slug": "mycenae-palace", "kind": "Video", "video_id": "S7HJB0PtiW0", "keywords": "", "youtube_id": "S7HJB0PtiW0", "readable_id": "mycenae-palace"}, "LhMEqsL_M5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LhMEqsL_M5o.mp4/LhMEqsL_M5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LhMEqsL_M5o.mp4/LhMEqsL_M5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LhMEqsL_M5o.m3u8/LhMEqsL_M5o.m3u8"}, "duration": 254, "id": "LhMEqsL_M5o", "title": "Metric system: units of volume", "format": "mp4", "description": "How much is it to drink a liter of soda? First off, drinking a liter of soda could result in some serious cavities. Nonetheless, understanding metric units of volume (like liters and milliliters) is really important. Soda? Not so imporant.", "path": "metric-units-weight/", "slug": "metric-units-weight", "kind": "Video", "video_id": "LhMEqsL_M5o", "keywords": "", "youtube_id": "LhMEqsL_M5o", "readable_id": "metric-units-weight"}, "MTPHXNMi9tA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MTPHXNMi9tA.mp4/MTPHXNMi9tA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MTPHXNMi9tA.mp4/MTPHXNMi9tA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MTPHXNMi9tA.m3u8/MTPHXNMi9tA.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/reason-and-faith/", "duration": 519, "id": "MTPHXNMi9tA", "title": "Religion: Reason and faith", "format": "mp4", "description": "It is common to think that Faith and Reason must be in conflict. Often this view emerges because how we use the term \"believe\" is ambiguous. In this video we clarify how this term is used and how Faith and Reason can be properly related.\n\nSpeaker: Dr. Greg Ganssle", "slug": "reason-and-faith", "kind": "Video", "video_id": "MTPHXNMi9tA", "keywords": "", "youtube_id": "MTPHXNMi9tA", "readable_id": "reason-and-faith"}, "tVDslyeLefU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tVDslyeLefU.mp4/tVDslyeLefU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tVDslyeLefU.mp4/tVDslyeLefU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tVDslyeLefU.m3u8/tVDslyeLefU.m3u8"}, "path": "khan/math/basic-geo/basic-geo-volume-surface-area/basic-geo-volume/volume-of-a-rectangular-prism-with-fractional-cubes/", "duration": 258, "id": "tVDslyeLefU", "title": "Volume of a rectangular prism: fractional cubes", "format": "mp4", "description": "Another way of finding the volume of a rectangular prism involves dividing it into fractional cubes, finding the volume of one, and then multiplying that area by the number of cubes that fit into our rectangular prism. Watch this explanation.", "slug": "volume-of-a-rectangular-prism-with-fractional-cubes", "kind": "Video", "video_id": "tVDslyeLefU", "keywords": "", "youtube_id": "tVDslyeLefU", "readable_id": "volume-of-a-rectangular-prism-with-fractional-cubes"}, "CNqYNgSYnKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CNqYNgSYnKM.mp4/CNqYNgSYnKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CNqYNgSYnKM.mp4/CNqYNgSYnKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CNqYNgSYnKM.m3u8/CNqYNgSYnKM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pneumonia/streptococcus-pneumoniae-and-flu-vaccines/", "duration": 407, "id": "CNqYNgSYnKM", "title": "Streptococcus pneumoniae and flu vaccines", "format": "mp4", "description": "Why do we need a new flu vaccine every year? Learn about the pneumonia and flu vaccines and how they help your body fight off infection.", "slug": "streptococcus-pneumoniae-and-flu-vaccines", "kind": "Video", "video_id": "CNqYNgSYnKM", "keywords": "", "youtube_id": "CNqYNgSYnKM", "readable_id": "streptococcus-pneumoniae-and-flu-vaccines"}, "xlmruDxY48Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xlmruDxY48Y.mp4/xlmruDxY48Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xlmruDxY48Y.mp4/xlmruDxY48Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xlmruDxY48Y.m3u8/xlmruDxY48Y.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/evolution-and-human-culture/", "duration": 344, "id": "xlmruDxY48Y", "title": "Evolution and human culture", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "evolution-and-human-culture", "kind": "Video", "video_id": "xlmruDxY48Y", "keywords": "", "youtube_id": "xlmruDxY48Y", "readable_id": "evolution-and-human-culture"}, "Z-yv3Yq4Aw4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z-yv3Yq4Aw4.mp4/Z-yv3Yq4Aw4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z-yv3Yq4Aw4.mp4/Z-yv3Yq4Aw4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z-yv3Yq4Aw4.m3u8/Z-yv3Yq4Aw4.m3u8"}, "path": "khan/science/health-and-medicine/respiratory-system/respiratory-system-introduction/the-bronchial-tree/", "duration": 767, "id": "Z-yv3Yq4Aw4", "title": "The bronchial tree", "format": "mp4", "description": "Follow the path of an oxygen molecule as it makes its way from your mouth down to an alveolus! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "the-bronchial-tree", "kind": "Video", "video_id": "Z-yv3Yq4Aw4", "keywords": "", "youtube_id": "Z-yv3Yq4Aw4", "readable_id": "the-bronchial-tree"}, "Qo47YQTfLj8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qo47YQTfLj8.mp4/Qo47YQTfLj8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qo47YQTfLj8.mp4/Qo47YQTfLj8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qo47YQTfLj8.m3u8/Qo47YQTfLj8.m3u8"}, "duration": 151, "id": "Qo47YQTfLj8", "title": "Conservation | Ren\u00e9 Magritte, \"The Palace of Curtains, III,\" 1928-29", "format": "mp4", "description": "For more information please visit http://www.moma.org/magritte", "path": "magritte-palace-of-curtains/", "slug": "magritte-palace-of-curtains", "kind": "Video", "video_id": "Qo47YQTfLj8", "keywords": "", "youtube_id": "Qo47YQTfLj8", "readable_id": "magritte-palace-of-curtains"}, "QWLcNxQ3KvQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QWLcNxQ3KvQ.mp4/QWLcNxQ3KvQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QWLcNxQ3KvQ.mp4/QWLcNxQ3KvQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QWLcNxQ3KvQ.m3u8/QWLcNxQ3KvQ.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/recognizing-functions-example-4/", "duration": 213, "id": "QWLcNxQ3KvQ", "title": "Recognizing functions (example 4)", "format": "mp4", "description": "", "slug": "recognizing-functions-example-4", "kind": "Video", "video_id": "QWLcNxQ3KvQ", "keywords": "", "youtube_id": "QWLcNxQ3KvQ", "readable_id": "recognizing-functions-example-4"}, "YjOrE1C8qOc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YjOrE1C8qOc.mp4/YjOrE1C8qOc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YjOrE1C8qOc.mp4/YjOrE1C8qOc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YjOrE1C8qOc.m3u8/YjOrE1C8qOc.m3u8"}, "duration": 167, "id": "YjOrE1C8qOc", "title": "\"Compassion\" with Carrie Rebora Barratt", "format": "mp4", "description": "Met associate director Carrie Rebora Barratt on leadership in John Trumbull\u2019s The Sortie Made by the Garrison of Gibraltar.\n\nThis painting depicts the events of the night of November 26, 1781, when British troops, long besieged by Spanish forces at Gibraltar, made a sortie, or sudden attack, against the encroaching enemy batteries. The focal point of the painting is the tragic death of the Spanish officer Don Jose de Barboza. Abandoned by his fleeing troops, he charged the attacking column alone, fell mortally wounded, and, refusing all assistance, died near his post. Trumbull portrays him rejecting the aid of General George Eliott, commander of the British troops. This work, the largest and last of three versions of the subject that Trumbull executed between 1786 and 1789, demonstrates his ambition to solidify his reputation on the basis of the highly respected genre of history painting.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "compassion/", "slug": "compassion", "kind": "Video", "video_id": "YjOrE1C8qOc", "keywords": "calm, canvas, compassion, death, dignity, motion, painting, turmoil, North America", "youtube_id": "YjOrE1C8qOc", "readable_id": "compassion"}, "9NVQsQLPOqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9NVQsQLPOqc.mp4/9NVQsQLPOqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9NVQsQLPOqc.mp4/9NVQsQLPOqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9NVQsQLPOqc.m3u8/9NVQsQLPOqc.m3u8"}, "duration": 254, "id": "9NVQsQLPOqc", "title": "Khan Academy at KIPP", "format": "mp4", "description": "", "path": "kipp/", "slug": "kipp", "kind": "Video", "video_id": "9NVQsQLPOqc", "keywords": "KIPP", "youtube_id": "9NVQsQLPOqc", "readable_id": "kipp"}, "0L2xCwD5RNI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0L2xCwD5RNI.mp4/0L2xCwD5RNI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0L2xCwD5RNI.mp4/0L2xCwD5RNI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0L2xCwD5RNI.m3u8/0L2xCwD5RNI.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/environmental-justice/", "duration": 273, "id": "0L2xCwD5RNI", "title": "Environmental justice", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "environmental-justice", "kind": "Video", "video_id": "0L2xCwD5RNI", "keywords": "", "youtube_id": "0L2xCwD5RNI", "readable_id": "environmental-justice"}, "sSE6_fK3mu0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sSE6_fK3mu0.mp4/sSE6_fK3mu0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sSE6_fK3mu0.mp4/sSE6_fK3mu0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sSE6_fK3mu0.m3u8/sSE6_fK3mu0.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/der_common_functions/proof-d-dx-e-x-e-x/", "duration": 280, "id": "sSE6_fK3mu0", "title": "Proof: d/dx(e^x) = e^x", "format": "mp4", "description": "Proof that the derivative of e^x is e^x.", "slug": "proof-d-dx-e-x-e-x", "kind": "Video", "video_id": "sSE6_fK3mu0", "keywords": "proof, calculus, e^x, derivative, d/dx", "youtube_id": "sSE6_fK3mu0", "readable_id": "proof-d-dx-e-x-e-x"}, "e-_92MYcANk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e-_92MYcANk.mp4/e-_92MYcANk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e-_92MYcANk.mp4/e-_92MYcANk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e-_92MYcANk.m3u8/e-_92MYcANk.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/moma-laib-pollen-from-hazelnut/", "duration": 527, "id": "e-_92MYcANk", "title": "Wolfgang Laib, \"Pollen from Hazelnut\"", "format": "mp4", "description": "Wolfgang Laib describes the pollen he collected over 27 years \"as the beginning of life.\" \u00a0To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "slug": "moma-laib-pollen-from-hazelnut", "kind": "Video", "video_id": "e-_92MYcANk", "keywords": "", "youtube_id": "e-_92MYcANk", "readable_id": "moma-laib-pollen-from-hazelnut"}, "VGxGrEnWVsg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VGxGrEnWVsg.mp4/VGxGrEnWVsg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VGxGrEnWVsg.mp4/VGxGrEnWVsg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VGxGrEnWVsg.m3u8/VGxGrEnWVsg.m3u8"}, "duration": 269, "id": "VGxGrEnWVsg", "title": "NPR Story on KA Los Altos Pilots (June 2011)", "format": "mp4", "description": "NPR All Things Considered story on Khan Academy Los Altos pilots", "path": "npr-story-on-ka-los-altos-pilots-june-2011/", "slug": "npr-story-on-ka-los-altos-pilots-june-2011", "kind": "Video", "video_id": "VGxGrEnWVsg", "keywords": "education, technology, los, altos", "youtube_id": "VGxGrEnWVsg", "readable_id": "npr-story-on-ka-los-altos-pilots-june-2011"}, "cJnNMT-F-BI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cJnNMT-F-BI.mp4/cJnNMT-F-BI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cJnNMT-F-BI.mp4/cJnNMT-F-BI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cJnNMT-F-BI.m3u8/cJnNMT-F-BI.m3u8"}, "path": "khan/math/algebra2/conics_precalc/ellipses-precalc/ellipse-focus-intuition-exercise/", "duration": 387, "id": "cJnNMT-F-BI", "title": "Ellipse focus intuition exercise", "format": "mp4", "description": "Ellipse focus intuition exercise", "slug": "ellipse-focus-intuition-exercise", "kind": "Video", "video_id": "cJnNMT-F-BI", "keywords": "", "youtube_id": "cJnNMT-F-BI", "readable_id": "ellipse-focus-intuition-exercise"}, "405boztgZig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/405boztgZig.mp4/405boztgZig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/405boztgZig.mp4/405boztgZig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/405boztgZig.m3u8/405boztgZig.m3u8"}, "duration": 205, "id": "405boztgZig", "title": "x- and y-intercepts 2", "format": "mp4", "description": "X and Y intercepts 2", "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-graphing-intercepts/x-and-y-intercepts-2/", "slug": "x-and-y-intercepts-2", "kind": "Video", "video_id": "405boztgZig", "keywords": "U04_L1_T2_we2, and, intercepts, CC_39336_F-IF_4", "youtube_id": "405boztgZig", "readable_id": "x-and-y-intercepts-2"}, "gHlcOCP-Cxg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gHlcOCP-Cxg.mp4/gHlcOCP-Cxg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gHlcOCP-Cxg.mp4/gHlcOCP-Cxg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gHlcOCP-Cxg.m3u8/gHlcOCP-Cxg.m3u8"}, "path": "khan/humanities/art-1010/art-post-war-britain/room-1960/", "duration": 214, "id": "gHlcOCP-Cxg", "title": "Room: 1960s", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Chris Stephens explores the 1960s.\n\nLearn more about the art featured in this video:\n- Sir Anthony Caro, Early One Morning, 1962\n-\u00a0Peter Blake, Portrait of David Hockney in a Hollywood Spanish Interior, 1965\n- Frank Bowling, Mirror, 1966", "slug": "room-1960", "kind": "Video", "video_id": "gHlcOCP-Cxg", "keywords": "modern art, Tate", "youtube_id": "gHlcOCP-Cxg", "readable_id": "room-1960"}, "lVadjWOjvV8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lVadjWOjvV8.mp4/lVadjWOjvV8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lVadjWOjvV8.mp4/lVadjWOjvV8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lVadjWOjvV8.m3u8/lVadjWOjvV8.m3u8"}, "duration": 700, "id": "lVadjWOjvV8", "title": "Stellar distance using parallax", "format": "mp4", "description": "Stellar Distance Using Parallax", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-parallax-tutorial/stellar-distance-using-parallax/", "slug": "stellar-distance-using-parallax", "kind": "Video", "video_id": "lVadjWOjvV8", "keywords": "Stellar, Distance, Using, Parallax", "youtube_id": "lVadjWOjvV8", "readable_id": "stellar-distance-using-parallax"}, "0eDwckZOffc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0eDwckZOffc.mp4/0eDwckZOffc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0eDwckZOffc.mp4/0eDwckZOffc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0eDwckZOffc.m3u8/0eDwckZOffc.m3u8"}, "duration": 315, "id": "0eDwckZOffc", "title": "Angles of parallel lines 2", "format": "mp4", "description": "Angles of parallel lines examples", "path": "khan/math/geometry/parallel-and-perpendicular-lines/old_angles/angles-of-parallel-lines-2/", "slug": "angles-of-parallel-lines-2", "kind": "Video", "video_id": "0eDwckZOffc", "keywords": "Angles, of, parallel, transversal, CC_8_G_5", "youtube_id": "0eDwckZOffc", "readable_id": "angles-of-parallel-lines-2"}, "H-de6Tkxej8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H-de6Tkxej8.mp4/H-de6Tkxej8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H-de6Tkxej8.mp4/H-de6Tkxej8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H-de6Tkxej8.m3u8/H-de6Tkxej8.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/angle_basics/angle-basics/", "duration": 409, "id": "H-de6Tkxej8", "title": "Angle basics", "format": "mp4", "description": "The naming of an angle is related to the line segments that create it. We'll also learn about the angle's vertex. Come on. Let's do this.", "slug": "angle-basics", "kind": "Video", "video_id": "H-de6Tkxej8", "keywords": "geometry, angle, points", "youtube_id": "H-de6Tkxej8", "readable_id": "angle-basics"}, "Tqpcku0hrPU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tqpcku0hrPU.mp4/Tqpcku0hrPU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tqpcku0hrPU.mp4/Tqpcku0hrPU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tqpcku0hrPU.m3u8/Tqpcku0hrPU.m3u8"}, "duration": 278, "id": "Tqpcku0hrPU", "title": "Negative exponent intuition", "format": "mp4", "description": "Intuition on why a^-b = 1/(a^b) (and why a^0 =1)", "path": "khan/math/pre-algebra/exponents-radicals/negative-exponents-tutorial/negative-exponent-intuition/", "slug": "negative-exponent-intuition", "kind": "Video", "video_id": "Tqpcku0hrPU", "keywords": "negative, exponent, intuition, CC_6_EE_1", "youtube_id": "Tqpcku0hrPU", "readable_id": "negative-exponent-intuition"}, "KgI07h9VgWM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KgI07h9VgWM.mp4/KgI07h9VgWM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KgI07h9VgWM.mp4/KgI07h9VgWM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KgI07h9VgWM.m3u8/KgI07h9VgWM.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/comparing-colleges-financial-aid-policies/", "duration": 231, "id": "KgI07h9VgWM", "title": "Comparing colleges based on financial aid policies", "format": "mp4", "description": "Filter by financial aid policy using College Board's college search tool", "slug": "comparing-colleges-financial-aid-policies", "kind": "Video", "video_id": "KgI07h9VgWM", "keywords": "", "youtube_id": "KgI07h9VgWM", "readable_id": "comparing-colleges-financial-aid-policies"}, "JVrkLIcA2qw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JVrkLIcA2qw.mp4/JVrkLIcA2qw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JVrkLIcA2qw.mp4/JVrkLIcA2qw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JVrkLIcA2qw.m3u8/JVrkLIcA2qw.m3u8"}, "path": "khan/math/geometry/right_triangles_topic/pyth_theor/pythagorean-theorem-1/", "duration": 272, "id": "JVrkLIcA2qw", "title": "Pythagorean theorem 1", "format": "mp4", "description": "Pythagorean Theorem 1", "slug": "pythagorean-theorem-1", "kind": "Video", "video_id": "JVrkLIcA2qw", "keywords": "U07_L2_T1_we1, Pythagorean, Theorem, CC_8_G_7", "youtube_id": "JVrkLIcA2qw", "readable_id": "pythagorean-theorem-1"}, "qH4IQfDD1Nw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qH4IQfDD1Nw.mp4/qH4IQfDD1Nw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qH4IQfDD1Nw.mp4/qH4IQfDD1Nw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qH4IQfDD1Nw.m3u8/qH4IQfDD1Nw.m3u8"}, "duration": 345, "id": "qH4IQfDD1Nw", "title": "Subtracting and simplifying radicals", "format": "mp4", "description": "Subtracting and Simplifying Radicals", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/subtracting-and-simplifying-radicals/", "slug": "subtracting-and-simplifying-radicals", "kind": "Video", "video_id": "qH4IQfDD1Nw", "keywords": "u16_l2_t2_we2, Subtracting, and, Simplifying, Radicals", "youtube_id": "qH4IQfDD1Nw", "readable_id": "subtracting-and-simplifying-radicals"}, "bcADF8WgLz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bcADF8WgLz4.mp4/bcADF8WgLz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bcADF8WgLz4.mp4/bcADF8WgLz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bcADF8WgLz4.m3u8/bcADF8WgLz4.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-17/", "duration": 696, "id": "bcADF8WgLz4", "title": "GMAT: Data sufficiency 17", "format": "mp4", "description": "77-79, pg. 284", "slug": "gmat-data-sufficiency-17", "kind": "Video", "video_id": "bcADF8WgLz4", "keywords": "gmat, data, sufficiency, math", "youtube_id": "bcADF8WgLz4", "readable_id": "gmat-data-sufficiency-17"}, "4ztQjBGbecw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4ztQjBGbecw.mp4/4ztQjBGbecw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4ztQjBGbecw.mp4/4ztQjBGbecw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4ztQjBGbecw.m3u8/4ztQjBGbecw.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/carbohydrates-cyclic-structures-and-anomers-1/", "duration": 672, "id": "4ztQjBGbecw", "title": "Carbohydrates - Cyclic structures and anomers", "format": "mp4", "description": "", "slug": "carbohydrates-cyclic-structures-and-anomers-1", "kind": "Video", "video_id": "4ztQjBGbecw", "keywords": "", "youtube_id": "4ztQjBGbecw", "readable_id": "carbohydrates-cyclic-structures-and-anomers-1"}, "xpzt0wqMT6Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xpzt0wqMT6Y.mp4/xpzt0wqMT6Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xpzt0wqMT6Y.mp4/xpzt0wqMT6Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xpzt0wqMT6Y.m3u8/xpzt0wqMT6Y.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/unit-conversion-exercise-example-1/", "duration": 227, "id": "xpzt0wqMT6Y", "title": "Unit conversion word problem: roadtrip", "format": "mp4", "description": "The challenge in a word problem sometimes is knowing which numbers to choose when creating a simple equation. In this unit conversion word problem we'll answer the common question: \"How much will a road trip cost me in gas?\"", "slug": "unit-conversion-exercise-example-1", "kind": "Video", "video_id": "xpzt0wqMT6Y", "keywords": "", "youtube_id": "xpzt0wqMT6Y", "readable_id": "unit-conversion-exercise-example-1"}, "2MzPOrcsWB0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2MzPOrcsWB0.mp4/2MzPOrcsWB0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2MzPOrcsWB0.mp4/2MzPOrcsWB0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2MzPOrcsWB0.m3u8/2MzPOrcsWB0.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/titian-assumption-of-the-virgin/", "duration": 205, "id": "2MzPOrcsWB0", "title": "Titian, Assumption of the Virgin", "format": "mp4", "description": "Titian, Assumption of the Virgin, c. 1516-18, oil on wood, 22' 6\" x 11' 10\" (Santa Maria Gloriosa dei Frari, Venice) Speakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "titian-assumption-of-the-virgin", "kind": "Video", "video_id": "2MzPOrcsWB0", "keywords": "Titian, Venice", "youtube_id": "2MzPOrcsWB0", "readable_id": "titian-assumption-of-the-virgin"}, "xUjRwepN7dk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xUjRwepN7dk.mp4/xUjRwepN7dk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xUjRwepN7dk.mp4/xUjRwepN7dk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xUjRwepN7dk.m3u8/xUjRwepN7dk.m3u8"}, "duration": 484, "id": "xUjRwepN7dk", "title": "Division using understanding of place value", "format": "mp4", "description": "Make division problems easier by thinking about place value and using the distributive property.", "path": "division-using-understanding-of-place-value/", "slug": "division-using-understanding-of-place-value", "kind": "Video", "video_id": "xUjRwepN7dk", "keywords": "", "youtube_id": "xUjRwepN7dk", "readable_id": "division-using-understanding-of-place-value"}, "V6Xynlqc_tc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V6Xynlqc_tc.mp4/V6Xynlqc_tc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V6Xynlqc_tc.mp4/V6Xynlqc_tc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V6Xynlqc_tc.m3u8/V6Xynlqc_tc.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/core-algebra-graphing-slope-intercept/converting-to-slope-intercept-form/", "duration": 307, "id": "V6Xynlqc_tc", "title": "Converting linear equations to slope-intercept form", "format": "mp4", "description": "Converting to slope-intercept form", "slug": "converting-to-slope-intercept-form", "kind": "Video", "video_id": "V6Xynlqc_tc", "keywords": "U04_L1_T4_we1, Converting, to, slope-intercept, form, CC_8_EE_5, CC_8_EE_8, CC_8_EE_8_b, CC_8_EE_8_c, CC_8_F_3, CC_8_F_5, CC_39336_F-IF_7_a", "youtube_id": "V6Xynlqc_tc", "readable_id": "converting-to-slope-intercept-form"}, "PuRsXST9EZU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PuRsXST9EZU.mp4/PuRsXST9EZU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PuRsXST9EZU.mp4/PuRsXST9EZU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PuRsXST9EZU.m3u8/PuRsXST9EZU.m3u8"}, "duration": 241, "id": "PuRsXST9EZU", "title": "Comparing values with calculator", "format": "mp4", "description": "Learn how to compare 22.9% to the square root of 0.45.", "path": "comparing-values-with-calculator/", "slug": "comparing-values-with-calculator", "kind": "Video", "video_id": "PuRsXST9EZU", "keywords": "", "youtube_id": "PuRsXST9EZU", "readable_id": "comparing-values-with-calculator"}, "DROZVHObeko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DROZVHObeko.mp4/DROZVHObeko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DROZVHObeko.mp4/DROZVHObeko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DROZVHObeko.m3u8/DROZVHObeko.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinatorics_precalc/permutation-formula/", "duration": 455, "id": "DROZVHObeko", "title": "Permutation formula", "format": "mp4", "description": "", "slug": "permutation-formula", "kind": "Video", "video_id": "DROZVHObeko", "keywords": "", "youtube_id": "DROZVHObeko", "readable_id": "permutation-formula"}, "HN6FNS7lRhw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HN6FNS7lRhw.mp4/HN6FNS7lRhw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HN6FNS7lRhw.mp4/HN6FNS7lRhw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HN6FNS7lRhw.m3u8/HN6FNS7lRhw.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-line-plots/making-line-plots/", "duration": 189, "id": "HN6FNS7lRhw", "title": "Making line plots", "format": "mp4", "description": "Making line plots", "slug": "making-line-plots", "kind": "Video", "video_id": "HN6FNS7lRhw", "keywords": "", "youtube_id": "HN6FNS7lRhw", "readable_id": "making-line-plots"}, "7zBqVOuEKYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7zBqVOuEKYE.mp4/7zBqVOuEKYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7zBqVOuEKYE.mp4/7zBqVOuEKYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7zBqVOuEKYE.m3u8/7zBqVOuEKYE.m3u8"}, "duration": 244, "id": "7zBqVOuEKYE", "title": "Price behavior after announced acquisition", "format": "mp4", "description": "Stock Price Behavior After Announced Acquisition with Shares", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/mergers-acquisitions/price-behavior-after-announced-acquisition/", "slug": "price-behavior-after-announced-acquisition", "kind": "Video", "video_id": "7zBqVOuEKYE", "keywords": "Stock, Price, Behavior, After, Announced, Acquisition, with, Shares", "youtube_id": "7zBqVOuEKYE", "readable_id": "price-behavior-after-announced-acquisition"}, "2tRcPpfjdKg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2tRcPpfjdKg.mp4/2tRcPpfjdKg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2tRcPpfjdKg.mp4/2tRcPpfjdKg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2tRcPpfjdKg.m3u8/2tRcPpfjdKg.m3u8"}, "duration": 507, "id": "2tRcPpfjdKg", "title": "The Fourth Amendment of the U.S. Constitution", "format": "mp4", "description": "\"The right of the people to be secure in their persons, houses, papers and effects against unreasonable searches and seizures shall not be violated.\"\n\nJeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\n", "path": "constitution-fourth-amendment/", "slug": "constitution-fourth-amendment", "kind": "Video", "video_id": "2tRcPpfjdKg", "keywords": "", "youtube_id": "2tRcPpfjdKg", "readable_id": "constitution-fourth-amendment"}, "tZQJgqBcyw4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tZQJgqBcyw4.mp4/tZQJgqBcyw4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tZQJgqBcyw4.mp4/tZQJgqBcyw4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tZQJgqBcyw4.m3u8/tZQJgqBcyw4.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/late-empire/basilica-constantine/", "duration": 259, "id": "tZQJgqBcyw4", "title": "Basilica of Maxentius and Constantine", "format": "mp4", "description": "Basilica of Maxentius and Constantine (Basilica Nova), Roman Forum, c. 306-312\nSpeakers: Dr. Darius Arya and Dr. Beth Harris", "slug": "basilica-constantine", "kind": "Video", "video_id": "tZQJgqBcyw4", "keywords": "Ancient, Rome, Forum, Basilica, architecture", "youtube_id": "tZQJgqBcyw4", "readable_id": "basilica-constantine"}, "SLf_oAkngP4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SLf_oAkngP4.mp4/SLf_oAkngP4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SLf_oAkngP4.mp4/SLf_oAkngP4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SLf_oAkngP4.m3u8/SLf_oAkngP4.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/weyden/rogier-van-der-weyden-deposition-c-1435/", "duration": 429, "id": "SLf_oAkngP4", "title": "Van der Weyden, Deposition", "format": "mp4", "description": "Rogier van der Weyden, Deposition, c. 1435 (Prado, Madrid)\n\nSpeakers: David Drogin and Beth Harris", "slug": "rogier-van-der-weyden-deposition-c-1435", "kind": "Video", "video_id": "SLf_oAkngP4", "keywords": "Rogier van der Weyden, deposition, Prado, Madrid, Northern Renaissance, Smarthistory", "youtube_id": "SLf_oAkngP4", "readable_id": "rogier-van-der-weyden-deposition-c-1435"}, "l5n6zIn4NzI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l5n6zIn4NzI.mp4/l5n6zIn4NzI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l5n6zIn4NzI.mp4/l5n6zIn4NzI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l5n6zIn4NzI.m3u8/l5n6zIn4NzI.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/atomic-nucleus/atomic-mass/", "duration": 589, "id": "l5n6zIn4NzI", "title": "Atomic mass", "format": "mp4", "description": "", "slug": "atomic-mass", "kind": "Video", "video_id": "l5n6zIn4NzI", "keywords": "", "youtube_id": "l5n6zIn4NzI", "readable_id": "atomic-mass"}, "dNk098ffjLM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dNk098ffjLM.mp4/dNk098ffjLM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dNk098ffjLM.mp4/dNk098ffjLM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dNk098ffjLM.m3u8/dNk098ffjLM.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/lorna-simpson/", "duration": 217, "id": "dNk098ffjLM", "title": "Art and identity in the work of Lorna Simpson", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nEverything from old sports photographs to hair commercials provide inspiration for American artist Lorna Simpson.\u00a0She uses combinations of\u00a0image and text to examine the processes through which meaning and understanding take place. References from popular culture, music, sports, entertainment, and the art world all find their way into her pieces, often speaking of her experience as a black woman artist. In this video, Simpson shows us how she arrived at this methodology and why the things that surround here are so important to her work.\nWhat kind of influence does identity have on an artist? In what ways do you think her gender, race, social class, or sexual orientation would have an effect on her work?\n", "slug": "lorna-simpson", "kind": "Video", "video_id": "dNk098ffjLM", "keywords": "Tate", "youtube_id": "dNk098ffjLM", "readable_id": "lorna-simpson"}, "bZYTDst1MOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bZYTDst1MOo.mp4/bZYTDst1MOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bZYTDst1MOo.mp4/bZYTDst1MOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bZYTDst1MOo.m3u8/bZYTDst1MOo.m3u8"}, "duration": 478, "id": "bZYTDst1MOo", "title": "Extreme value theorem", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/absolute-relative-maxima-minima/extreme-value-theorem/", "slug": "extreme-value-theorem", "kind": "Video", "video_id": "bZYTDst1MOo", "keywords": "", "youtube_id": "bZYTDst1MOo", "readable_id": "extreme-value-theorem"}, "Udltkvm9HLc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Udltkvm9HLc.mp4/Udltkvm9HLc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Udltkvm9HLc.mp4/Udltkvm9HLc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Udltkvm9HLc.m3u8/Udltkvm9HLc.m3u8"}, "duration": 701, "id": "Udltkvm9HLc", "title": "Total revenue and elasticity", "format": "mp4", "description": "Thinking about how total revenue and elasticity are related", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/total-revenue-and-elasticity/", "slug": "total-revenue-and-elasticity", "kind": "Video", "video_id": "Udltkvm9HLc", "keywords": "economics, total, revenue", "youtube_id": "Udltkvm9HLc", "readable_id": "total-revenue-and-elasticity"}, "2CZrkdtgeNU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2CZrkdtgeNU.mp4/2CZrkdtgeNU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2CZrkdtgeNU.mp4/2CZrkdtgeNU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2CZrkdtgeNU.m3u8/2CZrkdtgeNU.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/using-algebra-to-find-the-measures-of-vertical-angles/", "duration": 154, "id": "2CZrkdtgeNU", "title": "Find measure of vertical angles", "format": "mp4", "description": "Now that we've learned about complementary and supplementary angles, let's use algebra to find the measure of vertical angles, or angles opposite each other when two lines cross.", "slug": "using-algebra-to-find-the-measures-of-vertical-angles", "kind": "Video", "video_id": "2CZrkdtgeNU", "keywords": "", "youtube_id": "2CZrkdtgeNU", "readable_id": "using-algebra-to-find-the-measures-of-vertical-angles"}, "9UVgO8zS474": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9UVgO8zS474.mp4/9UVgO8zS474.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9UVgO8zS474.mp4/9UVgO8zS474.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9UVgO8zS474.m3u8/9UVgO8zS474.m3u8"}, "duration": 157, "id": "9UVgO8zS474", "title": "Converting U.S. customary units of fluid volume", "format": "mp4", "description": "Moving easily between gallons, quarts, pints, cups, and fluid ounces makes you really valuable in a ton of different situations.", "path": "converting-us-fluid-volume/", "slug": "converting-us-fluid-volume", "kind": "Video", "video_id": "9UVgO8zS474", "keywords": "", "youtube_id": "9UVgO8zS474", "readable_id": "converting-us-fluid-volume"}, "EFVrAk61xjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EFVrAk61xjE.mp4/EFVrAk61xjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EFVrAk61xjE.mp4/EFVrAk61xjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EFVrAk61xjE.m3u8/EFVrAk61xjE.m3u8"}, "path": "khan/math/pre-algebra/exponents-radicals/radical-radicals/approximating-square-roots/", "duration": 432, "id": "EFVrAk61xjE", "title": "Approximating square roots to hundredths", "format": "mp4", "description": "Learn how to approximate the decimal value of the square root of 45 (without using a calculator).", "slug": "approximating-square-roots", "kind": "Video", "video_id": "EFVrAk61xjE", "keywords": "u16_l1_t1_we2, Approximating, Square, Roots", "youtube_id": "EFVrAk61xjE", "readable_id": "approximating-square-roots"}, "0WxPx3_ZSBI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0WxPx3_ZSBI.mp4/0WxPx3_ZSBI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0WxPx3_ZSBI.mp4/0WxPx3_ZSBI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0WxPx3_ZSBI.m3u8/0WxPx3_ZSBI.m3u8"}, "path": "khan/humanities/art-history-basics/beginners-art-history/the-body-in-western-painting/", "duration": 502, "id": "0WxPx3_ZSBI", "title": "A brief history of representing the body in Western painting", "format": "mp4", "description": "Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "the-body-in-western-painting", "kind": "Video", "video_id": "0WxPx3_ZSBI", "keywords": "art history, ", "youtube_id": "0WxPx3_ZSBI", "readable_id": "the-body-in-western-painting"}, "ds3-ljxTRvo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ds3-ljxTRvo.mp4/ds3-ljxTRvo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ds3-ljxTRvo.mp4/ds3-ljxTRvo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ds3-ljxTRvo.m3u8/ds3-ljxTRvo.m3u8"}, "duration": 455, "id": "ds3-ljxTRvo", "title": "Conformity and groupthink", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/social-psychology/conformity-and-groupthink/", "slug": "conformity-and-groupthink", "kind": "Video", "video_id": "ds3-ljxTRvo", "keywords": "", "youtube_id": "ds3-ljxTRvo", "readable_id": "conformity-and-groupthink"}, "vLazrEGhB80": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vLazrEGhB80.mp4/vLazrEGhB80.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vLazrEGhB80.mp4/vLazrEGhB80.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vLazrEGhB80.m3u8/vLazrEGhB80.m3u8"}, "duration": 837, "id": "vLazrEGhB80", "title": "Conformations of ethane and propane", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/conformations-of-ethane-and-propane-1/", "slug": "conformations-of-ethane-and-propane-1", "kind": "Video", "video_id": "vLazrEGhB80", "keywords": "", "youtube_id": "vLazrEGhB80", "readable_id": "conformations-of-ethane-and-propane-1"}, "BYTfCnR9Sl0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BYTfCnR9Sl0.mp4/BYTfCnR9Sl0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BYTfCnR9Sl0.mp4/BYTfCnR9Sl0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BYTfCnR9Sl0.m3u8/BYTfCnR9Sl0.m3u8"}, "duration": 402, "id": "BYTfCnR9Sl0", "title": "Is the power rule reasonable", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/power_rule_tutorial/is-the-power-rule-reasonable/", "slug": "is-the-power-rule-reasonable", "kind": "Video", "video_id": "BYTfCnR9Sl0", "keywords": "", "youtube_id": "BYTfCnR9Sl0", "readable_id": "is-the-power-rule-reasonable"}, "xz5DhwMsS1A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xz5DhwMsS1A.mp4/xz5DhwMsS1A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xz5DhwMsS1A.mp4/xz5DhwMsS1A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xz5DhwMsS1A.m3u8/xz5DhwMsS1A.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/spain/ribera-the-martyrdom-of-saint-philip-1639/", "duration": 215, "id": "xz5DhwMsS1A", "title": "Ribera, Martyrdom of Saint Philip", "format": "mp4", "description": "Jusepe (Jos\u00e9) de Ribera, The Martyrdom of Saint Philip, 1639, oil on canvas, 92 x 92 in. (234 x 234 cm), (Museo Nacional del Prado, Madrid) Speakers: Dr. Beth Harris, Dr. Steven Zucker The English Romantic poet, Lord Byron, wrote that the artist, \"Spagnoletto [the little Spaniard] tainted/His brush with all the blood of all the sainted\" (Don Juan , xiii. 71).", "slug": "ribera-the-martyrdom-of-saint-philip-1639", "kind": "Video", "video_id": "xz5DhwMsS1A", "keywords": "ribera, prado, madrid, baroque, Saint Philip, art, art history, smarthistory, painting, Spain", "youtube_id": "xz5DhwMsS1A", "readable_id": "ribera-the-martyrdom-of-saint-philip-1639"}, "EL5kJ-Mzuug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EL5kJ-Mzuug.mp4/EL5kJ-Mzuug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EL5kJ-Mzuug.mp4/EL5kJ-Mzuug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EL5kJ-Mzuug.m3u8/EL5kJ-Mzuug.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/lipids-structure-in-cell-membranes/", "duration": 611, "id": "EL5kJ-Mzuug", "title": "Lipids - Structure in cell membranes", "format": "mp4", "description": "", "slug": "lipids-structure-in-cell-membranes", "kind": "Video", "video_id": "EL5kJ-Mzuug", "keywords": "", "youtube_id": "EL5kJ-Mzuug", "readable_id": "lipids-structure-in-cell-membranes"}, "XmL7RHouyUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XmL7RHouyUo.mp4/XmL7RHouyUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XmL7RHouyUo.mp4/XmL7RHouyUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XmL7RHouyUo.m3u8/XmL7RHouyUo.m3u8"}, "duration": 175, "id": "XmL7RHouyUo", "title": "Schwann cells", "format": "mp4", "description": "This video describes the structure and function of Schwann cells.\u00a0 By Matt Jensen.", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neural-cells/schwann-cells/", "slug": "schwann-cells", "kind": "Video", "video_id": "XmL7RHouyUo", "keywords": "", "youtube_id": "XmL7RHouyUo", "readable_id": "schwann-cells"}, "uzyd_mIJaoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uzyd_mIJaoc.mp4/uzyd_mIJaoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uzyd_mIJaoc.mp4/uzyd_mIJaoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uzyd_mIJaoc.m3u8/uzyd_mIJaoc.m3u8"}, "duration": 279, "id": "uzyd_mIJaoc", "title": "The substitution method", "format": "mp4", "description": " The Substitution Method", "path": "the-substitution-method/", "slug": "the-substitution-method", "kind": "Video", "video_id": "uzyd_mIJaoc", "keywords": "u14_l2_t1_we1, The, Substitution, Method, CC_8_EE_8_b, CC_39336_A-REI_6", "youtube_id": "uzyd_mIJaoc", "readable_id": "the-substitution-method"}, "zRuLkyLx3No": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zRuLkyLx3No.mp4/zRuLkyLx3No.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zRuLkyLx3No.mp4/zRuLkyLx3No.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zRuLkyLx3No.m3u8/zRuLkyLx3No.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/courbet-a-burial-at-ornans-1850/", "duration": 384, "id": "zRuLkyLx3No", "title": "Courbet, Burial at Ornans", "format": "mp4", "description": "Gustave Courbet, A Burial at Ornans, begun late summer 1849, completed 1850, exhibited at the Salon of 1850-51, 124 x 260 inches, oil on canvas (Mus\u00e9e d'Orsay, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "courbet-a-burial-at-ornans-1850", "kind": "Video", "video_id": "zRuLkyLx3No", "keywords": "Courbet, Burial at Ornans, Musee d'Orsay, Paris, Realism, Art History", "youtube_id": "zRuLkyLx3No", "readable_id": "courbet-a-burial-at-ornans-1850"}, "XjCEumlJBno": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XjCEumlJBno.mp4/XjCEumlJBno.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XjCEumlJBno.mp4/XjCEumlJBno.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XjCEumlJBno.m3u8/XjCEumlJBno.m3u8"}, "duration": 862, "id": "XjCEumlJBno", "title": "Calculus proof of centripetal acceleration formula", "format": "mp4", "description": "Proving that a = v^2/r", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/calculus-proof-of-centripetal-acceleration-formula/", "slug": "calculus-proof-of-centripetal-acceleration-formula", "kind": "Video", "video_id": "XjCEumlJBno", "keywords": "force, physics, orbit", "youtube_id": "XjCEumlJBno", "readable_id": "calculus-proof-of-centripetal-acceleration-formula"}, "t9_lemSlr1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t9_lemSlr1o.mp4/t9_lemSlr1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t9_lemSlr1o.mp4/t9_lemSlr1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t9_lemSlr1o.m3u8/t9_lemSlr1o.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/flanders-1/peter-paul-rubens-the-rape-of-the-daughters-of-leucippus/", "duration": 254, "id": "t9_lemSlr1o", "title": "Rubens, The Rape of the Daughters of Leucippus", "format": "mp4", "description": "Sir Peter Paul Rubens, The Rape of the Daughters of Leucippus, 1617-18, oil on canvas, 224 x 210.5 cm, Alte Pinakothek, Munich Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "peter-paul-rubens-the-rape-of-the-daughters-of-leucippus", "kind": "Video", "video_id": "t9_lemSlr1o", "keywords": "", "youtube_id": "t9_lemSlr1o", "readable_id": "peter-paul-rubens-the-rape-of-the-daughters-of-leucippus"}, "YlZYarC598c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YlZYarC598c.mp4/YlZYarC598c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YlZYarC598c.mp4/YlZYarC598c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YlZYarC598c.m3u8/YlZYarC598c.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2008-may-4-20/", "duration": 131, "id": "YlZYarC598c", "title": "20 Solving for variable", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-20", "kind": "Video", "video_id": "YlZYarC598c", "keywords": "", "youtube_id": "YlZYarC598c", "readable_id": "sat-2008-may-4-20"}, "dPmkIEkxXwc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dPmkIEkxXwc.mp4/dPmkIEkxXwc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dPmkIEkxXwc.mp4/dPmkIEkxXwc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dPmkIEkxXwc.m3u8/dPmkIEkxXwc.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/routes-of-drug-entry/", "duration": 231, "id": "dPmkIEkxXwc", "title": "Routes of drug entry", "format": "mp4", "description": "", "slug": "routes-of-drug-entry", "kind": "Video", "video_id": "dPmkIEkxXwc", "keywords": "", "youtube_id": "dPmkIEkxXwc", "readable_id": "routes-of-drug-entry"}, "l5zJvZKfMYE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l5zJvZKfMYE.mp4/l5zJvZKfMYE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l5zJvZKfMYE.mp4/l5zJvZKfMYE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l5zJvZKfMYE.m3u8/l5zJvZKfMYE.m3u8"}, "duration": 866, "id": "l5zJvZKfMYE", "title": "Green's theorem proof part 1", "format": "mp4", "description": "Part 1 of the proof of Green's Theorem", "path": "khan/math/multivariable-calculus/line_integrals_topic/greens_theorem/green-s-theorem-proof-part-1/", "slug": "green-s-theorem-proof-part-1", "kind": "Video", "video_id": "l5zJvZKfMYE", "keywords": "green's, theorem, proof, vector, calculus", "youtube_id": "l5zJvZKfMYE", "readable_id": "green-s-theorem-proof-part-1"}, "uucYGK_Ymp0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uucYGK_Ymp0.mp4/uucYGK_Ymp0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uucYGK_Ymp0.mp4/uucYGK_Ymp0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uucYGK_Ymp0.m3u8/uucYGK_Ymp0.m3u8"}, "duration": 350, "id": "uucYGK_Ymp0", "title": "Newton's Prism Experiment", "format": "mp4", "description": "What color is white light? Want to know how to make it?", "path": "newtons-prism-experiment/", "slug": "newtons-prism-experiment", "kind": "Video", "video_id": "uucYGK_Ymp0", "keywords": "newton", "youtube_id": "uucYGK_Ymp0", "readable_id": "newtons-prism-experiment"}, "j00Ep0Byu0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j00Ep0Byu0Y.mp4/j00Ep0Byu0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j00Ep0Byu0Y.mp4/j00Ep0Byu0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j00Ep0Byu0Y.m3u8/j00Ep0Byu0Y.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/enzyme-structure-and-function/enzymes-and-activation-energy/", "duration": 332, "id": "j00Ep0Byu0Y", "title": "Enzymes and activation energy", "format": "mp4", "description": "Explore the role of enzymes in making a reaction more likely to happen quickly. By Ross Firestone.", "slug": "enzymes-and-activation-energy", "kind": "Video", "video_id": "j00Ep0Byu0Y", "keywords": "", "youtube_id": "j00Ep0Byu0Y", "readable_id": "enzymes-and-activation-energy"}, "xFBK9534NI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xFBK9534NI8.mp4/xFBK9534NI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xFBK9534NI8.mp4/xFBK9534NI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xFBK9534NI8.m3u8/xFBK9534NI8.m3u8"}, "duration": 626, "id": "xFBK9534NI8", "title": "Closing stages of World War I", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-fighting/closing-stages-of-world-war-i/", "slug": "closing-stages-of-world-war-i", "kind": "Video", "video_id": "xFBK9534NI8", "keywords": "", "youtube_id": "xFBK9534NI8", "readable_id": "closing-stages-of-world-war-i"}, "bbeWLtarzrE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bbeWLtarzrE.mp4/bbeWLtarzrE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bbeWLtarzrE.mp4/bbeWLtarzrE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bbeWLtarzrE.m3u8/bbeWLtarzrE.m3u8"}, "duration": 866, "id": "bbeWLtarzrE", "title": "Sum of squares of polynomial roots", "format": "mp4", "description": "Sum of Squares of Polynomial Roots (Newton Sums)", "path": "khan/math/competition-math/aime/2003-aime/sum-of-squares-of-polynomial-roots/", "slug": "sum-of-squares-of-polynomial-roots", "kind": "Video", "video_id": "bbeWLtarzrE", "keywords": "Newton, Sums, algebra, sum, of, squares", "youtube_id": "bbeWLtarzrE", "readable_id": "sum-of-squares-of-polynomial-roots"}, "LSG6w2Np_rk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LSG6w2Np_rk.mp4/LSG6w2Np_rk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LSG6w2Np_rk.mp4/LSG6w2Np_rk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LSG6w2Np_rk.m3u8/LSG6w2Np_rk.m3u8"}, "path": "khan/humanities/art-americas/new-topic-2015-04-22t180902849z/ancient-colombia/hammer-and-fire/", "duration": 245, "id": "LSG6w2Np_rk", "title": "By hammer and fire: Goldmaking techniques of the ancient Colombians", "format": "mp4", "description": "By hammer and fire (a martillo y fuego), Goldmaking techniques of the ancient Colombians \u00a9 Trustees of the British Museum", "slug": "hammer-and-fire", "kind": "Video", "video_id": "LSG6w2Np_rk", "keywords": "colombia", "youtube_id": "LSG6w2Np_rk", "readable_id": "hammer-and-fire"}, "VdBZSEF_FhU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VdBZSEF_FhU.mp4/VdBZSEF_FhU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VdBZSEF_FhU.mp4/VdBZSEF_FhU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VdBZSEF_FhU.m3u8/VdBZSEF_FhU.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-12/", "duration": 601, "id": "VdBZSEF_FhU", "title": "GMAT: Math 12", "format": "mp4", "description": "65-69, pgs. 160-161", "slug": "gmat-math-12", "kind": "Video", "video_id": "VdBZSEF_FhU", "keywords": "gmat, math, problem, solving", "youtube_id": "VdBZSEF_FhU", "readable_id": "gmat-math-12"}, "GcjgWov7mTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GcjgWov7mTM.mp4/GcjgWov7mTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GcjgWov7mTM.mp4/GcjgWov7mTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GcjgWov7mTM.m3u8/GcjgWov7mTM.m3u8"}, "path": "khan/science/biology/her/evolution-and-natural-selection/introduction-to-evolution-and-natural-selection/", "duration": 1059, "id": "GcjgWov7mTM", "title": "Introduction to evolution and natural selection", "format": "mp4", "description": "Ape Clarification - that they have no tails", "slug": "introduction-to-evolution-and-natural-selection", "kind": "Video", "video_id": "GcjgWov7mTM", "keywords": "evolution, natural, selection, variation, biology", "youtube_id": "GcjgWov7mTM", "readable_id": "introduction-to-evolution-and-natural-selection"}, "4qfdCwys2ew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4qfdCwys2ew.mp4/4qfdCwys2ew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4qfdCwys2ew.mp4/4qfdCwys2ew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4qfdCwys2ew.m3u8/4qfdCwys2ew.m3u8"}, "duration": 1068, "id": "4qfdCwys2ew", "title": "Dirac delta function", "format": "mp4", "description": "Introduction to the Dirac Delta Function", "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/dirac-delta-function/", "slug": "dirac-delta-function", "kind": "Video", "video_id": "4qfdCwys2ew", "keywords": "differential, equations, laplace, transform, dirac", "youtube_id": "4qfdCwys2ew", "readable_id": "dirac-delta-function"}, "72FUrRxXCpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/72FUrRxXCpQ.mp4/72FUrRxXCpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/72FUrRxXCpQ.mp4/72FUrRxXCpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/72FUrRxXCpQ.m3u8/72FUrRxXCpQ.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/demographic-structure-of-society-overview/", "duration": 422, "id": "72FUrRxXCpQ", "title": "Demographic structure of society overview", "format": "mp4", "description": "", "slug": "demographic-structure-of-society-overview", "kind": "Video", "video_id": "72FUrRxXCpQ", "keywords": "", "youtube_id": "72FUrRxXCpQ", "readable_id": "demographic-structure-of-society-overview"}, "jLFeqQxGtOc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jLFeqQxGtOc.mp4/jLFeqQxGtOc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jLFeqQxGtOc.mp4/jLFeqQxGtOc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jLFeqQxGtOc.m3u8/jLFeqQxGtOc.m3u8"}, "path": "khan/math/probability/statistical-studies/hypothesis-test/statistical-significance-experiment/", "duration": 484, "id": "jLFeqQxGtOc", "title": "Statistical significance of experiment", "format": "mp4", "description": "", "slug": "statistical-significance-experiment", "kind": "Video", "video_id": "jLFeqQxGtOc", "keywords": "", "youtube_id": "jLFeqQxGtOc", "readable_id": "statistical-significance-experiment"}, "E34CftP455k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E34CftP455k.mp4/E34CftP455k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E34CftP455k.mp4/E34CftP455k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E34CftP455k.m3u8/E34CftP455k.m3u8"}, "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/dot-vs-cross-product/", "duration": 645, "id": "E34CftP455k", "title": "Dot vs. cross product", "format": "mp4", "description": "Understanding the differences between the dot and cross products", "slug": "dot-vs-cross-product", "kind": "Video", "video_id": "E34CftP455k", "keywords": "vector, dot, cross, products", "youtube_id": "E34CftP455k", "readable_id": "dot-vs-cross-product"}, "cU9L1bTDePM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cU9L1bTDePM.mp4/cU9L1bTDePM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cU9L1bTDePM.mp4/cU9L1bTDePM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cU9L1bTDePM.m3u8/cU9L1bTDePM.m3u8"}, "path": "khan/math/competition-math/amc-10/2013-amc-10-a/2013-amc-10-a-25/", "duration": 453, "id": "cU9L1bTDePM", "title": "2013 AMC 10 A #25", "format": "mp4", "description": "Video by\u00a0Art of Problem Solving. \u00a0Problem from the MAA\u00a0American Mathematics Competitions", "slug": "2013-amc-10-a-25", "kind": "Video", "video_id": "cU9L1bTDePM", "keywords": "", "youtube_id": "cU9L1bTDePM", "readable_id": "2013-amc-10-a-25"}, "TvPsESzCYis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TvPsESzCYis.mp4/TvPsESzCYis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TvPsESzCYis.mp4/TvPsESzCYis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TvPsESzCYis.m3u8/TvPsESzCYis.m3u8"}, "duration": 399, "id": "TvPsESzCYis", "title": "Under Pressure", "format": "mp4", "description": "In this video we replicate Pascal's famous experiment that showed atmospheric pressure was due to the column of the weight of the air above. To test this we build a simple pressure measuring device, make measurements around Boston, and then use the ideal gas law to calculate the pressures we measured.\n\nLicense: Creative Commons BY-NC-SA\nMore information at http://k12videos.mit.edu/terms-conditions", "path": "under-pressure/", "slug": "under-pressure", "kind": "Video", "video_id": "TvPsESzCYis", "keywords": "pressure", "youtube_id": "TvPsESzCYis", "readable_id": "under-pressure"}, "LDyMYyiAsQs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LDyMYyiAsQs.mp4/LDyMYyiAsQs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LDyMYyiAsQs.mp4/LDyMYyiAsQs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LDyMYyiAsQs.m3u8/LDyMYyiAsQs.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-36/", "duration": 663, "id": "LDyMYyiAsQs", "title": "GMAT: Data sufficiency 36", "format": "mp4", "description": "141-142, pg. 289-290", "slug": "gmat-data-sufficiency-36", "kind": "Video", "video_id": "LDyMYyiAsQs", "keywords": "gmat, data, sufficiency, math", "youtube_id": "LDyMYyiAsQs", "readable_id": "gmat-data-sufficiency-36"}, "RKcJvjP9zgY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RKcJvjP9zgY.mp4/RKcJvjP9zgY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RKcJvjP9zgY.mp4/RKcJvjP9zgY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RKcJvjP9zgY.m3u8/RKcJvjP9zgY.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation/bernini-ecstasy-of-st-theresa/", "duration": 453, "id": "RKcJvjP9zgY", "title": "Bernini, Ecstasy of Saint Teresa", "format": "mp4", "description": "Gian Lorenzo Bernini, Ecstasy of Saint Teresa, 1647-52 (Cornaro Chapel, Santa Maria della Vittoria, Rome). Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\nThis is Saint Teresa's\u00a0description of the event that Bernini depicts:\u00a0\"Beside me, on the left, appeared an angel in bodily form.... He was not tall but short, and very beautiful; and his face was so aflame that he appeared to be one of the highest rank of angels, who seem to be all on fire.... In his hands I saw a great golden spear, and at the iron tip there appeared to be a point of fire. This he plunged into my heart several times so that it penetrated to my entrails. When he pulled it out I felt that he took them with it, and left me utterly consumed by the great love of God. The pain was so severe that it made me utter several moans. The sweetness caused by this intense pain is so extreme that one cannot possibly wish it to cease, nor is one's soul content with anything but God. This is not a physical but a spiritual pain, though the body has some share in it\u2014even a considerable share.\"\n", "slug": "bernini-ecstasy-of-st-theresa", "kind": "Video", "video_id": "RKcJvjP9zgY", "keywords": "Bernini, Theresa, Ecstasy of Saint Theresa, Gian Lorenzo Bernini, 1647, 1652, Cornaro, Vittoria, Rome, Baroque, Counter Reformation", "youtube_id": "RKcJvjP9zgY", "readable_id": "bernini-ecstasy-of-st-theresa"}, "mzQQ9n-eoLs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mzQQ9n-eoLs.mp4/mzQQ9n-eoLs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mzQQ9n-eoLs.mp4/mzQQ9n-eoLs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mzQQ9n-eoLs.m3u8/mzQQ9n-eoLs.m3u8"}, "duration": 317, "id": "mzQQ9n-eoLs", "title": "Unit vector in same direction", "format": "mp4", "description": "", "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/unit-vector-same-direction/", "slug": "unit-vector-same-direction", "kind": "Video", "video_id": "mzQQ9n-eoLs", "keywords": "", "youtube_id": "mzQQ9n-eoLs", "readable_id": "unit-vector-same-direction"}, "_BFDgTci0ck": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_BFDgTci0ck.mp4/_BFDgTci0ck.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_BFDgTci0ck.mp4/_BFDgTci0ck.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_BFDgTci0ck.m3u8/_BFDgTci0ck.m3u8"}, "duration": 563, "id": "_BFDgTci0ck", "title": "The respiratory center", "format": "mp4", "description": "Find out how the respiratory center collects information from all over the body and then helps regulate your breathing. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/rn-respiratory-system/breathing-control/the-respiratory-center/", "slug": "the-respiratory-center", "kind": "Video", "video_id": "_BFDgTci0ck", "keywords": "", "youtube_id": "_BFDgTci0ck", "readable_id": "the-respiratory-center"}, "049sSl4lEuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/049sSl4lEuk.mp4/049sSl4lEuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/049sSl4lEuk.mp4/049sSl4lEuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/049sSl4lEuk.m3u8/049sSl4lEuk.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/fra-filippo-lippi-madonna-and-child-c-1440/", "duration": 194, "id": "049sSl4lEuk", "title": "Fra Filippo Lippi, Madonna and Child", "format": "mp4", "description": "Fra Filippo Lippi, Madonna and Child, c. 1440, tempera on panel, 79 x 51.1 cm / 31-1/8 x 20-1/8 inches (National Gallery of Art, Washington) Speakers: Dr. Beth Harris and Dr. Steven Zucker\u00a0", "slug": "fra-filippo-lippi-madonna-and-child-c-1440", "kind": "Video", "video_id": "049sSl4lEuk", "keywords": "Lippi, smarthistory, art, art history, Renaissance", "youtube_id": "049sSl4lEuk", "readable_id": "fra-filippo-lippi-madonna-and-child-c-1440"}, "WVyusmjiTXI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WVyusmjiTXI.mp4/WVyusmjiTXI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WVyusmjiTXI.mp4/WVyusmjiTXI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WVyusmjiTXI.m3u8/WVyusmjiTXI.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/beginners-guide-late-gothic/gold-ground-panel-painting/", "duration": 623, "id": "WVyusmjiTXI", "title": "Gold-ground panel painting", "format": "mp4", "description": "Wood panel was the support most often used for painting before canvas replaced it at the end of the 1500s. Artists applied gold ground and expensive pigments to the most splendid panel paintings. Love art? Follow us on Google+", "slug": "gold-ground-panel-painting", "kind": "Video", "video_id": "WVyusmjiTXI", "keywords": "", "youtube_id": "WVyusmjiTXI", "readable_id": "gold-ground-panel-painting"}, "99hAYY4usME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/99hAYY4usME.mp4/99hAYY4usME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/99hAYY4usME.mp4/99hAYY4usME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/99hAYY4usME.m3u8/99hAYY4usME.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/victorian-late/sir-frederic-leighton-an-athlete-wrestling-with-a-python-1877/", "duration": 304, "id": "99hAYY4usME", "title": "Leighton, an Athlete Wrestling with a Python", "format": "mp4", "description": "Sir Frederic Leighton, An Athlete Wrestling with a Python, 1877, bronze, 1746 x 984 x 1099 mm (Tate Britain, London)", "slug": "sir-frederic-leighton-an-athlete-wrestling-with-a-python-1877", "kind": "Video", "video_id": "99hAYY4usME", "keywords": "Frederic Leighton, Leighton, Athlete, Wrestling, Python, 1877, bronze, Tate Britain, English, The New Sculpture, Sculpture, Nude, Male, Art, Cast, Google Art Project, Smarthistory, Khan Academy, OER, art history, England", "youtube_id": "99hAYY4usME", "readable_id": "sir-frederic-leighton-an-athlete-wrestling-with-a-python-1877"}, "PupNgv49_WY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PupNgv49_WY.mp4/PupNgv49_WY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PupNgv49_WY.mp4/PupNgv49_WY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PupNgv49_WY.m3u8/PupNgv49_WY.m3u8"}, "duration": 554, "id": "PupNgv49_WY", "title": "Introduction to logarithm properties", "format": "mp4", "description": "Introduction to the first two logarithm properties.", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/introduction-to-logarithm-properties/", "slug": "introduction-to-logarithm-properties", "kind": "Video", "video_id": "PupNgv49_WY", "keywords": "logarithms, properties, examples, math, CC_39336_F-BF_5", "youtube_id": "PupNgv49_WY", "readable_id": "introduction-to-logarithm-properties"}, "yvzyC4VBpUU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yvzyC4VBpUU.mp4/yvzyC4VBpUU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yvzyC4VBpUU.mp4/yvzyC4VBpUU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yvzyC4VBpUU.m3u8/yvzyC4VBpUU.m3u8"}, "duration": 213, "id": "yvzyC4VBpUU", "title": "Absolute value of a complex number", "format": "mp4", "description": "", "path": "khan/math/precalculus/imaginary_complex_precalc/complex_analysis/absolute-value-of-a-complex-number/", "slug": "absolute-value-of-a-complex-number", "kind": "Video", "video_id": "yvzyC4VBpUU", "keywords": "", "youtube_id": "yvzyC4VBpUU", "readable_id": "absolute-value-of-a-complex-number"}, "KBOGRxV49MQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KBOGRxV49MQ.mp4/KBOGRxV49MQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KBOGRxV49MQ.mp4/KBOGRxV49MQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KBOGRxV49MQ.m3u8/KBOGRxV49MQ.m3u8"}, "duration": 271, "id": "KBOGRxV49MQ", "title": "Bridge Design (and Destruction!) Part 2", "format": "mp4", "description": "This is a two part video that introduces the different types of bridges.", "path": "bridge-design-and-destruction-part-2/", "slug": "bridge-design-and-destruction-part-2", "kind": "Video", "video_id": "KBOGRxV49MQ", "keywords": "bridges", "youtube_id": "KBOGRxV49MQ", "readable_id": "bridge-design-and-destruction-part-2"}, "z8h7QgevqjM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z8h7QgevqjM.mp4/z8h7QgevqjM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z8h7QgevqjM.mp4/z8h7QgevqjM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z8h7QgevqjM.m3u8/z8h7QgevqjM.m3u8"}, "duration": 326, "id": "z8h7QgevqjM", "title": "Carboxylic acid naming", "format": "mp4", "description": "Carboxylic Acid Naming", "path": "khan/science/organic-chemistry/carboxylic-acids-derivatives/naming-carboxylic-acids-sal/carboxylic-acid-naming/", "slug": "carboxylic-acid-naming", "kind": "Video", "video_id": "z8h7QgevqjM", "keywords": "Carboxylic, Acid, Naming", "youtube_id": "z8h7QgevqjM", "readable_id": "carboxylic-acid-naming"}, "-QpUrSn3cWU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-QpUrSn3cWU.mp4/-QpUrSn3cWU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-QpUrSn3cWU.mp4/-QpUrSn3cWU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-QpUrSn3cWU.m3u8/-QpUrSn3cWU.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/humes-skepticism-part-1/", "duration": 276, "id": "-QpUrSn3cWU", "title": "Hume: Skepticism and Induction part 1", "format": "mp4", "description": "According to the philosopher David Hume (1711-1776), absolutely everything we know falls into one of two categories: either it is a relation of ideas (e.g., 2 + 2 =4) or it is a matter of fact (e.g., the sky is blue). Daniel Greco walks us through this famous Humean distinction in preparation for examining Hume's even more famous skeptical argument against induction.\n\nSpeaker: Dr. Daniel Greco, Assistant Professor, Yale University", "slug": "humes-skepticism-part-1", "kind": "Video", "video_id": "-QpUrSn3cWU", "keywords": "", "youtube_id": "-QpUrSn3cWU", "readable_id": "humes-skepticism-part-1"}, "p6Ovm_jaeKg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p6Ovm_jaeKg.mp4/p6Ovm_jaeKg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p6Ovm_jaeKg.mp4/p6Ovm_jaeKg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p6Ovm_jaeKg.m3u8/p6Ovm_jaeKg.m3u8"}, "path": "khan/partner-content/all-star-orchestra/instruments-of-the-orchestra/brass/bass-trombone-interview-and-demonstration-with-denson-paul-pollard/", "duration": 411, "id": "p6Ovm_jaeKg", "title": "Bass Trombone: Interview and demonstration with Denson Paul Pollard", "format": "mp4", "description": "", "slug": "bass-trombone-interview-and-demonstration-with-denson-paul-pollard", "kind": "Video", "video_id": "p6Ovm_jaeKg", "keywords": "", "youtube_id": "p6Ovm_jaeKg", "readable_id": "bass-trombone-interview-and-demonstration-with-denson-paul-pollard"}, "OzyH-1p9nAg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OzyH-1p9nAg.mp4/OzyH-1p9nAg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OzyH-1p9nAg.mp4/OzyH-1p9nAg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OzyH-1p9nAg.m3u8/OzyH-1p9nAg.m3u8"}, "duration": 798, "id": "OzyH-1p9nAg", "title": "Napoleon and the Wars of the First and Second Coalitions", "format": "mp4", "description": "Overview of the first two coalitions against France and Napoleon's roles in them.", "path": "khan/humanities/history/1600s-1800s/napoleon-bonaparte/napoleon-and-the-wars-of-the-first-and-second-coalitions/", "slug": "napoleon-and-the-wars-of-the-first-and-second-coalitions", "kind": "Video", "video_id": "OzyH-1p9nAg", "keywords": "french, history, napoleon, bonaparte", "youtube_id": "OzyH-1p9nAg", "readable_id": "napoleon-and-the-wars-of-the-first-and-second-coalitions"}, "zAkMhEqWFF0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zAkMhEqWFF0.mp4/zAkMhEqWFF0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zAkMhEqWFF0.mp4/zAkMhEqWFF0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zAkMhEqWFF0.m3u8/zAkMhEqWFF0.m3u8"}, "duration": 835, "id": "zAkMhEqWFF0", "title": "Is short selling bad?", "format": "mp4", "description": "A discussion of the virtues and/or vices of short selling.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/shorting-stock/is-short-selling-bad/", "slug": "is-short-selling-bad", "kind": "Video", "video_id": "zAkMhEqWFF0", "keywords": "shorting, short, selling, ethics, volatility", "youtube_id": "zAkMhEqWFF0", "readable_id": "is-short-selling-bad"}, "za0QJRZ-yQ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/za0QJRZ-yQ4.mp4/za0QJRZ-yQ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/za0QJRZ-yQ4.mp4/za0QJRZ-yQ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/za0QJRZ-yQ4.m3u8/za0QJRZ-yQ4.m3u8"}, "duration": 487, "id": "za0QJRZ-yQ4", "title": "Domain and range of a function given a formula", "format": "mp4", "description": "Domain and Range of a Function Given a Formula", "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain-and-range-of-a-function-given-a-formula/", "slug": "domain-and-range-of-a-function-given-a-formula", "kind": "Video", "video_id": "za0QJRZ-yQ4", "keywords": "u17_l2_t3_we1, Domain, and, Range, of, Function, Given, Formula", "youtube_id": "za0QJRZ-yQ4", "readable_id": "domain-and-range-of-a-function-given-a-formula"}, "oiDvNs15tkE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oiDvNs15tkE.mp4/oiDvNs15tkE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oiDvNs15tkE.mp4/oiDvNs15tkE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oiDvNs15tkE.m3u8/oiDvNs15tkE.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/logistic-differential-equation/logistic-differential-equation-intuition/", "duration": 649, "id": "oiDvNs15tkE", "title": "Logistic differential equation intuition", "format": "mp4", "description": "", "slug": "logistic-differential-equation-intuition", "kind": "Video", "video_id": "oiDvNs15tkE", "keywords": "", "youtube_id": "oiDvNs15tkE", "readable_id": "logistic-differential-equation-intuition"}, "xg2OHgS0ijk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xg2OHgS0ijk.mp4/xg2OHgS0ijk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xg2OHgS0ijk.mp4/xg2OHgS0ijk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xg2OHgS0ijk.m3u8/xg2OHgS0ijk.m3u8"}, "duration": 73, "id": "xg2OHgS0ijk", "title": "Spider's bezel", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/spider_bot/7-attach-and-adjust-the-spider-s-bezel/", "slug": "7-attach-and-adjust-the-spider-s-bezel", "kind": "Video", "video_id": "xg2OHgS0ijk", "keywords": "", "youtube_id": "xg2OHgS0ijk", "readable_id": "7-attach-and-adjust-the-spider-s-bezel"}, "gbGghzo7yEM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gbGghzo7yEM.mp4/gbGghzo7yEM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gbGghzo7yEM.mp4/gbGghzo7yEM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gbGghzo7yEM.m3u8/gbGghzo7yEM.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-area-circumference/area-of-shaded-region/", "duration": 91, "id": "gbGghzo7yEM", "title": "Area of a shaded region", "format": "mp4", "description": "Here's a fun one: find the area of a shaded region where you first determine the area of a square and then the area of a circle.", "slug": "area-of-shaded-region", "kind": "Video", "video_id": "gbGghzo7yEM", "keywords": "", "youtube_id": "gbGghzo7yEM", "readable_id": "area-of-shaded-region"}, "MvMI2r1RS78": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MvMI2r1RS78.mp4/MvMI2r1RS78.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MvMI2r1RS78.mp4/MvMI2r1RS78.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MvMI2r1RS78.m3u8/MvMI2r1RS78.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/sculpture/quarrying-and-carving-marble/", "duration": 538, "id": "MvMI2r1RS78", "title": "Quarrying and carving marble", "format": "mp4", "description": "Quarrying and Carving Marble Speakers: Dr. Beth Harris, Dr. David Drogin\u00a0", "slug": "quarrying-and-carving-marble", "kind": "Video", "video_id": "MvMI2r1RS78", "keywords": "", "youtube_id": "MvMI2r1RS78", "readable_id": "quarrying-and-carving-marble"}, "XLcyqs5vQHQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XLcyqs5vQHQ.mp4/XLcyqs5vQHQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XLcyqs5vQHQ.mp4/XLcyqs5vQHQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XLcyqs5vQHQ.m3u8/XLcyqs5vQHQ.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pertussis/pathophysiology-of-pertussis/", "duration": 549, "id": "XLcyqs5vQHQ", "title": "Pathophysiology of pertussis", "format": "mp4", "description": "", "slug": "pathophysiology-of-pertussis", "kind": "Video", "video_id": "XLcyqs5vQHQ", "keywords": "", "youtube_id": "XLcyqs5vQHQ", "readable_id": "pathophysiology-of-pertussis"}, "FpLPx_Akl7Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FpLPx_Akl7Y.mp4/FpLPx_Akl7Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FpLPx_Akl7Y.mp4/FpLPx_Akl7Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FpLPx_Akl7Y.m3u8/FpLPx_Akl7Y.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/greek-pottery/ancient-greek-vase-black-figure-technique/", "duration": 256, "id": "FpLPx_Akl7Y", "title": "Ancient Greek vase production and the black-figure technique", "format": "mp4", "description": "Used for the storage and shipment of grains, wine, and other goods, as well as in the all-male Greek drinking party, known as the symposium, ancient Greek vases were decorated with a variety of subjects ranging from scenes of everyday life to the tales of heroes and gods. The two most popular techniques of vase decoration were the black-figure technique, so-named because the figures were painted black, and the red-figure technique, in which the figures were left the red color of the clay. The black-figure technique developed around 700 B.C. and remained the most popular Greek pottery style until about 530 B.C., when the red-figure technique was developed, eventually surpassing it in popularity. This video illustrates the techniques used in the making and decorating of a black-figure amphora (storage jar) in the Art Institute of Chicago's collection.\nThis video was produced with the generous support of a Long Range Fund grant provided by the Community Associates of the Art Institute of Chicago. It was created for LaunchPad, a program of digital interpretive materials that supplement the viewing of works of art on display in the Art Institute of Chicago's galleries.\n", "slug": "ancient-greek-vase-black-figure-technique", "kind": "Video", "video_id": "FpLPx_Akl7Y", "keywords": "", "youtube_id": "FpLPx_Akl7Y", "readable_id": "ancient-greek-vase-black-figure-technique"}, "Jfaipkw691E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jfaipkw691E.mp4/Jfaipkw691E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jfaipkw691E.mp4/Jfaipkw691E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jfaipkw691E.m3u8/Jfaipkw691E.m3u8"}, "path": "khan/partner-content/big-history-project/future/the-biosphere/bhp-atmosphere-climate/", "duration": 219, "id": "Jfaipkw691E", "title": "The Atmosphere and Climate", "format": "mp4", "description": "Explore climate change on a geologic time scale, and consider recent human impacts on climate and the atmosphere.", "slug": "bhp-atmosphere-climate", "kind": "Video", "video_id": "Jfaipkw691E", "keywords": "", "youtube_id": "Jfaipkw691E", "readable_id": "bhp-atmosphere-climate"}, "QQMZ1ljepWg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QQMZ1ljepWg.mp4/QQMZ1ljepWg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QQMZ1ljepWg.mp4/QQMZ1ljepWg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QQMZ1ljepWg.m3u8/QQMZ1ljepWg.m3u8"}, "duration": 619, "id": "QQMZ1ljepWg", "title": "Chiral examples 2", "format": "mp4", "description": "Chiral Examples 2", "path": "khan/science/organic-chemistry/stereochemistry-topic/chirality-r-s-system/chiral-examples-2/", "slug": "chiral-examples-2", "kind": "Video", "video_id": "QQMZ1ljepWg", "keywords": "Chiral, Examples", "youtube_id": "QQMZ1ljepWg", "readable_id": "chiral-examples-2"}, "eJxSDYO82c4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eJxSDYO82c4.mp4/eJxSDYO82c4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eJxSDYO82c4.mp4/eJxSDYO82c4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eJxSDYO82c4.m3u8/eJxSDYO82c4.m3u8"}, "duration": 236, "id": "eJxSDYO82c4", "title": "Chain rule example using visual information", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-on-two-functions-example-2/", "slug": "chain-rule-on-two-functions-example-2", "kind": "Video", "video_id": "eJxSDYO82c4", "keywords": "", "youtube_id": "eJxSDYO82c4", "readable_id": "chain-rule-on-two-functions-example-2"}, "Dy5uDkOoMNc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Dy5uDkOoMNc.mp4/Dy5uDkOoMNc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Dy5uDkOoMNc.mp4/Dy5uDkOoMNc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Dy5uDkOoMNc.m3u8/Dy5uDkOoMNc.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens/understanding-place-value-while-adding-tens/", "duration": 196, "id": "Dy5uDkOoMNc", "title": "Understanding place value while adding tens", "format": "mp4", "description": "Learn how to add 23 + 30 by thinking about place value.", "slug": "understanding-place-value-while-adding-tens", "kind": "Video", "video_id": "Dy5uDkOoMNc", "keywords": "", "youtube_id": "Dy5uDkOoMNc", "readable_id": "understanding-place-value-while-adding-tens"}, "C3KlN5kTWAs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C3KlN5kTWAs.mp4/C3KlN5kTWAs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C3KlN5kTWAs.mp4/C3KlN5kTWAs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C3KlN5kTWAs.m3u8/C3KlN5kTWAs.m3u8"}, "duration": 247, "id": "C3KlN5kTWAs", "title": "Contango from trader perspective", "format": "mp4", "description": "What a trader means when they say that a market is in contango", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/contango-from-trader-perspective/", "slug": "contango-from-trader-perspective", "kind": "Video", "video_id": "C3KlN5kTWAs", "keywords": "investing, finance", "youtube_id": "C3KlN5kTWAs", "readable_id": "contango-from-trader-perspective"}, "sjUhr0HkLUg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sjUhr0HkLUg.mp4/sjUhr0HkLUg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sjUhr0HkLUg.mp4/sjUhr0HkLUg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sjUhr0HkLUg.m3u8/sjUhr0HkLUg.m3u8"}, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/we-graph-domain-and-range-of-sine-function/", "duration": 562, "id": "sjUhr0HkLUg", "title": "Example: Graph, domain, and range of sine function", "format": "mp4", "description": "Graphing a sin curve to think about its domain and range.", "slug": "we-graph-domain-and-range-of-sine-function", "kind": "Video", "video_id": "sjUhr0HkLUg", "keywords": "graph, sine, sin", "youtube_id": "sjUhr0HkLUg", "readable_id": "we-graph-domain-and-range-of-sine-function"}, "p1KkXA0vKsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p1KkXA0vKsQ.mp4/p1KkXA0vKsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p1KkXA0vKsQ.mp4/p1KkXA0vKsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p1KkXA0vKsQ.m3u8/p1KkXA0vKsQ.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/sizes-of-infinity-part-1-hilberts-hotel/", "duration": 587, "id": "p1KkXA0vKsQ", "title": "Mathematics: Sizes of infinity part 1: Hilbert's Hotel", "format": "mp4", "description": "Part 1 of a pair. Agustin teaches us about some weird properties of infinity, using an example due to mathematician David Hilbert called 'Hilbert's Hotel'. He shows us a result proved by another mathematician, Georg Cantor: that many infinite collections of things are the same size. Things that are the same size include: the natural numbers, the natural number plus one, the natural numbers plus the natural numbers, and as many copies of the natural numbers as there are natural numbers! Amazing!\n\nSpeaker: Dr. Agust\u00edn Rayo, Professor of Philosophy, MIT", "slug": "sizes-of-infinity-part-1-hilberts-hotel", "kind": "Video", "video_id": "p1KkXA0vKsQ", "keywords": "", "youtube_id": "p1KkXA0vKsQ", "readable_id": "sizes-of-infinity-part-1-hilberts-hotel"}, "ahXIMUkSXX0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ahXIMUkSXX0.mp4/ahXIMUkSXX0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ahXIMUkSXX0.mp4/ahXIMUkSXX0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ahXIMUkSXX0.m3u8/ahXIMUkSXX0.m3u8"}, "path": "khan/math/recreational-math/vi-hart/spirals-fibonacci/doodling-in-math-spirals-fibonacci-and-being-a-plant-1-of-3/", "duration": 355, "id": "ahXIMUkSXX0", "title": "Doodling in math: Spirals, Fibonacci, and being a plant [1 of 3]", "format": "mp4", "description": "Part 2: http://youtu.be/lOIP_Z_-0Hs Part 3: http://youtu.be/14-NdQwKz9w Re: Pineapple under the Sea: http://youtu.be/gBxeju8dMho", "slug": "doodling-in-math-spirals-fibonacci-and-being-a-plant-1-of-3", "kind": "Video", "video_id": "ahXIMUkSXX0", "keywords": "doodling, math, spirals, Fibonacci, sequence, series, plants, phyllotaxis, golden ratio, pine cones, flowers, vi hart", "youtube_id": "ahXIMUkSXX0", "readable_id": "doodling-in-math-spirals-fibonacci-and-being-a-plant-1-of-3"}, "K9iMsmhBOjk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K9iMsmhBOjk.mp4/K9iMsmhBOjk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K9iMsmhBOjk.mp4/K9iMsmhBOjk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K9iMsmhBOjk.m3u8/K9iMsmhBOjk.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/flanders-1/peter-paul-rubens-the-consequences-of-war-1638-39/", "duration": 235, "id": "K9iMsmhBOjk", "title": "Rubens, the Consequences of War", "format": "mp4", "description": "Peter Paul Rubens, The Consequences of War, 1638-39, oil on canvas (Palatine Gallery, Palazzo Pitti, Florence), speakers: Dr. Steven Zucker and Dr. Beth Harris\n\nRubens, explaining his painting, The Consequences of War:\n\nThe principal figure is Mars, who has left open the temple of Janus (which in time of peace, according to Roman custom, remained closed) and rushes forth with shield and blood-stained sword, threatening the people with great disaster. He pays little heed to Venus, his mistress, who, accompanied by Amors and Cupids, strives with caresses and emraces to hold him. From the other side, Mars is dragged forward by the Fury Alekto, with a torch in her hand. Near by are monsters personifying Pestilence and Famine, those inseparable partners of War. On the ground, turning her back, lies a woman with a broken lute, representing Harmony, which is incompatible with the discord of War. There is also a mother with her child in her arms, indicating that fecundity, procreation and charity are thwarted by War, which corrupts and destroys everything. In addition, one sees an architect thrown on his back, with his instruments in his hand, to show that which in time of peace is constructed for the use and ornamentation of the City, is hurled to the ground by the force of arms and falls to ruin. I believe, if I remember rightly, that you will find on the ground, under the feet of Mars, a book and a drawing on paper, to imply that he treads underfoot all the arts and letters. There ought also to be a bundle of darts or arrows, with the band which held them together undone; these when bound form the symbol of Concord. Beside them is the caduceus and an olive branch, attribute of Peace; these are also cast aside. That grief-stricken woman clothed in black, with torn veil, robbed of all her jewles and other ornaments, is the unfortunate Europe who, for so many years now, has suffered plunder, outrage, and misery, which are so injurious to everyone, that it is unnecessary to go into detail. Europe's attribute is the globe, borne by a small angel or genius, and surmounted by the cross, to symbolize the Christian world. (from a letter to Justus Sustermans, translated by Kristin Lohse Belin, in Rubens, Phaidon, 1998).\n", "slug": "peter-paul-rubens-the-consequences-of-war-1638-39", "kind": "Video", "video_id": "K9iMsmhBOjk", "keywords": "Peter Paul Rubens, Rubens, The Consequences of War, 1638, oil on canvas, Palatine Gallery, Palazzo Pitti, Florence, Medici, Dipolmacy, Thirty Years War, War, Baroque Painting", "youtube_id": "K9iMsmhBOjk", "readable_id": "peter-paul-rubens-the-consequences-of-war-1638-39"}, "IbuT0iTWaDE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IbuT0iTWaDE.mp4/IbuT0iTWaDE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IbuT0iTWaDE.mp4/IbuT0iTWaDE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IbuT0iTWaDE.m3u8/IbuT0iTWaDE.m3u8"}, "duration": 198, "id": "IbuT0iTWaDE", "title": "Melanie Smith", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nBritish artist Melanie Smith explores the contrast between where she comes from and where she lives now in Mexico City. She fuses elements from her origins and her new home, for example by documenting an English garden grown within a tropical rainforest. By doing so, she takes a look into experiences of alienation, displacement, and coming to terms with a new environment.", "path": "melanie-smith/", "slug": "melanie-smith", "kind": "Video", "video_id": "IbuT0iTWaDE", "keywords": "Tate", "youtube_id": "IbuT0iTWaDE", "readable_id": "melanie-smith"}, "BpBh8gvMifs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BpBh8gvMifs.mp4/BpBh8gvMifs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BpBh8gvMifs.mp4/BpBh8gvMifs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BpBh8gvMifs.m3u8/BpBh8gvMifs.m3u8"}, "duration": 619, "id": "BpBh8gvMifs", "title": "Square roots and real numbers", "format": "mp4", "description": null, "path": "khan/math/algebra-basics/core-algebra-foundations/square-roots-for-college/square-roots-and-real-numbers/", "slug": "square-roots-and-real-numbers", "kind": "Video", "video_id": "BpBh8gvMifs", "keywords": "Square, Roots, and, Real, Numbers, CC_8_EE_2", "youtube_id": "BpBh8gvMifs", "readable_id": "square-roots-and-real-numbers"}, "rGaM6pwqhB0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rGaM6pwqhB0.mp4/rGaM6pwqhB0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rGaM6pwqhB0.mp4/rGaM6pwqhB0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rGaM6pwqhB0.m3u8/rGaM6pwqhB0.m3u8"}, "duration": 612, "id": "rGaM6pwqhB0", "title": "Complex roots of the characteristic equations 3", "format": "mp4", "description": "Lets do an example with initial conditions!", "path": "khan/math/differential-equations/second-order-differential-equations/complex-roots-characteristic-equation/complex-roots-of-the-characteristic-equations-3/", "slug": "complex-roots-of-the-characteristic-equations-3", "kind": "Video", "video_id": "rGaM6pwqhB0", "keywords": "Complex, roots, of, the, characteristic, equations", "youtube_id": "rGaM6pwqhB0", "readable_id": "complex-roots-of-the-characteristic-equations-3"}, "KcFpkpHouPw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KcFpkpHouPw.mp4/KcFpkpHouPw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KcFpkpHouPw.mp4/KcFpkpHouPw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KcFpkpHouPw.m3u8/KcFpkpHouPw.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-6-possible-median-value/", "duration": 92, "id": "KcFpkpHouPw", "title": "6 Possible median value", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-6-possible-median-value", "kind": "Video", "video_id": "KcFpkpHouPw", "keywords": "", "youtube_id": "KcFpkpHouPw", "readable_id": "sat-6-possible-median-value"}, "bP__iEY9yTs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bP__iEY9yTs.mp4/bP__iEY9yTs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bP__iEY9yTs.mp4/bP__iEY9yTs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bP__iEY9yTs.m3u8/bP__iEY9yTs.m3u8"}, "duration": 602, "id": "bP__iEY9yTs", "title": "Wheel mounts and fenders", "format": "mp4", "description": "In this video we show you how to create Bit-zee's fenders out of hair dryer motor mounts and we also take you through how to mount the hair dryer motors in Bit-zee's frame.", "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-s-wheel-mounts-and-fenders/", "slug": "bit-zee-s-wheel-mounts-and-fenders", "kind": "Video", "video_id": "bP__iEY9yTs", "keywords": "wheel mounts and frames", "youtube_id": "bP__iEY9yTs", "readable_id": "bit-zee-s-wheel-mounts-and-fenders"}, "kj3ZfOQGKdE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kj3ZfOQGKdE.mp4/kj3ZfOQGKdE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kj3ZfOQGKdE.mp4/kj3ZfOQGKdE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kj3ZfOQGKdE.m3u8/kj3ZfOQGKdE.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-reflections/reflecting-segments-over-line/", "duration": 439, "id": "kj3ZfOQGKdE", "title": "Reflecting segments over line", "format": "mp4", "description": "Reflecting segments over line", "slug": "reflecting-segments-over-line", "kind": "Video", "video_id": "kj3ZfOQGKdE", "keywords": "", "youtube_id": "kj3ZfOQGKdE", "readable_id": "reflecting-segments-over-line"}, "FVedgkn0o70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FVedgkn0o70.mp4/FVedgkn0o70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FVedgkn0o70.mp4/FVedgkn0o70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FVedgkn0o70.m3u8/FVedgkn0o70.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/preventing-further-strokes/", "duration": 534, "id": "FVedgkn0o70", "title": "Preventing further strokes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "preventing-further-strokes", "kind": "Video", "video_id": "FVedgkn0o70", "keywords": "", "youtube_id": "FVedgkn0o70", "readable_id": "preventing-further-strokes"}, "WJwjvb3Q9Ag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WJwjvb3Q9Ag.mp4/WJwjvb3Q9Ag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WJwjvb3Q9Ag.mp4/WJwjvb3Q9Ag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WJwjvb3Q9Ag.m3u8/WJwjvb3Q9Ag.m3u8"}, "duration": 286, "id": "WJwjvb3Q9Ag", "title": "Madison, foreign policy, and declaring war", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-viii/", "slug": "isaacson-with-cheney-khan-academy-lesson-viii", "kind": "Video", "video_id": "WJwjvb3Q9Ag", "keywords": "", "youtube_id": "WJwjvb3Q9Ag", "readable_id": "isaacson-with-cheney-khan-academy-lesson-viii"}, "oLhohwfwf_U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oLhohwfwf_U.mp4/oLhohwfwf_U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oLhohwfwf_U.mp4/oLhohwfwf_U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oLhohwfwf_U.m3u8/oLhohwfwf_U.m3u8"}, "duration": 833, "id": "oLhohwfwf_U", "title": "Aggregate demand", "format": "mp4", "description": "Understanding how aggregate demand is different from demand for a specific good or service. Justifications for the aggregate demand curve being downward sloping", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/aggregate-supply-demand-tut/aggregate-demand/", "slug": "aggregate-demand", "kind": "Video", "video_id": "oLhohwfwf_U", "keywords": "macroeconomics, aggregate, demand", "youtube_id": "oLhohwfwf_U", "readable_id": "aggregate-demand"}, "_kfB2qKjdgM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_kfB2qKjdgM.mp4/_kfB2qKjdgM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_kfB2qKjdgM.mp4/_kfB2qKjdgM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_kfB2qKjdgM.m3u8/_kfB2qKjdgM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/control-of-the-gi-tract/", "duration": 596, "id": "_kfB2qKjdgM", "title": "Control of the GI tract", "format": "mp4", "description": "", "slug": "control-of-the-gi-tract", "kind": "Video", "video_id": "_kfB2qKjdgM", "keywords": "MCAT", "youtube_id": "_kfB2qKjdgM", "readable_id": "control-of-the-gi-tract"}, "f-gCYOCFMYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f-gCYOCFMYc.mp4/f-gCYOCFMYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f-gCYOCFMYc.mp4/f-gCYOCFMYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f-gCYOCFMYc.m3u8/f-gCYOCFMYc.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-scale-drawings/constructing-scale-drawings/", "duration": 198, "id": "f-gCYOCFMYc", "title": "How to make a scale drawing", "format": "mp4", "description": "An urban planner needs your help in creating a scale drawing. Let's use our knowledge about scale factor, length, and area to assist.", "slug": "constructing-scale-drawings", "kind": "Video", "video_id": "f-gCYOCFMYc", "keywords": "", "youtube_id": "f-gCYOCFMYc", "readable_id": "constructing-scale-drawings"}, "T4JKO0OGjpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T4JKO0OGjpQ.mp4/T4JKO0OGjpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T4JKO0OGjpQ.mp4/T4JKO0OGjpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T4JKO0OGjpQ.m3u8/T4JKO0OGjpQ.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/converting-percents-to-decimals-ex-2/", "duration": 73, "id": "T4JKO0OGjpQ", "title": "Converting percents to decimals example 2", "format": "mp4", "description": "Practice another conversion problem, this time from percent to decimal. Arriving at the answer is as simple as dividing by 100!", "slug": "converting-percents-to-decimals-ex-2", "kind": "Video", "video_id": "T4JKO0OGjpQ", "keywords": "", "youtube_id": "T4JKO0OGjpQ", "readable_id": "converting-percents-to-decimals-ex-2"}, "mvOkMYCygps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mvOkMYCygps.mp4/mvOkMYCygps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mvOkMYCygps.mp4/mvOkMYCygps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mvOkMYCygps.m3u8/mvOkMYCygps.m3u8"}, "duration": 800, "id": "mvOkMYCygps", "title": "Basic multiplication", "format": "mp4", "description": "Introduction to multiplication", "path": "khan/math/arithmetic/multiplication-division/multiplication_fun/basic-multiplication/", "slug": "basic-multiplication", "kind": "Video", "video_id": "mvOkMYCygps", "keywords": "multiplication, CC_3_OA_1, CC_3_OA_3, CC_3_OA_5", "youtube_id": "mvOkMYCygps", "readable_id": "basic-multiplication"}, "Ksu1lo312BM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ksu1lo312BM.mp4/Ksu1lo312BM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ksu1lo312BM.mp4/Ksu1lo312BM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ksu1lo312BM.m3u8/Ksu1lo312BM.m3u8"}, "duration": 317, "id": "Ksu1lo312BM", "title": "Number sets", "format": "mp4", "description": "Number Sets", "path": "khan/math/pre-algebra/fractions-pre-alg/number-sets-pre-alg/number-sets/", "slug": "number-sets", "kind": "Video", "video_id": "Ksu1lo312BM", "keywords": "u9_l1_t3_we3, Number, Sets, CC_6_NS_6, CC_6_NS_6_c, CC_8_NS_1", "youtube_id": "Ksu1lo312BM", "readable_id": "number-sets"}, "X4IL333rppM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X4IL333rppM.mp4/X4IL333rppM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X4IL333rppM.mp4/X4IL333rppM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X4IL333rppM.m3u8/X4IL333rppM.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/hemispheric-differences-and-hemispheric-dominance/", "duration": 277, "id": "X4IL333rppM", "title": "Hemispheric differences and hemispheric dominance", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "hemispheric-differences-and-hemispheric-dominance", "kind": "Video", "video_id": "X4IL333rppM", "keywords": "", "youtube_id": "X4IL333rppM", "readable_id": "hemispheric-differences-and-hemispheric-dominance"}, "qaOC_3KA3P8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qaOC_3KA3P8.mp4/qaOC_3KA3P8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qaOC_3KA3P8.mp4/qaOC_3KA3P8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qaOC_3KA3P8.m3u8/qaOC_3KA3P8.m3u8"}, "path": "khan/test-prep/mcat/behavior/learning-slug/classical-conditioning-extinction-spontaneous-recovery-generalization-discrimination/", "duration": 334, "id": "qaOC_3KA3P8", "title": "Classical conditioning: Extinction, spontaneous recovery, generalization, discrimination", "format": "mp4", "description": "", "slug": "classical-conditioning-extinction-spontaneous-recovery-generalization-discrimination", "kind": "Video", "video_id": "qaOC_3KA3P8", "keywords": "", "youtube_id": "qaOC_3KA3P8", "readable_id": "classical-conditioning-extinction-spontaneous-recovery-generalization-discrimination"}, "WmTjwOtPibc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WmTjwOtPibc.mp4/WmTjwOtPibc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WmTjwOtPibc.mp4/WmTjwOtPibc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WmTjwOtPibc.m3u8/WmTjwOtPibc.m3u8"}, "duration": 39, "id": "WmTjwOtPibc", "title": "Pith ball electroscope", "format": "mp4", "description": "Primitive device for measuring electrostatic force", "path": "khan/science/discoveries-projects/discoveries/electrostatics/pith-ball-electroscope/", "slug": "pith-ball-electroscope", "kind": "Video", "video_id": "WmTjwOtPibc", "keywords": "electrostatics, electrostatic force", "youtube_id": "WmTjwOtPibc", "readable_id": "pith-ball-electroscope"}, "97FwcpMIUuY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/97FwcpMIUuY.mp4/97FwcpMIUuY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/97FwcpMIUuY.mp4/97FwcpMIUuY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/97FwcpMIUuY.m3u8/97FwcpMIUuY.m3u8"}, "duration": 761, "id": "97FwcpMIUuY", "title": "The skeletal system: It's ALIVE!", "format": "mp4", "description": "Hank introduces us to the framework of our bodies, our skeleton, which apart from being the support and protection for all our fleshy parts, is involved in many other vital processes that help our bodies to function properly.", "path": "crash-course-biology-129/", "slug": "crash-course-biology-129", "kind": "Video", "video_id": "97FwcpMIUuY", "keywords": "", "youtube_id": "97FwcpMIUuY", "readable_id": "crash-course-biology-129"}, "sFlH7V7QDbQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sFlH7V7QDbQ.mp4/sFlH7V7QDbQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sFlH7V7QDbQ.mp4/sFlH7V7QDbQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sFlH7V7QDbQ.m3u8/sFlH7V7QDbQ.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/arc-length-polar-graphs/polar-arc-length-example/", "duration": 383, "id": "sFlH7V7QDbQ", "title": "Arc length of petal of polar graph", "format": "mp4", "description": "", "slug": "polar-arc-length-example", "kind": "Video", "video_id": "sFlH7V7QDbQ", "keywords": "", "youtube_id": "sFlH7V7QDbQ", "readable_id": "polar-arc-length-example"}, "XJBwJjP2_hM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XJBwJjP2_hM.mp4/XJBwJjP2_hM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XJBwJjP2_hM.mp4/XJBwJjP2_hM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XJBwJjP2_hM.m3u8/XJBwJjP2_hM.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/scientific-notation-3/", "duration": 381, "id": "XJBwJjP2_hM", "title": "Dividing in scientific notation example", "format": "mp4", "description": "Example showing how to divide two numbers expressed in scientific notation", "slug": "scientific-notation-3", "kind": "Video", "video_id": "XJBwJjP2_hM", "keywords": "U07_L1_T2_we3, Scientific, notation", "youtube_id": "XJBwJjP2_hM", "readable_id": "scientific-notation-3"}, "hoRsHNSrMpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hoRsHNSrMpc.mp4/hoRsHNSrMpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hoRsHNSrMpc.mp4/hoRsHNSrMpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hoRsHNSrMpc.m3u8/hoRsHNSrMpc.m3u8"}, "duration": 709, "id": "hoRsHNSrMpc", "title": "Normal force in an elevator", "format": "mp4", "description": "How the normal force changes when an elevator accelerates", "path": "khan/test-prep/mcat/physical-processes/normal-forces/normal-force-in-an-elevator/", "slug": "normal-force-in-an-elevator", "kind": "Video", "video_id": "hoRsHNSrMpc", "keywords": "physics, force, newton's, first, law", "youtube_id": "hoRsHNSrMpc", "readable_id": "normal-force-in-an-elevator"}, "_7aUxFzTG5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_7aUxFzTG5w.mp4/_7aUxFzTG5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_7aUxFzTG5w.mp4/_7aUxFzTG5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_7aUxFzTG5w.m3u8/_7aUxFzTG5w.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/angles-at-the-intersection-of-two-lines/", "duration": 439, "id": "_7aUxFzTG5w", "title": "Introduction to vertical angles", "format": "mp4", "description": "By using our knowledge of supplementary, adjacent, and vertical angles, we can solve problems involving the intersection of two lines. Including this one!", "slug": "angles-at-the-intersection-of-two-lines", "kind": "Video", "video_id": "_7aUxFzTG5w", "keywords": "Angles, at, the, intersection, of, two, lines", "youtube_id": "_7aUxFzTG5w", "readable_id": "angles-at-the-intersection-of-two-lines"}, "UqyN7-tRS00": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UqyN7-tRS00.mp4/UqyN7-tRS00.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UqyN7-tRS00.mp4/UqyN7-tRS00.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UqyN7-tRS00.m3u8/UqyN7-tRS00.m3u8"}, "duration": 867, "id": "UqyN7-tRS00", "title": "Singular matrices", "format": "mp4", "description": "When and why you can't invert a matrix.", "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/singular-matrices/", "slug": "singular-matrices", "kind": "Video", "video_id": "UqyN7-tRS00", "keywords": "matrix, matrices, inverse, singular, determinant", "youtube_id": "UqyN7-tRS00", "readable_id": "singular-matrices"}, "79ngr0Bur38": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/79ngr0Bur38.mp4/79ngr0Bur38.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/79ngr0Bur38.mp4/79ngr0Bur38.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/79ngr0Bur38.m3u8/79ngr0Bur38.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/applying-the-product-rule-for-derivatives/", "duration": 160, "id": "79ngr0Bur38", "title": "The product rule for derivatives", "format": "mp4", "description": "", "slug": "applying-the-product-rule-for-derivatives", "kind": "Video", "video_id": "79ngr0Bur38", "keywords": "", "youtube_id": "79ngr0Bur38", "readable_id": "applying-the-product-rule-for-derivatives"}, "Mawq5PKRB6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mawq5PKRB6k.mp4/Mawq5PKRB6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mawq5PKRB6k.mp4/Mawq5PKRB6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mawq5PKRB6k.m3u8/Mawq5PKRB6k.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/david-oath-of-the-horatii-1784/", "duration": 348, "id": "Mawq5PKRB6k", "title": "David, Oath of the Horatii", "format": "mp4", "description": "Jacques-Louis David, Oath of the Horatii, oil on canvas, 1784 (Mus\u00e9e du Louvre)", "slug": "david-oath-of-the-horatii-1784", "kind": "Video", "video_id": "Mawq5PKRB6k", "keywords": "Horatii, art, art history, smarthistory, neo-classicism, Louvre", "youtube_id": "Mawq5PKRB6k", "readable_id": "david-oath-of-the-horatii-1784"}, "5L2a6cuP_4s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5L2a6cuP_4s.mp4/5L2a6cuP_4s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5L2a6cuP_4s.mp4/5L2a6cuP_4s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5L2a6cuP_4s.m3u8/5L2a6cuP_4s.m3u8"}, "duration": 472, "id": "5L2a6cuP_4s", "title": "Negative bases and exponents classification example", "format": "mp4", "description": "", "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/negative-bases-and-exponents-classification-example/", "slug": "negative-bases-and-exponents-classification-example", "kind": "Video", "video_id": "5L2a6cuP_4s", "keywords": "", "youtube_id": "5L2a6cuP_4s", "readable_id": "negative-bases-and-exponents-classification-example"}, "BMvR86gG0Ew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BMvR86gG0Ew.mp4/BMvR86gG0Ew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BMvR86gG0Ew.mp4/BMvR86gG0Ew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BMvR86gG0Ew.m3u8/BMvR86gG0Ew.m3u8"}, "duration": 48, "id": "BMvR86gG0Ew", "title": "Spinning compass", "format": "mp4", "description": "By pulsing the connection to the battery we can cause a compass to spin. How is this working?", "path": "khan/science/discoveries-projects/discoveries/electric_motor/motor-hd-youtube/", "slug": "motor-hd-youtube", "kind": "Video", "video_id": "BMvR86gG0Ew", "keywords": "compass motor", "youtube_id": "BMvR86gG0Ew", "readable_id": "motor-hd-youtube"}, "R-2Uw10QgIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R-2Uw10QgIo.mp4/R-2Uw10QgIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R-2Uw10QgIo.mp4/R-2Uw10QgIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R-2Uw10QgIo.m3u8/R-2Uw10QgIo.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-5c/", "duration": 555, "id": "R-2Uw10QgIo", "title": "2011 Calculus AB free response #5c.", "format": "mp4", "description": "Solving a differential equation using separation of variables", "slug": "2011-calculus-ab-free-response-5c", "kind": "Video", "video_id": "R-2Uw10QgIo", "keywords": "AP, advanced, placement, exam", "youtube_id": "R-2Uw10QgIo", "readable_id": "2011-calculus-ab-free-response-5c"}, "8W0iZk8Yxhs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8W0iZk8Yxhs.mp4/8W0iZk8Yxhs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8W0iZk8Yxhs.mp4/8W0iZk8Yxhs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8W0iZk8Yxhs.m3u8/8W0iZk8Yxhs.m3u8"}, "duration": 275, "id": "8W0iZk8Yxhs", "title": "Long-run aggregate supply", "format": "mp4", "description": "Thinking about why aggregate supply may not be influenced by prices in the long-run", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/aggregate-supply-demand-tut/long-run-aggregate-supply/", "slug": "long-run-aggregate-supply", "kind": "Video", "video_id": "8W0iZk8Yxhs", "keywords": "aggregate, supply, macroeconomics", "youtube_id": "8W0iZk8Yxhs", "readable_id": "long-run-aggregate-supply"}, "gATXnxAE8sI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gATXnxAE8sI.mp4/gATXnxAE8sI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gATXnxAE8sI.mp4/gATXnxAE8sI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gATXnxAE8sI.m3u8/gATXnxAE8sI.m3u8"}, "path": "khan/humanities/art-asia/south-asia/afghanistan/afghanistan-crossroads-ancient-world/", "duration": 105, "id": "gATXnxAE8sI", "title": "Crossroads of the Ancient World", "format": "mp4", "description": "Discover the remarkable story of the survival, discovery and display of these ancient treasures.\u00a0\u00a9 Trustees of the British Museum", "slug": "afghanistan-crossroads-ancient-world", "kind": "Video", "video_id": "gATXnxAE8sI", "keywords": "", "youtube_id": "gATXnxAE8sI", "readable_id": "afghanistan-crossroads-ancient-world"}, "kxiaae0HIBs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kxiaae0HIBs.mp4/kxiaae0HIBs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kxiaae0HIBs.mp4/kxiaae0HIBs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kxiaae0HIBs.m3u8/kxiaae0HIBs.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/late-classical/alexander-sarcophagus/", "duration": 643, "id": "kxiaae0HIBs", "title": "Alexander Sarcophagus", "format": "mp4", "description": "The Alexander Sarcophagus,\u00a0c. 312 B.C.E., Pentelic marble and polychromy, found in Sidon, 195 x 318 x 167 cm (\u0130stanbul Archaeological Museums).\u00a0Speakers: Dr. Elizabeth Macaulay-Lewis and Dr. Steven Zucker", "slug": "alexander-sarcophagus", "kind": "Video", "video_id": "kxiaae0HIBs", "keywords": "Sidon, Greek, Phoenician, Persian, Alexander the Great, ancient, Pentelic, classical, marble", "youtube_id": "kxiaae0HIBs", "readable_id": "alexander-sarcophagus"}, "0E3PuHiDU9U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0E3PuHiDU9U.mp4/0E3PuHiDU9U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0E3PuHiDU9U.mp4/0E3PuHiDU9U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0E3PuHiDU9U.m3u8/0E3PuHiDU9U.m3u8"}, "duration": 212, "id": "0E3PuHiDU9U", "title": "Expensing a truck leads to inconsistent performance", "format": "mp4", "description": "Expensing a truck leads to strange looking income statement", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/depreciation-amortization-tut/expensing-a-truck-leads-to-inconsistent-performance/", "slug": "expensing-a-truck-leads-to-inconsistent-performance", "kind": "Video", "video_id": "0E3PuHiDU9U", "keywords": "capital, expense, depreciation", "youtube_id": "0E3PuHiDU9U", "readable_id": "expensing-a-truck-leads-to-inconsistent-performance"}, "SlQDuTS6FR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SlQDuTS6FR4.mp4/SlQDuTS6FR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SlQDuTS6FR4.mp4/SlQDuTS6FR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SlQDuTS6FR4.m3u8/SlQDuTS6FR4.m3u8"}, "duration": 627, "id": "SlQDuTS6FR4", "title": "Build a ping pong ball launcher", "format": "mp4", "description": "This project shows you how to build a ping pong and test an adjustable ping pong ball launcher.", "path": "khan/science/discoveries-projects/projectile_launcher/build-a-ping-pong-ball-launcher/", "slug": "build-a-ping-pong-ball-launcher", "kind": "Video", "video_id": "SlQDuTS6FR4", "keywords": "", "youtube_id": "SlQDuTS6FR4", "readable_id": "build-a-ping-pong-ball-launcher"}, "145zOBT0LD4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/145zOBT0LD4.mp4/145zOBT0LD4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/145zOBT0LD4.mp4/145zOBT0LD4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/145zOBT0LD4.m3u8/145zOBT0LD4.m3u8"}, "duration": 306, "id": "145zOBT0LD4", "title": "Solutions to three variable system 2", "format": "mp4", "description": "u14 l3 t1 we4 Solutions to Three Variable System", "path": "khan/math/algebra2/systems_eq_ineq/fancier_systems_precalc/solutions-to-three-variable-system-2/", "slug": "solutions-to-three-variable-system-2", "kind": "Video", "video_id": "145zOBT0LD4", "keywords": "u14, l3, t1, we4, Solutions, to, Three, Variable, System", "youtube_id": "145zOBT0LD4", "readable_id": "solutions-to-three-variable-system-2"}, "FssCS9RhFt0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FssCS9RhFt0.mp4/FssCS9RhFt0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FssCS9RhFt0.mp4/FssCS9RhFt0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FssCS9RhFt0.m3u8/FssCS9RhFt0.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/somatosensation/somatosensation-1/", "duration": 464, "id": "FssCS9RhFt0", "title": "Somatosensation", "format": "mp4", "description": "Explore our ability to sense the environment through our body. \u00a0By Ron.", "slug": "somatosensation-1", "kind": "Video", "video_id": "FssCS9RhFt0", "keywords": "", "youtube_id": "FssCS9RhFt0", "readable_id": "somatosensation-1"}, "9qEaVwIXqR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9qEaVwIXqR4.mp4/9qEaVwIXqR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9qEaVwIXqR4.mp4/9qEaVwIXqR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9qEaVwIXqR4.m3u8/9qEaVwIXqR4.m3u8"}, "path": "khan/partner-content/lebron-asks-subject/lebron-asks/lebron-asks-what-muscles-do-we-use-when-shooting-a-basket/", "duration": 195, "id": "9qEaVwIXqR4", "title": "LeBron Asks: What muscles do we use when shooting a basket?", "format": "mp4", "description": "LeBron James asks Sal Khan about which muscles we use when we shoot a basket.", "slug": "lebron-asks-what-muscles-do-we-use-when-shooting-a-basket", "kind": "Video", "video_id": "9qEaVwIXqR4", "keywords": "lebron, khan", "youtube_id": "9qEaVwIXqR4", "readable_id": "lebron-asks-what-muscles-do-we-use-when-shooting-a-basket"}, "DRpdoZQtvOM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DRpdoZQtvOM.mp4/DRpdoZQtvOM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DRpdoZQtvOM.mp4/DRpdoZQtvOM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DRpdoZQtvOM.m3u8/DRpdoZQtvOM.m3u8"}, "duration": 371, "id": "DRpdoZQtvOM", "title": "Factoring quadratics with two variables", "format": "mp4", "description": "", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-quadratics-in-two-vari/factoring-quadratics-with-two-variables/", "slug": "factoring-quadratics-with-two-variables", "kind": "Video", "video_id": "DRpdoZQtvOM", "keywords": "", "youtube_id": "DRpdoZQtvOM", "readable_id": "factoring-quadratics-with-two-variables"}, "o3y7CzT-LRk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o3y7CzT-LRk.mp4/o3y7CzT-LRk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o3y7CzT-LRk.mp4/o3y7CzT-LRk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o3y7CzT-LRk.m3u8/o3y7CzT-LRk.m3u8"}, "path": "khan/math/recreational-math/math-warmup/probabilty-warmup/problem-of-points1/", "duration": 90, "id": "o3y7CzT-LRk", "title": "Problem of Points", "format": "mp4", "description": "How should two people split the pot when they are interrupted midgame?", "slug": "problem-of-points1", "kind": "Video", "video_id": "o3y7CzT-LRk", "keywords": "", "youtube_id": "o3y7CzT-LRk", "readable_id": "problem-of-points1"}, "PXxwZDbQ3Lg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PXxwZDbQ3Lg.mp4/PXxwZDbQ3Lg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PXxwZDbQ3Lg.mp4/PXxwZDbQ3Lg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PXxwZDbQ3Lg.m3u8/PXxwZDbQ3Lg.m3u8"}, "duration": 591, "id": "PXxwZDbQ3Lg", "title": "Orbitals", "format": "mp4", "description": "In this episode of Crash Course Chemistry, Hank discusses what Molecules actually look like and why, some quantum-mechanical three dimensional wave functions are explored, he touches on hybridization, and delves into sigma and pi bonds.\nWriters: Hank Green\nChief Editor: Blake de Pastino\nConsultants: Dr. Heiko Langner & Edi Gonzalez\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem25-orbitals/", "slug": "chem25-orbitals", "kind": "Video", "video_id": "PXxwZDbQ3Lg", "keywords": "", "youtube_id": "PXxwZDbQ3Lg", "readable_id": "chem25-orbitals"}, "eVmLvbB6L18": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eVmLvbB6L18.mp4/eVmLvbB6L18.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eVmLvbB6L18.mp4/eVmLvbB6L18.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eVmLvbB6L18.m3u8/eVmLvbB6L18.m3u8"}, "duration": 644, "id": "eVmLvbB6L18", "title": "Non-enzymatic protein function", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/proteins/non-enzymatic-protein-function/", "slug": "non-enzymatic-protein-function", "kind": "Video", "video_id": "eVmLvbB6L18", "keywords": "", "youtube_id": "eVmLvbB6L18", "readable_id": "non-enzymatic-protein-function"}, "WLKEVfLFau4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WLKEVfLFau4.mp4/WLKEVfLFau4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WLKEVfLFau4.mp4/WLKEVfLFau4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WLKEVfLFau4.m3u8/WLKEVfLFau4.m3u8"}, "duration": 1706, "id": "WLKEVfLFau4", "title": "Reconciling thermodynamic and state definitions of entropy", "format": "mp4", "description": "Long video explaining why entropy is a measure of the number of states a system can take on (mathy, but mind-blowing).", "path": "khan/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal/reconciling-thermodynamic-and-state-definitions-of-entropy/", "slug": "reconciling-thermodynamic-and-state-definitions-of-entropy", "kind": "Video", "video_id": "WLKEVfLFau4", "keywords": "thermodynamics, carnot, entropy", "youtube_id": "WLKEVfLFau4", "readable_id": "reconciling-thermodynamic-and-state-definitions-of-entropy"}, "UK2shgCXALo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UK2shgCXALo.mp4/UK2shgCXALo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UK2shgCXALo.mp4/UK2shgCXALo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UK2shgCXALo.m3u8/UK2shgCXALo.m3u8"}, "duration": 154, "id": "UK2shgCXALo", "title": "Inflection points", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/concavity-inflection-points/inflection-points/", "slug": "inflection-points", "kind": "Video", "video_id": "UK2shgCXALo", "keywords": "", "youtube_id": "UK2shgCXALo", "readable_id": "inflection-points"}, "X4W44wJbJgk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X4W44wJbJgk.mp4/X4W44wJbJgk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X4W44wJbJgk.mp4/X4W44wJbJgk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X4W44wJbJgk.m3u8/X4W44wJbJgk.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/drug-dependence-and-homeostasis/", "duration": 198, "id": "X4W44wJbJgk", "title": "Drug dependence and homeostasis", "format": "mp4", "description": "", "slug": "drug-dependence-and-homeostasis", "kind": "Video", "video_id": "X4W44wJbJgk", "keywords": "", "youtube_id": "X4W44wJbJgk", "readable_id": "drug-dependence-and-homeostasis"}, "SFd8mcpP3TU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SFd8mcpP3TU.mp4/SFd8mcpP3TU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SFd8mcpP3TU.mp4/SFd8mcpP3TU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SFd8mcpP3TU.m3u8/SFd8mcpP3TU.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/deffect-2013-07-03t144454851z/ortho-para-directors-iii/", "duration": 577, "id": "SFd8mcpP3TU", "title": "Ortho-para directors III", "format": "mp4", "description": "Moderate and weak activation, weak deactivation", "slug": "ortho-para-directors-iii", "kind": "Video", "video_id": "SFd8mcpP3TU", "keywords": "", "youtube_id": "SFd8mcpP3TU", "readable_id": "ortho-para-directors-iii"}, "qihoczo1Ujk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qihoczo1Ujk.mp4/qihoczo1Ujk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qihoczo1Ujk.mp4/qihoczo1Ujk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qihoczo1Ujk.m3u8/qihoczo1Ujk.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multiplication_fun/multiplication-3-10-11-12-times-tables/", "duration": 731, "id": "qihoczo1Ujk", "title": "Multiplication 3: 10,11,12 times tables", "format": "mp4", "description": "Multiplication 3: Learning to multiply 10, 11, and 12.", "slug": "multiplication-3-10-11-12-times-tables", "kind": "Video", "video_id": "qihoczo1Ujk", "keywords": "arithmetic, multiplication, tables, CC_3_NBT_3", "youtube_id": "qihoczo1Ujk", "readable_id": "multiplication-3-10-11-12-times-tables"}, "OMA2Mwo0aZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OMA2Mwo0aZg.mp4/OMA2Mwo0aZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OMA2Mwo0aZg.mp4/OMA2Mwo0aZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OMA2Mwo0aZg.m3u8/OMA2Mwo0aZg.m3u8"}, "duration": 330, "id": "OMA2Mwo0aZg", "title": "Multiplying a matrix by a matrix", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/matrix_multiplication/multiplying-a-matrix-by-a-matrix/", "slug": "multiplying-a-matrix-by-a-matrix", "kind": "Video", "video_id": "OMA2Mwo0aZg", "keywords": "", "youtube_id": "OMA2Mwo0aZg", "readable_id": "multiplying-a-matrix-by-a-matrix"}, "BVUeCLt68Ik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BVUeCLt68Ik.mp4/BVUeCLt68Ik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BVUeCLt68Ik.mp4/BVUeCLt68Ik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BVUeCLt68Ik.m3u8/BVUeCLt68Ik.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/general-overview-of-the-raas-system-cells-and-hormones/", "duration": 849, "id": "BVUeCLt68Ik", "title": "General overview of the RAAS system: Cells and hormones", "format": "mp4", "description": "Learn the important cells and hormones that are working together to control your blood pressure! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "general-overview-of-the-raas-system-cells-and-hormones", "kind": "Video", "video_id": "BVUeCLt68Ik", "keywords": "", "youtube_id": "BVUeCLt68Ik", "readable_id": "general-overview-of-the-raas-system-cells-and-hormones"}, "wK-SQD3fhrI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wK-SQD3fhrI.mp4/wK-SQD3fhrI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wK-SQD3fhrI.mp4/wK-SQD3fhrI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wK-SQD3fhrI.m3u8/wK-SQD3fhrI.m3u8"}, "duration": 353, "id": "wK-SQD3fhrI", "title": "Glaciers with chocolate", "format": "mp4", "description": "Did you know that glaciers hold nearly 2% of Earth's water?", "path": "glaciers-with-chocolate/", "slug": "glaciers-with-chocolate", "kind": "Video", "video_id": "wK-SQD3fhrI", "keywords": "glacier", "youtube_id": "wK-SQD3fhrI", "readable_id": "glaciers-with-chocolate"}, "KuUMUvwvML8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KuUMUvwvML8.mp4/KuUMUvwvML8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KuUMUvwvML8.mp4/KuUMUvwvML8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KuUMUvwvML8.m3u8/KuUMUvwvML8.m3u8"}, "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-12-induced-current-in-a-wire/", "duration": 727, "id": "KuUMUvwvML8", "title": "Magnetism 12: Induced current in a wire", "format": "mp4", "description": "Induced current and EMF in a moving wire from a magnetic field.", "slug": "magnetism-12-induced-current-in-a-wire", "kind": "Video", "video_id": "KuUMUvwvML8", "keywords": "electromotive, force, emf, induction, induced, current", "youtube_id": "KuUMUvwvML8", "readable_id": "magnetism-12-induced-current-in-a-wire"}, "r_rVyt-ojpY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r_rVyt-ojpY.mp4/r_rVyt-ojpY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r_rVyt-ojpY.mp4/r_rVyt-ojpY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r_rVyt-ojpY.m3u8/r_rVyt-ojpY.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/nan-goldin/", "duration": 349, "id": "r_rVyt-ojpY", "title": "Nan Goldin's snapshots of innocence and childhood", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nNan Goldin began taking photographs as a teenager in Boston, Massachusetts. Her earliest works, black-and-white images of drag queens, were celebrations of the subcultural lifestyle of the community to which she belonged and which she continued to document throughout the 1990s. During this period Goldin also began making images of friends who were dying of AIDS and recorded her experiences of travelling. Her latest work is an intimate investigation into the narrative of childhood, from birth to young adulthood and everything in between.\nGoldin\u2019s photographs can be tender and shocking at the same time. What do you think she is trying to say about the human condition in her work?\n\nRead more about Nan Goldin and explore her work in the Tate Collection here.\n", "slug": "nan-goldin", "kind": "Video", "video_id": "r_rVyt-ojpY", "keywords": "", "youtube_id": "r_rVyt-ojpY", "readable_id": "nan-goldin"}, "R32xBmxXj2E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R32xBmxXj2E.mp4/R32xBmxXj2E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R32xBmxXj2E.mp4/R32xBmxXj2E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R32xBmxXj2E.m3u8/R32xBmxXj2E.m3u8"}, "duration": 72, "id": "R32xBmxXj2E", "title": "Graphing proportional relationships example 2", "format": "mp4", "description": "", "path": "graphing-proportional-relationships-example-2/", "slug": "graphing-proportional-relationships-example-2", "kind": "Video", "video_id": "R32xBmxXj2E", "keywords": "", "youtube_id": "R32xBmxXj2E", "readable_id": "graphing-proportional-relationships-example-2"}, "AFMXixBVP-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AFMXixBVP-0.mp4/AFMXixBVP-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AFMXixBVP-0.mp4/AFMXixBVP-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AFMXixBVP-0.m3u8/AFMXixBVP-0.m3u8"}, "duration": 398, "id": "AFMXixBVP-0", "title": "Visualizing Taylor series for e^x", "format": "mp4", "description": "Visualizing Taylor Series for e^x", "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/visualizing-taylor-series-for-e-x/", "slug": "visualizing-taylor-series-for-e-x", "kind": "Video", "video_id": "AFMXixBVP-0", "keywords": "Visualizing, Taylor, Series, for, e^x, CC_39336_F-IF_7_e", "youtube_id": "AFMXixBVP-0", "readable_id": "visualizing-taylor-series-for-e-x"}, "5UUa0V-MAqI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5UUa0V-MAqI.mp4/5UUa0V-MAqI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5UUa0V-MAqI.mp4/5UUa0V-MAqI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5UUa0V-MAqI.m3u8/5UUa0V-MAqI.m3u8"}, "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds/hedge-fund-strategies-long-short-2/", "duration": 271, "id": "5UUa0V-MAqI", "title": "Hedge fund strategies: Long short 2", "format": "mp4", "description": "Seeing how the long-short portfolio might do in different market conditions (assuming that the underlying thesis is right)", "slug": "hedge-fund-strategies-long-short-2", "kind": "Video", "video_id": "5UUa0V-MAqI", "keywords": "long, short, hedge, fund", "youtube_id": "5UUa0V-MAqI", "readable_id": "hedge-fund-strategies-long-short-2"}, "mclGRkSprJY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mclGRkSprJY.mp4/mclGRkSprJY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mclGRkSprJY.mp4/mclGRkSprJY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mclGRkSprJY.m3u8/mclGRkSprJY.m3u8"}, "path": "khan/computing/computer-programming/sql/sql-basics/s-q-l-or-sequel/", "duration": 101, "id": "mclGRkSprJY", "title": "S-Q-L or SEQUEL?", "format": "mp4", "description": "How is it pronounced? Why? Let's discuss...", "slug": "s-q-l-or-sequel", "kind": "Video", "video_id": "mclGRkSprJY", "keywords": "", "youtube_id": "mclGRkSprJY", "readable_id": "s-q-l-or-sequel"}, "pQJrTf_x7Wk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pQJrTf_x7Wk.mp4/pQJrTf_x7Wk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pQJrTf_x7Wk.mp4/pQJrTf_x7Wk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pQJrTf_x7Wk.m3u8/pQJrTf_x7Wk.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/second-empire/thomas-couture-romans-of-the-decadence-1847/", "duration": 346, "id": "pQJrTf_x7Wk", "title": "Couture, Romans of the Decadence", "format": "mp4", "description": "Thomas Couture, Romans of the Decadence, 1847 (Mus\u00e9e d'Orsay, Paris) Speakers: Dr. Beth Harris & Dr. Steven Zucker For more art history videos visit smarthistory.org", "slug": "thomas-couture-romans-of-the-decadence-1847", "kind": "Video", "video_id": "pQJrTf_x7Wk", "keywords": "", "youtube_id": "pQJrTf_x7Wk", "readable_id": "thomas-couture-romans-of-the-decadence-1847"}, "JMsqu236bZo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JMsqu236bZo.mp4/JMsqu236bZo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JMsqu236bZo.mp4/JMsqu236bZo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JMsqu236bZo.m3u8/JMsqu236bZo.m3u8"}, "duration": 758, "id": "JMsqu236bZo", "title": "Nomenclature of aldehydes and ketones", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/nomenclature-of-aldehydes-and-ketones/", "slug": "nomenclature-of-aldehydes-and-ketones", "kind": "Video", "video_id": "JMsqu236bZo", "keywords": "", "youtube_id": "JMsqu236bZo", "readable_id": "nomenclature-of-aldehydes-and-ketones"}, "yJ1dsNauhGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yJ1dsNauhGE.mp4/yJ1dsNauhGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yJ1dsNauhGE.mp4/yJ1dsNauhGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yJ1dsNauhGE.m3u8/yJ1dsNauhGE.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/hedonism-and-the-experience-machine/", "duration": 249, "id": "yJ1dsNauhGE", "title": "Ethics: Hedonism and The Experience Machine", "format": "mp4", "description": "What makes our life go best? Is being happy all that matters? Is a life of blissful ignorance a good life? Or is there more to a good life than this? Richard Rowland discusses whether we should take the blue pill in 'hedonism and the experience machine\u2019.\nSpeaker: Dr. Richard Rowland, Departmental Lecturer, Somerville College, University of Oxford\n\n\u00a0\n", "slug": "hedonism-and-the-experience-machine", "kind": "Video", "video_id": "yJ1dsNauhGE", "keywords": "", "youtube_id": "yJ1dsNauhGE", "readable_id": "hedonism-and-the-experience-machine"}, "6DpzCKJBsz0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6DpzCKJBsz0.mp4/6DpzCKJBsz0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6DpzCKJBsz0.mp4/6DpzCKJBsz0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6DpzCKJBsz0.m3u8/6DpzCKJBsz0.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_of_matrices/linear-algebra-deriving-a-method-for-determining-inverses/", "duration": 1080, "id": "6DpzCKJBsz0", "title": "Deriving a method for determining inverses", "format": "mp4", "description": "Determining a method for constructing inverse transformation matrices", "slug": "linear-algebra-deriving-a-method-for-determining-inverses", "kind": "Video", "video_id": "6DpzCKJBsz0", "keywords": "matrix, inverse, transformation", "youtube_id": "6DpzCKJBsz0", "readable_id": "linear-algebra-deriving-a-method-for-determining-inverses"}, "2ecG8NT43x0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2ecG8NT43x0.mp4/2ecG8NT43x0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2ecG8NT43x0.mp4/2ecG8NT43x0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2ecG8NT43x0.m3u8/2ecG8NT43x0.m3u8"}, "duration": 282, "id": "2ecG8NT43x0", "title": "An overview and the 13th Amendment", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.\u00a0\n", "path": "the-reconstruction-amendments-overview-and-13th-amendment/", "slug": "the-reconstruction-amendments-overview-and-13th-amendment", "kind": "Video", "video_id": "2ecG8NT43x0", "keywords": "", "youtube_id": "2ecG8NT43x0", "readable_id": "the-reconstruction-amendments-overview-and-13th-amendment"}, "_WOr9-_HbAM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_WOr9-_HbAM.mp4/_WOr9-_HbAM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_WOr9-_HbAM.mp4/_WOr9-_HbAM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_WOr9-_HbAM.m3u8/_WOr9-_HbAM.m3u8"}, "duration": 316, "id": "_WOr9-_HbAM", "title": "Determining which limit statements are true", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/calculus-estimating-limits-graph/determining-which-limit-statements-are-true/", "slug": "determining-which-limit-statements-are-true", "kind": "Video", "video_id": "_WOr9-_HbAM", "keywords": "", "youtube_id": "_WOr9-_HbAM", "readable_id": "determining-which-limit-statements-are-true"}, "FlIG3TvQCBQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FlIG3TvQCBQ.mp4/FlIG3TvQCBQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FlIG3TvQCBQ.mp4/FlIG3TvQCBQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FlIG3TvQCBQ.m3u8/FlIG3TvQCBQ.m3u8"}, "duration": 176, "id": "FlIG3TvQCBQ", "title": "The one-time pad", "format": "mp4", "description": "The perfect cipher", "path": "khan/computing/computer-science/cryptography/crypt/one-time-pad/", "slug": "one-time-pad", "kind": "Video", "video_id": "FlIG3TvQCBQ", "keywords": "one-time pad, random, encryption", "youtube_id": "FlIG3TvQCBQ", "readable_id": "one-time-pad"}, "CGJjjm7-DJ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CGJjjm7-DJ4.mp4/CGJjjm7-DJ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CGJjjm7-DJ4.mp4/CGJjjm7-DJ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CGJjjm7-DJ4.m3u8/CGJjjm7-DJ4.m3u8"}, "duration": 891, "id": "CGJjjm7-DJ4", "title": "Reactions in equilibrium", "format": "mp4", "description": "Equilibrium reactions and constants.", "path": "khan/test-prep/mcat/chemical-processes/equilibrium-mcat/reactions-in-equilibrium/", "slug": "reactions-in-equilibrium", "kind": "Video", "video_id": "CGJjjm7-DJ4", "keywords": "chemistry, equilibrium", "youtube_id": "CGJjjm7-DJ4", "readable_id": "reactions-in-equilibrium"}, "CYmrwLZD2HI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CYmrwLZD2HI.mp4/CYmrwLZD2HI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CYmrwLZD2HI.mp4/CYmrwLZD2HI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CYmrwLZD2HI.m3u8/CYmrwLZD2HI.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-blended-learning-decisions/sscc-blended-software/sscc-blended-typessoftware/", "duration": 536, "id": "CYmrwLZD2HI", "title": "The different types of software used in blended learning", "format": "mp4", "description": "", "slug": "sscc-blended-typessoftware", "kind": "Video", "video_id": "CYmrwLZD2HI", "keywords": "", "youtube_id": "CYmrwLZD2HI", "readable_id": "sscc-blended-typessoftware"}, "PSy6zQsk8z0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PSy6zQsk8z0.mp4/PSy6zQsk8z0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PSy6zQsk8z0.mp4/PSy6zQsk8z0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PSy6zQsk8z0.m3u8/PSy6zQsk8z0.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/digital_camera/what-is-inside-a-digital-camera-1-of-2-1/", "duration": 595, "id": "PSy6zQsk8z0", "title": "What is inside a digital camera? (1 of 2)", "format": "mp4", "description": "In this video we go inside the digital camera to discover what is inside and how it works.", "slug": "what-is-inside-a-digital-camera-1-of-2-1", "kind": "Video", "video_id": "PSy6zQsk8z0", "keywords": "digital camera", "youtube_id": "PSy6zQsk8z0", "readable_id": "what-is-inside-a-digital-camera-1-of-2-1"}, "heKuwogLwnk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/heKuwogLwnk.mp4/heKuwogLwnk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/heKuwogLwnk.mp4/heKuwogLwnk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/heKuwogLwnk.m3u8/heKuwogLwnk.m3u8"}, "duration": 334, "id": "heKuwogLwnk", "title": "Assassination of Franz Ferdinand by Gavrilo Princip", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-tutorial/assassination-of-franz-ferdinand-by-gavrilo-princip/", "slug": "assassination-of-franz-ferdinand-by-gavrilo-princip", "kind": "Video", "video_id": "heKuwogLwnk", "keywords": "", "youtube_id": "heKuwogLwnk", "readable_id": "assassination-of-franz-ferdinand-by-gavrilo-princip"}, "WWv0RUxDfbs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WWv0RUxDfbs.mp4/WWv0RUxDfbs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WWv0RUxDfbs.mp4/WWv0RUxDfbs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WWv0RUxDfbs.m3u8/WWv0RUxDfbs.m3u8"}, "path": "khan/math/probability/random-variables-topic/binomial_distribution/binomial-distribution/", "duration": 712, "id": "WWv0RUxDfbs", "title": "Binomial distribution", "format": "mp4", "description": "", "slug": "binomial-distribution", "kind": "Video", "video_id": "WWv0RUxDfbs", "keywords": "", "youtube_id": "WWv0RUxDfbs", "readable_id": "binomial-distribution"}, "TNGSzt2v4xY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TNGSzt2v4xY.mp4/TNGSzt2v4xY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TNGSzt2v4xY.mp4/TNGSzt2v4xY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TNGSzt2v4xY.m3u8/TNGSzt2v4xY.m3u8"}, "duration": 503, "id": "TNGSzt2v4xY", "title": "Cellular mechanism of hormone action", "format": "mp4", "description": "Learn about the interaction between chemical messages and their target cells in this video about hormone action. By Ryan Patton. ", "path": "khan/test-prep/nclex-rn/rn-endocrine-system/rn-the-endocrine-system/cellular-mechanism-hormone-action/", "slug": "cellular-mechanism-hormone-action", "kind": "Video", "video_id": "TNGSzt2v4xY", "keywords": "hormone action", "youtube_id": "TNGSzt2v4xY", "readable_id": "cellular-mechanism-hormone-action"}, "GDlDirzOSI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GDlDirzOSI8.mp4/GDlDirzOSI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GDlDirzOSI8.mp4/GDlDirzOSI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GDlDirzOSI8.m3u8/GDlDirzOSI8.m3u8"}, "duration": 632, "id": "GDlDirzOSI8", "title": "Emotions: limbic system", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/emotion/emotions-limbic-system/", "slug": "emotions-limbic-system", "kind": "Video", "video_id": "GDlDirzOSI8", "keywords": "", "youtube_id": "GDlDirzOSI8", "readable_id": "emotions-limbic-system"}, "T2DaaGuKOTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T2DaaGuKOTo.mp4/T2DaaGuKOTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T2DaaGuKOTo.mp4/T2DaaGuKOTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T2DaaGuKOTo.m3u8/T2DaaGuKOTo.m3u8"}, "duration": 578, "id": "T2DaaGuKOTo", "title": "Why Carbon is a tramp", "format": "mp4", "description": "", "path": "bio101-carbon/", "slug": "bio101-carbon", "kind": "Video", "video_id": "T2DaaGuKOTo", "keywords": "", "youtube_id": "T2DaaGuKOTo", "readable_id": "bio101-carbon"}, "URcpchlTNBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/URcpchlTNBY.mp4/URcpchlTNBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/URcpchlTNBY.mp4/URcpchlTNBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/URcpchlTNBY.m3u8/URcpchlTNBY.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/leonardo-da-vinci/leonarda-da-vinci-s-letter-to-the-duke-of-milan/", "duration": 197, "id": "URcpchlTNBY", "title": "Leonardo da Vinci, Letter to the Duke of Milan", "format": "mp4", "description": "Leonardo da Vinci's Letter to the Duke of Milan Speaker: Dr. David Drogin\u00a0", "slug": "leonarda-da-vinci-s-letter-to-the-duke-of-milan", "kind": "Video", "video_id": "URcpchlTNBY", "keywords": "Leonardo, Smarthistory, Khan Academy, Milan, Renaissance", "youtube_id": "URcpchlTNBY", "readable_id": "leonarda-da-vinci-s-letter-to-the-duke-of-milan"}, "RGbA2IyJILY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RGbA2IyJILY.mp4/RGbA2IyJILY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RGbA2IyJILY.mp4/RGbA2IyJILY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RGbA2IyJILY.m3u8/RGbA2IyJILY.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/age_word_problems_tut/ex-3-age-word-problem/", "duration": 388, "id": "RGbA2IyJILY", "title": "Ex 3 age word problem", "format": "mp4", "description": "William is 4 times as old as Ben. 12 years ago, William was 7 times as old as Ben. How old is Ben now?", "slug": "ex-3-age-word-problem", "kind": "Video", "video_id": "RGbA2IyJILY", "keywords": "", "youtube_id": "RGbA2IyJILY", "readable_id": "ex-3-age-word-problem"}, "T-kgoxhFSmU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T-kgoxhFSmU.mp4/T-kgoxhFSmU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T-kgoxhFSmU.mp4/T-kgoxhFSmU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T-kgoxhFSmU.m3u8/T-kgoxhFSmU.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/more-on-single-slit-interference/", "duration": 786, "id": "T-kgoxhFSmU", "title": "More on Single Slit Interference", "format": "mp4", "description": "", "slug": "more-on-single-slit-interference", "kind": "Video", "video_id": "T-kgoxhFSmU", "keywords": "", "youtube_id": "T-kgoxhFSmU", "readable_id": "more-on-single-slit-interference"}, "NCye1rnnh6g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NCye1rnnh6g.mp4/NCye1rnnh6g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NCye1rnnh6g.mp4/NCye1rnnh6g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NCye1rnnh6g.m3u8/NCye1rnnh6g.m3u8"}, "path": "khan/science/organic-chemistry/stereochemistry-topic/diastereomers-meso-compounds/diastereomers/", "duration": 554, "id": "NCye1rnnh6g", "title": "Diastereomers", "format": "mp4", "description": "", "slug": "diastereomers", "kind": "Video", "video_id": "NCye1rnnh6g", "keywords": "", "youtube_id": "NCye1rnnh6g", "readable_id": "diastereomers"}, "MUQfl385Yug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MUQfl385Yug.mp4/MUQfl385Yug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MUQfl385Yug.mp4/MUQfl385Yug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MUQfl385Yug.m3u8/MUQfl385Yug.m3u8"}, "path": "khan/math/differential-calculus/derivative_applications/critical_points_graphing/finding-critical-numbers/", "duration": 351, "id": "MUQfl385Yug", "title": "Finding critical numbers", "format": "mp4", "description": "", "slug": "finding-critical-numbers", "kind": "Video", "video_id": "MUQfl385Yug", "keywords": "", "youtube_id": "MUQfl385Yug", "readable_id": "finding-critical-numbers"}, "ez1MIB8_2O0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ez1MIB8_2O0.mp4/ez1MIB8_2O0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ez1MIB8_2O0.mp4/ez1MIB8_2O0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ez1MIB8_2O0.m3u8/ez1MIB8_2O0.m3u8"}, "duration": 80, "id": "ez1MIB8_2O0", "title": "Number line 1", "format": "mp4", "description": "", "path": "khan/math/arithmetic/multiplication-division/multiplication_fun/number-line-1/", "slug": "number-line-1", "kind": "Video", "video_id": "ez1MIB8_2O0", "keywords": "", "youtube_id": "ez1MIB8_2O0", "readable_id": "number-line-1"}, "4krPhLDbU5M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4krPhLDbU5M.mp4/4krPhLDbU5M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4krPhLDbU5M.mp4/4krPhLDbU5M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4krPhLDbU5M.m3u8/4krPhLDbU5M.m3u8"}, "path": "khan/partner-content/cas-biodiversity/how-is-biodiversity-studied/biodiversity-fieldwork/biodiversity-expeditions/", "duration": 487, "id": "4krPhLDbU5M", "title": "Biodiversity Expeditions Past and Present", "format": "mp4", "description": "", "slug": "biodiversity-expeditions", "kind": "Video", "video_id": "4krPhLDbU5M", "keywords": "", "youtube_id": "4krPhLDbU5M", "readable_id": "biodiversity-expeditions"}, "DaoJmvqU3FI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DaoJmvqU3FI.mp4/DaoJmvqU3FI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DaoJmvqU3FI.mp4/DaoJmvqU3FI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DaoJmvqU3FI.m3u8/DaoJmvqU3FI.m3u8"}, "duration": 348, "id": "DaoJmvqU3FI", "title": "Orders of magnitude exercise example 2", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/exponents-radicals/orders-of-magnitude/orders-of-magnitude-exercise-example-2/", "slug": "orders-of-magnitude-exercise-example-2", "kind": "Video", "video_id": "DaoJmvqU3FI", "keywords": "", "youtube_id": "DaoJmvqU3FI", "readable_id": "orders-of-magnitude-exercise-example-2"}, "X_3QAB3o4Vw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X_3QAB3o4Vw.mp4/X_3QAB3o4Vw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X_3QAB3o4Vw.mp4/X_3QAB3o4Vw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X_3QAB3o4Vw.m3u8/X_3QAB3o4Vw.m3u8"}, "duration": 430, "id": "X_3QAB3o4Vw", "title": "Why cepheids pulsate", "format": "mp4", "description": "Why Cepheids Pulsate", "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/cepheid-variables/why-cepheids-pulsate/", "slug": "why-cepheids-pulsate", "kind": "Video", "video_id": "X_3QAB3o4Vw", "keywords": "Why, Cepheids, Pulsate", "youtube_id": "X_3QAB3o4Vw", "readable_id": "why-cepheids-pulsate"}, "nh1R-gyY7es": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nh1R-gyY7es.mp4/nh1R-gyY7es.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nh1R-gyY7es.mp4/nh1R-gyY7es.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nh1R-gyY7es.m3u8/nh1R-gyY7es.m3u8"}, "duration": 541, "id": "nh1R-gyY7es", "title": "Evolution clarification", "format": "mp4", "description": "Clarifying some points on evolution and intelligent design", "path": "khan/science/biology/her/evolution-and-natural-selection/evolution-clarification/", "slug": "evolution-clarification", "kind": "Video", "video_id": "nh1R-gyY7es", "keywords": "biology, intelligent, design", "youtube_id": "nh1R-gyY7es", "readable_id": "evolution-clarification"}, "EQoNfxToez0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EQoNfxToez0.mp4/EQoNfxToez0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EQoNfxToez0.mp4/EQoNfxToez0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EQoNfxToez0.m3u8/EQoNfxToez0.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/positive-and-negative-slope/", "duration": 302, "id": "EQoNfxToez0", "title": "Positive and negative slope", "format": "mp4", "description": "Positive and negative slope", "slug": "positive-and-negative-slope", "kind": "Video", "video_id": "EQoNfxToez0", "keywords": "", "youtube_id": "EQoNfxToez0", "readable_id": "positive-and-negative-slope"}, "sd0BOnN6aNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sd0BOnN6aNY.mp4/sd0BOnN6aNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sd0BOnN6aNY.mp4/sd0BOnN6aNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sd0BOnN6aNY.m3u8/sd0BOnN6aNY.m3u8"}, "duration": 660, "id": "sd0BOnN6aNY", "title": "Specular and diffuse reflection", "format": "mp4", "description": "Specular and Diffuse Reflection", "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/specular-and-diffuse-reflection/", "slug": "specular-and-diffuse-reflection", "kind": "Video", "video_id": "sd0BOnN6aNY", "keywords": "Specular, and, Diffuse, Reflection, angle, incidence, incident", "youtube_id": "sd0BOnN6aNY", "readable_id": "specular-and-diffuse-reflection"}, "8TPofjGXDR4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8TPofjGXDR4.mp4/8TPofjGXDR4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8TPofjGXDR4.mp4/8TPofjGXDR4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8TPofjGXDR4.m3u8/8TPofjGXDR4.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/factoring-with-complex-numbers/factoring-sums-of-squares/", "duration": 291, "id": "8TPofjGXDR4", "title": "Factoring sum of squares", "format": "mp4", "description": "", "slug": "factoring-sums-of-squares", "kind": "Video", "video_id": "8TPofjGXDR4", "keywords": "", "youtube_id": "8TPofjGXDR4", "readable_id": "factoring-sums-of-squares"}, "YEUQXx0fx_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YEUQXx0fx_I.mp4/YEUQXx0fx_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YEUQXx0fx_I.mp4/YEUQXx0fx_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YEUQXx0fx_I.m3u8/YEUQXx0fx_I.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/ka-and-pka-review/", "duration": 160, "id": "YEUQXx0fx_I", "title": "Ka and pKa review", "format": "mp4", "description": "A short review of Ka and pKa for students taking organic chemistry", "slug": "ka-and-pka-review", "kind": "Video", "video_id": "YEUQXx0fx_I", "keywords": "", "youtube_id": "YEUQXx0fx_I", "readable_id": "ka-and-pka-review"}, "KUSsRrOqynQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KUSsRrOqynQ.mp4/KUSsRrOqynQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KUSsRrOqynQ.mp4/KUSsRrOqynQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KUSsRrOqynQ.m3u8/KUSsRrOqynQ.m3u8"}, "duration": 246, "id": "KUSsRrOqynQ", "title": "Shifts in Equilibrium", "format": "mp4", "description": "Equilibrium occurs when the overall state of a system is constant. Equilibrium can be static (nothing in the system is changing), or dynamic (little parts of the system are changing, but overall the state isn't changing). In my video, I'll demonstrate systems in both types of equilibrium, and how the equilibrium states can be shifted. \n\nLicense: Creative Commons BY-NC-SA\nMore information at http://k12videos.mit.edu/terms-conditions", "path": "shifts-in-equilibrium/", "slug": "shifts-in-equilibrium", "kind": "Video", "video_id": "KUSsRrOqynQ", "keywords": "equilibrium", "youtube_id": "KUSsRrOqynQ", "readable_id": "shifts-in-equilibrium"}, "eeNfDr4ojZg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eeNfDr4ojZg.mp4/eeNfDr4ojZg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eeNfDr4ojZg.mp4/eeNfDr4ojZg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eeNfDr4ojZg.m3u8/eeNfDr4ojZg.m3u8"}, "path": "khan/test-prep/ap-art-history/global-prehistory-ap/paleolithic-mesolithic-neolithic/susa-ibex/", "duration": 242, "id": "eeNfDr4ojZg", "title": "Bushel with ibex motifs", "format": "mp4", "description": "Bushel with ibex motifs, 4200--3500 B.C.E., Susa I period, necropolis, acropolis mound, Susa, Iran, painted terra-cotta, 28.90 x 16.40 cm, excavations led by Jacques de Morgan, 1906-08 (Mus\u00e9e du Louvre, Paris)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "susa-ibex", "kind": "Video", "video_id": "eeNfDr4ojZg", "keywords": "Susa, Iran, Ibex, Beaker, Bushel, Neolithic", "youtube_id": "eeNfDr4ojZg", "readable_id": "susa-ibex"}, "W5QExA4er6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W5QExA4er6w.mp4/W5QExA4er6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W5QExA4er6w.mp4/W5QExA4er6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W5QExA4er6w.m3u8/W5QExA4er6w.m3u8"}, "duration": 351, "id": "W5QExA4er6w", "title": "Problem solving", "format": "mp4", "description": "Learn about types of problems and common approaches to solving them.", "path": "khan/test-prep/mcat/processing-the-environment/cognition/problem-solving/", "slug": "problem-solving", "kind": "Video", "video_id": "W5QExA4er6w", "keywords": "", "youtube_id": "W5QExA4er6w", "readable_id": "problem-solving"}, "Jn5XIY8eqME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jn5XIY8eqME.mp4/Jn5XIY8eqME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jn5XIY8eqME.mp4/Jn5XIY8eqME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jn5XIY8eqME.m3u8/Jn5XIY8eqME.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/rational-irrational-numbers/approximating-irrational-number-exercise-example/", "duration": 216, "id": "Jn5XIY8eqME", "title": "Approximating irrational number exercise example", "format": "mp4", "description": "", "slug": "approximating-irrational-number-exercise-example", "kind": "Video", "video_id": "Jn5XIY8eqME", "keywords": "", "youtube_id": "Jn5XIY8eqME", "readable_id": "approximating-irrational-number-exercise-example"}, "LSaaKau63Gg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LSaaKau63Gg.mp4/LSaaKau63Gg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LSaaKau63Gg.mp4/LSaaKau63Gg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LSaaKau63Gg.m3u8/LSaaKau63Gg.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/regrouping-twice-when-subtracting-three-digit-numbers/", "duration": 228, "id": "LSaaKau63Gg", "title": "Subtracting: regrouping twice", "format": "mp4", "description": "Getting a little fancier with our regrouping now. What if you have TWO numbers that require you to borrow or regroup? You guessed it! You have to take value from one place and give it to another.", "slug": "regrouping-twice-when-subtracting-three-digit-numbers", "kind": "Video", "video_id": "LSaaKau63Gg", "keywords": "", "youtube_id": "LSaaKau63Gg", "readable_id": "regrouping-twice-when-subtracting-three-digit-numbers"}, "bml74_PsfwA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bml74_PsfwA.mp4/bml74_PsfwA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bml74_PsfwA.mp4/bml74_PsfwA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bml74_PsfwA.m3u8/bml74_PsfwA.m3u8"}, "duration": 183, "id": "bml74_PsfwA", "title": "Extraneous solutions to rational equations", "format": "mp4", "description": "Extraneous Solutions to Rational Equations", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/extraneous-solutions-to-rational-equations/", "slug": "extraneous-solutions-to-rational-equations", "kind": "Video", "video_id": "bml74_PsfwA", "keywords": "u15_l2_t1_we2, Extraneous, Solutions, to, Rational, Equations, CC_6_EE_6, CC_7_EE_4_a", "youtube_id": "bml74_PsfwA", "readable_id": "extraneous-solutions-to-rational-equations"}, "GP53b__h4ew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GP53b__h4ew.mp4/GP53b__h4ew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GP53b__h4ew.mp4/GP53b__h4ew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GP53b__h4ew.m3u8/GP53b__h4ew.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/scale-of-solar-system/", "duration": 751, "id": "GP53b__h4ew", "title": "Scale of solar system", "format": "mp4", "description": "Sal Khan describes the scale of our Solar System.", "slug": "scale-of-solar-system", "kind": "Video", "video_id": "GP53b__h4ew", "keywords": "Scale, of, Solar, System, big, history, cosmology, astronomy", "youtube_id": "GP53b__h4ew", "readable_id": "scale-of-solar-system"}, "Xqfcy1rqMbI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xqfcy1rqMbI.mp4/Xqfcy1rqMbI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xqfcy1rqMbI.mp4/Xqfcy1rqMbI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xqfcy1rqMbI.m3u8/Xqfcy1rqMbI.m3u8"}, "duration": 550, "id": "Xqfcy1rqMbI", "title": "Probability using combinations", "format": "mp4", "description": "Probability of getting exactly 3 heads in 8 flips of a fair coin.", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/probability-using-combinations/", "slug": "probability-using-combinations", "kind": "Video", "video_id": "Xqfcy1rqMbI", "keywords": "probability, combinations, coin", "youtube_id": "Xqfcy1rqMbI", "readable_id": "probability-using-combinations"}, "xjkbR7Gjgjs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xjkbR7Gjgjs.mp4/xjkbR7Gjgjs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xjkbR7Gjgjs.mp4/xjkbR7Gjgjs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xjkbR7Gjgjs.m3u8/xjkbR7Gjgjs.m3u8"}, "duration": 218, "id": "xjkbR7Gjgjs", "title": "Square a binomial", "format": "mp4", "description": "Square a Binomial", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/square-a-binomial/", "slug": "square-a-binomial", "kind": "Video", "video_id": "xjkbR7Gjgjs", "keywords": "u11_l2_t4_we2, Square, Binomial, CC_39336_A-APR_1, CC_39336_A-REI_4_a", "youtube_id": "xjkbR7Gjgjs", "readable_id": "square-a-binomial"}, "_jiI0AV8Vr4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_jiI0AV8Vr4.mp4/_jiI0AV8Vr4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_jiI0AV8Vr4.mp4/_jiI0AV8Vr4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_jiI0AV8Vr4.m3u8/_jiI0AV8Vr4.m3u8"}, "duration": 214, "id": "_jiI0AV8Vr4", "title": "Order of operations examples: exponents", "format": "mp4", "description": "Exponents are near the top of the food chain when it comes to order of operations. Let's do some examples together.", "path": "order-of-operations-with-exponents-examples/", "slug": "order-of-operations-with-exponents-examples", "kind": "Video", "video_id": "_jiI0AV8Vr4", "keywords": "", "youtube_id": "_jiI0AV8Vr4", "readable_id": "order-of-operations-with-exponents-examples"}, "aIvYdSzLGoI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aIvYdSzLGoI.mp4/aIvYdSzLGoI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aIvYdSzLGoI.mp4/aIvYdSzLGoI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aIvYdSzLGoI.m3u8/aIvYdSzLGoI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/using-the-arrhenius-equation/", "duration": 666, "id": "aIvYdSzLGoI", "title": "Using the Arrhenius equation", "format": "mp4", "description": "", "slug": "using-the-arrhenius-equation", "kind": "Video", "video_id": "aIvYdSzLGoI", "keywords": "", "youtube_id": "aIvYdSzLGoI", "readable_id": "using-the-arrhenius-equation"}, "_NB5-Z0pOyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_NB5-Z0pOyc.mp4/_NB5-Z0pOyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_NB5-Z0pOyc.mp4/_NB5-Z0pOyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_NB5-Z0pOyc.m3u8/_NB5-Z0pOyc.m3u8"}, "path": "khan/humanities/history/1600s-1800s/declaration-of-independence/first-draft-of-the-declaration-of-independence/", "duration": 490, "id": "_NB5-Z0pOyc", "title": "First draft of the Declaration of Independence", "format": "mp4", "description": "In this video, Aspen Institute President and CEO Walter Isaacson\u00a0talks to Sal about \u00a0the Declaration of Independence.", "slug": "first-draft-of-the-declaration-of-independence", "kind": "Video", "video_id": "_NB5-Z0pOyc", "keywords": "", "youtube_id": "_NB5-Z0pOyc", "readable_id": "first-draft-of-the-declaration-of-independence"}, "3YBXzMC9sDk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3YBXzMC9sDk.mp4/3YBXzMC9sDk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3YBXzMC9sDk.mp4/3YBXzMC9sDk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3YBXzMC9sDk.m3u8/3YBXzMC9sDk.m3u8"}, "duration": 163, "id": "3YBXzMC9sDk", "title": "\"Curls\" with Wolfram Koeppe", "format": "mp4", "description": "Met curator Wolfram Koeppe on lasting monuments in Alexander Danilovich Menshikov, an 18th-century Russian portrait bust created by an anonymous artist.\n\nThe pictorial program of this intriguing portrait reflects the sitter's meteoric rise as a military commander and his personal search for a pedigree. The oval reliefs show the Justice of Trajan (right) and Alexander the Great and Hephaestion at the tent of Darius (left). Hephaestion's friendship with Alexander (who happened to share a first name with Menshikov) is meant to underscore Menshikov's service to his master and close friend, Peter the Great. After the emperor's death in 1725, his widow, Catherine, assumed power and virtually entrusted Menshikov with ruling Russia. Upon her death in 1727, Menshikov's opponents instigated a political rebellion. Menshikov, who had been knighted in 1703 and received the rank of prince in 1705, was stripped of his possessions and title and exiled to northern Siberia, where he died in poverty.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "curls/", "slug": "curls", "kind": "Video", "video_id": "3YBXzMC9sDk", "keywords": "confidence, metal, mystery, politics, sculpture, wood, Europe", "youtube_id": "3YBXzMC9sDk", "readable_id": "curls"}, "yAH3722GrP8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yAH3722GrP8.mp4/yAH3722GrP8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yAH3722GrP8.mp4/yAH3722GrP8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yAH3722GrP8.m3u8/yAH3722GrP8.m3u8"}, "duration": 364, "id": "yAH3722GrP8", "title": "Multiplying binomials with radicals", "format": "mp4", "description": "Multiplying Binomials with Radicals", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/multiplying-binomials-with-radicals/", "slug": "multiplying-binomials-with-radicals", "kind": "Video", "video_id": "yAH3722GrP8", "keywords": "u16_l2_t3_we1, Multiplying, Binomials, with, Radicals", "youtube_id": "yAH3722GrP8", "readable_id": "multiplying-binomials-with-radicals"}, "mNgW6SAQLhk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mNgW6SAQLhk.mp4/mNgW6SAQLhk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mNgW6SAQLhk.mp4/mNgW6SAQLhk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mNgW6SAQLhk.m3u8/mNgW6SAQLhk.m3u8"}, "duration": 281, "id": "mNgW6SAQLhk", "title": "Structure in rational expression", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/advanced-structure-in-expression/structure-in-rational-expression/", "slug": "structure-in-rational-expression", "kind": "Video", "video_id": "mNgW6SAQLhk", "keywords": "", "youtube_id": "mNgW6SAQLhk", "readable_id": "structure-in-rational-expression"}, "yjBJ95ZXPcI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yjBJ95ZXPcI.mp4/yjBJ95ZXPcI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yjBJ95ZXPcI.mp4/yjBJ95ZXPcI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yjBJ95ZXPcI.m3u8/yjBJ95ZXPcI.m3u8"}, "duration": 239, "id": "yjBJ95ZXPcI", "title": "The Federalist Papers", "format": "mp4", "description": "Lynne Cheney, author of \u201cJames Madison: A Life Reconsidered\u201d in conversation with Walter Isaacson of the Aspen Institute.\u00a0", "path": "isaacson-with-cheney-khan-academy-lesson-vi/", "slug": "isaacson-with-cheney-khan-academy-lesson-vi", "kind": "Video", "video_id": "yjBJ95ZXPcI", "keywords": "", "youtube_id": "yjBJ95ZXPcI", "readable_id": "isaacson-with-cheney-khan-academy-lesson-vi"}, "IOuZHx6w-gU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IOuZHx6w-gU.mp4/IOuZHx6w-gU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IOuZHx6w-gU.mp4/IOuZHx6w-gU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IOuZHx6w-gU.m3u8/IOuZHx6w-gU.m3u8"}, "duration": 684, "id": "IOuZHx6w-gU", "title": "Population ecology: The Texas mosquito mystery", "format": "mp4", "description": "", "path": "crash-course-ecology-02/", "slug": "crash-course-ecology-02", "kind": "Video", "video_id": "IOuZHx6w-gU", "keywords": "", "youtube_id": "IOuZHx6w-gU", "readable_id": "crash-course-ecology-02"}, "amv4Ed15YMY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/amv4Ed15YMY.mp4/amv4Ed15YMY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/amv4Ed15YMY.mp4/amv4Ed15YMY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/amv4Ed15YMY.m3u8/amv4Ed15YMY.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/class-consciousness-and-false-consciousness/", "duration": 258, "id": "amv4Ed15YMY", "title": "Class consciousness and false consciousness", "format": "mp4", "description": "", "slug": "class-consciousness-and-false-consciousness", "kind": "Video", "video_id": "amv4Ed15YMY", "keywords": "", "youtube_id": "amv4Ed15YMY", "readable_id": "class-consciousness-and-false-consciousness"}, "aQxyXfIfa9A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aQxyXfIfa9A.mp4/aQxyXfIfa9A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aQxyXfIfa9A.mp4/aQxyXfIfa9A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aQxyXfIfa9A.m3u8/aQxyXfIfa9A.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/dna-libraries-generating-cdna/", "duration": 223, "id": "aQxyXfIfa9A", "title": "DNA libraries & generating cDNA", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "dna-libraries-generating-cdna", "kind": "Video", "video_id": "aQxyXfIfa9A", "keywords": "", "youtube_id": "aQxyXfIfa9A", "readable_id": "dna-libraries-generating-cdna"}, "U1Ls9Vh-3m8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U1Ls9Vh-3m8.mp4/U1Ls9Vh-3m8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U1Ls9Vh-3m8.mp4/U1Ls9Vh-3m8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U1Ls9Vh-3m8.m3u8/U1Ls9Vh-3m8.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-iron-deficiency-anemia-and-anemia-of-chronic-disease/what-is-iron-deficiency/", "duration": 756, "id": "U1Ls9Vh-3m8", "title": "What is iron deficiency?", "format": "mp4", "description": "", "slug": "what-is-iron-deficiency", "kind": "Video", "video_id": "U1Ls9Vh-3m8", "keywords": "", "youtube_id": "U1Ls9Vh-3m8", "readable_id": "what-is-iron-deficiency"}, "XfeO76UvXFk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XfeO76UvXFk.mp4/XfeO76UvXFk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XfeO76UvXFk.mp4/XfeO76UvXFk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XfeO76UvXFk.m3u8/XfeO76UvXFk.m3u8"}, "duration": 216, "id": "XfeO76UvXFk", "title": "Marc Quinn's Siren at the British Museum (Kate Moss)", "format": "mp4", "description": "Marc Quinn remembers his visit\u00a0to the Tutankhamun exhibition at the British Museum. He shares his delight in coming back to exhibit\u00a0a work inspired by that experience and the surrounding ancient Greek sculpture. Curator Peter Higgs draws parallels with ideal female nudes created in 4th-century BC Greece.\n\nQuinn\u2019s fascination with our attitudes towards female beauty has repeatedly led him to ancient Greek art. His new sculpture, Siren, is of the model Kate Moss and is made entirely out of gold. Quinn presents Moss as a modern-day Aphrodite reminding us that Moss's likeness has become as iconic as the goddesses of the ancient world. \u00a9 Trustees of the British Museum", "path": "mark-quinn-siren/", "slug": "mark-quinn-siren", "kind": "Video", "video_id": "XfeO76UvXFk", "keywords": "", "youtube_id": "XfeO76UvXFk", "readable_id": "mark-quinn-siren"}, "EjtjdJZ2x8w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EjtjdJZ2x8w.mp4/EjtjdJZ2x8w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EjtjdJZ2x8w.mp4/EjtjdJZ2x8w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EjtjdJZ2x8w.m3u8/EjtjdJZ2x8w.m3u8"}, "duration": 769, "id": "EjtjdJZ2x8w", "title": "IIT JEE trigonometric constraints", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 47 Trigonometric Constraints", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-trigonometric-constraints/", "slug": "iit-jee-trigonometric-constraints", "kind": "Video", "video_id": "EjtjdJZ2x8w", "keywords": "2010, IIT, JEE, Paper, Problem, 47, Trigonometric, Constraints", "youtube_id": "EjtjdJZ2x8w", "readable_id": "iit-jee-trigonometric-constraints"}, "x1z0hOyjapU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x1z0hOyjapU.mp4/x1z0hOyjapU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x1z0hOyjapU.mp4/x1z0hOyjapU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x1z0hOyjapU.m3u8/x1z0hOyjapU.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/composition_of_transformations/linear-algebra-matrix-product-examples/", "duration": 1094, "id": "x1z0hOyjapU", "title": "Matrix product examples", "format": "mp4", "description": "Example of taking the product of two matrices", "slug": "linear-algebra-matrix-product-examples", "kind": "Video", "video_id": "x1z0hOyjapU", "keywords": "matrix, multiplying, product", "youtube_id": "x1z0hOyjapU", "readable_id": "linear-algebra-matrix-product-examples"}, "v-4QScXlN0o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v-4QScXlN0o.mp4/v-4QScXlN0o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v-4QScXlN0o.mp4/v-4QScXlN0o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v-4QScXlN0o.m3u8/v-4QScXlN0o.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-1d/", "duration": 514, "id": "v-4QScXlN0o", "title": "2011 Calculus BC free response #1d", "format": "mp4", "description": "Arc length for a curve", "slug": "2011-calculus-bc-free-response-1d", "kind": "Video", "video_id": "v-4QScXlN0o", "keywords": "calc, AP, advanced, placement", "youtube_id": "v-4QScXlN0o", "readable_id": "2011-calculus-bc-free-response-1d"}, "8pSBIydZULc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8pSBIydZULc.mp4/8pSBIydZULc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8pSBIydZULc.mp4/8pSBIydZULc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8pSBIydZULc.m3u8/8pSBIydZULc.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-england/be-prepared/", "duration": 183, "id": "8pSBIydZULc", "title": "\"Be Prepared\" with Constance McPhee", "format": "mp4", "description": "Met curator Constance McPhee on outsiders in William Blake\u2019s The Parable of the Wise and Foolish Virgins.\n\nBlake painted four versions of this subject for his patron Thomas Butts and this lucid watercolor is the earliest. The wise virgins at left are elegant, palely luminous, and composed within a single plane, recalling classical low-relief sculpture. In contrast, their foolish companions at right are agitated and characterized by dark tones. The drawing illustrates\u00a0a parable in Matthew 25:1-13 used by Jesus to warn listeners to be spiritually prepared:\u00a0\n\nThen shall the kingdom of heaven be likened unto ten virgins, which took their lamps, and went forth to meet the bridegroom. And five of them were wise, and five were foolish. They that were foolish took their lamps, and took no oil with them. But the wise took oil in their vessels with their lamps.\u00a0A trumpeting angel flying overhead signifies that the moment of judgment has arrived.\n\nView this work on the metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "slug": "be-prepared", "kind": "Video", "video_id": "8pSBIydZULc", "keywords": "belief, drawing, light, paper, transcendence, Europe", "youtube_id": "8pSBIydZULc", "readable_id": "be-prepared"}, "pfzJ-z5Ij48": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pfzJ-z5Ij48.mp4/pfzJ-z5Ij48.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pfzJ-z5Ij48.mp4/pfzJ-z5Ij48.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pfzJ-z5Ij48.m3u8/pfzJ-z5Ij48.m3u8"}, "duration": 602, "id": "pfzJ-z5Ij48", "title": "Introduction to mechanical advantage", "format": "mp4", "description": "Introduction to simple machines, mechanical advantage and moments.", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/introduction-to-mechanical-advantage/", "slug": "introduction-to-mechanical-advantage", "kind": "Video", "video_id": "pfzJ-z5Ij48", "keywords": "moment, machine, mechanical, advantage, physics", "youtube_id": "pfzJ-z5Ij48", "readable_id": "introduction-to-mechanical-advantage"}, "3NHSwiv_pSE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3NHSwiv_pSE.mp4/3NHSwiv_pSE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3NHSwiv_pSE.mp4/3NHSwiv_pSE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3NHSwiv_pSE.m3u8/3NHSwiv_pSE.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/combining-like-terms-and-the-distributive-property/", "duration": 247, "id": "3NHSwiv_pSE", "title": "Combining like terms and the distributive property", "format": "mp4", "description": "We've learned about order of operations and combining like terms. Let's layer the distributive property on top of this.", "slug": "combining-like-terms-and-the-distributive-property", "kind": "Video", "video_id": "3NHSwiv_pSE", "keywords": "", "youtube_id": "3NHSwiv_pSE", "readable_id": "combining-like-terms-and-the-distributive-property"}, "b22tMEc6Kko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b22tMEc6Kko.mp4/b22tMEc6Kko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b22tMEc6Kko.mp4/b22tMEc6Kko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b22tMEc6Kko.m3u8/b22tMEc6Kko.m3u8"}, "duration": 92, "id": "b22tMEc6Kko", "title": "Example: Adding two digit numbers (no carrying)", "format": "mp4", "description": "Adding Whole Numbers and Applications 1", "path": "khan/math/arithmetic/addition-subtraction/two_dig_add_sub/adding-whole-numbers-and-applications-1/", "slug": "adding-whole-numbers-and-applications-1", "kind": "Video", "video_id": "b22tMEc6Kko", "keywords": "U01_L2_T1_we1, Adding, Whole, Numbers, and, Applications, CC_1_NBT_2_a, CC_1_NBT_2_b, CC_1_NBT_3", "youtube_id": "b22tMEc6Kko", "readable_id": "adding-whole-numbers-and-applications-1"}, "dfoXtodyiIA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dfoXtodyiIA.mp4/dfoXtodyiIA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dfoXtodyiIA.mp4/dfoXtodyiIA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dfoXtodyiIA.m3u8/dfoXtodyiIA.m3u8"}, "duration": 442, "id": "dfoXtodyiIA", "title": "Parabola vertex and axis of symmetry", "format": "mp4", "description": "Parabola vertex and axis of symmetry", "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/quadratic-functions-2/", "slug": "quadratic-functions-2", "kind": "Video", "video_id": "dfoXtodyiIA", "keywords": "U10_L1_T1_we2, Quadratic, Functions, CC_39336_A-REI_4, CC_39336_A-SSE_3_b, CC_39336_F-IF_7_a, CC_39336_F-IF_8_a", "youtube_id": "dfoXtodyiIA", "readable_id": "quadratic-functions-2"}, "WRuatAcd2WY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WRuatAcd2WY.mp4/WRuatAcd2WY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WRuatAcd2WY.mp4/WRuatAcd2WY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WRuatAcd2WY.m3u8/WRuatAcd2WY.m3u8"}, "duration": 475, "id": "WRuatAcd2WY", "title": "Total internal reflection", "format": "mp4", "description": "Critical incident angle and total internal reflection", "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/total-internal-reflection/", "slug": "total-internal-reflection", "kind": "Video", "video_id": "WRuatAcd2WY", "keywords": "Critical, incident, angle, and, total, internal, reflection", "youtube_id": "WRuatAcd2WY", "readable_id": "total-internal-reflection"}, "pAgPfr7MkkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pAgPfr7MkkU.mp4/pAgPfr7MkkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pAgPfr7MkkU.mp4/pAgPfr7MkkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pAgPfr7MkkU.m3u8/pAgPfr7MkkU.m3u8"}, "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-9-electric-motors/", "duration": 636, "id": "pAgPfr7MkkU", "title": "Magnetism 9: Electric motors", "format": "mp4", "description": "Using a magnetic field to exert torque on a rotating circuit.", "slug": "magnetism-9-electric-motors", "kind": "Video", "video_id": "pAgPfr7MkkU", "keywords": "electric, motor, magnetic, field", "youtube_id": "pAgPfr7MkkU", "readable_id": "magnetism-9-electric-motors"}, "QUJ-xnv53UM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QUJ-xnv53UM.mp4/QUJ-xnv53UM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QUJ-xnv53UM.mp4/QUJ-xnv53UM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QUJ-xnv53UM.m3u8/QUJ-xnv53UM.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/spermatogenesis/", "duration": 573, "id": "QUJ-xnv53UM", "title": "Spermatogenesis", "format": "mp4", "description": "", "slug": "spermatogenesis", "kind": "Video", "video_id": "QUJ-xnv53UM", "keywords": "", "youtube_id": "QUJ-xnv53UM", "readable_id": "spermatogenesis"}, "YahJQvY396o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YahJQvY396o.mp4/YahJQvY396o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YahJQvY396o.mp4/YahJQvY396o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YahJQvY396o.m3u8/YahJQvY396o.m3u8"}, "duration": 150, "id": "YahJQvY396o", "title": "Example 2: Factoring difference of squares", "format": "mp4", "description": "Factoring difference of squares", "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/u09-l2-t1-we3-factoring-special-products-3/", "slug": "u09-l2-t1-we3-factoring-special-products-3", "kind": "Video", "video_id": "YahJQvY396o", "keywords": "U09_L2_T1_we3, Factoring, Special, Products, CC_39336_A-SSE_2", "youtube_id": "YahJQvY396o", "readable_id": "u09-l2-t1-we3-factoring-special-products-3"}, "CiKrFcgVSIU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CiKrFcgVSIU.mp4/CiKrFcgVSIU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CiKrFcgVSIU.mp4/CiKrFcgVSIU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CiKrFcgVSIU.m3u8/CiKrFcgVSIU.m3u8"}, "duration": 958, "id": "CiKrFcgVSIU", "title": "Year 2060: Education Predictions", "format": "mp4", "description": "Sal is asked to make some predictions for the year 2060", "path": "year-2060-education-predictions/", "slug": "year-2060-education-predictions", "kind": "Video", "video_id": "CiKrFcgVSIU", "keywords": "teacher, role, pay, credential", "youtube_id": "CiKrFcgVSIU", "readable_id": "year-2060-education-predictions"}, "_btQus9HV_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_btQus9HV_I.mp4/_btQus9HV_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_btQus9HV_I.mp4/_btQus9HV_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_btQus9HV_I.m3u8/_btQus9HV_I.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/adding-subtracting-mixed-numbers-1-ex-2/", "duration": 151, "id": "_btQus9HV_I", "title": "Subtracting mixed numbers", "format": "mp4", "description": "Although this sounds like strictly a subtraction problem, it's also partially addition in that we have mixed numbers. By definition, a mixed number includes a whole number added to a proper fraction. We'll clarify it and with a little practice, you'll impress your friends.", "slug": "adding-subtracting-mixed-numbers-1-ex-2", "kind": "Video", "video_id": "_btQus9HV_I", "keywords": "Adding, subtracting, mixed, numbers, 1, ex, 2", "youtube_id": "_btQus9HV_I", "readable_id": "adding-subtracting-mixed-numbers-1-ex-2"}, "9QduzzW10uA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9QduzzW10uA.mp4/9QduzzW10uA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9QduzzW10uA.mp4/9QduzzW10uA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9QduzzW10uA.m3u8/9QduzzW10uA.m3u8"}, "duration": 642, "id": "9QduzzW10uA", "title": "Path counting brain teaser", "format": "mp4", "description": "Counting paths in a square", "path": "khan/math/recreational-math/puzzles/brain-teasers/path-counting-brain-teaser/", "slug": "path-counting-brain-teaser", "kind": "Video", "video_id": "9QduzzW10uA", "keywords": "brain, teaser, paths, binomial, interview, questions", "youtube_id": "9QduzzW10uA", "readable_id": "path-counting-brain-teaser"}, "BR5yFOt0zao": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BR5yFOt0zao.mp4/BR5yFOt0zao.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BR5yFOt0zao.mp4/BR5yFOt0zao.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BR5yFOt0zao.m3u8/BR5yFOt0zao.m3u8"}, "path": "khan/math/algebra/algebra-functions/functions-and-function-notation/solving-for-a-variable-2/", "duration": 161, "id": "BR5yFOt0zao", "title": "Solving for F in terms of C", "format": "mp4", "description": "Solving for a Variable 2", "slug": "solving-for-a-variable-2", "kind": "Video", "video_id": "BR5yFOt0zao", "keywords": "U02_L1_T4_we2, Solving, for, Variable, CC_6_EE_2_c, CC_6_EE_6, CC_7_EE_4_a, CC_8_EE_7_b, CC_39336_A-REI_3", "youtube_id": "BR5yFOt0zao", "readable_id": "solving-for-a-variable-2"}, "yZtpr_curdc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yZtpr_curdc.mp4/yZtpr_curdc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yZtpr_curdc.mp4/yZtpr_curdc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yZtpr_curdc.m3u8/yZtpr_curdc.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-8/", "duration": 664, "id": "yZtpr_curdc", "title": "GMAT: Math 8", "format": "mp4", "description": "42-48, pgs. 157-158", "slug": "gmat-math-8", "kind": "Video", "video_id": "yZtpr_curdc", "keywords": "gmat, problem, solving, math", "youtube_id": "yZtpr_curdc", "readable_id": "gmat-math-8"}, "XXl5h257iBA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XXl5h257iBA.mp4/XXl5h257iBA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XXl5h257iBA.mp4/XXl5h257iBA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XXl5h257iBA.m3u8/XXl5h257iBA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/classical/battle-of-the-lapiths-and-centaurs-parthenon-metope-c-440-b-c-e/", "duration": 403, "id": "XXl5h257iBA", "title": "Parthenon Metopes", "format": "mp4", "description": "Battle of the Lapiths and Centaurs, Parthenon Metopes,\nsouth flank, marble, c. 440 B.C.E., Classical Period (British Museum, London). Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "battle-of-the-lapiths-and-centaurs-parthenon-metope-c-440-b-c-e", "kind": "Video", "video_id": "XXl5h257iBA", "keywords": "metope, Athens, Acropolis", "youtube_id": "XXl5h257iBA", "readable_id": "battle-of-the-lapiths-and-centaurs-parthenon-metope-c-440-b-c-e"}, "DTHdyDWmMbc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DTHdyDWmMbc.mp4/DTHdyDWmMbc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DTHdyDWmMbc.mp4/DTHdyDWmMbc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DTHdyDWmMbc.m3u8/DTHdyDWmMbc.m3u8"}, "duration": 593, "id": "DTHdyDWmMbc", "title": "Common Core Standards: Fractions (Part 1)", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the fraction standards.", "path": "ccc-fractions-1/", "slug": "ccc-fractions-1", "kind": "Video", "video_id": "DTHdyDWmMbc", "keywords": "", "youtube_id": "DTHdyDWmMbc", "readable_id": "ccc-fractions-1"}, "K0qH8EwiH2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K0qH8EwiH2g.mp4/K0qH8EwiH2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K0qH8EwiH2g.mp4/K0qH8EwiH2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K0qH8EwiH2g.m3u8/K0qH8EwiH2g.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/cranach-altdorfer/altdorfer-the-battle-of-issus-1529/", "duration": 285, "id": "K0qH8EwiH2g", "title": "Altdorfer, the Battle of Issus", "format": "mp4", "description": "Albrecht Altdorfer, The Battle of Issus, 1529, oil on panel, 158.4 \u00d7\u00a0120.3\u00a0cm, Alte Pinakothek, Munich. Speakers: Dr.Steven Zucker and Dr. Beth Harris", "slug": "altdorfer-the-battle-of-issus-1529", "kind": "Video", "video_id": "K0qH8EwiH2g", "keywords": "", "youtube_id": "K0qH8EwiH2g", "readable_id": "altdorfer-the-battle-of-issus-1529"}, "ZSsBh4Ybbj8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZSsBh4Ybbj8.mp4/ZSsBh4Ybbj8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZSsBh4Ybbj8.mp4/ZSsBh4Ybbj8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZSsBh4Ybbj8.m3u8/ZSsBh4Ybbj8.m3u8"}, "duration": 141, "id": "ZSsBh4Ybbj8", "title": "Inductive reasoning 2", "format": "mp4", "description": "Inductive Reasoning 2", "path": "khan/math/precalculus/seq_induction/deductive-and-inductive-reasoning/inductive-reasoning-2/", "slug": "inductive-reasoning-2", "kind": "Video", "video_id": "ZSsBh4Ybbj8", "keywords": "U12_L1_T3_we2, Inductive, Reasoning, CC_39336_F-BF_2", "youtube_id": "ZSsBh4Ybbj8", "readable_id": "inductive-reasoning-2"}, "vzCVnLwaRKc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vzCVnLwaRKc.mp4/vzCVnLwaRKc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vzCVnLwaRKc.mp4/vzCVnLwaRKc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vzCVnLwaRKc.m3u8/vzCVnLwaRKc.m3u8"}, "duration": 61, "id": "vzCVnLwaRKc", "title": "Compass: Which way is north?", "format": "mp4", "description": "how would you know which way is north if you had no reference? Can the direction of stroke alone tell you this? Are you sure?", "path": "khan/science/discoveries-projects/discoveries/magnetism/which-way-is-north/", "slug": "which-way-is-north", "kind": "Video", "video_id": "vzCVnLwaRKc", "keywords": "compass direction", "youtube_id": "vzCVnLwaRKc", "readable_id": "which-way-is-north"}, "uhxtUt_-GyM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uhxtUt_-GyM.mp4/uhxtUt_-GyM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uhxtUt_-GyM.mp4/uhxtUt_-GyM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uhxtUt_-GyM.m3u8/uhxtUt_-GyM.m3u8"}, "path": "khan/math/probability/descriptive-statistics/old-stats-videos/statistics-the-average/", "duration": 755, "id": "uhxtUt_-GyM", "title": "Statistics: The average", "format": "mp4", "description": "Introduction to descriptive statistics and central tendency. Ways to measure the average of a set: median, mean, mode", "slug": "statistics-the-average", "kind": "Video", "video_id": "uhxtUt_-GyM", "keywords": "statistics, mean, median, mode, central, tendency, average, CC_6_SP_1, CC_6_SP_2, CC_6_SP_3, CC_6_SP_5_c, CC_7_SP_1", "youtube_id": "uhxtUt_-GyM", "readable_id": "statistics-the-average"}, "VpuN8vCQ--M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VpuN8vCQ--M.mp4/VpuN8vCQ--M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VpuN8vCQ--M.mp4/VpuN8vCQ--M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VpuN8vCQ--M.m3u8/VpuN8vCQ--M.m3u8"}, "duration": 539, "id": "VpuN8vCQ--M", "title": "Law of large numbers", "format": "mp4", "description": "Introduction to the law of large numbers", "path": "khan/math/probability/random-variables-topic/expected-value/law-of-large-numbers/", "slug": "law-of-large-numbers", "kind": "Video", "video_id": "VpuN8vCQ--M", "keywords": "probability, law, of, large, numbers, statistics, CC_6_SP_5_c, CC_7_SP_1, CC_7_SP_2, CC_8_SP_1", "youtube_id": "VpuN8vCQ--M", "readable_id": "law-of-large-numbers"}, "l1hJABkcuYI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l1hJABkcuYI.mp4/l1hJABkcuYI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l1hJABkcuYI.mp4/l1hJABkcuYI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l1hJABkcuYI.m3u8/l1hJABkcuYI.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/2011-calculus-bc-free-response-6c/", "duration": 178, "id": "l1hJABkcuYI", "title": "2011 Calculus BC free response #6c", "format": "mp4", "description": "Calculating the 6th derivative at 0 from the Taylor Series approximation", "slug": "2011-calculus-bc-free-response-6c", "kind": "Video", "video_id": "l1hJABkcuYI", "keywords": "2011, Calculus, BC, Free, Response, #6c", "youtube_id": "l1hJABkcuYI", "readable_id": "2011-calculus-bc-free-response-6c"}, "sLw902V40L0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sLw902V40L0.mp4/sLw902V40L0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sLw902V40L0.mp4/sLw902V40L0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sLw902V40L0.m3u8/sLw902V40L0.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/antiderivative-acceleration/", "duration": 512, "id": "sLw902V40L0", "title": "Velocity and position from acceleration", "format": "mp4", "description": "", "slug": "antiderivative-acceleration", "kind": "Video", "video_id": "sLw902V40L0", "keywords": "", "youtube_id": "sLw902V40L0", "readable_id": "antiderivative-acceleration"}, "oLh_sIESQnY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oLh_sIESQnY.mp4/oLh_sIESQnY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oLh_sIESQnY.mp4/oLh_sIESQnY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oLh_sIESQnY.m3u8/oLh_sIESQnY.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/adding-decimals-example-1/", "duration": 160, "id": "oLh_sIESQnY", "title": "Adding decimals: example 1", "format": "mp4", "description": "Learn how to add 9.087 to 15.31. Line those decimals up first. Careful!", "slug": "adding-decimals-example-1", "kind": "Video", "video_id": "oLh_sIESQnY", "keywords": "", "youtube_id": "oLh_sIESQnY", "readable_id": "adding-decimals-example-1"}, "-wTI7EC-i30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-wTI7EC-i30.mp4/-wTI7EC-i30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-wTI7EC-i30.mp4/-wTI7EC-i30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-wTI7EC-i30.m3u8/-wTI7EC-i30.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/holbein/hans-holbein-the-younger-portrait-of-henry-viii-1540/", "duration": 251, "id": "-wTI7EC-i30", "title": "Holbein the Younger, Henry VIII", "format": "mp4", "description": "Hans Holbein the Younger, Portrait of Henry VIII, 1540, oil on panel (Palazzo Barberini, Rome). Please note: there have been questions raised as to whether this painting is by Holbein or his workshop, or perhaps a later copy; recent research suggests that it is an original Holbein.\n", "slug": "hans-holbein-the-younger-portrait-of-henry-viii-1540", "kind": "Video", "video_id": "-wTI7EC-i30", "keywords": "portraiture, Smarthistory, art history, Northern Renaissance, Hans Holbein, 16h century", "youtube_id": "-wTI7EC-i30", "readable_id": "hans-holbein-the-younger-portrait-of-henry-viii-1540"}, "67jn5Zv-myg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/67jn5Zv-myg.mp4/67jn5Zv-myg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/67jn5Zv-myg.mp4/67jn5Zv-myg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/67jn5Zv-myg.m3u8/67jn5Zv-myg.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/multiplying-in-scientific-notation/", "duration": 455, "id": "67jn5Zv-myg", "title": "Multiplying in scientific notation", "format": "mp4", "description": "", "slug": "multiplying-in-scientific-notation", "kind": "Video", "video_id": "67jn5Zv-myg", "keywords": "u11_l1_t4_we_int, Multiplying, in, Scientific, Notation", "youtube_id": "67jn5Zv-myg", "readable_id": "multiplying-in-scientific-notation"}, "3Md5KCCQX-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Md5KCCQX-0.mp4/3Md5KCCQX-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Md5KCCQX-0.mp4/3Md5KCCQX-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Md5KCCQX-0.m3u8/3Md5KCCQX-0.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/eigen_everything/linear-algebra-eigenvectors-and-eigenspaces-for-a-3x3-matrix/", "duration": 934, "id": "3Md5KCCQX-0", "title": "Eigenvectors and eigenspaces for a 3x3 matrix", "format": "mp4", "description": "Eigenvectors and eigenspaces for a 3x3 matrix", "slug": "linear-algebra-eigenvectors-and-eigenspaces-for-a-3x3-matrix", "kind": "Video", "video_id": "3Md5KCCQX-0", "keywords": "eigenvector, eigenspace", "youtube_id": "3Md5KCCQX-0", "readable_id": "linear-algebra-eigenvectors-and-eigenspaces-for-a-3x3-matrix"}, "R5UK0dEFSoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R5UK0dEFSoM.mp4/R5UK0dEFSoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R5UK0dEFSoM.mp4/R5UK0dEFSoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R5UK0dEFSoM.m3u8/R5UK0dEFSoM.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/bramante/saint-peter-s-basilica-vatican-city-begun-1506-completed-1626/", "duration": 268, "id": "R5UK0dEFSoM", "title": "Bramante, et.al., Saint Peter's Basilica", "format": "mp4", "description": "Numerous architects (see below), Saint Peter's Basilica (Basilica Sancti Petri in Latin)\nbegun 1506 completed 1626, Vatican City.\n\nArchitectural contributors include:\nDonato Bramante who's design won Julius II's competition\nAntonio da Sangallo, a student of Bramante, designed the Pauline Chapel\nFra Giocondo strengthened the foundation\nRaphael worked with Fra Giocondo, his redesigned building plan was not executed\nMichelangelo designed the dome, crossing, and exterior excluding the nave and facade\nGiacomo della Porta, designed the cupola\nCarlo Maderno, extended Michelangelo's plan adding a nave and grand facade\nGian Lorenzo Bernini added the piazza, the Cathedra Petri, and the Baldacchino\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "saint-peter-s-basilica-vatican-city-begun-1506-completed-1626", "kind": "Video", "video_id": "R5UK0dEFSoM", "keywords": "vatican, Smarthistory, Art History, Bramante, Michelangelo, Raphael, Renaissance", "youtube_id": "R5UK0dEFSoM", "readable_id": "saint-peter-s-basilica-vatican-city-begun-1506-completed-1626"}, "ECcD0rR9Gws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ECcD0rR9Gws.mp4/ECcD0rR9Gws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ECcD0rR9Gws.mp4/ECcD0rR9Gws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ECcD0rR9Gws.m3u8/ECcD0rR9Gws.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2010-may-6-2/", "duration": 79, "id": "ECcD0rR9Gws", "title": "2 Contradicting statement", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-2", "kind": "Video", "video_id": "ECcD0rR9Gws", "keywords": "", "youtube_id": "ECcD0rR9Gws", "readable_id": "sat-2010-may-6-2"}, "rh-bWfSCmyc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rh-bWfSCmyc.mp4/rh-bWfSCmyc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rh-bWfSCmyc.mp4/rh-bWfSCmyc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rh-bWfSCmyc.m3u8/rh-bWfSCmyc.m3u8"}, "duration": 103, "id": "rh-bWfSCmyc", "title": "An ancient Egyptian scribal palette in the Book of the Dead exhibition at the British Museum", "format": "mp4", "description": "A conservator at the British Museum working on an ancient Egyptian scribal palette in preparation for the exhibition Journey through the afterlife: ancient Egyptian Book of the Dead. \u00a9 Trustees of the British Museum", "path": "scribal-palette/", "slug": "scribal-palette", "kind": "Video", "video_id": "rh-bWfSCmyc", "keywords": "", "youtube_id": "rh-bWfSCmyc", "readable_id": "scribal-palette"}, "cMjJSUsaWvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cMjJSUsaWvc.mp4/cMjJSUsaWvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cMjJSUsaWvc.mp4/cMjJSUsaWvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cMjJSUsaWvc.m3u8/cMjJSUsaWvc.m3u8"}, "duration": 490, "id": "cMjJSUsaWvc", "title": "GMAT: Data sufficiency 41", "format": "mp4", "description": "154-155, pg. 290", "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-41/", "slug": "gmat-data-sufficiency-41", "kind": "Video", "video_id": "cMjJSUsaWvc", "keywords": "gmat, data, sufficiency, math", "youtube_id": "cMjJSUsaWvc", "readable_id": "gmat-data-sufficiency-41"}, "6FrPLJY0rqM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6FrPLJY0rqM.mp4/6FrPLJY0rqM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6FrPLJY0rqM.mp4/6FrPLJY0rqM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6FrPLJY0rqM.m3u8/6FrPLJY0rqM.m3u8"}, "duration": 782, "id": "6FrPLJY0rqM", "title": "Partial fraction expansion 2", "format": "mp4", "description": "A more complex problem", "path": "khan/math/algebra2/rational-expressions/partial-fraction-expan-alg/partial-fraction-expansion-2/", "slug": "partial-fraction-expansion-2", "kind": "Video", "video_id": "6FrPLJY0rqM", "keywords": "partial, fraction, expansion, decomposition, CC_39336_A-APR_6", "youtube_id": "6FrPLJY0rqM", "readable_id": "partial-fraction-expansion-2"}, "AvtS_IrlbYk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AvtS_IrlbYk.mp4/AvtS_IrlbYk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AvtS_IrlbYk.mp4/AvtS_IrlbYk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AvtS_IrlbYk.m3u8/AvtS_IrlbYk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-shock-2/what-is-shock/", "duration": 436, "id": "AvtS_IrlbYk", "title": "What is shock?", "format": "mp4", "description": "", "slug": "what-is-shock", "kind": "Video", "video_id": "AvtS_IrlbYk", "keywords": "", "youtube_id": "AvtS_IrlbYk", "readable_id": "what-is-shock"}, "gXa6JIv5WlQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gXa6JIv5WlQ.mp4/gXa6JIv5WlQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gXa6JIv5WlQ.mp4/gXa6JIv5WlQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gXa6JIv5WlQ.m3u8/gXa6JIv5WlQ.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/proteins/conformational-stability-protein-folding-and-denaturation/", "duration": 464, "id": "gXa6JIv5WlQ", "title": "Conformational stability: Protein folding and denaturation", "format": "mp4", "description": "", "slug": "conformational-stability-protein-folding-and-denaturation", "kind": "Video", "video_id": "gXa6JIv5WlQ", "keywords": "", "youtube_id": "gXa6JIv5WlQ", "readable_id": "conformational-stability-protein-folding-and-denaturation"}, "6uNYe9UB3K4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6uNYe9UB3K4.mp4/6uNYe9UB3K4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6uNYe9UB3K4.mp4/6uNYe9UB3K4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6uNYe9UB3K4.m3u8/6uNYe9UB3K4.m3u8"}, "duration": 463, "id": "6uNYe9UB3K4", "title": "Mussolini aligns with Hitler", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/mussolini-fascism/mussolini-aligns-with-hitler/", "slug": "mussolini-aligns-with-hitler", "kind": "Video", "video_id": "6uNYe9UB3K4", "keywords": "", "youtube_id": "6uNYe9UB3K4", "readable_id": "mussolini-aligns-with-hitler"}, "R-6CAr_zEEk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R-6CAr_zEEk.mp4/R-6CAr_zEEk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R-6CAr_zEEk.mp4/R-6CAr_zEEk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R-6CAr_zEEk.m3u8/R-6CAr_zEEk.m3u8"}, "duration": 457, "id": "R-6CAr_zEEk", "title": "Similarity example problems", "format": "mp4", "description": "Two example problems involving similarity", "path": "khan/math/geometry/similarity/triangle_similarlity/similarity-example-problems/", "slug": "similarity-example-problems", "kind": "Video", "video_id": "R-6CAr_zEEk", "keywords": "Similarity, Example, Problems", "youtube_id": "R-6CAr_zEEk", "readable_id": "similarity-example-problems"}, "OuaBg3Hjqoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OuaBg3Hjqoc.mp4/OuaBg3Hjqoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OuaBg3Hjqoc.mp4/OuaBg3Hjqoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OuaBg3Hjqoc.m3u8/OuaBg3Hjqoc.m3u8"}, "duration": 227, "id": "OuaBg3Hjqoc", "title": "Finding reasonable unit of measurement example", "format": "mp4", "description": "The truth is that you can use almost any unit of measurement as long as you're willing for that number to be really big or really small. The key is to find the most \"reasonable\" unit. Can you help?", "path": "unit-sense-example-for-exercise/", "slug": "unit-sense-example-for-exercise", "kind": "Video", "video_id": "OuaBg3Hjqoc", "keywords": "", "youtube_id": "OuaBg3Hjqoc", "readable_id": "unit-sense-example-for-exercise"}, "sQk6t-9mQjE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sQk6t-9mQjE.mp4/sQk6t-9mQjE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sQk6t-9mQjE.mp4/sQk6t-9mQjE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sQk6t-9mQjE.m3u8/sQk6t-9mQjE.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/aristotle-on-the-purpose-of-life/", "duration": 549, "id": "sQk6t-9mQjE", "title": "Ancient: Aristotle on the purpose of life", "format": "mp4", "description": "In this video, Monte explores an approach to the question \u201cWhat is the purpose of life?\u201d developed by the Greek Philosopher Aristotle (384-322 BC). Aristotle reasoned that just as artificial things (such as tools and workers) have characteristic capabilities with respect to which they are judged to be good or do well, so each kind of natural thing (including plants and humans) has characteristic capabilities with respect to which can be judged, objectively, to be good or do well. For plants and animals these mostly have to do with nutrition and reproduction, and in the case of animals, pleasure and pain. For humans, these vegetative and animal capabilities are necessary but not sufficient for our flourishing. Since reason and the use of language are the unique and highest capabilities of humans, the cultivation and exercise of intellectual friendships and partnerships, moral and political virtue, scientific knowledge and (above all) theoretical philosophy, was argued by Aristotle to be the ultimate purpose of human life.\n\nSpeaker: Dr. Monte Ransome Johnson, \u00a0Associate Professor, University of California San Diego", "slug": "aristotle-on-the-purpose-of-life", "kind": "Video", "video_id": "sQk6t-9mQjE", "keywords": "", "youtube_id": "sQk6t-9mQjE", "readable_id": "aristotle-on-the-purpose-of-life"}, "p13IEJ_V_U0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p13IEJ_V_U0.mp4/p13IEJ_V_U0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p13IEJ_V_U0.mp4/p13IEJ_V_U0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p13IEJ_V_U0.m3u8/p13IEJ_V_U0.m3u8"}, "duration": 650, "id": "p13IEJ_V_U0", "title": "The Crusades - Pilgrimage or Holy War?", "format": "mp4", "description": "In which John Green teaches you about the Crusades embarked upon by European Christians in the 12th and 13th centuries. Our traditional perception of the Crusades as European Colonization thinly veiled in religion isn't quite right. John covers the First through the Fourth Crusades, telling you which were successful, which were well-intentioned yet ultimately destructive, and which were just plain crazy. Before you ask, no, he doesn't cover the Children's Crusade, in which children were provoked to gather for a Crusade, and then promptly sold into slavery by the organizers of said Crusade. While this story is charming, it turns out to be complete and utter hooey.\u00a0", "path": "khan/humanities/history/crashcourse-worldhistory/whats-god-got-to-do-with-it-2/crash-course-world-history-15/", "slug": "crash-course-world-history-15", "kind": "Video", "video_id": "p13IEJ_V_U0", "keywords": "crash course", "youtube_id": "p13IEJ_V_U0", "readable_id": "crash-course-world-history-15"}, "TvP1ydWhDjk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TvP1ydWhDjk.mp4/TvP1ydWhDjk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TvP1ydWhDjk.mp4/TvP1ydWhDjk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TvP1ydWhDjk.m3u8/TvP1ydWhDjk.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-4-16/", "duration": 91, "id": "TvP1ydWhDjk", "title": "16 Finding function constant", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-4-16", "kind": "Video", "video_id": "TvP1ydWhDjk", "keywords": "", "youtube_id": "TvP1ydWhDjk", "readable_id": "sat-2010-may-4-16"}, "lFQ4kMcODzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lFQ4kMcODzU.mp4/lFQ4kMcODzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lFQ4kMcODzU.mp4/lFQ4kMcODzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lFQ4kMcODzU.m3u8/lFQ4kMcODzU.m3u8"}, "duration": 325, "id": "lFQ4kMcODzU", "title": "Testing critical points for local extrema", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/critical_points_graphing/testing-critical-points-for-local-extrema/", "slug": "testing-critical-points-for-local-extrema", "kind": "Video", "video_id": "lFQ4kMcODzU", "keywords": "", "youtube_id": "lFQ4kMcODzU", "readable_id": "testing-critical-points-for-local-extrema"}, "OVMceVL_CEQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OVMceVL_CEQ.mp4/OVMceVL_CEQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OVMceVL_CEQ.mp4/OVMceVL_CEQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OVMceVL_CEQ.m3u8/OVMceVL_CEQ.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/fractions-unlike-denom-pre-alg/adding-fractions-with-unlike-denominators/", "duration": 246, "id": "OVMceVL_CEQ", "title": "Adding fractions: different denominators", "format": "mp4", "description": "To solve this problem, we need to find the least common multiple to get at the common denominator. Can you help? We bet you can!", "slug": "adding-fractions-with-unlike-denominators", "kind": "Video", "video_id": "OVMceVL_CEQ", "keywords": "U02_L3_T1_we2, Adding, Fractions, with, Unlike, Denominators, CC_5_NF_1, CC_5_NF_2", "youtube_id": "OVMceVL_CEQ", "readable_id": "adding-fractions-with-unlike-denominators"}, "SVN1IsRQ88M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SVN1IsRQ88M.mp4/SVN1IsRQ88M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SVN1IsRQ88M.mp4/SVN1IsRQ88M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SVN1IsRQ88M.m3u8/SVN1IsRQ88M.m3u8"}, "path": "khan/college-admissions/paying-for-college/work-study/working-during-college/", "duration": 67, "id": "SVN1IsRQ88M", "title": "Working during college", "format": "mp4", "description": "", "slug": "working-during-college", "kind": "Video", "video_id": "SVN1IsRQ88M", "keywords": "", "youtube_id": "SVN1IsRQ88M", "readable_id": "working-during-college"}, "Zn2K8UIT8r4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zn2K8UIT8r4.mp4/Zn2K8UIT8r4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zn2K8UIT8r4.mp4/Zn2K8UIT8r4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zn2K8UIT8r4.m3u8/Zn2K8UIT8r4.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/null_column_space/proof-any-subspace-basis-has-same-number-of-elements/", "duration": 1295, "id": "Zn2K8UIT8r4", "title": "Proof: Any subspace basis has same number of elements", "format": "mp4", "description": "Proof: Any subspace basis has same number of elements", "slug": "proof-any-subspace-basis-has-same-number-of-elements", "kind": "Video", "video_id": "Zn2K8UIT8r4", "keywords": "basis, subspace, proof, dimension", "youtube_id": "Zn2K8UIT8r4", "readable_id": "proof-any-subspace-basis-has-same-number-of-elements"}, "AGqAggmwyMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AGqAggmwyMU.mp4/AGqAggmwyMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AGqAggmwyMU.mp4/AGqAggmwyMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AGqAggmwyMU.m3u8/AGqAggmwyMU.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/restoring-rothko/", "duration": 1047, "id": "AGqAggmwyMU", "title": "Restoring Rothko", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWhat happens when a priceless work of art is vandalised? Filmed over 18 months, this video tells the story behind the restoration of Mark Rothko\u2019s 1958 painting Black on Maroon after it was unexpectedly graffitied in October 2012. Since being damaged, the painting has undergone over a year of intensive restoration work by the Conservation team and colleagues across the gallery. Nine months of research on how to remove ink from the delicate and aged layers of paint, using special solvents and cleaning methods, were followed by nine months of painstaking work on the painting itself.\n\nWould the painting ever look the same again? Is it possible to restore a painting without leaving a trace? Find out on this journey through art, science, and conservation.\n\nLearn more about Mark Rothko and his work in the Tate Collection here.\n", "slug": "restoring-rothko", "kind": "Video", "video_id": "AGqAggmwyMU", "keywords": "Tate", "youtube_id": "AGqAggmwyMU", "readable_id": "restoring-rothko"}, "TMmxKZaCqe0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TMmxKZaCqe0.mp4/TMmxKZaCqe0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TMmxKZaCqe0.mp4/TMmxKZaCqe0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TMmxKZaCqe0.m3u8/TMmxKZaCqe0.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/introduction-to-logarithm-properties-part-2/", "duration": 604, "id": "TMmxKZaCqe0", "title": "Introduction to logarithm properties (part 2)", "format": "mp4", "description": "Second part of the introduction to logarithm properties.", "slug": "introduction-to-logarithm-properties-part-2", "kind": "Video", "video_id": "TMmxKZaCqe0", "keywords": "logarithm, properties, math, CC_39336_F-BF_5", "youtube_id": "TMmxKZaCqe0", "readable_id": "introduction-to-logarithm-properties-part-2"}, "8dQdfbE8kFU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8dQdfbE8kFU.mp4/8dQdfbE8kFU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8dQdfbE8kFU.mp4/8dQdfbE8kFU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8dQdfbE8kFU.m3u8/8dQdfbE8kFU.m3u8"}, "duration": 905, "id": "8dQdfbE8kFU", "title": "ADH secretion", "format": "mp4", "description": "Learn the key triggers for ADH secretion. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/rn-renal-system/rn-renal-regulation-of-blood/adh-secretion/", "slug": "adh-secretion", "kind": "Video", "video_id": "8dQdfbE8kFU", "keywords": "", "youtube_id": "8dQdfbE8kFU", "readable_id": "adh-secretion"}, "ryJvNEHcuDg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ryJvNEHcuDg.mp4/ryJvNEHcuDg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ryJvNEHcuDg.mp4/ryJvNEHcuDg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ryJvNEHcuDg.m3u8/ryJvNEHcuDg.m3u8"}, "duration": 672, "id": "ryJvNEHcuDg", "title": "Newman projections 2", "format": "mp4", "description": "Newman Projections 2", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations/newman-projections-2/", "slug": "newman-projections-2", "kind": "Video", "video_id": "ryJvNEHcuDg", "keywords": "Newman, Projections", "youtube_id": "ryJvNEHcuDg", "readable_id": "newman-projections-2"}, "l_e1jq_I3sY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l_e1jq_I3sY.mp4/l_e1jq_I3sY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l_e1jq_I3sY.mp4/l_e1jq_I3sY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l_e1jq_I3sY.m3u8/l_e1jq_I3sY.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/tissue-specific-metabolism-and-the-metabolic-states/", "duration": 749, "id": "l_e1jq_I3sY", "title": "Tissue specific metabolism and the metabolic states", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "tissue-specific-metabolism-and-the-metabolic-states", "kind": "Video", "video_id": "l_e1jq_I3sY", "keywords": "", "youtube_id": "l_e1jq_I3sY", "readable_id": "tissue-specific-metabolism-and-the-metabolic-states"}, "pGaDcOMdw48": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pGaDcOMdw48.mp4/pGaDcOMdw48.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pGaDcOMdw48.mp4/pGaDcOMdw48.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pGaDcOMdw48.m3u8/pGaDcOMdw48.m3u8"}, "duration": 566, "id": "pGaDcOMdw48", "title": "Proof of the law of cosines", "format": "mp4", "description": "Proof of the law of cosines to solve for a side of a triangle when 2 sides and an angle are known.", "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law-of-cosines/", "slug": "law-of-cosines", "kind": "Video", "video_id": "pGaDcOMdw48", "keywords": "trigonometry, math, law, of, cosines", "youtube_id": "pGaDcOMdw48", "readable_id": "law-of-cosines"}, "4PCktDZJH8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4PCktDZJH8E.mp4/4PCktDZJH8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4PCktDZJH8E.mp4/4PCktDZJH8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4PCktDZJH8E.m3u8/4PCktDZJH8E.m3u8"}, "duration": 832, "id": "4PCktDZJH8E", "title": "Linear transformations", "format": "mp4", "description": "Introduction to linear transformations", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/linear-transformations/", "slug": "linear-transformations", "kind": "Video", "video_id": "4PCktDZJH8E", "keywords": "linear, transformation, algebra, matrix", "youtube_id": "4PCktDZJH8E", "readable_id": "linear-transformations"}, "LXFQG4Ugreo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LXFQG4Ugreo.mp4/LXFQG4Ugreo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LXFQG4Ugreo.mp4/LXFQG4Ugreo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LXFQG4Ugreo.m3u8/LXFQG4Ugreo.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/how-white-blood-cells-move-around/", "duration": 528, "id": "LXFQG4Ugreo", "title": "How white blood cells move around", "format": "mp4", "description": "", "slug": "how-white-blood-cells-move-around", "kind": "Video", "video_id": "LXFQG4Ugreo", "keywords": "", "youtube_id": "LXFQG4Ugreo", "readable_id": "how-white-blood-cells-move-around"}, "t1-VVUmP0rY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t1-VVUmP0rY.mp4/t1-VVUmP0rY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t1-VVUmP0rY.mp4/t1-VVUmP0rY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t1-VVUmP0rY.m3u8/t1-VVUmP0rY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-laryngeal-conditions/vocal-cord-growths/", "duration": 311, "id": "t1-VVUmP0rY", "title": "Vocal cord growths", "format": "mp4", "description": "", "slug": "vocal-cord-growths", "kind": "Video", "video_id": "t1-VVUmP0rY", "keywords": "", "youtube_id": "t1-VVUmP0rY", "readable_id": "vocal-cord-growths"}, "unNvQXIU1q8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/unNvQXIU1q8.mp4/unNvQXIU1q8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/unNvQXIU1q8.mp4/unNvQXIU1q8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/unNvQXIU1q8.m3u8/unNvQXIU1q8.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/demographic-structure-of-society-immigration/", "duration": 185, "id": "unNvQXIU1q8", "title": "Demographic structure of society - immigration", "format": "mp4", "description": "", "slug": "demographic-structure-of-society-immigration", "kind": "Video", "video_id": "unNvQXIU1q8", "keywords": "", "youtube_id": "unNvQXIU1q8", "readable_id": "demographic-structure-of-society-immigration"}, "croM4PvOdbM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/croM4PvOdbM.mp4/croM4PvOdbM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/croM4PvOdbM.mp4/croM4PvOdbM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/croM4PvOdbM.m3u8/croM4PvOdbM.m3u8"}, "path": "khan/humanities/art-1010/early-abstraction/expressionism1/egon-schiele-seated-male-nude-self-portrait-1910/", "duration": 180, "id": "croM4PvOdbM", "title": "Schiele, Seated Male Nude (Self-Portrait)", "format": "mp4", "description": "Egon Schiele, Seated Male Nude (Self-Portrait), 1910, oil and gouache on canvas, 152.5 \u00d7 150 cm (Leopold Museum, Vienna)", "slug": "egon-schiele-seated-male-nude-self-portrait-1910", "kind": "Video", "video_id": "croM4PvOdbM", "keywords": "Schiele, Seated, Male Nude, Nude, GAP, Egon Schiele, Seated Male Nude, Self-Portrait, 1910, oil, gouache, Leopold Museum, Vienna, Expressionism, modern, art, painting, abstraction, Smarthistory, Khan Academy, Google Art Project, art history, OER", "youtube_id": "croM4PvOdbM", "readable_id": "egon-schiele-seated-male-nude-self-portrait-1910"}, "xvyQP-oezXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xvyQP-oezXc.mp4/xvyQP-oezXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xvyQP-oezXc.mp4/xvyQP-oezXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xvyQP-oezXc.m3u8/xvyQP-oezXc.m3u8"}, "duration": 624, "id": "xvyQP-oezXc", "title": "GMAT: Math 43", "format": "mp4", "description": "207-209, pgs. 180-181", "path": "khan/test-prep/gmat/problem-solving/gmat-math-43/", "slug": "gmat-math-43", "kind": "Video", "video_id": "xvyQP-oezXc", "keywords": "gmat, math, problem, solving", "youtube_id": "xvyQP-oezXc", "readable_id": "gmat-math-43"}, "9tEnXUuHkp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9tEnXUuHkp4.mp4/9tEnXUuHkp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9tEnXUuHkp4.mp4/9tEnXUuHkp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9tEnXUuHkp4.m3u8/9tEnXUuHkp4.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes-cycloalkanes-bicyclic/alkane-and-cycloalkane-nomenclature-ii/", "duration": 760, "id": "9tEnXUuHkp4", "title": "Alkane and cycloalkane nomenclature ii", "format": "mp4", "description": "Correction: 2,2,6,6,7-pentamethyloctane is the correct name. I put a dash instead of a comma between the 6 and the 7 on the video.", "slug": "alkane-and-cycloalkane-nomenclature-ii", "kind": "Video", "video_id": "9tEnXUuHkp4", "keywords": "", "youtube_id": "9tEnXUuHkp4", "readable_id": "alkane-and-cycloalkane-nomenclature-ii"}, "E-HOz8T6tAo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E-HOz8T6tAo.mp4/E-HOz8T6tAo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E-HOz8T6tAo.mp4/E-HOz8T6tAo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E-HOz8T6tAo.m3u8/E-HOz8T6tAo.m3u8"}, "duration": 709, "id": "E-HOz8T6tAo", "title": "Banking 1", "format": "mp4", "description": "Introduction to how banks make money and the value they (potentially) add to society.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-1/", "slug": "banking-1", "kind": "Video", "video_id": "E-HOz8T6tAo", "keywords": "banking, money, credit, investment, savings", "youtube_id": "E-HOz8T6tAo", "readable_id": "banking-1"}, "pzSyOTkAsY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pzSyOTkAsY4.mp4/pzSyOTkAsY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pzSyOTkAsY4.mp4/pzSyOTkAsY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pzSyOTkAsY4.m3u8/pzSyOTkAsY4.m3u8"}, "path": "khan/math/algebra2/conics_precalc/hyperbolas-precalc/conic-sections-intro-to-hyperbolas/", "duration": 814, "id": "pzSyOTkAsY4", "title": "Conic sections: Intro to hyperbolas", "format": "mp4", "description": "Introduction to the hyperbola", "slug": "conic-sections-intro-to-hyperbolas", "kind": "Video", "video_id": "pzSyOTkAsY4", "keywords": "hyperbola, conic, section, algebra", "youtube_id": "pzSyOTkAsY4", "readable_id": "conic-sections-intro-to-hyperbolas"}, "YFqeMzfcyg4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YFqeMzfcyg4.mp4/YFqeMzfcyg4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YFqeMzfcyg4.mp4/YFqeMzfcyg4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YFqeMzfcyg4.m3u8/YFqeMzfcyg4.m3u8"}, "duration": 221, "id": "YFqeMzfcyg4", "title": "Linear equation using segment", "format": "mp4", "description": "Well use some algebraic skills to add segments in this example.", "path": "segment-addition/", "slug": "segment-addition", "kind": "Video", "video_id": "YFqeMzfcyg4", "keywords": "", "youtube_id": "YFqeMzfcyg4", "readable_id": "segment-addition"}, "DAvEI0rLrAw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DAvEI0rLrAw.mp4/DAvEI0rLrAw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DAvEI0rLrAw.mp4/DAvEI0rLrAw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DAvEI0rLrAw.m3u8/DAvEI0rLrAw.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/digital_camera/what-is-inside-a-digital-camera-2-of-2/", "duration": 183, "id": "DAvEI0rLrAw", "title": "What is inside a digital camera? (2 of 2)", "format": "mp4", "description": "In this video we compare different revisions of the same digital camera.", "slug": "what-is-inside-a-digital-camera-2-of-2", "kind": "Video", "video_id": "DAvEI0rLrAw", "keywords": "flash memory, CCD, charged coupled device, lens, cost reduction, revision number, plastic ", "youtube_id": "DAvEI0rLrAw", "readable_id": "what-is-inside-a-digital-camera-2-of-2"}, "C3DmiEsvs6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C3DmiEsvs6U.mp4/C3DmiEsvs6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C3DmiEsvs6U.mp4/C3DmiEsvs6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C3DmiEsvs6U.m3u8/C3DmiEsvs6U.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/durer/printmaking-woodcuts-and-engravings/", "duration": 499, "id": "C3DmiEsvs6U", "title": "D\u00fcrer's woodcuts and engravings", "format": "mp4", "description": "Speakers: David Drogin and Beth Harris", "slug": "printmaking-woodcuts-and-engravings", "kind": "Video", "video_id": "C3DmiEsvs6U", "keywords": "Durer, Woodcuts, engravings, smarthistory, art, art history, printmaking, prints", "youtube_id": "C3DmiEsvs6U", "readable_id": "printmaking-woodcuts-and-engravings"}, "KmmFBC0gNSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KmmFBC0gNSg.mp4/KmmFBC0gNSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KmmFBC0gNSg.mp4/KmmFBC0gNSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KmmFBC0gNSg.m3u8/KmmFBC0gNSg.m3u8"}, "path": "khan/science/discoveries-projects/robots/bit-zee/bit-zee-long-version/", "duration": 142, "id": "KmmFBC0gNSg", "title": "Bit-zeeeeeeeeeee (long version)", "format": "mp4", "description": "Bit-zee goes to school", "slug": "bit-zee-long-version", "kind": "Video", "video_id": "KmmFBC0gNSg", "keywords": "Bit-zee goes to school", "youtube_id": "KmmFBC0gNSg", "readable_id": "bit-zee-long-version"}, "K2bGjTaNsnM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K2bGjTaNsnM.mp4/K2bGjTaNsnM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K2bGjTaNsnM.mp4/K2bGjTaNsnM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K2bGjTaNsnM.m3u8/K2bGjTaNsnM.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/protein-modifications/", "duration": 943, "id": "K2bGjTaNsnM", "title": "Protein modifications", "format": "mp4", "description": "", "slug": "protein-modifications", "kind": "Video", "video_id": "K2bGjTaNsnM", "keywords": "", "youtube_id": "K2bGjTaNsnM", "readable_id": "protein-modifications"}, "K4pocYXOmTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K4pocYXOmTQ.mp4/K4pocYXOmTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K4pocYXOmTQ.mp4/K4pocYXOmTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K4pocYXOmTQ.m3u8/K4pocYXOmTQ.m3u8"}, "duration": 1019, "id": "K4pocYXOmTQ", "title": "Alien abduction brain teaser", "format": "mp4", "description": "Saving Earth from becoming a mushroom farm.", "path": "khan/math/recreational-math/puzzles/brain-teasers/alien-abduction-brain-teaser/", "slug": "alien-abduction-brain-teaser", "kind": "Video", "video_id": "K4pocYXOmTQ", "keywords": "logic, brain, teaser, alien, math", "youtube_id": "K4pocYXOmTQ", "readable_id": "alien-abduction-brain-teaser"}, "O1-9f1g0OsI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/O1-9f1g0OsI.mp4/O1-9f1g0OsI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/O1-9f1g0OsI.mp4/O1-9f1g0OsI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/O1-9f1g0OsI.m3u8/O1-9f1g0OsI.m3u8"}, "duration": 212, "id": "O1-9f1g0OsI", "title": "Defined and undefined matrix operations", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/matrix_multiplication/defined-and-undefined-matrix-operations/", "slug": "defined-and-undefined-matrix-operations", "kind": "Video", "video_id": "O1-9f1g0OsI", "keywords": "", "youtube_id": "O1-9f1g0OsI", "readable_id": "defined-and-undefined-matrix-operations"}, "NCwwfvPEVn8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NCwwfvPEVn8.mp4/NCwwfvPEVn8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NCwwfvPEVn8.mp4/NCwwfvPEVn8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NCwwfvPEVn8.m3u8/NCwwfvPEVn8.m3u8"}, "duration": 575, "id": "NCwwfvPEVn8", "title": "Vector representation of a surface integral", "format": "mp4", "description": "Different ways of representing a flux integral", "path": "khan/math/multivariable-calculus/surface-integrals/3d_flux/vector-representation-of-a-surface-integral/", "slug": "vector-representation-of-a-surface-integral", "kind": "Video", "video_id": "NCwwfvPEVn8", "keywords": "surface, integral, flux", "youtube_id": "NCwwfvPEVn8", "readable_id": "vector-representation-of-a-surface-integral"}, "85zGYB-34jQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/85zGYB-34jQ.mp4/85zGYB-34jQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/85zGYB-34jQ.mp4/85zGYB-34jQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/85zGYB-34jQ.m3u8/85zGYB-34jQ.m3u8"}, "duration": 629, "id": "85zGYB-34jQ", "title": "Double integral 1", "format": "mp4", "description": "Introduction to the double integral", "path": "khan/math/multivariable-calculus/double_triple_integrals/double_integrals/double-integral-1/", "slug": "double-integral-1", "kind": "Video", "video_id": "85zGYB-34jQ", "keywords": "double, integral", "youtube_id": "85zGYB-34jQ", "readable_id": "double-integral-1"}, "VW6UrPKPInA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VW6UrPKPInA.mp4/VW6UrPKPInA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VW6UrPKPInA.mp4/VW6UrPKPInA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VW6UrPKPInA.m3u8/VW6UrPKPInA.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/ordering-negative-numbers/", "duration": 167, "id": "VW6UrPKPInA", "title": "Ordering negative numbers", "format": "mp4", "description": "Is -40 bigger than -10? When ordering negative numbers from least to greatest, careful that you don't get hung up on the \"amount\" of the number. Think about what that negative sign really means!", "slug": "ordering-negative-numbers", "kind": "Video", "video_id": "VW6UrPKPInA", "keywords": "negative, integer", "youtube_id": "VW6UrPKPInA", "readable_id": "ordering-negative-numbers"}, "h_fBMnB1i-0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h_fBMnB1i-0.mp4/h_fBMnB1i-0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h_fBMnB1i-0.mp4/h_fBMnB1i-0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h_fBMnB1i-0.m3u8/h_fBMnB1i-0.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/regrouping-whole-numbers/regrouping-whole-numbers-example-2/", "duration": 79, "id": "h_fBMnB1i-0", "title": "Regrouping whole numbers example 2", "format": "mp4", "description": "Let's work this example together. It will make clear the whole idea of regrouping whole numbers.", "slug": "regrouping-whole-numbers-example-2", "kind": "Video", "video_id": "h_fBMnB1i-0", "keywords": "", "youtube_id": "h_fBMnB1i-0", "readable_id": "regrouping-whole-numbers-example-2"}, "BE0nxWUAg-A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BE0nxWUAg-A.mp4/BE0nxWUAg-A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BE0nxWUAg-A.mp4/BE0nxWUAg-A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BE0nxWUAg-A.m3u8/BE0nxWUAg-A.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/tricuspid-atresia/", "duration": 289, "id": "BE0nxWUAg-A", "title": "Tricuspid atresia", "format": "mp4", "description": "", "slug": "tricuspid-atresia", "kind": "Video", "video_id": "BE0nxWUAg-A", "keywords": "", "youtube_id": "BE0nxWUAg-A", "readable_id": "tricuspid-atresia"}, "S0Fd2Tg2v7M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S0Fd2Tg2v7M.mp4/S0Fd2Tg2v7M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S0Fd2Tg2v7M.mp4/S0Fd2Tg2v7M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S0Fd2Tg2v7M.m3u8/S0Fd2Tg2v7M.m3u8"}, "duration": 924, "id": "S0Fd2Tg2v7M", "title": "Foci of a hyperbola", "format": "mp4", "description": "Introduction to the foci (focuses) of a hyperbola", "path": "khan/math/algebra2/conics_precalc/hyperbolas-precalc/foci-of-a-hyperbola/", "slug": "foci-of-a-hyperbola", "kind": "Video", "video_id": "S0Fd2Tg2v7M", "keywords": "hyperbola, foci, focuses, conic", "youtube_id": "S0Fd2Tg2v7M", "readable_id": "foci-of-a-hyperbola"}, "IMLVbEzM0DI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IMLVbEzM0DI.mp4/IMLVbEzM0DI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IMLVbEzM0DI.mp4/IMLVbEzM0DI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IMLVbEzM0DI.m3u8/IMLVbEzM0DI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/treating-type-ii-diabetes-pharmacology/", "duration": 557, "id": "IMLVbEzM0DI", "title": "Treating type II diabetes - Pharmacology", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "treating-type-ii-diabetes-pharmacology", "kind": "Video", "video_id": "IMLVbEzM0DI", "keywords": "", "youtube_id": "IMLVbEzM0DI", "readable_id": "treating-type-ii-diabetes-pharmacology"}, "G7QiIkYfeME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G7QiIkYfeME.mp4/G7QiIkYfeME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G7QiIkYfeME.mp4/G7QiIkYfeME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G7QiIkYfeME.m3u8/G7QiIkYfeME.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimal-place-value-pre-alg/writing-out-a-decimal-in-words/", "duration": 202, "id": "G7QiIkYfeME", "title": "Decimals: writing it out in words 2", "format": "mp4", "description": "Here's another example involving writing out a decimal in words. Great practice.", "slug": "writing-out-a-decimal-in-words", "kind": "Video", "video_id": "G7QiIkYfeME", "keywords": "", "youtube_id": "G7QiIkYfeME", "readable_id": "writing-out-a-decimal-in-words"}, "sG1ZAdYi13A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sG1ZAdYi13A.mp4/sG1ZAdYi13A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sG1ZAdYi13A.mp4/sG1ZAdYi13A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sG1ZAdYi13A.m3u8/sG1ZAdYi13A.m3u8"}, "duration": 597, "id": "sG1ZAdYi13A", "title": "Gibbs free energy example", "format": "mp4", "description": "Determining if a reaction is spontaneous by calculating the change in Gibbs Free Energy.", "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/gibbs-free-energy-example/", "slug": "gibbs-free-energy-example", "kind": "Video", "video_id": "sG1ZAdYi13A", "keywords": "gibbs, free, energy, chemistry, thermodynamics", "youtube_id": "sG1ZAdYi13A", "readable_id": "gibbs-free-energy-example"}, "LR0h_oMCsZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LR0h_oMCsZ4.mp4/LR0h_oMCsZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LR0h_oMCsZ4.mp4/LR0h_oMCsZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LR0h_oMCsZ4.m3u8/LR0h_oMCsZ4.m3u8"}, "duration": 256, "id": "LR0h_oMCsZ4", "title": "Katie Paterson: A map of every dead star in the Universe", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nArtist Katie Paterson has created a map detailing the location of the 27,000 dead stars that have ever been observed and recorded in human history\u2013and her map continues to grow with each dying star. In order to create her map, Paterson consulted with physicists, librarians, and archivists to compile a record of the stars that have been recorded and that have since faded away or exploded. In her project the boundary is fuzzy between life and death, between the end of one star and the beginning of another, and it invites us to how we remember and record the past.\nBut with stars dying every day, could a project like this ever be completed? If Paterson were to make a map of every dead star then it would be the size of the Earth itself. There\u2019s also the impossibility of the task as it is ultimately infinite\u2014why would an artist begin an artwork that is impossible to finish and with no foreseeable end?\n", "path": "katie-paterson/", "slug": "katie-paterson", "kind": "Video", "video_id": "LR0h_oMCsZ4", "keywords": "Tate", "youtube_id": "LR0h_oMCsZ4", "readable_id": "katie-paterson"}, "4Bc5-HRop5Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Bc5-HRop5Y.mp4/4Bc5-HRop5Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Bc5-HRop5Y.mp4/4Bc5-HRop5Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Bc5-HRop5Y.m3u8/4Bc5-HRop5Y.m3u8"}, "path": "khan/math/algebra/quadratics/features-of-quadratic-functions/rewriting-a-quadratic-function-to-find-roots-and-vertex/", "duration": 509, "id": "4Bc5-HRop5Y", "title": "Rewriting a quadratic function to find roots and vertex", "format": "mp4", "description": "", "slug": "rewriting-a-quadratic-function-to-find-roots-and-vertex", "kind": "Video", "video_id": "4Bc5-HRop5Y", "keywords": "", "youtube_id": "4Bc5-HRop5Y", "readable_id": "rewriting-a-quadratic-function-to-find-roots-and-vertex"}, "2IWhknVzeJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2IWhknVzeJM.mp4/2IWhknVzeJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2IWhknVzeJM.mp4/2IWhknVzeJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2IWhknVzeJM.m3u8/2IWhknVzeJM.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function_expressions/modeling-with-combined-functions/", "duration": 188, "id": "2IWhknVzeJM", "title": "Modeling with combined functions", "format": "mp4", "description": "Find the value of a function for a given x based on a graph, and perform operations with that value.", "slug": "modeling-with-combined-functions", "kind": "Video", "video_id": "2IWhknVzeJM", "keywords": "", "youtube_id": "2IWhknVzeJM", "readable_id": "modeling-with-combined-functions"}, "tB4lr5Qh3DI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tB4lr5Qh3DI.mp4/tB4lr5Qh3DI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tB4lr5Qh3DI.mp4/tB4lr5Qh3DI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tB4lr5Qh3DI.m3u8/tB4lr5Qh3DI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/equilibrium-mcat/changes-in-free-energy-and-the-reaction-quotient/", "duration": 947, "id": "tB4lr5Qh3DI", "title": "Changes in free energy and the reaction quotient", "format": "mp4", "description": "", "slug": "changes-in-free-energy-and-the-reaction-quotient", "kind": "Video", "video_id": "tB4lr5Qh3DI", "keywords": "", "youtube_id": "tB4lr5Qh3DI", "readable_id": "changes-in-free-energy-and-the-reaction-quotient"}, "i76VT8Ctkb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i76VT8Ctkb8.mp4/i76VT8Ctkb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i76VT8Ctkb8.mp4/i76VT8Ctkb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i76VT8Ctkb8.m3u8/i76VT8Ctkb8.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/bali/balinese-dance-costumes/", "duration": 75, "id": "i76VT8Ctkb8", "title": "Symbolism in Balinese dance costumes", "format": "mp4", "description": "This video features Balinese dancer, Kompiang Metri Davies, discussing the symbolism of Balinese dance costumes.", "slug": "balinese-dance-costumes", "kind": "Video", "video_id": "i76VT8Ctkb8", "keywords": "", "youtube_id": "i76VT8Ctkb8", "readable_id": "balinese-dance-costumes"}, "0QS4VHPV4JA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0QS4VHPV4JA.mp4/0QS4VHPV4JA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0QS4VHPV4JA.mp4/0QS4VHPV4JA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0QS4VHPV4JA.m3u8/0QS4VHPV4JA.m3u8"}, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/simulation-providing-evidence-that-n-1-gives-us-unbiased-estimate/", "duration": 270, "id": "0QS4VHPV4JA", "title": "Simulation providing evidence that (n-1) gives us unbiased estimate", "format": "mp4", "description": "Simulation by KA user tetef showing that dividing by (n-1) gives us an unbiased estimate of population variance. Simulation at: http://www.khanacademy.org/cs/will-it-converge-towards-1/1167579097", "slug": "simulation-providing-evidence-that-n-1-gives-us-unbiased-estimate", "kind": "Video", "video_id": "0QS4VHPV4JA", "keywords": "sample variance, biased, unbiased", "youtube_id": "0QS4VHPV4JA", "readable_id": "simulation-providing-evidence-that-n-1-gives-us-unbiased-estimate"}, "_cooC3yG_p0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_cooC3yG_p0.mp4/_cooC3yG_p0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_cooC3yG_p0.mp4/_cooC3yG_p0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_cooC3yG_p0.m3u8/_cooC3yG_p0.m3u8"}, "path": "khan/math/precalculus/seq_induction/seq_and_series/arithmetic-sequences/", "duration": 427, "id": "_cooC3yG_p0", "title": "Introduction to arithmetic sequences", "format": "mp4", "description": "", "slug": "arithmetic-sequences", "kind": "Video", "video_id": "_cooC3yG_p0", "keywords": "", "youtube_id": "_cooC3yG_p0", "readable_id": "arithmetic-sequences"}, "6GB_kcdVMQo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6GB_kcdVMQo.mp4/6GB_kcdVMQo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6GB_kcdVMQo.mp4/6GB_kcdVMQo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6GB_kcdVMQo.m3u8/6GB_kcdVMQo.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sound-audition/auditory-structure-part-1/", "duration": 687, "id": "6GB_kcdVMQo", "title": "Auditory structure - part 1", "format": "mp4", "description": "", "slug": "auditory-structure-part-1", "kind": "Video", "video_id": "6GB_kcdVMQo", "keywords": "", "youtube_id": "6GB_kcdVMQo", "readable_id": "auditory-structure-part-1"}, "FwA_UZkI-JM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FwA_UZkI-JM.mp4/FwA_UZkI-JM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FwA_UZkI-JM.mp4/FwA_UZkI-JM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FwA_UZkI-JM.m3u8/FwA_UZkI-JM.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-complex-numbers-part-3/", "duration": 189, "id": "FwA_UZkI-JM", "title": "IIT JEE complex numbers (part 3)", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 39 Complex Numbers (part 3)", "slug": "iit-jee-complex-numbers-part-3", "kind": "Video", "video_id": "FwA_UZkI-JM", "keywords": "2010, IIT, JEE, Paper, Problem, 39, Complex, Numbers, (part, 3)", "youtube_id": "FwA_UZkI-JM", "readable_id": "iit-jee-complex-numbers-part-3"}, "PhfbEr2btGQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PhfbEr2btGQ.mp4/PhfbEr2btGQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PhfbEr2btGQ.mp4/PhfbEr2btGQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PhfbEr2btGQ.m3u8/PhfbEr2btGQ.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/eigen_everything/linear-algebra-introduction-to-eigenvalues-and-eigenvectors/", "duration": 463, "id": "PhfbEr2btGQ", "title": "Introduction to eigenvalues and eigenvectors", "format": "mp4", "description": "What eigenvectors and eigenvalues are and why they are interesting", "slug": "linear-algebra-introduction-to-eigenvalues-and-eigenvectors", "kind": "Video", "video_id": "PhfbEr2btGQ", "keywords": "eigenvalue, eigenvector", "youtube_id": "PhfbEr2btGQ", "readable_id": "linear-algebra-introduction-to-eigenvalues-and-eigenvectors"}, "8Ld8Csu4sEs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8Ld8Csu4sEs.mp4/8Ld8Csu4sEs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8Ld8Csu4sEs.mp4/8Ld8Csu4sEs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8Ld8Csu4sEs.m3u8/8Ld8Csu4sEs.m3u8"}, "duration": 808, "id": "8Ld8Csu4sEs", "title": "Other triangle congruence postulates", "format": "mp4", "description": "SSS, SAS, ASA and AAS postulates for congruent triangles. Showing AAA is only good for similarity and SSA is good for neither", "path": "khan/math/geometry/congruent-triangles/cong_triangle/other-triangle-congruence-postulates/", "slug": "other-triangle-congruence-postulates", "kind": "Video", "video_id": "8Ld8Csu4sEs", "keywords": "SSA, SAS, ASA, AAS, theorem, postulates, axioms, similar, triangles", "youtube_id": "8Ld8Csu4sEs", "readable_id": "other-triangle-congruence-postulates"}, "R2EtXOoIU-E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R2EtXOoIU-E.mp4/R2EtXOoIU-E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R2EtXOoIU-E.mp4/R2EtXOoIU-E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R2EtXOoIU-E.m3u8/R2EtXOoIU-E.m3u8"}, "duration": 255, "id": "R2EtXOoIU-E", "title": "Unusual oxygen oxidation states", "format": "mp4", "description": "", "path": "khan/science/chemistry/oxidation-reduction/redox-oxidation-reduction/unusual-oxygen-oxidation-states/", "slug": "unusual-oxygen-oxidation-states", "kind": "Video", "video_id": "R2EtXOoIU-E", "keywords": "", "youtube_id": "R2EtXOoIU-E", "readable_id": "unusual-oxygen-oxidation-states"}, "h0SNEO25vIw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h0SNEO25vIw.mp4/h0SNEO25vIw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h0SNEO25vIw.mp4/h0SNEO25vIw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h0SNEO25vIw.m3u8/h0SNEO25vIw.m3u8"}, "duration": 314, "id": "h0SNEO25vIw", "title": "Cosine addition identity example", "format": "mp4", "description": "", "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formulas-trig/cosine-addition-identity-example/", "slug": "cosine-addition-identity-example", "kind": "Video", "video_id": "h0SNEO25vIw", "keywords": "", "youtube_id": "h0SNEO25vIw", "readable_id": "cosine-addition-identity-example"}, "idAmFwZ9BqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/idAmFwZ9BqY.mp4/idAmFwZ9BqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/idAmFwZ9BqY.mp4/idAmFwZ9BqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/idAmFwZ9BqY.m3u8/idAmFwZ9BqY.m3u8"}, "path": "khan/humanities/art-asia/art-japan/edo-period/courtesans-of-south-station/", "duration": 138, "id": "idAmFwZ9BqY", "title": "Courtesans of the South Station", "format": "mp4", "description": "Scholars Melinda Takeuchi and Timon Screech discuss a woodblock print of courtesans in an unlicensed pleasure quarter during the Edo period (1615\u20131868) in Japan.", "slug": "courtesans-of-south-station", "kind": "Video", "video_id": "idAmFwZ9BqY", "keywords": "", "youtube_id": "idAmFwZ9BqY", "readable_id": "courtesans-of-south-station"}, "i1i2_9wg6N8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i1i2_9wg6N8.mp4/i1i2_9wg6N8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i1i2_9wg6N8.mp4/i1i2_9wg6N8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i1i2_9wg6N8.m3u8/i1i2_9wg6N8.m3u8"}, "duration": 254, "id": "i1i2_9wg6N8", "title": "Ordering rational numbers", "format": "mp4", "description": "", "path": "ordering-rational-numbers/", "slug": "ordering-rational-numbers", "kind": "Video", "video_id": "i1i2_9wg6N8", "keywords": "", "youtube_id": "i1i2_9wg6N8", "readable_id": "ordering-rational-numbers"}, "ZjeMdXV0QMg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZjeMdXV0QMg.mp4/ZjeMdXV0QMg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZjeMdXV0QMg.mp4/ZjeMdXV0QMg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZjeMdXV0QMg.m3u8/ZjeMdXV0QMg.m3u8"}, "duration": 709, "id": "ZjeMdXV0QMg", "title": "Rational inequalities", "format": "mp4", "description": "Two ways to solve a rational inequality (or an inequality involving a fractional expression)", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/rational-inequalities/", "slug": "rational-inequalities", "kind": "Video", "video_id": "ZjeMdXV0QMg", "keywords": "algebra, inequality, rational, fraction", "youtube_id": "ZjeMdXV0QMg", "readable_id": "rational-inequalities"}, "Y8yga-UzFBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y8yga-UzFBY.mp4/Y8yga-UzFBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y8yga-UzFBY.mp4/Y8yga-UzFBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y8yga-UzFBY.m3u8/Y8yga-UzFBY.m3u8"}, "duration": 64, "id": "Y8yga-UzFBY", "title": "Pencil resistor", "format": "mp4", "description": "A pencil causes a change in the deflection, similar to the effect of adding an electromagnet. Why?", "path": "khan/science/discoveries-projects/discoveries/resistance/pencil-resistor/", "slug": "pencil-resistor", "kind": "Video", "video_id": "Y8yga-UzFBY", "keywords": "resistor", "youtube_id": "Y8yga-UzFBY", "readable_id": "pencil-resistor"}, "SAZUdVg0ygg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SAZUdVg0ygg.mp4/SAZUdVg0ygg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SAZUdVg0ygg.mp4/SAZUdVg0ygg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SAZUdVg0ygg.m3u8/SAZUdVg0ygg.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/demographics/overview-of-demographics/", "duration": 638, "id": "SAZUdVg0ygg", "title": "Overview of demographics", "format": "mp4", "description": "", "slug": "overview-of-demographics", "kind": "Video", "video_id": "SAZUdVg0ygg", "keywords": "", "youtube_id": "SAZUdVg0ygg", "readable_id": "overview-of-demographics"}, "zKotuhQWIRg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zKotuhQWIRg.mp4/zKotuhQWIRg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zKotuhQWIRg.mp4/zKotuhQWIRg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zKotuhQWIRg.m3u8/zKotuhQWIRg.m3u8"}, "duration": 115, "id": "zKotuhQWIRg", "title": "Equation special cases", "format": "mp4", "description": "Equation Special Cases", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solutions-linear-equations/equation-special-cases/", "slug": "equation-special-cases", "kind": "Video", "video_id": "zKotuhQWIRg", "keywords": "u10_l1_t3_we1, Equation, Special, Cases, CC_6_EE_2, CC_6_EE_3, CC_6_EE_5", "youtube_id": "zKotuhQWIRg", "readable_id": "equation-special-cases"}, "UvAOynxGfIU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UvAOynxGfIU.mp4/UvAOynxGfIU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UvAOynxGfIU.mp4/UvAOynxGfIU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UvAOynxGfIU.m3u8/UvAOynxGfIU.m3u8"}, "duration": 214, "id": "UvAOynxGfIU", "title": "Multiplying: 4 digits times 1 digit (using grid)", "format": "mp4", "description": "It's helpful sometimes to use a grid when multiplying multi-digit numbers. Here's an example using a 4 digit number times a 1 digit number.", "path": "4-by-1-multiplication-with-grid/", "slug": "4-by-1-multiplication-with-grid", "kind": "Video", "video_id": "UvAOynxGfIU", "keywords": "", "youtube_id": "UvAOynxGfIU", "readable_id": "4-by-1-multiplication-with-grid"}, "hHC8COp_r_g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hHC8COp_r_g.mp4/hHC8COp_r_g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hHC8COp_r_g.mp4/hHC8COp_r_g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hHC8COp_r_g.m3u8/hHC8COp_r_g.m3u8"}, "duration": 336, "id": "hHC8COp_r_g", "title": "Making a molded Athenian vase", "format": "mp4", "description": "Examine an ancient Athenian drinking cup. Made about 470 B.C., in part, by molding, the cup was designed in the shape of two joined heads: Herakles and a woman. Explore the cup's construction, painting, and firing. Watch a potter mold, throw, and pull an Athenian vase using ancient methods. (Captioned without sound) Love art?\u00a0\u00a0Follow us on Google+\nModeled after\u00a0Double-headed Wine Cup with Herakles, Class M: Vatican Class, about 470 B.C., Republic of Italy", "path": "making-molded-athenian-vase/", "slug": "making-molded-athenian-vase", "kind": "Video", "video_id": "hHC8COp_r_g", "keywords": "", "youtube_id": "hHC8COp_r_g", "readable_id": "making-molded-athenian-vase"}, "W84lObmOp8M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W84lObmOp8M.mp4/W84lObmOp8M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W84lObmOp8M.mp4/W84lObmOp8M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W84lObmOp8M.m3u8/W84lObmOp8M.m3u8"}, "duration": 545, "id": "W84lObmOp8M", "title": "Introduction to function inverses", "format": "mp4", "description": "Introduction to Function Inverses", "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/introduction-to-function-inverses/", "slug": "introduction-to-function-inverses", "kind": "Video", "video_id": "W84lObmOp8M", "keywords": "function, inverse, CC_39336_F-BF_4, CC_39336_F-BF_4_a, CC_39336_F-BF_4_c", "youtube_id": "W84lObmOp8M", "readable_id": "introduction-to-function-inverses"}, "s6UYa2nwaDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s6UYa2nwaDw.mp4/s6UYa2nwaDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s6UYa2nwaDw.mp4/s6UYa2nwaDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s6UYa2nwaDw.m3u8/s6UYa2nwaDw.m3u8"}, "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/housing-conundrum-part-4/", "duration": 413, "id": "s6UYa2nwaDw", "title": "Housing conundrum (part 4)", "format": "mp4", "description": "The virtuous circle of housing price appreciation making defaults go down making lending lax making housing appreciate even more", "slug": "housing-conundrum-part-4", "kind": "Video", "video_id": "s6UYa2nwaDw", "keywords": "Housing, bubble, lending, mortgage, financing", "youtube_id": "s6UYa2nwaDw", "readable_id": "housing-conundrum-part-4"}, "zpnjkbJNp90": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zpnjkbJNp90.mp4/zpnjkbJNp90.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zpnjkbJNp90.mp4/zpnjkbJNp90.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zpnjkbJNp90.m3u8/zpnjkbJNp90.m3u8"}, "duration": 701, "id": "zpnjkbJNp90", "title": "GMAT: Math 30", "format": "mp4", "description": "154-160, pg. 173", "path": "khan/test-prep/gmat/problem-solving/gmat-math-30/", "slug": "gmat-math-30", "kind": "Video", "video_id": "zpnjkbJNp90", "keywords": "gmat, math, problem, solving", "youtube_id": "zpnjkbJNp90", "readable_id": "gmat-math-30"}, "fWkewBPMKEk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fWkewBPMKEk.mp4/fWkewBPMKEk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fWkewBPMKEk.mp4/fWkewBPMKEk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fWkewBPMKEk.m3u8/fWkewBPMKEk.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/ghiberti-gates-paradise/", "duration": 512, "id": "fWkewBPMKEk", "title": "Ghiberti, \"Gates of Paradise,\" east doors of the Florence Baptistery", "format": "mp4", "description": "Lorenzo Ghiberti, \"Gates of Paradise,\" East Doors of the Florence Baptistery, bronze, 1425-52. Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "ghiberti-gates-paradise", "kind": "Video", "video_id": "fWkewBPMKEk", "keywords": "renaissance, florence, ghiberti, art history, perspective, ", "youtube_id": "fWkewBPMKEk", "readable_id": "ghiberti-gates-paradise"}, "xIg420bVAcc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xIg420bVAcc.mp4/xIg420bVAcc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xIg420bVAcc.mp4/xIg420bVAcc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xIg420bVAcc.m3u8/xIg420bVAcc.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2009-may-3-15/", "duration": 299, "id": "xIg420bVAcc", "title": "15 Embedded square dimensions", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2009-may-3-15", "kind": "Video", "video_id": "xIg420bVAcc", "keywords": "", "youtube_id": "xIg420bVAcc", "readable_id": "sat-2009-may-3-15"}, "urQeIjx7Ibo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/urQeIjx7Ibo.mp4/urQeIjx7Ibo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/urQeIjx7Ibo.mp4/urQeIjx7Ibo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/urQeIjx7Ibo.m3u8/urQeIjx7Ibo.m3u8"}, "duration": 539, "id": "urQeIjx7Ibo", "title": "Seeing planets like never before", "format": "mp4", "description": "Until the end of the 20th century, ours was the only planetary system known. We now know of more planets outside our solar system than within it.\u00a0\u00a0Astronomers have now located more than 1,000 planets orbiting stars other than our own, and the latest observations are starting to reveal what these planets are like. The American Museum of Natural History-led Project 1640 is at the forefront of this research. The project\u2019s advanced telescope instrumentation can spot chemical fingerprints that will help characterize how exoplanets form, evolve, and differ from familiar planets closer to home.", "path": "seeing-planets/", "slug": "seeing-planets", "kind": "Video", "video_id": "urQeIjx7Ibo", "keywords": "", "youtube_id": "urQeIjx7Ibo", "readable_id": "seeing-planets"}, "lQ-dvt3V4yQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lQ-dvt3V4yQ.mp4/lQ-dvt3V4yQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lQ-dvt3V4yQ.mp4/lQ-dvt3V4yQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lQ-dvt3V4yQ.m3u8/lQ-dvt3V4yQ.m3u8"}, "duration": 300, "id": "lQ-dvt3V4yQ", "title": "Displacement from time and velocity example", "format": "mp4", "description": "Worked example of calculating displacement from time and velocity", "path": "khan/test-prep/mcat/physical-processes/speed-and-velocity/displacement-from-time-and-velocity-example/", "slug": "displacement-from-time-and-velocity-example", "kind": "Video", "video_id": "lQ-dvt3V4yQ", "keywords": "physics, displacement, distance, rate, time", "youtube_id": "lQ-dvt3V4yQ", "readable_id": "displacement-from-time-and-velocity-example"}, "cyCad5HaHaE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cyCad5HaHaE.mp4/cyCad5HaHaE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cyCad5HaHaE.mp4/cyCad5HaHaE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cyCad5HaHaE.m3u8/cyCad5HaHaE.m3u8"}, "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/spout-led-eye-wiring/", "duration": 634, "id": "cyCad5HaHaE", "title": "Spout wiring for LED eyes", "format": "mp4", "description": "", "slug": "spout-led-eye-wiring", "kind": "Video", "video_id": "cyCad5HaHaE", "keywords": "", "youtube_id": "cyCad5HaHaE", "readable_id": "spout-led-eye-wiring"}, "IFU7Go6Qg6E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IFU7Go6Qg6E.mp4/IFU7Go6Qg6E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IFU7Go6Qg6E.mp4/IFU7Go6Qg6E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IFU7Go6Qg6E.m3u8/IFU7Go6Qg6E.m3u8"}, "duration": 379, "id": "IFU7Go6Qg6E", "title": "Expression for combined area of triangle and square", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/expression-for-combined-area-of-triangle-and-square/", "slug": "expression-for-combined-area-of-triangle-and-square", "kind": "Video", "video_id": "IFU7Go6Qg6E", "keywords": "", "youtube_id": "IFU7Go6Qg6E", "readable_id": "expression-for-combined-area-of-triangle-and-square"}, "um6_5re9XU0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/um6_5re9XU0.mp4/um6_5re9XU0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/um6_5re9XU0.mp4/um6_5re9XU0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/um6_5re9XU0.m3u8/um6_5re9XU0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-skeletal-system/cellular-structure-of-bone/", "duration": 427, "id": "um6_5re9XU0", "title": "Cellular structure of bone", "format": "mp4", "description": "", "slug": "cellular-structure-of-bone", "kind": "Video", "video_id": "um6_5re9XU0", "keywords": "", "youtube_id": "um6_5re9XU0", "readable_id": "cellular-structure-of-bone"}, "-gWtl6mdpeY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-gWtl6mdpeY.mp4/-gWtl6mdpeY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-gWtl6mdpeY.mp4/-gWtl6mdpeY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-gWtl6mdpeY.m3u8/-gWtl6mdpeY.m3u8"}, "duration": 167, "id": "-gWtl6mdpeY", "title": "Constructing square inscribed in circle", "format": "mp4", "description": "", "path": "khan/math/geometry/geometric-constructions/polygons-inscribed-in-circles/constructing-square-inscribed-in-circle/", "slug": "constructing-square-inscribed-in-circle", "kind": "Video", "video_id": "-gWtl6mdpeY", "keywords": "", "youtube_id": "-gWtl6mdpeY", "readable_id": "constructing-square-inscribed-in-circle"}, "BtqlMr1rUT8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BtqlMr1rUT8.mp4/BtqlMr1rUT8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BtqlMr1rUT8.mp4/BtqlMr1rUT8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BtqlMr1rUT8.m3u8/BtqlMr1rUT8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/exocrine-pancreas/", "duration": 589, "id": "BtqlMr1rUT8", "title": "Exocrine pancreas", "format": "mp4", "description": "", "slug": "exocrine-pancreas", "kind": "Video", "video_id": "BtqlMr1rUT8", "keywords": "MCAT", "youtube_id": "BtqlMr1rUT8", "readable_id": "exocrine-pancreas"}, "Ny8a3eNG68M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ny8a3eNG68M.mp4/Ny8a3eNG68M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ny8a3eNG68M.mp4/Ny8a3eNG68M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ny8a3eNG68M.m3u8/Ny8a3eNG68M.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/diagnosing-parkinsons-disease/", "duration": 582, "id": "Ny8a3eNG68M", "title": "Diagnosing Parkinson's disease", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "diagnosing-parkinsons-disease", "kind": "Video", "video_id": "Ny8a3eNG68M", "keywords": "", "youtube_id": "Ny8a3eNG68M", "readable_id": "diagnosing-parkinsons-disease"}, "uzn8TGst0F0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uzn8TGst0F0.mp4/uzn8TGst0F0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uzn8TGst0F0.mp4/uzn8TGst0F0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uzn8TGst0F0.m3u8/uzn8TGst0F0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/rs-2butanol-jay/", "duration": 443, "id": "uzn8TGst0F0", "title": "R,S system for 2-butanol", "format": "mp4", "description": "", "slug": "rs-2butanol-jay", "kind": "Video", "video_id": "uzn8TGst0F0", "keywords": "", "youtube_id": "uzn8TGst0F0", "readable_id": "rs-2butanol-jay"}, "gO49s8WlUis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gO49s8WlUis.mp4/gO49s8WlUis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gO49s8WlUis.mp4/gO49s8WlUis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gO49s8WlUis.m3u8/gO49s8WlUis.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/baldessari-i-will-not-make-any-more-boring-art/", "duration": 215, "id": "gO49s8WlUis", "title": "John Baldessari, I Will Not Make Any More Boring Art", "format": "mp4", "description": "John Baldessari, I Will Not Make Any More Boring Art, 1971, lithograph, 22-7/16 x 30-1/16 inches (The Museum of Modern Art), images \u00a9 John Baldessari, courtesy of the artist Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "baldessari-i-will-not-make-any-more-boring-art", "kind": "Video", "video_id": "gO49s8WlUis", "keywords": "John Baldessari, Baldessari, contemporary, conceptual, art, semiotics, irony, theory", "youtube_id": "gO49s8WlUis", "readable_id": "baldessari-i-will-not-make-any-more-boring-art"}, "3Em2Zzn796Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Em2Zzn796Q.mp4/3Em2Zzn796Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Em2Zzn796Q.mp4/3Em2Zzn796Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Em2Zzn796Q.m3u8/3Em2Zzn796Q.m3u8"}, "duration": 619, "id": "3Em2Zzn796Q", "title": "Primary and Secondary TB", "format": "mp4", "description": "Learn some key features of primary TB and how it differs from secondary TB. Rishi is a pediatric infectious disease physician and works at Khan Academy.These videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/primary-and-secondary-tb/", "slug": "primary-and-secondary-tb", "kind": "Video", "video_id": "3Em2Zzn796Q", "keywords": "", "youtube_id": "3Em2Zzn796Q", "readable_id": "primary-and-secondary-tb"}, "Tn9U8hLu9aI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tn9U8hLu9aI.mp4/Tn9U8hLu9aI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tn9U8hLu9aI.mp4/Tn9U8hLu9aI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tn9U8hLu9aI.m3u8/Tn9U8hLu9aI.m3u8"}, "duration": 84, "id": "Tn9U8hLu9aI", "title": "Testing congruence by transformations example", "format": "mp4", "description": "", "path": "khan/math/geometry/congruent-triangles/transformations-congruence/testing-congruence-by-transformations-example/", "slug": "testing-congruence-by-transformations-example", "kind": "Video", "video_id": "Tn9U8hLu9aI", "keywords": "", "youtube_id": "Tn9U8hLu9aI", "readable_id": "testing-congruence-by-transformations-example"}, "ZxNd67TbMLA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZxNd67TbMLA.mp4/ZxNd67TbMLA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZxNd67TbMLA.mp4/ZxNd67TbMLA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZxNd67TbMLA.m3u8/ZxNd67TbMLA.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/diamagnetic-anisotropy/", "duration": 558, "id": "ZxNd67TbMLA", "title": "Diamagnetic anisotropy", "format": "mp4", "description": "", "slug": "diamagnetic-anisotropy", "kind": "Video", "video_id": "ZxNd67TbMLA", "keywords": "", "youtube_id": "ZxNd67TbMLA", "readable_id": "diamagnetic-anisotropy"}, "8hcanS-j8Ho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8hcanS-j8Ho.mp4/8hcanS-j8Ho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8hcanS-j8Ho.mp4/8hcanS-j8Ho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8hcanS-j8Ho.m3u8/8hcanS-j8Ho.m3u8"}, "path": "khan/math/recreational-math/math-warmup/random-sample-warmup/random-sample-warmup2/", "duration": 65, "id": "8hcanS-j8Ho", "title": "Random sampling intuition", "format": "mp4", "description": "", "slug": "random-sample-warmup2", "kind": "Video", "video_id": "8hcanS-j8Ho", "keywords": "", "youtube_id": "8hcanS-j8Ho", "readable_id": "random-sample-warmup2"}, "8aAsu3xS0NE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8aAsu3xS0NE.mp4/8aAsu3xS0NE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8aAsu3xS0NE.mp4/8aAsu3xS0NE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8aAsu3xS0NE.m3u8/8aAsu3xS0NE.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/read-thomas/of-paradise-and-light-composer-and-her-work/", "duration": 455, "id": "8aAsu3xS0NE", "title": "Of Paradise and Light: The composer and her work", "format": "mp4", "description": "Watch the full performance here (starting at 43:37)", "slug": "of-paradise-and-light-composer-and-her-work", "kind": "Video", "video_id": "8aAsu3xS0NE", "keywords": "", "youtube_id": "8aAsu3xS0NE", "readable_id": "of-paradise-and-light-composer-and-her-work"}, "3ZhUdleD1lQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3ZhUdleD1lQ.mp4/3ZhUdleD1lQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3ZhUdleD1lQ.mp4/3ZhUdleD1lQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3ZhUdleD1lQ.m3u8/3ZhUdleD1lQ.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/practice-approximating-area-under-curve/", "duration": 427, "id": "3ZhUdleD1lQ", "title": "Approximating area under curve and sigma notation", "format": "mp4", "description": "", "slug": "practice-approximating-area-under-curve", "kind": "Video", "video_id": "3ZhUdleD1lQ", "keywords": "", "youtube_id": "3ZhUdleD1lQ", "readable_id": "practice-approximating-area-under-curve"}, "_WXndBGQnyI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_WXndBGQnyI.mp4/_WXndBGQnyI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_WXndBGQnyI.mp4/_WXndBGQnyI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_WXndBGQnyI.m3u8/_WXndBGQnyI.m3u8"}, "path": "khan/science/chemistry/chemical-reactions-stoichiome/empirical-molecular-formula/molecular-mass-and-molecular-weight/", "duration": 442, "id": "_WXndBGQnyI", "title": "Molecular mass and molecular weight", "format": "mp4", "description": "", "slug": "molecular-mass-and-molecular-weight", "kind": "Video", "video_id": "_WXndBGQnyI", "keywords": "", "youtube_id": "_WXndBGQnyI", "readable_id": "molecular-mass-and-molecular-weight"}, "8PPM8foaH_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8PPM8foaH_k.mp4/8PPM8foaH_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8PPM8foaH_k.mp4/8PPM8foaH_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8PPM8foaH_k.m3u8/8PPM8foaH_k.m3u8"}, "path": "khan/humanities/art-1010/art-post-war-britain/barbara-hepworth/", "duration": 232, "id": "8PPM8foaH_k", "title": "Barbara Hepworth: Pioneering modern sculpture", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nEnglish sculptor Barbara Hepworth (1903-1975) was one of the most outstanding female artists of the 20th century. Her smooth, massive sculptures invite their audiences to engage with and even touch them, and they stand as icons of the modern movement. But although a figure of international standing, Hepworth never achieved the same degree of recognition in her lifetime as male contemporaries Henry Moore or Ben Nicholson (her husband of nearly 20 years).\nTravel to the coastal English town of St Ives, where Hepworth lived and worked until her death in 1975, where many of her sculptures were created and where they continue to stand in the environment they were intended for. If you could see one, how would you interact with a Hepworth sculpture?\n\nExplore the work and archives of Barbara Hepworth, and learn more about the artist here.\n", "slug": "barbara-hepworth", "kind": "Video", "video_id": "8PPM8foaH_k", "keywords": "Tate", "youtube_id": "8PPM8foaH_k", "readable_id": "barbara-hepworth"}, "2duGAcN0nqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2duGAcN0nqw.mp4/2duGAcN0nqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2duGAcN0nqw.mp4/2duGAcN0nqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2duGAcN0nqw.m3u8/2duGAcN0nqw.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-iron-deficiency-anemia-and-anemia-of-chronic-disease/iron-deficency-anemia-diagnosis/", "duration": 594, "id": "2duGAcN0nqw", "title": "Iron deficency anemia diagnosis", "format": "mp4", "description": "", "slug": "iron-deficency-anemia-diagnosis", "kind": "Video", "video_id": "2duGAcN0nqw", "keywords": "", "youtube_id": "2duGAcN0nqw", "readable_id": "iron-deficency-anemia-diagnosis"}, "Du-0kAn4u6w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Du-0kAn4u6w.mp4/Du-0kAn4u6w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Du-0kAn4u6w.mp4/Du-0kAn4u6w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Du-0kAn4u6w.m3u8/Du-0kAn4u6w.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/mantegna-dormition-or-death-of-the-virgin-c-1462/", "duration": 204, "id": "Du-0kAn4u6w", "title": "Mantegna, Dormition of the Virgin", "format": "mp4", "description": "Andrea Mantegna, Dormition (or Death) of the Virgin, c. 1462, tempera on panel, 54 \u00d7 42 cm, 21.26 \u00d7 16.54 in (Museo del Prado, Madrid)Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "mantegna-dormition-or-death-of-the-virgin-c-1462", "kind": "Video", "video_id": "Du-0kAn4u6w", "keywords": "mantegna, prado, art history, history of art, smarthistory, renaissance", "youtube_id": "Du-0kAn4u6w", "readable_id": "mantegna-dormition-or-death-of-the-virgin-c-1462"}, "Z_P5rqxeBVA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z_P5rqxeBVA.mp4/Z_P5rqxeBVA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z_P5rqxeBVA.mp4/Z_P5rqxeBVA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z_P5rqxeBVA.m3u8/Z_P5rqxeBVA.m3u8"}, "duration": 639, "id": "Z_P5rqxeBVA", "title": "The Agricultural Revolution", "format": "mp4", "description": "In which John Green investigates the dawn of human civilization. John looks into how people gave up hunting and gathering to become agriculturalists, and how that change has influenced the world we live in today. Also, there are some jokes about cheeseburgers.", "path": "khan/humanities/history/crashcourse-worldhistory/what-happens-when-you-stay-put-2/crash-course-world-history-01/", "slug": "crash-course-world-history-01", "kind": "Video", "video_id": "Z_P5rqxeBVA", "keywords": "crash course", "youtube_id": "Z_P5rqxeBVA", "readable_id": "crash-course-world-history-01"}, "1xuf6ZKF1_I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1xuf6ZKF1_I.mp4/1xuf6ZKF1_I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1xuf6ZKF1_I.mp4/1xuf6ZKF1_I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1xuf6ZKF1_I.m3u8/1xuf6ZKF1_I.m3u8"}, "duration": 553, "id": "1xuf6ZKF1_I", "title": "Mixed numbers and improper fractions", "format": "mp4", "description": "Converting mixed numbers to improper fractions and improper fractions to mixed numbers", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/mixed-numbers-and-improper-fractions/", "slug": "mixed-numbers-and-improper-fractions", "kind": "Video", "video_id": "1xuf6ZKF1_I", "keywords": "Mixed, Numbers, Improper, fractions, math", "youtube_id": "1xuf6ZKF1_I", "readable_id": "mixed-numbers-and-improper-fractions"}, "ikadoCpDNT8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ikadoCpDNT8.mp4/ikadoCpDNT8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ikadoCpDNT8.mp4/ikadoCpDNT8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ikadoCpDNT8.m3u8/ikadoCpDNT8.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/zero-identity-matrix-tutorial/identity-zero-matrix-equation/", "duration": 238, "id": "ikadoCpDNT8", "title": "Identity and zero matrix equation", "format": "mp4", "description": "", "slug": "identity-zero-matrix-equation", "kind": "Video", "video_id": "ikadoCpDNT8", "keywords": "", "youtube_id": "ikadoCpDNT8", "readable_id": "identity-zero-matrix-equation"}, "NhioAAdYDJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NhioAAdYDJM.mp4/NhioAAdYDJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NhioAAdYDJM.mp4/NhioAAdYDJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NhioAAdYDJM.m3u8/NhioAAdYDJM.m3u8"}, "duration": 518, "id": "NhioAAdYDJM", "title": "Seismic waves", "format": "mp4", "description": "S-waves and P-waves", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/seismic-waves-tutorial/seismic-waves/", "slug": "seismic-waves", "kind": "Video", "video_id": "NhioAAdYDJM", "keywords": "seismology, geology", "youtube_id": "NhioAAdYDJM", "readable_id": "seismic-waves"}, "Mx59hYSFCeA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mx59hYSFCeA.mp4/Mx59hYSFCeA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mx59hYSFCeA.mp4/Mx59hYSFCeA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mx59hYSFCeA.m3u8/Mx59hYSFCeA.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/bellini-titian-feast-of-the-gods-1514-and-1529/", "duration": 185, "id": "Mx59hYSFCeA", "title": "Bellini and Titian, the Feast of the Gods", "format": "mp4", "description": "Giovanni Bellini and Titian, The Feast of the Gods, 1514 and 1529, oil on canvas (National Gallery of Art) Speakers: Dr. Beth Harris, Dr. Steven Zucker\n\nPart of a mythological cycle painted by Titian and Giovanni Bellini and commissioned\u00a0by Alfonso d'Este, Duke of Ferrara that includes\u00a0Bacchus and Ariadne\u00a0and the\u00a0Andrians.\u00a0Originally hung in the\u00a0studiolo\u00a0or Camerini d'Alabastro of the Duke's Ferranese castle.\n", "slug": "bellini-titian-feast-of-the-gods-1514-and-1529", "kind": "Video", "video_id": "Mx59hYSFCeA", "keywords": "Bellini, Titian, Venice, art, art history, national gallery, Smarthistory", "youtube_id": "Mx59hYSFCeA", "readable_id": "bellini-titian-feast-of-the-gods-1514-and-1529"}, "VRwWJyy24So": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VRwWJyy24So.mp4/VRwWJyy24So.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VRwWJyy24So.mp4/VRwWJyy24So.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VRwWJyy24So.m3u8/VRwWJyy24So.m3u8"}, "duration": 305, "id": "VRwWJyy24So", "title": "Intaglio process", "format": "mp4", "description": "Learn how artists scratch and etch metal plates to create fine surface detail. Did you know that MoMA offers studio courses online? Check out the list of offerings including online courses on collage and painting techniques.", "path": "khan/humanities/art-history-basics/artists-materials-techniques/printmaking/moma-intaglio-process/", "slug": "moma-intaglio-process", "kind": "Video", "video_id": "VRwWJyy24So", "keywords": "", "youtube_id": "VRwWJyy24So", "readable_id": "moma-intaglio-process"}, "1DgDt6gCUKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1DgDt6gCUKs.mp4/1DgDt6gCUKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1DgDt6gCUKs.mp4/1DgDt6gCUKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1DgDt6gCUKs.m3u8/1DgDt6gCUKs.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/combining-like-terms-2/", "duration": 223, "id": "1DgDt6gCUKs", "title": "Combining like terms example 2", "format": "mp4", "description": "We're going to simplify this expression together putting to use our new knowledge of how to combine like terms. Ok? Let's do it!", "slug": "combining-like-terms-2", "kind": "Video", "video_id": "1DgDt6gCUKs", "keywords": "", "youtube_id": "1DgDt6gCUKs", "readable_id": "combining-like-terms-2"}, "ukjw0Doy65Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ukjw0Doy65Q.mp4/ukjw0Doy65Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ukjw0Doy65Q.mp4/ukjw0Doy65Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ukjw0Doy65Q.m3u8/ukjw0Doy65Q.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/umbo-otto-umbehr-the-roving-reporter-1926/", "duration": 483, "id": "ukjw0Doy65Q", "title": "Umbo, The Roving Reporter", "format": "mp4", "description": "Umbo (Otto Umbehr), The Roving Reporter, photomontage (rephotographed), 1926\n\nSpeakers: Dr. Juliana Kreinik, Dr. Steven Zucker, Dr. Beth Harris", "slug": "umbo-otto-umbehr-the-roving-reporter-1926", "kind": "Video", "video_id": "ukjw0Doy65Q", "keywords": "Umbo, Art History, Smarthistory, photomontage", "youtube_id": "ukjw0Doy65Q", "readable_id": "umbo-otto-umbehr-the-roving-reporter-1926"}, "mXsFQONwIic": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mXsFQONwIic.mp4/mXsFQONwIic.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mXsFQONwIic.mp4/mXsFQONwIic.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mXsFQONwIic.m3u8/mXsFQONwIic.m3u8"}, "path": "khan/partner-content/cas-biodiversity/biodiversity-protection/biodiversitychampions/protecting-biodiversity-local-and-global-policies/", "duration": 640, "id": "mXsFQONwIic", "title": "Protecting biodiversity: local and global policies", "format": "mp4", "description": "", "slug": "protecting-biodiversity-local-and-global-policies", "kind": "Video", "video_id": "mXsFQONwIic", "keywords": "", "youtube_id": "mXsFQONwIic", "readable_id": "protecting-biodiversity-local-and-global-policies"}, "OqRt723t33o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OqRt723t33o.mp4/OqRt723t33o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OqRt723t33o.mp4/OqRt723t33o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OqRt723t33o.m3u8/OqRt723t33o.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/gene-control/dna-and-chromatin-regulation/", "duration": 321, "id": "OqRt723t33o", "title": "DNA and chromatin regulation", "format": "mp4", "description": "", "slug": "dna-and-chromatin-regulation", "kind": "Video", "video_id": "OqRt723t33o", "keywords": "", "youtube_id": "OqRt723t33o", "readable_id": "dna-and-chromatin-regulation"}, "A_e9D0iaiAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A_e9D0iaiAI.mp4/A_e9D0iaiAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A_e9D0iaiAI.mp4/A_e9D0iaiAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A_e9D0iaiAI.m3u8/A_e9D0iaiAI.m3u8"}, "path": "khan/college-admissions/paying-for-college/grants-and-scholarships/types-of-grants-and-scholarships/", "duration": 273, "id": "A_e9D0iaiAI", "title": "Types of grants and scholarships", "format": "mp4", "description": "", "slug": "types-of-grants-and-scholarships", "kind": "Video", "video_id": "A_e9D0iaiAI", "keywords": "", "youtube_id": "A_e9D0iaiAI", "readable_id": "types-of-grants-and-scholarships"}, "V2vR5_B6C5I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V2vR5_B6C5I.mp4/V2vR5_B6C5I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V2vR5_B6C5I.mp4/V2vR5_B6C5I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V2vR5_B6C5I.m3u8/V2vR5_B6C5I.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system/breathing-control/sneeze-cough-and-hiccup/", "duration": 520, "id": "V2vR5_B6C5I", "title": "Sneeze, cough, and hiccup", "format": "mp4", "description": "Learn how our brain receives information from mechanoreceptors and then responds by controlling muscles in a well-coordinated system, and how all of this can lead to a sneeze, a cough, or even a hiccup! Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "sneeze-cough-and-hiccup", "kind": "Video", "video_id": "V2vR5_B6C5I", "keywords": "", "youtube_id": "V2vR5_B6C5I", "readable_id": "sneeze-cough-and-hiccup"}, "3KjZ3w5MtBo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3KjZ3w5MtBo.mp4/3KjZ3w5MtBo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3KjZ3w5MtBo.mp4/3KjZ3w5MtBo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3KjZ3w5MtBo.m3u8/3KjZ3w5MtBo.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/millet-l-ang-lus-ca-1857-1859/", "duration": 145, "id": "3KjZ3w5MtBo", "title": "Millet, L'Angelus", "format": "mp4", "description": "Jean-Fran\u00e7ois Millet (French), L'Ang\u00e9lus, c. 1857-1859, oil on canvas, 21 x 26 (53.3 \u00d7 66.0 cm) (Mus\u00e9e d'Orsay, Paris) Speakers: Drs. Beth Harris and Steven Zucker For more art history videos, visit Smarthistory.org", "slug": "millet-l-ang-lus-ca-1857-1859", "kind": "Video", "video_id": "3KjZ3w5MtBo", "keywords": "Millet, smarthistory, art history, realism", "youtube_id": "3KjZ3w5MtBo", "readable_id": "millet-l-ang-lus-ca-1857-1859"}, "TINfzxSnnIE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TINfzxSnnIE.mp4/TINfzxSnnIE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TINfzxSnnIE.mp4/TINfzxSnnIE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TINfzxSnnIE.m3u8/TINfzxSnnIE.m3u8"}, "path": "khan/math/recreational-math/vi-hart/infinity/9-999-reasons-that-999-1/", "duration": 601, "id": "TINfzxSnnIE", "title": "9.999... reasons that .999... = 1", "format": "mp4", "description": "Point Nine Repeating Equals One! 9.999... reasons in 9.999... minutes. Bonus points if you can name all 9.999... lords a-leaping. Dear YouTube, wouldn't it be nice if I could include the full script with this video? A larger character limit would not be unreasonable.", "slug": "9-999-reasons-that-999-1", "kind": "Video", "video_id": "TINfzxSnnIE", "keywords": "mathematics, numbers, repeating decimals, real numbers, surreal numbers, hyperreal numbers", "youtube_id": "TINfzxSnnIE", "readable_id": "9-999-reasons-that-999-1"}, "-V-Y5klejSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-V-Y5klejSg.mp4/-V-Y5klejSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-V-Y5klejSg.mp4/-V-Y5klejSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-V-Y5klejSg.m3u8/-V-Y5klejSg.m3u8"}, "duration": 500, "id": "-V-Y5klejSg", "title": "Producer surplus", "format": "mp4", "description": "Looking at the supply curve as an opportunity cost curve. Understanding the producer surplus as the area between the supply curve and the market price", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/consumer-producer-surplus-tut/producer-surplus/", "slug": "producer-surplus", "kind": "Video", "video_id": "-V-Y5klejSg", "keywords": "microeconomics, producer, surplus, consumer, market, opportunity, cost", "youtube_id": "-V-Y5klejSg", "readable_id": "producer-surplus"}, "kHt6BgHxa8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kHt6BgHxa8o.mp4/kHt6BgHxa8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kHt6BgHxa8o.mp4/kHt6BgHxa8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kHt6BgHxa8o.m3u8/kHt6BgHxa8o.m3u8"}, "path": "khan/humanities/art-asia/beginners-guide-asian-culture/buddhist-art-culture/four-buddhas-at-the-american-museum-of-natural-history/", "duration": 579, "id": "kHt6BgHxa8o", "title": "Four Buddhas at the American Museum of Natural History", "format": "mp4", "description": "A conversation at the American Museum of Natural History between Dr. Laurel Kendall, Curator, Asian Ethnographic Collections and Dr. Monique Scott, Assistant Director of Cultural Education in front of four Buddhist sculptures: Seated Gautama Buddha, 18th Century, cast brass, gilt (Thailand) Gandharan Seated Buddha with Double Halo, attributed to the 3rd Century, green-gray schist (Pakistan) Jizo, Kshitigarbha, Dhyani-Bodhisattao, 19th Century, wood, gold (Japan) Budai (Ho t'ai)/Maitreya, The Laughing Buddha, c. 1900, metal (China). \u00a0Produced by Dr. Beth Harris and Dr. Steven Zucker for Smarthistory at Khan Academy", "slug": "four-buddhas-at-the-american-museum-of-natural-history", "kind": "Video", "video_id": "kHt6BgHxa8o", "keywords": "Buddha, Buddhism, American Museum of Natural History, Silk Road", "youtube_id": "kHt6BgHxa8o", "readable_id": "four-buddhas-at-the-american-museum-of-natural-history"}, "W7dImsrVa0Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W7dImsrVa0Y.mp4/W7dImsrVa0Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W7dImsrVa0Y.mp4/W7dImsrVa0Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W7dImsrVa0Y.m3u8/W7dImsrVa0Y.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/multiplying-decimals-pre-alg/mulitplyling-decimals-3/", "duration": 152, "id": "W7dImsrVa0Y", "title": "Multiplying decimals word problem", "format": "mp4", "description": "We're multiplying decimals again, but this time answering a common question: what's the cost of filling up the car tank?", "slug": "mulitplyling-decimals-3", "kind": "Video", "video_id": "W7dImsrVa0Y", "keywords": "U03_L2_T2_we5, Mulitplyling, Decimals, CC_6_NS_3", "youtube_id": "W7dImsrVa0Y", "readable_id": "mulitplyling-decimals-3"}, "42llTiRn-b8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/42llTiRn-b8.mp4/42llTiRn-b8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/42llTiRn-b8.mp4/42llTiRn-b8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/42llTiRn-b8.m3u8/42llTiRn-b8.m3u8"}, "duration": 325, "id": "42llTiRn-b8", "title": "Isoelectric point and zwitterions", "format": "mp4", "description": "The isoelectric point of an amino acid is the pH at which the amino acid has a neutral charge. You will learn how to calculate the isoelectric point, and the affects of pH on the amino acid's overall charge. We will also discuss zwitterions, or the forms of amino acids that dominate at the isoelectric point. By Tracy Kovach.", "path": "khan/test-prep/mcat/biomolecules/amino-acids-and-proteins1/isoelectric-point-and-zwitterions/", "slug": "isoelectric-point-and-zwitterions", "kind": "Video", "video_id": "42llTiRn-b8", "keywords": "", "youtube_id": "42llTiRn-b8", "readable_id": "isoelectric-point-and-zwitterions"}, "n-arbfLTCtI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n-arbfLTCtI.mp4/n-arbfLTCtI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n-arbfLTCtI.mp4/n-arbfLTCtI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n-arbfLTCtI.m3u8/n-arbfLTCtI.m3u8"}, "duration": 749, "id": "n-arbfLTCtI", "title": "Geithner plan 2", "format": "mp4", "description": "More on the Geithner Plan. The problem of banks buying the assets from themselves.", "path": "khan/economics-finance-domain/core-finance/money-and-banking/geithner-plan/geithner-plan-ii/", "slug": "geithner-plan-ii", "kind": "Video", "video_id": "n-arbfLTCtI", "keywords": "timothy, geithner, bank, bailout, obama, tarp, talf", "youtube_id": "n-arbfLTCtI", "readable_id": "geithner-plan-ii"}, "T971zHhZ3S4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T971zHhZ3S4.mp4/T971zHhZ3S4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T971zHhZ3S4.mp4/T971zHhZ3S4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T971zHhZ3S4.m3u8/T971zHhZ3S4.m3u8"}, "duration": 153, "id": "T971zHhZ3S4", "title": "Hypotenuse of right triangle inscribed in circle", "format": "mp4", "description": "", "path": "khan/math/geometry/cc-geometry-circles/central-inscribed-circumscribed/hypotenuse-of-right-triangle-inscribed-in-circle/", "slug": "hypotenuse-of-right-triangle-inscribed-in-circle", "kind": "Video", "video_id": "T971zHhZ3S4", "keywords": "", "youtube_id": "T971zHhZ3S4", "readable_id": "hypotenuse-of-right-triangle-inscribed-in-circle"}, "Go5nAAwQnpA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Go5nAAwQnpA.mp4/Go5nAAwQnpA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Go5nAAwQnpA.mp4/Go5nAAwQnpA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Go5nAAwQnpA.m3u8/Go5nAAwQnpA.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/neo-classicism/jacques-louis-david-the-emperor-napoleon-in-his-study-at-the-tuileries-1812/", "duration": 195, "id": "Go5nAAwQnpA", "title": "David, The Emperor Napoleon in His Study at the Tuileries", "format": "mp4", "description": "Jacques-Louis David, The Emperor Napoleon in His Study at the Tuileries, 1812, oil on canvas 80-1/4 x 49-1/4 inches (National Gallery of Art) For more videos see http://www.smarthistory.org", "slug": "jacques-louis-david-the-emperor-napoleon-in-his-study-at-the-tuileries-1812", "kind": "Video", "video_id": "Go5nAAwQnpA", "keywords": "Napoleon, National Gallery, Neo-Classicism, Jecques-Louis David", "youtube_id": "Go5nAAwQnpA", "readable_id": "jacques-louis-david-the-emperor-napoleon-in-his-study-at-the-tuileries-1812"}, "JoGQYSTlOKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JoGQYSTlOKo.mp4/JoGQYSTlOKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JoGQYSTlOKo.mp4/JoGQYSTlOKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JoGQYSTlOKo.m3u8/JoGQYSTlOKo.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/titrations-and-solubility-equilibria/titration-of-a-strong-acid-with-a-strong-base/", "duration": 612, "id": "JoGQYSTlOKo", "title": "Titration of a strong acid with a strong base", "format": "mp4", "description": "", "slug": "titration-of-a-strong-acid-with-a-strong-base", "kind": "Video", "video_id": "JoGQYSTlOKo", "keywords": "", "youtube_id": "JoGQYSTlOKo", "readable_id": "titration-of-a-strong-acid-with-a-strong-base"}, "0B91xPrwcPE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0B91xPrwcPE.mp4/0B91xPrwcPE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0B91xPrwcPE.mp4/0B91xPrwcPE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0B91xPrwcPE.m3u8/0B91xPrwcPE.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-compare-estimate-length/estimating-lengths/", "duration": 123, "id": "0B91xPrwcPE", "title": "Estimating lengths", "format": "mp4", "description": "", "slug": "estimating-lengths", "kind": "Video", "video_id": "0B91xPrwcPE", "keywords": "", "youtube_id": "0B91xPrwcPE", "readable_id": "estimating-lengths"}, "yeX0uDpPBj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yeX0uDpPBj4.mp4/yeX0uDpPBj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yeX0uDpPBj4.mp4/yeX0uDpPBj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yeX0uDpPBj4.m3u8/yeX0uDpPBj4.m3u8"}, "duration": 260, "id": "yeX0uDpPBj4", "title": "Pre-capillary sphincters", "format": "mp4", "description": "Find out how the body controls how much blood flows through a capillary bed. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/bloodvessels/pre-capillary-sphincters/", "slug": "pre-capillary-sphincters", "kind": "Video", "video_id": "yeX0uDpPBj4", "keywords": "", "youtube_id": "yeX0uDpPBj4", "readable_id": "pre-capillary-sphincters"}, "A4Pp0rYV2kg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A4Pp0rYV2kg.mp4/A4Pp0rYV2kg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A4Pp0rYV2kg.mp4/A4Pp0rYV2kg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A4Pp0rYV2kg.m3u8/A4Pp0rYV2kg.m3u8"}, "duration": 484, "id": "A4Pp0rYV2kg", "title": "Nomenclature", "format": "mp4", "description": "Ever feel like there's a international team of bad guys changing all of the easily remembered chemical names and turning them into test-failing, number-infused, pain in the neck names? Well... you're not wrong. IUPAC exists but try to keep in mind that they're doing it for the greater good. In this episode, Hank talks about IUPAC, prefixes, suffixes, ranking, numbers for carbon chains, and cis or trans double bonds.\u00a0\nWriters: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem44-nomenclature/", "slug": "chem44-nomenclature", "kind": "Video", "video_id": "A4Pp0rYV2kg", "keywords": "", "youtube_id": "A4Pp0rYV2kg", "readable_id": "chem44-nomenclature"}, "wIPriEEti6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wIPriEEti6o.mp4/wIPriEEti6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wIPriEEti6o.mp4/wIPriEEti6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wIPriEEti6o.m3u8/wIPriEEti6o.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-5/", "duration": 784, "id": "wIPriEEti6o", "title": "GMAT: Data sufficiency 5", "format": "mp4", "description": "22-27, pg. 279", "slug": "gmat-data-sufficiency-5", "kind": "Video", "video_id": "wIPriEEti6o", "keywords": "gmat, data, sufficiency", "youtube_id": "wIPriEEti6o", "readable_id": "gmat-data-sufficiency-5"}, "_dObpPBwfU8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_dObpPBwfU8.mp4/_dObpPBwfU8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_dObpPBwfU8.mp4/_dObpPBwfU8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_dObpPBwfU8.m3u8/_dObpPBwfU8.m3u8"}, "duration": 151, "id": "_dObpPBwfU8", "title": "Eileen Cowin on her series \"I See What You're Saying\"", "format": "mp4", "description": "Combining text and photography, contemporary artist Eileen Cowin explores narrative within her work. Love art? Follow us on Google+", "path": "cowin-i-see-what-you-re-saying/", "slug": "cowin-i-see-what-you-re-saying", "kind": "Video", "video_id": "_dObpPBwfU8", "keywords": "", "youtube_id": "_dObpPBwfU8", "readable_id": "cowin-i-see-what-you-re-saying"}, "br7tS1t2SFE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/br7tS1t2SFE.mp4/br7tS1t2SFE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/br7tS1t2SFE.mp4/br7tS1t2SFE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/br7tS1t2SFE.m3u8/br7tS1t2SFE.m3u8"}, "duration": 471, "id": "br7tS1t2SFE", "title": "Vector intro for linear algebra", "format": "mp4", "description": "", "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/vector-introduction-linear-algebra/", "slug": "vector-introduction-linear-algebra", "kind": "Video", "video_id": "br7tS1t2SFE", "keywords": "", "youtube_id": "br7tS1t2SFE", "readable_id": "vector-introduction-linear-algebra"}, "cmQtbpYihAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cmQtbpYihAI.mp4/cmQtbpYihAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cmQtbpYihAI.mp4/cmQtbpYihAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cmQtbpYihAI.m3u8/cmQtbpYihAI.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/nerve-regulation-of-the-heart/changing-the-av-node-delay-chronotropic-effect/", "duration": 734, "id": "cmQtbpYihAI", "title": "Changing the AV node delay - chronotropic effect", "format": "mp4", "description": "Find out exactly how your autonomic nervous system has a chronotropic effect (i.e. timing) that changes the delay between the contraction of the atria and the ventricles! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "changing-the-av-node-delay-chronotropic-effect", "kind": "Video", "video_id": "cmQtbpYihAI", "keywords": "", "youtube_id": "cmQtbpYihAI", "readable_id": "changing-the-av-node-delay-chronotropic-effect"}, "wfnefFAmYjg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wfnefFAmYjg.mp4/wfnefFAmYjg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wfnefFAmYjg.mp4/wfnefFAmYjg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wfnefFAmYjg.m3u8/wfnefFAmYjg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/postpartum-physiology/", "duration": 475, "id": "wfnefFAmYjg", "title": "Postpartum physiology", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "postpartum-physiology", "kind": "Video", "video_id": "wfnefFAmYjg", "keywords": "", "youtube_id": "wfnefFAmYjg", "readable_id": "postpartum-physiology"}, "J97G6BeYW0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J97G6BeYW0I.mp4/J97G6BeYW0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J97G6BeYW0I.mp4/J97G6BeYW0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J97G6BeYW0I.m3u8/J97G6BeYW0I.m3u8"}, "duration": 381, "id": "J97G6BeYW0I", "title": "What is blood pressure?", "format": "mp4", "description": "Find out what a systolic and diastolic blood pressure mean. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/what-is-blood-pressure-1/", "slug": "what-is-blood-pressure-1", "kind": "Video", "video_id": "J97G6BeYW0I", "keywords": "", "youtube_id": "J97G6BeYW0I", "readable_id": "what-is-blood-pressure-1"}, "_XdW_IVIOQ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_XdW_IVIOQ4.mp4/_XdW_IVIOQ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_XdW_IVIOQ4.mp4/_XdW_IVIOQ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_XdW_IVIOQ4.m3u8/_XdW_IVIOQ4.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-teaching-blended-learning/sscc-teacher-experience/sscc-blended-teacherintro/", "duration": 37, "id": "_XdW_IVIOQ4", "title": "Teacher role: intro and big ideas", "format": "mp4", "description": "", "slug": "sscc-blended-teacherintro", "kind": "Video", "video_id": "_XdW_IVIOQ4", "keywords": "", "youtube_id": "_XdW_IVIOQ4", "readable_id": "sscc-blended-teacherintro"}, "D5-1qEKtfQ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D5-1qEKtfQ4.mp4/D5-1qEKtfQ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D5-1qEKtfQ4.mp4/D5-1qEKtfQ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D5-1qEKtfQ4.m3u8/D5-1qEKtfQ4.m3u8"}, "duration": 573, "id": "D5-1qEKtfQ4", "title": "Addition of carbon nucleophiles to aldehydes and ketones", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/aldehydes-and-ketones/addition-of-carbon-nucleophiles-to-aldehydes-and-ketones/", "slug": "addition-of-carbon-nucleophiles-to-aldehydes-and-ketones", "kind": "Video", "video_id": "D5-1qEKtfQ4", "keywords": "", "youtube_id": "D5-1qEKtfQ4", "readable_id": "addition-of-carbon-nucleophiles-to-aldehydes-and-ketones"}, "0mdS4GH7Lkw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0mdS4GH7Lkw.mp4/0mdS4GH7Lkw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0mdS4GH7Lkw.mp4/0mdS4GH7Lkw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0mdS4GH7Lkw.m3u8/0mdS4GH7Lkw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-cystic-fibrosis/cystic-fibrosis-complications/", "duration": 457, "id": "0mdS4GH7Lkw", "title": "Cystic fibrosis complications", "format": "mp4", "description": "", "slug": "cystic-fibrosis-complications", "kind": "Video", "video_id": "0mdS4GH7Lkw", "keywords": "", "youtube_id": "0mdS4GH7Lkw", "readable_id": "cystic-fibrosis-complications"}, "8mvUDiBQbjg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8mvUDiBQbjg.mp4/8mvUDiBQbjg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8mvUDiBQbjg.mp4/8mvUDiBQbjg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8mvUDiBQbjg.m3u8/8mvUDiBQbjg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/putting-it-all-together-pathophysiology-of-parkinsons-disease/", "duration": 361, "id": "8mvUDiBQbjg", "title": "Putting it all together - Pathophysiology of Parkinson's disease", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "putting-it-all-together-pathophysiology-of-parkinsons-disease", "kind": "Video", "video_id": "8mvUDiBQbjg", "keywords": "", "youtube_id": "8mvUDiBQbjg", "readable_id": "putting-it-all-together-pathophysiology-of-parkinsons-disease"}, "TNACKWquyys": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TNACKWquyys.mp4/TNACKWquyys.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TNACKWquyys.mp4/TNACKWquyys.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TNACKWquyys.m3u8/TNACKWquyys.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-23-greek-mythology/", "duration": 45, "id": "TNACKWquyys", "title": "23 Greek mythology", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-23-greek-mythology", "kind": "Video", "video_id": "TNACKWquyys", "keywords": "", "youtube_id": "TNACKWquyys", "readable_id": "sat-23-greek-mythology"}, "U2Nw5T44zvY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U2Nw5T44zvY.mp4/U2Nw5T44zvY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U2Nw5T44zvY.mp4/U2Nw5T44zvY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U2Nw5T44zvY.m3u8/U2Nw5T44zvY.m3u8"}, "duration": 605, "id": "U2Nw5T44zvY", "title": "More on balance sheets and equity", "format": "mp4", "description": "What happens to equity when the value of the assets increase or decrease", "path": "khan/economics-finance-domain/core-finance/housing/home-equity-tutorial/more-on-balance-sheets-and-equity/", "slug": "more-on-balance-sheets-and-equity", "kind": "Video", "video_id": "U2Nw5T44zvY", "keywords": "equity, home, mortgage, finance, balance, sheet, accounting", "youtube_id": "U2Nw5T44zvY", "readable_id": "more-on-balance-sheets-and-equity"}, "I6TBBzIvgB8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I6TBBzIvgB8.mp4/I6TBBzIvgB8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I6TBBzIvgB8.mp4/I6TBBzIvgB8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I6TBBzIvgB8.m3u8/I6TBBzIvgB8.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/factoring-algebraic-expressions/", "duration": 374, "id": "I6TBBzIvgB8", "title": "Factoring algebraic expressions", "format": "mp4", "description": "Learn how to apply the distributive property to factor out the greatest common factor from an algebraic expression like 2+4x.", "slug": "factoring-algebraic-expressions", "kind": "Video", "video_id": "I6TBBzIvgB8", "keywords": "", "youtube_id": "I6TBBzIvgB8", "readable_id": "factoring-algebraic-expressions"}, "A8xO92u0VFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A8xO92u0VFs.mp4/A8xO92u0VFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A8xO92u0VFs.mp4/A8xO92u0VFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A8xO92u0VFs.m3u8/A8xO92u0VFs.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/learn-how-a-stethoscope-can-help-determine-blood-pressure/", "duration": 327, "id": "A8xO92u0VFs", "title": "Learn how a stethoscope can help determine blood pressure", "format": "mp4", "description": "Learn how Dr. Korotkoff cleverly used a stethoscope to determine blood pressure, and that we still use his trick today! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "learn-how-a-stethoscope-can-help-determine-blood-pressure", "kind": "Video", "video_id": "A8xO92u0VFs", "keywords": "", "youtube_id": "A8xO92u0VFs", "readable_id": "learn-how-a-stethoscope-can-help-determine-blood-pressure"}, "FaOOx6IZxV8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FaOOx6IZxV8.mp4/FaOOx6IZxV8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FaOOx6IZxV8.mp4/FaOOx6IZxV8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FaOOx6IZxV8.m3u8/FaOOx6IZxV8.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/halohydrin-formation/", "duration": 765, "id": "FaOOx6IZxV8", "title": "Halohydrin formation", "format": "mp4", "description": "", "slug": "halohydrin-formation", "kind": "Video", "video_id": "FaOOx6IZxV8", "keywords": "", "youtube_id": "FaOOx6IZxV8", "readable_id": "halohydrin-formation"}, "tvj42WdKlH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tvj42WdKlH4.mp4/tvj42WdKlH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tvj42WdKlH4.mp4/tvj42WdKlH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tvj42WdKlH4.m3u8/tvj42WdKlH4.m3u8"}, "duration": 312, "id": "tvj42WdKlH4", "title": "Exponent properties 2", "format": "mp4", "description": "Exponent Properties 2", "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/exponent-properties-2/", "slug": "exponent-properties-2", "kind": "Video", "video_id": "tvj42WdKlH4", "keywords": "u11_l1_t2_we2, Exponent, Properties, CC_6_EE_1, CC_6_EE_2_c, CC_8_EE_1", "youtube_id": "tvj42WdKlH4", "readable_id": "exponent-properties-2"}, "SJOMrRHGcNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SJOMrRHGcNY.mp4/SJOMrRHGcNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SJOMrRHGcNY.mp4/SJOMrRHGcNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SJOMrRHGcNY.m3u8/SJOMrRHGcNY.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-anxiety-around-fitting-in-obstacle/", "duration": 100, "id": "SJOMrRHGcNY", "title": "Student story: Overcoming anxiety around not fitting in as an obstacle to college", "format": "mp4", "description": "", "slug": "ss-anxiety-around-fitting-in-obstacle", "kind": "Video", "video_id": "SJOMrRHGcNY", "keywords": "", "youtube_id": "SJOMrRHGcNY", "readable_id": "ss-anxiety-around-fitting-in-obstacle"}, "gU-5bjpAPmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gU-5bjpAPmA.mp4/gU-5bjpAPmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gU-5bjpAPmA.mp4/gU-5bjpAPmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gU-5bjpAPmA.m3u8/gU-5bjpAPmA.m3u8"}, "path": "khan/humanities/history/1600s-1800s/haitian-revolution/haitian-revolution-part-2/", "duration": 1014, "id": "gU-5bjpAPmA", "title": "Haitian Revolution (Part 2)", "format": "mp4", "description": "Dessalines takes on Leclerc and Rochambeau", "slug": "haitian-revolution-part-2", "kind": "Video", "video_id": "gU-5bjpAPmA", "keywords": "haiti, independence, dessalines, leclerc, rochambeau", "youtube_id": "gU-5bjpAPmA", "readable_id": "haitian-revolution-part-2"}, "fEkK5MbG7PU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fEkK5MbG7PU.mp4/fEkK5MbG7PU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fEkK5MbG7PU.mp4/fEkK5MbG7PU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fEkK5MbG7PU.m3u8/fEkK5MbG7PU.m3u8"}, "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/spout-switches/", "duration": 625, "id": "fEkK5MbG7PU", "title": "Spout switches", "format": "mp4", "description": "", "slug": "spout-switches", "kind": "Video", "video_id": "fEkK5MbG7PU", "keywords": "", "youtube_id": "fEkK5MbG7PU", "readable_id": "spout-switches"}, "HYHc2alzdUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HYHc2alzdUk.mp4/HYHc2alzdUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HYHc2alzdUk.mp4/HYHc2alzdUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HYHc2alzdUk.m3u8/HYHc2alzdUk.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-sept-28-2012/", "duration": 175, "id": "HYHc2alzdUk", "title": "Discovery: Streambed", "format": "mp4", "description": "", "slug": "curiosity-rover-report-sept-28-2012", "kind": "Video", "video_id": "HYHc2alzdUk", "keywords": "", "youtube_id": "HYHc2alzdUk", "readable_id": "curiosity-rover-report-sept-28-2012"}, "-fIsaqN-aaQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-fIsaqN-aaQ.mp4/-fIsaqN-aaQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-fIsaqN-aaQ.mp4/-fIsaqN-aaQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-fIsaqN-aaQ.m3u8/-fIsaqN-aaQ.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/logistic-differential-equation/logistic-function-application/", "duration": 574, "id": "-fIsaqN-aaQ", "title": "Logistic function application", "format": "mp4", "description": "", "slug": "logistic-function-application", "kind": "Video", "video_id": "-fIsaqN-aaQ", "keywords": "", "youtube_id": "-fIsaqN-aaQ", "readable_id": "logistic-function-application"}, "4bilImPrYE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4bilImPrYE0.mp4/4bilImPrYE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4bilImPrYE0.mp4/4bilImPrYE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4bilImPrYE0.m3u8/4bilImPrYE0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/polyarteritis-nodosa/", "duration": 705, "id": "4bilImPrYE0", "title": "Polyarteritis nodosa", "format": "mp4", "description": "Polyarteritis nodosa is a type of vasculitis that affects small to medium arteries and leads to significant narrowing of the vasculature. Patients with polyarteritis nodosa can have symptoms like bloody diarrhea, skin lesions, and impaired motor function caused by neuropathy. Learn how health care professionals diagnose and treat polyarteritis nodosa by examining arteriograms and prescribing steroids.", "slug": "polyarteritis-nodosa", "kind": "Video", "video_id": "4bilImPrYE0", "keywords": "", "youtube_id": "4bilImPrYE0", "readable_id": "polyarteritis-nodosa"}, "DopnmxeMt-s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DopnmxeMt-s.mp4/DopnmxeMt-s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DopnmxeMt-s.mp4/DopnmxeMt-s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DopnmxeMt-s.m3u8/DopnmxeMt-s.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/algebra-linear-equations-2/", "duration": 365, "id": "DopnmxeMt-s", "title": "Algebra: Linear equations 2", "format": "mp4", "description": "solving equations of the form AX+B=C", "slug": "algebra-linear-equations-2", "kind": "Video", "video_id": "DopnmxeMt-s", "keywords": "Algebra", "youtube_id": "DopnmxeMt-s", "readable_id": "algebra-linear-equations-2"}, "BrYEuO7fwMw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BrYEuO7fwMw.mp4/BrYEuO7fwMw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BrYEuO7fwMw.mp4/BrYEuO7fwMw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BrYEuO7fwMw.m3u8/BrYEuO7fwMw.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-translations/formal-translation-tool-example/", "duration": 92, "id": "BrYEuO7fwMw", "title": "Formal translation tool example", "format": "mp4", "description": "Formal translation tool example", "slug": "formal-translation-tool-example", "kind": "Video", "video_id": "BrYEuO7fwMw", "keywords": "", "youtube_id": "BrYEuO7fwMw", "readable_id": "formal-translation-tool-example"}, "4Xaa9WdXVTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Xaa9WdXVTM.mp4/4Xaa9WdXVTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Xaa9WdXVTM.mp4/4Xaa9WdXVTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Xaa9WdXVTM.m3u8/4Xaa9WdXVTM.m3u8"}, "duration": 518, "id": "4Xaa9WdXVTM", "title": "Gas chromatography", "format": "mp4", "description": "Understand how to separate and purify chemicals through gas chromatography and how to interpret a gas chromatogram. By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/gas-chromatography/", "slug": "gas-chromatography", "kind": "Video", "video_id": "4Xaa9WdXVTM", "keywords": "gas chromatography", "youtube_id": "4Xaa9WdXVTM", "readable_id": "gas-chromatography"}, "DvV0e5F98NQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DvV0e5F98NQ.mp4/DvV0e5F98NQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DvV0e5F98NQ.mp4/DvV0e5F98NQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DvV0e5F98NQ.m3u8/DvV0e5F98NQ.m3u8"}, "duration": 298, "id": "DvV0e5F98NQ", "title": "Creating picture and bar graphs 2 exercise examples", "format": "mp4", "description": "Create and interpret bar and picture graphs.", "path": "creating-picture-and-bar-graphs-2-exercise-examples/", "slug": "creating-picture-and-bar-graphs-2-exercise-examples", "kind": "Video", "video_id": "DvV0e5F98NQ", "keywords": "", "youtube_id": "DvV0e5F98NQ", "readable_id": "creating-picture-and-bar-graphs-2-exercise-examples"}, "XfpusWEd2jE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XfpusWEd2jE.mp4/XfpusWEd2jE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XfpusWEd2jE.mp4/XfpusWEd2jE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XfpusWEd2jE.m3u8/XfpusWEd2jE.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/hagia-sophia-istanbul/", "duration": 664, "id": "XfpusWEd2jE", "title": "Hagia Sophia, Istanbul", "format": "mp4", "description": "Hagia Sophia, Istanbul, 532-37 (architects: Isidore of Miletus and Anthemius of Tralles)\nA conversation with Dr. Steven Zucker and Dr. Beth Harris", "slug": "hagia-sophia-istanbul", "kind": "Video", "video_id": "XfpusWEd2jE", "keywords": "", "youtube_id": "XfpusWEd2jE", "readable_id": "hagia-sophia-istanbul"}, "_LPh72gx6GE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_LPh72gx6GE.mp4/_LPh72gx6GE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_LPh72gx6GE.mp4/_LPh72gx6GE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_LPh72gx6GE.m3u8/_LPh72gx6GE.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/money-supply-tutorial/money-supply-m0-m1-and-m2/", "duration": 604, "id": "_LPh72gx6GE", "title": "Money supply: M0, M1, and M2", "format": "mp4", "description": "Different ways of measuring the money supply", "slug": "money-supply-m0-m1-and-m2", "kind": "Video", "video_id": "_LPh72gx6GE", "keywords": "macroeconomics, money, supply", "youtube_id": "_LPh72gx6GE", "readable_id": "money-supply-m0-m1-and-m2"}, "Vn-tOBUvnD8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vn-tOBUvnD8.mp4/Vn-tOBUvnD8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vn-tOBUvnD8.mp4/Vn-tOBUvnD8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vn-tOBUvnD8.m3u8/Vn-tOBUvnD8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-integumentary-system-physiology/rn-integumentary-system/what-lies-beneath-the-epidermis-dermis-and-hypodermis/", "duration": 607, "id": "Vn-tOBUvnD8", "title": "What lies beneath the epidermis? (Dermis and Hypodermis)", "format": "mp4", "description": "", "slug": "what-lies-beneath-the-epidermis-dermis-and-hypodermis", "kind": "Video", "video_id": "Vn-tOBUvnD8", "keywords": "", "youtube_id": "Vn-tOBUvnD8", "readable_id": "what-lies-beneath-the-epidermis-dermis-and-hypodermis"}, "peXbz0frV74": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/peXbz0frV74.mp4/peXbz0frV74.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/peXbz0frV74.mp4/peXbz0frV74.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/peXbz0frV74.m3u8/peXbz0frV74.m3u8"}, "path": "khan/science/physics/torque-angular-momentum/torque-tutorial/moments-part-2/", "duration": 830, "id": "peXbz0frV74", "title": "Moments (part 2)", "format": "mp4", "description": "2 more moment problems.", "slug": "moments-part-2", "kind": "Video", "video_id": "peXbz0frV74", "keywords": "moment, torque", "youtube_id": "peXbz0frV74", "readable_id": "moments-part-2"}, "5FBDqY41GjU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5FBDqY41GjU.mp4/5FBDqY41GjU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5FBDqY41GjU.mp4/5FBDqY41GjU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5FBDqY41GjU.m3u8/5FBDqY41GjU.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/why-we-do-the-same-thing-to-both-sides-simple-equations/", "duration": 152, "id": "5FBDqY41GjU", "title": "Why we do the same thing to both sides: Simple equations", "format": "mp4", "description": "The example of a scale where we try to achieve balance helps to explain why we do the same thing to both sides of an equation.", "slug": "why-we-do-the-same-thing-to-both-sides-simple-equations", "kind": "Video", "video_id": "5FBDqY41GjU", "keywords": "Why, we, do, the, same, thing, to, both, sides, 1", "youtube_id": "5FBDqY41GjU", "readable_id": "why-we-do-the-same-thing-to-both-sides-simple-equations"}, "TdLD2Zh-nUQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TdLD2Zh-nUQ.mp4/TdLD2Zh-nUQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TdLD2Zh-nUQ.mp4/TdLD2Zh-nUQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TdLD2Zh-nUQ.m3u8/TdLD2Zh-nUQ.m3u8"}, "duration": 590, "id": "TdLD2Zh-nUQ", "title": "Double integrals 2", "format": "mp4", "description": "Figuring out the volume under z=xy^2", "path": "khan/math/multivariable-calculus/double_triple_integrals/double_integrals/double-integrals-2/", "slug": "double-integrals-2", "kind": "Video", "video_id": "TdLD2Zh-nUQ", "keywords": "double, integral, calculus", "youtube_id": "TdLD2Zh-nUQ", "readable_id": "double-integrals-2"}, "AEIzy1kNRqo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AEIzy1kNRqo.mp4/AEIzy1kNRqo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AEIzy1kNRqo.mp4/AEIzy1kNRqo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AEIzy1kNRqo.m3u8/AEIzy1kNRqo.m3u8"}, "path": "khan/math/geometry/right_triangles_topic/pyth_theor/pythagorean-theorem/", "duration": 783, "id": "AEIzy1kNRqo", "title": "Pythagorean theorem", "format": "mp4", "description": "Pythagorean Theorem", "slug": "pythagorean-theorem", "kind": "Video", "video_id": "AEIzy1kNRqo", "keywords": "Pythagorean, Theorem, CC_8_G_7", "youtube_id": "AEIzy1kNRqo", "readable_id": "pythagorean-theorem"}, "CpDfay5NeCg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CpDfay5NeCg.mp4/CpDfay5NeCg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CpDfay5NeCg.mp4/CpDfay5NeCg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CpDfay5NeCg.m3u8/CpDfay5NeCg.m3u8"}, "duration": 171, "id": "CpDfay5NeCg", "title": "Interpreting slope of a curve exercise", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/interpreting-slope-of-a-curve-exercise/", "slug": "interpreting-slope-of-a-curve-exercise", "kind": "Video", "video_id": "CpDfay5NeCg", "keywords": "", "youtube_id": "CpDfay5NeCg", "readable_id": "interpreting-slope-of-a-curve-exercise"}, "DJY89_jC_ZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DJY89_jC_ZY.mp4/DJY89_jC_ZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DJY89_jC_ZY.mp4/DJY89_jC_ZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DJY89_jC_ZY.m3u8/DJY89_jC_ZY.m3u8"}, "path": "khan/science/health-and-medicine/healthcare-misc/cervical-spine-protection-in-airway-management-not-a-substitute-for-formal-training/", "duration": 638, "id": "DJY89_jC_ZY", "title": "Cervical spine protection in airway management (not a substitute for formal training)", "format": "mp4", "description": "Cervical Spine Protection in Airway Management. This is for education only. It is not a substitute for formal training or licensure. Every effort has been made in preparing this video to provide accurate and up-to-date information which is in accord accepted standards and practice at the time of production. We make no warranties on the information contained in the video because clinical standards are constantly changing through research and regulation. We disclaim all liability for direct or consequential damages resulting from the use of material contained in this video.", "slug": "cervical-spine-protection-in-airway-management-not-a-substitute-for-formal-training", "kind": "Video", "video_id": "DJY89_jC_ZY", "keywords": "medicine, emergency", "youtube_id": "DJY89_jC_ZY", "readable_id": "cervical-spine-protection-in-airway-management-not-a-substitute-for-formal-training"}, "SqcxYnNlI3Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SqcxYnNlI3Y.mp4/SqcxYnNlI3Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SqcxYnNlI3Y.mp4/SqcxYnNlI3Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SqcxYnNlI3Y.m3u8/SqcxYnNlI3Y.m3u8"}, "duration": 1015, "id": "SqcxYnNlI3Y", "title": "Expected value of binomial distribution", "format": "mp4", "description": "Expected value of a binomial distributed random variable", "path": "khan/math/probability/random-variables-topic/binomial_distribution/expected-value-of-binomial-distribution/", "slug": "expected-value-of-binomial-distribution", "kind": "Video", "video_id": "SqcxYnNlI3Y", "keywords": "expected, value, binomial, distribution, E(x)", "youtube_id": "SqcxYnNlI3Y", "readable_id": "expected-value-of-binomial-distribution"}, "UPoXG1Z3sI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UPoXG1Z3sI8.mp4/UPoXG1Z3sI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UPoXG1Z3sI8.mp4/UPoXG1Z3sI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UPoXG1Z3sI8.m3u8/UPoXG1Z3sI8.m3u8"}, "path": "khan/science/chemistry/chemical-reactions-stoichiome/empirical-molecular-formula/molecular-weight-percentages/", "duration": 406, "id": "UPoXG1Z3sI8", "title": "Molecular weight percentages", "format": "mp4", "description": "", "slug": "molecular-weight-percentages", "kind": "Video", "video_id": "UPoXG1Z3sI8", "keywords": "", "youtube_id": "UPoXG1Z3sI8", "readable_id": "molecular-weight-percentages"}, "p8vIcmr_Pqo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p8vIcmr_Pqo.mp4/p8vIcmr_Pqo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p8vIcmr_Pqo.mp4/p8vIcmr_Pqo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p8vIcmr_Pqo.m3u8/p8vIcmr_Pqo.m3u8"}, "path": "khan/math/precalculus/prob_comb/combinations/combination-formula/", "duration": 677, "id": "p8vIcmr_Pqo", "title": "Combination formula", "format": "mp4", "description": "", "slug": "combination-formula", "kind": "Video", "video_id": "p8vIcmr_Pqo", "keywords": "", "youtube_id": "p8vIcmr_Pqo", "readable_id": "combination-formula"}, "2nZsIeaiJUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2nZsIeaiJUo.mp4/2nZsIeaiJUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2nZsIeaiJUo.mp4/2nZsIeaiJUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2nZsIeaiJUo.m3u8/2nZsIeaiJUo.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/visualizing-equiv-fracs-pre-alg/equivalent-fraction-word-problem-example-3/", "duration": 255, "id": "2nZsIeaiJUo", "title": "Equivalent fraction word problem example 3", "format": "mp4", "description": "We're comparing fractions using the info given in this word problem. Can you find the equivalent one?", "slug": "equivalent-fraction-word-problem-example-3", "kind": "Video", "video_id": "2nZsIeaiJUo", "keywords": "", "youtube_id": "2nZsIeaiJUo", "readable_id": "equivalent-fraction-word-problem-example-3"}, "4mdEsouIXGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4mdEsouIXGM.mp4/4mdEsouIXGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4mdEsouIXGM.mp4/4mdEsouIXGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4mdEsouIXGM.m3u8/4mdEsouIXGM.m3u8"}, "path": "khan/math/recreational-math/vi-hart/mobius-strips/m-bius-story-wind-and-mr-ug/", "duration": 435, "id": "4mdEsouIXGM", "title": "Mobius story: Wind and Mr. Ug", "format": "mp4", "description": "A cautionary tale. Other Mobius videos:Candy Buttons http://www.youtube.com/watch?v=OOLIB3cjFqwM\u00f6bius Music Box http://www.youtube.com/watch?v=3iMI_uOM_fYWikipedia links:http://en.wikipedia.org/wiki/M%C3%B6bius_striphttp://en.wikipedia.org/wiki/FlatlandThis is the book you should get if you want to know all things M\u00f6bius: http://www.amazon.com/dp/1560259523?tag=vihartcom-20This story was inspired by the novel Flatland: http://www.amazon.com/dp/019953750X?tag=vihartcom-20There's a pretty cool movie version: http://www.amazon.com/dp/1604615370?tag=vihartcom-20Me: http://vihart.com", "slug": "m-bius-story-wind-and-mr-ug", "kind": "Video", "video_id": "4mdEsouIXGM", "keywords": "mathematics, math, mobius strip, m\u00f6bius, topology, flatland, vihart, vi hart, triangles, ambigrams", "youtube_id": "4mdEsouIXGM", "readable_id": "m-bius-story-wind-and-mr-ug"}, "t4jDcc8IIBM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t4jDcc8IIBM.mp4/t4jDcc8IIBM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t4jDcc8IIBM.mp4/t4jDcc8IIBM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t4jDcc8IIBM.m3u8/t4jDcc8IIBM.m3u8"}, "duration": 218, "id": "t4jDcc8IIBM", "title": "Finding initial temperature from temperature changes", "format": "mp4", "description": "In this video, we figure out the temperature in Fairbanks, Alaska by adding and subtracting negative numbers.", "path": "finding-initial-temperature-from-temperature-changes/", "slug": "finding-initial-temperature-from-temperature-changes", "kind": "Video", "video_id": "t4jDcc8IIBM", "keywords": "", "youtube_id": "t4jDcc8IIBM", "readable_id": "finding-initial-temperature-from-temperature-changes"}, "z1lwai-lIzY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z1lwai-lIzY.mp4/z1lwai-lIzY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z1lwai-lIzY.mp4/z1lwai-lIzY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z1lwai-lIzY.m3u8/z1lwai-lIzY.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/power_rule_tutorial/calculus-derivatives-3/", "duration": 590, "id": "z1lwai-lIzY", "title": "Power rule introduction (old)", "format": "mp4", "description": "Determining the derivatives of simple polynomials.", "slug": "calculus-derivatives-3", "kind": "Video", "video_id": "z1lwai-lIzY", "keywords": "derivative, calculus, math, khan, academy", "youtube_id": "z1lwai-lIzY", "readable_id": "calculus-derivatives-3"}, "Oe1PKI_6-38": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Oe1PKI_6-38.mp4/Oe1PKI_6-38.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Oe1PKI_6-38.mp4/Oe1PKI_6-38.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Oe1PKI_6-38.m3u8/Oe1PKI_6-38.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/polynomial_basics/adding-polynomials/", "duration": 130, "id": "Oe1PKI_6-38", "title": "Adding polynomials", "format": "mp4", "description": "Adding Polynomials", "slug": "adding-polynomials", "kind": "Video", "video_id": "Oe1PKI_6-38", "keywords": "u11_l2_t2_we1, Adding, Polynomials, CC_39336_A-APR_1", "youtube_id": "Oe1PKI_6-38", "readable_id": "adding-polynomials"}, "F6ZsIyKHTNI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F6ZsIyKHTNI.mp4/F6ZsIyKHTNI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F6ZsIyKHTNI.mp4/F6ZsIyKHTNI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F6ZsIyKHTNI.m3u8/F6ZsIyKHTNI.m3u8"}, "duration": 496, "id": "F6ZsIyKHTNI", "title": "Introduction to the Protestant Reformation: Varieties of Protestantism (part 3)", "format": "mp4", "description": "An Introduction to the Protestant Reformation: Varieties of Protestantism (3 of 4)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "path": "khan/humanities/renaissance-reformation/protestant-reformation1/introduction-to-the-protestant-reformation-3-of-4/", "slug": "introduction-to-the-protestant-reformation-3-of-4", "kind": "Video", "video_id": "F6ZsIyKHTNI", "keywords": "Protestant Reformation", "youtube_id": "F6ZsIyKHTNI", "readable_id": "introduction-to-the-protestant-reformation-3-of-4"}, "0WUXQNjdRvM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0WUXQNjdRvM.mp4/0WUXQNjdRvM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0WUXQNjdRvM.mp4/0WUXQNjdRvM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0WUXQNjdRvM.m3u8/0WUXQNjdRvM.m3u8"}, "duration": 198, "id": "0WUXQNjdRvM", "title": "Example: 2-digit times 2-digit", "format": "mp4", "description": "Multiplying Whole Numbers and Applications 2", "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/multiplying-whole-numbers-and-applications-2/", "slug": "multiplying-whole-numbers-and-applications-2", "kind": "Video", "video_id": "0WUXQNjdRvM", "keywords": "U01_L3_T1_we2, Multiplying, Whole, Numbers, and, Applications, CC_3_OA_5, CC_3_OA_7, CC_5_NBT_5", "youtube_id": "0WUXQNjdRvM", "readable_id": "multiplying-whole-numbers-and-applications-2"}, "EeIXVN1zUeM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EeIXVN1zUeM.mp4/EeIXVN1zUeM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EeIXVN1zUeM.mp4/EeIXVN1zUeM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EeIXVN1zUeM.m3u8/EeIXVN1zUeM.m3u8"}, "duration": 236, "id": "EeIXVN1zUeM", "title": "Visualizing derivatives exercise", "format": "mp4", "description": "Exercise available at https://www.khanacademy.org/math/calculus/differential-calculus/derivative_intro/e/visualizing_derivatives\n\nExercise made by Stephanie Chang", "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/visualizing-derivatives-exercise/", "slug": "visualizing-derivatives-exercise", "kind": "Video", "video_id": "EeIXVN1zUeM", "keywords": "", "youtube_id": "EeIXVN1zUeM", "readable_id": "visualizing-derivatives-exercise"}, "qOwCpnQsDLM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qOwCpnQsDLM.mp4/qOwCpnQsDLM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qOwCpnQsDLM.mp4/qOwCpnQsDLM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qOwCpnQsDLM.m3u8/qOwCpnQsDLM.m3u8"}, "path": "khan/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial/supernova-supernovae/", "duration": 718, "id": "qOwCpnQsDLM", "title": "Supernova (supernovae)", "format": "mp4", "description": "Supernova (Supernovae)", "slug": "supernova-supernovae", "kind": "Video", "video_id": "qOwCpnQsDLM", "keywords": "SuperNova, (SuperNovae), nova, massive, stars", "youtube_id": "qOwCpnQsDLM", "readable_id": "supernova-supernovae"}, "mObmS7E75t8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mObmS7E75t8.mp4/mObmS7E75t8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mObmS7E75t8.mp4/mObmS7E75t8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mObmS7E75t8.m3u8/mObmS7E75t8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-bronchiolitis/bronchiolitis-diagnosis/", "duration": 737, "id": "mObmS7E75t8", "title": "Bronchiolitis diagnosis", "format": "mp4", "description": "", "slug": "bronchiolitis-diagnosis", "kind": "Video", "video_id": "mObmS7E75t8", "keywords": "", "youtube_id": "mObmS7E75t8", "readable_id": "bronchiolitis-diagnosis"}, "nh_Ke1NXjsg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nh_Ke1NXjsg.mp4/nh_Ke1NXjsg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nh_Ke1NXjsg.mp4/nh_Ke1NXjsg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nh_Ke1NXjsg.m3u8/nh_Ke1NXjsg.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-behavior/physical-attraction/", "duration": 375, "id": "nh_Ke1NXjsg", "title": "Physical attraction", "format": "mp4", "description": "", "slug": "physical-attraction", "kind": "Video", "video_id": "nh_Ke1NXjsg", "keywords": "", "youtube_id": "nh_Ke1NXjsg", "readable_id": "physical-attraction"}, "MufbvU4tGh8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MufbvU4tGh8.mp4/MufbvU4tGh8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MufbvU4tGh8.mp4/MufbvU4tGh8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MufbvU4tGh8.m3u8/MufbvU4tGh8.m3u8"}, "duration": 113, "id": "MufbvU4tGh8", "title": "Subtracting decimals: example 2", "format": "mp4", "description": "We're going to practice another decimal subtraction problem. You'll need to do some regrouping.", "path": "another-example-subtracting-decimals-to-hundredths/", "slug": "another-example-subtracting-decimals-to-hundredths", "kind": "Video", "video_id": "MufbvU4tGh8", "keywords": "", "youtube_id": "MufbvU4tGh8", "readable_id": "another-example-subtracting-decimals-to-hundredths"}, "E0TNh9uWesw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E0TNh9uWesw.mp4/E0TNh9uWesw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E0TNh9uWesw.mp4/E0TNh9uWesw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E0TNh9uWesw.m3u8/E0TNh9uWesw.m3u8"}, "duration": 199, "id": "E0TNh9uWesw", "title": "Algebraic midpoint of a segment exercise", "format": "mp4", "description": "", "path": "midpoint-of-a-segment/", "slug": "midpoint-of-a-segment", "kind": "Video", "video_id": "E0TNh9uWesw", "keywords": "", "youtube_id": "E0TNh9uWesw", "readable_id": "midpoint-of-a-segment"}, "uXjQ8yc9Pdg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uXjQ8yc9Pdg.mp4/uXjQ8yc9Pdg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uXjQ8yc9Pdg.mp4/uXjQ8yc9Pdg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uXjQ8yc9Pdg.m3u8/uXjQ8yc9Pdg.m3u8"}, "duration": 782, "id": "uXjQ8yc9Pdg", "title": "Line integral example 1", "format": "mp4", "description": "Concrete example using a line integral", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals/line-integral-example-1/", "slug": "line-integral-example-1", "kind": "Video", "video_id": "uXjQ8yc9Pdg", "keywords": "line, integral, example", "youtube_id": "uXjQ8yc9Pdg", "readable_id": "line-integral-example-1"}, "2QjdcVTgTTA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2QjdcVTgTTA.mp4/2QjdcVTgTTA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2QjdcVTgTTA.mp4/2QjdcVTgTTA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2QjdcVTgTTA.m3u8/2QjdcVTgTTA.m3u8"}, "duration": 478, "id": "2QjdcVTgTTA", "title": "Unit vectors and engineering notation", "format": "mp4", "description": "Using unit vectors to represent the components of a vector", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/unit-vectors-and-engineering-notation/", "slug": "unit-vectors-and-engineering-notation", "kind": "Video", "video_id": "2QjdcVTgTTA", "keywords": "unit, vectors, engineering", "youtube_id": "2QjdcVTgTTA", "readable_id": "unit-vectors-and-engineering-notation"}, "m8yC7kR5Fuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m8yC7kR5Fuk.mp4/m8yC7kR5Fuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m8yC7kR5Fuk.mp4/m8yC7kR5Fuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m8yC7kR5Fuk.m3u8/m8yC7kR5Fuk.m3u8"}, "duration": 346, "id": "m8yC7kR5Fuk", "title": "Formal and alternate form of the derivative for ln x", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/formal-and-alternate-form-of-the-derivative-for-ln-x/", "slug": "formal-and-alternate-form-of-the-derivative-for-ln-x", "kind": "Video", "video_id": "m8yC7kR5Fuk", "keywords": "", "youtube_id": "m8yC7kR5Fuk", "readable_id": "formal-and-alternate-form-of-the-derivative-for-ln-x"}, "2RbKfRfzD-M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2RbKfRfzD-M.mp4/2RbKfRfzD-M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2RbKfRfzD-M.mp4/2RbKfRfzD-M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2RbKfRfzD-M.m3u8/2RbKfRfzD-M.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formulas-trig/sine-angle-addition-2/", "duration": 515, "id": "2RbKfRfzD-M", "title": "Sine of non special angle", "format": "mp4", "description": "", "slug": "sine-angle-addition-2", "kind": "Video", "video_id": "2RbKfRfzD-M", "keywords": "", "youtube_id": "2RbKfRfzD-M", "readable_id": "sine-angle-addition-2"}, "MAV3ZT9Byew": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MAV3ZT9Byew.mp4/MAV3ZT9Byew.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MAV3ZT9Byew.mp4/MAV3ZT9Byew.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MAV3ZT9Byew.m3u8/MAV3ZT9Byew.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/dave-smith/kauffman-dave-smith-1/", "duration": 220, "id": "MAV3ZT9Byew", "title": "Developing Value for the Product", "format": "mp4", "description": "When Dave Smith came to the harsh realization and he alone was in charge of his future, he took a resourceful route to become an expert in his field. Mixing the desire to make it with the imagination to fake it, he went to great lengths to connect with TekScape IT customers and make them believe that his tiny organization was big enough to solve their trickiest problems.", "slug": "kauffman-dave-smith-1", "kind": "Video", "video_id": "MAV3ZT9Byew", "keywords": "", "youtube_id": "MAV3ZT9Byew", "readable_id": "kauffman-dave-smith-1"}, "Wnz0vrmsRfk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wnz0vrmsRfk.mp4/Wnz0vrmsRfk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wnz0vrmsRfk.mp4/Wnz0vrmsRfk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wnz0vrmsRfk.m3u8/Wnz0vrmsRfk.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-2010-may-6-13/", "duration": 172, "id": "Wnz0vrmsRfk", "title": "13 Least possible value of z", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-13", "kind": "Video", "video_id": "Wnz0vrmsRfk", "keywords": "", "youtube_id": "Wnz0vrmsRfk", "readable_id": "sat-2010-may-6-13"}, "TC23wD34C7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TC23wD34C7k.mp4/TC23wD34C7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TC23wD34C7k.mp4/TC23wD34C7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TC23wD34C7k.m3u8/TC23wD34C7k.m3u8"}, "duration": 762, "id": "TC23wD34C7k", "title": "Inclined plane force components", "format": "mp4", "description": "Figuring out the components of the force due to gravity that are parallel and perpendicular to the surface of an inclined plane", "path": "khan/test-prep/mcat/physical-processes/forces-on-inclined-planes/inclined-plane-force-components/", "slug": "inclined-plane-force-components", "kind": "Video", "video_id": "TC23wD34C7k", "keywords": "ramp, wedge, trigonometry, geometry, physics, newton, normal, vector", "youtube_id": "TC23wD34C7k", "readable_id": "inclined-plane-force-components"}, "PI5WiM98S8U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PI5WiM98S8U.mp4/PI5WiM98S8U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PI5WiM98S8U.mp4/PI5WiM98S8U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PI5WiM98S8U.m3u8/PI5WiM98S8U.m3u8"}, "duration": 376, "id": "PI5WiM98S8U", "title": "Wire the SPDT switches", "format": "mp4", "description": "", "path": "khan/science/discoveries-projects/robots/solderless-spout-bot/solderless-spout-4/", "slug": "solderless-spout-4", "kind": "Video", "video_id": "PI5WiM98S8U", "keywords": "", "youtube_id": "PI5WiM98S8U", "readable_id": "solderless-spout-4"}, "b_qDLacdkFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b_qDLacdkFg.mp4/b_qDLacdkFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b_qDLacdkFg.mp4/b_qDLacdkFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b_qDLacdkFg.m3u8/b_qDLacdkFg.m3u8"}, "path": "khan/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial/hydroboration-oxidation-regio-stereo/", "duration": 574, "id": "b_qDLacdkFg", "title": "Hydroboration-oxidation", "format": "mp4", "description": "", "slug": "hydroboration-oxidation-regio-stereo", "kind": "Video", "video_id": "b_qDLacdkFg", "keywords": "", "youtube_id": "b_qDLacdkFg", "readable_id": "hydroboration-oxidation-regio-stereo"}, "4tLrbMstfm8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4tLrbMstfm8.mp4/4tLrbMstfm8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4tLrbMstfm8.mp4/4tLrbMstfm8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4tLrbMstfm8.m3u8/4tLrbMstfm8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/redox-reactions/balance-and-redox-reactions1/", "duration": 724, "id": "4tLrbMstfm8", "title": "Balancing redox reactions in acid", "format": "mp4", "description": "How to balance a redox reaction in acid.", "slug": "balance-and-redox-reactions1", "kind": "Video", "video_id": "4tLrbMstfm8", "keywords": "redox reaction", "youtube_id": "4tLrbMstfm8", "readable_id": "balance-and-redox-reactions1"}, "iU1oIFPM1-I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iU1oIFPM1-I.mp4/iU1oIFPM1-I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iU1oIFPM1-I.mp4/iU1oIFPM1-I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iU1oIFPM1-I.m3u8/iU1oIFPM1-I.m3u8"}, "path": "khan/science/discoveries-projects/robots/bit-zee/wiring-installing-bit-zee-s-motors/", "duration": 369, "id": "iU1oIFPM1-I", "title": "Motors/propulsion", "format": "mp4", "description": "In this video we re-wire Bit-zee's motors to include longer wires and then we re-attach them to his frame. This video shows more detail than the previous motor video and it is shot in real time. This video also shows how to route the wires.", "slug": "wiring-installing-bit-zee-s-motors", "kind": "Video", "video_id": "iU1oIFPM1-I", "keywords": "motors, wiring, Bit-zee, hair dryer", "youtube_id": "iU1oIFPM1-I", "readable_id": "wiring-installing-bit-zee-s-motors"}, "KzaPBzFFLRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KzaPBzFFLRM.mp4/KzaPBzFFLRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KzaPBzFFLRM.mp4/KzaPBzFFLRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KzaPBzFFLRM.m3u8/KzaPBzFFLRM.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/understanding-inverse-functions/", "duration": 379, "id": "KzaPBzFFLRM", "title": "Understanding inverse functions", "format": "mp4", "description": "Understanding inverse functions", "slug": "understanding-inverse-functions", "kind": "Video", "video_id": "KzaPBzFFLRM", "keywords": "", "youtube_id": "KzaPBzFFLRM", "readable_id": "understanding-inverse-functions"}, "IWigvJcCAJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IWigvJcCAJ0.mp4/IWigvJcCAJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IWigvJcCAJ0.mp4/IWigvJcCAJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IWigvJcCAJ0.m3u8/IWigvJcCAJ0.m3u8"}, "duration": 555, "id": "IWigvJcCAJ0", "title": "Introduction to the quadratic equation", "format": "mp4", "description": "Introduction to using the quadratic equation to solve 2nd degree polynomial equations", "path": "khan/math/algebra/quadratics/quadratic_odds_ends/introduction-to-the-quadratic-equation/", "slug": "introduction-to-the-quadratic-equation", "kind": "Video", "video_id": "IWigvJcCAJ0", "keywords": "quadratic, equation, khan, algebra, CC_39336_A-REI_4, CC_39336_A-REI_4_b", "youtube_id": "IWigvJcCAJ0", "readable_id": "introduction-to-the-quadratic-equation"}, "c-_yrA-GUow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/c-_yrA-GUow.mp4/c-_yrA-GUow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/c-_yrA-GUow.mp4/c-_yrA-GUow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/c-_yrA-GUow.m3u8/c-_yrA-GUow.m3u8"}, "duration": 404, "id": "c-_yrA-GUow", "title": "Understanding fractions as division", "format": "mp4", "description": "Learn how a/b and a\u00f7b are equivalent. That is, the fraction bar and the division symbol mean the same thing.", "path": "fractions-as-division/", "slug": "fractions-as-division", "kind": "Video", "video_id": "c-_yrA-GUow", "keywords": "", "youtube_id": "c-_yrA-GUow", "readable_id": "fractions-as-division"}, "AXG1OEbqV3Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AXG1OEbqV3Q.mp4/AXG1OEbqV3Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AXG1OEbqV3Q.mp4/AXG1OEbqV3Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AXG1OEbqV3Q.m3u8/AXG1OEbqV3Q.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/rect-form/figuring-out-vector-initial-point/", "duration": 337, "id": "AXG1OEbqV3Q", "title": "Figuring out vector initial point", "format": "mp4", "description": "", "slug": "figuring-out-vector-initial-point", "kind": "Video", "video_id": "AXG1OEbqV3Q", "keywords": "", "youtube_id": "AXG1OEbqV3Q", "readable_id": "figuring-out-vector-initial-point"}, "uVQXZudZd5s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uVQXZudZd5s.mp4/uVQXZudZd5s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uVQXZudZd5s.mp4/uVQXZudZd5s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uVQXZudZd5s.m3u8/uVQXZudZd5s.m3u8"}, "duration": 157, "id": "uVQXZudZd5s", "title": "Long term potentiation and synaptic plasticity", "format": "mp4", "description": "Learn about synaptic plasticity and long-term potentiation, the physiological mechanism behind learning.", "path": "khan/test-prep/mcat/processing-the-environment/memory/long-term-potentiation-and-synaptic-plasticity/", "slug": "long-term-potentiation-and-synaptic-plasticity", "kind": "Video", "video_id": "uVQXZudZd5s", "keywords": "", "youtube_id": "uVQXZudZd5s", "readable_id": "long-term-potentiation-and-synaptic-plasticity"}, "are5VmVfK7Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/are5VmVfK7Q.mp4/are5VmVfK7Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/are5VmVfK7Q.mp4/are5VmVfK7Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/are5VmVfK7Q.m3u8/are5VmVfK7Q.m3u8"}, "path": "khan/humanities/art-asia/art-japan/edo-period/ichikawa-danzo-iv/", "duration": 120, "id": "are5VmVfK7Q", "title": "The actor Ichikawa Danzo IV in a Shibaraku role", "format": "mp4", "description": "Kabuki scholar Laurence Kominz and Melinda Takeuchi, Professor in the Department of East Asian Languages and Cultures and the Department of Art History at Stanford University, discuss a woodblock print of the Kabuki actor Ichikawa Danzo IV.", "slug": "ichikawa-danzo-iv", "kind": "Video", "video_id": "are5VmVfK7Q", "keywords": "kabuki", "youtube_id": "are5VmVfK7Q", "readable_id": "ichikawa-danzo-iv"}, "KPh60w6McPI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KPh60w6McPI.mp4/KPh60w6McPI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KPh60w6McPI.mp4/KPh60w6McPI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KPh60w6McPI.m3u8/KPh60w6McPI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/sn1-sn2-alcohols/", "duration": 623, "id": "KPh60w6McPI", "title": "SN1 and SN2 reactions of alcohols", "format": "mp4", "description": "", "slug": "sn1-sn2-alcohols", "kind": "Video", "video_id": "KPh60w6McPI", "keywords": "", "youtube_id": "KPh60w6McPI", "readable_id": "sn1-sn2-alcohols"}, "GQf1vjfxuo8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GQf1vjfxuo8.mp4/GQf1vjfxuo8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GQf1vjfxuo8.mp4/GQf1vjfxuo8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GQf1vjfxuo8.m3u8/GQf1vjfxuo8.m3u8"}, "duration": 214, "id": "GQf1vjfxuo8", "title": "Systems of nonlinear equations 2", "format": "mp4", "description": "", "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/systems-of-nonlinear-equations-2/", "slug": "systems-of-nonlinear-equations-2", "kind": "Video", "video_id": "GQf1vjfxuo8", "keywords": "", "youtube_id": "GQf1vjfxuo8", "readable_id": "systems-of-nonlinear-equations-2"}, "eJQzBJ6DtoY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eJQzBJ6DtoY.mp4/eJQzBJ6DtoY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eJQzBJ6DtoY.mp4/eJQzBJ6DtoY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eJQzBJ6DtoY.m3u8/eJQzBJ6DtoY.m3u8"}, "duration": 438, "id": "eJQzBJ6DtoY", "title": "Khan Academy in Los Altos School District", "format": "mp4", "description": "", "path": "los-altos/", "slug": "los-altos", "kind": "Video", "video_id": "eJQzBJ6DtoY", "keywords": "Los, Altos, v2", "youtube_id": "eJQzBJ6DtoY", "readable_id": "los-altos"}, "zm3TXDZrifU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zm3TXDZrifU.mp4/zm3TXDZrifU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zm3TXDZrifU.mp4/zm3TXDZrifU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zm3TXDZrifU.m3u8/zm3TXDZrifU.m3u8"}, "duration": 289, "id": "zm3TXDZrifU", "title": "Subtracting mixed numbers with like denominators", "format": "mp4", "description": "Subtracting mixed numbers with like denominators", "path": "subtracting-mixed-numbers-with-like-denominators/", "slug": "subtracting-mixed-numbers-with-like-denominators", "kind": "Video", "video_id": "zm3TXDZrifU", "keywords": "", "youtube_id": "zm3TXDZrifU", "readable_id": "subtracting-mixed-numbers-with-like-denominators"}, "_MIn3zFkEcc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_MIn3zFkEcc.mp4/_MIn3zFkEcc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_MIn3zFkEcc.mp4/_MIn3zFkEcc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_MIn3zFkEcc.m3u8/_MIn3zFkEcc.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dec-rounding-estimation-pre-alg/rounding-decimals/", "duration": 86, "id": "_MIn3zFkEcc", "title": "Rounding decimals: to the nearest tenth", "format": "mp4", "description": "Rounding. Oh my....there will be so many times when rounding numbers (including decimals) will be a required skill. Let's get this down, shall we?", "slug": "rounding-decimals", "kind": "Video", "video_id": "_MIn3zFkEcc", "keywords": "U03_L1_T2_we2, Rounding, Decimals, CC_5_NBT_4", "youtube_id": "_MIn3zFkEcc", "readable_id": "rounding-decimals"}, "pANZpI9sOYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pANZpI9sOYg.mp4/pANZpI9sOYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pANZpI9sOYg.mp4/pANZpI9sOYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pANZpI9sOYg.m3u8/pANZpI9sOYg.m3u8"}, "duration": 503, "id": "pANZpI9sOYg", "title": "Systems of three variables", "format": "mp4", "description": "Systems of Three Variables", "path": "khan/math/algebra2/systems_eq_ineq/fancier_systems_precalc/systems-of-three-variables/", "slug": "systems-of-three-variables", "kind": "Video", "video_id": "pANZpI9sOYg", "keywords": "u14_l3_t1_we1, Systems, of, Three, Variables, CC_39336_A-REI_6", "youtube_id": "pANZpI9sOYg", "readable_id": "systems-of-three-variables"}, "OZtqz_xw0SQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OZtqz_xw0SQ.mp4/OZtqz_xw0SQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OZtqz_xw0SQ.mp4/OZtqz_xw0SQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OZtqz_xw0SQ.m3u8/OZtqz_xw0SQ.m3u8"}, "duration": 353, "id": "OZtqz_xw0SQ", "title": "Example 4: Applying the quadratic formula", "format": "mp4", "description": "Application Problem with Quadratic Formula", "path": "khan/math/algebra/quadratics/quadratic-formula/application-problem-with-quadratic-formula/", "slug": "application-problem-with-quadratic-formula", "kind": "Video", "video_id": "OZtqz_xw0SQ", "keywords": "u16_l5_t2_we5, Application, Problem, with, Quadratic, Formula", "youtube_id": "OZtqz_xw0SQ", "readable_id": "application-problem-with-quadratic-formula"}, "5wUJLMWZ5Fw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5wUJLMWZ5Fw.mp4/5wUJLMWZ5Fw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5wUJLMWZ5Fw.mp4/5wUJLMWZ5Fw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5wUJLMWZ5Fw.m3u8/5wUJLMWZ5Fw.m3u8"}, "duration": 272, "id": "5wUJLMWZ5Fw", "title": "Solving rational equations 3", "format": "mp4", "description": "Solving Rational Equations 3", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/solving-rational-equations-3/", "slug": "solving-rational-equations-3", "kind": "Video", "video_id": "5wUJLMWZ5Fw", "keywords": "U11_L2_T1_we3, Solving, Rational, Equations, CC_39336_A-APR_7, CC_39336_A-REI_2, CC_39336_A-SSE_2", "youtube_id": "5wUJLMWZ5Fw", "readable_id": "solving-rational-equations-3"}, "33TYoybjqPg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/33TYoybjqPg.mp4/33TYoybjqPg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/33TYoybjqPg.mp4/33TYoybjqPg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/33TYoybjqPg.m3u8/33TYoybjqPg.m3u8"}, "duration": 454, "id": "33TYoybjqPg", "title": "Laplace transform 2", "format": "mp4", "description": "Laplace transform of e^at", "path": "khan/math/differential-equations/laplace-transform/laplace-transform-tutorial/laplace-transform-2/", "slug": "laplace-transform-2", "kind": "Video", "video_id": "33TYoybjqPg", "keywords": "laplace, transform", "youtube_id": "33TYoybjqPg", "readable_id": "laplace-transform-2"}, "6nZp2QGeQ9k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6nZp2QGeQ9k.mp4/6nZp2QGeQ9k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6nZp2QGeQ9k.mp4/6nZp2QGeQ9k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6nZp2QGeQ9k.m3u8/6nZp2QGeQ9k.m3u8"}, "duration": 84, "id": "6nZp2QGeQ9k", "title": "Identity property of 1", "format": "mp4", "description": "Identity Property of 1", "path": "khan/math/pre-algebra/order-of-operations/arithmetic_properties/identity-property-of-1/", "slug": "identity-property-of-1", "kind": "Video", "video_id": "6nZp2QGeQ9k", "keywords": "U01_L4_T1_we2, Identity, Property, of, CC_6_EE_2_c", "youtube_id": "6nZp2QGeQ9k", "readable_id": "identity-property-of-1"}, "1HYSMxu-Dns": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1HYSMxu-Dns.mp4/1HYSMxu-Dns.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1HYSMxu-Dns.mp4/1HYSMxu-Dns.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1HYSMxu-Dns.m3u8/1HYSMxu-Dns.m3u8"}, "duration": 454, "id": "1HYSMxu-Dns", "title": "Weaknesses of fractional reserve lending", "format": "mp4", "description": "Weaknesses of Fractional Reserve Lending", "path": "khan/economics-finance-domain/macroeconomics/monetary-system-topic/fractional-reserve-banking-tut/weaknesses-of-fractional-reserve-lending/", "slug": "weaknesses-of-fractional-reserve-lending", "kind": "Video", "video_id": "1HYSMxu-Dns", "keywords": "macroeconomics, bank, run", "youtube_id": "1HYSMxu-Dns", "readable_id": "weaknesses-of-fractional-reserve-lending"}, "2eTTJMrINNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2eTTJMrINNo.mp4/2eTTJMrINNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2eTTJMrINNo.mp4/2eTTJMrINNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2eTTJMrINNo.m3u8/2eTTJMrINNo.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/discrimination/discrimination-individual-vs-institutional/", "duration": 257, "id": "2eTTJMrINNo", "title": "Discrimination individual vs institutional", "format": "mp4", "description": "", "slug": "discrimination-individual-vs-institutional", "kind": "Video", "video_id": "2eTTJMrINNo", "keywords": "", "youtube_id": "2eTTJMrINNo", "readable_id": "discrimination-individual-vs-institutional"}, "uG2VpBYd-Hk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uG2VpBYd-Hk.mp4/uG2VpBYd-Hk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uG2VpBYd-Hk.mp4/uG2VpBYd-Hk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uG2VpBYd-Hk.m3u8/uG2VpBYd-Hk.m3u8"}, "duration": 661, "id": "uG2VpBYd-Hk", "title": "GMAT: Math 32", "format": "mp4", "description": "163-166, pg. 174", "path": "khan/test-prep/gmat/problem-solving/gmat-math-32/", "slug": "gmat-math-32", "kind": "Video", "video_id": "uG2VpBYd-Hk", "keywords": "gmat, math, problem, solving", "youtube_id": "uG2VpBYd-Hk", "readable_id": "gmat-math-32"}, "etmRI2_9Q_A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/etmRI2_9Q_A.mp4/etmRI2_9Q_A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/etmRI2_9Q_A.mp4/etmRI2_9Q_A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/etmRI2_9Q_A.m3u8/etmRI2_9Q_A.m3u8"}, "duration": 617, "id": "etmRI2_9Q_A", "title": "Russia, the Kievan Rus, and the Mongols", "format": "mp4", "description": "In which John Green teaches you how Russia evolved from a loose amalgamation of medieval principalities known as the Kievan Rus into the thriving democracy we know today. As you can imagine, there were a few bumps along the road. It turns out, our old friends the Mongols had quite a lot to do with unifying Russia. In yet another example of how surprisingly organized nomadic raiders can be, the Mongols brought the Kievan Rus together under a single leadership, and concentrated power in Moscow. This set the stage for the various Ivans (the Great and the Terrible) to throw off the yoke and form a pan-Russian nation ruled by an autocratic leader. More than 500 years later, we still have autocratic leadership in Russia. All this, plus a rundown of some of our favorite atrocities of Ivan the Terrible, and a visit from Putin!", "path": "khan/humanities/history/crashcourse-worldhistory/road-trip-conquest-trade-2/crash-course-world-history-20/", "slug": "crash-course-world-history-20", "kind": "Video", "video_id": "etmRI2_9Q_A", "keywords": "crash course", "youtube_id": "etmRI2_9Q_A", "readable_id": "crash-course-world-history-20"}, "h0J_RnRILJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h0J_RnRILJ0.mp4/h0J_RnRILJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h0J_RnRILJ0.mp4/h0J_RnRILJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h0J_RnRILJ0.m3u8/h0J_RnRILJ0.m3u8"}, "path": "khan/test-prep/ap-art-history/global-prehistory-ap/paleolithic-mesolithic-neolithic/stonehenge-unesconhk/", "duration": 196, "id": "h0J_RnRILJ0", "title": "Stonehenge, Avebury and Associated Sites (UNESCO/NHK)", "format": "mp4", "description": "Stonehenge and Avebury, in Wiltshire, are among the most famous groups of megaliths in the world. The two sanctuaries consist of circles of menhirs arranged in a pattern whose astronomical significance is still being explored. These holy places and the nearby Neolithic sites are an incomparable testimony to prehistoric times. Source: UNESCO TV / \u00a9 NHK Nippon Hoso Kyokai URL: http://whc.unesco.org/en/list/373/", "slug": "stonehenge-unesconhk", "kind": "Video", "video_id": "h0J_RnRILJ0", "keywords": "", "youtube_id": "h0J_RnRILJ0", "readable_id": "stonehenge-unesconhk"}, "dqn5CgMFfDY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dqn5CgMFfDY.mp4/dqn5CgMFfDY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dqn5CgMFfDY.mp4/dqn5CgMFfDY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dqn5CgMFfDY.m3u8/dqn5CgMFfDY.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/hrair-sarkissian/", "duration": 182, "id": "dqn5CgMFfDY", "title": "Hrair Sarkissian: Syria's \"Execution Squares\"", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nSyrian artist Hrair Sarkissian was profoundly marked after witnessing a public execution as a child. Having grown up around photographs, Sarkissian decided to use his craft to engage with and document the places that have haunted him the most. Taken in the Syrian cities of Damascus, Aleppo, and Lattakia, Execution Squares takes us to the major public squares in which executions have taken place for civil rather than political crimes. Sarkissian photographed the squares in the early morning when the streets were quiet, around the time when executions are typically carried out.\nDoes seeing these empty squares encourage you to imagine that these peaceful places, and that no such acts of violence could have occurred there? Or does knowing Sarkissian\u2019s stories of what really happened give these photographs new meaning?\n", "slug": "hrair-sarkissian", "kind": "Video", "video_id": "dqn5CgMFfDY", "keywords": "Tate", "youtube_id": "dqn5CgMFfDY", "readable_id": "hrair-sarkissian"}, "itQEwESWDKg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/itQEwESWDKg.mp4/itQEwESWDKg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/itQEwESWDKg.mp4/itQEwESWDKg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/itQEwESWDKg.m3u8/itQEwESWDKg.m3u8"}, "path": "khan/math/probability/statistics-inferential/normal_distribution/ck12-org-more-empirical-rule-and-z-score-practice/", "duration": 357, "id": "itQEwESWDKg", "title": "ck12.org: More empirical rule and z-score practice", "format": "mp4", "description": "More Empirical Rule and Z-score practice", "slug": "ck12-org-more-empirical-rule-and-z-score-practice", "kind": "Video", "video_id": "itQEwESWDKg", "keywords": "empirical, rule, z-score, CC_6_SP_5_c, CC_7_SP_2", "youtube_id": "itQEwESWDKg", "readable_id": "ck12-org-more-empirical-rule-and-z-score-practice"}, "2EwTHdg-xgw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2EwTHdg-xgw.mp4/2EwTHdg-xgw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2EwTHdg-xgw.mp4/2EwTHdg-xgw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2EwTHdg-xgw.m3u8/2EwTHdg-xgw.m3u8"}, "path": "khan/math/probability/regression/prob-stats-scatter-plots/comparing-models-to-fit-data/", "duration": 245, "id": "2EwTHdg-xgw", "title": "Comparing models to fit data", "format": "mp4", "description": "", "slug": "comparing-models-to-fit-data", "kind": "Video", "video_id": "2EwTHdg-xgw", "keywords": "", "youtube_id": "2EwTHdg-xgw", "readable_id": "comparing-models-to-fit-data"}, "UkXI-zPcDIM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UkXI-zPcDIM.mp4/UkXI-zPcDIM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UkXI-zPcDIM.mp4/UkXI-zPcDIM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UkXI-zPcDIM.m3u8/UkXI-zPcDIM.m3u8"}, "path": "khan/economics-finance-domain/microeconomics/nash-equilibrium-tutorial/nash-eq-tutorial/prisoners-dilemma-and-nash-equilibrium/", "duration": 561, "id": "UkXI-zPcDIM", "title": "Prisoners' dilemma and Nash equilibrium", "format": "mp4", "description": "Why two not-so-loyal criminals would want to snitch each other out", "slug": "prisoners-dilemma-and-nash-equilibrium", "kind": "Video", "video_id": "UkXI-zPcDIM", "keywords": "microeconomics, payoff, matrix", "youtube_id": "UkXI-zPcDIM", "readable_id": "prisoners-dilemma-and-nash-equilibrium"}, "Kv-hRvEOjuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kv-hRvEOjuA.mp4/Kv-hRvEOjuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kv-hRvEOjuA.mp4/Kv-hRvEOjuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kv-hRvEOjuA.m3u8/Kv-hRvEOjuA.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/emission-spectrum-of-hydrogen/", "duration": 650, "id": "Kv-hRvEOjuA", "title": "Emission spectrum of hydrogen", "format": "mp4", "description": "", "slug": "emission-spectrum-of-hydrogen", "kind": "Video", "video_id": "Kv-hRvEOjuA", "keywords": "", "youtube_id": "Kv-hRvEOjuA", "readable_id": "emission-spectrum-of-hydrogen"}, "8zgvzmKZ5vo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8zgvzmKZ5vo.mp4/8zgvzmKZ5vo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8zgvzmKZ5vo.mp4/8zgvzmKZ5vo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8zgvzmKZ5vo.m3u8/8zgvzmKZ5vo.m3u8"}, "duration": 916, "id": "8zgvzmKZ5vo", "title": "Bitcoin: The security of transaction block chains", "format": "mp4", "description": "A detailed explanation of what makes bitcoin transaction block chains secure.", "path": "bitcoin-security-of-transaction-block-chains/", "slug": "bitcoin-security-of-transaction-block-chains", "kind": "Video", "video_id": "8zgvzmKZ5vo", "keywords": "", "youtube_id": "8zgvzmKZ5vo", "readable_id": "bitcoin-security-of-transaction-block-chains"}, "jgnNhL2jSXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jgnNhL2jSXY.mp4/jgnNhL2jSXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jgnNhL2jSXY.mp4/jgnNhL2jSXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jgnNhL2jSXY.m3u8/jgnNhL2jSXY.m3u8"}, "path": "khan/partner-content/lebron-asks-subject/lebron-asks/lebron-asks-why-does-sweating-cool-you-down/", "duration": 341, "id": "jgnNhL2jSXY", "title": "LeBron Asks: Why does sweating cool you down?", "format": "mp4", "description": "LeBron asks Sal why sweating helps cool the body down.", "slug": "lebron-asks-why-does-sweating-cool-you-down", "kind": "Video", "video_id": "jgnNhL2jSXY", "keywords": "lebron, khan, academy, evaporative, cooling", "youtube_id": "jgnNhL2jSXY", "readable_id": "lebron-asks-why-does-sweating-cool-you-down"}, "UZ1YE68HszU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UZ1YE68HszU.mp4/UZ1YE68HszU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UZ1YE68HszU.mp4/UZ1YE68HszU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UZ1YE68HszU.m3u8/UZ1YE68HszU.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/knowing-solar-system-earth/bhp-intro-geologic-timechart/", "duration": 397, "id": "UZ1YE68HszU", "title": "Introduction to the Geologic Time Chart", "format": "mp4", "description": "Earth's 4.6 billion-year history has distinct periods. Geologists use evidence in rock record to classify these.", "slug": "bhp-intro-geologic-timechart", "kind": "Video", "video_id": "UZ1YE68HszU", "keywords": "", "youtube_id": "UZ1YE68HszU", "readable_id": "bhp-intro-geologic-timechart"}, "ZyOhRgnFmIY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZyOhRgnFmIY.mp4/ZyOhRgnFmIY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZyOhRgnFmIY.mp4/ZyOhRgnFmIY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZyOhRgnFmIY.m3u8/ZyOhRgnFmIY.m3u8"}, "path": "khan/math/geometry/basic-geometry/circum_area_circles/area-of-a-circle/", "duration": 242, "id": "ZyOhRgnFmIY", "title": "Area of a circle", "format": "mp4", "description": "In this example, we solve for the area of a circle when given the diameter. If you recall, the diameter is the length of a line that runs across the circle and through the center.", "slug": "area-of-a-circle", "kind": "Video", "video_id": "ZyOhRgnFmIY", "keywords": "u07_l2_t3_we3, Area, of, Circle", "youtube_id": "ZyOhRgnFmIY", "readable_id": "area-of-a-circle"}, "tKDET9t8VTI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tKDET9t8VTI.mp4/tKDET9t8VTI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tKDET9t8VTI.mp4/tKDET9t8VTI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tKDET9t8VTI.m3u8/tKDET9t8VTI.m3u8"}, "path": "khan/science/health-and-medicine/healthcare-misc/als-ice-bucket-challenge/", "duration": 243, "id": "tKDET9t8VTI", "title": "ALS - Amyotrophic lateral sclerosis", "format": "mp4", "description": "Sal explains the disease ALS, amyotrophic lateral sclerosis, and takes the \"ice bucket challenge.\"", "slug": "als-ice-bucket-challenge", "kind": "Video", "video_id": "tKDET9t8VTI", "keywords": "als", "youtube_id": "tKDET9t8VTI", "readable_id": "als-ice-bucket-challenge"}, "u6gpw_Deth8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u6gpw_Deth8.mp4/u6gpw_Deth8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u6gpw_Deth8.mp4/u6gpw_Deth8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u6gpw_Deth8.m3u8/u6gpw_Deth8.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/influenza/vaccines-and-the-autism-myth-part-1/", "duration": 591, "id": "u6gpw_Deth8", "title": "Vaccines and the autism myth - part 1", "format": "mp4", "description": "The infamous Wakefield study kickstarted the Autism Myth, but many studies have since shown that there is no link between the MMR Vaccine and autism. Find out how it all got started. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "vaccines-and-the-autism-myth-part-1", "kind": "Video", "video_id": "u6gpw_Deth8", "keywords": "", "youtube_id": "u6gpw_Deth8", "readable_id": "vaccines-and-the-autism-myth-part-1"}, "vQLcxlvK7Ik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vQLcxlvK7Ik.mp4/vQLcxlvK7Ik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vQLcxlvK7Ik.mp4/vQLcxlvK7Ik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vQLcxlvK7Ik.m3u8/vQLcxlvK7Ik.m3u8"}, "duration": 619, "id": "vQLcxlvK7Ik", "title": "Group trend for ionization energy", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/periodic-table-of-elements/group-trend-for-ionization-energy/", "slug": "group-trend-for-ionization-energy", "kind": "Video", "video_id": "vQLcxlvK7Ik", "keywords": "", "youtube_id": "vQLcxlvK7Ik", "readable_id": "group-trend-for-ionization-energy"}, "xc-TSAQkqJ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xc-TSAQkqJ0.mp4/xc-TSAQkqJ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xc-TSAQkqJ0.mp4/xc-TSAQkqJ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xc-TSAQkqJ0.m3u8/xc-TSAQkqJ0.m3u8"}, "duration": 489, "id": "xc-TSAQkqJ0", "title": "Why Europe is worried about Greece", "format": "mp4", "description": "Why the Greek situation is scary for Europe as a whole", "path": "khan/economics-finance-domain/core-finance/money-and-banking/greek-debt-crisis/why-europe-is-worried-about-greece/", "slug": "why-europe-is-worried-about-greece", "kind": "Video", "video_id": "xc-TSAQkqJ0", "keywords": "eurozone, crisis, greece, marquee", "youtube_id": "xc-TSAQkqJ0", "readable_id": "why-europe-is-worried-about-greece"}, "-vp1X7_u3KU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-vp1X7_u3KU.mp4/-vp1X7_u3KU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-vp1X7_u3KU.mp4/-vp1X7_u3KU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-vp1X7_u3KU.m3u8/-vp1X7_u3KU.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/taste-gustation-and-smell-olfaction/gustation-structure-and-function/", "duration": 751, "id": "-vp1X7_u3KU", "title": "Gustation - structure and function", "format": "mp4", "description": "", "slug": "gustation-structure-and-function", "kind": "Video", "video_id": "-vp1X7_u3KU", "keywords": "", "youtube_id": "-vp1X7_u3KU", "readable_id": "gustation-structure-and-function"}, "cbD_MVIUBf8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cbD_MVIUBf8.mp4/cbD_MVIUBf8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cbD_MVIUBf8.mp4/cbD_MVIUBf8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cbD_MVIUBf8.m3u8/cbD_MVIUBf8.m3u8"}, "duration": 357, "id": "cbD_MVIUBf8", "title": "Video tour: Teaching programming in the classroom", "format": "mp4", "description": "", "path": "teaching-computing-video-overview/", "slug": "teaching-computing-video-overview", "kind": "Video", "video_id": "cbD_MVIUBf8", "keywords": "", "youtube_id": "cbD_MVIUBf8", "readable_id": "teaching-computing-video-overview"}, "pi3WWQ0q6Lc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pi3WWQ0q6Lc.mp4/pi3WWQ0q6Lc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pi3WWQ0q6Lc.mp4/pi3WWQ0q6Lc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pi3WWQ0q6Lc.m3u8/pi3WWQ0q6Lc.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-fractions/multiplying-negative-and-positive-fractions/", "duration": 273, "id": "pi3WWQ0q6Lc", "title": "Multiplying negative and positive fractions", "format": "mp4", "description": "See examples of multiplying and dividing fractions with negative numbers.", "slug": "multiplying-negative-and-positive-fractions", "kind": "Video", "video_id": "pi3WWQ0q6Lc", "keywords": "", "youtube_id": "pi3WWQ0q6Lc", "readable_id": "multiplying-negative-and-positive-fractions"}, "XF5r_aWrHNg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XF5r_aWrHNg.mp4/XF5r_aWrHNg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XF5r_aWrHNg.mp4/XF5r_aWrHNg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XF5r_aWrHNg.m3u8/XF5r_aWrHNg.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/discrimination/stereotypes-stereotype-threat-and-self-fulfilling-prophecy/", "duration": 374, "id": "XF5r_aWrHNg", "title": "Stereotypes stereotype threat, and self fulfilling prophecy", "format": "mp4", "description": "", "slug": "stereotypes-stereotype-threat-and-self-fulfilling-prophecy", "kind": "Video", "video_id": "XF5r_aWrHNg", "keywords": "", "youtube_id": "XF5r_aWrHNg", "readable_id": "stereotypes-stereotype-threat-and-self-fulfilling-prophecy"}, "17a443nL7Qw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/17a443nL7Qw.mp4/17a443nL7Qw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/17a443nL7Qw.mp4/17a443nL7Qw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/17a443nL7Qw.m3u8/17a443nL7Qw.m3u8"}, "duration": 114, "id": "17a443nL7Qw", "title": "One-step inequality involving addition", "format": "mp4", "description": "One-Step Inequalities", "path": "khan/math/algebra/linear_inequalities/inequalities/one-step-inequalities/", "slug": "one-step-inequalities", "kind": "Video", "video_id": "17a443nL7Qw", "keywords": "u10_l2_t1_we2, One-Step, Inequalities, CC_6_EE_8, CC_6_NS_6_c, CC_6_NS_7_a, CC_7_EE_4, CC_39336_A-CED_1, CC_39336_A-CED_3", "youtube_id": "17a443nL7Qw", "readable_id": "one-step-inequalities"}, "KtkR_NTte4M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KtkR_NTte4M.mp4/KtkR_NTte4M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KtkR_NTte4M.mp4/KtkR_NTte4M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KtkR_NTte4M.m3u8/KtkR_NTte4M.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pulmonary-hypertension/what-is-pulmonary-hypertension/", "duration": 243, "id": "KtkR_NTte4M", "title": "What is pulmonary hypertension?", "format": "mp4", "description": "", "slug": "what-is-pulmonary-hypertension", "kind": "Video", "video_id": "KtkR_NTte4M", "keywords": "", "youtube_id": "KtkR_NTte4M", "readable_id": "what-is-pulmonary-hypertension"}, "xcLKlPTG97k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xcLKlPTG97k.mp4/xcLKlPTG97k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xcLKlPTG97k.mp4/xcLKlPTG97k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xcLKlPTG97k.m3u8/xcLKlPTG97k.m3u8"}, "duration": 479, "id": "xcLKlPTG97k", "title": "Self esteem, self efficacy, and locus of control", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/individuals-and-society/self-identity/self-esteem-self-efficacy-and-locus-of-control/", "slug": "self-esteem-self-efficacy-and-locus-of-control", "kind": "Video", "video_id": "xcLKlPTG97k", "keywords": "", "youtube_id": "xcLKlPTG97k", "readable_id": "self-esteem-self-efficacy-and-locus-of-control"}, "bU0BQUa11ek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bU0BQUa11ek.mp4/bU0BQUa11ek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bU0BQUa11ek.mp4/bU0BQUa11ek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bU0BQUa11ek.m3u8/bU0BQUa11ek.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/self-presentation-and-interacting-with-others/charles-cooley-looking-glass-self/", "duration": 194, "id": "bU0BQUa11ek", "title": "Charles Cooley- Looking glass self", "format": "mp4", "description": "", "slug": "charles-cooley-looking-glass-self", "kind": "Video", "video_id": "bU0BQUa11ek", "keywords": "", "youtube_id": "bU0BQUa11ek", "readable_id": "charles-cooley-looking-glass-self"}, "JQXB-ChOV20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JQXB-ChOV20.mp4/JQXB-ChOV20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JQXB-ChOV20.mp4/JQXB-ChOV20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JQXB-ChOV20.m3u8/JQXB-ChOV20.m3u8"}, "duration": 173, "id": "JQXB-ChOV20", "title": "\"Threshold\" with Keith Christiansen", "format": "mp4", "description": "Met curator Keith Christiansen on timelessness in Berlinghiero\u2019s Madonna and Child.\n\nOf exceptional beauty and importance, this painting may date to the 1230s and is one of only two works that can be confidently assigned to Berlinghiero, the leading painter in Lucca. It follows the Byzantine type known as the Hodegetria (\"She who shows the way\"), familiar from icons that arrived in Italy following the fall of Constantinople in 1204. The Madonna points to Jesus as the way to salvation; dressed like an ancient philosopher, he holds a scroll. One scholar has noted: \"Berlinghiero\u2019s work operates with nuances . . . These nuances include the proportions of the figures, the interplay of their bodies and halos, and the language of gestures, with their gentle flow and their subtle meaning on both human and theological levels.\"\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\u00a0\n", "path": "threshhold/", "slug": "threshhold", "kind": "Video", "video_id": "JQXB-ChOV20", "keywords": "belief, painting, transcendence, wood, Europe", "youtube_id": "JQXB-ChOV20", "readable_id": "threshhold"}, "5LMzbgfZ8cA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5LMzbgfZ8cA.mp4/5LMzbgfZ8cA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5LMzbgfZ8cA.mp4/5LMzbgfZ8cA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5LMzbgfZ8cA.m3u8/5LMzbgfZ8cA.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/divergence-telescoping-series/", "duration": 293, "id": "5LMzbgfZ8cA", "title": "Divergence of telescoping series", "format": "mp4", "description": "", "slug": "divergence-telescoping-series", "kind": "Video", "video_id": "5LMzbgfZ8cA", "keywords": "", "youtube_id": "5LMzbgfZ8cA", "readable_id": "divergence-telescoping-series"}, "AoRpWU6hHJ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AoRpWU6hHJ8.mp4/AoRpWU6hHJ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AoRpWU6hHJ8.mp4/AoRpWU6hHJ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AoRpWU6hHJ8.m3u8/AoRpWU6hHJ8.m3u8"}, "duration": 515, "id": "AoRpWU6hHJ8", "title": "Fascism and Mussolini", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/mussolini-fascism/fascism-and-mussolini/", "slug": "fascism-and-mussolini", "kind": "Video", "video_id": "AoRpWU6hHJ8", "keywords": "", "youtube_id": "AoRpWU6hHJ8", "readable_id": "fascism-and-mussolini"}, "sQpAYcxSVEg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sQpAYcxSVEg.mp4/sQpAYcxSVEg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sQpAYcxSVEg.mp4/sQpAYcxSVEg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sQpAYcxSVEg.m3u8/sQpAYcxSVEg.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/ingres-princess-de-broglie-1851-53/", "duration": 203, "id": "sQpAYcxSVEg", "title": "Ingres, Princesse de Broglie", "format": "mp4", "description": "Jean-Auguste-Dominique Ingres,\u00a0Princesse de Broglie, oil on canvas,\u00a01851\u201353\u00a0(The Metropolitan Museum of Art).\u00a0Speakers:\u00a0Dr. Beth Harris,\u00a0Dr. Steven Zucker", "slug": "ingres-princess-de-broglie-1851-53", "kind": "Video", "video_id": "sQpAYcxSVEg", "keywords": "Ingres, Smarthsitory, art, art history, romanticism, Princess, portrait", "youtube_id": "sQpAYcxSVEg", "readable_id": "ingres-princess-de-broglie-1851-53"}, "Lvr2YsxG10o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Lvr2YsxG10o.mp4/Lvr2YsxG10o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Lvr2YsxG10o.mp4/Lvr2YsxG10o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Lvr2YsxG10o.m3u8/Lvr2YsxG10o.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/describing-the-meaning-of-percent/", "duration": 181, "id": "Lvr2YsxG10o", "title": "The meaning of percent", "format": "mp4", "description": "Let's think about what percent really means by looking at a 10 by 10 grid.", "slug": "describing-the-meaning-of-percent", "kind": "Video", "video_id": "Lvr2YsxG10o", "keywords": "U05_L1_T1_we1, Describing, the, Meaning, of, Percent, CC_6_RP_3_c", "youtube_id": "Lvr2YsxG10o", "readable_id": "describing-the-meaning-of-percent"}, "JRrm8TfBj1c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JRrm8TfBj1c.mp4/JRrm8TfBj1c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JRrm8TfBj1c.mp4/JRrm8TfBj1c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JRrm8TfBj1c.m3u8/JRrm8TfBj1c.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/contractility-ea-and-preload-effects-on-pv-boxes/", "duration": 791, "id": "JRrm8TfBj1c", "title": "Contractility, Ea, and preload effects on PV boxes", "format": "mp4", "description": "See how contractility, Ea (arterial elastance), and preload each have an effect on PV Boxes. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "contractility-ea-and-preload-effects-on-pv-boxes", "kind": "Video", "video_id": "JRrm8TfBj1c", "keywords": "", "youtube_id": "JRrm8TfBj1c", "readable_id": "contractility-ea-and-preload-effects-on-pv-boxes"}, "M_ADc9jkBig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M_ADc9jkBig.mp4/M_ADc9jkBig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M_ADc9jkBig.mp4/M_ADc9jkBig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M_ADc9jkBig.m3u8/M_ADc9jkBig.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-4c/", "duration": 264, "id": "M_ADc9jkBig", "title": "2011 Calculus AB free response #4c", "format": "mp4", "description": "Finding the points of inflection for a strangely defined function", "slug": "2011-calculus-ab-free-response-4c", "kind": "Video", "video_id": "M_ADc9jkBig", "keywords": "inflection, advanced, placement, ap", "youtube_id": "M_ADc9jkBig", "readable_id": "2011-calculus-ab-free-response-4c"}, "UmiZK6Hgm6c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UmiZK6Hgm6c.mp4/UmiZK6Hgm6c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UmiZK6Hgm6c.mp4/UmiZK6Hgm6c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UmiZK6Hgm6c.m3u8/UmiZK6Hgm6c.m3u8"}, "path": "khan/math/geometry/cc-geometry-circles/area-inscribed-triangle/area-of-inscribed-equilateral-triangle-some-basic-trig-used/", "duration": 699, "id": "UmiZK6Hgm6c", "title": "Area of inscribed equilateral triangle (some basic trig used)", "format": "mp4", "description": "Problem that requires us to figure out the area of an equilateral triangle inscribed in a circle (A little trigonometry used)", "slug": "area-of-inscribed-equilateral-triangle-some-basic-trig-used", "kind": "Video", "video_id": "UmiZK6Hgm6c", "keywords": "area, equilateral, triangle, circumscribed, inscribed", "youtube_id": "UmiZK6Hgm6c", "readable_id": "area-of-inscribed-equilateral-triangle-some-basic-trig-used"}, "iyaq_zkxpqI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iyaq_zkxpqI.mp4/iyaq_zkxpqI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iyaq_zkxpqI.mp4/iyaq_zkxpqI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iyaq_zkxpqI.m3u8/iyaq_zkxpqI.m3u8"}, "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/biological-and-sociocultural-factors-food-sex-and-drugs/", "duration": 567, "id": "iyaq_zkxpqI", "title": "Biological and Sociocultural Factors Food, Sex, and Drugs", "format": "mp4", "description": "", "slug": "biological-and-sociocultural-factors-food-sex-and-drugs", "kind": "Video", "video_id": "iyaq_zkxpqI", "keywords": "", "youtube_id": "iyaq_zkxpqI", "readable_id": "biological-and-sociocultural-factors-food-sex-and-drugs"}, "joQd0qVnX4M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/joQd0qVnX4M.mp4/joQd0qVnX4M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/joQd0qVnX4M.mp4/joQd0qVnX4M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/joQd0qVnX4M.m3u8/joQd0qVnX4M.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes-cycloalkanes-bicyclic/alkane-and-cycloalkane-nomenclature-iii/", "duration": 786, "id": "joQd0qVnX4M", "title": "Alkane and cycloalkane nomenclature iii", "format": "mp4", "description": "", "slug": "alkane-and-cycloalkane-nomenclature-iii", "kind": "Video", "video_id": "joQd0qVnX4M", "keywords": "", "youtube_id": "joQd0qVnX4M", "readable_id": "alkane-and-cycloalkane-nomenclature-iii"}, "OnMgmzH1koQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OnMgmzH1koQ.mp4/OnMgmzH1koQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OnMgmzH1koQ.mp4/OnMgmzH1koQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OnMgmzH1koQ.m3u8/OnMgmzH1koQ.m3u8"}, "duration": 241, "id": "OnMgmzH1koQ", "title": "Film meets art: Mike Leigh inspired by JMW Turner", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nFilm director Mike Leigh takes time out from shooting\u00a0Mr. Turner,\u00a0a film based on the life and work of renowned painter JMW Turner. Join Leigh as he explores Turner's drawings and archives, taking detailed scenes from the artist's sketches and recreating them for the camera.", "path": "mike-leigh-inspired-by-turner/", "slug": "mike-leigh-inspired-by-turner", "kind": "Video", "video_id": "OnMgmzH1koQ", "keywords": "Tate, Turner", "youtube_id": "OnMgmzH1koQ", "readable_id": "mike-leigh-inspired-by-turner"}, "YRw8udexH4o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YRw8udexH4o.mp4/YRw8udexH4o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YRw8udexH4o.mp4/YRw8udexH4o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YRw8udexH4o.m3u8/YRw8udexH4o.m3u8"}, "path": "khan/math/differential-calculus/limits_topic/old-limits-tutorial/limit-examples-part-2/", "duration": 417, "id": "YRw8udexH4o", "title": "Limit examples (part 2)", "format": "mp4", "description": "More limit examples", "slug": "limit-examples-part-2", "kind": "Video", "video_id": "YRw8udexH4o", "keywords": "calculus, limits, limit, khan, academy, CC_39336_F-IF_4, CC_39336_F-IF_7_d", "youtube_id": "YRw8udexH4o", "readable_id": "limit-examples-part-2"}, "ZbZ-t1FmnKY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZbZ-t1FmnKY.mp4/ZbZ-t1FmnKY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZbZ-t1FmnKY.mp4/ZbZ-t1FmnKY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZbZ-t1FmnKY.m3u8/ZbZ-t1FmnKY.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/daedalic-archaic/naked-authority/", "duration": 150, "id": "ZbZ-t1FmnKY", "title": "\"Naked Authority\" with Joan R. Mertens", "format": "mp4", "description": "Met curator Joan R. Mertens on self-reliance in Marble Statue of a kouros (youth) from the Attic culture\u00a0of ancient Greece.\n\nThis kouros is one of the earliest marble statues of a human figure carved in Attica. The rigid stance, with the left leg forward and arms at the side, was derived from Egyptian art. The pose provided a clear, simple formula that was used by Greek sculptors throughout the sixth century B.C.E. In this early figure, geometric, almost abstract forms predominate, and anatomical details are rendered in beautiful analogous patterns. The statue marked the grave of a young Athenian aristocrat.\n\nView this work on\u00a0metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n\n\u00a0\n", "slug": "naked-authority", "kind": "Video", "video_id": "ZbZ-t1FmnKY", "keywords": "authority, body, confidence, dignity, motion, sculpture, stone, youth, Europe", "youtube_id": "ZbZ-t1FmnKY", "readable_id": "naked-authority"}, "qnKxHDBok4A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qnKxHDBok4A.mp4/qnKxHDBok4A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qnKxHDBok4A.mp4/qnKxHDBok4A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qnKxHDBok4A.m3u8/qnKxHDBok4A.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/bottle-rocket-apps/calvin-carter-2/", "duration": 111, "id": "qnKxHDBok4A", "title": "Living the company\u2019s values", "format": "mp4", "description": "", "slug": "calvin-carter-2", "kind": "Video", "video_id": "qnKxHDBok4A", "keywords": "", "youtube_id": "qnKxHDBok4A", "readable_id": "calvin-carter-2"}, "_T60pBGcoQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_T60pBGcoQU.mp4/_T60pBGcoQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_T60pBGcoQU.mp4/_T60pBGcoQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_T60pBGcoQU.m3u8/_T60pBGcoQU.m3u8"}, "path": "khan/science/health-and-medicine/circulatory-system-diseases/blood-vessel-diseases/arteriosclerosis-arteriolosclerosis-and-atherosclerosis/", "duration": 558, "id": "_T60pBGcoQU", "title": "Arteriosclerosis, arteriolosclerosis, and atherosclerosis", "format": "mp4", "description": "Learn the difference between Arteriosclerosis, Arteriolosclerosis, and Atherosclerosis! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "arteriosclerosis-arteriolosclerosis-and-atherosclerosis", "kind": "Video", "video_id": "_T60pBGcoQU", "keywords": "", "youtube_id": "_T60pBGcoQU", "readable_id": "arteriosclerosis-arteriolosclerosis-and-atherosclerosis"}, "7CqigPmXyv8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7CqigPmXyv8.mp4/7CqigPmXyv8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7CqigPmXyv8.mp4/7CqigPmXyv8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7CqigPmXyv8.m3u8/7CqigPmXyv8.m3u8"}, "duration": 329, "id": "7CqigPmXyv8", "title": "Motor controller functions", "format": "mp4", "description": "This video outlines in simple terms why a motor controller is needed and what it does", "path": "khan/science/discoveries-projects/robots/bit-zee/why-does-bit-zee-need-a-motor-controller/", "slug": "why-does-bit-zee-need-a-motor-controller", "kind": "Video", "video_id": "7CqigPmXyv8", "keywords": "Motor controller, Bit-zee, motor driver, L298", "youtube_id": "7CqigPmXyv8", "readable_id": "why-does-bit-zee-need-a-motor-controller"}, "G7ZAwUdBNFE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G7ZAwUdBNFE.mp4/G7ZAwUdBNFE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G7ZAwUdBNFE.mp4/G7ZAwUdBNFE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G7ZAwUdBNFE.m3u8/G7ZAwUdBNFE.m3u8"}, "duration": 365, "id": "G7ZAwUdBNFE", "title": "Introduction to enzymes and catalysis", "format": "mp4", "description": "Let's explore what enzymes are, and how they can affect a reaction. The most important affect you need to know is its ability to \"catalyze\" the reaction.\u00a0By Ross Firestone.", "path": "khan/test-prep/mcat/chemical-processes/enzymes/an-introduction-to-enzymes-and-catalysis/", "slug": "an-introduction-to-enzymes-and-catalysis", "kind": "Video", "video_id": "G7ZAwUdBNFE", "keywords": "", "youtube_id": "G7ZAwUdBNFE", "readable_id": "an-introduction-to-enzymes-and-catalysis"}, "Vm1_vSny4BY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Vm1_vSny4BY.mp4/Vm1_vSny4BY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Vm1_vSny4BY.mp4/Vm1_vSny4BY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Vm1_vSny4BY.m3u8/Vm1_vSny4BY.m3u8"}, "path": "khan/humanities/art-americas/british-colonies/early-republic/charles-willson-peale-staircase-group-portrait-of-raphaelle-peale-and-titian-ramsay-peale-1795/", "duration": 266, "id": "Vm1_vSny4BY", "title": "Peale, Staircase Group (Portrait of Raphaelle Peale and Titian Ramsay Peale)", "format": "mp4", "description": "Charles Willson Peale, Staircase Group (Portrait of Raphaelle Peale and Titian Ramsay Peale), 1795, oil on canvas, 89-1/2 x 39-3/8 inches / 227.3 x 100 cm (Philadelphia Museum of Art). View this work up close in the Google Art Project.", "slug": "charles-willson-peale-staircase-group-portrait-of-raphaelle-peale-and-titian-ramsay-peale-1795", "kind": "Video", "video_id": "Vm1_vSny4BY", "keywords": "Charles Willson Peale, Peale, Staircase Group, Raphaelle, Titian, 1795, Philadelphia Museum of Art, Federalist, American, art, painting, museum, Philadelphia, Google Art Project, Smarthistory, Khan Academy, art history, OER", "youtube_id": "Vm1_vSny4BY", "readable_id": "charles-willson-peale-staircase-group-portrait-of-raphaelle-peale-and-titian-ramsay-peale-1795"}, "Bjymxow3TVQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Bjymxow3TVQ.mp4/Bjymxow3TVQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Bjymxow3TVQ.mp4/Bjymxow3TVQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Bjymxow3TVQ.m3u8/Bjymxow3TVQ.m3u8"}, "path": "khan/humanities/art-history-basics/artists-materials-techniques/printmaking/moma-relief-process/", "duration": 412, "id": "Bjymxow3TVQ", "title": "Relief process", "format": "mp4", "description": "Discover how artists create different effects with linocuts and woodcuts. Did you know that MoMA offers studio courses online? Check out the\u00a0list\u00a0of offerings including online courses on collage and painting techniques.", "slug": "moma-relief-process", "kind": "Video", "video_id": "Bjymxow3TVQ", "keywords": "", "youtube_id": "Bjymxow3TVQ", "readable_id": "moma-relief-process"}, "cf1-CwrDwrA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cf1-CwrDwrA.mp4/cf1-CwrDwrA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cf1-CwrDwrA.mp4/cf1-CwrDwrA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cf1-CwrDwrA.m3u8/cf1-CwrDwrA.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/adding-displacement-vectors/", "duration": 416, "id": "cf1-CwrDwrA", "title": "Total displacement while hiking", "format": "mp4", "description": "", "slug": "adding-displacement-vectors", "kind": "Video", "video_id": "cf1-CwrDwrA", "keywords": "", "youtube_id": "cf1-CwrDwrA", "readable_id": "adding-displacement-vectors"}, "Zxvc6iPKdec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zxvc6iPKdec.mp4/Zxvc6iPKdec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zxvc6iPKdec.mp4/Zxvc6iPKdec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zxvc6iPKdec.m3u8/Zxvc6iPKdec.m3u8"}, "duration": 271, "id": "Zxvc6iPKdec", "title": "Count outcomes using tree diagram", "format": "mp4", "description": "We'll use a tree diagram to visualize and count all the possible outcomes. This helps us to determine the probability.", "path": "tree-diagram-to-count-outcomes/", "slug": "tree-diagram-to-count-outcomes", "kind": "Video", "video_id": "Zxvc6iPKdec", "keywords": "", "youtube_id": "Zxvc6iPKdec", "readable_id": "tree-diagram-to-count-outcomes"}, "qdFD-0OWBRo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qdFD-0OWBRo.mp4/qdFD-0OWBRo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qdFD-0OWBRo.mp4/qdFD-0OWBRo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qdFD-0OWBRo.m3u8/qdFD-0OWBRo.m3u8"}, "path": "khan/math/multivariable-calculus/line_integrals_topic/greens_theorem/green-s-theorem-proof-part-2/", "duration": 1166, "id": "qdFD-0OWBRo", "title": "Green's theorem proof (part 2)", "format": "mp4", "description": "Part 2 of the proof of Green's Theorem", "slug": "green-s-theorem-proof-part-2", "kind": "Video", "video_id": "qdFD-0OWBRo", "keywords": "green's, theorem, vector, calculus", "youtube_id": "qdFD-0OWBRo", "readable_id": "green-s-theorem-proof-part-2"}, "3w_5eYUB6zY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3w_5eYUB6zY.mp4/3w_5eYUB6zY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3w_5eYUB6zY.mp4/3w_5eYUB6zY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3w_5eYUB6zY.m3u8/3w_5eYUB6zY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2010-may-6-17/", "duration": 71, "id": "3w_5eYUB6zY", "title": "17 Sum of terms in sequence", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-17", "kind": "Video", "video_id": "3w_5eYUB6zY", "keywords": "", "youtube_id": "3w_5eYUB6zY", "readable_id": "sat-2010-may-6-17"}, "yro2jLBfyDQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yro2jLBfyDQ.mp4/yro2jLBfyDQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yro2jLBfyDQ.mp4/yro2jLBfyDQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yro2jLBfyDQ.m3u8/yro2jLBfyDQ.m3u8"}, "duration": 469, "id": "yro2jLBfyDQ", "title": "LM part of the IS-LM model", "format": "mp4", "description": "How the theory of liquidity preference drives demand for money and the LM (liquidity preference-money supply) curve", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/is-lm-model-tutorial/lm-part-of-the-is-lm-model/", "slug": "lm-part-of-the-is-lm-model", "kind": "Video", "video_id": "yro2jLBfyDQ", "keywords": "macroecnomics, IS, LM, IS/LM, Keynes", "youtube_id": "yro2jLBfyDQ", "readable_id": "lm-part-of-the-is-lm-model"}, "ye3rTjLCvAU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ye3rTjLCvAU.mp4/ye3rTjLCvAU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ye3rTjLCvAU.mp4/ye3rTjLCvAU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ye3rTjLCvAU.m3u8/ye3rTjLCvAU.m3u8"}, "duration": 408, "id": "ye3rTjLCvAU", "title": "Correction to sodium and potassium pump video", "format": "mp4", "description": "Correction to Sodium and Potassium Pump Video", "path": "khan/science/health-and-medicine/nervous-system-and-sensory-infor/nervous-system-introduction/correction-to-sodium-and-potassium-pump-video/", "slug": "correction-to-sodium-and-potassium-pump-video", "kind": "Video", "video_id": "ye3rTjLCvAU", "keywords": "sodium, potassium, pump", "youtube_id": "ye3rTjLCvAU", "readable_id": "correction-to-sodium-and-potassium-pump-video"}, "Ix8Nne-a-KQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ix8Nne-a-KQ.mp4/Ix8Nne-a-KQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ix8Nne-a-KQ.mp4/Ix8Nne-a-KQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ix8Nne-a-KQ.m3u8/Ix8Nne-a-KQ.m3u8"}, "duration": 329, "id": "Ix8Nne-a-KQ", "title": "Consistent and inconsistent systems", "format": "mp4", "description": "Consistent and Inconsistent Systems", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/consistent-and-inconsistent-systems/", "slug": "consistent-and-inconsistent-systems", "kind": "Video", "video_id": "Ix8Nne-a-KQ", "keywords": "u14_l1_t1_we3, Consistent, and, Inconsistent, Systems, CC_8_EE_8_a, CC_8_EE_8_b", "youtube_id": "Ix8Nne-a-KQ", "readable_id": "consistent-and-inconsistent-systems"}, "naaRn_COzhU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/naaRn_COzhU.mp4/naaRn_COzhU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/naaRn_COzhU.mp4/naaRn_COzhU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/naaRn_COzhU.m3u8/naaRn_COzhU.m3u8"}, "duration": 406, "id": "naaRn_COzhU", "title": "Margaret Harrison: Feminism, irony, and women's rights", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWhich is more shocking, a naked women astride a giant banana, or Hugh Hefner in suspenders? Artist Margaret Harrison has been a major female force in the art world since founding the London Women's Liberation Art Group in 1970 and putting on one of the first single feminist exhibitions. Her playful and ironic drawings of men and women were soon banned by the police, but they served as a potent critique of objectification. In her development as a feminist artist, Harrison moved away from the extravagant irony of her earlier work and turned to more political work, pursuing the issue of equal pay for women and turning documentation and research into an art form.\nCan art be shocking and meaningful at the same time? Do you think a shock factor is necessary to speak honestly about certain issues?\n\nTake a closer look at Harrison's work in the Tate collection here.\n", "path": "margaret-harrison/", "slug": "margaret-harrison", "kind": "Video", "video_id": "naaRn_COzhU", "keywords": "Tate", "youtube_id": "naaRn_COzhU", "readable_id": "margaret-harrison"}, "eGo8C2Jshzs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eGo8C2Jshzs.mp4/eGo8C2Jshzs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eGo8C2Jshzs.mp4/eGo8C2Jshzs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eGo8C2Jshzs.m3u8/eGo8C2Jshzs.m3u8"}, "duration": 636, "id": "eGo8C2Jshzs", "title": "IIT JEE circle hyperbola common tangent part 4", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 45 Circle Hyperbola Common Tangent Part 4", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-circle-hyperbola-common-tangent-part-4/", "slug": "iit-jee-circle-hyperbola-common-tangent-part-4", "kind": "Video", "video_id": "eGo8C2Jshzs", "keywords": "2010, IIT, JEE, Paper, Problem, 45, Circle, Hyperbola, Common, Tangent, Part", "youtube_id": "eGo8C2Jshzs", "readable_id": "iit-jee-circle-hyperbola-common-tangent-part-4"}, "36Rym2q4H94": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/36Rym2q4H94.mp4/36Rym2q4H94.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/36Rym2q4H94.mp4/36Rym2q4H94.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/36Rym2q4H94.m3u8/36Rym2q4H94.m3u8"}, "duration": 635, "id": "36Rym2q4H94", "title": "Would a brick or feather fall faster?", "format": "mp4", "description": "What would fall faster on the moon?", "path": "khan/science/physics/newton-gravitation/gravity-newtonian/would-a-brick-or-feather-fall-faster/", "slug": "would-a-brick-or-feather-fall-faster", "kind": "Video", "video_id": "36Rym2q4H94", "keywords": "physics, weight, mass, gravity, acceleration", "youtube_id": "36Rym2q4H94", "readable_id": "would-a-brick-or-feather-fall-faster"}, "JPYRpAVc83M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JPYRpAVc83M.mp4/JPYRpAVc83M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JPYRpAVc83M.mp4/JPYRpAVc83M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JPYRpAVc83M.m3u8/JPYRpAVc83M.m3u8"}, "duration": 490, "id": "JPYRpAVc83M", "title": "Malaria\u2014natural selection and new medicine", "format": "mp4", "description": "The malaria parasite and its human hosts are locked in an evolutionary arms race. The parasite kills more than a million people every year. Humans fight back with gradual genetic adaptation and better drugs. The parasite then adapts to evolve drug resistance. Watch as immunologist Dyann Wirth and her team at the Harvard School of Public Health study the evolutionary adaptations of Senegalese people and their malaria parasites in the field and in the lab. The scientists are seeking signs of natural selection at a molecular level to help fight malaria in a smarter way.", "path": "malarianatural-selection-and-new-medicine/", "slug": "malarianatural-selection-and-new-medicine", "kind": "Video", "video_id": "JPYRpAVc83M", "keywords": "", "youtube_id": "JPYRpAVc83M", "readable_id": "malarianatural-selection-and-new-medicine"}, "ho87DN9wO70": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ho87DN9wO70.mp4/ho87DN9wO70.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ho87DN9wO70.mp4/ho87DN9wO70.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ho87DN9wO70.m3u8/ho87DN9wO70.m3u8"}, "duration": 315, "id": "ho87DN9wO70", "title": "Quotient rule from product rule", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/taking-derivatives/product_rule/quotient-rule-from-product-rule/", "slug": "quotient-rule-from-product-rule", "kind": "Video", "video_id": "ho87DN9wO70", "keywords": "", "youtube_id": "ho87DN9wO70", "readable_id": "quotient-rule-from-product-rule"}, "Ac-Npt3vgCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ac-Npt3vgCE.mp4/Ac-Npt3vgCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ac-Npt3vgCE.mp4/Ac-Npt3vgCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ac-Npt3vgCE.m3u8/Ac-Npt3vgCE.m3u8"}, "duration": 260, "id": "Ac-Npt3vgCE", "title": "Neurotransmitter release", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuronal-synapses/neurotransmitter-release/", "slug": "neurotransmitter-release", "kind": "Video", "video_id": "Ac-Npt3vgCE", "keywords": "", "youtube_id": "Ac-Npt3vgCE", "readable_id": "neurotransmitter-release"}, "mFftY8Y_pyY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mFftY8Y_pyY.mp4/mFftY8Y_pyY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mFftY8Y_pyY.mp4/mFftY8Y_pyY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mFftY8Y_pyY.m3u8/mFftY8Y_pyY.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/number-patterns/math-patterns-example-2/", "duration": 341, "id": "mFftY8Y_pyY", "title": "Math patterns example 2", "format": "mp4", "description": "We continue to strengthen our skill in identifying patterns. This time we'll use a table to track the pattern.", "slug": "math-patterns-example-2", "kind": "Video", "video_id": "mFftY8Y_pyY", "keywords": "", "youtube_id": "mFftY8Y_pyY", "readable_id": "math-patterns-example-2"}, "S7SnU8ujfwM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S7SnU8ujfwM.mp4/S7SnU8ujfwM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S7SnU8ujfwM.mp4/S7SnU8ujfwM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S7SnU8ujfwM.m3u8/S7SnU8ujfwM.m3u8"}, "path": "khan/humanities/history/1600s-1800s/declaration-of-independence/life-liberty-and-the-pursuit-of-happiness/", "duration": 355, "id": "S7SnU8ujfwM", "title": "Life, liberty and the pursuit of happiness", "format": "mp4", "description": "In this video, Aspen Institute President and CEO Walter Isaacson\u00a0talks to Sal about \u00a0the Declaration of Independence.", "slug": "life-liberty-and-the-pursuit-of-happiness", "kind": "Video", "video_id": "S7SnU8ujfwM", "keywords": "", "youtube_id": "S7SnU8ujfwM", "readable_id": "life-liberty-and-the-pursuit-of-happiness"}, "AqFwKecNaTk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AqFwKecNaTk.mp4/AqFwKecNaTk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AqFwKecNaTk.mp4/AqFwKecNaTk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AqFwKecNaTk.m3u8/AqFwKecNaTk.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/equation-of-a-line-1/", "duration": 226, "id": "AqFwKecNaTk", "title": "Slope-intercept equation from slope and point", "format": "mp4", "description": "Equation of a line", "slug": "equation-of-a-line-1", "kind": "Video", "video_id": "AqFwKecNaTk", "keywords": "u13_l2_t2_we1, Equation, of, line, CC_8_EE_6, CC_8_F_3, CC_8_F_5, CC_39336_F-IF_4", "youtube_id": "AqFwKecNaTk", "readable_id": "equation-of-a-line-1"}, "zid7J4EhZN8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zid7J4EhZN8.mp4/zid7J4EhZN8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zid7J4EhZN8.mp4/zid7J4EhZN8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zid7J4EhZN8.m3u8/zid7J4EhZN8.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/differential-equations-intro/finding-particular-linear-solution-to-differential-equation/", "duration": 391, "id": "zid7J4EhZN8", "title": "Finding particular linear solution to differential equation", "format": "mp4", "description": "", "slug": "finding-particular-linear-solution-to-differential-equation", "kind": "Video", "video_id": "zid7J4EhZN8", "keywords": "", "youtube_id": "zid7J4EhZN8", "readable_id": "finding-particular-linear-solution-to-differential-equation"}, "K0GF4FT51qY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K0GF4FT51qY.mp4/K0GF4FT51qY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K0GF4FT51qY.mp4/K0GF4FT51qY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K0GF4FT51qY.m3u8/K0GF4FT51qY.m3u8"}, "duration": 256, "id": "K0GF4FT51qY", "title": "Floating exchange effect on US", "format": "mp4", "description": "Floating Exchange Effect on US", "path": "khan/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation/floating-exchange-effect-on-us/", "slug": "floating-exchange-effect-on-us", "kind": "Video", "video_id": "K0GF4FT51qY", "keywords": "Floating, Exchange, Effect, on, US", "youtube_id": "K0GF4FT51qY", "readable_id": "floating-exchange-effect-on-us"}, "twT-WZChfZ8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/twT-WZChfZ8.mp4/twT-WZChfZ8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/twT-WZChfZ8.mp4/twT-WZChfZ8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/twT-WZChfZ8.m3u8/twT-WZChfZ8.m3u8"}, "duration": 564, "id": "twT-WZChfZ8", "title": "Double integrals 4", "format": "mp4", "description": "Another way to conceptualize the double integral.", "path": "khan/math/multivariable-calculus/double_triple_integrals/double_integrals/double-integrals-4/", "slug": "double-integrals-4", "kind": "Video", "video_id": "twT-WZChfZ8", "keywords": "double, integral", "youtube_id": "twT-WZChfZ8", "readable_id": "double-integrals-4"}, "_ikPWdEFqFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_ikPWdEFqFs.mp4/_ikPWdEFqFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_ikPWdEFqFs.mp4/_ikPWdEFqFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_ikPWdEFqFs.m3u8/_ikPWdEFqFs.m3u8"}, "path": "khan/partner-content/cas-biodiversity/where-biodiversity-is-found/biodiversity-hotspots-cas/hotspot-case-study-gaoligongshan/", "duration": 123, "id": "_ikPWdEFqFs", "title": "Biodiversity hotspot case study: Gaoligongshan", "format": "mp4", "description": "", "slug": "hotspot-case-study-gaoligongshan", "kind": "Video", "video_id": "_ikPWdEFqFs", "keywords": "", "youtube_id": "_ikPWdEFqFs", "readable_id": "hotspot-case-study-gaoligongshan"}, "Z2Zmmx0u-gE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z2Zmmx0u-gE.mp4/Z2Zmmx0u-gE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z2Zmmx0u-gE.mp4/Z2Zmmx0u-gE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z2Zmmx0u-gE.m3u8/Z2Zmmx0u-gE.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/gothic1/wilton-diptych/", "duration": 388, "id": "Z2Zmmx0u-gE", "title": "Wilton Diptych", "format": "mp4", "description": "Unknown artist,\u00a0The Wilton Diptych, c. 1395-99, tempera on oak panel, 53 x 37 cm\u00a0\n(The National Gallery, London)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris\n", "slug": "wilton-diptych", "kind": "Video", "video_id": "Z2Zmmx0u-gE", "keywords": "Wilton, Richard II, King, England, English, painting, art, history", "youtube_id": "Z2Zmmx0u-gE", "readable_id": "wilton-diptych"}, "8NJEeEUUhaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8NJEeEUUhaI.mp4/8NJEeEUUhaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8NJEeEUUhaI.mp4/8NJEeEUUhaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8NJEeEUUhaI.m3u8/8NJEeEUUhaI.m3u8"}, "duration": 828, "id": "8NJEeEUUhaI", "title": "When Capitalism is great and not-so-great", "format": "mp4", "description": "Understanding when capitalism can potentially undermine innovation, competition and merit", "path": "khan/humanities/history/history-survey/us-history/when-capitalism-is-great-and-not-so-great/", "slug": "when-capitalism-is-great-and-not-so-great", "kind": "Video", "video_id": "8NJEeEUUhaI", "keywords": "capitalism, socialism", "youtube_id": "8NJEeEUUhaI", "readable_id": "when-capitalism-is-great-and-not-so-great"}, "K25N7ZfSaO0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K25N7ZfSaO0.mp4/K25N7ZfSaO0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K25N7ZfSaO0.mp4/K25N7ZfSaO0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K25N7ZfSaO0.m3u8/K25N7ZfSaO0.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-plasma-cell-dyscrasias/what-is-monoclonal-gammopathy-of-undetermined-significance-mgus/", "duration": 695, "id": "K25N7ZfSaO0", "title": "What is Monoclonal gammopathy of undetermined significance (MGUS)?", "format": "mp4", "description": "", "slug": "what-is-monoclonal-gammopathy-of-undetermined-significance-mgus", "kind": "Video", "video_id": "K25N7ZfSaO0", "keywords": "", "youtube_id": "K25N7ZfSaO0", "readable_id": "what-is-monoclonal-gammopathy-of-undetermined-significance-mgus"}, "YzCYuKX6zp8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YzCYuKX6zp8.mp4/YzCYuKX6zp8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YzCYuKX6zp8.mp4/YzCYuKX6zp8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YzCYuKX6zp8.m3u8/YzCYuKX6zp8.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/reward-pathway-in-the-brain/", "duration": 506, "id": "YzCYuKX6zp8", "title": "Reward pathway in the brain", "format": "mp4", "description": "", "slug": "reward-pathway-in-the-brain", "kind": "Video", "video_id": "YzCYuKX6zp8", "keywords": "", "youtube_id": "YzCYuKX6zp8", "readable_id": "reward-pathway-in-the-brain"}, "nMhJLn5ives": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nMhJLn5ives.mp4/nMhJLn5ives.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nMhJLn5ives.mp4/nMhJLn5ives.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nMhJLn5ives.m3u8/nMhJLn5ives.m3u8"}, "duration": 576, "id": "nMhJLn5ives", "title": "Pythagorean theorem II", "format": "mp4", "description": "More Pythagorean Theorem examples. Introduction to 45-45-90 triangles.", "path": "khan/math/geometry/right_triangles_topic/pyth_theor/pythagorean-theorem-ii/", "slug": "pythagorean-theorem-ii", "kind": "Video", "video_id": "nMhJLn5ives", "keywords": "Pythagorean, Theorem, geometry, math, khan, CC_8_G_6", "youtube_id": "nMhJLn5ives", "readable_id": "pythagorean-theorem-ii"}, "slP8XZ6Nq40": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/slP8XZ6Nq40.mp4/slP8XZ6Nq40.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/slP8XZ6Nq40.mp4/slP8XZ6Nq40.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/slP8XZ6Nq40.m3u8/slP8XZ6Nq40.m3u8"}, "duration": 797, "id": "slP8XZ6Nq40", "title": "Price elasticity of demand", "format": "mp4", "description": "Introduction to price elasticity of demand", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/price-elasticity-of-demand/", "slug": "price-elasticity-of-demand", "kind": "Video", "video_id": "slP8XZ6Nq40", "keywords": "price, economics, elasticity, demand", "youtube_id": "slP8XZ6Nq40", "readable_id": "price-elasticity-of-demand"}, "4PIn_9cxefI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4PIn_9cxefI.mp4/4PIn_9cxefI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4PIn_9cxefI.mp4/4PIn_9cxefI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4PIn_9cxefI.m3u8/4PIn_9cxefI.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-10-12/", "duration": 300, "id": "4PIn_9cxefI", "title": "CAHSEE practice: Problems 10-12", "format": "mp4", "description": "CAHSEE Practice: Problems 10-12", "slug": "cahsee-practice-problems-10-12", "kind": "Video", "video_id": "4PIn_9cxefI", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "4PIn_9cxefI", "readable_id": "cahsee-practice-problems-10-12"}, "fYbLyOrl8gs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fYbLyOrl8gs.mp4/fYbLyOrl8gs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fYbLyOrl8gs.mp4/fYbLyOrl8gs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fYbLyOrl8gs.m3u8/fYbLyOrl8gs.m3u8"}, "path": "khan/humanities/art-asia/art-japan/japanese-art/samurai-architecture/", "duration": 197, "id": "fYbLyOrl8gs", "title": "From castle to palace: samurai architecture", "format": "mp4", "description": "Japan's warlords built fortresses during the constant civil warfare from 1300 to 1600. These castles housed the local government, had many defensive devices, and impressed rivals with their scale and their lord's ability to have them built and maintained. Learn more about the samurai.", "slug": "samurai-architecture", "kind": "Video", "video_id": "fYbLyOrl8gs", "keywords": "", "youtube_id": "fYbLyOrl8gs", "readable_id": "samurai-architecture"}, "r7gTH_5XfOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r7gTH_5XfOI.mp4/r7gTH_5XfOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r7gTH_5XfOI.mp4/r7gTH_5XfOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r7gTH_5XfOI.m3u8/r7gTH_5XfOI.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/solubility-equilibria-mcat/solubility-and-complex-ion-formation/", "duration": 890, "id": "r7gTH_5XfOI", "title": "Solubility and complex ion formation", "format": "mp4", "description": "", "slug": "solubility-and-complex-ion-formation", "kind": "Video", "video_id": "r7gTH_5XfOI", "keywords": "", "youtube_id": "r7gTH_5XfOI", "readable_id": "solubility-and-complex-ion-formation"}, "W_VhVHRal6o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W_VhVHRal6o.mp4/W_VhVHRal6o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W_VhVHRal6o.mp4/W_VhVHRal6o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W_VhVHRal6o.m3u8/W_VhVHRal6o.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/mult-div-by-10-dec-pre-alg/dividing-a-decimal-by-a-power-of-10/", "duration": 198, "id": "W_VhVHRal6o", "title": "Dividing a decimal by a power of 10", "format": "mp4", "description": "When we were multiplying, we moved the decimal to the right for each power of ten. Guess what? When dividing, we move the decimal to the left for each power of ten.", "slug": "dividing-a-decimal-by-a-power-of-10", "kind": "Video", "video_id": "W_VhVHRal6o", "keywords": "u3_l2_t2_we4, Dividing, Decimal, by, Power, of, 10, CC_5_NBT_7, CC_6_NS_3", "youtube_id": "W_VhVHRal6o", "readable_id": "dividing-a-decimal-by-a-power-of-10"}, "r0eFSS8CN-Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r0eFSS8CN-Q.mp4/r0eFSS8CN-Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r0eFSS8CN-Q.mp4/r0eFSS8CN-Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r0eFSS8CN-Q.m3u8/r0eFSS8CN-Q.m3u8"}, "duration": 69, "id": "r0eFSS8CN-Q", "title": "Calculator for natural logarithms", "format": "mp4", "description": "Calculator for Natural Logarithms", "path": "khan/math/algebra2/logarithms-tutorial/natural_logarithm/calculator-for-natural-logarithms/", "slug": "calculator-for-natural-logarithms", "kind": "Video", "video_id": "r0eFSS8CN-Q", "keywords": "u18_l3_t1_we6, Calculator, for, Natural, Logarithms", "youtube_id": "r0eFSS8CN-Q", "readable_id": "calculator-for-natural-logarithms"}, "vst006REeTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vst006REeTQ.mp4/vst006REeTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vst006REeTQ.mp4/vst006REeTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vst006REeTQ.m3u8/vst006REeTQ.m3u8"}, "path": "khan/math/probability/probability-and-combinatorics-topic/decisions-with-probability/probability-decisions/", "duration": 419, "id": "vst006REeTQ", "title": "Picking fairly", "format": "mp4", "description": "", "slug": "probability-decisions", "kind": "Video", "video_id": "vst006REeTQ", "keywords": "", "youtube_id": "vst006REeTQ", "readable_id": "probability-decisions"}, "udgMh3Y-dTk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/udgMh3Y-dTk.mp4/udgMh3Y-dTk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/udgMh3Y-dTk.mp4/udgMh3Y-dTk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/udgMh3Y-dTk.m3u8/udgMh3Y-dTk.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/work-example-problems/", "duration": 290, "id": "udgMh3Y-dTk", "title": "Work example problems", "format": "mp4", "description": "", "slug": "work-example-problems", "kind": "Video", "video_id": "udgMh3Y-dTk", "keywords": "", "youtube_id": "udgMh3Y-dTk", "readable_id": "work-example-problems"}, "GxaZZMg30cQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GxaZZMg30cQ.mp4/GxaZZMg30cQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GxaZZMg30cQ.mp4/GxaZZMg30cQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GxaZZMg30cQ.m3u8/GxaZZMg30cQ.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/kinetic-molecular-theory-of-gas/kinetic-molecular-theory-of-gases/", "duration": 900, "id": "GxaZZMg30cQ", "title": "Kinetic molecular theory of gases", "format": "mp4", "description": "", "slug": "kinetic-molecular-theory-of-gases", "kind": "Video", "video_id": "GxaZZMg30cQ", "keywords": "", "youtube_id": "GxaZZMg30cQ", "readable_id": "kinetic-molecular-theory-of-gases"}, "733mgqrzNKs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/733mgqrzNKs.mp4/733mgqrzNKs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/733mgqrzNKs.mp4/733mgqrzNKs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/733mgqrzNKs.m3u8/733mgqrzNKs.m3u8"}, "duration": 514, "id": "733mgqrzNKs", "title": "Time value of money", "format": "mp4", "description": "Why when you get your money matters as much as how much money. Present and future value also discussed.", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/present-value/time-value-of-money/", "slug": "time-value-of-money", "kind": "Video", "video_id": "733mgqrzNKs", "keywords": "Present, future, value, time, finance", "youtube_id": "733mgqrzNKs", "readable_id": "time-value-of-money"}, "iKQMZ48yZ3U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iKQMZ48yZ3U.mp4/iKQMZ48yZ3U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iKQMZ48yZ3U.mp4/iKQMZ48yZ3U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iKQMZ48yZ3U.m3u8/iKQMZ48yZ3U.m3u8"}, "duration": 246, "id": "iKQMZ48yZ3U", "title": "Archive conservation volunteers at work", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nSo who is behind the care and collection of Tate\u2019s archives? Get to know the many conservation volunteers that play an important role in preserving archive collections and making them accessible to the public. The volunteer programme was set up to bring more diverse perspectives into the organisation and give volunteers some insight into what goes on in an archive. Looking carefully through archive materials and ensuring that they are in good condition, the volunteers play a central role in maintaining the collection.\n\u201cBy looking at works of art, you only see one side of the story,\u201d says one volunteer. Do you think that seeing an artist\u2019s archive would add another dimension to that story, expanding upon the artist\u2019s work and life?\n", "path": "conservation-volunteers/", "slug": "conservation-volunteers", "kind": "Video", "video_id": "iKQMZ48yZ3U", "keywords": "Tate", "youtube_id": "iKQMZ48yZ3U", "readable_id": "conservation-volunteers"}, "1Vb8t7Y-pI0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1Vb8t7Y-pI0.mp4/1Vb8t7Y-pI0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1Vb8t7Y-pI0.mp4/1Vb8t7Y-pI0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1Vb8t7Y-pI0.m3u8/1Vb8t7Y-pI0.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/greatest_common_divisor/lcm-and-gcf-greatest-common-factor-word-problems/", "duration": 514, "id": "1Vb8t7Y-pI0", "title": "LCM and GCF word problems", "format": "mp4", "description": "Here we have a couple of word problems--one searching for the least common multiple and the other for the greatest common factor. Just read them with us slowly and follow along. You'll get it.", "slug": "lcm-and-gcf-greatest-common-factor-word-problems", "kind": "Video", "video_id": "1Vb8t7Y-pI0", "keywords": "", "youtube_id": "1Vb8t7Y-pI0", "readable_id": "lcm-and-gcf-greatest-common-factor-word-problems"}, "Tz-9z064euU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Tz-9z064euU.mp4/Tz-9z064euU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Tz-9z064euU.mp4/Tz-9z064euU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Tz-9z064euU.m3u8/Tz-9z064euU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-laryngeal-conditions/what-is-epiglottitis/", "duration": 422, "id": "Tz-9z064euU", "title": "What is epiglottitis?", "format": "mp4", "description": "", "slug": "what-is-epiglottitis", "kind": "Video", "video_id": "Tz-9z064euU", "keywords": "", "youtube_id": "Tz-9z064euU", "readable_id": "what-is-epiglottitis"}, "kxNaVzQ07yc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kxNaVzQ07yc.mp4/kxNaVzQ07yc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kxNaVzQ07yc.mp4/kxNaVzQ07yc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kxNaVzQ07yc.m3u8/kxNaVzQ07yc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/calculating-the-equilibrium-constant-from-the-standard-cell-potential/", "duration": 583, "id": "kxNaVzQ07yc", "title": "Calculating the equilibrium constant from the standard cell potential", "format": "mp4", "description": "", "slug": "calculating-the-equilibrium-constant-from-the-standard-cell-potential", "kind": "Video", "video_id": "kxNaVzQ07yc", "keywords": "", "youtube_id": "kxNaVzQ07yc", "readable_id": "calculating-the-equilibrium-constant-from-the-standard-cell-potential"}, "-xYkTJFbuM0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-xYkTJFbuM0.mp4/-xYkTJFbuM0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-xYkTJFbuM0.mp4/-xYkTJFbuM0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-xYkTJFbuM0.m3u8/-xYkTJFbuM0.m3u8"}, "duration": 660, "id": "-xYkTJFbuM0", "title": "Blue forehead room solution", "format": "mp4", "description": "Do not watch before Blue Forehead Room. THIS IS THE SOLUTION!", "path": "khan/math/recreational-math/puzzles/brain-teasers/blue-forehead-room-solution/", "slug": "blue-forehead-room-solution", "kind": "Video", "video_id": "-xYkTJFbuM0", "keywords": "brain, teaser, recursion", "youtube_id": "-xYkTJFbuM0", "readable_id": "blue-forehead-room-solution"}, "cNm196bVE5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cNm196bVE5A.mp4/cNm196bVE5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cNm196bVE5A.mp4/cNm196bVE5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cNm196bVE5A.m3u8/cNm196bVE5A.m3u8"}, "duration": 190, "id": "cNm196bVE5A", "title": "Real and nominal return", "format": "mp4", "description": "Inflation and real and nominal return", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/real-nominal-return-tut/real-and-nominal-return/", "slug": "real-and-nominal-return", "kind": "Video", "video_id": "cNm196bVE5A", "keywords": "finance, inflation", "youtube_id": "cNm196bVE5A", "readable_id": "real-and-nominal-return"}, "y7QLay8wrW8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y7QLay8wrW8.mp4/y7QLay8wrW8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y7QLay8wrW8.mp4/y7QLay8wrW8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y7QLay8wrW8.m3u8/y7QLay8wrW8.m3u8"}, "path": "khan/math/algebra/linear_inequalities/inequalities/solving-inequalities/", "duration": 272, "id": "y7QLay8wrW8", "title": "Solving a two-step inequality", "format": "mp4", "description": "We're turning up the heat a little and asking you to help us solve a multi-step inequality problem.", "slug": "solving-inequalities", "kind": "Video", "video_id": "y7QLay8wrW8", "keywords": "U05_L1_T1_we2, Solving, Inequalities, CC_6_EE_8, CC_7_EE_4, CC_7_EE_4_b, CC_39336_A-CED_1, CC_39336_A-REI_3", "youtube_id": "y7QLay8wrW8", "readable_id": "solving-inequalities"}, "MAS6mBRZZXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MAS6mBRZZXA.mp4/MAS6mBRZZXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MAS6mBRZZXA.mp4/MAS6mBRZZXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MAS6mBRZZXA.m3u8/MAS6mBRZZXA.m3u8"}, "duration": 850, "id": "MAS6mBRZZXA", "title": "Average velocity for constant acceleration", "format": "mp4", "description": "Calculating average velocity when acceleration is constant", "path": "khan/test-prep/mcat/physical-processes/acceleration-mcat/average-velocity-for-constant-acceleration/", "slug": "average-velocity-for-constant-acceleration", "kind": "Video", "video_id": "MAS6mBRZZXA", "keywords": "distance, kinematics, average, acceleration, physics", "youtube_id": "MAS6mBRZZXA", "readable_id": "average-velocity-for-constant-acceleration"}, "SIB4WDYF5DQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SIB4WDYF5DQ.mp4/SIB4WDYF5DQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SIB4WDYF5DQ.mp4/SIB4WDYF5DQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SIB4WDYF5DQ.m3u8/SIB4WDYF5DQ.m3u8"}, "duration": 321, "id": "SIB4WDYF5DQ", "title": "Proof of special case of l'H\u00f4pital's rule", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/proof-of-special-case-of-l-hopital-s-rule/", "slug": "proof-of-special-case-of-l-hopital-s-rule", "kind": "Video", "video_id": "SIB4WDYF5DQ", "keywords": "", "youtube_id": "SIB4WDYF5DQ", "readable_id": "proof-of-special-case-of-l-hopital-s-rule"}, "5hM8xUB07Y0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5hM8xUB07Y0.mp4/5hM8xUB07Y0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5hM8xUB07Y0.mp4/5hM8xUB07Y0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5hM8xUB07Y0.m3u8/5hM8xUB07Y0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-nervous-system-diseases/rn-parkinsons-disease/managing-parkinsons-disease-with-medications/", "duration": 599, "id": "5hM8xUB07Y0", "title": "Managing Parkinson's disease with medications", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "managing-parkinsons-disease-with-medications", "kind": "Video", "video_id": "5hM8xUB07Y0", "keywords": "", "youtube_id": "5hM8xUB07Y0", "readable_id": "managing-parkinsons-disease-with-medications"}, "7He7goTp6BY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7He7goTp6BY.mp4/7He7goTp6BY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7He7goTp6BY.mp4/7He7goTp6BY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7He7goTp6BY.m3u8/7He7goTp6BY.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/e-z-system-new/", "duration": 694, "id": "7He7goTp6BY", "title": "E-Z system", "format": "mp4", "description": "How to use the E-Z system to assign configurations to double bonds", "slug": "e-z-system-new", "kind": "Video", "video_id": "7He7goTp6BY", "keywords": "", "youtube_id": "7He7goTp6BY", "readable_id": "e-z-system-new"}, "Qu7aVEUc-2w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qu7aVEUc-2w.mp4/Qu7aVEUc-2w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qu7aVEUc-2w.mp4/Qu7aVEUc-2w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qu7aVEUc-2w.m3u8/Qu7aVEUc-2w.m3u8"}, "path": "khan/economics-finance-domain/macroeconomics/gdp-topic/piketty-capital/education-equality/", "duration": 702, "id": "Qu7aVEUc-2w", "title": "Education as a force of convergence", "format": "mp4", "description": "", "slug": "education-equality", "kind": "Video", "video_id": "Qu7aVEUc-2w", "keywords": "", "youtube_id": "Qu7aVEUc-2w", "readable_id": "education-equality"}, "iivtjjdSu9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iivtjjdSu9I.mp4/iivtjjdSu9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iivtjjdSu9I.mp4/iivtjjdSu9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iivtjjdSu9I.m3u8/iivtjjdSu9I.m3u8"}, "duration": 157, "id": "iivtjjdSu9I", "title": "Mental technique for subtraction without regrouping", "format": "mp4", "description": "Use an understanding of place-value to subtract.", "path": "mental-technique-for-subtraction-without-regrouping/", "slug": "mental-technique-for-subtraction-without-regrouping", "kind": "Video", "video_id": "iivtjjdSu9I", "keywords": "", "youtube_id": "iivtjjdSu9I", "readable_id": "mental-technique-for-subtraction-without-regrouping"}, "zs5LM7dxyTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zs5LM7dxyTo.mp4/zs5LM7dxyTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zs5LM7dxyTo.mp4/zs5LM7dxyTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zs5LM7dxyTo.m3u8/zs5LM7dxyTo.m3u8"}, "duration": 791, "id": "zs5LM7dxyTo", "title": "IIT JEE algebraic manipulation", "format": "mp4", "description": "2010 Paper 1 problem 35 Algebraic Manipulation", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-algebraic-manipulation/", "slug": "iit-jee-algebraic-manipulation", "kind": "Video", "video_id": "zs5LM7dxyTo", "keywords": "IIT, JEE, Algebraic, Manipulation, Roots, Complex, quadratic", "youtube_id": "zs5LM7dxyTo", "readable_id": "iit-jee-algebraic-manipulation"}, "ln9VIRiocps": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ln9VIRiocps.mp4/ln9VIRiocps.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ln9VIRiocps.mp4/ln9VIRiocps.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ln9VIRiocps.m3u8/ln9VIRiocps.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/high-renaissance1/raphael-alba-madonna-c-1510/", "duration": 416, "id": "ln9VIRiocps", "title": "Raphael, Alba Madonna", "format": "mp4", "description": "Raphael, Alba Madonna, oil on panel transferred to canvas, c. 1510 (National Gallery of Art, Washington D.C.)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "raphael-alba-madonna-c-1510", "kind": "Video", "video_id": "ln9VIRiocps", "keywords": "Raphael, Smarthistory, Art History, Renaissance, National Gallery", "youtube_id": "ln9VIRiocps", "readable_id": "raphael-alba-madonna-c-1510"}, "jUEzjS0IFxs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jUEzjS0IFxs.mp4/jUEzjS0IFxs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jUEzjS0IFxs.mp4/jUEzjS0IFxs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jUEzjS0IFxs.m3u8/jUEzjS0IFxs.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial/sn1-reaction-stereochemistry/", "duration": 457, "id": "jUEzjS0IFxs", "title": "Sn1 reaction: Stereochemistry", "format": "mp4", "description": "", "slug": "sn1-reaction-stereochemistry", "kind": "Video", "video_id": "jUEzjS0IFxs", "keywords": "", "youtube_id": "jUEzjS0IFxs", "readable_id": "sn1-reaction-stereochemistry"}, "_H009sTvYE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_H009sTvYE0.mp4/_H009sTvYE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_H009sTvYE0.mp4/_H009sTvYE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_H009sTvYE0.m3u8/_H009sTvYE0.m3u8"}, "duration": 634, "id": "_H009sTvYE0", "title": "Molecular and empirical formulas from percent composition", "format": "mp4", "description": "Molecular and Empirical Forumlas from Percent Composition. Example 2.9 from Kotz Chemistry book", "path": "khan/science/physics/thermodynamics/molecular-and-empirical-forumlas-from-percent-composition/", "slug": "molecular-and-empirical-forumlas-from-percent-composition", "kind": "Video", "video_id": "_H009sTvYE0", "keywords": "Molecular, and, Empirical, Forumlas, from, Percent, Composition", "youtube_id": "_H009sTvYE0", "readable_id": "molecular-and-empirical-forumlas-from-percent-composition"}, "u5dPUHjagSI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u5dPUHjagSI.mp4/u5dPUHjagSI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u5dPUHjagSI.mp4/u5dPUHjagSI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u5dPUHjagSI.m3u8/u5dPUHjagSI.m3u8"}, "duration": 331, "id": "u5dPUHjagSI", "title": "Systems with elimination practice", "format": "mp4", "description": "Example of solving systems of equations with elimination", "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/systems-with-elimination-practice/", "slug": "systems-with-elimination-practice", "kind": "Video", "video_id": "u5dPUHjagSI", "keywords": "", "youtube_id": "u5dPUHjagSI", "readable_id": "systems-with-elimination-practice"}, "3o8_EARoMtg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3o8_EARoMtg.mp4/3o8_EARoMtg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3o8_EARoMtg.mp4/3o8_EARoMtg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3o8_EARoMtg.m3u8/3o8_EARoMtg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/current-and-resistance/circuits-part-1/", "duration": 699, "id": "3o8_EARoMtg", "title": "Introduction to circuits and Ohm's law", "format": "mp4", "description": "Introduction to electricity, circuits, current and resistance", "slug": "circuits-part-1", "kind": "Video", "video_id": "3o8_EARoMtg", "keywords": "circuits, current, resistance, amps", "youtube_id": "3o8_EARoMtg", "readable_id": "circuits-part-1"}, "PwH4oEz94qE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PwH4oEz94qE.mp4/PwH4oEz94qE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PwH4oEz94qE.mp4/PwH4oEz94qE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PwH4oEz94qE.m3u8/PwH4oEz94qE.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/production-of-insulin-and-glucagon/", "duration": 486, "id": "PwH4oEz94qE", "title": "Production of insulin and glucagon", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "production-of-insulin-and-glucagon", "kind": "Video", "video_id": "PwH4oEz94qE", "keywords": "", "youtube_id": "PwH4oEz94qE", "readable_id": "production-of-insulin-and-glucagon"}, "UBIyl4_oNYU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UBIyl4_oNYU.mp4/UBIyl4_oNYU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UBIyl4_oNYU.mp4/UBIyl4_oNYU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UBIyl4_oNYU.m3u8/UBIyl4_oNYU.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/carbohydrates-naming-and-classification-1/", "duration": 628, "id": "UBIyl4_oNYU", "title": "Carbohydrates - Naming and classification", "format": "mp4", "description": "", "slug": "carbohydrates-naming-and-classification-1", "kind": "Video", "video_id": "UBIyl4_oNYU", "keywords": "", "youtube_id": "UBIyl4_oNYU", "readable_id": "carbohydrates-naming-and-classification-1"}, "MZpULgKhaEU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MZpULgKhaEU.mp4/MZpULgKhaEU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MZpULgKhaEU.mp4/MZpULgKhaEU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MZpULgKhaEU.m3u8/MZpULgKhaEU.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/cross-topic-arithmetic/rational-number-word-problem-example-1/", "duration": 201, "id": "MZpULgKhaEU", "title": "Rational number word problem with fractions", "format": "mp4", "description": "Word problems force us to put concepts to work using real-world applications. In this example, determine the volume of frozen water and express the answer as a fraction.", "slug": "rational-number-word-problem-example-1", "kind": "Video", "video_id": "MZpULgKhaEU", "keywords": "", "youtube_id": "MZpULgKhaEU", "readable_id": "rational-number-word-problem-example-1"}, "1E3KGIr4eOo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1E3KGIr4eOo.mp4/1E3KGIr4eOo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1E3KGIr4eOo.mp4/1E3KGIr4eOo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1E3KGIr4eOo.m3u8/1E3KGIr4eOo.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-design-blended-learning/sscc-challenging-assumptions/sscc-blended-newstructures/", "duration": 766, "id": "1E3KGIr4eOo", "title": "New ways to structure the school day and year in blended-learning settings", "format": "mp4", "description": "", "slug": "sscc-blended-newstructures", "kind": "Video", "video_id": "1E3KGIr4eOo", "keywords": "", "youtube_id": "1E3KGIr4eOo", "readable_id": "sscc-blended-newstructures"}, "CwBmIHzmfcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CwBmIHzmfcY.mp4/CwBmIHzmfcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CwBmIHzmfcY.mp4/CwBmIHzmfcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CwBmIHzmfcY.m3u8/CwBmIHzmfcY.m3u8"}, "duration": 469, "id": "CwBmIHzmfcY", "title": "2 Types of Flu Vaccine", "format": "mp4", "description": "Distinguish between LAIV (live, weakened) and TIV (dead) vaccines, and when each is appropriate to be used. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "2-types-of-flu-vaccine/", "slug": "2-types-of-flu-vaccine", "kind": "Video", "video_id": "CwBmIHzmfcY", "keywords": "", "youtube_id": "CwBmIHzmfcY", "readable_id": "2-types-of-flu-vaccine"}, "YUzsxLi43gE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YUzsxLi43gE.mp4/YUzsxLi43gE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YUzsxLi43gE.mp4/YUzsxLi43gE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YUzsxLi43gE.m3u8/YUzsxLi43gE.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/hegeso-stele/", "duration": 207, "id": "YUzsxLi43gE", "title": "Grave Stele of Hegeso", "format": "mp4", "description": "Grave stele of Hegeso, c. 410 B.C.E., marble and paint, from the Dipylon Cemetary, Athens, 5' 2\" (National Archaeological Museum, Athens)\nSpeakers: Dr. Steven Zucker and Dr. Beth Harris\n", "slug": "hegeso-stele", "kind": "Video", "video_id": "YUzsxLi43gE", "keywords": "", "youtube_id": "YUzsxLi43gE", "readable_id": "hegeso-stele"}, "xVWCfMe97ws": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xVWCfMe97ws.mp4/xVWCfMe97ws.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xVWCfMe97ws.mp4/xVWCfMe97ws.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xVWCfMe97ws.m3u8/xVWCfMe97ws.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/separable-equations/separable-differential-equations-2/", "duration": 337, "id": "xVWCfMe97ws", "title": "Old separable differential equations example", "format": "mp4", "description": "Another separable differential equation example.", "slug": "separable-differential-equations-2", "kind": "Video", "video_id": "xVWCfMe97ws", "keywords": "separable, differential, equations", "youtube_id": "xVWCfMe97ws", "readable_id": "separable-differential-equations-2"}, "mx2M_ZKXM_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mx2M_ZKXM_c.mp4/mx2M_ZKXM_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mx2M_ZKXM_c.mp4/mx2M_ZKXM_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mx2M_ZKXM_c.m3u8/mx2M_ZKXM_c.m3u8"}, "duration": 604, "id": "mx2M_ZKXM_c", "title": "Red shift", "format": "mp4", "description": "", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/red-shift/", "slug": "red-shift", "kind": "Video", "video_id": "mx2M_ZKXM_c", "keywords": "Red, Shift, Doppler", "youtube_id": "mx2M_ZKXM_c", "readable_id": "red-shift"}, "UwWn84u6i8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UwWn84u6i8s.mp4/UwWn84u6i8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UwWn84u6i8s.mp4/UwWn84u6i8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UwWn84u6i8s.m3u8/UwWn84u6i8s.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/skip-counting-by-5-example/", "duration": 125, "id": "UwWn84u6i8s", "title": "Skip counting by 5 example", "format": "mp4", "description": "Learn to count by fives.", "slug": "skip-counting-by-5-example", "kind": "Video", "video_id": "UwWn84u6i8s", "keywords": "", "youtube_id": "UwWn84u6i8s", "readable_id": "skip-counting-by-5-example"}, "xGmef7lFc5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xGmef7lFc5w.mp4/xGmef7lFc5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xGmef7lFc5w.mp4/xGmef7lFc5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xGmef7lFc5w.m3u8/xGmef7lFc5w.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/x-and-y-intercepts/x-and-y-intercepts/", "duration": 248, "id": "xGmef7lFc5w", "title": "Finding intercepts from an equation", "format": "mp4", "description": "X and Y intercepts", "slug": "x-and-y-intercepts", "kind": "Video", "video_id": "xGmef7lFc5w", "keywords": "U04_L1_T2_we1, and, intercepts, CC_39336_F-IF_4", "youtube_id": "xGmef7lFc5w", "readable_id": "x-and-y-intercepts"}, "wvVdgGTrh-o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wvVdgGTrh-o.mp4/wvVdgGTrh-o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wvVdgGTrh-o.mp4/wvVdgGTrh-o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wvVdgGTrh-o.m3u8/wvVdgGTrh-o.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/aromatic-stability/aromatic-heterocycles-ii/", "duration": 729, "id": "wvVdgGTrh-o", "title": "Aromatic heterocycles II", "format": "mp4", "description": "The aromaticity of pyrrole, imidazole, and thiophene.", "slug": "aromatic-heterocycles-ii", "kind": "Video", "video_id": "wvVdgGTrh-o", "keywords": "", "youtube_id": "wvVdgGTrh-o", "readable_id": "aromatic-heterocycles-ii"}, "vr0sTKbV7lI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vr0sTKbV7lI.mp4/vr0sTKbV7lI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vr0sTKbV7lI.mp4/vr0sTKbV7lI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vr0sTKbV7lI.m3u8/vr0sTKbV7lI.m3u8"}, "duration": 638, "id": "vr0sTKbV7lI", "title": "Triple integrals 1", "format": "mp4", "description": "Introduction to the triple integral", "path": "khan/math/multivariable-calculus/double_triple_integrals/triple_integrals/triple-integrals-1/", "slug": "triple-integrals-1", "kind": "Video", "video_id": "vr0sTKbV7lI", "keywords": "calculus, triple, integral", "youtube_id": "vr0sTKbV7lI", "readable_id": "triple-integrals-1"}, "MvkqmSPXKWA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MvkqmSPXKWA.mp4/MvkqmSPXKWA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MvkqmSPXKWA.mp4/MvkqmSPXKWA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MvkqmSPXKWA.m3u8/MvkqmSPXKWA.m3u8"}, "duration": 411, "id": "MvkqmSPXKWA", "title": "More drawing with blocks", "format": "mp4", "description": "", "path": "more-drawing-with-blocks/", "slug": "more-drawing-with-blocks", "kind": "Video", "video_id": "MvkqmSPXKWA", "keywords": "", "youtube_id": "MvkqmSPXKWA", "readable_id": "more-drawing-with-blocks"}, "lQn7fksaDq0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lQn7fksaDq0.mp4/lQn7fksaDq0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lQn7fksaDq0.mp4/lQn7fksaDq0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lQn7fksaDq0.m3u8/lQn7fksaDq0.m3u8"}, "duration": 419, "id": "lQn7fksaDq0", "title": "Unit vectors", "format": "mp4", "description": "What unit vectors are and how to construct them", "path": "khan/math/linear-algebra/matrix_transformations/lin_trans_examples/unit-vectors/", "slug": "unit-vectors", "kind": "Video", "video_id": "lQn7fksaDq0", "keywords": "unit, vectors, length, vector, normalized", "youtube_id": "lQn7fksaDq0", "readable_id": "unit-vectors"}, "-Po57YmaW3w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-Po57YmaW3w.mp4/-Po57YmaW3w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-Po57YmaW3w.mp4/-Po57YmaW3w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-Po57YmaW3w.m3u8/-Po57YmaW3w.m3u8"}, "path": "khan/humanities/art-asia/imperial-china/beginners-guide-imperial-china/chinese-archaeology/", "duration": 258, "id": "-Po57YmaW3w", "title": "Discoveries in Chinese archaeology", "format": "mp4", "description": "Learn about some of the most prolific archeological sites in China, including the burial complex of the First Emperor of China and Sanxingdui. Learn more about archaeology and the study of ancient China on the Asian Art Museum's education website.", "slug": "chinese-archaeology", "kind": "Video", "video_id": "-Po57YmaW3w", "keywords": "terracotta warriors, archaeology", "youtube_id": "-Po57YmaW3w", "readable_id": "chinese-archaeology"}, "Aa0l_P0K5fs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Aa0l_P0K5fs.mp4/Aa0l_P0K5fs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Aa0l_P0K5fs.mp4/Aa0l_P0K5fs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Aa0l_P0K5fs.m3u8/Aa0l_P0K5fs.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-7-dramatic-monologue/", "duration": 278, "id": "Aa0l_P0K5fs", "title": "7 Dramatic monologue", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-7-dramatic-monologue", "kind": "Video", "video_id": "Aa0l_P0K5fs", "keywords": "", "youtube_id": "Aa0l_P0K5fs", "readable_id": "sat-7-dramatic-monologue"}, "NgYrsqoKXpM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NgYrsqoKXpM.mp4/NgYrsqoKXpM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NgYrsqoKXpM.mp4/NgYrsqoKXpM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NgYrsqoKXpM.m3u8/NgYrsqoKXpM.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/finding-power-series-through-integration/", "duration": 666, "id": "NgYrsqoKXpM", "title": "Finding power series through integration", "format": "mp4", "description": "", "slug": "finding-power-series-through-integration", "kind": "Video", "video_id": "NgYrsqoKXpM", "keywords": "", "youtube_id": "NgYrsqoKXpM", "readable_id": "finding-power-series-through-integration"}, "lXrocy30OSA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lXrocy30OSA.mp4/lXrocy30OSA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lXrocy30OSA.mp4/lXrocy30OSA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lXrocy30OSA.m3u8/lXrocy30OSA.m3u8"}, "duration": 178, "id": "lXrocy30OSA", "title": "\"Prime of Life\" with Alisa LaGamma", "format": "mp4", "description": "Met curator Alisa LaGamma on ancestral worship and mortality in Figure from a Reliquary Ensemble: Seated Female by the Fang peoples of Gabon or Equatorial Guinea.\n\nThe Fang peoples derive a sense of continuity with their past as well as a communal cohesiveness in the present through an ancestral cult known as bieri. Bieri reliquary figures, such as this 19th century example, embody the qualities that the Fang admire most in people\u2014namely, tranquility, vitality, and the ability to hold opposites in balance. Such wooden figures and heads are placed on top of bark containers that hold the precious relics of important clan ancestors. The carved head or figure mounted on top of the reliquary box guards the sacred contents against the forbidden gaze of women and uninitiated boys. Before being removed from Africa, such works were invariably separated from the relic containers that they originally enhanced.\u00a0\n\nThis formidable female figure personifies controlled exuberance. Despite her contemplative expression, her being exudes vitality and boundless physical dynamism. The eyes are defined as deeply incised pupils within expansive recesses. These concave passages are echoed in the round at the summit of the forehead by the bold globular projections of the coiffure elements. This regal and original arrangement of hair is highly detailed. Several contiguous crests extend across the crown of the head and are gathered in a single vertical tress at the nape of the neck.\u00a0\n\nThe Fang sculptor, who lucidly articulated this figure as a series of discrete component elements, integrated them masterfully into a seamless form to stunning effect. The pronounced ovoid volume of the head is abruptly juxtaposed with the broad columnar neck. At the outer corner of each eye a deep arc extends to the bridge of the nose. The nostrils are slightly flared, and the open mouth is cast as a broad oval. Especially alluring is the effect of the shimmering highlights that glance off the luminous midnight black wood, which is thoroughly saturated with oil. Another arresting visual accent is provided by the pendent oval breasts. These do not appear as sensuous elements but rather as overt attributes of power. Their formal definition complements the muscular curves of the physiognomy, so that they are echoed in the successively larger cylindrical units of the shoulders, upper arms, and forearms. The arms are bent at the elbows, hands held in front of the body in a pose suggesting arrested animation.\u00a0\n\nPositioned as freestanding with slightly flexed knees, the figure appears to shift her weight slightly to the proper right side. The fact that she was originally conceived as seated is apparent from the extreme abbreviation of the powerful thighs, when seen frontally, in contrast to the full forms of the elongated calves. On the reverse side the vertical channel of the spine extends the length of the back and intersects with the horizontal passage of the buttocks. The original patrons sought to repair a break to the proper left shoulderaffixing horizontal metal bands with five nails to the front and reverse side. Two brass rings appear around the neck as well as one around the proper left wrist and each ankle.\u00a0\n\nThis work was owned successively by two members of the Western avant-garde, Andr\u00e9 Derain and Jacob Epstein.\u00a0\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\u00a0\n", "path": "prime-of-life/", "slug": "prime-of-life", "kind": "Video", "video_id": "lXrocy30OSA", "keywords": "body, confidence, death, family, memory, metal, sculpture, wood, Africa, Kellen, Anna-Marie, Arts of Africa, Oceania, and the Americas", "youtube_id": "lXrocy30OSA", "readable_id": "prime-of-life"}, "BveA7JiRGS8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BveA7JiRGS8.mp4/BveA7JiRGS8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BveA7JiRGS8.mp4/BveA7JiRGS8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BveA7JiRGS8.m3u8/BveA7JiRGS8.m3u8"}, "path": "khan/math/probability/random-variables-topic/expected-value/expected-value-insurance/", "duration": 556, "id": "BveA7JiRGS8", "title": "Comparing insurance with expected value", "format": "mp4", "description": "", "slug": "expected-value-insurance", "kind": "Video", "video_id": "BveA7JiRGS8", "keywords": "", "youtube_id": "BveA7JiRGS8", "readable_id": "expected-value-insurance"}, "nW0CVmMHovM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nW0CVmMHovM.mp4/nW0CVmMHovM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nW0CVmMHovM.mp4/nW0CVmMHovM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nW0CVmMHovM.m3u8/nW0CVmMHovM.m3u8"}, "path": "khan/science/discoveries-projects/robots/spider_bot/10-attach-spider-s-led-eyes/", "duration": 363, "id": "nW0CVmMHovM", "title": "Spider's LED eyes", "format": "mp4", "description": "", "slug": "10-attach-spider-s-led-eyes", "kind": "Video", "video_id": "nW0CVmMHovM", "keywords": "", "youtube_id": "nW0CVmMHovM", "readable_id": "10-attach-spider-s-led-eyes"}, "mSPumIx85l8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mSPumIx85l8.mp4/mSPumIx85l8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mSPumIx85l8.mp4/mSPumIx85l8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mSPumIx85l8.m3u8/mSPumIx85l8.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/pieter-bruegel-the-elder-the-dutch-proverbs-1559/", "duration": 140, "id": "mSPumIx85l8", "title": "Bruegel, the Dutch Proverbs", "format": "mp4", "description": "Pieter Bruegel the Elder,\u00a0The Dutch Proverbs, 1559, oil on oak, 117 x 163 cm (Gem\u00e4ldegalerie, Staatliche Museen zu Berlin)\n\nSpeakers:\u00a0Dr. Beth Harris,\u00a0Dr. Steven Zucker\n", "slug": "pieter-bruegel-the-elder-the-dutch-proverbs-1559", "kind": "Video", "video_id": "mSPumIx85l8", "keywords": "Bruegel proverbs, GAP, Netherlandish, Flemish, Pieter Bruegel, Dutch, Bruegel the Elder, Dutch Proverbs, 1559, oak, Gem\u00e4ldegalerie, Berlin, Google Art Project, Smarthistory, Khan Academy, Genre, Peasant, Allegory, OER, painitng, art, folk, Netherlands", "youtube_id": "mSPumIx85l8", "readable_id": "pieter-bruegel-the-elder-the-dutch-proverbs-1559"}, "eMl2z3ezlrQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eMl2z3ezlrQ.mp4/eMl2z3ezlrQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eMl2z3ezlrQ.mp4/eMl2z3ezlrQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eMl2z3ezlrQ.m3u8/eMl2z3ezlrQ.m3u8"}, "duration": 340, "id": "eMl2z3ezlrQ", "title": "More on significant figures", "format": "mp4", "description": "Understanding the \"rules of thumb\" for significant figures", "path": "khan/math/pre-algebra/decimals-pre-alg/sig-figs-pre-alg/more-on-significant-figures/", "slug": "more-on-significant-figures", "kind": "Video", "video_id": "eMl2z3ezlrQ", "keywords": "significant, figures", "youtube_id": "eMl2z3ezlrQ", "readable_id": "more-on-significant-figures"}, "pZ_2bATPi2I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pZ_2bATPi2I.mp4/pZ_2bATPi2I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pZ_2bATPi2I.mp4/pZ_2bATPi2I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pZ_2bATPi2I.m3u8/pZ_2bATPi2I.m3u8"}, "duration": 449, "id": "pZ_2bATPi2I", "title": "Type II regions in three dimensions", "format": "mp4", "description": "Definition and intuition for Type 2 Regions", "path": "khan/math/multivariable-calculus/divergence_theorem_topic/region_types_3d/type-ii-regions-in-three-dimensions/", "slug": "type-ii-regions-in-three-dimensions", "kind": "Video", "video_id": "pZ_2bATPi2I", "keywords": "", "youtube_id": "pZ_2bATPi2I", "readable_id": "type-ii-regions-in-three-dimensions"}, "4VltXjR64SU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4VltXjR64SU.mp4/4VltXjR64SU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4VltXjR64SU.mp4/4VltXjR64SU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4VltXjR64SU.m3u8/4VltXjR64SU.m3u8"}, "path": "khan/science/health-and-medicine/lab-values/molarity-vs-molality/", "duration": 483, "id": "4VltXjR64SU", "title": "Molarity vs. molality", "format": "mp4", "description": "Learn how molarity and molality differ! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "molarity-vs-molality", "kind": "Video", "video_id": "4VltXjR64SU", "keywords": "", "youtube_id": "4VltXjR64SU", "readable_id": "molarity-vs-molality"}, "bCcxJlPHSmc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bCcxJlPHSmc.mp4/bCcxJlPHSmc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bCcxJlPHSmc.mp4/bCcxJlPHSmc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bCcxJlPHSmc.m3u8/bCcxJlPHSmc.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/expressing-cloned-genes/", "duration": 202, "id": "bCcxJlPHSmc", "title": "Expressing cloned genes", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "expressing-cloned-genes", "kind": "Video", "video_id": "bCcxJlPHSmc", "keywords": "", "youtube_id": "bCcxJlPHSmc", "readable_id": "expressing-cloned-genes"}, "o6W6P8JZW0o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o6W6P8JZW0o.mp4/o6W6P8JZW0o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o6W6P8JZW0o.mp4/o6W6P8JZW0o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o6W6P8JZW0o.m3u8/o6W6P8JZW0o.m3u8"}, "duration": 124, "id": "o6W6P8JZW0o", "title": "Angle-a-trons", "format": "mp4", "description": "This is a follow-up from Being a Plant part 2 ( http://youtu.be/lOIP_Z_-0Hs )", "path": "khan/math/recreational-math/vi-hart/spirals-fibonacci/angle-a-trons/", "slug": "angle-a-trons", "kind": "Video", "video_id": "o6W6P8JZW0o", "keywords": "angle, a, trons", "youtube_id": "o6W6P8JZW0o", "readable_id": "angle-a-trons"}, "6xy02bQS2Zg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6xy02bQS2Zg.mp4/6xy02bQS2Zg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6xy02bQS2Zg.mp4/6xy02bQS2Zg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6xy02bQS2Zg.m3u8/6xy02bQS2Zg.m3u8"}, "duration": 587, "id": "6xy02bQS2Zg", "title": "Nucleophilic aromatic substitution I", "format": "mp4", "description": "The addition-elimination mechanism", "path": "khan/science/organic-chemistry/aromatic-compounds/nucleophilic-aromatic-substitution/nucleophilic-aromatic-substitution-i/", "slug": "nucleophilic-aromatic-substitution-i", "kind": "Video", "video_id": "6xy02bQS2Zg", "keywords": "", "youtube_id": "6xy02bQS2Zg", "readable_id": "nucleophilic-aromatic-substitution-i"}, "7zq3s3F5Do8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7zq3s3F5Do8.mp4/7zq3s3F5Do8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7zq3s3F5Do8.mp4/7zq3s3F5Do8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7zq3s3F5Do8.m3u8/7zq3s3F5Do8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/small-intestine-part-3-absorption/", "duration": 295, "id": "7zq3s3F5Do8", "title": "Small intestine 3: Absorption", "format": "mp4", "description": "", "slug": "small-intestine-part-3-absorption", "kind": "Video", "video_id": "7zq3s3F5Do8", "keywords": "MCAT", "youtube_id": "7zq3s3F5Do8", "readable_id": "small-intestine-part-3-absorption"}, "ePwN6rHhNyU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ePwN6rHhNyU.mp4/ePwN6rHhNyU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ePwN6rHhNyU.mp4/ePwN6rHhNyU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ePwN6rHhNyU.m3u8/ePwN6rHhNyU.m3u8"}, "duration": 631, "id": "ePwN6rHhNyU", "title": "Flow and perfusion", "format": "mp4", "description": "Learn the difference between blood flow (Volume/time) and perfusion (Volume/time/amount of tissue). Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/blood-pressure/flow-and-perfusion/", "slug": "flow-and-perfusion", "kind": "Video", "video_id": "ePwN6rHhNyU", "keywords": "", "youtube_id": "ePwN6rHhNyU", "readable_id": "flow-and-perfusion"}, "FIt1RNiCO6U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FIt1RNiCO6U.mp4/FIt1RNiCO6U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FIt1RNiCO6U.mp4/FIt1RNiCO6U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FIt1RNiCO6U.m3u8/FIt1RNiCO6U.m3u8"}, "duration": 840, "id": "FIt1RNiCO6U", "title": "IIT JEE differentiability and boundedness", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 40 Differentiability and Boundedness", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-differentiability-and-boundedness/", "slug": "iit-jee-differentiability-and-boundedness", "kind": "Video", "video_id": "FIt1RNiCO6U", "keywords": "2010, IIT, JEE, Paper, Problem, 40, Differentiability, and, Boundedness, calculus, integral", "youtube_id": "FIt1RNiCO6U", "readable_id": "iit-jee-differentiability-and-boundedness"}, "TqGCNNlx6pU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TqGCNNlx6pU.mp4/TqGCNNlx6pU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TqGCNNlx6pU.mp4/TqGCNNlx6pU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TqGCNNlx6pU.m3u8/TqGCNNlx6pU.m3u8"}, "duration": 180, "id": "TqGCNNlx6pU", "title": "Swapping the bounds for definite integral", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/indefinite-definite-integrals/fundamental-theorem-of-calculus/swapping-the-bounds-for-definite-integral/", "slug": "swapping-the-bounds-for-definite-integral", "kind": "Video", "video_id": "TqGCNNlx6pU", "keywords": "", "youtube_id": "TqGCNNlx6pU", "readable_id": "swapping-the-bounds-for-definite-integral"}, "FnkATpF4O2Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FnkATpF4O2Q.mp4/FnkATpF4O2Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FnkATpF4O2Q.mp4/FnkATpF4O2Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FnkATpF4O2Q.m3u8/FnkATpF4O2Q.m3u8"}, "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/mark-rothko-no-3-no-13-1949/", "duration": 312, "id": "FnkATpF4O2Q", "title": "Mark Rothko's No. 3/No. 13, 1949", "format": "mp4", "description": "Mark Rothko, No. 3/No. 13, 1949, oil on canvas (MoMA)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "mark-rothko-no-3-no-13-1949", "kind": "Video", "video_id": "FnkATpF4O2Q", "keywords": "Rothko, Mark Rothko, No. 3, No. 13, Abstract Expressionism, 20th century art, Smarthistory, MoMA, art history", "youtube_id": "FnkATpF4O2Q", "readable_id": "mark-rothko-no-3-no-13-1949"}, "IQJ4DBkCnco": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IQJ4DBkCnco.mp4/IQJ4DBkCnco.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IQJ4DBkCnco.mp4/IQJ4DBkCnco.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IQJ4DBkCnco.m3u8/IQJ4DBkCnco.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/meiosis/comparing-mitosis-and-meiosis/", "duration": 351, "id": "IQJ4DBkCnco", "title": "Comparing Mitosis and Meiosis", "format": "mp4", "description": "Comparing Mitosis and Meiosis", "slug": "comparing-mitosis-and-meiosis", "kind": "Video", "video_id": "IQJ4DBkCnco", "keywords": "", "youtube_id": "IQJ4DBkCnco", "readable_id": "comparing-mitosis-and-meiosis"}, "4Zxp2-_pLCE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Zxp2-_pLCE.mp4/4Zxp2-_pLCE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Zxp2-_pLCE.mp4/4Zxp2-_pLCE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Zxp2-_pLCE.m3u8/4Zxp2-_pLCE.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/conditionals-pt1/", "duration": 292, "id": "4Zxp2-_pLCE", "title": "Language: Conditionals part 1", "format": "mp4", "description": "Justin invites us to think about conditional sentences (\"if P then Q\"). Perhaps surprisingly, the question of what these sentences mean has vexed philosophers for thousands of years. In part one, Justin motivates the question and introduces one of the oldest answers to it, the material conditional theory.\u00a0\n\nSpeaker: Dr. Justin Khoo, Assistant Professor, MIT", "slug": "conditionals-pt1", "kind": "Video", "video_id": "4Zxp2-_pLCE", "keywords": "", "youtube_id": "4Zxp2-_pLCE", "readable_id": "conditionals-pt1"}, "U6Re4xT0o4w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U6Re4xT0o4w.mp4/U6Re4xT0o4w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U6Re4xT0o4w.mp4/U6Re4xT0o4w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U6Re4xT0o4w.m3u8/U6Re4xT0o4w.m3u8"}, "duration": 648, "id": "U6Re4xT0o4w", "title": "Divergence 3", "format": "mp4", "description": "Analyzing a vector field using its divergence.", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/divergence/divergence-3/", "slug": "divergence-3", "kind": "Video", "video_id": "U6Re4xT0o4w", "keywords": "vector, divergence", "youtube_id": "U6Re4xT0o4w", "readable_id": "divergence-3"}, "rElAJA9GyL4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rElAJA9GyL4.mp4/rElAJA9GyL4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rElAJA9GyL4.mp4/rElAJA9GyL4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rElAJA9GyL4.m3u8/rElAJA9GyL4.m3u8"}, "path": "khan/math/integral-calculus/integration-techniques/integration-using-trig-identities/using-trig-identity-to-use-u-substitution/", "duration": 366, "id": "rElAJA9GyL4", "title": "Using trig identity to use u substitution", "format": "mp4", "description": "", "slug": "using-trig-identity-to-use-u-substitution", "kind": "Video", "video_id": "rElAJA9GyL4", "keywords": "", "youtube_id": "rElAJA9GyL4", "readable_id": "using-trig-identity-to-use-u-substitution"}, "iw5eLJV0Sj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iw5eLJV0Sj4.mp4/iw5eLJV0Sj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iw5eLJV0Sj4.mp4/iw5eLJV0Sj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iw5eLJV0Sj4.m3u8/iw5eLJV0Sj4.m3u8"}, "duration": 230, "id": "iw5eLJV0Sj4", "title": "Integral of ln x", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/integration-techniques/integration_by_parts/integral-of-ln-x/", "slug": "integral-of-ln-x", "kind": "Video", "video_id": "iw5eLJV0Sj4", "keywords": "", "youtube_id": "iw5eLJV0Sj4", "readable_id": "integral-of-ln-x"}, "YXCJmWF08CU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YXCJmWF08CU.mp4/YXCJmWF08CU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YXCJmWF08CU.mp4/YXCJmWF08CU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YXCJmWF08CU.m3u8/YXCJmWF08CU.m3u8"}, "duration": 167, "id": "YXCJmWF08CU", "title": "\"Cinematic\" with Helen Evans", "format": "mp4", "description": "Met curator Helen Evans on climax in the Byzantine Plate with the Battle of David and Goliath.\n\nIn 628\u201329 the Byzantine emperor Herakleios (reigned\u00a0610\u201341) successfully ended a long, costly war with Persia and regained Jerusalem, Egypt, and other Byzantine territory. Silver stamps dating to 613\u201329/30 on the reverse of these masterpieces place their manufacture in Herakleios\u2019s reign. The biblical figures on the plates wear the costume of the early Byzantine court, suggesting to the viewer that, like Saul and David, the Byzantine emperor was a ruler chosen by God. Elaborate dishes used for display at banquets were common in the late Roman and early Byzantine world; generally decorated with classical themes, these objects conveyed wealth, social status, and learning. This set of silver plates may be the earliest surviving example of the use of biblical scenes for such displays. Their intended arrangement may have closely followed the biblical order of the events, and their display may have conformed to the shape of a Christogram, or monogram for the name of Christ.\u00a0At the top of this magnificent plate, David confronts Goliath, and between them is a personification of the river from which David gathered stones for his sling. The major scene shows the decisive battle. Although David appears to be on the defensive, his men move forward, forcing Goliath\u2019s soldiers into retreat. At the bottom, the victorious David beheads the giant (1 Samuel 17:41\u201351).\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit\u00a0Find an Educator Resource.\n", "path": "cinematic/", "slug": "cinematic", "kind": "Video", "video_id": "YXCJmWF08CU", "keywords": "metal, motion, politics, vessel, youth, Middle East", "youtube_id": "YXCJmWF08CU", "readable_id": "cinematic"}, "y5rv8mJgXGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y5rv8mJgXGE.mp4/y5rv8mJgXGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y5rv8mJgXGE.mp4/y5rv8mJgXGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y5rv8mJgXGE.m3u8/y5rv8mJgXGE.m3u8"}, "path": "khan/partner-content/exploratorium/exploratorium-chemistry/penny-battery/penny-battery-challenge-2/", "duration": 36, "id": "y5rv8mJgXGE", "title": "Challenge solution", "format": "mp4", "description": "A four-cell battery generates 2 volts, but we need to generate 3 volts to light the blue LED.", "slug": "penny-battery-challenge-2", "kind": "Video", "video_id": "y5rv8mJgXGE", "keywords": "", "youtube_id": "y5rv8mJgXGE", "readable_id": "penny-battery-challenge-2"}, "y_DweTAEYWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/y_DweTAEYWk.mp4/y_DweTAEYWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/y_DweTAEYWk.mp4/y_DweTAEYWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/y_DweTAEYWk.m3u8/y_DweTAEYWk.m3u8"}, "duration": 495, "id": "y_DweTAEYWk", "title": "Adding and subtracting rational expressions", "format": "mp4", "description": "Adding and Subtracting Rational Expressions", "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding-and-subtracting-rational-expressions/", "slug": "adding-and-subtracting-rational-expressions", "kind": "Video", "video_id": "y_DweTAEYWk", "keywords": "u15_l1_t3_we4, Adding, and, Subtracting, Rational, Expressions, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "y_DweTAEYWk", "readable_id": "adding-and-subtracting-rational-expressions"}, "Mn4D4eQxeMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mn4D4eQxeMU.mp4/Mn4D4eQxeMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mn4D4eQxeMU.mp4/Mn4D4eQxeMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mn4D4eQxeMU.m3u8/Mn4D4eQxeMU.m3u8"}, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/jackie-winsor-1-rope-1976/", "duration": 194, "id": "Mn4D4eQxeMU", "title": "Winsor, #1 Rope", "format": "mp4", "description": "Jackie Winsor, #1 Rope, 1976, wood and hemp, 40-1/4 x 40 x 40 inches (SFMOMA, San Francisco) http://smarthistory.org/jackie-winsors-1-rope.html", "slug": "jackie-winsor-1-rope-1976", "kind": "Video", "video_id": "Mn4D4eQxeMU", "keywords": "rope, Jackie Winsor, Winsor, Process Art, Sculpture, twine, Hemp, SFMOMA", "youtube_id": "Mn4D4eQxeMU", "readable_id": "jackie-winsor-1-rope-1976"}, "UK-_qEDtvYo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UK-_qEDtvYo.mp4/UK-_qEDtvYo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UK-_qEDtvYo.mp4/UK-_qEDtvYo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UK-_qEDtvYo.m3u8/UK-_qEDtvYo.m3u8"}, "duration": 202, "id": "UK-_qEDtvYo", "title": "Ratios as fractions", "format": "mp4", "description": "Learn how to write ratios as fractions.", "path": "ratios-as-fractions/", "slug": "ratios-as-fractions", "kind": "Video", "video_id": "UK-_qEDtvYo", "keywords": "", "youtube_id": "UK-_qEDtvYo", "readable_id": "ratios-as-fractions"}, "jKUGZvW99os": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jKUGZvW99os.mp4/jKUGZvW99os.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jKUGZvW99os.mp4/jKUGZvW99os.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jKUGZvW99os.m3u8/jKUGZvW99os.m3u8"}, "path": "khan/science/health-and-medicine/current-issues-in-health-and-medicine/ebola-outbreak/understanding-r-nought/", "duration": 540, "id": "jKUGZvW99os", "title": "Understanding R nought", "format": "mp4", "description": "Dr. Rishi Desai is a pediatric infectious disease physician and former epidemiologist with the Centers for Disease Control and Prevention (CDC)", "slug": "understanding-r-nought", "kind": "Video", "video_id": "jKUGZvW99os", "keywords": "", "youtube_id": "jKUGZvW99os", "readable_id": "understanding-r-nought"}, "mK9y-sPn_AY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mK9y-sPn_AY.mp4/mK9y-sPn_AY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mK9y-sPn_AY.mp4/mK9y-sPn_AY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mK9y-sPn_AY.m3u8/mK9y-sPn_AY.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/late-empire/arch-of-constantine-315-c-e/", "duration": 657, "id": "mK9y-sPn_AY", "title": "Empire: Arch of Constantine", "format": "mp4", "description": "Arch of Constantine, 315 C.E., Rome\n\nSpeakers: Valentina Follo, Dr. Beth Harris, Dr. Steven Zucker\n\nhttp://www.smarthistory.org/arch-of-constantine.html\n\nhttp://www.smarthistory.org/arch-of-constantine.html", "slug": "arch-of-constantine-315-c-e", "kind": "Video", "video_id": "mK9y-sPn_AY", "keywords": "Arch of Constantine, Smarthistory, Ancient Rome, Constantine, Roman Empire, Constantine the Great", "youtube_id": "mK9y-sPn_AY", "readable_id": "arch-of-constantine-315-c-e"}, "znmPfDfsir8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/znmPfDfsir8.mp4/znmPfDfsir8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/znmPfDfsir8.mp4/znmPfDfsir8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/znmPfDfsir8.m3u8/znmPfDfsir8.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/least_common_multiple/least-common-multiple-exercise/", "duration": 256, "id": "znmPfDfsir8", "title": "Least common multiple exercise", "format": "mp4", "description": "We're practicing finding the least common multiple in these example exercises. We'll teach you the prime factorization approach which is a pretty nifty way to find the lcm (least common multiple).", "slug": "least-common-multiple-exercise", "kind": "Video", "video_id": "znmPfDfsir8", "keywords": "", "youtube_id": "znmPfDfsir8", "readable_id": "least-common-multiple-exercise"}, "4Flj9plmKGQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4Flj9plmKGQ.mp4/4Flj9plmKGQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4Flj9plmKGQ.mp4/4Flj9plmKGQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4Flj9plmKGQ.m3u8/4Flj9plmKGQ.m3u8"}, "path": "khan/math/integral-calculus/solid_revolution_topic/solid_of_revolution/solid-of-revolution-part-8/", "duration": 255, "id": "4Flj9plmKGQ", "title": "Shell method around a non-axis line 2", "format": "mp4", "description": "The last part of the problem in part 7", "slug": "solid-of-revolution-part-8", "kind": "Video", "video_id": "4Flj9plmKGQ", "keywords": "volume, of, rotation, calculus", "youtube_id": "4Flj9plmKGQ", "readable_id": "solid-of-revolution-part-8"}, "3gNw_6DoVc8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3gNw_6DoVc8.mp4/3gNw_6DoVc8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3gNw_6DoVc8.mp4/3gNw_6DoVc8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3gNw_6DoVc8.m3u8/3gNw_6DoVc8.m3u8"}, "duration": 73, "id": "3gNw_6DoVc8", "title": "How do we know which kinds of dinosaurs were most closely related?", "format": "mp4", "description": "Understanding questions of dinosaur behavior and biology depends on a firm understanding of their evolutionary relationships. To reconstruct the evolutionary relationships between different groups of dinosaurs, one must carefully study and analyze the anatomy, essentially searching for characteristics that are shared among different kinds of dinosaurs. These characteristics are then interpreted to have been present in the common ancestor and inherited by its descendants. This analysis produces a branching diagram, called a cladogram, on which different kinds of dinosaurs are shown at the endpoints of the branches.", "path": "related-dinosaurs/", "slug": "related-dinosaurs", "kind": "Video", "video_id": "3gNw_6DoVc8", "keywords": "", "youtube_id": "3gNw_6DoVc8", "readable_id": "related-dinosaurs"}, "kaoRrzakjGE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kaoRrzakjGE.mp4/kaoRrzakjGE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kaoRrzakjGE.mp4/kaoRrzakjGE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kaoRrzakjGE.m3u8/kaoRrzakjGE.m3u8"}, "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-biosignaling/enzyme-linked-receptors/", "duration": 531, "id": "kaoRrzakjGE", "title": "Enzyme Linked Receptors", "format": "mp4", "description": "Learn about how enzyme linked receptors, particularly Receptor Tyrosine Kinases, work in the body.", "slug": "enzyme-linked-receptors", "kind": "Video", "video_id": "kaoRrzakjGE", "keywords": "", "youtube_id": "kaoRrzakjGE", "readable_id": "enzyme-linked-receptors"}, "XVC9HOSwHl4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XVC9HOSwHl4.mp4/XVC9HOSwHl4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XVC9HOSwHl4.mp4/XVC9HOSwHl4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XVC9HOSwHl4.m3u8/XVC9HOSwHl4.m3u8"}, "duration": 124, "id": "XVC9HOSwHl4", "title": "Unfolding an 18th-century Game Table", "format": "mp4", "description": "Elegant furniture incorporating intriguing mechanical devices was a trademark of the Roentgen workshop, which from 1768 until about 1793 was one of Europe's most successful cabinetmaking enterprises. The distinguished design and the innovative way prefabricated elements such as the detachable legs were assembled make this table an example par excellence of David Roentgen's ingenious creations. His objects are an amalgamation of superior technical skills, sophisticated looks, high quality materials, and multiple functions. Roentgen's patrons sought adaptable furnishings that could perform manifold tasks. This piece is a console, a desk for writing and reading, and a game table for cards and chess with a concealed spring-driven backgammon box. Yet when closed it took up only a small amount of space in the intimate interiors popular during the Age of Enlightenment. A set of eighteenth-century game pieces - twenty-nine stamped wooden medallions illustrating European monarchs and historical views\u2014are associated with the table.\n\nView this work on metmuseum.org.\n", "path": "gaming-table/", "slug": "gaming-table", "kind": "Video", "video_id": "XVC9HOSwHl4", "keywords": "elegant, wood, cabinet, table, Europe", "youtube_id": "XVC9HOSwHl4", "readable_id": "gaming-table"}, "iBZb2bkn4KU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iBZb2bkn4KU.mp4/iBZb2bkn4KU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iBZb2bkn4KU.mp4/iBZb2bkn4KU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iBZb2bkn4KU.m3u8/iBZb2bkn4KU.m3u8"}, "duration": 127, "id": "iBZb2bkn4KU", "title": "Glassmaking technique: core-formed glass", "format": "mp4", "description": "Core-formed glass is one of the earliest glassmaking techniques. Watch a glassmaker shape a vessel, add colored trails, handles, and a rim (footage from the Corning Museum of Glass). Love art? Follow us on Google+", "path": "glassmaking-technique-core-formed-glass/", "slug": "glassmaking-technique-core-formed-glass", "kind": "Video", "video_id": "iBZb2bkn4KU", "keywords": "", "youtube_id": "iBZb2bkn4KU", "readable_id": "glassmaking-technique-core-formed-glass"}, "WU3AlAOCxN0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WU3AlAOCxN0.mp4/WU3AlAOCxN0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WU3AlAOCxN0.mp4/WU3AlAOCxN0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WU3AlAOCxN0.m3u8/WU3AlAOCxN0.m3u8"}, "duration": 196, "id": "WU3AlAOCxN0", "title": "Reel", "format": "mp4", "description": "This isn't the epic video I've been working on for months, I just couldn't sleep last night and had been reading too much Borges so this fell out.", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/reel/", "slug": "reel", "kind": "Video", "video_id": "WU3AlAOCxN0", "keywords": "", "youtube_id": "WU3AlAOCxN0", "readable_id": "reel"}, "IODR5mJMwOU": {"download_urls": {}, "path": "khan/partner-content/wi-phi/critical-thinking/begging-the-question/", "duration": 235, "id": "IODR5mJMwOU", "title": "Fallacies: Begging the question", "format": "mp4", "description": "In this video Matthew C. Harris of Duke University explains the informal logical fallacy called begging the question and the associated concept of circular reasoning.\n\nSpeaker: Matthew C. Harris\n\n\u00a0\n", "slug": "begging-the-question", "kind": "Video", "video_id": "IODR5mJMwOU", "keywords": "", "youtube_id": "IODR5mJMwOU", "readable_id": "begging-the-question"}, "CFSHq099Mx0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CFSHq099Mx0.mp4/CFSHq099Mx0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CFSHq099Mx0.mp4/CFSHq099Mx0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CFSHq099Mx0.m3u8/CFSHq099Mx0.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/slope-of-a-line-3/", "duration": 305, "id": "CFSHq099Mx0", "title": "Slope from two ordered pairs example 2", "format": "mp4", "description": "Another example of finding the slope between two points", "slug": "slope-of-a-line-3", "kind": "Video", "video_id": "CFSHq099Mx0", "keywords": "u13_l2_t1_we3, Slope, of, Line, CC_8_EE_5, CC_8_EE_6, CC_8_F_1, CC_8_F_5", "youtube_id": "CFSHq099Mx0", "readable_id": "slope-of-a-line-3"}, "v5SAMuRanGM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v5SAMuRanGM.mp4/v5SAMuRanGM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v5SAMuRanGM.mp4/v5SAMuRanGM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v5SAMuRanGM.m3u8/v5SAMuRanGM.m3u8"}, "duration": 503, "id": "v5SAMuRanGM", "title": "Golden ratio and Rembrandt's self portrait", "format": "mp4", "description": "", "path": "khan/math/geometry/similarity/cc-solving-prob-similar-tri/goldren-ratio-and-rembrandt-s-self-portrait/", "slug": "goldren-ratio-and-rembrandt-s-self-portrait", "kind": "Video", "video_id": "v5SAMuRanGM", "keywords": "", "youtube_id": "v5SAMuRanGM", "readable_id": "goldren-ratio-and-rembrandt-s-self-portrait"}, "TLSYwkWCIzA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TLSYwkWCIzA.mp4/TLSYwkWCIzA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TLSYwkWCIzA.mp4/TLSYwkWCIzA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TLSYwkWCIzA.m3u8/TLSYwkWCIzA.m3u8"}, "duration": 407, "id": "TLSYwkWCIzA", "title": "Transfer pricing and tax havens", "format": "mp4", "description": "How a corporation can set up a tax haven and use it through transfer pricing.", "path": "khan/economics-finance-domain/core-finance/taxes-topic/corporate-taxation/transfer-pricing-and-tax-havens/", "slug": "transfer-pricing-and-tax-havens", "kind": "Video", "video_id": "TLSYwkWCIzA", "keywords": "", "youtube_id": "TLSYwkWCIzA", "readable_id": "transfer-pricing-and-tax-havens"}, "kFkUSizmR3k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kFkUSizmR3k.mp4/kFkUSizmR3k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kFkUSizmR3k.mp4/kFkUSizmR3k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kFkUSizmR3k.m3u8/kFkUSizmR3k.m3u8"}, "path": "khan/computing/computer-science/cryptography/comp-number-theory/rsa-encryption-checkpoint/", "duration": 424, "id": "kFkUSizmR3k", "title": "Summary (what's next?)", "format": "mp4", "description": "Why is factorization hard, yet generating primes easy? Where do we go from here?", "slug": "rsa-encryption-checkpoint", "kind": "Video", "video_id": "kFkUSizmR3k", "keywords": "rsa encryption", "youtube_id": "kFkUSizmR3k", "readable_id": "rsa-encryption-checkpoint"}, "ITA1rW5UraU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ITA1rW5UraU.mp4/ITA1rW5UraU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ITA1rW5UraU.mp4/ITA1rW5UraU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ITA1rW5UraU.m3u8/ITA1rW5UraU.m3u8"}, "duration": 289, "id": "ITA1rW5UraU", "title": "Race cars with constant speed around curve", "format": "mp4", "description": "When acceleration could involve a change in direction and not speed", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/race-cars-with-constant-speed-around-curve/", "slug": "race-cars-with-constant-speed-around-curve", "kind": "Video", "video_id": "ITA1rW5UraU", "keywords": "velocity, physics", "youtube_id": "ITA1rW5UraU", "readable_id": "race-cars-with-constant-speed-around-curve"}, "X2Z63GnMNDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X2Z63GnMNDw.mp4/X2Z63GnMNDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X2Z63GnMNDw.mp4/X2Z63GnMNDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X2Z63GnMNDw.m3u8/X2Z63GnMNDw.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-6-20/", "duration": 174, "id": "X2Z63GnMNDw", "title": "20 Slope between points", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-20", "kind": "Video", "video_id": "X2Z63GnMNDw", "keywords": "", "youtube_id": "X2Z63GnMNDw", "readable_id": "sat-2010-may-6-20"}, "uA7Xny276sk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uA7Xny276sk.mp4/uA7Xny276sk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uA7Xny276sk.mp4/uA7Xny276sk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uA7Xny276sk.m3u8/uA7Xny276sk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/reproductive-cycle-graph-luteal-phase/", "duration": 542, "id": "uA7Xny276sk", "title": "Reproductive cycle graph - Luteal phase", "format": "mp4", "description": "", "slug": "reproductive-cycle-graph-luteal-phase", "kind": "Video", "video_id": "uA7Xny276sk", "keywords": "", "youtube_id": "uA7Xny276sk", "readable_id": "reproductive-cycle-graph-luteal-phase"}, "3rs7sFPoiZ4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3rs7sFPoiZ4.mp4/3rs7sFPoiZ4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3rs7sFPoiZ4.mp4/3rs7sFPoiZ4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3rs7sFPoiZ4.m3u8/3rs7sFPoiZ4.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-more-fewer-20/more-comparison-word-problems/", "duration": 194, "id": "3rs7sFPoiZ4", "title": "More comparison word problems", "format": "mp4", "description": "", "slug": "more-comparison-word-problems", "kind": "Video", "video_id": "3rs7sFPoiZ4", "keywords": "", "youtube_id": "3rs7sFPoiZ4", "readable_id": "more-comparison-word-problems"}, "0rlNHYHhrWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0rlNHYHhrWs.mp4/0rlNHYHhrWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0rlNHYHhrWs.mp4/0rlNHYHhrWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0rlNHYHhrWs.m3u8/0rlNHYHhrWs.m3u8"}, "duration": 280, "id": "0rlNHYHhrWs", "title": "Finding a point part way between two points", "format": "mp4", "description": "", "path": "khan/math/geometry/analytic-geometry-topic/cc-distances-between-points/finding-a-point-part-way-between-two-points/", "slug": "finding-a-point-part-way-between-two-points", "kind": "Video", "video_id": "0rlNHYHhrWs", "keywords": "", "youtube_id": "0rlNHYHhrWs", "readable_id": "finding-a-point-part-way-between-two-points"}, "frE1rjhH77Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/frE1rjhH77Y.mp4/frE1rjhH77Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/frE1rjhH77Y.mp4/frE1rjhH77Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/frE1rjhH77Y.m3u8/frE1rjhH77Y.m3u8"}, "duration": 746, "id": "frE1rjhH77Y", "title": "Human evolution overview", "format": "mp4", "description": "From the extinction of the dinosaurs to humanity", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/human-evolution-overview/", "slug": "human-evolution-overview", "kind": "Video", "video_id": "frE1rjhH77Y", "keywords": "evolution, anthropology, archeology, fossils, neanderthal, ape", "youtube_id": "frE1rjhH77Y", "readable_id": "human-evolution-overview"}, "2rjGj8xUKms": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2rjGj8xUKms.mp4/2rjGj8xUKms.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2rjGj8xUKms.mp4/2rjGj8xUKms.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2rjGj8xUKms.m3u8/2rjGj8xUKms.m3u8"}, "duration": 170, "id": "2rjGj8xUKms", "title": "\"Idolized\" with Diana Craig Patch", "format": "mp4", "description": "Met curator Diana Craig Patch on language without words in Cult Image of the God Ptah, dating from Egypt\u2019s Third Intermediate Period.\n\nThis statuette depicts Ptah, the chief god of Egypt's capital city Memphis, who is easy to identify by his tight-fitting cap and enveloping shroud. Other iconographic details, such as the royal beard, the large and detailed broad collar, the scepter of merged \"was\" and \"djed\" signs, and a platform representing the hieroglyph for universal order, as well as the brilliant blue stone, communicate four important epithets: Lord of Lower Egypt, Master Craftsman, Lord of Truth, and Lord of the Sky.\n\nThe superior carving of the god's face, scepter, and jewelry is astonishing for a piece of such diminutive size and hard stone. Its style and quality suggests the sculpture was made in a royal workshop and most likely intended for use as a votive piece in Ptah's large temple at Memphis or in a small shrine dedicated to the god elsewhere in Egypt.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "idolized/", "slug": "idolized", "kind": "Video", "video_id": "2rjGj8xUKms", "keywords": "authority, death, gemstones, nature, sculpture, stone, Africa", "youtube_id": "2rjGj8xUKms", "readable_id": "idolized"}, "57pvSMQ0E5M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/57pvSMQ0E5M.mp4/57pvSMQ0E5M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/57pvSMQ0E5M.mp4/57pvSMQ0E5M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/57pvSMQ0E5M.m3u8/57pvSMQ0E5M.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-stroke/the-ischemic-cascade-in-stroke/", "duration": 395, "id": "57pvSMQ0E5M", "title": "The ischemic cascade in stroke", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "the-ischemic-cascade-in-stroke", "kind": "Video", "video_id": "57pvSMQ0E5M", "keywords": "", "youtube_id": "57pvSMQ0E5M", "readable_id": "the-ischemic-cascade-in-stroke"}, "C6F33Ir-sY4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C6F33Ir-sY4.mp4/C6F33Ir-sY4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C6F33Ir-sY4.mp4/C6F33Ir-sY4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C6F33Ir-sY4.m3u8/C6F33Ir-sY4.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain-and-range-1/", "duration": 216, "id": "C6F33Ir-sY4", "title": "Domain of modeling functions", "format": "mp4", "description": "Domain of modeling functions", "slug": "domain-and-range-1", "kind": "Video", "video_id": "C6F33Ir-sY4", "keywords": "U03_L2_T2_we1, Domain, and, Range, CC_39336_F-IF_1, CC_39336_F-IF_5", "youtube_id": "C6F33Ir-sY4", "readable_id": "domain-and-range-1"}, "KlKYvbigBqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KlKYvbigBqs.mp4/KlKYvbigBqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KlKYvbigBqs.mp4/KlKYvbigBqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KlKYvbigBqs.m3u8/KlKYvbigBqs.m3u8"}, "duration": 352, "id": "KlKYvbigBqs", "title": "Triangle inequality theorem", "format": "mp4", "description": "Intuition behind the triangle inequality theorem", "path": "khan/math/geometry/basic-geometry/triangle_inequality_theorem/triangle-inqequality-theorem/", "slug": "triangle-inqequality-theorem", "kind": "Video", "video_id": "KlKYvbigBqs", "keywords": "", "youtube_id": "KlKYvbigBqs", "readable_id": "triangle-inqequality-theorem"}, "i1CSuZdIu98": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/i1CSuZdIu98.mp4/i1CSuZdIu98.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/i1CSuZdIu98.mp4/i1CSuZdIu98.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/i1CSuZdIu98.m3u8/i1CSuZdIu98.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-4-9/", "duration": 613, "id": "i1CSuZdIu98", "title": "CAHSEE practice: Problems 4-9", "format": "mp4", "description": "CAHSEE Practice: Problems 4-9", "slug": "cahsee-practice-problems-4-9", "kind": "Video", "video_id": "i1CSuZdIu98", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "i1CSuZdIu98", "readable_id": "cahsee-practice-problems-4-9"}, "uQTG0x4qaYs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uQTG0x4qaYs.mp4/uQTG0x4qaYs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uQTG0x4qaYs.mp4/uQTG0x4qaYs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uQTG0x4qaYs.m3u8/uQTG0x4qaYs.m3u8"}, "path": "khan/science/discoveries-projects/reverse-engin/dvd_player/what-is-inside-a-dvd-player-5-of-5/", "duration": 173, "id": "uQTG0x4qaYs", "title": "What is inside a DVD player? (5 of 5)", "format": "mp4", "description": "In this video we explore the laser assembly inside a DVD player.", "slug": "what-is-inside-a-dvd-player-5-of-5", "kind": "Video", "video_id": "uQTG0x4qaYs", "keywords": "tolerance, fit, accuracy, fit, precision, electro-mechanical, rare earth magnets, copper coil, tracking, laser diode, mirror, reflector, laser sensor, light sensor, binary, reflection, bumps, pits, aluminum, sputtering, ribbon cable,", "youtube_id": "uQTG0x4qaYs", "readable_id": "what-is-inside-a-dvd-player-5-of-5"}, "yDB-191sa2M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yDB-191sa2M.mp4/yDB-191sa2M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yDB-191sa2M.mp4/yDB-191sa2M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yDB-191sa2M.m3u8/yDB-191sa2M.m3u8"}, "duration": 284, "id": "yDB-191sa2M", "title": "Conditions for stokes theorem", "format": "mp4", "description": "Understanding when you can use Stokes. Piecewise-smooth lines and surfaces", "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/conditions-for-stokes-theorem/", "slug": "conditions-for-stokes-theorem", "kind": "Video", "video_id": "yDB-191sa2M", "keywords": "stokes, theorem", "youtube_id": "yDB-191sa2M", "readable_id": "conditions-for-stokes-theorem"}, "ewSw9tF9Z0E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ewSw9tF9Z0E.mp4/ewSw9tF9Z0E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ewSw9tF9Z0E.mp4/ewSw9tF9Z0E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ewSw9tF9Z0E.m3u8/ewSw9tF9Z0E.m3u8"}, "duration": 271, "id": "ewSw9tF9Z0E", "title": "Use cases for credit default swaps", "format": "mp4", "description": "How credit default swaps can be used as hedges, insurance or side-bets", "path": "khan/economics-finance-domain/core-finance/derivative-securities/credit-default-swaps-tut/use-cases-for-credit-default-swaps/", "slug": "use-cases-for-credit-default-swaps", "kind": "Video", "video_id": "ewSw9tF9Z0E", "keywords": "credit, default, finance, crisis", "youtube_id": "ewSw9tF9Z0E", "readable_id": "use-cases-for-credit-default-swaps"}, "aASUZqJCHHA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aASUZqJCHHA.mp4/aASUZqJCHHA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aASUZqJCHHA.mp4/aASUZqJCHHA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aASUZqJCHHA.m3u8/aASUZqJCHHA.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/farenheit-celsius-conversion/comparing-celsius-and-farenheit-temperature-scales/", "duration": 170, "id": "aASUZqJCHHA", "title": "Comparing Celsius and Fahrenheit temperature scales", "format": "mp4", "description": "Comparing Celsius and Fahrenheit temperature scales", "slug": "comparing-celsius-and-farenheit-temperature-scales", "kind": "Video", "video_id": "aASUZqJCHHA", "keywords": "U06_L3_T1_we1, Comparing, Celsius, and, Farenheit, temperature, scales, CC_6_RP_3_d", "youtube_id": "aASUZqJCHHA", "readable_id": "comparing-celsius-and-farenheit-temperature-scales"}, "1k-jqxMuUaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1k-jqxMuUaM.mp4/1k-jqxMuUaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1k-jqxMuUaM.mp4/1k-jqxMuUaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1k-jqxMuUaM.m3u8/1k-jqxMuUaM.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-32-34/", "duration": 209, "id": "1k-jqxMuUaM", "title": "CAHSEE practice: Problems 32-34", "format": "mp4", "description": "CAHSEE Practice: Problems 32-34", "slug": "cahsee-practice-problems-32-34", "kind": "Video", "video_id": "1k-jqxMuUaM", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "1k-jqxMuUaM", "readable_id": "cahsee-practice-problems-32-34"}, "oDigu9YxXUg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oDigu9YxXUg.mp4/oDigu9YxXUg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oDigu9YxXUg.mp4/oDigu9YxXUg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oDigu9YxXUg.m3u8/oDigu9YxXUg.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/aromatic-stability/aromatic-stability-i/", "duration": 358, "id": "oDigu9YxXUg", "title": "Aromatic stability I", "format": "mp4", "description": "The aromaticity of benzene", "slug": "aromatic-stability-i", "kind": "Video", "video_id": "oDigu9YxXUg", "keywords": "", "youtube_id": "oDigu9YxXUg", "readable_id": "aromatic-stability-i"}, "6RKMRBxDm20": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6RKMRBxDm20.mp4/6RKMRBxDm20.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6RKMRBxDm20.mp4/6RKMRBxDm20.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6RKMRBxDm20.m3u8/6RKMRBxDm20.m3u8"}, "duration": 377, "id": "6RKMRBxDm20", "title": "Language and religion of the former Yugoslavia", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/world-war-i-tutorial/language-and-religion-of-the-former-yugoslavia/", "slug": "language-and-religion-of-the-former-yugoslavia", "kind": "Video", "video_id": "6RKMRBxDm20", "keywords": "", "youtube_id": "6RKMRBxDm20", "readable_id": "language-and-religion-of-the-former-yugoslavia"}, "_bBAiZhfH_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_bBAiZhfH_4.mp4/_bBAiZhfH_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_bBAiZhfH_4.mp4/_bBAiZhfH_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_bBAiZhfH_4.m3u8/_bBAiZhfH_4.m3u8"}, "duration": 245, "id": "_bBAiZhfH_4", "title": "Limit and function defined at point of discontinuity", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/continuity-limits/limit-and-function-defined-at-point-of-discontinuity/", "slug": "limit-and-function-defined-at-point-of-discontinuity", "kind": "Video", "video_id": "_bBAiZhfH_4", "keywords": "", "youtube_id": "_bBAiZhfH_4", "readable_id": "limit-and-function-defined-at-point-of-discontinuity"}, "N-vIfz4o6PA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N-vIfz4o6PA.mp4/N-vIfz4o6PA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N-vIfz4o6PA.mp4/N-vIfz4o6PA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N-vIfz4o6PA.m3u8/N-vIfz4o6PA.m3u8"}, "duration": 269, "id": "N-vIfz4o6PA", "title": "Biddy Peppin on the female Vorticists", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nThe Vorticists were a British art movement that tried to create a new art for a new world, one of big cities, fast machines, and angular energy. The movement included two women, Helen Saunders and Jessica Dismorr, while Dorothy Shakespear was an unofficial member. Join Biddy Peppin, art historian and a relative of Helen Saunders, as she tells us the story of the female Vorticists and the obstacles they faced in being taken seriously as artists. The executor of Dismorr\u2019s will, for example, quite possibly destroyed the artist\u2019s work after her death as he worried it would \u201ccasts doubts on her sanity.\u201d\n\n\n\n\n\"There was a perception that women were less able to be artists than men.\u201d How do you think Saunders and Dismorr challenged these claims?\n\nClick here for more about Helen Saunders and Jessica Dismorr.\n", "path": "biddy-peppin-on-the-female-vorticists/", "slug": "biddy-peppin-on-the-female-vorticists", "kind": "Video", "video_id": "N-vIfz4o6PA", "keywords": "Tate", "youtube_id": "N-vIfz4o6PA", "readable_id": "biddy-peppin-on-the-female-vorticists"}, "h6mZLTpTHcU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h6mZLTpTHcU.mp4/h6mZLTpTHcU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h6mZLTpTHcU.mp4/h6mZLTpTHcU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h6mZLTpTHcU.m3u8/h6mZLTpTHcU.m3u8"}, "path": "khan/math/integral-calculus/indefinite-definite-integrals/functions-defined-by-integrals/evaluating-function-defined-by-integral/", "duration": 445, "id": "h6mZLTpTHcU", "title": "Evaluating a function defined by an integral", "format": "mp4", "description": "", "slug": "evaluating-function-defined-by-integral", "kind": "Video", "video_id": "h6mZLTpTHcU", "keywords": "", "youtube_id": "h6mZLTpTHcU", "readable_id": "evaluating-function-defined-by-integral"}, "oQhp3ndj28Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oQhp3ndj28Y.mp4/oQhp3ndj28Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oQhp3ndj28Y.mp4/oQhp3ndj28Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oQhp3ndj28Y.m3u8/oQhp3ndj28Y.m3u8"}, "duration": 339, "id": "oQhp3ndj28Y", "title": "e as a limit", "format": "mp4", "description": "", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/cont-comp-int-and-e/e-as-limit/", "slug": "e-as-limit", "kind": "Video", "video_id": "oQhp3ndj28Y", "keywords": "", "youtube_id": "oQhp3ndj28Y", "readable_id": "e-as-limit"}, "299o6c-Fkz4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/299o6c-Fkz4.mp4/299o6c-Fkz4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/299o6c-Fkz4.mp4/299o6c-Fkz4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/299o6c-Fkz4.m3u8/299o6c-Fkz4.m3u8"}, "duration": 737, "id": "299o6c-Fkz4", "title": "Strong acid titration", "format": "mp4", "description": "Strong acid titration and equivalence point", "path": "khan/science/chemistry/acid-base-equilibrium/titrations/strong-acid-titration/", "slug": "strong-acid-titration", "kind": "Video", "video_id": "299o6c-Fkz4", "keywords": "chemistry, titration, equivalence", "youtube_id": "299o6c-Fkz4", "readable_id": "strong-acid-titration"}, "DpnUrVXSLaQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DpnUrVXSLaQ.mp4/DpnUrVXSLaQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DpnUrVXSLaQ.mp4/DpnUrVXSLaQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DpnUrVXSLaQ.m3u8/DpnUrVXSLaQ.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/solubility-equilibria-mcat/common-polyatomic-ions/", "duration": 348, "id": "DpnUrVXSLaQ", "title": "Common polyatomic ions", "format": "mp4", "description": "", "slug": "common-polyatomic-ions", "kind": "Video", "video_id": "DpnUrVXSLaQ", "keywords": "", "youtube_id": "DpnUrVXSLaQ", "readable_id": "common-polyatomic-ions"}, "rcLnMe1ELPA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rcLnMe1ELPA.mp4/rcLnMe1ELPA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rcLnMe1ELPA.mp4/rcLnMe1ELPA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rcLnMe1ELPA.m3u8/rcLnMe1ELPA.m3u8"}, "duration": 775, "id": "rcLnMe1ELPA", "title": "Scale of the galaxy", "format": "mp4", "description": "Scale of the Galaxy", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/scale-earth-galaxy-tutorial/scale-of-the-galaxy/", "slug": "scale-of-the-galaxy", "kind": "Video", "video_id": "rcLnMe1ELPA", "keywords": "Scale, of, the, Galaxy", "youtube_id": "rcLnMe1ELPA", "readable_id": "scale-of-the-galaxy"}, "Xs6E-FEls1c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xs6E-FEls1c.mp4/Xs6E-FEls1c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xs6E-FEls1c.mp4/Xs6E-FEls1c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xs6E-FEls1c.m3u8/Xs6E-FEls1c.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/conditionals-pt-2/", "duration": 491, "id": "Xs6E-FEls1c", "title": "Language: Conditionals part 2", "format": "mp4", "description": "Justin Khoo invites us to think about conditional sentences (\"if P then Q\"). Perhaps surprisingly, the question of what these sentences mean has vexed philosophers for thousands of years. In part 2 of the series on conditionals, Justin discusses some of the challenges facing the material conditional theory.\n\nSpeaker: Dr. Justin Khoo, Assistant Professor, M.I.T.", "slug": "conditionals-pt-2", "kind": "Video", "video_id": "Xs6E-FEls1c", "keywords": "", "youtube_id": "Xs6E-FEls1c", "readable_id": "conditionals-pt-2"}, "HwkEQfsJenk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HwkEQfsJenk.mp4/HwkEQfsJenk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HwkEQfsJenk.mp4/HwkEQfsJenk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HwkEQfsJenk.m3u8/HwkEQfsJenk.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/acid-base-properties-of-salts/", "duration": 453, "id": "HwkEQfsJenk", "title": "Acid-base properties of salts", "format": "mp4", "description": "", "slug": "acid-base-properties-of-salts", "kind": "Video", "video_id": "HwkEQfsJenk", "keywords": "", "youtube_id": "HwkEQfsJenk", "readable_id": "acid-base-properties-of-salts"}, "EJjnEau6aeI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EJjnEau6aeI.mp4/EJjnEau6aeI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EJjnEau6aeI.mp4/EJjnEau6aeI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EJjnEau6aeI.m3u8/EJjnEau6aeI.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/add-and-subtract-fracs-pre-alg/adding-fractions-with-like-denominators/", "duration": 198, "id": "EJjnEau6aeI", "title": "Adding fractions with like denominators", "format": "mp4", "description": "With like denominators, you're basically just adding numerators. That's not too bad, right? Can the resulting fraction be simplified?", "slug": "adding-fractions-with-like-denominators", "kind": "Video", "video_id": "EJjnEau6aeI", "keywords": "U02_L3_T1_we1, Adding, Fractions, with, Like, Denominators, CC_4_MD_2, CC_4_NF_3_a, CC_4_NF_3_b, CC_4_NF_3_c, CC_4_NF_3_d", "youtube_id": "EJjnEau6aeI", "readable_id": "adding-fractions-with-like-denominators"}, "vAepSNDLZRM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vAepSNDLZRM.mp4/vAepSNDLZRM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vAepSNDLZRM.mp4/vAepSNDLZRM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vAepSNDLZRM.m3u8/vAepSNDLZRM.m3u8"}, "duration": 354, "id": "vAepSNDLZRM", "title": "Undetermined coefficients 4", "format": "mp4", "description": "Putting it all together!", "path": "khan/math/differential-equations/second-order-differential-equations/undetermined-coefficients/undetermined-coefficients-4/", "slug": "undetermined-coefficients-4", "kind": "Video", "video_id": "vAepSNDLZRM", "keywords": "undetermined, coefficients, differential, equations", "youtube_id": "vAepSNDLZRM", "readable_id": "undetermined-coefficients-4"}, "ENAZqOoOVaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ENAZqOoOVaI.mp4/ENAZqOoOVaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ENAZqOoOVaI.mp4/ENAZqOoOVaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ENAZqOoOVaI.m3u8/ENAZqOoOVaI.m3u8"}, "path": "khan/humanities/prehistoric-art/paleolithic-art/nude-woman-venus-of-willendorf-c-28-000-25-000-b-c-e/", "duration": 260, "id": "ENAZqOoOVaI", "title": "Nude woman (Venus of Willendorf)", "format": "mp4", "description": "Nude Woman (Venus of Willendorf), c. 28,000-25,000 B.C.E., Limestone, 4 1/4\" high (Naturhistorisches Museum, Vienna)", "slug": "nude-woman-venus-of-willendorf-c-28-000-25-000-b-c-e", "kind": "Video", "video_id": "ENAZqOoOVaI", "keywords": "venus of willendorf, willendorf, art history, preshistoric art, Venus, Khan Academy, Ice Age", "youtube_id": "ENAZqOoOVaI", "readable_id": "nude-woman-venus-of-willendorf-c-28-000-25-000-b-c-e"}, "woUQ9LLaees": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/woUQ9LLaees.mp4/woUQ9LLaees.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/woUQ9LLaees.mp4/woUQ9LLaees.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/woUQ9LLaees.m3u8/woUQ9LLaees.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/creating-bar-charts-1/", "duration": 67, "id": "woUQ9LLaees", "title": "Creating a bar chart", "format": "mp4", "description": "We're going to create a bar chart together using using data from a survey.", "slug": "creating-bar-charts-1", "kind": "Video", "video_id": "woUQ9LLaees", "keywords": "", "youtube_id": "woUQ9LLaees", "readable_id": "creating-bar-charts-1"}, "tV8cMNYi4q4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tV8cMNYi4q4.mp4/tV8cMNYi4q4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tV8cMNYi4q4.mp4/tV8cMNYi4q4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tV8cMNYi4q4.m3u8/tV8cMNYi4q4.m3u8"}, "duration": 161, "id": "tV8cMNYi4q4", "title": "Multiplying multiples of powers of 10", "format": "mp4", "description": "Learn how to multiply (9 * 10^9) (-2 * 10^-3).", "path": "multiplying-multiples-of-powers-of-10/", "slug": "multiplying-multiples-of-powers-of-10", "kind": "Video", "video_id": "tV8cMNYi4q4", "keywords": "", "youtube_id": "tV8cMNYi4q4", "readable_id": "multiplying-multiples-of-powers-of-10"}, "Kv2iHde7Xgw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kv2iHde7Xgw.mp4/Kv2iHde7Xgw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kv2iHde7Xgw.mp4/Kv2iHde7Xgw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kv2iHde7Xgw.m3u8/Kv2iHde7Xgw.m3u8"}, "duration": 253, "id": "Kv2iHde7Xgw", "title": "Solving logarithmic equations", "format": "mp4", "description": "Solving Logarithmic Equations", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/solving-logarithmic-equations/", "slug": "solving-logarithmic-equations", "kind": "Video", "video_id": "Kv2iHde7Xgw", "keywords": "u18_l4_t1_we2, Solving, Logarithmic, Equations", "youtube_id": "Kv2iHde7Xgw", "readable_id": "solving-logarithmic-equations"}, "LpY8Qa3IP1w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LpY8Qa3IP1w.mp4/LpY8Qa3IP1w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LpY8Qa3IP1w.mp4/LpY8Qa3IP1w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LpY8Qa3IP1w.m3u8/LpY8Qa3IP1w.m3u8"}, "duration": 619, "id": "LpY8Qa3IP1w", "title": "Second example of line integral of conservative vector field", "format": "mp4", "description": "Using path independence of a conservative vector field to solve a line integral", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/second-example-of-line-integral-of-conservative-vector-field/", "slug": "second-example-of-line-integral-of-conservative-vector-field", "kind": "Video", "video_id": "LpY8Qa3IP1w", "keywords": "conservative, vector, field, path, independence, calculus", "youtube_id": "LpY8Qa3IP1w", "readable_id": "second-example-of-line-integral-of-conservative-vector-field"}, "EXLj51aZgnU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EXLj51aZgnU.mp4/EXLj51aZgnU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EXLj51aZgnU.mp4/EXLj51aZgnU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EXLj51aZgnU.m3u8/EXLj51aZgnU.m3u8"}, "duration": 154, "id": "EXLj51aZgnU", "title": "\"Arresting\" with Charles Little", "format": "mp4", "description": "Met curator Charles Little on miraculous beauty in Relief of the Betrayal and Arrest of Jesus, made in Amiens, Picardy, France.\n\nFour key events in the final hours of Jesus\u2019 life are dramatically shown here (from left to right): Peter sheathing his sword after severing the ear of Malchus (seated), the high priest\u2019s servant; Jesus miraculously restoring the ear; Judas betraying Jesus with a kiss; and Roman soldiers arresting Jesus. The compression of these events into one scene with its complex interweaving of figural masses creates a powerful sculptural statement.\u00a0\n\nIn the medieval church the choir screen separated the nave and the choir area. By the thirteenth century these barriers often were decorated with extensive narrative themes, especially the Passion, the dramatic final events in the earthly life of Jesus. Because they hindered participation in church rituals by the laity, most European churches eventually eliminated them. The choir screen at the cathedral in Amiens was destroyed in 1755. This relief is one of the largest and best preserved narrative sculptures to survive.\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "arresting/", "slug": "arresting", "kind": "Video", "video_id": "EXLj51aZgnU", "keywords": "ingenuity, motion, sculpture, stone, touch, turmoil, Europe", "youtube_id": "EXLj51aZgnU", "readable_id": "arresting"}, "MZQxeQYQCUg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MZQxeQYQCUg.mp4/MZQxeQYQCUg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MZQxeQYQCUg.mp4/MZQxeQYQCUg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MZQxeQYQCUg.m3u8/MZQxeQYQCUg.m3u8"}, "duration": 202, "id": "MZQxeQYQCUg", "title": "Call payoff diagram", "format": "mp4", "description": "Call Payoff Diagram", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/call-payoff-diagram/", "slug": "call-payoff-diagram", "kind": "Video", "video_id": "MZQxeQYQCUg", "keywords": "Call, Payoff, Diagram", "youtube_id": "MZQxeQYQCUg", "readable_id": "call-payoff-diagram"}, "I356lV1v8Bc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I356lV1v8Bc.mp4/I356lV1v8Bc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I356lV1v8Bc.mp4/I356lV1v8Bc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I356lV1v8Bc.m3u8/I356lV1v8Bc.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/giotto-arena-scrovegni-chapel-part-2-of-4/", "duration": 614, "id": "I356lV1v8Bc", "title": "Giotto, Arena (Scrovegni) Chapel (part 2)", "format": "mp4", "description": "Part 2: The Narrative Cycle from Giotto's Arena (Scrovegni) Chapel, Padua, c. 1305\n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "giotto-arena-scrovegni-chapel-part-2-of-4", "kind": "Video", "video_id": "I356lV1v8Bc", "keywords": "Giotto, Scrovegni, Arena Chapel, fresco, art, painting, narrative", "youtube_id": "I356lV1v8Bc", "readable_id": "giotto-arena-scrovegni-chapel-part-2-of-4"}, "a_mzIWvHx_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a_mzIWvHx_Y.mp4/a_mzIWvHx_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a_mzIWvHx_Y.mp4/a_mzIWvHx_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a_mzIWvHx_Y.m3u8/a_mzIWvHx_Y.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/whole-number-representations-tut/regrouping-numbers-intro-various-place-values/", "duration": 154, "id": "a_mzIWvHx_Y", "title": "Regrouping numbers intro various place values", "format": "mp4", "description": "Thinking about numbers as expressions of different place values is really helpful. In this example we'll look at regrouping a number by different place values.", "slug": "regrouping-numbers-intro-various-place-values", "kind": "Video", "video_id": "a_mzIWvHx_Y", "keywords": "", "youtube_id": "a_mzIWvHx_Y", "readable_id": "regrouping-numbers-intro-various-place-values"}, "yOgGhPIHnlA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yOgGhPIHnlA.mp4/yOgGhPIHnlA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yOgGhPIHnlA.mp4/yOgGhPIHnlA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yOgGhPIHnlA.m3u8/yOgGhPIHnlA.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-16-why-target-rates-vs-money-supply/", "duration": 700, "id": "yOgGhPIHnlA", "title": "Banking 16: Why target rates vs. money supply", "format": "mp4", "description": "The rationale for targeting interest rates instead of directly having a money supply target.", "slug": "banking-16-why-target-rates-vs-money-supply", "kind": "Video", "video_id": "yOgGhPIHnlA", "keywords": "money, supply, m0, m1, m2, interest, rate, federal, funds", "youtube_id": "yOgGhPIHnlA", "readable_id": "banking-16-why-target-rates-vs-money-supply"}, "iMqCSgqzmiQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iMqCSgqzmiQ.mp4/iMqCSgqzmiQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iMqCSgqzmiQ.mp4/iMqCSgqzmiQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iMqCSgqzmiQ.m3u8/iMqCSgqzmiQ.m3u8"}, "path": "khan/partner-content/lebron-asks-subject/lebron-asks/lebron-asks-about-the-chances-of-making-10-free-throws/", "duration": 425, "id": "iMqCSgqzmiQ", "title": "Free throwing probability", "format": "mp4", "description": "Our friend and Cleveland Cavalier, LeBron James, asks Sal how to determine the probability of making 10 free throws in a row. Hint: the answer is surprising!", "slug": "lebron-asks-about-the-chances-of-making-10-free-throws", "kind": "Video", "video_id": "iMqCSgqzmiQ", "keywords": "marquee, lebron, james, probability, miami, heat, khan, academy, marquee", "youtube_id": "iMqCSgqzmiQ", "readable_id": "lebron-asks-about-the-chances-of-making-10-free-throws"}, "5B1i26dUwME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5B1i26dUwME.mp4/5B1i26dUwME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5B1i26dUwME.mp4/5B1i26dUwME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5B1i26dUwME.m3u8/5B1i26dUwME.m3u8"}, "path": "khan/science/physics/thermodynamics/thermodynamics-part-4/", "duration": 614, "id": "5B1i26dUwME", "title": "Thermodynamics (part 4)", "format": "mp4", "description": "Introduction to the concept of a mole. Universal gas constant R. PV=nRT", "slug": "thermodynamics-part-4", "kind": "Video", "video_id": "5B1i26dUwME", "keywords": "mole, PV=nRT, thermodynamics, physics, universal, gas, constant", "youtube_id": "5B1i26dUwME", "readable_id": "thermodynamics-part-4"}, "nH2-37rTA8U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nH2-37rTA8U.mp4/nH2-37rTA8U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nH2-37rTA8U.mp4/nH2-37rTA8U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nH2-37rTA8U.m3u8/nH2-37rTA8U.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-3-fractional-reserve-banking/", "duration": 708, "id": "nH2-37rTA8U", "title": "Banking 3: Fractional reserve banking", "format": "mp4", "description": "Fractional reserve banking and the multiplier effect. Introduction to the money supply.", "slug": "banking-3-fractional-reserve-banking", "kind": "Video", "video_id": "nH2-37rTA8U", "keywords": "fractional, reserve, banking, multiplier, effect, money, supply", "youtube_id": "nH2-37rTA8U", "readable_id": "banking-3-fractional-reserve-banking"}, "_hrN4rVCOfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_hrN4rVCOfI.mp4/_hrN4rVCOfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_hrN4rVCOfI.mp4/_hrN4rVCOfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_hrN4rVCOfI.m3u8/_hrN4rVCOfI.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/binomial-theorem-and-combinatorics-intuition/", "duration": 255, "id": "_hrN4rVCOfI", "title": "Intuitive connection between binomial expansion and combinatorics", "format": "mp4", "description": "", "slug": "binomial-theorem-and-combinatorics-intuition", "kind": "Video", "video_id": "_hrN4rVCOfI", "keywords": "", "youtube_id": "_hrN4rVCOfI", "readable_id": "binomial-theorem-and-combinatorics-intuition"}, "_BFaxpf35sY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_BFaxpf35sY.mp4/_BFaxpf35sY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_BFaxpf35sY.mp4/_BFaxpf35sY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_BFaxpf35sY.m3u8/_BFaxpf35sY.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/algebraic-fractions/algebraic-expressions-with-fraction-division/", "duration": 346, "id": "_BFaxpf35sY", "title": "Algebraic expressions with fraction division", "format": "mp4", "description": "", "slug": "algebraic-expressions-with-fraction-division", "kind": "Video", "video_id": "_BFaxpf35sY", "keywords": "", "youtube_id": "_BFaxpf35sY", "readable_id": "algebraic-expressions-with-fraction-division"}, "G8s3SkAm-gM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G8s3SkAm-gM.mp4/G8s3SkAm-gM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G8s3SkAm-gM.mp4/G8s3SkAm-gM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G8s3SkAm-gM.m3u8/G8s3SkAm-gM.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-3/", "duration": 655, "id": "G8s3SkAm-gM", "title": "GMAT: Math 3", "format": "mp4", "description": "12-19, pgs. 153-154", "slug": "gmat-math-3", "kind": "Video", "video_id": "G8s3SkAm-gM", "keywords": "GMAT, math, problem, solving", "youtube_id": "G8s3SkAm-gM", "readable_id": "gmat-math-3"}, "ryEnHMqNszY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ryEnHMqNszY.mp4/ryEnHMqNszY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ryEnHMqNszY.mp4/ryEnHMqNszY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ryEnHMqNszY.m3u8/ryEnHMqNszY.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/magnetism-mcat/magnetism-part-4/", "duration": 640, "id": "ryEnHMqNszY", "title": "Magnetism - Part 4", "format": "mp4", "description": "", "slug": "magnetism-part-4", "kind": "Video", "video_id": "ryEnHMqNszY", "keywords": "", "youtube_id": "ryEnHMqNszY", "readable_id": "magnetism-part-4"}, "wKPyzrEVqaQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wKPyzrEVqaQ.mp4/wKPyzrEVqaQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wKPyzrEVqaQ.mp4/wKPyzrEVqaQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wKPyzrEVqaQ.m3u8/wKPyzrEVqaQ.m3u8"}, "duration": 320, "id": "wKPyzrEVqaQ", "title": "Analyzing particle movement based on graphs", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/motion-along-line-derivatives/analyzing-particle-movement-based-on-graphs/", "slug": "analyzing-particle-movement-based-on-graphs", "kind": "Video", "video_id": "wKPyzrEVqaQ", "keywords": "", "youtube_id": "wKPyzrEVqaQ", "readable_id": "analyzing-particle-movement-based-on-graphs"}, "g8yk6zQDAek": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g8yk6zQDAek.mp4/g8yk6zQDAek.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g8yk6zQDAek.mp4/g8yk6zQDAek.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g8yk6zQDAek.m3u8/g8yk6zQDAek.m3u8"}, "duration": 310, "id": "g8yk6zQDAek", "title": "Using fractions as division to create mixed numbers", "format": "mp4", "description": "Understand the relationship between fractions, division, and mixed numbers.", "path": "fractions-division-mixed-numbers/", "slug": "fractions-division-mixed-numbers", "kind": "Video", "video_id": "g8yk6zQDAek", "keywords": "", "youtube_id": "g8yk6zQDAek", "readable_id": "fractions-division-mixed-numbers"}, "V758Lz_MuEg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/V758Lz_MuEg.mp4/V758Lz_MuEg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/V758Lz_MuEg.mp4/V758Lz_MuEg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/V758Lz_MuEg.m3u8/V758Lz_MuEg.m3u8"}, "duration": 283, "id": "V758Lz_MuEg", "title": "Counting 1 exercise", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/order-of-operations/counting-tutorial/counting-1-exercise/", "slug": "counting-1-exercise", "kind": "Video", "video_id": "V758Lz_MuEg", "keywords": "", "youtube_id": "V758Lz_MuEg", "readable_id": "counting-1-exercise"}, "SDpVAZEefHY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SDpVAZEefHY.mp4/SDpVAZEefHY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SDpVAZEefHY.mp4/SDpVAZEefHY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SDpVAZEefHY.m3u8/SDpVAZEefHY.m3u8"}, "duration": 234, "id": "SDpVAZEefHY", "title": "Barnum Brown: The man who discovered Tyrannosaurus rex", "format": "mp4", "description": "Known as the greatest dinosaur collector of all time, Barnum Brown helped the American Museum of Natural History establish its world-class fossil collection. Museum Research Associate Lowell Dingus and Chair of the Division of Paleontology Mark Norell recently traced Brown's extraordinary career from a frontier farm to the world's top fossil sites to the halls of the Museum in the book, Barnum Brown: The Man Who Discovered Tyrannosaurus Rex.", "path": "barnum-brown-trex/", "slug": "barnum-brown-trex", "kind": "Video", "video_id": "SDpVAZEefHY", "keywords": "", "youtube_id": "SDpVAZEefHY", "readable_id": "barnum-brown-trex"}, "q9XCrpLPfGk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q9XCrpLPfGk.mp4/q9XCrpLPfGk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q9XCrpLPfGk.mp4/q9XCrpLPfGk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q9XCrpLPfGk.m3u8/q9XCrpLPfGk.m3u8"}, "duration": 373, "id": "q9XCrpLPfGk", "title": "Perimeter and unit conversion", "format": "mp4", "description": "Perimeter and Unit Conversion", "path": "khan/math/pre-algebra/rates-and-ratios/metric-system-tutorial/perimeter-and-unit-conversion/", "slug": "perimeter-and-unit-conversion", "kind": "Video", "video_id": "q9XCrpLPfGk", "keywords": "u6_l2_t3_we1, Perimeter, and, Unit, Conversion", "youtube_id": "q9XCrpLPfGk", "readable_id": "perimeter-and-unit-conversion"}, "Wm0zq-NqEFs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wm0zq-NqEFs.mp4/Wm0zq-NqEFs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wm0zq-NqEFs.mp4/Wm0zq-NqEFs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wm0zq-NqEFs.m3u8/Wm0zq-NqEFs.m3u8"}, "path": "khan/math/arithmetic/addition-subtraction/addition_carrying/carrying-when-adding-three-digit-numbers/", "duration": 146, "id": "Wm0zq-NqEFs", "title": "Adding three-digit numbers", "format": "mp4", "description": "Learn how to carry when adding a three-digit number.", "slug": "carrying-when-adding-three-digit-numbers", "kind": "Video", "video_id": "Wm0zq-NqEFs", "keywords": "", "youtube_id": "Wm0zq-NqEFs", "readable_id": "carrying-when-adding-three-digit-numbers"}, "RgQ4eCc38dM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RgQ4eCc38dM.mp4/RgQ4eCc38dM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RgQ4eCc38dM.mp4/RgQ4eCc38dM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RgQ4eCc38dM.m3u8/RgQ4eCc38dM.m3u8"}, "path": "khan/humanities/art-asia/art-japan/japanese-art/shinto/", "duration": 227, "id": "RgQ4eCc38dM", "title": "Shinto", "format": "mp4", "description": "An introduction to Shinto, one of Japan's earliest belief systems.\u00a0", "slug": "shinto", "kind": "Video", "video_id": "RgQ4eCc38dM", "keywords": "", "youtube_id": "RgQ4eCc38dM", "readable_id": "shinto"}, "DKnFvXmUlOI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DKnFvXmUlOI.mp4/DKnFvXmUlOI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DKnFvXmUlOI.mp4/DKnFvXmUlOI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DKnFvXmUlOI.m3u8/DKnFvXmUlOI.m3u8"}, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/cimabue-s-santa-trinita-madonna-giotto-s-ognissanti-madonna/", "duration": 419, "id": "DKnFvXmUlOI", "title": "Cimabue, Santa Trinita Madonna & Giotto's Ognissanti Madonna", "format": "mp4", "description": "", "slug": "cimabue-s-santa-trinita-madonna-giotto-s-ognissanti-madonna", "kind": "Video", "video_id": "DKnFvXmUlOI", "keywords": "art history", "youtube_id": "DKnFvXmUlOI", "readable_id": "cimabue-s-santa-trinita-madonna-giotto-s-ognissanti-madonna"}, "n1MbK-Qb7Mk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n1MbK-Qb7Mk.mp4/n1MbK-Qb7Mk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n1MbK-Qb7Mk.mp4/n1MbK-Qb7Mk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n1MbK-Qb7Mk.m3u8/n1MbK-Qb7Mk.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-38/", "duration": 591, "id": "n1MbK-Qb7Mk", "title": "GMAT: Data sufficiency 38", "format": "mp4", "description": "145-147, pg. 290", "slug": "gmat-data-sufficiency-38", "kind": "Video", "video_id": "n1MbK-Qb7Mk", "keywords": "gmat, data, sufficiency, math", "youtube_id": "n1MbK-Qb7Mk", "readable_id": "gmat-data-sufficiency-38"}, "viaPc8zDcRI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/viaPc8zDcRI.mp4/viaPc8zDcRI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/viaPc8zDcRI.mp4/viaPc8zDcRI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/viaPc8zDcRI.m3u8/viaPc8zDcRI.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/extreme-derivative-word-problem-advanced/", "duration": 1393, "id": "viaPc8zDcRI", "title": "Extreme derivative word problem (advanced)", "format": "mp4", "description": "A difficult but interesting derivative word problem", "slug": "extreme-derivative-word-problem-advanced", "kind": "Video", "video_id": "viaPc8zDcRI", "keywords": "calculus, derivative, wprd, problem, CC_39336_A-REI_4", "youtube_id": "viaPc8zDcRI", "readable_id": "extreme-derivative-word-problem-advanced"}, "UQiNvDOJi0c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UQiNvDOJi0c.mp4/UQiNvDOJi0c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UQiNvDOJi0c.mp4/UQiNvDOJi0c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UQiNvDOJi0c.m3u8/UQiNvDOJi0c.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/neo-classicism/david-the-lictors-returning-to-brutus-the-bodies-of-his-sons-1789/", "duration": 254, "id": "UQiNvDOJi0c", "title": "David, The Lictors Returning to Brutus the Bodies of His Sons", "format": "mp4", "description": "Jacques-Louis David, The Lictors Returning to Brutus the Bodies of His Sons, 1789, oil on canvas, 10' 7-1/8\" x 13' 10-1/8\" or 3.23 x 4.22m (Mus\u00e9e du Louvre, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "david-the-lictors-returning-to-brutus-the-bodies-of-his-sons-1789", "kind": "Video", "video_id": "UQiNvDOJi0c", "keywords": "Jacques Louis David, Brutus, Louvre, Jacques-Louis David", "youtube_id": "UQiNvDOJi0c", "readable_id": "david-the-lictors-returning-to-brutus-the-bodies-of-his-sons-1789"}, "Xcel427Ezl0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xcel427Ezl0.mp4/Xcel427Ezl0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xcel427Ezl0.mp4/Xcel427Ezl0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xcel427Ezl0.m3u8/Xcel427Ezl0.m3u8"}, "duration": 943, "id": "Xcel427Ezl0", "title": "Introduction to gravity", "format": "mp4", "description": "Basics of gravity and the Law of Universal Gravitation", "path": "khan/science/physics/newton-gravitation/gravity-newtonian/introduction-to-gravity/", "slug": "introduction-to-gravity", "kind": "Video", "video_id": "Xcel427Ezl0", "keywords": "mass, newton, isaac, einstein", "youtube_id": "Xcel427Ezl0", "readable_id": "introduction-to-gravity"}, "hTi7wvRE9UQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hTi7wvRE9UQ.mp4/hTi7wvRE9UQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hTi7wvRE9UQ.mp4/hTi7wvRE9UQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hTi7wvRE9UQ.m3u8/hTi7wvRE9UQ.m3u8"}, "path": "khan/test-prep/mcat/behavior/social-psychology/events-that-inspired-the-milgram-studies-on-obedience/", "duration": 240, "id": "hTi7wvRE9UQ", "title": "Events that inspired the Milgram studies on obedience", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "events-that-inspired-the-milgram-studies-on-obedience", "kind": "Video", "video_id": "hTi7wvRE9UQ", "keywords": "", "youtube_id": "hTi7wvRE9UQ", "readable_id": "events-that-inspired-the-milgram-studies-on-obedience"}, "3i8iou6tXqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3i8iou6tXqY.mp4/3i8iou6tXqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3i8iou6tXqY.mp4/3i8iou6tXqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3i8iou6tXqY.m3u8/3i8iou6tXqY.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/augustus-of-primaporta-1st-century-c-e-vatican-museums/", "duration": 294, "id": "3i8iou6tXqY", "title": "Augustus of Primaporta", "format": "mp4", "description": "Augustus of Primaporta, 1st century C.E. (Vatican Museums) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "augustus-of-primaporta-1st-century-c-e-vatican-museums", "kind": "Video", "video_id": "3i8iou6tXqY", "keywords": "Augustus, Vatican, Rome, Roman Empire, Primaporta, Ancient Rome, Art History, Khan Academy, Smarthistory", "youtube_id": "3i8iou6tXqY", "readable_id": "augustus-of-primaporta-1st-century-c-e-vatican-museums"}, "N_ZHnirms3A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N_ZHnirms3A.mp4/N_ZHnirms3A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N_ZHnirms3A.mp4/N_ZHnirms3A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N_ZHnirms3A.m3u8/N_ZHnirms3A.m3u8"}, "duration": 3485, "id": "N_ZHnirms3A", "title": "Khan Academy chats with teachers - Oct 11, 2012", "format": "mp4", "description": "Khan Academy team members and Peter McIntosh, teacher who uses Khan Academy with his students at Oakland Unity High School, answer teachers' questions about Khan Academy.", "path": "khan-academy-chats-with-teachers-oct-11-2012/", "slug": "khan-academy-chats-with-teachers-oct-11-2012", "kind": "Video", "video_id": "N_ZHnirms3A", "keywords": "", "youtube_id": "N_ZHnirms3A", "readable_id": "khan-academy-chats-with-teachers-oct-11-2012"}, "7MKA2QlKvHc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7MKA2QlKvHc.mp4/7MKA2QlKvHc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7MKA2QlKvHc.mp4/7MKA2QlKvHc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7MKA2QlKvHc.m3u8/7MKA2QlKvHc.m3u8"}, "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/proof-relationship-between-cross-product-and-sin-of-angle/", "duration": 1089, "id": "7MKA2QlKvHc", "title": "Proof: Relationship between cross product and sin of angle", "format": "mp4", "description": "Proof: Relationship between the cross product and sin of angle between vectors", "slug": "proof-relationship-between-cross-product-and-sin-of-angle", "kind": "Video", "video_id": "7MKA2QlKvHc", "keywords": "cross, product, vectors, sin, theta", "youtube_id": "7MKA2QlKvHc", "readable_id": "proof-relationship-between-cross-product-and-sin-of-angle"}, "hH1a1v1JNAk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hH1a1v1JNAk.mp4/hH1a1v1JNAk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hH1a1v1JNAk.mp4/hH1a1v1JNAk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hH1a1v1JNAk.m3u8/hH1a1v1JNAk.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/c-zanne-still-life-with-apples-1895-98-moma/", "duration": 335, "id": "hH1a1v1JNAk", "title": "C\u00e9zanne, Still Life with Apples", "format": "mp4", "description": "C\u00e9zanne, Still Life with Apples,\u00a01895-98 (MoMA). Speakers:\u00a0Beth Harris and Steven Zucker.\u00a0", "slug": "c-zanne-still-life-with-apples-1895-98-moma", "kind": "Video", "video_id": "hH1a1v1JNAk", "keywords": "cezanne, art, art history, smarthistory, Post-Impressionism, MoMA, Museum of Modern Art", "youtube_id": "hH1a1v1JNAk", "readable_id": "c-zanne-still-life-with-apples-1895-98-moma"}, "E97Ez4lCBYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E97Ez4lCBYc.mp4/E97Ez4lCBYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E97Ez4lCBYc.mp4/E97Ez4lCBYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E97Ez4lCBYc.m3u8/E97Ez4lCBYc.m3u8"}, "duration": 244, "id": "E97Ez4lCBYc", "title": "The conservation of the \"Apollo Saettante\" at the Getty Villa", "format": "mp4", "description": "Explore the Apollo Saettante, a bronze sculpture buried by the eruption of Mt. Vesuvius in 79 C.E.\u00a0Love art? Follow us on Google+", "path": "erik-risser-describes-the-conservation-of-the-apollo-saettante-at-the-getty-villa/", "slug": "erik-risser-describes-the-conservation-of-the-apollo-saettante-at-the-getty-villa", "kind": "Video", "video_id": "E97Ez4lCBYc", "keywords": "", "youtube_id": "E97Ez4lCBYc", "readable_id": "erik-risser-describes-the-conservation-of-the-apollo-saettante-at-the-getty-villa"}, "t4lgvB5cV5E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t4lgvB5cV5E.mp4/t4lgvB5cV5E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t4lgvB5cV5E.mp4/t4lgvB5cV5E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t4lgvB5cV5E.m3u8/t4lgvB5cV5E.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/lawrence-migration-long/", "duration": 685, "id": "t4lgvB5cV5E", "title": "Jacob Lawrence, The Migration Series (*long version*)", "format": "mp4", "description": "Jacob Lawrence, The Migration Series, 1940-41, 60 panels, tempera on hardboard (even numbers at The Museum of Modern Art, odd numbers at the Phillips Collection) Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "lawrence-migration-long", "kind": "Video", "video_id": "t4lgvB5cV5E", "keywords": "", "youtube_id": "t4lgvB5cV5E", "readable_id": "lawrence-migration-long"}, "r1ywppAJ1xs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/r1ywppAJ1xs.mp4/r1ywppAJ1xs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/r1ywppAJ1xs.mp4/r1ywppAJ1xs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/r1ywppAJ1xs.m3u8/r1ywppAJ1xs.m3u8"}, "duration": 493, "id": "r1ywppAJ1xs", "title": "Thomas malthus and population growth", "format": "mp4", "description": "Thomas Malthus's views on population. Malthusian limits.", "path": "khan/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial/thomas-malthus-and-population-growth/", "slug": "thomas-malthus-and-population-growth", "kind": "Video", "video_id": "r1ywppAJ1xs", "keywords": "population, history", "youtube_id": "r1ywppAJ1xs", "readable_id": "thomas-malthus-and-population-growth"}, "PI01CwKmiZE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PI01CwKmiZE.mp4/PI01CwKmiZE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PI01CwKmiZE.mp4/PI01CwKmiZE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PI01CwKmiZE.m3u8/PI01CwKmiZE.m3u8"}, "duration": 40, "id": "PI01CwKmiZE", "title": "How much electrolyte does a single cell need?", "format": "mp4", "description": "Observation: when we pull our cell out of the electrolyte it still causes a deflection, which increases when pressure is applied. How could this lead to more efficient batteries?", "path": "khan/science/discoveries-projects/discoveries/batteries/how-much-electrolyte-does-a-single-cell-need/", "slug": "how-much-electrolyte-does-a-single-cell-need", "kind": "Video", "video_id": "PI01CwKmiZE", "keywords": "batteries", "youtube_id": "PI01CwKmiZE", "readable_id": "how-much-electrolyte-does-a-single-cell-need"}, "uVFqEi5j1v0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uVFqEi5j1v0.mp4/uVFqEi5j1v0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uVFqEi5j1v0.mp4/uVFqEi5j1v0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uVFqEi5j1v0.m3u8/uVFqEi5j1v0.m3u8"}, "duration": 530, "id": "uVFqEi5j1v0", "title": "Sarcomere length-tension relationship", "format": "mp4", "description": "Find out why the length of a sarcomere (in diastole) affects the amount of force that it can generate (in systole), and how that would look on a graph. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/preload-and-afterload/sarcomere-length-tension-relationship/", "slug": "sarcomere-length-tension-relationship", "kind": "Video", "video_id": "uVFqEi5j1v0", "keywords": "", "youtube_id": "uVFqEi5j1v0", "readable_id": "sarcomere-length-tension-relationship"}, "OrCoshLAOiQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OrCoshLAOiQ.mp4/OrCoshLAOiQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OrCoshLAOiQ.mp4/OrCoshLAOiQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OrCoshLAOiQ.m3u8/OrCoshLAOiQ.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/biological-explanations-of-social-behavior-in-animals/animal-behavior-foraging/", "duration": 134, "id": "OrCoshLAOiQ", "title": "Animal behavior: foraging", "format": "mp4", "description": "", "slug": "animal-behavior-foraging", "kind": "Video", "video_id": "OrCoshLAOiQ", "keywords": "", "youtube_id": "OrCoshLAOiQ", "readable_id": "animal-behavior-foraging"}, "cf_i8LicBEY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cf_i8LicBEY.mp4/cf_i8LicBEY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cf_i8LicBEY.mp4/cf_i8LicBEY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cf_i8LicBEY.m3u8/cf_i8LicBEY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/vasculitis-pathophysiology/", "duration": 357, "id": "cf_i8LicBEY", "title": "Vasculitis pathophysiology", "format": "mp4", "description": "Vasculitis occurs when antibodies (part of the immune system of the body) accidentally mistake the proteins on blood vessels to be foreign (don\u2019t belong in the body). The immune system attacks the blood vessel cells and damages them. Learn how fibrinoid necrosis occurs to the blood vessels, and how the build up of fibrin impairs blood flow.", "slug": "vasculitis-pathophysiology", "kind": "Video", "video_id": "cf_i8LicBEY", "keywords": "", "youtube_id": "cf_i8LicBEY", "readable_id": "vasculitis-pathophysiology"}, "6s1CI3uuhko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6s1CI3uuhko.mp4/6s1CI3uuhko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6s1CI3uuhko.mp4/6s1CI3uuhko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6s1CI3uuhko.m3u8/6s1CI3uuhko.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/proof-sum-of-measures-of-angles-in-a-triangle-are-180/", "duration": 391, "id": "6s1CI3uuhko", "title": "Proof: Sum of measures of angles in a triangle are 180", "format": "mp4", "description": "Proof that the sum of the measures of the angles in a triangle are 180", "slug": "proof-sum-of-measures-of-angles-in-a-triangle-are-180", "kind": "Video", "video_id": "6s1CI3uuhko", "keywords": "geometry, angles, triangle, sum", "youtube_id": "6s1CI3uuhko", "readable_id": "proof-sum-of-measures-of-angles-in-a-triangle-are-180"}, "MhLfun2Vask": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MhLfun2Vask.mp4/MhLfun2Vask.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MhLfun2Vask.mp4/MhLfun2Vask.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MhLfun2Vask.m3u8/MhLfun2Vask.m3u8"}, "duration": 376, "id": "MhLfun2Vask", "title": "IIT JEE circle hyperbola common tangent part 1", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 45 Circle Hyperbola Common Tan", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-circle-hyperbola-common-tangent-part-1/", "slug": "iit-jee-circle-hyperbola-common-tangent-part-1", "kind": "Video", "video_id": "MhLfun2Vask", "keywords": "2010, IIT, JEE, Paper, Problem, 45, Circle, Hyperbola, Common, Tangent, Part", "youtube_id": "MhLfun2Vask", "readable_id": "iit-jee-circle-hyperbola-common-tangent-part-1"}, "MwdwuDy0rRs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MwdwuDy0rRs.mp4/MwdwuDy0rRs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MwdwuDy0rRs.mp4/MwdwuDy0rRs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MwdwuDy0rRs.m3u8/MwdwuDy0rRs.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-15-16/", "duration": 255, "id": "MwdwuDy0rRs", "title": "CAHSEE practice: Problems 15-16", "format": "mp4", "description": "CAHSEE Practice: Problems 15-16", "slug": "cahsee-practice-problems-15-16", "kind": "Video", "video_id": "MwdwuDy0rRs", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "MwdwuDy0rRs", "readable_id": "cahsee-practice-problems-15-16"}, "DNoDJlB0ygU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DNoDJlB0ygU.mp4/DNoDJlB0ygU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DNoDJlB0ygU.mp4/DNoDJlB0ygU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DNoDJlB0ygU.m3u8/DNoDJlB0ygU.m3u8"}, "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/correction-to-total-final-velocity-for-projectile/", "duration": 161, "id": "DNoDJlB0ygU", "title": "Correction to total final velocity for projectile", "format": "mp4", "description": "Correction to \"Total Final Velocity for Projectile\" Video", "slug": "correction-to-total-final-velocity-for-projectile", "kind": "Video", "video_id": "DNoDJlB0ygU", "keywords": "correction, physics", "youtube_id": "DNoDJlB0ygU", "readable_id": "correction-to-total-final-velocity-for-projectile"}, "EmE3BTd2gqs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EmE3BTd2gqs.mp4/EmE3BTd2gqs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EmE3BTd2gqs.mp4/EmE3BTd2gqs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EmE3BTd2gqs.m3u8/EmE3BTd2gqs.m3u8"}, "duration": 171, "id": "EmE3BTd2gqs", "title": "Contested Terrains, Part 1", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn these two videos, we take a close look at an exhibition put on by four artists currently living and working in Africa.\u00a0These artists subvert assumptions about Africa's past and present, exploring the tensions between tradition and modernity. In this part, Adolphus Obara and Michael MacGarry explore the power of objects we encounter every day, both common and precious.", "path": "contested-terrains/", "slug": "contested-terrains", "kind": "Video", "video_id": "EmE3BTd2gqs", "keywords": "Tate", "youtube_id": "EmE3BTd2gqs", "readable_id": "contested-terrains"}, "VPz4bCQDGgk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VPz4bCQDGgk.mp4/VPz4bCQDGgk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VPz4bCQDGgk.mp4/VPz4bCQDGgk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VPz4bCQDGgk.m3u8/VPz4bCQDGgk.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/stokes-example-part-3-surface-to-double-integral/", "duration": 485, "id": "VPz4bCQDGgk", "title": "Stokes example part 3: Surface to double integral", "format": "mp4", "description": "Converting the surface integral to a double integral", "slug": "stokes-example-part-3-surface-to-double-integral", "kind": "Video", "video_id": "VPz4bCQDGgk", "keywords": "stokes, theorem, example", "youtube_id": "VPz4bCQDGgk", "readable_id": "stokes-example-part-3-surface-to-double-integral"}, "1DcsREjyoiM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1DcsREjyoiM.mp4/1DcsREjyoiM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1DcsREjyoiM.mp4/1DcsREjyoiM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1DcsREjyoiM.m3u8/1DcsREjyoiM.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/implicit-derivative-of-x-2-y-2-3-5x-2y-2/", "duration": 430, "id": "1DcsREjyoiM", "title": "Implicit derivative of (x^2+y^2)^3 = 5x^2y^2", "format": "mp4", "description": "", "slug": "implicit-derivative-of-x-2-y-2-3-5x-2y-2", "kind": "Video", "video_id": "1DcsREjyoiM", "keywords": "", "youtube_id": "1DcsREjyoiM", "readable_id": "implicit-derivative-of-x-2-y-2-3-5x-2y-2"}, "7rkx7B990HI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7rkx7B990HI.mp4/7rkx7B990HI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7rkx7B990HI.mp4/7rkx7B990HI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7rkx7B990HI.m3u8/7rkx7B990HI.m3u8"}, "path": "khan/science/discoveries-projects/discoveries/batteries/zinc-copper-cell-reduction-oxidation/", "duration": 65, "id": "7rkx7B990HI", "title": "Zinc copper cell (reduction-oxidation)", "format": "mp4", "description": "Zinc Copper cell - example of reduction-oxidation reaction", "slug": "zinc-copper-cell-reduction-oxidation", "kind": "Video", "video_id": "7rkx7B990HI", "keywords": "redox, zinc copper, battery", "youtube_id": "7rkx7B990HI", "readable_id": "zinc-copper-cell-reduction-oxidation"}, "fr-8tjLoeDw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fr-8tjLoeDw.mp4/fr-8tjLoeDw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fr-8tjLoeDw.mp4/fr-8tjLoeDw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fr-8tjLoeDw.m3u8/fr-8tjLoeDw.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/ab_examples/2011-calculus-ab-free-response-6a/", "duration": 263, "id": "fr-8tjLoeDw", "title": "2011 Calculus AB free response #6a", "format": "mp4", "description": "Continuity of piecewise-defined functions", "slug": "2011-calculus-ab-free-response-6a", "kind": "Video", "video_id": "fr-8tjLoeDw", "keywords": "ap, advanced, placement, calculus, exam", "youtube_id": "fr-8tjLoeDw", "readable_id": "2011-calculus-ab-free-response-6a"}, "lkeXaqoXDYQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lkeXaqoXDYQ.mp4/lkeXaqoXDYQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lkeXaqoXDYQ.mp4/lkeXaqoXDYQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lkeXaqoXDYQ.m3u8/lkeXaqoXDYQ.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/language-of-coins-2-8-proto-writing/", "duration": 440, "id": "lkeXaqoXDYQ", "title": "Origins of written language", "format": "mp4", "description": "", "slug": "language-of-coins-2-8-proto-writing", "kind": "Video", "video_id": "lkeXaqoXDYQ", "keywords": "information theory, brit cruise, alphabet, language, writing, phonetics, egypt, sumer", "youtube_id": "lkeXaqoXDYQ", "readable_id": "language-of-coins-2-8-proto-writing"}, "yBCB9CvVdpg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yBCB9CvVdpg.mp4/yBCB9CvVdpg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yBCB9CvVdpg.mp4/yBCB9CvVdpg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yBCB9CvVdpg.m3u8/yBCB9CvVdpg.m3u8"}, "duration": 195, "id": "yBCB9CvVdpg", "title": "Ben Eater's Spider", "format": "mp4", "description": "In this video Karl talks to Ben Eater about his improvements to the Spider bot platform.", "path": "khan/science/discoveries-projects/robots/spider_bot/15-ben-eater-s-spider-bot/", "slug": "15-ben-eater-s-spider-bot", "kind": "Video", "video_id": "yBCB9CvVdpg", "keywords": "", "youtube_id": "yBCB9CvVdpg", "readable_id": "15-ben-eater-s-spider-bot"}, "PEE3B8Fsuc0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PEE3B8Fsuc0.mp4/PEE3B8Fsuc0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PEE3B8Fsuc0.mp4/PEE3B8Fsuc0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PEE3B8Fsuc0.m3u8/PEE3B8Fsuc0.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/michelangelo-ceiling-of-the-sistine-chapel-1508-12/", "duration": 1323, "id": "PEE3B8Fsuc0", "title": "Michelangelo, Ceiling of the Sistine Chapel", "format": "mp4", "description": "Michelangelo, Ceiling of the Sistine Chapel, 1508-12, fresco (Vatican, Rome) Speakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "michelangelo-ceiling-of-the-sistine-chapel-1508-12", "kind": "Video", "video_id": "PEE3B8Fsuc0", "keywords": "Michelangelo, Rome, Vatican Sistine Chapel, Creation of Adam, Second Life", "youtube_id": "PEE3B8Fsuc0", "readable_id": "michelangelo-ceiling-of-the-sistine-chapel-1508-12"}, "YhsjS5CtCTE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YhsjS5CtCTE.mp4/YhsjS5CtCTE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YhsjS5CtCTE.mp4/YhsjS5CtCTE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YhsjS5CtCTE.m3u8/YhsjS5CtCTE.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/jacopo-tintoretto-last-supper/", "duration": 296, "id": "YhsjS5CtCTE", "title": "Tintoretto, Last Supper", "format": "mp4", "description": "Jacopo Tintoretto, Last Supper, 1594, oil on canvas, 12 x 18 feet, 8 inches (San Giorgio Maggiore, Venice) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "jacopo-tintoretto-last-supper", "kind": "Video", "video_id": "YhsjS5CtCTE", "keywords": "acopo Tintoretto, Tintoretto, Last Supper, Venice, Mannerism, art, painting, San Giorgio Maggiore", "youtube_id": "YhsjS5CtCTE", "readable_id": "jacopo-tintoretto-last-supper"}, "OLWvKdV4PHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OLWvKdV4PHg.mp4/OLWvKdV4PHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OLWvKdV4PHg.mp4/OLWvKdV4PHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OLWvKdV4PHg.m3u8/OLWvKdV4PHg.m3u8"}, "duration": 685, "id": "OLWvKdV4PHg", "title": "Units for common medical lab values", "format": "mp4", "description": "Figure out how to interpret the units in common medical labs including the CBC, Chem 10, and LFTs. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/science/health-and-medicine/lab-values/units-for-common-medical-lab-values/", "slug": "units-for-common-medical-lab-values", "kind": "Video", "video_id": "OLWvKdV4PHg", "keywords": "", "youtube_id": "OLWvKdV4PHg", "readable_id": "units-for-common-medical-lab-values"}, "ondmopWLiEg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ondmopWLiEg.mp4/ondmopWLiEg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ondmopWLiEg.mp4/ondmopWLiEg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ondmopWLiEg.m3u8/ondmopWLiEg.m3u8"}, "duration": 1024, "id": "ondmopWLiEg", "title": "Matrix vector products as linear transformations", "format": "mp4", "description": "Matrix Vector Products as Linear Transformations", "path": "khan/math/linear-algebra/matrix_transformations/linear_transformations/matrix-vector-products-as-linear-transformations/", "slug": "matrix-vector-products-as-linear-transformations", "kind": "Video", "video_id": "ondmopWLiEg", "keywords": "matrix, vector, product, linear, transformation", "youtube_id": "ondmopWLiEg", "readable_id": "matrix-vector-products-as-linear-transformations"}, "QmEwoBLCqZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QmEwoBLCqZY.mp4/QmEwoBLCqZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QmEwoBLCqZY.mp4/QmEwoBLCqZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QmEwoBLCqZY.m3u8/QmEwoBLCqZY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-nose-sinus-upper-respiratory/nasal-polyps/", "duration": 424, "id": "QmEwoBLCqZY", "title": "Nasal polyps", "format": "mp4", "description": "", "slug": "nasal-polyps", "kind": "Video", "video_id": "QmEwoBLCqZY", "keywords": "", "youtube_id": "QmEwoBLCqZY", "readable_id": "nasal-polyps"}, "pILGRZ0nT4o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pILGRZ0nT4o.mp4/pILGRZ0nT4o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pILGRZ0nT4o.mp4/pILGRZ0nT4o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pILGRZ0nT4o.m3u8/pILGRZ0nT4o.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/electronegativity-polarity/boiling-points-of-organic-compounds/", "duration": 667, "id": "pILGRZ0nT4o", "title": "Boiling points of organic compounds", "format": "mp4", "description": "How to analyze the different boiling points of organic compounds using intermolecular forces", "slug": "boiling-points-of-organic-compounds", "kind": "Video", "video_id": "pILGRZ0nT4o", "keywords": "", "youtube_id": "pILGRZ0nT4o", "readable_id": "boiling-points-of-organic-compounds"}, "H9UEZdAnnt8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H9UEZdAnnt8.mp4/H9UEZdAnnt8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H9UEZdAnnt8.mp4/H9UEZdAnnt8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H9UEZdAnnt8.m3u8/H9UEZdAnnt8.m3u8"}, "duration": 191, "id": "H9UEZdAnnt8", "title": "Forward contract introduction", "format": "mp4", "description": "Forward Contract Introduction", "path": "khan/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts/forward-contract-introduction/", "slug": "forward-contract-introduction", "kind": "Video", "video_id": "H9UEZdAnnt8", "keywords": "Forward, Contract, Introduction", "youtube_id": "H9UEZdAnnt8", "readable_id": "forward-contract-introduction"}, "N984XGLjQfs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N984XGLjQfs.mp4/N984XGLjQfs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N984XGLjQfs.mp4/N984XGLjQfs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N984XGLjQfs.m3u8/N984XGLjQfs.m3u8"}, "duration": 606, "id": "N984XGLjQfs", "title": "Hypothesis test for difference of means", "format": "mp4", "description": "Hypothesis Test for Difference of Means", "path": "khan/math/probability/statistics-inferential/hypothesis-testing-two-samples/hypothesis-test-for-difference-of-means/", "slug": "hypothesis-test-for-difference-of-means", "kind": "Video", "video_id": "N984XGLjQfs", "keywords": "Hypothesis, Test, for, Difference, of, Means", "youtube_id": "N984XGLjQfs", "readable_id": "hypothesis-test-for-difference-of-means"}, "ITc5DeU1zaw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ITc5DeU1zaw.mp4/ITc5DeU1zaw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ITc5DeU1zaw.mp4/ITc5DeU1zaw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ITc5DeU1zaw.m3u8/ITc5DeU1zaw.m3u8"}, "path": "khan/test-prep/gmat/problem-solving/gmat-math-18/", "duration": 593, "id": "ITc5DeU1zaw", "title": "GMAT: Math 18", "format": "mp4", "description": "96-99, pgs. 164-165", "slug": "gmat-math-18", "kind": "Video", "video_id": "ITc5DeU1zaw", "keywords": "gmat, math, problem, solving", "youtube_id": "ITc5DeU1zaw", "readable_id": "gmat-math-18"}, "qa_hksAzpSg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qa_hksAzpSg.mp4/qa_hksAzpSg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qa_hksAzpSg.mp4/qa_hksAzpSg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qa_hksAzpSg.m3u8/qa_hksAzpSg.m3u8"}, "path": "khan/computing/computer-science/cryptography/modern-crypt/euler-s-totient-function-phi-function/", "duration": 138, "id": "qa_hksAzpSg", "title": "Euler's totient function", "format": "mp4", "description": "Measuring the divisibility of a number", "slug": "euler-s-totient-function-phi-function", "kind": "Video", "video_id": "qa_hksAzpSg", "keywords": "totient, phi function, euler,", "youtube_id": "qa_hksAzpSg", "readable_id": "euler-s-totient-function-phi-function"}, "vYnreB1duro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vYnreB1duro.mp4/vYnreB1duro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vYnreB1duro.mp4/vYnreB1duro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vYnreB1duro.m3u8/vYnreB1duro.m3u8"}, "duration": 741, "id": "vYnreB1duro", "title": "Heart disease and heart attacks", "format": "mp4", "description": "Basics of heart disease, heart attacks, heart failure, angina, cardiac arrest. Special thanks to Edward J Perper, MD for help in clarifying certain aspects of this video. Licensed under CC-BY-SA", "path": "khan/science/health-and-medicine/healthcare-misc/heart-disease-and-heart-attacks/", "slug": "heart-disease-and-heart-attacks", "kind": "Video", "video_id": "vYnreB1duro", "keywords": "myocardial, infarction, ischemia, thrombosis, embolism, marquee", "youtube_id": "vYnreB1duro", "readable_id": "heart-disease-and-heart-attacks"}, "0ugcw7wOZBg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0ugcw7wOZBg.mp4/0ugcw7wOZBg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0ugcw7wOZBg.mp4/0ugcw7wOZBg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0ugcw7wOZBg.m3u8/0ugcw7wOZBg.m3u8"}, "duration": 429, "id": "0ugcw7wOZBg", "title": "Feature detection and parallel processing", "format": "mp4", "description": "In this video, I review our ability to break down an image into its component \"features\" such as color, form, and motion. This is known as feature detection, and since the detection of various features happens simultaneously, or in parallel, it is referred to as parallel processing.\u00a0 By Ronald Sahyouni.", "path": "khan/test-prep/mcat/processing-the-environment/sight/feature-detection-and-parallel-processing/", "slug": "feature-detection-and-parallel-processing", "kind": "Video", "video_id": "0ugcw7wOZBg", "keywords": "vision, feature detection, parallel processing", "youtube_id": "0ugcw7wOZBg", "readable_id": "feature-detection-and-parallel-processing"}, "K2tIixiXGOM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K2tIixiXGOM.mp4/K2tIixiXGOM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K2tIixiXGOM.mp4/K2tIixiXGOM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K2tIixiXGOM.m3u8/K2tIixiXGOM.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/reactions-benzene/bromination-of-benzene/", "duration": 776, "id": "K2tIixiXGOM", "title": "Bromination of benzene", "format": "mp4", "description": "Bromination of benzene catalyzed by iron bromide", "slug": "bromination-of-benzene", "kind": "Video", "video_id": "K2tIixiXGOM", "keywords": "Bromination, of, benzene, catalyzed, by, iron, bromide, electrophilic, aromatic, substitution", "youtube_id": "K2tIixiXGOM", "readable_id": "bromination-of-benzene"}, "CXsstWSXh68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CXsstWSXh68.mp4/CXsstWSXh68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CXsstWSXh68.mp4/CXsstWSXh68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CXsstWSXh68.m3u8/CXsstWSXh68.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/ingres-raphael-and-the-fornarina-1814/", "duration": 231, "id": "CXsstWSXh68", "title": "Ingres, Raphael and the Fornarina", "format": "mp4", "description": "Jean-Auguste-Dominique Ingres, Raphael and the Fornarina, 1814, Oil on canvas, 64.77 x 53.34 cm (25 1/2 x 21 in.) (Fogg Art Museum) http://www.smarthistory.org/raphael-and-the-fornarina.html", "slug": "ingres-raphael-and-the-fornarina-1814", "kind": "Video", "video_id": "CXsstWSXh68", "keywords": "art, art history, Ingres, Smarthistory, Raphael, Fogg, Fogg art museum, Romanticism, painting", "youtube_id": "CXsstWSXh68", "readable_id": "ingres-raphael-and-the-fornarina-1814"}, "F6dZjuw1KUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F6dZjuw1KUo.mp4/F6dZjuw1KUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F6dZjuw1KUo.mp4/F6dZjuw1KUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F6dZjuw1KUo.m3u8/F6dZjuw1KUo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/light-and-electromagnetic/diffraction-grating/", "duration": 861, "id": "F6dZjuw1KUo", "title": "Diffraction grating", "format": "mp4", "description": "", "slug": "diffraction-grating", "kind": "Video", "video_id": "F6dZjuw1KUo", "keywords": "", "youtube_id": "F6dZjuw1KUo", "readable_id": "diffraction-grating"}, "qvmxbDomk90": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qvmxbDomk90.mp4/qvmxbDomk90.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qvmxbDomk90.mp4/qvmxbDomk90.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qvmxbDomk90.m3u8/qvmxbDomk90.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/history-of-philosophy-mengzi-on-human-nature/", "duration": 457, "id": "qvmxbDomk90", "title": "Ancient: Mengzi (Mencius) on Human Nature", "format": "mp4", "description": "What is human nature? Is human nature good or bad? Can human nature be good even if the world contains some notably bad people? Matthew Walker (Yale-NUS College) looks at the views of the early Confucian thinker Mengzi (Mencius).\n\nSpeaker: Dr. Matthew Walker, Assistant Professor, Yale-NUS College", "slug": "history-of-philosophy-mengzi-on-human-nature", "kind": "Video", "video_id": "qvmxbDomk90", "keywords": "", "youtube_id": "qvmxbDomk90", "readable_id": "history-of-philosophy-mengzi-on-human-nature"}, "lHarVgx1RkY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lHarVgx1RkY.mp4/lHarVgx1RkY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lHarVgx1RkY.mp4/lHarVgx1RkY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lHarVgx1RkY.m3u8/lHarVgx1RkY.m3u8"}, "duration": 297, "id": "lHarVgx1RkY", "title": "Manufacturing Processes: Hands On to Hands Off", "format": "mp4", "description": "Ever wonder what methods you can use to make something? From manual to semi-automatic to fully automatic, watch what methods you can use to dome some simple manufacturing tasks such as cutting and drilling.", "path": "manufacturing-processes-hands-on-to-hands-off/", "slug": "manufacturing-processes-hands-on-to-hands-off", "kind": "Video", "video_id": "lHarVgx1RkY", "keywords": "manufacturing", "youtube_id": "lHarVgx1RkY", "readable_id": "manufacturing-processes-hands-on-to-hands-off"}, "1PsNIzUJPkc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1PsNIzUJPkc.mp4/1PsNIzUJPkc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1PsNIzUJPkc.mp4/1PsNIzUJPkc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1PsNIzUJPkc.m3u8/1PsNIzUJPkc.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/linear-algebra-exploring-the-solution-set-of-ax-b/", "duration": 994, "id": "1PsNIzUJPkc", "title": "Exploring the solution set of Ax = b", "format": "mp4", "description": "Exploring the solution set of Ax=b (non homogeneous equations)", "slug": "linear-algebra-exploring-the-solution-set-of-ax-b", "kind": "Video", "video_id": "1PsNIzUJPkc", "keywords": "nullspace, linear, algebra", "youtube_id": "1PsNIzUJPkc", "readable_id": "linear-algebra-exploring-the-solution-set-of-ax-b"}, "CCysGY2cXUo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CCysGY2cXUo.mp4/CCysGY2cXUo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CCysGY2cXUo.mp4/CCysGY2cXUo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CCysGY2cXUo.m3u8/CCysGY2cXUo.m3u8"}, "path": "khan/math/basic-geo/basic-geo-volume-surface-area/basic-geo-volume/marbles-in-tank-volume/", "duration": 382, "id": "CCysGY2cXUo", "title": "Volume of a rectangular prism: word problem", "format": "mp4", "description": "This is a cool word problem that puts together what we're learning about finding the volume of rectangular prisms. Follow along with Sal closely...he does a great job explaining.", "slug": "marbles-in-tank-volume", "kind": "Video", "video_id": "CCysGY2cXUo", "keywords": "", "youtube_id": "CCysGY2cXUo", "readable_id": "marbles-in-tank-volume"}, "9CZfG3r5JBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9CZfG3r5JBE.mp4/9CZfG3r5JBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9CZfG3r5JBE.mp4/9CZfG3r5JBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9CZfG3r5JBE.m3u8/9CZfG3r5JBE.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/mult-div-word-problems/multiplication-and-division-word-problems-2/", "duration": 70, "id": "9CZfG3r5JBE", "title": "Comparing with multiplication: Ron and Hermione strength", "format": "mp4", "description": "You read that right! We're comparing the strength of Ron and Hermione using multiplication. Who said math has to be boring?", "slug": "multiplication-and-division-word-problems-2", "kind": "Video", "video_id": "9CZfG3r5JBE", "keywords": "", "youtube_id": "9CZfG3r5JBE", "readable_id": "multiplication-and-division-word-problems-2"}, "XmirNCA_Lj4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XmirNCA_Lj4.mp4/XmirNCA_Lj4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XmirNCA_Lj4.mp4/XmirNCA_Lj4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XmirNCA_Lj4.m3u8/XmirNCA_Lj4.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-etruria/sarcophagus-of-the-spouses-rome/", "duration": 256, "id": "XmirNCA_Lj4", "title": "Sarcophagus of the Spouses (Rome)", "format": "mp4", "description": "Sarcophagus of the Spouses (or Sarcophagus with Reclining Couple), from the Banditaccia necropolis, Cerveteri, Italy, c. 520 B.C.E., painted terracotta, 3 feet 9 1/2 inches x 6 feet 7 inches (Museo Nazionale di Villa Giulia, Rome). Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "sarcophagus-of-the-spouses-rome", "kind": "Video", "video_id": "XmirNCA_Lj4", "keywords": "", "youtube_id": "XmirNCA_Lj4", "readable_id": "sarcophagus-of-the-spouses-rome"}, "IDLCwhijNG4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IDLCwhijNG4.mp4/IDLCwhijNG4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IDLCwhijNG4.mp4/IDLCwhijNG4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IDLCwhijNG4.m3u8/IDLCwhijNG4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pleural-effusion/what-is-pleural-effusion/", "duration": 474, "id": "IDLCwhijNG4", "title": "What is a pleural effusion?", "format": "mp4", "description": "Pleural effusions are when excess fluid get caught between two layers of tissue (the visceral and parietal pleurae) surrounding the lungs. This fluid can build up over time, taking up space in the lung and impairing a person\u2019s ability to breath. Learn about the signs and symptoms of pleural effusions such as chest pain, shortness of breath, and dry coughing.", "slug": "what-is-pleural-effusion", "kind": "Video", "video_id": "IDLCwhijNG4", "keywords": "", "youtube_id": "IDLCwhijNG4", "readable_id": "what-is-pleural-effusion"}, "udG9KhNMKJw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/udG9KhNMKJw.mp4/udG9KhNMKJw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/udG9KhNMKJw.mp4/udG9KhNMKJw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/udG9KhNMKJw.m3u8/udG9KhNMKJw.m3u8"}, "duration": 411, "id": "udG9KhNMKJw", "title": "Exactly three heads in five flips", "format": "mp4", "description": "Probability of exactly 3 heads in 5 flips using combinations", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/exactly-three-heads-in-five-flips/", "slug": "exactly-three-heads-in-five-flips", "kind": "Video", "video_id": "udG9KhNMKJw", "keywords": "probability, statistics", "youtube_id": "udG9KhNMKJw", "readable_id": "exactly-three-heads-in-five-flips"}, "MHuUBkyF8KI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MHuUBkyF8KI.mp4/MHuUBkyF8KI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MHuUBkyF8KI.mp4/MHuUBkyF8KI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MHuUBkyF8KI.m3u8/MHuUBkyF8KI.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/alberti-palazzo-rucellai/", "duration": 310, "id": "MHuUBkyF8KI", "title": "Alberti, Palazzo Rucellai", "format": "mp4", "description": "", "slug": "alberti-palazzo-rucellai", "kind": "Video", "video_id": "MHuUBkyF8KI", "keywords": "", "youtube_id": "MHuUBkyF8KI", "readable_id": "alberti-palazzo-rucellai"}, "fNlp0UMqUtM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fNlp0UMqUtM.mp4/fNlp0UMqUtM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fNlp0UMqUtM.mp4/fNlp0UMqUtM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fNlp0UMqUtM.m3u8/fNlp0UMqUtM.m3u8"}, "duration": 477, "id": "fNlp0UMqUtM", "title": "Sleep stages and circadian rhythms", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/sleep-and-consciousness/sleep-stages-and-circadian-rhythms/", "slug": "sleep-stages-and-circadian-rhythms", "kind": "Video", "video_id": "fNlp0UMqUtM", "keywords": "", "youtube_id": "fNlp0UMqUtM", "readable_id": "sleep-stages-and-circadian-rhythms"}, "1-5sTDLrcp4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1-5sTDLrcp4.mp4/1-5sTDLrcp4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1-5sTDLrcp4.mp4/1-5sTDLrcp4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1-5sTDLrcp4.m3u8/1-5sTDLrcp4.m3u8"}, "duration": 824, "id": "1-5sTDLrcp4", "title": "IIT JEE integral with binomial expansion", "format": "mp4", "description": "2010 IIT JEE Paper 1 Problem 41 Integral with Binomial Expansion and Algebraic Long Division", "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-integral-with-binomial-expansion/", "slug": "iit-jee-integral-with-binomial-expansion", "kind": "Video", "video_id": "1-5sTDLrcp4", "keywords": "2010, IIT, JEE, Paper, Problem, 41, Integral, with, Binomial, Expansion, and, Algebraic, Long, Division", "youtube_id": "1-5sTDLrcp4", "readable_id": "iit-jee-integral-with-binomial-expansion"}, "jIL333CKE9A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jIL333CKE9A.mp4/jIL333CKE9A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jIL333CKE9A.mp4/jIL333CKE9A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jIL333CKE9A.m3u8/jIL333CKE9A.m3u8"}, "path": "khan/science/organic-chemistry/organic-structures/acid-base-review/organic-acid-base-mechanisms/", "duration": 332, "id": "jIL333CKE9A", "title": "Organic acid-base mechanisms", "format": "mp4", "description": "How to use curved arrows to draw mechanisms for organic acid-base reactions", "slug": "organic-acid-base-mechanisms", "kind": "Video", "video_id": "jIL333CKE9A", "keywords": "", "youtube_id": "jIL333CKE9A", "readable_id": "organic-acid-base-mechanisms"}, "C4nfSAr2eWI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C4nfSAr2eWI.mp4/C4nfSAr2eWI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C4nfSAr2eWI.mp4/C4nfSAr2eWI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C4nfSAr2eWI.m3u8/C4nfSAr2eWI.m3u8"}, "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/extrapulmonary-tb-part-2/", "duration": 718, "id": "C4nfSAr2eWI", "title": "Extrapulmonary TB (Part 2)", "format": "mp4", "description": "Learn about how TB can spread beyond your lungs.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "extrapulmonary-tb-part-2", "kind": "Video", "video_id": "C4nfSAr2eWI", "keywords": "", "youtube_id": "C4nfSAr2eWI", "readable_id": "extrapulmonary-tb-part-2"}, "RrXJsf9x_sY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RrXJsf9x_sY.mp4/RrXJsf9x_sY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RrXJsf9x_sY.mp4/RrXJsf9x_sY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RrXJsf9x_sY.m3u8/RrXJsf9x_sY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-coronary-artery-disease/risk-factors-for-coronary-artery-disease/", "duration": 754, "id": "RrXJsf9x_sY", "title": "Risk factors for coronary artery disease", "format": "mp4", "description": "", "slug": "risk-factors-for-coronary-artery-disease", "kind": "Video", "video_id": "RrXJsf9x_sY", "keywords": "", "youtube_id": "RrXJsf9x_sY", "readable_id": "risk-factors-for-coronary-artery-disease"}, "pQu1RMIkg3c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pQu1RMIkg3c.mp4/pQu1RMIkg3c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pQu1RMIkg3c.mp4/pQu1RMIkg3c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pQu1RMIkg3c.m3u8/pQu1RMIkg3c.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/paul-gauguin-nevermore-1897/", "duration": 303, "id": "pQu1RMIkg3c", "title": "Gauguin, Nevermore", "format": "mp4", "description": "Paul Gauguin, Nevermore, 1897, oil on canvas (Courtauld Gallery, London) Speakers: Dr. Beth Harris, Rachel Ropeik, Dr. Steven Zucker", "slug": "paul-gauguin-nevermore-1897", "kind": "Video", "video_id": "pQu1RMIkg3c", "keywords": "gauguin, Post-Impressionism, art, art history, smarthistory, Courtauld, London", "youtube_id": "pQu1RMIkg3c", "readable_id": "paul-gauguin-nevermore-1897"}, "NIJDn2MAn9I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NIJDn2MAn9I.mp4/NIJDn2MAn9I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NIJDn2MAn9I.mp4/NIJDn2MAn9I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NIJDn2MAn9I.m3u8/NIJDn2MAn9I.m3u8"}, "path": "khan/humanities/global-culture/global-art-architecture/doris-salcedo/", "duration": 307, "id": "NIJDn2MAn9I", "title": "Doris Salcedo's \"Shibboleth\"", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\n\"Every work of art is political because every work of art is breaking new ground,\" says Colombian artist Doris Salcedo. In this video, Salcedo explains why she decided to literally break new ground in Tate Modern\u2019s Turbine Hall by splitting the floor open with a long snaking crack in her piece Shibboleth. The word \u201cshibboleth\u201d refers to a word or custom that can be used to differentiate one group from another, and is therefore a token of power: the power to judge and reject with violence.\n\nWhat might it mean to refer to such violence in an art museum? For Salcedo, the crack represents a history of racism, running parallel to the history of modernity. As Salcedo comes from a country riven by war, she has always seen conflict and the world from the perspective of the oppressed. The piece is not an attack, but rather a reminder, a question mark and a disruption of the status quo: she invites us to look down into it, and to confront discomforting truths about our world.\n\nIf you could create some kind of artistic distruption, what would it be? Would it be in a gallery, or on the street? Would it be confrontational or subtle?\n\nTo learn more about Doris Salcedo,\u00a0Shibboleth, and other thought-provoking sculptures by the artist, click here.\n", "slug": "doris-salcedo", "kind": "Video", "video_id": "NIJDn2MAn9I", "keywords": "Tate", "youtube_id": "NIJDn2MAn9I", "readable_id": "doris-salcedo"}, "9G0w61pZPig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9G0w61pZPig.mp4/9G0w61pZPig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9G0w61pZPig.mp4/9G0w61pZPig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9G0w61pZPig.m3u8/9G0w61pZPig.m3u8"}, "duration": 796, "id": "9G0w61pZPig", "title": "Birthday probability problem", "format": "mp4", "description": "The probability that at least 2 people in a room of 30 share the same birthday.", "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/birthday-probability-problem/", "slug": "birthday-probability-problem", "kind": "Video", "video_id": "9G0w61pZPig", "keywords": "probability, birthday", "youtube_id": "9G0w61pZPig", "readable_id": "birthday-probability-problem"}, "uUH5YI5dTOg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uUH5YI5dTOg.mp4/uUH5YI5dTOg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uUH5YI5dTOg.mp4/uUH5YI5dTOg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uUH5YI5dTOg.m3u8/uUH5YI5dTOg.m3u8"}, "path": "khan/test-prep/mcat/cells/cellular-development/stem-cells/", "duration": 714, "id": "uUH5YI5dTOg", "title": "Stem cells", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "stem-cells", "kind": "Video", "video_id": "uUH5YI5dTOg", "keywords": "", "youtube_id": "uUH5YI5dTOg", "readable_id": "stem-cells"}, "2u535-HVJ_o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2u535-HVJ_o.mp4/2u535-HVJ_o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2u535-HVJ_o.mp4/2u535-HVJ_o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2u535-HVJ_o.m3u8/2u535-HVJ_o.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/iit-jee-perpendicular-planes-part-1/", "duration": 626, "id": "2u535-HVJ_o", "title": "IIT JEE perpendicular planes (part 1)", "format": "mp4", "description": "2010 IIT JEE Paper 1 #30 normal vector and planes (Part 1)", "slug": "iit-jee-perpendicular-planes-part-1", "kind": "Video", "video_id": "2u535-HVJ_o", "keywords": "Perpendicular, Planes, normal, vector", "youtube_id": "2u535-HVJ_o", "readable_id": "iit-jee-perpendicular-planes-part-1"}, "5r2FYszC_sU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5r2FYszC_sU.mp4/5r2FYszC_sU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5r2FYszC_sU.mp4/5r2FYszC_sU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5r2FYszC_sU.m3u8/5r2FYszC_sU.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/add-and-subtract-fracs-pre-alg/adding-fractions-word-problem-1/", "duration": 105, "id": "5r2FYszC_sU", "title": "Word problem: What fraction of spider eyes are looking at me?", "format": "mp4", "description": "You mean a spider has MORE than 2 eyes? Yikes!", "slug": "adding-fractions-word-problem-1", "kind": "Video", "video_id": "5r2FYszC_sU", "keywords": "", "youtube_id": "5r2FYszC_sU", "readable_id": "adding-fractions-word-problem-1"}, "xy3DfucAxdQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xy3DfucAxdQ.mp4/xy3DfucAxdQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xy3DfucAxdQ.mp4/xy3DfucAxdQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xy3DfucAxdQ.m3u8/xy3DfucAxdQ.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-6-16/", "duration": 254, "id": "xy3DfucAxdQ", "title": "16 Satisfying constraints", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-6-16", "kind": "Video", "video_id": "xy3DfucAxdQ", "keywords": "", "youtube_id": "xy3DfucAxdQ", "readable_id": "sat-2010-may-6-16"}, "MyanDgvTb2g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MyanDgvTb2g.mp4/MyanDgvTb2g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MyanDgvTb2g.mp4/MyanDgvTb2g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MyanDgvTb2g.m3u8/MyanDgvTb2g.m3u8"}, "path": "khan/math/competition-math/amc-10/2013-amc-10-a/2013-amc-10-a-23-amc-12-a-19/", "duration": 207, "id": "MyanDgvTb2g", "title": "2013 AMC 10 A #23 / AMC 12 A #19", "format": "mp4", "description": "Video by\u00a0Art of Problem Solving. \u00a0Problem from the MAA\u00a0American Mathematics Competitions", "slug": "2013-amc-10-a-23-amc-12-a-19", "kind": "Video", "video_id": "MyanDgvTb2g", "keywords": "", "youtube_id": "MyanDgvTb2g", "readable_id": "2013-amc-10-a-23-amc-12-a-19"}, "LC5I8BsO18I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LC5I8BsO18I.mp4/LC5I8BsO18I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LC5I8BsO18I.mp4/LC5I8BsO18I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LC5I8BsO18I.m3u8/LC5I8BsO18I.m3u8"}, "duration": 271, "id": "LC5I8BsO18I", "title": "Enzymes and their local environment", "format": "mp4", "description": "In this video, we'll learn how different environments might affect an enzyme's function. Important environmental factors include pH and temperature.\u00a0By Ross Firestone.", "path": "khan/test-prep/mcat/biomolecules/enzyme-structure-and-function/enzymes-and-their-local-environment/", "slug": "enzymes-and-their-local-environment", "kind": "Video", "video_id": "LC5I8BsO18I", "keywords": "", "youtube_id": "LC5I8BsO18I", "readable_id": "enzymes-and-their-local-environment"}, "wYrxKGt_bLg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wYrxKGt_bLg.mp4/wYrxKGt_bLg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wYrxKGt_bLg.mp4/wYrxKGt_bLg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wYrxKGt_bLg.m3u8/wYrxKGt_bLg.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/equivalent_systems_of_equations/solving-systems-of-equations-by-multiplication/", "duration": 721, "id": "wYrxKGt_bLg", "title": "Solving systems of linear equations with elimination example 2", "format": "mp4", "description": "", "slug": "solving-systems-of-equations-by-multiplication", "kind": "Video", "video_id": "wYrxKGt_bLg", "keywords": "Solving, Systems, of, Equations, by, Multiplication, CC_39336_A-REI_6", "youtube_id": "wYrxKGt_bLg", "readable_id": "solving-systems-of-equations-by-multiplication"}, "ZFN63oTeYzc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZFN63oTeYzc.mp4/ZFN63oTeYzc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZFN63oTeYzc.mp4/ZFN63oTeYzc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZFN63oTeYzc.m3u8/ZFN63oTeYzc.m3u8"}, "duration": 728, "id": "ZFN63oTeYzc", "title": "2003 AIME II problem 8", "format": "mp4", "description": "Sequence from the product of 2 arithmetic sequences", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-8/", "slug": "2003-aime-ii-problem-8", "kind": "Video", "video_id": "ZFN63oTeYzc", "keywords": "arithmetic, sequence, series", "youtube_id": "ZFN63oTeYzc", "readable_id": "2003-aime-ii-problem-8"}, "ZElOxG7_m3c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZElOxG7_m3c.mp4/ZElOxG7_m3c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZElOxG7_m3c.mp4/ZElOxG7_m3c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZElOxG7_m3c.m3u8/ZElOxG7_m3c.m3u8"}, "duration": 278, "id": "ZElOxG7_m3c", "title": "Law of cosines", "format": "mp4", "description": "", "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law-of-cosines-example/", "slug": "law-of-cosines-example", "kind": "Video", "video_id": "ZElOxG7_m3c", "keywords": "", "youtube_id": "ZElOxG7_m3c", "readable_id": "law-of-cosines-example"}, "VYSFNwTUkG0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VYSFNwTUkG0.mp4/VYSFNwTUkG0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VYSFNwTUkG0.mp4/VYSFNwTUkG0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VYSFNwTUkG0.m3u8/VYSFNwTUkG0.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/the-ovarian-cycle/", "duration": 642, "id": "VYSFNwTUkG0", "title": "The ovarian cycle", "format": "mp4", "description": "", "slug": "the-ovarian-cycle", "kind": "Video", "video_id": "VYSFNwTUkG0", "keywords": "", "youtube_id": "VYSFNwTUkG0", "readable_id": "the-ovarian-cycle"}, "KNklNvGof8o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KNklNvGof8o.mp4/KNklNvGof8o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KNklNvGof8o.mp4/KNklNvGof8o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KNklNvGof8o.m3u8/KNklNvGof8o.m3u8"}, "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/adding-three-vectors/", "duration": 524, "id": "KNklNvGof8o", "title": "Three way tug of war vectors", "format": "mp4", "description": "", "slug": "adding-three-vectors", "kind": "Video", "video_id": "KNklNvGof8o", "keywords": "", "youtube_id": "KNklNvGof8o", "readable_id": "adding-three-vectors"}, "rNJPNlgmhbk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rNJPNlgmhbk.mp4/rNJPNlgmhbk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rNJPNlgmhbk.mp4/rNJPNlgmhbk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rNJPNlgmhbk.m3u8/rNJPNlgmhbk.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-alcohols-tutorial/preparation-of-alcohols-using-lialh4/", "duration": 677, "id": "rNJPNlgmhbk", "title": "Preparation of alcohols using LiAlH4", "format": "mp4", "description": "", "slug": "preparation-of-alcohols-using-lialh4", "kind": "Video", "video_id": "rNJPNlgmhbk", "keywords": "", "youtube_id": "rNJPNlgmhbk", "readable_id": "preparation-of-alcohols-using-lialh4"}, "7C7do85sfXA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7C7do85sfXA.mp4/7C7do85sfXA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7C7do85sfXA.mp4/7C7do85sfXA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7C7do85sfXA.m3u8/7C7do85sfXA.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/aegean-art1/cycladic/cycladic-harpist/", "duration": 261, "id": "7C7do85sfXA", "title": "Harp Player, Early Cycladic period", "format": "mp4", "description": "Male harp player from Keros, c. 2600--2300 B.C.E., Early Cycladic period, marble, 22.5 cm high (National Archaeological Museum, Athens)\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n", "slug": "cycladic-harpist", "kind": "Video", "video_id": "7C7do85sfXA", "keywords": "Cycladic, Keros, Bronze Age, Greece, marble, harp, lyre", "youtube_id": "7C7do85sfXA", "readable_id": "cycladic-harpist"}, "mfX_yUvwJho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mfX_yUvwJho.mp4/mfX_yUvwJho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mfX_yUvwJho.mp4/mfX_yUvwJho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mfX_yUvwJho.m3u8/mfX_yUvwJho.m3u8"}, "duration": 208, "id": "mfX_yUvwJho", "title": "Interpreting a trend line", "format": "mp4", "description": "", "path": "interpreting-trend-line/", "slug": "interpreting-trend-line", "kind": "Video", "video_id": "mfX_yUvwJho", "keywords": "", "youtube_id": "mfX_yUvwJho", "readable_id": "interpreting-trend-line"}, "xCIHAjsZCE0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xCIHAjsZCE0.mp4/xCIHAjsZCE0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xCIHAjsZCE0.mp4/xCIHAjsZCE0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xCIHAjsZCE0.m3u8/xCIHAjsZCE0.m3u8"}, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/king-s-cupcakes-solving-systems-by-elimination/", "duration": 540, "id": "xCIHAjsZCE0", "title": "King's cupcakes: Solving systems by elimination", "format": "mp4", "description": "Using simple elimination to figure out how many cupcakes are eaten by children and adults", "slug": "king-s-cupcakes-solving-systems-by-elimination", "kind": "Video", "video_id": "xCIHAjsZCE0", "keywords": "", "youtube_id": "xCIHAjsZCE0", "readable_id": "king-s-cupcakes-solving-systems-by-elimination"}, "BCH1Gre3Mg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BCH1Gre3Mg0.mp4/BCH1Gre3Mg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BCH1Gre3Mg0.mp4/BCH1Gre3Mg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BCH1Gre3Mg0.m3u8/BCH1Gre3Mg0.m3u8"}, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-important-ca/biodiversity-and-ecosystem-servi/ecosystem-services/", "duration": 543, "id": "BCH1Gre3Mg0", "title": "Ecosystem services", "format": "mp4", "description": "", "slug": "ecosystem-services", "kind": "Video", "video_id": "BCH1Gre3Mg0", "keywords": "", "youtube_id": "BCH1Gre3Mg0", "readable_id": "ecosystem-services"}, "xF_Z4QK0tsA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xF_Z4QK0tsA.mp4/xF_Z4QK0tsA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xF_Z4QK0tsA.mp4/xF_Z4QK0tsA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xF_Z4QK0tsA.m3u8/xF_Z4QK0tsA.m3u8"}, "duration": 705, "id": "xF_Z4QK0tsA", "title": "Details on shifting aggregate planned expenditures", "format": "mp4", "description": "Showing how a change in government spending can lead to a new equilibrium", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/keynesian-cross-tutorial/details-on-shifting-aggregate-planned-expenditures/", "slug": "details-on-shifting-aggregate-planned-expenditures", "kind": "Video", "video_id": "xF_Z4QK0tsA", "keywords": "macroeconomics, keynes", "youtube_id": "xF_Z4QK0tsA", "readable_id": "details-on-shifting-aggregate-planned-expenditures"}, "ewu_7Dmj_18": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ewu_7Dmj_18.mp4/ewu_7Dmj_18.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ewu_7Dmj_18.mp4/ewu_7Dmj_18.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ewu_7Dmj_18.m3u8/ewu_7Dmj_18.m3u8"}, "duration": 391, "id": "ewu_7Dmj_18", "title": "More on Nash equilibrium", "format": "mp4", "description": "Looking more closely at the definition of Nash Equilibrium", "path": "khan/economics-finance-domain/microeconomics/nash-equilibrium-tutorial/nash-eq-tutorial/more-on-nash-equilibrium/", "slug": "more-on-nash-equilibrium", "kind": "Video", "video_id": "ewu_7Dmj_18", "keywords": "microeconomics, john, nash, prisoners, dilemma", "youtube_id": "ewu_7Dmj_18", "readable_id": "more-on-nash-equilibrium"}, "f2BWsPVN7c4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/f2BWsPVN7c4.mp4/f2BWsPVN7c4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/f2BWsPVN7c4.mp4/f2BWsPVN7c4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/f2BWsPVN7c4.m3u8/f2BWsPVN7c4.m3u8"}, "path": "khan/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics/plate-tectonics-difference-between-crust-and-lithosphere/", "duration": 479, "id": "f2BWsPVN7c4", "title": "Plate tectonics: Difference between crust and lithosphere", "format": "mp4", "description": "Plate Tectonics Introduction and Difference between crust and lithosphere", "slug": "plate-tectonics-difference-between-crust-and-lithosphere", "kind": "Video", "video_id": "f2BWsPVN7c4", "keywords": "Plate, Tectonics--, Difference, between, crust, and, lithosphere", "youtube_id": "f2BWsPVN7c4", "readable_id": "plate-tectonics-difference-between-crust-and-lithosphere"}, "JiofOv18o2M": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JiofOv18o2M.mp4/JiofOv18o2M.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JiofOv18o2M.mp4/JiofOv18o2M.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JiofOv18o2M.m3u8/JiofOv18o2M.m3u8"}, "duration": 518, "id": "JiofOv18o2M", "title": "Adriaen de Vries's bronze casting technique: direct lost-wax method", "format": "mp4", "description": "Adriaen de Vries, a 17th century Dutch sculptor, often used \"direct lost-wax casting.\" Because the wax is \"lost,\" each bronze cast is unique. If the casting fails, the sculptor begins again. Love art? Follow us on Google+", "path": "khan/humanities/art-history-basics/artists-materials-techniques/sculpture/de-vries-bronze-casting/", "slug": "de-vries-bronze-casting", "kind": "Video", "video_id": "JiofOv18o2M", "keywords": "", "youtube_id": "JiofOv18o2M", "readable_id": "de-vries-bronze-casting"}, "CBHfoQsF2Y4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CBHfoQsF2Y4.mp4/CBHfoQsF2Y4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CBHfoQsF2Y4.mp4/CBHfoQsF2Y4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CBHfoQsF2Y4.m3u8/CBHfoQsF2Y4.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/world-war-ii-in-the-pacific-in-1942/", "duration": 351, "id": "CBHfoQsF2Y4", "title": "World War II in the Pacific in 1942", "format": "mp4", "description": "In 1942, the United States begins to fully engage against the Japanese and go on the offensive.", "slug": "world-war-ii-in-the-pacific-in-1942", "kind": "Video", "video_id": "CBHfoQsF2Y4", "keywords": "", "youtube_id": "CBHfoQsF2Y4", "readable_id": "world-war-ii-in-the-pacific-in-1942"}, "gF0aA-si89Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gF0aA-si89Y.mp4/gF0aA-si89Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gF0aA-si89Y.mp4/gF0aA-si89Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gF0aA-si89Y.m3u8/gF0aA-si89Y.m3u8"}, "duration": 756, "id": "gF0aA-si89Y", "title": "Childhood growth", "format": "mp4", "description": "Sal talks with Dr. Laura Bachrach about childhood growth", "path": "khan/science/health-and-medicine/healthcare-misc/childhood-growth/", "slug": "childhood-growth", "kind": "Video", "video_id": "gF0aA-si89Y", "keywords": "Childhood, Growth", "youtube_id": "gF0aA-si89Y", "readable_id": "childhood-growth"}, "Ke8k8CNxwog": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ke8k8CNxwog.mp4/Ke8k8CNxwog.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ke8k8CNxwog.mp4/Ke8k8CNxwog.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ke8k8CNxwog.m3u8/Ke8k8CNxwog.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/super-yoga/super-yoga-plans-plotting-points/", "duration": 346, "id": "Ke8k8CNxwog", "title": "Super Yoga plans: Plotting points", "format": "mp4", "description": "Visualizing the relationship between sessions attended and total cost", "slug": "super-yoga-plans-plotting-points", "kind": "Video", "video_id": "Ke8k8CNxwog", "keywords": "", "youtube_id": "Ke8k8CNxwog", "readable_id": "super-yoga-plans-plotting-points"}, "9-u4zP5s9is": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9-u4zP5s9is.mp4/9-u4zP5s9is.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9-u4zP5s9is.mp4/9-u4zP5s9is.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9-u4zP5s9is.m3u8/9-u4zP5s9is.m3u8"}, "duration": 312, "id": "9-u4zP5s9is", "title": "What is Soap?", "format": "mp4", "description": "Why does soap work to get the grease and dirt off of dirty pans and other things when water alone can't do the job?", "path": "what-is-soap/", "slug": "what-is-soap", "kind": "Video", "video_id": "9-u4zP5s9is", "keywords": "soap", "youtube_id": "9-u4zP5s9is", "readable_id": "what-is-soap"}, "kc_HjPT4NKo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kc_HjPT4NKo.mp4/kc_HjPT4NKo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kc_HjPT4NKo.mp4/kc_HjPT4NKo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kc_HjPT4NKo.m3u8/kc_HjPT4NKo.m3u8"}, "duration": 255, "id": "kc_HjPT4NKo", "title": "Quantitative easing", "format": "mp4", "description": "Overview of quantitative easing", "path": "khan/economics-finance-domain/core-finance/money-and-banking/federal-reserve/quantitative-easing/", "slug": "quantitative-easing", "kind": "Video", "video_id": "kc_HjPT4NKo", "keywords": "federal, reserve, yield, banking", "youtube_id": "kc_HjPT4NKo", "readable_id": "quantitative-easing"}, "Hkwfibux88s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hkwfibux88s.mp4/Hkwfibux88s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hkwfibux88s.mp4/Hkwfibux88s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hkwfibux88s.m3u8/Hkwfibux88s.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/representing-a-number-as-a-decimal-percent-and-fraction-2/", "duration": 325, "id": "Hkwfibux88s", "title": "Representing a number as a decimal, percent, and fraction 2", "format": "mp4", "description": "Representing a number as a decimal, percent, and fraction 2", "slug": "representing-a-number-as-a-decimal-percent-and-fraction-2", "kind": "Video", "video_id": "Hkwfibux88s", "keywords": "percent, and fraction 2, CC_5_NF_3, CC_7_EE_3, CC_7_NS_2_d", "youtube_id": "Hkwfibux88s", "readable_id": "representing-a-number-as-a-decimal-percent-and-fraction-2"}, "sy132cgqaiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sy132cgqaiU.mp4/sy132cgqaiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sy132cgqaiU.mp4/sy132cgqaiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sy132cgqaiU.m3u8/sy132cgqaiU.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/polynomial-approximation-of-functions-part-1/", "duration": 585, "id": "sy132cgqaiU", "title": "Polynomial approximation of functions (part 1)", "format": "mp4", "description": "Using a polynomial to approximate a function at f(0).", "slug": "polynomial-approximation-of-functions-part-1", "kind": "Video", "video_id": "sy132cgqaiU", "keywords": "power, maclauren, taylor, series, derivative, infinite, sum", "youtube_id": "sy132cgqaiU", "readable_id": "polynomial-approximation-of-functions-part-1"}, "CMj-_-IUJQU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CMj-_-IUJQU.mp4/CMj-_-IUJQU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CMj-_-IUJQU.mp4/CMj-_-IUJQU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CMj-_-IUJQU.m3u8/CMj-_-IUJQU.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-2010-may-9-14/", "duration": 110, "id": "CMj-_-IUJQU", "title": "14 Graph of function absolute value", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-14", "kind": "Video", "video_id": "CMj-_-IUJQU", "keywords": "", "youtube_id": "CMj-_-IUJQU", "readable_id": "sat-2010-may-9-14"}, "oIZV-ixRTcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oIZV-ixRTcY.mp4/oIZV-ixRTcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oIZV-ixRTcY.mp4/oIZV-ixRTcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oIZV-ixRTcY.m3u8/oIZV-ixRTcY.m3u8"}, "duration": 432, "id": "oIZV-ixRTcY", "title": "Gravity for astronauts in orbit", "format": "mp4", "description": "Why do astronauts appear weightless despite being near the Earth?", "path": "khan/science/physics/newton-gravitation/gravity-newtonian/gravity-for-astronauts-in-orbit/", "slug": "gravity-for-astronauts-in-orbit", "kind": "Video", "video_id": "oIZV-ixRTcY", "keywords": "gravity, physics, weight, free, fall", "youtube_id": "oIZV-ixRTcY", "readable_id": "gravity-for-astronauts-in-orbit"}, "9Y-7wohhcSU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9Y-7wohhcSU.mp4/9Y-7wohhcSU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9Y-7wohhcSU.mp4/9Y-7wohhcSU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9Y-7wohhcSU.m3u8/9Y-7wohhcSU.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-pleural-effusion/vein-artery-nerve-bundle/", "duration": 366, "id": "9Y-7wohhcSU", "title": "Neurovascular bundle", "format": "mp4", "description": "The neurovascular bundles located underneath the ribs are small collections of blood vessels (veins and arteries) and nerves which supply the tissues of the chest wall. When procedures such as a thoracentesis are performed, health professionals must avoid hitting this bundle. If they do, the patient may have significant bleeding, hypotension, shock, and decreased respiratory function.", "slug": "vein-artery-nerve-bundle", "kind": "Video", "video_id": "9Y-7wohhcSU", "keywords": "", "youtube_id": "9Y-7wohhcSU", "readable_id": "vein-artery-nerve-bundle"}, "ZVSVHvJRy8U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZVSVHvJRy8U.mp4/ZVSVHvJRy8U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZVSVHvJRy8U.mp4/ZVSVHvJRy8U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZVSVHvJRy8U.m3u8/ZVSVHvJRy8U.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/ways-of-knowing-early-humans/bhp-intro-archaeology/", "duration": 301, "id": "ZVSVHvJRy8U", "title": "Intro to Archaeology", "format": "mp4", "description": "Nicholas Toth explains the tools, methods, and focus of an archaeologist.", "slug": "bhp-intro-archaeology", "kind": "Video", "video_id": "ZVSVHvJRy8U", "keywords": "", "youtube_id": "ZVSVHvJRy8U", "readable_id": "bhp-intro-archaeology"}, "rbWaiXa9A1k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rbWaiXa9A1k.mp4/rbWaiXa9A1k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rbWaiXa9A1k.mp4/rbWaiXa9A1k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rbWaiXa9A1k.m3u8/rbWaiXa9A1k.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-non-cyanotic-heart-diseases/what-is-acyanotic-heart-disease/", "duration": 334, "id": "rbWaiXa9A1k", "title": "What is acyanotic heart disease?", "format": "mp4", "description": "Acyanotic heart disease is a group of heart conditions where blood with oxygen mixes with blood with little oxygen in the heart. This mixing is not enough to cause cyanosis, a symptom of not enough oxygen being delivered to tissues of the body, hence the name acyanotic heart disease.", "slug": "what-is-acyanotic-heart-disease", "kind": "Video", "video_id": "rbWaiXa9A1k", "keywords": "", "youtube_id": "rbWaiXa9A1k", "readable_id": "what-is-acyanotic-heart-disease"}, "C6PUlTYnxLY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/C6PUlTYnxLY.mp4/C6PUlTYnxLY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/C6PUlTYnxLY.mp4/C6PUlTYnxLY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/C6PUlTYnxLY.m3u8/C6PUlTYnxLY.m3u8"}, "path": "khan/humanities/renaissance-reformation/protestant-reformation1/introduction-to-the-protestant-reformation-the-counter-reformation-4-of-4/", "duration": 581, "id": "C6PUlTYnxLY", "title": "Introduction to the Protestant Reformation: The Counter-Reformation (part 4)", "format": "mp4", "description": "Introduction to the Protestant Reformation: The Counter-Reformation (4 of 4) Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "introduction-to-the-protestant-reformation-the-counter-reformation-4-of-4", "kind": "Video", "video_id": "C6PUlTYnxLY", "keywords": "reformation, counter-reformation", "youtube_id": "C6PUlTYnxLY", "readable_id": "introduction-to-the-protestant-reformation-the-counter-reformation-4-of-4"}, "WyNqLrb0LRE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WyNqLrb0LRE.mp4/WyNqLrb0LRE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WyNqLrb0LRE.mp4/WyNqLrb0LRE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WyNqLrb0LRE.m3u8/WyNqLrb0LRE.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/durer/d-rer-the-four-apostles-1526/", "duration": 352, "id": "WyNqLrb0LRE", "title": "D\u00fcrer, Four Apostles", "format": "mp4", "description": "Albrecht D\u00fcrer, The Four Apostles, 1526, oil on wood, 7' 1\" x 2' 6\" (Alte Pinakothek, Munich)\n\nSpeakers: Dr. Steven Zucker & Dr. Beth Harris", "slug": "d-rer-the-four-apostles-1526", "kind": "Video", "video_id": "WyNqLrb0LRE", "keywords": "", "youtube_id": "WyNqLrb0LRE", "readable_id": "d-rer-the-four-apostles-1526"}, "p4DTormtEG0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/p4DTormtEG0.mp4/p4DTormtEG0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/p4DTormtEG0.mp4/p4DTormtEG0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/p4DTormtEG0.m3u8/p4DTormtEG0.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/acceleration-mcat/airbus-a380-take-off-time/", "duration": 488, "id": "p4DTormtEG0", "title": "Airbus A380 take-off time", "format": "mp4", "description": "Figuring how long it takes an a380 to take off given a constant acceleration", "slug": "airbus-a380-take-off-time", "kind": "Video", "video_id": "p4DTormtEG0", "keywords": "acceleration, velocity, physics", "youtube_id": "p4DTormtEG0", "readable_id": "airbus-a380-take-off-time"}, "cJLbnWBU09E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cJLbnWBU09E.mp4/cJLbnWBU09E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cJLbnWBU09E.mp4/cJLbnWBU09E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cJLbnWBU09E.m3u8/cJLbnWBU09E.m3u8"}, "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/pressure-volume-loops/left-ventricular-volume-vs-time/", "duration": 541, "id": "cJLbnWBU09E", "title": "Left ventricular volume vs. time", "format": "mp4", "description": "Left ventricular volume changes over time in a way that makes a curious looking graph. Learn more in this video! Rishi is a pediatric infectious disease physician and works at Khan Academy.", "slug": "left-ventricular-volume-vs-time", "kind": "Video", "video_id": "cJLbnWBU09E", "keywords": "", "youtube_id": "cJLbnWBU09E", "readable_id": "left-ventricular-volume-vs-time"}, "U8d45ETt78o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U8d45ETt78o.mp4/U8d45ETt78o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U8d45ETt78o.mp4/U8d45ETt78o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U8d45ETt78o.m3u8/U8d45ETt78o.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/gustave-caillebotte-paris-street-rainy-day-1877/", "duration": 284, "id": "U8d45ETt78o", "title": "Gustave Caillebotte, Paris Street; Rainy Day", "format": "mp4", "description": "Gustave Caillebotte, Paris Street; Rainy Day, 1877, oil on canvas 83-1/2 x 108-3/4 inches / 212.2 x 276.2 cm (The Art Institute of Chicago). In the Google Art Project: http://www.googleartproject.com/collection/the-art-institute-of-chicago/artwork/paris-street-rainy-day-gustave-caillebotte/425239/ View this work up close on the Google Art Project: http://www.googleartproject.com/collection/the-art-institute-of-chicago/artwork/paris-street-rainy-day-gustave-caillebotte/425239/", "slug": "gustave-caillebotte-paris-street-rainy-day-1877", "kind": "Video", "video_id": "U8d45ETt78o", "keywords": "Art history, Smarthistory, painting, art, OER, google art project, khan academy", "youtube_id": "U8d45ETt78o", "readable_id": "gustave-caillebotte-paris-street-rainy-day-1877"}, "Z36dUduOk1Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Z36dUduOk1Y.mp4/Z36dUduOk1Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Z36dUduOk1Y.mp4/Z36dUduOk1Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Z36dUduOk1Y.m3u8/Z36dUduOk1Y.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-immune-system/rn-the-immune-system/b-lymphocytes-b-cells/", "duration": 853, "id": "Z36dUduOk1Y", "title": "B lymphocytes (B cells)", "format": "mp4", "description": "Overview of B cells (B lymphocytes) and how they are activated and produce antibodies", "slug": "b-lymphocytes-b-cells", "kind": "Video", "video_id": "Z36dUduOk1Y", "keywords": "cells, lymphocytes, antibodies", "youtube_id": "Z36dUduOk1Y", "readable_id": "b-lymphocytes-b-cells"}, "Uy_L8tnihDM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Uy_L8tnihDM.mp4/Uy_L8tnihDM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Uy_L8tnihDM.mp4/Uy_L8tnihDM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Uy_L8tnihDM.m3u8/Uy_L8tnihDM.m3u8"}, "duration": 467, "id": "Uy_L8tnihDM", "title": "Formula for arithmetic series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/formula-for-arithmetic-series/", "slug": "formula-for-arithmetic-series", "kind": "Video", "video_id": "Uy_L8tnihDM", "keywords": "", "youtube_id": "Uy_L8tnihDM", "readable_id": "formula-for-arithmetic-series"}, "sorB6XFJ8Jc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sorB6XFJ8Jc.mp4/sorB6XFJ8Jc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sorB6XFJ8Jc.mp4/sorB6XFJ8Jc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sorB6XFJ8Jc.m3u8/sorB6XFJ8Jc.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/spontaneity-and-redox-reactions/", "duration": 742, "id": "sorB6XFJ8Jc", "title": "Spontaneity and redox reactions", "format": "mp4", "description": "", "slug": "spontaneity-and-redox-reactions", "kind": "Video", "video_id": "sorB6XFJ8Jc", "keywords": "", "youtube_id": "sorB6XFJ8Jc", "readable_id": "spontaneity-and-redox-reactions"}, "nOnd3SiYZqM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nOnd3SiYZqM.mp4/nOnd3SiYZqM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nOnd3SiYZqM.mp4/nOnd3SiYZqM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nOnd3SiYZqM.m3u8/nOnd3SiYZqM.m3u8"}, "duration": 551, "id": "nOnd3SiYZqM", "title": "One-sided limits from graphs", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/limits_topic/calculus-estimating-limits-graph/one-sided-limits-from-graphs/", "slug": "one-sided-limits-from-graphs", "kind": "Video", "video_id": "nOnd3SiYZqM", "keywords": "", "youtube_id": "nOnd3SiYZqM", "readable_id": "one-sided-limits-from-graphs"}, "kiMNT18c4Ko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kiMNT18c4Ko.mp4/kiMNT18c4Ko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kiMNT18c4Ko.mp4/kiMNT18c4Ko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kiMNT18c4Ko.m3u8/kiMNT18c4Ko.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/roman/early-empire/ara-pacis-augustae-altar-of-augustan-peace-13-9-b-c-e-rome/", "duration": 641, "id": "kiMNT18c4Ko", "title": "Ara Pacis", "format": "mp4", "description": "Ara Pacis Augustae (Altar of Augustan Peace), 13-9 B.C.E.Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "ara-pacis-augustae-altar-of-augustan-peace-13-9-b-c-e-rome", "kind": "Video", "video_id": "kiMNT18c4Ko", "keywords": "", "youtube_id": "kiMNT18c4Ko", "readable_id": "ara-pacis-augustae-altar-of-augustan-peace-13-9-b-c-e-rome"}, "Pz_ZICqJuc8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pz_ZICqJuc8.mp4/Pz_ZICqJuc8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pz_ZICqJuc8.mp4/Pz_ZICqJuc8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pz_ZICqJuc8.m3u8/Pz_ZICqJuc8.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/intl-avant-garde/mondrian-composition/", "duration": 134, "id": "Pz_ZICqJuc8", "title": "\"Composition in Brown and Gray,\" Piet Mondrian", "format": "mp4", "description": "Discover how Mondrian explored center and periphery in his pioneering abstraction.\u00a0\nTo learn about other great moments in modern art, take our online course, Modern Art, 1880-1945.", "slug": "mondrian-composition", "kind": "Video", "video_id": "Pz_ZICqJuc8", "keywords": "", "youtube_id": "Pz_ZICqJuc8", "readable_id": "mondrian-composition"}, "GcLSWBjp6UM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GcLSWBjp6UM.mp4/GcLSWBjp6UM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GcLSWBjp6UM.mp4/GcLSWBjp6UM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GcLSWBjp6UM.m3u8/GcLSWBjp6UM.m3u8"}, "duration": 212, "id": "GcLSWBjp6UM", "title": "Rotation sensor", "format": "mp4", "description": "Familiarize yourself with rotation sensor. Build a volume knob", "path": "khan/science/discoveries-projects/lego-robotics/lego-coin-detector/lego-rotationsensor/", "slug": "lego-rotationsensor", "kind": "Video", "video_id": "GcLSWBjp6UM", "keywords": "", "youtube_id": "GcLSWBjp6UM", "readable_id": "lego-rotationsensor"}, "MxDP1B5mKWA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MxDP1B5mKWA.mp4/MxDP1B5mKWA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MxDP1B5mKWA.mp4/MxDP1B5mKWA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MxDP1B5mKWA.m3u8/MxDP1B5mKWA.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/brainstem/", "duration": 482, "id": "MxDP1B5mKWA", "title": "Brainstem", "format": "mp4", "description": "", "slug": "brainstem", "kind": "Video", "video_id": "MxDP1B5mKWA", "keywords": "MCAT", "youtube_id": "MxDP1B5mKWA", "readable_id": "brainstem"}, "ENL8peIiG_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ENL8peIiG_Y.mp4/ENL8peIiG_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ENL8peIiG_Y.mp4/ENL8peIiG_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ENL8peIiG_Y.m3u8/ENL8peIiG_Y.m3u8"}, "duration": 764, "id": "ENL8peIiG_Y", "title": "Common Core Standards: Exponents", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the exponent standards.", "path": "exponents/", "slug": "exponents", "kind": "Video", "video_id": "ENL8peIiG_Y", "keywords": "", "youtube_id": "ENL8peIiG_Y", "readable_id": "exponents"}, "NzIoHQfStoM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NzIoHQfStoM.mp4/NzIoHQfStoM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NzIoHQfStoM.mp4/NzIoHQfStoM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NzIoHQfStoM.m3u8/NzIoHQfStoM.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/decimals-and-fractions/", "duration": 162, "id": "NzIoHQfStoM", "title": "Decimal to simplified fraction", "format": "mp4", "description": "Here's an example of how we convert a decimal to a simplified fraction. Over time this will become second nature to you.", "slug": "decimals-and-fractions", "kind": "Video", "video_id": "NzIoHQfStoM", "keywords": "U03_L1_T1_we3, Decimals, and, Fractions, CC_4_NF_6", "youtube_id": "NzIoHQfStoM", "readable_id": "decimals-and-fractions"}, "30o4omX5qfo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/30o4omX5qfo.mp4/30o4omX5qfo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/30o4omX5qfo.mp4/30o4omX5qfo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/30o4omX5qfo.m3u8/30o4omX5qfo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/work-and-the-work-energy-principle/", "duration": 348, "id": "30o4omX5qfo", "title": "Work and the work-energy principle", "format": "mp4", "description": "", "slug": "work-and-the-work-energy-principle", "kind": "Video", "video_id": "30o4omX5qfo", "keywords": "", "youtube_id": "30o4omX5qfo", "readable_id": "work-and-the-work-energy-principle"}, "eLsegxXzaiE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eLsegxXzaiE.mp4/eLsegxXzaiE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eLsegxXzaiE.mp4/eLsegxXzaiE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eLsegxXzaiE.m3u8/eLsegxXzaiE.m3u8"}, "path": "khan/test-prep/nclex-rn/hematologic-system-diseases/rn-myeloproliferative-disorders/what-are-myeloproliferative-disorders/", "duration": 615, "id": "eLsegxXzaiE", "title": "What are myeloproliferative disorders?", "format": "mp4", "description": "Learn about 4 different cancers that involve the bone marrow and produce a large number of cells in the blood stream. By Raja Narayan.\n\nVisit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "what-are-myeloproliferative-disorders", "kind": "Video", "video_id": "eLsegxXzaiE", "keywords": "", "youtube_id": "eLsegxXzaiE", "readable_id": "what-are-myeloproliferative-disorders"}, "ij1TfRMODhA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ij1TfRMODhA.mp4/ij1TfRMODhA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ij1TfRMODhA.mp4/ij1TfRMODhA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ij1TfRMODhA.m3u8/ij1TfRMODhA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/stereochemistry/chirality-center-jay/", "duration": 488, "id": "ij1TfRMODhA", "title": "Identifying chirality centers", "format": "mp4", "description": "", "slug": "chirality-center-jay", "kind": "Video", "video_id": "ij1TfRMODhA", "keywords": "", "youtube_id": "ij1TfRMODhA", "readable_id": "chirality-center-jay"}, "a5uvg9PSJcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a5uvg9PSJcY.mp4/a5uvg9PSJcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a5uvg9PSJcY.mp4/a5uvg9PSJcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a5uvg9PSJcY.m3u8/a5uvg9PSJcY.m3u8"}, "path": "khan/science/discoveries-projects/discovery-lab-2013/discovery-lab-spout-bot-innovation/", "duration": 69, "id": "a5uvg9PSJcY", "title": "DLab: Student perspective on the Spout Bot project (1)", "format": "mp4", "description": "", "slug": "discovery-lab-spout-bot-innovation", "kind": "Video", "video_id": "a5uvg9PSJcY", "keywords": "", "youtube_id": "a5uvg9PSJcY", "readable_id": "discovery-lab-spout-bot-innovation"}, "m6lMGoZTJnc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m6lMGoZTJnc.mp4/m6lMGoZTJnc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m6lMGoZTJnc.mp4/m6lMGoZTJnc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m6lMGoZTJnc.m3u8/m6lMGoZTJnc.m3u8"}, "path": "khan/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic/apsidal-precession-perihelion-precession-and-milankovitch-cycles/", "duration": 427, "id": "m6lMGoZTJnc", "title": "Apsidal precession (perihelion precession) and Milankovitch cycles", "format": "mp4", "description": "Apsidal Precession (Perihelion Precession)", "slug": "apsidal-precession-perihelion-precession-and-milankovitch-cycles", "kind": "Video", "video_id": "m6lMGoZTJnc", "keywords": "Apsidal, Precession, (Perihelion, Precession)", "youtube_id": "m6lMGoZTJnc", "readable_id": "apsidal-precession-perihelion-precession-and-milankovitch-cycles"}, "91eJReL13Hc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/91eJReL13Hc.mp4/91eJReL13Hc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/91eJReL13Hc.mp4/91eJReL13Hc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/91eJReL13Hc.m3u8/91eJReL13Hc.m3u8"}, "duration": 330, "id": "91eJReL13Hc", "title": "Women and Thomas Jefferson", "format": "mp4", "description": "n this video, journalist and best selling author Cokie Roberts and Aspen Institute President and CEO Walter Isaacson discuss Thomas Jefferson's views on colonial women and their role in the politics of the day.", "path": "women-jefferson/", "slug": "women-jefferson", "kind": "Video", "video_id": "91eJReL13Hc", "keywords": "", "youtube_id": "91eJReL13Hc", "readable_id": "women-jefferson"}, "SyWWgn5YEZo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SyWWgn5YEZo.mp4/SyWWgn5YEZo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SyWWgn5YEZo.mp4/SyWWgn5YEZo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SyWWgn5YEZo.m3u8/SyWWgn5YEZo.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/jim-goes-to-college-subculture/", "duration": 150, "id": "SyWWgn5YEZo", "title": "Jim goes to college subculture", "format": "mp4", "description": "", "slug": "jim-goes-to-college-subculture", "kind": "Video", "video_id": "SyWWgn5YEZo", "keywords": "", "youtube_id": "SyWWgn5YEZo", "readable_id": "jim-goes-to-college-subculture"}, "NRFPvLp3r3g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NRFPvLp3r3g.mp4/NRFPvLp3r3g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NRFPvLp3r3g.mp4/NRFPvLp3r3g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NRFPvLp3r3g.m3u8/NRFPvLp3r3g.m3u8"}, "duration": 568, "id": "NRFPvLp3r3g", "title": "Naming simple alkanes", "format": "mp4", "description": "Naming Simple Alkanes", "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes/naming-simple-alkanes/", "slug": "naming-simple-alkanes", "kind": "Video", "video_id": "NRFPvLp3r3g", "keywords": "Naming, Simple, Alkanes", "youtube_id": "NRFPvLp3r3g", "readable_id": "naming-simple-alkanes"}, "D2xYjiL8yyE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D2xYjiL8yyE.mp4/D2xYjiL8yyE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D2xYjiL8yyE.mp4/D2xYjiL8yyE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D2xYjiL8yyE.m3u8/D2xYjiL8yyE.m3u8"}, "path": "khan/math/recreational-math/vi-hart/pi-tau/rhapsody-on-the-proof-of-pi-4/", "duration": 356, "id": "D2xYjiL8yyE", "title": "Rhapsody on the proof of pi = 4", "format": "mp4", "description": "Correction: when I mark where pi is on the graph, I meant pi/2!\nNote: If this video were supposed to be teaching you, I'd probably have to make it boring and say that in one sense of limits, spoiler alert, you actually do approach a circle and a line, solving the apparent paradox by saying that the invariant of length does not hold over infinity. Luckily I am an artist, and this is a Rhapsody, and instead of \"learning,\" you get to actually think, if you like.", "slug": "rhapsody-on-the-proof-of-pi-4", "kind": "Video", "video_id": "D2xYjiL8yyE", "keywords": "mathematics, graphs, infinity, fractals, polygons, doodling, vi hart", "youtube_id": "D2xYjiL8yyE", "readable_id": "rhapsody-on-the-proof-of-pi-4"}, "GMoqg_s4Dl4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GMoqg_s4Dl4.mp4/GMoqg_s4Dl4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GMoqg_s4Dl4.mp4/GMoqg_s4Dl4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GMoqg_s4Dl4.m3u8/GMoqg_s4Dl4.m3u8"}, "duration": 301, "id": "GMoqg_s4Dl4", "title": "Example 1: Factoring trinomials with a common factor", "format": "mp4", "description": "Factoring trinomials with a common factor", "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring-trinomials-with-a-common-factor/", "slug": "factoring-trinomials-with-a-common-factor", "kind": "Video", "video_id": "GMoqg_s4Dl4", "keywords": "u12_l2_t1_we2, Factoring, trinomials, with, common, factor, CC_39336_A-SSE_1_b, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "GMoqg_s4Dl4", "readable_id": "factoring-trinomials-with-a-common-factor"}, "mV0RxDZG05A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mV0RxDZG05A.mp4/mV0RxDZG05A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mV0RxDZG05A.mp4/mV0RxDZG05A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mV0RxDZG05A.m3u8/mV0RxDZG05A.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/mult-div-by-10-dec-pre-alg/multiplying-a-decimal-by-a-power-of-10/", "duration": 227, "id": "mV0RxDZG05A", "title": "Multiplying a decimal by a power of 10", "format": "mp4", "description": "You will notice in this word problem that moving the decimal to the right the same number of times as the number of zeros you multiplying by gets you the answer you desire. Check this out!", "slug": "multiplying-a-decimal-by-a-power-of-10", "kind": "Video", "video_id": "mV0RxDZG05A", "keywords": "u3_l2_t2_we2, Multiplying, Decimal, by, Power, of, 10, CC_5_NBT_7, CC_6_NS_3", "youtube_id": "mV0RxDZG05A", "readable_id": "multiplying-a-decimal-by-a-power-of-10"}, "rBZ63imCC84": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rBZ63imCC84.mp4/rBZ63imCC84.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rBZ63imCC84.mp4/rBZ63imCC84.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rBZ63imCC84.m3u8/rBZ63imCC84.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-financial-obstacles/", "duration": 63, "id": "rBZ63imCC84", "title": "Student story: Overcoming financial obstacles to college", "format": "mp4", "description": "Learn More About QuestBridge", "slug": "ss-financial-obstacles", "kind": "Video", "video_id": "rBZ63imCC84", "keywords": "", "youtube_id": "rBZ63imCC84", "readable_id": "ss-financial-obstacles"}, "VTtlgX27FgI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VTtlgX27FgI.mp4/VTtlgX27FgI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VTtlgX27FgI.mp4/VTtlgX27FgI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VTtlgX27FgI.m3u8/VTtlgX27FgI.m3u8"}, "path": "khan/partner-content/big-history-project/acceleration/bhp-acceleration/bhp-how-did-accelerate/", "duration": 740, "id": "VTtlgX27FgI", "title": "How Did Change Accelerate?", "format": "mp4", "description": "Exchange multiplies, markets grow, and fossil fuels flow, revolutionizing government and industry.", "slug": "bhp-how-did-accelerate", "kind": "Video", "video_id": "VTtlgX27FgI", "keywords": "", "youtube_id": "VTtlgX27FgI", "readable_id": "bhp-how-did-accelerate"}, "1KwW1v__T_0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1KwW1v__T_0.mp4/1KwW1v__T_0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1KwW1v__T_0.mp4/1KwW1v__T_0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1KwW1v__T_0.m3u8/1KwW1v__T_0.m3u8"}, "duration": 487, "id": "1KwW1v__T_0", "title": "Equation of a tangent line", "format": "mp4", "description": "Finding the equation of the line tangent to f(x)=xe^x when x=1", "path": "khan/math/differential-calculus/taking-derivatives/product_rule/equation-of-a-tangent-line/", "slug": "equation-of-a-tangent-line", "kind": "Video", "video_id": "1KwW1v__T_0", "keywords": "calculus, tangent, line, equation", "youtube_id": "1KwW1v__T_0", "readable_id": "equation-of-a-tangent-line"}, "DL-ozRGDlkY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DL-ozRGDlkY.mp4/DL-ozRGDlkY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DL-ozRGDlkY.mp4/DL-ozRGDlkY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DL-ozRGDlkY.m3u8/DL-ozRGDlkY.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/separable-equations/separable-differential-equations-introduction/", "duration": 546, "id": "DL-ozRGDlkY", "title": "Separable differential equations introduction", "format": "mp4", "description": "", "slug": "separable-differential-equations-introduction", "kind": "Video", "video_id": "DL-ozRGDlkY", "keywords": "", "youtube_id": "DL-ozRGDlkY", "readable_id": "separable-differential-equations-introduction"}, "byjmR7JBXKc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/byjmR7JBXKc.mp4/byjmR7JBXKc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/byjmR7JBXKc.mp4/byjmR7JBXKc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/byjmR7JBXKc.m3u8/byjmR7JBXKc.m3u8"}, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-scale-drawings/scale-drawings-example/", "duration": 266, "id": "byjmR7JBXKc", "title": "Interpreting a scale drawing", "format": "mp4", "description": "Understand how a scale drawing is converted into real numbers using the scale factor.", "slug": "scale-drawings-example", "kind": "Video", "video_id": "byjmR7JBXKc", "keywords": "", "youtube_id": "byjmR7JBXKc", "readable_id": "scale-drawings-example"}, "wer4F-2qd-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wer4F-2qd-Y.mp4/wer4F-2qd-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wer4F-2qd-Y.mp4/wer4F-2qd-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wer4F-2qd-Y.m3u8/wer4F-2qd-Y.m3u8"}, "duration": 139, "id": "wer4F-2qd-Y", "title": "\"Map\" by Jasper Johns, 1961 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how he teaches \"Map\" by Jasper Johns, 1961.\u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-johns/", "slug": "teaching-johns", "kind": "Video", "video_id": "wer4F-2qd-Y", "keywords": "", "youtube_id": "wer4F-2qd-Y", "readable_id": "teaching-johns"}, "NfZgy3tymmI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NfZgy3tymmI.mp4/NfZgy3tymmI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NfZgy3tymmI.mp4/NfZgy3tymmI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NfZgy3tymmI.m3u8/NfZgy3tymmI.m3u8"}, "path": "khan/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction/diels-alder-i-mechanism/", "duration": 696, "id": "NfZgy3tymmI", "title": "Diels-Alder I: Mechanism", "format": "mp4", "description": "", "slug": "diels-alder-i-mechanism", "kind": "Video", "video_id": "NfZgy3tymmI", "keywords": "", "youtube_id": "NfZgy3tymmI", "readable_id": "diels-alder-i-mechanism"}, "2ArXbUhbikQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2ArXbUhbikQ.mp4/2ArXbUhbikQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2ArXbUhbikQ.mp4/2ArXbUhbikQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2ArXbUhbikQ.m3u8/2ArXbUhbikQ.m3u8"}, "path": "khan/partner-content/wi-phi/critical-thinking/affirming-the-consequent/", "duration": 208, "id": "2ArXbUhbikQ", "title": "Fallacies: Affirming the consequent", "format": "mp4", "description": "In this video, Matthew C. Harris explains the fallacy of affirming the consequent, the formal fallacy that arises from inferring the converse of an argument. He also explains why you sometimes cannot conclude that you should bathe in a tub of\u00a0peanut\u00a0butter.\n\nSpeaker: Matthew C. Harris\n\u00a0", "slug": "affirming-the-consequent", "kind": "Video", "video_id": "2ArXbUhbikQ", "keywords": "", "youtube_id": "2ArXbUhbikQ", "readable_id": "affirming-the-consequent"}, "3SmyaLwpSaI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3SmyaLwpSaI.mp4/3SmyaLwpSaI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3SmyaLwpSaI.mp4/3SmyaLwpSaI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3SmyaLwpSaI.m3u8/3SmyaLwpSaI.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/pierre-auguste-renoir-the-grands-boulevards-1875/", "duration": 346, "id": "3SmyaLwpSaI", "title": "Renoir, The Grands Boulevards", "format": "mp4", "description": "Pierre-Auguste Renoir, The Grands Boulevards, 1875, oil on canvas, 20-1/2 x 25 inches / 52.1 x 63.5 cm (Philadelphia Museum of Art)", "slug": "pierre-auguste-renoir-the-grands-boulevards-1875", "kind": "Video", "video_id": "3SmyaLwpSaI", "keywords": "Pierre-Auguste Renoir, Renoir, Grands Boulevards, Boulevards, 1875, Philadelphia Museum of Art, Philadelphia, Paris, Haussmann, Impressionism, art, painting, art history, Google Art Project, Khan Academy, Smarthistory, OER", "youtube_id": "3SmyaLwpSaI", "readable_id": "pierre-auguste-renoir-the-grands-boulevards-1875"}, "wmp-aV0bPuE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wmp-aV0bPuE.mp4/wmp-aV0bPuE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wmp-aV0bPuE.mp4/wmp-aV0bPuE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wmp-aV0bPuE.m3u8/wmp-aV0bPuE.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-intro-blended-learning/sscc-blended-learning-models/sscc-blended-lab/", "duration": 134, "id": "wmp-aV0bPuE", "title": "The Lab Rotation Model", "format": "mp4", "description": "", "slug": "sscc-blended-lab", "kind": "Video", "video_id": "wmp-aV0bPuE", "keywords": "", "youtube_id": "wmp-aV0bPuE", "readable_id": "sscc-blended-lab"}, "KbW6OiuRa1Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KbW6OiuRa1Y.mp4/KbW6OiuRa1Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KbW6OiuRa1Y.mp4/KbW6OiuRa1Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KbW6OiuRa1Y.m3u8/KbW6OiuRa1Y.m3u8"}, "duration": 462, "id": "KbW6OiuRa1Y", "title": "Equalizing marginal utility per dollar spent", "format": "mp4", "description": "Why the marginal utility for dollar spent should be theoritically equal for the last increment of either good purchased", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial/equalizing-marginal-utility-per-dollar-spent/", "slug": "equalizing-marginal-utility-per-dollar-spent", "kind": "Video", "video_id": "KbW6OiuRa1Y", "keywords": "microeconomics", "youtube_id": "KbW6OiuRa1Y", "readable_id": "equalizing-marginal-utility-per-dollar-spent"}, "Jnk_4Maf5Fk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jnk_4Maf5Fk.mp4/Jnk_4Maf5Fk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jnk_4Maf5Fk.mp4/Jnk_4Maf5Fk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jnk_4Maf5Fk.m3u8/Jnk_4Maf5Fk.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/dna-sequencing/", "duration": 281, "id": "Jnk_4Maf5Fk", "title": "DNA sequencing", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "dna-sequencing", "kind": "Video", "video_id": "Jnk_4Maf5Fk", "keywords": "", "youtube_id": "Jnk_4Maf5Fk", "readable_id": "dna-sequencing"}, "_6uAjslPNuU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_6uAjslPNuU.mp4/_6uAjslPNuU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_6uAjslPNuU.mp4/_6uAjslPNuU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_6uAjslPNuU.m3u8/_6uAjslPNuU.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/durer/tipping-point/", "duration": 166, "id": "_6uAjslPNuU", "title": "\"Tipping Point\" with Stijn Alsteens", "format": "mp4", "description": "Met curator Stijn Alsteens on observation in Albrecht D\u00fcrer\u2019s Self-portrait, Study of a Hand and a Pillow (recto); Six Studies of Pillows (verso).\n\nView this work on metmuseum.org.\u00a0\n", "slug": "tipping-point", "kind": "Video", "video_id": "_6uAjslPNuU", "keywords": "body, confidence, control, drawing, paper, Europe", "youtube_id": "_6uAjslPNuU", "readable_id": "tipping-point"}, "QTcSBB3uVP0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QTcSBB3uVP0.mp4/QTcSBB3uVP0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QTcSBB3uVP0.mp4/QTcSBB3uVP0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QTcSBB3uVP0.m3u8/QTcSBB3uVP0.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/orthogonal_projections/linear-algebra-subspace-projection-matrix-example/", "duration": 784, "id": "QTcSBB3uVP0", "title": "Subspace projection matrix example", "format": "mp4", "description": "Example of a transformation matrix for a projection onto a subspace", "slug": "linear-algebra-subspace-projection-matrix-example", "kind": "Video", "video_id": "QTcSBB3uVP0", "keywords": "subspace, projection", "youtube_id": "QTcSBB3uVP0", "readable_id": "linear-algebra-subspace-projection-matrix-example"}, "Sc0e6xrRJYY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Sc0e6xrRJYY.mp4/Sc0e6xrRJYY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Sc0e6xrRJYY.mp4/Sc0e6xrRJYY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Sc0e6xrRJYY.m3u8/Sc0e6xrRJYY.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/level-1-multiplying-expressions/", "duration": 478, "id": "Sc0e6xrRJYY", "title": "Classic multiplying binomials video", "format": "mp4", "description": "(Ax+By)(Ax+By)", "slug": "level-1-multiplying-expressions", "kind": "Video", "video_id": "Sc0e6xrRJYY", "keywords": "Algebra, CC_39336_A-APR_1", "youtube_id": "Sc0e6xrRJYY", "readable_id": "level-1-multiplying-expressions"}, "lR_kUUPL8YY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lR_kUUPL8YY.mp4/lR_kUUPL8YY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lR_kUUPL8YY.mp4/lR_kUUPL8YY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lR_kUUPL8YY.m3u8/lR_kUUPL8YY.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimal-place-value-pre-alg/comparing-place-values-in-decimals/", "duration": 340, "id": "lR_kUUPL8YY", "title": "Decimals: comparing place values", "format": "mp4", "description": "We're having a blast with decimals! Check this one: we're comparing place values. This will blow your mind.", "slug": "comparing-place-values-in-decimals", "kind": "Video", "video_id": "lR_kUUPL8YY", "keywords": "", "youtube_id": "lR_kUUPL8YY", "readable_id": "comparing-place-values-in-decimals"}, "20n0i2KQRCs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/20n0i2KQRCs.mp4/20n0i2KQRCs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/20n0i2KQRCs.mp4/20n0i2KQRCs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/20n0i2KQRCs.m3u8/20n0i2KQRCs.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/millais-the-vale-of-rest-where-the-weary-find-repose-1858/", "duration": 237, "id": "20n0i2KQRCs", "title": "Millais, The Vale of Rest", "format": "mp4", "description": "Sir John Everett Millais, The Vale of Rest: where the weary find repose, 1858 (partially repainted 1862), oil on canvas, 40 1/2 x 68 inches (Tate Britain, London) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "millais-the-vale-of-rest-where-the-weary-find-repose-1858", "kind": "Video", "video_id": "20n0i2KQRCs", "keywords": "Millais, Pre-Raphaelite, Tate Britain, Smarthistory, Art History", "youtube_id": "20n0i2KQRCs", "readable_id": "millais-the-vale-of-rest-where-the-weary-find-repose-1858"}, "Qb7tbWuDc2U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Qb7tbWuDc2U.mp4/Qb7tbWuDc2U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Qb7tbWuDc2U.mp4/Qb7tbWuDc2U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Qb7tbWuDc2U.m3u8/Qb7tbWuDc2U.m3u8"}, "duration": 212, "id": "Qb7tbWuDc2U", "title": "Hedge funds intro", "format": "mp4", "description": "Overview of how hedge funds are different than mutual funds", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds/hedge-funds-intro/", "slug": "hedge-funds-intro", "kind": "Video", "video_id": "Qb7tbWuDc2U", "keywords": "hedge, fund, mutual", "youtube_id": "Qb7tbWuDc2U", "readable_id": "hedge-funds-intro"}, "jAfNg3ylZAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jAfNg3ylZAI.mp4/jAfNg3ylZAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jAfNg3ylZAI.mp4/jAfNg3ylZAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jAfNg3ylZAI.m3u8/jAfNg3ylZAI.m3u8"}, "duration": 464, "id": "jAfNg3ylZAI", "title": "Intersection and union of sets", "format": "mp4", "description": "", "path": "khan/math/probability/independent-dependent-probability/basic_set_operations/intersection-and-union-of-sets/", "slug": "intersection-and-union-of-sets", "kind": "Video", "video_id": "jAfNg3ylZAI", "keywords": "", "youtube_id": "jAfNg3ylZAI", "readable_id": "intersection-and-union-of-sets"}, "99v51U3HSCU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/99v51U3HSCU.mp4/99v51U3HSCU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/99v51U3HSCU.mp4/99v51U3HSCU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/99v51U3HSCU.m3u8/99v51U3HSCU.m3u8"}, "duration": 481, "id": "99v51U3HSCU", "title": "Shifting and scaling parabolas", "format": "mp4", "description": "", "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/shifting-and-scaling-parabolas/", "slug": "shifting-and-scaling-parabolas", "kind": "Video", "video_id": "99v51U3HSCU", "keywords": "", "youtube_id": "99v51U3HSCU", "readable_id": "shifting-and-scaling-parabolas"}, "b7JTVLc_aMk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b7JTVLc_aMk.mp4/b7JTVLc_aMk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b7JTVLc_aMk.mp4/b7JTVLc_aMk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b7JTVLc_aMk.m3u8/b7JTVLc_aMk.m3u8"}, "path": "khan/test-prep/iit-jee-subject/iit-jee/vector-triple-product-expansion-very-optional/", "duration": 865, "id": "b7JTVLc_aMk", "title": "Vector triple product expansion (very optional)", "format": "mp4", "description": "A shortcut for having to evaluate the cross product of three vectors", "slug": "vector-triple-product-expansion-very-optional", "kind": "Video", "video_id": "b7JTVLc_aMk", "keywords": "vector, cross, product, lagrange, expansion, triple", "youtube_id": "b7JTVLc_aMk", "readable_id": "vector-triple-product-expansion-very-optional"}, "jmD0LBdAvlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jmD0LBdAvlE.mp4/jmD0LBdAvlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jmD0LBdAvlE.mp4/jmD0LBdAvlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jmD0LBdAvlE.m3u8/jmD0LBdAvlE.m3u8"}, "path": "khan/test-prep/mcat/behavior/biological-basis-of-behavior-ner/structure-of-the-nervous-system/", "duration": 528, "id": "jmD0LBdAvlE", "title": "Structure of the nervous system", "format": "mp4", "description": "", "slug": "structure-of-the-nervous-system", "kind": "Video", "video_id": "jmD0LBdAvlE", "keywords": "MCAT", "youtube_id": "jmD0LBdAvlE", "readable_id": "structure-of-the-nervous-system"}, "_kbd6troMgA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_kbd6troMgA.mp4/_kbd6troMgA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_kbd6troMgA.mp4/_kbd6troMgA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_kbd6troMgA.m3u8/_kbd6troMgA.m3u8"}, "duration": 497, "id": "_kbd6troMgA", "title": "Rate of change of balloon height", "format": "mp4", "description": "", "path": "khan/math/differential-calculus/derivative_applications/rates_of_change/rate-of-change-of-balloon-height/", "slug": "rate-of-change-of-balloon-height", "kind": "Video", "video_id": "_kbd6troMgA", "keywords": "", "youtube_id": "_kbd6troMgA", "readable_id": "rate-of-change-of-balloon-height"}, "K4iEAnjZHuI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/K4iEAnjZHuI.mp4/K4iEAnjZHuI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/K4iEAnjZHuI.mp4/K4iEAnjZHuI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/K4iEAnjZHuI.m3u8/K4iEAnjZHuI.m3u8"}, "duration": 569, "id": "K4iEAnjZHuI", "title": "Common Core Standards: Statistics (middle school)", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the standards for statistics, with a focus on middle school.", "path": "common-core-standards-statistics-middle-school/", "slug": "common-core-standards-statistics-middle-school", "kind": "Video", "video_id": "K4iEAnjZHuI", "keywords": "", "youtube_id": "K4iEAnjZHuI", "readable_id": "common-core-standards-statistics-middle-school"}, "M3FuL9qKTBs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M3FuL9qKTBs.mp4/M3FuL9qKTBs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M3FuL9qKTBs.mp4/M3FuL9qKTBs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M3FuL9qKTBs.m3u8/M3FuL9qKTBs.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/linear-algebra-matrix-condition-for-one-to-one-trans/", "duration": 1199, "id": "M3FuL9qKTBs", "title": "Matrix condition for one-to-one trans", "format": "mp4", "description": "Showing that the rank of the of an mxn transformation matrix has to be an for the transformation to be one-to-one (injective)", "slug": "linear-algebra-matrix-condition-for-one-to-one-trans", "kind": "Video", "video_id": "M3FuL9qKTBs", "keywords": "rank, one-to-one, injective, transformation", "youtube_id": "M3FuL9qKTBs", "readable_id": "linear-algebra-matrix-condition-for-one-to-one-trans"}, "CQYELiTtUs8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CQYELiTtUs8.mp4/CQYELiTtUs8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CQYELiTtUs8.mp4/CQYELiTtUs8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CQYELiTtUs8.m3u8/CQYELiTtUs8.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/newtons-laws-and-equilibrium/newton-s-first-law-of-motion/", "duration": 572, "id": "CQYELiTtUs8", "title": "More on Newton's first law of motion", "format": "mp4", "description": "Newton's First Law (Galileo's Law of Inertia).", "slug": "newton-s-first-law-of-motion", "kind": "Video", "video_id": "CQYELiTtUs8", "keywords": "motion, rest, physics, kinematics", "youtube_id": "CQYELiTtUs8", "readable_id": "newton-s-first-law-of-motion"}, "A6FP-2d3GnQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A6FP-2d3GnQ.mp4/A6FP-2d3GnQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A6FP-2d3GnQ.mp4/A6FP-2d3GnQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A6FP-2d3GnQ.m3u8/A6FP-2d3GnQ.m3u8"}, "duration": 691, "id": "A6FP-2d3GnQ", "title": "GMAT: Math 25", "format": "mp4", "description": "129-132, pgs. 169-170", "path": "khan/test-prep/gmat/problem-solving/gmat-math-25/", "slug": "gmat-math-25", "kind": "Video", "video_id": "A6FP-2d3GnQ", "keywords": "GMAT, Math, problem, solving", "youtube_id": "A6FP-2d3GnQ", "readable_id": "gmat-math-25"}, "qWR7SBsnLwo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qWR7SBsnLwo.mp4/qWR7SBsnLwo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qWR7SBsnLwo.mp4/qWR7SBsnLwo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qWR7SBsnLwo.m3u8/qWR7SBsnLwo.m3u8"}, "duration": 242, "id": "qWR7SBsnLwo", "title": "Conservative forces", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/physical-processes/work-and-energy-mcat/conservative-forces/", "slug": "conservative-forces", "kind": "Video", "video_id": "qWR7SBsnLwo", "keywords": "", "youtube_id": "qWR7SBsnLwo", "readable_id": "conservative-forces"}, "rH7AjDMz_dc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rH7AjDMz_dc.mp4/rH7AjDMz_dc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rH7AjDMz_dc.mp4/rH7AjDMz_dc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rH7AjDMz_dc.m3u8/rH7AjDMz_dc.m3u8"}, "duration": 122, "id": "rH7AjDMz_dc", "title": "The Hour of Code Worldwide", "format": "mp4", "description": "A two-minute video from Code.org introducing the\u00a0Hour of Code\n", "path": "the-hour-of-code-worldwide/", "slug": "the-hour-of-code-worldwide", "kind": "Video", "video_id": "rH7AjDMz_dc", "keywords": "", "youtube_id": "rH7AjDMz_dc", "readable_id": "the-hour-of-code-worldwide"}, "0T5D04kjvFM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0T5D04kjvFM.mp4/0T5D04kjvFM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0T5D04kjvFM.mp4/0T5D04kjvFM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0T5D04kjvFM.m3u8/0T5D04kjvFM.m3u8"}, "duration": 161, "id": "0T5D04kjvFM", "title": "Damien Hirst's Cornucopia at the British Museum", "format": "mp4", "description": "Damien Hirst explores the symbolism of the skull and the futility of decorating plastic skulls in an attempt to make death more palatable. Curator Colin McEwan discusses skull imagery in Meso-American cultures, where the skull alludes to both death and life. \u00a9 Trustees of the British Museum", "path": "damien-hirst-cornucopia/", "slug": "damien-hirst-cornucopia", "kind": "Video", "video_id": "0T5D04kjvFM", "keywords": "British Museum", "youtube_id": "0T5D04kjvFM", "readable_id": "damien-hirst-cornucopia"}, "4tcLzVJdxZs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4tcLzVJdxZs.mp4/4tcLzVJdxZs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4tcLzVJdxZs.mp4/4tcLzVJdxZs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4tcLzVJdxZs.m3u8/4tcLzVJdxZs.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/free-energy-and-cell-potential/", "duration": 494, "id": "4tcLzVJdxZs", "title": "Free energy and cell potential", "format": "mp4", "description": "", "slug": "free-energy-and-cell-potential", "kind": "Video", "video_id": "4tcLzVJdxZs", "keywords": "", "youtube_id": "4tcLzVJdxZs", "readable_id": "free-energy-and-cell-potential"}, "6RpVjF4N8nY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6RpVjF4N8nY.mp4/6RpVjF4N8nY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6RpVjF4N8nY.mp4/6RpVjF4N8nY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6RpVjF4N8nY.m3u8/6RpVjF4N8nY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/kawasaki-disease-diagnosis-and-treatment/", "duration": 741, "id": "6RpVjF4N8nY", "title": "Kawasaki disease: diagnosis and treatment", "format": "mp4", "description": "Kawasaki disease is diagnosed off the presence of symptoms rather than the results of tests. Symptoms include: conjunctivitis, rash, adenopathy, strawberry tongue, and rash on palms and soles of hands and feet. Four of these symptoms must be present, in addition to a fever which has lasted more than 5 days to confirm a diagnosis. Learn about atypical Kawasaki disease, and how health professional treat the disease using intravenous immunoglobulins (IVIG) and acetylsalicylic acid.", "slug": "kawasaki-disease-diagnosis-and-treatment", "kind": "Video", "video_id": "6RpVjF4N8nY", "keywords": "", "youtube_id": "6RpVjF4N8nY", "readable_id": "kawasaki-disease-diagnosis-and-treatment"}, "mmobuVQPAqk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mmobuVQPAqk.mp4/mmobuVQPAqk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mmobuVQPAqk.mp4/mmobuVQPAqk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mmobuVQPAqk.m3u8/mmobuVQPAqk.m3u8"}, "path": "khan/college-admissions/paying-for-college/introduction-pfc/sal-khans-story-paying-for-college/", "duration": 155, "id": "mmobuVQPAqk", "title": "Sal Khan's story: Paying for college", "format": "mp4", "description": "", "slug": "sal-khans-story-paying-for-college", "kind": "Video", "video_id": "mmobuVQPAqk", "keywords": "", "youtube_id": "mmobuVQPAqk", "readable_id": "sal-khans-story-paying-for-college"}, "m9b_h7TiRR8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m9b_h7TiRR8.mp4/m9b_h7TiRR8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m9b_h7TiRR8.mp4/m9b_h7TiRR8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m9b_h7TiRR8.m3u8/m9b_h7TiRR8.m3u8"}, "duration": 425, "id": "m9b_h7TiRR8", "title": "Interpreting the PPD", "format": "mp4", "description": "Find out how the cutoff for a \"positive PPD\" depends on clinical clues. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/interpreting-the-ppd/", "slug": "interpreting-the-ppd", "kind": "Video", "video_id": "m9b_h7TiRR8", "keywords": "", "youtube_id": "m9b_h7TiRR8", "readable_id": "interpreting-the-ppd"}, "JJOIiMdML54": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JJOIiMdML54.mp4/JJOIiMdML54.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JJOIiMdML54.mp4/JJOIiMdML54.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JJOIiMdML54.m3u8/JJOIiMdML54.m3u8"}, "duration": 155, "id": "JJOIiMdML54", "title": "\"Identity \" with Dani\u00eblle Kisluk-Grosheide", "format": "mp4", "description": "Met curator Dani\u00eblle Kisluk-Grosheide on identity in Jean-Fran\u00e7ois Oeben\u2019s Mechanical table.\n\nLong recognized as one of Jean-Fran\u00e7ois Oeben's masterpieces, this table (ca. 1761\u201363) was made for his frequent and most important client, Madame de Pompadour. The main charge of her coat of arms, a tower, appears at the top of the gilt-bronze mount at each corner. The marquetry of the top\u2014one of the finest panels in all of Oeben's furniture\u2014was designed to reflect her interests in the arts and depicts a vase of flowers as well as trophies emblematic of architecture, painting, music, and gardening. The table, completed after Oeben's death by his brother-in-law Roger Vandercruse, demonstrates Oeben's talents, not only as a creator of beautiful furniture but also as a mechanic: an elaborate mechanism allows the top to slide back at the same time as the larger drawer moves forward, thereby doubling the surface area.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an Educator Resource.\n", "path": "identity/", "slug": "identity", "kind": "Video", "video_id": "JJOIiMdML54", "keywords": "body, furniture, ingenuity, metal, nature, ornate, practicality, wood, Europe", "youtube_id": "JJOIiMdML54", "readable_id": "identity"}, "vr9k-TO1_Zc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vr9k-TO1_Zc.mp4/vr9k-TO1_Zc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vr9k-TO1_Zc.mp4/vr9k-TO1_Zc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vr9k-TO1_Zc.m3u8/vr9k-TO1_Zc.m3u8"}, "duration": 217, "id": "vr9k-TO1_Zc", "title": "Incentive theory", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/incentive-theory/", "slug": "incentive-theory", "kind": "Video", "video_id": "vr9k-TO1_Zc", "keywords": "", "youtube_id": "vr9k-TO1_Zc", "readable_id": "incentive-theory"}, "jNESnky3RVg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jNESnky3RVg.mp4/jNESnky3RVg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jNESnky3RVg.mp4/jNESnky3RVg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jNESnky3RVg.m3u8/jNESnky3RVg.m3u8"}, "duration": 1097, "id": "jNESnky3RVg", "title": "Projectile on an incline", "format": "mp4", "description": "Challenging problem of a projectile on an inclined plane", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/projectile-on-an-incline/", "slug": "projectile-on-an-incline", "kind": "Video", "video_id": "jNESnky3RVg", "keywords": "physics, projectile, motion", "youtube_id": "jNESnky3RVg", "readable_id": "projectile-on-an-incline"}, "MnQ7Lizkpqk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MnQ7Lizkpqk.mp4/MnQ7Lizkpqk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MnQ7Lizkpqk.mp4/MnQ7Lizkpqk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MnQ7Lizkpqk.m3u8/MnQ7Lizkpqk.m3u8"}, "duration": 127, "id": "MnQ7Lizkpqk", "title": "Inductive reasoning 1", "format": "mp4", "description": "Inductive Reasoning 1", "path": "khan/math/precalculus/seq_induction/deductive-and-inductive-reasoning/u12-l1-t3-we1-inductive-reasoning-1/", "slug": "u12-l1-t3-we1-inductive-reasoning-1", "kind": "Video", "video_id": "MnQ7Lizkpqk", "keywords": "U12_L1_T3_we1, Inductive, Reasoning, CC_39336_F-BF_2", "youtube_id": "MnQ7Lizkpqk", "readable_id": "u12-l1-t3-we1-inductive-reasoning-1"}, "ZN2PfqZ4ihM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZN2PfqZ4ihM.mp4/ZN2PfqZ4ihM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZN2PfqZ4ihM.mp4/ZN2PfqZ4ihM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZN2PfqZ4ihM.m3u8/ZN2PfqZ4ihM.m3u8"}, "duration": 708, "id": "ZN2PfqZ4ihM", "title": "Triple integrals 3", "format": "mp4", "description": "Figuring out the boundaries of integration.", "path": "khan/math/multivariable-calculus/double_triple_integrals/triple_integrals/triple-integrals-3/", "slug": "triple-integrals-3", "kind": "Video", "video_id": "ZN2PfqZ4ihM", "keywords": "calculus, triple, integral", "youtube_id": "ZN2PfqZ4ihM", "readable_id": "triple-integrals-3"}, "kbqO0YTUyAY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kbqO0YTUyAY.mp4/kbqO0YTUyAY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kbqO0YTUyAY.mp4/kbqO0YTUyAY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kbqO0YTUyAY.m3u8/kbqO0YTUyAY.m3u8"}, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/why-of-algebra/one-step-equation-intuition/", "duration": 279, "id": "kbqO0YTUyAY", "title": "One-step equation intuition", "format": "mp4", "description": "This equation can be simplified through a single step to solve for the variable. Can you help?", "slug": "one-step-equation-intuition", "kind": "Video", "video_id": "kbqO0YTUyAY", "keywords": "algebra, systems, of, equations", "youtube_id": "kbqO0YTUyAY", "readable_id": "one-step-equation-intuition"}, "PK6HmIe2EAg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PK6HmIe2EAg.mp4/PK6HmIe2EAg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PK6HmIe2EAg.mp4/PK6HmIe2EAg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PK6HmIe2EAg.m3u8/PK6HmIe2EAg.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/overview-metabolism/atp/", "duration": 379, "id": "PK6HmIe2EAg", "title": "ATP: Adenosine triphosphate", "format": "mp4", "description": "", "slug": "atp", "kind": "Video", "video_id": "PK6HmIe2EAg", "keywords": "", "youtube_id": "PK6HmIe2EAg", "readable_id": "atp"}, "8KXWJCmshEE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8KXWJCmshEE.mp4/8KXWJCmshEE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8KXWJCmshEE.mp4/8KXWJCmshEE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8KXWJCmshEE.m3u8/8KXWJCmshEE.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/copy-of-balancing-chemical-equations/balancing-chemical-equation-with-substitution/", "duration": 252, "id": "8KXWJCmshEE", "title": "Balancing chemical equation with substitution", "format": "mp4", "description": "", "slug": "balancing-chemical-equation-with-substitution", "kind": "Video", "video_id": "8KXWJCmshEE", "keywords": "", "youtube_id": "8KXWJCmshEE", "readable_id": "balancing-chemical-equation-with-substitution"}, "rOftmuhGLjY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rOftmuhGLjY.mp4/rOftmuhGLjY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rOftmuhGLjY.mp4/rOftmuhGLjY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rOftmuhGLjY.m3u8/rOftmuhGLjY.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivative-properties/derivative-properties-example/", "duration": 540, "id": "rOftmuhGLjY", "title": "Using derivative properties", "format": "mp4", "description": "", "slug": "derivative-properties-example", "kind": "Video", "video_id": "rOftmuhGLjY", "keywords": "", "youtube_id": "rOftmuhGLjY", "readable_id": "derivative-properties-example"}, "UJxgcVaNTqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UJxgcVaNTqY.mp4/UJxgcVaNTqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UJxgcVaNTqY.mp4/UJxgcVaNTqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UJxgcVaNTqY.m3u8/UJxgcVaNTqY.m3u8"}, "duration": 833, "id": "UJxgcVaNTqY", "title": "Defining a plane in R3 with a point and normal vector", "format": "mp4", "description": "Determining the equation for a plane in R3 using a point on the plane and a normal vector", "path": "khan/math/linear-algebra/vectors_and_spaces/dot_cross_products/defining-a-plane-in-r3-with-a-point-and-normal-vector/", "slug": "defining-a-plane-in-r3-with-a-point-and-normal-vector", "kind": "Video", "video_id": "UJxgcVaNTqY", "keywords": "normal, plane, dot, product, vector", "youtube_id": "UJxgcVaNTqY", "readable_id": "defining-a-plane-in-r3-with-a-point-and-normal-vector"}, "23GcWeVJMTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/23GcWeVJMTQ.mp4/23GcWeVJMTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/23GcWeVJMTQ.mp4/23GcWeVJMTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/23GcWeVJMTQ.m3u8/23GcWeVJMTQ.m3u8"}, "duration": 165, "id": "23GcWeVJMTQ", "title": "Danny O'Neill - Differentiation in your market", "format": "mp4", "description": "Danny O\u2019Neill, President of The Roasterie, talks about differentiation in your market. Danny goes on to describe how changing your strategy can have its trade-offs, including influencing your company\u2019s value and mission.\u00a0", "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/danny-oneill/kauffman-danny-oneill4/", "slug": "kauffman-danny-oneill4", "kind": "Video", "video_id": "23GcWeVJMTQ", "keywords": "", "youtube_id": "23GcWeVJMTQ", "readable_id": "kauffman-danny-oneill4"}, "ni0TL4pXG5w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ni0TL4pXG5w.mp4/ni0TL4pXG5w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ni0TL4pXG5w.mp4/ni0TL4pXG5w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ni0TL4pXG5w.m3u8/ni0TL4pXG5w.m3u8"}, "duration": 355, "id": "ni0TL4pXG5w", "title": "Marginal revenue below average total cost", "format": "mp4", "description": "Why it is rational to produce at a loss", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/average-costs-margin-rev/marginal-revenue-below-average-total-cost/", "slug": "marginal-revenue-below-average-total-cost", "kind": "Video", "video_id": "ni0TL4pXG5w", "keywords": "microeconomics, marginal, revenue, cost", "youtube_id": "ni0TL4pXG5w", "readable_id": "marginal-revenue-below-average-total-cost"}, "HlXAeOnU520": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HlXAeOnU520.mp4/HlXAeOnU520.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HlXAeOnU520.mp4/HlXAeOnU520.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HlXAeOnU520.m3u8/HlXAeOnU520.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/ethnocentrism-and-cultural-relativism-in-group-and-out-group/", "duration": 523, "id": "HlXAeOnU520", "title": "Ethnocentrism and cultural relativism in group and out group", "format": "mp4", "description": "", "slug": "ethnocentrism-and-cultural-relativism-in-group-and-out-group", "kind": "Video", "video_id": "HlXAeOnU520", "keywords": "", "youtube_id": "HlXAeOnU520", "readable_id": "ethnocentrism-and-cultural-relativism-in-group-and-out-group"}, "qxOEz9aPZNY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/qxOEz9aPZNY.mp4/qxOEz9aPZNY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/qxOEz9aPZNY.mp4/qxOEz9aPZNY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/qxOEz9aPZNY.m3u8/qxOEz9aPZNY.m3u8"}, "path": "khan/science/biology/her/evolution-and-natural-selection/intelligent-design-and-evolution/", "duration": 695, "id": "qxOEz9aPZNY", "title": "Intelligent design and evolution", "format": "mp4", "description": "The argument that evolution speaks to being the most \"intelligent design\"", "slug": "intelligent-design-and-evolution", "kind": "Video", "video_id": "qxOEz9aPZNY", "keywords": "evolution, natural, selection, intelligent, design", "youtube_id": "qxOEz9aPZNY", "readable_id": "intelligent-design-and-evolution"}, "UEPs-GA2s40": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UEPs-GA2s40.mp4/UEPs-GA2s40.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UEPs-GA2s40.mp4/UEPs-GA2s40.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UEPs-GA2s40.m3u8/UEPs-GA2s40.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/electron-configurations-for-the-second-period/", "duration": 732, "id": "UEPs-GA2s40", "title": "Electron configurations for the second period", "format": "mp4", "description": "", "slug": "electron-configurations-for-the-second-period", "kind": "Video", "video_id": "UEPs-GA2s40", "keywords": "", "youtube_id": "UEPs-GA2s40", "readable_id": "electron-configurations-for-the-second-period"}, "2Vv9BhnE0SQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2Vv9BhnE0SQ.mp4/2Vv9BhnE0SQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2Vv9BhnE0SQ.mp4/2Vv9BhnE0SQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2Vv9BhnE0SQ.m3u8/2Vv9BhnE0SQ.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/paul-c-zanne-the-red-rock-c-1895/", "duration": 231, "id": "2Vv9BhnE0SQ", "title": "C\u00e9zanne, The Red Rock", "format": "mp4", "description": "Paul C\u00e9zanne, The Red Rock, c. 1895, oil on canvas, 91 x 66 cm (Mus\u00e9e de l'Orangerie, Paris)", "slug": "paul-c-zanne-the-red-rock-c-1895", "kind": "Video", "video_id": "2Vv9BhnE0SQ", "keywords": "Cezanne, Red Rock, GAP, Bibemus, Rock, le rocher rouge, l'Orangerie, Google Art Project, Smarthistory, Khan Academy, Paris, 1895, French, Painting, Post-Impressionism, Abstraction, OER, art history, Provence", "youtube_id": "2Vv9BhnE0SQ", "readable_id": "paul-c-zanne-the-red-rock-c-1895"}, "4WOjZ9lQdHE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4WOjZ9lQdHE.mp4/4WOjZ9lQdHE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4WOjZ9lQdHE.mp4/4WOjZ9lQdHE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4WOjZ9lQdHE.m3u8/4WOjZ9lQdHE.m3u8"}, "duration": 758, "id": "4WOjZ9lQdHE", "title": "GMAT: Math 41", "format": "mp4", "description": "201-204, pgs. 179-180", "path": "khan/test-prep/gmat/problem-solving/gmat-math-41/", "slug": "gmat-math-41", "kind": "Video", "video_id": "4WOjZ9lQdHE", "keywords": "gmat, math, problem, solving", "youtube_id": "4WOjZ9lQdHE", "readable_id": "gmat-math-41"}, "hqynp3DH9NU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hqynp3DH9NU.mp4/hqynp3DH9NU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hqynp3DH9NU.mp4/hqynp3DH9NU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hqynp3DH9NU.m3u8/hqynp3DH9NU.m3u8"}, "duration": 154, "id": "hqynp3DH9NU", "title": "L\u00e9on Bakst, \"Costume design for the ballet The Firebird\"", "format": "mp4", "description": "To learn about other great moments in modern art, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art. ", "path": "khan/humanities/becoming-modern/symbolism/moma-costume-design-ballet-the-firebird/", "slug": "moma-costume-design-ballet-the-firebird", "kind": "Video", "video_id": "hqynp3DH9NU", "keywords": "", "youtube_id": "hqynp3DH9NU", "readable_id": "moma-costume-design-ballet-the-firebird"}, "E1tA9-ypx0g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E1tA9-ypx0g.mp4/E1tA9-ypx0g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E1tA9-ypx0g.mp4/E1tA9-ypx0g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E1tA9-ypx0g.m3u8/E1tA9-ypx0g.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/vincent-van-gogh-the-bedroom-1889/", "duration": 284, "id": "E1tA9-ypx0g", "title": "Van Gogh, The Bedroom", "format": "mp4", "description": "Vincent van Gogh, The Bedroom, 1889, oil on canvas, 29 x 36-5/8 inches / 73.6 x 92.3 cm (Art Institute of Chicago)", "slug": "vincent-van-gogh-the-bedroom-1889", "kind": "Video", "video_id": "E1tA9-ypx0g", "keywords": "Vincent van Gogh, van Gogh, Bedroom, 1889, Art Institute of Chicago, Art, Chicago, Post-Impressionism, painting, French, Dutch, Arles, Interior, Theo, art history, Google Art Project, Khan Academy, Smarthistory, OER, 19th Century", "youtube_id": "E1tA9-ypx0g", "readable_id": "vincent-van-gogh-the-bedroom-1889"}, "_QKR8I5VE-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_QKR8I5VE-w.mp4/_QKR8I5VE-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_QKR8I5VE-w.mp4/_QKR8I5VE-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_QKR8I5VE-w.m3u8/_QKR8I5VE-w.m3u8"}, "path": "khan/math/basic-geo/basic-geo-coordinate-plane/copy-of-cc-6th-coordinate-plane/coordinate-plane-word-problem-example/", "duration": 126, "id": "_QKR8I5VE-w", "title": "Coordinate plane: graphing points word problem", "format": "mp4", "description": "Naomi needs some help counting the number of blocks she walks from home to school. We'll use the coordinate plane to graph it out first. Let's go.", "slug": "coordinate-plane-word-problem-example", "kind": "Video", "video_id": "_QKR8I5VE-w", "keywords": "", "youtube_id": "_QKR8I5VE-w", "readable_id": "coordinate-plane-word-problem-example"}, "0w9R_foNLrg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0w9R_foNLrg.mp4/0w9R_foNLrg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0w9R_foNLrg.mp4/0w9R_foNLrg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0w9R_foNLrg.m3u8/0w9R_foNLrg.m3u8"}, "duration": 538, "id": "0w9R_foNLrg", "title": "A universe smaller than the observable", "format": "mp4", "description": "A Universe Smaller than the Observable", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic/a-universe-smaller-than-the-observable/", "slug": "a-universe-smaller-than-the-observable", "kind": "Video", "video_id": "0w9R_foNLrg", "keywords": "Universe, Smaller, than, the, Observable, Cosmology, Astronomy", "youtube_id": "0w9R_foNLrg", "readable_id": "a-universe-smaller-than-the-observable"}, "3qwqSsLPb5Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3qwqSsLPb5Y.mp4/3qwqSsLPb5Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3qwqSsLPb5Y.mp4/3qwqSsLPb5Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3qwqSsLPb5Y.m3u8/3qwqSsLPb5Y.m3u8"}, "duration": 280, "id": "3qwqSsLPb5Y", "title": "Amrita Sher-Gil", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWith a Hungarian mother, Sikh father, and an international education spanning Budapest and Paris, artist Amrita Sher-Gil (1913-1941) has been called India's Frida Kahlo. Sher-Gil was just 28 when she died but was already recognised as one of India's most important artists. In this film her nephew Vivan Sundaram, an artist in his own right, talks about her legacy and the international scope of her influences.", "path": "amrita-sher-gil/", "slug": "amrita-sher-gil", "kind": "Video", "video_id": "3qwqSsLPb5Y", "keywords": "Tate", "youtube_id": "3qwqSsLPb5Y", "readable_id": "amrita-sher-gil"}, "d8-LO6FCna0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d8-LO6FCna0.mp4/d8-LO6FCna0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d8-LO6FCna0.mp4/d8-LO6FCna0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d8-LO6FCna0.m3u8/d8-LO6FCna0.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/fundamental-theorem-of-algebra/fundamental-theorem-of-algebra-intro/", "duration": 334, "id": "d8-LO6FCna0", "title": "Fundamental theorem of algebra", "format": "mp4", "description": "", "slug": "fundamental-theorem-of-algebra-intro", "kind": "Video", "video_id": "d8-LO6FCna0", "keywords": "", "youtube_id": "d8-LO6FCna0", "readable_id": "fundamental-theorem-of-algebra-intro"}, "KvMyZY9upuA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KvMyZY9upuA.mp4/KvMyZY9upuA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KvMyZY9upuA.mp4/KvMyZY9upuA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KvMyZY9upuA.m3u8/KvMyZY9upuA.m3u8"}, "duration": 188, "id": "KvMyZY9upuA", "title": "Difference of functions", "format": "mp4", "description": "Difference of Functions", "path": "khan/math/algebra2/functions_and_graphs/function_expressions/difference-of-functions/", "slug": "difference-of-functions", "kind": "Video", "video_id": "KvMyZY9upuA", "keywords": "u17_l3_t1_we2, Difference, of, Functions", "youtube_id": "KvMyZY9upuA", "readable_id": "difference-of-functions"}, "JAdNNJynWM4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JAdNNJynWM4.mp4/JAdNNJynWM4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JAdNNJynWM4.mp4/JAdNNJynWM4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JAdNNJynWM4.m3u8/JAdNNJynWM4.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial-remainder-theorem-tutorial/polynomial-remainder-theorem-to-test-factor/", "duration": 206, "id": "JAdNNJynWM4", "title": "Polynomial remainder theorem to test factor", "format": "mp4", "description": "", "slug": "polynomial-remainder-theorem-to-test-factor", "kind": "Video", "video_id": "JAdNNJynWM4", "keywords": "", "youtube_id": "JAdNNJynWM4", "readable_id": "polynomial-remainder-theorem-to-test-factor"}, "OoQ16YCYksw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OoQ16YCYksw.mp4/OoQ16YCYksw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OoQ16YCYksw.mp4/OoQ16YCYksw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OoQ16YCYksw.m3u8/OoQ16YCYksw.m3u8"}, "path": "khan/computing/computer-science/cryptography/random-algorithms-probability/fermat-s-little-theorem-visualization/", "duration": 366, "id": "OoQ16YCYksw", "title": "Fermat's little theorem", "format": "mp4", "description": "Introduction to a key result in elementary number theory using a visualization with beads", "slug": "fermat-s-little-theorem-visualization", "kind": "Video", "video_id": "OoQ16YCYksw", "keywords": "fermat's little theorem", "youtube_id": "OoQ16YCYksw", "readable_id": "fermat-s-little-theorem-visualization"}, "9iaYNaENVH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9iaYNaENVH4.mp4/9iaYNaENVH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9iaYNaENVH4.mp4/9iaYNaENVH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9iaYNaENVH4.m3u8/9iaYNaENVH4.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/stokes-theorem-intuition/", "duration": 732, "id": "9iaYNaENVH4", "title": "Stokes' theorem intuition", "format": "mp4", "description": "Conceptual understanding of why the curl of a vector field along a surface would relate to the line integral around the surface's boundary", "slug": "stokes-theorem-intuition", "kind": "Video", "video_id": "9iaYNaENVH4", "keywords": "calculus, vector, stokes, theorem", "youtube_id": "9iaYNaENVH4", "readable_id": "stokes-theorem-intuition"}, "-gRNRBCG3Ow": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-gRNRBCG3Ow.mp4/-gRNRBCG3Ow.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-gRNRBCG3Ow.mp4/-gRNRBCG3Ow.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-gRNRBCG3Ow.m3u8/-gRNRBCG3Ow.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/polynomial-approximation-of-functions-part-6/", "duration": 599, "id": "-gRNRBCG3Ow", "title": "Polynomial approximation of functions (part 6)", "format": "mp4", "description": "A pattern emerges!", "slug": "polynomial-approximation-of-functions-part-6", "kind": "Video", "video_id": "-gRNRBCG3Ow", "keywords": "religion, calculus, universe, order, cos, sin, euler, mathematics, math", "youtube_id": "-gRNRBCG3Ow", "readable_id": "polynomial-approximation-of-functions-part-6"}, "WFnyLmL9t2I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WFnyLmL9t2I.mp4/WFnyLmL9t2I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WFnyLmL9t2I.mp4/WFnyLmL9t2I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WFnyLmL9t2I.m3u8/WFnyLmL9t2I.m3u8"}, "duration": 264, "id": "WFnyLmL9t2I", "title": "States of consciousness", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/processing-the-environment/sleep-and-consciousness/sleep-and-consciousness/", "slug": "sleep-and-consciousness", "kind": "Video", "video_id": "WFnyLmL9t2I", "keywords": "", "youtube_id": "WFnyLmL9t2I", "readable_id": "sleep-and-consciousness"}, "0k0iKKF2-Do": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0k0iKKF2-Do.mp4/0k0iKKF2-Do.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0k0iKKF2-Do.mp4/0k0iKKF2-Do.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0k0iKKF2-Do.m3u8/0k0iKKF2-Do.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-heart-valve-diseases/mitral-stenosis/", "duration": 551, "id": "0k0iKKF2-Do", "title": "Mitral stenosis", "format": "mp4", "description": "", "slug": "mitral-stenosis", "kind": "Video", "video_id": "0k0iKKF2-Do", "keywords": "", "youtube_id": "0k0iKKF2-Do", "readable_id": "mitral-stenosis"}, "cFbMqzDSVVg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cFbMqzDSVVg.mp4/cFbMqzDSVVg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cFbMqzDSVVg.mp4/cFbMqzDSVVg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cFbMqzDSVVg.m3u8/cFbMqzDSVVg.m3u8"}, "duration": 781, "id": "cFbMqzDSVVg", "title": "Imperialism", "format": "mp4", "description": "In which John Green teaches you about European Imperialism in the 19th century. European powers started to create colonial empires way back in the 16th century, but businesses really took off in the 19th century, especially in Asia and Africa. During the 1800s, European powers carved out spheres of influence in China, India, and pretty much all of Africa. While all of the major (and some minor) powers in Europe participated in this new imperialism, England was by far the most dominant, once able to claim that the \"sun never set on the British Empire.\" Also, they went to war for the right to continue to sell opium to the people of China. Twice. John will teach you how these empires managed to leverage the advances of the Industrial Revolution to build vast, wealth-generating empires. As it turns out, improved medicine, steam engines, and better guns were crucial in the 19th century conquests. Also, the willingness to exploit and abuse the people and resources of so-called \"primitive\" nations was very helpful in the whole enterprise.\u00a0", "path": "khan/humanities/history/crashcourse-worldhistory/nationalism-imperialism-globalization-2/crash-course-world-history-35/", "slug": "crash-course-world-history-35", "kind": "Video", "video_id": "cFbMqzDSVVg", "keywords": "crash course", "youtube_id": "cFbMqzDSVVg", "readable_id": "crash-course-world-history-35"}, "xmjy-0TxgI8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xmjy-0TxgI8.mp4/xmjy-0TxgI8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xmjy-0TxgI8.mp4/xmjy-0TxgI8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xmjy-0TxgI8.m3u8/xmjy-0TxgI8.m3u8"}, "duration": 553, "id": "xmjy-0TxgI8", "title": "Graphing natural logarithm function", "format": "mp4", "description": "Graphing Natural Logarithm Function", "path": "khan/math/algebra2/logarithms-tutorial/natural_logarithm/graphing-natural-logarithm-function/", "slug": "graphing-natural-logarithm-function", "kind": "Video", "video_id": "xmjy-0TxgI8", "keywords": "u18_l3_t1_we2, Graphing, Natural, Logarithm, Function", "youtube_id": "xmjy-0TxgI8", "readable_id": "graphing-natural-logarithm-function"}, "nFmH5iiPuDY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nFmH5iiPuDY.mp4/nFmH5iiPuDY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nFmH5iiPuDY.mp4/nFmH5iiPuDY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nFmH5iiPuDY.m3u8/nFmH5iiPuDY.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/rope-cutting/", "duration": 117, "id": "nFmH5iiPuDY", "title": "10 Rope cutting", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "rope-cutting", "kind": "Video", "video_id": "nFmH5iiPuDY", "keywords": "", "youtube_id": "nFmH5iiPuDY", "readable_id": "rope-cutting"}, "xgDuzj51tAc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xgDuzj51tAc.mp4/xgDuzj51tAc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xgDuzj51tAc.mp4/xgDuzj51tAc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xgDuzj51tAc.m3u8/xgDuzj51tAc.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/carboxylic-acids/carboxylic-acid-nomenclature-and-properties/", "duration": 532, "id": "xgDuzj51tAc", "title": "Carboxylic acid nomenclature and properties", "format": "mp4", "description": "Naming carboxylic acids and analyzing their physical properties", "slug": "carboxylic-acid-nomenclature-and-properties", "kind": "Video", "video_id": "xgDuzj51tAc", "keywords": "", "youtube_id": "xgDuzj51tAc", "readable_id": "carboxylic-acid-nomenclature-and-properties"}, "uhXLW4bU-pI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uhXLW4bU-pI.mp4/uhXLW4bU-pI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uhXLW4bU-pI.mp4/uhXLW4bU-pI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uhXLW4bU-pI.m3u8/uhXLW4bU-pI.m3u8"}, "path": "khan/humanities/history/1600s-1800s/declaration-of-independence/all-men-are-created-equal/", "duration": 434, "id": "uhXLW4bU-pI", "title": "All men are created equal", "format": "mp4", "description": "In this video, Aspen Institute President and CEO Walter Isaacson\u00a0talks to Sal about \u00a0the Declaration of Independence.", "slug": "all-men-are-created-equal", "kind": "Video", "video_id": "uhXLW4bU-pI", "keywords": "", "youtube_id": "uhXLW4bU-pI", "readable_id": "all-men-are-created-equal"}, "ST1UWnenOo0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ST1UWnenOo0.mp4/ST1UWnenOo0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ST1UWnenOo0.mp4/ST1UWnenOo0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ST1UWnenOo0.m3u8/ST1UWnenOo0.m3u8"}, "duration": 521, "id": "ST1UWnenOo0", "title": "Overview of metabolism: Anabolism and catabolism", "format": "mp4", "description": "What is the purpose of metabolism? Learn about the two major divisions in metabolism: anabolism (building up) and catabolism (breaking down).\u00a0 By Jasmine Rana.", "path": "khan/test-prep/mcat/biomolecules/hormonal-regulation/overview-of-metabolism-anabolism-and-catabolism/", "slug": "overview-of-metabolism-anabolism-and-catabolism", "kind": "Video", "video_id": "ST1UWnenOo0", "keywords": "", "youtube_id": "ST1UWnenOo0", "readable_id": "overview-of-metabolism-anabolism-and-catabolism"}, "jyLRpr2P0MQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jyLRpr2P0MQ.mp4/jyLRpr2P0MQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jyLRpr2P0MQ.mp4/jyLRpr2P0MQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jyLRpr2P0MQ.m3u8/jyLRpr2P0MQ.m3u8"}, "path": "khan/math/geometry/cc-geometry-circles/circles/circles-radius-diameter-and-circumference/", "duration": 665, "id": "jyLRpr2P0MQ", "title": "Circles: radius, diameter, circumference and Pi", "format": "mp4", "description": "A circle is at the foundation of geometry and how its parts relate to each other is both completely logical and a wonder.", "slug": "circles-radius-diameter-and-circumference", "kind": "Video", "video_id": "jyLRpr2P0MQ", "keywords": "radius, diameter, circumference, circle, CC_7_G_4", "youtube_id": "jyLRpr2P0MQ", "readable_id": "circles-radius-diameter-and-circumference"}, "5xSEZszGDtI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5xSEZszGDtI.mp4/5xSEZszGDtI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5xSEZszGDtI.mp4/5xSEZszGDtI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5xSEZszGDtI.m3u8/5xSEZszGDtI.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/antiarrhythmics/", "duration": 728, "id": "5xSEZszGDtI", "title": "Antiarrhythmics", "format": "mp4", "description": "", "slug": "antiarrhythmics", "kind": "Video", "video_id": "5xSEZszGDtI", "keywords": "", "youtube_id": "5xSEZszGDtI", "readable_id": "antiarrhythmics"}, "s9HPNwXd9fk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/s9HPNwXd9fk.mp4/s9HPNwXd9fk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/s9HPNwXd9fk.mp4/s9HPNwXd9fk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/s9HPNwXd9fk.m3u8/s9HPNwXd9fk.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/cell-division/chromosomes-chromatids-chromatin-etc/", "duration": 1103, "id": "s9HPNwXd9fk", "title": "Chromosomes, chromatids, chromatin, etc.", "format": "mp4", "description": "The vocabulary of DNA: chromosomes, chromatids, chromatin, transcription, translation, and replication", "slug": "chromosomes-chromatids-chromatin-etc", "kind": "Video", "video_id": "s9HPNwXd9fk", "keywords": "dna, evolution, biology, chromosomes", "youtube_id": "s9HPNwXd9fk", "readable_id": "chromosomes-chromatids-chromatin-etc"}, "LplRIAd66pc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LplRIAd66pc.mp4/LplRIAd66pc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LplRIAd66pc.mp4/LplRIAd66pc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LplRIAd66pc.m3u8/LplRIAd66pc.m3u8"}, "duration": 536, "id": "LplRIAd66pc", "title": "Plotting maxima, minima and midline intersections of trig function", "format": "mp4", "description": "", "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/plotting-trig-features/", "slug": "plotting-trig-features", "kind": "Video", "video_id": "LplRIAd66pc", "keywords": "", "youtube_id": "LplRIAd66pc", "readable_id": "plotting-trig-features"}, "yf6YvGb83H4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yf6YvGb83H4.mp4/yf6YvGb83H4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yf6YvGb83H4.mp4/yf6YvGb83H4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yf6YvGb83H4.m3u8/yf6YvGb83H4.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/plate-tectonics-important/bhp-solar-system-earth-crashcourse/", "duration": 841, "id": "yf6YvGb83H4", "title": "Crash Course Big History: The Solar System & the Earth", "format": "mp4", "description": "Emily Graslie joins John and Hank Green to discuss the formation of our Sun, Solar System, and Earth - and how it's all slightly more interesting than leftover crumbs and clam chowder.\u00a0", "slug": "bhp-solar-system-earth-crashcourse", "kind": "Video", "video_id": "yf6YvGb83H4", "keywords": "", "youtube_id": "yf6YvGb83H4", "readable_id": "bhp-solar-system-earth-crashcourse"}, "BBFUTbKx3qY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BBFUTbKx3qY.mp4/BBFUTbKx3qY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BBFUTbKx3qY.mp4/BBFUTbKx3qY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BBFUTbKx3qY.m3u8/BBFUTbKx3qY.m3u8"}, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/cistercian-abbey-of-fontenay-unesconhk/", "duration": 164, "id": "BBFUTbKx3qY", "title": "Cistercian Abbey of Fontenay (UNESCO/NHK)", "format": "mp4", "description": "This stark Burgundian monastery was founded by St Bernard in 1119. With its church, cloister, refectory, sleeping quarters, bakery and ironworks, it is an excellent illustration of the ideal of self-sufficiency as practised by the earliest communities of Cistercian monks. Source: UNESCO TV / \u00a9 NHK Nippon Hoso Kyokai URL", "slug": "cistercian-abbey-of-fontenay-unesconhk", "kind": "Video", "video_id": "BBFUTbKx3qY", "keywords": "", "youtube_id": "BBFUTbKx3qY", "readable_id": "cistercian-abbey-of-fontenay-unesconhk"}, "OC0oM6_O8QM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OC0oM6_O8QM.mp4/OC0oM6_O8QM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OC0oM6_O8QM.mp4/OC0oM6_O8QM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OC0oM6_O8QM.m3u8/OC0oM6_O8QM.m3u8"}, "duration": 119, "id": "OC0oM6_O8QM", "title": "Blue gangster demon", "format": "mp4", "description": "Benjamin and Bryn talk about demons in Cenni's Coronation of the Virgin and Saints. This is\u00a0from a\u00a0tour at the Getty Center: The Supernatural in Art. Love art? Follow us on Google+ to stay in touch.", "path": "blue-gangster-demon/", "slug": "blue-gangster-demon", "kind": "Video", "video_id": "OC0oM6_O8QM", "keywords": "", "youtube_id": "OC0oM6_O8QM", "readable_id": "blue-gangster-demon"}, "hAy_bavEVCQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hAy_bavEVCQ.mp4/hAy_bavEVCQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hAy_bavEVCQ.mp4/hAy_bavEVCQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hAy_bavEVCQ.m3u8/hAy_bavEVCQ.m3u8"}, "duration": 215, "id": "hAy_bavEVCQ", "title": "Another take on the rate problem", "format": "mp4", "description": "Another Take on the Rate Problem", "path": "khan/math/algebra/ratio-proportion-topic/advanced-ratios/another-take-on-the-rate-problem/", "slug": "another-take-on-the-rate-problem", "kind": "Video", "video_id": "hAy_bavEVCQ", "keywords": "u15_l2_t1_we3, Another, Take, on, the, Rate, Problem, CC_6_RP_3, CC_6_RP_3_b", "youtube_id": "hAy_bavEVCQ", "readable_id": "another-take-on-the-rate-problem"}, "pD2-H15ucNE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pD2-H15ucNE.mp4/pD2-H15ucNE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pD2-H15ucNE.mp4/pD2-H15ucNE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pD2-H15ucNE.m3u8/pD2-H15ucNE.m3u8"}, "duration": 163, "id": "pD2-H15ucNE", "title": "Multiplying monomials by polynomials", "format": "mp4", "description": "Multiplying Monomials by Polynomials", "path": "khan/math/algebra/multiplying-factoring-expression/multiplying_polynomials/multiplying-monomials-by-polynomials/", "slug": "multiplying-monomials-by-polynomials", "kind": "Video", "video_id": "pD2-H15ucNE", "keywords": "u11_l2_t3_we2, Multiplying, Monomials, by, Polynomials, CC_7_EE_1, CC_39336_A-APR_1", "youtube_id": "pD2-H15ucNE", "readable_id": "multiplying-monomials-by-polynomials"}, "gHpl5UcgRkI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gHpl5UcgRkI.mp4/gHpl5UcgRkI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gHpl5UcgRkI.mp4/gHpl5UcgRkI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gHpl5UcgRkI.m3u8/gHpl5UcgRkI.m3u8"}, "path": "khan/math/probability/random-variables-topic/expected-value/empirical-data-expected-value/", "duration": 592, "id": "gHpl5UcgRkI", "title": "Getting data from expected value", "format": "mp4", "description": "", "slug": "empirical-data-expected-value", "kind": "Video", "video_id": "gHpl5UcgRkI", "keywords": "", "youtube_id": "gHpl5UcgRkI", "readable_id": "empirical-data-expected-value"}, "EUGCai8y2Uw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EUGCai8y2Uw.mp4/EUGCai8y2Uw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EUGCai8y2Uw.mp4/EUGCai8y2Uw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EUGCai8y2Uw.m3u8/EUGCai8y2Uw.m3u8"}, "duration": 684, "id": "EUGCai8y2Uw", "title": "Ancient Mesopotamia", "format": "mp4", "description": "In which John presents Mesopotamia, and the early civilizations that arose around the Fertile Crescent. Topics covered include the birth of territorial kingdoms, empires, Neo-Assyrian torture tactics, sacred marriages, ancient labor practices, the world's first law code, and the great failed romance of John's undergrad years.", "path": "khan/humanities/history/crashcourse-worldhistory/what-happens-when-you-stay-put-2/crash-course-world-history-03/", "slug": "crash-course-world-history-03", "kind": "Video", "video_id": "EUGCai8y2Uw", "keywords": "crash course", "youtube_id": "EUGCai8y2Uw", "readable_id": "crash-course-world-history-03"}, "vcwvzUVLPw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vcwvzUVLPw0.mp4/vcwvzUVLPw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vcwvzUVLPw0.mp4/vcwvzUVLPw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vcwvzUVLPw0.m3u8/vcwvzUVLPw0.m3u8"}, "duration": 765, "id": "vcwvzUVLPw0", "title": "Vector valued function derivative example", "format": "mp4", "description": "Concrete example of the derivative of a vector valued function to better understand what it means", "path": "khan/math/multivariable-calculus/line_integrals_topic/position_vector_functions/vector-valued-function-derivative-example/", "slug": "vector-valued-function-derivative-example", "kind": "Video", "video_id": "vcwvzUVLPw0", "keywords": "vector, function, derivative, calculus", "youtube_id": "vcwvzUVLPw0", "readable_id": "vector-valued-function-derivative-example"}, "Jkr4FSrNEVY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jkr4FSrNEVY.mp4/Jkr4FSrNEVY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jkr4FSrNEVY.mp4/Jkr4FSrNEVY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jkr4FSrNEVY.m3u8/Jkr4FSrNEVY.m3u8"}, "duration": 761, "id": "Jkr4FSrNEVY", "title": "Poisson process 2", "format": "mp4", "description": "More of the derivation of the Poisson Distribution.", "path": "khan/math/probability/random-variables-topic/poisson_process/poisson-process-2/", "slug": "poisson-process-2", "kind": "Video", "video_id": "Jkr4FSrNEVY", "keywords": "probability, poisson, process, distribution", "youtube_id": "Jkr4FSrNEVY", "readable_id": "poisson-process-2"}, "rRFphdMIIvI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rRFphdMIIvI.mp4/rRFphdMIIvI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rRFphdMIIvI.mp4/rRFphdMIIvI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rRFphdMIIvI.m3u8/rRFphdMIIvI.m3u8"}, "path": "khan/partner-content/big-history-project/solar-system-and-earth/knowing-solar-system-earth/bhp-intro-to-geology/", "duration": 404, "id": "rRFphdMIIvI", "title": "Introduction to Geology", "format": "mp4", "description": "Walter Alvarez introduces geology and discusses how the physical features of Earth can tell us about its history.", "slug": "bhp-intro-to-geology", "kind": "Video", "video_id": "rRFphdMIIvI", "keywords": "", "youtube_id": "rRFphdMIIvI", "readable_id": "bhp-intro-to-geology"}, "-fCVxTTAtFQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-fCVxTTAtFQ.mp4/-fCVxTTAtFQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-fCVxTTAtFQ.mp4/-fCVxTTAtFQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-fCVxTTAtFQ.m3u8/-fCVxTTAtFQ.m3u8"}, "duration": 491, "id": "-fCVxTTAtFQ", "title": "Monte Carlo simulation to answer LeBron's question", "format": "mp4", "description": "When down 3 with 30 seconds left, is it better to take a hard 3 or an easy 2 and try to get another possession? Simulation at: http://www.khanacademy.org/cs/basketball-decisions/1024155511", "path": "khan/partner-content/lebron-asks-subject/lebron-asks/monte-carlo-simulation-to-answer-lebron-s-question/", "slug": "monte-carlo-simulation-to-answer-lebron-s-question", "kind": "Video", "video_id": "-fCVxTTAtFQ", "keywords": "marquee", "youtube_id": "-fCVxTTAtFQ", "readable_id": "monte-carlo-simulation-to-answer-lebron-s-question"}, "-T0OKK-R3lA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-T0OKK-R3lA.mp4/-T0OKK-R3lA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-T0OKK-R3lA.mp4/-T0OKK-R3lA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-T0OKK-R3lA.m3u8/-T0OKK-R3lA.m3u8"}, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/complex-number-subtraction/", "duration": 231, "id": "-T0OKK-R3lA", "title": "Subtracting complex numbers", "format": "mp4", "description": "", "slug": "complex-number-subtraction", "kind": "Video", "video_id": "-T0OKK-R3lA", "keywords": "", "youtube_id": "-T0OKK-R3lA", "readable_id": "complex-number-subtraction"}, "PQiXRrT_14o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PQiXRrT_14o.mp4/PQiXRrT_14o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PQiXRrT_14o.mp4/PQiXRrT_14o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PQiXRrT_14o.m3u8/PQiXRrT_14o.m3u8"}, "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/graphing-piecewise-function/", "duration": 270, "id": "PQiXRrT_14o", "title": "Graphing piecewise function", "format": "mp4", "description": "Graphing piecewise function", "slug": "graphing-piecewise-function", "kind": "Video", "video_id": "PQiXRrT_14o", "keywords": "", "youtube_id": "PQiXRrT_14o", "readable_id": "graphing-piecewise-function"}, "cObJ3P6QyWQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cObJ3P6QyWQ.mp4/cObJ3P6QyWQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cObJ3P6QyWQ.mp4/cObJ3P6QyWQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cObJ3P6QyWQ.m3u8/cObJ3P6QyWQ.m3u8"}, "duration": 165, "id": "cObJ3P6QyWQ", "title": "Glassmaking technique: gold glass", "format": "mp4", "description": "Gold glass is made by sealing gold foil between layers of glass. In the 1500s, circular gold glass was found in the walls of ancient Roman tombs (footage from the Corning Museum of Glass). Love art? Follow us on Google+", "path": "glassmaking-technique-gold-glass/", "slug": "glassmaking-technique-gold-glass", "kind": "Video", "video_id": "cObJ3P6QyWQ", "keywords": "", "youtube_id": "cObJ3P6QyWQ", "readable_id": "glassmaking-technique-gold-glass"}, "g0_bWq24Np0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g0_bWq24Np0.mp4/g0_bWq24Np0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g0_bWq24Np0.mp4/g0_bWq24Np0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g0_bWq24Np0.m3u8/g0_bWq24Np0.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/alpha-carbon-chemistry/mixed-crossed-aldol-condensation-using-a-lithium-enolate/", "duration": 541, "id": "g0_bWq24Np0", "title": "Mixed (crossed) aldol condensation using a lithium enolate", "format": "mp4", "description": "How to direct a mixed aldol condensation using a lithium enolate", "slug": "mixed-crossed-aldol-condensation-using-a-lithium-enolate", "kind": "Video", "video_id": "g0_bWq24Np0", "keywords": "", "youtube_id": "g0_bWq24Np0", "readable_id": "mixed-crossed-aldol-condensation-using-a-lithium-enolate"}, "D6yHKOYJiso": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/D6yHKOYJiso.mp4/D6yHKOYJiso.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/D6yHKOYJiso.mp4/D6yHKOYJiso.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/D6yHKOYJiso.m3u8/D6yHKOYJiso.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/least_common_multiple/least-common-multiple-lcm/", "duration": 324, "id": "D6yHKOYJiso", "title": "Least common multiple exercise: 3 numbers", "format": "mp4", "description": "This least common multiple example gives us 3 numbers from which to find the lcm. This is a challenge, but fun. Do it with us!", "slug": "least-common-multiple-lcm", "kind": "Video", "video_id": "D6yHKOYJiso", "keywords": "U02_L3_T1_we6, Least, Common, Multiple, (LCM)", "youtube_id": "D6yHKOYJiso", "readable_id": "least-common-multiple-lcm"}, "4kIKySxUYuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4kIKySxUYuk.mp4/4kIKySxUYuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4kIKySxUYuk.mp4/4kIKySxUYuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4kIKySxUYuk.m3u8/4kIKySxUYuk.m3u8"}, "path": "khan/test-prep/mcat/cells/viruses/virus-structure-and-classification/", "duration": 665, "id": "4kIKySxUYuk", "title": "Virus structure and classification", "format": "mp4", "description": "", "slug": "virus-structure-and-classification", "kind": "Video", "video_id": "4kIKySxUYuk", "keywords": "", "youtube_id": "4kIKySxUYuk", "readable_id": "virus-structure-and-classification"}, "vluaivJqo9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vluaivJqo9w.mp4/vluaivJqo9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vluaivJqo9w.mp4/vluaivJqo9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vluaivJqo9w.m3u8/vluaivJqo9w.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-july-11-2013/", "duration": 124, "id": "vluaivJqo9w", "title": "Trek to mount sharp begins", "format": "mp4", "description": "NASA's Mars rover Curiosity heads on the long journey to the mission's main destination, Mount Sharp.", "slug": "curiosity-rover-report-july-11-2013", "kind": "Video", "video_id": "vluaivJqo9w", "keywords": "", "youtube_id": "vluaivJqo9w", "readable_id": "curiosity-rover-report-july-11-2013"}, "jaJ3NlqK5dA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jaJ3NlqK5dA.mp4/jaJ3NlqK5dA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jaJ3NlqK5dA.mp4/jaJ3NlqK5dA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jaJ3NlqK5dA.m3u8/jaJ3NlqK5dA.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna/semi-conservative-replication/", "duration": 132, "id": "jaJ3NlqK5dA", "title": "Semi conservative replication", "format": "mp4", "description": "", "slug": "semi-conservative-replication", "kind": "Video", "video_id": "jaJ3NlqK5dA", "keywords": "", "youtube_id": "jaJ3NlqK5dA", "readable_id": "semi-conservative-replication"}, "OmLl6pkvV-I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OmLl6pkvV-I.mp4/OmLl6pkvV-I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OmLl6pkvV-I.mp4/OmLl6pkvV-I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OmLl6pkvV-I.m3u8/OmLl6pkvV-I.m3u8"}, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-bar-graphs/reading-bar-graph-examples/", "duration": 177, "id": "OmLl6pkvV-I", "title": "Reading bar graph examples", "format": "mp4", "description": "", "slug": "reading-bar-graph-examples", "kind": "Video", "video_id": "OmLl6pkvV-I", "keywords": "", "youtube_id": "OmLl6pkvV-I", "readable_id": "reading-bar-graph-examples"}, "fZO-JylMFqY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fZO-JylMFqY.mp4/fZO-JylMFqY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fZO-JylMFqY.mp4/fZO-JylMFqY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fZO-JylMFqY.m3u8/fZO-JylMFqY.m3u8"}, "duration": 143, "id": "fZO-JylMFqY", "title": "Comparing linear functions 1", "format": "mp4", "description": "", "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/comparing_linear_functions/comparing-features-of-functions-1/", "slug": "comparing-features-of-functions-1", "kind": "Video", "video_id": "fZO-JylMFqY", "keywords": "", "youtube_id": "fZO-JylMFqY", "readable_id": "comparing-features-of-functions-1"}, "N-7tcTIrers": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/N-7tcTIrers.mp4/N-7tcTIrers.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/N-7tcTIrers.mp4/N-7tcTIrers.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/N-7tcTIrers.m3u8/N-7tcTIrers.m3u8"}, "duration": 551, "id": "N-7tcTIrers", "title": "How I Feel About Logarithms", "format": "mp4", "description": "", "path": "khan/math/recreational-math/vi-hart/vi-cool-stuff/vilog/", "slug": "vilog", "kind": "Video", "video_id": "N-7tcTIrers", "keywords": "", "youtube_id": "N-7tcTIrers", "readable_id": "vilog"}, "RRk5qLd__Ro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RRk5qLd__Ro.mp4/RRk5qLd__Ro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RRk5qLd__Ro.mp4/RRk5qLd__Ro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RRk5qLd__Ro.m3u8/RRk5qLd__Ro.m3u8"}, "duration": 225, "id": "RRk5qLd__Ro", "title": "Borrowing once example 1", "format": "mp4", "description": "", "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/borrowing-once-example-1/", "slug": "borrowing-once-example-1", "kind": "Video", "video_id": "RRk5qLd__Ro", "keywords": "", "youtube_id": "RRk5qLd__Ro", "readable_id": "borrowing-once-example-1"}, "_mWHWJiMKXU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_mWHWJiMKXU.mp4/_mWHWJiMKXU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_mWHWJiMKXU.mp4/_mWHWJiMKXU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_mWHWJiMKXU.m3u8/_mWHWJiMKXU.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/electronegativity-polarity/solubility-of-organic-compounds-redo/", "duration": 741, "id": "_mWHWJiMKXU", "title": "Solubility of organic compounds", "format": "mp4", "description": "How to determine whether or not an organic compound dissolves in water", "slug": "solubility-of-organic-compounds-redo", "kind": "Video", "video_id": "_mWHWJiMKXU", "keywords": "", "youtube_id": "_mWHWJiMKXU", "readable_id": "solubility-of-organic-compounds-redo"}, "8fxilNdEQTo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8fxilNdEQTo.mp4/8fxilNdEQTo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8fxilNdEQTo.mp4/8fxilNdEQTo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8fxilNdEQTo.m3u8/8fxilNdEQTo.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-10-introduction-to-leverage-bad-sound/", "duration": 561, "id": "8fxilNdEQTo", "title": "Banking 10: Introduction to leverage (bad sound)", "format": "mp4", "description": "What leverage is. Why it is is good or bad. Leverage and insolvency.", "slug": "banking-10-introduction-to-leverage-bad-sound", "kind": "Video", "video_id": "8fxilNdEQTo", "keywords": "banking, loans, finance, economics, leverage, insolvent", "youtube_id": "8fxilNdEQTo", "readable_id": "banking-10-introduction-to-leverage-bad-sound"}, "tfjQVtOyoaQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tfjQVtOyoaQ.mp4/tfjQVtOyoaQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tfjQVtOyoaQ.mp4/tfjQVtOyoaQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tfjQVtOyoaQ.m3u8/tfjQVtOyoaQ.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-word-problem-5/", "duration": 231, "id": "tfjQVtOyoaQ", "title": "Multiplying fractions word problem: bike to a friend", "format": "mp4", "description": "You know how long it takes to bike to your friend's house, and you know how fast your can ride. So how far away does your friend live? The answer is one fraction multiplication problem away!", "slug": "multiplying-fractions-word-problem-5", "kind": "Video", "video_id": "tfjQVtOyoaQ", "keywords": "", "youtube_id": "tfjQVtOyoaQ", "readable_id": "multiplying-fractions-word-problem-5"}, "fsTD_jqseBA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fsTD_jqseBA.mp4/fsTD_jqseBA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fsTD_jqseBA.mp4/fsTD_jqseBA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fsTD_jqseBA.m3u8/fsTD_jqseBA.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-sub-intro/addition-introduction/", "duration": 191, "id": "fsTD_jqseBA", "title": "Introduction to addition", "format": "mp4", "description": "Learn what it means to add. The examples used in this video are 1+1 and 2+3.", "slug": "addition-introduction", "kind": "Video", "video_id": "fsTD_jqseBA", "keywords": "", "youtube_id": "fsTD_jqseBA", "readable_id": "addition-introduction"}, "WLGTx6sSIOc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WLGTx6sSIOc.mp4/WLGTx6sSIOc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WLGTx6sSIOc.mp4/WLGTx6sSIOc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WLGTx6sSIOc.m3u8/WLGTx6sSIOc.m3u8"}, "path": "khan/science/organic-chemistry/gen-chem-review/dot-strcutures-jay/dot-structures-ii-multiple-bonds-1/", "duration": 359, "id": "WLGTx6sSIOc", "title": "Dot structures II: Multiple bonds", "format": "mp4", "description": "", "slug": "dot-structures-ii-multiple-bonds-1", "kind": "Video", "video_id": "WLGTx6sSIOc", "keywords": "", "youtube_id": "WLGTx6sSIOc", "readable_id": "dot-structures-ii-multiple-bonds-1"}, "W-R8nn5GQ8U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W-R8nn5GQ8U.mp4/W-R8nn5GQ8U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W-R8nn5GQ8U.mp4/W-R8nn5GQ8U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W-R8nn5GQ8U.m3u8/W-R8nn5GQ8U.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-financial-aid-process-obstacle/", "duration": 93, "id": "W-R8nn5GQ8U", "title": "Student story: Overcoming the financial aid process as an obstacle to college", "format": "mp4", "description": "", "slug": "ss-financial-aid-process-obstacle", "kind": "Video", "video_id": "W-R8nn5GQ8U", "keywords": "", "youtube_id": "W-R8nn5GQ8U", "readable_id": "ss-financial-aid-process-obstacle"}, "Y-xg1zfpkQs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Y-xg1zfpkQs.mp4/Y-xg1zfpkQs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Y-xg1zfpkQs.mp4/Y-xg1zfpkQs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Y-xg1zfpkQs.m3u8/Y-xg1zfpkQs.m3u8"}, "duration": 178, "id": "Y-xg1zfpkQs", "title": "\"Dream Logic\" with Joseph Scheier-Dolberg", "format": "mp4", "description": "Met curator Joseph Scheier-Dolberg on journeying in Shitao\u2019s Returning Home.\n\nThis gemlike work demonstrates both Shitao\u2019s mastery of the album format and his ability to innovate within it. Landscape scenes alternate with tightly cropped floral vignettes, taking the viewer on a rollercoaster ride with each turn of the page. Shitao\u2019s calligraphy, too, changes with each leaf, seeming to mirror the shifts in content and style. The artist created this work after he had abandoned his dream of finding fame in Beijing and returned south to become a professional painter. The journey, which begins in the first leaf with a landscape scene, culminates in leaf five, with a man in a boat\u2014almost certainly Shitao himself\u2014passing through a desolate river landscape, before finding resolution in the final image of a single narcissus.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an educator resource.\n", "path": "dream-logic/", "slug": "dream-logic", "kind": "Video", "video_id": "Y-xg1zfpkQs", "keywords": "book, calm, nature, painting, paper, simplicity, writing, Asia", "youtube_id": "Y-xg1zfpkQs", "readable_id": "dream-logic"}, "q0oSKmC3Mfc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/q0oSKmC3Mfc.mp4/q0oSKmC3Mfc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/q0oSKmC3Mfc.mp4/q0oSKmC3Mfc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/q0oSKmC3Mfc.m3u8/q0oSKmC3Mfc.m3u8"}, "duration": 557, "id": "q0oSKmC3Mfc", "title": "Mortgage-backed securities III", "format": "mp4", "description": "More on mortgage-backed securities", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/mortgage-backed-securities-iii/", "slug": "mortgage-backed-securities-iii", "kind": "Video", "video_id": "q0oSKmC3Mfc", "keywords": "finance, math, economics, Khan, academy", "youtube_id": "q0oSKmC3Mfc", "readable_id": "mortgage-backed-securities-iii"}, "XfR3JSkSkJM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XfR3JSkSkJM.mp4/XfR3JSkSkJM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XfR3JSkSkJM.mp4/XfR3JSkSkJM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XfR3JSkSkJM.m3u8/XfR3JSkSkJM.m3u8"}, "duration": 465, "id": "XfR3JSkSkJM", "title": "Amortization", "format": "mp4", "description": "Introduction to amortization", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing/amortization/", "slug": "amortization", "kind": "Video", "video_id": "XfR3JSkSkJM", "keywords": "depreciation, amortization, accounting, investing", "youtube_id": "XfR3JSkSkJM", "readable_id": "amortization"}, "fQt69_Q2CTw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fQt69_Q2CTw.mp4/fQt69_Q2CTw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fQt69_Q2CTw.mp4/fQt69_Q2CTw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fQt69_Q2CTw.m3u8/fQt69_Q2CTw.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/acceleration-mcat/airbus-a380-take-off-distance/", "duration": 329, "id": "fQt69_Q2CTw", "title": "Airbus A380 take-off distance", "format": "mp4", "description": "How long of a runway does an A380 need?", "slug": "airbus-a380-take-off-distance", "kind": "Video", "video_id": "fQt69_Q2CTw", "keywords": "airbus, physics, airport, runway", "youtube_id": "fQt69_Q2CTw", "readable_id": "airbus-a380-take-off-distance"}, "F5uiFXECnVY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/F5uiFXECnVY.mp4/F5uiFXECnVY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/F5uiFXECnVY.mp4/F5uiFXECnVY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/F5uiFXECnVY.m3u8/F5uiFXECnVY.m3u8"}, "duration": 155, "id": "F5uiFXECnVY", "title": "People smoking less over time scatter plot", "format": "mp4", "description": "", "path": "khan/math/probability/regression/prob-stats-scatter-plots/trends-in-smoking-scatter-plot/", "slug": "trends-in-smoking-scatter-plot", "kind": "Video", "video_id": "F5uiFXECnVY", "keywords": "", "youtube_id": "F5uiFXECnVY", "readable_id": "trends-in-smoking-scatter-plot"}, "Zj-a_9cd5jc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Zj-a_9cd5jc.mp4/Zj-a_9cd5jc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Zj-a_9cd5jc.mp4/Zj-a_9cd5jc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Zj-a_9cd5jc.m3u8/Zj-a_9cd5jc.m3u8"}, "duration": 152, "id": "Zj-a_9cd5jc", "title": "Patterns in sequences 1", "format": "mp4", "description": "Patterns in Sequences 1", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/patterns-in-sequences-1/", "slug": "patterns-in-sequences-1", "kind": "Video", "video_id": "Zj-a_9cd5jc", "keywords": "U03_L1_T1_we1, Patterns, in, Sequences, CC_5_OA_3, CC_39336_F-BF_2", "youtube_id": "Zj-a_9cd5jc", "readable_id": "patterns-in-sequences-1"}, "JYxspCbwZVs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JYxspCbwZVs.mp4/JYxspCbwZVs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JYxspCbwZVs.mp4/JYxspCbwZVs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JYxspCbwZVs.m3u8/JYxspCbwZVs.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/overview-of-social-inequality/", "duration": 237, "id": "JYxspCbwZVs", "title": "Overview of social inequality", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "overview-of-social-inequality", "kind": "Video", "video_id": "JYxspCbwZVs", "keywords": "", "youtube_id": "JYxspCbwZVs", "readable_id": "overview-of-social-inequality"}, "iEpqcdaJNTQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iEpqcdaJNTQ.mp4/iEpqcdaJNTQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iEpqcdaJNTQ.mp4/iEpqcdaJNTQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iEpqcdaJNTQ.m3u8/iEpqcdaJNTQ.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/exact-equations/exact-equations-intuition-1-proofy/", "duration": 594, "id": "iEpqcdaJNTQ", "title": "Exact equations intuition 1 (proofy)", "format": "mp4", "description": "Chain rule using partial derivatives (not a proof; more intuition).", "slug": "exact-equations-intuition-1-proofy", "kind": "Video", "video_id": "iEpqcdaJNTQ", "keywords": "exact, differential, equations", "youtube_id": "iEpqcdaJNTQ", "readable_id": "exact-equations-intuition-1-proofy"}, "lcgNtRCnbug": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lcgNtRCnbug.mp4/lcgNtRCnbug.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lcgNtRCnbug.mp4/lcgNtRCnbug.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lcgNtRCnbug.m3u8/lcgNtRCnbug.m3u8"}, "duration": 233, "id": "lcgNtRCnbug", "title": "An introduction to James Madison by historian Joe Ellis", "format": "mp4", "description": "In this video, historian Joe Ellis and Aspen Institute President and CEO Walter Isaacson discuss James Madison and his involvement in the founding of the United States of America.", "path": "james-madison-intro/", "slug": "james-madison-intro", "kind": "Video", "video_id": "lcgNtRCnbug", "keywords": "", "youtube_id": "lcgNtRCnbug", "readable_id": "james-madison-intro"}, "DB7jL_2bxag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DB7jL_2bxag.mp4/DB7jL_2bxag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DB7jL_2bxag.mp4/DB7jL_2bxag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DB7jL_2bxag.m3u8/DB7jL_2bxag.m3u8"}, "duration": 167, "id": "DB7jL_2bxag", "title": "\"Snapshot\" with Marsha Hill", "format": "mp4", "description": "Met curator Marsha Hill on reverence in Statue of two men and a boy that served as a domestic icon dating from the Amarna Period of Egypt\u2019s New Kingdom.\n\nAll of the individuals in this small group are males, represented according to the conventions of Amarna art. The intriguing group has been variously interpreted as a family comprising a grandfather, a father, and a son, or as one man at three different stages of life. The latter is most unlikely as the multiple representations of a single individual in one statue are not shown interacting as they do here. In fact careful examination of the faces and figures points to the fact that the statue is a kind of domestic icon. The figure at left is a high-status individual and likely the oldest; he is probably a revered relative or the respected overlord of the man and boy who stand closely entwined with one another. The statuette would probably have received veneration in the household of its owner while he was a student in Rome.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an educator resource.\u00a0\n\nView this work on metmuseum.org.\u00a0\n\u00a0\n", "path": "snapshot/", "slug": "snapshot", "kind": "Video", "video_id": "DB7jL_2bxag", "keywords": "family, memory, sculpture, stone, Africa", "youtube_id": "DB7jL_2bxag", "readable_id": "snapshot"}, "eR8vEdJTvd0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eR8vEdJTvd0.mp4/eR8vEdJTvd0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eR8vEdJTvd0.mp4/eR8vEdJTvd0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eR8vEdJTvd0.m3u8/eR8vEdJTvd0.m3u8"}, "duration": 1551, "id": "eR8vEdJTvd0", "title": "Determining whether a transformation is onto", "format": "mp4", "description": "Determining whether a transformation is onto", "path": "khan/math/linear-algebra/matrix_transformations/inverse_transformations/determining-whether-a-transformation-is-onto/", "slug": "determining-whether-a-transformation-is-onto", "kind": "Video", "video_id": "eR8vEdJTvd0", "keywords": "onto, surjective, transformation, matrix, invertible", "youtube_id": "eR8vEdJTvd0", "readable_id": "determining-whether-a-transformation-is-onto"}, "Ewithks6nD4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ewithks6nD4.mp4/Ewithks6nD4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ewithks6nD4.mp4/Ewithks6nD4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ewithks6nD4.m3u8/Ewithks6nD4.m3u8"}, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/franklin-diplomat/", "duration": 603, "id": "Ewithks6nD4", "title": "Benjamin Franklin as diplomat", "format": "mp4", "description": "In this video, Sal and Aspen Institute President and CEO Walter Isaacson discuss Benjamin Franklin as a diplomat.\u00a0", "slug": "franklin-diplomat", "kind": "Video", "video_id": "Ewithks6nD4", "keywords": "", "youtube_id": "Ewithks6nD4", "readable_id": "franklin-diplomat"}, "6Og8EvH_2mY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Og8EvH_2mY.mp4/6Og8EvH_2mY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Og8EvH_2mY.mp4/6Og8EvH_2mY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Og8EvH_2mY.m3u8/6Og8EvH_2mY.m3u8"}, "path": "khan/humanities/medieval-world/medieval-europe/medieval-goldsmiths/", "duration": 314, "id": "6Og8EvH_2mY", "title": "Medieval goldsmiths - Treasures of Heaven at the British Museum", "format": "mp4", "description": "Medieval goldsmiths were some of the most important craftsmen because they worked with precious metals.\u00a0\u00a9 Trustees of the British Museum", "slug": "medieval-goldsmiths", "kind": "Video", "video_id": "6Og8EvH_2mY", "keywords": "British Museum, ", "youtube_id": "6Og8EvH_2mY", "readable_id": "medieval-goldsmiths"}, "YPm6Bi-eKsQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YPm6Bi-eKsQ.mp4/YPm6Bi-eKsQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YPm6Bi-eKsQ.mp4/YPm6Bi-eKsQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YPm6Bi-eKsQ.m3u8/YPm6Bi-eKsQ.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-other-imp-choices/comparing-colleges-campus-activities/", "duration": 61, "id": "YPm6Bi-eKsQ", "title": "Comparing colleges based on campus activities", "format": "mp4", "description": "Filter by campus activities using College Board's college search tool", "slug": "comparing-colleges-campus-activities", "kind": "Video", "video_id": "YPm6Bi-eKsQ", "keywords": "", "youtube_id": "YPm6Bi-eKsQ", "readable_id": "comparing-colleges-campus-activities"}, "l9j26EOvTYc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l9j26EOvTYc.mp4/l9j26EOvTYc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l9j26EOvTYc.mp4/l9j26EOvTYc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l9j26EOvTYc.m3u8/l9j26EOvTYc.m3u8"}, "duration": 1062, "id": "l9j26EOvTYc", "title": "2003 AIME II problem 6", "format": "mp4", "description": "", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-6/", "slug": "2003-aime-ii-problem-6", "kind": "Video", "video_id": "l9j26EOvTYc", "keywords": "area, median, geometry, triangle", "youtube_id": "l9j26EOvTYc", "readable_id": "2003-aime-ii-problem-6"}, "7fztCjCfhZQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7fztCjCfhZQ.mp4/7fztCjCfhZQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7fztCjCfhZQ.mp4/7fztCjCfhZQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7fztCjCfhZQ.m3u8/7fztCjCfhZQ.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/dna-technology/safety-and-ethics-of-dna-technologies/", "duration": 260, "id": "7fztCjCfhZQ", "title": "Safety and ethics of DNA technologies", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "safety-and-ethics-of-dna-technologies", "kind": "Video", "video_id": "7fztCjCfhZQ", "keywords": "", "youtube_id": "7fztCjCfhZQ", "readable_id": "safety-and-ethics-of-dna-technologies"}, "bJgZHQLLo00": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bJgZHQLLo00.mp4/bJgZHQLLo00.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bJgZHQLLo00.mp4/bJgZHQLLo00.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bJgZHQLLo00.m3u8/bJgZHQLLo00.m3u8"}, "duration": 395, "id": "bJgZHQLLo00", "title": "Contemporary Chinese Seals by Li Lanqing", "format": "mp4", "description": "Seals have been symbols of identity and authority in China for more than 2,500 years. This exhibition features over 100 exceptional seals made by artist Li Lanqing, who has revived and transformed this traditional art.\u00a0\u00a9 Trustees of the British Museum", "path": "chinese-seals/", "slug": "chinese-seals", "kind": "Video", "video_id": "bJgZHQLLo00", "keywords": "", "youtube_id": "bJgZHQLLo00", "readable_id": "chinese-seals"}, "WqzK3UAXaHs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WqzK3UAXaHs.mp4/WqzK3UAXaHs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WqzK3UAXaHs.mp4/WqzK3UAXaHs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WqzK3UAXaHs.m3u8/WqzK3UAXaHs.m3u8"}, "path": "khan/math/geometry/intro_euclid/euclid-as-the-father-of-geometry/", "duration": 503, "id": "WqzK3UAXaHs", "title": "Euclid as the father of geometry", "format": "mp4", "description": "We don't normally delve too far into history when talking about math, but sometimes it's important to have perspective about how some of our math concepts came about and how influential they have become.", "slug": "euclid-as-the-father-of-geometry", "kind": "Video", "video_id": "WqzK3UAXaHs", "keywords": "geometry, euclid, lincoln, marquee", "youtube_id": "WqzK3UAXaHs", "readable_id": "euclid-as-the-father-of-geometry"}, "xRyXz_UZ14Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xRyXz_UZ14Q.mp4/xRyXz_UZ14Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xRyXz_UZ14Q.mp4/xRyXz_UZ14Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xRyXz_UZ14Q.m3u8/xRyXz_UZ14Q.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/integral-test-divergence/", "duration": 545, "id": "xRyXz_UZ14Q", "title": "Integral test to show series divergence", "format": "mp4", "description": "", "slug": "integral-test-divergence", "kind": "Video", "video_id": "xRyXz_UZ14Q", "keywords": "", "youtube_id": "xRyXz_UZ14Q", "readable_id": "integral-test-divergence"}, "L5ErlC0COxI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/L5ErlC0COxI.mp4/L5ErlC0COxI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/L5ErlC0COxI.mp4/L5ErlC0COxI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/L5ErlC0COxI.m3u8/L5ErlC0COxI.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/product-rule-proof/", "duration": 566, "id": "L5ErlC0COxI", "title": "Product rule proof", "format": "mp4", "description": "A proof of the product rule", "slug": "product-rule-proof", "kind": "Video", "video_id": "L5ErlC0COxI", "keywords": "", "youtube_id": "L5ErlC0COxI", "readable_id": "product-rule-proof"}, "8X1AS9qD5AQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8X1AS9qD5AQ.mp4/8X1AS9qD5AQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8X1AS9qD5AQ.mp4/8X1AS9qD5AQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8X1AS9qD5AQ.m3u8/8X1AS9qD5AQ.m3u8"}, "duration": 697, "id": "8X1AS9qD5AQ", "title": "Parabolic mirrors and real images", "format": "mp4", "description": "Parabolic Mirrors and Real Images", "path": "khan/test-prep/mcat/physical-processes/spherical-mirrors/parabolic-mirrors-and-real-images/", "slug": "parabolic-mirrors-and-real-images", "kind": "Video", "video_id": "8X1AS9qD5AQ", "keywords": "Parabolic, Mirrors, and, Real, Images", "youtube_id": "8X1AS9qD5AQ", "readable_id": "parabolic-mirrors-and-real-images"}, "zqwVKhQV_2w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zqwVKhQV_2w.mp4/zqwVKhQV_2w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zqwVKhQV_2w.mp4/zqwVKhQV_2w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zqwVKhQV_2w.m3u8/zqwVKhQV_2w.m3u8"}, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-teens/monkeys-for-party/", "duration": 178, "id": "zqwVKhQV_2w", "title": "Monkeys for a party", "format": "mp4", "description": "", "slug": "monkeys-for-party", "kind": "Video", "video_id": "zqwVKhQV_2w", "keywords": "", "youtube_id": "zqwVKhQV_2w", "readable_id": "monkeys-for-party"}, "SyFpQbnkg_c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SyFpQbnkg_c.mp4/SyFpQbnkg_c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SyFpQbnkg_c.mp4/SyFpQbnkg_c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SyFpQbnkg_c.m3u8/SyFpQbnkg_c.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-12-missing-angle/", "duration": 167, "id": "SyFpQbnkg_c", "title": "12 Missing angle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-12-missing-angle", "kind": "Video", "video_id": "SyFpQbnkg_c", "keywords": "", "youtube_id": "SyFpQbnkg_c", "readable_id": "sat-12-missing-angle"}, "ERKx3Oa2omo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ERKx3Oa2omo.mp4/ERKx3Oa2omo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ERKx3Oa2omo.mp4/ERKx3Oa2omo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ERKx3Oa2omo.m3u8/ERKx3Oa2omo.m3u8"}, "duration": 794, "id": "ERKx3Oa2omo", "title": "Scale of the small", "format": "mp4", "description": "From honey bees to cells, viruses, and atoms -- understanding the scale of the very small", "path": "khan/science/cosmology-and-astronomy/universe-scale-topic/scale-small-large-tutorial/scale-of-the-small/", "slug": "scale-of-the-small", "kind": "Video", "video_id": "ERKx3Oa2omo", "keywords": "nanometer, angstrom, dna, electron, proton, cell, virus, mite, marquee", "youtube_id": "ERKx3Oa2omo", "readable_id": "scale-of-the-small"}, "vRa6XxykfbY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vRa6XxykfbY.mp4/vRa6XxykfbY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vRa6XxykfbY.mp4/vRa6XxykfbY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vRa6XxykfbY.m3u8/vRa6XxykfbY.m3u8"}, "duration": 188, "id": "vRa6XxykfbY", "title": "Number opposites practice", "format": "mp4", "description": "", "path": "number-opposites-practice/", "slug": "number-opposites-practice", "kind": "Video", "video_id": "vRa6XxykfbY", "keywords": "", "youtube_id": "vRa6XxykfbY", "readable_id": "number-opposites-practice"}, "pvyqucC-0NU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pvyqucC-0NU.mp4/pvyqucC-0NU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pvyqucC-0NU.mp4/pvyqucC-0NU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pvyqucC-0NU.m3u8/pvyqucC-0NU.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-more-fewer-100/spots-on-a-die/", "duration": 203, "id": "pvyqucC-0NU", "title": "Spots on a die", "format": "mp4", "description": "", "slug": "spots-on-a-die", "kind": "Video", "video_id": "pvyqucC-0NU", "keywords": "", "youtube_id": "pvyqucC-0NU", "readable_id": "spots-on-a-die"}, "iRMLQC_4pqw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iRMLQC_4pqw.mp4/iRMLQC_4pqw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iRMLQC_4pqw.mp4/iRMLQC_4pqw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iRMLQC_4pqw.m3u8/iRMLQC_4pqw.m3u8"}, "path": "khan/test-prep/sat/sat-reading-writing-practice/full-length-sat-test1-section5/sat-15-storing-bread/", "duration": 88, "id": "iRMLQC_4pqw", "title": "15 Storing bread", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-15-storing-bread", "kind": "Video", "video_id": "iRMLQC_4pqw", "keywords": "", "youtube_id": "iRMLQC_4pqw", "readable_id": "sat-15-storing-bread"}, "ZgJHEp7XwAs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZgJHEp7XwAs.mp4/ZgJHEp7XwAs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZgJHEp7XwAs.mp4/ZgJHEp7XwAs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZgJHEp7XwAs.m3u8/ZgJHEp7XwAs.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/altruism/", "duration": 236, "id": "ZgJHEp7XwAs", "title": "Altruism", "format": "mp4", "description": "", "slug": "altruism", "kind": "Video", "video_id": "ZgJHEp7XwAs", "keywords": "", "youtube_id": "ZgJHEp7XwAs", "readable_id": "altruism"}, "W7H-VcaSSu8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/W7H-VcaSSu8.mp4/W7H-VcaSSu8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/W7H-VcaSSu8.mp4/W7H-VcaSSu8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/W7H-VcaSSu8.m3u8/W7H-VcaSSu8.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/constructing-linear-functions-1/", "duration": 395, "id": "W7H-VcaSSu8", "title": "Constructing linear functions example 1", "format": "mp4", "description": "Linear model for ice sheet thickness", "slug": "constructing-linear-functions-1", "kind": "Video", "video_id": "W7H-VcaSSu8", "keywords": "", "youtube_id": "W7H-VcaSSu8", "readable_id": "constructing-linear-functions-1"}, "peSLM4XObBE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/peSLM4XObBE.mp4/peSLM4XObBE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/peSLM4XObBE.mp4/peSLM4XObBE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/peSLM4XObBE.m3u8/peSLM4XObBE.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/sound-audition/auditory-processing-video/", "duration": 423, "id": "peSLM4XObBE", "title": "Auditory processing", "format": "mp4", "description": "", "slug": "auditory-processing-video", "kind": "Video", "video_id": "peSLM4XObBE", "keywords": "", "youtube_id": "peSLM4XObBE", "readable_id": "auditory-processing-video"}, "KV0hmkuS5ec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KV0hmkuS5ec.mp4/KV0hmkuS5ec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KV0hmkuS5ec.mp4/KV0hmkuS5ec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KV0hmkuS5ec.m3u8/KV0hmkuS5ec.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap/ancient-thebes-unescotbs/", "duration": 121, "id": "KV0hmkuS5ec", "title": "Ancient Thebes with its Necropolis (UNESCO/TBS)", "format": "mp4", "description": "Thebes, the city of the god Amon, was the capital of Egypt during the period of the Middle and New Kingdoms. With the temples and palaces at Karnak and Luxor, and the necropolises of the Valley of the Kings and the Valley of the Queens, Thebes is a striking testimony to Egyptian civilization at its height.", "slug": "ancient-thebes-unescotbs", "kind": "Video", "video_id": "KV0hmkuS5ec", "keywords": "", "youtube_id": "KV0hmkuS5ec", "readable_id": "ancient-thebes-unescotbs"}, "xdIVZrr_8tI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xdIVZrr_8tI.mp4/xdIVZrr_8tI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xdIVZrr_8tI.mp4/xdIVZrr_8tI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xdIVZrr_8tI.m3u8/xdIVZrr_8tI.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/sluter/claus-sluter-well-of-moses/", "duration": 292, "id": "xdIVZrr_8tI", "title": "Sluter, Well of Moses", "format": "mp4", "description": "Claus Sluter (with Claus de Werve), The Well of Moses, 1395-1405 (calvary finished 1399, prophets 1402-05, painted by Jean Malouel c. 1402), Asni\u00e8res stone with gilding and polychromy, slightly less than 7 meters high, originally close to 13 meters with cross. Located on the grounds of the former Chartreuse de Champmol, a Carthusian monastery in Dijon, France established by Philip the Bold, Duke of Burgundy. The prophets depicted include: Moses, David, Jeremiah, Zachariah, Daniel, and Isaiah. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "claus-sluter-well-of-moses", "kind": "Video", "video_id": "xdIVZrr_8tI", "keywords": "Smarthistory, art history, Khan academy, Moses, well of moses, Dijon, Burgundy, sluter", "youtube_id": "xdIVZrr_8tI", "readable_id": "claus-sluter-well-of-moses"}, "SSFyGYMiGro": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SSFyGYMiGro.mp4/SSFyGYMiGro.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SSFyGYMiGro.mp4/SSFyGYMiGro.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SSFyGYMiGro.m3u8/SSFyGYMiGro.m3u8"}, "duration": 271, "id": "SSFyGYMiGro", "title": "Conserving the work of Choucair", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nSometimes art conservators go to great lengths to fulfil their roles. In this case, conservator Rachel Barker has travelled all the way to Beirut, Lebanon, where she has set up a temporary conservation studio in artist Saloua Raouda Choucair\u2019s apartment, where her collection of work is stored. As a consequence of the changeable climate and environment, many of Choucair\u2019s works have exhibited some form of damage\u2013and this is where the conservation team steps in to stabilise these pieces so they can travel safely to London and be exhibited at Tate Modern.\nTake a look behind the scenes at this mobile laboratory and the conservation team working hard to preserve and protect these fragile works of art.\n\nCurious about Choucair? Watch this video to learn more about the artist and her work.\n", "path": "conserving-the-work-of-choucair/", "slug": "conserving-the-work-of-choucair", "kind": "Video", "video_id": "SSFyGYMiGro", "keywords": "Tate", "youtube_id": "SSFyGYMiGro", "readable_id": "conserving-the-work-of-choucair"}, "JU67TL2L1CA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JU67TL2L1CA.mp4/JU67TL2L1CA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JU67TL2L1CA.mp4/JU67TL2L1CA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JU67TL2L1CA.m3u8/JU67TL2L1CA.m3u8"}, "duration": 178, "id": "JU67TL2L1CA", "title": "2003 AIME II problem 3", "format": "mp4", "description": "2003 AIME II Problem 3", "path": "khan/math/competition-math/aime/2003-aime/2003-aime-ii-problem-3/", "slug": "2003-aime-ii-problem-3", "kind": "Video", "video_id": "JU67TL2L1CA", "keywords": "2003, AIME, II, Problem", "youtube_id": "JU67TL2L1CA", "readable_id": "2003-aime-ii-problem-3"}, "B0Z4s38YIgQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/B0Z4s38YIgQ.mp4/B0Z4s38YIgQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/B0Z4s38YIgQ.mp4/B0Z4s38YIgQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/B0Z4s38YIgQ.m3u8/B0Z4s38YIgQ.m3u8"}, "duration": 479, "id": "B0Z4s38YIgQ", "title": "Applying rational equations 3", "format": "mp4", "description": "Applying Rational Equations 3", "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/applying-rational-equations-3/", "slug": "applying-rational-equations-3", "kind": "Video", "video_id": "B0Z4s38YIgQ", "keywords": "U11_L2_T2_we3, Applying, Rational, Equations, CC_39336_A-APR_7, CC_39336_A-CED_1", "youtube_id": "B0Z4s38YIgQ", "readable_id": "applying-rational-equations-3"}, "mJt1QI-yDG4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mJt1QI-yDG4.mp4/mJt1QI-yDG4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mJt1QI-yDG4.mp4/mJt1QI-yDG4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mJt1QI-yDG4.m3u8/mJt1QI-yDG4.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/ir-spectra-practice/", "duration": 354, "id": "mJt1QI-yDG4", "title": "IR spectra practice", "format": "mp4", "description": "", "slug": "ir-spectra-practice", "kind": "Video", "video_id": "mJt1QI-yDG4", "keywords": "", "youtube_id": "mJt1QI-yDG4", "readable_id": "ir-spectra-practice"}, "EBKNtjZAjXg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EBKNtjZAjXg.mp4/EBKNtjZAjXg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EBKNtjZAjXg.mp4/EBKNtjZAjXg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EBKNtjZAjXg.m3u8/EBKNtjZAjXg.m3u8"}, "duration": 564, "id": "EBKNtjZAjXg", "title": "Example relating trig function to side ratios", "format": "mp4", "description": "", "path": "khan/math/trigonometry/basic-trigonometry/cc-trig-ratios-similarity/example-relating-trig-function-to-side-ratios/", "slug": "example-relating-trig-function-to-side-ratios", "kind": "Video", "video_id": "EBKNtjZAjXg", "keywords": "", "youtube_id": "EBKNtjZAjXg", "readable_id": "example-relating-trig-function-to-side-ratios"}, "sBhEi4L91Sg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sBhEi4L91Sg.mp4/sBhEi4L91Sg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sBhEi4L91Sg.mp4/sBhEi4L91Sg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sBhEi4L91Sg.m3u8/sBhEi4L91Sg.m3u8"}, "duration": 675, "id": "sBhEi4L91Sg", "title": "Logarithmic scale", "format": "mp4", "description": "Understanding how logarithmic scale is different from linear scale and why it could be useful", "path": "khan/math/algebra2/logarithms-tutorial/logarithmic-scale-patterns/logarithmic-scale/", "slug": "logarithmic-scale", "kind": "Video", "video_id": "sBhEi4L91Sg", "keywords": "log, scale, number, line", "youtube_id": "sBhEi4L91Sg", "readable_id": "logarithmic-scale"}, "RXuipbyW2Wk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RXuipbyW2Wk.mp4/RXuipbyW2Wk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RXuipbyW2Wk.mp4/RXuipbyW2Wk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RXuipbyW2Wk.m3u8/RXuipbyW2Wk.m3u8"}, "duration": 134, "id": "RXuipbyW2Wk", "title": "Representing numbers", "format": "mp4", "description": "", "path": "khan/math/pre-algebra/order-of-operations/place_value/representing-numbers/", "slug": "representing-numbers", "kind": "Video", "video_id": "RXuipbyW2Wk", "keywords": "", "youtube_id": "RXuipbyW2Wk", "readable_id": "representing-numbers"}, "P4jM6he-AZ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P4jM6he-AZ0.mp4/P4jM6he-AZ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P4jM6he-AZ0.mp4/P4jM6he-AZ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P4jM6he-AZ0.m3u8/P4jM6he-AZ0.m3u8"}, "duration": 598, "id": "P4jM6he-AZ0", "title": "The creation of chemistry", "format": "mp4", "description": "Today's Crash Course Chemistry takes a historical perspective on the creation of the science, which didn't really exist until a super-smart, super-wealthy Frenchman put the puzzle pieces together - Hank tells the story of how we went from alchemists to chemists, who understood the law of conservation of mass as proposed by a decapitated aristocrat, and explains how we came to have a greater understanding of how chemical compounds work and eventually a complete understanding of what atoms and molecules are. \u00a0\n\nWriter: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector: Michael Aranda\nEditor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe", "path": "chem03-creation-of-chemistry/", "slug": "chem03-creation-of-chemistry", "kind": "Video", "video_id": "P4jM6he-AZ0", "keywords": "", "youtube_id": "P4jM6he-AZ0", "readable_id": "chem03-creation-of-chemistry"}, "0LM6wPpypxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/0LM6wPpypxM.mp4/0LM6wPpypxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/0LM6wPpypxM.mp4/0LM6wPpypxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/0LM6wPpypxM.m3u8/0LM6wPpypxM.m3u8"}, "duration": 1006, "id": "0LM6wPpypxM", "title": "Conjugate acids and bases", "format": "mp4", "description": "Introduction to conjugate acids and bases", "path": "khan/science/chemistry/acids-and-bases-topic/copy-of-acid-base-equilibria/conjugate-acids-and-bases/", "slug": "conjugate-acids-and-bases", "kind": "Video", "video_id": "0LM6wPpypxM", "keywords": "chemistry, conjugate, acids, bases", "youtube_id": "0LM6wPpypxM", "readable_id": "conjugate-acids-and-bases"}, "YjT3QYfoy4Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YjT3QYfoy4Q.mp4/YjT3QYfoy4Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YjT3QYfoy4Q.mp4/YjT3QYfoy4Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YjT3QYfoy4Q.m3u8/YjT3QYfoy4Q.m3u8"}, "duration": 204, "id": "YjT3QYfoy4Q", "title": "Graphing systems of inequalities", "format": "mp4", "description": "Graphing systems of inequalities", "path": "khan/math/algebra2/systems_eq_ineq/systems_inequalities_precalc/graphing-systems-of-inequalities-2/", "slug": "graphing-systems-of-inequalities-2", "kind": "Video", "video_id": "YjT3QYfoy4Q", "keywords": "U06_L3_T1_we2, Graphing, systems, of, inequalities, CC_39336_A-REI_12", "youtube_id": "YjT3QYfoy4Q", "readable_id": "graphing-systems-of-inequalities-2"}, "KZ8Vw_Nim8U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KZ8Vw_Nim8U.mp4/KZ8Vw_Nim8U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KZ8Vw_Nim8U.mp4/KZ8Vw_Nim8U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KZ8Vw_Nim8U.m3u8/KZ8Vw_Nim8U.m3u8"}, "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/ca-algebra-i-graphing-inequalities/", "duration": 702, "id": "KZ8Vw_Nim8U", "title": "CA Algebra I: Graphing inequalities", "format": "mp4", "description": "21-26, graphing inequalities and testing assertions", "slug": "ca-algebra-i-graphing-inequalities", "kind": "Video", "video_id": "KZ8Vw_Nim8U", "keywords": "graphing, inequalities, testing, assertions, algebra", "youtube_id": "KZ8Vw_Nim8U", "readable_id": "ca-algebra-i-graphing-inequalities"}, "dNnItWLuHH4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dNnItWLuHH4.mp4/dNnItWLuHH4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dNnItWLuHH4.mp4/dNnItWLuHH4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dNnItWLuHH4.m3u8/dNnItWLuHH4.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/regrouping-decimals-pre-alg/regrouping-decimals-example-2/", "duration": 208, "id": "dNnItWLuHH4", "title": "Regrouping decimals example 2", "format": "mp4", "description": "Great decimal regrouping exercise. Do this one with us and see how well you've mastered the regrouping decimal topic!", "slug": "regrouping-decimals-example-2", "kind": "Video", "video_id": "dNnItWLuHH4", "keywords": "", "youtube_id": "dNnItWLuHH4", "readable_id": "regrouping-decimals-example-2"}, "QQsBM1dZLO4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QQsBM1dZLO4.mp4/QQsBM1dZLO4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QQsBM1dZLO4.mp4/QQsBM1dZLO4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QQsBM1dZLO4.m3u8/QQsBM1dZLO4.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/new-topic-2014-10-24t223505910z/culture-and-society/", "duration": 207, "id": "QQsBM1dZLO4", "title": "Culture and society", "format": "mp4", "description": "", "slug": "culture-and-society", "kind": "Video", "video_id": "QQsBM1dZLO4", "keywords": "", "youtube_id": "QQsBM1dZLO4", "readable_id": "culture-and-society"}, "WYlWN_keVkY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WYlWN_keVkY.mp4/WYlWN_keVkY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WYlWN_keVkY.mp4/WYlWN_keVkY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WYlWN_keVkY.m3u8/WYlWN_keVkY.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/what-are-disciplines/bhp-intro-to-astrophysics/", "duration": 285, "id": "WYlWN_keVkY", "title": "Ways of Knowing \u2013 Introduction to Astrophysics", "format": "mp4", "description": "Do the laws of physics and mathematics apply to everything in the Universe? Janna Levin explains astrophysics.", "slug": "bhp-intro-to-astrophysics", "kind": "Video", "video_id": "WYlWN_keVkY", "keywords": "", "youtube_id": "WYlWN_keVkY", "readable_id": "bhp-intro-to-astrophysics"}, "YT6XwkcPcsw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YT6XwkcPcsw.mp4/YT6XwkcPcsw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YT6XwkcPcsw.mp4/YT6XwkcPcsw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YT6XwkcPcsw.m3u8/YT6XwkcPcsw.m3u8"}, "path": "khan/math/multivariable-calculus/surface-integrals/stokes_proof/stokes-theorem-proof-part-7/", "duration": 709, "id": "YT6XwkcPcsw", "title": "Stokes' theorem proof part 7", "format": "mp4", "description": "Using Green's Theorem to complete the proof", "slug": "stokes-theorem-proof-part-7", "kind": "Video", "video_id": "YT6XwkcPcsw", "keywords": "", "youtube_id": "YT6XwkcPcsw", "readable_id": "stokes-theorem-proof-part-7"}, "OxaG0VxaVXw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OxaG0VxaVXw.mp4/OxaG0VxaVXw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OxaG0VxaVXw.mp4/OxaG0VxaVXw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OxaG0VxaVXw.m3u8/OxaG0VxaVXw.m3u8"}, "path": "khan/science/discoveries-projects/lego-robotics/lego-coin-detector/lego-nxt-coin-detector/", "duration": 41, "id": "OxaG0VxaVXw", "title": "Demo: coin detector", "format": "mp4", "description": "demonstration of a simple coin detector", "slug": "lego-nxt-coin-detector", "kind": "Video", "video_id": "OxaG0VxaVXw", "keywords": "", "youtube_id": "OxaG0VxaVXw", "readable_id": "lego-nxt-coin-detector"}, "_w5NGOHbgTw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_w5NGOHbgTw.mp4/_w5NGOHbgTw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_w5NGOHbgTw.mp4/_w5NGOHbgTw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_w5NGOHbgTw.m3u8/_w5NGOHbgTw.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-near-east-ap/law-code-stele-of-king-hammurabi-792-1750-b-c-e/", "duration": 197, "id": "_w5NGOHbgTw", "title": "Law code of Hammurabi", "format": "mp4", "description": "Law Code Stele of King Hammurabi, basalt, Babylonian, 1792-1750 B.C.E. (Mus\u00e9e du Louvre, Paris) A stele is a vertical stone monument or marker often inscribed with text or with relief carving. Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "law-code-stele-of-king-hammurabi-792-1750-b-c-e", "kind": "Video", "video_id": "_w5NGOHbgTw", "keywords": "Hammurabi, Ancient Near East, Musee du Louvre, Art History, Smarthistory", "youtube_id": "_w5NGOHbgTw", "readable_id": "law-code-stele-of-king-hammurabi-792-1750-b-c-e"}, "XQRZqG7wCPQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XQRZqG7wCPQ.mp4/XQRZqG7wCPQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XQRZqG7wCPQ.mp4/XQRZqG7wCPQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XQRZqG7wCPQ.m3u8/XQRZqG7wCPQ.m3u8"}, "duration": 114, "id": "XQRZqG7wCPQ", "title": "How do we know where to look for dinosaur fossils?", "format": "mp4", "description": "Dinosaur fossils are found almost exclusively in sedimentary rocks, which form when sand, silt, mud, and organic material settle out of water or air to form layers that are then compacted into rock. Paleontologists look for fossils in sedimentary rocks that were deposited on the continents, primarily by rivers and streams, or in lakes into which the streams emptied. Occasionally, dinosaur fossils are also found in sedimentary rocks representing ancient, desert sand dunes. The sedimentary rocks must have been formed or deposited during the Mesozoic Era, the geologic time period when nonavian dinosaurs lived.", "path": "searching-dinosaur-fossils/", "slug": "searching-dinosaur-fossils", "kind": "Video", "video_id": "XQRZqG7wCPQ", "keywords": "", "youtube_id": "XQRZqG7wCPQ", "readable_id": "searching-dinosaur-fossils"}, "nBw6KvU51BE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nBw6KvU51BE.mp4/nBw6KvU51BE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nBw6KvU51BE.mp4/nBw6KvU51BE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nBw6KvU51BE.m3u8/nBw6KvU51BE.m3u8"}, "duration": 360, "id": "nBw6KvU51BE", "title": "Negative externalities", "format": "mp4", "description": "Taking negative externalities into account when thinking about the optimal equilibrium price and quantity", "path": "khan/economics-finance-domain/microeconomics/consumer-producer-surplus/externalities-topic/negative-externalities/", "slug": "negative-externalities", "kind": "Video", "video_id": "nBw6KvU51BE", "keywords": "microeconomics", "youtube_id": "nBw6KvU51BE", "readable_id": "negative-externalities"}, "wjZb3zPuoeA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wjZb3zPuoeA.mp4/wjZb3zPuoeA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wjZb3zPuoeA.mp4/wjZb3zPuoeA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wjZb3zPuoeA.m3u8/wjZb3zPuoeA.m3u8"}, "duration": 181, "id": "wjZb3zPuoeA", "title": "Loop de loop question", "format": "mp4", "description": "Asks students to find the minimum speed necessary to complete the loop de loop", "path": "khan/science/physics/two-dimensional-motion/centripetal-acceleration-tutoria/loop-de-loop-question/", "slug": "loop-de-loop-question", "kind": "Video", "video_id": "wjZb3zPuoeA", "keywords": "centripetal, acceleration", "youtube_id": "wjZb3zPuoeA", "readable_id": "loop-de-loop-question"}, "Uu-5ofhxOX8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Uu-5ofhxOX8.mp4/Uu-5ofhxOX8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Uu-5ofhxOX8.mp4/Uu-5ofhxOX8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Uu-5ofhxOX8.m3u8/Uu-5ofhxOX8.m3u8"}, "duration": 801, "id": "Uu-5ofhxOX8", "title": "Capitalism and Socialism", "format": "mp4", "description": "In which John Green teaches you about capitalism and socialism in a way that is sure to please commenters from both sides of the debate. Learn how capitalism arose from the industrial revolution, and then gave rise to socialism. Learn about how we got from the British East India Company to iPhones and consumer culture in just a couple of hundred years. Stops along the way include the rise of industrial capitalism, mass production, disgruntled workers, Karl Marx, and the Socialist Beard. The socialist reactions to the ills of capitalism are covered as well, and John discusses some of the ideas of Karl Marx, and how they've been implemented or ignored in various socialist states. Plus, there are robots!", "path": "khan/humanities/history/crashcourse-worldhistory/you-aint-the-boss-of-me-2/crash-course-world-history-33/", "slug": "crash-course-world-history-33", "kind": "Video", "video_id": "Uu-5ofhxOX8", "keywords": "crash course", "youtube_id": "Uu-5ofhxOX8", "readable_id": "crash-course-world-history-33"}, "P0ZgqB44Do4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/P0ZgqB44Do4.mp4/P0ZgqB44Do4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/P0ZgqB44Do4.mp4/P0ZgqB44Do4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/P0ZgqB44Do4.m3u8/P0ZgqB44Do4.m3u8"}, "path": "khan/math/algebra2/rational-expressions/rational-function-graphing/finding-asymptotes-example/", "duration": 682, "id": "P0ZgqB44Do4", "title": "Finding horizontal and vertical asymptotes", "format": "mp4", "description": "", "slug": "finding-asymptotes-example", "kind": "Video", "video_id": "P0ZgqB44Do4", "keywords": "", "youtube_id": "P0ZgqB44Do4", "readable_id": "finding-asymptotes-example"}, "iyMHWOwBiVc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iyMHWOwBiVc.mp4/iyMHWOwBiVc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iyMHWOwBiVc.mp4/iyMHWOwBiVc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iyMHWOwBiVc.m3u8/iyMHWOwBiVc.m3u8"}, "path": "khan/partner-content/exploratorium/light-and-color/colored-shadows/colored-shadows-introduction-1/", "duration": 123, "id": "iyMHWOwBiVc", "title": "Colored Shadows: Introduction", "format": "mp4", "description": "", "slug": "colored-shadows-introduction-1", "kind": "Video", "video_id": "iyMHWOwBiVc", "keywords": "", "youtube_id": "iyMHWOwBiVc", "readable_id": "colored-shadows-introduction-1"}, "iXw2V9yVCu4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iXw2V9yVCu4.mp4/iXw2V9yVCu4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iXw2V9yVCu4.mp4/iXw2V9yVCu4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iXw2V9yVCu4.m3u8/iXw2V9yVCu4.m3u8"}, "duration": 633, "id": "iXw2V9yVCu4", "title": "The periodic table", "format": "mp4", "description": "Hank gives us a tour of the most important table ever, including the life story of the obsessive man who championed it, Dmitri Mendeleev. The periodic table of elements is a concise, information-dense catalog of all of the different sorts of atoms in the universe, and it has a wealth of information to tell us if we can learn to read it.\nWriter: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector: Caitlin Hofmeister\nEditor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem04-periodic-table/", "slug": "chem04-periodic-table", "kind": "Video", "video_id": "iXw2V9yVCu4", "keywords": "", "youtube_id": "iXw2V9yVCu4", "readable_id": "chem04-periodic-table"}, "PiuhTj0zCf4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PiuhTj0zCf4.mp4/PiuhTj0zCf4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PiuhTj0zCf4.mp4/PiuhTj0zCf4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PiuhTj0zCf4.m3u8/PiuhTj0zCf4.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/change_of_basis/lin-alg-transformation-matrix-with-respect-to-a-basis/", "duration": 1082, "id": "PiuhTj0zCf4", "title": "Transformation matrix with respect to a basis", "format": "mp4", "description": "Finding the transformation matrix with respect to a non-standard basis", "slug": "lin-alg-transformation-matrix-with-respect-to-a-basis", "kind": "Video", "video_id": "PiuhTj0zCf4", "keywords": "transformation, basis, coordinates", "youtube_id": "PiuhTj0zCf4", "readable_id": "lin-alg-transformation-matrix-with-respect-to-a-basis"}, "nz5rbvt64kE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nz5rbvt64kE.mp4/nz5rbvt64kE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nz5rbvt64kE.mp4/nz5rbvt64kE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nz5rbvt64kE.m3u8/nz5rbvt64kE.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/gene-control/post-translational-regulation/", "duration": 368, "id": "nz5rbvt64kE", "title": "Post-transcriptional regulation", "format": "mp4", "description": "", "slug": "post-translational-regulation", "kind": "Video", "video_id": "nz5rbvt64kE", "keywords": "", "youtube_id": "nz5rbvt64kE", "readable_id": "post-translational-regulation"}, "51-U-Jkq79A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/51-U-Jkq79A.mp4/51-U-Jkq79A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/51-U-Jkq79A.mp4/51-U-Jkq79A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/51-U-Jkq79A.m3u8/51-U-Jkq79A.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-mult-div-pre-alg/dividing-mixed-numbers/", "duration": 161, "id": "51-U-Jkq79A", "title": "Dividing mixed numbers", "format": "mp4", "description": "Dividing Mixed Numbers", "slug": "dividing-mixed-numbers", "kind": "Video", "video_id": "51-U-Jkq79A", "keywords": "U02_L2_T3_we3, Dividing, Mixed, Numbers, CC_6_NS_1", "youtube_id": "51-U-Jkq79A", "readable_id": "dividing-mixed-numbers"}, "Wd7wQG9D-CE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Wd7wQG9D-CE.mp4/Wd7wQG9D-CE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Wd7wQG9D-CE.mp4/Wd7wQG9D-CE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Wd7wQG9D-CE.m3u8/Wd7wQG9D-CE.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2008-may-4-5/", "duration": 79, "id": "Wd7wQG9D-CE", "title": "5 Selling tickets", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-5", "kind": "Video", "video_id": "Wd7wQG9D-CE", "keywords": "", "youtube_id": "Wd7wQG9D-CE", "readable_id": "sat-2008-may-4-5"}, "7aur5h44pV4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7aur5h44pV4.mp4/7aur5h44pV4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7aur5h44pV4.mp4/7aur5h44pV4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7aur5h44pV4.m3u8/7aur5h44pV4.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/thermochemistry/more-rigorous-gibbs-free-energy-spontaneity-relationship/", "duration": 836, "id": "7aur5h44pV4", "title": "More rigorous Gibbs free energy / spontaneity relationship", "format": "mp4", "description": "More formal understanding of why a negative change in Gibbs Free Energy implies a spontaneous, irreversible reaction.", "slug": "more-rigorous-gibbs-free-energy-spontaneity-relationship", "kind": "Video", "video_id": "7aur5h44pV4", "keywords": "gibbs, free, energy, chemistry, thermodynamics", "youtube_id": "7aur5h44pV4", "readable_id": "more-rigorous-gibbs-free-energy-spontaneity-relationship"}, "9DGbDx5xQNo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9DGbDx5xQNo.mp4/9DGbDx5xQNo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9DGbDx5xQNo.mp4/9DGbDx5xQNo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9DGbDx5xQNo.m3u8/9DGbDx5xQNo.m3u8"}, "duration": 578, "id": "9DGbDx5xQNo", "title": "Unemployment rate primer", "format": "mp4", "description": "Understanding how the headline unemployment rate (U-3) is calculated", "path": "khan/economics-finance-domain/core-finance/current-economics/unemployment-tutorial/unemployment-rate-primer/", "slug": "unemployment-rate-primer", "kind": "Video", "video_id": "9DGbDx5xQNo", "keywords": "economics, unemployment, rate", "youtube_id": "9DGbDx5xQNo", "readable_id": "unemployment-rate-primer"}, "pPqPj8CAPvI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pPqPj8CAPvI.mp4/pPqPj8CAPvI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pPqPj8CAPvI.mp4/pPqPj8CAPvI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pPqPj8CAPvI.m3u8/pPqPj8CAPvI.m3u8"}, "duration": 596, "id": "pPqPj8CAPvI", "title": "Age word problems 2", "format": "mp4", "description": "Second set of age word problems", "path": "khan/math/algebra/solving-linear-equations-and-inequalities/old-school-equations/age-word-problems-2/", "slug": "age-word-problems-2", "kind": "Video", "video_id": "pPqPj8CAPvI", "keywords": "algebra, word, problems, CC_7_RP_2_c", "youtube_id": "pPqPj8CAPvI", "readable_id": "age-word-problems-2"}, "Awcj447pYuk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Awcj447pYuk.mp4/Awcj447pYuk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Awcj447pYuk.mp4/Awcj447pYuk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Awcj447pYuk.m3u8/Awcj447pYuk.m3u8"}, "duration": 237, "id": "Awcj447pYuk", "title": "Multiplying a matrix by a column vector", "format": "mp4", "description": "", "path": "khan/math/precalculus/precalc-matrices/matrix_multiplication/multiplying-a-matrix-by-a-column-vector/", "slug": "multiplying-a-matrix-by-a-column-vector", "kind": "Video", "video_id": "Awcj447pYuk", "keywords": "", "youtube_id": "Awcj447pYuk", "readable_id": "multiplying-a-matrix-by-a-column-vector"}, "nhW3Ri4b_V8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nhW3Ri4b_V8.mp4/nhW3Ri4b_V8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nhW3Ri4b_V8.mp4/nhW3Ri4b_V8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nhW3Ri4b_V8.m3u8/nhW3Ri4b_V8.m3u8"}, "duration": 252, "id": "nhW3Ri4b_V8", "title": "Market value of assets", "format": "mp4", "description": "Market value of assets.", "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/company-statements-capital-struc/market-value-of-assets/", "slug": "market-value-of-assets", "kind": "Video", "video_id": "nhW3Ri4b_V8", "keywords": "intangible, assets, market, value", "youtube_id": "nhW3Ri4b_V8", "readable_id": "market-value-of-assets"}, "oy8Kvt1vOto": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oy8Kvt1vOto.mp4/oy8Kvt1vOto.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oy8Kvt1vOto.mp4/oy8Kvt1vOto.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oy8Kvt1vOto.m3u8/oy8Kvt1vOto.m3u8"}, "duration": 86, "id": "oy8Kvt1vOto", "title": "Were dinosaurs warm-blooded?", "format": "mp4", "description": "One approach to this question is to look at the microscopic structure of bone. In many cold-blooded animals, bone grows in dense, concentric rings. In warm-blooded animals, a complex system of closely spaced cavities, called the Haversian system, permeates the bone. By cutting bones of extinct, non-avian dinosaurs into thin slices and examining them under the microscope, we can look for these characteristics. In most non-avian dinosaurs, the microstructure of the bone looks more like that of warm-blooded animals, but the evidence is not conclusive.", "path": "were-dinosaurs-warm-blooded/", "slug": "were-dinosaurs-warm-blooded", "kind": "Video", "video_id": "oy8Kvt1vOto", "keywords": "", "youtube_id": "oy8Kvt1vOto", "readable_id": "were-dinosaurs-warm-blooded"}, "7pqZj-83BuI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7pqZj-83BuI.mp4/7pqZj-83BuI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7pqZj-83BuI.mp4/7pqZj-83BuI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7pqZj-83BuI.m3u8/7pqZj-83BuI.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section8/sat-12-missing-angle-alt-solution/", "duration": 192, "id": "7pqZj-83BuI", "title": "12 Missing angle alternate solution", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-12-missing-angle-alt-solution", "kind": "Video", "video_id": "7pqZj-83BuI", "keywords": "", "youtube_id": "7pqZj-83BuI", "readable_id": "sat-12-missing-angle-alt-solution"}, "SdbOrNLcC0I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SdbOrNLcC0I.mp4/SdbOrNLcC0I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SdbOrNLcC0I.mp4/SdbOrNLcC0I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SdbOrNLcC0I.m3u8/SdbOrNLcC0I.m3u8"}, "path": "khan/humanities/art-1010/pop/andy-warhol-campbell-s-soup-cans-why-is-this-art/", "duration": 430, "id": "SdbOrNLcC0I", "title": "Why is this art? Andy Warhol, Campbell's Soup Cans", "format": "mp4", "description": "Steven Zucker and Sal Khan discuss Andy Warhol's Campbell's Soup Cans", "slug": "andy-warhol-campbell-s-soup-cans-why-is-this-art", "kind": "Video", "video_id": "SdbOrNLcC0I", "keywords": "andy, warhol, campbell, soup, cans", "youtube_id": "SdbOrNLcC0I", "readable_id": "andy-warhol-campbell-s-soup-cans-why-is-this-art"}, "Mx7KM-k2MMo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Mx7KM-k2MMo.mp4/Mx7KM-k2MMo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Mx7KM-k2MMo.mp4/Mx7KM-k2MMo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Mx7KM-k2MMo.m3u8/Mx7KM-k2MMo.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/nucleophilicity-basicity-sal/nucleophilicity-vs-basicity/", "duration": 767, "id": "Mx7KM-k2MMo", "title": "Nucleophilicity vs. basicity", "format": "mp4", "description": "Nucleophilicity vs. Basicity . The difference between what it means to be a nucleophile and a base", "slug": "nucleophilicity-vs-basicity", "kind": "Video", "video_id": "Mx7KM-k2MMo", "keywords": "organic, chemistry, Nucleophilicity, vs., Basicity, nucleophile, base", "youtube_id": "Mx7KM-k2MMo", "readable_id": "nucleophilicity-vs-basicity"}, "jYZ71Zma9Gc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jYZ71Zma9Gc.mp4/jYZ71Zma9Gc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jYZ71Zma9Gc.mp4/jYZ71Zma9Gc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jYZ71Zma9Gc.m3u8/jYZ71Zma9Gc.m3u8"}, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/brunelleschi-old-sacristy-san-lorenzo-florence-begun-c-1421/", "duration": 242, "id": "jYZ71Zma9Gc", "title": "Brunelleschi, Old Sacristy", "format": "mp4", "description": "Brunelleschi, Old Sacristy, San Lorenzo, Florence, begun c. 1421 Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "brunelleschi-old-sacristy-san-lorenzo-florence-begun-c-1421", "kind": "Video", "video_id": "jYZ71Zma9Gc", "keywords": "art history, khan academy, smarthistory, brunelleschi, early renaissance, architecture, old sacristy", "youtube_id": "jYZ71Zma9Gc", "readable_id": "brunelleschi-old-sacristy-san-lorenzo-florence-begun-c-1421"}, "17st-s5gg10": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/17st-s5gg10.mp4/17st-s5gg10.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/17st-s5gg10.mp4/17st-s5gg10.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/17st-s5gg10.m3u8/17st-s5gg10.m3u8"}, "duration": 403, "id": "17st-s5gg10", "title": "Sum of factors of 27000", "format": "mp4", "description": null, "path": "khan/math/competition-math/aime/2003-aime/sum-of-factors-of-27000/", "slug": "sum-of-factors-of-27000", "kind": "Video", "video_id": "17st-s5gg10", "keywords": "Sum, of, factors, 27000", "youtube_id": "17st-s5gg10", "readable_id": "sum-of-factors-of-27000"}, "m28RAgUySGQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/m28RAgUySGQ.mp4/m28RAgUySGQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/m28RAgUySGQ.mp4/m28RAgUySGQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/m28RAgUySGQ.m3u8/m28RAgUySGQ.m3u8"}, "path": "khan/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets/going-back-to-the-till-series-b/", "duration": 714, "id": "m28RAgUySGQ", "title": "Going back to the till: Series B", "format": "mp4", "description": "More on the series A financing. Going back for another round with a series B financing.", "slug": "going-back-to-the-till-series-b", "kind": "Video", "video_id": "m28RAgUySGQ", "keywords": "venture, capital, financing, series", "youtube_id": "m28RAgUySGQ", "readable_id": "going-back-to-the-till-series-b"}, "tZKzaF28sOk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tZKzaF28sOk.mp4/tZKzaF28sOk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tZKzaF28sOk.mp4/tZKzaF28sOk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tZKzaF28sOk.m3u8/tZKzaF28sOk.m3u8"}, "duration": 490, "id": "tZKzaF28sOk", "title": "Polynomial end behavior", "format": "mp4", "description": "", "path": "khan/math/algebra2/polynomial_and_rational/polynomial-end-behavior/polynomial-end-behavior/", "slug": "polynomial-end-behavior", "kind": "Video", "video_id": "tZKzaF28sOk", "keywords": "", "youtube_id": "tZKzaF28sOk", "readable_id": "polynomial-end-behavior"}, "mgNtPOgFje0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mgNtPOgFje0.mp4/mgNtPOgFje0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mgNtPOgFje0.mp4/mgNtPOgFje0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mgNtPOgFje0.m3u8/mgNtPOgFje0.m3u8"}, "duration": 687, "id": "mgNtPOgFje0", "title": "Euler's formula and Euler's identity", "format": "mp4", "description": "Rationale for Euler's Formula and Euler's Identity", "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/euler-s-formula-and-euler-s-identity/", "slug": "euler-s-formula-and-euler-s-identity", "kind": "Video", "video_id": "mgNtPOgFje0", "keywords": "calculus, taylor, maclaurin", "youtube_id": "mgNtPOgFje0", "readable_id": "euler-s-formula-and-euler-s-identity"}, "OiBnhcEA8M4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OiBnhcEA8M4.mp4/OiBnhcEA8M4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OiBnhcEA8M4.mp4/OiBnhcEA8M4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OiBnhcEA8M4.m3u8/OiBnhcEA8M4.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial/sn2-mechanism-and-stereochemistry/", "duration": 760, "id": "OiBnhcEA8M4", "title": "Sn2 mechanism and stereochemistry", "format": "mp4", "description": "", "slug": "sn2-mechanism-and-stereochemistry", "kind": "Video", "video_id": "OiBnhcEA8M4", "keywords": "", "youtube_id": "OiBnhcEA8M4", "readable_id": "sn2-mechanism-and-stereochemistry"}, "w6DDMwsyQaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w6DDMwsyQaA.mp4/w6DDMwsyQaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w6DDMwsyQaA.mp4/w6DDMwsyQaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w6DDMwsyQaA.m3u8/w6DDMwsyQaA.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/high-renaissance1/raphael-portrait-of-pope-julius-ii-1511/", "duration": 251, "id": "w6DDMwsyQaA", "title": "Raphael, Portrait of Pope Julius II", "format": "mp4", "description": "Raphael, Portrait of Pope Julius II, 1511, oil on poplar, 108.7 x 81 cm \n(National Gallery, London)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "raphael-portrait-of-pope-julius-ii-1511", "kind": "Video", "video_id": "w6DDMwsyQaA", "keywords": "Raphael, Pop Julius II, Smarthistory, National Gallery, London, Renaissance art, portraiture, art history", "youtube_id": "w6DDMwsyQaA", "readable_id": "raphael-portrait-of-pope-julius-ii-1511"}, "JfZ38uHaTEk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JfZ38uHaTEk.mp4/JfZ38uHaTEk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JfZ38uHaTEk.mp4/JfZ38uHaTEk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JfZ38uHaTEk.m3u8/JfZ38uHaTEk.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-aortic-dissection-and-aneurysm/aortic-dissection-treatment/", "duration": 543, "id": "JfZ38uHaTEk", "title": "Aortic dissection treatment", "format": "mp4", "description": "", "slug": "aortic-dissection-treatment", "kind": "Video", "video_id": "JfZ38uHaTEk", "keywords": "", "youtube_id": "JfZ38uHaTEk", "readable_id": "aortic-dissection-treatment"}, "DKMWS9qJ_1U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DKMWS9qJ_1U.mp4/DKMWS9qJ_1U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DKMWS9qJ_1U.mp4/DKMWS9qJ_1U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DKMWS9qJ_1U.m3u8/DKMWS9qJ_1U.m3u8"}, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-near-east-ap/standing-male-worshipper/", "duration": 288, "id": "DKMWS9qJ_1U", "title": "Standing Male Worshipper from Tell Asmar", "format": "mp4", "description": "Standing Male Worshipper (votive figure), c. 2900-2600 B.C.E., from the Square Temple at Eshnunna (modern Tell Asmar, Iraq), Sumerian, Early Dynastic I-II, gypsum alabaster, shell, black limestone, bitumen, 11 5/8 x 5 1/8 x 3 7/8 inches / 29.5 x 10 cm (The Metropolitan Museum of Art). Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "standing-male-worshipper", "kind": "Video", "video_id": "DKMWS9qJ_1U", "keywords": "Sumer, art history, mesopotamia, ancient near east, ", "youtube_id": "DKMWS9qJ_1U", "readable_id": "standing-male-worshipper"}, "LoaagZPWvpM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LoaagZPWvpM.mp4/LoaagZPWvpM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LoaagZPWvpM.mp4/LoaagZPWvpM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LoaagZPWvpM.m3u8/LoaagZPWvpM.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/differential-equations-intro/slope-field-to-visualize-solutions/", "duration": 416, "id": "LoaagZPWvpM", "title": "Slope field to visualize solutions", "format": "mp4", "description": "", "slug": "slope-field-to-visualize-solutions", "kind": "Video", "video_id": "LoaagZPWvpM", "keywords": "", "youtube_id": "LoaagZPWvpM", "readable_id": "slope-field-to-visualize-solutions"}, "GonTjrX5PjA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GonTjrX5PjA.mp4/GonTjrX5PjA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GonTjrX5PjA.mp4/GonTjrX5PjA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GonTjrX5PjA.m3u8/GonTjrX5PjA.m3u8"}, "duration": 612, "id": "GonTjrX5PjA", "title": "Reactions at the benzylic position", "format": "mp4", "description": "Free radical bromination, nucleophilic substitution, oxidation", "path": "khan/science/organic-chemistry/aromatic-compounds/other-reactions-and-synthesis/reactions-at-the-benzylic-position/", "slug": "reactions-at-the-benzylic-position", "kind": "Video", "video_id": "GonTjrX5PjA", "keywords": "", "youtube_id": "GonTjrX5PjA", "readable_id": "reactions-at-the-benzylic-position"}, "KyJs9H0vzTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KyJs9H0vzTM.mp4/KyJs9H0vzTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KyJs9H0vzTM.mp4/KyJs9H0vzTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KyJs9H0vzTM.m3u8/KyJs9H0vzTM.m3u8"}, "duration": 757, "id": "KyJs9H0vzTM", "title": "Cancerous colon tissue", "format": "mp4", "description": "Dr. Andy Connolly of Stanford Medical School shows us what cancerous colon tissue looks like", "path": "khan/science/health-and-medicine/healthcare-misc/cancerous-colon-tissue/", "slug": "cancerous-colon-tissue", "kind": "Video", "video_id": "KyJs9H0vzTM", "keywords": "cancer, histology, pathology, colon, tissue", "youtube_id": "KyJs9H0vzTM", "readable_id": "cancerous-colon-tissue"}, "l3OkPYhDi9w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l3OkPYhDi9w.mp4/l3OkPYhDi9w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l3OkPYhDi9w.mp4/l3OkPYhDi9w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l3OkPYhDi9w.m3u8/l3OkPYhDi9w.m3u8"}, "duration": 672, "id": "l3OkPYhDi9w", "title": "Toggler brain teaser", "format": "mp4", "description": "Separating the truthteller from the togglers!", "path": "khan/math/recreational-math/puzzles/brain-teasers/toggler-brain-teaser/", "slug": "toggler-brain-teaser", "kind": "Video", "video_id": "l3OkPYhDi9w", "keywords": "math, logic, brain, teaser", "youtube_id": "l3OkPYhDi9w", "readable_id": "toggler-brain-teaser"}, "zVLjWIftX_o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zVLjWIftX_o.mp4/zVLjWIftX_o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zVLjWIftX_o.mp4/zVLjWIftX_o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zVLjWIftX_o.m3u8/zVLjWIftX_o.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-subtract-10/relating-addition-and-subtraction/", "duration": 125, "id": "zVLjWIftX_o", "title": "Relating addition and subtraction", "format": "mp4", "description": "See the relationship between 2+3=5, 5-2=3, and 5-3=2.", "slug": "relating-addition-and-subtraction", "kind": "Video", "video_id": "zVLjWIftX_o", "keywords": "", "youtube_id": "zVLjWIftX_o", "readable_id": "relating-addition-and-subtraction"}, "VVlmNg8Udq8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VVlmNg8Udq8.mp4/VVlmNg8Udq8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VVlmNg8Udq8.mp4/VVlmNg8Udq8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VVlmNg8Udq8.m3u8/VVlmNg8Udq8.m3u8"}, "path": "khan/humanities/art-asia/southeast-asia/bali/balinese-mask-carver/", "duration": 40, "id": "VVlmNg8Udq8", "title": "Balinese mask carver", "format": "mp4", "description": "Artist Wayan Sira carves a mask at his home in Gianyar, Bali.\u00a0", "slug": "balinese-mask-carver", "kind": "Video", "video_id": "VVlmNg8Udq8", "keywords": "", "youtube_id": "VVlmNg8Udq8", "readable_id": "balinese-mask-carver"}, "k4e70nG3T8U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/k4e70nG3T8U.mp4/k4e70nG3T8U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/k4e70nG3T8U.mp4/k4e70nG3T8U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/k4e70nG3T8U.m3u8/k4e70nG3T8U.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/testosterone/", "duration": 577, "id": "k4e70nG3T8U", "title": "Testosterone", "format": "mp4", "description": "", "slug": "testosterone", "kind": "Video", "video_id": "k4e70nG3T8U", "keywords": "", "youtube_id": "k4e70nG3T8U", "readable_id": "testosterone"}, "VdaTuNbyDHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VdaTuNbyDHg.mp4/VdaTuNbyDHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VdaTuNbyDHg.mp4/VdaTuNbyDHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VdaTuNbyDHg.m3u8/VdaTuNbyDHg.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/takayasu-arteritis/", "duration": 436, "id": "VdaTuNbyDHg", "title": "Takayasu arteritis", "format": "mp4", "description": "Takayasu arteritis (also known as the pulseless disease) is a type of vasculitis that affects large arteries and leads to significant narrowing of the vasculature. Patients with takayasu arteritis can have symptoms like weak or absent pulses in extremities, widely varying blood pressures, and dizziness. Learn how health care professionals diagnosis takayasu arteritis by examining blood work (such as erythrocyte sedimentation rate, granulomas), and taking samples (biopsies) of vascular tissue,", "slug": "takayasu-arteritis", "kind": "Video", "video_id": "VdaTuNbyDHg", "keywords": "", "youtube_id": "VdaTuNbyDHg", "readable_id": "takayasu-arteritis"}, "ZZ39o1rAZWY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ZZ39o1rAZWY.mp4/ZZ39o1rAZWY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ZZ39o1rAZWY.mp4/ZZ39o1rAZWY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ZZ39o1rAZWY.m3u8/ZZ39o1rAZWY.m3u8"}, "duration": 766, "id": "ZZ39o1rAZWY", "title": "Projectile at an angle", "format": "mp4", "description": "Figuring out the horizontal displacement for a projectile launched at an angle", "path": "khan/science/physics/two-dimensional-motion/two-dimensional-projectile-mot/projectile-at-an-angle/", "slug": "projectile-at-an-angle", "kind": "Video", "video_id": "ZZ39o1rAZWY", "keywords": "physics, projectile, component, launch, motion", "youtube_id": "ZZ39o1rAZWY", "readable_id": "projectile-at-an-angle"}, "vAW9t5uBr08": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vAW9t5uBr08.mp4/vAW9t5uBr08.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vAW9t5uBr08.mp4/vAW9t5uBr08.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vAW9t5uBr08.m3u8/vAW9t5uBr08.m3u8"}, "path": "khan/science/organic-chemistry/aromatic-compounds/aromatic-stability/aromatic-heterocycles-i/", "duration": 707, "id": "vAW9t5uBr08", "title": "Aromatic heterocycles I", "format": "mp4", "description": "The aromaticity of pyridine and pyrimidine.", "slug": "aromatic-heterocycles-i", "kind": "Video", "video_id": "vAW9t5uBr08", "keywords": "", "youtube_id": "vAW9t5uBr08", "readable_id": "aromatic-heterocycles-i"}, "aX_7X_P6rEM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aX_7X_P6rEM.mp4/aX_7X_P6rEM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aX_7X_P6rEM.mp4/aX_7X_P6rEM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aX_7X_P6rEM.m3u8/aX_7X_P6rEM.m3u8"}, "path": "khan/science/organic-chemistry/stereochemistry-topic/diastereomers-meso-compounds/meso-compounds-final/", "duration": 680, "id": "aX_7X_P6rEM", "title": "Meso compounds", "format": "mp4", "description": "", "slug": "meso-compounds-final", "kind": "Video", "video_id": "aX_7X_P6rEM", "keywords": "", "youtube_id": "aX_7X_P6rEM", "readable_id": "meso-compounds-final"}, "nW1rxuQft1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nW1rxuQft1o.mp4/nW1rxuQft1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nW1rxuQft1o.mp4/nW1rxuQft1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nW1rxuQft1o.m3u8/nW1rxuQft1o.m3u8"}, "duration": 349, "id": "nW1rxuQft1o", "title": "Open-end mutual fund redemptions", "format": "mp4", "description": "Understanding the mechanics of an open end mutual fund a bit better", "path": "khan/economics-finance-domain/core-finance/investment-vehicles-tutorial/mutual-funds/open-end-mutual-fund-redemptions/", "slug": "open-end-mutual-fund-redemptions", "kind": "Video", "video_id": "nW1rxuQft1o", "keywords": "mutual, fund, finance", "youtube_id": "nW1rxuQft1o", "readable_id": "open-end-mutual-fund-redemptions"}, "cKkacTkCjjs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cKkacTkCjjs.mp4/cKkacTkCjjs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cKkacTkCjjs.mp4/cKkacTkCjjs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cKkacTkCjjs.m3u8/cKkacTkCjjs.m3u8"}, "path": "khan/computing/computer-science/informationtheory/info-theory/history-of-optical-telegraphs-language-of-coins-5-9/", "duration": 560, "id": "cKkacTkCjjs", "title": "Visual telegraphs (case study)", "format": "mp4", "description": "The history of visual telegraphs", "slug": "history-of-optical-telegraphs-language-of-coins-5-9", "kind": "Video", "video_id": "cKkacTkCjjs", "keywords": "telegraph", "youtube_id": "cKkacTkCjjs", "readable_id": "history-of-optical-telegraphs-language-of-coins-5-9"}, "SbbBzV6pcFg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SbbBzV6pcFg.mp4/SbbBzV6pcFg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SbbBzV6pcFg.mp4/SbbBzV6pcFg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SbbBzV6pcFg.m3u8/SbbBzV6pcFg.m3u8"}, "duration": 337, "id": "SbbBzV6pcFg", "title": "A Crash Course on Indoor Flying Robots", "format": "mp4", "description": "Learn the physics behind how quadrotors fly and find out how they can by themselves without human help.", "path": "indoor-flying-robots/", "slug": "indoor-flying-robots", "kind": "Video", "video_id": "SbbBzV6pcFg", "keywords": "MIT, M.I.T., K-12, K12, engineering, teaching, learning, demo*, science, Physics, Transportation, K12 (Education)", "youtube_id": "SbbBzV6pcFg", "readable_id": "indoor-flying-robots"}, "l7p1X5pdDoc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l7p1X5pdDoc.mp4/l7p1X5pdDoc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l7p1X5pdDoc.mp4/l7p1X5pdDoc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l7p1X5pdDoc.m3u8/l7p1X5pdDoc.m3u8"}, "path": "khan/math/precalculus/precalc-matrices/zero-identity-matrix-tutorial/identity-matrix-dimensions/", "duration": 224, "id": "l7p1X5pdDoc", "title": "Dimensions of identity matrix", "format": "mp4", "description": "", "slug": "identity-matrix-dimensions", "kind": "Video", "video_id": "l7p1X5pdDoc", "keywords": "", "youtube_id": "l7p1X5pdDoc", "readable_id": "identity-matrix-dimensions"}, "6HTBjvqn9uw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6HTBjvqn9uw.mp4/6HTBjvqn9uw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6HTBjvqn9uw.mp4/6HTBjvqn9uw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6HTBjvqn9uw.m3u8/6HTBjvqn9uw.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/edgar-degas-at-the-races-in-the-countryside-1869/", "duration": 232, "id": "6HTBjvqn9uw", "title": "Degas, At the Races in the Countryside", "format": "mp4", "description": "Edgar Degas, At the Races in the Countryside, 1869, oil on canvas, 36.5 x 55.9 cm / 14-3/8 x 22 inches (Museum of Fine Arts, Boston)", "slug": "edgar-degas-at-the-races-in-the-countryside-1869", "kind": "Video", "video_id": "6HTBjvqn9uw", "keywords": "Degas, Races, GAP, Art History, Khan Academy, Paris, Impressionism, Edgar Degas, Landscape, Family, smarthistory, OER, Museum of Fine Arts, Boston, 1869", "youtube_id": "6HTBjvqn9uw", "readable_id": "edgar-degas-at-the-races-in-the-countryside-1869"}, "Aq3a-_O2NcI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Aq3a-_O2NcI.mp4/Aq3a-_O2NcI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Aq3a-_O2NcI.mp4/Aq3a-_O2NcI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Aq3a-_O2NcI.m3u8/Aq3a-_O2NcI.m3u8"}, "duration": 588, "id": "Aq3a-_O2NcI", "title": "Bitcoin: Digital signatures", "format": "mp4", "description": "A high-level explanation of digital signature schemes, which are a fundamental building block in many cryptographic protocols.", "path": "bitcoin-digital-signatures/", "slug": "bitcoin-digital-signatures", "kind": "Video", "video_id": "Aq3a-_O2NcI", "keywords": "bitcoin, currency", "youtube_id": "Aq3a-_O2NcI", "readable_id": "bitcoin-digital-signatures"}, "sQfsql8BPy0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sQfsql8BPy0.mp4/sQfsql8BPy0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sQfsql8BPy0.mp4/sQfsql8BPy0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sQfsql8BPy0.m3u8/sQfsql8BPy0.m3u8"}, "path": "khan/math/geometry/transformations/properties-definitions-of-translations/rotating-segment-about-orgin-example/", "duration": 77, "id": "sQfsql8BPy0", "title": "Rotating segment about origin example", "format": "mp4", "description": "", "slug": "rotating-segment-about-orgin-example", "kind": "Video", "video_id": "sQfsql8BPy0", "keywords": "", "youtube_id": "sQfsql8BPy0", "readable_id": "rotating-segment-about-orgin-example"}, "8IR5LefXVPY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8IR5LefXVPY.mp4/8IR5LefXVPY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8IR5LefXVPY.mp4/8IR5LefXVPY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8IR5LefXVPY.m3u8/8IR5LefXVPY.m3u8"}, "duration": 561, "id": "8IR5LefXVPY", "title": "The housing price conundrum", "format": "mp4", "description": "Why did housing prices go up so much from 2000-2006 even though classical supply/demand would not have called for it", "path": "khan/economics-finance-domain/core-finance/current-economics/credit-crisis/the-housing-price-conundrum/", "slug": "the-housing-price-conundrum", "kind": "Video", "video_id": "8IR5LefXVPY", "keywords": "economics, housing, prices, appreciation, incomes", "youtube_id": "8IR5LefXVPY", "readable_id": "the-housing-price-conundrum"}, "QExvrgjEqoQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QExvrgjEqoQ.mp4/QExvrgjEqoQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QExvrgjEqoQ.mp4/QExvrgjEqoQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QExvrgjEqoQ.m3u8/QExvrgjEqoQ.m3u8"}, "duration": 109, "id": "QExvrgjEqoQ", "title": "Glassmaking technique: mold-blown glass", "format": "mp4", "description": "Mold-blown glass is made by blowing hot glass into a mold made of clay, wood, or metal. Watch a glassmaker use a mold with incised designs (footage from the Corning Museum of Glass). Love art? Follow us on Google+", "path": "glassmaking-technique-mold-blown-glass/", "slug": "glassmaking-technique-mold-blown-glass", "kind": "Video", "video_id": "QExvrgjEqoQ", "keywords": "", "youtube_id": "QExvrgjEqoQ", "readable_id": "glassmaking-technique-mold-blown-glass"}, "AUqeb9Z3y3k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AUqeb9Z3y3k.mp4/AUqeb9Z3y3k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AUqeb9Z3y3k.mp4/AUqeb9Z3y3k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AUqeb9Z3y3k.m3u8/AUqeb9Z3y3k.m3u8"}, "duration": 993, "id": "AUqeb9Z3y3k", "title": "Matrices to solve a system of equations", "format": "mp4", "description": "Using the inverse of a matrix to solve a system of equations.", "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/matrices-to-solve-a-system-of-equations/", "slug": "matrices-to-solve-a-system-of-equations", "kind": "Video", "video_id": "AUqeb9Z3y3k", "keywords": "matrix, algebra, inverse, matrices", "youtube_id": "AUqeb9Z3y3k", "readable_id": "matrices-to-solve-a-system-of-equations"}, "scN-1B6plos": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/scN-1B6plos.mp4/scN-1B6plos.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/scN-1B6plos.mp4/scN-1B6plos.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/scN-1B6plos.m3u8/scN-1B6plos.m3u8"}, "duration": 318, "id": "scN-1B6plos", "title": "Shifts in aggregate demand", "format": "mp4", "description": "Factors that might shift aggregate demand", "path": "khan/economics-finance-domain/macroeconomics/aggregate-supply-demand-topic/aggregate-supply-demand-tut/shifts-in-aggregate-demand/", "slug": "shifts-in-aggregate-demand", "kind": "Video", "video_id": "scN-1B6plos", "keywords": "macroeconomics, microeconomics", "youtube_id": "scN-1B6plos", "readable_id": "shifts-in-aggregate-demand"}, "4eLJGG2Ad30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4eLJGG2Ad30.mp4/4eLJGG2Ad30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4eLJGG2Ad30.mp4/4eLJGG2Ad30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4eLJGG2Ad30.m3u8/4eLJGG2Ad30.m3u8"}, "duration": 368, "id": "4eLJGG2Ad30", "title": "Histograms", "format": "mp4", "description": "Histograms", "path": "khan/math/pre-algebra/applying-math-reasoning-topic/reading_data/histograms/", "slug": "histograms", "kind": "Video", "video_id": "4eLJGG2Ad30", "keywords": "Histograms, CC_6_SP_4", "youtube_id": "4eLJGG2Ad30", "readable_id": "histograms"}, "9g-r2007Y8c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9g-r2007Y8c.mp4/9g-r2007Y8c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9g-r2007Y8c.mp4/9g-r2007Y8c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9g-r2007Y8c.m3u8/9g-r2007Y8c.m3u8"}, "path": "khan/humanities/renaissance-reformation/renaissance-venice/late-renaissance-venice/paolo-veronese-feast-in-the-house-of-levi-1573/", "duration": 370, "id": "9g-r2007Y8c", "title": "Paolo Veronese. Feast in the House of Levi", "format": "mp4", "description": "Paolo Veronese, Feast in the House of Levi, 1573, oil on canvas, 18 feet 3 inches x 42 feet, Accademia, Venice Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "paolo-veronese-feast-in-the-house-of-levi-1573", "kind": "Video", "video_id": "9g-r2007Y8c", "keywords": "Veronese, Venice, Renaissance, painting, history, inquisition, trial", "youtube_id": "9g-r2007Y8c", "readable_id": "paolo-veronese-feast-in-the-house-of-levi-1573"}, "5-ZFOhHQS68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5-ZFOhHQS68.mp4/5-ZFOhHQS68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5-ZFOhHQS68.mp4/5-ZFOhHQS68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5-ZFOhHQS68.m3u8/5-ZFOhHQS68.m3u8"}, "path": "khan/science/physics/forces-newtons-laws/newtons-laws-of-motion/newton-s-1st-law-of-motion/", "duration": 326, "id": "5-ZFOhHQS68", "title": "Newton's first law of motion", "format": "mp4", "description": "Basic primer on Newton's First Law of Motion", "slug": "newton-s-1st-law-of-motion", "kind": "Video", "video_id": "5-ZFOhHQS68", "keywords": "newton, physics, galileo, decartes", "youtube_id": "5-ZFOhHQS68", "readable_id": "newton-s-1st-law-of-motion"}, "pgfWkaySFGY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pgfWkaySFGY.mp4/pgfWkaySFGY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pgfWkaySFGY.mp4/pgfWkaySFGY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pgfWkaySFGY.m3u8/pgfWkaySFGY.m3u8"}, "duration": 183, "id": "pgfWkaySFGY", "title": "Inductive reasoning 3", "format": "mp4", "description": "Inductive Reasoning 3", "path": "khan/math/precalculus/seq_induction/deductive-and-inductive-reasoning/inductive-reasoning-3/", "slug": "inductive-reasoning-3", "kind": "Video", "video_id": "pgfWkaySFGY", "keywords": "U12_L1_T3_we3, Inductive, Reasoning, CC_6_EE_3", "youtube_id": "pgfWkaySFGY", "readable_id": "inductive-reasoning-3"}, "j5xis6Hlnds": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/j5xis6Hlnds.mp4/j5xis6Hlnds.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/j5xis6Hlnds.mp4/j5xis6Hlnds.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/j5xis6Hlnds.m3u8/j5xis6Hlnds.m3u8"}, "duration": 166, "id": "j5xis6Hlnds", "title": "Dilating from an arbitrary point example", "format": "mp4", "description": "", "path": "khan/math/geometry/transformations/dilations-scaling/dilating-from-an-arbitrary-point-example/", "slug": "dilating-from-an-arbitrary-point-example", "kind": "Video", "video_id": "j5xis6Hlnds", "keywords": "", "youtube_id": "j5xis6Hlnds", "readable_id": "dilating-from-an-arbitrary-point-example"}, "Df9h5t64NlQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Df9h5t64NlQ.mp4/Df9h5t64NlQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Df9h5t64NlQ.mp4/Df9h5t64NlQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Df9h5t64NlQ.m3u8/Df9h5t64NlQ.m3u8"}, "path": "khan/math/pre-algebra/factors-multiples/divisibility_tests/divisibility-tests-for-2-3-4-5-6-9-10/", "duration": 393, "id": "Df9h5t64NlQ", "title": "Divisibility tests for 2, 3, 4, 5, 6, 9, 10", "format": "mp4", "description": "Worked example of basic divisibility tests", "slug": "divisibility-tests-for-2-3-4-5-6-9-10", "kind": "Video", "video_id": "Df9h5t64NlQ", "keywords": "", "youtube_id": "Df9h5t64NlQ", "readable_id": "divisibility-tests-for-2-3-4-5-6-9-10"}, "YyjpeoxdUXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YyjpeoxdUXc.mp4/YyjpeoxdUXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YyjpeoxdUXc.mp4/YyjpeoxdUXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YyjpeoxdUXc.m3u8/YyjpeoxdUXc.m3u8"}, "duration": 143, "id": "YyjpeoxdUXc", "title": "Interpreting a graph exercise example", "format": "mp4", "description": "", "path": "interpreting-a-graph-exercise-example/", "slug": "interpreting-a-graph-exercise-example", "kind": "Video", "video_id": "YyjpeoxdUXc", "keywords": "", "youtube_id": "YyjpeoxdUXc", "readable_id": "interpreting-a-graph-exercise-example"}, "sazsDYOXVis": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sazsDYOXVis.mp4/sazsDYOXVis.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sazsDYOXVis.mp4/sazsDYOXVis.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sazsDYOXVis.m3u8/sazsDYOXVis.m3u8"}, "path": "khan/humanities/becoming-modern/symbolism/hector-guimard-cit-entrance-paris-m-tropolitain-c-1900/", "duration": 297, "id": "sazsDYOXVis", "title": "Hector Guimard, Cit\u00e9 entrance, Paris M\u00e9tropolitain", "format": "mp4", "description": "Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "hector-guimard-cit-entrance-paris-m-tropolitain-c-1900", "kind": "Video", "video_id": "sazsDYOXVis", "keywords": "", "youtube_id": "sazsDYOXVis", "readable_id": "hector-guimard-cit-entrance-paris-m-tropolitain-c-1900"}, "1-9n4Upditg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1-9n4Upditg.mp4/1-9n4Upditg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1-9n4Upditg.mp4/1-9n4Upditg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1-9n4Upditg.m3u8/1-9n4Upditg.m3u8"}, "duration": 602, "id": "1-9n4Upditg", "title": "GMAT: Math 49", "format": "mp4", "description": "227-231, pgs. 183-184", "path": "khan/test-prep/gmat/problem-solving/gmat-math-49/", "slug": "gmat-math-49", "kind": "Video", "video_id": "1-9n4Upditg", "keywords": "GMAT, Math, problem, solving", "youtube_id": "1-9n4Upditg", "readable_id": "gmat-math-49"}, "X3JqIZR1XcY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/X3JqIZR1XcY.mp4/X3JqIZR1XcY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/X3JqIZR1XcY.mp4/X3JqIZR1XcY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/X3JqIZR1XcY.m3u8/X3JqIZR1XcY.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/regrouping-whole-numbers/regrouping-whole-numbers/", "duration": 263, "id": "X3JqIZR1XcY", "title": "Regrouping whole numbers", "format": "mp4", "description": "A number like 675 is really an addition problem. Each place value is added together to form the sum (the number). If we regroup the numbers thereby changing the individual place values, we still don't change the outcome. It's still the same number!", "slug": "regrouping-whole-numbers", "kind": "Video", "video_id": "X3JqIZR1XcY", "keywords": "", "youtube_id": "X3JqIZR1XcY", "readable_id": "regrouping-whole-numbers"}, "LSu1HGjPFm4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LSu1HGjPFm4.mp4/LSu1HGjPFm4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LSu1HGjPFm4.mp4/LSu1HGjPFm4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LSu1HGjPFm4.m3u8/LSu1HGjPFm4.m3u8"}, "path": "khan/test-prep/mcat/individuals-and-society/social-interactions/organizations-and-bureaucratization/", "duration": 299, "id": "LSu1HGjPFm4", "title": "Organizations and bureaucratization", "format": "mp4", "description": "", "slug": "organizations-and-bureaucratization", "kind": "Video", "video_id": "LSu1HGjPFm4", "keywords": "", "youtube_id": "LSu1HGjPFm4", "readable_id": "organizations-and-bureaucratization"}, "omMfj_wNNOw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/omMfj_wNNOw.mp4/omMfj_wNNOw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/omMfj_wNNOw.mp4/omMfj_wNNOw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/omMfj_wNNOw.m3u8/omMfj_wNNOw.m3u8"}, "duration": 419, "id": "omMfj_wNNOw", "title": "Craftsman Allan Breed Turns and Carves a Duncan Phyfe Bedpost", "format": "mp4", "description": "Allan Breed turns and carves a bedpost after the renowned nineteenth-century furniture maker Duncan Phyfe, taking us through the carving of a leaf motif. As he works, Breed explains the cuts, the tools, and the intricate and highly refined techniques and behind each move, describing not only the practical methods but also the poetic rhythm of cabinetmaking.\n\nRead more about Duncan Phyfe on the Heilbrunn Timeline of Art History.", "path": "lowreliefbedpost/", "slug": "lowreliefbedpost", "kind": "Video", "video_id": "omMfj_wNNOw", "keywords": "cabinet, bedpost, furniture, carving, leaf, ornate", "youtube_id": "omMfj_wNNOw", "readable_id": "lowreliefbedpost"}, "GxQAAqRzwNw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GxQAAqRzwNw.mp4/GxQAAqRzwNw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GxQAAqRzwNw.mp4/GxQAAqRzwNw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GxQAAqRzwNw.m3u8/GxQAAqRzwNw.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/labor-parturition/", "duration": 622, "id": "GxQAAqRzwNw", "title": "Labor (parturition)", "format": "mp4", "description": "", "slug": "labor-parturition", "kind": "Video", "video_id": "GxQAAqRzwNw", "keywords": "", "youtube_id": "GxQAAqRzwNw", "readable_id": "labor-parturition"}, "fDEwHN32lFk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fDEwHN32lFk.mp4/fDEwHN32lFk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fDEwHN32lFk.mp4/fDEwHN32lFk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fDEwHN32lFk.m3u8/fDEwHN32lFk.m3u8"}, "duration": 389, "id": "fDEwHN32lFk", "title": "Keren Cytter: Radical gender reversals and theatrical performance", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nWhat if you woke up one morning as the opposite sex? Israeli artist Keren Cytter\u2019s live piece bridges dance, theatre, and film in a performance that envisions a world in which every man has mysteriously woken up in the morning as a woman, and vice versa. The repercussions of this event have a domino effect on society, sexual politics, and personal identity, ultimately leading to a revolution of the men-turned-women who are suddenly aware of the effects of marginalisation, as Cytter playfully tells the story via film, language, imagery, choreography, performance and light projections.\nFiction and reality fuse in History in the Making or the Secret Diaries of Linda Schultz. What does this piece have to say about gender and the notion of change? Is change necessarily good or bad, or a little bit of both?\n", "path": "keren-cytter/", "slug": "keren-cytter", "kind": "Video", "video_id": "fDEwHN32lFk", "keywords": "Tate", "youtube_id": "fDEwHN32lFk", "readable_id": "keren-cytter"}, "6udRtn5jSWk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6udRtn5jSWk.mp4/6udRtn5jSWk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6udRtn5jSWk.mp4/6udRtn5jSWk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6udRtn5jSWk.m3u8/6udRtn5jSWk.m3u8"}, "duration": 581, "id": "6udRtn5jSWk", "title": "Perfect inelasticity and perfect elasticity of demand", "format": "mp4", "description": "Extreme examples of price elasticity of demand", "path": "khan/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial/perfect-inelasticity-and-perfect-elasticity-of-demand/", "slug": "perfect-inelasticity-and-perfect-elasticity-of-demand", "kind": "Video", "video_id": "6udRtn5jSWk", "keywords": "elasticity, economics", "youtube_id": "6udRtn5jSWk", "readable_id": "perfect-inelasticity-and-perfect-elasticity-of-demand"}, "ajLgwCygHsc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ajLgwCygHsc.mp4/ajLgwCygHsc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ajLgwCygHsc.mp4/ajLgwCygHsc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ajLgwCygHsc.m3u8/ajLgwCygHsc.m3u8"}, "duration": 729, "id": "ajLgwCygHsc", "title": "Regulation of blood pressure with baroreceptors", "format": "mp4", "description": "Learn about how the arteries use nerve impulses to help regulate blood pressure. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/rn-blood-pressure-control/regulation-of-blood-pressure-with-baroreceptors/", "slug": "regulation-of-blood-pressure-with-baroreceptors", "kind": "Video", "video_id": "ajLgwCygHsc", "keywords": "", "youtube_id": "ajLgwCygHsc", "readable_id": "regulation-of-blood-pressure-with-baroreceptors"}, "YTRimTJ5nX4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YTRimTJ5nX4.mp4/YTRimTJ5nX4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YTRimTJ5nX4.mp4/YTRimTJ5nX4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YTRimTJ5nX4.m3u8/YTRimTJ5nX4.m3u8"}, "duration": 276, "id": "YTRimTJ5nX4", "title": "Area of diagonal generated triangles of rectangle are equal", "format": "mp4", "description": "Area of Diagonal Generated Triangles of Rectangle are Equal", "path": "khan/math/geometry/basic-geometry/perimeter_area_tutorial/area-of-diagonal-generated-triangles-of-rectangle-are-equal/", "slug": "area-of-diagonal-generated-triangles-of-rectangle-are-equal", "kind": "Video", "video_id": "YTRimTJ5nX4", "keywords": "Area, of, Diagonal, Generated, Triangles, Rectangle, are, Equal, CC_6_G_1", "youtube_id": "YTRimTJ5nX4", "readable_id": "area-of-diagonal-generated-triangles-of-rectangle-are-equal"}, "YO_SwIKGMqQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YO_SwIKGMqQ.mp4/YO_SwIKGMqQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YO_SwIKGMqQ.mp4/YO_SwIKGMqQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YO_SwIKGMqQ.m3u8/YO_SwIKGMqQ.m3u8"}, "duration": 335, "id": "YO_SwIKGMqQ", "title": "Subtracting rational expressions", "format": "mp4", "description": "Subtracting Rational Expressions", "path": "khan/math/algebra2/rational-expressions/rational_expressions/subtracting-rational-expressions/", "slug": "subtracting-rational-expressions", "kind": "Video", "video_id": "YO_SwIKGMqQ", "keywords": "u15_l1_t3_we3, Subtracting, Rational, Expressions, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "YO_SwIKGMqQ", "readable_id": "subtracting-rational-expressions"}, "KCehC_3CBBY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KCehC_3CBBY.mp4/KCehC_3CBBY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KCehC_3CBBY.mp4/KCehC_3CBBY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KCehC_3CBBY.m3u8/KCehC_3CBBY.m3u8"}, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-word-problem-4/", "duration": 80, "id": "KCehC_3CBBY", "title": "Multiplying fractions word problem: laundry emergency", "format": "mp4", "description": "Someone is about to run out of laundry detergent which means sticky clothes! Help her estimate how much she has left.", "slug": "multiplying-fractions-word-problem-4", "kind": "Video", "video_id": "KCehC_3CBBY", "keywords": "", "youtube_id": "KCehC_3CBBY", "readable_id": "multiplying-fractions-word-problem-4"}, "sPTuCE5zd3s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/sPTuCE5zd3s.mp4/sPTuCE5zd3s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/sPTuCE5zd3s.mp4/sPTuCE5zd3s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/sPTuCE5zd3s.m3u8/sPTuCE5zd3s.m3u8"}, "path": "khan/math/integral-calculus/ap_calc_topic/bc_sample_questions/ap-calculus-bc-exams-2008-1-d/", "duration": 322, "id": "sPTuCE5zd3s", "title": "AP Calculus BC exams: 2008 1 d", "format": "mp4", "description": "Part 1d of the 2008 AP Calculus BC exam (free response)", "slug": "ap-calculus-bc-exams-2008-1-d", "kind": "Video", "video_id": "sPTuCE5zd3s", "keywords": "calculus, BC, exam", "youtube_id": "sPTuCE5zd3s", "readable_id": "ap-calculus-bc-exams-2008-1-d"}, "gW-7yeUW7-k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gW-7yeUW7-k.mp4/gW-7yeUW7-k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gW-7yeUW7-k.mp4/gW-7yeUW7-k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gW-7yeUW7-k.m3u8/gW-7yeUW7-k.m3u8"}, "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/soldering-saftey/", "duration": 173, "id": "gW-7yeUW7-k", "title": "Soldering Saftey", "format": "mp4", "description": "", "slug": "soldering-saftey", "kind": "Video", "video_id": "gW-7yeUW7-k", "keywords": "", "youtube_id": "gW-7yeUW7-k", "readable_id": "soldering-saftey"}, "tOX3RkH2guE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tOX3RkH2guE.mp4/tOX3RkH2guE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tOX3RkH2guE.mp4/tOX3RkH2guE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tOX3RkH2guE.m3u8/tOX3RkH2guE.m3u8"}, "duration": 652, "id": "tOX3RkH2guE", "title": "Divergence 2", "format": "mp4", "description": "The intuition of what the divergence of a vector field is.", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/divergence/divergence-2/", "slug": "divergence-2", "kind": "Video", "video_id": "tOX3RkH2guE", "keywords": "divergence, vector", "youtube_id": "tOX3RkH2guE", "readable_id": "divergence-2"}, "GAhZuUYkGyo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GAhZuUYkGyo.mp4/GAhZuUYkGyo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GAhZuUYkGyo.mp4/GAhZuUYkGyo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GAhZuUYkGyo.m3u8/GAhZuUYkGyo.m3u8"}, "path": "khan/college-admissions/get-started/access-to-college/ss-social-obstacles/", "duration": 57, "id": "GAhZuUYkGyo", "title": "Student story: Overcoming social obstacles to college", "format": "mp4", "description": "", "slug": "ss-social-obstacles", "kind": "Video", "video_id": "GAhZuUYkGyo", "keywords": "", "youtube_id": "GAhZuUYkGyo", "readable_id": "ss-social-obstacles"}, "VExW4SNt3Ko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VExW4SNt3Ko.mp4/VExW4SNt3Ko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VExW4SNt3Ko.mp4/VExW4SNt3Ko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VExW4SNt3Ko.m3u8/VExW4SNt3Ko.m3u8"}, "duration": 151, "id": "VExW4SNt3Ko", "title": "Inside the Collections: Paleontology and the Big Bone Room", "format": "mp4", "description": "Paleontology Collections Manager Carl Mehling gives us a behind-the-scenes tour of the Big Bone Room, which houses some of the largest items in the Paleontology collection. Its holdings include one of the largest complete limb bones in the world: the 650-pound thigh bone of the long-necked, plant-eating dinosaur Camarasaurus. More than 3 million specimens make up the Museum's world-class paleontology collections, and only a small fraction can be displayed at any given time. The rest are stored behind the scenes, where they continue to be studied by Museum scientists and their colleagues.", "path": "big-bone-room/", "slug": "big-bone-room", "kind": "Video", "video_id": "VExW4SNt3Ko", "keywords": "", "youtube_id": "VExW4SNt3Ko", "readable_id": "big-bone-room"}, "iKKF5yuxvg8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/iKKF5yuxvg8.mp4/iKKF5yuxvg8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/iKKF5yuxvg8.mp4/iKKF5yuxvg8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/iKKF5yuxvg8.m3u8/iKKF5yuxvg8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system-diseases/rn-diabetes/acute-complications-of-diabetes-hyperosmolar-hyperglycemic-nonketotic-state/", "duration": 625, "id": "iKKF5yuxvg8", "title": "Acute complications of diabetes - Hyperosmolar hyperglycemic nonketotic state", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "acute-complications-of-diabetes-hyperosmolar-hyperglycemic-nonketotic-state", "kind": "Video", "video_id": "iKKF5yuxvg8", "keywords": "", "youtube_id": "iKKF5yuxvg8", "readable_id": "acute-complications-of-diabetes-hyperosmolar-hyperglycemic-nonketotic-state"}, "Icakt3gQDtE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Icakt3gQDtE.mp4/Icakt3gQDtE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Icakt3gQDtE.mp4/Icakt3gQDtE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Icakt3gQDtE.m3u8/Icakt3gQDtE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-cystic-fibrosis/cystic-fibrosis-treatment/", "duration": 359, "id": "Icakt3gQDtE", "title": "Cystic fibrosis treatments", "format": "mp4", "description": "", "slug": "cystic-fibrosis-treatment", "kind": "Video", "video_id": "Icakt3gQDtE", "keywords": "", "youtube_id": "Icakt3gQDtE", "readable_id": "cystic-fibrosis-treatment"}, "WU9g4CvZyR0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WU9g4CvZyR0.mp4/WU9g4CvZyR0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WU9g4CvZyR0.mp4/WU9g4CvZyR0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WU9g4CvZyR0.m3u8/WU9g4CvZyR0.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-graphing-lines-slope/solutions-graphs-two-variable-equations/determining-a-linear-equation-by-trying-out-values-from-a-table/", "duration": 216, "id": "WU9g4CvZyR0", "title": "Determining a linear equation by checking solutions", "format": "mp4", "description": "", "slug": "determining-a-linear-equation-by-trying-out-values-from-a-table", "kind": "Video", "video_id": "WU9g4CvZyR0", "keywords": "", "youtube_id": "WU9g4CvZyR0", "readable_id": "determining-a-linear-equation-by-trying-out-values-from-a-table"}, "NNhyZFHAzaA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NNhyZFHAzaA.mp4/NNhyZFHAzaA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NNhyZFHAzaA.mp4/NNhyZFHAzaA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NNhyZFHAzaA.m3u8/NNhyZFHAzaA.m3u8"}, "duration": 291, "id": "NNhyZFHAzaA", "title": "Accrual basis of accounting", "format": "mp4", "description": "Simple example of accrual accounting", "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/cash-accrual-accounting/accrual-basis-of-accounting/", "slug": "accrual-basis-of-accounting", "kind": "Video", "video_id": "NNhyZFHAzaA", "keywords": "accrual, deferred, revenue, receivables", "youtube_id": "NNhyZFHAzaA", "readable_id": "accrual-basis-of-accounting"}, "EWobKZYmPik": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EWobKZYmPik.mp4/EWobKZYmPik.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EWobKZYmPik.mp4/EWobKZYmPik.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EWobKZYmPik.m3u8/EWobKZYmPik.m3u8"}, "path": "khan/humanities/art-asia/art-japan/edo-period/genji-ukifune/", "duration": 122, "id": "EWobKZYmPik", "title": "Genji Ukifune", "format": "mp4", "description": "Kabuki scholar Laurence Kominz discusses a woodblock print of a Kabuki actor and courtesan depicted in a scene from the famous Japanese epic The Tale of Genji.", "slug": "genji-ukifune", "kind": "Video", "video_id": "EWobKZYmPik", "keywords": "", "youtube_id": "EWobKZYmPik", "readable_id": "genji-ukifune"}, "ClYdw4d4OmA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ClYdw4d4OmA.mp4/ClYdw4d4OmA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ClYdw4d4OmA.mp4/ClYdw4d4OmA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ClYdw4d4OmA.m3u8/ClYdw4d4OmA.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-order-of-operations/introduction-to-order-of-operations/", "duration": 580, "id": "ClYdw4d4OmA", "title": "Introduction to order of operations", "format": "mp4", "description": "This example clarifies the purpose of order of operations: to have ONE way to interpret a mathematical statement.", "slug": "introduction-to-order-of-operations", "kind": "Video", "video_id": "ClYdw4d4OmA", "keywords": "order, of, operations, CC_5_OA_1, CC_5_OA_2, CC_6_EE_2_c", "youtube_id": "ClYdw4d4OmA", "readable_id": "introduction-to-order-of-operations"}, "4ES_vbSJ7LU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4ES_vbSJ7LU.mp4/4ES_vbSJ7LU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4ES_vbSJ7LU.mp4/4ES_vbSJ7LU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4ES_vbSJ7LU.m3u8/4ES_vbSJ7LU.m3u8"}, "duration": 900, "id": "4ES_vbSJ7LU", "title": "2010 IIT JEE Paper 1 Problem 50: Hyperbola eccentricity", "format": "mp4", "description": null, "path": "khan/test-prep/iit-jee-subject/iit-jee/2010-iit-jee-paper-1-problem-50-hyperbola-eccentricity/", "slug": "2010-iit-jee-paper-1-problem-50-hyperbola-eccentricity", "kind": "Video", "video_id": "4ES_vbSJ7LU", "keywords": "2010, IIT, JEE, Paper, 1, Problem, 50, Hyperbola, Eccentricity", "youtube_id": "4ES_vbSJ7LU", "readable_id": "2010-iit-jee-paper-1-problem-50-hyperbola-eccentricity"}, "H_Guv2Mk1E0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/H_Guv2Mk1E0.mp4/H_Guv2Mk1E0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/H_Guv2Mk1E0.mp4/H_Guv2Mk1E0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/H_Guv2Mk1E0.m3u8/H_Guv2Mk1E0.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/high-renaissance1/raphael-marriage-of-the-virgin-1504/", "duration": 304, "id": "H_Guv2Mk1E0", "title": "Raphael, Marriage of the Virgin, 1504", "format": "mp4", "description": "Raphael's Marriage of the Virgin, 1504, oil on panel, 174 cm \u00d7 121 cm / 69 in \u00d7 48 in (Pinacoteca di Brera, Milan) \n\nSpeakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "raphael-marriage-of-the-virgin-1504", "kind": "Video", "video_id": "H_Guv2Mk1E0", "keywords": "Raphael, Renaissance, art, painting, Italy, Italian, Marriage of the Virgin, 1504", "youtube_id": "H_Guv2Mk1E0", "readable_id": "raphael-marriage-of-the-virgin-1504"}, "G-PFEbQ5UGc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G-PFEbQ5UGc.mp4/G-PFEbQ5UGc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G-PFEbQ5UGc.mp4/G-PFEbQ5UGc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G-PFEbQ5UGc.m3u8/G-PFEbQ5UGc.m3u8"}, "duration": 130, "id": "G-PFEbQ5UGc", "title": "Introduction to lithography", "format": "mp4", "description": "Find out how artists use the resistance of grease and water to create lithographs. Did you know that MoMA offers studio courses online? To learn more, check out the list of online course offerings.", "path": "khan/humanities/art-history-basics/artists-materials-techniques/printmaking/moma-intro-to-lithography/", "slug": "moma-intro-to-lithography", "kind": "Video", "video_id": "G-PFEbQ5UGc", "keywords": "", "youtube_id": "G-PFEbQ5UGc", "readable_id": "moma-intro-to-lithography"}, "GwoX_BemwHs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GwoX_BemwHs.mp4/GwoX_BemwHs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GwoX_BemwHs.mp4/GwoX_BemwHs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GwoX_BemwHs.m3u8/GwoX_BemwHs.m3u8"}, "duration": 781, "id": "GwoX_BemwHs", "title": "Ideal gas equation example 2", "format": "mp4", "description": "PV/T is a constant. Figuring out the volume of an ideal gas at standard temperature and pressure (STP).", "path": "khan/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws/ideal-gas-equation-example-2/", "slug": "ideal-gas-equation-example-2", "kind": "Video", "video_id": "GwoX_BemwHs", "keywords": "ideal, gas, equation, stp", "youtube_id": "GwoX_BemwHs", "readable_id": "ideal-gas-equation-example-2"}, "6jqx5uEBs5U": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6jqx5uEBs5U.mp4/6jqx5uEBs5U.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6jqx5uEBs5U.mp4/6jqx5uEBs5U.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6jqx5uEBs5U.m3u8/6jqx5uEBs5U.m3u8"}, "path": "khan/math/differential-equations/first-order-differential-equations/modeling-with-differential-equations/particular-solution-given-initial-conditions-for-population/", "duration": 293, "id": "6jqx5uEBs5U", "title": "Particular solution given initial conditions for population", "format": "mp4", "description": "", "slug": "particular-solution-given-initial-conditions-for-population", "kind": "Video", "video_id": "6jqx5uEBs5U", "keywords": "", "youtube_id": "6jqx5uEBs5U", "readable_id": "particular-solution-given-initial-conditions-for-population"}, "4OEeVLo5V1o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4OEeVLo5V1o.mp4/4OEeVLo5V1o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4OEeVLo5V1o.mp4/4OEeVLo5V1o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4OEeVLo5V1o.m3u8/4OEeVLo5V1o.m3u8"}, "path": "khan/math/trigonometry/less-basic-trigonometry/pythagorean-identity/examples-using-pythagorean-identities-to-simplify-trigonometric-expressions/", "duration": 187, "id": "4OEeVLo5V1o", "title": "Examples using pythagorean identities to simplify trigonometric expressions", "format": "mp4", "description": "", "slug": "examples-using-pythagorean-identities-to-simplify-trigonometric-expressions", "kind": "Video", "video_id": "4OEeVLo5V1o", "keywords": "", "youtube_id": "4OEeVLo5V1o", "readable_id": "examples-using-pythagorean-identities-to-simplify-trigonometric-expressions"}, "WkspBxrzuZo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WkspBxrzuZo.mp4/WkspBxrzuZo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WkspBxrzuZo.mp4/WkspBxrzuZo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WkspBxrzuZo.m3u8/WkspBxrzuZo.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/slope-of-a-line-2/", "duration": 432, "id": "WkspBxrzuZo", "title": "Slope from two ordered pairs example 1", "format": "mp4", "description": "An example of finding the slope between two points", "slug": "slope-of-a-line-2", "kind": "Video", "video_id": "WkspBxrzuZo", "keywords": "u13_l2_t1_we2, Slope, of, Line, CC_8_EE_5, CC_8_EE_6, CC_8_F_5", "youtube_id": "WkspBxrzuZo", "readable_id": "slope-of-a-line-2"}, "o_puKe_lTKk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/o_puKe_lTKk.mp4/o_puKe_lTKk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/o_puKe_lTKk.mp4/o_puKe_lTKk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/o_puKe_lTKk.m3u8/o_puKe_lTKk.m3u8"}, "duration": 653, "id": "o_puKe_lTKk", "title": "Cross product 2", "format": "mp4", "description": "A little more intuition on the cross product.", "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/cross-product-2/", "slug": "cross-product-2", "kind": "Video", "video_id": "o_puKe_lTKk", "keywords": "vector, cross, product", "youtube_id": "o_puKe_lTKk", "readable_id": "cross-product-2"}, "CdE1Sa18gIo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CdE1Sa18gIo.mp4/CdE1Sa18gIo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CdE1Sa18gIo.mp4/CdE1Sa18gIo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CdE1Sa18gIo.m3u8/CdE1Sa18gIo.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/intro-electrochemistry-mcat/standard-cell-potential-and-the-equilibrium-constant/", "duration": 322, "id": "CdE1Sa18gIo", "title": "Standard cell potential and the equilibrium constant", "format": "mp4", "description": "", "slug": "standard-cell-potential-and-the-equilibrium-constant", "kind": "Video", "video_id": "CdE1Sa18gIo", "keywords": "", "youtube_id": "CdE1Sa18gIo", "readable_id": "standard-cell-potential-and-the-equilibrium-constant"}, "MwG6QD352yc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MwG6QD352yc.mp4/MwG6QD352yc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MwG6QD352yc.mp4/MwG6QD352yc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MwG6QD352yc.m3u8/MwG6QD352yc.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial-remainder-theorem-tutorial/polynomial-remainder-theorem/", "duration": 403, "id": "MwG6QD352yc", "title": "Polynomial remainder theorem", "format": "mp4", "description": "", "slug": "polynomial-remainder-theorem", "kind": "Video", "video_id": "MwG6QD352yc", "keywords": "", "youtube_id": "MwG6QD352yc", "readable_id": "polynomial-remainder-theorem"}, "z5OqEegsQMo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z5OqEegsQMo.mp4/z5OqEegsQMo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z5OqEegsQMo.mp4/z5OqEegsQMo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z5OqEegsQMo.m3u8/z5OqEegsQMo.m3u8"}, "duration": 114, "id": "z5OqEegsQMo", "title": "Conservation: copper paint deterioration", "format": "mp4", "description": "Green, copper-based paint has destroyed its fabric backing in this Southeast Asian painting from the Doris Duke Collection. See how conservators are patching all the green areas of the painting. Learn more about art conservation at the\u00a0Asian Art Museum's Conservation Center.", "path": "conservation-copper-paint/", "slug": "conservation-copper-paint", "kind": "Video", "video_id": "z5OqEegsQMo", "keywords": "", "youtube_id": "z5OqEegsQMo", "readable_id": "conservation-copper-paint"}, "yg44T2HcA2o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yg44T2HcA2o.mp4/yg44T2HcA2o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yg44T2HcA2o.mp4/yg44T2HcA2o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yg44T2HcA2o.m3u8/yg44T2HcA2o.m3u8"}, "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuronal-synapses/types-of-neurotransmitter-receptors/", "duration": 396, "id": "yg44T2HcA2o", "title": "Types of neurotransmitter receptors", "format": "mp4", "description": "", "slug": "types-of-neurotransmitter-receptors", "kind": "Video", "video_id": "yg44T2HcA2o", "keywords": "", "youtube_id": "yg44T2HcA2o", "readable_id": "types-of-neurotransmitter-receptors"}, "BiVOC3WocXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BiVOC3WocXs.mp4/BiVOC3WocXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BiVOC3WocXs.mp4/BiVOC3WocXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BiVOC3WocXs.m3u8/BiVOC3WocXs.m3u8"}, "duration": 463, "id": "BiVOC3WocXs", "title": "L'H\u00f4pital's rule example 1", "format": "mp4", "description": "L'H\u00f4pital's Rule Example 1", "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/l-hopital-s-rule-example-1/", "slug": "l-hopital-s-rule-example-1", "kind": "Video", "video_id": "BiVOC3WocXs", "keywords": "L'Hopital's, Rule, Example", "youtube_id": "BiVOC3WocXs", "readable_id": "l-hopital-s-rule-example-1"}, "_38xl7p4VaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_38xl7p4VaM.mp4/_38xl7p4VaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_38xl7p4VaM.mp4/_38xl7p4VaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_38xl7p4VaM.m3u8/_38xl7p4VaM.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/vermeer-young-woman-with-a-water-pitcher-c-1662/", "duration": 289, "id": "_38xl7p4VaM", "title": "Vermeer, Young Woman with a Water Pitcher", "format": "mp4", "description": "Johannes Vermeer, Young Woman with a Water Pitcher, oil on canvas, c. 1662 (Metropolitan Museum of Art) Speakers: Dr. Steven Zucker, Dr. Beth Harris http://smarthistory.org/baroque-holland.html http://smarthistory.org/baroque-holland.html", "slug": "vermeer-young-woman-with-a-water-pitcher-c-1662", "kind": "Video", "video_id": "_38xl7p4VaM", "keywords": "art, art history, vermeer", "youtube_id": "_38xl7p4VaM", "readable_id": "vermeer-young-woman-with-a-water-pitcher-c-1662"}, "DsgBALSxqtY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DsgBALSxqtY.mp4/DsgBALSxqtY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DsgBALSxqtY.mp4/DsgBALSxqtY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DsgBALSxqtY.m3u8/DsgBALSxqtY.m3u8"}, "duration": 164, "id": "DsgBALSxqtY", "title": "\"Fantasy\" with Femke Speelberg", "format": "mp4", "description": "Met curator Femke Speelberg on fantasy in Mascarade \u00e0 la Grecque; Suite des Vases; and [Chemin\u00e9es], designed by Ennemond Alexandre Petitot and etched and published by Benigno Bossi.\n\nView this work on metmuseum.org.\n", "path": "fantasy/", "slug": "fantasy", "kind": "Video", "video_id": "DsgBALSxqtY", "keywords": "book, fashion, humor, ingenuity, paper, print, Europe", "youtube_id": "DsgBALSxqtY", "readable_id": "fantasy"}, "nJfB32MtqBA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/nJfB32MtqBA.mp4/nJfB32MtqBA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/nJfB32MtqBA.mp4/nJfB32MtqBA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/nJfB32MtqBA.m3u8/nJfB32MtqBA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-gastrointestinal-system/rn-the-gastrointestinal-system/hepatic-lobule/", "duration": 185, "id": "nJfB32MtqBA", "title": "Hepatic lobule", "format": "mp4", "description": "", "slug": "hepatic-lobule", "kind": "Video", "video_id": "nJfB32MtqBA", "keywords": "MCAT", "youtube_id": "nJfB32MtqBA", "readable_id": "hepatic-lobule"}, "zsdek-uH0NU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zsdek-uH0NU.mp4/zsdek-uH0NU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zsdek-uH0NU.mp4/zsdek-uH0NU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zsdek-uH0NU.m3u8/zsdek-uH0NU.m3u8"}, "path": "khan/science/discoveries-projects/robots/spout-bot-with-solder/spout-motor-wiring/", "duration": 707, "id": "zsdek-uH0NU", "title": "Spout motor wiring", "format": "mp4", "description": "", "slug": "spout-motor-wiring", "kind": "Video", "video_id": "zsdek-uH0NU", "keywords": "", "youtube_id": "zsdek-uH0NU", "readable_id": "spout-motor-wiring"}, "LUoUb4hGMH8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LUoUb4hGMH8.mp4/LUoUb4hGMH8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LUoUb4hGMH8.mp4/LUoUb4hGMH8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LUoUb4hGMH8.m3u8/LUoUb4hGMH8.m3u8"}, "path": "khan/science/physics/thermodynamics/carnot-efficiency-3-proving-that-it-is-the-most-efficient/", "duration": 737, "id": "LUoUb4hGMH8", "title": "Carnot efficiency 3: Proving that it is the most efficient", "format": "mp4", "description": "Proving that a Carnot Engine is the most efficient engine", "slug": "carnot-efficiency-3-proving-that-it-is-the-most-efficient", "kind": "Video", "video_id": "LUoUb4hGMH8", "keywords": "thermodynamics, carnot, entropy", "youtube_id": "LUoUb4hGMH8", "readable_id": "carnot-efficiency-3-proving-that-it-is-the-most-efficient"}, "ywfxY9UDRo4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ywfxY9UDRo4.mp4/ywfxY9UDRo4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ywfxY9UDRo4.mp4/ywfxY9UDRo4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ywfxY9UDRo4.m3u8/ywfxY9UDRo4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-endocrine-system/rn-the-endocrine-system/terpenes-to-steroids1/", "duration": 469, "id": "ywfxY9UDRo4", "title": "From terpenes to steroids part 1: Terpenes", "format": "mp4", "description": "Steroids have to come from somewhere, right? Let's learn about the carbon building blocks with which steroids are made. By Ryan Patton. ", "slug": "terpenes-to-steroids1", "kind": "Video", "video_id": "ywfxY9UDRo4", "keywords": "terpenes, steroids", "youtube_id": "ywfxY9UDRo4", "readable_id": "terpenes-to-steroids1"}, "cM-SFbffb7k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cM-SFbffb7k.mp4/cM-SFbffb7k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cM-SFbffb7k.mp4/cM-SFbffb7k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cM-SFbffb7k.m3u8/cM-SFbffb7k.m3u8"}, "path": "khan/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes-cycloalkanes-bicyclic/bicyclic-compounds/", "duration": 636, "id": "cM-SFbffb7k", "title": "Bicyclic compounds", "format": "mp4", "description": "", "slug": "bicyclic-compounds", "kind": "Video", "video_id": "cM-SFbffb7k", "keywords": "", "youtube_id": "cM-SFbffb7k", "readable_id": "bicyclic-compounds"}, "glumochcaw0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/glumochcaw0.mp4/glumochcaw0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/glumochcaw0.mp4/glumochcaw0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/glumochcaw0.m3u8/glumochcaw0.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-23-27/", "duration": 628, "id": "glumochcaw0", "title": "CAHSEE practice: Problems 23-27", "format": "mp4", "description": "CAHSEE Practice: Problems 23-27", "slug": "cahsee-practice-problems-23-27", "kind": "Video", "video_id": "glumochcaw0", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "glumochcaw0", "readable_id": "cahsee-practice-problems-23-27"}, "tBGebJ2IiFE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tBGebJ2IiFE.mp4/tBGebJ2IiFE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tBGebJ2IiFE.mp4/tBGebJ2IiFE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tBGebJ2IiFE.m3u8/tBGebJ2IiFE.m3u8"}, "duration": 551, "id": "tBGebJ2IiFE", "title": "How do we document and archive performance? A live art salon", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nIn this project, artist Harold Offeh worked in collaboration with students and teachers to explore live art performance and its relationship to documentation and archive. How can a time-based work of art like a performance piece be documented and preserved? What are the differences between documenting a performance through photography, film, and writing, and the live experience of the performance itself? Inspired by artist Vito Acconci\u2019s correspondence with a curator outlining the details of his performances, Offeh and his collaborators explore these ideas through a performance and archiving process of their own.\nEven with the most detailed archive and instructions, is it possible to recreate a performance or is it a new performance every time? Does performance art ever end?\n\n\n", "path": "live-art-salon/", "slug": "live-art-salon", "kind": "Video", "video_id": "tBGebJ2IiFE", "keywords": "Tate", "youtube_id": "tBGebJ2IiFE", "readable_id": "live-art-salon"}, "uxoAJHlgcF4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uxoAJHlgcF4.mp4/uxoAJHlgcF4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uxoAJHlgcF4.mp4/uxoAJHlgcF4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uxoAJHlgcF4.m3u8/uxoAJHlgcF4.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/how-were-stars-formed/bhp-how-were-stars-formed/", "duration": 595, "id": "uxoAJHlgcF4", "title": "How Were Stars Formed?", "format": "mp4", "description": "Explore the Universe before and after the birth of stars and study the extraordinary process of star formation.", "slug": "bhp-how-were-stars-formed", "kind": "Video", "video_id": "uxoAJHlgcF4", "keywords": "", "youtube_id": "uxoAJHlgcF4", "readable_id": "bhp-how-were-stars-formed"}, "5uKGX1lt6ZY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/5uKGX1lt6ZY.mp4/5uKGX1lt6ZY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/5uKGX1lt6ZY.mp4/5uKGX1lt6ZY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/5uKGX1lt6ZY.m3u8/5uKGX1lt6ZY.m3u8"}, "path": "khan/partner-content/wi-phi/metaphys-epistemology/sizes-of-infinity-part-2-getting-real/", "duration": 411, "id": "5uKGX1lt6ZY", "title": "Mathematics: Sizes of infinity part 2: Getting real", "format": "mp4", "description": "Part 2 of a pair. After part 1, you might have thought that all different infinite collections of things are the same size. Not so! In this video, Agustin shows us another of Georg Cantor\u2019s results: that for every size of infinity, there is a bigger one! An example: there are way more real numbers than there are natural numbers.\n\nSpeaker:\u00a0Dr.\u00a0Agust\u00edn Rayo, Professor of Philosophy, MIT", "slug": "sizes-of-infinity-part-2-getting-real", "kind": "Video", "video_id": "5uKGX1lt6ZY", "keywords": "", "youtube_id": "5uKGX1lt6ZY", "readable_id": "sizes-of-infinity-part-2-getting-real"}, "xGkE0oHyNhk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xGkE0oHyNhk.mp4/xGkE0oHyNhk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xGkE0oHyNhk.mp4/xGkE0oHyNhk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xGkE0oHyNhk.m3u8/xGkE0oHyNhk.m3u8"}, "duration": 370, "id": "xGkE0oHyNhk", "title": "Marginal revenue and marginal cost", "format": "mp4", "description": "Thinking about a rational quantity of juice to produce", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/average-costs-margin-rev/marginal-revenue-and-marginal-cost/", "slug": "marginal-revenue-and-marginal-cost", "kind": "Video", "video_id": "xGkE0oHyNhk", "keywords": "microeconomics, marginal, revenue, price, taker, market", "youtube_id": "xGkE0oHyNhk", "readable_id": "marginal-revenue-and-marginal-cost"}, "fv9h29ZChfI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fv9h29ZChfI.mp4/fv9h29ZChfI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fv9h29ZChfI.mp4/fv9h29ZChfI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fv9h29ZChfI.m3u8/fv9h29ZChfI.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/carbocations-and-rearrangements/", "duration": 687, "id": "fv9h29ZChfI", "title": "Carbocations and rearrangements", "format": "mp4", "description": "", "slug": "carbocations-and-rearrangements", "kind": "Video", "video_id": "fv9h29ZChfI", "keywords": "", "youtube_id": "fv9h29ZChfI", "readable_id": "carbocations-and-rearrangements"}, "waqE7cI1LxE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/waqE7cI1LxE.mp4/waqE7cI1LxE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/waqE7cI1LxE.mp4/waqE7cI1LxE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/waqE7cI1LxE.m3u8/waqE7cI1LxE.m3u8"}, "path": "khan/economics-finance-domain/entrepreneurship2/interviews-entrepreneurs/beth-schmidt-wishbone/beth-schmidt-3/", "duration": 170, "id": "waqE7cI1LxE", "title": "An invitation for innovation", "format": "mp4", "description": "", "slug": "beth-schmidt-3", "kind": "Video", "video_id": "waqE7cI1LxE", "keywords": "", "youtube_id": "waqE7cI1LxE", "readable_id": "beth-schmidt-3"}, "bC5Lahh4Aus": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bC5Lahh4Aus.mp4/bC5Lahh4Aus.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bC5Lahh4Aus.mp4/bC5Lahh4Aus.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bC5Lahh4Aus.m3u8/bC5Lahh4Aus.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/old_maclaurin_series/polynomial-approximation-of-functions-part-7/", "duration": 618, "id": "bC5Lahh4Aus", "title": "Polynomial approximation of functions (part 7)", "format": "mp4", "description": "The most amazing conclusion in mathematics!", "slug": "polynomial-approximation-of-functions-part-7", "kind": "Video", "video_id": "bC5Lahh4Aus", "keywords": "math, religion, God, universe, order, euler, pi", "youtube_id": "bC5Lahh4Aus", "readable_id": "polynomial-approximation-of-functions-part-7"}, "tJrSILRXOUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tJrSILRXOUc.mp4/tJrSILRXOUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tJrSILRXOUc.mp4/tJrSILRXOUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tJrSILRXOUc.m3u8/tJrSILRXOUc.m3u8"}, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-comparing-numbers/comparing-numbers-through-10-example/", "duration": 91, "id": "tJrSILRXOUc", "title": "Comparing small numbers on the number line", "format": "mp4", "description": "Learn to use a number line to compare numbers.", "slug": "comparing-numbers-through-10-example", "kind": "Video", "video_id": "tJrSILRXOUc", "keywords": "", "youtube_id": "tJrSILRXOUc", "readable_id": "comparing-numbers-through-10-example"}, "mG_BZ8GgqJU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mG_BZ8GgqJU.mp4/mG_BZ8GgqJU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mG_BZ8GgqJU.mp4/mG_BZ8GgqJU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mG_BZ8GgqJU.m3u8/mG_BZ8GgqJU.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/introduction-to-health-care/", "duration": 668, "id": "mG_BZ8GgqJU", "title": "Introduction to the U.S. health care system", "format": "mp4", "description": "Confused about the U.S. health care system? This introduction uses one patient as an example to illustrate how money flows within the system. This will serve as the basis for deeper dives into each program as well as health care delivery and payment reform.", "slug": "introduction-to-health-care", "kind": "Video", "video_id": "mG_BZ8GgqJU", "keywords": "", "youtube_id": "mG_BZ8GgqJU", "readable_id": "introduction-to-health-care"}, "HrMgmnZ_4gs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HrMgmnZ_4gs.mp4/HrMgmnZ_4gs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HrMgmnZ_4gs.mp4/HrMgmnZ_4gs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HrMgmnZ_4gs.m3u8/HrMgmnZ_4gs.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-cyanotic-heart-diseases/truncus-arteriosus/", "duration": 203, "id": "HrMgmnZ_4gs", "title": "Truncus arteriosus", "format": "mp4", "description": "", "slug": "truncus-arteriosus", "kind": "Video", "video_id": "HrMgmnZ_4gs", "keywords": "", "youtube_id": "HrMgmnZ_4gs", "readable_id": "truncus-arteriosus"}, "6unzbhlxXxM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6unzbhlxXxM.mp4/6unzbhlxXxM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6unzbhlxXxM.mp4/6unzbhlxXxM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6unzbhlxXxM.m3u8/6unzbhlxXxM.m3u8"}, "path": "khan/partner-content/brookings-institution/introduction-to-healthcare/paying-for-medicines-copays-and-deductibles/", "duration": 359, "id": "6unzbhlxXxM", "title": "Paying for medicines: copays and deductibles", "format": "mp4", "description": "How do copays and deductibles work? Why is paying for medicine so complicated? In the first of two videos on paying for medicines, an overview of over the counter and prescription drugs is provided.\u00a0", "slug": "paying-for-medicines-copays-and-deductibles", "kind": "Video", "video_id": "6unzbhlxXxM", "keywords": "", "youtube_id": "6unzbhlxXxM", "readable_id": "paying-for-medicines-copays-and-deductibles"}, "3XOt1fjWKi8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3XOt1fjWKi8.mp4/3XOt1fjWKi8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3XOt1fjWKi8.mp4/3XOt1fjWKi8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3XOt1fjWKi8.m3u8/3XOt1fjWKi8.m3u8"}, "duration": 151, "id": "3XOt1fjWKi8", "title": "Numerator and denominator of a fraction", "format": "mp4", "description": "Numerator and Denominator of a Fraction", "path": "khan/math/pre-algebra/fractions-pre-alg/understanding-fractions-pre-alg/numerator-and-denominator-of-a-fraction/", "slug": "numerator-and-denominator-of-a-fraction", "kind": "Video", "video_id": "3XOt1fjWKi8", "keywords": "U02_l1_T1_we1, Numerator, and, Denominator, of, Fraction, CC_3_G_2, CC_3_NF_1", "youtube_id": "3XOt1fjWKi8", "readable_id": "numerator-and-denominator-of-a-fraction"}, "fDChjr0hvCw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fDChjr0hvCw.mp4/fDChjr0hvCw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fDChjr0hvCw.mp4/fDChjr0hvCw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fDChjr0hvCw.m3u8/fDChjr0hvCw.m3u8"}, "path": "khan/college-admissions/making-high-school-count/introduction-mhsc/sal-khans-story-making-high-school-count/", "duration": 181, "id": "fDChjr0hvCw", "title": "Sal Khan's story: Making high school count", "format": "mp4", "description": "", "slug": "sal-khans-story-making-high-school-count", "kind": "Video", "video_id": "fDChjr0hvCw", "keywords": "", "youtube_id": "fDChjr0hvCw", "readable_id": "sal-khans-story-making-high-school-count"}, "AOxMJRtoR2A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AOxMJRtoR2A.mp4/AOxMJRtoR2A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AOxMJRtoR2A.mp4/AOxMJRtoR2A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AOxMJRtoR2A.m3u8/AOxMJRtoR2A.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/solutions-to-two-var-linear-equations/2-variable-linear-equations-graphs/", "duration": 501, "id": "AOxMJRtoR2A", "title": "Two-variable linear equations and their graphs", "format": "mp4", "description": "Introduction to 2-variable linear equations and their graphs", "slug": "2-variable-linear-equations-graphs", "kind": "Video", "video_id": "AOxMJRtoR2A", "keywords": "", "youtube_id": "AOxMJRtoR2A", "readable_id": "2-variable-linear-equations-graphs"}, "gEEgicZzwMU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gEEgicZzwMU.mp4/gEEgicZzwMU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gEEgicZzwMU.mp4/gEEgicZzwMU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gEEgicZzwMU.m3u8/gEEgicZzwMU.m3u8"}, "path": "khan/partner-content/big-history-project/stars-and-elements/how-were-stars-formed/bhp-stars-light-up/", "duration": 170, "id": "gEEgicZzwMU", "title": "Threshold 2: Stars Light Up", "format": "mp4", "description": "The early Universe was dark and cold \u2013 until a few atoms of hydrogen and helium got together, and a star was born.", "slug": "bhp-stars-light-up", "kind": "Video", "video_id": "gEEgicZzwMU", "keywords": "", "youtube_id": "gEEgicZzwMU", "readable_id": "bhp-stars-light-up"}, "uv21jrzg2z4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uv21jrzg2z4.mp4/uv21jrzg2z4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uv21jrzg2z4.mp4/uv21jrzg2z4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uv21jrzg2z4.m3u8/uv21jrzg2z4.m3u8"}, "duration": 185, "id": "uv21jrzg2z4", "title": "Conserving Tullio Lombardo's \"Adam\": Time-Lapse", "format": "mp4", "description": "After extensive research and planning, conservators at The Metropolitan Museum of Art reconstructed Tullio Lombardo's \"Adam,\" documenting elements of the process with time-lapse photography.\n\nThe life-size marble statue of Adam, carved by Tullio Lombardo (Italian, ca. 1455\u20131532), is among the most important works of art from Renaissance Venice to be found outside that city today. Made in the early 1490s for the tomb of Doge Andrea Vendramin, it is the only signed sculpture from that monumental complex. The serene, idealized figure, inspired by ancient sculpture, is deceptively complex. Carefully manipulating composition and finish, Tullio created God's perfect human being, but also the anxious victim of the serpent's wiles.\n\nIn 2002, Adam was gravely damaged in an accident. Committed to returning it to public view, the Museum undertook a conservation treatment that has restored the sculpture to its original appearance to the fullest extent possible.\n\nThe exhibition allows Adam to be viewed in the round and explains this unprecedented twelve-year research and conservation project. It also inaugurates a new permanent gallery for Venetian and northern Italian sculpture. The installation of this gallery was made possible by Assunta Sommella Peluso, Ignazio Peluso, Ada Peluso, and Romano I. Peluso.\n\nLearn more about the exhibition on\u00a0metmuseum.org.\n\nFor more information, including production credits, view this video on MetMedia.\n", "path": "conserving-lombardo-time-lapse/", "slug": "conserving-lombardo-time-lapse", "kind": "Video", "video_id": "uv21jrzg2z4", "keywords": "", "youtube_id": "uv21jrzg2z4", "readable_id": "conserving-lombardo-time-lapse"}, "4r6QHJzu8YQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4r6QHJzu8YQ.mp4/4r6QHJzu8YQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4r6QHJzu8YQ.mp4/4r6QHJzu8YQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4r6QHJzu8YQ.m3u8/4r6QHJzu8YQ.m3u8"}, "duration": 609, "id": "4r6QHJzu8YQ", "title": "GMAT: Math 28", "format": "mp4", "description": "143-147, pgs. 171-172", "path": "khan/test-prep/gmat/problem-solving/gmat-math-28/", "slug": "gmat-math-28", "kind": "Video", "video_id": "4r6QHJzu8YQ", "keywords": "gmat, math, problem, solving", "youtube_id": "4r6QHJzu8YQ", "readable_id": "gmat-math-28"}, "liRNTieIU_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/liRNTieIU_k.mp4/liRNTieIU_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/liRNTieIU_k.mp4/liRNTieIU_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/liRNTieIU_k.m3u8/liRNTieIU_k.m3u8"}, "path": "khan/math/algebra/multiplying-factoring-expression/factoring-special-products/factoring-perfect-square-trinomials/", "duration": 294, "id": "liRNTieIU_k", "title": "Example: Factoring perfect square trinomials", "format": "mp4", "description": "Factoring perfect square trinomials", "slug": "factoring-perfect-square-trinomials", "kind": "Video", "video_id": "liRNTieIU_k", "keywords": "u12_l2_t2_we1, Factoring, perfect, square, trinomials, CC_39336_A-SSE_1_a, CC_39336_A-SSE_1_b, CC_39336_A-SSE_2, CC_39336_A-SSE_3", "youtube_id": "liRNTieIU_k", "readable_id": "factoring-perfect-square-trinomials"}, "wJ37GJyViU8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wJ37GJyViU8.mp4/wJ37GJyViU8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wJ37GJyViU8.mp4/wJ37GJyViU8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wJ37GJyViU8.m3u8/wJ37GJyViU8.m3u8"}, "path": "khan/math/geometry/parallel-and-perpendicular-lines/angle_basics/measuring-angles/", "duration": 245, "id": "wJ37GJyViU8", "title": "More angle measurements using a protractor", "format": "mp4", "description": "We're practicing measuring angles using the virtual protractor. Do this a few times with us and you'll use a real protractor like a pro!", "slug": "measuring-angles", "kind": "Video", "video_id": "wJ37GJyViU8", "keywords": "geometry, protractor, angles", "youtube_id": "wJ37GJyViU8", "readable_id": "measuring-angles"}, "h44bnIGogu8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h44bnIGogu8.mp4/h44bnIGogu8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h44bnIGogu8.mp4/h44bnIGogu8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h44bnIGogu8.m3u8/h44bnIGogu8.m3u8"}, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/michelangelo/michelangelo-the-dying-slave-and-the-rebellious-slave-1513-15/", "duration": 197, "id": "h44bnIGogu8", "title": "Michelangelo, Slaves", "format": "mp4", "description": "Michelangelo, The Slaves (commonly referred to as the Dying Slave and the Rebellious Slave), marble, 2.09 m high, 1513-15 (Mus\u00e9e du Louvre, Paris)\n\nSpeakers: Dr. Beth Harris and Dr. Steven Zucker\n\nUsually considered unfinished, these sculptures were originally intended for the tomb of Pope Julius II. According to the Louvre, the artist gave the marbles to Roberto Strozzi who presented them to the King of France.", "slug": "michelangelo-the-dying-slave-and-the-rebellious-slave-1513-15", "kind": "Video", "video_id": "h44bnIGogu8", "keywords": "Michelangelo, Slaves, Pope Julius II, Art History, Smarthistory, Louvre", "youtube_id": "h44bnIGogu8", "readable_id": "michelangelo-the-dying-slave-and-the-rebellious-slave-1513-15"}, "d3VMo1VWFvc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d3VMo1VWFvc.mp4/d3VMo1VWFvc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d3VMo1VWFvc.mp4/d3VMo1VWFvc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d3VMo1VWFvc.m3u8/d3VMo1VWFvc.m3u8"}, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/solutions-to-two-var-linear-equations/checking-ordered-pair-solutions-to-equations-2/", "duration": 146, "id": "d3VMo1VWFvc", "title": "Checking ordered pair solutions to equations example 2", "format": "mp4", "description": "Second example of ordered pair solutions", "slug": "checking-ordered-pair-solutions-to-equations-2", "kind": "Video", "video_id": "d3VMo1VWFvc", "keywords": "", "youtube_id": "d3VMo1VWFvc", "readable_id": "checking-ordered-pair-solutions-to-equations-2"}, "cN6TDkZTAI4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cN6TDkZTAI4.mp4/cN6TDkZTAI4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cN6TDkZTAI4.mp4/cN6TDkZTAI4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cN6TDkZTAI4.m3u8/cN6TDkZTAI4.m3u8"}, "path": "khan/partner-content/ssf-cci/ccss-ideal-student-experience/sscc-student-experience-overview/sscc-blended-elements/", "duration": 522, "id": "cN6TDkZTAI4", "title": "The key elements of the student experience", "format": "mp4", "description": "", "slug": "sscc-blended-elements", "kind": "Video", "video_id": "cN6TDkZTAI4", "keywords": "", "youtube_id": "cN6TDkZTAI4", "readable_id": "sscc-blended-elements"}, "z-N9IzR9fAY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z-N9IzR9fAY.mp4/z-N9IzR9fAY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z-N9IzR9fAY.mp4/z-N9IzR9fAY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z-N9IzR9fAY.m3u8/z-N9IzR9fAY.m3u8"}, "path": "khan/test-prep/mcat/biomolecules/fat-and-protein-metabolism/overview-of-fatty-acid-oxidation/", "duration": 364, "id": "z-N9IzR9fAY", "title": "Overview of Fatty Acid Oxidation", "format": "mp4", "description": "1D: How do we extract ATP from fat? How much ATP do we produce?", "slug": "overview-of-fatty-acid-oxidation", "kind": "Video", "video_id": "z-N9IzR9fAY", "keywords": "", "youtube_id": "z-N9IzR9fAY", "readable_id": "overview-of-fatty-acid-oxidation"}, "mec-QpjQMXY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/mec-QpjQMXY.mp4/mec-QpjQMXY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/mec-QpjQMXY.mp4/mec-QpjQMXY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/mec-QpjQMXY.m3u8/mec-QpjQMXY.m3u8"}, "duration": 568, "id": "mec-QpjQMXY", "title": "The rule of 72 for compound interest", "format": "mp4", "description": "Using the Rule of 72 to approximate how long it will take for an investment to double at a given interest rate", "path": "khan/economics-finance-domain/core-finance/interest-tutorial/compound-interest-tutorial/the-rule-of-72-for-compound-interest/", "slug": "the-rule-of-72-for-compound-interest", "kind": "Video", "video_id": "mec-QpjQMXY", "keywords": "compound, interest, rule, 72", "youtube_id": "mec-QpjQMXY", "readable_id": "the-rule-of-72-for-compound-interest"}, "CdF-6PJ2jTM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CdF-6PJ2jTM.mp4/CdF-6PJ2jTM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CdF-6PJ2jTM.mp4/CdF-6PJ2jTM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CdF-6PJ2jTM.m3u8/CdF-6PJ2jTM.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-22/", "duration": 685, "id": "CdF-6PJ2jTM", "title": "GMAT: Data sufficiency 22", "format": "mp4", "description": "95-98, pg. 286", "slug": "gmat-data-sufficiency-22", "kind": "Video", "video_id": "CdF-6PJ2jTM", "keywords": "gmat, data, sufficiency", "youtube_id": "CdF-6PJ2jTM", "readable_id": "gmat-data-sufficiency-22"}, "6ynr9N-NQ8E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6ynr9N-NQ8E.mp4/6ynr9N-NQ8E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6ynr9N-NQ8E.mp4/6ynr9N-NQ8E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6ynr9N-NQ8E.m3u8/6ynr9N-NQ8E.m3u8"}, "duration": 277, "id": "6ynr9N-NQ8E", "title": "Function as geometric series", "format": "mp4", "description": "", "path": "khan/math/integral-calculus/sequences_series_approx_calc/power-series-algebra/function-as-geometric-series/", "slug": "function-as-geometric-series", "kind": "Video", "video_id": "6ynr9N-NQ8E", "keywords": "", "youtube_id": "6ynr9N-NQ8E", "readable_id": "function-as-geometric-series"}, "BYSE5ZUsrRg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BYSE5ZUsrRg.mp4/BYSE5ZUsrRg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BYSE5ZUsrRg.mp4/BYSE5ZUsrRg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BYSE5ZUsrRg.m3u8/BYSE5ZUsrRg.m3u8"}, "duration": 237, "id": "BYSE5ZUsrRg", "title": "Marina Abramovi\u0107: Performance vs. acting", "format": "mp4", "description": "MoMA PS1 Director Klaus Biesenbach talks with artist Marina Abramovi\u0107 and actor James Franco. To learn more about what artists have to say, take our online course, Modern and Contemporary Art, 1945-1989.", "path": "moma-abramovic-performance-vs-acting/", "slug": "moma-abramovic-performance-vs-acting", "kind": "Video", "video_id": "BYSE5ZUsrRg", "keywords": "", "youtube_id": "BYSE5ZUsrRg", "readable_id": "moma-abramovic-performance-vs-acting"}, "E3vXfrKaoCY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E3vXfrKaoCY.mp4/E3vXfrKaoCY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E3vXfrKaoCY.mp4/E3vXfrKaoCY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E3vXfrKaoCY.m3u8/E3vXfrKaoCY.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-2008-may-8-3/", "duration": 117, "id": "E3vXfrKaoCY", "title": "3 Triangle angles", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-3", "kind": "Video", "video_id": "E3vXfrKaoCY", "keywords": "", "youtube_id": "E3vXfrKaoCY", "readable_id": "sat-2008-may-8-3"}, "zNxEVaRbdus": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zNxEVaRbdus.mp4/zNxEVaRbdus.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zNxEVaRbdus.mp4/zNxEVaRbdus.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zNxEVaRbdus.m3u8/zNxEVaRbdus.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/fundamental-theorem-of-algebra/fundamental-theorem-algebra-quadratic/", "duration": 395, "id": "zNxEVaRbdus", "title": "Fundamental theorem of algebra for quadratic", "format": "mp4", "description": "", "slug": "fundamental-theorem-algebra-quadratic", "kind": "Video", "video_id": "zNxEVaRbdus", "keywords": "", "youtube_id": "zNxEVaRbdus", "readable_id": "fundamental-theorem-algebra-quadratic"}, "orI2m6IarJg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/orI2m6IarJg.mp4/orI2m6IarJg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/orI2m6IarJg.mp4/orI2m6IarJg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/orI2m6IarJg.m3u8/orI2m6IarJg.m3u8"}, "duration": 809, "id": "orI2m6IarJg", "title": "Oxidation and reduction review from biological point-of-view", "format": "mp4", "description": "Taking a looking at oxidation and reduction in a biological context. ", "path": "khan/test-prep/mcat/biomolecules/overview-metabolism/oxidation-and-reduction-from-biological-view/", "slug": "oxidation-and-reduction-from-biological-view", "kind": "Video", "video_id": "orI2m6IarJg", "keywords": "oxidation, reduction", "youtube_id": "orI2m6IarJg", "readable_id": "oxidation-and-reduction-from-biological-view"}, "e4baNHUxP8I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/e4baNHUxP8I.mp4/e4baNHUxP8I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/e4baNHUxP8I.mp4/e4baNHUxP8I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/e4baNHUxP8I.m3u8/e4baNHUxP8I.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-pregnancy/blood-conditions-in-pregnancy/", "duration": 440, "id": "e4baNHUxP8I", "title": "Blood conditions in pregnancy", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "blood-conditions-in-pregnancy", "kind": "Video", "video_id": "e4baNHUxP8I", "keywords": "", "youtube_id": "e4baNHUxP8I", "readable_id": "blood-conditions-in-pregnancy"}, "CqN-XIPhMpo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CqN-XIPhMpo.mp4/CqN-XIPhMpo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CqN-XIPhMpo.mp4/CqN-XIPhMpo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CqN-XIPhMpo.m3u8/CqN-XIPhMpo.m3u8"}, "duration": 596, "id": "CqN-XIPhMpo", "title": "The phototransduction cascade", "format": "mp4", "description": "This explains phototransduction cascade which is critical to our sense of vision. By Ronald Sahyouni. ", "path": "khan/test-prep/mcat/processing-the-environment/sight/phototransduction-cascade/", "slug": "phototransduction-cascade", "kind": "Video", "video_id": "CqN-XIPhMpo", "keywords": "phototransduction cascade", "youtube_id": "CqN-XIPhMpo", "readable_id": "phototransduction-cascade"}, "jqBfRn4-9bY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jqBfRn4-9bY.mp4/jqBfRn4-9bY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jqBfRn4-9bY.mp4/jqBfRn4-9bY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jqBfRn4-9bY.m3u8/jqBfRn4-9bY.m3u8"}, "duration": 761, "id": "jqBfRn4-9bY", "title": "Common Core Standards: Fractions (Part 2)", "format": "mp4", "description": "Sal and Bill McCallum, a lead author of the Common Core Standards, continue their discussion of the fraction standards.", "path": "cc-fractions-2/", "slug": "cc-fractions-2", "kind": "Video", "video_id": "jqBfRn4-9bY", "keywords": "", "youtube_id": "jqBfRn4-9bY", "readable_id": "cc-fractions-2"}, "t6qlbcdn_6k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t6qlbcdn_6k.mp4/t6qlbcdn_6k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t6qlbcdn_6k.mp4/t6qlbcdn_6k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t6qlbcdn_6k.m3u8/t6qlbcdn_6k.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/alcohol-nomenclature-properties/physical-properties-of-alcohols-and-preparation-of-alkoxides/", "duration": 676, "id": "t6qlbcdn_6k", "title": "Physical properties of alcohols and preparation of alkoxides", "format": "mp4", "description": "", "slug": "physical-properties-of-alcohols-and-preparation-of-alkoxides", "kind": "Video", "video_id": "t6qlbcdn_6k", "keywords": "", "youtube_id": "t6qlbcdn_6k", "readable_id": "physical-properties-of-alcohols-and-preparation-of-alkoxides"}, "fMTLSOTAzWs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fMTLSOTAzWs.mp4/fMTLSOTAzWs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fMTLSOTAzWs.mp4/fMTLSOTAzWs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fMTLSOTAzWs.m3u8/fMTLSOTAzWs.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-4/", "duration": 624, "id": "fMTLSOTAzWs", "title": "GMAT: Data sufficiency 4", "format": "mp4", "description": "16-21, pg. 279", "slug": "gmat-data-sufficiency-4", "kind": "Video", "video_id": "fMTLSOTAzWs", "keywords": "gmat, data, sufficiency", "youtube_id": "fMTLSOTAzWs", "readable_id": "gmat-data-sufficiency-4"}, "7ZwSd9gtnwI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7ZwSd9gtnwI.mp4/7ZwSd9gtnwI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7ZwSd9gtnwI.mp4/7ZwSd9gtnwI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7ZwSd9gtnwI.m3u8/7ZwSd9gtnwI.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/dividing-decimals-pre-alg/dividing-completely-to-get-decimal-answer-example-2/", "duration": 143, "id": "7ZwSd9gtnwI", "title": "Dividing completely to get decimal answer example 2", "format": "mp4", "description": "Sometimes the number that you're dividing by is larger than the number that is being divided and won't go into it even once! What do you do? Watch.", "slug": "dividing-completely-to-get-decimal-answer-example-2", "kind": "Video", "video_id": "7ZwSd9gtnwI", "keywords": "", "youtube_id": "7ZwSd9gtnwI", "readable_id": "dividing-completely-to-get-decimal-answer-example-2"}, "DhW9pz5Vfwo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DhW9pz5Vfwo.mp4/DhW9pz5Vfwo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DhW9pz5Vfwo.mp4/DhW9pz5Vfwo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DhW9pz5Vfwo.m3u8/DhW9pz5Vfwo.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/plotting-exponential-logarithm/", "duration": 250, "id": "DhW9pz5Vfwo", "title": "Plotting points of logarithmic function", "format": "mp4", "description": "", "slug": "plotting-exponential-logarithm", "kind": "Video", "video_id": "DhW9pz5Vfwo", "keywords": "", "youtube_id": "DhW9pz5Vfwo", "readable_id": "plotting-exponential-logarithm"}, "G_mUcQeXak8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/G_mUcQeXak8.mp4/G_mUcQeXak8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/G_mUcQeXak8.mp4/G_mUcQeXak8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/G_mUcQeXak8.m3u8/G_mUcQeXak8.m3u8"}, "path": "khan/math/pre-algebra/order-of-operations/regrouping-whole-numbers/regrouping-whole-numbers-example-1/", "duration": 162, "id": "G_mUcQeXak8", "title": "Regrouping whole numbers example 1", "format": "mp4", "description": "This example problem gets the ole noggin working. We're regrouping numbers and having to determine how each place value shakes out.", "slug": "regrouping-whole-numbers-example-1", "kind": "Video", "video_id": "G_mUcQeXak8", "keywords": "", "youtube_id": "G_mUcQeXak8", "readable_id": "regrouping-whole-numbers-example-1"}, "_uUD1ZP79tE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_uUD1ZP79tE.mp4/_uUD1ZP79tE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_uUD1ZP79tE.mp4/_uUD1ZP79tE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_uUD1ZP79tE.m3u8/_uUD1ZP79tE.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/pierre-auguste-renoir-la-loge-1874/", "duration": 246, "id": "_uUD1ZP79tE", "title": "Renoir, La Loge", "format": "mp4", "description": "Pierre Auguste Renoir, La Loge, 1874, oil on canvas, 31 1/2 x 24 5/8 in. (80 x 63.5 cm) (Courtauld Gallery, London) Speakers: Dr. Beth Harris, Rachel S. Ropeik This painting was exhibited by Renoir at the first Impressionist exhibition in Paris (1874).", "slug": "pierre-auguste-renoir-la-loge-1874", "kind": "Video", "video_id": "_uUD1ZP79tE", "keywords": "Pierre August Renoir, La Loge, Smarthistory, French Painting, 19th century art, Courtauld Gallery, Renoir", "youtube_id": "_uUD1ZP79tE", "readable_id": "pierre-auguste-renoir-la-loge-1874"}, "zlRKO21qEpQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/zlRKO21qEpQ.mp4/zlRKO21qEpQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/zlRKO21qEpQ.mp4/zlRKO21qEpQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/zlRKO21qEpQ.m3u8/zlRKO21qEpQ.m3u8"}, "duration": 144, "id": "zlRKO21qEpQ", "title": "Radical equivalent to rational exponents 2", "format": "mp4", "description": "Radical Equivalent to Rational Exponents 2", "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/radical-equivalent-to-rational-exponents-2/", "slug": "radical-equivalent-to-rational-exponents-2", "kind": "Video", "video_id": "zlRKO21qEpQ", "keywords": "u16_l1_t3_we2, Radical, Equivalent, to, Rational, Exponents", "youtube_id": "zlRKO21qEpQ", "readable_id": "radical-equivalent-to-rational-exponents-2"}, "_GinTV94hUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_GinTV94hUk.mp4/_GinTV94hUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_GinTV94hUk.mp4/_GinTV94hUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_GinTV94hUk.m3u8/_GinTV94hUk.m3u8"}, "duration": 572, "id": "_GinTV94hUk", "title": "Why we need a lymphatic system", "format": "mp4", "description": "Welcome to the lymphatic system! Find out why we need it, and how it interacts with our blood vessels. By Patrick van Nieuwenhuizen.", "path": "khan/test-prep/nclex-rn/rn-lymphatic-system/rn-the-lymphatic-system/why-do-we-need-a-lymphatic-system/", "slug": "why-do-we-need-a-lymphatic-system", "kind": "Video", "video_id": "_GinTV94hUk", "keywords": "lymphatic system", "youtube_id": "_GinTV94hUk", "readable_id": "why-do-we-need-a-lymphatic-system"}, "d9GkH4vpK3w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/d9GkH4vpK3w.mp4/d9GkH4vpK3w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/d9GkH4vpK3w.mp4/d9GkH4vpK3w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/d9GkH4vpK3w.m3u8/d9GkH4vpK3w.m3u8"}, "duration": 600, "id": "d9GkH4vpK3w", "title": "Plant cells", "format": "mp4", "description": "Hank describes why plants are so freaking amazing - discussing their evolution, and how their cells are both similar to & different from animal cells.", "path": "crash-course-biology-106/", "slug": "crash-course-biology-106", "kind": "Video", "video_id": "d9GkH4vpK3w", "keywords": "", "youtube_id": "d9GkH4vpK3w", "readable_id": "crash-course-biology-106"}, "x9g82IA-IEU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/x9g82IA-IEU.mp4/x9g82IA-IEU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/x9g82IA-IEU.mp4/x9g82IA-IEU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/x9g82IA-IEU.m3u8/x9g82IA-IEU.m3u8"}, "path": "khan/humanities/history/euro-hist/wo/1943-axis-losing-in-europe/", "duration": 296, "id": "x9g82IA-IEU", "title": "1943 Axis losing in Europe", "format": "mp4", "description": "In 1943, the tide really turns in favor of the Allies in World War II. They are able to push the Axis out of N.Africa and force a surrender from Italy (along with Mussolini being deposed). The Soviets are able to start pushing the Axis out of the Soviet Union.", "slug": "1943-axis-losing-in-europe", "kind": "Video", "video_id": "x9g82IA-IEU", "keywords": "", "youtube_id": "x9g82IA-IEU", "readable_id": "1943-axis-losing-in-europe"}, "grdcr-X4zUc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/grdcr-X4zUc.mp4/grdcr-X4zUc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/grdcr-X4zUc.mp4/grdcr-X4zUc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/grdcr-X4zUc.m3u8/grdcr-X4zUc.m3u8"}, "path": "khan/college-admissions/paying-for-college/grants-and-scholarships/ss-relying-on-scholarships-when-facing-immigration-issues/", "duration": 39, "id": "grdcr-X4zUc", "title": "Student story: Relying on scholarships when facing immigration challenges", "format": "mp4", "description": "", "slug": "ss-relying-on-scholarships-when-facing-immigration-issues", "kind": "Video", "video_id": "grdcr-X4zUc", "keywords": "", "youtube_id": "grdcr-X4zUc", "readable_id": "ss-relying-on-scholarships-when-facing-immigration-issues"}, "b2IpkXid-ec": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b2IpkXid-ec.mp4/b2IpkXid-ec.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b2IpkXid-ec.mp4/b2IpkXid-ec.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b2IpkXid-ec.m3u8/b2IpkXid-ec.m3u8"}, "duration": 302, "id": "b2IpkXid-ec", "title": "Resolution of enantiomers", "format": "mp4", "description": "Understand how enantiomers can be isolated from a racemic mixture using chromatography with a chiral stationary phase. By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/resolution-of-enantiomers/", "slug": "resolution-of-enantiomers", "kind": "Video", "video_id": "b2IpkXid-ec", "keywords": "enantiomers", "youtube_id": "b2IpkXid-ec", "readable_id": "resolution-of-enantiomers"}, "UfRy4Rq8xes": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UfRy4Rq8xes.mp4/UfRy4Rq8xes.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UfRy4Rq8xes.mp4/UfRy4Rq8xes.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UfRy4Rq8xes.m3u8/UfRy4Rq8xes.m3u8"}, "duration": 690, "id": "UfRy4Rq8xes", "title": "Common Core Standards: Ratios and proportions", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the standards for ratios and proportions.", "path": "ccc-ratios-proportions/", "slug": "ccc-ratios-proportions", "kind": "Video", "video_id": "UfRy4Rq8xes", "keywords": "", "youtube_id": "UfRy4Rq8xes", "readable_id": "ccc-ratios-proportions"}, "hAXnQgU4bsg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hAXnQgU4bsg.mp4/hAXnQgU4bsg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hAXnQgU4bsg.mp4/hAXnQgU4bsg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hAXnQgU4bsg.m3u8/hAXnQgU4bsg.m3u8"}, "duration": 683, "id": "hAXnQgU4bsg", "title": "Preventing TB transmission", "format": "mp4", "description": "There are a number of ways that we can help to prevent TB from spreading, learn some of the most common ones. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/preventing-tb-transmission/", "slug": "preventing-tb-transmission", "kind": "Video", "video_id": "hAXnQgU4bsg", "keywords": "", "youtube_id": "hAXnQgU4bsg", "readable_id": "preventing-tb-transmission"}, "1B-0OIfyZvs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1B-0OIfyZvs.mp4/1B-0OIfyZvs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1B-0OIfyZvs.mp4/1B-0OIfyZvs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1B-0OIfyZvs.m3u8/1B-0OIfyZvs.m3u8"}, "duration": 174, "id": "1B-0OIfyZvs", "title": "Making maiolica", "format": "mp4", "description": "Today maiolica is still made in many of the same Italian towns and workshops in which it was created five hundred years ago during the Renaissance and methods have changed very little. Love art? Follow us on Google+", "path": "making-maiolica/", "slug": "making-maiolica", "kind": "Video", "video_id": "1B-0OIfyZvs", "keywords": "", "youtube_id": "1B-0OIfyZvs", "readable_id": "making-maiolica"}, "T-Yv4mp5yp8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/T-Yv4mp5yp8.mp4/T-Yv4mp5yp8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/T-Yv4mp5yp8.mp4/T-Yv4mp5yp8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/T-Yv4mp5yp8.m3u8/T-Yv4mp5yp8.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/late-classical/lysippos-farnese-hercules/", "duration": 388, "id": "T-Yv4mp5yp8", "title": "Lysippos, Farnese Hercules", "format": "mp4", "description": "Lysippos, Farnese Hercules, 4th century B.C.E. (later Roman copy by Glycon)(Archaeological Museum, Naples). Speakers: Dr. Beth Harris & Dr. Steven Zucker", "slug": "lysippos-farnese-hercules", "kind": "Video", "video_id": "T-Yv4mp5yp8", "keywords": "Lysippos, Hercules, Ancient Greece, Late Classical,", "youtube_id": "T-Yv4mp5yp8", "readable_id": "lysippos-farnese-hercules"}, "QCkn5bu8GgM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QCkn5bu8GgM.mp4/QCkn5bu8GgM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QCkn5bu8GgM.mp4/QCkn5bu8GgM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QCkn5bu8GgM.m3u8/QCkn5bu8GgM.m3u8"}, "duration": 667, "id": "QCkn5bu8GgM", "title": "Initial rise of Hitler and the Nazis", "format": "mp4", "description": "", "path": "khan/humanities/history/euro-hist/hitler-nazis/initial-rise-of-hitler-and-the-nazis/", "slug": "initial-rise-of-hitler-and-the-nazis", "kind": "Video", "video_id": "QCkn5bu8GgM", "keywords": "", "youtube_id": "QCkn5bu8GgM", "readable_id": "initial-rise-of-hitler-and-the-nazis"}, "FXYX_ksRwIk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FXYX_ksRwIk.mp4/FXYX_ksRwIk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FXYX_ksRwIk.mp4/FXYX_ksRwIk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FXYX_ksRwIk.m3u8/FXYX_ksRwIk.m3u8"}, "duration": 526, "id": "FXYX_ksRwIk", "title": "Types of neurotransmitters", "format": "mp4", "description": "", "path": "khan/test-prep/nclex-rn/nervous-system-phy/rn-neuronal-synapses/types-of-neurotransmitters/", "slug": "types-of-neurotransmitters", "kind": "Video", "video_id": "FXYX_ksRwIk", "keywords": "", "youtube_id": "FXYX_ksRwIk", "readable_id": "types-of-neurotransmitters"}, "EczhLjFtyio": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EczhLjFtyio.mp4/EczhLjFtyio.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EczhLjFtyio.mp4/EczhLjFtyio.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EczhLjFtyio.m3u8/EczhLjFtyio.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/guercino-st-luke-displaying-a-painting-of-the-virgin-1652-53/", "duration": 508, "id": "EczhLjFtyio", "title": "Guercino, Saint Luke Displaying a Painting of the Virgin", "format": "mp4", "description": "Guercino, St. Luke Displaying a Painting of the Virgin, oil on canvas, 1652-53\n(Nelson-Atkins Museum of Art, Kansas City)", "slug": "guercino-st-luke-displaying-a-painting-of-the-virgin-1652-53", "kind": "Video", "video_id": "EczhLjFtyio", "keywords": "Guercino, Baroque art, Smarthistory, Nelson-Atkins, St. Luke", "youtube_id": "EczhLjFtyio", "readable_id": "guercino-st-luke-displaying-a-painting-of-the-virgin-1652-53"}, "2x8QgGgUTBM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2x8QgGgUTBM.mp4/2x8QgGgUTBM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2x8QgGgUTBM.mp4/2x8QgGgUTBM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2x8QgGgUTBM.m3u8/2x8QgGgUTBM.m3u8"}, "path": "khan/humanities/art-1010/art-post-war-britain/don-mccullins-photographs/", "duration": 257, "id": "2x8QgGgUTBM", "title": "The Berlin Wall and industrial England: Don McCullin's conflict photography", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nDespite having photographed everything from the Vietnam War to the construction of the Berlin Wall, Don McCullin doesn\u2019t like to be referred to as a war photographer. McCullin has been covering events of global importance since the 1960s by placing himself in the heart of the action armed with nothing but a camera. In this video, he speaks about a series of his photographs in which there are no explicit images of war or violence, but traces of more subtle and insidious instances of conflict, such as the ravaging effect of industrialisation on the English countryside or poverty in major cities. His photographs also illuminate an idea that is central not only to photography, but to art in general: the relationship between text and image. If you had seen any of McCullin's photographs without titles, would you know where they took place, who they depicted, or what message they were intended to convey?\n\nFor McCullin, the camera can reveal the untold truths of a society. It also serves as a tool for healing, allowing the photographer to not only capture an image through its lens but to engage with its subjects in a unique way. Would you agree? Do you think a camera can change the way you see things?\n", "slug": "don-mccullins-photographs", "kind": "Video", "video_id": "2x8QgGgUTBM", "keywords": "Tate", "youtube_id": "2x8QgGgUTBM", "readable_id": "don-mccullins-photographs"}, "xfFqSnulTR8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xfFqSnulTR8.mp4/xfFqSnulTR8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xfFqSnulTR8.mp4/xfFqSnulTR8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xfFqSnulTR8.m3u8/xfFqSnulTR8.m3u8"}, "path": "khan/partner-content/big-history-project/early-humans/other-materials6/bhp-what-makes-us-different/", "duration": 294, "id": "xfFqSnulTR8", "title": "What Makes Humans Different?", "format": "mp4", "description": "Learn why humans, more than any other species, have made such a profound impression on the biosphere.", "slug": "bhp-what-makes-us-different", "kind": "Video", "video_id": "xfFqSnulTR8", "keywords": "", "youtube_id": "xfFqSnulTR8", "readable_id": "bhp-what-makes-us-different"}, "AC_kjcuHpZw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AC_kjcuHpZw.mp4/AC_kjcuHpZw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AC_kjcuHpZw.mp4/AC_kjcuHpZw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AC_kjcuHpZw.m3u8/AC_kjcuHpZw.m3u8"}, "duration": 242, "id": "AC_kjcuHpZw", "title": "Hyperinflation", "format": "mp4", "description": "Basic of hyperinflation. Weimar Germany, Hungarian Pengo and Zibabwean Dollar", "path": "khan/economics-finance-domain/core-finance/inflation-tutorial/inflation-scenarios-tutorial/hyperinflation/", "slug": "hyperinflation", "kind": "Video", "video_id": "AC_kjcuHpZw", "keywords": "Zimbabwe, spiral, finance", "youtube_id": "AC_kjcuHpZw", "readable_id": "hyperinflation"}, "aNDnU3udYBg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aNDnU3udYBg.mp4/aNDnU3udYBg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aNDnU3udYBg.mp4/aNDnU3udYBg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aNDnU3udYBg.m3u8/aNDnU3udYBg.m3u8"}, "duration": 394, "id": "aNDnU3udYBg", "title": "Decision making", "format": "mp4", "description": "Learn about common heuristics, biases, and other factors that affect our decisions.", "path": "khan/test-prep/mcat/processing-the-environment/cognition/decision-making/", "slug": "decision-making", "kind": "Video", "video_id": "aNDnU3udYBg", "keywords": "", "youtube_id": "aNDnU3udYBg", "readable_id": "decision-making"}, "VXLSTd_dlKg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VXLSTd_dlKg.mp4/VXLSTd_dlKg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VXLSTd_dlKg.mp4/VXLSTd_dlKg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VXLSTd_dlKg.m3u8/VXLSTd_dlKg.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/mitosis/interphase/", "duration": 508, "id": "VXLSTd_dlKg", "title": "Interphase", "format": "mp4", "description": "Interphase of a cell's life cycle.", "slug": "interphase", "kind": "Video", "video_id": "VXLSTd_dlKg", "keywords": "", "youtube_id": "VXLSTd_dlKg", "readable_id": "interphase"}, "BRUOACBkFRg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BRUOACBkFRg.mp4/BRUOACBkFRg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BRUOACBkFRg.mp4/BRUOACBkFRg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BRUOACBkFRg.m3u8/BRUOACBkFRg.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/gustav-klimt-the-kiss-1907-8/", "duration": 237, "id": "BRUOACBkFRg", "title": "Gustav Klimt, The Kiss", "format": "mp4", "description": "Gustav Klimt, The Kiss, 1907-8, oil and gold leaf on canvas, 180 x 180 cm (\u00d6sterreichische Galerie Belvedere, Vienna)", "slug": "gustav-klimt-the-kiss-1907-8", "kind": "Video", "video_id": "BRUOACBkFRg", "keywords": "smarthistory, klimt, Gustav Klimt, art history, khan academy, Vienna, Kiss, Schiele", "youtube_id": "BRUOACBkFRg", "readable_id": "gustav-klimt-the-kiss-1907-8"}, "Hlal9ME2Aig": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Hlal9ME2Aig.mp4/Hlal9ME2Aig.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Hlal9ME2Aig.mp4/Hlal9ME2Aig.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Hlal9ME2Aig.m3u8/Hlal9ME2Aig.m3u8"}, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/negative-numbers-introduction/", "duration": 576, "id": "Hlal9ME2Aig", "title": "Negative numbers introduction", "format": "mp4", "description": "Mysterious negative numbers! What ARE they? They are numbers less than zero. If you understand the nature of below zero temperatures, you can understand negative numbers. We'll help.", "slug": "negative-numbers-introduction", "kind": "Video", "video_id": "Hlal9ME2Aig", "keywords": "Negative, Numbers, Introduction, CC_6_NS_5, CC_6_NS_7_a, CC_6_NS_7_b", "youtube_id": "Hlal9ME2Aig", "readable_id": "negative-numbers-introduction"}, "JtsyP0tnVRY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JtsyP0tnVRY.mp4/JtsyP0tnVRY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JtsyP0tnVRY.mp4/JtsyP0tnVRY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JtsyP0tnVRY.m3u8/JtsyP0tnVRY.m3u8"}, "duration": 357, "id": "JtsyP0tnVRY", "title": "Finding the 100th term in a sequence", "format": "mp4", "description": "Finding the 100th Term in a Sequence", "path": "khan/math/precalculus/seq_induction/seq_and_series/finding-the-100th-term-in-a-sequence/", "slug": "finding-the-100th-term-in-a-sequence", "kind": "Video", "video_id": "JtsyP0tnVRY", "keywords": "U03_L1_T2_we2, Finding, the, 100th, Term, in, Sequence, CC_39336_F-BF_2", "youtube_id": "JtsyP0tnVRY", "readable_id": "finding-the-100th-term-in-a-sequence"}, "l5yMz2lFgx0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l5yMz2lFgx0.mp4/l5yMz2lFgx0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l5yMz2lFgx0.mp4/l5yMz2lFgx0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l5yMz2lFgx0.m3u8/l5yMz2lFgx0.m3u8"}, "duration": 549, "id": "l5yMz2lFgx0", "title": "Type 1 and type 2 muscle fibers", "format": "mp4", "description": "What's the difference between type 1 and type 2 muscle fibers? Learn one golden rule that will help you easily distinguish between them. By Raja Narayan. ", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/type-1-and-2-muscle-fibers/", "slug": "type-1-and-2-muscle-fibers", "kind": "Video", "video_id": "l5yMz2lFgx0", "keywords": "muscle fiber", "youtube_id": "l5yMz2lFgx0", "readable_id": "type-1-and-2-muscle-fibers"}, "rb2gArLStXs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rb2gArLStXs.mp4/rb2gArLStXs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rb2gArLStXs.mp4/rb2gArLStXs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rb2gArLStXs.m3u8/rb2gArLStXs.m3u8"}, "duration": 641, "id": "rb2gArLStXs", "title": "Hydrocarbon power!", "format": "mp4", "description": "In which Hank introduces us to the world of Organic Chemistry and, more specifically, the power of hydrocarbon. He talks about the classifications of organic compounds, the structures & properties of alkanes, isomers, and naming an alkane all by observing its structure.\nWriters: Edi Gonzalez\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem40-hydrocarbon-power/", "slug": "chem40-hydrocarbon-power", "kind": "Video", "video_id": "rb2gArLStXs", "keywords": "", "youtube_id": "rb2gArLStXs", "readable_id": "chem40-hydrocarbon-power"}, "FT8eIAMLbo4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FT8eIAMLbo4.mp4/FT8eIAMLbo4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FT8eIAMLbo4.mp4/FT8eIAMLbo4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FT8eIAMLbo4.m3u8/FT8eIAMLbo4.m3u8"}, "duration": 288, "id": "FT8eIAMLbo4", "title": "Cognitive dissonance", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/cognitive-dissonance/", "slug": "cognitive-dissonance", "kind": "Video", "video_id": "FT8eIAMLbo4", "keywords": "", "youtube_id": "FT8eIAMLbo4", "readable_id": "cognitive-dissonance"}, "YJdCw2fK-Og": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/YJdCw2fK-Og.mp4/YJdCw2fK-Og.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/YJdCw2fK-Og.mp4/YJdCw2fK-Og.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/YJdCw2fK-Og.m3u8/YJdCw2fK-Og.m3u8"}, "duration": 334, "id": "YJdCw2fK-Og", "title": "Powers of 10: patterns", "format": "mp4", "description": "We're going to observe a pattern that develops when we compare the number of zeros in tens with the number of zeros in the answer. What do you think will be the pattern?", "path": "powers-of-10/", "slug": "powers-of-10", "kind": "Video", "video_id": "YJdCw2fK-Og", "keywords": "", "youtube_id": "YJdCw2fK-Og", "readable_id": "powers-of-10"}, "3va4GU-TGGQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3va4GU-TGGQ.mp4/3va4GU-TGGQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3va4GU-TGGQ.mp4/3va4GU-TGGQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3va4GU-TGGQ.m3u8/3va4GU-TGGQ.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-intro-blended-learning/sscc-overview-blended-learning/sscc-blended-definition/", "duration": 386, "id": "3va4GU-TGGQ", "title": "The Definition of Blended Learning", "format": "mp4", "description": "", "slug": "sscc-blended-definition", "kind": "Video", "video_id": "3va4GU-TGGQ", "keywords": "", "youtube_id": "3va4GU-TGGQ", "readable_id": "sscc-blended-definition"}, "-6qiO49Q180": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-6qiO49Q180.mp4/-6qiO49Q180.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-6qiO49Q180.mp4/-6qiO49Q180.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-6qiO49Q180.m3u8/-6qiO49Q180.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/analyzing-polynomial-manipulations/", "duration": 459, "id": "-6qiO49Q180", "title": "Analyzing polynomial manipulations", "format": "mp4", "description": "", "slug": "analyzing-polynomial-manipulations", "kind": "Video", "video_id": "-6qiO49Q180", "keywords": "", "youtube_id": "-6qiO49Q180", "readable_id": "analyzing-polynomial-manipulations"}, "M-4GWomLbpc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/M-4GWomLbpc.mp4/M-4GWomLbpc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/M-4GWomLbpc.mp4/M-4GWomLbpc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/M-4GWomLbpc.m3u8/M-4GWomLbpc.m3u8"}, "path": "khan/economics-finance-domain/core-finance/money-and-banking/banking-and-money/banking-11-a-reserve-bank/", "duration": 688, "id": "M-4GWomLbpc", "title": "Banking 11: A reserve bank", "format": "mp4", "description": "Introduction to the idea of a reserve bank.", "slug": "banking-11-a-reserve-bank", "kind": "Video", "video_id": "M-4GWomLbpc", "keywords": "banking, banks, federal, reserve, currency, gold", "youtube_id": "M-4GWomLbpc", "readable_id": "banking-11-a-reserve-bank"}, "99pD1-6ZpuM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/99pD1-6ZpuM.mp4/99pD1-6ZpuM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/99pD1-6ZpuM.mp4/99pD1-6ZpuM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/99pD1-6ZpuM.m3u8/99pD1-6ZpuM.m3u8"}, "duration": 982, "id": "99pD1-6ZpuM", "title": "Scalar field line integral independent of path direction", "format": "mp4", "description": "Showing that the line integral of a scalar field is independent of path direction", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/scalar-field-line-integral-independent-of-path-direction/", "slug": "scalar-field-line-integral-independent-of-path-direction", "kind": "Video", "video_id": "99pD1-6ZpuM", "keywords": "scalar, field, path, direction, vector, calculus", "youtube_id": "99pD1-6ZpuM", "readable_id": "scalar-field-line-integral-independent-of-path-direction"}, "2hRIKH-Dca0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2hRIKH-Dca0.mp4/2hRIKH-Dca0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2hRIKH-Dca0.mp4/2hRIKH-Dca0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2hRIKH-Dca0.m3u8/2hRIKH-Dca0.m3u8"}, "duration": 75, "id": "2hRIKH-Dca0", "title": "Compass build (stroke direction)", "format": "mp4", "description": "Does the direction which we stroke the needle determine the final orientation?", "path": "khan/science/discoveries-projects/discoveries/magnetism/making-a-compass-stroke/", "slug": "making-a-compass-stroke", "kind": "Video", "video_id": "2hRIKH-Dca0", "keywords": "making magnet", "youtube_id": "2hRIKH-Dca0", "readable_id": "making-a-compass-stroke"}, "eejmYz0O3YE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/eejmYz0O3YE.mp4/eejmYz0O3YE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/eejmYz0O3YE.mp4/eejmYz0O3YE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/eejmYz0O3YE.m3u8/eejmYz0O3YE.m3u8"}, "path": "khan/test-prep/mcat/social-inequality/social-class/social-exclusion-segregation-and-social-isolation/", "duration": 380, "id": "eejmYz0O3YE", "title": "Social exclusion (segregation and social isolation)", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "social-exclusion-segregation-and-social-isolation", "kind": "Video", "video_id": "eejmYz0O3YE", "keywords": "", "youtube_id": "eejmYz0O3YE", "readable_id": "social-exclusion-segregation-and-social-isolation"}, "uGDk23Q0S9E": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uGDk23Q0S9E.mp4/uGDk23Q0S9E.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uGDk23Q0S9E.mp4/uGDk23Q0S9E.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uGDk23Q0S9E.m3u8/uGDk23Q0S9E.m3u8"}, "path": "khan/partner-content/wi-phi/value-theory-1/utilitarianism-part-2/", "duration": 382, "id": "uGDk23Q0S9E", "title": "Ethics: Utilitarianism part 2", "format": "mp4", "description": "Julia Markovits (Cornell University) gives an introduction to the moral theory of utilitarianism. Utilitarianism is the view that the right moral action is the one that maximizes happiness for all.\nSpeaker: Dr.\u00a0Julia Markovits, Associate Professor, Sage School of Philosophy, Cornell Universtiy\n", "slug": "utilitarianism-part-2", "kind": "Video", "video_id": "uGDk23Q0S9E", "keywords": "", "youtube_id": "uGDk23Q0S9E", "readable_id": "utilitarianism-part-2"}, "l5VbdqRjTXc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/l5VbdqRjTXc.mp4/l5VbdqRjTXc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/l5VbdqRjTXc.mp4/l5VbdqRjTXc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/l5VbdqRjTXc.m3u8/l5VbdqRjTXc.m3u8"}, "path": "khan/math/trigonometry/basic-trigonometry/basic_trig_ratios/example-trig-to-solve-the-sides-and-angles-of-a-right-triangle/", "duration": 424, "id": "l5VbdqRjTXc", "title": "Example: Trig to solve the sides and angles of a right triangle", "format": "mp4", "description": "Worked example using trigonometry to solve for the lengths of the sides of a right triangle given one of the non-right angles.", "slug": "example-trig-to-solve-the-sides-and-angles-of-a-right-triangle", "kind": "Video", "video_id": "l5VbdqRjTXc", "keywords": "trigonometry sine cosine sin cos tan", "youtube_id": "l5VbdqRjTXc", "readable_id": "example-trig-to-solve-the-sides-and-angles-of-a-right-triangle"}, "GL7qJYKzcsk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GL7qJYKzcsk.mp4/GL7qJYKzcsk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GL7qJYKzcsk.mp4/GL7qJYKzcsk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GL7qJYKzcsk.m3u8/GL7qJYKzcsk.m3u8"}, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-threatened/biodiversity-global/ocean-acidification-and-biodiversity-impacts/", "duration": 733, "id": "GL7qJYKzcsk", "title": "Demystifying ocean acidification and biodiversity impacts", "format": "mp4", "description": "", "slug": "ocean-acidification-and-biodiversity-impacts", "kind": "Video", "video_id": "GL7qJYKzcsk", "keywords": "", "youtube_id": "GL7qJYKzcsk", "readable_id": "ocean-acidification-and-biodiversity-impacts"}, "UNgx_YSygyU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UNgx_YSygyU.mp4/UNgx_YSygyU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UNgx_YSygyU.mp4/UNgx_YSygyU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UNgx_YSygyU.m3u8/UNgx_YSygyU.m3u8"}, "duration": 124, "id": "UNgx_YSygyU", "title": "German and Italian Empires in 1914", "format": "mp4", "description": "Italian and German Empires in 1914. Tsingtao beer.", "path": "khan/humanities/history/euro-hist/world-war-i-tutorial/german-and-italian-empires-in-1914/", "slug": "german-and-italian-empires-in-1914", "kind": "Video", "video_id": "UNgx_YSygyU", "keywords": "", "youtube_id": "UNgx_YSygyU", "readable_id": "german-and-italian-empires-in-1914"}, "3Gm4nAAc3zc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3Gm4nAAc3zc.mp4/3Gm4nAAc3zc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3Gm4nAAc3zc.mp4/3Gm4nAAc3zc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3Gm4nAAc3zc.m3u8/3Gm4nAAc3zc.m3u8"}, "duration": 873, "id": "3Gm4nAAc3zc", "title": "pKa and pKb relationship", "format": "mp4", "description": "The pKa and pKb relationship between conjugate acids and bases (both of which are weak).", "path": "khan/science/chemistry/acids-and-bases-topic/copy-of-acid-base-equilibria/pka-and-pkb-relationship/", "slug": "pka-and-pkb-relationship", "kind": "Video", "video_id": "3Gm4nAAc3zc", "keywords": "chemistry, acid, base", "youtube_id": "3Gm4nAAc3zc", "readable_id": "pka-and-pkb-relationship"}, "I3jyBUyjg48": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I3jyBUyjg48.mp4/I3jyBUyjg48.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I3jyBUyjg48.mp4/I3jyBUyjg48.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I3jyBUyjg48.m3u8/I3jyBUyjg48.m3u8"}, "path": "khan/math/trigonometry/basic-trigonometry/basic_trig_ratios/example-using-soh-cah-toa/", "duration": 245, "id": "I3jyBUyjg48", "title": "Example: Using soh cah toa", "format": "mp4", "description": "Worked example evaluating sine and cosine using soh cah toa definition.", "slug": "example-using-soh-cah-toa", "kind": "Video", "video_id": "I3jyBUyjg48", "keywords": "", "youtube_id": "I3jyBUyjg48", "readable_id": "example-using-soh-cah-toa"}, "vWXMDIazHjA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vWXMDIazHjA.mp4/vWXMDIazHjA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vWXMDIazHjA.mp4/vWXMDIazHjA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vWXMDIazHjA.m3u8/vWXMDIazHjA.m3u8"}, "duration": 493, "id": "vWXMDIazHjA", "title": "Interesting perimeter and area problems", "format": "mp4", "description": "Three example problems involving perimeter and area", "path": "khan/math/geometry/geometry-worked-examples/interesting-perimeter-and-area-problems/", "slug": "interesting-perimeter-and-area-problems", "kind": "Video", "video_id": "vWXMDIazHjA", "keywords": "Interesting, Perimeter, and, Area, Problems", "youtube_id": "vWXMDIazHjA", "readable_id": "interesting-perimeter-and-area-problems"}, "3_W6bGuTfzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3_W6bGuTfzU.mp4/3_W6bGuTfzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3_W6bGuTfzU.mp4/3_W6bGuTfzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3_W6bGuTfzU.m3u8/3_W6bGuTfzU.m3u8"}, "path": "khan/math/multivariable-calculus/divergence_theorem_topic/divergence_theorem_proof/divergence-theorem-proof-part-3/", "duration": 381, "id": "3_W6bGuTfzU", "title": "Divergence theorem proof (part 3)", "format": "mp4", "description": "Evaluating the surface integral", "slug": "divergence-theorem-proof-part-3", "kind": "Video", "video_id": "3_W6bGuTfzU", "keywords": "", "youtube_id": "3_W6bGuTfzU", "readable_id": "divergence-theorem-proof-part-3"}, "26WASJHF46A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/26WASJHF46A.mp4/26WASJHF46A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/26WASJHF46A.mp4/26WASJHF46A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/26WASJHF46A.m3u8/26WASJHF46A.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/reliquaries-manuscripts-tapestries/the-unicorn-in-captivity-1495-1505/", "duration": 357, "id": "26WASJHF46A", "title": "The Unicorn in Captivity", "format": "mp4", "description": "The Unicorn in Captivity (one of seven woven hangings popularly known as the Unicorn Tapestries or the Hunt of the Unicorn), 1495-1505, South Netherlandish, wool, silk, silver, and gilt (The Cloisters, The Metropolitan Museum of Art)", "slug": "the-unicorn-in-captivity-1495-1505", "kind": "Video", "video_id": "26WASJHF46A", "keywords": "Unicorn in Captivity, Unicorn, Unicorn Tapestries, Hunt, 1495, 1505, Netherlandish, wool, silk, silver, gilt, Cloisters, Metropolitan, Museum, Art, woven, art history, Smarthistory", "youtube_id": "26WASJHF46A", "readable_id": "the-unicorn-in-captivity-1495-1505"}, "XuwldEyWjH0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XuwldEyWjH0.mp4/XuwldEyWjH0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XuwldEyWjH0.mp4/XuwldEyWjH0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XuwldEyWjH0.m3u8/XuwldEyWjH0.m3u8"}, "duration": 232, "id": "XuwldEyWjH0", "title": "Example: Factoring special products", "format": "mp4", "description": "Factoring Special Products 1", "path": "khan/math/algebra/multiplying-factoring-expression/factoring-special-products/u09-l2-t1-we1-factoring-special-products-1/", "slug": "u09-l2-t1-we1-factoring-special-products-1", "kind": "Video", "video_id": "XuwldEyWjH0", "keywords": "U09_L2_T1_we1, Factoring, Special, Products, CC_39336_A-SSE_2", "youtube_id": "XuwldEyWjH0", "readable_id": "u09-l2-t1-we1-factoring-special-products-1"}, "XMkUDyl1ZRo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XMkUDyl1ZRo.mp4/XMkUDyl1ZRo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XMkUDyl1ZRo.mp4/XMkUDyl1ZRo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XMkUDyl1ZRo.m3u8/XMkUDyl1ZRo.m3u8"}, "path": "khan/science/physics/electricity-magnetism/new-topic-2015-04-15t211122485z/magnetism-11-electric-motors/", "duration": 400, "id": "XMkUDyl1ZRo", "title": "Magnetism 11: Electric motors", "format": "mp4", "description": "Using a commutator to solve the flipping problem and create an electric motor.", "slug": "magnetism-11-electric-motors", "kind": "Video", "video_id": "XMkUDyl1ZRo", "keywords": "electric, motor, commutator, magnetic, field", "youtube_id": "XMkUDyl1ZRo", "readable_id": "magnetism-11-electric-motors"}, "A0sp7I9rlz8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/A0sp7I9rlz8.mp4/A0sp7I9rlz8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/A0sp7I9rlz8.mp4/A0sp7I9rlz8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/A0sp7I9rlz8.m3u8/A0sp7I9rlz8.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-reproductive-system-physiology/rn-reproductive-system/maternal-changes-in-pregnancy/", "duration": 443, "id": "A0sp7I9rlz8", "title": "Maternal changes in pregnancy", "format": "mp4", "description": "", "slug": "maternal-changes-in-pregnancy", "kind": "Video", "video_id": "A0sp7I9rlz8", "keywords": "", "youtube_id": "A0sp7I9rlz8", "readable_id": "maternal-changes-in-pregnancy"}, "ojFuf9RYmzI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ojFuf9RYmzI.mp4/ojFuf9RYmzI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ojFuf9RYmzI.mp4/ojFuf9RYmzI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ojFuf9RYmzI.m3u8/ojFuf9RYmzI.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/coefficient-in-binomial-expansion/", "duration": 521, "id": "ojFuf9RYmzI", "title": "Determining coefficient in binomial expansion", "format": "mp4", "description": "", "slug": "coefficient-in-binomial-expansion", "kind": "Video", "video_id": "ojFuf9RYmzI", "keywords": "", "youtube_id": "ojFuf9RYmzI", "readable_id": "coefficient-in-binomial-expansion"}, "lEGS5ECgFxE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lEGS5ECgFxE.mp4/lEGS5ECgFxE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lEGS5ECgFxE.mp4/lEGS5ECgFxE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lEGS5ECgFxE.m3u8/lEGS5ECgFxE.m3u8"}, "duration": 338, "id": "lEGS5ECgFxE", "title": "Ratios of distances between colinear points", "format": "mp4", "description": "", "path": "khan/math/geometry/analytic-geometry-topic/cc-distances-between-points/ratios-of-distances-between-colinear-points/", "slug": "ratios-of-distances-between-colinear-points", "kind": "Video", "video_id": "lEGS5ECgFxE", "keywords": "", "youtube_id": "lEGS5ECgFxE", "readable_id": "ratios-of-distances-between-colinear-points"}, "XJdE7awhJg0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XJdE7awhJg0.mp4/XJdE7awhJg0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XJdE7awhJg0.mp4/XJdE7awhJg0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XJdE7awhJg0.m3u8/XJdE7awhJg0.m3u8"}, "duration": 604, "id": "XJdE7awhJg0", "title": "Attitude influences behavior", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/behavior/theories-of-attitude-and-behavior-change/attitude-influences-behavior/", "slug": "attitude-influences-behavior", "kind": "Video", "video_id": "XJdE7awhJg0", "keywords": "", "youtube_id": "XJdE7awhJg0", "readable_id": "attitude-influences-behavior"}, "hTJgK-wZMcE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hTJgK-wZMcE.mp4/hTJgK-wZMcE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hTJgK-wZMcE.mp4/hTJgK-wZMcE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hTJgK-wZMcE.m3u8/hTJgK-wZMcE.m3u8"}, "duration": 156, "id": "hTJgK-wZMcE", "title": "Recognizing rational and irrational expressions example", "format": "mp4", "description": "", "path": "khan/math/algebra/ratio-proportion-topic/alg-rational-irrational-numbers/recognizing-rational-and-irrational-expressions-example/", "slug": "recognizing-rational-and-irrational-expressions-example", "kind": "Video", "video_id": "hTJgK-wZMcE", "keywords": "", "youtube_id": "hTJgK-wZMcE", "readable_id": "recognizing-rational-and-irrational-expressions-example"}, "UtIFoMuyh_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UtIFoMuyh_4.mp4/UtIFoMuyh_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UtIFoMuyh_4.mp4/UtIFoMuyh_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UtIFoMuyh_4.m3u8/UtIFoMuyh_4.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/temporal-arteritis/", "duration": 617, "id": "UtIFoMuyh_4", "title": "Temporal arteritis", "format": "mp4", "description": "Temporal arteritis (otherwise known as giant-cell arteritis) is a type of vasculitis that affects medium to large arteries in the head. Patients with temporal arteritis can have symptoms like migraines and sudden vision problems. Learn how health care professionals diagnosis temporal arteritis by examining blood work (such as erythrocyte sedimentation rate, granulomas) and taking samples (biopsies) of vascular tissue.", "slug": "temporal-arteritis", "kind": "Video", "video_id": "UtIFoMuyh_4", "keywords": "", "youtube_id": "UtIFoMuyh_4", "readable_id": "temporal-arteritis"}, "R443Db-wJ5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/R443Db-wJ5o.mp4/R443Db-wJ5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/R443Db-wJ5o.mp4/R443Db-wJ5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/R443Db-wJ5o.m3u8/R443Db-wJ5o.m3u8"}, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/exponential-equation/", "duration": 171, "id": "R443Db-wJ5o", "title": "Solving exponential equation with logarithm", "format": "mp4", "description": "", "slug": "exponential-equation", "kind": "Video", "video_id": "R443Db-wJ5o", "keywords": "", "youtube_id": "R443Db-wJ5o", "readable_id": "exponential-equation"}, "ddifthdMNVc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ddifthdMNVc.mp4/ddifthdMNVc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ddifthdMNVc.mp4/ddifthdMNVc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ddifthdMNVc.m3u8/ddifthdMNVc.m3u8"}, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/blood-cell-lineages/", "duration": 484, "id": "ddifthdMNVc", "title": "Blood cell lineages", "format": "mp4", "description": "", "slug": "blood-cell-lineages", "kind": "Video", "video_id": "ddifthdMNVc", "keywords": "", "youtube_id": "ddifthdMNVc", "readable_id": "blood-cell-lineages"}, "E3OfSGjpDoI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E3OfSGjpDoI.mp4/E3OfSGjpDoI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E3OfSGjpDoI.mp4/E3OfSGjpDoI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E3OfSGjpDoI.m3u8/E3OfSGjpDoI.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-intro-pre-alg/rewriting-fraction-as-a-decimal-to-the-hundredths-place/", "duration": 229, "id": "E3OfSGjpDoI", "title": "Rewriting fraction as a decimal to the hundredths place", "format": "mp4", "description": "Learn how to rewrite a fraction as a decimal. The example in this video: 21/60 --> 0.35", "slug": "rewriting-fraction-as-a-decimal-to-the-hundredths-place", "kind": "Video", "video_id": "E3OfSGjpDoI", "keywords": "", "youtube_id": "E3OfSGjpDoI", "readable_id": "rewriting-fraction-as-a-decimal-to-the-hundredths-place"}, "31_7PcU9YFc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/31_7PcU9YFc.mp4/31_7PcU9YFc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/31_7PcU9YFc.mp4/31_7PcU9YFc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/31_7PcU9YFc.m3u8/31_7PcU9YFc.m3u8"}, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-england/room-blake/", "duration": 216, "id": "31_7PcU9YFc", "title": "Room: William Blake", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nCurator Martin Myrone explores the work of William Blake. To learn more about Blake's life and work, check out our resource here.\n\nLearn more about the art featured in this video:\n- William Blake, Newton, 1795\n-\u00a0William Blake, The Ghost of a Flea, 1819-20\n-\u00a0William Blake, The Spiritual Form of Pitt Guiding Behemoth, 1805\n- William Blake, The Spiritual Form of Nelson Guiding Leviathan, 1805", "slug": "room-blake", "kind": "Video", "video_id": "31_7PcU9YFc", "keywords": "William Blake, Tate", "youtube_id": "31_7PcU9YFc", "readable_id": "room-blake"}, "WLIwMlIdIxQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WLIwMlIdIxQ.mp4/WLIwMlIdIxQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WLIwMlIdIxQ.mp4/WLIwMlIdIxQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WLIwMlIdIxQ.m3u8/WLIwMlIdIxQ.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial/e2-elimination-regioselectivity/", "duration": 493, "id": "WLIwMlIdIxQ", "title": "E2 elimination: Regioselectivity", "format": "mp4", "description": "", "slug": "e2-elimination-regioselectivity", "kind": "Video", "video_id": "WLIwMlIdIxQ", "keywords": "", "youtube_id": "WLIwMlIdIxQ", "readable_id": "e2-elimination-regioselectivity"}, "jexMSlSDubM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jexMSlSDubM.mp4/jexMSlSDubM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jexMSlSDubM.mp4/jexMSlSDubM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jexMSlSDubM.m3u8/jexMSlSDubM.m3u8"}, "duration": 620, "id": "jexMSlSDubM", "title": "Polar coordinates 1", "format": "mp4", "description": "Introduction to polar coordinates", "path": "khan/math/precalculus/parametric_equations/polar_coor/polar-coordinates-1/", "slug": "polar-coordinates-1", "kind": "Video", "video_id": "jexMSlSDubM", "keywords": "polar, cartesian, coordinates, CC_8_G_8, CC_39336_F-BF_4", "youtube_id": "jexMSlSDubM", "readable_id": "polar-coordinates-1"}, "kJ43GdU5Uzc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/kJ43GdU5Uzc.mp4/kJ43GdU5Uzc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/kJ43GdU5Uzc.mp4/kJ43GdU5Uzc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/kJ43GdU5Uzc.m3u8/kJ43GdU5Uzc.m3u8"}, "duration": 349, "id": "kJ43GdU5Uzc", "title": "Types of indifference curves", "format": "mp4", "description": "Indifference curves for normal goods, substitutes and perfect complements", "path": "khan/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial/types-of-indifference-curves/", "slug": "types-of-indifference-curves", "kind": "Video", "video_id": "kJ43GdU5Uzc", "keywords": "microeconomics", "youtube_id": "kJ43GdU5Uzc", "readable_id": "types-of-indifference-curves"}, "Xn29pt5159k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Xn29pt5159k.mp4/Xn29pt5159k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Xn29pt5159k.mp4/Xn29pt5159k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Xn29pt5159k.m3u8/Xn29pt5159k.m3u8"}, "duration": 557, "id": "Xn29pt5159k", "title": "Making flu vaccine each year", "format": "mp4", "description": "Learn about how the flu vaccine is made every year and how they name the strains that they put inside. Rishi is a pediatric infectious disease physician and works at Khan Academy.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/influenza/making-flu-vaccine-each-year/", "slug": "making-flu-vaccine-each-year", "kind": "Video", "video_id": "Xn29pt5159k", "keywords": "", "youtube_id": "Xn29pt5159k", "readable_id": "making-flu-vaccine-each-year"}, "aLJzEl5st8s": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aLJzEl5st8s.mp4/aLJzEl5st8s.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aLJzEl5st8s.mp4/aLJzEl5st8s.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aLJzEl5st8s.m3u8/aLJzEl5st8s.m3u8"}, "duration": 512, "id": "aLJzEl5st8s", "title": "The Forces on an Airplane", "format": "mp4", "description": "How do airplanes fly? It's not magic. Learn about the forces that help (and hinder) airplane flight.", "path": "the-forces-on-an-airplane/", "slug": "the-forces-on-an-airplane", "kind": "Video", "video_id": "aLJzEl5st8s", "keywords": "MIT, M.I.T., K-12, K12, engineering, teaching, learning, demo*, science, lift, drag, airplane, Transportation, Physics", "youtube_id": "aLJzEl5st8s", "readable_id": "the-forces-on-an-airplane"}, "2IFItASxDVo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2IFItASxDVo.mp4/2IFItASxDVo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2IFItASxDVo.mp4/2IFItASxDVo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2IFItASxDVo.m3u8/2IFItASxDVo.m3u8"}, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/binomial-expansion-algorithm/", "duration": 299, "id": "2IFItASxDVo", "title": "Algorithm for mentally computing binomial expansion coefficients", "format": "mp4", "description": "", "slug": "binomial-expansion-algorithm", "kind": "Video", "video_id": "2IFItASxDVo", "keywords": "", "youtube_id": "2IFItASxDVo", "readable_id": "binomial-expansion-algorithm"}, "3ACF7L-7Vsg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3ACF7L-7Vsg.mp4/3ACF7L-7Vsg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3ACF7L-7Vsg.mp4/3ACF7L-7Vsg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3ACF7L-7Vsg.m3u8/3ACF7L-7Vsg.m3u8"}, "path": "khan/math/algebra/introduction-to-algebra/feel-for-equations-and-inequalit/dependent-and-independent-variables-exercise-example-3/", "duration": 120, "id": "3ACF7L-7Vsg", "title": "Dependent and independent variables exercise: express the graph as an equation", "format": "mp4", "description": "We're flipping the last video on its head and doing the opposite. This time we give you the graph and ask you to express it as an equation.", "slug": "dependent-and-independent-variables-exercise-example-3", "kind": "Video", "video_id": "3ACF7L-7Vsg", "keywords": "", "youtube_id": "3ACF7L-7Vsg", "readable_id": "dependent-and-independent-variables-exercise-example-3"}, "8C5kAIKLcZo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8C5kAIKLcZo.mp4/8C5kAIKLcZo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8C5kAIKLcZo.mp4/8C5kAIKLcZo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8C5kAIKLcZo.m3u8/8C5kAIKLcZo.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/unit_conversion/converting-yards-into-inches/", "duration": 349, "id": "8C5kAIKLcZo", "title": "Converting yards into inches", "format": "mp4", "description": "Converting units of measure is a skill you'll encounter many times over in everyday life. In this example, we'll look at yards, feet, and inches.", "slug": "converting-yards-into-inches", "kind": "Video", "video_id": "8C5kAIKLcZo", "keywords": "U06_L1_T1_we1, Converting, Yards, into, Inches", "youtube_id": "8C5kAIKLcZo", "readable_id": "converting-yards-into-inches"}, "v_OfFmMRvOc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v_OfFmMRvOc.mp4/v_OfFmMRvOc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v_OfFmMRvOc.mp4/v_OfFmMRvOc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v_OfFmMRvOc.m3u8/v_OfFmMRvOc.m3u8"}, "path": "khan/math/differential-calculus/taking-derivatives/derivatives-inverse-functions/derivative-inverse-cosine/", "duration": 224, "id": "v_OfFmMRvOc", "title": "Derivative of inverse cosine", "format": "mp4", "description": "", "slug": "derivative-inverse-cosine", "kind": "Video", "video_id": "v_OfFmMRvOc", "keywords": "", "youtube_id": "v_OfFmMRvOc", "readable_id": "derivative-inverse-cosine"}, "h0FFEBHBufo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/h0FFEBHBufo.mp4/h0FFEBHBufo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/h0FFEBHBufo.mp4/h0FFEBHBufo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/h0FFEBHBufo.m3u8/h0FFEBHBufo.m3u8"}, "path": "khan/math/geometry/geometry-worked-examples/ca-geometry-triangles-and-parallelograms/", "duration": 674, "id": "h0FFEBHBufo", "title": "CA Geometry: Triangles and parallelograms", "format": "mp4", "description": "21-25, triangles and parallelograms", "slug": "ca-geometry-triangles-and-parallelograms", "kind": "Video", "video_id": "h0FFEBHBufo", "keywords": "geometry, triangles, parallelograms", "youtube_id": "h0FFEBHBufo", "readable_id": "ca-geometry-triangles-and-parallelograms"}, "WYI4u3beRdM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WYI4u3beRdM.mp4/WYI4u3beRdM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WYI4u3beRdM.mp4/WYI4u3beRdM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WYI4u3beRdM.m3u8/WYI4u3beRdM.m3u8"}, "path": "khan/partner-content/all-star-orchestra/masterpieces-old-and-new/rands/adieu-composer-and-his-work/", "duration": 606, "id": "WYI4u3beRdM", "title": "Adieu: The composer and his work", "format": "mp4", "description": "Watch the full performance here (starting at 49:33)", "slug": "adieu-composer-and-his-work", "kind": "Video", "video_id": "WYI4u3beRdM", "keywords": "", "youtube_id": "WYI4u3beRdM", "readable_id": "adieu-composer-and-his-work"}, "jAOtWm_WZiE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/jAOtWm_WZiE.mp4/jAOtWm_WZiE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/jAOtWm_WZiE.mp4/jAOtWm_WZiE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/jAOtWm_WZiE.m3u8/jAOtWm_WZiE.m3u8"}, "duration": 209, "id": "jAOtWm_WZiE", "title": "Basic shorting", "format": "mp4", "description": "Basic Shorting", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/basic-shorting/", "slug": "basic-shorting", "kind": "Video", "video_id": "jAOtWm_WZiE", "keywords": "Basic, Shorting", "youtube_id": "jAOtWm_WZiE", "readable_id": "basic-shorting"}, "AW3bPaErUWU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AW3bPaErUWU.mp4/AW3bPaErUWU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AW3bPaErUWU.mp4/AW3bPaErUWU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AW3bPaErUWU.m3u8/AW3bPaErUWU.m3u8"}, "duration": 597, "id": "AW3bPaErUWU", "title": "Connecting the keynesian cross to the IS curve", "format": "mp4", "description": "Introduction to the Investment/Savings curve", "path": "khan/economics-finance-domain/macroeconomics/income-and-expenditure-topic/is-lm-model-tutorial/connecting-the-keynesian-cross-to-the-is-curve/", "slug": "connecting-the-keynesian-cross-to-the-is-curve", "kind": "Video", "video_id": "AW3bPaErUWU", "keywords": "IS-LM, ISLM, model, IS/LM", "youtube_id": "AW3bPaErUWU", "readable_id": "connecting-the-keynesian-cross-to-the-is-curve"}, "OmWyMLucEbE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/OmWyMLucEbE.mp4/OmWyMLucEbE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/OmWyMLucEbE.mp4/OmWyMLucEbE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/OmWyMLucEbE.m3u8/OmWyMLucEbE.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/second-order-reaction-example/", "duration": 489, "id": "OmWyMLucEbE", "title": "Second-order reaction example", "format": "mp4", "description": "", "slug": "second-order-reaction-example", "kind": "Video", "video_id": "OmWyMLucEbE", "keywords": "", "youtube_id": "OmWyMLucEbE", "readable_id": "second-order-reaction-example"}, "S6TvRDwgQag": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/S6TvRDwgQag.mp4/S6TvRDwgQag.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/S6TvRDwgQag.mp4/S6TvRDwgQag.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/S6TvRDwgQag.m3u8/S6TvRDwgQag.m3u8"}, "duration": 679, "id": "S6TvRDwgQag", "title": "Why parties to cartels cheat", "format": "mp4", "description": "Why duopolists would benefit to form a cartel and why it makes sense for them to cheat", "path": "khan/economics-finance-domain/microeconomics/nash-equilibrium-tutorial/cartels-cheat-tutorial/why-parties-to-cartels-cheat/", "slug": "why-parties-to-cartels-cheat", "kind": "Video", "video_id": "S6TvRDwgQag", "keywords": "microeconomics", "youtube_id": "S6TvRDwgQag", "readable_id": "why-parties-to-cartels-cheat"}, "BP5mCFyBCq8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/BP5mCFyBCq8.mp4/BP5mCFyBCq8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/BP5mCFyBCq8.mp4/BP5mCFyBCq8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/BP5mCFyBCq8.m3u8/BP5mCFyBCq8.m3u8"}, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/delacroix-liberty-leading-the-people-1830/", "duration": 324, "id": "BP5mCFyBCq8", "title": "Delacroix, Liberty Leading the People", "format": "mp4", "description": "Eug\u00e8ne Delacroix, Liberty Leading the People, oil on canvas, 2.6 x 3.25m, 1830 (Mus\u00e9e du Louvre, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker", "slug": "delacroix-liberty-leading-the-people-1830", "kind": "Video", "video_id": "BP5mCFyBCq8", "keywords": "Delacroix, Liberty Leading the People, Art History, Smarthistory, Musee du Louvre, Paris, Eug\u00e8ne Delacroix Art history", "youtube_id": "BP5mCFyBCq8", "readable_id": "delacroix-liberty-leading-the-people-1830"}, "u4m5mGw4PaM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/u4m5mGw4PaM.mp4/u4m5mGw4PaM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/u4m5mGw4PaM.mp4/u4m5mGw4PaM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/u4m5mGw4PaM.m3u8/u4m5mGw4PaM.m3u8"}, "duration": 152, "id": "u4m5mGw4PaM", "title": "\"To Lift\" by Richard Serra, 1967 | MoMA Education", "format": "mp4", "description": "A MoMA educator discusses how he teaches \"To Lift\" by Richard Serra, 1967.\u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-serra/", "slug": "teaching-serra", "kind": "Video", "video_id": "u4m5mGw4PaM", "keywords": "", "youtube_id": "u4m5mGw4PaM", "readable_id": "teaching-serra"}, "89xjsBW9AAI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/89xjsBW9AAI.mp4/89xjsBW9AAI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/89xjsBW9AAI.mp4/89xjsBW9AAI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/89xjsBW9AAI.m3u8/89xjsBW9AAI.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/kant-on-space-part-2/", "duration": 320, "id": "89xjsBW9AAI", "title": "Kant: On Space part 2", "format": "mp4", "description": "Scott Edgar (Saint Mary's) returns to Kant's argument from Geometry, this time examining two famous objections to it: the famous \"neglected alternative\" objection and a powerful objection from 20th century physics. After considering possible responses on Kant's behalf, Scott ends with a bang, introducing Kant's famous claim that we know things only as they appear to us, not as they are in themselves.\n\nSpeaker: Dr. Scott Edgar, Assistant Professor, Saint Mary's University", "slug": "kant-on-space-part-2", "kind": "Video", "video_id": "89xjsBW9AAI", "keywords": "", "youtube_id": "89xjsBW9AAI", "readable_id": "kant-on-space-part-2"}, "daxL1ZLrUzg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/daxL1ZLrUzg.mp4/daxL1ZLrUzg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/daxL1ZLrUzg.mp4/daxL1ZLrUzg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/daxL1ZLrUzg.m3u8/daxL1ZLrUzg.m3u8"}, "path": "khan/economics-finance-domain/microeconomics/perfect-competition-topic/monopolies-tutorial/monopolist-optimizing-price-part-3-dead-weight-loss-avi/", "duration": 357, "id": "daxL1ZLrUzg", "title": "Monopolist optimizing price: Dead weight loss", "format": "mp4", "description": "Showing that what is optimal for the monopolist is not optimal for society", "slug": "monopolist-optimizing-price-part-3-dead-weight-loss-avi", "kind": "Video", "video_id": "daxL1ZLrUzg", "keywords": "microeconomics", "youtube_id": "daxL1ZLrUzg", "readable_id": "monopolist-optimizing-price-part-3-dead-weight-loss-avi"}, "-oClpRv7msg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-oClpRv7msg.mp4/-oClpRv7msg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-oClpRv7msg.mp4/-oClpRv7msg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-oClpRv7msg.m3u8/-oClpRv7msg.m3u8"}, "duration": 348, "id": "-oClpRv7msg", "title": "Price of related products and demand", "format": "mp4", "description": "How changes in the price of related goods can shift demand", "path": "khan/economics-finance-domain/microeconomics/supply-demand-equilibrium/demand-curve-tutorial/price-of-related-products-and-demand/", "slug": "price-of-related-products-and-demand", "kind": "Video", "video_id": "-oClpRv7msg", "keywords": "supply, demand, economics", "youtube_id": "-oClpRv7msg", "readable_id": "price-of-related-products-and-demand"}, "J-o63pl0QWg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/J-o63pl0QWg.mp4/J-o63pl0QWg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/J-o63pl0QWg.mp4/J-o63pl0QWg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/J-o63pl0QWg.m3u8/J-o63pl0QWg.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-2008-may-8-16/", "duration": 194, "id": "J-o63pl0QWg", "title": "16 Perimeter of inscribed triangle", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-8-16", "kind": "Video", "video_id": "J-o63pl0QWg", "keywords": "", "youtube_id": "J-o63pl0QWg", "readable_id": "sat-2008-may-8-16"}, "KhdX5eX4dMM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/KhdX5eX4dMM.mp4/KhdX5eX4dMM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/KhdX5eX4dMM.mp4/KhdX5eX4dMM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/KhdX5eX4dMM.m3u8/KhdX5eX4dMM.m3u8"}, "path": "khan/test-prep/mcat/cells/viruses/retroviruses/", "duration": 448, "id": "KhdX5eX4dMM", "title": "Retroviruses", "format": "mp4", "description": "", "slug": "retroviruses", "kind": "Video", "video_id": "KhdX5eX4dMM", "keywords": "", "youtube_id": "KhdX5eX4dMM", "readable_id": "retroviruses"}, "n2HWkDrorRg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/n2HWkDrorRg.mp4/n2HWkDrorRg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/n2HWkDrorRg.mp4/n2HWkDrorRg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/n2HWkDrorRg.m3u8/n2HWkDrorRg.m3u8"}, "path": "khan/humanities/art-1010/art-between-wars/latin-american-modernism1/frida-kahlo-frieda-and-diego-rivera-1931/", "duration": 229, "id": "n2HWkDrorRg", "title": "Frida Kahlo, Frieda and Diego Rivera", "format": "mp4", "description": "Frida Kahlo, Frieda and Diego Rivera\u200b, 1931, oil on canvas, 39-3/8 x 31 inches or 100.01 x 78.74 cm (San Francisco Museum of Modern Art) Speakers: Dr. Beth Harris and Dr. Steven Zucker\n\nPainted in San Francisco during the artist's first trip outside of Mexico. She accompanied her husband Diego Rivera who was painting in the United States and would, at the end of the year, be the subject of a retrospecive at The Museum of Modern Art in New York. The banderole carried by the bird above the artist states: Here you see us, me, Frieda Kahlo\u200b, with my beloved husband Diego Rivera, I painted these portraits in the beautiful city of San Francisco, California, for our friend Mr. Albert Bender, and it was the month of April of the year 1931. Note: Kahlo changed her German name, Frieda, to Frida.", "slug": "frida-kahlo-frieda-and-diego-rivera-1931", "kind": "Video", "video_id": "n2HWkDrorRg", "keywords": "art, art history, smarthistory, mexican art, SFMOMA", "youtube_id": "n2HWkDrorRg", "readable_id": "frida-kahlo-frieda-and-diego-rivera-1931"}, "rkntp3_cZl4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rkntp3_cZl4.mp4/rkntp3_cZl4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rkntp3_cZl4.mp4/rkntp3_cZl4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rkntp3_cZl4.m3u8/rkntp3_cZl4.m3u8"}, "duration": 387, "id": "rkntp3_cZl4", "title": "Dielectrics in capacitors", "format": "mp4", "description": "How dielectrics function in circuits. By David Santo Pietro. ", "path": "khan/test-prep/mcat/physical-processes/capacitors/dielectrics-capacitors/", "slug": "dielectrics-capacitors", "kind": "Video", "video_id": "rkntp3_cZl4", "keywords": "dielectric, capacitor, circuit", "youtube_id": "rkntp3_cZl4", "readable_id": "dielectrics-capacitors"}, "QKghZNGL3eM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QKghZNGL3eM.mp4/QKghZNGL3eM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QKghZNGL3eM.mp4/QKghZNGL3eM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QKghZNGL3eM.m3u8/QKghZNGL3eM.m3u8"}, "path": "khan/partner-content/ssf-cci/sscc-intro-blended-learning/sscc-blended-learning-models/sscc-blended-station/", "duration": 130, "id": "QKghZNGL3eM", "title": "The Station Rotation Model", "format": "mp4", "description": "", "slug": "sscc-blended-station", "kind": "Video", "video_id": "QKghZNGL3eM", "keywords": "", "youtube_id": "QKghZNGL3eM", "readable_id": "sscc-blended-station"}, "VPYDW1_FsyM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VPYDW1_FsyM.mp4/VPYDW1_FsyM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VPYDW1_FsyM.mp4/VPYDW1_FsyM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VPYDW1_FsyM.m3u8/VPYDW1_FsyM.m3u8"}, "path": "khan/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial/alkyl-halide-nomenclature/", "duration": 612, "id": "VPYDW1_FsyM", "title": "Alkyl halide nomenclature", "format": "mp4", "description": "", "slug": "alkyl-halide-nomenclature", "kind": "Video", "video_id": "VPYDW1_FsyM", "keywords": "", "youtube_id": "VPYDW1_FsyM", "readable_id": "alkyl-halide-nomenclature"}, "a06Rn5RTQ40": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/a06Rn5RTQ40.mp4/a06Rn5RTQ40.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/a06Rn5RTQ40.mp4/a06Rn5RTQ40.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/a06Rn5RTQ40.m3u8/a06Rn5RTQ40.m3u8"}, "duration": 632, "id": "a06Rn5RTQ40", "title": "Unit conversion and significant digits", "format": "mp4", "description": "A unit is the frequently arbitrary designation we have given to something to convey a definite magnitude of a physical quantity and every quantity can be expressed in terms of the seven base units that are contained in the international system of units. Hank thinks this is a thrilling subject, and while you may not agree, it is a subject that is very important if you want to be a scientist and communicate with accuracy and precision with other scientists. So listen up and learn something or Hank might have to kill you! (NOT REALLY!)\nWriter: Hank Green\nChief Editor: Blake de Pastino\nConsultant: Dr. Heiko Langner\nDirector/Editor: Nicholas Jenkins\nSound Designer: Michael Aranda\nGraphics: Thought Cafe\n", "path": "chem02-unit-conversion-sig-digits/", "slug": "chem02-unit-conversion-sig-digits", "kind": "Video", "video_id": "a06Rn5RTQ40", "keywords": "", "youtube_id": "a06Rn5RTQ40", "readable_id": "chem02-unit-conversion-sig-digits"}, "3pL2X-8-eVk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3pL2X-8-eVk.mp4/3pL2X-8-eVk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3pL2X-8-eVk.mp4/3pL2X-8-eVk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3pL2X-8-eVk.m3u8/3pL2X-8-eVk.m3u8"}, "duration": 570, "id": "3pL2X-8-eVk", "title": "Simple and fractional distillations", "format": "mp4", "description": "Learn how chemicals can be separated and purified through distillation, a process which separates them based on their respective boiling points. By Angela Guerrero. ", "path": "khan/test-prep/mcat/chemical-processes/separations-purifications/simple-and-fractional-distillations/", "slug": "simple-and-fractional-distillations", "kind": "Video", "video_id": "3pL2X-8-eVk", "keywords": "fractional distillations, simple distillations", "youtube_id": "3pL2X-8-eVk", "readable_id": "simple-and-fractional-distillations"}, "8mcTsyV56jI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/8mcTsyV56jI.mp4/8mcTsyV56jI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/8mcTsyV56jI.mp4/8mcTsyV56jI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/8mcTsyV56jI.m3u8/8mcTsyV56jI.m3u8"}, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-subtract-100/addition-with-regrouping/", "duration": 276, "id": "8mcTsyV56jI", "title": "Addition with regrouping", "format": "mp4", "description": "Learn to add 35 + 27 thinking about place value. This example requires regrouping.", "slug": "addition-with-regrouping", "kind": "Video", "video_id": "8mcTsyV56jI", "keywords": "", "youtube_id": "8mcTsyV56jI", "readable_id": "addition-with-regrouping"}, "3M4pu6YtzJU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3M4pu6YtzJU.mp4/3M4pu6YtzJU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3M4pu6YtzJU.mp4/3M4pu6YtzJU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3M4pu6YtzJU.m3u8/3M4pu6YtzJU.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/greek-art/hellenistic/dying-gaul-c-220-b-c-e/", "duration": 212, "id": "3M4pu6YtzJU", "title": "Dying Gaul", "format": "mp4", "description": "Dying Gaul, ancient Roman marble copy of a lost bronze Greek sculpture, c. 220 B.C.E., Hellenistic Period (Capitoline Museum). Speakers: Dr. Steven Zucker and Dr. Beth Harris", "slug": "dying-gaul-c-220-b-c-e", "kind": "Video", "video_id": "3M4pu6YtzJU", "keywords": "Art, Art History, Smarthistory, Hellenistic, Gaul, Dying Gaul, Greece, Greek Art, Ancient Greece, Sculpture", "youtube_id": "3M4pu6YtzJU", "readable_id": "dying-gaul-c-220-b-c-e"}, "SJ1gu_WRx5o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SJ1gu_WRx5o.mp4/SJ1gu_WRx5o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SJ1gu_WRx5o.mp4/SJ1gu_WRx5o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SJ1gu_WRx5o.m3u8/SJ1gu_WRx5o.m3u8"}, "duration": 554, "id": "SJ1gu_WRx5o", "title": "Hypoxic pulmonary vasoconstriction", "format": "mp4", "description": "Watch how blood gets diverted away from alveoli with low oxygen levels. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/fetal-circulation/hypoxic-pulmonary-vasoconstriction/", "slug": "hypoxic-pulmonary-vasoconstriction", "kind": "Video", "video_id": "SJ1gu_WRx5o", "keywords": "", "youtube_id": "SJ1gu_WRx5o", "readable_id": "hypoxic-pulmonary-vasoconstriction"}, "oIlMsYOKEsc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oIlMsYOKEsc.mp4/oIlMsYOKEsc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oIlMsYOKEsc.mp4/oIlMsYOKEsc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oIlMsYOKEsc.m3u8/oIlMsYOKEsc.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/acid-base-equilibria/buffer-solutions/", "duration": 397, "id": "oIlMsYOKEsc", "title": "Buffer solutions", "format": "mp4", "description": "", "slug": "buffer-solutions", "kind": "Video", "video_id": "oIlMsYOKEsc", "keywords": "", "youtube_id": "oIlMsYOKEsc", "readable_id": "buffer-solutions"}, "LrxZMdQ6tiw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LrxZMdQ6tiw.mp4/LrxZMdQ6tiw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LrxZMdQ6tiw.mp4/LrxZMdQ6tiw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LrxZMdQ6tiw.m3u8/LrxZMdQ6tiw.m3u8"}, "duration": 471, "id": "LrxZMdQ6tiw", "title": "Area of a regular hexagon", "format": "mp4", "description": "Using what we know about triangles to find the area of a regular hexagon", "path": "khan/math/geometry/right_triangles_topic/special_right_triangles/area-of-a-regular-hexagon/", "slug": "area-of-a-regular-hexagon", "kind": "Video", "video_id": "LrxZMdQ6tiw", "keywords": "geometry", "youtube_id": "LrxZMdQ6tiw", "readable_id": "area-of-a-regular-hexagon"}, "z-yC6Owcg7g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/z-yC6Owcg7g.mp4/z-yC6Owcg7g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/z-yC6Owcg7g.mp4/z-yC6Owcg7g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/z-yC6Owcg7g.m3u8/z-yC6Owcg7g.m3u8"}, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/gian-lorenzo-bernini-cathedra-petri-chair-of-st-peter-c-120-80-b-c-e/", "duration": 210, "id": "z-yC6Owcg7g", "title": "Bernini, Cathedra Petri (Chair of St. Peter)", "format": "mp4", "description": "Gian Lorenzo Bernini, Cathedra Petri (or Chair of St. Peter), gilded bronze, gold, wood, stained glass, 1647-53 (apse of Saint Peter's Basilica, Vatican City, Rome).\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker \n\nAccording to tradition, St. Peter himself, the founder of the institution of the Church and considered the first pope, sat on the ancient wooden chair that is encased within this larger bronze and gold chair.", "slug": "gian-lorenzo-bernini-cathedra-petri-chair-of-st-peter-c-120-80-b-c-e", "kind": "Video", "video_id": "z-yC6Owcg7g", "keywords": "smarthistory", "youtube_id": "z-yC6Owcg7g", "readable_id": "gian-lorenzo-bernini-cathedra-petri-chair-of-st-peter-c-120-80-b-c-e"}, "Ly2-n1KqNko": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Ly2-n1KqNko.mp4/Ly2-n1KqNko.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Ly2-n1KqNko.mp4/Ly2-n1KqNko.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Ly2-n1KqNko.m3u8/Ly2-n1KqNko.m3u8"}, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/fra-filippo-lippi-madonna-and-child-with-two-angels-c-1460-1465/", "duration": 237, "id": "Ly2-n1KqNko", "title": "Fra Filippo Lippi, Madonna and Child with two Angels", "format": "mp4", "description": "Fra Filippo Lippi, Madonna and Child with two Angels, c. 1460-1465, tempera on panel, 95 x 63.5 cm (Galleria degli Uffizi, Florence)", "slug": "fra-filippo-lippi-madonna-and-child-with-two-angels-c-1460-1465", "kind": "Video", "video_id": "Ly2-n1KqNko", "keywords": "Lippi, angels, Uffizi, GAP, Fra Filippo Lippi, 1460, 1465, Florence, Early Italian Renaissance, Renaissance, Italian, painting, tempera, Madonna, child, Google Art Project, Khan Academy, Smarthistory, art history, OER", "youtube_id": "Ly2-n1KqNko", "readable_id": "fra-filippo-lippi-madonna-and-child-with-two-angels-c-1460-1465"}, "XHHYA2Ug9lk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/XHHYA2Ug9lk.mp4/XHHYA2Ug9lk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/XHHYA2Ug9lk.mp4/XHHYA2Ug9lk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/XHHYA2Ug9lk.m3u8/XHHYA2Ug9lk.m3u8"}, "duration": 426, "id": "XHHYA2Ug9lk", "title": "Multiplying and dividing even and odd numbers of negatives", "format": "mp4", "description": "We can figure out whether multiplication and division problems give us a positive or negative result by thinking about how many negative numbers are used in the computation.", "path": "multiplying-and-dividing-even-and-odd-numbers-of-negatives/", "slug": "multiplying-and-dividing-even-and-odd-numbers-of-negatives", "kind": "Video", "video_id": "XHHYA2Ug9lk", "keywords": "", "youtube_id": "XHHYA2Ug9lk", "readable_id": "multiplying-and-dividing-even-and-odd-numbers-of-negatives"}, "uUxOGQ4VFWQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/uUxOGQ4VFWQ.mp4/uUxOGQ4VFWQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/uUxOGQ4VFWQ.mp4/uUxOGQ4VFWQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/uUxOGQ4VFWQ.m3u8/uUxOGQ4VFWQ.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2008-may-4-3/", "duration": 59, "id": "uUxOGQ4VFWQ", "title": "3 Segment length PQ", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2008-may-4-3", "kind": "Video", "video_id": "uUxOGQ4VFWQ", "keywords": "", "youtube_id": "uUxOGQ4VFWQ", "readable_id": "sat-2008-may-4-3"}, "VYgSXBjEA8I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VYgSXBjEA8I.mp4/VYgSXBjEA8I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VYgSXBjEA8I.mp4/VYgSXBjEA8I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VYgSXBjEA8I.m3u8/VYgSXBjEA8I.m3u8"}, "path": "khan/science/physics/one-dimensional-motion/kinematic_formulas/acceleration-of-aircraft-carrier-takeoff/", "duration": 856, "id": "VYgSXBjEA8I", "title": "Acceleration of aircraft carrier take-off", "format": "mp4", "description": "Using what we know about take-off velocity and runway length to determine acceleration", "slug": "acceleration-of-aircraft-carrier-takeoff", "kind": "Video", "video_id": "VYgSXBjEA8I", "keywords": "physics, nimitz, force, pilot", "youtube_id": "VYgSXBjEA8I", "readable_id": "acceleration-of-aircraft-carrier-takeoff"}, "gmHH0wIXsog": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/gmHH0wIXsog.mp4/gmHH0wIXsog.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/gmHH0wIXsog.mp4/gmHH0wIXsog.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/gmHH0wIXsog.m3u8/gmHH0wIXsog.m3u8"}, "duration": 825, "id": "gmHH0wIXsog", "title": "What is contractility?", "format": "mp4", "description": "Contractility tells us how many myosin heads are working at the end of systole; a number that goes up or down with the level of sympathetic nerve stimulation. Rishi is a pediatric infectious disease physician and works at Khan Academy.", "path": "khan/test-prep/nclex-rn/nclex-rn-circulatory-system/changing-the-pv-loop/what-is-contractility/", "slug": "what-is-contractility", "kind": "Video", "video_id": "gmHH0wIXsog", "keywords": "", "youtube_id": "gmHH0wIXsog", "readable_id": "what-is-contractility"}, "2K1ekrZ6ej4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2K1ekrZ6ej4.mp4/2K1ekrZ6ej4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2K1ekrZ6ej4.mp4/2K1ekrZ6ej4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2K1ekrZ6ej4.m3u8/2K1ekrZ6ej4.m3u8"}, "duration": 770, "id": "2K1ekrZ6ej4", "title": "Treatment of Active TB", "format": "mp4", "description": "Learn which medications help prevent active TB disease.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "khan/science/health-and-medicine/infectious-diseases/tuberculosis/treatment-of-active-tb/", "slug": "treatment-of-active-tb", "kind": "Video", "video_id": "2K1ekrZ6ej4", "keywords": "", "youtube_id": "2K1ekrZ6ej4", "readable_id": "treatment-of-active-tb"}, "rs6UkVaOPzo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rs6UkVaOPzo.mp4/rs6UkVaOPzo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rs6UkVaOPzo.mp4/rs6UkVaOPzo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rs6UkVaOPzo.m3u8/rs6UkVaOPzo.m3u8"}, "path": "khan/test-prep/mcat/behavior/behavior-and-genetics/regulatory-genes/", "duration": 479, "id": "rs6UkVaOPzo", "title": "Regulatory genes", "format": "mp4", "description": "", "slug": "regulatory-genes", "kind": "Video", "video_id": "rs6UkVaOPzo", "keywords": "", "youtube_id": "rs6UkVaOPzo", "readable_id": "regulatory-genes"}, "oQARhCty-tw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/oQARhCty-tw.mp4/oQARhCty-tw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/oQARhCty-tw.mp4/oQARhCty-tw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/oQARhCty-tw.m3u8/oQARhCty-tw.m3u8"}, "path": "khan/partner-content/big-history-project/what-is-big-history/welcome-to-big-history/the-big-history/", "duration": 176, "id": "oQARhCty-tw", "title": "The Big History", "format": "mp4", "description": "Flip through the story of the Big History Project and get a glimpse of how the course came to be.", "slug": "the-big-history", "kind": "Video", "video_id": "oQARhCty-tw", "keywords": "", "youtube_id": "oQARhCty-tw", "readable_id": "the-big-history"}, "dnjK4DPqh0k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dnjK4DPqh0k.mp4/dnjK4DPqh0k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dnjK4DPqh0k.mp4/dnjK4DPqh0k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dnjK4DPqh0k.m3u8/dnjK4DPqh0k.m3u8"}, "duration": 615, "id": "dnjK4DPqh0k", "title": "Example: Complex roots for a quadratic", "format": "mp4", "description": "Complex Roots from the Quadratic Formula", "path": "khan/math/algebra2/complex-numbers-a2/complex_numbers/complex-roots-from-the-quadratic-formula/", "slug": "complex-roots-from-the-quadratic-formula", "kind": "Video", "video_id": "dnjK4DPqh0k", "keywords": "u16_l5_t2_we3, Complex, Roots, from, the, Quadratic, Formula", "youtube_id": "dnjK4DPqh0k", "readable_id": "complex-roots-from-the-quadratic-formula"}, "v2V4zMx33Mc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v2V4zMx33Mc.mp4/v2V4zMx33Mc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v2V4zMx33Mc.mp4/v2V4zMx33Mc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v2V4zMx33Mc.m3u8/v2V4zMx33Mc.m3u8"}, "duration": 1008, "id": "v2V4zMx33Mc", "title": "Digesting Food", "format": "mp4", "description": "Get an overview of three of the key macromolecules of life (proteins, fats, and carbohydrates), and how they get digested and absorbed.\n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "digesting-food/", "slug": "digesting-food", "kind": "Video", "video_id": "v2V4zMx33Mc", "keywords": "", "youtube_id": "v2V4zMx33Mc", "readable_id": "digesting-food"}, "SfxULALs_u8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SfxULALs_u8.mp4/SfxULALs_u8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SfxULALs_u8.mp4/SfxULALs_u8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SfxULALs_u8.m3u8/SfxULALs_u8.m3u8"}, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/2-digit-times-1-digit-example/", "duration": 129, "id": "SfxULALs_u8", "title": "Multiplying: 2 digits times 1 digit (with carrying)", "format": "mp4", "description": "We use something called the standard method which involves writing the larger of the two numbers on top. Watch.", "slug": "2-digit-times-1-digit-example", "kind": "Video", "video_id": "SfxULALs_u8", "keywords": "", "youtube_id": "SfxULALs_u8", "readable_id": "2-digit-times-1-digit-example"}, "dPlNsyXl-0c": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/dPlNsyXl-0c.mp4/dPlNsyXl-0c.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/dPlNsyXl-0c.mp4/dPlNsyXl-0c.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/dPlNsyXl-0c.m3u8/dPlNsyXl-0c.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/humes-skepticism-and-induction-part-2/", "duration": 589, "id": "dPlNsyXl-0c", "title": "Hume: Skepticism and Induction part 2", "format": "mp4", "description": "How do we know stuff about matters of fact that we have yet to observe? For example, how do I know that the sun will rise tomorrow? A natural answer is that we have this knowledge through induction: I know the sun will rise tomorrow, because it has risen every day in the past. Now, the philosopher David Hume recognized that this inductive reasoning assumes that the future will resemble the past. Why though think that this assumption is true? How do we know that the future will resemble the past? This question is the starting point for Hume's skeptical argument against induction (and his skeptical solution), which Daniel Greco lays out in detail in this video.\n\nSpeaker: Dr. Daniel Greco, Assistant Professor, Yale University", "slug": "humes-skepticism-and-induction-part-2", "kind": "Video", "video_id": "dPlNsyXl-0c", "keywords": "", "youtube_id": "dPlNsyXl-0c", "readable_id": "humes-skepticism-and-induction-part-2"}, "EJTPGyWqhqc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/EJTPGyWqhqc.mp4/EJTPGyWqhqc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/EJTPGyWqhqc.mp4/EJTPGyWqhqc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/EJTPGyWqhqc.m3u8/EJTPGyWqhqc.m3u8"}, "path": "khan/math/basic-geo/basic-geo-volume-surface-area/basic-geo-volume/volume-of-a-rectangular-prism-with-fractional-dimensions/", "duration": 255, "id": "EJTPGyWqhqc", "title": "Volume of a rectangular prism: fractional dimensions", "format": "mp4", "description": "Think of a rectangular prism as a 3 dimensional rectangle. To find the volume of a rectangular prism let's start by finding the volume of a rectangle, and go from there. What do you think we do next??", "slug": "volume-of-a-rectangular-prism-with-fractional-dimensions", "kind": "Video", "video_id": "EJTPGyWqhqc", "keywords": "", "youtube_id": "EJTPGyWqhqc", "readable_id": "volume-of-a-rectangular-prism-with-fractional-dimensions"}, "ENg2ajvKYss": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ENg2ajvKYss.mp4/ENg2ajvKYss.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ENg2ajvKYss.mp4/ENg2ajvKYss.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ENg2ajvKYss.m3u8/ENg2ajvKYss.m3u8"}, "path": "khan/test-prep/cahsee-subject/cahsee/cahsee-practice-problems-47-51/", "duration": 779, "id": "ENg2ajvKYss", "title": "CAHSEE practice: Problems 47-51", "format": "mp4", "description": "CAHSEE Practice: Problems 47-51", "slug": "cahsee-practice-problems-47-51", "kind": "Video", "video_id": "ENg2ajvKYss", "keywords": "CAHSEE, practice, california, high, school, exit, examination", "youtube_id": "ENg2ajvKYss", "readable_id": "cahsee-practice-problems-47-51"}, "v2Tz76UkTkY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v2Tz76UkTkY.mp4/v2Tz76UkTkY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v2Tz76UkTkY.mp4/v2Tz76UkTkY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v2Tz76UkTkY.m3u8/v2Tz76UkTkY.m3u8"}, "path": "khan/humanities/art-americas/new-topic-2015-04-22t180902849z/ancient-colombia/wax-to-metal/", "duration": 317, "id": "v2Tz76UkTkY", "title": "From wax to metal: Goldmaking techniques of the ancient Colombians", "format": "mp4", "description": "From wax to metal (de la cera al metal), Goldmaking techniques of the ancient Colombians \u00a9 Trustees of the British Museum", "slug": "wax-to-metal", "kind": "Video", "video_id": "v2Tz76UkTkY", "keywords": "Colombia, ", "youtube_id": "v2Tz76UkTkY", "readable_id": "wax-to-metal"}, "FxPXC8t-2ls": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FxPXC8t-2ls.mp4/FxPXC8t-2ls.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FxPXC8t-2ls.mp4/FxPXC8t-2ls.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FxPXC8t-2ls.m3u8/FxPXC8t-2ls.m3u8"}, "path": "khan/test-prep/mcat/behavior/psychological-disorders/introduction-to-mental-disorders/", "duration": 296, "id": "FxPXC8t-2ls", "title": "Introduction to mental disorders", "format": "mp4", "description": "", "slug": "introduction-to-mental-disorders", "kind": "Video", "video_id": "FxPXC8t-2ls", "keywords": "", "youtube_id": "FxPXC8t-2ls", "readable_id": "introduction-to-mental-disorders"}, "wVGzxh7LRzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/wVGzxh7LRzw.mp4/wVGzxh7LRzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/wVGzxh7LRzw.mp4/wVGzxh7LRzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/wVGzxh7LRzw.m3u8/wVGzxh7LRzw.m3u8"}, "duration": 425, "id": "wVGzxh7LRzw", "title": "First Amendment to the U.S. Constitution", "format": "mp4", "description": "Jeffrey Rosen of the National Constitution Center in conversation with Walter Isaacson of the Aspen Institute.", "path": "first-amendment-to-the-us-constitution/", "slug": "first-amendment-to-the-us-constitution", "kind": "Video", "video_id": "wVGzxh7LRzw", "keywords": "", "youtube_id": "wVGzxh7LRzw", "readable_id": "first-amendment-to-the-us-constitution"}, "If3KlMxbtcc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/If3KlMxbtcc.mp4/If3KlMxbtcc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/If3KlMxbtcc.mp4/If3KlMxbtcc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/If3KlMxbtcc.m3u8/If3KlMxbtcc.m3u8"}, "path": "khan/computing/computer-programming/programming/good-practices/the-power-of-the-docs/", "duration": 370, "id": "If3KlMxbtcc", "title": "The Power of the Docs", "format": "mp4", "description": "", "slug": "the-power-of-the-docs", "kind": "Video", "video_id": "If3KlMxbtcc", "keywords": "", "youtube_id": "If3KlMxbtcc", "readable_id": "the-power-of-the-docs"}, "tvXRaZbIjO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/tvXRaZbIjO8.mp4/tvXRaZbIjO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/tvXRaZbIjO8.mp4/tvXRaZbIjO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/tvXRaZbIjO8.m3u8/tvXRaZbIjO8.m3u8"}, "duration": 113, "id": "tvXRaZbIjO8", "title": "Subtracting complex numbers", "format": "mp4", "description": "Subtracting Complex Numbers", "path": "khan/math/algebra2/complex-numbers-a2/complex_numbers/subtracting-complex-numbers/", "slug": "subtracting-complex-numbers", "kind": "Video", "video_id": "tvXRaZbIjO8", "keywords": "u16_l4_t2_we2, Subtracting, Complex, Numbers", "youtube_id": "tvXRaZbIjO8", "readable_id": "subtracting-complex-numbers"}, "LwA00uqniiU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/LwA00uqniiU.mp4/LwA00uqniiU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/LwA00uqniiU.mp4/LwA00uqniiU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/LwA00uqniiU.m3u8/LwA00uqniiU.m3u8"}, "duration": 439, "id": "LwA00uqniiU", "title": "Motor neurons", "format": "mp4", "description": "How do neurons help us move? Learn about how motor neurons send signals to muscle cells and what happens when we damage this precious neurons. By Raja Narayan. ", "path": "khan/test-prep/nclex-rn/rn-muscular-system/rn-the-muscular-system/motor-neurons/", "slug": "motor-neurons", "kind": "Video", "video_id": "LwA00uqniiU", "keywords": "", "youtube_id": "LwA00uqniiU", "readable_id": "motor-neurons"}, "hyWC_zPTLsI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hyWC_zPTLsI.mp4/hyWC_zPTLsI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hyWC_zPTLsI.mp4/hyWC_zPTLsI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hyWC_zPTLsI.m3u8/hyWC_zPTLsI.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/mars-express/", "duration": 194, "id": "hyWC_zPTLsI", "title": "Mars express", "format": "mp4", "description": "Summary of the Mars Express Orbiter.For more information check out the mission page.", "slug": "mars-express", "kind": "Video", "video_id": "hyWC_zPTLsI", "keywords": "", "youtube_id": "hyWC_zPTLsI", "readable_id": "mars-express"}, "hTSyVgBa1T0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/hTSyVgBa1T0.mp4/hTSyVgBa1T0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/hTSyVgBa1T0.mp4/hTSyVgBa1T0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/hTSyVgBa1T0.m3u8/hTSyVgBa1T0.m3u8"}, "duration": 617, "id": "hTSyVgBa1T0", "title": "Curl 2", "format": "mp4", "description": "The mechanics of calculating curl.", "path": "khan/math/multivariable-calculus/partial_derivatives_topic/curl/curl-2/", "slug": "curl-2", "kind": "Video", "video_id": "hTSyVgBa1T0", "keywords": "vector, field, curl", "youtube_id": "hTSyVgBa1T0", "readable_id": "curl-2"}, "Yhlv5Aeuo_k": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yhlv5Aeuo_k.mp4/Yhlv5Aeuo_k.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yhlv5Aeuo_k.mp4/Yhlv5Aeuo_k.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yhlv5Aeuo_k.m3u8/Yhlv5Aeuo_k.m3u8"}, "path": "khan/math/recreational-math/vi-hart/doodling-in-math/doodling-in-math-sick-number-games/", "duration": 328, "id": "Yhlv5Aeuo_k", "title": "Doodling in math: Sick number games", "format": "mp4", "description": "I don't even know if this makes sense. Boo cold.\n\nhttp://en.wikipedia.org/wiki/Ulam_spiral\n\nDoodling in Math Class videos: http://vihart.com/doodling", "slug": "doodling-in-math-sick-number-games", "kind": "Video", "video_id": "Yhlv5Aeuo_k", "keywords": "math, numbers, doodling, ulam, spiral, pascal, triangle, math class", "youtube_id": "Yhlv5Aeuo_k", "readable_id": "doodling-in-math-sick-number-games"}, "IrvEHVn-fks": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IrvEHVn-fks.mp4/IrvEHVn-fks.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IrvEHVn-fks.mp4/IrvEHVn-fks.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IrvEHVn-fks.m3u8/IrvEHVn-fks.m3u8"}, "path": "khan/math/pre-algebra/rates-and-ratios/unit_conversion/converting-pounds-to-ounces/", "duration": 94, "id": "IrvEHVn-fks", "title": "Converting pounds to ounces", "format": "mp4", "description": "We can't tell you how many times in your life you will stare at a recipe and then need to use this skill. Trust us. Let's convert pounds to ounces!", "slug": "converting-pounds-to-ounces", "kind": "Video", "video_id": "IrvEHVn-fks", "keywords": "U06_L1_T2_we1, Converting, pounds, to, ounces, CC_4_MD_1, CC_5_MD_1, CC_6_RP_3_d", "youtube_id": "IrvEHVn-fks", "readable_id": "converting-pounds-to-ounces"}, "pZIaUx3UQoA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pZIaUx3UQoA.mp4/pZIaUx3UQoA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pZIaUx3UQoA.mp4/pZIaUx3UQoA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pZIaUx3UQoA.m3u8/pZIaUx3UQoA.m3u8"}, "path": "khan/math/differential-equations/laplace-transform/properties-of-laplace-transform/laplace-transform-of-t-n-l-t-n/", "duration": 616, "id": "pZIaUx3UQoA", "title": "Laplace transform of t^n: L{t^n}", "format": "mp4", "description": "Laplace Transform of t^n: L{t^n}", "slug": "laplace-transform-of-t-n-l-t-n", "kind": "Video", "video_id": "pZIaUx3UQoA", "keywords": "differential, equations, laplace, transform", "youtube_id": "pZIaUx3UQoA", "readable_id": "laplace-transform-of-t-n-l-t-n"}, "2HIRaOQDRho": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2HIRaOQDRho.mp4/2HIRaOQDRho.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2HIRaOQDRho.mp4/2HIRaOQDRho.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2HIRaOQDRho.m3u8/2HIRaOQDRho.m3u8"}, "duration": 233, "id": "2HIRaOQDRho", "title": "Long straddle", "format": "mp4", "description": "Long Straddle", "path": "khan/economics-finance-domain/core-finance/derivative-securities/put-call-options/long-straddle/", "slug": "long-straddle", "kind": "Video", "video_id": "2HIRaOQDRho", "keywords": "Long, Straddle", "youtube_id": "2HIRaOQDRho", "readable_id": "long-straddle"}, "v62741EasZs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/v62741EasZs.mp4/v62741EasZs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/v62741EasZs.mp4/v62741EasZs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/v62741EasZs.m3u8/v62741EasZs.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section2/sat-getting-ready-2-2/", "duration": 81, "id": "v62741EasZs", "title": "2 Dividing same number by 2 and 4", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-getting-ready-2-2", "kind": "Video", "video_id": "v62741EasZs", "keywords": "", "youtube_id": "v62741EasZs", "readable_id": "sat-getting-ready-2-2"}, "GlkqvEOYicA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GlkqvEOYicA.mp4/GlkqvEOYicA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GlkqvEOYicA.mp4/GlkqvEOYicA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GlkqvEOYicA.m3u8/GlkqvEOYicA.m3u8"}, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/dyce-pegwell-bay-kent-1858-60/", "duration": 266, "id": "GlkqvEOYicA", "title": "Dyce's Pegwell Bay, Kent - a Recollection of October 5th, 1858", "format": "mp4", "description": "William Dyce, Pegwell Bay, Kent - a Recollection of October 5th 1858-60, oil on canvas,\n25 x 35 inches (Tate Britain, London)\n\nSpeakers: Dr. Beth Harris, Dr. Steven Zucker", "slug": "dyce-pegwell-bay-kent-1858-60", "kind": "Video", "video_id": "GlkqvEOYicA", "keywords": "art, art history, smarthistory, Dyce, Pre-Raphaelite, Victorian", "youtube_id": "GlkqvEOYicA", "readable_id": "dyce-pegwell-bay-kent-1858-60"}, "E2MRMdaPKcc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/E2MRMdaPKcc.mp4/E2MRMdaPKcc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/E2MRMdaPKcc.mp4/E2MRMdaPKcc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/E2MRMdaPKcc.m3u8/E2MRMdaPKcc.m3u8"}, "duration": 190, "id": "E2MRMdaPKcc", "title": "Stokes example part 1", "format": "mp4", "description": "Starting to apply Stokes theorem to solve a line integral", "path": "khan/math/multivariable-calculus/surface-integrals/stokes_theorem/stokes-example-part-1/", "slug": "stokes-example-part-1", "kind": "Video", "video_id": "E2MRMdaPKcc", "keywords": "stokes, theorem, vector, calculus", "youtube_id": "E2MRMdaPKcc", "readable_id": "stokes-example-part-1"}, "-fUGOHkAMN4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-fUGOHkAMN4.mp4/-fUGOHkAMN4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-fUGOHkAMN4.mp4/-fUGOHkAMN4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-fUGOHkAMN4.m3u8/-fUGOHkAMN4.m3u8"}, "duration": 83, "id": "-fUGOHkAMN4", "title": "Ferocious but cute sea monster", "format": "mp4", "description": "Bryn talks about a ferocious but cute sea monster in Soldani Benzi\u2019s Andromeda and the Sea Monster, 1710-16. From a\u00a0tour at the Getty Center: The Supernatural in Art. Love art? Follow us on Google+ to stay in touch.", "path": "ferocious-but-cute-sea-monster/", "slug": "ferocious-but-cute-sea-monster", "kind": "Video", "video_id": "-fUGOHkAMN4", "keywords": "", "youtube_id": "-fUGOHkAMN4", "readable_id": "ferocious-but-cute-sea-monster"}, "ksMisCPSs5g": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ksMisCPSs5g.mp4/ksMisCPSs5g.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ksMisCPSs5g.mp4/ksMisCPSs5g.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ksMisCPSs5g.m3u8/ksMisCPSs5g.m3u8"}, "duration": 37, "id": "ksMisCPSs5g", "title": "Demo: ant bot", "format": "mp4", "description": "demonstration of a basic ant bot", "path": "khan/science/discoveries-projects/lego-robotics/lego-antbot/lego-ant-bot/", "slug": "lego-ant-bot", "kind": "Video", "video_id": "ksMisCPSs5g", "keywords": "", "youtube_id": "ksMisCPSs5g", "readable_id": "lego-ant-bot"}, "4LYtLMmDuzw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4LYtLMmDuzw.mp4/4LYtLMmDuzw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4LYtLMmDuzw.mp4/4LYtLMmDuzw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4LYtLMmDuzw.m3u8/4LYtLMmDuzw.m3u8"}, "duration": 294, "id": "4LYtLMmDuzw", "title": "Subtracting mixed numbers 2", "format": "mp4", "description": "Subtracting Mixed Numbers 2", "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-add-sub-pre-alg/subtracting-mixed-numbers-2/", "slug": "subtracting-mixed-numbers-2", "kind": "Video", "video_id": "4LYtLMmDuzw", "keywords": "U02_L3_T2_we3, Subtracting, Mixed, Numbers, CC_4_NF_3_c, CC_5_NF_1", "youtube_id": "4LYtLMmDuzw", "readable_id": "subtracting-mixed-numbers-2"}, "-BVeSykcQeE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/-BVeSykcQeE.mp4/-BVeSykcQeE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/-BVeSykcQeE.mp4/-BVeSykcQeE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/-BVeSykcQeE.m3u8/-BVeSykcQeE.m3u8"}, "path": "khan/test-prep/mcat/society-and-culture/social-structures/macrosociology-vs-microsociology/", "duration": 218, "id": "-BVeSykcQeE", "title": "Macrosociology vs microsociology", "format": "mp4", "description": "", "slug": "macrosociology-vs-microsociology", "kind": "Video", "video_id": "-BVeSykcQeE", "keywords": "", "youtube_id": "-BVeSykcQeE", "readable_id": "macrosociology-vs-microsociology"}, "6TxlqANDjKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6TxlqANDjKM.mp4/6TxlqANDjKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6TxlqANDjKM.mp4/6TxlqANDjKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6TxlqANDjKM.m3u8/6TxlqANDjKM.m3u8"}, "duration": 192, "id": "6TxlqANDjKM", "title": "Absolute value graphing exercise example", "format": "mp4", "description": "", "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/absolute-value-graphing-exercise-example/", "slug": "absolute-value-graphing-exercise-example", "kind": "Video", "video_id": "6TxlqANDjKM", "keywords": "", "youtube_id": "6TxlqANDjKM", "readable_id": "absolute-value-graphing-exercise-example"}, "3jf2l9ma6SM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/3jf2l9ma6SM.mp4/3jf2l9ma6SM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/3jf2l9ma6SM.mp4/3jf2l9ma6SM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/3jf2l9ma6SM.m3u8/3jf2l9ma6SM.m3u8"}, "duration": 315, "id": "3jf2l9ma6SM", "title": "Somatosensory homunculus", "format": "mp4", "description": "In this video, I review the somatosensory homunculus, which is basically a \"topological\" representation of the body in the brain.\u00a0 By Ronald Sahyouni.", "path": "khan/test-prep/mcat/processing-the-environment/somatosensation/somatosensory-homunculus/", "slug": "somatosensory-homunculus", "kind": "Video", "video_id": "3jf2l9ma6SM", "keywords": "somatosensory, homunculus", "youtube_id": "3jf2l9ma6SM", "readable_id": "somatosensory-homunculus"}, "4-fEvpVNTlE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/4-fEvpVNTlE.mp4/4-fEvpVNTlE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/4-fEvpVNTlE.mp4/4-fEvpVNTlE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/4-fEvpVNTlE.m3u8/4-fEvpVNTlE.m3u8"}, "duration": 883, "id": "4-fEvpVNTlE", "title": "Le Chatelier's principle", "format": "mp4", "description": "Le Chatelier's Principle regarding the \"stressing\" of reactions in equilibrium", "path": "khan/test-prep/mcat/chemical-processes/equilibrium-mcat/le-chatelier-s-principle/", "slug": "le-chatelier-s-principle", "kind": "Video", "video_id": "4-fEvpVNTlE", "keywords": "chemistry, dynamic, equilibrium, chatelier", "youtube_id": "4-fEvpVNTlE", "readable_id": "le-chatelier-s-principle"}, "VhH2nEDCd68": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VhH2nEDCd68.mp4/VhH2nEDCd68.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VhH2nEDCd68.mp4/VhH2nEDCd68.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VhH2nEDCd68.m3u8/VhH2nEDCd68.m3u8"}, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/solving-systems-graphically/", "duration": 142, "id": "VhH2nEDCd68", "title": "Solving systems of equations graphically", "format": "mp4", "description": "Some practice solving systems graphically (exercises available at http://www.khanacademy.org/math/algebra/systems-of-eq-and-ineq/e/graphing_systems_of_equations )", "slug": "solving-systems-graphically", "kind": "Video", "video_id": "VhH2nEDCd68", "keywords": "", "youtube_id": "VhH2nEDCd68", "readable_id": "solving-systems-graphically"}, "rR0LdZ-PfBk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rR0LdZ-PfBk.mp4/rR0LdZ-PfBk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rR0LdZ-PfBk.mp4/rR0LdZ-PfBk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rR0LdZ-PfBk.m3u8/rR0LdZ-PfBk.m3u8"}, "duration": 521, "id": "rR0LdZ-PfBk", "title": "Preparation of mesylates and tosylates", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/alcohols-and-phenols/preparation-of-mesylates-and-tosylates/", "slug": "preparation-of-mesylates-and-tosylates", "kind": "Video", "video_id": "rR0LdZ-PfBk", "keywords": "", "youtube_id": "rR0LdZ-PfBk", "readable_id": "preparation-of-mesylates-and-tosylates"}, "w9jEq6dmqPg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/w9jEq6dmqPg.mp4/w9jEq6dmqPg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/w9jEq6dmqPg.mp4/w9jEq6dmqPg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/w9jEq6dmqPg.m3u8/w9jEq6dmqPg.m3u8"}, "duration": 340, "id": "w9jEq6dmqPg", "title": "Identifying rays", "format": "mp4", "description": "Identifying Rays", "path": "khan/math/geometry/intro_euclid/identifying-rays/", "slug": "identifying-rays", "kind": "Video", "video_id": "w9jEq6dmqPg", "keywords": "u07_l1_t1_we1, Identifying, Rays", "youtube_id": "w9jEq6dmqPg", "readable_id": "identifying-rays"}, "aINeMQH77jg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/aINeMQH77jg.mp4/aINeMQH77jg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/aINeMQH77jg.mp4/aINeMQH77jg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/aINeMQH77jg.m3u8/aINeMQH77jg.m3u8"}, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/inequalities-in-one-variable-1-exercise/", "duration": 147, "id": "aINeMQH77jg", "title": "Inequality word problem: one variable", "format": "mp4", "description": "This time we're creating a variable to represent a number, and then writing an inequality. We're building on our knowledge.", "slug": "inequalities-in-one-variable-1-exercise", "kind": "Video", "video_id": "aINeMQH77jg", "keywords": "", "youtube_id": "aINeMQH77jg", "readable_id": "inequalities-in-one-variable-1-exercise"}, "U_UgGZuUnkU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/U_UgGZuUnkU.mp4/U_UgGZuUnkU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/U_UgGZuUnkU.mp4/U_UgGZuUnkU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/U_UgGZuUnkU.m3u8/U_UgGZuUnkU.m3u8"}, "duration": 144, "id": "U_UgGZuUnkU", "title": "\"Wall Drawing #1144, Broken Bands of Color in Four Directions\" by Sol LeWitt, 2004 | MoMA Education", "format": "mp4", "description": ".\u00a0A MoMA educator discusses how she teaches \"Wall Drawing #1144, Broken Bands of Color in Four Directions\" by Sol LeWitt, 2004.\u00a0Visit MoMA Learning for more teaching and learning resources.", "path": "teaching-lewitt/", "slug": "teaching-lewitt", "kind": "Video", "video_id": "U_UgGZuUnkU", "keywords": "", "youtube_id": "U_UgGZuUnkU", "readable_id": "teaching-lewitt"}, "pZcNmGtp5SA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/pZcNmGtp5SA.mp4/pZcNmGtp5SA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/pZcNmGtp5SA.mp4/pZcNmGtp5SA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/pZcNmGtp5SA.m3u8/pZcNmGtp5SA.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-vasculitis/henoch-schonlein-purpura/", "duration": 364, "id": "pZcNmGtp5SA", "title": "Henoch-Schonlein purpura", "format": "mp4", "description": "Henoch-Schonlein purpura (also known as anaphylactoid purpura) is a type of vasculitis that affects small blood vessels and characterized by elevated immunoglobulin A (IgA). Symptoms of this disease include skin lesions, joint pain, blood in urine (hematuria), and abdominal pain. Health professionals diagnosis Henoch-Schonlein purpura through blood tests (elevated IgA). This disease is often treated with steroids.", "slug": "henoch-schonlein-purpura", "kind": "Video", "video_id": "pZcNmGtp5SA", "keywords": "", "youtube_id": "pZcNmGtp5SA", "readable_id": "henoch-schonlein-purpura"}, "WEoml1Fs26I": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/WEoml1Fs26I.mp4/WEoml1Fs26I.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/WEoml1Fs26I.mp4/WEoml1Fs26I.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/WEoml1Fs26I.m3u8/WEoml1Fs26I.m3u8"}, "duration": 749, "id": "WEoml1Fs26I", "title": "VSEPR for 6 electron clouds", "format": "mp4", "description": "", "path": "khan/test-prep/mcat/chemical-processes/dot-structures/vsepr-for-6-electron-clouds/", "slug": "vsepr-for-6-electron-clouds", "kind": "Video", "video_id": "WEoml1Fs26I", "keywords": "", "youtube_id": "WEoml1Fs26I", "readable_id": "vsepr-for-6-electron-clouds"}, "FE2jfTXAJHg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FE2jfTXAJHg.mp4/FE2jfTXAJHg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FE2jfTXAJHg.mp4/FE2jfTXAJHg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FE2jfTXAJHg.m3u8/FE2jfTXAJHg.m3u8"}, "duration": 810, "id": "FE2jfTXAJHg", "title": "Glycolysis", "format": "mp4", "description": "Overview of glycolysis", "path": "khan/test-prep/mcat/biomolecules/carbohydrate-metabolism/glycolysis/", "slug": "glycolysis", "kind": "Video", "video_id": "FE2jfTXAJHg", "keywords": "glycolysis, cellular, respiration", "youtube_id": "FE2jfTXAJHg", "readable_id": "glycolysis"}, "6Ng8ayarWHw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6Ng8ayarWHw.mp4/6Ng8ayarWHw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6Ng8ayarWHw.mp4/6Ng8ayarWHw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6Ng8ayarWHw.m3u8/6Ng8ayarWHw.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/kinetics/rate-law-and-reaction-order/", "duration": 639, "id": "6Ng8ayarWHw", "title": "Rate law and reaction order", "format": "mp4", "description": "", "slug": "rate-law-and-reaction-order", "kind": "Video", "video_id": "6Ng8ayarWHw", "keywords": "", "youtube_id": "6Ng8ayarWHw", "readable_id": "rate-law-and-reaction-order"}, "63mWxNXQQAk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/63mWxNXQQAk.mp4/63mWxNXQQAk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/63mWxNXQQAk.mp4/63mWxNXQQAk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/63mWxNXQQAk.m3u8/63mWxNXQQAk.m3u8"}, "path": "khan/math/geometry/transformations/hs-geo-reflections/points-on-line-of-reflection/", "duration": 341, "id": "63mWxNXQQAk", "title": "Points on line of reflection", "format": "mp4", "description": "Points on line of reflection", "slug": "points-on-line-of-reflection", "kind": "Video", "video_id": "63mWxNXQQAk", "keywords": "", "youtube_id": "63mWxNXQQAk", "readable_id": "points-on-line-of-reflection"}, "ReEMqdZEEX0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ReEMqdZEEX0.mp4/ReEMqdZEEX0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ReEMqdZEEX0.mp4/ReEMqdZEEX0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ReEMqdZEEX0.m3u8/ReEMqdZEEX0.m3u8"}, "duration": 500, "id": "ReEMqdZEEX0", "title": "Another rational function graph example", "format": "mp4", "description": "Another Rational Function Graph Example", "path": "khan/math/algebra2/rational-expressions/rational-function-graphing/another-rational-function-graph-example/", "slug": "another-rational-function-graph-example", "kind": "Video", "video_id": "ReEMqdZEEX0", "keywords": "Another, Rational, Function, Graph, Example, CC_39336_F-IF_7_d", "youtube_id": "ReEMqdZEEX0", "readable_id": "another-rational-function-graph-example"}, "AuD2TX-90Cc": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/AuD2TX-90Cc.mp4/AuD2TX-90Cc.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/AuD2TX-90Cc.mp4/AuD2TX-90Cc.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/AuD2TX-90Cc.m3u8/AuD2TX-90Cc.m3u8"}, "path": "khan/math/pre-algebra/decimals-pre-alg/decimal-place-value-pre-alg/decimal-place-value-2/", "duration": 211, "id": "AuD2TX-90Cc", "title": "Decimals: writing it out in words", "format": "mp4", "description": "By writing out a decimal in words, you're forced to really show your understanding of it. Give it a try!", "slug": "decimal-place-value-2", "kind": "Video", "video_id": "AuD2TX-90Cc", "keywords": "U03_L1_T1_we2, Decimal, Place, Value, CC_5_NBT_3_a", "youtube_id": "AuD2TX-90Cc", "readable_id": "decimal-place-value-2"}, "JhhueOO0iqU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JhhueOO0iqU.mp4/JhhueOO0iqU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JhhueOO0iqU.mp4/JhhueOO0iqU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JhhueOO0iqU.m3u8/JhhueOO0iqU.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/curiosity-discoveries/curiosity-rover-report-aug-24-2012/", "duration": 129, "id": "JhhueOO0iqU", "title": "Curiosity's first drive", "format": "mp4", "description": "(Aug. 24, 2012)", "slug": "curiosity-rover-report-aug-24-2012", "kind": "Video", "video_id": "JhhueOO0iqU", "keywords": "", "youtube_id": "JhhueOO0iqU", "readable_id": "curiosity-rover-report-aug-24-2012"}, "lKq-10ysDb4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/lKq-10ysDb4.mp4/lKq-10ysDb4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/lKq-10ysDb4.mp4/lKq-10ysDb4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/lKq-10ysDb4.m3u8/lKq-10ysDb4.m3u8"}, "duration": 877, "id": "lKq-10ysDb4", "title": "Quasistatic and reversible processes", "format": "mp4", "description": "Using theoretically quasi-static and/or reversible processes to stay pretty much at equilibrium.", "path": "khan/science/chemistry/thermodynamics-chemistry/internal-energy-sal/quasistatic-and-reversible-processes/", "slug": "quasistatic-and-reversible-processes", "kind": "Video", "video_id": "lKq-10ysDb4", "keywords": "chemistry, thermodynamics, quasistatic, reversible", "youtube_id": "lKq-10ysDb4", "readable_id": "quasistatic-and-reversible-processes"}, "yUUPP70Fhpo": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/yUUPP70Fhpo.mp4/yUUPP70Fhpo.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/yUUPP70Fhpo.mp4/yUUPP70Fhpo.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/yUUPP70Fhpo.m3u8/yUUPP70Fhpo.m3u8"}, "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/proof-bounding-the-error-or-remainder-of-a-taylor-polynomial-approximation/", "duration": 908, "id": "yUUPP70Fhpo", "title": "Proof: Bounding the error or remainder of a taylor polynomial approximation", "format": "mp4", "description": "Proof of the Lagrange Error Bound (the bound of the error)", "slug": "proof-bounding-the-error-or-remainder-of-a-taylor-polynomial-approximation", "kind": "Video", "video_id": "yUUPP70Fhpo", "keywords": "lagrange, taylor, polynomial, approximation", "youtube_id": "yUUPP70Fhpo", "readable_id": "proof-bounding-the-error-or-remainder-of-a-taylor-polynomial-approximation"}, "irLOxG7SpUk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/irLOxG7SpUk.mp4/irLOxG7SpUk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/irLOxG7SpUk.mp4/irLOxG7SpUk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/irLOxG7SpUk.m3u8/irLOxG7SpUk.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/degas-the-bellelli-family-1858-67/", "duration": 242, "id": "irLOxG7SpUk", "title": "Degas, The Bellelli Family", "format": "mp4", "description": "Edgar Degas, The Bellelli Family, 1858-67, oil on canvas, 78-3/4 x 98-1/2 inches, 200 x 250 cm (Mus\u00e9e d'Orsay, Paris) Speakers: Dr. Beth Harris and Dr. Steven Zucker.\nDegas was in his mid-twenties when he painted this canvas. It depicts from left to right, the ten-year-old Giovanna, her mother, the artist's paternal aunt Laura, her younger daughter, Giula age 7, and the Baron Gennaro Bellelli. Preperatory sketches for the painting may have been made in Florence where the family was living\u2014the Baron had been exiled from Naples. The picture may have been completed in Paris.\n", "slug": "degas-the-bellelli-family-1858-67", "kind": "Video", "video_id": "irLOxG7SpUk", "keywords": "Degas Bellelli Famuily, Impressionism, Smarthistory, Art History, Musee d'Orsay, Edgar Degas Art history", "youtube_id": "irLOxG7SpUk", "readable_id": "degas-the-bellelli-family-1858-67"}, "QOTjdgmNqlg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/QOTjdgmNqlg.mp4/QOTjdgmNqlg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/QOTjdgmNqlg.mp4/QOTjdgmNqlg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/QOTjdgmNqlg.m3u8/QOTjdgmNqlg.m3u8"}, "path": "khan/math/linear-algebra/alternate_bases/othogonal_complements/linear-algebra-orthogonal-complements/", "duration": 1328, "id": "QOTjdgmNqlg", "title": "Orthogonal complements", "format": "mp4", "description": "Orthogonal Complements as subspaces.", "slug": "linear-algebra-orthogonal-complements", "kind": "Video", "video_id": "QOTjdgmNqlg", "keywords": "orthogonal, complement", "youtube_id": "QOTjdgmNqlg", "readable_id": "linear-algebra-orthogonal-complements"}, "I-y5d4Jjzfk": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/I-y5d4Jjzfk.mp4/I-y5d4Jjzfk.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/I-y5d4Jjzfk.mp4/I-y5d4Jjzfk.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/I-y5d4Jjzfk.m3u8/I-y5d4Jjzfk.m3u8"}, "duration": 816, "id": "I-y5d4Jjzfk", "title": "DNA, hot pockets, & the longest word ever", "format": "mp4", "description": "Hank imagines himself breaking into the Hot Pockets factory to steal their secret recipes and instruction manuals in order to help us understand how the processes known as DNA transcription and translation allow our cells to build proteins.", "path": "crash-course-biology-111/", "slug": "crash-course-biology-111", "kind": "Video", "video_id": "I-y5d4Jjzfk", "keywords": "", "youtube_id": "I-y5d4Jjzfk", "readable_id": "crash-course-biology-111"}, "CI84wFXN_Vg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/CI84wFXN_Vg.mp4/CI84wFXN_Vg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/CI84wFXN_Vg.mp4/CI84wFXN_Vg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/CI84wFXN_Vg.m3u8/CI84wFXN_Vg.m3u8"}, "path": "khan/test-prep/mcat/physical-processes/proton-nuclear-magnetic-resonance/electronegativity-and-chemical-shift/", "duration": 662, "id": "CI84wFXN_Vg", "title": "Electronegativity and chemical shift", "format": "mp4", "description": "", "slug": "electronegativity-and-chemical-shift", "kind": "Video", "video_id": "CI84wFXN_Vg", "keywords": "", "youtube_id": "CI84wFXN_Vg", "readable_id": "electronegativity-and-chemical-shift"}, "FckjcoZDxbE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/FckjcoZDxbE.mp4/FckjcoZDxbE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/FckjcoZDxbE.mp4/FckjcoZDxbE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/FckjcoZDxbE.m3u8/FckjcoZDxbE.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-respiratory-system-diseases/rn-asthma/asthma-severity/", "duration": 161, "id": "FckjcoZDxbE", "title": "Asthma severity", "format": "mp4", "description": "", "slug": "asthma-severity", "kind": "Video", "video_id": "FckjcoZDxbE", "keywords": "", "youtube_id": "FckjcoZDxbE", "readable_id": "asthma-severity"}, "RUYtxofTWKM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/RUYtxofTWKM.mp4/RUYtxofTWKM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/RUYtxofTWKM.mp4/RUYtxofTWKM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/RUYtxofTWKM.m3u8/RUYtxofTWKM.m3u8"}, "path": "khan/partner-content/exploratorium/expl-sound/light-to-sound/build/", "duration": 412, "id": "RUYtxofTWKM", "title": "Construct the parallel circuit, put it all together", "format": "mp4", "description": "A detailed demonstration of how to build this project, from beginning to end.", "slug": "build", "kind": "Video", "video_id": "RUYtxofTWKM", "keywords": "", "youtube_id": "RUYtxofTWKM", "readable_id": "build"}, "9iqN12hCn10": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/9iqN12hCn10.mp4/9iqN12hCn10.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/9iqN12hCn10.mp4/9iqN12hCn10.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/9iqN12hCn10.m3u8/9iqN12hCn10.m3u8"}, "duration": 457, "id": "9iqN12hCn10", "title": "Polar coordinates 3", "format": "mp4", "description": "Converting between Cartesian and Polar functions", "path": "khan/math/precalculus/parametric_equations/polar_coor/polar-coordinates-3/", "slug": "polar-coordinates-3", "kind": "Video", "video_id": "9iqN12hCn10", "keywords": "Cartersian, Polar, Coordinates", "youtube_id": "9iqN12hCn10", "readable_id": "polar-coordinates-3"}, "Kpov3GS6tjM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Kpov3GS6tjM.mp4/Kpov3GS6tjM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Kpov3GS6tjM.mp4/Kpov3GS6tjM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Kpov3GS6tjM.m3u8/Kpov3GS6tjM.m3u8"}, "duration": 411, "id": "Kpov3GS6tjM", "title": "Amine naming introduction", "format": "mp4", "description": "Amine Naming Introduction", "path": "khan/science/organic-chemistry/amines-topic/naming-amines/amine-naming-introduction/", "slug": "amine-naming-introduction", "kind": "Video", "video_id": "Kpov3GS6tjM", "keywords": "Amine, Naming, Introduction", "youtube_id": "Kpov3GS6tjM", "readable_id": "amine-naming-introduction"}, "JHgTNNX01r4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/JHgTNNX01r4.mp4/JHgTNNX01r4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/JHgTNNX01r4.mp4/JHgTNNX01r4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/JHgTNNX01r4.m3u8/JHgTNNX01r4.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/covalent-bonds/sp3-hybrid-orbital-jay-final/", "duration": 643, "id": "JHgTNNX01r4", "title": "Sp3 hybridization", "format": "mp4", "description": "", "slug": "sp3-hybrid-orbital-jay-final", "kind": "Video", "video_id": "JHgTNNX01r4", "keywords": "", "youtube_id": "JHgTNNX01r4", "readable_id": "sp3-hybrid-orbital-jay-final"}, "2X3sLszx8bQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2X3sLszx8bQ.mp4/2X3sLszx8bQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2X3sLszx8bQ.mp4/2X3sLszx8bQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2X3sLszx8bQ.m3u8/2X3sLszx8bQ.m3u8"}, "duration": 254, "id": "2X3sLszx8bQ", "title": "Flu Vaccine Risks and Benefits", "format": "mp4", "description": "Compare the risks and benefits of the flu vaccine side-by-side and decide for yourself if flu vaccines are a good idea. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "path": "flu-risks-and-benefits/", "slug": "flu-risks-and-benefits", "kind": "Video", "video_id": "2X3sLszx8bQ", "keywords": "", "youtube_id": "2X3sLszx8bQ", "readable_id": "flu-risks-and-benefits"}, "Pb9V374iOas": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Pb9V374iOas.mp4/Pb9V374iOas.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Pb9V374iOas.mp4/Pb9V374iOas.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Pb9V374iOas.m3u8/Pb9V374iOas.m3u8"}, "duration": 289, "id": "Pb9V374iOas", "title": "Logarithm of a power", "format": "mp4", "description": "Logarithm of a Power", "path": "khan/math/algebra2/logarithms-tutorial/logarithm_properties/logarithm-of-a-power/", "slug": "logarithm-of-a-power", "kind": "Video", "video_id": "Pb9V374iOas", "keywords": "u18_l2_t2_we3, Logarithm, of, Power", "youtube_id": "Pb9V374iOas", "readable_id": "logarithm-of-a-power"}, "t3cJYNdQLYg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/t3cJYNdQLYg.mp4/t3cJYNdQLYg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/t3cJYNdQLYg.mp4/t3cJYNdQLYg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/t3cJYNdQLYg.m3u8/t3cJYNdQLYg.m3u8"}, "duration": 1006, "id": "t3cJYNdQLYg", "title": "Line integrals and vector fields", "format": "mp4", "description": "Using line integrals to find the work done on a particle moving through a vector field", "path": "khan/math/multivariable-calculus/line_integrals_topic/line_integrals_vectors/line-integrals-and-vector-fields/", "slug": "line-integrals-and-vector-fields", "kind": "Video", "video_id": "t3cJYNdQLYg", "keywords": "work, calculus, vector, field", "youtube_id": "t3cJYNdQLYg", "readable_id": "line-integrals-and-vector-fields"}, "g9qJ19vmGQA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/g9qJ19vmGQA.mp4/g9qJ19vmGQA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/g9qJ19vmGQA.mp4/g9qJ19vmGQA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/g9qJ19vmGQA.m3u8/g9qJ19vmGQA.m3u8"}, "path": "khan/test-prep/mcat/chemical-processes/nucleic-acids-lipids-and-carbohydrates/carbohydrate-glycoside-formation-hydrolysis/", "duration": 642, "id": "g9qJ19vmGQA", "title": "Carbohydrate - Glycoside formation hydrolysis", "format": "mp4", "description": "", "slug": "carbohydrate-glycoside-formation-hydrolysis", "kind": "Video", "video_id": "g9qJ19vmGQA", "keywords": "", "youtube_id": "g9qJ19vmGQA", "readable_id": "carbohydrate-glycoside-formation-hydrolysis"}, "SffnpNxGWb8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/SffnpNxGWb8.mp4/SffnpNxGWb8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/SffnpNxGWb8.mp4/SffnpNxGWb8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/SffnpNxGWb8.m3u8/SffnpNxGWb8.m3u8"}, "path": "khan/science/health-and-medicine/hematologic-system/bleeding-and-impaired-hemostasis/primary-hemostasis/", "duration": 651, "id": "SffnpNxGWb8", "title": "Primary hemostasis", "format": "mp4", "description": "During primary hemostasis, a platelet plug is formed to rapidly stop the initial bleeding after injury. Learn about the different steps involved in primary hemostasis: vasoconstriction, platelet adhesion, activation and degranulation, platelet aggregation.", "slug": "primary-hemostasis", "kind": "Video", "video_id": "SffnpNxGWb8", "keywords": "", "youtube_id": "SffnpNxGWb8", "readable_id": "primary-hemostasis"}, "bG8aDJPlSLU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bG8aDJPlSLU.mp4/bG8aDJPlSLU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bG8aDJPlSLU.mp4/bG8aDJPlSLU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bG8aDJPlSLU.m3u8/bG8aDJPlSLU.m3u8"}, "duration": 139, "id": "bG8aDJPlSLU", "title": "Rolltop Desk by David Roentgen (demonstration)", "format": "mp4", "description": "This rolltop desk demonstrates the inventive talent of its maker. The chinoiserie marquetry scenes have a painterly effect that Roentgen alone attained, using minute pieces of naturally colored exotic woods. His mechanical ingenuity is exemplified by the workings of the lower section of the desk: when the key of the lower drawer is turned to the right, the side drawers spring open; if a button is pressed on the underside of these drawers, each swings aside to reveal three other drawers. Although Roentgen maintained his workshop at Neuwied, Germany, where this desk was made between 1776 and 1778, his French clientele became so important that he opened an outlet in Paris and joined the Parisian guild in 1780.\n\nView this work on metmuseum.org.\n", "path": "rolltop-desk/", "slug": "rolltop-desk", "kind": "Video", "video_id": "bG8aDJPlSLU", "keywords": "desk, ornate, wood, Europe", "youtube_id": "bG8aDJPlSLU", "readable_id": "rolltop-desk"}, "1O3F-b8FfDY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/1O3F-b8FfDY.mp4/1O3F-b8FfDY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/1O3F-b8FfDY.mp4/1O3F-b8FfDY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/1O3F-b8FfDY.m3u8/1O3F-b8FfDY.m3u8"}, "path": "khan/test-prep/nclex-rn/rn-muscular-skeletal-diseases/rn-arthritis/gout-and-pseudogout/", "duration": 494, "id": "1O3F-b8FfDY", "title": "Gout and pseudogout", "format": "mp4", "description": "Visit us (http://www.khanacademy.org/science/healthcare-and-medicine) for health and medicine content or (http://www.khanacademy.org/test-prep/mcat) for MCAT related content. \n\nThese videos do not provide medical advice and are for informational purposes only. The videos are not intended to be a substitute for professional medical advice, diagnosis or treatment. Always seek the advice of a qualified health provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have read or seen in any Khan Academy video.", "slug": "gout-and-pseudogout", "kind": "Video", "video_id": "1O3F-b8FfDY", "keywords": "", "youtube_id": "1O3F-b8FfDY", "readable_id": "gout-and-pseudogout"}, "IReD6c_njOY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/IReD6c_njOY.mp4/IReD6c_njOY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/IReD6c_njOY.mp4/IReD6c_njOY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/IReD6c_njOY.m3u8/IReD6c_njOY.m3u8"}, "duration": 784, "id": "IReD6c_njOY", "title": "Parametric equations 4", "format": "mp4", "description": "Parametric Equations that \"move\" along the same path", "path": "khan/math/precalculus/parametric_equations/parametric/parametric-equations-4/", "slug": "parametric-equations-4", "kind": "Video", "video_id": "IReD6c_njOY", "keywords": "parametric, equations", "youtube_id": "IReD6c_njOY", "readable_id": "parametric-equations-4"}, "Yo_zEyEBMmE": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Yo_zEyEBMmE.mp4/Yo_zEyEBMmE.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Yo_zEyEBMmE.mp4/Yo_zEyEBMmE.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Yo_zEyEBMmE.m3u8/Yo_zEyEBMmE.m3u8"}, "path": "khan/test-prep/sat/full-length-sat-1/sat-test1-section6/2013-sat-practice-6-8/", "duration": 116, "id": "Yo_zEyEBMmE", "title": "8 Comparing functions", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "2013-sat-practice-6-8", "kind": "Video", "video_id": "Yo_zEyEBMmE", "keywords": "", "youtube_id": "Yo_zEyEBMmE", "readable_id": "2013-sat-practice-6-8"}, "7LpTDxGZ05o": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7LpTDxGZ05o.mp4/7LpTDxGZ05o.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7LpTDxGZ05o.mp4/7LpTDxGZ05o.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7LpTDxGZ05o.m3u8/7LpTDxGZ05o.m3u8"}, "duration": 237, "id": "7LpTDxGZ05o", "title": "Ei Arakawa", "format": "mp4", "description": "This video brought to you by\u00a0Tate.org.uk\n\nNew York-based Japanese artist Ei Arakawa creates a series of collaborative performances and actions during a residency at Tate Modern.\u00a0In this film, we meet the artist whose work takes inspiration from experimental avant-garde performace in post-war Japan, exploring performance and cross-disciplinary action. Watch as Arakawa uses collaboration to create a work of art that depends upon audience members working together, creating an atmosphere of silliness and participation.", "path": "ei-arakawa/", "slug": "ei-arakawa", "kind": "Video", "video_id": "7LpTDxGZ05o", "keywords": "Tate, performance art", "youtube_id": "7LpTDxGZ05o", "readable_id": "ei-arakawa"}, "MxE1IJvz-oA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/MxE1IJvz-oA.mp4/MxE1IJvz-oA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/MxE1IJvz-oA.mp4/MxE1IJvz-oA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/MxE1IJvz-oA.m3u8/MxE1IJvz-oA.m3u8"}, "duration": 170, "id": "MxE1IJvz-oA", "title": "\"Freeze Frame\" with Thayer Tolles", "format": "mp4", "description": "Met curator Thayer Tolles on history and myth in Frederic Remington\u2019s The Old Dragoons of 1850.\n\nRemington\u2019s ambitious group includes five horses and four riders: two American cavalrymen, from the United States Regiment of Dragoons, and two Plains Indians. The Dragoons, who patrolled the land west of the Mississippi River, have closed in on the fleeing Indians, and the men are locked in hand-to-hand combat. While the soldiers\u2019 uniforms, rifles, and accoutrements are historically correct for 1850, Remington\u2019s Indians are closer in type to those he had known in the West in the 1880s and 1890s.\n\nView this work on\u00a0metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, try this and also visit Find an Educator Resource.\n", "path": "freeze-frame/", "slug": "freeze-frame", "kind": "Video", "video_id": "MxE1IJvz-oA", "keywords": "belief, defeat, ornate, painting, transcendence, Europe", "youtube_id": "MxE1IJvz-oA", "readable_id": "freeze-frame"}, "vDjI3bVAN_Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vDjI3bVAN_Y.mp4/vDjI3bVAN_Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vDjI3bVAN_Y.mp4/vDjI3bVAN_Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vDjI3bVAN_Y.m3u8/vDjI3bVAN_Y.m3u8"}, "duration": 183, "id": "vDjI3bVAN_Y", "title": "DNA Surveillance and Maryland v. King", "format": "mp4", "description": "The Supreme Court, by a divided vote, held that it\u2019s ok for the cops, when they arrest you, to swab your cheek, seize a sample of your DNA and put it in a database.\nNeal. Katyal, Former\u00a0Acting Solicitor General of the United States in conversation with Jeffrey Rosen of the National Constitution Center.\n", "path": "dna-surveillance-and-maryland-v-king/", "slug": "dna-surveillance-and-maryland-v-king", "kind": "Video", "video_id": "vDjI3bVAN_Y", "keywords": "", "youtube_id": "vDjI3bVAN_Y", "readable_id": "dna-surveillance-and-maryland-v-king"}, "rIF6Vj6pVNg": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/rIF6Vj6pVNg.mp4/rIF6Vj6pVNg.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/rIF6Vj6pVNg.mp4/rIF6Vj6pVNg.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/rIF6Vj6pVNg.m3u8/rIF6Vj6pVNg.m3u8"}, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/eratosthenes_measures_earth/", "duration": 449, "id": "rIF6Vj6pVNg", "title": "Circumference of Earth", "format": "mp4", "description": "", "slug": "eratosthenes_measures_earth", "kind": "Video", "video_id": "rIF6Vj6pVNg", "keywords": "", "youtube_id": "rIF6Vj6pVNg", "readable_id": "eratosthenes_measures_earth"}, "ESSMQH6Y5OA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ESSMQH6Y5OA.mp4/ESSMQH6Y5OA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ESSMQH6Y5OA.mp4/ESSMQH6Y5OA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ESSMQH6Y5OA.m3u8/ESSMQH6Y5OA.m3u8"}, "path": "khan/math/linear-algebra/matrix_transformations/matrix_transpose/lin-alg-showing-that-a-transpose-x-a-is-invertible/", "duration": 754, "id": "ESSMQH6Y5OA", "title": "Showing that A-transpose x A is invertible", "format": "mp4", "description": "Showing that (transpose of A)(A) is invertible if A has linearly independent columns", "slug": "lin-alg-showing-that-a-transpose-x-a-is-invertible", "kind": "Video", "video_id": "ESSMQH6Y5OA", "keywords": "invertible, transpose", "youtube_id": "ESSMQH6Y5OA", "readable_id": "lin-alg-showing-that-a-transpose-x-a-is-invertible"}, "PjLQrZRg-WI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/PjLQrZRg-WI.mp4/PjLQrZRg-WI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/PjLQrZRg-WI.mp4/PjLQrZRg-WI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/PjLQrZRg-WI.m3u8/PjLQrZRg-WI.m3u8"}, "path": "khan/humanities/art-asia/art-japan/heian-period/fudo-myoo/", "duration": 222, "id": "PjLQrZRg-WI", "title": "The Buddhist guardian deity: Fudo Myoo", "format": "mp4", "description": "Fudo Myoo (the Immovable One) is one of the powerful deities known as the Five Bright Kings in Japanese Buddhism and folk religion. As a manifestation of the central cosmic Buddha Mahavairochana (Japanese: Dainichi), Fudo is believed to protect Buddhism and its true adherents. Like all Bright Kings, Fudo assumes a frightening form, with a sword in his right hand and a rope in his left. He sits in front of a swiring flame of fire, with which he purifies evil. Learn more about Fudo Myoo.", "slug": "fudo-myoo", "kind": "Video", "video_id": "PjLQrZRg-WI", "keywords": "", "youtube_id": "PjLQrZRg-WI", "readable_id": "fudo-myoo"}, "GpZYCOFAI_4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GpZYCOFAI_4.mp4/GpZYCOFAI_4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GpZYCOFAI_4.mp4/GpZYCOFAI_4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GpZYCOFAI_4.m3u8/GpZYCOFAI_4.m3u8"}, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/akkadian/sealed/", "duration": 155, "id": "GpZYCOFAI_4", "title": "\"Sealed\" with Yelena Rakic", "format": "mp4", "description": "Met curator Yelena Rakic on reading into Cylinder seal and modern impression: nude bearded hero wrestling with a water buffalo; bull-man wrestling with lion from Mesopotamia.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, try this and also visit\u00a0Find an Educator Resource.\n", "slug": "sealed", "kind": "Video", "video_id": "GpZYCOFAI_4", "keywords": "authority, decorative arts, nature, stone, writing, Middle East", "youtube_id": "GpZYCOFAI_4", "readable_id": "sealed"}, "HhzqZbz_NQ0": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/HhzqZbz_NQ0.mp4/HhzqZbz_NQ0.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/HhzqZbz_NQ0.mp4/HhzqZbz_NQ0.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/HhzqZbz_NQ0.m3u8/HhzqZbz_NQ0.m3u8"}, "duration": 627, "id": "HhzqZbz_NQ0", "title": "Common Core Standards: Place value", "format": "mp4", "description": "Sal talks with Bill McCallum, a lead author of the Common Core Standards, about the place value standards.", "path": "ccc-place-value/", "slug": "ccc-place-value", "kind": "Video", "video_id": "HhzqZbz_NQ0", "keywords": "", "youtube_id": "HhzqZbz_NQ0", "readable_id": "ccc-place-value"}, "fzgo6-IdkJA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/fzgo6-IdkJA.mp4/fzgo6-IdkJA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/fzgo6-IdkJA.mp4/fzgo6-IdkJA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/fzgo6-IdkJA.m3u8/fzgo6-IdkJA.m3u8"}, "duration": 160, "id": "fzgo6-IdkJA", "title": "\"Healer\" with Jim Draper", "format": "mp4", "description": "Met curator Jim Draper on healing in Jean-Baptiste Carpeaux\u2019s Le Trait d\u2019Union\n\nView this work on metmuseum.org.\u00a0\n\nAre you an educator? Here's a related lesson plan.\u00a0For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\u00a0\n", "path": "healer/", "slug": "healer", "kind": "Video", "video_id": "fzgo6-IdkJA", "keywords": "body, ceramic, family, motion, sculpture, touch, Europe", "youtube_id": "fzgo6-IdkJA", "readable_id": "healer"}, "ofJS_K0Fj2Q": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ofJS_K0Fj2Q.mp4/ofJS_K0Fj2Q.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ofJS_K0Fj2Q.mp4/ofJS_K0Fj2Q.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ofJS_K0Fj2Q.m3u8/ofJS_K0Fj2Q.m3u8"}, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/paul-gauguin-the-red-cow-1889/", "duration": 258, "id": "ofJS_K0Fj2Q", "title": "Gauguin, The Red Cow", "format": "mp4", "description": "Paul Gauguin, The Red Cow, 1889, oil on canvas (LACMA) Note: Despite my saying that the cypress trees suggest this canvas may have been painted in the south, it was painted in Le Pouldu near Pont-Aven in Brittany (SZ).", "slug": "paul-gauguin-the-red-cow-1889", "kind": "Video", "video_id": "ofJS_K0Fj2Q", "keywords": "Gauguin, Paul Gauguin, The Red Cow, 1889, LACMA, Post-Impressionism, cypress, Le Pouldu, Pont-Aven, Brittany, France", "youtube_id": "ofJS_K0Fj2Q", "readable_id": "paul-gauguin-the-red-cow-1889"}, "TKGcfbyFXsw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TKGcfbyFXsw.mp4/TKGcfbyFXsw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TKGcfbyFXsw.mp4/TKGcfbyFXsw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TKGcfbyFXsw.m3u8/TKGcfbyFXsw.m3u8"}, "path": "khan/science/biology/cellular-molecular-biology/mitosis/mitosis/", "duration": 732, "id": "TKGcfbyFXsw", "title": "Mitosis", "format": "mp4", "description": "Phases of mitosis: prophase, metaphase, anaphase, telophase", "slug": "mitosis", "kind": "Video", "video_id": "TKGcfbyFXsw", "keywords": "", "youtube_id": "TKGcfbyFXsw", "readable_id": "mitosis"}, "cgV2ju-UEnw": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/cgV2ju-UEnw.mp4/cgV2ju-UEnw.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/cgV2ju-UEnw.mp4/cgV2ju-UEnw.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/cgV2ju-UEnw.m3u8/cgV2ju-UEnw.m3u8"}, "duration": 192, "id": "cgV2ju-UEnw", "title": "Climbing Huangshan (Yellow Mountain)", "format": "mp4", "description": "Dr. Sanford Tom explores Huangshan (the Yellow Mountain), which is often considered the most beautiful as well as the strangest mountain in China.", "path": "climbing-huangshan-yellow-mountain/", "slug": "climbing-huangshan-yellow-mountain", "kind": "Video", "video_id": "cgV2ju-UEnw", "keywords": "", "youtube_id": "cgV2ju-UEnw", "readable_id": "climbing-huangshan-yellow-mountain"}, "VB_1AsmtFds": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/VB_1AsmtFds.mp4/VB_1AsmtFds.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/VB_1AsmtFds.mp4/VB_1AsmtFds.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/VB_1AsmtFds.m3u8/VB_1AsmtFds.m3u8"}, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-2010-may-9-2/", "duration": 62, "id": "VB_1AsmtFds", "title": "2 Coupon probability", "format": "mp4", "description": "This video features an official SAT practice question provided by the College Board.", "slug": "sat-2010-may-9-2", "kind": "Video", "video_id": "VB_1AsmtFds", "keywords": "", "youtube_id": "VB_1AsmtFds", "readable_id": "sat-2010-may-9-2"}, "2b_BOHeEPJY": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2b_BOHeEPJY.mp4/2b_BOHeEPJY.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2b_BOHeEPJY.mp4/2b_BOHeEPJY.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2b_BOHeEPJY.m3u8/2b_BOHeEPJY.m3u8"}, "duration": 155, "id": "2b_BOHeEPJY", "title": "Conservation | Ren\u00e9 Magritte, \"The Menaced Assassin,\" 1927", "format": "mp4", "description": "For more information please visit http://www.moma.org/magritte", "path": "magritte-menaced-assassin/", "slug": "magritte-menaced-assassin", "kind": "Video", "video_id": "2b_BOHeEPJY", "keywords": "", "youtube_id": "2b_BOHeEPJY", "readable_id": "magritte-menaced-assassin"}, "b2C9I8HuCe4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/b2C9I8HuCe4.mp4/b2C9I8HuCe4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/b2C9I8HuCe4.mp4/b2C9I8HuCe4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/b2C9I8HuCe4.m3u8/b2C9I8HuCe4.m3u8"}, "path": "khan/math/probability/descriptive-statistics/box-and-whisker-plots/reading-box-and-whisker-plots/", "duration": 198, "id": "b2C9I8HuCe4", "title": "Box and whisker plot", "format": "mp4", "description": "Is this some kind of cute cat video? No! Box and whisker plots seek to explain data by showing a spread of all the data points in a sample. The \"whiskers\" are the two opposite ends of the data. This video is more fun than a handful of catnip.", "slug": "reading-box-and-whisker-plots", "kind": "Video", "video_id": "b2C9I8HuCe4", "keywords": "u08_l2_t1_we4, Reading, Box-and-Whisker, Plots", "youtube_id": "b2C9I8HuCe4", "readable_id": "reading-box-and-whisker-plots"}, "DhwgNaRwscQ": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/DhwgNaRwscQ.mp4/DhwgNaRwscQ.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/DhwgNaRwscQ.mp4/DhwgNaRwscQ.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/DhwgNaRwscQ.m3u8/DhwgNaRwscQ.m3u8"}, "path": "khan/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-alcohols-tutorial/synthesis-of-alcohols-using-grignard-reagents-ii/", "duration": 728, "id": "DhwgNaRwscQ", "title": "Synthesis of alcohols using Grignard reagents II", "format": "mp4", "description": "", "slug": "synthesis-of-alcohols-using-grignard-reagents-ii", "kind": "Video", "video_id": "DhwgNaRwscQ", "keywords": "", "youtube_id": "DhwgNaRwscQ", "readable_id": "synthesis-of-alcohols-using-grignard-reagents-ii"}, "TK7NnXGrWfA": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/TK7NnXGrWfA.mp4/TK7NnXGrWfA.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/TK7NnXGrWfA.mp4/TK7NnXGrWfA.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/TK7NnXGrWfA.m3u8/TK7NnXGrWfA.m3u8"}, "path": "khan/test-prep/mcat/processing-the-environment/drug-dependence/treatments-and-triggers-for-drug-dependence/", "duration": 463, "id": "TK7NnXGrWfA", "title": "Treatments and triggers for drug dependence", "format": "mp4", "description": "", "slug": "treatments-and-triggers-for-drug-dependence", "kind": "Video", "video_id": "TK7NnXGrWfA", "keywords": "", "youtube_id": "TK7NnXGrWfA", "readable_id": "treatments-and-triggers-for-drug-dependence"}, "GLEJgVSL0Ac": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/GLEJgVSL0Ac.mp4/GLEJgVSL0Ac.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/GLEJgVSL0Ac.mp4/GLEJgVSL0Ac.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/GLEJgVSL0Ac.m3u8/GLEJgVSL0Ac.m3u8"}, "duration": 100, "id": "GLEJgVSL0Ac", "title": "Umberto Boccioni, \"Dynamism of a Soccer Player\"", "format": "mp4", "description": "To learn more about how abstract artists became the radical thinkers of their time, take our online course, Modern Art, 1880-1945 or Pigment to Pixel: Color in Modern and Contemporary Art.", "path": "khan/humanities/art-1010/wwi-dada/art-great-war/dynamism-soccer-player-boccioni/", "slug": "dynamism-soccer-player-boccioni", "kind": "Video", "video_id": "GLEJgVSL0Ac", "keywords": "", "youtube_id": "GLEJgVSL0Ac", "readable_id": "dynamism-soccer-player-boccioni"}, "vZtQXteAE-w": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/vZtQXteAE-w.mp4/vZtQXteAE-w.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/vZtQXteAE-w.mp4/vZtQXteAE-w.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/vZtQXteAE-w.m3u8/vZtQXteAE-w.m3u8"}, "path": "khan/partner-content/wi-phi/the-history-of-philosophy/kant-on-metaphysical-knowledge/", "duration": 611, "id": "vZtQXteAE-w", "title": "Kant: On Metaphysical Knowledge", "format": "mp4", "description": "Kant famously claims that we have\u00a0synthetic apriori\u00a0knowledge. Indeed, this claim is absolutely central to all of his philosophy. But what is synthetic aprioriknowledge? Scott Edgar helpfully breaks-down this category of knowledge by first walking through Kant's distinction between\u00a0empirical\u00a0and\u00a0apriori\u00a0knowledge and then his distinction between\u00a0analytic\u00a0and\u00a0synthetic\u00a0judgments. The interaction between these distinctions is then illustrated with numerous examples, making it clear why Kant, unlike Hume, thought that there is knowledge that is both apriori and synthetic and that this is the type of knowledge philosophers seek.\n\nSpeaker: Dr. Scott Edgar, Associate Professor, Saint Mary's University", "slug": "kant-on-metaphysical-knowledge", "kind": "Video", "video_id": "vZtQXteAE-w", "keywords": "", "youtube_id": "vZtQXteAE-w", "readable_id": "kant-on-metaphysical-knowledge"}, "NrIf451oN30": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/NrIf451oN30.mp4/NrIf451oN30.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/NrIf451oN30.mp4/NrIf451oN30.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/NrIf451oN30.m3u8/NrIf451oN30.m3u8"}, "path": "khan/test-prep/gmat/data-sufficiency/gmat-data-sufficiency-24/", "duration": 665, "id": "NrIf451oN30", "title": "GMAT: Data sufficiency 24", "format": "mp4", "description": "103-106, pg. 287", "slug": "gmat-data-sufficiency-24", "kind": "Video", "video_id": "NrIf451oN30", "keywords": "gmat, data, sufficiency", "youtube_id": "NrIf451oN30", "readable_id": "gmat-data-sufficiency-24"}, "6vlBOHckmzU": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/6vlBOHckmzU.mp4/6vlBOHckmzU.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/6vlBOHckmzU.mp4/6vlBOHckmzU.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/6vlBOHckmzU.m3u8/6vlBOHckmzU.m3u8"}, "path": "khan/math/probability/random-variables-topic/expected-value/expected-value-profit-lottery-ticket/", "duration": 558, "id": "6vlBOHckmzU", "title": "Expected profit from lottery ticket", "format": "mp4", "description": "", "slug": "expected-value-profit-lottery-ticket", "kind": "Video", "video_id": "6vlBOHckmzU", "keywords": "", "youtube_id": "6vlBOHckmzU", "readable_id": "expected-value-profit-lottery-ticket"}, "UNZ171fDja4": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/UNZ171fDja4.mp4/UNZ171fDja4.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/UNZ171fDja4.mp4/UNZ171fDja4.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/UNZ171fDja4.m3u8/UNZ171fDja4.m3u8"}, "duration": 562, "id": "UNZ171fDja4", "title": "Refraction of seismic waves", "format": "mp4", "description": "Refraction of Seismic Waves", "path": "khan/science/cosmology-and-astronomy/earth-history-topic/seismic-waves-tutorial/refraction-of-seismic-waves/", "slug": "refraction-of-seismic-waves", "kind": "Video", "video_id": "UNZ171fDja4", "keywords": "Refraction, of, Seismic, Waves", "youtube_id": "UNZ171fDja4", "readable_id": "refraction-of-seismic-waves"}, "ArvnBba_ogI": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/ArvnBba_ogI.mp4/ArvnBba_ogI.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/ArvnBba_ogI.mp4/ArvnBba_ogI.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/ArvnBba_ogI.m3u8/ArvnBba_ogI.m3u8"}, "path": "khan/math/pre-algebra/measurement/area-basics/comparing-areas-of-plots-of-land/", "duration": 166, "id": "ArvnBba_ogI", "title": "Comparing areas of plots of land", "format": "mp4", "description": "Find area of two rectangles to solve a word problem.", "slug": "comparing-areas-of-plots-of-land", "kind": "Video", "video_id": "ArvnBba_ogI", "keywords": "", "youtube_id": "ArvnBba_ogI", "readable_id": "comparing-areas-of-plots-of-land"}, "7t8gdc3YogM": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/7t8gdc3YogM.mp4/7t8gdc3YogM.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/7t8gdc3YogM.mp4/7t8gdc3YogM.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/7t8gdc3YogM.m3u8/7t8gdc3YogM.m3u8"}, "duration": 460, "id": "7t8gdc3YogM", "title": "Marginal cost and average total cost", "format": "mp4", "description": "Looking at marginal and average total cost in the context of a juice business", "path": "khan/economics-finance-domain/microeconomics/firm-economic-profit/average-costs-margin-rev/marginal-cost-and-average-total-cost/", "slug": "marginal-cost-and-average-total-cost", "kind": "Video", "video_id": "7t8gdc3YogM", "keywords": "microeconomics", "youtube_id": "7t8gdc3YogM", "readable_id": "marginal-cost-and-average-total-cost"}, "2h6RdAxIMO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/2h6RdAxIMO8.mp4/2h6RdAxIMO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/2h6RdAxIMO8.mp4/2h6RdAxIMO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/2h6RdAxIMO8.m3u8/2h6RdAxIMO8.m3u8"}, "path": "khan/college-admissions/explore-college-options/college-search-type-of-college/comparing-highly-selective-vs-selective-vs-nonselective-colleges/", "duration": 342, "id": "2h6RdAxIMO8", "title": "Comparing highly selective vs selective vs nonselective colleges", "format": "mp4", "description": "Filter by selectivity using College Board's college search tool", "slug": "comparing-highly-selective-vs-selective-vs-nonselective-colleges", "kind": "Video", "video_id": "2h6RdAxIMO8", "keywords": "", "youtube_id": "2h6RdAxIMO8", "readable_id": "comparing-highly-selective-vs-selective-vs-nonselective-colleges"}, "Jsiy4TxgIME": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Jsiy4TxgIME.mp4/Jsiy4TxgIME.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Jsiy4TxgIME.mp4/Jsiy4TxgIME.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Jsiy4TxgIME.m3u8/Jsiy4TxgIME.m3u8"}, "path": "khan/math/trigonometry/basic-trigonometry/basic_trig_ratios/basic-trigonometry/", "duration": 557, "id": "Jsiy4TxgIME", "title": "Basic trigonometry", "format": "mp4", "description": "Introduction to trigonometry", "slug": "basic-trigonometry", "kind": "Video", "video_id": "Jsiy4TxgIME", "keywords": "trig, sin, cos, tan, sine, cosine, tangent, CC_8_G_7", "youtube_id": "Jsiy4TxgIME", "readable_id": "basic-trigonometry"}, "Aa4RIyDatO8": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/Aa4RIyDatO8.mp4/Aa4RIyDatO8.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/Aa4RIyDatO8.mp4/Aa4RIyDatO8.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/Aa4RIyDatO8.m3u8/Aa4RIyDatO8.m3u8"}, "path": "khan/humanities/global-culture/conceptual-performance/the-tanks-juan-downey/", "duration": 216, "id": "Aa4RIyDatO8", "title": "Juan Downey: Plato Now", "format": "mp4", "description": "This video brought to you by Tate.org.uk\n\nJuan Downey (1940-1993) was a Chilean artist whose innovations in video, sculpture and interactive performance encouraged reflection on perception and the self. Drawing together advances in technology with an interest in the rituals of his native Latin America, Downey asks big questions about society, history, information and the environment. In this video, his groundbreaking 1973 performance Plato Now is restaged and invites the audience members to consider their role in the piece.", "slug": "the-tanks-juan-downey", "kind": "Video", "video_id": "Aa4RIyDatO8", "keywords": "Tate, performance art", "youtube_id": "Aa4RIyDatO8", "readable_id": "the-tanks-juan-downey"}, "xheOq0XZ-so": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/xheOq0XZ-so.mp4/xheOq0XZ-so.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/xheOq0XZ-so.mp4/xheOq0XZ-so.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/xheOq0XZ-so.m3u8/xheOq0XZ-so.m3u8"}, "duration": 531, "id": "xheOq0XZ-so", "title": "Carboxylic acid introduction", "format": "mp4", "description": "Carboxylic Acid Introduction", "path": "khan/science/organic-chemistry/carboxylic-acids-derivatives/naming-carboxylic-acids-sal/carboxlic-acid-introduction/", "slug": "carboxlic-acid-introduction", "kind": "Video", "video_id": "xheOq0XZ-so", "keywords": "Carboxlic, Acid, Introduction, formic, acetic, oxalic", "youtube_id": "xheOq0XZ-so", "readable_id": "carboxlic-acid-introduction"}, "12JdSg4pXIs": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/12JdSg4pXIs.mp4/12JdSg4pXIs.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/12JdSg4pXIs.mp4/12JdSg4pXIs.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/12JdSg4pXIs.m3u8/12JdSg4pXIs.m3u8"}, "path": "khan/humanities/renaissance-reformation/northern/durer/exposure/", "duration": 173, "id": "12JdSg4pXIs", "title": "\"Exposure\" with Freyda Spira", "format": "mp4", "description": "Met curator Freyda Spira on advertising in Albrecht D\u00fcrer\u2019s Adam and Eve.\n\nThroughout his life, D\u00fcrer was in thrall to the idea that the perfect human form corresponded to a system of proportion and measurements and could be generated by using such a system. Near the end of his life, he wrote several books codifying his theories, including the Underweysung der Messung (Manual of measurement), published in 1525, and Vier B\u00fccher von menschlichen Proportion (Four books of human proportion), published in 1528 just after his death. D\u00fcrer's fascination with ideal form is manifest in Adam and Eve. The first man and woman are shown in nearly symmetrical idealized poses: each with the weight on one leg, the other leg bent, and each with one arm angled slightly upward from the elbow and somewhat away from the body. The figure of Adam is reminiscent of the Hellenistic Apollo Belvedere, excavated in Italy late in the fifteenth century. The first engravings of the sculpture were not made until well after 1504, but D\u00fcrer must have seen a drawing of it. D\u00fcrer was a complete master of engraving by 1504: human and snake skin, animal fur, and tree bark and leaves are rendered distinctively. The branch Adam holds is of the mountain ash, the Tree of Life, while the fig, of which Eve has broken off a branch, is from the forbidden Tree of Knowledge. Four of the animals represent the medieval idea of the four temperaments: the cat is choleric, the rabbit sanguine, the ox phlegmatic, and the elk melancholic.\n\nView this work on metmuseum.org.\n\nAre you an educator? Here's a related lesson plan. For additional educator resources from The Metropolitan Museum of Art, visit Find an educator resource.\n", "slug": "exposure", "kind": "Video", "video_id": "12JdSg4pXIs", "keywords": "body, control, nature, paper, practicality, print, Europe", "youtube_id": "12JdSg4pXIs", "readable_id": "exposure"}, "bNQY0z76M5A": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/bNQY0z76M5A.mp4/bNQY0z76M5A.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/bNQY0z76M5A.mp4/bNQY0z76M5A.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/bNQY0z76M5A.m3u8/bNQY0z76M5A.m3u8"}, "duration": 846, "id": "bNQY0z76M5A", "title": "Solving quadratic equations by completing the square", "format": "mp4", "description": "Solving Quadratic Equations by Completing the Square", "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/solving-quadratic-equations-by-completing-the-square/", "slug": "solving-quadratic-equations-by-completing-the-square", "kind": "Video", "video_id": "bNQY0z76M5A", "keywords": "Solving, Quadratic, Equations, by, Completing, the, Square, CC_39336_A-REI_4_b, CC_39336_A-SSE_3_b", "youtube_id": "bNQY0z76M5A", "readable_id": "solving-quadratic-equations-by-completing-the-square"}, "_jMyz4ZYc-Y": {"download_urls": {"mp4": "http://fastly.kastatic.org/KA-youtube-converted/_jMyz4ZYc-Y.mp4/_jMyz4ZYc-Y.mp4", "png": "http://fastly.kastatic.org/KA-youtube-converted/_jMyz4ZYc-Y.mp4/_jMyz4ZYc-Y.png", "m3u8": "http://fastly.kastatic.org/KA-youtube-converted/_jMyz4ZYc-Y.m3u8/_jMyz4ZYc-Y.m3u8"}, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/sam-overview-/", "duration": 118, "id": "_jMyz4ZYc-Y", "title": "Introduction to SAM", "format": "mp4", "description": "", "slug": "sam-overview-", "kind": "Video", "video_id": "_jMyz4ZYc-Y", "keywords": "", "youtube_id": "_jMyz4ZYc-Y", "readable_id": "sam-overview-"}}
\ No newline at end of file
diff --git a/data/khan/exercises.json b/data/khan/exercises.json
deleted file mode 100644
index fdeba9b530..0000000000
--- a/data/khan/exercises.json
+++ /dev/null
@@ -1 +0,0 @@
-{"brunelleschi-and-ghiberti-s-sacrifice-of-isaac-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/brunelleschi-and-ghiberti-s-sacrifice-of-isaac-quiz/", "id": "brunelleschi-and-ghiberti-s-sacrifice-of-isaac-quiz", "display_name": "Brunelleschi and Ghiberti, Sacrifice of Isaac (quiz)", "title": "Brunelleschi and Ghiberti, Sacrifice of Isaac (quiz)", "all_assessment_items": ["{\"sha\": \"cf721ce6233290c178384c42017ed1a91a5d839c\", \"live\": true, \"id\": \"xd16951f75babeb03\"}", "{\"sha\": \"fb4a56f31863eb5d4e1efa1c0994da1d8ffdc6b3\", \"live\": true, \"id\": \"xcfdb6a31f0e0c12b\"}", "{\"sha\": \"649bb2da886c50cdd90f243933e3d3da6be28191\", \"live\": true, \"id\": \"x28f7810dab77fb61\"}", "{\"sha\": \"45fe50e0e6f20359af1d1cb868d06127cadcc576\", \"live\": true, \"id\": \"x8232e3e705e68b22\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "brunelleschi-and-ghiberti-s-sacrifice-of-isaac-quiz", "kind": "Exercise", "name": "brunelleschi-and-ghiberti-s-sacrifice-of-isaac-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "brunelleschi-and-ghiberti-s-sacrifice-of-isaac-quiz"}, "biochemistry-changes-that-occur-after-death": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/biochemistry-changes-that-occur-after-death/", "id": "biochemistry-changes-that-occur-after-death", "display_name": "Biochemistry changes that occur after death", "title": "Biochemistry changes that occur after death", "all_assessment_items": ["{\"sha\": \"6e20c2fcce85fbbd34afba8a3b439c59992d5928\", \"live\": true, \"id\": \"x53f052c65ce3297e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ead3cc1fd94a77e5972679f21a37f71d9c517029\", \"live\": true, \"id\": \"x74128b17bdaadecf\", \"perseus_api_major_version\": null}", "{\"sha\": \"528feb74bf8e4fa058427bac62616dda2ecaf342\", \"live\": true, \"id\": \"x10e68aa02f6d18db\", \"perseus_api_major_version\": null}", "{\"sha\": \"f0fa72746764bab648c59ec045e598a1470caabc\", \"live\": true, \"id\": \"xb94b3fdd8b5b6e68\", \"perseus_api_major_version\": null}", "{\"sha\": \"44ce10d9daf69889e7aaf27f9a60f02f6655d088\", \"live\": true, \"id\": \"xe38ce2a286238934\", \"perseus_api_major_version\": null}"], "description": "Questions related to acid-base chemistry", "basepoints": 10.0, "slug": "biochemistry-changes-that-occur-after-death", "kind": "Exercise", "name": "biochemistry-changes-that-occur-after-death", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "biochemistry-changes-that-occur-after-death"}, "naming-angles": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-angle-basics/naming-angles/", "id": "naming-angles", "display_name": "Naming angles", "title": "Naming angles", "all_assessment_items": ["{\"sha\": \"c49eefe7ddc107d8a6a53806f2cc9de1eb84c0df\", \"live\": true, \"id\": \"xf98471b29a2a720d\"}", "{\"sha\": \"88eb35852b49c7de70dfa6792226779c49ceffa5\", \"live\": true, \"id\": \"x66b150b6366eae55\"}", "{\"sha\": \"c99b5bf39e40ea8b531422e61daddc36f3cc602f\", \"live\": true, \"id\": \"x24ebe2b465d07171\"}", "{\"sha\": \"fc25aca4187af90286789ea4ba2680b178a18571\", \"live\": true, \"id\": \"xdd533363b4e0bd31\"}", "{\"sha\": \"b4e6f111306be716a1d69d08670cb08632425c56\", \"live\": true, \"id\": \"xc48f4a046fd752ad\"}", "{\"sha\": \"a33c35773931667a2c72bcba865dd335d7d0c959\", \"live\": true, \"id\": \"xb875862c26e3b980\"}", "{\"sha\": \"1ce31eebd6e277c57381c177c22a9e3921883798\", \"live\": true, \"id\": \"x89783610d5a84b46\"}", "{\"sha\": \"57e6585325df305221f655fb8e57abd6c3a3f188\", \"live\": true, \"id\": \"xf16de79909fe37a9\"}", "{\"sha\": \"0fe8d04d379d5c1641bd29426df656c86b3b5379\", \"live\": true, \"id\": \"x93c19a340fc23b03\"}", "{\"sha\": \"0be4465e5f73ece238adb08fca7c55363c5e5cb5\", \"live\": true, \"id\": \"xfd875b75c6ed8be4\"}", "{\"sha\": \"8b6a8541188e4216ef4cd89b6eb1ddc32e5add27\", \"live\": true, \"id\": \"xd7303cfdf85a1072\"}", "{\"sha\": \"e991c58468a466ac0a4084be83d24d3ed132d9a1\", \"live\": true, \"id\": \"x01c21f800d350be0\"}", "{\"sha\": \"1f9fd0356a688b7576ffb0009d024cabbd5ccc99\", \"live\": true, \"id\": \"xb049215013e7e2ff\"}", "{\"sha\": \"6028b374c1ef5a93458448876c15265dfa06f6a2\", \"live\": true, \"id\": \"x780300d1dc35cac2\"}", "{\"sha\": \"926b0cfbc3ce8da506b6eaad5de7d410401eecba\", \"live\": true, \"id\": \"xc2e0431f0f9b2856\"}", "{\"sha\": \"d00b7f8acf68231bb8f20bf5294e47a54e88a061\", \"live\": true, \"id\": \"xae210f4df7c65454\"}", "{\"sha\": \"5dc38a9cc21fc21d07856c6e34fa54501a1a63f1\", \"live\": true, \"id\": \"x0594e93c63b3a224\"}", "{\"sha\": \"9157a1758ecdecc22fae7a273d774df3c00787a7\", \"live\": true, \"id\": \"xeedc64dae649cf9d\"}", "{\"sha\": \"e3080b91ec1ef1b70d25cb42f1a0a8861a0452aa\", \"live\": true, \"id\": \"x73fb0d208c41b5bb\"}", "{\"sha\": \"b2579483813f686e1e1097d4a859e0d50befcf39\", \"live\": true, \"id\": \"x569d415769e51913\"}", "{\"sha\": \"0945a21d8fe58318c86528b3fd9dd22b8f677bdb\", \"live\": true, \"id\": \"xfcc4b4debc3d199b\"}", "{\"sha\": \"3e19eb30bee99e379c24427999034f3d143a875e\", \"live\": true, \"id\": \"x588dc60d9fa077e4\"}", "{\"sha\": \"c9966a652e0835a12c53817b90c76958a9c4bee9\", \"live\": true, \"id\": \"x679f5495c46dfadb\"}", "{\"sha\": \"f4f748ad4af4fc3627bc78d1a6b808045a737349\", \"live\": true, \"id\": \"x5017d4081f367ad7\"}", "{\"sha\": \"3c30ee0e627bd3c14e2f8669eb9e7fedc1670a0a\", \"live\": true, \"id\": \"xbe6f3c3d7a4b3709\"}", "{\"sha\": \"274b5e309b390b8dc075c1325c2c5240a447ef2b\", \"live\": true, \"id\": \"x8c4468ea2edae114\"}", "{\"sha\": \"17e4ab7d8d8f18ad3c30d927126e4d6f902e6330\", \"live\": true, \"id\": \"xe8475982467a94e0\"}", "{\"sha\": \"eb9176f2f56a0d5de97acb24a2eeae3fa17d3d96\", \"live\": true, \"id\": \"x267b2774f2313284\"}", "{\"sha\": \"432b8b6a779a9a57c46fbe2a8ae1030a4d220998\", \"live\": true, \"id\": \"x9a7b4c34df8e97cf\"}", "{\"sha\": \"86df1d2f34812b9bff26933ce23d2415e0a61fb6\", \"live\": true, \"id\": \"x1913127152c0666e\"}"], "description": "Name angles by their vertex, endpoints, or labels. \u00a0", "basepoints": 17.0, "slug": "naming-angles", "kind": "Exercise", "name": "naming-angles", "seconds_per_fast_problem": 11.0, "prerequisites": ["recognizing_rays_lines_and_line_segments"], "exercise_id": "naming-angles"}, "area_of_a_circle": {"uses_assessment_items": false, "path": "khan/math/geometry/basic-geometry/circum_area_circles/area_of_a_circle/", "id": "area_of_a_circle", "display_name": "Area of a circle", "title": "Area of a circle", "description": "", "basepoints": 15.0, "slug": "area_of_a_circle", "kind": "Exercise", "name": "area_of_a_circle", "seconds_per_fast_problem": 8.0, "prerequisites": ["radius_diameter_and_circumference", "positive_and_zero_exponents"], "exercise_id": "area_of_a_circle"}, "naming-shapes": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-shapes/naming-shapes/", "id": "naming-shapes", "display_name": "Naming shapes", "title": "Naming shapes", "all_assessment_items": ["{\"sha\": \"6682da25922895bf85be5d15b0734058299f58d9\", \"live\": true, \"id\": \"x9608ffa71bf8a98d\"}", "{\"sha\": \"09735ba7c74deda5d1865ab3f884a6b8f3943694\", \"live\": true, \"id\": \"x7272ddbe09296de6\"}", "{\"sha\": \"4c71d42e189905843f54828abb813a738c4d64ab\", \"live\": true, \"id\": \"x409cf47306f75ae5\"}", "{\"sha\": \"92d2f146401c84d24c3a9d04e6e1945c0b875810\", \"live\": true, \"id\": \"xc2704edea530ccad\"}", "{\"sha\": \"01862cde912fd35cfa98d144cfdcbf23e6921d3f\", \"live\": true, \"id\": \"xd225932d06fc285d\"}", "{\"sha\": \"adac099bb564c040949906c4bf77b3fe24dcfed5\", \"live\": true, \"id\": \"x8a2dc12bac6a3e2b\"}", "{\"sha\": \"a3e3967980c09d17143dab4a3f5e71baf630004f\", \"live\": true, \"id\": \"xde72bf7bc52681e7\"}", "{\"sha\": \"091e1a4bb97a83ae84879df28d4189b84027e2eb\", \"live\": true, \"id\": \"xc3367d351887574b\"}", "{\"sha\": \"3afc5bf3e2833932687c669c8f40ca84a47c3796\", \"live\": true, \"id\": \"xd7727e93645378b4\"}", "{\"sha\": \"907d3fe56f45eccf28bbe892f2fc32a1d50d0d81\", \"live\": true, \"id\": \"x7348865c22db6497\"}", "{\"sha\": \"4568e01bdc6e7a89d007139ee7b74f51bb567d64\", \"live\": true, \"id\": \"xaeb9a1579485b156\"}", "{\"sha\": \"22db128c42ce381de0e00d8dfb1e9b70c65bec8f\", \"live\": true, \"id\": \"x6e2bec5b0e40f45e\"}", "{\"sha\": \"e8c62d0205bb7b0bfc53460369982121f8fdf6dc\", \"live\": true, \"id\": \"x879ad43cca3dd2f7\"}", "{\"sha\": \"f5a6bbbb28df8ffe512bfee7ef34f1923378b79d\", \"live\": true, \"id\": \"xc6c6f57559533c6f\"}", "{\"sha\": \"053de1b1b71fee6c20513d0462e3d841db9f289b\", \"live\": true, \"id\": \"xdb4e506b8b6c9551\"}", "{\"sha\": \"33b5d1d2835828b74eb133d7f5db6917ef5fbd5f\", \"live\": true, \"id\": \"x2a1d87be69578444\"}", "{\"sha\": \"974b546c6703edb42421f0b07dc1f91f67e3e77d\", \"live\": true, \"id\": \"xb4abefb0d21bac6e\"}", "{\"sha\": \"a70e1036a5579a8637bf7b40967d13a5a1206996\", \"live\": true, \"id\": \"x4800ad4deee2e59a\"}", "{\"sha\": \"ad92669e92770926eb17f47db309d1078b8c1da3\", \"live\": true, \"id\": \"x7d709e86a49f1d1c\"}", "{\"sha\": \"f8a3bd45e73cd7c3a48adac9c02d5b6758f5ef59\", \"live\": true, \"id\": \"xf51b0c3800be2526\"}"], "description": "Practice identifying circles, triangles, squares, and rectangles.", "basepoints": 10.0, "slug": "naming-shapes", "kind": "Exercise", "name": "naming-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "naming-shapes"}, "verifying-solutions-to-systems-of-equations": {"uses_assessment_items": true, "path": "khan/math/algebra/systems-of-eq-and-ineq/introduction_to_systems_of_linear_equations/verifying-solutions-to-systems-of-equations/", "id": "verifying-solutions-to-systems-of-equations", "display_name": "Checking solutions to systems of equations", "title": "Checking solutions to systems of equations", "all_assessment_items": ["{\"sha\": \"b6a1144175295d38fd728c74b2846f688106543c\", \"live\": true, \"id\": \"xfd3831ed4e5d2b1c\"}", "{\"sha\": \"4f498f523b542d108ead39802267d5d99d02222d\", \"live\": true, \"id\": \"x1db0826321652d9b\"}", "{\"sha\": \"7f9cfc4bb44eee1bf4f58b6e472b1a4f48b9aefc\", \"live\": true, \"id\": \"x0329344959ca6b78\"}", "{\"sha\": \"35a7e38e6577e078f33419a4e04728f28636542d\", \"live\": true, \"id\": \"x9b66d0b057016962\"}", "{\"sha\": \"c0ed1443cb379c503c73de097be78ae26dc9499a\", \"live\": true, \"id\": \"xe30d3dc0534bc30c\"}", "{\"sha\": \"f380421a375a412bbd1e902b09f23b7607a035db\", \"live\": true, \"id\": \"xeb31f52243b447a6\"}", "{\"sha\": \"b45ebf08c73337a8f22896d6cfe52e191a9cf4c4\", \"live\": true, \"id\": \"xbc4e961ed4e2782e\"}", "{\"sha\": \"d718ae402c4895ee050e92a466e1174b348c312e\", \"live\": true, \"id\": \"x6e7aeaaff85fa8eb\"}", "{\"sha\": \"0fa1f43de4c99b16cc4fc69e9798d160f0e4d92c\", \"live\": true, \"id\": \"x48765873ff498647\"}", "{\"sha\": \"c9088ae7bcb5998dc04fcecd612533eeaecd0b66\", \"live\": true, \"id\": \"x3644ae606195dd6e\"}", "{\"sha\": \"d6e60fd6796e89dd9572c48da9feac3444d38a41\", \"live\": true, \"id\": \"xf07631f0eec7bccf\"}", "{\"sha\": \"32e43424fe7f10913964952f62b4aa512f24600e\", \"live\": true, \"id\": \"x4dd0814c2bd3450b\"}", "{\"sha\": \"2a5691f59c2886376386a5e8d7dacf3c3726201f\", \"live\": true, \"id\": \"x752be6f1d3fe74ff\"}", "{\"sha\": \"0d3f903c880464cba4a72cf55d71cad78c2109cb\", \"live\": true, \"id\": \"xe5822ca1030ed6f4\"}", "{\"sha\": \"992f55f4485920f139375cd8ba4bb6c9096b89ba\", \"live\": true, \"id\": \"x32416d81dbd1b108\"}", "{\"sha\": \"2e71cbb464e3590be2d3646843d63c40e20ca82b\", \"live\": true, \"id\": \"x0b3b3989bbcb09fc\"}", "{\"sha\": \"8bd0ce246a7269bf93f09005e3e27182ca7b818f\", \"live\": true, \"id\": \"x13451b9da485893e\"}", "{\"sha\": \"486144d18f49b50b5a563eec30524b84d15c7f18\", \"live\": true, \"id\": \"x15edf6af2a3b0962\"}", "{\"sha\": \"35362eeb001ec77358014053138d8f7ef0f7f560\", \"live\": true, \"id\": \"x08e06e3c0a1c7994\"}", "{\"sha\": \"e0465688235582d88dd85efbf5b21ae5a17e6e54\", \"live\": true, \"id\": \"x3cefb321851b07a6\"}", "{\"sha\": \"73d4d2722e76abd603ada9ed569fdc0014b04eb3\", \"live\": true, \"id\": \"x4c4c26224d3fa624\"}", "{\"sha\": \"ceb0a3a2e67ea5e165f0d385d22f6cc8ae2f4049\", \"live\": true, \"id\": \"xb516c3e0348854cb\"}", "{\"sha\": \"54014ae0520a8454e5377c35cc1f02b5647e68e3\", \"live\": true, \"id\": \"x9e0c295e90e3fdb2\"}", "{\"sha\": \"3867b3751afb8b77530d93478495429a83ef829a\", \"live\": true, \"id\": \"x9b4df6c754af9d20\"}", "{\"sha\": \"56c0123e3a6ebb17526c432e5635032b060108ac\", \"live\": true, \"id\": \"x0289c25ad396c8c0\"}", "{\"sha\": \"a867dcc83cfa087f7d9727d6c518726322688773\", \"live\": true, \"id\": \"x29e4afc6b7a6e410\"}", "{\"sha\": \"05ad9a2d7d34b7e65d48829830ff85eb153deaa9\", \"live\": true, \"id\": \"xf1ca6821fb7f9a4a\"}", "{\"sha\": \"feeaf64940d062f6a216d345be807ab5727c58b8\", \"live\": true, \"id\": \"x0aba190d974cb8e0\"}", "{\"sha\": \"06d0ff1b49acc16a3a3bb2c53317c17864e6aad3\", \"live\": true, \"id\": \"xb345317f673e2f82\"}", "{\"sha\": \"bd029d74f9b59a89faf10cad59574595485be44d\", \"live\": true, \"id\": \"xf67b73b45f341958\"}"], "description": "Verify whether a given pair of values is a solution to a system of equations.", "basepoints": 10.0, "slug": "verifying-solutions-to-systems-of-equations", "kind": "Exercise", "name": "verifying-solutions-to-systems-of-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["writing-the-equation-of-a-line-in-any-form"], "exercise_id": "verifying-solutions-to-systems-of-equations"}, "graphing-piecewise-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/graphing-piecewise-functions/", "id": "graphing-piecewise-functions", "display_name": "Graphs of piecewise nonlinear functions", "title": "Graphs of piecewise nonlinear functions", "all_assessment_items": ["{\"sha\": \"d874b782ea4fe2948fee84282c83991b793c388b\", \"live\": true, \"id\": \"x783a2300f4e6c983\"}", "{\"sha\": \"e11c04bfafa4e212bdd66f153bd4350f7f9204a5\", \"live\": true, \"id\": \"x38b59f982f1c9e2b\"}", "{\"sha\": \"b29d4710122b43da7f23d8ec1cb98947684032b9\", \"live\": true, \"id\": \"x9cf30a1baa2d88eb\"}", "{\"sha\": \"36f2fdf1351b626d0023d5734aa2c6301bdb72ed\", \"live\": true, \"id\": \"xb42ff805eae4ee25\"}", "{\"sha\": \"cd1ae724744be8d2e74df2e08e3098e27f96b9d9\", \"live\": true, \"id\": \"x4cd60cbab9358354\"}", "{\"sha\": \"3a188888a9b9be79bfd79e7f8085b8a2cc8d2839\", \"live\": true, \"id\": \"x7e33adf8af7a85e8\"}", "{\"sha\": \"5bc58499dad23ce8ee56cbeb72b130f14f2a5334\", \"live\": true, \"id\": \"x1d69a06782b8a6e5\"}", "{\"sha\": \"1025659c4adaac310965264709627586a8150bcd\", \"live\": true, \"id\": \"x8606572b8b9c4bd3\"}", "{\"sha\": \"4edcb1abde812e817b6f5123d573d9ff5a9820ac\", \"live\": true, \"id\": \"x7f1c6948da9821b5\"}", "{\"sha\": \"43abc09e82dbd0a51c769c4795654ea04bc8ff6e\", \"live\": true, \"id\": \"x0b4eccae950976dc\"}", "{\"sha\": \"beff19478609590c4e98e542870373e40c67e3f7\", \"live\": true, \"id\": \"x3c9c31ff00068f34\"}", "{\"sha\": \"b56f4f0ab2e66f2b6fcf2806e460021d6485267a\", \"live\": true, \"id\": \"x7224d0755e26a3a3\"}", "{\"sha\": \"b3d60c7b9c8f07c440424a1b1c7218f84badea82\", \"live\": true, \"id\": \"x05c65ccc3c075312\"}", "{\"sha\": \"6440ba1dd93953719d5e19fd9e5196c02e9c0403\", \"live\": true, \"id\": \"x1252331564247892\"}", "{\"sha\": \"65cb4f7990cd04cf8f3baaf8cad7ab03a2e0c07f\", \"live\": true, \"id\": \"x9bcda7f69e6bc67c\"}", "{\"sha\": \"1a316b9eca3cd550412b19ae71af50aa47635fc3\", \"live\": true, \"id\": \"xa9680295ea6ffe73\"}", "{\"sha\": \"1eb15f6069c966eab975274bb449bb8d075163c1\", \"live\": true, \"id\": \"x748237774d212f60\"}", "{\"sha\": \"9d8bc8add59e31e91e7c439a41b04fdb73a164d9\", \"live\": true, \"id\": \"x5df94c62b9c4200b\"}", "{\"sha\": \"7633eca55e8563b9519c8843c81a938fb94f9f6a\", \"live\": true, \"id\": \"x807b3bee9fb55157\"}", "{\"sha\": \"94d99d2b5b86d5e9ea56ee3c64ac7879850dc966\", \"live\": true, \"id\": \"x0edfae4f22be3ea7\"}", "{\"sha\": \"20846c6ec8120db9c772ea8846b4610baed59526\", \"live\": true, \"id\": \"x50f53a4b5979beee\"}", "{\"sha\": \"46da62fb0689de9c6fb9e32e675b1e69665e5504\", \"live\": true, \"id\": \"x275777e136028218\"}", "{\"sha\": \"5176e8da04e133727366f4375e406ae06340a2f0\", \"live\": true, \"id\": \"x6c01e2148ed3b0f6\"}", "{\"sha\": \"329beedfbd653e47fce9911443330c6ba1de7789\", \"live\": true, \"id\": \"x2cb8935cc189f090\"}", "{\"sha\": \"a547ea52843ee8fdd632c472f0b19de713bf6860\", \"live\": true, \"id\": \"x5a8fe04366a6cd08\"}"], "description": "", "basepoints": 29.0, "slug": "graphing-piecewise-functions", "kind": "Exercise", "name": "graphing-piecewise-functions", "seconds_per_fast_problem": 60.0, "prerequisites": ["graphs-of-polynomials", "graphs-of-radical-functions", "graphs-of-absolute-value-functions"], "exercise_id": "graphing-piecewise-functions"}, "modeling-with-periodic-functions": {"uses_assessment_items": true, "path": "khan/math/trigonometry/trig-function-graphs/modeling-periodic-functions/modeling-with-periodic-functions/", "id": "modeling-with-periodic-functions", "display_name": "Modeling with periodic functions", "title": "Modeling with periodic functions", "all_assessment_items": ["{\"sha\": \"b6883a3b86b308462d9ad8233f3422e3ab650cfa\", \"live\": true, \"id\": \"xc2dfbf40405eb086\", \"perseus_api_major_version\": null}", "{\"sha\": \"b902a1883002c7d1e8898d4f95b6291d372b169e\", \"live\": true, \"id\": \"xe4a52622910cd69c\", \"perseus_api_major_version\": null}", "{\"sha\": \"a1f39598b76084f2559fd85c30ca31aae3b053c3\", \"live\": true, \"id\": \"xf74a786de2ce8c6b\", \"perseus_api_major_version\": null}", "{\"sha\": \"2099f874e728f8d2abd19d5e6527a8d88b7e1d89\", \"live\": true, \"id\": \"xf7d0f8e6e9a82a05\", \"perseus_api_major_version\": null}", "{\"sha\": \"5833d8a319d7cfee2741c21e5fc1cb305964d79d\", \"live\": true, \"id\": \"x24c47dab1aeebae8\", \"perseus_api_major_version\": null}", "{\"sha\": \"7b69a0f19e2e802d7252c7fcf105556046ca9c3c\", \"live\": true, \"id\": \"xc1eb883eee5201ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"924f68e3564e840ab332919db201957ea857c02a\", \"live\": true, \"id\": \"x0ca6487b4735e2be\", \"perseus_api_major_version\": null}", "{\"sha\": \"ff4c5cda9fa65e12a0ddcacea68281fd6dd4e56d\", \"live\": true, \"id\": \"xebbae6091b453fa7\", \"perseus_api_major_version\": null}", "{\"sha\": \"dd1799d4214d00c0605d0d48b07e729159d61a37\", \"live\": true, \"id\": \"x145c80a1c450ebf0\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5e8ff8fcea1e617f637a086f8aae62d62195049\", \"live\": true, \"id\": \"xb382be5d1fb692ed\", \"perseus_api_major_version\": null}", "{\"sha\": \"913dbff375a2faa8b4dc8c3df07174bc94c922f5\", \"live\": true, \"id\": \"xffd933dc07eba679\", \"perseus_api_major_version\": null}", "{\"sha\": \"d31a3eb6e91dfe1622345bb5db08453f9bd7d883\", \"live\": true, \"id\": \"xe48a8fc8ea3b1b62\", \"perseus_api_major_version\": null}", "{\"sha\": \"d18d17ff95f046a74394902d3be12678fdec1790\", \"live\": true, \"id\": \"x8a540107ab0a7baf\", \"perseus_api_major_version\": 2}", "{\"sha\": \"e9acf89799f88e5e147beff152454f5795a13dfc\", \"live\": true, \"id\": \"x0bdeea8f78d980d0\", \"perseus_api_major_version\": null}", "{\"sha\": \"be3061343b130e641c43aa7ae5d9112ca70ec350\", \"live\": true, \"id\": \"x53f3763a5dcda0eb\", \"perseus_api_major_version\": null}", "{\"sha\": \"16d1fcc5f2e104c98204d46a424df035b101a1f8\", \"live\": true, \"id\": \"x3ad416710949d072\", \"perseus_api_major_version\": null}", "{\"sha\": \"8000890103ef7e25ae0c887b95ec8021fc4a229d\", \"live\": true, \"id\": \"x9ae96dac8ff7fb59\", \"perseus_api_major_version\": null}", "{\"sha\": \"5e2b9295311a43410e8bcbc49e170b65b8d0e505\", \"live\": true, \"id\": \"xf380e53d21c6783d\", \"perseus_api_major_version\": null}", "{\"sha\": \"4e8ed9c81bc5a62fd8cca74284628d37dc2e8b6f\", \"live\": true, \"id\": \"xd830446c6268cf46\", \"perseus_api_major_version\": null}", "{\"sha\": \"d30addf309cfc9aa8b4199a1e7b794382f5136f9\", \"live\": true, \"id\": \"xd32933c36a8aa8c0\", \"perseus_api_major_version\": null}", "{\"sha\": \"d52e24206f167c68ce75518ff0a226795c97ec2b\", \"live\": true, \"id\": \"xbe4d3d31e73ff813\", \"perseus_api_major_version\": null}", "{\"sha\": \"6d7e716bf73c950a60add3d5541d60951c19e1e0\", \"live\": true, \"id\": \"x6dec408ba856a820\", \"perseus_api_major_version\": null}", "{\"sha\": \"77b8df5718d0a30dfccaf2512ac35475a5c63846\", \"live\": true, \"id\": \"x67f0b9c69ab682a1\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a145b9ced1faa81aecb89d3bdf864ebf103fb81\", \"live\": true, \"id\": \"xdec83a587eae5b6d\", \"perseus_api_major_version\": null}", "{\"sha\": \"f479503a24839a709a6481879a3c7b749afa8d5d\", \"live\": true, \"id\": \"x37b2959e704cb42e\", \"perseus_api_major_version\": null}", "{\"sha\": \"ff62b5c38ecf2b44ddac348bf1467cd06e42f69b\", \"live\": true, \"id\": \"xc2f75b9990351bbb\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "modeling-with-periodic-functions", "kind": "Exercise", "name": "modeling-with-periodic-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["amplitude-of-trig-functions", "period-of-trig-functions", "midline-of-trig-functions"], "exercise_id": "modeling-with-periodic-functions"}, "leukemia-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/leukemia-quiz-2/", "id": "leukemia-quiz-2", "display_name": "NCLEX-RN questions on leukemia 2", "title": "NCLEX-RN questions on leukemia 2", "all_assessment_items": ["{\"sha\": \"412e145bfe21792dce9c7f9b903dbff1089b2142\", \"live\": true, \"id\": \"x56f301c19ca9c2eb\"}", "{\"sha\": \"f23af8fb738b414f80876fb781c5f6f4c93e68ff\", \"live\": true, \"id\": \"x8886c7c1ab27af53\"}", "{\"sha\": \"42416ebd5b95bf876c3934cc811ab708182b100a\", \"live\": true, \"id\": \"x4088c0ca9fa36e81\"}", "{\"sha\": \"b33236f64310e16dfc0298226220ef2072b062b6\", \"live\": true, \"id\": \"xb43f2f59acb0111e\"}", "{\"sha\": \"dea9d5afbb2e9690c44e8361268f838fc4370e61\", \"live\": true, \"id\": \"x01e31e2c72ed8f96\"}"], "description": "Another leukemia quiz.", "basepoints": 10.0, "slug": "leukemia-quiz-2", "kind": "Exercise", "name": "leukemia-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "leukemia-quiz-2"}, "advanced-structure-in-expressions": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/advanced-structure-in-expression/advanced-structure-in-expressions/", "id": "advanced-structure-in-expressions", "display_name": "Advanced structure in expressions", "title": "Advanced structure in expressions", "all_assessment_items": ["{\"sha\": \"f62c6db6ba229aef31f5ef1cccd45db3f23e1267\", \"live\": true, \"id\": \"xbb7505e8\"}", "{\"sha\": \"ff29ea1f17db202a99f2711eb5e4867aa687af6f\", \"live\": true, \"id\": \"xb2d8fa45\"}", "{\"sha\": \"5a40ade396591a6a28961975e84152b274de1b6a\", \"live\": true, \"id\": \"xd164d527\"}", "{\"sha\": \"7e2bce9cc66e5fcd15f446b9113f049adeb13fff\", \"live\": true, \"id\": \"x53c02b69\"}", "{\"sha\": \"a0bba2bea751e85d5c3a3734f896829e6bb82a1f\", \"live\": true, \"id\": \"x13459731\"}", "{\"sha\": \"0ffd8592782805ae431df5b23a5af4713da8014f\", \"live\": true, \"id\": \"x22f478c9\"}", "{\"sha\": \"b6cac1e3616875547dbc65e695a79c04bed84dbf\", \"live\": true, \"id\": \"xe93a5aa2\"}", "{\"sha\": \"b5c2f41b396830f7df3ea7558a42a9e7eee28e13\", \"live\": true, \"id\": \"x2e72d673\"}", "{\"sha\": \"c3f90dd566b95583796d2e48e0bef9cb411ca2fc\", \"live\": true, \"id\": \"x9d2b5e12\"}", "{\"sha\": \"613214ad89d5952d6661e35d9b18dc6dbc3657bf\", \"live\": true, \"id\": \"x6442fd4e\"}", "{\"sha\": \"dbd930ee89b4ad6afacf6d83cb6e92a678ee4f58\", \"live\": true, \"id\": \"xf5618f08\"}", "{\"sha\": \"ab0b18d91205f991650fb2f0534c59e11d351d17\", \"live\": true, \"id\": \"x2080c0f7\"}", "{\"sha\": \"2f6f48eb47e9c0c228dada852393689ccdc325b8\", \"live\": true, \"id\": \"x4a7625d7\"}", "{\"sha\": \"7f6b9ae774335225862954d5df9a50691d927896\", \"live\": true, \"id\": \"x6b8fe208\"}", "{\"sha\": \"a1a5b01296eccb92558a92ee68099d9aaf76b02c\", \"live\": true, \"id\": \"xb5c83ed0\"}", "{\"sha\": \"91ecde06f18fedbc74d460c34a848833e6ba905f\", \"live\": true, \"id\": \"x16858cc9\"}", "{\"sha\": \"5e71e58ed7e33d5f45f140c9dc11740689383486\", \"live\": true, \"id\": \"x3223a6f6\"}"], "description": "", "basepoints": 10.0, "slug": "advanced-structure-in-expressions", "kind": "Exercise", "name": "advanced-structure-in-expressions", "seconds_per_fast_problem": 4.0, "prerequisites": ["factoring_difference_of_squares_3", "simplifying_rational_expressions_4"], "exercise_id": "advanced-structure-in-expressions"}, "constructing-consistent-and-inconsistent-system": {"uses_assessment_items": true, "path": "khan/math/algebra/systems-of-eq-and-ineq/analyzing_the_solutions_to_systems_of_equations/constructing-consistent-and-inconsistent-system/", "id": "constructing-consistent-and-inconsistent-system", "display_name": "Analyzing solutions to linear systems algebraically", "title": "Analyzing solutions to linear systems algebraically", "all_assessment_items": ["{\"sha\": \"7bdbb78a9df402f92080ca1050eedf9a4f9b92a7\", \"live\": true, \"id\": \"x17d1a35e66a06abc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d052a14b03c889fc6ff271b57efb408745a6cc51\", \"live\": true, \"id\": \"x3ea135a961b5b0a2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9970a7971f130eef5894ba2f62b155c19b1e7e21\", \"live\": true, \"id\": \"x1a7e180c6fe6b821\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d7b238db0372af7670cf489ac1b94dad980f0f7\", \"live\": true, \"id\": \"x87a8fd2a9ccd2721\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48b64757323bf24a06382d318912870b4f1713cc\", \"live\": true, \"id\": \"xab6b0759093921ef\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0c8a7a934618f26960b47c9b43233311b4932e3e\", \"live\": true, \"id\": \"x5c3f2e412048b6f4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"afd699c7ca1f52597edc9d45490db70e943ee533\", \"live\": true, \"id\": \"xabfb5ecf4a154b19\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea95fbd0120b772e2c0403d13881d32bda797dd0\", \"live\": true, \"id\": \"xb8d5e4281c0630d4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8fd38d8e25ba9801446626cedb52463b0fce6cdf\", \"live\": true, \"id\": \"xda3d6884ffad8ae8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d0be93d3132aba48190a7f1d3ff04b8ee1955ea5\", \"live\": true, \"id\": \"xc5772997f4165866\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"681f7d309018596a6db3156bd6242c4f0b7b791d\", \"live\": true, \"id\": \"xabc7f9505e264e9f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"219cc8a52d99a4d867faffcae5d91e42cb23f671\", \"live\": true, \"id\": \"x6d66ff26ac8cdbd2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"952784730166cffd4cb8185e0708d65b66769349\", \"live\": true, \"id\": \"xccfa8af086c3ecf0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"14163e6992d03f38db944dfed3d54e4cd923e8c1\", \"live\": true, \"id\": \"x814b5849331468df\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c594c3513e551c88e8d624630f25f1132fbad7a5\", \"live\": true, \"id\": \"x00962e17d15a09b0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de6d01ae838275f088093c3619e7caf081525361\", \"live\": true, \"id\": \"xc72b46fdfcca0f48\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9c0268214c1a256ff57e16c826288bbf31b5c474\", \"live\": true, \"id\": \"xd744c9d773543412\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"194d24c4f571e60a27f6fa2a0d78f8c9115f2143\", \"live\": true, \"id\": \"x1dec0b3167ca5b14\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"689f439720e07881fa95079f4a5149efd3c9604a\", \"live\": true, \"id\": \"xbaec6515207e521b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0d10debe5734c24fb891030d56478ad91b9813ca\", \"live\": true, \"id\": \"xe552e7be0d5c5596\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"22906bcfc37518657b6214b8f1f8a4e878b7ed06\", \"live\": true, \"id\": \"xaec5bbf4ad64ac3a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d6cc84d0bd6a81f720f074ff426031ee4059da1\", \"live\": true, \"id\": \"x2afb1473c1f33e7d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e30c27225be29d913703d074fa72d023e77a226\", \"live\": true, \"id\": \"xce66d94c6e0ef46b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2814913b4de7dcbff4dc19e4c07ea08a2eddf7e9\", \"live\": true, \"id\": \"x763bc40953157014\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11246fc3531f9ae9fff8578fc444019a1a1df45a\", \"live\": true, \"id\": \"x1b01ecebda3360fd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"274c1e23d9a8eb6cb69d0fe7e6ae345f2e9b427d\", \"live\": true, \"id\": \"xf1d75664cc4f3a3f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f4c12c11423526bde619c39bd098c5e57b912c2\", \"live\": true, \"id\": \"x9fd2fca8dfe602c3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e6d8f304c552177cbe6aa0d0d6164f1edd0c1e7\", \"live\": true, \"id\": \"x06a98aecff9c088d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87ff471ee6dbf7f0fbbc50b78575cd54e2890d78\", \"live\": true, \"id\": \"x16347e995bd51c50\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d357fec0dbc6d0cb448391532747b622d8a99d53\", \"live\": true, \"id\": \"x373d7d71909acff7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 19.0, "slug": "constructing-consistent-and-inconsistent-system", "kind": "Exercise", "name": "constructing-consistent-and-inconsistent-system", "seconds_per_fast_problem": 14.0, "prerequisites": ["graphical-solutions-to-systems", "systems_of_equations_with_elimination", "systems_of_equations_with_substitution"], "exercise_id": "constructing-consistent-and-inconsistent-system"}, "demographic-disparities-in-food-resources": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/demographic-disparities-in-food-resources/", "id": "demographic-disparities-in-food-resources", "display_name": "Demographic disparities in food resources", "title": "Demographic disparities in food resources", "all_assessment_items": ["{\"sha\": \"ffc1a7b2cea4a4f972abc8361056d6a9ca3cc0bc\", \"live\": true, \"id\": \"xd5bade8f32292218\"}", "{\"sha\": \"d224fd28cb61bad522495b174667942b97fe91d1\", \"live\": true, \"id\": \"x93e3e7276a72b67a\"}", "{\"sha\": \"ea025f365364484d3520615e14a0dd7713c99ab8\", \"live\": true, \"id\": \"x541c300329c6fb6d\"}", "{\"sha\": \"bd38c5a0ecc17406b1f50db2f4691dbad973924e\", \"live\": true, \"id\": \"x978282495df5bd0d\"}", "{\"sha\": \"a6f732eaaf6bd27b1da76e5f1821ef12f1c26114\", \"live\": true, \"id\": \"x54428d582718465d\"}"], "description": "Demographic disparities in food resources", "basepoints": 10.0, "slug": "demographic-disparities-in-food-resources", "kind": "Exercise", "name": "demographic-disparities-in-food-resources", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "demographic-disparities-in-food-resources"}, "brunelleschi-s-dome-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/brunelleschi-s-dome-quiz/", "id": "brunelleschi-s-dome-quiz", "display_name": "Brunelleschi, Dome (quiz)", "title": "Brunelleschi, Dome (quiz)", "all_assessment_items": ["{\"sha\": \"d7e17d45e0678f00c81866b379f59ea33c731f9f\", \"live\": true, \"id\": \"xffcd4117473415f4\"}", "{\"sha\": \"6c2373602390b9f3d72a7f55046010a38fc6f5c5\", \"live\": true, \"id\": \"x9449732dbffdc814\"}", "{\"sha\": \"f8dd6a00740f32a9d80ad3786103b7d8faeb8663\", \"live\": true, \"id\": \"xa171b8b5f4caed24\"}", "{\"sha\": \"fc5e160398a715f97bc74a4cdb168fd51f312e7f\", \"live\": true, \"id\": \"xfc750825a73ed335\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "brunelleschi-s-dome-quiz", "kind": "Exercise", "name": "brunelleschi-s-dome-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "brunelleschi-s-dome-quiz"}, "multistep-equations-without-variables": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/multistep-word-problems-tut/multistep-equations-without-variables/", "id": "multistep-equations-without-variables", "display_name": "Multi-step rational number word problems", "title": "Multi-step rational number word problems", "all_assessment_items": ["{\"sha\": \"7fab2ba9acf2072c708e4c0418f303a5973481d6\", \"live\": true, \"id\": \"x0778dfbd\"}", "{\"sha\": \"3f484979bbb8fc5768eb3e48000846d4abbddf12\", \"live\": true, \"id\": \"xba520d5c\"}", "{\"sha\": \"bb5322b30ea63a4dbe08bfc3c197a14dc499afaf\", \"live\": true, \"id\": \"x70850272\"}", "{\"sha\": \"a66f2555db6bb670c0193334434770e346427faa\", \"live\": true, \"id\": \"x0732acd5\"}", "{\"sha\": \"f75b220235216cb768af5c692fbde37220740dea\", \"live\": true, \"id\": \"x27260045\"}", "{\"sha\": \"d99cd8d87ad24728aafcf17478e1d3a84010f1af\", \"live\": true, \"id\": \"x9c33d4e8\"}", "{\"sha\": \"ee8dee623816021e8f00062414cfd5abde60b2c5\", \"live\": true, \"id\": \"xd1c5fb07\"}", "{\"sha\": \"17481714f9abb2ed50e60c87af700297fda1bfa0\", \"live\": true, \"id\": \"xf4ed05e4\"}", "{\"sha\": \"c22dc1b35f882e700c61510965d8d08d4a40d42a\", \"live\": true, \"id\": \"xb84800e9\"}", "{\"sha\": \"44e48d565d16633a71b1fdc0dab5ebb577e61b49\", \"live\": true, \"id\": \"x6d301432\"}", "{\"sha\": \"057e34c2394ec3ad6c9403dfb8174cd5e319c30c\", \"live\": true, \"id\": \"x25455832\"}", "{\"sha\": \"90b5f70ee11ab24a8637e5ca4d2c0f8ddffe430a\", \"live\": true, \"id\": \"x8d932329\"}", "{\"sha\": \"7c5c72391be2b586829651158b1334ffd2102b9d\", \"live\": true, \"id\": \"xf9b69a6a\"}", "{\"sha\": \"bcd859499f9c9fb3b718dca4d980371d4f5b0b35\", \"live\": true, \"id\": \"x683d98e7\"}", "{\"sha\": \"c32cf801e15416f19fe8e7f7ccd0f3f6d075ab86\", \"live\": true, \"id\": \"xd34ebec9\"}", "{\"sha\": \"993ed3ff4d5d291be6cf66141770b02bb98c0ac2\", \"live\": true, \"id\": \"x32f0ff6b\"}", "{\"sha\": \"0a590edac754b6d9895c3ce5303b2412f22f79b4\", \"live\": true, \"id\": \"x5149775b\"}", "{\"sha\": \"ebc8dc5076c890c1989cba82358ff7479232fdad\", \"live\": true, \"id\": \"x607bf239\"}", "{\"sha\": \"d4164d2978a4969a59e32f155e9a35e8691f8b22\", \"live\": true, \"id\": \"x08110248\"}", "{\"sha\": \"821636aa4dec2bb81afd3705500f3852a9f0dc8c\", \"live\": true, \"id\": \"xba9feb6c\"}", "{\"sha\": \"4014e8ec110d20f8ffe84561d73527f9dd44b4b5\", \"live\": true, \"id\": \"x5b6605ba\"}", "{\"sha\": \"0aacf9946cc678b021ca6c53a7cb7a95b45dab71\", \"live\": true, \"id\": \"xbe07de82\"}", "{\"sha\": \"0a4dbef2debdfc09f72e405c490c3164381942a4\", \"live\": true, \"id\": \"xd0317a0c\"}", "{\"sha\": \"4ccb4db008fd4717c6058977bb92d2d0ead6b00f\", \"live\": true, \"id\": \"xd2b2f705\"}"], "description": "", "basepoints": 10.0, "slug": "multistep-equations-without-variables", "kind": "Exercise", "name": "multistep-equations-without-variables", "seconds_per_fast_problem": 4.0, "prerequisites": ["dividing_fractions_2"], "exercise_id": "multistep-equations-without-variables"}, "sn-passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/sn-passage-1/", "id": "sn-passage-1", "display_name": "Hyper-IgM syndrome", "title": "Hyper-IgM syndrome", "all_assessment_items": ["{\"sha\": \"18cbdb183ded471a835b21282e04d0a5eeddd965\", \"live\": true, \"id\": \"xce513fcdad6e6059\"}", "{\"sha\": \"7aed37b4a3d77b1fea8931f694f1d1c22e84ce1b\", \"live\": true, \"id\": \"x9a6f5af60a3c62bf\"}", "{\"sha\": \"9cc254dd463afd45ae80668641980364e29f3cba\", \"live\": true, \"id\": \"xad570797126ad46d\"}", "{\"sha\": \"da55f94b69f7016d008482e7192d0a0db7487543\", \"live\": true, \"id\": \"xa7f08c2de8b70a7b\"}", "{\"sha\": \"5ab006d792a66571eacd4e801f393e83224831b5\", \"live\": true, \"id\": \"xd495d08ae36e0b7b\"}"], "description": "", "basepoints": 10.0, "slug": "sn-passage-1", "kind": "Exercise", "name": "sn-passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sn-passage-1"}, "emphysema-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/emphysema-quiz-2/", "id": "emphysema-quiz-2", "display_name": "NCLEX-RN questions on emphysema 2", "title": "NCLEX-RN questions on emphysema 2", "all_assessment_items": ["{\"sha\": \"7e28c053e5d0d52f434a9093ff8d42a2db58d5be\", \"live\": true, \"id\": \"xc5bb20b336bd2d83\"}", "{\"sha\": \"9dc23a0740f904f3d26c50c2e43a29475bf66737\", \"live\": true, \"id\": \"xe37b9e8e12c4380e\"}", "{\"sha\": \"2d60972eb04f09a5c3af2d013e09308a2580d602\", \"live\": true, \"id\": \"xdf11f60b3d1e756b\"}", "{\"sha\": \"2718f7ea3d833475d7cac061b6e2cd28d5eb9e8d\", \"live\": true, \"id\": \"xc39301861ec969db\"}", "{\"sha\": \"bfee6fb2e557ea16b6231ec0b0529462cdc5c06d\", \"live\": true, \"id\": \"x4b7b92e0c0a321c4\"}", "{\"sha\": \"0e88c881ea9a8771a4f0858b3dc5ce6cad68bf9b\", \"live\": true, \"id\": \"x6963f2341a76f956\"}", "{\"sha\": \"b503ff814975a9fa00716b551d196af1ea533a24\", \"live\": true, \"id\": \"xaa09b190ae9a154c\"}", "{\"sha\": \"932dbedae0defca31cb93993cb064493ca1b3c89\", \"live\": true, \"id\": \"xc95c170beac11696\"}", "{\"sha\": \"1e473dbdb36088d62e5d27b74d2914d148519a2d\", \"live\": true, \"id\": \"x2095c77775967297\"}", "{\"sha\": \"d5f1e7a858002e33ec02ae6ba8913fcb52aefda9\", \"live\": true, \"id\": \"xea4ceaf4cdb4f48d\"}", "{\"sha\": \"7b0243d2a060a6d3951f08d54fcd90287cbc809e\", \"live\": true, \"id\": \"x5e82c6ee269d756a\"}"], "description": "Another emphysema quiz", "basepoints": 10.0, "slug": "emphysema-quiz-2", "kind": "Exercise", "name": "emphysema-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "emphysema-quiz-2"}, "quiz--collective-learning": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/early-humans/collective-learning/quiz-collective-learning/", "id": "quiz--collective-learning", "display_name": "Quiz: Collective Learning", "title": "Quiz: Collective Learning", "all_assessment_items": ["{\"sha\": \"bc3d3807a8a92a5cde8c51c348726a207d028cb0\", \"live\": true, \"id\": \"xd7903f463dbc9db3\"}", "{\"sha\": \"39662b236145c617332a7d6ee7f12ccf4893b043\", \"live\": true, \"id\": \"x82d5f3973e8d6332\"}", "{\"sha\": \"ddd3f418c3c573d8cad8a26a506082cb3b9f2750\", \"live\": true, \"id\": \"x234a90f1c158fdc8\"}", "{\"sha\": \"0b79e07825711a069deb2c02e3a7e34fbdc85a1c\", \"live\": true, \"id\": \"x3173b9da68a1aa49\"}", "{\"sha\": \"12e289aa8a894225ad15b15ab09c531b4413a4eb\", \"live\": true, \"id\": \"xd0925970ef919088\"}"], "description": "Quiz 6.2", "basepoints": 10.0, "slug": "quiz-collective-learning", "kind": "Exercise", "name": "quiz--collective-learning", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--collective-learning"}, "finding-taylor-series": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/taylor-series/finding-taylor-series/", "id": "finding-taylor-series", "display_name": "Finding taylor series", "title": "Finding taylor series", "all_assessment_items": ["{\"sha\": \"bbc5ab1feb793eb96bfb73205f3e92b2aec9cc6b\", \"live\": true, \"id\": \"xbf02dae0076acd51\"}", "{\"sha\": \"cb45d8e54c3c52bac67fc5ec0e72539e1c691e08\", \"live\": true, \"id\": \"x4b922772ac7e3dd7\"}", "{\"sha\": \"b063833c94a49aa90d43fcf02bf81eb05161c34f\", \"live\": true, \"id\": \"x4b01a5af8479df27\"}", "{\"sha\": \"4f816e3a458aa4523fee62cc17b570298547413f\", \"live\": true, \"id\": \"xbd61fa77eb5da2a3\"}", "{\"sha\": \"8c5b9d5670768930bd976bd1459a2a499db2348e\", \"live\": true, \"id\": \"x5a2438afacc4fa89\"}", "{\"sha\": \"04671e11f5aee45f1ad427e009fb11b0eee0d449\", \"live\": true, \"id\": \"x89b2fa0fdf579032\"}", "{\"sha\": \"a65c54ba00777a907666f5da8db7c60ffdf8a549\", \"live\": true, \"id\": \"x4650a74e1cf0949b\"}", "{\"sha\": \"04b227fffb9d66f4c644ca7de59de29e72788986\", \"live\": true, \"id\": \"xacadda367939305d\"}", "{\"sha\": \"df6b080795c8779768e24a829b108a510d8fd671\", \"live\": true, \"id\": \"x58945cdbd2320b7e\"}", "{\"sha\": \"643f72d7fb17ee1d64c3fd53309703b90c5adff6\", \"live\": true, \"id\": \"xe002bca20aff6437\"}", "{\"sha\": \"2225e29b315a2af603b3e64f20cc06de4b448271\", \"live\": true, \"id\": \"x960491c93784ca0e\"}", "{\"sha\": \"94d7e3a41173e9b44563f62bc9c5d42045cf0666\", \"live\": true, \"id\": \"x6e32b567f9a22bd3\"}", "{\"sha\": \"63b8ec3eccfcf39bad672e255de63d3dcd85db64\", \"live\": true, \"id\": \"xfcdf6a1fcd133c8b\"}", "{\"sha\": \"a9ad776a02dad00f80054fa113cd1eb4c9de2bfa\", \"live\": true, \"id\": \"x0ce16b2e91e0ec6a\"}", "{\"sha\": \"eb0e59b07637169108db46a86fda2d1eb9ed31ec\", \"live\": true, \"id\": \"xc893cebd675d6efe\"}", "{\"sha\": \"850433e49eae22e437f3962f392199bd02aa9f0b\", \"live\": true, \"id\": \"x2477b1b4e72c611b\"}", "{\"sha\": \"2eb5e56e467099195799587baba94bbacf9cd68e\", \"live\": true, \"id\": \"xc46204754acd1f01\"}", "{\"sha\": \"3fb44190c3da6ffb76fd0d88add902a0c39fac06\", \"live\": true, \"id\": \"xd8f1943523ada732\"}", "{\"sha\": \"e7e569aca5076c8ebb65f5e4cf15aac5b6f75cb9\", \"live\": true, \"id\": \"x58839ce3a0695fdb\"}", "{\"sha\": \"d093102161f84bb5365d2f3e2c003233ec335005\", \"live\": true, \"id\": \"x32a9ce9eb939e450\"}", "{\"sha\": \"2b3eb7c53feeb2f9c7a41bc055a729da48bff36b\", \"live\": true, \"id\": \"x31e75b652e06d917\"}", "{\"sha\": \"88c652324a624467c36b624c166ec0face2ae4c1\", \"live\": true, \"id\": \"x380653e8fbfe2891\"}", "{\"sha\": \"a2e4c184f0366c49bc3476aa743ff658b04d73d4\", \"live\": true, \"id\": \"x6b46028c01189202\"}", "{\"sha\": \"3d94741fd4d2c4fb6696a20a4b032c97b7899833\", \"live\": true, \"id\": \"x15de71fd2a822bf8\"}"], "description": "Finding taylor series using the definition", "basepoints": 10.0, "slug": "finding-taylor-series", "kind": "Exercise", "name": "finding-taylor-series", "seconds_per_fast_problem": 4.0, "prerequisites": ["maclaurin-series-for-sin-x--cos-x--and-e-x"], "exercise_id": "finding-taylor-series"}, "malthusian-population-growth-and-population-pyramids": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/malthusian-population-growth-and-population-pyramids/", "id": "malthusian-population-growth-and-population-pyramids", "display_name": "Malthusian population growth and population pyramids", "title": "Malthusian population growth and population pyramids", "all_assessment_items": ["{\"sha\": \"5c5630514ef94bec088fcc45632a8d2dcb3028fb\", \"live\": true, \"id\": \"x86cdc570a64e24cd\"}", "{\"sha\": \"f3ef7630ada1ef2e23fd314b309970d6d5465747\", \"live\": true, \"id\": \"x30b7adb8b10f52a0\"}", "{\"sha\": \"92c70ba914dd589082ebd79af2d2d157d59138af\", \"live\": true, \"id\": \"x8c2ba6bb97559a9d\"}", "{\"sha\": \"0825e180919c1cc0a914fcf1156b3455f3465473\", \"live\": true, \"id\": \"x014bef4fbae2e69c\"}", "{\"sha\": \"d75aec1bf4d359c539b4874560532d94da15e3ab\", \"live\": true, \"id\": \"x0758daed79bceb30\"}"], "description": "Questions related to population growth", "basepoints": 10.0, "slug": "malthusian-population-growth-and-population-pyramids", "kind": "Exercise", "name": "malthusian-population-growth-and-population-pyramids", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "malthusian-population-growth-and-population-pyramids"}, "interpret-features-func-2": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/comparing-interpreting-functions/interpret-features-func-2/", "id": "interpret-features-func-2", "display_name": "Interpreting graphs word problems", "title": "Interpreting graphs word problems", "all_assessment_items": ["{\"sha\": \"c80a4e9e872c749d5ce56a6b1221f7f368a520f7\", \"live\": true, \"id\": \"x856f9bce7f511e29\"}", "{\"sha\": \"c90b06d1a03f8595c266f22d237a548931d4d903\", \"live\": true, \"id\": \"xc646ee738a9121d9\"}", "{\"sha\": \"e738e88b97e6f99302f5b3b93f4ea1a623e317f4\", \"live\": true, \"id\": \"x8f37b1539a7baf09\"}", "{\"sha\": \"d824a3c14f04dd3e5656e9590c4f7e4056144580\", \"live\": true, \"id\": \"x312a9d63b6a9e98e\"}", "{\"sha\": \"99a1d7f0482419bde164a89746b8e83b73b5442d\", \"live\": true, \"id\": \"x51a7f10ece755cc9\"}", "{\"sha\": \"c8252111ea1347a095de70ea67ac7d53fa603ea0\", \"live\": true, \"id\": \"xd83d67deff855063\"}", "{\"sha\": \"221bdf0e8a21a2c2e388bcf033a41303d9581a9a\", \"live\": true, \"id\": \"xec60c233730935a6\"}", "{\"sha\": \"18c8c78f893a36a1fef56b0c67d2e332999ec9a9\", \"live\": true, \"id\": \"xef4b2d11768d03c2\"}", "{\"sha\": \"ad7dcc208e2518ca52910de35c91106393a5609f\", \"live\": true, \"id\": \"x1900b2c5210fc704\"}", "{\"sha\": \"e0a7d2ca9b9bc184af7d9d61966e317b0b0a3c0a\", \"live\": true, \"id\": \"xcb25ea85975f6a2f\"}", "{\"sha\": \"5abe4e98a616f1b12061afc79e172acfaaebe25e\", \"live\": true, \"id\": \"x07fc527e1297176c\"}", "{\"sha\": \"27c6d43ff220e453ef5b36686e9b63a08c4383c7\", \"live\": true, \"id\": \"x22a7766a1c737145\"}", "{\"sha\": \"ccfad8ca95c69a8a34c6a3f2883a101d6472a115\", \"live\": true, \"id\": \"x66cdefbb4d1bea8f\"}", "{\"sha\": \"e0330e82db72a5c041d9df5568edccc212979407\", \"live\": true, \"id\": \"x8bb0ab3620171471\"}", "{\"sha\": \"efe66b0312547b06032cff6c2e475c931b78c7a3\", \"live\": true, \"id\": \"x65d932badc0a4469\"}", "{\"sha\": \"d26790ab1a29239d3b6851a4be1b6f007617a508\", \"live\": true, \"id\": \"xee65d90fa6647b2c\"}"], "description": "", "basepoints": 22.0, "slug": "interpret-features-func-2", "kind": "Exercise", "name": "interpret-features-func-2", "seconds_per_fast_problem": 23.0, "prerequisites": ["recognize-maxima-and-minima", "increasing-decreasing-intervals-of-functions", "interpreting-domain"], "exercise_id": "interpret-features-func-2"}, "adding_and_subtracting_fractions": {"uses_assessment_items": true, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-fractions/adding_and_subtracting_fractions/", "id": "adding_and_subtracting_fractions", "display_name": "Adding and subtracting negative fractions", "title": "Adding and subtracting negative fractions", "all_assessment_items": ["{\"sha\": \"89455fdbdbafcfc91c962a1e3f214ad8e8e1a3ed\", \"live\": true, \"id\": \"x95cbe3b8daf5c2de\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fd6d0bf9813f31f0b010ad36397e7bbea2cc1033\", \"live\": true, \"id\": \"x9816022d48dc6f1b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4b9725333ea8c0bc7016e80cc1165947cd2ee8c5\", \"live\": true, \"id\": \"x6ed2e390b429c983\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7bf82d97346f8f2c3423c3f3510d1ce91f5c4102\", \"live\": true, \"id\": \"x7bd31e75e32a3fca\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fe6907edbe7439f9fd640781a0c7f7e556209926\", \"live\": true, \"id\": \"xc26353b104fa31aa\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ebb6e3d41135071f05ce13bc5717198afde30e87\", \"live\": true, \"id\": \"xfb299b1224315f8b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"97835870c390b5d764dd39b917528759de73d0ab\", \"live\": true, \"id\": \"xb21dfa74b714ed7b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b081f03b40d7859adae70cce29312dbef5edbc6\", \"live\": true, \"id\": \"xf86e1daa552da75d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4d1ebe4e3881f4253d841788347018bc028f0045\", \"live\": true, \"id\": \"xd59f88b5cc93faa5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7790b59786b3a5d27eb1b0c2631a01a386b79f93\", \"live\": true, \"id\": \"x0dadd48c50389c38\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9cdcb0e7342c5e364893b27526824eaae1b046d5\", \"live\": true, \"id\": \"x0a1e9f7440b8f174\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ebc0ec41ea2b7ca3df2a25bc8fe7fbcafcd345c0\", \"live\": true, \"id\": \"xd9e7f9ca15011875\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd26f15bbf9f4de17abdde7b465217256d92344a\", \"live\": true, \"id\": \"x10ee4bff7ea35a5e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d629084c46682b0cd9e132779aed3eaff182a32\", \"live\": true, \"id\": \"xe11c1339ac28e918\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8d1b09a8e80a779cf7c8337736f18c24f8694b2d\", \"live\": true, \"id\": \"x024378709a7574a3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f386ce14eadb3587829d72ce54a7bce77305a5e\", \"live\": true, \"id\": \"xf9ac44e837688c4d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7881402ff04785f1c30e5416e6df3bac59cd1bfb\", \"live\": true, \"id\": \"xaed51ee305b1756f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83080ae164f63cfb6c42e6314b9dc9704bf2a452\", \"live\": true, \"id\": \"x9641d544d966f485\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2478df19e66e97ca2e8fba2fe55d78737aebc72c\", \"live\": true, \"id\": \"x48a3015055a253c2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5dee8563c9747ed53e50a27bfa2ed0329c520ddb\", \"live\": true, \"id\": \"x60e5394ea424a177\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b77853abcfa88c114ebd32d3f3dc718ca1619316\", \"live\": true, \"id\": \"xc0f4ca0df66f75b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"19dc798697f0e515e76f4ca9490af34ae96159e8\", \"live\": true, \"id\": \"xaaf0a4508a76319b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3ea4ce5c2414b5020b792f8a5cf36458ff22ac61\", \"live\": true, \"id\": \"x2508312004919d7a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"467ffe4bd92b7c672c70b93382574cd32800edbc\", \"live\": true, \"id\": \"x12f3baa4c0bc4d87\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"60703b60fd9b4e4a5abf056331c58fe767d52739\", \"live\": true, \"id\": \"xf0f2a6c2adb32b51\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3906328c7d63f436100965b89d3a17605ba27973\", \"live\": true, \"id\": \"x564d24f96fd3d062\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"154a0354160f7161ad3392198f19a9665a2ab29b\", \"live\": true, \"id\": \"xbf02926dcd69f980\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"37e4305d92b1442d8a7fc772e8643c8d63f5e889\", \"live\": true, \"id\": \"x53758a4931d88186\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"121858fa942e054d0a6deab28b3000fa1d280c8f\", \"live\": true, \"id\": \"xa256feda7331a038\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92112912395a49c9d9a99a391aae0324aac602f8\", \"live\": true, \"id\": \"xd2f603c0aa990f12\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice adding and subtracting positive and negative fractions.", "basepoints": 22.0, "slug": "adding_and_subtracting_fractions", "kind": "Exercise", "name": "adding_and_subtracting_fractions", "seconds_per_fast_problem": 21.0, "prerequisites": ["adding_fractions", "subtracting_fractions", "adding_and_subtracting_negative_numbers"], "exercise_id": "adding_and_subtracting_fractions"}, "a-beginner-s-guide-to-the-baroque": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/beginners-guide-baroque1/a-beginner-s-guide-to-the-baroque/", "id": "a-beginner-s-guide-to-the-baroque", "display_name": "A beginner's guide to the Baroque (quiz)", "title": "A beginner's guide to the Baroque (quiz)", "all_assessment_items": ["{\"sha\": \"e154c4fb543b1ff5668360812a705918a745ff07\", \"live\": true, \"id\": \"x4a39301af2e44a19\", \"perseus_api_major_version\": null}", "{\"sha\": \"ec623397530420a921b6600e8334cd5a233eee60\", \"live\": true, \"id\": \"xb5c813bf5a05313d\", \"perseus_api_major_version\": null}", "{\"sha\": \"ec6b4c673f33d351783dfe5631f2e0beaf6116d2\", \"live\": true, \"id\": \"x85b797f88672f595\", \"perseus_api_major_version\": null}", "{\"sha\": \"716e8b7b977e16b799e5ea7716060221f216c4fe\", \"live\": true, \"id\": \"x63e544b75f806f91\", \"perseus_api_major_version\": null}", "{\"sha\": \"f9604653a47b4618d532169701967c6faf165e61\", \"live\": true, \"id\": \"xeb3bfd9e132cf0fa\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c7c44c006a6030cccbe0322061c5569b10bcd698\", \"live\": true, \"id\": \"x2ada594f2ba0be4c\", \"perseus_api_major_version\": null}", "{\"sha\": \"b046a0ebbbf8f7159f659425df382c2a9e75d7f0\", \"live\": true, \"id\": \"xaceb41d89db7e7b4\", \"perseus_api_major_version\": null}", "{\"sha\": \"d20ec29854a7624c603f5df034300e44cebab9fb\", \"live\": true, \"id\": \"xc70d88c2e17b439c\", \"perseus_api_major_version\": null}", "{\"sha\": \"4e6ce9fdde562ca3034cd1747b89e8409fcdaca4\", \"live\": true, \"id\": \"xf531883bd77b3298\", \"perseus_api_major_version\": null}", "{\"sha\": \"75cef9f9c16b18c6a4281c23a39c02950caea565\", \"live\": true, \"id\": \"x58c008df21f41b8f\", \"perseus_api_major_version\": null}", "{\"sha\": \"98284e86f231e049bf5249da6cce75fa18045595\", \"live\": true, \"id\": \"xffb0dd71a2509c1e\", \"perseus_api_major_version\": null}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "a-beginner-s-guide-to-the-baroque", "kind": "Exercise", "name": "a-beginner-s-guide-to-the-baroque", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "a-beginner-s-guide-to-the-baroque"}, "renal-regulation-of-blood-pressure-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/renal-regulation-of-blood-pressure/renal-regulation-of-blood-pressure-questions/", "id": "renal-regulation-of-blood-pressure-questions", "display_name": "Renal regulation of blood pressure questions", "title": "Renal regulation of blood pressure questions", "all_assessment_items": ["{\"sha\": \"bf68fb9595046f492c2090604f5242b772037a26\", \"live\": true, \"id\": \"xa9c17ecb4dfcfbc2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e43cba2a97d00c468ec670d0b83389ea971b8875\", \"live\": true, \"id\": \"xde8a0daa3413f899\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8d203a69c6f672d89f35179b435c2f95e7eece83\", \"live\": true, \"id\": \"xd2eac75c88ae57b7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c7c3a53cb109968da9a15dea7a0903b407b1d9aa\", \"live\": true, \"id\": \"xdd76784a2134cb7a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a327cc6909fee61682c25ffae1f6c60cad1dd066\", \"live\": true, \"id\": \"xfdf724695c8f829b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3dc7adff0945b114e38be5b548a47232759aeee7\", \"live\": true, \"id\": \"x40660e421bbc70b3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"27f5c5e657119a955b3fd6f1da860457c2bd7504\", \"live\": true, \"id\": \"x00d94b590fe3cf60\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6af01de6afaa14d61869d07c824c5d8cde963c77\", \"live\": true, \"id\": \"xe1446762ee3373cb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7a1c84e699236737cf4cb17a6e3c3aee24a811f\", \"live\": true, \"id\": \"x50be9a24f2f64451\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9c56c66a023761aa51a9439cec4066f58fe4b70b\", \"live\": true, \"id\": \"xa8ec88ed7badd2d5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Renal regulation of blood pressure questions", "basepoints": 10.0, "slug": "renal-regulation-of-blood-pressure-questions", "kind": "Exercise", "name": "renal-regulation-of-blood-pressure-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "renal-regulation-of-blood-pressure-questions"}, "number_line": {"uses_assessment_items": false, "path": "khan/math/arithmetic/multiplication-division/multiplication_fun/number_line/", "id": "number_line", "display_name": "Whole numbers on the number line", "title": "Whole numbers on the number line", "description": "Graph a number less than 100 on a number line when only two tick marks are labeled.", "basepoints": 13.0, "slug": "number_line", "kind": "Exercise", "name": "number_line", "seconds_per_fast_problem": 6.0, "prerequisites": ["multiplication_0.5"], "exercise_id": "number_line"}, "which-has-more-": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-intro/which-has-more-/", "id": "which-has-more-", "display_name": "Comparing size", "title": "Comparing size", "all_assessment_items": ["{\"sha\": \"ef613ab8a97b9e2411e5b73204bdac1eb6f68ad9\", \"live\": true, \"id\": \"x278ac3036680c5c0\"}", "{\"sha\": \"0f02a5f3488a5d4cede2083595b8b3f8ffc97a63\", \"live\": true, \"id\": \"x18961b7148feff0d\"}", "{\"sha\": \"ba3dcdfd3386d64b6520f643a15a3ab331d7d93d\", \"live\": true, \"id\": \"xe7ec356ecccbfc30\"}", "{\"sha\": \"87355ba07493ddfa602fb0047f3d1a37520145f7\", \"live\": true, \"id\": \"xab108d11db94125a\"}", "{\"sha\": \"ce4be0611bafa9cee49532718352c72d04f52469\", \"live\": true, \"id\": \"xac62ad3564e54067\"}", "{\"sha\": \"68684fae8f5d9897a5d26769c2877dd530d79b79\", \"live\": true, \"id\": \"xb1dce72b3cc7b1fc\"}", "{\"sha\": \"22a696158883b7baee9ba6c6847bab30cb947c3c\", \"live\": true, \"id\": \"x9d43f2119a5f1f3a\"}", "{\"sha\": \"e2318e608ec8efa97f5745d097eed8b75f99d78f\", \"live\": true, \"id\": \"x5a4caff1fd699f02\"}", "{\"sha\": \"a62710f3f8f5ab4222188638bd8d24839df00c64\", \"live\": true, \"id\": \"x12b134d2923c4f2a\"}", "{\"sha\": \"c15ca74f6d212bbf4acfc54084734f8981603f7a\", \"live\": true, \"id\": \"xc589d70df2dc379a\"}", "{\"sha\": \"62235253cd186030895f5b79352510bec2a00adb\", \"live\": true, \"id\": \"xc35a96dc1b238440\"}", "{\"sha\": \"047c0e8cee2cb3add9d5db403cdc01a8ff7dec24\", \"live\": true, \"id\": \"x3780def5ec4f49e5\"}", "{\"sha\": \"16b67f94697b7ea40b33832313b828e501eb966f\", \"live\": true, \"id\": \"x7b1456bb4f8c5c60\"}", "{\"sha\": \"f61ca8bf427e13807924039f8a2506cfbcdf2168\", \"live\": true, \"id\": \"x4fbbfa3b798c643b\"}", "{\"sha\": \"d516d456a49a578368ea67b3e797751f86b4662e\", \"live\": true, \"id\": \"x29e49bec577fca5c\"}", "{\"sha\": \"2113c4e390489552a2d8df14f135dc41e6c765a3\", \"live\": true, \"id\": \"x6ee2a7d081869646\"}", "{\"sha\": \"455ced7ab6274408f0920a370c968d1a51c0a8ee\", \"live\": true, \"id\": \"x805823eaebe405db\"}", "{\"sha\": \"0e28f731053462ce0bb220bf49572dcee3583ca3\", \"live\": true, \"id\": \"xffb2461c74bec265\"}", "{\"sha\": \"168cd14b7ef28e5a5d06322cdb9cc35b6ec973b6\", \"live\": true, \"id\": \"x0254f85da22cf1a7\"}", "{\"sha\": \"04e5e182df54df6098125570980b81e36c1bae8f\", \"live\": true, \"id\": \"x9764d9dcaf2ddf6f\"}", "{\"sha\": \"a90f8232ee75e324d84c272a6b6a842a00d10eb0\", \"live\": true, \"id\": \"x400ae2829a50d67a\"}", "{\"sha\": \"ee917a3f3248ece1257fafffb89524505e9e39cb\", \"live\": true, \"id\": \"x43e542175d5d1fe7\"}", "{\"sha\": \"4719d6d586510faddfe39999091960e784f7aa5d\", \"live\": true, \"id\": \"x5190258f94ef4986\"}", "{\"sha\": \"e637cdcb73994ba81a057207a834c28efb319c20\", \"live\": true, \"id\": \"xfd957fafe48fef4a\"}", "{\"sha\": \"8ecf41d93048ed96f281b291a89d6190114fdb75\", \"live\": true, \"id\": \"x56f3614dad11b350\"}", "{\"sha\": \"1d2e5b51b0d10fadcba7fa248c41d23b9b461740\", \"live\": true, \"id\": \"x4ec92ec9ec4d4f8e\"}", "{\"sha\": \"5ea962337e52dacc1dea2a835a010fd58c26f7b6\", \"live\": true, \"id\": \"x4fbe04cebac3d005\"}"], "description": "Compare two objects to see which is bigger, smaller, taller, shorter, or longer.", "basepoints": 10.0, "slug": "which-has-more-", "kind": "Exercise", "name": "which-has-more-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "which-has-more-"}, "millais--ophelia-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/millais-ophelia-quiz/", "id": "millais--ophelia-quiz", "display_name": "Millais, Ophelia Quiz", "title": "Millais, Ophelia Quiz", "all_assessment_items": ["{\"sha\": \"44a010adeb3502f60b52e58628752aaed6dfccea\", \"live\": true, \"id\": \"x948b8373baf9c0b9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"40cc7af7621aafb1f101b486de503fcfb018b578\", \"live\": true, \"id\": \"x474e1cb7cf13601d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"075c08ae678632a8d67ff4cddb39db06bea9e6f6\", \"live\": true, \"id\": \"x5fd0477bde278fb7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5cd50c81e9bb95ed92e0bf84cf28921fc4cd9fa1\", \"live\": true, \"id\": \"xc3545cca3d4b3dfb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9ecd02aeedc367c6c826b4d25aacef4f66e3ab84\", \"live\": true, \"id\": \"x5d2a9e8118aa55c9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge on this object.", "basepoints": 10.0, "slug": "millais-ophelia-quiz", "kind": "Exercise", "name": "millais--ophelia-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "millais--ophelia-quiz"}, "test-your-knowledge--biodiversity-patterns-of-speciation-and-extinction": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/biodiversity-origin/speciation-extinction/test-your-knowledge-biodiversity-patterns-of-speciation-and-extinction/", "id": "test-your-knowledge--biodiversity-patterns-of-speciation-and-extinction", "display_name": "Test your knowledge: biodiversity patterns of speciation and extinction", "title": "Test your knowledge: biodiversity patterns of speciation and extinction", "all_assessment_items": ["{\"sha\": \"6b195236e5332f280e20fc496729361afd596d15\", \"live\": true, \"id\": \"xf1ac8ca7b2c96ce9\"}", "{\"sha\": \"a0a15f216347d8fc5426aa8e782aeda8eb3928e6\", \"live\": true, \"id\": \"x06371166f2689c7a\"}", "{\"sha\": \"f0fe0df9787e43d4beaf2496d9511963bca58ae9\", \"live\": true, \"id\": \"x297642b40329f866\"}", "{\"sha\": \"c7a02b9a1aea5076a5200f6f60fd86357ec00377\", \"live\": true, \"id\": \"x5267e6d15c94720f\"}", "{\"sha\": \"b069ec335e1a29079199a7f14cf551ab15b29e09\", \"live\": true, \"id\": \"x6eef5030ac503f1b\"}", "{\"sha\": \"406e79f4fabed8fbbf6cf78775bc22a4389336a6\", \"live\": true, \"id\": \"x97f4a1c4ef7e7c9f\"}", "{\"sha\": \"61039809c8753d4dc470f1211a967329ccc22cba\", \"live\": true, \"id\": \"xbb041edf7ce06c3c\"}", "{\"sha\": \"2fb037e1d3d4c0c6edfee30a63cb686f0de7f6bd\", \"live\": true, \"id\": \"x2d68761a20b501fb\"}", "{\"sha\": \"6cae0d01df15fbc9607306a1c6a93ea6cd9f214e\", \"live\": true, \"id\": \"x72ade7222137c90b\"}", "{\"sha\": \"7a5aa1468de74836aa113255d8f4c242be80e8d8\", \"live\": true, \"id\": \"x8d36d8a01ac813ca\"}", "{\"sha\": \"bf80954250ea3369a814cb0194e40e2d1a434f2c\", \"live\": true, \"id\": \"x6ab763fbd863cda9\"}", "{\"sha\": \"c619392f20dc5011d4d30c6560836c86ecce435b\", \"live\": true, \"id\": \"xcd510e359589cee8\"}", "{\"sha\": \"691d5f21f7c9f652073ce4133a77bb32744d5f2c\", \"live\": true, \"id\": \"xfb5dd5909a79ca29\"}", "{\"sha\": \"419f0f4a485ba5f7e98edeb3bea456f9cdc449ee\", \"live\": true, \"id\": \"x2b6f9247dc22951a\"}"], "description": "Test Your Knowledge", "basepoints": 10.0, "slug": "test-your-knowledge-biodiversity-patterns-of-speciation-and-extinction", "kind": "Exercise", "name": "test-your-knowledge--biodiversity-patterns-of-speciation-and-extinction", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge--biodiversity-patterns-of-speciation-and-extinction"}, "congruency_postulates": {"uses_assessment_items": false, "path": "khan/math/geometry/congruent-triangles/cong_triangle/congruency_postulates/", "id": "congruency_postulates", "display_name": "Congruency postulates", "title": "Congruency postulates", "description": "", "basepoints": 20.0, "slug": "congruency_postulates", "kind": "Exercise", "name": "congruency_postulates", "seconds_per_fast_problem": 16.0, "prerequisites": ["parallel_lines_2", "defining-congruence-through-rigid-transformations"], "exercise_id": "congruency_postulates"}, "neuronal-synapses-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/neural-synapses/neuronal-synapses-questions/", "id": "neuronal-synapses-questions", "display_name": "Neuronal synapses questions", "title": "Neuronal synapses questions", "all_assessment_items": ["{\"sha\": \"ed6a812ff6a874a02325c9f02da74186838615e7\", \"live\": true, \"id\": \"xfccf8b40129463da\", \"perseus_api_major_version\": null}", "{\"sha\": \"29d9f1b298fd7e97a08aa03c527baf622de353c2\", \"live\": true, \"id\": \"x23c83479a396d02c\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c6662b39945a797dd4590e6b5f5710813a6cd26\", \"live\": true, \"id\": \"xa30a75bc00473811\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f6c22c003f193f4cba13d70e88d9051a98eef22\", \"live\": true, \"id\": \"x89d57627a0241c7b\", \"perseus_api_major_version\": null}", "{\"sha\": \"cc425c18a29d1685ba6b53e9030804efbf854526\", \"live\": true, \"id\": \"x939d193d1406383f\", \"perseus_api_major_version\": null}", "{\"sha\": \"6f8ac0eea27cae7db4619e561a10a28b099f3404\", \"live\": true, \"id\": \"xdc60cf8c583ac56a\", \"perseus_api_major_version\": null}", "{\"sha\": \"2c53dfd5ac6ad3578486709ec8465554cd095073\", \"live\": true, \"id\": \"xf05373602a730eb3\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2c868b2ae328eee52ee17a6aa55022c330c193ac\", \"live\": true, \"id\": \"x50de0ed051444156\", \"perseus_api_major_version\": null}", "{\"sha\": \"0232f7c928079954f0989676fa1d6d07c802e6e0\", \"live\": true, \"id\": \"xab169970b11e44bd\", \"perseus_api_major_version\": null}", "{\"sha\": \"8a7de5ad54e4c2f054cda94535fd1840f33a11d9\", \"live\": true, \"id\": \"x08fc0891406334f5\", \"perseus_api_major_version\": null}"], "description": "Neuronal synapses questions", "basepoints": 10.0, "slug": "neuronal-synapses-questions", "kind": "Exercise", "name": "neuronal-synapses-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neuronal-synapses-questions"}, "vasculitis-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/vasculitis-quiz-2/", "id": "vasculitis-quiz-2", "display_name": "NCLEX-RN questions on vasculitis 2", "title": "NCLEX-RN questions on vasculitis 2", "all_assessment_items": ["{\"sha\": \"073db3da8cacd593eed578406d16d3e077d2bd47\", \"live\": true, \"id\": \"x9b6339974522ffe7\"}", "{\"sha\": \"3d2362f8a0b953841bad1ec718cb2a8ec86539a3\", \"live\": true, \"id\": \"xc4ca6a0c34149795\"}", "{\"sha\": \"6cd2ad370169a1a14b3ee4192f57c2c4a8e61125\", \"live\": true, \"id\": \"xe035da969d7edc52\"}", "{\"sha\": \"e8467cb4b5488546736399a1dad2796d3f68a807\", \"live\": true, \"id\": \"x76da5b0463f83349\"}", "{\"sha\": \"058b264da7d507a2f02c3b8f46b62d95138c0ca7\", \"live\": true, \"id\": \"xb14d31078755a7d7\"}"], "description": "Another vasculitis quiz.", "basepoints": 10.0, "slug": "vasculitis-quiz-2", "kind": "Exercise", "name": "vasculitis-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "vasculitis-quiz-2"}, "converting_between_slope_intercept_and_standard_form": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/standard-form/converting_between_slope_intercept_and_standard_form/", "id": "converting_between_slope_intercept_and_standard_form", "display_name": "Converting between slope-intercept and standard form", "title": "Converting between slope-intercept and standard form", "all_assessment_items": ["{\"sha\": \"9be1e4489259549ab8a22013c1507ed88ab86f00\", \"live\": true, \"id\": \"xce8491f1db440664\"}", "{\"sha\": \"8d42a5fd34b91465e252494d047a962a3da1680b\", \"live\": true, \"id\": \"x4aaf277d7e7dfd5a\"}", "{\"sha\": \"84c29a9e52761e34c87a7d83c41440462a56c9b4\", \"live\": true, \"id\": \"x340340abaadbfe73\"}", "{\"sha\": \"bc884cf0cae208de2028cfe7e2c06002537998d9\", \"live\": true, \"id\": \"xa7684ce521db6c19\"}", "{\"sha\": \"6f56fe4dd070ff44026ddeead7026239b0cb26ec\", \"live\": true, \"id\": \"x6f3fefcebae303ee\"}", "{\"sha\": \"7c724da41c30863aa860ada240c548eb12d68458\", \"live\": true, \"id\": \"x9cba14bd5b0373e3\"}", "{\"sha\": \"b2f214db6ba3df8eb17c8f81ae3db454d7c5324a\", \"live\": true, \"id\": \"x104a1d439485ae36\"}", "{\"sha\": \"c6121e1d0dc450ffa06ef9a4684bf0bb52f14249\", \"live\": true, \"id\": \"x5abf757e29d6ae83\"}", "{\"sha\": \"7782ea6eb27dd0e9ecdc094b5837a4a8d628d281\", \"live\": true, \"id\": \"x5f289db7f54f96a6\"}", "{\"sha\": \"e728df3bdeb89dc5db287cd540d52aaa9474acfb\", \"live\": true, \"id\": \"x710619e25271d263\"}", "{\"sha\": \"480f106d62694138284e309661cc3d3f42b487ce\", \"live\": true, \"id\": \"xef1e505edb27a651\"}", "{\"sha\": \"93b1c742276f37f244740c8147185a68af4f6eb9\", \"live\": true, \"id\": \"xbad1dd9a39b26a7c\"}", "{\"sha\": \"6e1afc163e2b793160be848c2b2b0e236f045577\", \"live\": true, \"id\": \"xb8169abd42480b7c\"}", "{\"sha\": \"3ed4d56534895e92d7338c029e5e37f3b08f7bf1\", \"live\": true, \"id\": \"x354bff68962fe38f\"}", "{\"sha\": \"1a37ce9517dadddd177727ed2018a9cf5538f4d0\", \"live\": true, \"id\": \"x2dd323576696023f\"}", "{\"sha\": \"6d36e740ac2ec231915136ec9bfa75212ade82a0\", \"live\": true, \"id\": \"x2f88fe8992135872\"}", "{\"sha\": \"0442d715ea9f046d00a35a176e92e592d4fa7d71\", \"live\": true, \"id\": \"x5c9efeee46af83be\"}", "{\"sha\": \"2ceb4d1ec88dd59968b822d256f6b5450963a6e7\", \"live\": true, \"id\": \"x4801606ba145eb6b\"}", "{\"sha\": \"2a766b8037b1d690ac3d620c84abdf0346d66963\", \"live\": true, \"id\": \"x22c147a95743b9c4\"}", "{\"sha\": \"a87c312e7471add7afc3dee173d846c07df96b33\", \"live\": true, \"id\": \"x1ee6a5b41847896a\"}"], "description": "Convert linear equations between slope-intercept and standard forms.", "basepoints": 21.0, "slug": "converting_between_slope_intercept_and_standard_form", "kind": "Exercise", "name": "converting_between_slope_intercept_and_standard_form", "seconds_per_fast_problem": 18.0, "prerequisites": ["solving_for_the_x-intercept"], "exercise_id": "converting_between_slope_intercept_and_standard_form"}, "decimals-in-words": {"uses_assessment_items": true, "id": "decimals-in-words", "display_name": "Decimals in words", "title": "Decimals in words", "all_assessment_items": ["{\"sha\": \"e95a66e7f2f1555822173123bc9c0efbb11c5978\", \"live\": true, \"id\": \"x942ff6b4d1e11fbc\"}", "{\"sha\": \"0e7197dd76e52fc52a122186a1aebf4284813ab0\", \"live\": true, \"id\": \"xc76158ef0347a427\"}", "{\"sha\": \"ca193af2bfe32694fbb7ae0a2a11ddf8433c0ab7\", \"live\": true, \"id\": \"xaf181c6808b5d9f9\"}", "{\"sha\": \"539c666318fb94a408c7653625ae5827afac05a3\", \"live\": true, \"id\": \"x722f178c4c0443ac\"}", "{\"sha\": \"0aba2c2d9d1e17b6086d695fa4a245bd082d6b1d\", \"live\": true, \"id\": \"x1a56eefe6e641cdd\"}", "{\"sha\": \"94e9ba893051d2f38e4c9ab74af595413fcbe430\", \"live\": true, \"id\": \"xf2d6d4bd04f68c60\"}", "{\"sha\": \"d9361d6689d40441077fe5311635ae8ea0fd3099\", \"live\": true, \"id\": \"x08442efde39dbf09\"}", "{\"sha\": \"0583138fcb69816b15bfae02c8d39490275263ed\", \"live\": true, \"id\": \"x547eb5269654f1f8\"}", "{\"sha\": \"4d24df82fd75a8ba18f70226aa4a931ea35b3989\", \"live\": true, \"id\": \"xda30661c1bb96f9d\"}", "{\"sha\": \"e2b7c31c6df81327c6a5005e4d3ee3f3a96ddb7b\", \"live\": true, \"id\": \"x0ee26cae8f7e620f\"}", "{\"sha\": \"e5518a344cbbad484d27706f27a62aa609214ca1\", \"live\": true, \"id\": \"xf77de31edd0755f9\"}", "{\"sha\": \"d8e872fda0db8b248c82ef0ad854b7de75a0d97d\", \"live\": true, \"id\": \"x519df789321b350a\"}", "{\"sha\": \"898283d9560eebcbbefd3ec89590897c7285cd89\", \"live\": true, \"id\": \"x2c7632c8f15a47c5\"}", "{\"sha\": \"dff19b389c54c994e17c88dc81d777559173b898\", \"live\": true, \"id\": \"xe0b266c1ac044732\"}", "{\"sha\": \"0ff83a7120d63b053ec3f327af5525390547e8fb\", \"live\": true, \"id\": \"x32b73ea508345fca\"}", "{\"sha\": \"b7be7c1f9faa0b40c5c55921a9e350396a51dbb4\", \"live\": true, \"id\": \"x5f25a0896d38c817\"}", "{\"sha\": \"e2ca7ee0b383e769e1192e0417bbce91b1332d3c\", \"live\": true, \"id\": \"x295a8a93ab8e36d8\"}", "{\"sha\": \"e2b1b4a4d78427462cdbe5b6ac2472270074a2ee\", \"live\": true, \"id\": \"xf2ee53f7ca01f9c8\"}", "{\"sha\": \"9e1bd600ceb26fc1585362ff65867374366e54e3\", \"live\": true, \"id\": \"x64c1f193c93f9033\"}", "{\"sha\": \"8c3cbdeb3272a97c3c56489052914c4119dc5198\", \"live\": true, \"id\": \"x41d20ecf6af921a5\"}", "{\"sha\": \"97c0c25a3a329299681865e319a0c7d21722e2e4\", \"live\": true, \"id\": \"x319234ac5cb4679b\"}", "{\"sha\": \"d1287a39a577718988f34edca3ecf8028fd78f5c\", \"live\": true, \"id\": \"xb58f87048af9adbf\"}", "{\"sha\": \"a7eb76d98fe705db462414f400bbdd66bba8cd7f\", \"live\": true, \"id\": \"xfd3d35695985ed21\"}", "{\"sha\": \"d9d01009df87044d8a6dd8bb3d9e0721e190784d\", \"live\": true, \"id\": \"x3ab77129477b0458\"}"], "description": "Practice writing decimal numbers in word form and number form.", "basepoints": 10.0, "path": "decimals-in-words/", "slug": "decimals-in-words", "kind": "Exercise", "name": "decimals-in-words", "seconds_per_fast_problem": 4.0, "prerequisites": ["decimal-intuition-with-grids"], "exercise_id": "decimals-in-words"}, "structure-in-expressions-1": {"uses_assessment_items": true, "path": "khan/math/algebra/linear_inequalities/structure-expressions-linear/structure-in-expressions-1/", "id": "structure-in-expressions-1", "display_name": "Structure in expressions 1", "title": "Structure in expressions 1", "all_assessment_items": ["{\"sha\": \"27a3f71203c57780792d14185d2b3df5fcc0c4bb\", \"live\": true, \"id\": \"x4bbd1009\"}", "{\"sha\": \"a073f71de9b3266c04c1f4304c41ce628095b07a\", \"live\": true, \"id\": \"xf8934355\"}", "{\"sha\": \"e923de98e2d06c5db7995812d22e309660968944\", \"live\": true, \"id\": \"x1bf7fbc5\"}", "{\"sha\": \"b24688c5c088b5d7f30c3ba9d610df44ae03fa87\", \"live\": true, \"id\": \"x0e82a6a2\"}", "{\"sha\": \"9590d0092b9d542dd32d6605b6d37afb4b163472\", \"live\": true, \"id\": \"x82ca701b\"}", "{\"sha\": \"bd078a04c7d51a0320489106250840f04780952c\", \"live\": true, \"id\": \"x4e3677ba\"}", "{\"sha\": \"43087a14785d8f8132188b2a319269d22cd48e27\", \"live\": true, \"id\": \"x64fc330b\"}", "{\"sha\": \"a017bc6c19b98ad46127c7892077bd068fe0f875\", \"live\": true, \"id\": \"x12b5fe50\"}", "{\"sha\": \"df5fe66744fcb1c5739e08bdab8e42a3b5eec4b9\", \"live\": true, \"id\": \"xab655821\"}", "{\"sha\": \"996044c7d584479a0c0acedb24ec46e1c8e72b13\", \"live\": true, \"id\": \"xb234c333\"}", "{\"sha\": \"7956b38ea6f92df86bf93f2e079fee42b81f4a63\", \"live\": true, \"id\": \"xa835bcdd\"}", "{\"sha\": \"08af5e1292fbe250e2eb18b4fc5ff6945b9ca1fa\", \"live\": true, \"id\": \"xbef95f58\"}", "{\"sha\": \"36c929f2810055b86ac529fdff795fe2cbe0111a\", \"live\": true, \"id\": \"xe3cf375c\"}", "{\"sha\": \"652fcea79c88f08ce9baeaf964b7e7e3ef74e368\", \"live\": true, \"id\": \"xa0444d64\"}", "{\"sha\": \"2a3218af65c17636b3ca2b41ea0042c656a152cb\", \"live\": true, \"id\": \"xf6e3a084\"}", "{\"sha\": \"3b5d2ca44410fc797569d54b76e2400c72eecb0e\", \"live\": true, \"id\": \"x81d6f969\"}", "{\"sha\": \"793d57ee826efa78f024d8a139068388069f16f7\", \"live\": true, \"id\": \"xc5a25359\"}", "{\"sha\": \"b4d5d7da284bb0a719dfee241a34b108fffbd9f0\", \"live\": true, \"id\": \"x7b7b9432\"}", "{\"sha\": \"0eae33dfef9c024635d4003463105e6fe9a38dba\", \"live\": true, \"id\": \"x2da8ff9f\"}", "{\"sha\": \"9156f03e1b8d7256a29694a2658cc2ec8ee1e441\", \"live\": true, \"id\": \"xf6022e95\"}", "{\"sha\": \"f6526e93d3aee5c3bf50a66c4935a39d6ba90ff8\", \"live\": true, \"id\": \"xd0edfca6\"}", "{\"sha\": \"5c6ad7bda996a27059c104a6c877dbe7514ca7ee\", \"live\": true, \"id\": \"xbe21c7d0\"}", "{\"sha\": \"99474f54ee846e1a97a7bd8d1791694b23c21c50\", \"live\": true, \"id\": \"x580c4a57\"}", "{\"sha\": \"f7c0af2e3d258b512c91d3fe14218a0cb0474a27\", \"live\": true, \"id\": \"x71141017\"}", "{\"sha\": \"9693147927a2199a695ec9d8df3955a1534d9592\", \"live\": true, \"id\": \"x17259e97\"}", "{\"sha\": \"c202d809922f42e0df24bb0a31c7c68036e3bf4f\", \"live\": true, \"id\": \"x196338f9\"}", "{\"sha\": \"ff8a7307e2a38841b22f4c980ca6faa21c39392b\", \"live\": true, \"id\": \"xa6eac38a\"}", "{\"sha\": \"f6710dc6cf336aca88260640424c2e4fd3897536\", \"live\": true, \"id\": \"xb1d45c95\"}"], "description": "Underlying logic and structure of expressions (mainly linear)", "basepoints": 18.0, "slug": "structure-in-expressions-1", "kind": "Exercise", "name": "structure-in-expressions-1", "seconds_per_fast_problem": 13.0, "prerequisites": ["solving_for_a_variable"], "exercise_id": "structure-in-expressions-1"}, "inequalities_on_a_number_line": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/inequalities_on_a_number_line/", "id": "inequalities_on_a_number_line", "display_name": "Inequalities on a number line", "title": "Inequalities on a number line", "description": "Practice writing equations of inequalities graphed on number lines. Identify number line graphs of inequalities.", "basepoints": 17.0, "slug": "inequalities_on_a_number_line", "kind": "Exercise", "name": "inequalities_on_a_number_line", "seconds_per_fast_problem": 11.0, "prerequisites": ["number_line_2", "testing-solutions-of-inequalities"], "exercise_id": "inequalities_on_a_number_line"}, "respiratory-system---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/respiratory-system-passage-2/", "id": "respiratory-system---passage-2", "display_name": "Residual lung volume in a patient", "title": "Residual lung volume in a patient", "all_assessment_items": ["{\"sha\": \"6cf0dbaf8698a782d95dbb999bfd23581fc371f3\", \"live\": true, \"id\": \"x24e32564555647b1\"}", "{\"sha\": \"a5a9210ecce40f12f5c694beef565642ea05687e\", \"live\": true, \"id\": \"xe1d847a796796ade\"}", "{\"sha\": \"acfaf49354b5dd51e360535d25536fcfa6713a56\", \"live\": true, \"id\": \"x1ceee2567bda0f1b\"}", "{\"sha\": \"1903ccf005548f0fe99b0d55c31c57670e97948f\", \"live\": true, \"id\": \"x3fc3d9b7d58abf30\"}", "{\"sha\": \"5013693cf69f1c9d368e19b2ce0892782a98316d\", \"live\": true, \"id\": \"xe29f44d4bce16ada\"}"], "description": "This passage will test your knowledge on the respiratory system\u00a0", "basepoints": 10.0, "slug": "respiratory-system-passage-2", "kind": "Exercise", "name": "respiratory-system---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "respiratory-system---passage-2"}, "respiratory-system---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/respiratory-system-passage-1/", "id": "respiratory-system---passage-1", "display_name": "Inspiration, respiratory rate, and respiratory therapy", "title": "Inspiration, respiratory rate, and respiratory therapy", "all_assessment_items": ["{\"sha\": \"28de30e9894dc1c8cf6cbe0c79bb7c1b54c73d27\", \"live\": true, \"id\": \"xb39b9c67bb110733\"}", "{\"sha\": \"b2a6df2ec062c0c30522e97f852f8616629da0a9\", \"live\": true, \"id\": \"xa97427ad90ec6284\"}", "{\"sha\": \"414b0d1e39bfec736752703cd4b45a4a45e383ac\", \"live\": true, \"id\": \"xa6ed53a865ffeed0\"}", "{\"sha\": \"2e6b76e35efecee63cdbf1f9d00740d308586fbb\", \"live\": true, \"id\": \"xd6c704158f8d7ce6\"}", "{\"sha\": \"dfda4439b6333c313b53eef9ebd4d4839e6ad76f\", \"live\": true, \"id\": \"x2e91bf3f97a17786\"}"], "description": "This passage will test your knowledge on the respiratory system", "basepoints": 10.0, "slug": "respiratory-system-passage-1", "kind": "Exercise", "name": "respiratory-system---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "respiratory-system---passage-1"}, "prosopagnosia----you-seem-familiar--but-i-can-t-place-your-face--": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/prosopagnosia-you-seem-familiar-but-i-can-t-place-your-face-/", "id": "prosopagnosia----you-seem-familiar--but-i-can-t-place-your-face--", "display_name": "Prosopagnosia - \u201cYou seem familiar, but I can\u2019t place your face\u201d", "title": "Prosopagnosia - \u201cYou seem familiar, but I can\u2019t place your face\u201d", "all_assessment_items": ["{\"sha\": \"11363cbf0000654236f7d44f3c24be4b8dd88f22\", \"live\": true, \"id\": \"x7673125608056f5c\"}", "{\"sha\": \"3af0507ce5f212c8bdbb0018d341e5318568b711\", \"live\": true, \"id\": \"xce308f7ed9e46e54\"}", "{\"sha\": \"dc457e66edf8e2eb9a61a751b91543b1897c397c\", \"live\": true, \"id\": \"xb1d089a716ae1e78\"}", "{\"sha\": \"cd6b3552f20c83809eb75f5434fd3f3771ec0d77\", \"live\": true, \"id\": \"xe3b90994c0e36b70\"}", "{\"sha\": \"4e92e3c932fdf7520d4fff895aa6b9aac690324b\", \"live\": true, \"id\": \"xc0cb9e579e73d82f\"}"], "description": "Questions relating to vision", "basepoints": 10.0, "slug": "prosopagnosia-you-seem-familiar-but-i-can-t-place-your-face-", "kind": "Exercise", "name": "prosopagnosia----you-seem-familiar--but-i-can-t-place-your-face--", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "prosopagnosia----you-seem-familiar--but-i-can-t-place-your-face--"}, "groups-of-tens": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-tens/groups-of-tens/", "id": "groups-of-tens", "display_name": "Groups of ten objects", "title": "Groups of ten objects", "all_assessment_items": ["{\"sha\": \"760a64dfbb10d2a2bb94bf26eb4970a60aa84e82\", \"live\": true, \"id\": \"xe09d26b13b75c5e0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"162bc28bd5c6a23c4f6818e79e1d6266fa335b99\", \"live\": true, \"id\": \"x3f9025a27309c8ed\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"66d541c5f50be99c6ddd1f345f27ff4bbafcc68d\", \"live\": true, \"id\": \"xfa9c2b91d96b2b5f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c92dbb1bb1fdc20a0903eacfa3369163a9c156ab\", \"live\": true, \"id\": \"xad562e5dd0fd4ca4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8415ad75b6b5125b0fe6d44cfe1553235d473d03\", \"live\": true, \"id\": \"xa3d6d6a04e8f9b18\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"40b46c3a34eb2e614882f9f38063954af598ec66\", \"live\": true, \"id\": \"x8e24c71f69bb282b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c527618363afb3c3c099ddd163f4eff0d34d22ae\", \"live\": true, \"id\": \"x007a731575b7ca76\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c32499bd78b662de01190d5f1354f48098fd56af\", \"live\": true, \"id\": \"xc8b909caaa2474de\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"73440bcd1722b2c8277402caa9bfdc62b2c61d6d\", \"live\": true, \"id\": \"x57cf5811a42364e8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e85a0e888ca57ef69dc18ed818503517b4983fda\", \"live\": true, \"id\": \"x75be850aa3ece22a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"57fc0991c61f342ff7c00e480aaea5c15f08b09f\", \"live\": true, \"id\": \"xaab07585c915b698\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"378d95d971a191dc9c3b86ddb4838e58c5131b01\", \"live\": true, \"id\": \"x57eb3fcb35c0e4bf\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2e72a2b47496ad8298a27b7a04accba8f7d70ce6\", \"live\": true, \"id\": \"x9baa174472699e47\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"de7d6016e37cc39c02c9a7a4db8bd5a37d9ff72c\", \"live\": true, \"id\": \"xdf91c06a3c98c4c0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"3f66b4d3e027c9bdb3b5c304c4318b72b50b5e25\", \"live\": true, \"id\": \"x5b75c1f90dd44470\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a18560fc45856c525770cf8710ab9bec831208f7\", \"live\": true, \"id\": \"x5c1c06b80137e237\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"47d8761a57896db19f5690235529944479b67c5f\", \"live\": true, \"id\": \"x540bd234aac234e9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e27e0183fae0e8df6c8e2886beaa49069ad9fa1f\", \"live\": true, \"id\": \"x18d3ff5618bc0954\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"99086dec82cd108f957a15f532b64778bf0c1f28\", \"live\": true, \"id\": \"x29b30db72524f3fe\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cc1ac18eb99296b5dfee8ffad9f1812a5e7f6b63\", \"live\": true, \"id\": \"x7c686e7bf1d87d4a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}"], "description": "Practice grouping objects by tens.", "basepoints": 10.0, "slug": "groups-of-tens", "kind": "Exercise", "name": "groups-of-tens", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-2-digit-numbers"], "exercise_id": "groups-of-tens"}, "theories-of-personality": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/theories-of-personality/", "id": "theories-of-personality", "display_name": "Freudian psychotherapy", "title": "Freudian psychotherapy", "all_assessment_items": ["{\"sha\": \"fabb91b8884d2531728f7be09e971abc317a0540\", \"live\": true, \"id\": \"x9d9e047e6db7b931\"}", "{\"sha\": \"3c66b00f427b4d6619a9f176c0c75ac26e7b6a55\", \"live\": true, \"id\": \"xbac7ed9f37803587\"}", "{\"sha\": \"47b6e33b1de667157561e3933cdce9eec474c9e3\", \"live\": true, \"id\": \"xc0000f6168fdb3ca\"}", "{\"sha\": \"53032dc4134678e977e25c3f2e1160dd82e942e6\", \"live\": true, \"id\": \"x5756c4f76fbe34e3\"}", "{\"sha\": \"0e843a0261d9982c19356038b681d9e63ea7e056\", \"live\": true, \"id\": \"x9c65702a4dc5eafd\"}"], "description": "", "basepoints": 10.0, "slug": "theories-of-personality", "kind": "Exercise", "name": "theories-of-personality", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "theories-of-personality"}, "slope-intercept-equation-from-graph": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/slope-intercept-equation-from-graph/", "id": "slope-intercept-equation-from-graph", "display_name": "Slope-intercept equation from a graph", "title": "Slope-intercept equation from a graph", "all_assessment_items": ["{\"sha\": \"b8d3979cddf37003b435be88300e0696817d09bb\", \"live\": true, \"id\": \"x0c124b13065fa63c\"}", "{\"sha\": \"3577c74d616d40baf505d7bab4427079fd5d1bab\", \"live\": true, \"id\": \"xed2b2a5bfcd7d168\"}", "{\"sha\": \"5b261d4319a6b540a72415c2830a0dfd5d0c5db3\", \"live\": true, \"id\": \"xd7fa42897bfe3c7f\"}", "{\"sha\": \"1ca21025cc272b4b04cf490c0a2f68d17a61bb02\", \"live\": true, \"id\": \"x6eac44646727a9e4\"}", "{\"sha\": \"22609b4535523a4d9db1682ad216915d5a1c85a4\", \"live\": true, \"id\": \"x817cf9ce11e8754e\"}", "{\"sha\": \"f206bfaf6f79e55890f42a57cdd2a90e13393b73\", \"live\": true, \"id\": \"x75ff5d1c253a0359\"}", "{\"sha\": \"bf5d4822147fef4f3c9393482f1a364cd581d3cd\", \"live\": true, \"id\": \"x98e7cbde44170477\"}", "{\"sha\": \"b4ba55af15f577457a2fcf7d0b3facd585ea792f\", \"live\": true, \"id\": \"x52444715339adf05\"}", "{\"sha\": \"f0b0cf1cb0332ac8519db15f20579cfafcdac131\", \"live\": true, \"id\": \"x8e14604a4531adb2\"}", "{\"sha\": \"75a2b22a5bcd0acf566d62f5e1820c49eebad782\", \"live\": true, \"id\": \"x11c489de0a584b2c\"}", "{\"sha\": \"ccc9cd0582daff466b867fed68418a1aa2c5b3f1\", \"live\": true, \"id\": \"x8efc3f31a398950a\"}", "{\"sha\": \"e50f966414c79350f78069ecfecc48d8aee4cfd6\", \"live\": true, \"id\": \"x760cc4ffa4bc059f\"}", "{\"sha\": \"4545411f4c59e92dcb16db43c240699f1a5caaaf\", \"live\": true, \"id\": \"x4b872de0553543b1\"}", "{\"sha\": \"3b3f1834cfafa041bf847c5dcd99e079d173d74f\", \"live\": true, \"id\": \"x40ecd445b7a77d1b\"}", "{\"sha\": \"21b202a294e884105e7d563fae310ec5baf69c96\", \"live\": true, \"id\": \"xa1bbeb9268c1afe5\"}", "{\"sha\": \"6df1b7fc002bf117f24b69ce0b0beea019a46e6c\", \"live\": true, \"id\": \"x06dc3f06651cfe7c\"}", "{\"sha\": \"95d86d988081947f0ccaeb518dd2065aaf3b0287\", \"live\": true, \"id\": \"x7286ac26b8d0e019\"}", "{\"sha\": \"6d5590be2893a6a923be074d8f77cb35f55b6713\", \"live\": true, \"id\": \"x9dc822e60c08cd4f\"}", "{\"sha\": \"813eb5e65c756f03c1e3e38428eadcf1b849e731\", \"live\": true, \"id\": \"x1e030795d6dabbea\"}", "{\"sha\": \"698331c5ddf6a5a5ef8cc9453a5b193003080adc\", \"live\": true, \"id\": \"x70707f23fbf7ccbf\"}"], "description": "Find an equation for the graph of a line", "basepoints": 10.0, "slug": "slope-intercept-equation-from-graph", "kind": "Exercise", "name": "slope-intercept-equation-from-graph", "seconds_per_fast_problem": 4.0, "prerequisites": ["graph-from-slope-intercept-equation"], "exercise_id": "slope-intercept-equation-from-graph"}, "a-genetic-mutation-with-prognostic-value-for-glioblastoma-patients": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/a-genetic-mutation-with-prognostic-value-for-glioblastoma-patients/", "id": "a-genetic-mutation-with-prognostic-value-for-glioblastoma-patients", "display_name": "A genetic mutation with prognostic value for glioblastoma patients", "title": "A genetic mutation with prognostic value for glioblastoma patients", "all_assessment_items": ["{\"sha\": \"8187de13ba9cf4dbedaa312e5f65bf997453c770\", \"live\": true, \"id\": \"x6e583e6f39359c60\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9cb17f4415736091ba709173c482127eb19b18d1\", \"live\": true, \"id\": \"xcf2cba7cb04c23f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"71e7e8dd5b4c6f94ac5c4a434b920812052b39a9\", \"live\": true, \"id\": \"x50c9ab221156d926\", \"perseus_api_major_version\": null}", "{\"sha\": \"b62d05dc445b6f0b6a19638273cedc021d2fe4a6\", \"live\": true, \"id\": \"x1c489ae7ed23fbed\", \"perseus_api_major_version\": null}", "{\"sha\": \"1bfeda00d7b18d25b3f94542a3053f29355b2fee\", \"live\": true, \"id\": \"x76a53d15a76e2ae0\", \"perseus_api_major_version\": null}"], "description": "Questions related to processes of cell division, differentiation, and specialization.", "basepoints": 10.0, "slug": "a-genetic-mutation-with-prognostic-value-for-glioblastoma-patients", "kind": "Exercise", "name": "a-genetic-mutation-with-prognostic-value-for-glioblastoma-patients", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "a-genetic-mutation-with-prognostic-value-for-glioblastoma-patients"}, "elasticity-and-kinetics-of-vulcanized-rubber": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/elasticity-and-kinetics-of-vulcanized-rubber/", "id": "elasticity-and-kinetics-of-vulcanized-rubber", "display_name": "Elasticity and Kinetics of Vulcanized Rubber", "title": "Elasticity and Kinetics of Vulcanized Rubber", "all_assessment_items": ["{\"sha\": \"d373ef03b64efcbc6b9c52dfef957d3b0a40e79f\", \"live\": true, \"id\": \"xb7791c540c3b0f29\"}", "{\"sha\": \"5e2b59d7eee70000d44f940ca7ac0a5078c47854\", \"live\": true, \"id\": \"xb076e68d8ccdfff7\"}", "{\"sha\": \"4e7e03f05aecb9f7b009cc1fe34d4ca74a8babc5\", \"live\": true, \"id\": \"x3d083921ec30db8e\"}", "{\"sha\": \"471f268860a512c29ead6a6fcea7ac8d34092085\", \"live\": true, \"id\": \"x9500bc81230a4cbd\"}", "{\"sha\": \"1179d39c9349c6753d4d4a75cd5c4a418505b05f\", \"live\": true, \"id\": \"x34f1c92846ad6b1e\"}"], "description": "Elasticity and Kinetics of Vulcanized Rubber", "basepoints": 10.0, "slug": "elasticity-and-kinetics-of-vulcanized-rubber", "kind": "Exercise", "name": "elasticity-and-kinetics-of-vulcanized-rubber", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "elasticity-and-kinetics-of-vulcanized-rubber"}, "probability_1": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-probability/probability_1/", "id": "probability_1", "display_name": "Simple probability", "title": "Simple probability", "all_assessment_items": ["{\"sha\": \"b70920d491cc3bfde2b8992a365d671e5e974303\", \"live\": true, \"id\": \"x7765f161aec8f780\"}", "{\"sha\": \"7689e0d09eb7b57d8cf0f97abb028a62853b652a\", \"live\": true, \"id\": \"x61cdcc526c4aed39\"}", "{\"sha\": \"59229c266d7c2e19775704e920d20546a11110bd\", \"live\": true, \"id\": \"xcb6b33ff1872889a\"}", "{\"sha\": \"76a46bfa87d2cc22a1991d456817482ee4d29583\", \"live\": true, \"id\": \"x3c50f780fd85e0e1\"}", "{\"sha\": \"262fa2fd2fa8a1db97c121336b76f01bd30ae59f\", \"live\": true, \"id\": \"x9547925ec463e26e\"}", "{\"sha\": \"7e0229248defb568bd136e757a10353d142cf316\", \"live\": true, \"id\": \"x14436e9c61b55100\"}", "{\"sha\": \"6b5bfab37386e2064fb5b5f5fb2ea8c54773d7a3\", \"live\": true, \"id\": \"x9700f4a6390b2913\"}", "{\"sha\": \"3f212fc5bf80eae090b7ee228e1027648d36c2c3\", \"live\": true, \"id\": \"xddee92f1f80973a2\"}", "{\"sha\": \"5ba8407507f4832aa29c6870e49e498aa92f9b19\", \"live\": true, \"id\": \"x337e68855d74fec2\"}", "{\"sha\": \"06d0f5032b8e7626ef30ff7065a9ce499383d88b\", \"live\": true, \"id\": \"x6ea515973ad16dc7\"}", "{\"sha\": \"db5a8d3310359f82081c8a46ecc798ae31becdd0\", \"live\": true, \"id\": \"x8b8eba6b9b79f21a\"}", "{\"sha\": \"3db1788a73f8e39bfb0626f3e875a267f0e7c969\", \"live\": true, \"id\": \"xd96db791c8f992bc\"}", "{\"sha\": \"b471ab8c0be520422b2b7dea03e5f5fa9ef2cfd4\", \"live\": true, \"id\": \"x264522684d921d3c\"}", "{\"sha\": \"f51691753930978b25ac3c8ebef83474c02d0136\", \"live\": true, \"id\": \"xa4d7d2cd7fe08d73\"}", "{\"sha\": \"54f2dd80fcd5187f4af480c779a7c2ce96a25fc6\", \"live\": true, \"id\": \"x792bd38be7153cc3\"}", "{\"sha\": \"4b0a1c1b3f3a224a1b9e8bb52d01c280f8e5de8d\", \"live\": true, \"id\": \"xe78e977c75372d5c\"}", "{\"sha\": \"3e306f09725e411968df34f9aface04c54802de5\", \"live\": true, \"id\": \"x13f9d45cda6eac17\"}", "{\"sha\": \"8d898b42152bd94a565a3d30d2d20f8de5959a05\", \"live\": true, \"id\": \"x8b89440ec2f6fc34\"}", "{\"sha\": \"cfe8d1476019eb766d0567b891dfa37f2eb8899c\", \"live\": true, \"id\": \"x2cdeff9e053edd45\"}", "{\"sha\": \"ce88049256d7de8e2e9786271ca90da5edbb5adc\", \"live\": true, \"id\": \"x2bdb32393562005b\"}", "{\"sha\": \"6ef57943b3bb020534d6e7d3e8e7c161c3dd510f\", \"live\": true, \"id\": \"x5ed0a1474a5c1877\"}", "{\"sha\": \"8b3c93966d47dc87d2e537d472b4136d79f70779\", \"live\": true, \"id\": \"xe4daa06b4103b3ec\"}", "{\"sha\": \"29097f9c4376e68b20bf552bb053f595ba77b3cb\", \"live\": true, \"id\": \"xc3db6fb416d05357\"}", "{\"sha\": \"54971a6906fefcf5a906a03a1c7b4abd408edda1\", \"live\": true, \"id\": \"x0edaeaa7d07c9f64\"}", "{\"sha\": \"2550f7db07d671fb5209b080643db96810f7e5a3\", \"live\": true, \"id\": \"x41c5fdc674abda51\"}", "{\"sha\": \"6c9f3b12a01f5c730f44e2bc9d86549df5427986\", \"live\": true, \"id\": \"x092007777ade5e53\"}"], "description": "Practice finding probabilities of events, such as rolling dice, drawing marbles out of a bag, and spinning spinners.", "basepoints": 18.0, "slug": "probability_1", "kind": "Exercise", "name": "probability_1", "seconds_per_fast_problem": 11.75, "prerequisites": ["percentage_word_problems_1"], "exercise_id": "probability_1"}, "pythagorean-theorem-word-problems": {"uses_assessment_items": true, "path": "khan/math/geometry/right_triangles_topic/pyth_theor/pythagorean-theorem-word-problems/", "id": "pythagorean-theorem-word-problems", "display_name": "Pythagorean theorem word problems", "title": "Pythagorean theorem word problems", "all_assessment_items": ["{\"sha\": \"8f2321076fb1c22a0c936e1bf4e10639c886f640\", \"live\": true, \"id\": \"xce9d3c2f6242a138\"}", "{\"sha\": \"658e6eb2909735520c9fcf73bb4177f02033e841\", \"live\": true, \"id\": \"xd9f676678ce76299\"}", "{\"sha\": \"52bc914aae99e5b9199f03cbd61da3eabd96335b\", \"live\": true, \"id\": \"xc347281030d9ee43\"}", "{\"sha\": \"5ca9df864e55b2992a9c5eb810067d2792c44bcc\", \"live\": true, \"id\": \"x433279ab957c8ed4\"}", "{\"sha\": \"de3bd98f0471bf1e5af5bc2972a8c85e256042df\", \"live\": true, \"id\": \"xf95623720ca06fbe\"}", "{\"sha\": \"55f72bb1409e7f3f0251941fd0dbe30982c04a6a\", \"live\": true, \"id\": \"x69d62c706c70bb6a\"}", "{\"sha\": \"b844ffef13f6d517cbb10566588237d5ce806841\", \"live\": true, \"id\": \"xb7c1712b5ea88333\"}", "{\"sha\": \"835034826618fb8e24915bcdcb31eff637919100\", \"live\": true, \"id\": \"xa301b0366de4c3b6\"}", "{\"sha\": \"263813b144cbaeca0d80c70f5504011e575d754e\", \"live\": true, \"id\": \"x40101b59395d8d3d\"}", "{\"sha\": \"17a2d1b279d62de76e2cfa4a4becfd6d5d65eba4\", \"live\": true, \"id\": \"x2894ec408698d8e2\"}", "{\"sha\": \"71c85334feddccb55c305febade1ab3c84fb30b7\", \"live\": true, \"id\": \"x21f8dc32d0c1b625\"}", "{\"sha\": \"4d73b697d22a5705bebfdfc8771c7a89236b24b3\", \"live\": true, \"id\": \"x497ebe27a5ca04a3\"}", "{\"sha\": \"427c9004dcbe68b29de119b61e882810ec3a838d\", \"live\": true, \"id\": \"xd13fd09f9fc33254\"}", "{\"sha\": \"190eebc23880c1efb5b310ca72154155edd2b494\", \"live\": true, \"id\": \"x3e817b460991138e\"}", "{\"sha\": \"c79b128471db7a38b6bbd2a06aedae81b202f194\", \"live\": true, \"id\": \"x9eb6c7bbaa79480b\"}", "{\"sha\": \"167c41e25c936a0d180ff1c1bd8cff8de8fdf3a8\", \"live\": true, \"id\": \"xcc34b62d3efbb77f\"}", "{\"sha\": \"d4ab673f43fb6b0939b8a430f3c90281dfd49416\", \"live\": true, \"id\": \"x5e10b9d691b4325a\"}", "{\"sha\": \"deee6c904084dc2a4941dff7ed8e06042c8aa4c6\", \"live\": true, \"id\": \"x9901c198630eb949\"}", "{\"sha\": \"f3580507e2cf7f0f71c593abf18f3e37e4d896b8\", \"live\": true, \"id\": \"x9dff25607a516688\"}", "{\"sha\": \"64be29020243b52439287e825dfcd2aa3d4d8668\", \"live\": true, \"id\": \"x2a3aa18ed65180e4\"}", "{\"sha\": \"82b674ec0bae38a48757010fa9cb502d12874eaa\", \"live\": true, \"id\": \"x164e7c20de53c69a\"}", "{\"sha\": \"83ad3c4c3090376d20deb80917c0b995138ce090\", \"live\": true, \"id\": \"x0c09d410a8eaa151\"}", "{\"sha\": \"b6169236f22f2eca3dd8343699aaad934e5dda14\", \"live\": true, \"id\": \"x3f4ef3aeee243902\"}", "{\"sha\": \"4bf0580762e5707dba71d5f2e620f5a7555e2479\", \"live\": true, \"id\": \"x8b2b9f45ea7971d2\"}", "{\"sha\": \"1faed1cfc3d8e9ccb8946eb22aedd04786a6bcbb\", \"live\": true, \"id\": \"x83af734737528f01\"}", "{\"sha\": \"8edf4ac807a2b2abf513eac0864f35a07a099671\", \"live\": true, \"id\": \"x55d88e56425972e0\"}", "{\"sha\": \"d6cce13b87c3072a0cc5982af565dd36d5fcb9a6\", \"live\": true, \"id\": \"x5f138893ed28d3c3\"}", "{\"sha\": \"b96f5d927962252ca824f98d791f9de1acee42af\", \"live\": true, \"id\": \"x8acd22b65d1436ec\"}", "{\"sha\": \"b18b98f03251a783c158b081be532c8cb5024ce6\", \"live\": true, \"id\": \"x89973d377141eb0f\"}"], "description": "", "basepoints": 10.0, "slug": "pythagorean-theorem-word-problems", "kind": "Exercise", "name": "pythagorean-theorem-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["pythagorean_theorem_1"], "exercise_id": "pythagorean-theorem-word-problems"}, "geometric-series": {"uses_assessment_items": true, "path": "khan/math/precalculus/seq_induction/geometric-sequence-series/geometric-series/", "id": "geometric-series", "display_name": "Finite geometric series word problems", "title": "Finite geometric series word problems", "all_assessment_items": ["{\"sha\": \"b90ade6f2b3bd40618104e1f290e59540ee45a3c\", \"live\": true, \"id\": \"x00b23611ba1f937f\"}", "{\"sha\": \"b803b25552c8479d7e5ac14af4e77a63ca08b168\", \"live\": true, \"id\": \"x0f2fd9031df468b0\"}", "{\"sha\": \"9577bd47a00ffaf7a9436e37641b61f597ae5f6b\", \"live\": true, \"id\": \"x94791fabc8ae29d5\"}", "{\"sha\": \"974c94c3ca4ec008747aab02b3de129c4e9cd4ac\", \"live\": true, \"id\": \"x0929aac018fb7171\"}", "{\"sha\": \"bded076684ff2fac473b69d2f6654ed614575ee6\", \"live\": true, \"id\": \"x84bdd2853e5e1246\"}", "{\"sha\": \"ca1b653aa222b672fe698ad0633d935b61484213\", \"live\": true, \"id\": \"x3144ed17527008c9\"}", "{\"sha\": \"daf2badcf7c18bf4e028e1d0fe1aea6623c9e208\", \"live\": true, \"id\": \"x3e5657c73d5798f5\"}", "{\"sha\": \"3dd0aaf2778a715b2e105a5cfa4c1a773aee37de\", \"live\": true, \"id\": \"xc3132a6dd1965baa\"}", "{\"sha\": \"d3f0af42265b1e4ea477ca6c9baf5148c5232e59\", \"live\": true, \"id\": \"xf39779249a710685\"}", "{\"sha\": \"d086a413f8be0418820d15cb1cd41d19066112d3\", \"live\": true, \"id\": \"x955b7cb25ed47712\"}", "{\"sha\": \"1f20da0b794bd065c88c565b5d054d4efa82a703\", \"live\": true, \"id\": \"x4e2ca2106a3b13f0\"}", "{\"sha\": \"8117f6b3201954b0a0338dc588708692d508cd70\", \"live\": true, \"id\": \"x599bb1d2d6990439\"}", "{\"sha\": \"627de22b1573de02d76cea3fb10711c54a042ede\", \"live\": true, \"id\": \"x8a2ce0b45242fc8e\"}", "{\"sha\": \"ed3aa5ba10155d4a7d901572b272c02cc87ee44d\", \"live\": true, \"id\": \"x8d8ce0fc86a223d7\"}", "{\"sha\": \"16f18eae9c643b74c3a4125b8f2c42bb6765bd22\", \"live\": true, \"id\": \"xa39ded3759b4d28e\"}"], "description": "Understanding and solving problems with the formula for a finite geometric series", "basepoints": 10.0, "slug": "geometric-series", "kind": "Exercise", "name": "geometric-series", "seconds_per_fast_problem": 4.0, "prerequisites": ["geometric-series--1"], "exercise_id": "geometric-series"}, "solving-problems-with-line-plots-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-line-plots/solving-problems-with-line-plots-1/", "id": "solving-problems-with-line-plots-1", "display_name": "Solving problems with line plots 1", "title": "Solving problems with line plots 1", "all_assessment_items": ["{\"sha\": \"ae9d9de3de2373d10eb163c9bde36e8aabacb725\", \"live\": true, \"id\": \"xf8c8427af09b3865\"}", "{\"sha\": \"9e57103d6f9524e45e462792746772a2403095fd\", \"live\": true, \"id\": \"x249fb84f01747411\"}", "{\"sha\": \"d99ad14bee1169939b2fa70e650693013f410809\", \"live\": true, \"id\": \"x3457d24efb76dc92\"}", "{\"sha\": \"e519202882692d7f48025043aa171d88828a4a46\", \"live\": true, \"id\": \"x77689ead6df6c894\"}", "{\"sha\": \"a42478bc690d47c4acb9900529a217b79dcd0189\", \"live\": true, \"id\": \"x679c65ee958c412a\"}", "{\"sha\": \"b5f6fd990ec1b1bf8b71556191ba441100253fc2\", \"live\": true, \"id\": \"x91643f3fc6190502\"}", "{\"sha\": \"2cb5ea91abee13e75eff62233760433e917ca7aa\", \"live\": true, \"id\": \"x05a7e7e4431f8e31\"}", "{\"sha\": \"8b5296326343eb798ea3e40b46eba6427fc6edc3\", \"live\": true, \"id\": \"x98a681f977faf442\"}", "{\"sha\": \"862436b4485688e6a3cc1d4f67a0af8bafb0cede\", \"live\": true, \"id\": \"x1cde2f574ab73a5b\"}", "{\"sha\": \"e3d5712e23381de729e95cb90bfb464b0369da09\", \"live\": true, \"id\": \"xf10d4c6d4bca430c\"}", "{\"sha\": \"da74a05f9aa3c0c42fc1360c210c928d458018e4\", \"live\": true, \"id\": \"x071a67e238d17911\"}", "{\"sha\": \"d2de74eee778acac6ad5ddc84ac3b7bfa9dddbf2\", \"live\": true, \"id\": \"xe272f120f084e615\"}", "{\"sha\": \"49c8d473f3cf25f8a90f85ae405ad66407182272\", \"live\": true, \"id\": \"xa03e0ac98c3da1e4\"}", "{\"sha\": \"a6097fd317fb93549b30503e06b41f2ee083992b\", \"live\": true, \"id\": \"x90b2ac7e9a4478ec\"}", "{\"sha\": \"96ef7cc2bc53c0b0689242e39d94d953fa670b52\", \"live\": true, \"id\": \"xcc5598c36e28cdcd\"}", "{\"sha\": \"fd25f3740ddcafe2cd160d5ac3f5deab92ea9cda\", \"live\": true, \"id\": \"x068db3ea3d751d7b\"}", "{\"sha\": \"4e1233e64f97a14bf5809e267ff032ea742ee8d2\", \"live\": true, \"id\": \"x4b1f2474ad9e1fe8\"}", "{\"sha\": \"53f75f9fb551ceb0932b8ae79212a43aa0cd974c\", \"live\": true, \"id\": \"x1abaf3090e5af86c\"}", "{\"sha\": \"e472511fa7688c81f79d20d23f9cf951c6e763ca\", \"live\": true, \"id\": \"x5f9fd328b5c98d9e\"}", "{\"sha\": \"7004e2a5abc234e1d9bcb319cecba714015e4714\", \"live\": true, \"id\": \"xc7fee93cb17f832b\"}"], "description": "Answer questions using line plots and data sets.", "basepoints": 10.0, "slug": "solving-problems-with-line-plots-1", "kind": "Exercise", "name": "solving-problems-with-line-plots-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_2"], "exercise_id": "solving-problems-with-line-plots-1"}, "average-value-of-a-function": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/solid_revolution_topic/function-average-value/average-value-of-a-function/", "id": "average-value-of-a-function", "display_name": "Average value of a function", "title": "Average value of a function", "all_assessment_items": ["{\"sha\": \"d9ca439031b1d667f51a76d70ecc4d640035c490\", \"live\": true, \"id\": \"x0ecc5fa6c607fc5a\", \"perseus_api_major_version\": null}", "{\"sha\": \"96c4cda669a280817bda654d880e79c78aad2319\", \"live\": true, \"id\": \"xc714f518270168c2\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a0921611710d802eae977994c432e9558a2c235\", \"live\": true, \"id\": \"xf94f0fcf3bac71cd\", \"perseus_api_major_version\": null}", "{\"sha\": \"58a8f39158b5f9d67d9eedf1ef3e78bb0b22b653\", \"live\": true, \"id\": \"x2ea8c7037dd799ed\", \"perseus_api_major_version\": null}", "{\"sha\": \"c3205f6127179084a59d4d2ab55001e87eccf799\", \"live\": true, \"id\": \"x5518247c7c96b42e\", \"perseus_api_major_version\": null}", "{\"sha\": \"664bbc72bbc653216a049a64647335fa73e720e5\", \"live\": true, \"id\": \"xd0fc3044f6a66ebb\", \"perseus_api_major_version\": null}", "{\"sha\": \"332d599b3a541d2cca1abbd66bc5b188fc342ed1\", \"live\": true, \"id\": \"xe77650aa4f4ecee8\", \"perseus_api_major_version\": null}", "{\"sha\": \"e9a825eb5d5346225486889d4c7b8df689dc718c\", \"live\": true, \"id\": \"x91b9f82304e3d15d\", \"perseus_api_major_version\": null}", "{\"sha\": \"f16f6d1cabe098200c908f76347a8dd012c3f72b\", \"live\": true, \"id\": \"xb0df21d4c0d74c55\", \"perseus_api_major_version\": 2}", "{\"sha\": \"437b6bfd25f77ab33f63ec1050ddc4fe85152831\", \"live\": true, \"id\": \"x0ccd76d0773272fb\", \"perseus_api_major_version\": null}", "{\"sha\": \"3748f405858d6139d4498f8aea43eee2a46df4d5\", \"live\": true, \"id\": \"xd0d6a7e29137fc49\", \"perseus_api_major_version\": 2}", "{\"sha\": \"47427d52924a4173ebc3bb5e43a5fc579cf6a96b\", \"live\": true, \"id\": \"x6afe2452cded1632\", \"perseus_api_major_version\": 2}", "{\"sha\": \"04856d7897167f812598de07e77cf934d7d69ccc\", \"live\": true, \"id\": \"x1559539c981895a8\", \"perseus_api_major_version\": null}", "{\"sha\": \"0f12205edab8fb4d11f277be7ac999706b4a6ec6\", \"live\": true, \"id\": \"x04b09a532c3e5ba3\", \"perseus_api_major_version\": null}", "{\"sha\": \"ef37ace4359c0dbfa67f65238edf06d6b32c6683\", \"live\": true, \"id\": \"x71269a0931af907c\", \"perseus_api_major_version\": null}", "{\"sha\": \"715e77e26e254302c85aa251477609fbebf7bcbc\", \"live\": true, \"id\": \"x3ab20ebc2cd72b7d\", \"perseus_api_major_version\": null}", "{\"sha\": \"6bd03f85e2d2785ef5654141934c239759c0a1e8\", \"live\": true, \"id\": \"x866f8c91bfcfb44c\", \"perseus_api_major_version\": null}", "{\"sha\": \"c5c8401a34721dfa6ca610e2c678134eb4cb8f73\", \"live\": true, \"id\": \"xa63cd042d481da1a\", \"perseus_api_major_version\": null}", "{\"sha\": \"bcc8b18b10a01d9d6f4b149bd4f2eecbc40b7052\", \"live\": true, \"id\": \"x0d3175ae344d7dcd\", \"perseus_api_major_version\": null}", "{\"sha\": \"76187cc1ae4f58f42823d1ccc4f92378835c277d\", \"live\": true, \"id\": \"xe631f31ed4092c1c\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "average-value-of-a-function", "kind": "Exercise", "name": "average-value-of-a-function", "seconds_per_fast_problem": 4.0, "prerequisites": ["integration-by-u-substitution"], "exercise_id": "average-value-of-a-function"}, "comparing-features-of-functions-0-5": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/comparing_linear_functions/comparing-features-of-functions-0-5/", "id": "comparing-features-of-functions-0-5", "display_name": "Comparing linear functions", "title": "Comparing linear functions", "all_assessment_items": ["{\"sha\": \"4602e22b622b857a512f054aabe8a7a13ab31dc7\", \"live\": true, \"id\": \"xb2d04f4100f7a477\"}", "{\"sha\": \"1c315d368473dfc85a36dd07cab190bd8460dc94\", \"live\": true, \"id\": \"xdcba269ead30eca4\"}", "{\"sha\": \"bb968badfcaa1a58bfa9946835c4de328c379847\", \"live\": true, \"id\": \"x7ae0b73f19f3a643\"}", "{\"sha\": \"56bd4a9cd50933a633af5371fb03714db383e2fc\", \"live\": true, \"id\": \"x884d168c68cd459e\"}", "{\"sha\": \"2d2143b6881dbd45d462c7002ab5259eabb22fed\", \"live\": true, \"id\": \"x06e95deb82010031\"}", "{\"sha\": \"fdf26f915fb7c5ec66cc5f419b65528fe3f39efc\", \"live\": true, \"id\": \"x2d987e2e18d56028\"}", "{\"sha\": \"d639a582cbe86b65e83e36bc57adc4955fe5e99a\", \"live\": true, \"id\": \"x253f61887525c47e\"}", "{\"sha\": \"2bda59d3e0a68344bc345bede8885ff7de6f0a14\", \"live\": true, \"id\": \"x70089bcc2f5bdb2d\"}", "{\"sha\": \"37d1c3e1c0cfd8c09f074d4c9d289f737fd39a4f\", \"live\": true, \"id\": \"x92c74084ed6f5bec\"}", "{\"sha\": \"73c6897dc11455a067dd79b49b3f8991aa5f552a\", \"live\": true, \"id\": \"x0a3f784a98b91b00\"}", "{\"sha\": \"413624f2526e7b1539e429c0ac814c5f97ec81be\", \"live\": true, \"id\": \"xc336cbdabd3c00fb\"}", "{\"sha\": \"914645731be6363d1e2920c78ff378be1c8ec50b\", \"live\": true, \"id\": \"x9856ddf51669de59\"}", "{\"sha\": \"6761507402eca02197d5bfbadcee6c49ac83028a\", \"live\": true, \"id\": \"x1e876464312e6230\"}", "{\"sha\": \"0f841c0f813a3299f54483ca726cde3f3daf732a\", \"live\": true, \"id\": \"xd2f525c3257f4a28\"}", "{\"sha\": \"087214582cf96646334eb1249f777a9c60fed10e\", \"live\": true, \"id\": \"xc7f1d7411aaa394c\"}", "{\"sha\": \"f352ad97cfac8929dc3eff8f6ced025e2e8afb34\", \"live\": true, \"id\": \"x41d81384c4e204b3\"}", "{\"sha\": \"033159943b32b3e8f65baf0eb80e3c5396e12af6\", \"live\": true, \"id\": \"x3e9416ca66163b43\"}", "{\"sha\": \"8007a12ca2f676686e1ac2616def571bf005adec\", \"live\": true, \"id\": \"x6ac3fd13e77e8828\"}", "{\"sha\": \"9344c4a4bb0abf57c6af193b1ba1479c5dae6d97\", \"live\": true, \"id\": \"xd23738e529fb8536\"}", "{\"sha\": \"6b319045f3e3e6d8682f0aedba96942f5a32aef3\", \"live\": true, \"id\": \"x5c238f38602e5aeb\"}", "{\"sha\": \"18b2653d9f3f269e11da061cff8b0079ea5a3523\", \"live\": true, \"id\": \"xb7916271ea9ca550\"}", "{\"sha\": \"aa4d3bac08e83503c410b79c7e6d2de75810d41c\", \"live\": true, \"id\": \"x69e0f110363bb7b6\"}", "{\"sha\": \"f34a8e98734b28486bb455dea8eaaa23167f762d\", \"live\": true, \"id\": \"x59f6a43bf0b171e9\"}", "{\"sha\": \"623247199cbd5c714d59be13c9fdbc91f9a89be8\", \"live\": true, \"id\": \"x8e7b25534e2a5ad2\"}", "{\"sha\": \"30ccb1cf704ffbfef8605a7061f6e4586e9c71b7\", \"live\": true, \"id\": \"x55bce80e59fbddda\"}", "{\"sha\": \"4d69335df04a65eddba3b0595d00a8e91e43553d\", \"live\": true, \"id\": \"x6da26d47a3e01e17\"}", "{\"sha\": \"d2ee581a9903d05f7ba42b73cb651f9825474c71\", \"live\": true, \"id\": \"x22ee5f2383ae41be\"}", "{\"sha\": \"30a388c38100b26bc4902d0f78017c6a266bae11\", \"live\": true, \"id\": \"x11a55805d3870622\"}", "{\"sha\": \"66fd849742cb709ab7e47ea7d07fcb476e638460\", \"live\": true, \"id\": \"x9ed3f877f07ca9c9\"}", "{\"sha\": \"69157a79acc1848283ddc6c0f25cee7999aec77f\", \"live\": true, \"id\": \"xc74f1b99aab5812a\"}"], "description": "", "basepoints": 26.0, "slug": "comparing-features-of-functions-0-5", "kind": "Exercise", "name": "comparing-features-of-functions-0-5", "seconds_per_fast_problem": 36.0, "prerequisites": ["slope-from-a-graph", "slope-from-an-equation-in-standard-form", "slope-from-two-points", "views_of_a_function"], "exercise_id": "comparing-features-of-functions-0-5"}, "newtons-laws": {"uses_assessment_items": true, "path": "khan/science/physics/forces-newtons-laws/newtons-laws-of-motion/newtons-laws/", "id": "newtons-laws", "display_name": "All of Newton's laws of motion", "title": "All of Newton's laws of motion", "all_assessment_items": ["{\"sha\": \"ee0013e7ada8a81c2ea2ca9d93fd5b32cd0a53f1\", \"live\": true, \"id\": \"x22699104\"}", "{\"sha\": \"42a3a4d0aafe0c032f511da34051c8a64ddb4190\", \"live\": true, \"id\": \"x422c6701\"}", "{\"sha\": \"690fd7a2472438e5fb856ec74f8df4cf458b6284\", \"live\": true, \"id\": \"xdadef1b3\"}", "{\"sha\": \"00898082cd28d96ac83590ff93ca4c96c4503012\", \"live\": true, \"id\": \"x321ec6e5\"}", "{\"sha\": \"fd26c3ccc78f4f85d52489a5671c92f0d3e72224\", \"live\": true, \"id\": \"xe9f54f39\"}", "{\"sha\": \"a7c4332da580e4cae87aa2a0ec1c0cd22d22720c\", \"live\": true, \"id\": \"xb9a9d7a1\"}", "{\"sha\": \"5c8e72f07a97d89243002f4af9ef9a2ac00cf76f\", \"live\": true, \"id\": \"x5619cc92\"}", "{\"sha\": \"113724f4abcb1e701469dee80370177922d63fe1\", \"live\": true, \"id\": \"xeb21874f\"}", "{\"sha\": \"f48eb76d0bc4b7f6179f34802a6298459e387718\", \"live\": true, \"id\": \"x21070241\"}", "{\"sha\": \"e76a36ecc61672ffb2f4e3150b5601827d4e0d5c\", \"live\": true, \"id\": \"xad192424\"}", "{\"sha\": \"a6a7e269b3b58cfa4717ede680946b3d9a14dfb9\", \"live\": true, \"id\": \"x27ab4f92\"}", "{\"sha\": \"2a2289b1c7cb510323181dfc6524468106a7872c\", \"live\": true, \"id\": \"xbd600d79\"}", "{\"sha\": \"6783fc0237270ea8f7ff7e149347f0f95cb4ee62\", \"live\": true, \"id\": \"x924d7fdd\"}", "{\"sha\": \"0663a70191e63498970a1743b26018141bb598d1\", \"live\": true, \"id\": \"x87776355\"}", "{\"sha\": \"61aea2bfac7c62a175f4ce51b2a78c1fca5a9e78\", \"live\": true, \"id\": \"xf0e096ad\"}", "{\"sha\": \"4088fc734608dd4513769d91a35d724d69fa79c2\", \"live\": true, \"id\": \"xb79ff726\"}", "{\"sha\": \"a5108ee20c4ab7fe34fd788ab0c77400c1c6efa8\", \"live\": true, \"id\": \"x84d100b5\"}", "{\"sha\": \"5c8a57e5c0953aaa0678f760877b6339d2e024f8\", \"live\": true, \"id\": \"x3574aac6\"}", "{\"sha\": \"f660dfbff9cec309862f72c2db8f196359b710c9\", \"live\": true, \"id\": \"x6b1fc882\"}", "{\"sha\": \"5a5bcf714a1e89ea50a2fbcbb1d0a719bc7f8ea5\", \"live\": true, \"id\": \"x27bf00b3\"}", "{\"sha\": \"37ff836069a5238ce714ed148446012a25aa4c07\", \"live\": true, \"id\": \"xaafff4dd\"}", "{\"sha\": \"0509e003ac60fa110140b187ff78dd920d65633c\", \"live\": true, \"id\": \"x98ceddc7\"}", "{\"sha\": \"9053df43a2107ad71681064bb84aaa152d4eb115\", \"live\": true, \"id\": \"x44923cee\"}", "{\"sha\": \"a8729db4962c27bc1a402e6f65ce8c60d3aa7766\", \"live\": true, \"id\": \"x8b86bc5c\"}", "{\"sha\": \"eaccca1b7b9109f797a397f781c3d66110fceb44\", \"live\": true, \"id\": \"x6b1a0abc\"}", "{\"sha\": \"fb5e39d7f3be0bcfedef9bf2a90e3c48e334cf52\", \"live\": true, \"id\": \"x1bf9700c\"}", "{\"sha\": \"ef6d34522ac7931dc73bede12107db8543209b56\", \"live\": true, \"id\": \"x8e15de80\"}"], "description": "", "basepoints": 10.0, "slug": "newtons-laws", "kind": "Exercise", "name": "newtons-laws", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "newtons-laws"}, "count-to-100": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-numbers-120/count-to-100/", "id": "count-to-100", "display_name": "Numbers to 100", "title": "Numbers to 100", "all_assessment_items": ["{\"sha\": \"7237bf7f3cfbec2c930b0669ba5f22fa6d20214c\", \"live\": true, \"id\": \"xdb6d4dc9624f0769\"}", "{\"sha\": \"5c728f02f0b79997b9f89de076d8a4975c981b57\", \"live\": true, \"id\": \"x37e00d8a1b3f330d\"}", "{\"sha\": \"1b3d355f87896c6862337db0c072919fcae0d9b4\", \"live\": true, \"id\": \"x53f0c415af612d3f\"}", "{\"sha\": \"9f8eaf6df6778db574ca98e8cca30a4a3f623a06\", \"live\": true, \"id\": \"x41037fddf192efce\"}", "{\"sha\": \"f31ab95316804623c1297f2184c759f2d064c3ab\", \"live\": true, \"id\": \"xa78a565658f0a288\"}", "{\"sha\": \"1da98cdee441356d60a12afa108b7bbc9d4e6a9a\", \"live\": true, \"id\": \"x0293d88f125c93e2\"}", "{\"sha\": \"97fc104b7d841cf4f4aa2bb3143f6e043188f39c\", \"live\": true, \"id\": \"xfcdbee7f2d980193\"}", "{\"sha\": \"109ee09e991bfa41f5ce81091ddd7ff32215a9f3\", \"live\": true, \"id\": \"xe1a983eb6c90abc6\"}", "{\"sha\": \"bd48775f013c5d1e27ebbff6046c79a59755a373\", \"live\": true, \"id\": \"x6c066f22fe3c32c9\"}", "{\"sha\": \"58e495d7e41668c10d7d6e829110bc6556791cf2\", \"live\": true, \"id\": \"x69dae30e85c2c0b7\"}", "{\"sha\": \"e6c97516af31f3b5be8f34f0b422c595e571978a\", \"live\": true, \"id\": \"x83e816580f82fd5f\"}", "{\"sha\": \"954e63d2b49b2fe124d434bbb1202762fca2608a\", \"live\": true, \"id\": \"xbf6a55fa2ca0a899\"}", "{\"sha\": \"ac1403cd5ebd696f330409b3e67077ea49791776\", \"live\": true, \"id\": \"x9b54f0a9d97e652a\"}", "{\"sha\": \"70effce750bd8343822124f612f97b1440a03b3f\", \"live\": true, \"id\": \"xc31e8609fc03af5a\"}", "{\"sha\": \"6cdcc563e24d1eb04d251000bdc78a5ba2458673\", \"live\": true, \"id\": \"x5f11fefa7d794a43\"}", "{\"sha\": \"35feae22628f627c80e15ac2119f3ed17de45aae\", \"live\": true, \"id\": \"xab6c2ce9359dbe2d\"}", "{\"sha\": \"d8fc6a2d816cddeec8006cc4beebc41e44ca7a06\", \"live\": true, \"id\": \"xaa7bbdad2301b96d\"}"], "description": "Practice finding missing numbers between 0 and 120.", "basepoints": 10.0, "slug": "count-to-100", "kind": "Exercise", "name": "count-to-100", "seconds_per_fast_problem": 4.0, "prerequisites": ["counting-out-1-20-objects"], "exercise_id": "count-to-100"}, "evaluating-piecewise-functions": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/piecewise_functions/evaluating-piecewise-functions/", "id": "evaluating-piecewise-functions", "display_name": "Evaluating piecewise functions", "title": "Evaluating piecewise functions", "all_assessment_items": ["{\"sha\": \"40af14cb73ab396ed7da0b4370bf73ed99bb8fae\", \"live\": true, \"id\": \"xb62aab3af019d650\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"30023b5504cb717124fe00fa1fc50ad60a26561f\", \"live\": true, \"id\": \"xe605de6e1f15fc4a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9747330f86e40177f74da0a70cc56d0591a39b44\", \"live\": true, \"id\": \"x9817ecb5d9332765\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83b1f96628e74b38028a48ff9a0e522ca208ffb6\", \"live\": true, \"id\": \"x5f7c5faf5a2f4d0a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"237a0a860b3ce70ae6c581bd230456c72c0142d4\", \"live\": true, \"id\": \"xfe3b2376d40e62f1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"626c54464ee46e03547ed759fe4a01dace62af6e\", \"live\": true, \"id\": \"x3b0b223d50d4c262\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a8a3d35aa910ffc7f3f3aabef1ab747564bffc46\", \"live\": true, \"id\": \"x01e0b6d08ac0e5bb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"12a1faa8930e1c26c59417b8b312d13d1534a583\", \"live\": true, \"id\": \"x424d243d369631ee\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9b55aef98fe081540e69d7870688dbd8d81cb177\", \"live\": true, \"id\": \"xfa7361c0579fe879\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4d858283074a9e064a609474b5cfa8dde2b12fcc\", \"live\": true, \"id\": \"xdbfe70c07c0abf62\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b3061d1ab575e403765ef35b47ee1148629b7d53\", \"live\": true, \"id\": \"x8099429bbc9f248d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9968d1c5d2ead529aecc4470464a8612f0154663\", \"live\": true, \"id\": \"x79c968c7021d78d7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9fbe927cc58e887c6ee11831d3f0b4d9ac5ce5a7\", \"live\": true, \"id\": \"x7253f1fcdd5f4e74\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e4e9701703027f2b7aac2b046b25e2c73d183ef0\", \"live\": true, \"id\": \"xa98ac9df0a335bd0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"79d43604994189f76f28d08080d17583090d9add\", \"live\": true, \"id\": \"x5698f4580eca48fa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f28eca4bb167a9a81a780460c3d584ba8a49478f\", \"live\": true, \"id\": \"x6e61a34052a2f428\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b114a0a20257de0f83aeecbfeb6d784bbe9ef6bd\", \"live\": true, \"id\": \"xf33c316065e1d1d6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1f6b88ae99f6e8194a54fd3b7dc39117a2e417ac\", \"live\": true, \"id\": \"x3a689306807ec27c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"42e5756210d96a3ced9d34d2ad770be643b76b60\", \"live\": true, \"id\": \"xf784e9f776966fed\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3db50e88beb6aa444ae48b8bf2c6642c50473e4a\", \"live\": true, \"id\": \"x2fba6369cff89239\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Evaluating piecewise functions", "basepoints": 10.0, "slug": "evaluating-piecewise-functions", "kind": "Exercise", "name": "evaluating-piecewise-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["domain-of-algebraic-functions"], "exercise_id": "evaluating-piecewise-functions"}, "calculating-the-mean-from-various-data-displays": {"uses_assessment_items": true, "id": "calculating-the-mean-from-various-data-displays", "display_name": "Calculating the mean from data displays", "title": "Calculating the mean from data displays", "all_assessment_items": ["{\"sha\": \"c1309155f062898bafa4bb17466912b99d0bbd6a\", \"live\": true, \"id\": \"x27c8726a9a5e981a\"}", "{\"sha\": \"77c0c034d577e0fd8fd985f497c903794b2ef6c5\", \"live\": true, \"id\": \"x8f95d1d4c22a3e96\"}", "{\"sha\": \"255c83050f5dae777be1fb6b1dbb706c53cde38a\", \"live\": true, \"id\": \"x24f98167ac920bf1\"}", "{\"sha\": \"e2d72a9ddc7635887f74b136048de12746934852\", \"live\": true, \"id\": \"x176dc7b1024c4536\"}", "{\"sha\": \"1f984d3e33a60d36328b0d309cfd610abb8b5bd5\", \"live\": true, \"id\": \"x8e16c9722553d43b\"}", "{\"sha\": \"17087684aa8c388d8bb1dd28911ae4df0d2934ad\", \"live\": true, \"id\": \"x849d322199a11644\"}", "{\"sha\": \"2eb1c63ef30afffe6e3c3956301914e8d61b248a\", \"live\": true, \"id\": \"xe1cca2942efaee77\"}", "{\"sha\": \"79b8dc768b44405c7c6fa71e7cacf7a1aecdace3\", \"live\": true, \"id\": \"x3b23ab4479e78201\"}", "{\"sha\": \"d602c9b16292c9681242e6ba73fe8677097ae9a4\", \"live\": true, \"id\": \"xca6637292cbef860\"}", "{\"sha\": \"2e3d055baa904cc849d7346a5e468a2f9a927573\", \"live\": true, \"id\": \"xfad7e70a273db751\"}", "{\"sha\": \"6cbc6d4ce9a9cfe329105cce97d4e89a3d20229c\", \"live\": true, \"id\": \"x5dc099ff03f52b9e\"}", "{\"sha\": \"d13aa26c687e82f083c440b9c4a86d34604e8478\", \"live\": true, \"id\": \"x7e3812e476c39b21\"}", "{\"sha\": \"eb46c1f5cdf3846ace8a47cf8ff75e5c61bc379d\", \"live\": true, \"id\": \"xbb618582cbf1434e\"}", "{\"sha\": \"7b82fec52ed335e8c5666a4eeeb80a22e0def85f\", \"live\": true, \"id\": \"x27821e46dfaee5b8\"}", "{\"sha\": \"100076e55642631e8143ee84c19acc773a12a694\", \"live\": true, \"id\": \"xed5c5306520604cc\"}", "{\"sha\": \"923a32bdc9f42d6765f2f661b3c5aa7924e8a7fa\", \"live\": true, \"id\": \"x8ceeec94766ecb45\"}", "{\"sha\": \"876c3e2cad836e60a42f92888bada38740410577\", \"live\": true, \"id\": \"x044ae18be8b6477a\"}", "{\"sha\": \"57fae177fab8da7d5a43f3524eb5bbed8819a0de\", \"live\": true, \"id\": \"x6adda1c4fec0e23d\"}", "{\"sha\": \"de0e3d2d4caf898c08a3aa90e6cfd69bdb4e97f5\", \"live\": true, \"id\": \"xe01daa60c463a447\"}", "{\"sha\": \"2e277f84cacef2fb2de60d2bdf14677163f4694b\", \"live\": true, \"id\": \"xdf76b574c9ee52fc\"}", "{\"sha\": \"1316db932f8de1a05d6701e6fc8cb1fb7158c200\", \"live\": true, \"id\": \"x4a31455ea3fcc5ae\"}", "{\"sha\": \"9f8d870a876bb2d39800eff05ae1a108ac1c3f05\", \"live\": true, \"id\": \"x1d54b0de42217c73\"}", "{\"sha\": \"602ae07d711a95426d92d6cde894fae3cacad61e\", \"live\": true, \"id\": \"xa5361cf80d7b1b71\"}", "{\"sha\": \"4dbf0386e74e48bbe3cd0961bdf1d674321d208b\", \"live\": true, \"id\": \"xa57f84f7f2864708\"}", "{\"sha\": \"d31d58b9809757b46bd98d95d4af3f7fc797453b\", \"live\": true, \"id\": \"x8bc8143effd496e1\"}", "{\"sha\": \"f4a60366888c256d3bcdc16872c17c8a16f19612\", \"live\": true, \"id\": \"xc333aca52e7050d7\"}", "{\"sha\": \"1fa09d35862e50af574c00e743fed3fdf0b8f778\", \"live\": true, \"id\": \"x5da08fcbcbfd0cce\"}", "{\"sha\": \"0ef784676064d8719cf6953ff2e38a8eac9d21c1\", \"live\": true, \"id\": \"x677e89dedaf00cb7\"}", "{\"sha\": \"daab2c7998f9f61524a5cdb8ceb6e4e6aa19fbdf\", \"live\": true, \"id\": \"x9bfa0738414de7e1\"}"], "description": "Practice computing the mean of data sets presented in a variety of formats, such as frequency tables and dot plots.", "basepoints": 10.0, "path": "calculating-the-mean-from-various-data-displays/", "slug": "calculating-the-mean-from-various-data-displays", "kind": "Exercise", "name": "calculating-the-mean-from-various-data-displays", "seconds_per_fast_problem": 4.0, "prerequisites": ["reading-histograms", "calculating-the-mean", "analyzing-with-dot-plots"], "exercise_id": "calculating-the-mean-from-various-data-displays"}, "linear-non-linear-functions": {"uses_assessment_items": true, "id": "linear-non-linear-functions", "display_name": "Linear and nonlinear functions", "title": "Linear and nonlinear functions", "all_assessment_items": ["{\"sha\": \"cae1f5c3f23aaa2fc8b4dc747ae0fbe4026a5f58\", \"live\": true, \"id\": \"xed9f54588c2b606e\"}", "{\"sha\": \"f275f97f12ecb1cd12a883931a3970b56a966c0a\", \"live\": true, \"id\": \"xbfa626388dfb4b06\"}", "{\"sha\": \"b5241ecee11a448b03d042a4aa5256c3534f7c1f\", \"live\": true, \"id\": \"x366b9891f641ada6\"}", "{\"sha\": \"f5c99d23aae81e60e50b76011fac0a93f5610b1b\", \"live\": true, \"id\": \"x5a9f69bb16fbbe89\"}", "{\"sha\": \"7182d609a7bca9e4ab42e1065fba60b3e75e9ff5\", \"live\": true, \"id\": \"x1c4b01b198e62d99\"}", "{\"sha\": \"68e8c1058cf51c8c5c2a068ee53ee95d6de52618\", \"live\": true, \"id\": \"x2c7c65c5007f3e86\"}", "{\"sha\": \"59a4fe48d7415c378f68f7205e76a210887f6c91\", \"live\": true, \"id\": \"x9c5e3d316db88b54\"}", "{\"sha\": \"fb6812f9f2889931358462ae48e0e66faa3312a1\", \"live\": true, \"id\": \"xdbea83699b1b4c95\"}", "{\"sha\": \"d0a2d3f9c9b8537aa6e87c25baf310448f68b01f\", \"live\": true, \"id\": \"xefbbb5936be7c00d\"}", "{\"sha\": \"f251e913abba191d4664e3eb01db9079c4201c4b\", \"live\": true, \"id\": \"x7678d3b677e98908\"}", "{\"sha\": \"d723656ec379c452ed04539f01ba96710f86dc04\", \"live\": true, \"id\": \"xa05b6ea4627330f8\"}", "{\"sha\": \"555ac0b24ed59f5efe04f36651aa034753ca283a\", \"live\": true, \"id\": \"x77cbb12dc57571be\"}", "{\"sha\": \"33d2f61f8185c04b75b5d08b458aba6b6283a5cc\", \"live\": true, \"id\": \"xadc7040e1bb1af40\"}", "{\"sha\": \"5c0cb7eae589f26ed42810764ef9ee6a85756974\", \"live\": true, \"id\": \"xdd5320f73999a246\"}", "{\"sha\": \"79a621fd04ea0083b804d3710dda37aceac73726\", \"live\": true, \"id\": \"xa225f84eff3cfbab\"}", "{\"sha\": \"ee4bf63325ce6296bb3c208cbdda0ea9844482dd\", \"live\": true, \"id\": \"xb93284c089153fcc\"}", "{\"sha\": \"0c38b00bb6b1a3846a018103f60bdf569dca56a7\", \"live\": true, \"id\": \"x0d382349a20a6caa\"}", "{\"sha\": \"36cfc85613e94fc1c277d4d1592e47d042fc46ac\", \"live\": true, \"id\": \"x51babc058d5c17c9\"}", "{\"sha\": \"9d49df394110282e2f25d4be40313bd7d74fe391\", \"live\": true, \"id\": \"x3dd3a52b\"}", "{\"sha\": \"31abad09ef3821da583297cd39f5a25f39262685\", \"live\": true, \"id\": \"xe00cb9aea787e075\"}", "{\"sha\": \"0f77f464fd562c43057bdb96ae0cdde1ac09f15a\", \"live\": true, \"id\": \"xe832fcc91a758859\"}", "{\"sha\": \"f79a66528c1fc4c1a979085381610f94bdd30044\", \"live\": true, \"id\": \"x3425c019b11c4d00\"}", "{\"sha\": \"f0f14b5387c462d116a03368a478df761fd5548f\", \"live\": true, \"id\": \"x7f189ed117945543\"}", "{\"sha\": \"0b9a38a0307a56dfd6b79441644da225b8dea6e2\", \"live\": true, \"id\": \"x9fe44fb74cce63b3\"}", "{\"sha\": \"79e2122c83c8810a3fba97c148dc4bc03fe1eb22\", \"live\": true, \"id\": \"x366f3a6af2b66fb5\"}", "{\"sha\": \"b0d87b74f687177de17e6a317a0b8fd8e296ec3c\", \"live\": true, \"id\": \"x38e8b714a790297c\"}", "{\"sha\": \"8adbfdae686089e8c5d329d0f395cdf8c6351cde\", \"live\": true, \"id\": \"x18358400\"}", "{\"sha\": \"0f7356d2991a0484eca9b285b920c75a8f3a7ea1\", \"live\": true, \"id\": \"x317c459c28d3fb53\"}", "{\"sha\": \"9ee27d7b60ebb53623f362abd68fa9f8558869c8\", \"live\": true, \"id\": \"xb1218f261ae1ee46\"}", "{\"sha\": \"37b3f1ae2dba8fd924dae91386364191609c3175\", \"live\": true, \"id\": \"xcf6b1fbff36fe54b\"}", "{\"sha\": \"bfd3bd41ab7541216915920f7406ea7f02e3102f\", \"live\": true, \"id\": \"xc242e81e1706e84a\"}", "{\"sha\": \"02cb39eb82e8cac79ff7ff4eca46926ae2193f5a\", \"live\": true, \"id\": \"x5a1b207f66c13606\"}", "{\"sha\": \"5b9aeadc011754afba9c1ab1d91e9dac3ecfdcb5\", \"live\": true, \"id\": \"x6b4c5b8cf7cf1bbf\"}", "{\"sha\": \"880daf8cfd12fbb247b29dbc138480b0a656e2f0\", \"live\": true, \"id\": \"xc0306a31012896cf\"}", "{\"sha\": \"c82e80e61a3618b158bb3ecff7a7b1092a558730\", \"live\": true, \"id\": \"xb551b3d0d7c96383\"}", "{\"sha\": \"b9528702f82e95b815b14fbff0ad9e1cde67215e\", \"live\": true, \"id\": \"xe35f88fdc0b3dd32\"}", "{\"sha\": \"05d078a3ff98dc65cdb4d77815b5a5f4bf4158e9\", \"live\": true, \"id\": \"x965572453c98814d\"}", "{\"sha\": \"749f828d873fd2bf69d14e5c7c00b93e76ae3a01\", \"live\": true, \"id\": \"x032996f0289db831\"}", "{\"sha\": \"3466893302af499b03f67f8577ac8577c7de030a\", \"live\": true, \"id\": \"x08ebf49899eb176e\"}", "{\"sha\": \"f8ebf4ff003ea5506b9640da100ed37fc3ea40d7\", \"live\": true, \"id\": \"xc1b82b8a8b5d0cc4\"}"], "description": "", "basepoints": 13.0, "path": "linear-non-linear-functions/", "slug": "linear-non-linear-functions", "kind": "Exercise", "name": "linear-non-linear-functions", "seconds_per_fast_problem": 6.0, "prerequisites": ["constructing-and-interpreting-linear-functions"], "exercise_id": "linear-non-linear-functions"}, "applications-of-hard-soft-acid-base-theory": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/applications-of-hard-soft-acid-base-theory/", "id": "applications-of-hard-soft-acid-base-theory", "display_name": "Applications of Hard-Soft Acid-Base theory", "title": "Applications of Hard-Soft Acid-Base theory", "all_assessment_items": ["{\"sha\": \"8f831fc80fdb20cfee474397b0e74c21aeea1da0\", \"live\": true, \"id\": \"x2bf4cd70e5d865a4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6501466fb28953ef83ea2a258ba1514c090279d0\", \"live\": true, \"id\": \"x43384299db2712f4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"dc7c96334ead08f50ea6ab7703a55145eac3cc06\", \"live\": true, \"id\": \"x52cd810850d5e6c5\", \"perseus_api_major_version\": 3}", "{\"sha\": \"00a4a560989508dc3f9a0d0a1b13c665515ecd94\", \"live\": true, \"id\": \"x52c94d3bd5e4a6de\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0461cd9f982611b64e3848da51af70b502e9d4ba\", \"live\": true, \"id\": \"xcfbe7bf763e77f08\", \"perseus_api_major_version\": 3}"], "description": "Questions related to the HSAB theory", "basepoints": 10.0, "slug": "applications-of-hard-soft-acid-base-theory", "kind": "Exercise", "name": "applications-of-hard-soft-acid-base-theory", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "applications-of-hard-soft-acid-base-theory"}, "interpreting-scale-drawings": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-scale-drawings/interpreting-scale-drawings/", "id": "interpreting-scale-drawings", "display_name": "Interpreting scale drawings", "title": "Interpreting scale drawings", "all_assessment_items": ["{\"sha\": \"8e00559e0340d9b78b15e45ce329e619274dd5d0\", \"live\": true, \"id\": \"x64ea61694368b4fa\"}", "{\"sha\": \"b523244ec5d3554d407a8b3feb6eebbf8b86b9dc\", \"live\": true, \"id\": \"x32e4e4c6f899cb5b\"}", "{\"sha\": \"57e24fb80a3448386c77152dea9a4ceb06f427aa\", \"live\": true, \"id\": \"xc9db9e2a04128f2e\"}", "{\"sha\": \"1bd0a0c6699f2803cb1e7c7b49c6d54a0ad77bdd\", \"live\": true, \"id\": \"x4c8e1681067cd6b5\"}", "{\"sha\": \"a8983d5e7d3164408e6f895342e3874764199869\", \"live\": true, \"id\": \"xc24217cad5d6b92f\"}", "{\"sha\": \"507182d6d3e439288d49ed664137693333bcd51a\", \"live\": true, \"id\": \"x44212bbe2c89181c\"}", "{\"sha\": \"0d3350cac84d134be663aaad975f01797362ab53\", \"live\": true, \"id\": \"x89aff840696b91bd\"}", "{\"sha\": \"dbcc5d6d71f5495d5f8b069e8e32c32716b992da\", \"live\": true, \"id\": \"xf6aa44976f9b71ca\"}", "{\"sha\": \"317a76c7e2cd027bafdc38556e3b1eeb12c05ec1\", \"live\": true, \"id\": \"x0c60ae77b7b47d09\"}", "{\"sha\": \"c213ef76642b3b9d3219d01951aad953bbcaaa65\", \"live\": true, \"id\": \"x788f387456b0e5c5\"}", "{\"sha\": \"ea21fc351700528484232ac29a0933caa0882544\", \"live\": true, \"id\": \"x5c4c62ddc8a1e25c\"}", "{\"sha\": \"e0d845f1f405856062cd81adc1ed4962935d8823\", \"live\": true, \"id\": \"x5b945cd51cc9e938\"}", "{\"sha\": \"90453373db1b1c6b03173b0c2c294b5e63df74b0\", \"live\": true, \"id\": \"x555cb9ba10e602ff\"}", "{\"sha\": \"1622b0f48b865d37e048ac2005a87d2502121b11\", \"live\": true, \"id\": \"x68dbcdcfbcd2ef2d\"}", "{\"sha\": \"a0067cf7c1b97c94fa1ed78446207eb71811cbdd\", \"live\": true, \"id\": \"xdf626f15bff502da\"}", "{\"sha\": \"deba41d12e6a163e6516e10dcbc5d19967f18771\", \"live\": true, \"id\": \"xa42e97e370f33bc0\"}", "{\"sha\": \"08139f4f4effca8dd791774cfe523036a401733d\", \"live\": true, \"id\": \"xb0005f10afd25781\"}", "{\"sha\": \"ca72424a9be14437bc8adde397c14348c4f7d1da\", \"live\": true, \"id\": \"x467b30908be14fb2\"}", "{\"sha\": \"d58c5f1b3bf0ec131fa2700ed25ffcbcf99bcca9\", \"live\": true, \"id\": \"xc26c47880b0895de\"}", "{\"sha\": \"d8dd04de3951568d93b5b555b0ded4d97ce4f120\", \"live\": true, \"id\": \"xc0dd9c80533cee80\"}", "{\"sha\": \"ba801d1dbb888def8f0b457f2d31fc5f4980a41e\", \"live\": true, \"id\": \"x649be0da570aa580\"}", "{\"sha\": \"6b9d07f5d6cecc9240970ec7442722f0ab7238c2\", \"live\": true, \"id\": \"xc700dc86cd38a087\"}", "{\"sha\": \"29d1625254b997c2f6077e406afb926a3f4a3890\", \"live\": true, \"id\": \"xdbf7fe6ce399a3d6\"}", "{\"sha\": \"d61d99ec871cf817d4c51a7c91a3e9f97eeb1bcf\", \"live\": true, \"id\": \"x5aec10666a231afa\"}", "{\"sha\": \"6b00ed90c906ea2bd8e65aaa70f5447ba838e1dc\", \"live\": true, \"id\": \"x63d61e3d94f6347b\"}", "{\"sha\": \"abb5f355536224f90d2370e207ac97c9c273b95a\", \"live\": true, \"id\": \"xf8d14b2eb06e2081\"}", "{\"sha\": \"1ec3c81ee6648b7304a92e2bff93b97b71ad6d63\", \"live\": true, \"id\": \"xeba55bcfb33e1389\"}"], "description": "", "basepoints": 23.0, "slug": "interpreting-scale-drawings", "kind": "Exercise", "name": "interpreting-scale-drawings", "seconds_per_fast_problem": 26.0, "prerequisites": ["proportions_1"], "exercise_id": "interpreting-scale-drawings"}, "find-a-missing-value-given-the-mean": {"uses_assessment_items": true, "id": "find-a-missing-value-given-the-mean", "display_name": "Find a missing value given the mean", "title": "Find a missing value given the mean", "all_assessment_items": ["{\"sha\": \"2f13ed6f40fde25d600de24e86eb84681546eb1f\", \"live\": true, \"id\": \"x85b75caddeae1ee6\"}", "{\"sha\": \"6ed35d0424c405c69879a5d571e5bc6a0161865a\", \"live\": true, \"id\": \"x3bc91e56e1a580f5\"}", "{\"sha\": \"5fa40b977966a20369cc942779c6aa298cd8317d\", \"live\": true, \"id\": \"xe6abfbb5c4d12807\"}", "{\"sha\": \"bdb8a4967e60aa3264fe6b5696667d1dcf9907fd\", \"live\": true, \"id\": \"xcbd97a2e340ec345\"}", "{\"sha\": \"049dc4e8cf2d9ebe364dbc564837d96244ea1a08\", \"live\": true, \"id\": \"x18fced81e6349aee\"}", "{\"sha\": \"00c8134841972bc3c749d25714dd6c7a059da286\", \"live\": true, \"id\": \"xd19ec7c0784193d6\"}", "{\"sha\": \"20065d45657532759885567e7eeb57f6286d1d1b\", \"live\": true, \"id\": \"x81a834c8dc720e81\"}", "{\"sha\": \"c2b371ebc7e27103879ed921a9da6f5c9cbea5f5\", \"live\": true, \"id\": \"xda65aeba79076ea9\"}", "{\"sha\": \"cfdb5f23f1a646174940d8aa67e44dce865d8358\", \"live\": true, \"id\": \"xfbbbbed1086ae835\"}", "{\"sha\": \"c8ad614c946e78ae233697cfc47967c753348161\", \"live\": true, \"id\": \"x8a7f2eb2d9ab60d3\"}", "{\"sha\": \"685963bf8b3e57a6cfd05ad9b0325b0fcbf9f61c\", \"live\": true, \"id\": \"x7d57bb779ebdd822\"}", "{\"sha\": \"d3fc769b5c0e17a4119c67671ee33f8d1e05ec01\", \"live\": true, \"id\": \"x61e8a162cfc21f80\"}", "{\"sha\": \"c1b5f438330f06cf2c21fc4435931ad8ff66a3df\", \"live\": true, \"id\": \"xf74f80dca7477d8c\"}", "{\"sha\": \"2e0a4b041173002d6987ed316397595478dd6913\", \"live\": true, \"id\": \"x10d88359ed6a102e\"}", "{\"sha\": \"092870d6d15e0b6585ed71faf58b692377ad54f2\", \"live\": true, \"id\": \"x3fa8afa0dfe2af7d\"}", "{\"sha\": \"4fefac7ce6e77e9de235dde532c2f83ef364c585\", \"live\": true, \"id\": \"x640a5ecb18ab1c99\"}", "{\"sha\": \"b8e15f39544a39cbd36f5f0735598d56eb618ddc\", \"live\": true, \"id\": \"x489ba0bb58d7b65a\"}", "{\"sha\": \"ccbb8a402f711b58cdd607eb53e6e9b4205b1548\", \"live\": true, \"id\": \"xd4c523d6433ee575\"}", "{\"sha\": \"ad0b25920c8d982bd876f4d76af6af870bd73410\", \"live\": true, \"id\": \"x6c88f90afec8afb9\"}", "{\"sha\": \"071120cdf69877688fd149bec86074b1c2156bc1\", \"live\": true, \"id\": \"xd16084d16fd9f524\"}", "{\"sha\": \"4ea0497eddd954161a107ccb7070fe5747ad3194\", \"live\": true, \"id\": \"xa6ce4e172697943d\"}"], "description": "Practice solving some more challenging problems where you are given the mean and asked to find a missing piece of data from the original data set.", "basepoints": 10.0, "path": "find-a-missing-value-given-the-mean/", "slug": "find-a-missing-value-given-the-mean", "kind": "Exercise", "name": "find-a-missing-value-given-the-mean", "seconds_per_fast_problem": 4.0, "prerequisites": ["calculating-the-mean"], "exercise_id": "find-a-missing-value-given-the-mean"}, "amino-acids-and-proteins-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/amino-acids-and-proteins1/amino-acids-and-proteins-questions/", "id": "amino-acids-and-proteins-questions", "display_name": "Amino acids and proteins questions", "title": "Amino acids and proteins questions", "all_assessment_items": ["{\"sha\": \"5d9a97acf67891d44cf373423b4c6f774d62f0f3\", \"live\": true, \"id\": \"x0c6263f267484853\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d66b763a2450a2dc64e70ca56ccd660cc87628dd\", \"live\": true, \"id\": \"x028574efd0c26e95\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c586734b80288c7892b2f63052f303ec30cc117\", \"live\": true, \"id\": \"xdae78d44e6a9d74e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b25fba7242b566afb4ff5d6262c611d94744a8ac\", \"live\": true, \"id\": \"xa0f2683067d106ac\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7045a5d99bdd6293751d572f39e34f74dd7ea642\", \"live\": true, \"id\": \"xec9b0a70043689b3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"030b04e6cc83ed063d91d3e826a49f084dc2ebe0\", \"live\": true, \"id\": \"xf051d09b670b84e7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dab8f96a3b8c22728cbbd1c72086f8de2aa2b488\", \"live\": true, \"id\": \"x230bfd34a1c16e5e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e8a5b4ea0c7dd38c9591d25d0f51e8526a99e5f8\", \"live\": true, \"id\": \"x20aa8ee59a25dfae\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"678a05ce07bafe9707e4abb1aa312b947ca22a68\", \"live\": true, \"id\": \"x681751717fe4ef54\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d3c217b06cd226ef61e72b686b745702d06cfe3f\", \"live\": true, \"id\": \"x45b6d050c2d13fcd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Amino acids and proteins questions", "basepoints": 10.0, "slug": "amino-acids-and-proteins-questions", "kind": "Exercise", "name": "amino-acids-and-proteins-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "amino-acids-and-proteins-questions"}, "making-inferences-from-random-samples": {"uses_assessment_items": true, "id": "making-inferences-from-random-samples", "display_name": "Making inferences from random samples", "title": "Making inferences from random samples", "all_assessment_items": ["{\"sha\": \"571e8008a63df97e238fd3d62a6c4eb4784ff903\", \"live\": true, \"id\": \"xb21da203f603f90a\"}", "{\"sha\": \"a508a707a163baecfdd1df70ff636ec98b1fdd54\", \"live\": true, \"id\": \"xc609ed5c55b664d6\"}", "{\"sha\": \"2295b53c7a89cbe022c287dc263c82557aa3df91\", \"live\": true, \"id\": \"xc0b6e26d7801eee0\"}", "{\"sha\": \"a80a1bf296a501e2319b56999dcf95fbc53209c7\", \"live\": true, \"id\": \"xa1e54d37a97e87c6\"}", "{\"sha\": \"d69db62f5889ff08366ae893595a7ba1e7d285c5\", \"live\": true, \"id\": \"xf77c9c8f62148a09\"}", "{\"sha\": \"2d9c87d25b2443f26bb2b975e67356f46d46e138\", \"live\": true, \"id\": \"x8cfd62414e7752b3\"}", "{\"sha\": \"a4cd897bd7f09c95c8d0ce2990f9eaafecc2cdfd\", \"live\": true, \"id\": \"x1388a2e6d7727ef7\"}", "{\"sha\": \"eaf12dc872d4bf22354d22132376f31b47d75f88\", \"live\": true, \"id\": \"x29fda621be8c66fb\"}", "{\"sha\": \"69e8ce1b0389befd5396d5030de83df20243cb62\", \"live\": true, \"id\": \"x8f77f943c4ffe649\"}", "{\"sha\": \"e96441a2327881bb7c51ccf8e14056a96d656641\", \"live\": true, \"id\": \"xe264bde43096a694\"}", "{\"sha\": \"ef36898cf40fd38c6468d973fc6212aa8d28ccec\", \"live\": true, \"id\": \"x9b20617a0bb96000\"}", "{\"sha\": \"3c51fd1e36fbc42f0cb815da4ef5733d0b370ef6\", \"live\": true, \"id\": \"xd84831b593baae32\"}", "{\"sha\": \"d53e01999390236043279e3529947b540d9be1fd\", \"live\": true, \"id\": \"xd7904c7c31d1036d\"}", "{\"sha\": \"5ae110af840fb7a7d3302f7d924eeb1333f2331f\", \"live\": true, \"id\": \"x82df8ffa5a0bf1b5\"}", "{\"sha\": \"94dd294c9373a7f4dc15dbfe4e797115e6182e25\", \"live\": true, \"id\": \"xf942cb01758343dc\"}", "{\"sha\": \"834171c9b6eef55dbab0c9d664538ef18e6b6f47\", \"live\": true, \"id\": \"x6495634f2df0f90d\"}", "{\"sha\": \"68871db303ff9a2fd09b5b9661ad4bc249cfb553\", \"live\": true, \"id\": \"x85d4b252a3fdeb50\"}", "{\"sha\": \"c8508c6eb9109d17dd202c71880ce9952cc9f4b6\", \"live\": true, \"id\": \"xd8c7181db6e65e27\"}", "{\"sha\": \"c2b713e0c78687abfa063c83e70f76558df1a798\", \"live\": true, \"id\": \"x96012caac42605ee\"}", "{\"sha\": \"23d73d23988c2237d881aa3deba8bb38ed564c60\", \"live\": true, \"id\": \"xa855b2f636e879db\"}", "{\"sha\": \"aade17df956f85ebf2f6f1bd8a1c87e19eb7c6f8\", \"live\": true, \"id\": \"x36f0583ecab26e40\"}"], "description": "Given a random sample, practice figuring out what can we reasonably infer about the entire population?", "basepoints": 10.0, "path": "making-inferences-from-random-samples/", "slug": "making-inferences-from-random-samples", "kind": "Exercise", "name": "making-inferences-from-random-samples", "seconds_per_fast_problem": 4.0, "prerequisites": ["valid-claims"], "exercise_id": "making-inferences-from-random-samples"}, "markup_and_commission_word_problems": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/percent-word-probs-pre-alg/markup_and_commission_word_problems/", "id": "markup_and_commission_word_problems", "display_name": "Markup and commission word problems", "title": "Markup and commission word problems", "description": "Practice solving word problems involving price markups and commission fees.", "basepoints": 22.0, "slug": "markup_and_commission_word_problems", "kind": "Exercise", "name": "markup_and_commission_word_problems", "seconds_per_fast_problem": 21.0, "prerequisites": ["percentage_word_problems_1"], "exercise_id": "markup_and_commission_word_problems"}, "quiz--acceleration": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/acceleration/bhp-acceleration/quiz-acceleration/", "id": "quiz--acceleration", "display_name": "Quiz: Acceleration", "title": "Quiz: Acceleration", "all_assessment_items": ["{\"sha\": \"96b98052090e005a8e2c7bd14149fa1fe3c32adb\", \"live\": true, \"id\": \"xba167cda4b3b6ef1\"}", "{\"sha\": \"5a7349e77cf3d2261813d193497c6770caed169e\", \"live\": true, \"id\": \"xef1ee24e50dae534\"}", "{\"sha\": \"cea506895f5c9c1d1da87e9a61566b43ef97a700\", \"live\": true, \"id\": \"x316e5475335b9dc7\"}", "{\"sha\": \"1c199a331f6438c282e25cfbb5e5c0eac52030f4\", \"live\": true, \"id\": \"xb27e3f290bf16d3a\"}", "{\"sha\": \"f415b6d478be7cd7fe2efe37999dbee28e5d772e\", \"live\": true, \"id\": \"x674ab660706154d0\"}"], "description": "Quiz 9.0", "basepoints": 10.0, "slug": "quiz-acceleration", "kind": "Exercise", "name": "quiz--acceleration", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--acceleration"}, "nclex-rn-questions-on-bronchiolitis": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-bronchiolitis/", "id": "nclex-rn-questions-on-bronchiolitis", "display_name": "NCLEX-RN questions on bronchiolitis 1", "title": "NCLEX-RN questions on bronchiolitis 1", "all_assessment_items": ["{\"sha\": \"2db942e2baf9694d0b67d5e6e3ece52a23fc94dd\", \"live\": true, \"id\": \"xd027667ebace4007\"}", "{\"sha\": \"072af87fa7335a7d9ea27b0d6205876e3eb4a5e5\", \"live\": true, \"id\": \"xc0824d91ebfa836f\"}", "{\"sha\": \"1d646d20cc18d58afeb982cc51424a3b4d5692ee\", \"live\": true, \"id\": \"xf60cfdc261fa9f5b\"}", "{\"sha\": \"b1931715ef1804f4e57d5fbeb93762a173387c7c\", \"live\": true, \"id\": \"xf891a671832c46e3\"}", "{\"sha\": \"696c4717e82712de5db8cc8794c4feb09bdda4b1\", \"live\": true, \"id\": \"xe194623a0fd94b8e\"}", "{\"sha\": \"2bc3a902bece2cfc811bead8044090ba9606c18f\", \"live\": true, \"id\": \"xb8b336bceb58b3c9\"}", "{\"sha\": \"0191a0deefc4bd314be4d4144e515e5909134ffb\", \"live\": true, \"id\": \"x6799a031850a2b0b\"}", "{\"sha\": \"8349f6c888edcb8a70876dda135fe85836474b49\", \"live\": true, \"id\": \"x66fc5749ad68dfd4\"}", "{\"sha\": \"3206251f2de921dabe7b03315fa83f2b0ad59e64\", \"live\": true, \"id\": \"xd4800295af0928b0\"}", "{\"sha\": \"c9a407d4f4e786bdb1b43f73601820e3f3bd6f61\", \"live\": true, \"id\": \"x06a2d21e42c2d3aa\"}"], "description": "NCLEX-RN questions on bronchiolitis", "basepoints": 10.0, "slug": "nclex-rn-questions-on-bronchiolitis", "kind": "Exercise", "name": "nclex-rn-questions-on-bronchiolitis", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-bronchiolitis"}, "thin-lens-quiz-passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/thin-lens-quiz-passage-1/", "id": "thin-lens-quiz-passage-1", "display_name": "Hyperopia and convex lenses", "title": "Hyperopia and convex lenses", "all_assessment_items": ["{\"sha\": \"2a4162cdcf36c61c2f0ab556b12c2d8116bc7609\", \"live\": true, \"id\": \"x8989b037bfd41acc\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f4ef952b631cc898d778b7fd955bf1e9171131eb\", \"live\": true, \"id\": \"x541679a138c3473b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5db037ac303c2afe62c54e90696bfacf80f869bf\", \"live\": true, \"id\": \"x7d587227159a736f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"11da9ebe4ef501f0d69ede1fb40e7d06ae140491\", \"live\": true, \"id\": \"x1594cc3806623c9c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c731a31651611332fd4c1ba8edfe3bfde9404990\", \"live\": true, \"id\": \"x2113950cf1f6d8a9\", \"perseus_api_major_version\": 3}"], "description": "This passage will test your knowledge on lenses", "basepoints": 10.0, "slug": "thin-lens-quiz-passage-1", "kind": "Exercise", "name": "thin-lens-quiz-passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "thin-lens-quiz-passage-1"}, "alexander-mosaic-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/alexander-mosaic-quiz/", "id": "alexander-mosaic-quiz", "display_name": "Alexander Mosaic (quiz)", "title": "Alexander Mosaic (quiz)", "all_assessment_items": ["{\"sha\": \"627d5c081102a56ee5c2b712a386fa25ec943012\", \"live\": true, \"id\": \"x4f122041b0c80fd7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1e2539c9b3a5eb397b8ba76659119d0ce45a0015\", \"live\": true, \"id\": \"xb569f75d096f4579\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"97f4e8457970ce0ba321a357b8da1ebeef8388e1\", \"live\": true, \"id\": \"x5b5eb20841b1aa98\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d89378dc12e7cddae19335f816aeb762cfc08cb\", \"live\": true, \"id\": \"x29e31cb509e5bbae\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b621a506c2065c2337a248532bb9e87e57ffbcea\", \"live\": true, \"id\": \"x5b1d8632f4a73e56\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "alexander-mosaic-quiz", "kind": "Exercise", "name": "alexander-mosaic-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "alexander-mosaic-quiz"}, "mannerism": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/mannerism1/mannerism/", "id": "mannerism", "display_name": "Mannerism", "title": "Mannerism", "all_assessment_items": ["{\"sha\": \"046c5c9964836694d6fe8ba4af79cef68c1ce049\", \"live\": true, \"id\": \"x04aacfb031db2e2a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"394c0be7594c0007ea25922ecf224ae3f8231b2c\", \"live\": true, \"id\": \"x66b1c3d1950e530d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b0aa3a7a1de6ff3d080be09a3774260261f99dde\", \"live\": true, \"id\": \"x9b3afeed01cf9441\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a4872d564d910cdda2d3cc89929ba7e7a8bf37b7\", \"live\": true, \"id\": \"x5aef0c43cd482b86\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"13d1c9671187d1484f8d5b379e03fd6741254ba8\", \"live\": true, \"id\": \"x0cc58c2c98405feb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"abd85d80291f5b3ad3a9de1499b8dd43b3c6f110\", \"live\": true, \"id\": \"x311a35754f847b1e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5acc8ef0cd4dc00838798823aa787238d9329c0e\", \"live\": true, \"id\": \"xda7b5168f90ced5f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf17d2b7807aa95b0e2742d282e35122ed91233d\", \"live\": true, \"id\": \"x11cea4d71340dc7a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "mannerism", "kind": "Exercise", "name": "mannerism", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mannerism"}, "pythagorean_theorem_1": {"uses_assessment_items": false, "path": "khan/math/geometry/right_triangles_topic/pyth_theor/pythagorean_theorem_1/", "id": "pythagorean_theorem_1", "display_name": "Pythagorean theorem", "title": "Pythagorean theorem", "description": "Find the leg or hypotenuse of a right triangle using the Pythagorean theorem.", "basepoints": 21.0, "slug": "pythagorean_theorem_1", "kind": "Exercise", "name": "pythagorean_theorem_1", "seconds_per_fast_problem": 20.0, "prerequisites": ["square_roots"], "exercise_id": "pythagorean_theorem_1"}, "fraction-multiplication-as-scaling": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/multiplying-fractions-pre-alg/fraction-multiplication-as-scaling/", "id": "fraction-multiplication-as-scaling", "display_name": "Fraction multiplication as scaling", "title": "Fraction multiplication as scaling", "all_assessment_items": ["{\"sha\": \"b0e689165d32843c056c128db5c17e8d5e0d8e9d\", \"live\": true, \"id\": \"x083ad969\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"758bf0abf640ad483c0c446494295c46b829263f\", \"live\": true, \"id\": \"x048b5daa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e80d130f8a287c5abe215b1acc2a03645e9173ad\", \"live\": true, \"id\": \"xa1045a26\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b883fc78d328f8f01898692418060bd94ba9077e\", \"live\": true, \"id\": \"x1147e81097a027aa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0e88518eeb3b93a892f73fd3e852926e0e0eedc4\", \"live\": true, \"id\": \"xd60b3299bbd0f5b9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"adbe89d1e020cb82d246ff3456cd823f681feb1b\", \"live\": true, \"id\": \"x8643b8449e38d5d6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f82df3e451904e959c9038ea5feb7e6f2027c838\", \"live\": true, \"id\": \"x95d93d98\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"37064a0b496aac9d46022b3401ce9dafca3b6ba9\", \"live\": true, \"id\": \"x5e19c72a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aa2a11d187050e22ad0595e109775760e0869d53\", \"live\": true, \"id\": \"xf84564c4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"69d21520b4c2e75fe9dfa0dfb2d829413666ccf3\", \"live\": true, \"id\": \"x618883e9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"602d967215728cb7313818c9e4d42d6dc921a31a\", \"live\": true, \"id\": \"xfb9f99f0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2addadb6673534eb5ebc3d4fd92566234135c8bb\", \"live\": true, \"id\": \"xe2ad51de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"61ba8760dfd6dd3fac24e834392626e3b98ae2b4\", \"live\": true, \"id\": \"x17cd0cf9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88dd93df1d1886a36a2b16a96e9bcfc5a7a5ea47\", \"live\": true, \"id\": \"x2ba72251\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c266153734127b6cb35bdd41fb81f5c79b9929f3\", \"live\": true, \"id\": \"x26010464\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"05e806dda4f103b45b05e2f43bedd859e62db99e\", \"live\": true, \"id\": \"x72f15cec\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ffb3e2ca29d82f0e9b4f6ff7108e18581fd87341\", \"live\": true, \"id\": \"x281c6766\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ceef1765963be46e7948f115f24e739b5c0bc865\", \"live\": true, \"id\": \"x37841529\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"14221dc42c4ff511518177c90a9828a356d594f8\", \"live\": true, \"id\": \"x9fa43250\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"12f29edb6759a94ee53842083981603c5ec2ced0\", \"live\": true, \"id\": \"xab58ba05\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"42ac5b97d18f4d2d1c8956782c4beb3b664905f9\", \"live\": true, \"id\": \"x3e71dabb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e814c1e5e5663abcf180847abec783a9e7cbc566\", \"live\": true, \"id\": \"x4d187bad\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0b76ac5573d87cfb354a9781e599e5e6791d33fe\", \"live\": true, \"id\": \"x3387eb87\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9bc0462c5b22017317bf27c34e11869f00cb5f63\", \"live\": true, \"id\": \"x105cd9f2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Interpret how multiplying by a fraction greater or less than 1 affects the product.\u00a0", "basepoints": 16.0, "slug": "fraction-multiplication-as-scaling", "kind": "Exercise", "name": "fraction-multiplication-as-scaling", "seconds_per_fast_problem": 9.0, "prerequisites": ["multiplying_fractions_by_integers"], "exercise_id": "fraction-multiplication-as-scaling"}, "volume_with_unit_cubes_2": {"uses_assessment_items": false, "path": "khan/math/basic-geo/basic-geo-volume-surface-area/basic-geo-volume/volume_with_unit_cubes_2/", "id": "volume_with_unit_cubes_2", "display_name": "Volume with unit cubes 2", "title": "Volume with unit cubes 2", "description": "", "basepoints": 10.0, "slug": "volume_with_unit_cubes_2", "kind": "Exercise", "name": "volume_with_unit_cubes_2", "seconds_per_fast_problem": 4.0, "prerequisites": ["volume_with_fractions", "volume_with_unit_cubes"], "exercise_id": "volume_with_unit_cubes_2"}, "integration-of-rational-functions-by-division-and-partial-fractions": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/integration-techniques/integrate-partial-fraction-expan/integration-of-rational-functions-by-division-and-partial-fractions/", "id": "integration-of-rational-functions-by-division-and-partial-fractions", "display_name": "Integration of rational functions by division and partial fractions", "title": "Integration of rational functions by division and partial fractions", "all_assessment_items": ["{\"sha\": \"dac07e5a33f81e439e4434b73b40fb25c658d391\", \"live\": true, \"id\": \"x941615994408f466\"}", "{\"sha\": \"0ccaee92a16da82064e357591aeceb2e035d92dd\", \"live\": true, \"id\": \"xe843d0287d20cc2c\"}", "{\"sha\": \"85081d05d65fa6c3a0acc5336e18abe87797856b\", \"live\": true, \"id\": \"xa5d28f99fb416fff\"}", "{\"sha\": \"ea3c4c19872570a4774dc7582af288bf982e5b19\", \"live\": true, \"id\": \"xbbe65ff1df7eaf02\"}", "{\"sha\": \"436d55d9251c0f60f23174588a213bf3bfed6d2f\", \"live\": true, \"id\": \"xe5075a44e1b7ab90\"}", "{\"sha\": \"8500ad88d666b8e510cf210d7236145e09b8df73\", \"live\": true, \"id\": \"x550795a5168750e5\"}", "{\"sha\": \"c7837a289c44df04aa0891cc3bdcf6f7edf896b7\", \"live\": true, \"id\": \"xb2aab5d7a83170d1\"}", "{\"sha\": \"5f7bc1dc4aaeae7e9f8b4c83b99d2b19c748970e\", \"live\": true, \"id\": \"x647a9f6b091dba71\"}", "{\"sha\": \"35f02f284a97d7b5e488a3045c4518f5eb05acd7\", \"live\": true, \"id\": \"x4e94a82a6898608c\"}", "{\"sha\": \"6d66db6a0a1c9583cbdbd630532ddb196805f3d7\", \"live\": true, \"id\": \"x8e65141e48e8751b\"}", "{\"sha\": \"96ad556d52823774937988c86cac23973d5a5cd8\", \"live\": true, \"id\": \"xcadfbf9ff84905ad\"}", "{\"sha\": \"590d33c64f899493bd628f10daaa7275e75fab22\", \"live\": true, \"id\": \"xdf351a9917610587\"}", "{\"sha\": \"fab14769eb82d7fbbcdc1ccc8c3d2718dd229138\", \"live\": true, \"id\": \"x8c87edd8ef737da9\"}", "{\"sha\": \"43e9dfe952285df7d587a8432e619e2f91a1cc08\", \"live\": true, \"id\": \"x41ab9550629b059f\"}", "{\"sha\": \"d1c673ff82b2d8b6f32b7f464794b9ddcb0d259e\", \"live\": true, \"id\": \"x3cfae2138fb383fe\"}", "{\"sha\": \"e87e83d19da4c482b1a6b4707a702efd38328361\", \"live\": true, \"id\": \"xd99a9ea871104eab\"}", "{\"sha\": \"409f8d8be6bb72414a1010dcc2e8da66e0dec30c\", \"live\": true, \"id\": \"x0d240c7e13c63984\"}", "{\"sha\": \"336ac2a5ca1ed0fc896a9f5fbc63cf3867536391\", \"live\": true, \"id\": \"x09819a6cd7cfcf96\"}", "{\"sha\": \"3e3bccf25496638f852a795d75f2c815430f46de\", \"live\": true, \"id\": \"x8ba3c29c7d0fb3e5\"}", "{\"sha\": \"458a5d45a1c682997c113a6c05976a3cafa15689\", \"live\": true, \"id\": \"x4aa9adf252efe3b5\"}", "{\"sha\": \"3ff2b399f94a4fd64380fd38732abdfbdd954cfe\", \"live\": true, \"id\": \"x9d81f9fca90e6893\"}", "{\"sha\": \"3fead0f94f84d0059fc1e5e192e5405629befff1\", \"live\": true, \"id\": \"xea8f6d5b65a460c0\"}", "{\"sha\": \"77f453fb7d4f136fbcee1b36680025b02802b784\", \"live\": true, \"id\": \"x7225ca7efb5a24b9\"}"], "description": "", "basepoints": 10.0, "slug": "integration-of-rational-functions-by-division-and-partial-fractions", "kind": "Exercise", "name": "integration-of-rational-functions-by-division-and-partial-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["evaluating-definite-integrals", "partial_fraction_expansion_1"], "exercise_id": "integration-of-rational-functions-by-division-and-partial-fractions"}, "quiz--early-humans": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/early-humans/ways-of-knowing-early-humans/quiz-early-humans/", "id": "quiz--early-humans", "display_name": "Quiz: Early Humans", "title": "Quiz: Early Humans", "all_assessment_items": ["{\"sha\": \"c116c4f693a328dbaecb4493ece60df4ce0ceb67\", \"live\": true, \"id\": \"xe14995e3b87a0a79\"}", "{\"sha\": \"39ef59bb04b363a4e3fc6c16f740f746db79303d\", \"live\": true, \"id\": \"x85938a007a57d018\"}", "{\"sha\": \"811875290dd9c6eb6fd69390a1b742737e0fc372\", \"live\": true, \"id\": \"x01c0b5722e0610a6\"}", "{\"sha\": \"12658e8bb53feb864cd159c1500d210d0142a674\", \"live\": true, \"id\": \"xd2d4abb6b6a3aa74\"}", "{\"sha\": \"24a03f39b478a0616f3433137f80f213548032db\", \"live\": true, \"id\": \"x60c4b00f62094380\"}"], "description": "Quiz 6.1", "basepoints": 10.0, "slug": "quiz-early-humans", "kind": "Exercise", "name": "quiz--early-humans", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--early-humans"}, "fra-angelico-s-annunciation-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/fra-angelico-s-annunciation-quiz/", "id": "fra-angelico-s-annunciation-quiz", "display_name": "Fra Angelico's Annunciation (quiz)", "title": "Fra Angelico's Annunciation (quiz)", "all_assessment_items": ["{\"sha\": \"49c686f67c9be27e9be0cd831631ca5f9bcf4088\", \"live\": true, \"id\": \"xb2e2c1fec84434aa\"}", "{\"sha\": \"975ff3c6e64ffcda8d4e9a138af3b2eac323c93f\", \"live\": true, \"id\": \"xcc688e2b55a338e5\"}", "{\"sha\": \"0e14d077121f105f62fae324a34411af44b9d3b0\", \"live\": true, \"id\": \"xffe9348cf9af4fad\"}", "{\"sha\": \"f4584a01668ff165a8fbcc32739d327a2ea7ff20\", \"live\": true, \"id\": \"xf2b4e3372456a674\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "fra-angelico-s-annunciation-quiz", "kind": "Exercise", "name": "fra-angelico-s-annunciation-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fra-angelico-s-annunciation-quiz"}, "calculating-the-interquartile-range--iqr-": {"uses_assessment_items": true, "id": "calculating-the-interquartile-range--iqr-", "display_name": "Calculating the interquartile range (IQR)", "title": "Calculating the interquartile range (IQR)", "all_assessment_items": ["{\"sha\": \"cd81dccdfb4be0c6edda31f690aeba777d410300\", \"live\": true, \"id\": \"x92cb1adca70e0697\"}", "{\"sha\": \"2d591e909f267451acad7f1ef148ef7cc6e7bd81\", \"live\": true, \"id\": \"xd896700ceff45934\"}", "{\"sha\": \"d69504a1d23b56f7dc28765593e5a0d7d5bb9d07\", \"live\": true, \"id\": \"xa47c80f7d03316c4\"}", "{\"sha\": \"0918cdff989809ee7f62c7f864878c20be380a05\", \"live\": true, \"id\": \"x5972b7076515526e\"}", "{\"sha\": \"af1e726db11ade6c7b431ee2fe5068caeb76a132\", \"live\": true, \"id\": \"x41725db26681ecc5\"}", "{\"sha\": \"a2bafdfc7c86a0d21bf9cb7f162d8095fad6d4fa\", \"live\": true, \"id\": \"x6ced703efa0b0a88\"}", "{\"sha\": \"12074a24959300be0f18fb1bad2d3846468f20df\", \"live\": true, \"id\": \"x82862ba7202e75ff\"}", "{\"sha\": \"dce2cb0b0465189e8bbe96fbc0e63fa6f125dcec\", \"live\": true, \"id\": \"x5bf4de984cc24fba\"}", "{\"sha\": \"722de945bd82a60dc09d4c7a26c3c55abc3e7885\", \"live\": true, \"id\": \"xf4064a1d9d3a5a0b\"}", "{\"sha\": \"7ec9ffb030f40463ead220f24e6462304dae7724\", \"live\": true, \"id\": \"x4560835ed4ac6139\"}", "{\"sha\": \"ffa4d25851657c17fb231eee4d41e7e4a80c8a52\", \"live\": true, \"id\": \"x86cb21ff0e970414\"}", "{\"sha\": \"94dc834161c8a403f5f54cd21d3866e009141409\", \"live\": true, \"id\": \"x05241c78e4abc8d0\"}", "{\"sha\": \"14bff71419695b0ca18580735a4d558e7cc77463\", \"live\": true, \"id\": \"xc03860fdcca022e0\"}", "{\"sha\": \"4a354a1953821ada710fbb9cd79f4f2a6cad0aaf\", \"live\": true, \"id\": \"xfedcffffc817e383\"}", "{\"sha\": \"03e3f9f1a9ce8cdc8a52c20cb0118891fe165b7e\", \"live\": true, \"id\": \"x2b8f703aa78e1b44\"}", "{\"sha\": \"58e20b63dd54c0855cb00dab712d9b62d4dcc773\", \"live\": true, \"id\": \"xf5627d0e677215cc\"}", "{\"sha\": \"8296c6c58b015b2c7d56ad589e444dd7e7686980\", \"live\": true, \"id\": \"x559e442eca8138ff\"}", "{\"sha\": \"51cf561595851637af0004d7f1b3886521a3ad33\", \"live\": true, \"id\": \"x4e46af33b9f3412a\"}", "{\"sha\": \"1b96bee62912d465b81346888678bf50e57c2762\", \"live\": true, \"id\": \"xcf390e2c8b24acc2\"}", "{\"sha\": \"f27cba41b4ee14c5803c06d60b6d05fc0d9bfe0e\", \"live\": true, \"id\": \"xbe86b6eb06722176\"}", "{\"sha\": \"a4782ac180609b26681e0d80e42f842c2811e2d9\", \"live\": true, \"id\": \"xd70d4c5e47e24c83\"}", "{\"sha\": \"4164f98cc7173793bead05ac2a7a34f3131fff7b\", \"live\": true, \"id\": \"x2cbb3f63b1704c7b\"}", "{\"sha\": \"48967d49cdbd592f0380dddf6d739ad2371f026a\", \"live\": true, \"id\": \"x3f3a56118375eb46\"}", "{\"sha\": \"3ae2cefe34efef74ed8aa587aa7b1077505ad9dc\", \"live\": true, \"id\": \"xd00f6b2f075d54a0\"}", "{\"sha\": \"c6979ad52ed1ef934ec66989990aaa9c86ca5dec\", \"live\": true, \"id\": \"xe84325e355c94001\"}"], "description": "Practice finding the interquartile range (IQR) of a data set.", "basepoints": 10.0, "path": "calculating-the-interquartile-range-iqr-/", "slug": "calculating-the-interquartile-range-iqr-", "kind": "Exercise", "name": "calculating-the-interquartile-range--iqr-", "seconds_per_fast_problem": 4.0, "prerequisites": ["analyzing-with-dot-plots", "calculating-the-median"], "exercise_id": "calculating-the-interquartile-range--iqr-"}, "newtonsfirst": {"uses_assessment_items": true, "path": "khan/science/physics/forces-newtons-laws/newtons-laws-of-motion/newtonsfirst/", "id": "newtonsfirst", "display_name": "Newton's first law", "title": "Newton's first law", "all_assessment_items": ["{\"sha\": \"f48eb76d0bc4b7f6179f34802a6298459e387718\", \"live\": true, \"id\": \"x21070241\"}", "{\"sha\": \"2a2289b1c7cb510323181dfc6524468106a7872c\", \"live\": true, \"id\": \"xbd600d79\"}", "{\"sha\": \"6783fc0237270ea8f7ff7e149347f0f95cb4ee62\", \"live\": true, \"id\": \"x924d7fdd\"}", "{\"sha\": \"0663a70191e63498970a1743b26018141bb598d1\", \"live\": true, \"id\": \"x87776355\"}", "{\"sha\": \"61aea2bfac7c62a175f4ce51b2a78c1fca5a9e78\", \"live\": true, \"id\": \"xf0e096ad\"}", "{\"sha\": \"4088fc734608dd4513769d91a35d724d69fa79c2\", \"live\": true, \"id\": \"xb79ff726\"}", "{\"sha\": \"35b5ed420b98f670797572df46b3ca0e39af2293\", \"live\": true, \"id\": \"xa1e045a1\"}", "{\"sha\": \"eaccca1b7b9109f797a397f781c3d66110fceb44\", \"live\": true, \"id\": \"x6b1a0abc\"}", "{\"sha\": \"5c8e72f07a97d89243002f4af9ef9a2ac00cf76f\", \"live\": true, \"id\": \"x5619cc92\"}", "{\"sha\": \"fb5e39d7f3be0bcfedef9bf2a90e3c48e334cf52\", \"live\": true, \"id\": \"x1bf9700c\"}", "{\"sha\": \"ef6d34522ac7931dc73bede12107db8543209b56\", \"live\": true, \"id\": \"x8e15de80\"}", "{\"sha\": \"a7c4332da580e4cae87aa2a0ec1c0cd22d22720c\", \"live\": true, \"id\": \"xb9a9d7a1\"}"], "description": "Testing your conceptual knowledge of Newton's First Law of Motion", "basepoints": 10.0, "slug": "newtonsfirst", "kind": "Exercise", "name": "newtonsfirst", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "newtonsfirst"}, "integumentary-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/integumentary-system/integumentary-system-questions/", "id": "integumentary-system-questions", "display_name": "Integumentary system questions", "title": "Integumentary system questions", "all_assessment_items": ["{\"sha\": \"5ea0855a6c73a1e15f4a2eda21a435d062b0878f\", \"live\": true, \"id\": \"x7b25af9d6876a4fb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"805f8ad99a0979d51734a9dd7e18574c6eea0868\", \"live\": true, \"id\": \"xb3935fc8a17505b1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d9bdd250f2efd7b653830fd96f2a04f5db8c965e\", \"live\": true, \"id\": \"x30d4917438676ca0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5b3bd1590c7a8e96393a8ca3e506420b9d84472e\", \"live\": true, \"id\": \"x996cae6bb2bd4c6b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5828334ef62dc719dec3e6ef7db728ff50beffb1\", \"live\": true, \"id\": \"x5163314764990c89\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f5492147854a8a822359330971513d5fd9e5b70\", \"live\": true, \"id\": \"x964a3e3845269bcf\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de89b5a23cb41ac3a0cbcb1cbff4c7c8bf759a40\", \"live\": true, \"id\": \"xaff669dca02b3e12\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"33ca62ecf40a5e63bf48f82fd7bb89cfa1f4d4a5\", \"live\": true, \"id\": \"x3d59deb18a3fa347\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"066c47e044ab6a59ee9f2d6f93c660aacc21b9d2\", \"live\": true, \"id\": \"x355146f901e137f6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c57a18408584bbe0a60677e48915067afa7f1304\", \"live\": true, \"id\": \"xbe6fa7ae48a0379e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Integumentary system questions", "basepoints": 10.0, "slug": "integumentary-system-questions", "kind": "Exercise", "name": "integumentary-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "integumentary-system-questions"}, "making-totals-in-different-ways-within-10": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-making-5-9/making-totals-in-different-ways-within-10/", "id": "making-totals-in-different-ways-within-10", "display_name": "Making small numbers in different ways", "title": "Making small numbers in different ways", "all_assessment_items": ["{\"sha\": \"39f4f8acb103d196fd62228cde12035b9dbd1a48\", \"live\": true, \"id\": \"x5ece6826ddd96313\"}", "{\"sha\": \"2b9aa3dd57c2efebc2debbff392d166e638824ca\", \"live\": true, \"id\": \"xea82193dd4bf9bdd\"}", "{\"sha\": \"ac728d10456a24c9daf4caabca6fec6bf293bfe3\", \"live\": true, \"id\": \"x66cf89b62cc18ffd\"}", "{\"sha\": \"2db5da3dc5b6810e178833ab1cbe43df8940f14b\", \"live\": true, \"id\": \"x3da8cc486ade8caf\"}", "{\"sha\": \"f134fe4d3328c1e7b582dd9d23d9c8f737a68bd9\", \"live\": true, \"id\": \"x4674ac48b0169e3b\"}", "{\"sha\": \"f31e57a256ea53df2e5c5d231a9cea2bb54cd2b7\", \"live\": true, \"id\": \"x077bba0ddb9d1d64\"}", "{\"sha\": \"f3e4f6ab2f3dc8bd9161a3edeace6f2fce08c695\", \"live\": true, \"id\": \"xda840f910c3c5f78\"}", "{\"sha\": \"225c1e14a57d1f6cd75b9d95bd533e264d76e6cc\", \"live\": true, \"id\": \"x363ccd070de1b947\"}", "{\"sha\": \"cffff97c094323354775a59fca8e594802f677c5\", \"live\": true, \"id\": \"x07127ff221880dbb\"}", "{\"sha\": \"0c81ba1ff10f3b64b188673c9aea37cd60afc62b\", \"live\": true, \"id\": \"x8d1aec24040e8d3a\"}", "{\"sha\": \"15b7f3365ab3c058af6e06474d3f6c04c409cdc3\", \"live\": true, \"id\": \"x6c0e9f61b3bb230c\"}", "{\"sha\": \"b874a1f2f70d1adefa5705a18b62f3ec74f7740a\", \"live\": true, \"id\": \"x63b5d7d6ca694013\"}", "{\"sha\": \"4005504cfbe74d07b50e4f46f03ac15059d195b3\", \"live\": true, \"id\": \"xf23f459270b46e94\"}", "{\"sha\": \"04a426a333c09379051288861f49779a4029cf16\", \"live\": true, \"id\": \"x75a0a3ed28e6c90f\"}", "{\"sha\": \"2b807af0961d12293812e855d31de8901f7919f6\", \"live\": true, \"id\": \"xcf6ae1bba2db5d8f\"}", "{\"sha\": \"b1f6f6e192dfcee0179a671a1a284c1de14df896\", \"live\": true, \"id\": \"x9a89eb010157deb9\"}", "{\"sha\": \"f569806a27303754b94188d23f5f4c4a0ab0847e\", \"live\": true, \"id\": \"x1669eb8de38ad4f6\"}", "{\"sha\": \"26988bb889140e33fba0b7707284c97fc95eef9b\", \"live\": true, \"id\": \"x32b2659154202ccb\"}", "{\"sha\": \"2e9e17d0d0d58ccd92caaed3856e9ebe8a5a8972\", \"live\": true, \"id\": \"x338e55a00461cbdf\"}", "{\"sha\": \"dbdce713f25b702db0bbe8ed82adc0caf69d8ab7\", \"live\": true, \"id\": \"xdfb9d5e9a7be6334\"}"], "description": "Practice making a number by adding other numbers. All numbers in these problems are less than 10.", "basepoints": 10.0, "slug": "making-totals-in-different-ways-within-10", "kind": "Exercise", "name": "making-totals-in-different-ways-within-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition_1"], "exercise_id": "making-totals-in-different-ways-within-10"}, "mendelian-genetics---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/mendelian-genetics-passage-2/", "id": "mendelian-genetics---passage-2", "display_name": "Mendelian inheritance of immunodeficiency disorders", "title": "Mendelian inheritance of immunodeficiency disorders", "all_assessment_items": ["{\"sha\": \"4da6a8412663b185bfd14c23ea2a2970775c03f6\", \"live\": true, \"id\": \"x71d73a2f771be485\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ee658968d347ba59267fe80e1c345ed88a4a3272\", \"live\": true, \"id\": \"x39c5fa2897d1e923\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fba6f155b5e8a95be1c6a62f134b30e12c0382da\", \"live\": true, \"id\": \"x43aa73d8bd2bb1c1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"475f6d6635a07a44130d703f08d7e683af257afb\", \"live\": true, \"id\": \"x7801b382f5a0af5d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea72ceeb92ed9ebe38faf5774b005c50ba11a743\", \"live\": true, \"id\": \"xa211591944dcc228\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "mendelian-genetics-passage-2", "kind": "Exercise", "name": "mendelian-genetics---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mendelian-genetics---passage-2"}, "expressions_with_unknown_variables_2": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/exp_unknown_vars/expressions_with_unknown_variables_2/", "id": "expressions_with_unknown_variables_2", "display_name": "Expressions with unknown variables 2", "title": "Expressions with unknown variables 2", "description": "", "basepoints": 20.0, "slug": "expressions_with_unknown_variables_2", "kind": "Exercise", "name": "expressions_with_unknown_variables_2", "seconds_per_fast_problem": 16.0, "prerequisites": ["expressions_with_unknown_variables"], "exercise_id": "expressions_with_unknown_variables_2"}, "enzyme-structure-and-function-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/enzyme-structure-and-function/enzyme-structure-and-function-questions/", "id": "enzyme-structure-and-function-questions", "display_name": "Enzyme structure and function questions", "title": "Enzyme structure and function questions", "all_assessment_items": ["{\"sha\": \"96278701de4f1e419b5c08a11ab4e805484827a8\", \"live\": true, \"id\": \"xbb46404076ba4d28\"}", "{\"sha\": \"ffa1c441ef77a4e975459fe33cfd666f06fef0e1\", \"live\": true, \"id\": \"x56bb3e1050c4ea2f\"}", "{\"sha\": \"b965e1961f1d63bedd0af12c32c6c2f7a65264f9\", \"live\": true, \"id\": \"x42d2b4149cbf289c\"}", "{\"sha\": \"72071b9f75399fb93c557c641b92caebcdf655af\", \"live\": true, \"id\": \"x75a36b6bbd2627fd\"}", "{\"sha\": \"4925a12f095fd39f390d6fea6d243ff51e39f7b4\", \"live\": true, \"id\": \"xb0a875fed0cc3a7a\"}", "{\"sha\": \"e8dc9057eb1e25f444319ae51dd11f0ea7418c48\", \"live\": true, \"id\": \"xfed6d585290c3544\"}", "{\"sha\": \"5c305f85264d8ec557862d605ba1cb9fc293dbdd\", \"live\": true, \"id\": \"x7ccc353acf08d63f\"}", "{\"sha\": \"9c5821d1c12f93de3c5e0dcc86f0be9663a96044\", \"live\": true, \"id\": \"x3dd2dbb171ebf019\"}", "{\"sha\": \"adaf55440dee84128ca85a05c7750e3da72c4ccf\", \"live\": true, \"id\": \"x6b8e79775c223095\"}", "{\"sha\": \"dae882a5350931cfe12e5b7488d0b89d793eb503\", \"live\": true, \"id\": \"x1a69beca2ebead35\"}"], "description": "Questions pertaining to enzyme structure and function", "basepoints": 10.0, "slug": "enzyme-structure-and-function-questions", "kind": "Exercise", "name": "enzyme-structure-and-function-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "enzyme-structure-and-function-questions"}, "graphs-of-rational-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/rational-expressions/rational-function-graphing/graphs-of-rational-functions/", "id": "graphs-of-rational-functions", "display_name": "Graphs of rational functions", "title": "Graphs of rational functions", "all_assessment_items": ["{\"sha\": \"8cb6733d9d7f77995b9221b5d5065981ad5b7311\", \"live\": true, \"id\": \"x1f838f6097ebb26b\"}", "{\"sha\": \"1e31dd08c77763ea6c4930a4a014067f34dfe12d\", \"live\": true, \"id\": \"x34964adab1709601\"}", "{\"sha\": \"17a591b63116f80f30a47d300a4b00ff009a4740\", \"live\": true, \"id\": \"x83d6f77398879512\"}", "{\"sha\": \"0c5149d9943d2a1dfe4a75feb3218e38b1bff8de\", \"live\": true, \"id\": \"xbc79f97becb2de35\"}", "{\"sha\": \"6342bb586f03a03a242e26a5c80bdd1fcf9aa7e5\", \"live\": true, \"id\": \"x372e1fa45ef95def\"}", "{\"sha\": \"4707fd4448636b9b1f02a370bdb21a15c56134c4\", \"live\": true, \"id\": \"xfe9c417bf0968da1\"}", "{\"sha\": \"ba59b96175b0f17d663b8097692ee2e6476e2d0c\", \"live\": true, \"id\": \"xd832ffc1bd53dcec\"}", "{\"sha\": \"6ee9369104d63f29ba8a47dbd51f82243a5c2636\", \"live\": true, \"id\": \"x7a5f8a2c1b1e8c4c\"}", "{\"sha\": \"0fb40ed632bc99291227645d18da4dab36595362\", \"live\": true, \"id\": \"x4655ae5fec55e146\"}", "{\"sha\": \"d9633afcab6a4d63490b9b8ba2482c022ef3f93a\", \"live\": true, \"id\": \"x86cb7f80c5c6af70\"}", "{\"sha\": \"d569546e12257f672c5b60b4fa99369384ab54b6\", \"live\": true, \"id\": \"xd4d0b712ded4d457\"}", "{\"sha\": \"d4b1edb40f9876a75fef52fe54af157696040060\", \"live\": true, \"id\": \"x5612ac3b05211683\"}", "{\"sha\": \"e0fa33f71a7db0b2f8025d97365b9f37f6c00289\", \"live\": true, \"id\": \"xe722b27fbdfdb702\"}", "{\"sha\": \"c8de2cc4f8b79becae29353c185b316bda6eed16\", \"live\": true, \"id\": \"xa4b90ad91cd177f5\"}", "{\"sha\": \"fbe2855e473696fe7d9f09b150400e78eddd4dcd\", \"live\": true, \"id\": \"x48d9e03e74dbde66\"}", "{\"sha\": \"d322d19af376322edfedb1e50c2106bf7d2bc6af\", \"live\": true, \"id\": \"x13e78dbeb3b2d5a5\"}", "{\"sha\": \"d7df445f753e4c52466455df4fcfc480136dc3e0\", \"live\": true, \"id\": \"x81c2fc18e73aa024\"}", "{\"sha\": \"bb0a22d4dfb62ead7bb4c2b695a9dc45db2637cb\", \"live\": true, \"id\": \"x246664ba9abfb51b\"}", "{\"sha\": \"817cb543c97a2c638b8583c1a77587cffefd2419\", \"live\": true, \"id\": \"xe45e1b144640e78e\"}", "{\"sha\": \"6aef84b89f3644a6f4affa2237b1d54109882c05\", \"live\": true, \"id\": \"x7d623cdf266f5c79\"}", "{\"sha\": \"7d09fdd69c0d79ebb4f7cce4697d0860aff5f2c4\", \"live\": true, \"id\": \"x1938faeeb4e712b6\"}"], "description": "", "basepoints": 10.0, "slug": "graphs-of-rational-functions", "kind": "Exercise", "name": "graphs-of-rational-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["graphs-of-polynomials", "simplifying_rational_expressions_3"], "exercise_id": "graphs-of-rational-functions"}, "attributes-of-shapes": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-shapes/attributes-of-shapes/", "id": "attributes-of-shapes", "display_name": "Naming shapes 3", "title": "Naming shapes 3", "all_assessment_items": ["{\"sha\": \"639a7b6e4ef21db8af280ab4b916bb9718a4dd09\", \"live\": true, \"id\": \"x4587efb1d0e0cac5\"}", "{\"sha\": \"ed1cc13291601562a3f76dbf42a4d1c26d627303\", \"live\": true, \"id\": \"xd132d02f7760b936\"}", "{\"sha\": \"7af23e4f7d17933dc571542a16536b77ab880b77\", \"live\": true, \"id\": \"x6ab6abb64b0d95ae\"}", "{\"sha\": \"6ccb06c3f9dcd73e4af6769798d46c325d5f8b5f\", \"live\": true, \"id\": \"x2376de23c9fc7823\"}", "{\"sha\": \"f6954d80756a118ef948b3a40e3e615a9a96eac8\", \"live\": true, \"id\": \"x7c4f619e8f987381\"}", "{\"sha\": \"36d9b377a8a21bf702128b6cd76ce24edc609bd8\", \"live\": true, \"id\": \"x1bff714e1a1d218a\"}", "{\"sha\": \"e517589f93e42811f204a80953e188258b53c40c\", \"live\": true, \"id\": \"xe21bcaa703798311\"}", "{\"sha\": \"520fb1259ec2ca858995fc53635e0b65f992a994\", \"live\": true, \"id\": \"x83d33ed387bfb365\"}", "{\"sha\": \"aa7445627445c0dcfaf5a7206112504fbb34690b\", \"live\": true, \"id\": \"x0f8f7a6dc35a4f15\"}", "{\"sha\": \"654cc73712af509cf5497ce00d9d61d701029694\", \"live\": true, \"id\": \"x205572c621a95c1b\"}", "{\"sha\": \"f316d36720b2dd952ec1872d21f2cff32ec5179a\", \"live\": true, \"id\": \"x93c94736ebc46b81\"}", "{\"sha\": \"a789ae9e62861330882a217b578cdfec7c99636d\", \"live\": true, \"id\": \"x03edc76d296afbdd\"}", "{\"sha\": \"5129e8ee3356ca8835e5773e8e9179aec7ecc256\", \"live\": true, \"id\": \"x34b71ce2b3975deb\"}", "{\"sha\": \"c5274d092e182b1a0ad523840c23e78d4b4d1bed\", \"live\": true, \"id\": \"xf91c52cda40cfb67\"}", "{\"sha\": \"db7979082b25384f429dce5ea7b7ea845c91ad9c\", \"live\": true, \"id\": \"x95ab3d56474c331f\"}", "{\"sha\": \"90c5fc06c6d3c56159267fa2a53607d717a5bbe2\", \"live\": true, \"id\": \"xfd624657436531e7\"}", "{\"sha\": \"d874ff74863003cde65ad430a28e9fc62841ea53\", \"live\": true, \"id\": \"x89554f368f05ccbb\"}", "{\"sha\": \"3e9008f478e625b2a79492e62dea8ecdd483b7b3\", \"live\": true, \"id\": \"x032ddc8732c68b7d\"}", "{\"sha\": \"4d56d6d19bcf79ef94722e3d52d083f93a611526\", \"live\": true, \"id\": \"x48d62be1ec0db599\"}", "{\"sha\": \"8dcdcaef33158e0d1866804f988e66577643941e\", \"live\": true, \"id\": \"x8c0603273371ebec\"}"], "description": "Practice identifying circles, triangles, squares, rectangles, rhombuses, trapezoids, and hexagons.", "basepoints": 10.0, "slug": "attributes-of-shapes", "kind": "Exercise", "name": "attributes-of-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": ["compare-shapes", "how-many-objects-1"], "exercise_id": "attributes-of-shapes"}, "multiply-by-tens-word-problems": {"uses_assessment_items": true, "id": "multiply-by-tens-word-problems", "display_name": "Multiply by tens word problems", "title": "Multiply by tens word problems", "all_assessment_items": ["{\"sha\": \"fa50fdceb30f7f661825eb5b58fc12b7b38a2dcd\", \"live\": true, \"id\": \"x0db4593ba448990e\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab30f3a708598fe861c066465466c1e2a51118a2\", \"live\": true, \"id\": \"x7e6057226af7a80b\", \"perseus_api_major_version\": null}", "{\"sha\": \"3489dc74a6ba086f88c1e5753e7ca9117fcf5ac8\", \"live\": true, \"id\": \"x435cd415bede27a5\", \"perseus_api_major_version\": null}", "{\"sha\": \"7ee31f8ba5c335e581c8848ba6b20e69a60ae31f\", \"live\": true, \"id\": \"xbfbfcd97643e4fe6\", \"perseus_api_major_version\": null}", "{\"sha\": \"fd52b2b4dbdf5622533b75dda4bb8d0a84930c9f\", \"live\": true, \"id\": \"xc230c362af47ff69\", \"perseus_api_major_version\": null}", "{\"sha\": \"449a8188cf1d31278a162f262d54831c6d10f592\", \"live\": true, \"id\": \"x320e74ae7ec466e2\", \"perseus_api_major_version\": null}", "{\"sha\": \"06202492f9c4d6685e3b22c34616cd084c6f308a\", \"live\": true, \"id\": \"x70de8f0bc5292bb0\", \"perseus_api_major_version\": null}", "{\"sha\": \"809aedd0b1d682b4f4b752e7397f1a95253e80a0\", \"live\": true, \"id\": \"xb4d61516e23c56a8\", \"perseus_api_major_version\": null}", "{\"sha\": \"1c5ff41c24c20dae59235b24064694413e4d208a\", \"live\": true, \"id\": \"xdc17a389002afeee\", \"perseus_api_major_version\": null}", "{\"sha\": \"a617c0c56c188d205e4311901de8394d9401af0e\", \"live\": true, \"id\": \"x347b3ce1f917f6e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"74bd28a42f51b569a3642ff73f665cd6807460f5\", \"live\": true, \"id\": \"x7c6ae98168b276b8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"64b6cf3c95248dcf6a9c63e0f35514a5a88dbe8f\", \"live\": true, \"id\": \"x5c8bc6e9a7791b50\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e0ba33e3ffca48ece9c4d2929f7726aca9ea8628\", \"live\": true, \"id\": \"x5a96406f41ed43c0\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6197478ccdd66bdea73bdd7405bd557ada40e6da\", \"live\": true, \"id\": \"xf80e07b488525733\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2ffc414e2f505306edd0bf95367f258ef6f8819c\", \"live\": true, \"id\": \"xe7386d8d75112bf1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"995ec5f65411c073b9597c47840eee6098a8a7a5\", \"live\": true, \"id\": \"x39f3baf4416bc9c1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"145e65426cd976ed41852d495262ac6f2d388478\", \"live\": true, \"id\": \"x05bf59142e93215b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ae741444df15cbebc32ccda1fa44630052e08b55\", \"live\": true, \"id\": \"xa5703cf1a12c840c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"465905b195bd85afb64fd701c899899142a8101b\", \"live\": true, \"id\": \"x83c1f5d4a096e1cd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7930119f204ad97b248609706a53a870e32d2566\", \"live\": true, \"id\": \"x458cd97f7509fa37\", \"perseus_api_major_version\": 0}"], "description": "Solve word problems with multiples of ten. \u00a0Decompose multiples of ten to multiply.\u00a0", "basepoints": 10.0, "path": "multiply-by-tens-word-problems/", "slug": "multiply-by-tens-word-problems", "kind": "Exercise", "name": "multiply-by-tens-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_1"], "exercise_id": "multiply-by-tens-word-problems"}, "nclex-rn-questions-on-anemia-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-anemia-2/", "id": "nclex-rn-questions-on-anemia-2", "display_name": "NCLEX-RN questions on anemia 2", "title": "NCLEX-RN questions on anemia 2", "all_assessment_items": ["{\"sha\": \"07f13b6d2446855b440c2269d6fb7eb22950e82e\", \"live\": true, \"id\": \"x5af6837788bb3443\"}", "{\"sha\": \"364e15e87f6e3e83da395d0e8e2216d263661af4\", \"live\": true, \"id\": \"x6da2c329bf445bab\"}", "{\"sha\": \"534d4318743e1623a4d03217251c08e20809ff71\", \"live\": true, \"id\": \"x4b717f95d147072e\"}", "{\"sha\": \"0756f4644d1c2063f33ef82287edae2501d10655\", \"live\": true, \"id\": \"xca7488dfd0bf11cb\"}", "{\"sha\": \"c74367151c5a4f9f1b25ef75b2930ec1cd6832c7\", \"live\": true, \"id\": \"xf1f9ef7d4ab44ab1\"}"], "description": "More questions related to anemia", "basepoints": 10.0, "slug": "nclex-rn-questions-on-anemia-2", "kind": "Exercise", "name": "nclex-rn-questions-on-anemia-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-anemia-2"}, "writing-numerical-inequalities": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/writing-numerical-inequalities/", "id": "writing-numerical-inequalities", "display_name": "Writing numerical inequalities", "title": "Writing numerical inequalities", "all_assessment_items": ["{\"sha\": \"20a479f1e17db89e16d18329cca765a9b28265a7\", \"live\": true, \"id\": \"x06872b90\"}", "{\"sha\": \"d718af671e9a3be537b536facfc8ac795b439382\", \"live\": true, \"id\": \"x73096a4e55c8cd60\"}", "{\"sha\": \"17ca68d2bd667c6215c56fd87386cd4dcab5013c\", \"live\": true, \"id\": \"x380514748d5a00fb\"}", "{\"sha\": \"8e0c7df8728be00bf0f1f5ab065e8517e13ebdc6\", \"live\": true, \"id\": \"xe499ffbb1426e74c\"}", "{\"sha\": \"1e6f8d490fa8f94012c3666a14cc7dca186cddb9\", \"live\": true, \"id\": \"x89a93c5208c363e2\"}", "{\"sha\": \"490dc5c8f99db62d01a6df8eb89bf234e15c3fdc\", \"live\": true, \"id\": \"xf5f28f93647b330e\"}", "{\"sha\": \"da1ab42239fba5c55c92b2e836d060c9e2477ca1\", \"live\": true, \"id\": \"xf16445ba5d366e60\"}", "{\"sha\": \"fa46f89661b6dffcc97b07f3e8dbbe3667953686\", \"live\": true, \"id\": \"x86ca7f79bd614b21\"}", "{\"sha\": \"13c2b19f5e52612145a2b5e114f6effa332b3896\", \"live\": true, \"id\": \"xf1b9c617ba0c06bb\"}", "{\"sha\": \"e79e6b36ffd180620ad14be5cd86ac804583ec3c\", \"live\": true, \"id\": \"xc5852bb5411ab308\"}", "{\"sha\": \"74dd15e37d621f9302330aa7260fb1fd7f8cd446\", \"live\": true, \"id\": \"x4adf9ca2\"}", "{\"sha\": \"0884f9d14e205fdb11061c82775b2fb8153b32e3\", \"live\": true, \"id\": \"xabe30dd3b91223cf\"}", "{\"sha\": \"00c7834cd5643911030cf5bcdb2f68ef61104145\", \"live\": true, \"id\": \"x2dbe325044a6fd25\"}", "{\"sha\": \"44f98b569b0d14c83731514faf3bb54936989084\", \"live\": true, \"id\": \"x59c7cdddeb20116f\"}", "{\"sha\": \"685295268ca5d4092ecc6c991edf59061716ddb0\", \"live\": true, \"id\": \"xe7c3f89887855e11\"}", "{\"sha\": \"88f52510756acaed587081543f992f407688968f\", \"live\": true, \"id\": \"xb7a84673c0706c4c\"}", "{\"sha\": \"64b6444d59dbe62840c59a0c11b38ea476d9078d\", \"live\": true, \"id\": \"xcbf363ec6af3c5cc\"}", "{\"sha\": \"3166bc533a21ff0abe70297e982764c3ad974444\", \"live\": true, \"id\": \"x52f3586cb6e5b089\"}", "{\"sha\": \"d0478b4b993fdc9a94259eed1485f947b6d1545f\", \"live\": true, \"id\": \"x109be38ffea0d8e1\"}", "{\"sha\": \"6ff2cab196657acd1c37bfb1b5866ee38fa79492\", \"live\": true, \"id\": \"x387ae21c7f3d8471\"}", "{\"sha\": \"329c2614688c84b14ec6ade07cc8b9eb1a169541\", \"live\": true, \"id\": \"xc3095b2309f772fd\"}", "{\"sha\": \"b2d220d6ed28a6a263adba6aaaeb2f20873c58c7\", \"live\": true, \"id\": \"xc223b68498d972e3\"}", "{\"sha\": \"46917fba1f87764d26705bf6dfca01d8d081a511\", \"live\": true, \"id\": \"x94f5e2f8003b5694\"}", "{\"sha\": \"0a9268ef1a4afc0e1bf74d56dd34b11ec8d6da94\", \"live\": true, \"id\": \"x79377bfe46d0851f\"}", "{\"sha\": \"a73a83e823cf25e0ae053bf6fb32b21609e546e5\", \"live\": true, \"id\": \"x0032182291954de3\"}"], "description": "Practice writing inequalities to describe real-world situations.", "basepoints": 20.0, "slug": "writing-numerical-inequalities", "kind": "Exercise", "name": "writing-numerical-inequalities", "seconds_per_fast_problem": 16.0, "prerequisites": ["fractions_on_the_number_line_3"], "exercise_id": "writing-numerical-inequalities"}, "understanding-inverse-trig-functions": {"uses_assessment_items": true, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/understanding-inverse-trig-functions/", "id": "understanding-inverse-trig-functions", "display_name": "Understanding inverse trig functions", "title": "Understanding inverse trig functions", "all_assessment_items": ["{\"sha\": \"d334bb0a33d6303354984b980280cdf8aee87de2\", \"live\": true, \"id\": \"x0922b0e7a1119dfa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bbd32f1be86c55f9cef68381f29fcf963fc00de3\", \"live\": true, \"id\": \"xab0775c42009326c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e21d8f30ef1480d1f989c033dda914224e9e68a0\", \"live\": true, \"id\": \"xdeaa3fc884049631\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b4058f7d82b865799599fcba96b161f539e9aaad\", \"live\": true, \"id\": \"x77f1370ebaf222cd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ccb8ca581fe3aa197aa7521d2f47e4b113de18ab\", \"live\": true, \"id\": \"x7978e0fdd1bfddea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"afc425ccce0f7f3d9952ecb10503e91b9064ec8d\", \"live\": true, \"id\": \"x16d3c1e69cdbb505\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f08fcf5c81fc331f84f0e7447908ebfc2c902e23\", \"live\": true, \"id\": \"xa0d39f11d57b83ca\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8cf94c6e2936670adc5f60a43571fd8ec190ba59\", \"live\": true, \"id\": \"xf354a88a710c1135\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1e8f26976583dc02f283f402e5148ebc9d8d1bcf\", \"live\": true, \"id\": \"xc3e92a30844fe129\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0a3b79cda026ee92b93521be21f5d7edb4074f72\", \"live\": true, \"id\": \"x41e1fd3bad4a40be\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dfdb84421cdee44bb606d34de38975b981e45995\", \"live\": true, \"id\": \"x6718a132e4219256\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"023cd9c6b772ebbd646f771ae567b07b9fcfd60f\", \"live\": true, \"id\": \"x9ca14efce712eeba\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"df91c5aaddfc14cb4a50ad0beed3e9d290983a64\", \"live\": true, \"id\": \"xc876dfc500fb7a00\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"480b4036dd20940852049e3901719d04bfb63cff\", \"live\": true, \"id\": \"x70ecaa6dab674952\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11dc3b6701ea7aa42cdf62f625999435a86569ec\", \"live\": true, \"id\": \"x9f847cc675c1f07e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2982ff016ab7b40053ff3f465fb7ae73ca6cc77\", \"live\": true, \"id\": \"x0763040127d17bd7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e5f446a2166842e862be52ca8845126bd9ad8e2b\", \"live\": true, \"id\": \"x68a6a17a50ec457d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"55235017977206401913fd960a4335541afee30e\", \"live\": true, \"id\": \"xa92a1bb9e0d2af73\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"06fd9e6ab7f976b078eb42e3a7f4d02397fd7379\", \"live\": true, \"id\": \"x4a9765c917d7d243\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bc965bcf6ff3f5b8eb4846633c645a0c1e129963\", \"live\": true, \"id\": \"x3f79f1b60afb5352\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e881fc2e4026809da1bfd19e9810ec2550f614f\", \"live\": true, \"id\": \"x64d60cda20df485a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc650950ec8a9560ac6de650434956792ae0bd40\", \"live\": true, \"id\": \"x20824add87655ad9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"558fad1b243acf062fd9cc0d03a86338df2c36ff\", \"live\": true, \"id\": \"xeead1162413b83af\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b6ee7a4916dc7acea8e92572191736fae118b138\", \"live\": true, \"id\": \"xc6f935bdb93bb4d9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"66883ee089f2bbc182a5ec90281a45b5531a60c8\", \"live\": true, \"id\": \"x4e75db0e6f9311d8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db9edd2b13e3be40ae598bbb636525ec02f9885a\", \"live\": true, \"id\": \"x7f1a33e650231514\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"859cbbe7eec72cad04828b77ce37063744c4b903\", \"live\": true, \"id\": \"xd5eb757eecbc982d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87058a37ccde1a025fb59cfb6bcbd6ce2d84bcc9\", \"live\": true, \"id\": \"x06f88555e9eabcdb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b0fee551bba597a7f523452637c1bca107a409a\", \"live\": true, \"id\": \"x432fe0098ef48c4e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b8fc2be2a23ebb9e496142ec21cb9f42a817495\", \"live\": true, \"id\": \"xffcafcfd86ed6e9f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"21035786df4be3a6499d4336e214b64c4f3ab458\", \"live\": true, \"id\": \"x0b584057f209beea\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"7fca98072f91dc9bf778f99ab9baa2cf9c8372c1\", \"live\": true, \"id\": \"xf9edbcd80afcb514\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"72dbce981c74fa7ecd3d8a8b95c5e26d77db12a9\", \"live\": true, \"id\": \"x14d2a8ebac34c534\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8502e7c5b036b840fc27e9a4f1e2301b6f05c1c2\", \"live\": true, \"id\": \"x0ad29c10abe9fb7c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"91aa2fe1029a40f87f6944a6b9f8de9e05575392\", \"live\": true, \"id\": \"x6ae74d7b1f81ca05\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"59bd81733ddf79345b32f80298c50104ea230ea7\", \"live\": true, \"id\": \"xf6d4908a1d2cbc9e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"bcd2eff4492e9aa380d2b561e5f8426c8c672763\", \"live\": true, \"id\": \"x5377be90aae2cb21\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6fe7e0c70cbf094de0f52913ed073eaba200f975\", \"live\": true, \"id\": \"xc507a6375dd1ec38\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"631d1a892904bc48ff34113c0b852160a8bf8e86\", \"live\": true, \"id\": \"xaedc8ca12c30ca28\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"4df32b1ea66876c4ca2cee8fe8a1eb444dfc1f79\", \"live\": true, \"id\": \"xd03264f2c59ce6fe\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}"], "description": "", "basepoints": 10.0, "slug": "understanding-inverse-trig-functions", "kind": "Exercise", "name": "understanding-inverse-trig-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["inverse_trig_functions"], "exercise_id": "understanding-inverse-trig-functions"}, "increasing-decreasing-intervals-of-functions": {"uses_assessment_items": false, "path": "khan/math/algebra/algebra-functions/analyzing_function_graphs/increasing-decreasing-intervals-of-functions/", "id": "increasing-decreasing-intervals-of-functions", "display_name": "Increasing and decreasing intervals", "title": "Increasing and decreasing intervals", "description": "", "basepoints": 5.0, "slug": "increasing-decreasing-intervals-of-functions", "kind": "Exercise", "name": "increasing-decreasing-intervals-of-functions", "seconds_per_fast_problem": 0.0, "prerequisites": ["positive_and_negative_parts_of_functions"], "exercise_id": "increasing-decreasing-intervals-of-functions"}, "non-cyanotic-heart-disease-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/non-cyanotic-heart-disease-quiz-2/", "id": "non-cyanotic-heart-disease-quiz-2", "display_name": "NCLEX-RN questions on acyanotic heart diseases 2", "title": "NCLEX-RN questions on acyanotic heart diseases 2", "all_assessment_items": ["{\"sha\": \"ca8c6a2b57c9f203a899e4f4afc9ad09213689ec\", \"live\": true, \"id\": \"x129a24b860441b43\", \"perseus_api_major_version\": null}", "{\"sha\": \"9c61762902fa5e13fe2f402fa63f7df3bfd88f79\", \"live\": true, \"id\": \"x0fa58bb0675d6acc\", \"perseus_api_major_version\": null}", "{\"sha\": \"aef3100f29d564a25af64b7948ec4201612adb49\", \"live\": true, \"id\": \"x91126bc7f1e3063a\", \"perseus_api_major_version\": null}", "{\"sha\": \"800af5170ce1a4db61ab3ace61b70d62a663ac1f\", \"live\": true, \"id\": \"x224407a6b4274dc6\", \"perseus_api_major_version\": null}", "{\"sha\": \"7b493cae9a0e0d1396ef3e4e11b24daa4d44f7a1\", \"live\": true, \"id\": \"x3d71cc89a71ec85d\", \"perseus_api_major_version\": null}"], "description": "Another quiz for non-cyanotic heart disease.", "basepoints": 10.0, "slug": "non-cyanotic-heart-disease-quiz-2", "kind": "Exercise", "name": "non-cyanotic-heart-disease-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "non-cyanotic-heart-disease-quiz-2"}, "inverse-domain-range": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/inverse-domain-range/", "id": "inverse-domain-range", "display_name": "Domain and range with inverse functions", "title": "Domain and range with inverse functions", "all_assessment_items": ["{\"sha\": \"176f6b7dd9b0a2203c93e241c889dcf6e9e81866\", \"live\": true, \"id\": \"xf8d346fbb141ca59\"}", "{\"sha\": \"815c3c29784b05da12e33950404e337fc837ee74\", \"live\": true, \"id\": \"x00cbb3a11b5fad5a\"}", "{\"sha\": \"27ada0c14694816d7f50788f04d2f955b2519afe\", \"live\": true, \"id\": \"x4416375f6b314964\"}", "{\"sha\": \"4624695e7f3afcd74099e4b0b3fe43c861e91507\", \"live\": true, \"id\": \"x0902973eddfd583c\"}", "{\"sha\": \"0ea2e00f83b5d7561d210442336eb0c896b97031\", \"live\": true, \"id\": \"xfdf07775c8da87f4\"}", "{\"sha\": \"063cab8998ef9e06d63207cb121095ee03f2bf53\", \"live\": true, \"id\": \"xf9f20dfecdbc4893\"}", "{\"sha\": \"d866c5461359acaa27f3a1f8147cdb449505aedb\", \"live\": true, \"id\": \"x93bf71f3be19ab34\"}", "{\"sha\": \"5b77330ac8b0d43ffd66b1d274de2841c3b5c16a\", \"live\": true, \"id\": \"x2baaf47fdaf0b009\"}", "{\"sha\": \"0eac5b075e2036800f55132708ea86e37bbba45e\", \"live\": true, \"id\": \"xe468de69d45bf56f\"}", "{\"sha\": \"5e2785903e1537f505338e184e0554765d3bb574\", \"live\": true, \"id\": \"x29a79557f4121f01\"}", "{\"sha\": \"148006bc36780365b60388e446939dc9a35fd98e\", \"live\": true, \"id\": \"x87bcb1bee7d3769f\"}", "{\"sha\": \"6fdda1b00fa96779ff34de908f85cca4d2a48e74\", \"live\": true, \"id\": \"xd0dee5bd4a2c333f\"}", "{\"sha\": \"74792d7a8a9ae67a5ea31a64fb993a1ed67aefb6\", \"live\": true, \"id\": \"xaea146f570cbee1b\"}", "{\"sha\": \"b95f4aea50ee06e328a1b943f58ec84054906580\", \"live\": true, \"id\": \"xdc64a1d797931f9f\"}", "{\"sha\": \"00adbc86674a2238335ddec2c92c632a20239b63\", \"live\": true, \"id\": \"xcf94b084aea5892e\"}", "{\"sha\": \"790753e6f5db07275ddb5d243992969c4d3cfecf\", \"live\": true, \"id\": \"x02d6ef0c84232ef2\"}", "{\"sha\": \"aa15e1d4009e7e0801c16f333f77277b2368d8ad\", \"live\": true, \"id\": \"x7f9b49647549ae38\"}", "{\"sha\": \"039ad2b7c89c3b15ac6a7275d965355b39d66e70\", \"live\": true, \"id\": \"xc09cf397e5ce6532\"}", "{\"sha\": \"5429a2da9627155ab70b44c1abbc9c6cd16d2e76\", \"live\": true, \"id\": \"xccba2507a4ab46ed\"}", "{\"sha\": \"6202aa46d447083c4bc7a168ca0a9749cb131097\", \"live\": true, \"id\": \"x47d984e51575285a\"}"], "description": "Practice keeping track of domain and range of functions AND their inverses.", "basepoints": 10.0, "slug": "inverse-domain-range", "kind": "Exercise", "name": "inverse-domain-range", "seconds_per_fast_problem": 4.0, "prerequisites": ["inverses_of_functions", "domain_and_range_0.5"], "exercise_id": "inverse-domain-range"}, "recognizing_fractions": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/understanding-fractions-pre-alg/recognizing_fractions/", "id": "recognizing_fractions", "display_name": "Identifying numerators and denominators", "title": "Identifying numerators and denominators", "description": "", "basepoints": 10.0, "slug": "recognizing_fractions", "kind": "Exercise", "name": "recognizing_fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing_fractions_0.5"], "exercise_id": "recognizing_fractions"}, "compass-challenge": {"uses_assessment_items": true, "path": "khan/science/discoveries-projects/discoveries/magnetism/compass-challenge/", "id": "compass-challenge", "display_name": "Compass challenge", "title": "Compass challenge", "all_assessment_items": ["{\"sha\": \"72d03a0b6927cc0040457b21844be4bc95968424\", \"live\": true, \"id\": \"x92dba5edd33b481c\"}", "{\"sha\": \"1ceeb280d9019b3c4a8bed92270aaabb112bdb6e\", \"live\": true, \"id\": \"xc98f679a3d2afe96\"}", "{\"sha\": \"c791bfdf1b26ff5c1843b244170b6d44263f6187\", \"live\": true, \"id\": \"xd120f7810a6006d1\"}", "{\"sha\": \"4c6f841e7f0e523368dc71cc660756f0a4363970\", \"live\": true, \"id\": \"xd5017e1f6c5f530b\"}", "{\"sha\": \"7c2ee6efe9f4ce6953d532286703b97c91b96e10\", \"live\": true, \"id\": \"x647fd808ac350cd0\"}", "{\"sha\": \"dc3ca1efb750e7aa5e899a4f7a83e99f5faaecd9\", \"live\": true, \"id\": \"x9b8b72b5e7effdad\"}"], "description": "", "basepoints": 10.0, "slug": "compass-challenge", "kind": "Exercise", "name": "compass-challenge", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "compass-challenge"}, "analyzing-and-identifying-proportional-relationships": {"uses_assessment_items": true, "id": "analyzing-and-identifying-proportional-relationships", "display_name": "Analyzing and identifying proportional relationships", "title": "Analyzing and identifying proportional relationships", "all_assessment_items": ["{\"sha\": \"eb5a3cc25cdcbf1f0bb1c23e4bd8ae20e411db69\", \"live\": true, \"id\": \"x0c122c13\"}", "{\"sha\": \"61b025af43e1532340d17056e00db086a4459bab\", \"live\": true, \"id\": \"x1fdbce39\"}", "{\"sha\": \"8bbc4b3366aef7621c545130bfc6468c25a1fb30\", \"live\": true, \"id\": \"x13e0e168\"}", "{\"sha\": \"dfc4330cac3b46e12c4638e045e14a8a4ba989c8\", \"live\": true, \"id\": \"xe379249c\"}", "{\"sha\": \"17447f443a7687e225143d039cf8fe2f24611da5\", \"live\": true, \"id\": \"x279d1aaf\"}", "{\"sha\": \"48d1bffdb8ed2b3860f76136e330858b52c6be95\", \"live\": true, \"id\": \"xec9e5246\"}", "{\"sha\": \"93ee57e9e73d757c832918d482929a40ad32828d\", \"live\": true, \"id\": \"x019de9e3\"}", "{\"sha\": \"ed4f4a075e0b8efd98b8f48290ee371d443caa11\", \"live\": true, \"id\": \"x50f351b1\"}", "{\"sha\": \"b6dc8e01fe5f7d62f8577bc9ffb3425e4e9499d6\", \"live\": true, \"id\": \"x7e717c3d\"}", "{\"sha\": \"f54896e9574a816b937b83a9bb952f3756c5fccd\", \"live\": true, \"id\": \"xd2b1db5c\"}", "{\"sha\": \"0c168bc352aa869808fc5e79f84523247a36947b\", \"live\": true, \"id\": \"x889dc8b9\"}", "{\"sha\": \"9a773539738c20b8597c27514aa78ea657446101\", \"live\": true, \"id\": \"xbebd0021\"}", "{\"sha\": \"e483af91c39c40856ea616e65f51f502d8264aea\", \"live\": true, \"id\": \"xb684869a\"}", "{\"sha\": \"441156bae4e2d2a766b1ff23ef1537d15791f404\", \"live\": true, \"id\": \"x82fbe4f4\"}", "{\"sha\": \"8833b7cba39b8631b858ec984a1312f0e26e58cd\", \"live\": true, \"id\": \"xa680e2a7\"}", "{\"sha\": \"76772ed5cde6809753451a050ff12a1f4cfdba07\", \"live\": true, \"id\": \"x9efcc843\"}", "{\"sha\": \"d50353b38bd42ee93058618ffe840f2c73863497\", \"live\": true, \"id\": \"xa722877b\"}", "{\"sha\": \"b128b38a2032faebb5fcadd21e38b017ad4aac55\", \"live\": true, \"id\": \"x7eeefc30\"}", "{\"sha\": \"4d0aaa980f398146b093194383389601186bd4c2\", \"live\": true, \"id\": \"x64dc5b1f\"}", "{\"sha\": \"373d71300a5e4bd8cee68b9687f638242427d07d\", \"live\": true, \"id\": \"xac0fc6d5\"}"], "description": "", "basepoints": 10.0, "path": "analyzing-and-identifying-proportional-relationships/", "slug": "analyzing-and-identifying-proportional-relationships", "kind": "Exercise", "name": "analyzing-and-identifying-proportional-relationships", "seconds_per_fast_problem": 4.0, "prerequisites": ["rate_problems_1"], "exercise_id": "analyzing-and-identifying-proportional-relationships"}, "heart-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/circulatory-system/circulatory-system-introduction/heart-quiz/", "id": "heart-quiz", "display_name": "Introductory circulatory system quiz", "title": "Introductory circulatory system quiz", "all_assessment_items": ["{\"sha\": \"b3717b4f3abe9ef531af9d69a891ca430c6d3d8b\", \"live\": true, \"id\": \"xd3185650d618f12a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"baddf010a1a09a3336e6010ea347e50c096fdd93\", \"live\": true, \"id\": \"x8d4b2998cbeb29ae\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b0a90e0ee85f739e69ba8cb1933d8e742df5535\", \"live\": true, \"id\": \"x0e27d212cbb2d214\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"60f3d4b120b9b292a6e6c5c80bd36d0106fa9245\", \"live\": true, \"id\": \"x8110adb04707d5bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d1cde11c2eb7896b724ecb6576626e5aaf1c5618\", \"live\": true, \"id\": \"x496cfaf20b35747f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4228293ce9f89d2be7c6450701988aa38f74e42f\", \"live\": true, \"id\": \"x90440a29f15ee895\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"392c92225af14c6004573ab9289aeedcdf17cbbf\", \"live\": true, \"id\": \"x2e0b9a15b72fdfa7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"fd30e3f196ef373c212be55b1b59402361b34772\", \"live\": true, \"id\": \"x6e7fe2ffd1832775\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"aafd8e7eb9ab43039babce251d89d7d91bb6f3aa\", \"live\": true, \"id\": \"xf125449f2ca59cff\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"4250c517049417e81251fdf14c38dbe0896ea8fa\", \"live\": true, \"id\": \"x4cafcf50b9d046ee\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8b146de5df282e9506f7702a93df480a3b3426cf\", \"live\": true, \"id\": \"x7732e3239da5592e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92f236a7f76ac28783bf008a274698af2f21f89a\", \"live\": true, \"id\": \"x6c03cf2b5074c047\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "heart-quiz", "kind": "Exercise", "name": "heart-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "heart-quiz"}, "area_of_squares_and_rectangles": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/measurement/area-basics/area_of_squares_and_rectangles/", "id": "area_of_squares_and_rectangles", "display_name": "Area problems", "title": "Area problems", "description": "Find the area of rectangles and squares when given side lengths. \u00a0Find the side length of a square when given the area.", "basepoints": 13.0, "slug": "area_of_squares_and_rectangles", "kind": "Exercise", "name": "area_of_squares_and_rectangles", "seconds_per_fast_problem": 6.0, "prerequisites": ["finding-area-by-multiplying"], "exercise_id": "area_of_squares_and_rectangles"}, "clusters--gaps--peaks--and-outliers": {"uses_assessment_items": true, "id": "clusters--gaps--peaks--and-outliers", "display_name": "Clusters, gaps, peaks, and outliers", "title": "Clusters, gaps, peaks, and outliers", "all_assessment_items": ["{\"sha\": \"2f6ad8f7c53e6547ccfefe8e0f6b4ccbe8601564\", \"live\": true, \"id\": \"x60007daf7b1d72f9\"}", "{\"sha\": \"e3ab0e327b3f3711c2878eb8b02f8a9a8160fef7\", \"live\": true, \"id\": \"x82c3aff1903cde48\"}", "{\"sha\": \"157a9832d0cf7d69d8f0b2e2431a02b7ca69b367\", \"live\": true, \"id\": \"xa81135661bd671fa\"}", "{\"sha\": \"24576b8cb48bbc0d2f232975ef14242ed682083a\", \"live\": true, \"id\": \"xd26475e505ed0557\"}", "{\"sha\": \"29317ed06dbb060c088cc689c71093c09de48ea1\", \"live\": true, \"id\": \"xf4050902d0994bcc\"}", "{\"sha\": \"4a9692646f985b4e46252239db4602bdee1c5327\", \"live\": true, \"id\": \"xd0ab9291434aa106\"}", "{\"sha\": \"b5e655c96347927942e88dda4aa9cda9f94189d1\", \"live\": true, \"id\": \"xca70b26fee88192e\"}", "{\"sha\": \"cb446b6b1e373fe075916d6fb11d11a1a8bb0c6b\", \"live\": true, \"id\": \"x4a0f30baab9cda53\"}", "{\"sha\": \"a87c1802f583945bf7e2de7c81258c5f99f05330\", \"live\": true, \"id\": \"x504990648c319d58\"}", "{\"sha\": \"a7d2fb4ece5491a1f9d16db2c204845deb0b848d\", \"live\": true, \"id\": \"x256fba2943e19259\"}", "{\"sha\": \"9b54199d82dfbd9051b744f579d92fec54f6db43\", \"live\": true, \"id\": \"xf161de99ef12c1a1\"}", "{\"sha\": \"3e670b22059bdc4eec08665f1eb15c7ccc2621ae\", \"live\": true, \"id\": \"x815c64e6768a4bc9\"}", "{\"sha\": \"6e320cd4f82e03eea0da3e51ed35b1ebd4f4120f\", \"live\": true, \"id\": \"xa182159c77fec284\"}", "{\"sha\": \"213c1a8d997090e9b2f6ffee600a343175071ac5\", \"live\": true, \"id\": \"xafd682f9d6972fba\"}", "{\"sha\": \"538827482041492ec6f46c5fcffe8f4331b325e9\", \"live\": true, \"id\": \"xcc16d0bd7f80fc26\"}", "{\"sha\": \"a6d609ed6cc20c67eb34c56960f22b01a2460559\", \"live\": true, \"id\": \"x3139706c08b673c0\"}", "{\"sha\": \"16753cbe18d6111dfe815e3faea07d8d13b8f840\", \"live\": true, \"id\": \"x9a037a51002dfdaf\"}", "{\"sha\": \"a2d7166169dc5b45964a0ca66d6154ea97b56564\", \"live\": true, \"id\": \"x0a508e9c59ccda65\"}", "{\"sha\": \"899b7aae7d83f5901746d069e7f0295cd5e7d443\", \"live\": true, \"id\": \"x96cadfddc6556044\"}", "{\"sha\": \"8889111bb0666e0e8338703b294698037e23a766\", \"live\": true, \"id\": \"x9668322fa2997048\"}"], "description": "Practice some nifty new vocab for describing data distributions.", "basepoints": 10.0, "path": "clusters-gaps-peaks-and-outliers/", "slug": "clusters-gaps-peaks-and-outliers", "kind": "Exercise", "name": "clusters--gaps--peaks--and-outliers", "seconds_per_fast_problem": 4.0, "prerequisites": ["reading-histograms"], "exercise_id": "clusters--gaps--peaks--and-outliers"}, "sight--vision----passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sight-vision-passage-2/", "id": "sight--vision----passage-2", "display_name": "Sight (vision) - Passage 2", "title": "Sight (vision) - Passage 2", "all_assessment_items": ["{\"sha\": \"0eab606ecbd92013d27d4eff75adfa24da346f7e\", \"live\": true, \"id\": \"xee3df293f6afb482\"}", "{\"sha\": \"687f2cf9d635545814197c4a7f077a15426cae00\", \"live\": true, \"id\": \"xf607086c403e4d0f\"}", "{\"sha\": \"159aeaa2a1beba44e800d25f12005f4d664b4203\", \"live\": true, \"id\": \"xcc8b173b7a436352\"}", "{\"sha\": \"2208c1132865b05ae93b4c971975efba76e0424b\", \"live\": true, \"id\": \"x0ed4ad66fdbbd518\"}"], "description": "Questions related to vision", "basepoints": 10.0, "slug": "sight-vision-passage-2", "kind": "Exercise", "name": "sight--vision----passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sight--vision----passage-2"}, "a-potential-cure-for-ebola-hemorrhagic-fever": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/a-potential-cure-for-ebola-hemorrhagic-fever/", "id": "a-potential-cure-for-ebola-hemorrhagic-fever", "display_name": "A potential cure for ebola hemorrhagic fever", "title": "A potential cure for ebola hemorrhagic fever", "all_assessment_items": ["{\"sha\": \"e4d704fbdd8d1b867e3bf83f8b8148dfad196eb8\", \"live\": true, \"id\": \"x718f8739343d485b\"}", "{\"sha\": \"e1c6da3fe84b7f39650f660e3a4478c19f457375\", \"live\": true, \"id\": \"xb13bde511f39280a\"}", "{\"sha\": \"32836602d268398c2601c20d629fb53b6197347d\", \"live\": true, \"id\": \"xe13901c94bde9634\"}", "{\"sha\": \"c2f59cbd8083c5fc50a79b92dbfd0182fe48f37c\", \"live\": true, \"id\": \"xaab0d47d783d0654\"}", "{\"sha\": \"a34067977aff7f4d7158b4259b321483a518388a\", \"live\": true, \"id\": \"x01f4b5a25808a1a7\"}"], "description": "A potential cure for ebola hemorrhagic fever", "basepoints": 10.0, "slug": "a-potential-cure-for-ebola-hemorrhagic-fever", "kind": "Exercise", "name": "a-potential-cure-for-ebola-hemorrhagic-fever", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "a-potential-cure-for-ebola-hemorrhagic-fever"}, "sat-math--level-5": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-math-level-5/", "id": "sat-math--level-5", "display_name": "SAT Math: Level 5 - Quiz 1", "title": "SAT Math: Level 5 - Quiz 1", "all_assessment_items": ["{\"sha\": \"2b0386e710803d3b958bd5b6648e0ea09c30f407\", \"live\": true, \"id\": \"x28084d005d4ff3f6\"}", "{\"sha\": \"882638ce4b24f51222b05f622fc08e2049ed5bba\", \"live\": true, \"id\": \"xa3459d7317f9bf2f\"}", "{\"sha\": \"b5a777a1c542172fe5e5769a1b89092b5e02dbcf\", \"live\": true, \"id\": \"xc0b90a67df5d7fd4\"}", "{\"sha\": \"0241363526bb513e085f45917437f02b837b90aa\", \"live\": true, \"id\": \"x3b785b8d93da56be\"}", "{\"sha\": \"321c513a389859efb6c08bb596f364f3a42c8d37\", \"live\": true, \"id\": \"xdb3f7d93b3ccf743\"}", "{\"sha\": \"57d875be7328ba261561f1567cc6727b318e7277\", \"live\": true, \"id\": \"x382b4ade8b4411ec\"}", "{\"sha\": \"ef409f81ddb9b964496abddc4273d7e74a144cab\", \"live\": true, \"id\": \"x675d380ef35e89dd\"}", "{\"sha\": \"c1bff922d8fd9a0c3274a9fcc7d38c494eb5fe4d\", \"live\": true, \"id\": \"x05643abc401cf987\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-5", "kind": "Exercise", "name": "sat-math--level-5", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math--level-5"}, "sat-math--level-4": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-math-level-4/", "id": "sat-math--level-4", "display_name": "SAT Math: Level 4 - Quiz 1", "title": "SAT Math: Level 4 - Quiz 1", "all_assessment_items": ["{\"sha\": \"bd2d41cf7666ca0dca9992204ef6dbd9e2ad9b01\", \"live\": true, \"id\": \"xc52aca7021421a49\"}", "{\"sha\": \"49f9484b994c151be03121ca5a032b8937359c7f\", \"live\": true, \"id\": \"xd3842e225c1d2e03\"}", "{\"sha\": \"c60e83bff2390120ef16b36c111e9807fd829ce1\", \"live\": true, \"id\": \"xe96bcd30c5974a5d\"}", "{\"sha\": \"58583dc54964d845b64a1b92a783d1527bd3adda\", \"live\": true, \"id\": \"x39a6ac9f646676ba\"}", "{\"sha\": \"5225ea87a19bd84aec7e88c8f62a45171aa73b5a\", \"live\": true, \"id\": \"x4784693710bf067c\"}", "{\"sha\": \"6e10234a945d4fe26dd36483c8c08a917919d14f\", \"live\": true, \"id\": \"x165d9c1ab90eb67c\"}", "{\"sha\": \"1d9af5ffa138fd85468faf5fbcc3bc5ba5091775\", \"live\": true, \"id\": \"x401a474c7d25cb2e\"}", "{\"sha\": \"bc2af758eaf51b76a2475f6dcb6f8439019e90bf\", \"live\": true, \"id\": \"x0e7f71fca8601b1a\"}", "{\"sha\": \"cdd65c0d8de4928ae766275ff624b0a0189365a8\", \"live\": true, \"id\": \"x82e16f6d7fc9cf60\"}", "{\"sha\": \"f55d89f164a057bf7866f8cc27cbfb65cc8c24ae\", \"live\": true, \"id\": \"xc54867f064d12a93\"}", "{\"sha\": \"e9ab57aa24a3d8b4c779e6f6e157302a4e14657f\", \"live\": true, \"id\": \"x900be86add9ad787\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-4", "kind": "Exercise", "name": "sat-math--level-4", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math--level-4"}, "sat-math--level-3": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-math-level-3/", "id": "sat-math--level-3", "display_name": "SAT Math: Level 3 - Quiz 1", "title": "SAT Math: Level 3 - Quiz 1", "all_assessment_items": ["{\"sha\": \"662f79dda1ce5c8811e0682744016063020d6b8a\", \"live\": true, \"id\": \"x7799541f90ac1948\"}", "{\"sha\": \"9f492571d4b77ea7e0210e56a75fd39cd4aa01ef\", \"live\": true, \"id\": \"x7643b5d962982209\"}", "{\"sha\": \"138e4efa6f17b4e2b44bc8d1858ad506ed0f972e\", \"live\": true, \"id\": \"x579013e453b46933\"}", "{\"sha\": \"82770531141c309a79a9150eb2d0fd6aa276c895\", \"live\": true, \"id\": \"xddeb9b3deb5f1ff4\"}", "{\"sha\": \"94482f84680f0e256b903bcc6eff1a1dda121d94\", \"live\": true, \"id\": \"xd933cdd7d0f720e8\"}", "{\"sha\": \"11057cb56334f1bfb59c6b5f396c2d3dca520b0e\", \"live\": true, \"id\": \"x7849354e42534854\"}", "{\"sha\": \"0059586486199923ea3eacd5fb0966a27104fbfe\", \"live\": true, \"id\": \"xa9407e00aa10a51f\"}", "{\"sha\": \"5149733ec6b1ffe63eeb4c3035d3b1a3f16c94b0\", \"live\": true, \"id\": \"x5f3a279c29a7beb5\"}", "{\"sha\": \"c2cfe0f3919708ee342fbaba89a32433d77bddda\", \"live\": true, \"id\": \"x0d2023d24a397f15\"}", "{\"sha\": \"2acc9e5a85b479bec30c9e682b7c562dd618eab2\", \"live\": true, \"id\": \"x8362dcd98385b91d\"}", "{\"sha\": \"475e49f158a5e1680badf0965eef9f71f39da7ab\", \"live\": true, \"id\": \"xfb1499478f379aae\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-3", "kind": "Exercise", "name": "sat-math--level-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math--level-3"}, "sat-math--level-2": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-math-level-2/", "id": "sat-math--level-2", "display_name": "SAT Math: Level 2 - Quiz 1", "title": "SAT Math: Level 2 - Quiz 1", "all_assessment_items": ["{\"sha\": \"a71b8b881b03c8fc5110c0b97212e79999980ff9\", \"live\": true, \"id\": \"x6a3f2191ec5dbc68\"}", "{\"sha\": \"9bcddd843b3d7efd0fbd32d3b38e3b05a5672c8f\", \"live\": true, \"id\": \"xa07360531f1ced32\"}", "{\"sha\": \"591dd8176d78a1dd1145cab0916a49427681366c\", \"live\": true, \"id\": \"xad30c69d16da969f\"}", "{\"sha\": \"fdfd97e21b1b7c66554981a9461d63148922bcea\", \"live\": true, \"id\": \"xc985e764b446c915\"}", "{\"sha\": \"4a2ed32698e8aac6a774137658a0c48e6a98fe53\", \"live\": true, \"id\": \"xc0449689bf38ed59\"}", "{\"sha\": \"681ade4579a42e2d8b95913f9c831e0509a4b543\", \"live\": true, \"id\": \"xc147368d4aedf3de\"}", "{\"sha\": \"c2d1df05a32c6fc7ccfa577601f8dd5f28015b88\", \"live\": true, \"id\": \"x7d785ff015807975\"}", "{\"sha\": \"d25904164f36c1980f212e4f165591579786fc02\", \"live\": true, \"id\": \"x14a8be24a0085510\"}", "{\"sha\": \"9386dc502b77abbe5e6b6d0655d224d334bbbff1\", \"live\": true, \"id\": \"xea1dd01126bb9dee\"}", "{\"sha\": \"1fd6ebc34469b5d873c9c72ec37f4d58b6bb51ea\", \"live\": true, \"id\": \"xf355c3bcbbb0edf0\"}", "{\"sha\": \"1f7445df59f88b95ff31922bce73472698cdea27\", \"live\": true, \"id\": \"x4d3f4365a7ce3168\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-2", "kind": "Exercise", "name": "sat-math--level-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math--level-2"}, "sat-math--level-1": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-math-level-1/", "id": "sat-math--level-1", "display_name": "SAT Math: Level 1 - Quiz 1", "title": "SAT Math: Level 1 - Quiz 1", "all_assessment_items": ["{\"sha\": \"8f5b37f5eb377020c694c0eb342e19a111518e55\", \"live\": true, \"id\": \"xecfc586bbd18b9f9\"}", "{\"sha\": \"cb4f5fb4f3d6ab496ea57d13b2269d90cb687a81\", \"live\": true, \"id\": \"x0bd42f6b3e80a252\"}", "{\"sha\": \"db7639d8102f4717e8a216f06d14f92d153204f2\", \"live\": true, \"id\": \"x282f1f2733a50cf7\"}", "{\"sha\": \"2ad7bf37c5349f9d884731c3eea4dc442b10582e\", \"live\": true, \"id\": \"x9ef63c6be8069280\"}", "{\"sha\": \"a9f52cfc35587f637cfc41709b9756d60ac65605\", \"live\": true, \"id\": \"xff38f4642c009e42\"}", "{\"sha\": \"431bbd9b1e1cf5df13e18a56045f87824d7288a5\", \"live\": true, \"id\": \"x1de407457419da9f\"}", "{\"sha\": \"b53298d7f0ea8bbc54939af110d6e87859c853a2\", \"live\": true, \"id\": \"x28e8bbca66a116b9\"}", "{\"sha\": \"dd1bac3db1f3b1922cb30eac090f451d0efebf63\", \"live\": true, \"id\": \"x89aeed87065ce230\"}", "{\"sha\": \"e81765b243cd2a74b1e6753a668e9577e1d5c4ff\", \"live\": true, \"id\": \"x9d6188758101f96d\"}", "{\"sha\": \"90a9f9c0250c92a8a0219f6fa7980173a71c8832\", \"live\": true, \"id\": \"x488cb112daee9a54\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-1", "kind": "Exercise", "name": "sat-math--level-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math--level-1"}, "oxidative-phosphorylation-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/oxidative-phosphorylation-questions/", "id": "oxidative-phosphorylation-questions", "display_name": "Oxidative phosphorylation questions", "title": "Oxidative phosphorylation questions", "all_assessment_items": ["{\"sha\": \"73e451c7050106abd4cb2c8e93d791197a3fbf20\", \"live\": true, \"id\": \"x7bf938bcfd419a3c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a29d43bf1458ca2893cf6776f24c338fa760d237\", \"live\": true, \"id\": \"x86e326c98d04733c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65ca1c7b50b8d6cc9a6610bf60ba10959d19d712\", \"live\": true, \"id\": \"x274ed7e83c3e1fe4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c4afc3cbdd46b5bae8f7f4405a031b46a2e648e5\", \"live\": true, \"id\": \"x8d65fc5ac1f8955a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a80740bc9345810d3896f10be4ade24fd2132351\", \"live\": true, \"id\": \"x417544090ff5608b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7356d396b9e7276c6188c38f1d9134117cee6597\", \"live\": true, \"id\": \"xdb423dfa073a1ea7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4adccaf5d134455f5392f09d61536801059a291f\", \"live\": true, \"id\": \"xbaaa055cd3f8c9cc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef8781e031da4b9bb0bfcb5d7b91212bae7fd503\", \"live\": true, \"id\": \"x967e37b7fa6cbd98\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"33b2118b6b4e3b569c257825186b2214850605d3\", \"live\": true, \"id\": \"x9fb2148764df8615\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e7172b8311e39451f1176c82c16af22e86697b2c\", \"live\": true, \"id\": \"xa7045610a3bf5c6e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Oxidative phosphorylation questions", "basepoints": 10.0, "slug": "oxidative-phosphorylation-questions", "kind": "Exercise", "name": "oxidative-phosphorylation-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "oxidative-phosphorylation-questions"}, "biological-basis-of-behavior--nervous-system-passage---2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/biological-basis-of-behavior-nervous-system-passage-2/", "id": "biological-basis-of-behavior--nervous-system-passage---2", "display_name": "Diabetic peripheral neuropathy, pain, and acupuncture", "title": "Diabetic peripheral neuropathy, pain, and acupuncture", "all_assessment_items": ["{\"sha\": \"0cc5fce9688cde97a6385ebe85cc355c2ec7bab9\", \"live\": true, \"id\": \"x133e4fb667aaa2d0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1bd24ede953dc4fd9e0b9fb75560c28cb02036ab\", \"live\": true, \"id\": \"xdf801ebf78b458a7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"07834f9ecc9b389ff9781afc1d23169002a43cb6\", \"live\": true, \"id\": \"x4e1639c402656ea3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65974f68c96d4455f0695457a16c480f9e07d9eb\", \"live\": true, \"id\": \"x592b542801adcbc3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7bb9b0df487a5d797908deee9b990c2e200c61cb\", \"live\": true, \"id\": \"xae09060f1d22854d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to the biological basis of behavior", "basepoints": 10.0, "slug": "biological-basis-of-behavior-nervous-system-passage-2", "kind": "Exercise", "name": "biological-basis-of-behavior--nervous-system-passage---2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "biological-basis-of-behavior--nervous-system-passage---2"}, "biological-basis-of-behavior--nervous-system-passage---1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/biological-basis-of-behavior-nervous-system-passage-1/", "id": "biological-basis-of-behavior--nervous-system-passage---1", "display_name": "A virus which affects mouse muscles", "title": "A virus which affects mouse muscles", "all_assessment_items": ["{\"sha\": \"756d8c787dcccbe705a2c786e571b302bbd992d2\", \"live\": true, \"id\": \"x8a69eaf7d1016f4c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8d9db12bc1a5d591eda064fbf8ab73bfb3bfcfc1\", \"live\": true, \"id\": \"x1b955c4a7301720a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4aaed17e7b2987942ac6ab249a0ba6ae6fed9670\", \"live\": true, \"id\": \"xa2e1bd75abf2c5c1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23335f69a00dd981d5457e6f8058fc56b0af489f\", \"live\": true, \"id\": \"xc57f58b3b6e3e56d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3dc2f2421fc7300d7cd2833877130f750fc8d358\", \"live\": true, \"id\": \"x2801b14eaa28fe36\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Biological basis of behavior: nervous system Passage - 1", "basepoints": 10.0, "slug": "biological-basis-of-behavior-nervous-system-passage-1", "kind": "Exercise", "name": "biological-basis-of-behavior--nervous-system-passage---1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "biological-basis-of-behavior--nervous-system-passage---1"}, "understanding-fractional-exponents": {"uses_assessment_items": true, "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/understanding-fractional-exponents/", "id": "understanding-fractional-exponents", "display_name": "Understanding fractional exponents", "title": "Understanding fractional exponents", "all_assessment_items": ["{\"sha\": \"b90b0fbc9a5cebfbba03014620e49d5fd24a7ba8\", \"live\": true, \"id\": \"x446fc5ac0b59f62e\"}", "{\"sha\": \"cb75eb301defb08264ba538e8151f44f80be02f9\", \"live\": true, \"id\": \"x319c5f4f7866e8da\"}", "{\"sha\": \"21e25263f69175c2a517514f218611ad2d3c34e6\", \"live\": true, \"id\": \"xc7999f9d9b220f8a\"}", "{\"sha\": \"659ce84292cbaf2080f90849e2eae1b823ff5cfe\", \"live\": true, \"id\": \"xb224a10a982969e6\"}", "{\"sha\": \"70ebaae9a86243b850f4e7ebeb52f7bfe14baf89\", \"live\": true, \"id\": \"xd0f657e469d37c58\"}", "{\"sha\": \"fb3aae9914b391cabda21ed1d87be268494ea386\", \"live\": true, \"id\": \"x956490eb954550c6\"}", "{\"sha\": \"434a027e18f34e35d6d5e3722fda6b45579b3b43\", \"live\": true, \"id\": \"xa73bbd04e37a9655\"}", "{\"sha\": \"eaab6320e41a4656859d452d79e6bed2c3e84148\", \"live\": true, \"id\": \"x6fc6de643774d536\"}", "{\"sha\": \"5a91f6be37132a996e570e5d5e82b6c7b408de7f\", \"live\": true, \"id\": \"x759d47b9590b53be\"}", "{\"sha\": \"2d91f0a8d23e06d9b7868c8dba37b402f59791c4\", \"live\": true, \"id\": \"x4d59e7e2119bf029\"}", "{\"sha\": \"df04c2aa9f170977e87b7512c41202d7ff46464c\", \"live\": true, \"id\": \"x35acc336905db9b7\"}", "{\"sha\": \"f38cf4f42f6526dadf2bdd2bea086651513000de\", \"live\": true, \"id\": \"x64fdfbe574780b44\"}", "{\"sha\": \"a7eccf6e474136c152833809867ae6cd2fe5798d\", \"live\": true, \"id\": \"xb9d3280be195ce9d\"}", "{\"sha\": \"d12ab88e34144108eb1748a6fe2b16ba5e180aff\", \"live\": true, \"id\": \"xa225a373cbbba04f\"}", "{\"sha\": \"b68307988b19b3d538b0fde4038fb71e00e1dc2a\", \"live\": true, \"id\": \"x4accb453b69268d3\"}", "{\"sha\": \"6b860cccc6548a46c93a20b8ab02402dcd94a998\", \"live\": true, \"id\": \"x4d73e99f820f0654\"}", "{\"sha\": \"68bd51942c0d08c4e9d2ead25a1f856d5ccef67f\", \"live\": true, \"id\": \"x778c72c36352f8ed\"}", "{\"sha\": \"f501c9a3693e1f4525395a350d036d32eddafecd\", \"live\": true, \"id\": \"xd52a7f3ddfda46e1\"}", "{\"sha\": \"302c1e8745e3b0c120dad9c59a2825fb661ffb2f\", \"live\": true, \"id\": \"xb52d52d4ddfd4191\"}", "{\"sha\": \"2cc8c69db21f2bc3ba0ee186e662ed19ecd23b47\", \"live\": true, \"id\": \"xb2e3519312be5ca7\"}", "{\"sha\": \"b986372fdbeb1d9f384a430e62e86b909489d5bf\", \"live\": true, \"id\": \"xfcada553b230150c\"}", "{\"sha\": \"adccffec5be65da995f3a1d53e9ee1a453e972dd\", \"live\": true, \"id\": \"xa15744da7d6c5dec\"}", "{\"sha\": \"2c6a6cdd84e66e8629cdbd18921722602aebc207\", \"live\": true, \"id\": \"x7ec44fa88f59a043\"}", "{\"sha\": \"02fc9c843895a0fb0cd65014bd3fe0826f580e7c\", \"live\": true, \"id\": \"x77fe35dba2ce6ee5\"}", "{\"sha\": \"15081a6ee7cfba5af72b6f7deebfad941d88d05a\", \"live\": true, \"id\": \"x98ea8e71eb198aa9\"}", "{\"sha\": \"b4104fda8d92273c2522c4a8d090c6f4d7a873b7\", \"live\": true, \"id\": \"x40486b3d331619eb\"}", "{\"sha\": \"607c78c150b20d9765f59ce39ed4124fdadffdb8\", \"live\": true, \"id\": \"x30ea01b0778d9e24\"}", "{\"sha\": \"53b418ed71cf534fb9e05d5f833a44bee844250c\", \"live\": true, \"id\": \"x7888b4c6164d9ea5\"}", "{\"sha\": \"6c799961bc4666132c152e5b0cb868d3fc336500\", \"live\": true, \"id\": \"x979714299844bbc9\"}", "{\"sha\": \"65becdf8ff91c85398eadbe3cc5c7fe9ea88802c\", \"live\": true, \"id\": \"x74f81c40246f2562\"}"], "description": "", "basepoints": 14.0, "slug": "understanding-fractional-exponents", "kind": "Exercise", "name": "understanding-fractional-exponents", "seconds_per_fast_problem": 7.0, "prerequisites": ["exponents_2", "square_roots", "properties-of-integer-exponents"], "exercise_id": "understanding-fractional-exponents"}, "modeling-constraints": {"uses_assessment_items": true, "path": "khan/math/algebra2/systems_eq_ineq/systems_inequalities_precalc/modeling-constraints/", "id": "modeling-constraints", "display_name": "Modeling constraints with two-variable inequalities", "title": "Modeling constraints with two-variable inequalities", "all_assessment_items": ["{\"sha\": \"c1282dfc7d0baeb68beb91a1a4718eee14705242\", \"live\": true, \"id\": \"x10807bbf72ceffcc\"}", "{\"sha\": \"048916577d89345f73999d138eaa504facf02884\", \"live\": true, \"id\": \"x60dd138a61e188fd\"}", "{\"sha\": \"cd74c44db982f807dc50b52beb17ba44ad362ea8\", \"live\": true, \"id\": \"xbbf129feae8f675c\"}", "{\"sha\": \"6d2cf053058b983714240d6a88c52426b9bb302c\", \"live\": true, \"id\": \"x991ee7ca7f7e136d\"}", "{\"sha\": \"61a4a9f54da79eba17a601083421c9a227cf6abf\", \"live\": true, \"id\": \"x1e141b682a0243a6\"}", "{\"sha\": \"6ddde9e4decedc8c0ce71e599a26b028da1151dd\", \"live\": true, \"id\": \"xa3cf7d4120a9ca36\"}", "{\"sha\": \"c0d84ccc85837d5a45a95dfd70f89d695d808588\", \"live\": true, \"id\": \"x0cdf130f8ffbe7f4\"}", "{\"sha\": \"33de91c948fcd0c23b94bc79fccd6dbb3e371889\", \"live\": true, \"id\": \"xde0926c337971898\"}", "{\"sha\": \"72ac71eb14b6a26181f0b969a54415cc77041874\", \"live\": true, \"id\": \"x117f39b4d432b7df\"}", "{\"sha\": \"4e24cad7110eb952571afd02f065c1a8af3c3edd\", \"live\": true, \"id\": \"x90067e5b7b861a13\"}", "{\"sha\": \"0fbdfb2c0b70295291c408aa612094043d9ee62f\", \"live\": true, \"id\": \"x8d7f9a62dbb2ec4c\"}", "{\"sha\": \"da036a6313f95a7373b009ba87fd5592d0a2cc3e\", \"live\": true, \"id\": \"x5c7eb564feb9ddf0\"}", "{\"sha\": \"496b1ec051b55220474e1961b7660cc4009d577a\", \"live\": true, \"id\": \"x3c16c83b403aad04\"}", "{\"sha\": \"0b3413448e371084c0e75108fdc3820c9f1c4915\", \"live\": true, \"id\": \"x15576d2320f536dc\"}", "{\"sha\": \"a80a0ebbe47a1a3324746c8ac6967f3c02326ed7\", \"live\": true, \"id\": \"x2a369017d48723b1\"}", "{\"sha\": \"27129655a7512e526c4355560b2c94215fc1cb8e\", \"live\": true, \"id\": \"x5cb4a09e977aed48\"}", "{\"sha\": \"bc650ffad12808fe40d598bc2025412bde6603e7\", \"live\": true, \"id\": \"xa089ef0fb131ef52\"}", "{\"sha\": \"d699067033918adff0e7653977c620cc8e0582fe\", \"live\": true, \"id\": \"x60650f112a5a2550\"}", "{\"sha\": \"b54a883b7a4c8562fede68305055e766a6b9adb3\", \"live\": true, \"id\": \"xeefc1f0261c167b2\"}", "{\"sha\": \"5133c1095082e2f11c6be408f8703cf9e60c3be3\", \"live\": true, \"id\": \"x558f7f4169612d0e\"}", "{\"sha\": \"4baff2dc0e3c71ba1c54259d8a4f99084d009961\", \"live\": true, \"id\": \"x4fbfa2f94989978b\"}", "{\"sha\": \"77197b6556731886fba2d3d5f1a02bc59fe4f058\", \"live\": true, \"id\": \"xc5c239bea3c75193\"}", "{\"sha\": \"bf5f01b8e198aa80026a5632837535fc7250171a\", \"live\": true, \"id\": \"xb42c109ab6ddfb18\"}"], "description": "", "basepoints": 10.0, "slug": "modeling-constraints", "kind": "Exercise", "name": "modeling-constraints", "seconds_per_fast_problem": 4.0, "prerequisites": ["graphing_systems_of_inequalities_2"], "exercise_id": "modeling-constraints"}, "decomposing-angles": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-interpreting-angles/decomposing-angles/", "id": "decomposing-angles", "display_name": "Decomposing angles", "title": "Decomposing angles", "all_assessment_items": ["{\"sha\": \"3d012b12fd57115277664d2f8d4569f276151cb2\", \"live\": true, \"id\": \"x9ba95b26db2d7013\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7846135ea349909e89e9f25a6b012db64d3e8d5b\", \"live\": true, \"id\": \"xe6554419b0fb23ac\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b247dfbf6c5685b5d8f375d035e28edf5a0eef1\", \"live\": true, \"id\": \"x9256a143e48eb48f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7824cd07c4f95f2938f9e37defee3b77acb22573\", \"live\": true, \"id\": \"x512f45881cbbf8b5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"53a7f3ba0ce419d070fb31268aea5a5500a1669c\", \"live\": true, \"id\": \"xf5062a9f4846859c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a16abd647a9b0dbc5f2b56288b6758afe9fed8aa\", \"live\": true, \"id\": \"xdf566bbde9afb7b1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"37521e03da2043a6c86c4dcdaf0652e980a1ad5f\", \"live\": true, \"id\": \"x0674b3acd0b80690\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fbb7d354cb8280491c7003527e42b5c6132b4286\", \"live\": true, \"id\": \"xf5ec06c453b32cd2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9893a46ab641a52233a1717dacd8439d41500ee\", \"live\": true, \"id\": \"x174c874d7671e630\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e0eb79f01327d63def3bc3e0445f7652072564cd\", \"live\": true, \"id\": \"x2d0c3315d896dea7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b134f813325b1af43d0f9acd916f066b08b755e7\", \"live\": true, \"id\": \"xa1da73397c4296d2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"985b6ecd5fe4aaf77095118112299489444192e4\", \"live\": true, \"id\": \"x464719b68367cea5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e576e5e85e1003c7d333e399aba34be97479dd7f\", \"live\": true, \"id\": \"x2f0f61d3f53d8d8f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8d1762273ce04b08a336f7cbd5c3b79bcc2fdd9\", \"live\": true, \"id\": \"xd4718550dfcb870a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f2ab1befbda4cc9f029afa0aa25386b7d47b2af8\", \"live\": true, \"id\": \"xf4143d7ac06b5539\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"501591a634a8ebf12a6af6fe19f7876d048b1ab0\", \"live\": true, \"id\": \"x83fc291c5d880290\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3c5f8bb2a28be7eaf14c3285ff422058e74be790\", \"live\": true, \"id\": \"x6dc13d41364790a3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f3c2b9c121848da0117be9860e3e1ecf0d5e7031\", \"live\": true, \"id\": \"x85702b8dac45d51a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a66042700a69c84c7f18ad5da7b05bbcddfc0573\", \"live\": true, \"id\": \"x1705c4ae29b254c9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9af4eb92c0289d9af731f4837d654aff7018304b\", \"live\": true, \"id\": \"xad5df9f0c43f4422\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16fce365ee8f0c6815fcdcc362a4fbc31a838113\", \"live\": true, \"id\": \"x31738132f756f39c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92c17fc6ad97b0fed737901fa50b27079c1ba412\", \"live\": true, \"id\": \"xab38ed3cf48ae050\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f08dbf3ed3d91d14d3d8bc8647544c7c9724a65a\", \"live\": true, \"id\": \"xb83b577b3ab0bbda\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"030a257c6c3e0eaa58824c55cb4163a0ff75c50d\", \"live\": true, \"id\": \"xacd8bfc2385ac998\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0f469bc320b506193894ecdcdaf0a2f8155b43b3\", \"live\": true, \"id\": \"x86aeabd4ccab24cd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f5499a431f05d41f38bedf5a9099015032dab4bc\", \"live\": true, \"id\": \"xc32fa524a1743b92\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ff173e3adc5a15c57c020f169b17ab506ed6932f\", \"live\": true, \"id\": \"xa4c2db9c0a12116d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e428f982c6ca4b4367ed5a73430d50d0466992d1\", \"live\": true, \"id\": \"xa8a0a23718da7b02\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e25ea771a1e12e62eab5e733924615cb87b223d2\", \"live\": true, \"id\": \"x897144337c343934\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fd2e200e15c5a6ad29baf861f79a5b84ed903133\", \"live\": true, \"id\": \"xa5c710d512016ffb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aed8a88938b1770db7eb6e40e7951fe86118a454\", \"live\": true, \"id\": \"xc197aad3bcaa3e40\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4bbb9492967df17549742db6077ef97b54651e68\", \"live\": true, \"id\": \"xdd89e3d38947740e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f5b76e0cb93b1480b800c47fff039917e8ef5fa0\", \"live\": true, \"id\": \"x8222ff50ff2dd0e8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1fda9bef274f879af3d6a6f70c0669bf803df202\", \"live\": true, \"id\": \"x9132798a4fd1b731\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8bb5f91ffc95634afbfa12ed943e2237837d00e0\", \"live\": true, \"id\": \"x040cfdedb878c866\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f47681e09ddc7230ad8c76b8b42aacaab4b7662\", \"live\": true, \"id\": \"x871256566d8ca350\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fdbc41e109918c32522ffa2ac14f25d129a5b8ab\", \"live\": true, \"id\": \"x12c3bf5fecfa372e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"45c9620bf7bf792d6dfff6f1984f9d8d9e860e5f\", \"live\": true, \"id\": \"xcb5a50f6a6125393\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4e5c12af8c7bd06d04473b8be6ae138792e735b2\", \"live\": true, \"id\": \"xc3b4712c112e8a46\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Find an angle's measure when given the measure's of its parts.", "basepoints": 10.0, "slug": "decomposing-angles", "kind": "Exercise", "name": "decomposing-angles", "seconds_per_fast_problem": 4.0, "prerequisites": ["drawing-right--acute--and-obtuse-angles"], "exercise_id": "decomposing-angles"}, "ishtar-gate-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/babylonian/ishtar-gate-quiz/", "id": "ishtar-gate-quiz", "display_name": "Ishtar Gate (quiz)", "title": "Ishtar Gate (quiz)", "all_assessment_items": ["{\"sha\": \"4ae0d8aedc9e96b7c1e70b12a6dbbf74978d6fde\", \"live\": true, \"id\": \"x162eafc1ecf4733c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"575fabad808a5af61a6b7a71e0e786467fd7da0b\", \"live\": true, \"id\": \"x342ac25e17c3f064\", \"perseus_api_major_version\": 3}", "{\"sha\": \"826fee3decbe519390f91b0c875278850eb02ddb\", \"live\": true, \"id\": \"x7fc5005cbdcc1813\", \"perseus_api_major_version\": 3}", "{\"sha\": \"06716df8bc0b768275b7866ac2a512f0a7ae2255\", \"live\": true, \"id\": \"xfe56007eb1db4fac\", \"perseus_api_major_version\": 3}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "ishtar-gate-quiz", "kind": "Exercise", "name": "ishtar-gate-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ishtar-gate-quiz"}, "information-processing-and-the-discovery-of-iconic-memory": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/information-processing-and-the-discovery-of-iconic-memory/", "id": "information-processing-and-the-discovery-of-iconic-memory", "display_name": "Information processing and the discovery of iconic memory", "title": "Information processing and the discovery of iconic memory", "all_assessment_items": ["{\"sha\": \"1e1d683a95ea9e587e4d98dee8c362e52859999c\", \"live\": true, \"id\": \"x5baced71e8af3a42\"}", "{\"sha\": \"0dc5fb49f6e7b09aafca15e310834dfeccb23a1b\", \"live\": true, \"id\": \"x80e16908be3400ed\"}", "{\"sha\": \"b8b1279e949537de7ea7cdbf814678fcd8902f32\", \"live\": true, \"id\": \"xea23a628780f8629\"}", "{\"sha\": \"9d62275aacba0e1e44838bcd10b00b2e65c00594\", \"live\": true, \"id\": \"x564f1d5fb4b63720\"}", "{\"sha\": \"29b02f45a35ab41aaabc9b31512924670a261eae\", \"live\": true, \"id\": \"xb6f041fc63ec8558\"}"], "description": "Questions related to iconic memory", "basepoints": 10.0, "slug": "information-processing-and-the-discovery-of-iconic-memory", "kind": "Exercise", "name": "information-processing-and-the-discovery-of-iconic-memory", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "information-processing-and-the-discovery-of-iconic-memory"}, "vertex_of_a_parabola": {"uses_assessment_items": false, "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/vertex_of_a_parabola/", "id": "vertex_of_a_parabola", "display_name": "Vertex of a parabola", "title": "Vertex of a parabola", "description": "Find the vertex of a parabola in standard form.", "basepoints": 26.0, "slug": "vertex_of_a_parabola", "kind": "Exercise", "name": "vertex_of_a_parabola", "seconds_per_fast_problem": 39.0, "prerequisites": ["parabola_intuition_1"], "exercise_id": "vertex_of_a_parabola"}, "comparing-rational-numbers": {"uses_assessment_items": true, "id": "comparing-rational-numbers", "display_name": "Comparing rational numbers", "title": "Comparing rational numbers", "all_assessment_items": ["{\"sha\": \"13a707946cc507c47c312fb9b469e4c26a884e14\", \"live\": true, \"id\": \"xa7da09701db16aeb\"}", "{\"sha\": \"1ab21cd6441bfcced713f3c59efa9ffcad61c3d0\", \"live\": true, \"id\": \"x8659aef38a9b784a\"}", "{\"sha\": \"8db7c354ac550d4ebed6e9a1d0719c968f52c8ac\", \"live\": true, \"id\": \"x85fa38103b136bcf\"}", "{\"sha\": \"c9b6b4add93f36c7d1d72bce744ef38ab525410b\", \"live\": true, \"id\": \"x0f3ecfe564a3bf27\"}", "{\"sha\": \"304c002b3cc99a2fe0f0d4f440d77cba53ac5fbb\", \"live\": true, \"id\": \"xcca9debe191d624b\"}", "{\"sha\": \"1b56c85387efccbadb1d7f2df8e818e9322494d5\", \"live\": true, \"id\": \"x4773ef79075ee094\"}", "{\"sha\": \"1c4753751002c94d21edeb2e4f1fb0f49e045cb7\", \"live\": true, \"id\": \"xc401189de689f1ac\"}", "{\"sha\": \"6b38a4f66099c4e81827e0c75510ef2f42484e9b\", \"live\": true, \"id\": \"x232bd47b9c1f8eec\"}", "{\"sha\": \"ad2ef97f66ef54ae86d94034bfc65b401efbe70a\", \"live\": true, \"id\": \"x5ad6089811a7112b\"}", "{\"sha\": \"2fad89814198d80186b7655f3665282e5fe699ba\", \"live\": true, \"id\": \"xb346fb6bc1a927f2\"}", "{\"sha\": \"5edcedb2e9fe70b8c916567ee828e161ac6ad335\", \"live\": true, \"id\": \"xe4213c93971d478f\"}", "{\"sha\": \"763929da298fdc816ce964ec2461ad4fa3be972a\", \"live\": true, \"id\": \"xe7390998da79be6b\"}", "{\"sha\": \"f9c892bc10e70e6d8b12a6b3d48e6ff1d602eb4a\", \"live\": true, \"id\": \"x51a4b75a700efbbf\"}", "{\"sha\": \"32ba5af99ab5f2602d0cb3c867d92a953286de27\", \"live\": true, \"id\": \"xdc81a23fcb65a56a\"}", "{\"sha\": \"426b8bcf82cf386bf712b860458f787d5941af30\", \"live\": true, \"id\": \"x1b494362e065b17f\"}", "{\"sha\": \"81591046ff508b9705ed1ca774b0e3d86d073861\", \"live\": true, \"id\": \"x69a122b5ce0ddf17\"}", "{\"sha\": \"7e2be9961146357b69d0b175ac8c5ebc9686a976\", \"live\": true, \"id\": \"x46724f5b5a85d15a\"}", "{\"sha\": \"0251312ba7c8602ed8c54ac26b51108a04cffcfd\", \"live\": true, \"id\": \"x7d2499cd5249fdea\"}", "{\"sha\": \"e4317e650edf85ad772c4cae0473901529ff2f8f\", \"live\": true, \"id\": \"x7e00fb80eb66667f\"}", "{\"sha\": \"750f17ddcdd8488b2d9a36f87b21de5d3f27eede\", \"live\": true, \"id\": \"xe9d31d7532f29062\"}"], "description": "Practice comparing decimals, percents, fractions, and mixed numbers.", "basepoints": 10.0, "path": "comparing-rational-numbers/", "slug": "comparing-rational-numbers", "kind": "Exercise", "name": "comparing-rational-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["percentage_word_problems_1", "negative-signs-in-numerators-and-denominators"], "exercise_id": "comparing-rational-numbers"}, "congruence-relation": {"uses_assessment_items": true, "path": "khan/computing/computer-science/cryptography/modarithmetic/congruence-relation/", "id": "congruence-relation", "display_name": "Congruence relation", "title": "Congruence relation", "all_assessment_items": ["{\"sha\": \"4e69053b591e8350212c5397d6415540fde1b664\", \"live\": true, \"id\": \"x7bb36fa1\"}", "{\"sha\": \"0fdcf13b49044258ddafcad45bcce1b45deda994\", \"live\": true, \"id\": \"x83f5e3e4\"}", "{\"sha\": \"a0d833b10f22704126dd2214147cda5dc5418718\", \"live\": true, \"id\": \"xf6a5a407\"}", "{\"sha\": \"2dd8e11c72be11bec62135eddd8eae432b3ff475\", \"live\": true, \"id\": \"xbf4b3705\"}", "{\"sha\": \"2d91d73718ff626c543c4277e7500add51773a9a\", \"live\": true, \"id\": \"xed4b89dc\"}", "{\"sha\": \"c57d4861e789da735dbfaaf1dfef26558a421d31\", \"live\": true, \"id\": \"x7a4cbd8f\"}", "{\"sha\": \"578b35eb54673bb5df0d3f885929de2bfe596e8b\", \"live\": true, \"id\": \"x62f1ec5a\"}", "{\"sha\": \"691295d83011c134a74aa6930fde016f7e87c789\", \"live\": true, \"id\": \"x40664577\"}", "{\"sha\": \"bab5593f13573517e5017dd36dfa6995d2ba93b9\", \"live\": true, \"id\": \"x0726dd89\"}", "{\"sha\": \"7831a43a1b7d1909189cbf11dce8715a4266d6c2\", \"live\": true, \"id\": \"x93700886\"}", "{\"sha\": \"5cc60de828248c49fca7300436ccc8c3d3b4d518\", \"live\": true, \"id\": \"x74e7303a\"}", "{\"sha\": \"8a57c7712329e4ad89415cf74268b2127b70bda8\", \"live\": true, \"id\": \"xa2510eb6\"}", "{\"sha\": \"9d910d7a827a793796bc1e6c51a2dfb25e7f7e51\", \"live\": true, \"id\": \"x6d837aa2\"}", "{\"sha\": \"08c211a1ee859525b92ffcc84e18ebef3108c8bd\", \"live\": true, \"id\": \"x5c584c38\"}", "{\"sha\": \"81c86a950057a14573b2edacc391ca1a0a389fda\", \"live\": true, \"id\": \"xccf774bf\"}", "{\"sha\": \"492109dfbf59e898fa117386edcb28b9a01f8a5c\", \"live\": true, \"id\": \"x4d392047\"}", "{\"sha\": \"9371443cd79c1a973d71e896eae4ca7a09077e26\", \"live\": true, \"id\": \"x3ed68b6b\"}", "{\"sha\": \"d620504fbae113aec50f57896052494364e5395f\", \"live\": true, \"id\": \"x9b57d604\"}", "{\"sha\": \"ca7f8a2b16d67bd1d5bf69349413a81a3c5278c1\", \"live\": true, \"id\": \"x3dbe9270\"}", "{\"sha\": \"d3b801fb461cfb9cf2bff27aeb44e36e944ff2da\", \"live\": true, \"id\": \"xd0911448\"}"], "description": "", "basepoints": 10.0, "slug": "congruence-relation", "kind": "Exercise", "name": "congruence-relation", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "congruence-relation"}, "cell-cell-interactions---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cell-cell-interactions-passage-1/", "id": "cell-cell-interactions---passage-1", "display_name": "Reducing pain with morphine ", "title": "Reducing pain with morphine", "all_assessment_items": ["{\"sha\": \"d11baaadda095143063f06f6be14bbf150844fde\", \"live\": true, \"id\": \"xdfd9bad350fd101a\"}", "{\"sha\": \"35fbbf2b202fdec32a97d5a1e5daad197a825bc6\", \"live\": true, \"id\": \"x5b9e7d046ac1a40c\"}", "{\"sha\": \"6d9b964fe2cbe83ccc714311b01c148512198de7\", \"live\": true, \"id\": \"xdef747fe7c8c5f22\"}", "{\"sha\": \"ee7d8f0329a98cea3acefb71d196bf65574c7dbc\", \"live\": true, \"id\": \"x4111fac578527962\"}", "{\"sha\": \"1f55078bc18775821121003f8e54c2b9335ba1a6\", \"live\": true, \"id\": \"xd5ddbaf960cb8f91\"}"], "description": "Cell-cell Interactions - Passage 1", "basepoints": 10.0, "slug": "cell-cell-interactions-passage-1", "kind": "Exercise", "name": "cell-cell-interactions---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cell-cell-interactions---passage-1"}, "positive_and_zero_exponents": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/exponents-radicals/world-of-exponents/positive_and_zero_exponents/", "id": "positive_and_zero_exponents", "display_name": "Exponents", "title": "Exponents", "all_assessment_items": ["{\"sha\": \"3b89c4346766a2cf95a231b5b10ecc5037f864da\", \"live\": true, \"id\": \"xc12122f38725b76f\"}", "{\"sha\": \"e3a0b3e842c4075f59aa0bfb96e9504ecf16092b\", \"live\": true, \"id\": \"xfc21ac3a91e06ee0\"}", "{\"sha\": \"14589c8971515313991050241b45d54e119aa819\", \"live\": true, \"id\": \"x0132f981cc0adb9e\"}", "{\"sha\": \"cae8ab10ac689d9ace7754de28ca312db33ee44f\", \"live\": true, \"id\": \"x3d96759bd5ce7d3d\"}", "{\"sha\": \"62fdc9d8f22c3817d576fbab62fd0c21ec3b705c\", \"live\": true, \"id\": \"x2430e619aa1d1c81\"}", "{\"sha\": \"3592843cd93842ccb7b77580ba8c046b82428462\", \"live\": true, \"id\": \"x0105e37186a291ff\"}", "{\"sha\": \"24fbca5ea5016bd6b071e7b72790bb2571fbd593\", \"live\": true, \"id\": \"xac598606ebbd064c\"}", "{\"sha\": \"9eee4b0fd818c101097ccbbbb617286a7679e361\", \"live\": true, \"id\": \"xaf0c037169ed7f7b\"}", "{\"sha\": \"951a924224428fefde9719e1aeabf4f6e397a572\", \"live\": true, \"id\": \"xf34bc1c74aea7b51\"}", "{\"sha\": \"55ef51c4f28411e451fed13059f19984e14fbb34\", \"live\": true, \"id\": \"x76897882ca4124aa\"}", "{\"sha\": \"03453e3973abce69966fb31bdc146a347140e999\", \"live\": true, \"id\": \"xdacb67c50e590acd\"}", "{\"sha\": \"9d28313bd5f05b75ad82c5eccd6ac3504bd4dad9\", \"live\": true, \"id\": \"x14985b23e23a9aea\"}", "{\"sha\": \"8c34481d9ec029aa4361c3aebe7d25c664aa5300\", \"live\": true, \"id\": \"x88ea2da539bb1fc6\"}", "{\"sha\": \"a95b01869add4dac8cbfe36c70e2a05917bb3263\", \"live\": true, \"id\": \"xaaa53b34c2c8ace1\"}", "{\"sha\": \"16ed1d30cfe3eb07770f05905796e7807ba0e0e7\", \"live\": true, \"id\": \"xf26f1ba0874a8948\"}", "{\"sha\": \"0077fb3ec81e08f993563fec42c4339684df449e\", \"live\": true, \"id\": \"x13fad40ea13e8450\"}", "{\"sha\": \"dc644b521b705d15aacf535c0c558e9b6aa1c554\", \"live\": true, \"id\": \"x2655fb59b6ee2bf7\"}", "{\"sha\": \"cd9d5864ff773d3c02417213aeac89b62d7d7008\", \"live\": true, \"id\": \"x29654297895e42d1\"}", "{\"sha\": \"7d1f87e45aaed30ec9b0a1e21ef2add1a4bc22c0\", \"live\": true, \"id\": \"xfd00a5bcdb7828ab\"}", "{\"sha\": \"99377592c217241ca89bf6c38e3732542c6a6f01\", \"live\": true, \"id\": \"x91b77b8f6757fd1b\"}", "{\"sha\": \"d1c2b0ab8a88200c4c77256903acbb18ecb00a3f\", \"live\": true, \"id\": \"x87fb06785757fd1c\"}", "{\"sha\": \"a8da7c41359801cafdde66ef6305757d7eff4d3d\", \"live\": true, \"id\": \"xe25e177abe0c7e3a\"}", "{\"sha\": \"3da495d59a8fcbc333bdccd1916edc8ccf4502ea\", \"live\": true, \"id\": \"xdb3a231fcce7ea57\"}", "{\"sha\": \"be73505ad0cff0cf959a1a3afb03b3f5bd0ad2cb\", \"live\": true, \"id\": \"x1045ed502d861af0\"}", "{\"sha\": \"9818fc5b4be206b49f54d99c886d1e90a2d9bf22\", \"live\": true, \"id\": \"x16dbfb9870041f98\"}", "{\"sha\": \"b057b43e9b5e96d8d4b0e68265085872b6da09cc\", \"live\": true, \"id\": \"x93c6f3272400b715\"}", "{\"sha\": \"8222b452bd83daeb90e7532904cce5107a141573\", \"live\": true, \"id\": \"xc7c3c5d0ac582013\"}", "{\"sha\": \"246913d9a18272b345af65e2850df62e41e00c97\", \"live\": true, \"id\": \"x6c37ccc348d514ff\"}", "{\"sha\": \"7de6417c35dd25f3c9e0345496a1711eada3fcb2\", \"live\": true, \"id\": \"xd98a75e60f05fe42\"}", "{\"sha\": \"12409d2cf3f83194826ae9f8006f92a30a118c27\", \"live\": true, \"id\": \"x10ba88cb17e03daa\"}", "{\"sha\": \"f8386d391fc1c903eb86ebfa6139dc79e55bbaa7\", \"live\": true, \"id\": \"x85445cd4ea0640b2\"}", "{\"sha\": \"95be0e540a0b8d157545c788eb5786cf849c20de\", \"live\": true, \"id\": \"x946757becf6a9d6d\"}"], "description": "Practice taking exponents of whole numbers. All exponents in these problems are either positive or zero.", "basepoints": 10.0, "slug": "positive_and_zero_exponents", "kind": "Exercise", "name": "positive_and_zero_exponents", "seconds_per_fast_problem": 4.0, "prerequisites": ["powers-of-ten"], "exercise_id": "positive_and_zero_exponents"}, "cell-cell-interactions---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cell-cell-interactions-passage-2/", "id": "cell-cell-interactions---passage-2", "display_name": "The role of tyrosine-kinase inhibitors in preventing cancer", "title": "The role of tyrosine-kinase inhibitors in preventing cancer", "all_assessment_items": ["{\"sha\": \"d6dffd7fc82c53e91a3d04d7a5de5cc9be053118\", \"live\": true, \"id\": \"x9ca390f3f4e7ad54\"}", "{\"sha\": \"8fb22aa93764a48dd992d684a297a52c45e19933\", \"live\": true, \"id\": \"xa9b516292abbb8a2\"}", "{\"sha\": \"adb874b93eb3ba66dff922caac4d0e2520b56377\", \"live\": true, \"id\": \"xf5a9394631de477f\"}", "{\"sha\": \"8c609f2a4dd20c4bf30ba99aae6a90d39ddc02e0\", \"live\": true, \"id\": \"x8425479edea6f0d9\"}", "{\"sha\": \"449a1cd0e24238e7e116488b1924d661dc7ef300\", \"live\": true, \"id\": \"xafd457dc7d473500\"}"], "description": "Cell-cell Interactions - Passage 2", "basepoints": 10.0, "slug": "cell-cell-interactions-passage-2", "kind": "Exercise", "name": "cell-cell-interactions---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cell-cell-interactions---passage-2"}, "adding_and_subtracting_rational_expressions": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding_and_subtracting_rational_expressions/", "id": "adding_and_subtracting_rational_expressions", "display_name": "Adding and subtracting rational expressions 2", "title": "Adding and subtracting rational expressions 2", "description": "Adding and subtracting expressions with a common denominator, where each is of the form (Ax+B)/(Cx+D).", "basepoints": 10.0, "slug": "adding_and_subtracting_rational_expressions", "kind": "Exercise", "name": "adding_and_subtracting_rational_expressions", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_rational_expressions_0.5"], "exercise_id": "adding_and_subtracting_rational_expressions"}, "multiplying_and_dividing_negative_numbers": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/multiplying_and_dividing_negative_numbers/", "id": "multiplying_and_dividing_negative_numbers", "display_name": "Multiplying and dividing negative numbers", "title": "Multiplying and dividing negative numbers", "description": "Practice multiplying and dividing integers.", "basepoints": 12.0, "slug": "multiplying_and_dividing_negative_numbers", "kind": "Exercise", "name": "multiplying_and_dividing_negative_numbers", "seconds_per_fast_problem": 5.0, "prerequisites": ["dividing_fractions_1.5"], "exercise_id": "multiplying_and_dividing_negative_numbers"}, "one_step_equation_intuition": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/one_step_equation_intuition/", "id": "one_step_equation_intuition", "display_name": "One step equation intuition", "title": "One step equation intuition", "description": "Explore why we do the same things to both sides of an equation.", "basepoints": 16.0, "slug": "one_step_equation_intuition", "kind": "Exercise", "name": "one_step_equation_intuition", "seconds_per_fast_problem": 9.0, "prerequisites": ["writing_expressions_1", "evaluating_expressions_1"], "exercise_id": "one_step_equation_intuition"}, "imaginary_unit_powers": {"uses_assessment_items": true, "path": "khan/math/precalculus/imaginary_complex_precalc/i_precalc/imaginary_unit_powers/", "id": "imaginary_unit_powers", "display_name": "Imaginary unit powers", "title": "Imaginary unit powers", "all_assessment_items": ["{\"sha\": \"ac89fbede7d7f1e87d5c65b6fcdc981bcff0ecb7\", \"live\": true, \"id\": \"xe339c55fa37a3378\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d5878896907a21676989c34358a9078e9e8dcd98\", \"live\": true, \"id\": \"x9fc7620b943ac460\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d0875b6a99f0d34dabc8a4f7839a3c0555d565e6\", \"live\": true, \"id\": \"xc57c92a39973b862\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e26f2896f564bf46eedb6c169b1dd7c18ee2a887\", \"live\": true, \"id\": \"x879b6716ba27b953\", \"perseus_api_major_version\": 3}", "{\"sha\": \"7b1155be2617f6289695312a2d35e09be5becf52\", \"live\": true, \"id\": \"x84d07ad8156485a6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e93d33c35a702f7ac17b13a67d3363593c9335e8\", \"live\": true, \"id\": \"x9277d6c03efb046a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"99fb98ca53f3ef709a943b8292df70557e84d507\", \"live\": true, \"id\": \"x47cdf98e20d139a4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"67b58e160718f9c26410f14c9a7b4c3575745ab4\", \"live\": true, \"id\": \"x4bba85167dfdac39\", \"perseus_api_major_version\": 3}", "{\"sha\": \"930656276a652b807b23b255a07723830c591a5f\", \"live\": true, \"id\": \"x6440f62e1f317799\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d763188a7f1fbe6e83ad26e69e54309a1056c871\", \"live\": true, \"id\": \"xdb8021d46cf7a8b0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"a7f16edd62d18bf1af9fbac2506e4f7d3980fe6b\", \"live\": true, \"id\": \"x120035a558203c45\", \"perseus_api_major_version\": 3}", "{\"sha\": \"01b23f8d721940261c7f02a46d0b02c286e9df41\", \"live\": true, \"id\": \"x41f93c59e345e8bf\", \"perseus_api_major_version\": 3}", "{\"sha\": \"db10eb53c42127d736eef82309d7136b3803ed30\", \"live\": true, \"id\": \"xbc6a0d393249c5ef\", \"perseus_api_major_version\": 3}", "{\"sha\": \"7872b276a74ed1558875827c359e18c6c4ec9b26\", \"live\": true, \"id\": \"xe1a12e629f418401\", \"perseus_api_major_version\": 3}", "{\"sha\": \"965e643adbcaf4917353d284da1722942aff7e0a\", \"live\": true, \"id\": \"xdb5950db41dc710b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f4aa14dd03d4e3ad620846806d2667a5bda4d877\", \"live\": true, \"id\": \"x90d76093ae0e9dcd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"88c87b141626c1074d8d685b7deba46dcaaf4951\", \"live\": true, \"id\": \"xf648ff9b4e82d982\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8463312901a9f169f630a9fcadb39b01b10b1996\", \"live\": true, \"id\": \"x56a7b828722a68f5\", \"perseus_api_major_version\": 3}", "{\"sha\": \"040e5515764bc5c2bc27dac1066f76b3c6edb7f9\", \"live\": true, \"id\": \"xb822809213aaee3b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ad25b0d0defab930dac6adb616911e6a122386b1\", \"live\": true, \"id\": \"x20365f308ade572d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"404e3528811d47c009e839f6ec8af8518d564aac\", \"live\": true, \"id\": \"x2a1f14c18d2fb873\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ce2cf241687cce102823a0158a218d261ea27f65\", \"live\": true, \"id\": \"x7d29cbdbe04b56af\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d9937e3defab4da6716861593afa3308fe79a997\", \"live\": true, \"id\": \"xc062d2744c77c968\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ef2ebe138b6ce36561eecf9c61ebf4d3811ab21f\", \"live\": true, \"id\": \"x6fd614957a96cd92\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2506ec7252db9062e8b6feae53c892430945b939\", \"live\": true, \"id\": \"x6d8ef51ebf9d6587\", \"perseus_api_major_version\": 3}", "{\"sha\": \"41866245138ab1a94680f1f4f3f20d4a7a82410a\", \"live\": true, \"id\": \"xf84fda807c4efc27\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0e780b18da39885faedced439910fb09ad4ac34b\", \"live\": true, \"id\": \"xd6e538d5470b3f4c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e49ec241c227b36a1799b103006adb6a7278ba8b\", \"live\": true, \"id\": \"x2e67dd3ace2cf13b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5dc2aff9400acfc0917305323aadd8e3034a2640\", \"live\": true, \"id\": \"x28581bd198d6ea94\", \"perseus_api_major_version\": 3}", "{\"sha\": \"a795c14a8a8c454fc66d736c18e774f01c312d72\", \"live\": true, \"id\": \"xe579aeb4cbea1c7c\", \"perseus_api_major_version\": 3}"], "description": "Solve problems with base i (square root of -1) raised to a positive exponent", "basepoints": 13.0, "slug": "imaginary_unit_powers", "kind": "Exercise", "name": "imaginary_unit_powers", "seconds_per_fast_problem": 6.0, "prerequisites": ["radical_equations"], "exercise_id": "imaginary_unit_powers"}, "alternating-series": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/alternating-series/", "id": "alternating-series", "display_name": "Alternating series", "title": "Alternating series", "all_assessment_items": ["{\"sha\": \"65435360f965c826949f19300175eaeb705abea8\", \"live\": true, \"id\": \"xa8157fc2910e38c9\"}", "{\"sha\": \"aaa634fbed72624b992761ab6bbd931829c1a642\", \"live\": true, \"id\": \"xc85fa8b007b11381\"}", "{\"sha\": \"b1d91f9b2a734868cf92f67b944978583da04758\", \"live\": true, \"id\": \"x0cee6eaa349dab9b\"}", "{\"sha\": \"794656a55d2d7d63debf3a5f545a40add97c8ef1\", \"live\": true, \"id\": \"x49a757f5f06742eb\"}", "{\"sha\": \"8df15c9f0cdd9b3f3a4683adc0942a1e086cd88f\", \"live\": true, \"id\": \"x3bf0449b2b392bd7\"}", "{\"sha\": \"6e79869496f4d6d143d8585f3be2a46ed81f1e6a\", \"live\": true, \"id\": \"xd6932489142576cc\"}", "{\"sha\": \"5746f87127f67918fb9cc6465595647effd55c04\", \"live\": true, \"id\": \"x2efb52f602d10d7a\"}", "{\"sha\": \"bd14cfe42735d2316dd97842202e9251c1f7c362\", \"live\": true, \"id\": \"xc786aae917fc22d0\"}", "{\"sha\": \"77db933ee89a58d56e1830112bbb494da7aaab75\", \"live\": true, \"id\": \"x5573f28e6622619f\"}", "{\"sha\": \"defa0f9efe8434919ddda113b5ad12f4012f0e4a\", \"live\": true, \"id\": \"x34c8786770f274ac\"}", "{\"sha\": \"80b8fe846bce4eaba6cd451c19ba592c279b46b7\", \"live\": true, \"id\": \"x89cefee196135add\"}", "{\"sha\": \"ca2bd4ac404aab2f250c3ad654d0fb7d4e0f0164\", \"live\": true, \"id\": \"x963441d3ed02d2e5\"}", "{\"sha\": \"8edfe4b845c0df0ff07cc884efaba7f2410e82b2\", \"live\": true, \"id\": \"xde58aae1f2d4f491\"}", "{\"sha\": \"75ea085b0f7c2c55108b887fdc215fd747550236\", \"live\": true, \"id\": \"x75862a597387768f\"}", "{\"sha\": \"c04d1680b12cba3813b296c628120487890db67d\", \"live\": true, \"id\": \"x7cdbb51526232e42\"}", "{\"sha\": \"9993944930fccf09cbedf0fef6466cc5c2226184\", \"live\": true, \"id\": \"xda454529e0c3930c\"}", "{\"sha\": \"df041d5a9cc32b9e1ba284f950252c54215b2dd1\", \"live\": true, \"id\": \"x708e8d26751a7cd9\"}", "{\"sha\": \"34790c3f02945dadc1feb75716ebc4c055458266\", \"live\": true, \"id\": \"x8d6ba3837d378ea0\"}", "{\"sha\": \"62e510cfd7d38817653bd93c1fc9acabc60c7979\", \"live\": true, \"id\": \"x8c031b899f22aebb\"}", "{\"sha\": \"83af042ad63803b072a11ec6844978e49ffe1643\", \"live\": true, \"id\": \"x5760bdf8ee42114e\"}", "{\"sha\": \"b3d0252ab6402a6bae8ccec860e1415d81fcdd7c\", \"live\": true, \"id\": \"x2d0d892be33cb4c6\"}", "{\"sha\": \"43035183f275cfbdf24c875db92d16c5be0478ed\", \"live\": true, \"id\": \"xdb4ab183dad84375\"}", "{\"sha\": \"3034be1b33bb33bfc0278cdcb2ea8b42ddbd8869\", \"live\": true, \"id\": \"xc0bbb6561beab86f\"}", "{\"sha\": \"c8a98ca6cffb4cca6e1dbad1adeff6ace4a8012a\", \"live\": true, \"id\": \"x5ea5e50773ce7cff\"}", "{\"sha\": \"27347b4389b5c76edf05d95f2408fdf7c935094a\", \"live\": true, \"id\": \"x8603d29cb7123e89\"}", "{\"sha\": \"876ab0d29c6368e0a17557d6ff625c176aee8b62\", \"live\": true, \"id\": \"xfd13af4c917762c6\"}", "{\"sha\": \"b7255298c026823b8e3d4739b302655b68131f61\", \"live\": true, \"id\": \"xcce77aba758c1930\"}", "{\"sha\": \"9e264989a311a8345ea59b12418365b5545d67a6\", \"live\": true, \"id\": \"xa38142c4d4f6fe5c\"}", "{\"sha\": \"1d6b50e5e5136b09f98319592c2455328cf6e7f5\", \"live\": true, \"id\": \"x52a6473e982be802\"}", "{\"sha\": \"896cd044392bc2064c65d05bb26991e3845d40e3\", \"live\": true, \"id\": \"xef016b07508e8e4d\"}"], "description": "", "basepoints": 10.0, "slug": "alternating-series", "kind": "Exercise", "name": "alternating-series", "seconds_per_fast_problem": 4.0, "prerequisites": ["convergence-and-divergence-of-series"], "exercise_id": "alternating-series"}, "infrared-and-ultraviolet-visible-spectroscopy-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/infrared-and-ultraviolet-visible-spectroscopy/infrared-and-ultraviolet-visible-spectroscopy-questions/", "id": "infrared-and-ultraviolet-visible-spectroscopy-questions", "display_name": "Infrared and Ultraviolet/Visible spectroscopy questions", "title": "Infrared and Ultraviolet/Visible spectroscopy questions", "all_assessment_items": ["{\"sha\": \"dac03ded15496dc85e66633da5ea23657af3a29d\", \"live\": true, \"id\": \"xd3c03cb74547285e\"}", "{\"sha\": \"616ac8b0d6f8e59123bfc9b65a9b8ef62d3b8a79\", \"live\": true, \"id\": \"x36e8ad8786ea6389\"}", "{\"sha\": \"65334a89c37ca0671980c8df3ea113492b23b801\", \"live\": true, \"id\": \"x60eb91d20f31ba6f\"}", "{\"sha\": \"41ddecfc5567241a4750dfd61231bbf68f557348\", \"live\": true, \"id\": \"x933b24097dfdff1a\"}", "{\"sha\": \"edd833dd88c8d3f8c10703d8f61d011b54a3659d\", \"live\": true, \"id\": \"xbcbbd3a3a4fef7af\"}", "{\"sha\": \"5f3bfc459781daf80cd596b7fd9d673651f0d00a\", \"live\": true, \"id\": \"xee455a341895094d\"}", "{\"sha\": \"8c0158e54ccc41d783d3eacca589a11e8f4750be\", \"live\": true, \"id\": \"x2df534bb7cc00527\"}", "{\"sha\": \"11ac6e1edcd06043a39a0dd04d29fe3ef2c167ff\", \"live\": true, \"id\": \"x06bc0b6db5580670\"}", "{\"sha\": \"9534b7899a8c07ee3e7f050158cbcf5272c8875b\", \"live\": true, \"id\": \"x36d37a5b1bbf17ff\"}", "{\"sha\": \"0aa0cd23dfaab7914d5f322fc1a27ab409128894\", \"live\": true, \"id\": \"xd81bd5c97aaa4c2b\"}"], "description": "Infrared and Ultraviolet/Visible spectroscopy questions", "basepoints": 10.0, "slug": "infrared-and-ultraviolet-visible-spectroscopy-questions", "kind": "Exercise", "name": "infrared-and-ultraviolet-visible-spectroscopy-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "infrared-and-ultraviolet-visible-spectroscopy-questions"}, "law-of-sines-and-cosines-word-problems": {"uses_assessment_items": true, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law-of-sines-and-cosines-word-problems/", "id": "law-of-sines-and-cosines-word-problems", "display_name": "Law of sines and law of cosines word problems", "title": "Law of sines and law of cosines word problems", "all_assessment_items": ["{\"sha\": \"ca2c83a7a62b21ae7edb9f510c19ba1a9deeba93\", \"live\": true, \"id\": \"xea20a5ac25ae336f\"}", "{\"sha\": \"0f8ecdb0794336ed864a4c50b740241afe2f32fc\", \"live\": true, \"id\": \"x58bfd9f87fd6a1df\"}", "{\"sha\": \"24caac0b4f5aac6a6995293612db32ebd2a32903\", \"live\": true, \"id\": \"x2ae9ef0eea6afb24\"}", "{\"sha\": \"4f26ae1b217a886acb6a22b5f373bca3d3f4550a\", \"live\": true, \"id\": \"x62334ce8ca5c2fc6\"}", "{\"sha\": \"20526f6a9f9d7f129f7f5801c49a09b42713eda2\", \"live\": true, \"id\": \"xfde48ea7fea631d2\"}", "{\"sha\": \"73b520f3727b95a424777aa58bf531a472ed452f\", \"live\": true, \"id\": \"xe3a8bfcc0a772fd5\"}", "{\"sha\": \"04ae16dc244fdd696ad51d9d639f8e00a3b60989\", \"live\": true, \"id\": \"x1edaf041e5d102e3\"}", "{\"sha\": \"fd096b638a526548a1583cdabc5e178179a35e78\", \"live\": true, \"id\": \"xa1bd6102b523fda1\"}", "{\"sha\": \"f046c725901c6b435406f375abcb3f25e017f1e2\", \"live\": true, \"id\": \"x4c5d2b3e8b80faf0\"}", "{\"sha\": \"2071ca7feafef34b3b3a551f6ddcdcbb4d7298b5\", \"live\": true, \"id\": \"xadea08b697ad5b4e\"}", "{\"sha\": \"6e2c056b3b377d62331c8685b885d195a8f0dab9\", \"live\": true, \"id\": \"x285c37c2023d240b\"}", "{\"sha\": \"381b36bfca82e8405839d85c8725549dfb2792b7\", \"live\": true, \"id\": \"x7296ee5a412a61c0\"}", "{\"sha\": \"34218992978d70cf403c61523b54fd7bba9bbc68\", \"live\": true, \"id\": \"xcfcc55c0d2d1f96c\"}", "{\"sha\": \"37f37f825bd186edda854b5ec0a7063af68b603d\", \"live\": true, \"id\": \"x8c6586f237b1b79c\"}", "{\"sha\": \"678d6fbc51d7fe6c3127563ef5b6f9d165cd9c4b\", \"live\": true, \"id\": \"x423306ca5bf3c61d\"}", "{\"sha\": \"129529c25f9f80e04b3486a0c488c21678551240\", \"live\": true, \"id\": \"xc7ee7669c6c692c5\"}", "{\"sha\": \"fab22d469e4aa2abb447a9eb96f1569d5714416c\", \"live\": true, \"id\": \"x4671c0546e39ef9e\"}", "{\"sha\": \"736cf6a6442177ffb42afe9a807eac32bbbeab31\", \"live\": true, \"id\": \"x930e37d347f1f840\"}", "{\"sha\": \"c0f1caae6b1cdd3ea69462c95a10dffc1a3c44d1\", \"live\": true, \"id\": \"xf4786df7c2869f8a\"}", "{\"sha\": \"b496ecde1ed0e5ac3f992e68c361e1fc7eae7be7\", \"live\": true, \"id\": \"x7b5bf97dfb759023\"}", "{\"sha\": \"88aa342e8585de271aa332bc29d56c31d4ffd67c\", \"live\": true, \"id\": \"xa7bc9ab468769e31\"}", "{\"sha\": \"bed10ca859118b77dff861666bcfd31cd7297fab\", \"live\": true, \"id\": \"xf0280f75139ebbf9\"}", "{\"sha\": \"a1fb3f9e6ceac890ff7b51d5f09f815c45990590\", \"live\": true, \"id\": \"x76521153637e3979\"}", "{\"sha\": \"88cf8e3035bb3a47a02dadfbf0f427adfe601475\", \"live\": true, \"id\": \"x82ce7adec6e76c87\"}", "{\"sha\": \"4e294bc563d0fb4396e88067dbeddfb1ab808042\", \"live\": true, \"id\": \"x39d9cf475e470c64\"}", "{\"sha\": \"aa7757e545402708bc515a7f601ff2710e1a2bb7\", \"live\": true, \"id\": \"x4965b2c291370b9d\"}", "{\"sha\": \"62f8089f4591dc0b6876ad04a39c5228db2d4dc1\", \"live\": true, \"id\": \"xfa1b7c1660a8aa27\"}", "{\"sha\": \"99feab757bd3e9e2f366a21570fb667abd987c81\", \"live\": true, \"id\": \"xee9d63557d3edd6a\"}", "{\"sha\": \"128133b1156992231656f64b57b45ea51a1acb79\", \"live\": true, \"id\": \"xeba948c8d6caeb54\"}"], "description": "", "basepoints": 10.0, "slug": "law-of-sines-and-cosines-word-problems", "kind": "Exercise", "name": "law-of-sines-and-cosines-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["law_of_cosines", "law_of_sines"], "exercise_id": "law-of-sines-and-cosines-word-problems"}, "graph-from-slope-intercept-equation": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope-intercept-form/graph-from-slope-intercept-equation/", "id": "graph-from-slope-intercept-equation", "display_name": "Graph from slope-intercept equation", "title": "Graph from slope-intercept equation", "all_assessment_items": ["{\"sha\": \"18a2385765cd61d1d1a48bba6ffa370a04fe7e68\", \"live\": true, \"id\": \"x4e0548d22e1822b2\"}", "{\"sha\": \"2732fd8c0209cd38a3da180b39b42da3c574d72c\", \"live\": true, \"id\": \"x41b096b42d1050b4\"}", "{\"sha\": \"f1f5dfcd99ac918025778fce00b18ec6bdc422f9\", \"live\": true, \"id\": \"xfe5ac51c24aed858\"}", "{\"sha\": \"5239e5f34598e5c8518ff8f8898b447ec5c9a6cd\", \"live\": true, \"id\": \"x6547af968dce04f4\"}", "{\"sha\": \"e6ed0db04c4253281493fad9abe7bc2c2ed444ad\", \"live\": true, \"id\": \"x6ba6bf9a71ccc6a9\"}", "{\"sha\": \"dbe86592c0f8b24f189a0206be705d8be1da095d\", \"live\": true, \"id\": \"xfa5da5fce35b3433\"}", "{\"sha\": \"4c6211581ca7ed693838ac7df70c3bcbf0d9fe24\", \"live\": true, \"id\": \"x09c4113cde2e71be\"}", "{\"sha\": \"09d2e8dc5a1bed02da85dba0c742f10eafa1721b\", \"live\": true, \"id\": \"xa793847e4c597904\"}", "{\"sha\": \"715445f1846bf4613c7c45d5512b56048c88df06\", \"live\": true, \"id\": \"x55616bd316fd0c4e\"}", "{\"sha\": \"6c08313dffc42160bc8711f4bffaa8736e195c6e\", \"live\": true, \"id\": \"xcfbafcbbbbadec5f\"}", "{\"sha\": \"63788731d7ab53a606dd6cdaafcc5ca9a32d76a3\", \"live\": true, \"id\": \"xafbb6f34200c6a60\"}", "{\"sha\": \"6d89d532120e994e67d6dd2bfd0d5b84a99605d5\", \"live\": true, \"id\": \"xa82a01dabb65f81c\"}", "{\"sha\": \"864fd5ff797caf9fbd8a5fee57b78513aa587091\", \"live\": true, \"id\": \"x0343717eb1ad23e9\"}", "{\"sha\": \"b27ad9bca51a41c0d64a898251ec8aee2092b5a2\", \"live\": true, \"id\": \"x47c880aebb2dca5c\"}", "{\"sha\": \"106d750b9465821a6b1d8e3ea9bf22a9a1e1e3e2\", \"live\": true, \"id\": \"x6d27fb41885a7a77\"}", "{\"sha\": \"4ca3d63ddfdcf44722ede2e99abc7eaa8aca7101\", \"live\": true, \"id\": \"xae1f52d54ca20e1c\"}", "{\"sha\": \"168c314871e4998b367e6a08224dfc13c4da34d3\", \"live\": true, \"id\": \"x57216f94cb401439\"}", "{\"sha\": \"91ee41c3fb067140abb2344b132216effc6db92d\", \"live\": true, \"id\": \"xf0a65218f04b556c\"}", "{\"sha\": \"83a612de23f21bc16dd25a8b81e2f2ee43057f60\", \"live\": true, \"id\": \"x48e4721ca5e65ccd\"}", "{\"sha\": \"2104ec766841d4256d8a00082943029a4b671c84\", \"live\": true, \"id\": \"xe103ffec7ab888e3\"}"], "description": "Draw the graph of a line", "basepoints": 10.0, "slug": "graph-from-slope-intercept-equation", "kind": "Exercise", "name": "graph-from-slope-intercept-equation", "seconds_per_fast_problem": 4.0, "prerequisites": ["slope-from-an-equation-in-slope-intercept-form"], "exercise_id": "graph-from-slope-intercept-equation"}, "expected-value-with-empirical-probabilities": {"uses_assessment_items": true, "path": "khan/math/probability/random-variables-topic/expected-value/expected-value-with-empirical-probabilities/", "id": "expected-value-with-empirical-probabilities", "display_name": "Expected value with empirical probabilities", "title": "Expected value with empirical probabilities", "all_assessment_items": ["{\"sha\": \"73c83611d34f9213fe1b1471ee2377bcc6f07dfe\", \"live\": true, \"id\": \"x90fb24c1d7c42fdd\"}", "{\"sha\": \"cda17007245c80b64143b911012cc934c5620f2f\", \"live\": true, \"id\": \"x6e34450d6460331b\"}", "{\"sha\": \"4fcccf7ed56dbd70e1ed5eebb5f10f0dbdfa1d6e\", \"live\": true, \"id\": \"xdf56f978d0367b3b\"}", "{\"sha\": \"17db30a161c10484975e4f801be7f1c37698c78a\", \"live\": true, \"id\": \"x2c76113a87c9ac6f\"}", "{\"sha\": \"fbb8c92103eec89ff97cd3b6362e1f4986b7a329\", \"live\": true, \"id\": \"xecba58b1e2fcdee1\"}", "{\"sha\": \"1dc580a5a59c65e7e6fc6734b99141591a67908f\", \"live\": true, \"id\": \"x9d3319a2eba4a892\"}", "{\"sha\": \"241dd5f1beefcf064900aae7c69ffafb70ead2e5\", \"live\": true, \"id\": \"x6b8232969c4a53c1\"}", "{\"sha\": \"2c928374e0a97c4a38ada1334e5cfe5850552e68\", \"live\": true, \"id\": \"x4c5d1f78552b813b\"}", "{\"sha\": \"48b605d96e39d1048ed3fb784f9036fb32ed61da\", \"live\": true, \"id\": \"x8053fc4145acf8fa\"}", "{\"sha\": \"d3fe0b9af69e75ddca8de65d000e18ed9d475f6f\", \"live\": true, \"id\": \"x050e8766f0b4c602\"}", "{\"sha\": \"b1dc841ba82b0ed960c9a030b8b40c20d5c0ab3e\", \"live\": true, \"id\": \"xb238e9809adfded1\"}", "{\"sha\": \"8e5667cd1f48edd47c00d050a333077cc149ee58\", \"live\": true, \"id\": \"x4cc62096761257ae\"}", "{\"sha\": \"7fe2de5a8d5184be33a822b71e1afebef842901c\", \"live\": true, \"id\": \"x4e45c2f7ecbe70c7\"}", "{\"sha\": \"b3c85719068bf057ca6129ff8a4ebc812a9a13b8\", \"live\": true, \"id\": \"x20f042cf21641bcf\"}", "{\"sha\": \"3ec3a7159652ad51010e42c96fbc63d16eef0815\", \"live\": true, \"id\": \"xef078883589d1e2f\"}", "{\"sha\": \"abb45f13750ae2998f6ed9f91b6e692e57a033b5\", \"live\": true, \"id\": \"x50fa06b8c7422bf0\"}", "{\"sha\": \"a446202bd4b00ed6f241c1c204f7a3cd57c4647e\", \"live\": true, \"id\": \"x2a03aafb605f8382\"}", "{\"sha\": \"3c9dbe4d99fed6d74a428ae93e1707de8ed42fa9\", \"live\": true, \"id\": \"x4662632f9b065b3d\"}", "{\"sha\": \"d1639bc9ab28f0d128391933906616a424937c77\", \"live\": true, \"id\": \"x5d77bb5c1a6fbd67\"}", "{\"sha\": \"3803cb67fc7684d7e3348394eb5cf5a66ea3738f\", \"live\": true, \"id\": \"xa8723c4a157c5f6d\"}", "{\"sha\": \"08ad9f870c4bc678e268f32b75c7f585abb9562a\", \"live\": true, \"id\": \"xd5288d15fa8127af\"}", "{\"sha\": \"66de22e77b1fc6700151b12c53d3b72ec685d688\", \"live\": true, \"id\": \"x5b093a587eb44f12\"}", "{\"sha\": \"8cf7b4eb2edd8b579ee9fffd658cfcab12103bac\", \"live\": true, \"id\": \"xa5476323ff1d5154\"}", "{\"sha\": \"394598ddd6a6cc9c791e1c4027bd19485596bb25\", \"live\": true, \"id\": \"xb38f73d29dbbf4f2\"}", "{\"sha\": \"301e9d37145d408d231f89844e417c8a50cb5166\", \"live\": true, \"id\": \"xeb6dca00440fba07\"}", "{\"sha\": \"6e17d9085872bdf071dc15d9f8431432d17df0ef\", \"live\": true, \"id\": \"x5208dd0fe01da6eb\"}", "{\"sha\": \"a75ab1e25948176c183c265df8b9acabda9ddbe1\", \"live\": true, \"id\": \"xa9c5e24304a32024\"}"], "description": "", "basepoints": 10.0, "slug": "expected-value-with-empirical-probabilities", "kind": "Exercise", "name": "expected-value-with-empirical-probabilities", "seconds_per_fast_problem": 4.0, "prerequisites": ["expected_value"], "exercise_id": "expected-value-with-empirical-probabilities"}, "geometric-definitions": {"uses_assessment_items": true, "path": "khan/math/geometry/intro_euclid/geometric-definitions/", "id": "geometric-definitions", "display_name": "Geometric definitions", "title": "Geometric definitions", "all_assessment_items": ["{\"sha\": \"8de03b4e701504c9eafcefec808f67460a4e59d4\", \"live\": true, \"id\": \"x5d0decfa1138c617\"}", "{\"sha\": \"fd1c8eafc9d39c639905d02d5821b56483dfbec4\", \"live\": true, \"id\": \"x931201d7dd190aa2\"}", "{\"sha\": \"cbaeadfca84ebcddbf6080c8141a566e1380fc31\", \"live\": true, \"id\": \"x293ab299495ef645\"}", "{\"sha\": \"cbecfc2901300c6b4f3ad98f74b09c7b5d3adf6d\", \"live\": true, \"id\": \"x1d32270c678d3a11\"}", "{\"sha\": \"fac1faf72826ea057c73fa517980d4845db5f033\", \"live\": true, \"id\": \"x029415a912e029bf\"}", "{\"sha\": \"9b505a0695628cb57be11a4d3e320ad1b01315ed\", \"live\": true, \"id\": \"x85ee3ca5bcd7a34c\"}", "{\"sha\": \"566696f0fbff879bb8b3847cfd57ff461f359000\", \"live\": true, \"id\": \"x955101a2b13867f5\"}", "{\"sha\": \"cc36a2a6936ade5ddd1ce672b33fd0914ac396f1\", \"live\": true, \"id\": \"xbfbf027ee7d84c44\"}", "{\"sha\": \"c2c2edc2aa5b65c94849692937cbdb65adbebd2b\", \"live\": true, \"id\": \"xd8a7b7f0b60cf722\"}", "{\"sha\": \"5859c871717a6de116d3af0193063219660aef7d\", \"live\": true, \"id\": \"xdf9992a78ff7c54b\"}", "{\"sha\": \"7db28304f8f125160be1d0efb9065e58dda94e80\", \"live\": true, \"id\": \"x2c6090617420e32d\"}", "{\"sha\": \"4b46f30816e549e7ca65f579b033bb49bb61d63c\", \"live\": true, \"id\": \"x48db1b0362667ebb\"}", "{\"sha\": \"aab3d57c749e37b341e80c7160ecef27b71687aa\", \"live\": true, \"id\": \"x3219a9cef11336c3\"}", "{\"sha\": \"5b102687e4296c9ee79e6394580e1baf8a1b19e3\", \"live\": true, \"id\": \"xfba68ea031ce52e9\"}", "{\"sha\": \"984442ea2833dd4808018a608f5de79f53289983\", \"live\": true, \"id\": \"x3fe771e1d9e5f52c\"}", "{\"sha\": \"901d77fc54e7fc22c0a85c8af0b042267515ef3e\", \"live\": true, \"id\": \"xf1d593128745ce76\"}", "{\"sha\": \"c566b67f4c1557fe9549fa8114b33db98d727386\", \"live\": true, \"id\": \"x7e08316273e91f48\"}"], "description": "", "basepoints": 10.0, "slug": "geometric-definitions", "kind": "Exercise", "name": "geometric-definitions", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing-angles", "recognizing-parallel-and-perpendicular-lines", "recognizing_rays_lines_and_line_segments"], "exercise_id": "geometric-definitions"}, "pulmonary-conditions-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/pulmonary-conditions-quiz/", "id": "pulmonary-conditions-quiz", "display_name": "NCLEX-RN questions on pulmonary conditions", "title": "NCLEX-RN questions on pulmonary conditions", "all_assessment_items": ["{\"sha\": \"b9b6a94697967a28b8be6346368068bf1abc627f\", \"live\": true, \"id\": \"x777f0c95197ba8ef\"}", "{\"sha\": \"19494940ed6e3afadde0d85f4629f3c6ad2fb502\", \"live\": true, \"id\": \"x9b3a6f25f2c9a3ca\"}", "{\"sha\": \"92aa9b3b4fcf70e5f028e3e5c7ed758415c27f83\", \"live\": true, \"id\": \"x44857d5a66bfbb2e\"}", "{\"sha\": \"cd8d2a51ae741a0f03da896547d145329f22b5f0\", \"live\": true, \"id\": \"xde8f510efa6d25be\"}", "{\"sha\": \"432febb801cf79bc4aea63b94a6911bf8853b98c\", \"live\": true, \"id\": \"x79c94c3a9ecce5be\"}", "{\"sha\": \"71efce17de3f3a89cd8ef829be87c9cbb8a8e625\", \"live\": true, \"id\": \"x4dfab3f2fe3ec793\"}", "{\"sha\": \"1f00444172fb9dde1845bc747477e1494b1be7d1\", \"live\": true, \"id\": \"x5c8f46de3807938f\"}", "{\"sha\": \"5e3f531f2c3e476213692df4dc960730776e0f1c\", \"live\": true, \"id\": \"xbfec28380454b50d\"}", "{\"sha\": \"4758f18e0f8c4f89fcff851f6b1f2aea8bcf3931\", \"live\": true, \"id\": \"xb61faa7542124902\"}", "{\"sha\": \"fb729918b3964384e2b09fc8a47e678ef7ce9704\", \"live\": true, \"id\": \"xdc52d126950f1a34\"}", "{\"sha\": \"d6daf16c8af570b2de86884a25389a6e3755afad\", \"live\": true, \"id\": \"x33446ec480d3a620\"}"], "description": "A quiz for NCLEX-RN style questions related to the pulmonary conditions tutorial", "basepoints": 10.0, "slug": "pulmonary-conditions-quiz", "kind": "Exercise", "name": "pulmonary-conditions-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pulmonary-conditions-quiz"}, "understanding-the-properties-of-radioactive-tracers": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/understanding-the-properties-of-radioactive-tracers/", "id": "understanding-the-properties-of-radioactive-tracers", "display_name": "Understanding the properties of radioactive tracers", "title": "Understanding the properties of radioactive tracers", "all_assessment_items": ["{\"sha\": \"afbe2e1d0b890ab3cdf8fdae052d231ffd3e96dd\", \"live\": true, \"id\": \"x68e9033951418708\", \"perseus_api_major_version\": null}", "{\"sha\": \"3dcb01ae3ca59cafdc6eb91e516244a305eda9ca\", \"live\": true, \"id\": \"x5ccaafc649ebd481\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9a74fb7d31002d316df62a00b45ef4f45ed929c0\", \"live\": true, \"id\": \"xa12aad7b2d9b3c94\", \"perseus_api_major_version\": null}", "{\"sha\": \"16f4f255dc148d1eafa023b242ab55ad7cc69ca0\", \"live\": true, \"id\": \"xc8f4c9a0cadbb788\", \"perseus_api_major_version\": null}", "{\"sha\": \"44a87d6b0c28f2d52c8721b8659e8f2d901c24c2\", \"live\": true, \"id\": \"xcee4c6b51d28a823\", \"perseus_api_major_version\": null}"], "description": "Understanding the properties of radioactive tracers", "basepoints": 10.0, "slug": "understanding-the-properties-of-radioactive-tracers", "kind": "Exercise", "name": "understanding-the-properties-of-radioactive-tracers", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "understanding-the-properties-of-radioactive-tracers"}, "degrees_to_radians": {"uses_assessment_items": false, "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/degrees_to_radians/", "id": "degrees_to_radians", "display_name": "Degrees to radians", "title": "Degrees to radians", "description": "", "basepoints": 17.0, "slug": "degrees_to_radians", "kind": "Exercise", "name": "degrees_to_radians", "seconds_per_fast_problem": 11.0, "prerequisites": ["congruent_triangles_2"], "exercise_id": "degrees_to_radians"}, "fertility-rates-and-demographic-change": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/fertility-rates-and-demographic-change/", "id": "fertility-rates-and-demographic-change", "display_name": "Fertility rates and demographic change", "title": "Fertility rates and demographic change", "all_assessment_items": ["{\"sha\": \"9323930cd45f18118eb6428318aa7256848897dc\", \"live\": true, \"id\": \"x6101ca4e26ad4d2f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fd58c8aae947412bc7a926f41b55b835d8ffb2f1\", \"live\": true, \"id\": \"xe36357004960b76c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b37fedf0cd5bc8691aae52d12d35cc4eee984d17\", \"live\": true, \"id\": \"x93aa71bac65f371c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"78732fb3160430a018a9cf7348f93b50826e3efc\", \"live\": true, \"id\": \"x6681249480468fc1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0d8118b654bbf5e0e8c3ae4b58fc854d8a809068\", \"live\": true, \"id\": \"x98d06dc7873b1189\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to fertility rates and demographic change.", "basepoints": 10.0, "slug": "fertility-rates-and-demographic-change", "kind": "Exercise", "name": "fertility-rates-and-demographic-change", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fertility-rates-and-demographic-change"}, "converting_repeating_decimals_to_fractions_1": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/conv_rep_decimals/converting_repeating_decimals_to_fractions_1/", "id": "converting_repeating_decimals_to_fractions_1", "display_name": "Converting 1-digit repeating decimals to fractions", "title": "Converting 1-digit repeating decimals to fractions", "description": "Practice converting 1-digit repeating decimals to fractions.", "basepoints": 15.0, "slug": "converting_repeating_decimals_to_fractions_1", "kind": "Exercise", "name": "converting_repeating_decimals_to_fractions_1", "seconds_per_fast_problem": 8.0, "prerequisites": ["one_step_equations", "linear_equations_1", "combining_like_terms_1"], "exercise_id": "converting_repeating_decimals_to_fractions_1"}, "converting_repeating_decimals_to_fractions_2": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/conv_rep_decimals/converting_repeating_decimals_to_fractions_2/", "id": "converting_repeating_decimals_to_fractions_2", "display_name": "Converting multi-digit repeating decimals to fractions", "title": "Converting multi-digit repeating decimals to fractions", "description": "Practice converting multi-digit repeating decimals to fractions.", "basepoints": 23.0, "slug": "converting_repeating_decimals_to_fractions_2", "kind": "Exercise", "name": "converting_repeating_decimals_to_fractions_2", "seconds_per_fast_problem": 24.0, "prerequisites": ["converting_repeating_decimals_to_fractions_1"], "exercise_id": "converting_repeating_decimals_to_fractions_2"}, "test-your-knowledge--genetic-and-ecosystem-biodiversity": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/biodiversity-levels/genetic/test-your-knowledge-genetic-and-ecosystem-biodiversity/", "id": "test-your-knowledge--genetic-and-ecosystem-biodiversity", "display_name": "Test your knowledge: genetic and ecosystem biodiversity", "title": "Test your knowledge: genetic and ecosystem biodiversity", "all_assessment_items": ["{\"sha\": \"b560517aba29d18ed69ef476f3ac6f4a4072292e\", \"live\": true, \"id\": \"x1005d83908b12ddd\"}", "{\"sha\": \"a720617f091d10875751430f40e5ad9a8c483cde\", \"live\": true, \"id\": \"xf17caeb70976b640\"}", "{\"sha\": \"e1d08d6c48f8e6aa46c1418c78a486caa12c91c3\", \"live\": true, \"id\": \"x36bdcd19659b73b5\"}", "{\"sha\": \"e90c83ba199e28341c78cb34f241409673ea504b\", \"live\": true, \"id\": \"xa58b05c4a816b9d3\"}", "{\"sha\": \"191286940c62861e600b0a5860d1aac7d55ee454\", \"live\": true, \"id\": \"x39cccae543f99bb7\"}", "{\"sha\": \"adc1a2f39b7c30409cec9b9c4f5dd674993cd93f\", \"live\": true, \"id\": \"x0507dbcaf764f7fb\"}", "{\"sha\": \"4516b9a62e70de368e2712ef45c834aea89040fc\", \"live\": true, \"id\": \"xd8c8d5919b1ea917\"}", "{\"sha\": \"469f9101cd3aaca3833814ae32fd7800cc47d0e1\", \"live\": true, \"id\": \"x180c0529d0b7fd8c\"}", "{\"sha\": \"bf59b601d8ca7887757baf16d04d57d2baf72ba9\", \"live\": true, \"id\": \"x73ceb1b897a61bd4\"}", "{\"sha\": \"924cec380a94da12ab345363c56d278a4757742e\", \"live\": true, \"id\": \"x907347d3e0c232a8\"}", "{\"sha\": \"6b832e1c326af1f7580f218bcfcd4ee8d83091ef\", \"live\": true, \"id\": \"x47d3dd458febd20e\"}", "{\"sha\": \"f38095c22186b197f5e8caa1480660e9dece566e\", \"live\": true, \"id\": \"xc6d11ed1af382b50\"}"], "description": "Test your Knowledge", "basepoints": 10.0, "slug": "test-your-knowledge-genetic-and-ecosystem-biodiversity", "kind": "Exercise", "name": "test-your-knowledge--genetic-and-ecosystem-biodiversity", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge--genetic-and-ecosystem-biodiversity"}, "trapezoid-rule": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/trapezoid-rule/", "id": "trapezoid-rule", "display_name": "Trapezoid rule", "title": "Trapezoid rule", "all_assessment_items": ["{\"sha\": \"ec0e708d8f021dcd38658160a2e40be03f447366\", \"live\": true, \"id\": \"x95a9b69ee1e5a65f\"}", "{\"sha\": \"ccf341d381a29e21a709d4c2d18a0550ef5406a7\", \"live\": true, \"id\": \"xd0fa5f36a0f229f8\"}", "{\"sha\": \"57a80c3ba05d0b6a3241114b6a5399325fba57f3\", \"live\": true, \"id\": \"xa360beb0ab60dee3\"}", "{\"sha\": \"ae370bf3bdc074d64ec1edcd8d3e4bc9c0c13085\", \"live\": true, \"id\": \"x888de7f7b6123f0c\"}", "{\"sha\": \"817d6559a594551fce23c6a5b56bb909019bdcaa\", \"live\": true, \"id\": \"x1b20e13d71b05690\"}", "{\"sha\": \"e5ecbc7302a7a335f2a0a93bcf63505d262dfeed\", \"live\": true, \"id\": \"x56e7b228ebd79e6f\"}", "{\"sha\": \"4614ad8e6e78e9ce36e48a351f016b4222e442ad\", \"live\": true, \"id\": \"x1118cbba7bd21a82\"}", "{\"sha\": \"30c874732e18670fb7ed58f544e1907630641ba1\", \"live\": true, \"id\": \"x8e496a11abbd20da\"}", "{\"sha\": \"bb8c51aa93e7f4972098203974c2e5d9b52fed4d\", \"live\": true, \"id\": \"x3fbdd6e9443bdf82\"}", "{\"sha\": \"79ba7045291150cff6af85edabf816a4c0bcf923\", \"live\": true, \"id\": \"xa098a87bb9a410df\"}", "{\"sha\": \"d2a8012231d7c912d87e6580863ad0b5ddbf9885\", \"live\": true, \"id\": \"x18f11495551f772c\"}", "{\"sha\": \"24bcba42991b752c4b6b362e85e4943559aab375\", \"live\": true, \"id\": \"x34a012e6161a4b69\"}", "{\"sha\": \"5ba75a2b6866f924372af455692b5bd7b2052026\", \"live\": true, \"id\": \"x0c01dae3d2adf458\"}", "{\"sha\": \"ff1af555503e30a495d5cacf0ec92337386be8b3\", \"live\": true, \"id\": \"x0ba5fdefe3281eb0\"}", "{\"sha\": \"7e1be5dda90dc13013ad802151be441f120c535e\", \"live\": true, \"id\": \"x9ebc284b739fcaba\"}", "{\"sha\": \"dbebf20a320a456c298ded69e5edd2cf96e75630\", \"live\": true, \"id\": \"xa73003f45bca10b5\"}", "{\"sha\": \"f40b3fc05254e60b9f0e19baeb46c5c7d22baf97\", \"live\": true, \"id\": \"x924cdf643a5405dd\"}", "{\"sha\": \"26723094eca63a61508c8bfa32f1fcd6f8484640\", \"live\": true, \"id\": \"x74fdc9ee2d108eaf\"}", "{\"sha\": \"7edfe88e23e40161aae97ad8f258aa6597cfcb99\", \"live\": true, \"id\": \"xbeaa627dd29f568e\"}", "{\"sha\": \"696eff565af7fb0ec4200f97a3d0990e892b55cf\", \"live\": true, \"id\": \"xba8e3d39ca69c145\"}", "{\"sha\": \"7ca6955a766553246505182f2488179bf3f85e74\", \"live\": true, \"id\": \"xa5ae4e4955236b5a\"}", "{\"sha\": \"c29f4ad2ddc26299ad3064fa400ee41768d2fb19\", \"live\": true, \"id\": \"x3bf96cc4887c11bf\"}", "{\"sha\": \"1c3809b7e717681d4cf8f7e78bcb39cd857373a7\", \"live\": true, \"id\": \"x62ab6704487f2404\"}", "{\"sha\": \"b0a6050c359ab0febf2f9c147b1d6ea187bec62b\", \"live\": true, \"id\": \"xb56a83868137a449\"}", "{\"sha\": \"f7cbf94076f9a589b0072ca8162e87f7aaaeb16b\", \"live\": true, \"id\": \"xeff480801ad54426\"}", "{\"sha\": \"47f4f7052522101c395d73ee91af81549b87907e\", \"live\": true, \"id\": \"x1e32796ef91a30db\"}", "{\"sha\": \"95b239db6d294567ea746e235a2c65c2e1937415\", \"live\": true, \"id\": \"xcdc01093940bac8a\"}", "{\"sha\": \"cdabbc95e6652d3a859ca28b53ee306ed9fa5bc4\", \"live\": true, \"id\": \"xbde7839423296fa5\"}", "{\"sha\": \"744cb013d478ce6639c5e94b0ffe6272a20eb8aa\", \"live\": true, \"id\": \"x7490d70c5da978a4\"}", "{\"sha\": \"3b92746abc4d8372a095deed7f72ef31c92d21a1\", \"live\": true, \"id\": \"xbeb81207a525e37e\"}", "{\"sha\": \"25b9dce9ec3ee48add69ce80d285e18fef6b2e96\", \"live\": true, \"id\": \"x69fdb1d0fe2b4c5f\"}"], "description": "", "basepoints": 10.0, "slug": "trapezoid-rule", "kind": "Exercise", "name": "trapezoid-rule", "seconds_per_fast_problem": 4.0, "prerequisites": ["using-rectangles-to-approximate-area-under-a-curve"], "exercise_id": "trapezoid-rule"}, "classical-and-operant-conditioning": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/classical-and-operant-conditioning/", "id": "classical-and-operant-conditioning", "display_name": "Cats and dogs and conditioning", "title": "Cats and dogs and conditioning", "all_assessment_items": ["{\"sha\": \"2711e75528e6320f8a4d6445d2dedb1081208065\", \"live\": true, \"id\": \"x43d177c25eaf9ee5\"}", "{\"sha\": \"24e839efbd020bc50c56bc2e250d9f66569898ae\", \"live\": true, \"id\": \"x28f297efbcefee76\"}", "{\"sha\": \"fdbc06c8624ff8331e6a01779a895fae38358d19\", \"live\": true, \"id\": \"xc6f12db71582830b\"}", "{\"sha\": \"03e7a5454f67ef240762361c1a8573d15c103e11\", \"live\": true, \"id\": \"x39031fa5f73c18ea\"}", "{\"sha\": \"3480ddad19586dc595274f703ff40f58e28029e3\", \"live\": true, \"id\": \"x16ba5d6966de7269\"}"], "description": "Cats and Dogs and Conditioning", "basepoints": 10.0, "slug": "classical-and-operant-conditioning", "kind": "Exercise", "name": "classical-and-operant-conditioning", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "classical-and-operant-conditioning"}, "quiz--representing-graphs": {"uses_assessment_items": true, "path": "khan/computing/computer-science/algorithms/graph-representation/quiz-representing-graphs/", "id": "quiz--representing-graphs", "display_name": "Quiz: Representing graphs", "title": "Quiz: Representing graphs", "all_assessment_items": ["{\"sha\": \"02bc3d5535137137b2d3a1653cd7477b77e0f231\", \"live\": true, \"id\": \"x6f2e19cf53dbad48\"}", "{\"sha\": \"ec82451578ac48be045db31786549dbf21f070a0\", \"live\": true, \"id\": \"xf699fe15af949b7b\"}", "{\"sha\": \"0fd6f83302cbcb1ec9eb3ec852f2f780fbaf6463\", \"live\": true, \"id\": \"xc109107c3140341f\"}", "{\"sha\": \"da6227e285abc36918efb91b4fff159686fa27ec\", \"live\": true, \"id\": \"xa0a52907ea9d650e\"}", "{\"sha\": \"87fb0166d277e42d6727ff52d2c6fa124f17d704\", \"live\": true, \"id\": \"xcb0d4039cbbbe974\"}"], "description": "Test edge lists, adjacency lists, adjacency matrices.", "basepoints": 10.0, "slug": "quiz-representing-graphs", "kind": "Exercise", "name": "quiz--representing-graphs", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--representing-graphs"}, "test-your-knowledge-of-biodiversity-fieldwork": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/how-is-biodiversity-studied/biodiversity-fieldwork/test-your-knowledge-of-biodiversity-fieldwork/", "id": "test-your-knowledge-of-biodiversity-fieldwork", "display_name": "Test your knowledge: biodiversity fieldwork", "title": "Test your knowledge: biodiversity fieldwork", "all_assessment_items": ["{\"sha\": \"299e247d82de3b4c9c3bbfa7cb9f02a81a295c2d\", \"live\": true, \"id\": \"x85156200e110524c\"}", "{\"sha\": \"cca7c44984b762f8adcc4c87b2dfd616b7fb50d0\", \"live\": true, \"id\": \"xcdfa349c12cd9423\"}", "{\"sha\": \"436cf8abc947f948acce7e85300e37987c13d6ee\", \"live\": true, \"id\": \"x297a91f8328d9b6e\"}", "{\"sha\": \"3de9a9436f830d991eb68bc6930391a8f35cb9ac\", \"live\": true, \"id\": \"xda84d8be1760a115\"}", "{\"sha\": \"7cda36b99dc86b52ac51d40b1ef668eb08f61479\", \"live\": true, \"id\": \"x0af8c8cd61af5b2a\"}", "{\"sha\": \"82192478f87e51085cc9a38dd6826fc8a55759a4\", \"live\": true, \"id\": \"x38e9620e435a7f63\"}", "{\"sha\": \"ed44dd010c038915e4825b27e42068b48478c229\", \"live\": true, \"id\": \"x5b4b5cffca2fb636\"}", "{\"sha\": \"d5ae49fbe49a668fd386b2a35f7729e1719fe637\", \"live\": true, \"id\": \"xd7bdd990f56fef87\"}", "{\"sha\": \"d0bbec3a433655108aba352d34db32c41edcc2e2\", \"live\": true, \"id\": \"xe76030871bdc4626\"}", "{\"sha\": \"aa12b1b8eaf9b90b2f6ad9033baf9a2ff69b69c2\", \"live\": true, \"id\": \"xedc9b949ea43a55f\"}", "{\"sha\": \"58cf08565eff2e532d83a91da1caa39d9a3820b3\", \"live\": true, \"id\": \"xbf417439af3624af\"}"], "description": "", "basepoints": 10.0, "slug": "test-your-knowledge-of-biodiversity-fieldwork", "kind": "Exercise", "name": "test-your-knowledge-of-biodiversity-fieldwork", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge-of-biodiversity-fieldwork"}, "measuring_segments": {"uses_assessment_items": false, "path": "khan/math/basic-geo/basic-geo-lines/basic-geo-measuring-segments/measuring_segments/", "id": "measuring_segments", "display_name": "Measuring segments", "title": "Measuring segments", "description": "", "basepoints": 12.0, "slug": "measuring_segments", "kind": "Exercise", "name": "measuring_segments", "seconds_per_fast_problem": 5.0, "prerequisites": ["absolute-value-word-problems"], "exercise_id": "measuring_segments"}, "induced-stem-cells-from-healthy-adults": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/induced-stem-cells-from-healthy-adults/", "id": "induced-stem-cells-from-healthy-adults", "display_name": "Induced stem cells from healthy adults", "title": "Induced stem cells from healthy adults", "all_assessment_items": ["{\"sha\": \"d16be5dceb69ca42d247e8d4bd793e3b8ac13623\", \"live\": true, \"id\": \"x67d6137a01454f54\"}", "{\"sha\": \"12234a4291231f9d8e81e0828e52308da43d8e7c\", \"live\": true, \"id\": \"x6310cd7e3b2c9b86\"}", "{\"sha\": \"d79ec3998e74ab97d1937774678c9778a0d422eb\", \"live\": true, \"id\": \"x3dddc2a665e5f449\"}", "{\"sha\": \"46b00229f856532c85ea3abdeb693ba8724b5deb\", \"live\": true, \"id\": \"xb9932867c5f5907a\"}", "{\"sha\": \"d18f14bf94855c0c00821d659329e324c2d0a6b4\", \"live\": true, \"id\": \"xe4a84a090c6badf5\"}"], "description": "Induced stem cells from healthy adults", "basepoints": 10.0, "slug": "induced-stem-cells-from-healthy-adults", "kind": "Exercise", "name": "induced-stem-cells-from-healthy-adults", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "induced-stem-cells-from-healthy-adults"}, "factoring_difference_of_squares_1": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring_difference_of_squares_1/", "id": "factoring_difference_of_squares_1", "display_name": "Factoring difference of squares 1", "title": "Factoring difference of squares 1", "description": "Factoring differences of squares into the form (x+b)*(x-b)", "basepoints": 18.0, "slug": "factoring_difference_of_squares_1", "kind": "Exercise", "name": "factoring_difference_of_squares_1", "seconds_per_fast_problem": 13.0, "prerequisites": ["multiplying_expressions_1", "multiplying_polynomials"], "exercise_id": "factoring_difference_of_squares_1"}, "factoring_difference_of_squares_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring_difference_of_squares_2/", "id": "factoring_difference_of_squares_2", "display_name": "Factoring difference of squares 2", "title": "Factoring difference of squares 2", "description": "Factoring differences of squares into the form (Ax+b)*(Ax-b)", "basepoints": 20.0, "slug": "factoring_difference_of_squares_2", "kind": "Exercise", "name": "factoring_difference_of_squares_2", "seconds_per_fast_problem": 16.0, "prerequisites": ["factoring_difference_of_squares_1"], "exercise_id": "factoring_difference_of_squares_2"}, "factoring_difference_of_squares_3": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring_difference_of_squares_3/", "id": "factoring_difference_of_squares_3", "display_name": "Factoring difference of squares 3", "title": "Factoring difference of squares 3", "description": "Factoring a difference of squares in the format C(Ax+b)*(Ax-b)", "basepoints": 25.0, "slug": "factoring_difference_of_squares_3", "kind": "Exercise", "name": "factoring_difference_of_squares_3", "seconds_per_fast_problem": 31.0, "prerequisites": ["factoring_difference_of_squares_2"], "exercise_id": "factoring_difference_of_squares_3"}, "line_graph_intuition": {"uses_assessment_items": false, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/line_graph_intuition/", "id": "line_graph_intuition", "display_name": "Slope intuition", "title": "Slope intuition", "description": "Adjust the slope and y-intercept of a line to make it go through given points", "basepoints": 17.0, "slug": "line_graph_intuition", "kind": "Exercise", "name": "line_graph_intuition", "seconds_per_fast_problem": 10.0, "prerequisites": ["linear-function-intercepts"], "exercise_id": "line_graph_intuition"}, "fundamental-counting-principle": {"uses_assessment_items": true, "id": "fundamental-counting-principle", "display_name": "The counting principle", "title": "The counting principle", "all_assessment_items": ["{\"sha\": \"38b8378a7b6517aa5addc4c450815a04ac4b690d\", \"live\": true, \"id\": \"x9d9ba3ea44e9c7af\"}", "{\"sha\": \"7a060dc24a871d73b243a3eaa8bafbc869b08acc\", \"live\": true, \"id\": \"x511fcc52e4ed557f\"}", "{\"sha\": \"95865068f6802df764199382c2b2ec0bac7cc07e\", \"live\": true, \"id\": \"x14b18bc71260556d\"}", "{\"sha\": \"df9575eece49a9dc1291a411e86609b4b0eedf9d\", \"live\": true, \"id\": \"x685ec3327f085167\"}", "{\"sha\": \"d9c8cbccc19353615893bc841d037f52bcc933a8\", \"live\": true, \"id\": \"xb2f3201f6da5515e\"}", "{\"sha\": \"d636e652155408059b5d40f60034a954a6294708\", \"live\": true, \"id\": \"x0f4911a63c6a75d9\"}", "{\"sha\": \"c3920ba5edc96938871989bc203b05bae4810581\", \"live\": true, \"id\": \"x1c8369d90bc0073d\"}", "{\"sha\": \"2fa1bd4a14840996581aa03bd0f3c61b73943973\", \"live\": true, \"id\": \"xeec0a3674a7a4415\"}", "{\"sha\": \"e86e63157cdce1e8df0093fe1adff3d61707bd02\", \"live\": true, \"id\": \"x052aedb041e4adee\"}", "{\"sha\": \"cdb84fcb7e2372e2fa2051b9ead01d492030fd93\", \"live\": true, \"id\": \"x3ef0bbb0e9e019dd\"}", "{\"sha\": \"47307a35481a6f7bf03fd7b6e36770a6c6f4dc4a\", \"live\": true, \"id\": \"x164ce62a7a92f446\"}", "{\"sha\": \"fe1cbaca8d556fb8730126aea6ebcd376447e782\", \"live\": true, \"id\": \"x88451034276d3f2c\"}", "{\"sha\": \"d51275132d92dbe0c9893360ee8801641b5a41ad\", \"live\": true, \"id\": \"xaf91ff1e5ef493e3\"}", "{\"sha\": \"9445413edf0ecc8bebcd1eaa34396efcbd8a4cbc\", \"live\": true, \"id\": \"xfac8e4a85ae09527\"}", "{\"sha\": \"6486830e4b99582f6bac8968951aa9fc5d56f9eb\", \"live\": true, \"id\": \"xa7d94ade41905a95\"}", "{\"sha\": \"76873df9ad664899aa3309029539d07a3339900f\", \"live\": true, \"id\": \"x674cf4038bcd6c2c\"}", "{\"sha\": \"3af7a16ad2d5eddd114714c3dec1b014e6e03d2c\", \"live\": true, \"id\": \"xd28a6edc43fa705e\"}", "{\"sha\": \"27e217eea8c0a1f350ec3ebf5c82b5f5b73897d0\", \"live\": true, \"id\": \"x5e5d1dbab50eb39a\"}", "{\"sha\": \"7bc8cec18fa76bc284a0f15119cb1f1ebb612e9c\", \"live\": true, \"id\": \"x0842c7e94d9ed3b2\"}", "{\"sha\": \"f5a22cc4550a8fa592c0798a3ee6533d8ef9c83e\", \"live\": true, \"id\": \"x9aa2b264a9f2e3cc\"}"], "description": "Practice counting possible outcomes in a variety of situations. These problems cover everything from counting the number of ways to get dressed in the morning to counting the number of ways to build a custom pizza.", "basepoints": 10.0, "path": "fundamental-counting-principle/", "slug": "fundamental-counting-principle", "kind": "Exercise", "name": "fundamental-counting-principle", "seconds_per_fast_problem": 4.0, "prerequisites": ["probability_1"], "exercise_id": "fundamental-counting-principle"}, "a-family-history-of-marfan-syndrome": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/a-family-history-of-marfan-syndrome/", "id": "a-family-history-of-marfan-syndrome", "display_name": "A family history of Marfan syndrome", "title": "A family history of Marfan syndrome", "all_assessment_items": ["{\"sha\": \"5800de68c39425f706c9367c0ede670d10e6c350\", \"live\": true, \"id\": \"x8af296ad2ad367ae\"}", "{\"sha\": \"fa50dab8fee67ff470ba00779f574e06e7414797\", \"live\": true, \"id\": \"x102dbccb860ce113\"}", "{\"sha\": \"507d04683d82306b7e0fab1725dd5d3a1f5cc911\", \"live\": true, \"id\": \"xcf867621525d34d4\"}", "{\"sha\": \"95f97a18abd2ba196cca26a2acc94f0a2e39b19c\", \"live\": true, \"id\": \"x29de61e12cfbf684\"}", "{\"sha\": \"76b40acfcacf5848c17db0204652eee726721af3\", \"live\": true, \"id\": \"x0e34e5a0bf81b998\"}"], "description": "Questions related to heredity", "basepoints": 10.0, "slug": "a-family-history-of-marfan-syndrome", "kind": "Exercise", "name": "a-family-history-of-marfan-syndrome", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "a-family-history-of-marfan-syndrome"}, "the-bicarbonate-buffering-system-and-titration-curves": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-bicarbonate-buffering-system-and-titration-curves/", "id": "the-bicarbonate-buffering-system-and-titration-curves", "display_name": "The bicarbonate buffering system and titration curves", "title": "The bicarbonate buffering system and titration curves", "all_assessment_items": ["{\"sha\": \"af7e388edf3a121be5b733eb44f1b989fccfbb0b\", \"live\": true, \"id\": \"x29a430980f0dce23\"}", "{\"sha\": \"c250b5278472479cd7fce11d96d76d73afa0e47b\", \"live\": true, \"id\": \"xa098a0f141b69f07\"}", "{\"sha\": \"db73d82fb334296520f1cebb6ba1d440bf336b6b\", \"live\": true, \"id\": \"xa86d462ab2b90339\"}", "{\"sha\": \"8c0d8a1695bac132edb1fa9d1c0da44a97002692\", \"live\": true, \"id\": \"xaa1c75f40fd47fe4\"}", "{\"sha\": \"9c625ffd467581437baeae8074d372a7bbf6ac65\", \"live\": true, \"id\": \"xd531c830fa2f4971\"}"], "description": "Questions related to the unique nature of water and its solutions", "basepoints": 10.0, "slug": "the-bicarbonate-buffering-system-and-titration-curves", "kind": "Exercise", "name": "the-bicarbonate-buffering-system-and-titration-curves", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-bicarbonate-buffering-system-and-titration-curves"}, "dividing_complex_numbers": {"uses_assessment_items": false, "path": "khan/math/precalculus/imaginary_complex_precalc/multiplying-dividing-complex/dividing_complex_numbers/", "id": "dividing_complex_numbers", "display_name": "Dividing complex numbers", "title": "Dividing complex numbers", "description": "", "basepoints": 28.0, "slug": "dividing_complex_numbers", "kind": "Exercise", "name": "dividing_complex_numbers", "seconds_per_fast_problem": 51.0, "prerequisites": ["multiplying_complex_numbers"], "exercise_id": "dividing_complex_numbers"}, "meaning-of-multiplication": {"uses_assessment_items": true, "id": "meaning-of-multiplication", "display_name": "Meaning of multiplication", "title": "Meaning of multiplication", "all_assessment_items": ["{\"sha\": \"4b0505f4c93994b37ac5d92a7f8125bce209e465\", \"live\": true, \"id\": \"xb9dd7aefb7e3464e\", \"perseus_api_major_version\": null}", "{\"sha\": \"61027af2855ae1d2bbd6574c0571c5a49516597f\", \"live\": true, \"id\": \"x5c85736de91eda5c\", \"perseus_api_major_version\": null}", "{\"sha\": \"8e059eca321173f29f5d9610154bad90855c70dc\", \"live\": true, \"id\": \"x981646f644fe94b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"16327e4e15189b7306fd208f3567cc4dea9afb16\", \"live\": true, \"id\": \"x5d12f25b0baf548a\", \"perseus_api_major_version\": null}", "{\"sha\": \"32e75f6bf9565024bc710b1c7e283c021d54dc4b\", \"live\": true, \"id\": \"x2ad34107e2726af7\", \"perseus_api_major_version\": null}", "{\"sha\": \"32887bc594ae626a159fbd68d6ac9da5bd45a74d\", \"live\": true, \"id\": \"x4b7b5eb2bbf3bc5f\", \"perseus_api_major_version\": null}", "{\"sha\": \"2213ab7035b1dbdec12929f03edab60ac3cb4fa2\", \"live\": true, \"id\": \"x5d46040892f9d2d8\", \"perseus_api_major_version\": null}", "{\"sha\": \"ea27a2cfd34342a6b90c0dd10ddbe5d2005b02fa\", \"live\": true, \"id\": \"x94afc8bb68ddb894\", \"perseus_api_major_version\": null}", "{\"sha\": \"7de8e095ce367129982d1716283fb13108966950\", \"live\": true, \"id\": \"x92f0e680af189d42\", \"perseus_api_major_version\": null}", "{\"sha\": \"c7a17a5e2655bdaf79004cd6c89311b040064f3c\", \"live\": true, \"id\": \"x184710aa05afcbfa\", \"perseus_api_major_version\": null}", "{\"sha\": \"d5e13ec21e3ae0d29c53c31ba8ddf56052b112f9\", \"live\": true, \"id\": \"xb727166fb1be399c\", \"perseus_api_major_version\": null}", "{\"sha\": \"e57eaada4c0002bad468fe56af67f2b93972cd7a\", \"live\": true, \"id\": \"x0db54dd7654f7d55\", \"perseus_api_major_version\": null}", "{\"sha\": \"6d0eb0ee2da274c6f0df94eecf5c3b46331abaaa\", \"live\": true, \"id\": \"x8b3f274474992893\", \"perseus_api_major_version\": null}", "{\"sha\": \"128e0feb98794d3e594e575b77a591b2581f9651\", \"live\": true, \"id\": \"x76131c40490bba67\", \"perseus_api_major_version\": null}", "{\"sha\": \"2e101b3238b70c048b239b610be2bbef11e9d9e0\", \"live\": true, \"id\": \"xfd23c65e19118c38\", \"perseus_api_major_version\": null}", "{\"sha\": \"28a0685400b2d2ec38fac18acde9efe0924195c9\", \"live\": true, \"id\": \"xc996e895ebc47a9b\", \"perseus_api_major_version\": null}", "{\"sha\": \"08582428ae5fc1339256e481da43532a33ccf7c1\", \"live\": true, \"id\": \"xb5d87a7d2601bded\", \"perseus_api_major_version\": null}", "{\"sha\": \"6c66afe66b67404775ca03d4588e43beeceb4542\", \"live\": true, \"id\": \"x3fb12f21688e4007\", \"perseus_api_major_version\": null}", "{\"sha\": \"263287dac041e2fb433ba8feec7cd0b0df4d02cd\", \"live\": true, \"id\": \"xc07999389c21e161\", \"perseus_api_major_version\": null}", "{\"sha\": \"9fa8c28c3a9df30b9974a10a60fe555bb95cb28d\", \"live\": true, \"id\": \"x4b8002c24155dd83\", \"perseus_api_major_version\": null}", "{\"sha\": \"64f4a39161eb8986488f5e55e8a9b3482c33577a\", \"live\": true, \"id\": \"x3d6974c693ded436\", \"perseus_api_major_version\": null}", "{\"sha\": \"97947ce9d3294072feaa9a0cbd72fd5a23287515\", \"live\": true, \"id\": \"x77de6c9efc5b0eaf\", \"perseus_api_major_version\": null}", "{\"sha\": \"9031db8f212373f0cef5a9c4467b009f776e311d\", \"live\": true, \"id\": \"xf2e83a0a660881db\", \"perseus_api_major_version\": null}", "{\"sha\": \"fec8703b95b97278ad6b0c51ec2207faa66ece86\", \"live\": true, \"id\": \"x2fe4a6d35a94574f\", \"perseus_api_major_version\": null}", "{\"sha\": \"c2a0b6c757e9d6cb70f3d35a9398708a03f9fc43\", \"live\": true, \"id\": \"x6b9215a09af2ebd3\", \"perseus_api_major_version\": null}", "{\"sha\": \"1192c56a6c90512369d6ee3a059441a81a21f3e9\", \"live\": true, \"id\": \"x8cbb142d83435033\", \"perseus_api_major_version\": null}", "{\"sha\": \"94ccf40d7823cee27593c800db8f88daf632cdcc\", \"live\": true, \"id\": \"x5fba98554e2a046f\", \"perseus_api_major_version\": null}"], "description": "Interpret products of whole numbers, e.g., interpret 5 x 7 as the total number of objects in 5 groups of 7 objects each.", "basepoints": 10.0, "path": "meaning-of-multiplication/", "slug": "meaning-of-multiplication", "kind": "Exercise", "name": "meaning-of-multiplication", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_0.5"], "exercise_id": "meaning-of-multiplication"}, "carolingian": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/carolingian1/carolingian/", "id": "carolingian", "display_name": "Carolingian art", "title": "Carolingian art", "all_assessment_items": ["{\"sha\": \"588258f2e23324735ad05d176112920bba2409f4\", \"live\": true, \"id\": \"x2d639d38\"}", "{\"sha\": \"1d91acc35960131ea080b4e33031db947887661f\", \"live\": true, \"id\": \"x0c5d57b2\"}", "{\"sha\": \"cfe1f9cf9e243f114b3b7f575882fc649e29456a\", \"live\": true, \"id\": \"xe90e213b\"}", "{\"sha\": \"812c79005c65455234ba7a23e252f04ae0453906\", \"live\": true, \"id\": \"x6176c0dd\"}", "{\"sha\": \"cd37c0ebdc8d85cf812d30923d26a5e38aab4fff\", \"live\": true, \"id\": \"x4dc930e5\"}", "{\"sha\": \"f6e11d5a2ea53529a95f0527f091efedf594a224\", \"live\": true, \"id\": \"x2097b787\"}", "{\"sha\": \"128d2c41f30c601c3fee659dc0cb13b22f1f1901\", \"live\": true, \"id\": \"x89b92678\"}", "{\"sha\": \"2f453e82b366837102c3743a63415fbef6951dab\", \"live\": true, \"id\": \"x71f271a9\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "carolingian", "kind": "Exercise", "name": "carolingian", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "carolingian"}, "decompose-figures-to-find-volume": {"uses_assessment_items": true, "id": "decompose-figures-to-find-volume", "display_name": "Decompose figures to find volume", "title": "Decompose figures to find volume", "all_assessment_items": ["{\"sha\": \"5cc3842de69f02f99b60b68aa78c934a39255fc4\", \"live\": true, \"id\": \"xbc57d69c1b5c517e\"}", "{\"sha\": \"c77d5c26172cf0a9166a5faf024b9696cfa8c691\", \"live\": true, \"id\": \"xdd0d28cd1b0f323a\"}", "{\"sha\": \"0f5a73a199bff9d36438a85263339ae7c1e22367\", \"live\": true, \"id\": \"xda3828afb0a5da7f\"}", "{\"sha\": \"803766e62a4a840e993856c858fdf17b12dde44a\", \"live\": true, \"id\": \"x339908bfa1dc3f4a\"}", "{\"sha\": \"33e5e69ace593058517a9cfc1925f1bf72fc23e5\", \"live\": true, \"id\": \"x80bf947fb77eca26\"}", "{\"sha\": \"36aaa6e45fd0c29639d7b9cbfd78f54ecb39e5e2\", \"live\": true, \"id\": \"x2eb833e48c14b6bc\"}", "{\"sha\": \"f3bc88b82d1f2360941523b83a65c120ff5d0700\", \"live\": true, \"id\": \"x9f3d4ebd28a0ab6f\"}", "{\"sha\": \"3a5abc76c40cb50e76fc0bde9d56f6deb3d9bfc1\", \"live\": true, \"id\": \"xd8ca8fb2f4cb38ca\"}", "{\"sha\": \"b938d46ddfd435d9ab04b70d543d03701b552fb5\", \"live\": true, \"id\": \"x4495eec1d744ec55\"}", "{\"sha\": \"6aed0a09d34dcf811b617dea6280a6b0a3f1ea9d\", \"live\": true, \"id\": \"x3cf00ad6604fb1e0\"}", "{\"sha\": \"b49eab2b770c36762d3035379411df3ec157c0a9\", \"live\": true, \"id\": \"xa48adbe922d82335\"}", "{\"sha\": \"9f96000df6e158eac5ea2368a8e1f6f51ebcbdc8\", \"live\": true, \"id\": \"xd02f18d23f846be1\"}", "{\"sha\": \"a1ca244e6be7d26d9934fa3c0a71c13ab77538d5\", \"live\": true, \"id\": \"x370d1cbe1727cdf7\"}", "{\"sha\": \"582f4fe9d809351f5b3c2eabd6845e1594e0d2f9\", \"live\": true, \"id\": \"x6ca76072e5bef493\"}", "{\"sha\": \"1c858dd2f68c6b446448e70965b267daa7c90ed6\", \"live\": true, \"id\": \"x344452d211bedbfa\"}", "{\"sha\": \"d8dcd50a84adacc78b84674eaac702ff26c9a46d\", \"live\": true, \"id\": \"xb956ac54fead2262\"}", "{\"sha\": \"adaa39b744e06c75ba1daa171af359875640c72c\", \"live\": true, \"id\": \"x756402bae5ec768f\"}", "{\"sha\": \"82d6dac4dcfc989882dcc172959d47f665e3ebe8\", \"live\": true, \"id\": \"x6c45b909803f9893\"}", "{\"sha\": \"88e6d75a061b8cc857156a19f7a93be9e289e99c\", \"live\": true, \"id\": \"x59f3291c2e2e6191\"}", "{\"sha\": \"70f43a564aa15b1ced1b5a0a1e5e76f0e7194a21\", \"live\": true, \"id\": \"x6e6c9d1b5e5d7334\"}", "{\"sha\": \"89c4661e35a9792c1fadf9b1b5e5ccf54d51ac86\", \"live\": true, \"id\": \"x1e0f86c1b135b164\"}", "{\"sha\": \"c5f6897f0f3da0e3be669a3a6615c75dcfc5aa35\", \"live\": true, \"id\": \"xf7f21b9598e98e8e\"}", "{\"sha\": \"599d606ebdb378cbe0b3e4d8988c02b9b82231a3\", \"live\": true, \"id\": \"xc5f2e534fc514abf\"}", "{\"sha\": \"cb499ed9d8ac0ab540732860d57c44b0d4629c7f\", \"live\": true, \"id\": \"xab517d6125a89090\"}", "{\"sha\": \"45e8456b8c78176c6b4afb7a4ede0142f515b859\", \"live\": true, \"id\": \"x0f5c84fcc6367245\"}"], "description": "Find the volume of irregular 3D figures by dividing the figures into rectangular prisms and finding the volume of each part.", "basepoints": 10.0, "path": "decompose-figures-to-find-volume/", "slug": "decompose-figures-to-find-volume", "kind": "Exercise", "name": "decompose-figures-to-find-volume", "seconds_per_fast_problem": 4.0, "prerequisites": ["volume_1"], "exercise_id": "decompose-figures-to-find-volume"}, "skeletal-system---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/skeletal-system-passage-1/", "id": "skeletal-system---passage-1", "display_name": "Osteoporosis and bone density", "title": "Osteoporosis and bone density", "all_assessment_items": ["{\"sha\": \"ac60d34175dd5a6de479c07fa5597f084faabec8\", \"live\": true, \"id\": \"x5c466751e4c11387\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d423a66fa6e24ae54bd3130e9c444d82210e0c72\", \"live\": true, \"id\": \"x4c1c6902a2aa573a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7dd7a3805e04b7ab22ed0dab0458f713f2300bcc\", \"live\": true, \"id\": \"x5bc6adb3afabfff1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0f37fa78b424e330f3da0a225b07a173a20e5e58\", \"live\": true, \"id\": \"x745ed746e37b2fa7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0e3c3f45e148fb1dc688f6bdf2877a063c56bee5\", \"live\": true, \"id\": \"x87248b784533beaf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Skeletal System - Passage 1", "basepoints": 10.0, "slug": "skeletal-system-passage-1", "kind": "Exercise", "name": "skeletal-system---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "skeletal-system---passage-1"}, "skeletal-system---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/skeletal-system-passage-2/", "id": "skeletal-system---passage-2", "display_name": "Bone Development", "title": "Bone Development", "all_assessment_items": ["{\"sha\": \"012532a36adeeca0de1fed66053148d0e90c774a\", \"live\": true, \"id\": \"x02c8b584929c0b4f\"}", "{\"sha\": \"96bebc8307b431ed560575abdc652072fa45a973\", \"live\": true, \"id\": \"x0b4284b76837ca11\"}", "{\"sha\": \"5fc4cf3d4caa772c51db03f7dbaf1f28c999c0be\", \"live\": true, \"id\": \"x37056bba33b2b648\"}", "{\"sha\": \"b24c1cdd5a7cc2949d05af0909e22e951e24a104\", \"live\": true, \"id\": \"xe7a8a946e77f2edd\"}", "{\"sha\": \"8e7193e4e3b7666eb51a39bfd69e6dfa629ff1a7\", \"live\": true, \"id\": \"xc358518bfefbed00\"}"], "description": "Skeletal System - Passage 2", "basepoints": 10.0, "slug": "skeletal-system-passage-2", "kind": "Exercise", "name": "skeletal-system---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "skeletal-system---passage-2"}, "dome-of-the-rock-quiz": {"uses_assessment_items": true, "path": "khan/humanities/art-islam/islamic-art-early/dome-of-the-rock-quiz/", "id": "dome-of-the-rock-quiz", "display_name": "Dome of the Rock Quiz", "title": "Dome of the Rock Quiz", "all_assessment_items": ["{\"sha\": \"d458cff5287849109e780d135b4f1f1901ca6d46\", \"live\": true, \"id\": \"x990dcfc5288caa1d\"}", "{\"sha\": \"bc0c2e94252fdd8a2074dd5080ce613041862444\", \"live\": true, \"id\": \"x5de27fe9ea3dbebc\"}", "{\"sha\": \"fa0dfb1b09aca33090434cf08f40e42e2fbb6ee6\", \"live\": true, \"id\": \"xcf7b6a2aa294c9fb\"}", "{\"sha\": \"2a6b4d4d5ce4e35392618719b58d93c47887a553\", \"live\": true, \"id\": \"xf2f9b9edc3457b0f\"}"], "description": "This quiz is for the essay Early period: The Dome of the Rock (Qubbat al-Sakhra).", "basepoints": 10.0, "slug": "dome-of-the-rock-quiz", "kind": "Exercise", "name": "dome-of-the-rock-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "dome-of-the-rock-quiz"}, "standard_deviation_of_a_population": {"uses_assessment_items": false, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/standard_deviation_of_a_population/", "id": "standard_deviation_of_a_population", "display_name": "Standard deviation of a population", "title": "Standard deviation of a population", "description": "", "basepoints": 5.0, "slug": "standard_deviation_of_a_population", "kind": "Exercise", "name": "standard_deviation_of_a_population", "seconds_per_fast_problem": 0.0, "prerequisites": ["square_roots", "mean_median_and_mode"], "exercise_id": "standard_deviation_of_a_population"}, "functions_1": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/function-introduction/functions_1/", "id": "functions_1", "display_name": "Evaluating functions", "title": "Evaluating functions", "all_assessment_items": ["{\"sha\": \"ca3fbb82aea69bdfa91a5726e17f06959c40c26a\", \"live\": true, \"id\": \"xa60189b8\", \"perseus_api_major_version\": null}", "{\"sha\": \"5fe2629bd927a379ba31cd5161d64e44aee0a474\", \"live\": true, \"id\": \"x90f4094a\", \"perseus_api_major_version\": null}", "{\"sha\": \"a2a5423e2646423a38284e8c483396a6f7ba5a7e\", \"live\": true, \"id\": \"x4e7134ce\", \"perseus_api_major_version\": null}", "{\"sha\": \"c054f2db81da6193f29e13a220625b782a1c1db3\", \"live\": true, \"id\": \"xc748784a\", \"perseus_api_major_version\": null}", "{\"sha\": \"5639eaafec42335b4c920dd5ed1e2f4e6c0a914f\", \"live\": true, \"id\": \"x6dc11f9a\", \"perseus_api_major_version\": null}", "{\"sha\": \"d52108a1bcc9baf2679e62dd42e6a13a0e484604\", \"live\": true, \"id\": \"x3859861c\", \"perseus_api_major_version\": null}", "{\"sha\": \"249d7e6c77927df92456757fda755c8239e15ec8\", \"live\": true, \"id\": \"x925f1dd842b45c88\", \"perseus_api_major_version\": null}", "{\"sha\": \"7bb5e1ea4336d651d37cb3a4f5b7caab96f12a92\", \"live\": true, \"id\": \"x9877728c\", \"perseus_api_major_version\": null}", "{\"sha\": \"156009334861fa453a8eba760fd51d2650125b61\", \"live\": true, \"id\": \"xef9630ea9ec8ca42\", \"perseus_api_major_version\": null}", "{\"sha\": \"250c42bed3383593616b58b9c72e2477e9ed131c\", \"live\": true, \"id\": \"x8d84a4e104a47311\", \"perseus_api_major_version\": null}", "{\"sha\": \"cee70c6a33966d3156aa2db8818f190a0e9e0550\", \"live\": true, \"id\": \"xaa9d7628a6824a18\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5d7d175ef3d9869984eb395121f4861c19ea4b8e\", \"live\": true, \"id\": \"x3182c963\", \"perseus_api_major_version\": 0}", "{\"sha\": \"210c2797a5f3ddebfb5e00d934b723d1d2876d03\", \"live\": true, \"id\": \"x4c095669\", \"perseus_api_major_version\": 0}", "{\"sha\": \"db1d6367afea045137ce071a17c47f078c791bfb\", \"live\": true, \"id\": \"x030f6c24\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7a7c84a1c39e9cd8daed8fc413c9b14639c6eebd\", \"live\": true, \"id\": \"x9e8d85ad\", \"perseus_api_major_version\": 0}", "{\"sha\": \"182284d16b2bf4482a089ba4e2c0a4dfbea4d34c\", \"live\": true, \"id\": \"xc619270c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0e05df9c1d818b47d6b26c7c313c2c5906fd5284\", \"live\": true, \"id\": \"x1b65c450\", \"perseus_api_major_version\": 0}", "{\"sha\": \"792bff5fd836ec1671b903b1cada5ac9dda60353\", \"live\": true, \"id\": \"x5773031c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"67d6a6687f3c722f368a7f59b2e7256040b0a8dd\", \"live\": true, \"id\": \"xeee1603c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"9a05454bb14e47fc1b41a7528c42cf205322910a\", \"live\": true, \"id\": \"xab066e0f\", \"perseus_api_major_version\": 0}"], "description": "Evaluate functions written with function notation", "basepoints": 15.0, "slug": "functions_1", "kind": "Exercise", "name": "functions_1", "seconds_per_fast_problem": 8.0, "prerequisites": ["evaluating_expressions_1"], "exercise_id": "functions_1"}, "functions_3": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/composing-functions/functions_3/", "id": "functions_3", "display_name": "Evaluating composite functions", "title": "Evaluating composite functions", "all_assessment_items": ["{\"sha\": \"6effba7390034ffdb682f1236352e1b9f6613f69\", \"live\": true, \"id\": \"xee8a6986aa9d2b56\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1be6ad053e83401b07f385acd64a73bc0031f3f5\", \"live\": true, \"id\": \"xf5a9fa52aaa37136\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7c92d41cbb83f8329e66eb44a38289d49ce40ec0\", \"live\": true, \"id\": \"x2b17d5b38bcafe2e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fc1d0b6e7c4395f1630c03f5c4230d104646cf02\", \"live\": true, \"id\": \"x287f440393a2342e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4e22ed6a7409fc8b1df3cb0edab30ecd43b6e289\", \"live\": true, \"id\": \"x9848e2a052e127b9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6a92cfeabbbb2e64c420042a336934791cf4e5aa\", \"live\": true, \"id\": \"x55c993b8cdff5148\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c33f633ef40075b17013990c492b98dc1b4634c3\", \"live\": true, \"id\": \"x5a28f6730d7615d5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"92ce314f8f2618bb337b1a1102975ff8bda8a87b\", \"live\": true, \"id\": \"xd48e9a1a9cfe622b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ad7ebf9414974e9790ebe8eb1e33be3179bc8da5\", \"live\": true, \"id\": \"xff72a9226c3ff08e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"99f9426ee19c55eb17eaa2ee4e930c270f9d2569\", \"live\": true, \"id\": \"x75afabe5cfaee55c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"826c92a5c3f1e57e77bfafb7ff4a1476799a0e9a\", \"live\": true, \"id\": \"xd1e02358d433a3a3\", \"perseus_api_major_version\": 0}", "{\"sha\": \"af026df67bad8da962aa2e4d83375b28524a5657\", \"live\": true, \"id\": \"x40e892a477a35e0f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"85b7eb9bc4b8cb94a6ee7865fb072337870ed401\", \"live\": true, \"id\": \"x50e7a02409a38e27\", \"perseus_api_major_version\": 0}", "{\"sha\": \"526f677504624300c8eb3076a1ed334bf4973bd7\", \"live\": true, \"id\": \"x2ae54366367231de\", \"perseus_api_major_version\": 0}", "{\"sha\": \"73fc8c2351eef4a9a4763df43bedc17f4f284b33\", \"live\": true, \"id\": \"xe18e4aada190b83d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1e528530ae8252444f506f38868bd9b83c87c993\", \"live\": true, \"id\": \"x2ba0276b031ea238\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b6fe3e79ebde173b5b20d2b9839ec83245486da0\", \"live\": true, \"id\": \"x332caa4bc9c4fde2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ff1b0aac8c238aba0941a87420b5cef0143b00ca\", \"live\": true, \"id\": \"x1f75532525306fa5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a531e5775efbac8b295413dff2476276027432f5\", \"live\": true, \"id\": \"x619ce57b3a7dae72\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7f378dadebc3d0bd917e688ca01f9354a6fb116a\", \"live\": true, \"id\": \"x357f35669c1a53bc\", \"perseus_api_major_version\": 0}", "{\"sha\": \"52ce647cfa58cca6c0e2c466dda9608f44b8aebf\", \"live\": true, \"id\": \"xca20b700e68bb268\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a6078b2fbb69a080e41d831c7ec222983703f7a2\", \"live\": true, \"id\": \"xfe81bc17885498a2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f3a869f09e0109459eebd35bc2074e9203bb19c4\", \"live\": true, \"id\": \"x84a45a8bfe172e5c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"cfd1e82076307964f6c17bad3e278245fe71e10a\", \"live\": true, \"id\": \"xdf11128ad4efbecf\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f9b83c85fca58a50785d1e9a5a280cf9858d484a\", \"live\": true, \"id\": \"x1ee309a88bda121d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ce74b7cef9f5be1598ed53cd40a2b502dab9b607\", \"live\": true, \"id\": \"xd7a13e3943f6be80\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b020aafc4dddb9b2352870e3f96d18291feb68ed\", \"live\": true, \"id\": \"x5581156bc56adaa1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"884fedce131dc4cc444fd2f01f69a07125d94286\", \"live\": true, \"id\": \"x8d2daf868d14ca2a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"53a715ff1edeaeebace8ab07be81a4a38facd624\", \"live\": true, \"id\": \"x302bedd55dea1e8d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ef49db4f843c3b255e200e65c8bbb676da2504d8\", \"live\": true, \"id\": \"x0442a90a02b84768\", \"perseus_api_major_version\": 0}"], "description": "Find the result when the output of one function is the input of another.", "basepoints": 29.0, "slug": "functions_3", "kind": "Exercise", "name": "functions_3", "seconds_per_fast_problem": 58.0, "prerequisites": ["functions_2"], "exercise_id": "functions_3"}, "functions_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/functions_and_graphs/function_expressions/functions_2/", "id": "functions_2", "display_name": "Evaluating function expressions", "title": "Evaluating function expressions", "description": "Find the value of a function for a given x based on a graph, and perform operations with that value.", "basepoints": 24.0, "slug": "functions_2", "kind": "Exercise", "name": "functions_2", "seconds_per_fast_problem": 30.0, "prerequisites": ["functions_1"], "exercise_id": "functions_2"}, "subtract-within-100-level-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens/subtract-within-100-level-2/", "id": "subtract-within-100-level-2", "display_name": "Subtract within 100: Level 2", "title": "Subtract within 100: Level 2", "all_assessment_items": ["{\"sha\": \"a1d820903d373d86031b52ffeb4e195b71d0246a\", \"live\": true, \"id\": \"xcbd31febcfba4a55\"}", "{\"sha\": \"e5e3da01feb2bd0ef183d4b4123a8bcc5094e5ab\", \"live\": true, \"id\": \"x48ea3eebdadf5e37\"}", "{\"sha\": \"1d4cfa71e2e75660bbd7f3cd91aeb626b9e1058d\", \"live\": true, \"id\": \"x7797d5abab45467b\"}", "{\"sha\": \"57206c7282afcc46864288e73c1408bf448f2ada\", \"live\": true, \"id\": \"xbd675abccf97ca45\"}", "{\"sha\": \"821c759f2abba0ceca37f1e1c1fe82983c3f6c96\", \"live\": true, \"id\": \"xcf21537a1373d3f2\"}", "{\"sha\": \"6bbe3b4fd192c46541c16c278a6e54dc61defe3b\", \"live\": true, \"id\": \"x44b08a5eab0dbd70\"}", "{\"sha\": \"1f881100d1a3a43443c1bb1cd2980203be6ef9b9\", \"live\": true, \"id\": \"xfdb7f167ee1c518c\"}", "{\"sha\": \"0aad4e277f7278f3119f92a33c166f5090201bcc\", \"live\": true, \"id\": \"x9a8b5b5bda11458d\"}", "{\"sha\": \"5d78ecfc97cbc6be2677345acf3489c57283daf8\", \"live\": true, \"id\": \"xbadc823bb68896f7\"}", "{\"sha\": \"434d231015d719e7dbbf48bb5c3a7bb2d3537ed5\", \"live\": true, \"id\": \"x182b75fe4b2e9862\"}", "{\"sha\": \"55155de0dc46ac5d93f895158855cb9188084b80\", \"live\": true, \"id\": \"xcc647c4e88872a57\"}", "{\"sha\": \"99e4e2dd4ea990147299920378fa6dca1fa02031\", \"live\": true, \"id\": \"x28062fcfd6ac9dd3\"}", "{\"sha\": \"40ebc8d8e515b79f734dfdd6cdab038809078dd7\", \"live\": true, \"id\": \"xbb1369c1049e4e71\"}", "{\"sha\": \"f7e7b1acf35cda5fd62d9d88bf59d6796dc3aade\", \"live\": true, \"id\": \"x4dd834b96acaa359\"}", "{\"sha\": \"355eabe1704f51d0739641bdc194c0fe0198de43\", \"live\": true, \"id\": \"x98cc6eb39a48e4d2\"}", "{\"sha\": \"ba2c3922eadd7ce6122d562f1614cfc92b54885f\", \"live\": true, \"id\": \"xd8904e9aedf2460f\"}", "{\"sha\": \"e13855a5adbf0557275082fdd7e707a8a3c08c73\", \"live\": true, \"id\": \"x7a9d31ed1e134826\"}", "{\"sha\": \"eb19fa7276c656d7a9bbe02809e9aef62484ff13\", \"live\": true, \"id\": \"x1ceaf350786a3416\"}", "{\"sha\": \"e8c08fda315fd34247870cafa5d33e4452bf50e1\", \"live\": true, \"id\": \"x76a3f8e99f57460f\"}", "{\"sha\": \"fc0de1a0da8643de9a3337a358008ff6a100489a\", \"live\": true, \"id\": \"xd0e04353c10f3958\"}"], "description": "Practice subtracting ones or tens to a two-digit number.\u00a0(No regrouping)", "basepoints": 10.0, "slug": "subtract-within-100-level-2", "kind": "Exercise", "name": "subtract-within-100-level-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["add-within-100--level-2", "subtract-with-in-100-level-1"], "exercise_id": "subtract-within-100-level-2"}, "sound--audition----passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sound-audition-passage-1/", "id": "sound--audition----passage-1", "display_name": "Differential effectiveness of cochlear implants", "title": "Differential effectiveness of cochlear implants", "all_assessment_items": ["{\"sha\": \"3716eebe9782de4a3fe25efb598572c94763272d\", \"live\": true, \"id\": \"xc2f2677c06c3bde6\"}", "{\"sha\": \"a28e551548ec1f7f748d4a43db750f03bb19f351\", \"live\": true, \"id\": \"x1a2f1b42b5ff32be\"}", "{\"sha\": \"861a7c999ae12f4d8e1d369f6e2d00153db27f8f\", \"live\": true, \"id\": \"xe98c0f2f8a008a9c\"}", "{\"sha\": \"5a7f91af1733cc28a5a535782bd90d6a0745a87e\", \"live\": true, \"id\": \"xee466bf6579d78c8\"}", "{\"sha\": \"16da29ac611bc94bb24522e8962967ee84e07f66\", \"live\": true, \"id\": \"x71d5cd677e1c9d9c\"}"], "description": "Questions related to hearing", "basepoints": 10.0, "slug": "sound-audition-passage-1", "kind": "Exercise", "name": "sound--audition----passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sound--audition----passage-1"}, "sound--audition----passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sound-audition-passage-2/", "id": "sound--audition----passage-2", "display_name": "Functions of the basilar membrane", "title": "Functions of the basilar membrane", "all_assessment_items": ["{\"sha\": \"bce52099353364bffa818994fafaf5a6bbb92006\", \"live\": true, \"id\": \"x1412875d118c0770\"}", "{\"sha\": \"5996055b867b48a9581abbdd9aec6168e19c7e2b\", \"live\": true, \"id\": \"x5410321ae4c11746\"}", "{\"sha\": \"a45dcf9929e68a92da6889d96b18d4537681269f\", \"live\": true, \"id\": \"x9980fa51de001d55\"}", "{\"sha\": \"1a6ac8e16aa1c2325477267551d1c5339115cffa\", \"live\": true, \"id\": \"x8e23e14934cf43b3\"}", "{\"sha\": \"855e72781835d496e126c1ef68e271b277e02410\", \"live\": true, \"id\": \"xfd0a52d592b1b235\"}"], "description": "Questions related to audition", "basepoints": 10.0, "slug": "sound-audition-passage-2", "kind": "Exercise", "name": "sound--audition----passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sound--audition----passage-2"}, "equation_of_a_hyperbola": {"uses_assessment_items": false, "path": "khan/math/precalculus/hyperbolic_trig_topic/hyperbolic_trig_intro/equation_of_a_hyperbola/", "id": "equation_of_a_hyperbola", "display_name": "Asymptotes of a hyperbola", "title": "Asymptotes of a hyperbola", "description": "Find the asymptotes of a hyperbola based on the equation.", "basepoints": 21.0, "slug": "equation_of_a_hyperbola", "kind": "Exercise", "name": "equation_of_a_hyperbola", "seconds_per_fast_problem": 20.0, "prerequisites": ["equation_of_a_circle_1"], "exercise_id": "equation_of_a_hyperbola"}, "understanding-the-equation-solving-process": {"uses_assessment_items": true, "path": "khan/math/algebra/quadratics/quadratics-square-root/understanding-the-equation-solving-process/", "id": "understanding-the-equation-solving-process", "display_name": "Understanding the process for solving quadratic equations", "title": "Understanding the process for solving quadratic equations", "all_assessment_items": ["{\"sha\": \"27680e4d6f55e9f4e4e3851131e1e643fe656184\", \"live\": true, \"id\": \"xb575663ec701aa84\"}", "{\"sha\": \"ab45aac3f3ad8ddcdbc25943730b32d6ff43ad44\", \"live\": true, \"id\": \"xdd492eadd5d5dd9e\"}", "{\"sha\": \"97d827174ffe8549b6c93b76070264e99511d81c\", \"live\": true, \"id\": \"x938397d4aad672a6\"}", "{\"sha\": \"17faa28c2cd7b0ffe5caaee7e7de6a22b6739009\", \"live\": true, \"id\": \"xf5c435a3998c5277\"}", "{\"sha\": \"e8b23ddb5dca28e81e4d92a2c07c3e1cd94ef2c9\", \"live\": true, \"id\": \"xa3eeb90ac70abfd9\"}", "{\"sha\": \"49a84e253f58cd317ac82ac9911972e6597c1ea0\", \"live\": true, \"id\": \"xc031dc94c7c3c48d\"}", "{\"sha\": \"2b0435a51c3c28a2c8b06ef4016533bd3047d3d5\", \"live\": true, \"id\": \"xafd22eaf493c499c\"}", "{\"sha\": \"643a56c70ffac5b4b630350372e5e8722d7c3f63\", \"live\": true, \"id\": \"x5dc5c0ad51779de6\"}", "{\"sha\": \"d0ac0d189f6ccca41aad6b3d0a674650e1c74bc9\", \"live\": true, \"id\": \"xae8669b2145d0fff\"}", "{\"sha\": \"81b07380f37b2f8dd580b8ef6e74676986b8c259\", \"live\": true, \"id\": \"x6fa46d3ecc8abf2a\"}", "{\"sha\": \"34340c192dfc3dc0516fb4bfa067b6a40284d0aa\", \"live\": true, \"id\": \"x9a97624d4c4b7bb4\"}", "{\"sha\": \"86424e37606e412395fb3ffa84322610ff1f501b\", \"live\": true, \"id\": \"x3a223af5c39d4365\"}", "{\"sha\": \"87148149330c3e56a44b44c1cb40f6b60d835796\", \"live\": true, \"id\": \"x3cf93caed759e697\"}", "{\"sha\": \"ed241e1a11d155f2862313e20c4f2b145becf5da\", \"live\": true, \"id\": \"xb6e54c68f40c5293\"}", "{\"sha\": \"3795b380d85f5ab50fa1fe1a200b6dcbeb7228dd\", \"live\": true, \"id\": \"x00937ba99c38650e\"}", "{\"sha\": \"219cfde4e5ef08030cdbdb2aa06a6e37e3c705a5\", \"live\": true, \"id\": \"x6b80fead9977737d\"}", "{\"sha\": \"a09971948673047548f40d44aaf910c0957a54eb\", \"live\": true, \"id\": \"x4d1e939e4c931f09\"}", "{\"sha\": \"558126d36bfffb68d17e7c17f931a578a1822fd6\", \"live\": true, \"id\": \"x37f1d4ffec23d2eb\"}", "{\"sha\": \"5cb0b56a96a1841d93c0dab041774642ecfd5667\", \"live\": true, \"id\": \"xae93b3441136e278\"}", "{\"sha\": \"c7942bca5164f73bcd060a0a8e2b162d04e9fcf3\", \"live\": true, \"id\": \"xca0e41f2260ee043\"}", "{\"sha\": \"07b2309cf538c1e94a4e09b88c8284f4a7934cd7\", \"live\": true, \"id\": \"x45903a2d9591aa01\"}", "{\"sha\": \"71c2d3ffc11e9e0ef1db36b4d3ad8cbd2bc72883\", \"live\": true, \"id\": \"x1e8d3c7689579a57\"}", "{\"sha\": \"5110b1d678c6aa3f79e0b37b18f06c2fa3b00bfc\", \"live\": true, \"id\": \"x2ca50b0c04f0a7f9\"}", "{\"sha\": \"0163395d67452d92dc12f8420ac3ff72e8fadf12\", \"live\": true, \"id\": \"xd4e782faae58fbd4\"}", "{\"sha\": \"126930c0b96ddeec378165b6e06cfa68661e65f3\", \"live\": true, \"id\": \"x117a84cdd9b97628\"}", "{\"sha\": \"170458c53c9a92a061ba02d5cafd1e97a78cf330\", \"live\": true, \"id\": \"xf46f88061126b980\"}", "{\"sha\": \"b7e02eeca3790fa8ff1951331b72a8b675f705d7\", \"live\": true, \"id\": \"x50c9276bb5647a32\"}"], "description": "", "basepoints": 10.0, "slug": "understanding-the-equation-solving-process", "kind": "Exercise", "name": "understanding-the-equation-solving-process", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-the-process-for-solving-linear-equations"], "exercise_id": "understanding-the-equation-solving-process"}, "cell-theory-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/cells/cell-theory/cell-theory-questions/", "id": "cell-theory-questions", "display_name": "Cell theory questions", "title": "Cell theory questions", "all_assessment_items": ["{\"sha\": \"b3d3fa15622ffa6201f21d8de50563de3b2c964c\", \"live\": true, \"id\": \"x99e1b05725f13c5a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"853a293f1258b12443c21d0e75b13d1f28b2af0c\", \"live\": true, \"id\": \"x3831eb479c7324a3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"982b7fce93829a90b3cfd09a1917d5a1524aca7d\", \"live\": true, \"id\": \"x70fd9f7a2ff3a50c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a15b3ee1e5ece16a1f3b1dba7dd7afcd570c99c\", \"live\": true, \"id\": \"xb76e9024fc35a227\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"03b3b549c661bdde4df8e2bf62ea04d5420dbec3\", \"live\": true, \"id\": \"x4b15555e7b04da72\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c70921d9cdee0e15995e24815aa2ecc7e2cd7c07\", \"live\": true, \"id\": \"xb188b1d45b95b212\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c48850c3dc3c4b9c74b21140ba8ac1ee13b503bc\", \"live\": true, \"id\": \"x33576bc832c22e71\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4944e6c0290eb5b3e60d684c1fbc69e0b7c4de89\", \"live\": true, \"id\": \"x994590c59e0981f3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ba50cbb124dc9f62319f6b4e9ea66f658299a880\", \"live\": true, \"id\": \"x1f54a38ac43d065e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e0ee5169ef998e65d8e726a0eb3f295bfc9e706\", \"live\": true, \"id\": \"x756b99b7c1ba8093\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Cell theory questions", "basepoints": 10.0, "slug": "cell-theory-questions", "kind": "Exercise", "name": "cell-theory-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cell-theory-questions"}, "electronic-structure-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/electronic-structure/electronic-structure-quiz/", "id": "electronic-structure-quiz", "display_name": "Electronic structure questions", "title": "Electronic structure questions", "all_assessment_items": ["{\"sha\": \"c682ee1f961505bdd68e0ad636e78cd38a8b8d5e\", \"live\": true, \"id\": \"x91ce5a21f20b5f88\", \"perseus_api_major_version\": null}", "{\"sha\": \"bc55b1f6efb397b5852fc8133b0c14006ba98ac1\", \"live\": true, \"id\": \"xc5c109cd9807a40e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"bc5d10f3da616005b37d4959fbb905af7ced583f\", \"live\": true, \"id\": \"xc97861cf23e80acf\", \"perseus_api_major_version\": null}", "{\"sha\": \"682fe551b013b877e29ed48ac6d6843ff4699764\", \"live\": true, \"id\": \"x995e4a2912a1e74f\", \"perseus_api_major_version\": null}", "{\"sha\": \"85a3349b5cf802e2b278c45b12a9b4e4bf7f6fc6\", \"live\": true, \"id\": \"xb7b37bd75e035bea\", \"perseus_api_major_version\": null}", "{\"sha\": \"65e7254490148f8ed4ffe0ec2e9c5baf4d361e07\", \"live\": true, \"id\": \"x75ae8e09cdb42c20\", \"perseus_api_major_version\": null}", "{\"sha\": \"e7f776748a5f4bed08705990176ff81481241317\", \"live\": true, \"id\": \"x6b65dae8d74cb7c8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1b1cbc6890e5964481b5b904872495cd2a16d7ef\", \"live\": true, \"id\": \"x2c8b4e2e1f7f1fdf\", \"perseus_api_major_version\": 3}", "{\"sha\": \"cbdf22376506a33b83455f8d49e66ddba6140754\", \"live\": true, \"id\": \"xacedc066a7f5e0b6\", \"perseus_api_major_version\": null}", "{\"sha\": \"a2e7bc04f6d61204460ef8c290aae49fb5aed8a5\", \"live\": true, \"id\": \"xe65efdc7003a68e1\", \"perseus_api_major_version\": 3}"], "description": "Electronic structure quiz", "basepoints": 10.0, "slug": "electronic-structure-quiz", "kind": "Exercise", "name": "electronic-structure-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "electronic-structure-quiz"}, "fragonard-s-the-swing-quiz": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/rococo/fragonard-s-the-swing-quiz/", "id": "fragonard-s-the-swing-quiz", "display_name": "Fragonard's The Swing Quiz", "title": "Fragonard's The Swing Quiz", "all_assessment_items": ["{\"sha\": \"6b3ca83c7de197dd823410143053215cca1c7aa8\", \"live\": true, \"id\": \"xe72bae022fd94f8a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"89c1ae3ed487f2baa19749440dc1f2bcf0100bc2\", \"live\": true, \"id\": \"xcbc9b4088982b9ef\", \"perseus_api_major_version\": 3}", "{\"sha\": \"36d495feb2e650d2bd7f917b5c4766e39f0ace8a\", \"live\": true, \"id\": \"x0f1a64a28f3855c9\", \"perseus_api_major_version\": 3}"], "description": "This quiz is for the video Fragonard, The Swing.", "basepoints": 10.0, "slug": "fragonard-s-the-swing-quiz", "kind": "Exercise", "name": "fragonard-s-the-swing-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fragonard-s-the-swing-quiz"}, "subtracting_fractions": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/fractions-unlike-denom-pre-alg/subtracting_fractions/", "id": "subtracting_fractions", "display_name": "Subtracting fractions with unlike denominators", "title": "Subtracting fractions with unlike denominators", "description": "Complete fraction subtraction problems where the two fractions have different denominators. \u00a0", "basepoints": 20.0, "slug": "subtracting_fractions", "kind": "Exercise", "name": "subtracting_fractions", "seconds_per_fast_problem": 16.0, "prerequisites": ["comparing_fractions_2", "subtracting_fractions_with_common_denominators"], "exercise_id": "subtracting_fractions"}, "force-of-tension-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/force-of-tension/force-of-tension-questions/", "id": "force-of-tension-questions", "display_name": "Force of tension questions", "title": "Force of tension questions", "all_assessment_items": ["{\"sha\": \"ad3e66735891da817151333035e1f8e2bd06408e\", \"live\": true, \"id\": \"x800cf0b8c7bc5b2a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"84d21750df9f88076e34457d02faae7bcf75c397\", \"live\": true, \"id\": \"x97f4cac49414964f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"7574bc9cccf022ad74748b25939724874188f7f4\", \"live\": true, \"id\": \"x590c2eff582706c8\", \"perseus_api_major_version\": null}", "{\"sha\": \"118a981eb5f63e5bdb50f4eb5f80ed20a5a195d3\", \"live\": true, \"id\": \"xb1076d75e86df007\", \"perseus_api_major_version\": null}", "{\"sha\": \"abbcfa1d0bcea3f6e1bd08083d64ccb5f92336be\", \"live\": true, \"id\": \"x72e52ad49bbd45e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"a6e31d705148105d571880fb82854c79583cf1ff\", \"live\": true, \"id\": \"xa69f2eb2ac9e9cb6\", \"perseus_api_major_version\": null}", "{\"sha\": \"90bcf0714dc61c696515263997d016632bc67eaf\", \"live\": true, \"id\": \"x03d0701bd80f8f21\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ba6998118c4459b843b80a5207d9c9c37a9c4255\", \"live\": true, \"id\": \"xbd0378e0c24a1246\", \"perseus_api_major_version\": null}", "{\"sha\": \"0d3d55ac2a2d78f7c1b7afd160860f5ad8495e86\", \"live\": true, \"id\": \"xa90107c9198c5fa4\", \"perseus_api_major_version\": null}", "{\"sha\": \"a8a10e477b30fbbbdab8ebef2569000107838ec5\", \"live\": true, \"id\": \"xb7623a5876544a1d\", \"perseus_api_major_version\": null}"], "description": "Force of tension questions", "basepoints": 10.0, "slug": "force-of-tension-questions", "kind": "Exercise", "name": "force-of-tension-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "force-of-tension-questions"}, "renal-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/the-renal-system/renal-system-questions/", "id": "renal-system-questions", "display_name": "Renal system questions", "title": "Renal system questions", "all_assessment_items": ["{\"sha\": \"aa43366d546eee2c041b73616c1c6d6b7f5d663c\", \"live\": true, \"id\": \"xf052a83b2329e55b\", \"perseus_api_major_version\": null}", "{\"sha\": \"9b589e4469487f150c8c22182601dde222633c9f\", \"live\": true, \"id\": \"xcb723f30c09c285c\", \"perseus_api_major_version\": null}", "{\"sha\": \"b879d08d5d7244ea01ec80bae6ff2f0886d3be08\", \"live\": true, \"id\": \"x92b4743ff97069b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"d425d65d0032212c72e05676f15fa808054738d7\", \"live\": true, \"id\": \"x04a63acb46bf238d\", \"perseus_api_major_version\": null}", "{\"sha\": \"c3069a154f733f17e066556287c2de7f3a7a6b1b\", \"live\": true, \"id\": \"xaef194cd89b15aa3\", \"perseus_api_major_version\": null}", "{\"sha\": \"3aa3cca72dcc00d8b3a36f2efa211320846e43a0\", \"live\": true, \"id\": \"xebb36086bd1916e3\", \"perseus_api_major_version\": null}", "{\"sha\": \"260690692b45e5a5af3c9d6657ec82f699159be0\", \"live\": true, \"id\": \"x9af31ff673d4c5e3\", \"perseus_api_major_version\": null}", "{\"sha\": \"7bcb3987952297082ab9b9804f74ccac815d135f\", \"live\": true, \"id\": \"xb8994fc0b2974c39\", \"perseus_api_major_version\": null}", "{\"sha\": \"35331320691ce4cb84301a765c73dbeb3b0cda25\", \"live\": true, \"id\": \"xa0faebe8dd645c0e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9f1ea6ab2a9830a6270456cf247a6a42193f7a23\", \"live\": true, \"id\": \"x8b4163f09c5a6dbf\", \"perseus_api_major_version\": null}"], "description": "Renal system questions", "basepoints": 10.0, "slug": "renal-system-questions", "kind": "Exercise", "name": "renal-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "renal-system-questions"}, "work-and-energy---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/work-and-energy-passage-1/", "id": "work-and-energy---passage-1", "display_name": "Basal metabolic rate and energy expenditure ", "title": "Basal metabolic rate and energy expenditure", "all_assessment_items": ["{\"sha\": \"de035b498606d7591a7b9156cdebfecd3838546a\", \"live\": true, \"id\": \"xfc482c0cbb1f56e3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6b975846dda4372ab7940d96fe7cd78544104d2\", \"live\": true, \"id\": \"xdacf78756ced3857\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"249f27cd62dd83bd1bd8c655308f6628eefd6a1f\", \"live\": true, \"id\": \"x6e5120835378ddef\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b7997a1240bcec871a6225f7dfa2a0b8dbeda6f0\", \"live\": true, \"id\": \"xe64cdd1d4a97da54\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e215490caa025d1d65bd4c82f12d2292b448c627\", \"live\": true, \"id\": \"x402ee3d5e33e114f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "This passage will test your knowledge on work and energy", "basepoints": 10.0, "slug": "work-and-energy-passage-1", "kind": "Exercise", "name": "work-and-energy---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "work-and-energy---passage-1"}, "work-and-energy---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/work-and-energy-passage-2/", "id": "work-and-energy---passage-2", "display_name": "Rollercoasters are energy at work!", "title": "Rollercoasters are energy at work!", "all_assessment_items": ["{\"sha\": \"2b6dcc6724b5cb98cc8f88506b60dfd764e81f99\", \"live\": true, \"id\": \"x39e4a60915a198c9\"}", "{\"sha\": \"394b00feaeecc3ff232a96071c76c840112a0cd3\", \"live\": true, \"id\": \"x857311a644930086\"}", "{\"sha\": \"7e18a06e4745f428525deb380ac54d7bfec570e5\", \"live\": true, \"id\": \"xd51871f0621ec80f\"}", "{\"sha\": \"2d64a1fd615839f2d8806ac15f3658a8b4c5ec1d\", \"live\": true, \"id\": \"xccd249b274d7c292\"}", "{\"sha\": \"aaca801acd393adcaa4933e5a174a8e196577660\", \"live\": true, \"id\": \"xe2f1674612cf8b63\"}"], "description": "This passage will test your knowledge on work and energy", "basepoints": 10.0, "slug": "work-and-energy-passage-2", "kind": "Exercise", "name": "work-and-energy---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "work-and-energy---passage-2"}, "self-identity-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/individuals-and-society/self-identity/self-identity-questions/", "id": "self-identity-questions", "display_name": "Self identity questions", "title": "Self identity questions", "all_assessment_items": ["{\"sha\": \"566c8741e57ebe337e177d59ddf46f0fd891ab9e\", \"live\": true, \"id\": \"x42e0414102d3b954\"}", "{\"sha\": \"29d917f781e693a518ed5a6328443bcc5092a852\", \"live\": true, \"id\": \"xa16a0e8c46f4cb59\"}", "{\"sha\": \"654d883a8787ad54f499a4702f3eed4cda43d9c8\", \"live\": true, \"id\": \"xf77820971ff66404\"}", "{\"sha\": \"dfc5e4ca4a1115bb1bd3ded7b4d04250b838b204\", \"live\": true, \"id\": \"x2a51cda9b6e9c850\"}", "{\"sha\": \"f680d81abaf752f243579fd2a326ba5c6e68f44f\", \"live\": true, \"id\": \"x42ae181381ff2034\"}", "{\"sha\": \"b77c4f345a4685fbb52541ac0e14c7dcbf6df05b\", \"live\": true, \"id\": \"x0c71c000b0dc93ef\"}", "{\"sha\": \"f282f8aea960304eab8a2a2697760d54afea8035\", \"live\": true, \"id\": \"x0a4090c6f49e5296\"}", "{\"sha\": \"bbf5e99b80575b9dcb181452ff85215c0189f7bf\", \"live\": true, \"id\": \"xba2ea4b78882a0e8\"}", "{\"sha\": \"4a2a3dd044045cf9015445f4773247a365e0ecdc\", \"live\": true, \"id\": \"x8c3bbe95f317b9ca\"}", "{\"sha\": \"5f536eb4c45e5b248a36d2f1d7d16a0aa3718f4e\", \"live\": true, \"id\": \"xaa7b6efaa74780b2\"}"], "description": "Self identity questions", "basepoints": 10.0, "slug": "self-identity-questions", "kind": "Exercise", "name": "self-identity-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "self-identity-questions"}, "running-time-of-binary-search": {"uses_assessment_items": true, "path": "khan/computing/computer-science/algorithms/binary-search/running-time-of-binary-search/", "id": "running-time-of-binary-search", "display_name": "Quiz: Running time of binary search", "title": "Quiz: Running time of binary search", "all_assessment_items": ["{\"sha\": \"7bd818e659854c6331e0cb475c3a7c34070016f8\", \"live\": true, \"id\": \"xd19c91144f7a4207\"}", "{\"sha\": \"3881a60ef614b12b93fab60786f883187fbd6057\", \"live\": true, \"id\": \"x8d430a9a0bbab34d\"}", "{\"sha\": \"4163157ca8be8c7ff4f9af8b9dd41e5e03234903\", \"live\": true, \"id\": \"xc6979e2d9b18772a\"}", "{\"sha\": \"cf0fd9a038258dd31a8179b90524b23c36906c31\", \"live\": true, \"id\": \"x225f9aa8801260fa\"}", "{\"sha\": \"2e211de2d6505feb7c85079f76c0a95840b07a15\", \"live\": true, \"id\": \"xb9dfe3350f575597\"}"], "description": "Compute how many steps binary search would take to find an item in arrays of various sizes.", "basepoints": 10.0, "slug": "running-time-of-binary-search", "kind": "Exercise", "name": "running-time-of-binary-search", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "running-time-of-binary-search"}, "houses-of-parliament-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/victorian-art-architecture/early-victorian/houses-of-parliament-quiz/", "id": "houses-of-parliament-quiz", "display_name": "Houses of Parliament Quiz", "title": "Houses of Parliament Quiz", "all_assessment_items": ["{\"sha\": \"b6e2fe5c92f02c2303c465084d853c28bca5e253\", \"live\": true, \"id\": \"x938bb2afe935958e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"899064c2521dfffe1d200b6b0bbbace5be5540a2\", \"live\": true, \"id\": \"xc0b6dde5b8272ab5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"022457d7d83693fa97b5211d8d4567fc72f6a1d9\", \"live\": true, \"id\": \"xaebffc5705c89b42\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ac7b221691460cd95bcdc5da9dc65e4a39ca6938\", \"live\": true, \"id\": \"x1908d4de4d483a16\", \"perseus_api_major_version\": 0}"], "description": "This quiz is for the video Charles Barry and A.W.N. Pugin, Palace of Westminster.", "basepoints": 10.0, "slug": "houses-of-parliament-quiz", "kind": "Exercise", "name": "houses-of-parliament-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "houses-of-parliament-quiz"}, "newtons-third-law": {"uses_assessment_items": true, "path": "khan/science/physics/forces-newtons-laws/newtons-laws-of-motion/newtons-third-law/", "id": "newtons-third-law", "display_name": "Newton's third law of motion", "title": "Newton's third law of motion", "all_assessment_items": ["{\"sha\": \"ee0013e7ada8a81c2ea2ca9d93fd5b32cd0a53f1\", \"live\": true, \"id\": \"x22699104\"}", "{\"sha\": \"42a3a4d0aafe0c032f511da34051c8a64ddb4190\", \"live\": true, \"id\": \"x422c6701\"}", "{\"sha\": \"690fd7a2472438e5fb856ec74f8df4cf458b6284\", \"live\": true, \"id\": \"xdadef1b3\"}", "{\"sha\": \"00898082cd28d96ac83590ff93ca4c96c4503012\", \"live\": true, \"id\": \"x321ec6e5\"}", "{\"sha\": \"39fdc55fe8e5a98a46bb175497249c7e1f204d14\", \"live\": true, \"id\": \"x9deefd3a\"}", "{\"sha\": \"703e720c68aa944682e6f1eba0d9f98c15fdff8f\", \"live\": true, \"id\": \"x41fc36b1\"}", "{\"sha\": \"88e3eacef7e54feb96518a42a1e4c7c6c1394003\", \"live\": true, \"id\": \"x5a80584a\"}", "{\"sha\": \"3685f7cb1749835579166a6765e7be9fbc03b7a8\", \"live\": true, \"id\": \"xa20f1bc1\"}"], "description": "Conceptual question testing understanding of Newton's Third Law of Motion", "basepoints": 10.0, "slug": "newtons-third-law", "kind": "Exercise", "name": "newtons-third-law", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "newtons-third-law"}, "lippi-s-madonna-and-child-with-two-angels-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/lippi-s-madonna-and-child-with-two-angels-quiz/", "id": "lippi-s-madonna-and-child-with-two-angels-quiz", "display_name": "Lippi, Madonna and Child with two Angels (quiz)", "title": "Lippi, Madonna and Child with two Angels (quiz)", "all_assessment_items": ["{\"sha\": \"5e63dab17cf1401eb4b30f6f275c359bc9d11bc8\", \"live\": true, \"id\": \"xf9c3780478bc2953\"}", "{\"sha\": \"37f925a2a64882f3d68060db4129efbaac2176d1\", \"live\": true, \"id\": \"xff7b9195ba96bca5\"}", "{\"sha\": \"56741140ba950a2ddb4ac7e225846b38c6649a37\", \"live\": true, \"id\": \"x31f5739dd4e22b86\"}", "{\"sha\": \"ef4d04f6abab25e31cf3016b31fc13dd5cf7c465\", \"live\": true, \"id\": \"xcb1a039a61a1c867\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "lippi-s-madonna-and-child-with-two-angels-quiz", "kind": "Exercise", "name": "lippi-s-madonna-and-child-with-two-angels-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "lippi-s-madonna-and-child-with-two-angels-quiz"}, "applications-of-derivatives--motion-along-a-line": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/motion-along-line-derivatives/applications-of-derivatives-motion-along-a-line/", "id": "applications-of-derivatives--motion-along-a-line", "display_name": "Applications of derivatives: Motion along a line", "title": "Applications of derivatives: Motion along a line", "all_assessment_items": ["{\"sha\": \"8253e6d7a9efee8955d523142358377b4f2127e8\", \"live\": true, \"id\": \"xd1da64200310dd45\"}", "{\"sha\": \"0255ca5c30f6da875a54d09944b2946291da8a0f\", \"live\": true, \"id\": \"x716570ea5af25430\"}", "{\"sha\": \"412db43ec94b6d43149f64e076630951b97999ef\", \"live\": true, \"id\": \"xd7a6f7d35541a692\"}", "{\"sha\": \"23061eeb99847bd0736b410009f125ae47beac84\", \"live\": true, \"id\": \"x0346254c74c144c3\"}", "{\"sha\": \"46e0a0f4bcfe88d7af3f9d8bf3fd3987a23acd96\", \"live\": true, \"id\": \"xafeefd22dc3fe8b9\"}", "{\"sha\": \"be3899ee49560f1827df77b8f6e94e214f2a9c7f\", \"live\": true, \"id\": \"xa1a3214b48e096bc\"}", "{\"sha\": \"54bbeaee60de266b88a6cc137baf5322dc21342b\", \"live\": true, \"id\": \"x69153603f4d1dab3\"}", "{\"sha\": \"aa5ad777f6a14caaddcbd71583815aac78301704\", \"live\": true, \"id\": \"x8a07a4c902928ee2\"}", "{\"sha\": \"6b7bc236b06ab1621440cbee279ef9bdcee6e432\", \"live\": true, \"id\": \"x405ed3046bd796c7\"}", "{\"sha\": \"f86a61b0df083b40aad5ac11db535213badcdcbd\", \"live\": true, \"id\": \"x319b3307e23707fd\"}", "{\"sha\": \"9c6a8730a0aab359818a626ffca4a2dc4bff0a67\", \"live\": true, \"id\": \"x8bc58034ec91ad56\"}", "{\"sha\": \"6913b935739c185a8f0c6e9014dacd0af2b60922\", \"live\": true, \"id\": \"x1fff1671ea1cb6df\"}", "{\"sha\": \"9c6722d30c381a20d874f575941230ed6cc17326\", \"live\": true, \"id\": \"x31754ec1d0f2adeb\"}", "{\"sha\": \"c8dac4262cfa5028bbd9530e7b4435baaa9a4e32\", \"live\": true, \"id\": \"xf18b2e549bd35dd4\"}", "{\"sha\": \"b1fdd34fd01a461ea28bf792a1e08e5cda91ae54\", \"live\": true, \"id\": \"x4f51ee0c72373613\"}", "{\"sha\": \"366ff0008745bbc7c1851bf48d71e8cfedd80141\", \"live\": true, \"id\": \"x636087b47af7dcba\"}", "{\"sha\": \"0745139e50425263f6ae6aa8c9115fc0a516ed78\", \"live\": true, \"id\": \"x60818ec3db0f433c\"}", "{\"sha\": \"5f124948c77d1e29b883ef6bfdc14cca295b217a\", \"live\": true, \"id\": \"xae17f30573a76a7b\"}", "{\"sha\": \"5b6b6cb26171c560ca88405ebd87e0bb34d227f6\", \"live\": true, \"id\": \"xf9713b2325c0f141\"}", "{\"sha\": \"3c7bda63f5b107d43383fb118aca8960deb570cd\", \"live\": true, \"id\": \"x8e1a7e962eb9d08e\"}", "{\"sha\": \"fccdfa5dad7bbe1c3f4a52dba852e5e9e5487eee\", \"live\": true, \"id\": \"x06f9a67342bb9ddb\"}", "{\"sha\": \"753a4e4850101f8bbd5abfff4737394884535734\", \"live\": true, \"id\": \"x43fbb080bac32899\"}", "{\"sha\": \"f19bc7f13e1839f81d159a95b27bf30618e649f9\", \"live\": true, \"id\": \"xd9b6b4b055eb27ab\"}", "{\"sha\": \"2bdc60b9adeeb5d20e47fddfabc64471c22d734f\", \"live\": true, \"id\": \"x5a337ad9f1444247\"}", "{\"sha\": \"faab02412cd2efe124eccda603b8d201e2b80b27\", \"live\": true, \"id\": \"xe5f219daa799b48a\"}", "{\"sha\": \"56271ded7146bb72f0bb7b3481014d238856cb5c\", \"live\": true, \"id\": \"x8cf6a8ce84980de0\"}", "{\"sha\": \"fc448104fabede15cc730c5800cb434838cc82b5\", \"live\": true, \"id\": \"x2a3f1df3fbb02295\"}", "{\"sha\": \"24c7f4877deeaf8c31660be63ce5a5cc2189069f\", \"live\": true, \"id\": \"x8b6c1a680adcc96a\"}", "{\"sha\": \"66328d3c77842f076fe905ebcc535d5ff42bf253\", \"live\": true, \"id\": \"xf7cf84aab49f57a4\"}", "{\"sha\": \"41dab4dba41309d926679f9f634a31f104faff56\", \"live\": true, \"id\": \"xb9b3abf49824dd0b\"}", "{\"sha\": \"db0985e01f35ac2a780fb9e8277c5d617f96c648\", \"live\": true, \"id\": \"x13fd102e603f9036\"}"], "description": "", "basepoints": 28.0, "slug": "applications-of-derivatives-motion-along-a-line", "kind": "Exercise", "name": "applications-of-derivatives--motion-along-a-line", "seconds_per_fast_problem": 53.0, "prerequisites": ["combining-the-product-rule-and-chain-rule"], "exercise_id": "applications-of-derivatives--motion-along-a-line"}, "dividing-line-segments": {"uses_assessment_items": true, "path": "khan/math/geometry/analytic-geometry-topic/cc-distances-between-points/dividing-line-segments/", "id": "dividing-line-segments", "display_name": "Dividing line segments", "title": "Dividing line segments", "all_assessment_items": ["{\"sha\": \"d4c25aa0993551fe314fc077fd70bc99e87603fd\", \"live\": true, \"id\": \"x66d1d92717d78550\"}", "{\"sha\": \"b94152f9799e9aaad98982bdb5efd6eb1345c775\", \"live\": true, \"id\": \"xcfca68e13b700934\"}", "{\"sha\": \"b077e31fb7d86cf230c3982f09ee130ba6aecabb\", \"live\": true, \"id\": \"x978fe010f952ce98\"}", "{\"sha\": \"bd0ab26481471caebd99da2ef4e213579d178882\", \"live\": true, \"id\": \"x5379738a1969952f\"}", "{\"sha\": \"bf1e02fe9a6b42e02f8f5e72884280c2452f327e\", \"live\": true, \"id\": \"x33c08727aa6fcf2a\"}", "{\"sha\": \"48b1ccc232ac5f14192d679362c4d0bf0cf43b34\", \"live\": true, \"id\": \"x92fe6fdcd3b31ade\"}", "{\"sha\": \"e47741f24b12fd722bdd77f197dcc0c7ce33e514\", \"live\": true, \"id\": \"x4c562a54fed3231c\"}", "{\"sha\": \"244d88e58c4126a138b0d2ed7b43ce5d01f43def\", \"live\": true, \"id\": \"x7ebec6f0b17ba8a6\"}", "{\"sha\": \"ab22395c6153611908984ccbd3d019a6c4d3db96\", \"live\": true, \"id\": \"x212c60e3192a48ad\"}", "{\"sha\": \"78ac4909dd829b15a67fd8abaf0d705f1102bdb4\", \"live\": true, \"id\": \"x42dd48d54847e4f8\"}", "{\"sha\": \"468242b4e347084c0df72c2b106a96e6aa9e9274\", \"live\": true, \"id\": \"xd58b7e52fb541d0d\"}", "{\"sha\": \"82bf281919687b28a909e8469401b626df6a959d\", \"live\": true, \"id\": \"x9d1e4fab074fe64e\"}", "{\"sha\": \"06a63a9f79ebe63c1c76393707afffa42e4d3185\", \"live\": true, \"id\": \"x99a4c088286de3a8\"}", "{\"sha\": \"60d06f9624049897300ee03744842a6b5e1b915c\", \"live\": true, \"id\": \"x16b20f3c3dbbb9eb\"}", "{\"sha\": \"ced9bf8a86cc7b93c80702ec993fd3039def5053\", \"live\": true, \"id\": \"xd915a18c606fc168\"}", "{\"sha\": \"7462953bebd7c8133b807c9e9616e44ec9f61181\", \"live\": true, \"id\": \"x2a05bddaef08d42c\"}", "{\"sha\": \"98fa7d920723243f39681bf9ef1bd0f721ab1c3f\", \"live\": true, \"id\": \"xd862761e8803f610\"}", "{\"sha\": \"7eb1bfbcb1ceea33805d48fe677898a336fe26bf\", \"live\": true, \"id\": \"xfd017d4176b2389a\"}", "{\"sha\": \"ec0c13fc96853c7999af31ce22388229d5b777ce\", \"live\": true, \"id\": \"x76ab262ca2281e9a\"}", "{\"sha\": \"6fd907b6c504253bf7423d9c07c952b97d737910\", \"live\": true, \"id\": \"xfc3a0afe6442e904\"}", "{\"sha\": \"d5b0633c3e6f6f92b0e48bfd249194ea9e3c1e4a\", \"live\": true, \"id\": \"x36cd4445d501f7cc\"}", "{\"sha\": \"a7b1b223a4d68d1baa74a3b24ba4f85462cb785a\", \"live\": true, \"id\": \"x6ca51060f766e1b5\"}", "{\"sha\": \"e634b7aad397f8eac882f2a81bd4f774fec67060\", \"live\": true, \"id\": \"x05b6b04714cc45a0\"}", "{\"sha\": \"f8643999ca451ad67c45d273dec548690959eaf7\", \"live\": true, \"id\": \"x11c12fd04f099210\"}", "{\"sha\": \"3d7fc33ec1a510962d79f68b037eb4dbab482b7b\", \"live\": true, \"id\": \"xc04c7486027466ae\"}", "{\"sha\": \"6ce56b9249a469988932b0bf434507dc0e16cd4d\", \"live\": true, \"id\": \"x8cf21e4d393690d8\"}", "{\"sha\": \"f44e3f160a058d6e749487237d41c9566c8382ce\", \"live\": true, \"id\": \"xe4c7299a185054ef\"}", "{\"sha\": \"89a0eae1ff3a45c0844a32287d6590ac40ac77ca\", \"live\": true, \"id\": \"xbcc1fad14df7c93f\"}", "{\"sha\": \"25f0518e926966d5f58381ad3293a97fb2a033b1\", \"live\": true, \"id\": \"xdcf3af02687b39b8\"}", "{\"sha\": \"3efbfd3679d71adc8d306920a673b725eca21359\", \"live\": true, \"id\": \"x51a9ed62198a372d\"}"], "description": "", "basepoints": 10.0, "slug": "dividing-line-segments", "kind": "Exercise", "name": "dividing-line-segments", "seconds_per_fast_problem": 4.0, "prerequisites": ["midpoint_formula"], "exercise_id": "dividing-line-segments"}, "cube_roots": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/exponents-radicals/cube-root-tutorial/cube_roots/", "id": "cube_roots", "display_name": "Cube roots", "title": "Cube roots", "description": "Practice finding the cube root of a perfect cube positive integer.", "basepoints": 14.0, "slug": "cube_roots", "kind": "Exercise", "name": "cube_roots", "seconds_per_fast_problem": 7.0, "prerequisites": ["prime_factorization", "square_roots"], "exercise_id": "cube_roots"}, "drug-addiction-treatments": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/drug-addiction-treatments/", "id": "drug-addiction-treatments", "display_name": "Drug addiction treatment and relapse in incarcerated populations", "title": "Drug addiction treatment and relapse in incarcerated populations", "all_assessment_items": ["{\"sha\": \"ab68b945faf3306f8c2161172669ac1b0e0bf9ea\", \"live\": true, \"id\": \"x3066cbc39a820553\"}", "{\"sha\": \"276196b1ac8bbb194fd5ebbcffee4a4754844be9\", \"live\": true, \"id\": \"x7d3968fdc9a29ce9\"}", "{\"sha\": \"380cf92b18a8e33945b6e6638b45a64ab91b2723\", \"live\": true, \"id\": \"x550109d680288613\"}", "{\"sha\": \"a46fc191874c1e3e1755082661a49f72a75f6b2a\", \"live\": true, \"id\": \"x1967a0a052f5329c\"}", "{\"sha\": \"2aa5ca9c3953bb4e92dc8e47ef2c2295332f6f3f\", \"live\": true, \"id\": \"xf5713e01c1f06045\"}"], "description": "Questions related to addiction and motivation", "basepoints": 10.0, "slug": "drug-addiction-treatments", "kind": "Exercise", "name": "drug-addiction-treatments", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "drug-addiction-treatments"}, "trigonometry_0.5": {"uses_assessment_items": false, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/trigonometry_05/", "id": "trigonometry_0.5", "display_name": "Trigonometry 0.5", "title": "Trigonometry 0.5", "description": "", "basepoints": 18.0, "slug": "trigonometry_05", "kind": "Exercise", "name": "trigonometry_0.5", "seconds_per_fast_problem": 12.0, "prerequisites": ["unit_circle", "pythagorean_theorem_2"], "exercise_id": "trigonometry_0.5"}, "triangle_angles_1": {"uses_assessment_items": false, "path": "khan/math/geometry/congruent-triangles/isoscleles_equil/triangle_angles_1/", "id": "triangle_angles_1", "display_name": "Triangle angles 1", "title": "Triangle angles 1", "description": "", "basepoints": 17.0, "slug": "triangle_angles_1", "kind": "Exercise", "name": "triangle_angles_1", "seconds_per_fast_problem": 11.0, "prerequisites": ["linear_equations_2"], "exercise_id": "triangle_angles_1"}, "z_scores_3": {"uses_assessment_items": false, "path": "khan/math/probability/statistics-inferential/normal_distribution/z_scores_3/", "id": "z_scores_3", "display_name": "Z-scores 3", "title": "Z-scores 3", "description": "Use a z-table to find the probability that a particular measurement is in a range.", "basepoints": 28.0, "slug": "z_scores_3", "kind": "Exercise", "name": "z_scores_3", "seconds_per_fast_problem": 50.0, "prerequisites": ["z_scores_2"], "exercise_id": "z_scores_3"}, "z_scores_2": {"uses_assessment_items": false, "path": "khan/math/probability/statistics-inferential/normal_distribution/z_scores_2/", "id": "z_scores_2", "display_name": "Z-scores 2", "title": "Z-scores 2", "description": "Use a z-table to find the probability of a particular measurement.", "basepoints": 22.0, "slug": "z_scores_2", "kind": "Exercise", "name": "z_scores_2", "seconds_per_fast_problem": 23.0, "prerequisites": ["z_scores_1"], "exercise_id": "z_scores_2"}, "z_scores_1": {"uses_assessment_items": false, "path": "khan/math/probability/statistics-inferential/normal_distribution/z_scores_1/", "id": "z_scores_1", "display_name": "Z-scores 1", "title": "Z-scores 1", "description": "Find the z-score of a particular measurement given the mean and standard deviation.", "basepoints": 19.0, "slug": "z_scores_1", "kind": "Exercise", "name": "z_scores_1", "seconds_per_fast_problem": 14.0, "prerequisites": ["exploring_standard_deviation_1", "standard_deviation"], "exercise_id": "z_scores_1"}, "hundreds--tens--and-ones": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-hundreds/hundreds-tens-and-ones/", "id": "hundreds--tens--and-ones", "display_name": "Hundreds, tens, and ones", "title": "Hundreds, tens, and ones", "all_assessment_items": ["{\"sha\": \"f763c16f773cac31ce799f3996f77c8bcffc0f6b\", \"live\": true, \"id\": \"x44dc31eced947662\"}", "{\"sha\": \"ca1c56b212c148ecbf885db9f2997c12cceb9d2b\", \"live\": true, \"id\": \"x837bc92b4bdbe066\"}", "{\"sha\": \"7734283e61239e4f90a499913fb3257dd8a015f2\", \"live\": true, \"id\": \"xee8b240d8428cd06\"}", "{\"sha\": \"851e54edaccd34d148299691ffa4a6aafa92d09a\", \"live\": true, \"id\": \"x653958b63251dcd6\"}", "{\"sha\": \"2cd11ecbffb47d8fd99db8b6a7ab1b82198718c9\", \"live\": true, \"id\": \"xdc4cd04aafb68684\"}", "{\"sha\": \"7c5919a497876bbee813f9ff933c8e12db493efb\", \"live\": true, \"id\": \"x6e584a4a10c863f5\"}", "{\"sha\": \"a10e6f83009ef1faf78f77d76137f18b9e10b53d\", \"live\": true, \"id\": \"x3328af132088ad87\"}", "{\"sha\": \"b83193131b1b673982e95050178725717e9b8c16\", \"live\": true, \"id\": \"x0e443ecc03f9e580\"}", "{\"sha\": \"304b549207c98a8c172e847c64ffec2f91fd19c3\", \"live\": true, \"id\": \"x57802dc020973a8b\"}", "{\"sha\": \"652a6a223b9a19b8e0595c9e410d1434e822d5a2\", \"live\": true, \"id\": \"x79c59562e3401700\"}", "{\"sha\": \"0862e1ebc010a7bb1ed27a8919ee33791312f192\", \"live\": true, \"id\": \"xe0a3fb560752ad2a\"}", "{\"sha\": \"5de2970c21b6bfba7cfa921db5933733190a3197\", \"live\": true, \"id\": \"xeffd131b4d0e2f33\"}", "{\"sha\": \"5ebc92089426c03a11668fc165656efba594f008\", \"live\": true, \"id\": \"xa901102e3e154fd8\"}", "{\"sha\": \"7d8c738f7bce7039d5a7ed82327e6f442e52c0a7\", \"live\": true, \"id\": \"x8f6d50d9929a506f\"}"], "description": "Pracice thinking about 3-digit numbers as hundreds, tens, and ones.", "basepoints": 10.0, "slug": "hundreds-tens-and-ones", "kind": "Exercise", "name": "hundreds--tens--and-ones", "seconds_per_fast_problem": 4.0, "prerequisites": ["tens-and-ones"], "exercise_id": "hundreds--tens--and-ones"}, "add-within-100--level-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens/add-within-100-level-2/", "id": "add-within-100--level-2", "display_name": "Add within 100: Level 2", "title": "Add within 100: Level 2", "all_assessment_items": ["{\"sha\": \"5d21fc003bf146c39c22bc5fc05cd1717a2d53dd\", \"live\": true, \"id\": \"xd5acc67edfdc0371\"}", "{\"sha\": \"1866d3abcb7cea5522475f02bf6f085e30e47ed1\", \"live\": true, \"id\": \"xf5344f4e8249d6b8\"}", "{\"sha\": \"6a9e61602b671cdc56f7598e8576090d30d3d3d9\", \"live\": true, \"id\": \"x059e1b46f7470072\"}", "{\"sha\": \"c295a5cb45b2c68cb752ac79f4d69f11ea2f7758\", \"live\": true, \"id\": \"x56303cc9d8ab6ca5\"}", "{\"sha\": \"25010f0bb505dd9dcbda27fd29aeea1a6bfd2072\", \"live\": true, \"id\": \"x7dd53fc97679dbed\"}", "{\"sha\": \"3185a7f14adb0da6e9233ec79668a15e23d5b2b6\", \"live\": true, \"id\": \"x8a954714801e51d8\"}", "{\"sha\": \"b9ade4ddd7415019516ee5768030a86928ea037f\", \"live\": true, \"id\": \"xdc1bb5d065cabfcc\"}", "{\"sha\": \"a90ad53e45700b60f555d64ad0758b695b058a59\", \"live\": true, \"id\": \"x3c29286d7a581a8d\"}", "{\"sha\": \"b7c454a640e60ddeff2002e53d710e57468d7240\", \"live\": true, \"id\": \"x2632a0b81a8b04bd\"}", "{\"sha\": \"44e020d621a62b22230bbe4f9f8ffa5e01e6c536\", \"live\": true, \"id\": \"x4df2206115940776\"}", "{\"sha\": \"4b51ce87c41b6b74adf7a24eee5734e5dbc8beae\", \"live\": true, \"id\": \"x1c97b5f351d6ce93\"}", "{\"sha\": \"c2d3ee0d605b91c65cc25a2d2068477183825595\", \"live\": true, \"id\": \"x1a6417c999deb20e\"}", "{\"sha\": \"0817617ed898238bf435b33a2defd0fa19bd0457\", \"live\": true, \"id\": \"x2a216f0aa21f7fda\"}", "{\"sha\": \"5ced932f4aa7ba3eae04be2192e6e7d22691aa2b\", \"live\": true, \"id\": \"xe0cce5d75a31f00b\"}", "{\"sha\": \"2b68cb07260667348f285fabb13a0942f875e49c\", \"live\": true, \"id\": \"xd90ae8b34277ecb8\"}", "{\"sha\": \"13b65ee05896276b1769c62e6bcc86f9f87bccac\", \"live\": true, \"id\": \"x0d2aaf7f48a57f69\"}", "{\"sha\": \"3bdf3474c4a579c61dd8f7725ea6a6f2416f5ae4\", \"live\": true, \"id\": \"x4d8b84c894472dfa\"}", "{\"sha\": \"97cea0be3eecf71dd3416ee19ef1a83f9fa0e28b\", \"live\": true, \"id\": \"xc7488f973e4f8338\"}", "{\"sha\": \"8882ef136b79b9fe1e83e5d1f9290a064d70a2cd\", \"live\": true, \"id\": \"xdbe4626c14fec7b3\"}"], "description": "Practice adding ones or tens to a two-digit number.\u00a0(No regrouping)", "basepoints": 10.0, "slug": "add-within-100-level-2", "kind": "Exercise", "name": "add-within-100--level-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["add-within-100--level-1"], "exercise_id": "add-within-100--level-2"}, "add-within-100--level-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens/add-within-100-level-1/", "id": "add-within-100--level-1", "display_name": "Add within 100: Level 1", "title": "Add within 100: Level 1", "all_assessment_items": ["{\"sha\": \"08dd1389d17b01b823aab77ee0a411baff7c2d73\", \"live\": true, \"id\": \"x5e488939b1195ac9\"}", "{\"sha\": \"e7bc4b76a663c68e7741b81e221caabd74933477\", \"live\": true, \"id\": \"x095426f049b8fcd9\"}", "{\"sha\": \"88348b7f7a029513a0d6cc7c444722d8a0a3a68b\", \"live\": true, \"id\": \"xcac4c68c1eda60b5\"}", "{\"sha\": \"9a835f5236c594eca027f1fec3226d124917540c\", \"live\": true, \"id\": \"x02abe0f18c2442e9\"}", "{\"sha\": \"eff1d5a4afe417021d53f7237bbfce8e8db2a5d8\", \"live\": true, \"id\": \"xd4afdd2b9fd26711\"}", "{\"sha\": \"77555f0c2e0b3e5541d07aeff93b85166406a8de\", \"live\": true, \"id\": \"x919176162af7f061\"}", "{\"sha\": \"70a0d65b91f4521683359ab3f78fd0be90383783\", \"live\": true, \"id\": \"x7262ca6465580644\"}", "{\"sha\": \"ab885cf5581736684789d3fe7c73c2be433f008f\", \"live\": true, \"id\": \"xf0fd50d99c9a835f\"}", "{\"sha\": \"7d36e4b349169ca0132a577230250afdbe601846\", \"live\": true, \"id\": \"xd0c3ef39daf3f323\"}", "{\"sha\": \"d608aaa31b570e23dccc314c1d3da3ac1c53ee64\", \"live\": true, \"id\": \"x9dd4a4138f3fe585\"}", "{\"sha\": \"505a9c43f0b037a292288599b991c8764626a447\", \"live\": true, \"id\": \"xb9e9358632daf632\"}", "{\"sha\": \"8813e97ffe14ed2f403410cc4de50b20bdbc117c\", \"live\": true, \"id\": \"x0e6ce7936952277c\"}", "{\"sha\": \"72553615d8da18963bdd386d6563318958aa0a24\", \"live\": true, \"id\": \"xfa63a48521d8f93f\"}", "{\"sha\": \"e0855e3befbf0d661a5bfbc47d7fc149c4f9c526\", \"live\": true, \"id\": \"x0537948bcce26a5d\"}", "{\"sha\": \"8e7f0630d9a974fddb01cc0dee545541c1eba030\", \"live\": true, \"id\": \"xa2d8158cba408476\"}", "{\"sha\": \"fba034920cb6b7a2770765f554d7de5f220c49fd\", \"live\": true, \"id\": \"xde183bc378303361\"}", "{\"sha\": \"38a111dd3dfe6e92c0685a7168a5cbd3091f1954\", \"live\": true, \"id\": \"xe70940c4b6dcf659\"}", "{\"sha\": \"abb05986bac82eb57f6ca26cf1693163748a7340\", \"live\": true, \"id\": \"xcb78bf1914336978\"}", "{\"sha\": \"fe6f0e1b7ca6a22484304ac377de391b724fa089\", \"live\": true, \"id\": \"x1d9d19a185ea7f98\"}", "{\"sha\": \"87e12d5bf6808c1f62375e771dd317f0be33b817\", \"live\": true, \"id\": \"x2d3336ab4a93e3f0\"}"], "description": "Practice adding 1 or 10 to a two-digit number. (No regrouping)", "basepoints": 10.0, "slug": "add-within-100-level-1", "kind": "Exercise", "name": "add-within-100--level-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["tens-and-ones", "addition-and-subtraction-within-10"], "exercise_id": "add-within-100--level-1"}, "leukocytes-roll-on-blood-vessel-walls": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/leukocytes-roll-on-blood-vessel-walls/", "id": "leukocytes-roll-on-blood-vessel-walls", "display_name": "Leukocytes roll on blood vessel walls", "title": "Leukocytes roll on blood vessel walls", "all_assessment_items": ["{\"sha\": \"3fba577f27d2c4d5126e3cbba5b4ddb3d7ccf755\", \"live\": true, \"id\": \"x28007c988de66ba5\"}", "{\"sha\": \"e6649585d2e06098733f86a3cbd6e8ae99928365\", \"live\": true, \"id\": \"x67182337fd206526\"}", "{\"sha\": \"1df291bcdd87aeba912b298bb4c5caa22fa9444e\", \"live\": true, \"id\": \"x043893311365583a\"}", "{\"sha\": \"a63ec0c3f2d30a95b99c2f1c1363f8f3c07e23f7\", \"live\": true, \"id\": \"x1621606827dd367e\"}", "{\"sha\": \"54b7d40320c23f152262d1ac23376319c16c2141\", \"live\": true, \"id\": \"x05f882eaf81624f0\"}"], "description": "Questions related to the circulatory system", "basepoints": 10.0, "slug": "leukocytes-roll-on-blood-vessel-walls", "kind": "Exercise", "name": "leukocytes-roll-on-blood-vessel-walls", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "leukocytes-roll-on-blood-vessel-walls"}, "quiz-stars-and-big-history": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/stars-and-elements/creation-complex-elements/quiz-stars-and-big-history/", "id": "quiz-stars-and-big-history", "display_name": "Quiz: Creation of Complex Elements", "title": "Quiz: Creation of Complex Elements", "all_assessment_items": ["{\"sha\": \"8c20d21186b356f791400992c1777a6be0ed8dbd\", \"live\": true, \"id\": \"x83b9b0757655ca8b\"}", "{\"sha\": \"52e1e3ed7ce71ed9571bbb24c764953def8053a6\", \"live\": true, \"id\": \"xda344cefa9ec6026\"}", "{\"sha\": \"43f46b821b43fe03c005af51b7e221c969467956\", \"live\": true, \"id\": \"xbe0d26759ed55219\"}", "{\"sha\": \"010d574f4c9f26f7d2498d146ae45fcea6b28221\", \"live\": true, \"id\": \"x9a53c71b056a6244\"}", "{\"sha\": \"9ed8fda810f777b211f50ff0947f6bea4285f985\", \"live\": true, \"id\": \"xe72d5d9d5547fa3e\"}"], "description": "Quiz 3.1", "basepoints": 10.0, "slug": "quiz-stars-and-big-history", "kind": "Exercise", "name": "quiz-stars-and-big-history", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-stars-and-big-history"}, "equation_of_a_circle_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/conics_precalc/circles-tutorial-precalc/equation_of_a_circle_2/", "id": "equation_of_a_circle_2", "display_name": "Equation of a circle in non-factored form", "title": "Equation of a circle in non-factored form", "description": "Find the center and radius of a circle given the equation in unfactored form.", "basepoints": 28.0, "slug": "equation_of_a_circle_2", "kind": "Exercise", "name": "equation_of_a_circle_2", "seconds_per_fast_problem": 48.0, "prerequisites": ["equation_of_a_circle_1"], "exercise_id": "equation_of_a_circle_2"}, "equation_of_a_circle_1": {"uses_assessment_items": true, "path": "khan/math/algebra2/conics_precalc/circles-tutorial-precalc/equation_of_a_circle_1/", "id": "equation_of_a_circle_1", "display_name": "Equation of a circle in factored form", "title": "Equation of a circle in factored form", "all_assessment_items": ["{\"sha\": \"10f586df8d5ece1d45c55c43bcc8584c5ce41ef3\", \"live\": true, \"id\": \"xa1ab4d2beb6db47a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2c0c16fa184b6f5b24fe54d459dfa16079f40db6\", \"live\": true, \"id\": \"x9e699463c80da4d1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b679c3b00c0328f54e2994b065d84a28b5f90d0f\", \"live\": true, \"id\": \"xd0b800cab3ac9594\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f1bd5bd218867ae9c92a999b27c81c54db29d0ed\", \"live\": true, \"id\": \"xb9854debc789d672\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e9b940ab9646ba976646b637dd57b990119f8b75\", \"live\": true, \"id\": \"xd1b789b1dcd76de5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5e83e2d16e261cd313a3343c38d8e1a9976a525c\", \"live\": true, \"id\": \"x8e6c2297bb9ee0b8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"9302a048af887fd8fceea19253e186352358e0a7\", \"live\": true, \"id\": \"x2b496e2c118adb31\", \"perseus_api_major_version\": 0}", "{\"sha\": \"20f1aa68bb63b8854cb47dddfbd1651ad43c869d\", \"live\": true, \"id\": \"x05428116917ab60d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6466305bc6728caa1d65180d80d877b5d4a8868e\", \"live\": true, \"id\": \"xe98821b918377781\", \"perseus_api_major_version\": 0}", "{\"sha\": \"bac09e87e643973b5f1ad0fd9779e8895d26aa04\", \"live\": true, \"id\": \"x44c33c96597ed810\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a06de2f920daf9676986e944921112c0e86eb57f\", \"live\": true, \"id\": \"xad0d58d37daa91a0\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8e5af92ddc605ba1b3175351d76f9b4c34c1aa97\", \"live\": true, \"id\": \"xce0c60f9e2d0948d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1379197d2a7689f984e20301aeff48fd641aeb5b\", \"live\": true, \"id\": \"x6a328fe4f1d9fa7d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a4464a5d450388b9e89e7c5fa8fd39c72fea35f5\", \"live\": true, \"id\": \"xdd669726ca9e2a51\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2db2462ff517d6b1478d4da76a3b19fa4d664fdf\", \"live\": true, \"id\": \"xdf456237b05d1b1d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ca5aa316d473a252be5c430187ccb58dee4c34cb\", \"live\": true, \"id\": \"x846f6ad2cad6ad9b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4203d345a4c8d611f6078966521f8d95388f7632\", \"live\": true, \"id\": \"x67e95165f8349547\", \"perseus_api_major_version\": 0}", "{\"sha\": \"230178a6b48d730a89db2f3e6c0f7c6d3bbc0e36\", \"live\": true, \"id\": \"x36fbb5c7e301666d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"62ea0d0fbd14016473efbfb29e74d2d1d72f0073\", \"live\": true, \"id\": \"x6d988cfac7a3318e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"00a27b877597b1401118674d0dc5f11d4028f8e2\", \"live\": true, \"id\": \"x6aa903ad14ccf4fc\", \"perseus_api_major_version\": 0}", "{\"sha\": \"bea745d00be5521965ba9e5723011d4c19f85f05\", \"live\": true, \"id\": \"x6e0280a3374fe577\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2d5d6d7bdb850907ea1c8ca61a4c0ba9e829ce6a\", \"live\": true, \"id\": \"x8698f48ae9b5a82c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"94e5922891bb0926f0a11133e2f5a575943da496\", \"live\": true, \"id\": \"xe9eeb9da96adf08c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"25b38070212bfceaa8181a7dadc3e03e6f9a5b26\", \"live\": true, \"id\": \"x02374af2d82068e1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f8f82b1e74eab2d95774e2a8fb848bfb196c563c\", \"live\": true, \"id\": \"xcfba3ac89ab0373f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"280e3374ed9d95b5280796f238ec81d9f4f07d4a\", \"live\": true, \"id\": \"x6e413344e6f0b9a9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"86a87679ed5dac851aa916f121132ab33d8b216b\", \"live\": true, \"id\": \"x02bee3bd6c1f8407\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c74bd00b0850645f28b82b5fc9e9f8a219a5603e\", \"live\": true, \"id\": \"x3962ca78fe9219fa\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3c200b7177e1e1fc48b723112826e73a8a409028\", \"live\": true, \"id\": \"xa2df0a2cfc34f42a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6b2995ec51f2c472e84a3e2c0ed7af189d89908e\", \"live\": true, \"id\": \"xf7b488bba2365d62\", \"perseus_api_major_version\": 0}"], "description": "Find the center and radius of a circle given the equation in factored form.", "basepoints": 15.0, "slug": "equation_of_a_circle_1", "kind": "Exercise", "name": "equation_of_a_circle_1", "seconds_per_fast_problem": 8.0, "prerequisites": ["pythagorean-theorem-and-the-equation-of-a-circle"], "exercise_id": "equation_of_a_circle_1"}, "multiplying_a_matrix_by_a_matrix": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/matrix_multiplication/multiplying_a_matrix_by_a_matrix/", "id": "multiplying_a_matrix_by_a_matrix", "display_name": "Multiplying a matrix by a matrix", "title": "Multiplying a matrix by a matrix", "all_assessment_items": ["{\"sha\": \"52a8e309151e2f713857263b7ec5d6b7066eefd8\", \"live\": true, \"id\": \"x54879aa51f0775f2\"}", "{\"sha\": \"a93a2b24527ecf49d429062d89376d35c544ec24\", \"live\": true, \"id\": \"xb4842342f2ca2243\"}", "{\"sha\": \"ee0071c8a7ef0a4597965b955e8ef8c84e804909\", \"live\": true, \"id\": \"x299b2deb9930b814\"}", "{\"sha\": \"48ae9836f0b479c538733c38edb6b33d477ee2be\", \"live\": true, \"id\": \"x8bfea92b4c3c787e\"}", "{\"sha\": \"ceeb6d43e5545ed16acd7207e7b45580f31d6904\", \"live\": true, \"id\": \"x674d47e99678a8f2\"}", "{\"sha\": \"6c73bfbbba46bc12f0f6ea9f5c307ecbb8f71ffd\", \"live\": true, \"id\": \"x3d0cf92c76f4e74d\"}", "{\"sha\": \"8410589546cb22b7f93c120bfbc236bccd7089b1\", \"live\": true, \"id\": \"xf9a07e5c38c0e29d\"}", "{\"sha\": \"90e7722d390a0b58578f746229d351c6b71c8bba\", \"live\": true, \"id\": \"x820b17ed83f33ff7\"}", "{\"sha\": \"0fbf005b8cd34f8e07516829590572dc847b78a9\", \"live\": true, \"id\": \"x6b95dcc04dee9994\"}", "{\"sha\": \"43e41b2cc4879ff550c82d220e56b757745e28ac\", \"live\": true, \"id\": \"xc4b02c4445ba3bd7\"}", "{\"sha\": \"e7d5d182b504d31514daf447abe9a3c7ba52286d\", \"live\": true, \"id\": \"x8759c03ba62b8dfd\"}", "{\"sha\": \"86ce1f9357f82c931c239d095211e1aec6095e18\", \"live\": true, \"id\": \"x363a8ad677295355\"}", "{\"sha\": \"3c968613c7b76f46e3d4a9638db173584664c449\", \"live\": true, \"id\": \"x84bbff996c3ecede\"}", "{\"sha\": \"6062ad1e4105f561175d654e18acf58827cb170d\", \"live\": true, \"id\": \"x1b60ca8156ea124b\"}", "{\"sha\": \"fb0ae59ef92e608364dfbab9eb97461005562fdb\", \"live\": true, \"id\": \"xa25e5c54821696be\"}", "{\"sha\": \"e86c203536795f6419fa877b6cac5468ae54801a\", \"live\": true, \"id\": \"x226cedfb40df9181\"}", "{\"sha\": \"a9d725b331b5c098f9e65dc17996008466838170\", \"live\": true, \"id\": \"xdac31eeaac9da419\"}", "{\"sha\": \"009ed648056f735f005866f21c7b560ea7a98f58\", \"live\": true, \"id\": \"xb81fd0e3cefb764c\"}", "{\"sha\": \"740c80198d1ec2c7804ca8137fb1c4bd6e81bee1\", \"live\": true, \"id\": \"x21efbde36f905665\"}", "{\"sha\": \"54e37122bc0c4d70cd5b3427c93856ba26084dbb\", \"live\": true, \"id\": \"x780bc1f57aeb2064\"}", "{\"sha\": \"f96e47b3a3c6be4255a81f9d997df8bee026d3a5\", \"live\": true, \"id\": \"x413e54990babb2b0\"}", "{\"sha\": \"f3c0fee223c1c736cdf8bea335040482bea51ebf\", \"live\": true, \"id\": \"x09ba01b021c70c38\"}", "{\"sha\": \"515f433480329199657c2f2dbc351b5d75f8bced\", \"live\": true, \"id\": \"x15ad4e21ceda57c2\"}", "{\"sha\": \"26f913875971be828df23e5293d214df259f4949\", \"live\": true, \"id\": \"x1c8909278c13e570\"}", "{\"sha\": \"faf5c29331a0b1c563eb6babe1812abaea36472c\", \"live\": true, \"id\": \"xad4aaeaca9fd92df\"}", "{\"sha\": \"d6dcf5c2fb4a18c8146d8eda97fc47b2f6d2b32f\", \"live\": true, \"id\": \"x82e81471c1f6a8a4\"}", "{\"sha\": \"9cc0ce499cd25096079cac527077308ac4755d4b\", \"live\": true, \"id\": \"x28e165d56f52360d\"}", "{\"sha\": \"481b9ae8a72996d5125acc69eb11378ee294e882\", \"live\": true, \"id\": \"xeba7c12a0ec5ac92\"}", "{\"sha\": \"4390635fd05601b44c0da0a506fb46ca51e0949a\", \"live\": true, \"id\": \"x8ee47356f4e899bb\"}", "{\"sha\": \"4f33760d547da0406b3a7e948afba0befe53bb06\", \"live\": true, \"id\": \"x44100be48b9a9aa9\"}"], "description": "Multiply two matrices", "basepoints": 29.0, "slug": "multiplying_a_matrix_by_a_matrix", "kind": "Exercise", "name": "multiplying_a_matrix_by_a_matrix", "seconds_per_fast_problem": 59.0, "prerequisites": ["multiplying_a_matrix_by_a_vector"], "exercise_id": "multiplying_a_matrix_by_a_matrix"}, "introduction-to-decorative-arts": {"uses_assessment_items": true, "id": "introduction-to-decorative-arts", "display_name": "Introduction to decorative arts quiz", "title": "Introduction to decorative arts quiz", "all_assessment_items": ["{\"sha\": \"68d6964556e43a459f180dcbb09c7be4aafb8754\", \"live\": true, \"id\": \"x39ea8464b614db43\", \"perseus_api_major_version\": null}", "{\"sha\": \"6207a18dcfe416e5c83e715ee274bd5a567f6a95\", \"live\": true, \"id\": \"x10fc9d78b8255fd3\", \"perseus_api_major_version\": 0}", "{\"sha\": \"180c107634b3cf53ce4e88430cbc6b57ef6277aa\", \"live\": true, \"id\": \"x0a668e0a6f287994\", \"perseus_api_major_version\": null}", "{\"sha\": \"df4ff4e5f8631850acb0e0a76933bd31f1cff338\", \"live\": true, \"id\": \"x24c4c92002efa5fa\", \"perseus_api_major_version\": null}", "{\"sha\": \"181e343f080ec8b2c88398a0da2205b3ae8f1d5e\", \"live\": true, \"id\": \"x2e312ff1b705c477\", \"perseus_api_major_version\": null}", "{\"sha\": \"0d7e5f5ce8a76641245677616accfb4b4685efa9\", \"live\": true, \"id\": \"xe7ca9d3f13211e64\", \"perseus_api_major_version\": 0}", "{\"sha\": \"51490d0b2d03bbb0caa02010fc9e9a4264f96261\", \"live\": true, \"id\": \"xa2e5486001eb0b93\", \"perseus_api_major_version\": null}", "{\"sha\": \"ae00ab4bfccfe818f0a0e91c4e983747bf51e932\", \"live\": true, \"id\": \"x5db77a497efa8b22\", \"perseus_api_major_version\": null}", "{\"sha\": \"18c25874b8029aacb2a8d1af6c5ad2fe77308ee5\", \"live\": true, \"id\": \"x83ed61698eac1b85\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6f93dfba00fe20a7e85037342eed288c91dddf01\", \"live\": true, \"id\": \"x4256b9be25c2dac6\", \"perseus_api_major_version\": 0}"], "description": "Test your knowledge of decorative arts.", "basepoints": 10.0, "path": "introduction-to-decorative-arts/", "slug": "introduction-to-decorative-arts", "kind": "Exercise", "name": "introduction-to-decorative-arts", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "introduction-to-decorative-arts"}, "memory---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/memory-passage-1/", "id": "memory---passage-1", "display_name": "Differential memory loss and Alzheimer's Disease", "title": "Differential memory loss and Alzheimer's Disease", "all_assessment_items": ["{\"sha\": \"e63dbe161b2cc4f984109f63c790d613756c8308\", \"live\": true, \"id\": \"x88391138e85c40ff\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"17dc27a8ac0f71ca506c9bd850a329f62c2a4c78\", \"live\": true, \"id\": \"x267bc402034d7851\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"da22f1df1c5b0a058561cfc8ecab62aae9174490\", \"live\": true, \"id\": \"x90b106be77e0b453\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5f1b55063f3171db981d3eed7708987fea0a6243\", \"live\": true, \"id\": \"x68d9e0788066069a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"573e15f6604365907eb08704b6687b9d51746e21\", \"live\": true, \"id\": \"xc0e5790b63baecc2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "memory-passage-1", "kind": "Exercise", "name": "memory---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "memory---passage-1"}, "memory---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/memory-passage-2/", "id": "memory---passage-2", "display_name": "Remembering folk tales over time", "title": "Remembering folk tales over time", "all_assessment_items": ["{\"sha\": \"9526e158c347aa4017a050f8476aa5eefa1559ee\", \"live\": true, \"id\": \"x3cfa5d8f3095ed9d\"}", "{\"sha\": \"12182699723bf7302714f6c464efd3ad6b87bd01\", \"live\": true, \"id\": \"x7ed8033ab2ef7973\"}", "{\"sha\": \"ea0e5d0c08077a5d63e2a085c37ca16ffd9952a9\", \"live\": true, \"id\": \"xdf97ac07b20ecbe9\"}", "{\"sha\": \"cbe373a67a9ea1da15a2d6756ec510cb5f93775f\", \"live\": true, \"id\": \"x2fd42ac6b6d16759\"}", "{\"sha\": \"f4abcfea75e2da0235a8815a603ec70b51ee27ca\", \"live\": true, \"id\": \"xeb5460b8849a0425\"}"], "description": "", "basepoints": 10.0, "slug": "memory-passage-2", "kind": "Exercise", "name": "memory---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "memory---passage-2"}, "rounding-to-the-nearest-ten-or-hundred": {"uses_assessment_items": true, "id": "rounding-to-the-nearest-ten-or-hundred", "display_name": "Rounding to the nearest ten or hundred", "title": "Rounding to the nearest ten or hundred", "all_assessment_items": ["{\"sha\": \"3104808ac31ef4699c6ed6f27fb5e95e6d2b0174\", \"live\": true, \"id\": \"x14b07d5cf269ebeb\", \"perseus_api_major_version\": null}", "{\"sha\": \"b217b1718d49e6ee9a80909e826635644d9b5f18\", \"live\": true, \"id\": \"x72f129d30b830d07\", \"perseus_api_major_version\": null}", "{\"sha\": \"a32f84dee86ce5ef9462f8d18924c9ed93477ad7\", \"live\": true, \"id\": \"x185adc1225c0e72e\", \"perseus_api_major_version\": null}", "{\"sha\": \"a5d11c316dbb92de3fbec13b5976577e8ce8d457\", \"live\": true, \"id\": \"x77485b4bd532c6fc\", \"perseus_api_major_version\": null}", "{\"sha\": \"7cae4d628a180afc867a1d860a6deca3805c5473\", \"live\": true, \"id\": \"x310800f73c267462\", \"perseus_api_major_version\": null}", "{\"sha\": \"b2a9ebc31d86e5c4616c2f599de9e42f41a0faaf\", \"live\": true, \"id\": \"x6921711969d64b7e\", \"perseus_api_major_version\": null}", "{\"sha\": \"b3dce5b42b9031c7561a9b200cf75c7cc043e90a\", \"live\": true, \"id\": \"xf998a1e8ba061ab7\", \"perseus_api_major_version\": null}", "{\"sha\": \"5aaad4e1c7c89f0f469e2e4f6cc5639450f30a8e\", \"live\": true, \"id\": \"x858be8b037d0595d\", \"perseus_api_major_version\": null}", "{\"sha\": \"080427322967cdba15e62d7bdd0ec4a1c4d0c561\", \"live\": true, \"id\": \"x8e027d75c3af3077\", \"perseus_api_major_version\": null}", "{\"sha\": \"c5a01e4edac9e9a7bbf6a76ee4765200340ac0e8\", \"live\": true, \"id\": \"xf46b1f80831706b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"1f91d227665912428a5eaaa226d32b70dfae62ed\", \"live\": true, \"id\": \"x3ab17b5d74d79402\", \"perseus_api_major_version\": null}", "{\"sha\": \"bb5dbbc159f8c438aa9ca5d8b37c556db68b15c0\", \"live\": true, \"id\": \"xe9e1a3b9f44d9837\", \"perseus_api_major_version\": null}", "{\"sha\": \"1179dd6c65ecff3c5315cf23222464f99f790282\", \"live\": true, \"id\": \"x5c783fce1e3f485b\", \"perseus_api_major_version\": null}", "{\"sha\": \"37963506b33d2adc0090620522862f978aef2a67\", \"live\": true, \"id\": \"xc1c083feffef8e3a\", \"perseus_api_major_version\": null}", "{\"sha\": \"996099a18905af5aa4206406d8f13c3e3b2fa4e4\", \"live\": true, \"id\": \"xceb0ab9eb1ef8ab7\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f8aa5672d09beeb3dc51b44fe8936aa707c7176\", \"live\": true, \"id\": \"x62ee70ddc7da15d1\", \"perseus_api_major_version\": null}", "{\"sha\": \"d9ee903c9cc683748bdacf6c142df75378d49b1e\", \"live\": true, \"id\": \"x91e923b0d9fbb642\", \"perseus_api_major_version\": null}", "{\"sha\": \"1df4bcb4000006a45ffd33267297f7a34217443f\", \"live\": true, \"id\": \"x2248ff3ff1fb6ee6\", \"perseus_api_major_version\": null}", "{\"sha\": \"1e62bf12c0a8ac923926cf99e5cd8a927a8ab19c\", \"live\": true, \"id\": \"x970a7ad74565ed18\", \"perseus_api_major_version\": null}", "{\"sha\": \"81dac1bb125c0ef1f34cb698d1eb7006195723d4\", \"live\": true, \"id\": \"x4ec016e60c3bdab1\", \"perseus_api_major_version\": null}", "{\"sha\": \"8dda3c3cc9f50339248359f366da38081db20f8b\", \"live\": true, \"id\": \"x9ed340897fe05318\", \"perseus_api_major_version\": null}", "{\"sha\": \"072ca6710107c1838d279d0761f1287bb5b3cf60\", \"live\": true, \"id\": \"x8ce75909d8587ced\", \"perseus_api_major_version\": null}", "{\"sha\": \"26c6ca35eea66d4e4330736ed1bc614fdde2540d\", \"live\": true, \"id\": \"x7424ac8dcc35d9ae\", \"perseus_api_major_version\": null}", "{\"sha\": \"572aa278bf4a7e36cb82994d1ddc72f04055f641\", \"live\": true, \"id\": \"x134573c44a1aa322\", \"perseus_api_major_version\": null}", "{\"sha\": \"d0488afc5da216d53c68fb60fbe1f56b1fb4bfc8\", \"live\": true, \"id\": \"x748da23b2c7499a1\", \"perseus_api_major_version\": null}", "{\"sha\": \"fd9c535b11dd8b7b87c9ab3f16a4304c53d56ed7\", \"live\": true, \"id\": \"x5f991541c3f1920f\", \"perseus_api_major_version\": null}", "{\"sha\": \"72a56d935a22b7f8898d3ed8b1f55d64dd889489\", \"live\": true, \"id\": \"x52aced34e0053e40\", \"perseus_api_major_version\": null}", "{\"sha\": \"f4dfb0c013c70203548f144c4a88f358f329b5d5\", \"live\": true, \"id\": \"x3ca677fd7677c49f\", \"perseus_api_major_version\": null}", "{\"sha\": \"682dcb9fb220a8c38a61cd6fd481f6daaf5c3c44\", \"live\": true, \"id\": \"x2bbc36695406dd92\", \"perseus_api_major_version\": null}", "{\"sha\": \"efcaf0ad55dea54890ebd60264273b3ff2663e20\", \"live\": true, \"id\": \"x8fb1852af1a828c6\", \"perseus_api_major_version\": null}", "{\"sha\": \"be5e5f776c38f93183af47ccf64ea59572658dc7\", \"live\": true, \"id\": \"x67a619438bf9956f\", \"perseus_api_major_version\": null}", "{\"sha\": \"422c72948d46f768acb9a373b5ca43255eaa7c8a\", \"live\": true, \"id\": \"x40ffdffa4b9f6d7a\", \"perseus_api_major_version\": null}", "{\"sha\": \"ffe40642307907b187629b91036956dd950382a6\", \"live\": true, \"id\": \"x70de9dadfbac1d91\", \"perseus_api_major_version\": null}", "{\"sha\": \"facffbf1ba00e4a0ee39158e5d02a368372889eb\", \"live\": true, \"id\": \"x9b67cfedc88a55d4\", \"perseus_api_major_version\": null}", "{\"sha\": \"bae17315ad2b8a8b5fdc4ee95d1c5e4d43bbc05a\", \"live\": true, \"id\": \"xf8b241ab137366f9\", \"perseus_api_major_version\": null}", "{\"sha\": \"02e7fd0f315b483d0d1190f188c6c964848504c2\", \"live\": true, \"id\": \"xef960fdb791f80fb\", \"perseus_api_major_version\": null}", "{\"sha\": \"1897282897a659dd7e7ff46f742bb2128941875d\", \"live\": true, \"id\": \"xb29805d9222b8dfd\", \"perseus_api_major_version\": null}", "{\"sha\": \"4ddb7fffbf646b508bbc73394724668105d2c063\", \"live\": true, \"id\": \"x3e4e6125b664d275\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f9c9501546ab19e6d48539c42fa87f63b519d2d\", \"live\": true, \"id\": \"x39b1974c52750e06\", \"perseus_api_major_version\": null}", "{\"sha\": \"c63c99c0dd533a401aa718d8814cb942cdc17876\", \"live\": true, \"id\": \"x95eb534e137d6846\", \"perseus_api_major_version\": null}", "{\"sha\": \"0dc74cc8031233f0041e4dc492db67db123e38fa\", \"live\": true, \"id\": \"xc9153f1e51c7cc11\", \"perseus_api_major_version\": null}", "{\"sha\": \"f536587cbc38a40ed8f23efbcd38f93293cfcf67\", \"live\": true, \"id\": \"xb9c75f955f6f7b72\", \"perseus_api_major_version\": null}"], "description": "Use number lines and clues to solve estimation problems. \u00a0", "basepoints": 10.0, "path": "rounding-to-the-nearest-ten-or-hundred/", "slug": "rounding-to-the-nearest-ten-or-hundred", "kind": "Exercise", "name": "rounding-to-the-nearest-ten-or-hundred", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "rounding-to-the-nearest-ten-or-hundred"}, "basic_set_notation": {"uses_assessment_items": false, "path": "khan/math/probability/independent-dependent-probability/basic_set_operations/basic_set_notation/", "id": "basic_set_notation", "display_name": "Basic set notation", "title": "Basic set notation", "description": "The union, complement, and intersection of sets.", "basepoints": 17.0, "slug": "basic_set_notation", "kind": "Exercise", "name": "basic_set_notation", "seconds_per_fast_problem": 10.0, "prerequisites": ["dependent_probability"], "exercise_id": "basic_set_notation"}, "dividing_decimals_3": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/operations-with-decimals/dividing_decimals_3/", "id": "dividing_decimals_3", "display_name": "Dividing decimals 3", "title": "Dividing decimals 3", "description": "Divide two numbers. \u00a0Divisors, dividends, and quotients can include decimals written to the tenths or hundredths place. \u00a0", "basepoints": 10.0, "slug": "dividing_decimals_3", "kind": "Exercise", "name": "dividing_decimals_3", "seconds_per_fast_problem": 4.0, "prerequisites": ["dividing_decimals_2"], "exercise_id": "dividing_decimals_3"}, "dividing_decimals_2": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/dividing-decimals-pre-alg/dividing_decimals_2/", "id": "dividing_decimals_2", "display_name": "Dividing decimals 2", "title": "Dividing decimals 2", "description": "Divide a whole number by a number written to the tenths or hundredths place. \u00a0Quotients may include decimals.", "basepoints": 17.0, "slug": "dividing_decimals_2", "kind": "Exercise", "name": "dividing_decimals_2", "seconds_per_fast_problem": 11.0, "prerequisites": ["dividing_decimals_1", "division_3"], "exercise_id": "dividing_decimals_2"}, "dividing_decimals_1": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/dividing-decimals-pre-alg/dividing_decimals_1/", "id": "dividing_decimals_1", "display_name": "Dividing decimals 1", "title": "Dividing decimals 1", "description": "Divide a whole number by a number written to the tenths or hundredths place. \u00a0Quotients are whole numbers. \u00a0", "basepoints": 15.0, "slug": "dividing_decimals_1", "kind": "Exercise", "name": "dividing_decimals_1", "seconds_per_fast_problem": 8.0, "prerequisites": ["dividing_decimals_0.5"], "exercise_id": "dividing_decimals_1"}, "dna-technology--passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/dna-technology-passage-1/", "id": "dna-technology--passage-1", "display_name": "Recombinant DNA technology", "title": "Recombinant DNA technology", "all_assessment_items": ["{\"sha\": \"cc24f9150f144d303d4283b3f681b653fae6b8ae\", \"live\": true, \"id\": \"x6cea33bdd102592f\"}", "{\"sha\": \"2cb7056aa65d55b2a6db71094325df6d34d09fea\", \"live\": true, \"id\": \"x759329eccd83b55c\"}", "{\"sha\": \"3b833fe79c32b721f9d00bb2a76f89f2b01de2ef\", \"live\": true, \"id\": \"x15111530291103a3\"}", "{\"sha\": \"fb4c2d5196a695f6f4e69c86e0ffdbf26c88ee33\", \"live\": true, \"id\": \"x064cc8a34bcccfd6\"}", "{\"sha\": \"9de1488216ce8fa2fedc0b11774f5d0209dd6449\", \"live\": true, \"id\": \"x6dd7a6758fb34b1c\"}"], "description": "DNA Technology passage 1", "basepoints": 10.0, "slug": "dna-technology-passage-1", "kind": "Exercise", "name": "dna-technology--passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "dna-technology--passage-1"}, "sat-math-level-1-part-2": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-math-level-1-part-2/", "id": "sat-math-level-1-part-2", "display_name": "SAT Math: Level 1 - Quiz 2", "title": "SAT Math: Level 1 - Quiz 2", "all_assessment_items": ["{\"sha\": \"cb7c995e305f838ccd93c0f84463c8e5ad93386f\", \"live\": true, \"id\": \"x831518ea4621a7c6\"}", "{\"sha\": \"e0fbab65d2c58d3cc35e6d85b46036e64dba2e14\", \"live\": true, \"id\": \"x615b00f4da51bf54\"}", "{\"sha\": \"f4f6c152ef4a17471e7ad81a1ccd64ee3ad224f2\", \"live\": true, \"id\": \"x8aff7a084c998ea5\"}", "{\"sha\": \"297e53daab7edc8be3045e096c3d7fe3576a56bf\", \"live\": true, \"id\": \"xbbab878c6c2ac04e\"}", "{\"sha\": \"41f691d6c0702012910344bf3cbe6b424a4e3ed8\", \"live\": true, \"id\": \"x91d84beaa7df7f42\"}", "{\"sha\": \"4855759b07e8908eac2702520121d894488103f5\", \"live\": true, \"id\": \"x33604aa7101865cc\"}", "{\"sha\": \"37f5b5407430a07a137e113460898f048cdb4776\", \"live\": true, \"id\": \"x13509875d7b17fa7\"}", "{\"sha\": \"3ae2ae36540f9548999e0bb40c463ff309f75449\", \"live\": true, \"id\": \"xf3fe651bf40f03af\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-1-part-2", "kind": "Exercise", "name": "sat-math-level-1-part-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-1-part-2"}, "biological-adaptations-in-response-to-physical-constraints--the-case-of-atlantic-salmon": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/biological-adaptations-in-response-to-physical-constraints-the-case-of-atlantic-salmon/", "id": "biological-adaptations-in-response-to-physical-constraints--the-case-of-atlantic-salmon", "display_name": "Biological adaptations in response to physical constraints: the case of Atlantic salmon", "title": "Biological adaptations in response to physical constraints: the case of Atlantic salmon", "all_assessment_items": ["{\"sha\": \"10d32225d5786e34573423a11ddf09494d1daa11\", \"live\": true, \"id\": \"xe6e6e121edc9786b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"678f2062c580f7b72735d9608659878134af4fb3\", \"live\": true, \"id\": \"x6bf0bd6d586046ad\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8a283457dbb2a72581db15d18bee71600063772a\", \"live\": true, \"id\": \"xeb939dc95bac507a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87ad259d17a63f9ac40bed5a84afd47b1e704163\", \"live\": true, \"id\": \"xb2da48210595392f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1260ed16630869fbe726eb345701032dbaeb69d0\", \"live\": true, \"id\": \"x12e64d935e0f9063\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to the importance of fluids for the circulation of blood, gas movement, and gas exchange", "basepoints": 10.0, "slug": "biological-adaptations-in-response-to-physical-constraints-the-case-of-atlantic-salmon", "kind": "Exercise", "name": "biological-adaptations-in-response-to-physical-constraints--the-case-of-atlantic-salmon", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "biological-adaptations-in-response-to-physical-constraints--the-case-of-atlantic-salmon"}, "gas-in-a-canister-with-a-piston": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/gas-in-a-canister-with-a-piston/", "id": "gas-in-a-canister-with-a-piston", "display_name": "Heat engines and work", "title": "Heat engines and work", "all_assessment_items": ["{\"sha\": \"033d1c6d863f44b9430eab64c80922a43194944a\", \"live\": true, \"id\": \"x7a6b1cab757cc49b\"}", "{\"sha\": \"b6fc8303d7826dafd66e78fff3109dce18fca568\", \"live\": true, \"id\": \"x27614af575b120d5\"}", "{\"sha\": \"7997e5f647de5012c9f562e947423d35d014a342\", \"live\": true, \"id\": \"x7c9c9efaa72c97fc\"}", "{\"sha\": \"9ecd3cd0cf8d5e1bf22473163f2fb7f65e379759\", \"live\": true, \"id\": \"x2aae58f143d62a25\"}", "{\"sha\": \"16516bf18ef0868d1140597e48faac3be05f4383\", \"live\": true, \"id\": \"x2db1a18d2fac8e5e\"}"], "description": "This passage tests your knowledge on the kinetic molecular theory of gases", "basepoints": 10.0, "slug": "gas-in-a-canister-with-a-piston", "kind": "Exercise", "name": "gas-in-a-canister-with-a-piston", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gas-in-a-canister-with-a-piston"}, "stoichiometry-i-passage--properties-of-acetic-acid": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/stoichiometry-i-passage-properties-of-acetic-acid/", "id": "stoichiometry-i-passage--properties-of-acetic-acid", "display_name": "Stoichiometry and the properties of acetic acid", "title": "Stoichiometry and the properties of acetic acid", "all_assessment_items": ["{\"sha\": \"a875328cf71fc5521fb6a107e39f7ae20b4ac160\", \"live\": true, \"id\": \"xc0f525c8815470fb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2c289fbee6510a7f5dbfbb1111277be8aa4e15d0\", \"live\": true, \"id\": \"x37efbf6c3613b5f6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"73e213a169d00f3a19cd6d88e750405ced2eeafa\", \"live\": true, \"id\": \"x7dc1c66be3f5df47\", \"perseus_api_major_version\": 3}", "{\"sha\": \"628e19472701c4fc7a9fd1238435f7d80cc32f05\", \"live\": true, \"id\": \"xffe049ecf7d15b48\", \"perseus_api_major_version\": 3}", "{\"sha\": \"fd5d7c1c9c3db04417344a6a147cf14fc6fbd79b\", \"live\": true, \"id\": \"x4f3734cfda237f88\", \"perseus_api_major_version\": 3}"], "description": "Stoichiometry I Passage: Properties of acetic acid", "basepoints": 10.0, "slug": "stoichiometry-i-passage-properties-of-acetic-acid", "kind": "Exercise", "name": "stoichiometry-i-passage--properties-of-acetic-acid", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "stoichiometry-i-passage--properties-of-acetic-acid"}, "exponents_2": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/exponents_2/", "id": "exponents_2", "display_name": "Positive and negative exponents", "title": "Positive and negative exponents", "description": "Practice computing numbers raised to positive and negative integer exponents. Bases may be fractions.", "basepoints": 15.0, "slug": "exponents_2", "kind": "Exercise", "name": "exponents_2", "seconds_per_fast_problem": 8.0, "prerequisites": ["exponents_1.5"], "exercise_id": "exponents_2"}, "exponents_3": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/exponents_3/", "id": "exponents_3", "display_name": "Fractional exponents", "title": "Fractional exponents", "description": "Fractional and integer bases raised to positive and negative fractional exponents.", "basepoints": 17.0, "slug": "exponents_3", "kind": "Exercise", "name": "exponents_3", "seconds_per_fast_problem": 10.0, "prerequisites": ["manipulating-fractional-exponents"], "exercise_id": "exponents_3"}, "exponents_1": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/world-of-exponents-college-readiness/exponents_1/", "id": "exponents_1", "display_name": "Whole number exponents with integer bases 2", "title": "Whole number exponents with integer bases 2", "description": "Practice raising integers to whole number powers.", "basepoints": 13.0, "slug": "exponents_1", "kind": "Exercise", "name": "exponents_1", "seconds_per_fast_problem": 6.0, "prerequisites": ["exponents_1.5"], "exercise_id": "exponents_1"}, "expression-value-intuition": {"uses_assessment_items": true, "id": "expression-value-intuition", "display_name": "Expression value intuition", "title": "Expression value intuition", "all_assessment_items": ["{\"sha\": \"ae68edd969d0ed5b4f3e0cabd120f0be6f7c728c\", \"live\": true, \"id\": \"xceab706ed178814f\"}", "{\"sha\": \"4323076f4bf80ce3273a10ca83765a46f14dfbf5\", \"live\": true, \"id\": \"xf9118aa6a4c8d7aa\"}", "{\"sha\": \"246d7f93b0e0afcdd043a4ac36f880d7568bf686\", \"live\": true, \"id\": \"xf64bec5bb3a1fbf1\"}", "{\"sha\": \"6d834125417313826beb8bf7889b15703d11736a\", \"live\": true, \"id\": \"x0f60b0362f62279f\"}", "{\"sha\": \"6d513d4db96984c006505a3ebe6153e887865dfb\", \"live\": true, \"id\": \"x2476238753b7db50\"}", "{\"sha\": \"3ea3c2f8a5087a38bba29a3ffd78d9d41023236e\", \"live\": true, \"id\": \"xce74bc758c4e7faa\"}", "{\"sha\": \"1e1700195c076dda916744dfaaff0db787ec9153\", \"live\": true, \"id\": \"x823b9dd91195b64a\"}", "{\"sha\": \"3e957f4d805100b3e1df77bf324f183b23919573\", \"live\": true, \"id\": \"x2e26899b477e7c64\"}", "{\"sha\": \"2d990b25fb9469ce4b6a4e301011b2dfc4dae916\", \"live\": true, \"id\": \"x51b4474fe0fc798e\"}", "{\"sha\": \"2bae585031885e2d9ae0cbc6db6ec5a51ac7d49e\", \"live\": true, \"id\": \"x47996685e5a71058\"}", "{\"sha\": \"d64eb920538a1f3ab3830131ed2b1428c3a374bd\", \"live\": true, \"id\": \"x37a45992a00cd9be\"}", "{\"sha\": \"97e8bc8240d64a44ab50ed96c06301d93c476d52\", \"live\": true, \"id\": \"x245a8032cff2e5fa\"}", "{\"sha\": \"d2604c8a345c8d1bff2fed1bd399901cb4da996c\", \"live\": true, \"id\": \"xcbdb912a68809f11\"}", "{\"sha\": \"66187c6194eeb7bcab65e9da2ab741543ba58cae\", \"live\": true, \"id\": \"x617890d10c5e126e\"}", "{\"sha\": \"f25b8fab8a9a32c9e761f4f2a4d618b7e885bfbb\", \"live\": true, \"id\": \"xd24ffe820d82be73\"}", "{\"sha\": \"10461a0fe4cd3b28b4223c6101828b07abe0cb16\", \"live\": true, \"id\": \"xf749900ea861ff38\"}", "{\"sha\": \"10ea95ed6877f004ea44868e0e0916de7c57f4d6\", \"live\": true, \"id\": \"x2e06dfe416595e71\"}", "{\"sha\": \"f94600c7f4045a180681674a1c035e65ef4606e1\", \"live\": true, \"id\": \"xc47b0d1bc5f967a7\"}", "{\"sha\": \"0b1579da0f91f7ce47c69f6515e180f21be09bc2\", \"live\": true, \"id\": \"x8fdf4fc9e182e9d4\"}", "{\"sha\": \"f996722d98539aadba3ceb60bf0eaf773a40ebb2\", \"live\": true, \"id\": \"xbfcfcbc7e3fd0393\"}"], "description": "Practice thinking about how the values of expressions change as the values of their variables change.", "basepoints": 10.0, "path": "expression-value-intuition/", "slug": "expression-value-intuition", "kind": "Exercise", "name": "expression-value-intuition", "seconds_per_fast_problem": 4.0, "prerequisites": ["evaluating_expressions_1"], "exercise_id": "expression-value-intuition"}, "exponents_4": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/exponents_4/", "id": "exponents_4", "display_name": "Fractional exponents 2", "title": "Fractional exponents 2", "description": "Fractional bases raised to fractional exponents with non-1 numerators.", "basepoints": 22.0, "slug": "exponents_4", "kind": "Exercise", "name": "exponents_4", "seconds_per_fast_problem": 21.0, "prerequisites": ["exponents_3"], "exercise_id": "exponents_4"}, "scaling_vectors": {"uses_assessment_items": true, "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/scaling_vectors/", "id": "scaling_vectors", "display_name": "Scaling vectors", "title": "Scaling vectors", "all_assessment_items": ["{\"sha\": \"ee3dd620b4b59c3fc8189bd1377a962f48900ab9\", \"live\": true, \"id\": \"xb049510a1ea30125\"}", "{\"sha\": \"1815184c317799d48bc4c280aa4d16d4b441fca5\", \"live\": true, \"id\": \"xa5d6521a22a1f7c2\"}", "{\"sha\": \"6d9b40bf3d91b59c11d505820a228f4076246028\", \"live\": true, \"id\": \"x751781947e95a26d\"}", "{\"sha\": \"8b526f6bcd0ebf27a0e1f2b41b4f6a0c863a5932\", \"live\": true, \"id\": \"x1e547def5b6d8f09\"}", "{\"sha\": \"6f0100ba30bd7e5a81706a79e6fb6941b7bd1373\", \"live\": true, \"id\": \"xccab9ee77a1ff8cd\"}", "{\"sha\": \"5193019c5c3ccf88f40b07d43700327c2dc21665\", \"live\": true, \"id\": \"x51a28c5975e987b8\"}", "{\"sha\": \"cbee1661e6ca729187976cd9ef287c076689a9f1\", \"live\": true, \"id\": \"xf8714a70e44d206c\"}", "{\"sha\": \"4b8b2aecdc1034e6e5162b7079cbe19c545727ca\", \"live\": true, \"id\": \"xc4b0762f0d59a425\"}", "{\"sha\": \"e5253ccb8119fa6e0d6fec3c8cc8d15ab969a30c\", \"live\": true, \"id\": \"x761287ca98b2f321\"}", "{\"sha\": \"9b6918690129bf909a613b5423551d2c0703603f\", \"live\": true, \"id\": \"xa403e59e523a0ad6\"}", "{\"sha\": \"7a3eff07cda9b63b7b6bc517015b7449f738e250\", \"live\": true, \"id\": \"xf6298f6191c3a513\"}", "{\"sha\": \"eac6ba87eff7c55367a64467691e50543c283772\", \"live\": true, \"id\": \"x25667427040d553a\"}", "{\"sha\": \"2b0c28b8868578a8caa35be0b5cfe6e6676cae5a\", \"live\": true, \"id\": \"x6f9d62e1cc12868a\"}", "{\"sha\": \"afe47216f05e93e927e9f21653459906a1811a3f\", \"live\": true, \"id\": \"x540f7370e971523f\"}", "{\"sha\": \"3b43d2f1f8b20688da687f4040dd539fc46b7fcf\", \"live\": true, \"id\": \"x35245ac83f8adadc\"}", "{\"sha\": \"981035a629d626e67305fadef776dca660a6f5a5\", \"live\": true, \"id\": \"x5fdf3d4e6be98a25\"}", "{\"sha\": \"85ed3832b5f4f294ffe3f3b4e7c0a0138bc08927\", \"live\": true, \"id\": \"x93440e1917845d28\"}", "{\"sha\": \"30cd1d6ae9ddeb4ec08cc2e652c9ecc40aecffc7\", \"live\": true, \"id\": \"x8a16fd7361266efa\"}", "{\"sha\": \"30f82f7f6e8e91f19acfcbceff5d495a94091c04\", \"live\": true, \"id\": \"x3a84bde61e93a011\"}", "{\"sha\": \"0d990099146b67c02bc43156195307eaca3399ab\", \"live\": true, \"id\": \"xc0376300e408098d\"}", "{\"sha\": \"1e4fff54c344845c11d886c7e8e085afb1288ad4\", \"live\": true, \"id\": \"x8e4c977ff6957d6a\"}", "{\"sha\": \"a3fe4be44267be5ce763c2c6b838325a1482e920\", \"live\": true, \"id\": \"x050c76a227a54b4e\"}", "{\"sha\": \"1626cf6446eeaf3bf186294d267a421d0c13288b\", \"live\": true, \"id\": \"x2a199d2db3ee6917\"}", "{\"sha\": \"4ea46b756755ff29bf4bd5bdde60265c67b8bba6\", \"live\": true, \"id\": \"x5c1543e5a82ff9a1\"}", "{\"sha\": \"f738680c6fe9c511e34ed5cce0eb95ddf4015533\", \"live\": true, \"id\": \"x61eb0e5eedcd9b78\"}", "{\"sha\": \"bd533c8208bed33516db26e0f1ef4c4c371a99a5\", \"live\": true, \"id\": \"xf8b11f5594003440\"}", "{\"sha\": \"9fd211252d90a07ab4caa106f03b0546cd427fe0\", \"live\": true, \"id\": \"x157c3b4c48ff6d20\"}", "{\"sha\": \"88c7308e5a143a8d49aa6090b1f8d76f4189bf69\", \"live\": true, \"id\": \"xb4bab21a9c939207\"}", "{\"sha\": \"ce8b9a28974594e647efb6bd195296e4c7f89803\", \"live\": true, \"id\": \"x56b1ec63ec783392\"}", "{\"sha\": \"56460fc515e84af533f665278bf672e3dbfebc15\", \"live\": true, \"id\": \"x960e63387245c2dd\"}", "{\"sha\": \"a9bb3ff8b596b260755acc68b2ec7bdce93ee1c5\", \"live\": true, \"id\": \"x63e3c1671cbbe8e1\"}", "{\"sha\": \"a98bf1aa5457f91bd1c8520126cc3155c6afddf4\", \"live\": true, \"id\": \"x3922a9c254e8176b\"}", "{\"sha\": \"8a3abfcfcc8321d7da0af524a44c4773c63d44d1\", \"live\": true, \"id\": \"xfb1a52e53c61eb85\"}", "{\"sha\": \"17a225e25f8d715be87bda1d4338a186d6f9e8f0\", \"live\": true, \"id\": \"x3317d3ac9f3f9d0e\"}", "{\"sha\": \"fc5d95c1058209094e4352919fd4de25717c99fe\", \"live\": true, \"id\": \"x9e2641a676673c67\"}"], "description": "", "basepoints": 14.0, "slug": "scaling_vectors", "kind": "Exercise", "name": "scaling_vectors", "seconds_per_fast_problem": 7.0, "prerequisites": ["recognizing-vector-quantities"], "exercise_id": "scaling_vectors"}, "versailles-quiz": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/france/versailles-quiz/", "id": "versailles-quiz", "display_name": "Versailles (quiz)", "title": "Versailles (quiz)", "all_assessment_items": ["{\"sha\": \"022afc140a7e6979f72f2158613e32dda629b9e3\", \"live\": true, \"id\": \"x7d8d51eb62124797\"}", "{\"sha\": \"cea50c985b6f4c54da676fc5ebb73fe8947b0d73\", \"live\": true, \"id\": \"x63e6f4a33566ad31\"}", "{\"sha\": \"26f793f5deb82a3e00c64251ec80ef046aff99c6\", \"live\": true, \"id\": \"x115559d65b69d32c\"}", "{\"sha\": \"c9f51a008efaf91b2751ef9bfd5ee54b3d8d1382\", \"live\": true, \"id\": \"x393687e8e09a306f\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "versailles-quiz", "kind": "Exercise", "name": "versailles-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "versailles-quiz"}, "measuring-area-with-unit-squares": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/measurement/area-basics/measuring-area-with-unit-squares/", "id": "measuring-area-with-unit-squares", "display_name": "Measuring area with unit squares", "title": "Measuring area with unit squares", "all_assessment_items": ["{\"sha\": \"4bc7b0a24698b894570a241033f5124c0f63906e\", \"live\": true, \"id\": \"x2dc3cb7a84deabfb\"}", "{\"sha\": \"7ef3940491d879f56308a2e20fe71d30a63c5d31\", \"live\": true, \"id\": \"xa6329d0d48e38f81\"}", "{\"sha\": \"887ed1f55bfbf17da5e26284421eb69c37f78d68\", \"live\": true, \"id\": \"xdc0d9758a220c64a\"}", "{\"sha\": \"4161ae9571ef7eb429e8057487c05c950331a12e\", \"live\": true, \"id\": \"x2a81b9307a18aa3b\"}", "{\"sha\": \"79b27a9b43aad678f64aad058a19a4451fd1233f\", \"live\": true, \"id\": \"xe88e1a3069750a55\"}", "{\"sha\": \"42e96c0bb1a3427b89a4fd1486e60bc31656fb65\", \"live\": true, \"id\": \"x2b1bfad0e2212dd6\"}", "{\"sha\": \"357a30fc1f839f953f74f290cd172a6b8c9a6420\", \"live\": true, \"id\": \"x51fb333ef3bf3ef0\"}", "{\"sha\": \"78126b8a5ce44d190c0803925d0b5b58f57d499f\", \"live\": true, \"id\": \"xfb164f102d795ad5\"}", "{\"sha\": \"fa522633b5a27396320de0b39ecc188aebf9e78c\", \"live\": true, \"id\": \"x464d6c1f6b37157f\"}", "{\"sha\": \"9aef5459d773035dc46246957bad8ed947a78ecc\", \"live\": true, \"id\": \"x1880472f627aa012\"}", "{\"sha\": \"650b091d387121de8a1e7b8e5a3b9b50ae4a58c1\", \"live\": true, \"id\": \"x4bb96ef9a72d4135\"}", "{\"sha\": \"e9a4f07e30f43028c49819471198a2e8f3b81d6c\", \"live\": true, \"id\": \"x0557cb0f96585cff\"}", "{\"sha\": \"e65d80932b7546edd857dedbb7bec1f55d87237c\", \"live\": true, \"id\": \"x1ae7c49c257035c1\"}", "{\"sha\": \"50fe3ddd7a57000e31e122ae6b27797cc1a0d420\", \"live\": true, \"id\": \"x9b3448aac72a5766\"}", "{\"sha\": \"0767bbd28a3a913f78b3337611676b7d45b79326\", \"live\": true, \"id\": \"x47e4338a6ee49d18\"}", "{\"sha\": \"3fe12e866d5bb0d718025b2f45eb80957273a893\", \"live\": true, \"id\": \"xf70d8222d6ce0fb4\"}", "{\"sha\": \"4139fa58aefaab4bf95e63b8ee3e284130580e0d\", \"live\": true, \"id\": \"xb47dd80e4cc72faa\"}", "{\"sha\": \"78818bcea8ef181dd916f32a6ce45291f89d98b2\", \"live\": true, \"id\": \"xf0ee149b8f553592\"}", "{\"sha\": \"c03abeebc3dc1aae5c1bd523872ea36f4aeab37a\", \"live\": true, \"id\": \"xb03de3153d82d31b\"}", "{\"sha\": \"3fff1e1bb73d9581eb22177d2643df8d3b2f393a\", \"live\": true, \"id\": \"xc2ace2544890a5cb\"}"], "description": "Count unit squares that cover irregular shaped figures to find area. \u00a0", "basepoints": 10.0, "slug": "measuring-area-with-unit-squares", "kind": "Exercise", "name": "measuring-area-with-unit-squares", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-area"], "exercise_id": "measuring-area-with-unit-squares"}, "understanding-social-structures-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/society-and-culture/social-structures/understanding-social-structures-questions/", "id": "understanding-social-structures-questions", "display_name": "Understanding social structures questions", "title": "Understanding social structures questions", "all_assessment_items": ["{\"sha\": \"5370e2bcfd7d125e6f8ad7dda1c7b7a7b148ad5a\", \"live\": true, \"id\": \"xbbd520ad7e78affe\"}", "{\"sha\": \"aad701e6e58d1584305e10191d4534b51efa67fd\", \"live\": true, \"id\": \"x3ea73c532b989ec6\"}", "{\"sha\": \"9b73d7b195f072fb7f2d5251a6aab7405d6f3af8\", \"live\": true, \"id\": \"x16fec83217c1928d\"}", "{\"sha\": \"44557cb079388a1cda5fa8e09da80e1a17694e9f\", \"live\": true, \"id\": \"x8f8bfb06d90f47f4\"}", "{\"sha\": \"be1e573e938d720688ddcd2f97aa5e4d9c36eac5\", \"live\": true, \"id\": \"xd5059b85c860ed05\"}", "{\"sha\": \"89a78c7633bab249c83beb29a623cbe68f3f5e9f\", \"live\": true, \"id\": \"x0373a2a08aab06fb\"}", "{\"sha\": \"9d7c79b725943d898c4748df0f23dd4ed1dff78b\", \"live\": true, \"id\": \"xc1b7f9d0386fcb76\"}", "{\"sha\": \"7a33d22270e74ab913b7478f474431dbb441ff31\", \"live\": true, \"id\": \"xd5ca4e1f92ee5213\"}", "{\"sha\": \"14e5d7864e38dbeefaec0e71cc7aa61ff3db1c8a\", \"live\": true, \"id\": \"x7a625888fa3a2005\"}", "{\"sha\": \"3379ea97cb5acf34ef75f98efc54a05a27aaf616\", \"live\": true, \"id\": \"x9bba6c0dbd1ed5e1\"}"], "description": "Understanding social structures questions", "basepoints": 10.0, "slug": "understanding-social-structures-questions", "kind": "Exercise", "name": "understanding-social-structures-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "understanding-social-structures-questions"}, "comparing-numbers-through-10": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-comparing-numbers/comparing-numbers-through-10/", "id": "comparing-numbers-through-10", "display_name": "Less and greater", "title": "Less and greater", "all_assessment_items": ["{\"sha\": \"a793b2385c68b92114b4058a1d6479bf18eef189\", \"live\": true, \"id\": \"x072e6f1af22b78ca\"}", "{\"sha\": \"581d08fbf00a087a5c0c1fbe8780c88e40666809\", \"live\": true, \"id\": \"xf28120a527f91357\"}", "{\"sha\": \"1fde3eef58fb6d3690bc16b8f3d24ba03a0ecfee\", \"live\": true, \"id\": \"xaa54e91058c7a897\"}", "{\"sha\": \"0b3459f5ee24c6077607d5d58efe18199a78dffe\", \"live\": true, \"id\": \"x2b7d6fa748a5e116\"}", "{\"sha\": \"4d3faac6d8e2ca620a164f3a2c3aae416c28ed47\", \"live\": true, \"id\": \"xaffdd2145814c92a\"}", "{\"sha\": \"5d14ee81e1c7385b0da7344837d3247e3a7bd6b5\", \"live\": true, \"id\": \"x9baf033f6ae48bdb\"}", "{\"sha\": \"c9fd38f15dcd6b234cc12098d336562a889c3654\", \"live\": true, \"id\": \"x98a6cd37ee80a51d\"}", "{\"sha\": \"adccac9854568aaeb4064ab843ac326570ee8f48\", \"live\": true, \"id\": \"xa3c5f78bc37758c2\"}", "{\"sha\": \"5a63069314ebff0bd4113f1118d827cacc015b32\", \"live\": true, \"id\": \"xe38604e1ecaf10f2\"}", "{\"sha\": \"2dc9c93ce09237e8bd8e82281de628072db7ba52\", \"live\": true, \"id\": \"xdef5b63edb727c46\"}", "{\"sha\": \"f3dbe374a6d6bd310806fccb3bccc4ab2c4ff247\", \"live\": true, \"id\": \"x76c0c2e73c3e7d34\"}", "{\"sha\": \"82d41018dddd0051fc217ddd0d21cbcb48e7056b\", \"live\": true, \"id\": \"xc8e3096ba6e24c1f\"}", "{\"sha\": \"6c689cc5cbb38e34da0206157b94e6110d9ad0ed\", \"live\": true, \"id\": \"x1db6eebde6dd38a5\"}", "{\"sha\": \"7ca3e145fa050c57bf87841833040320e3aa9cd1\", \"live\": true, \"id\": \"xa6c977808999b6d7\"}", "{\"sha\": \"4858451fae71c6c7a780ff3547f6daf192156c57\", \"live\": true, \"id\": \"xea7189fb111efb5b\"}", "{\"sha\": \"ef94581f022a67dc8cec7dbf9776cc36cd6de64a\", \"live\": true, \"id\": \"x6eaa6ced72cc9832\"}", "{\"sha\": \"f070e2cbc230fad65aa21778e3b128b21d992e99\", \"live\": true, \"id\": \"x215d914d5e654d97\"}", "{\"sha\": \"f4c402521353b7a2c106ff4c5f156a2ac63644d9\", \"live\": true, \"id\": \"x8ad1ce7fcf12a441\"}", "{\"sha\": \"942bb9a330e5b087574fdc04023a2290fd705443\", \"live\": true, \"id\": \"x8f16b42fd44e836c\"}", "{\"sha\": \"9caf4b2dfc064eb1d31906b9f0e750726e530c89\", \"live\": true, \"id\": \"x5ce68338bc2ac03c\"}", "{\"sha\": \"7a161e3e8b5925e421b41dbb9c2c6b7c4d1d4103\", \"live\": true, \"id\": \"xe1bfcf72a4fca37e\"}"], "description": "Practice saying if one number is less than or greater than another number. Numbers in these problems are between 0 and 10.", "basepoints": 10.0, "slug": "comparing-numbers-through-10", "kind": "Exercise", "name": "comparing-numbers-through-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["counting-out-1-20-objects"], "exercise_id": "comparing-numbers-through-10"}, "adding-negative-numbers-word-problems": {"uses_assessment_items": true, "id": "adding-negative-numbers-word-problems", "display_name": "Negative number addition and subtraction: word problems", "title": "Negative number addition and subtraction: word problems", "all_assessment_items": ["{\"sha\": \"fae951946d70a1d8a1f521a0f1d85ee403ac3c5b\", \"live\": true, \"id\": \"xecaf874a2ec4b34d\"}", "{\"sha\": \"2de3afad5443177b8fc2d067a6b886af4b81ce96\", \"live\": true, \"id\": \"x5dd38f08fec53a2c\"}", "{\"sha\": \"71836f092649a28bd23960699dac50cf3a22b151\", \"live\": true, \"id\": \"x6fd2d4a68b27f4ec\"}", "{\"sha\": \"3b4bb1016d207bd7fa731f686c4a19c7686ce395\", \"live\": true, \"id\": \"x71a2b817c6c3980b\"}", "{\"sha\": \"fa8fab115a25bdd785c55a618e851fef9ce384b4\", \"live\": true, \"id\": \"x7f4b544484c2e75f\"}", "{\"sha\": \"f9d84bd956e481bd22d36b3787b776a89b40b4a6\", \"live\": true, \"id\": \"x35d8642ae657629e\"}", "{\"sha\": \"82e7834da61910ee1d884334b23c8eaf4315847d\", \"live\": true, \"id\": \"x58f084176e912d99\"}", "{\"sha\": \"d24328e6b8e16a2d6d5461ce46611064d6a114e0\", \"live\": true, \"id\": \"x5c6bb3d16238a296\"}", "{\"sha\": \"ac6b24beadd03700b912b6d5b242b8a8285d08eb\", \"live\": true, \"id\": \"x54e9c4ea27abd00b\"}", "{\"sha\": \"95ed0897154a61e17a1eaf0d7b742d85e80f3a2b\", \"live\": true, \"id\": \"x02e31dea734097dd\"}", "{\"sha\": \"e380561e878a4bf795367eeab65238cf4420566a\", \"live\": true, \"id\": \"x23a6a4927189cdcd\"}", "{\"sha\": \"d6724bccb10ba278f29219ebb659b231fd1ee5d5\", \"live\": true, \"id\": \"xc555eb224b392684\"}", "{\"sha\": \"e0d5e22b3902853d6ca4c638110464bb19e84a0d\", \"live\": true, \"id\": \"x25983a4d1bbe62be\"}", "{\"sha\": \"07b91fc9a02c14894cdbffebff3cbb674310112c\", \"live\": true, \"id\": \"xeeedaadf7b21cd44\"}", "{\"sha\": \"63a1745520121a29a08866730dca5d45ffb6dbab\", \"live\": true, \"id\": \"x1a2f2798426e2051\"}", "{\"sha\": \"bd39bf0f93b9a514fc0331ed0abba8c0a55e3985\", \"live\": true, \"id\": \"xefe2a0544511992b\"}", "{\"sha\": \"b8cf6445dbd5c7112f59fd5a152ae9fecef873e8\", \"live\": true, \"id\": \"x290bdc214e68f7ea\"}"], "description": "Practice solving word problems with negative numbers.", "basepoints": 10.0, "path": "adding-negative-numbers-word-problems/", "slug": "adding-negative-numbers-word-problems", "kind": "Exercise", "name": "adding-negative-numbers-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_negative_numbers"], "exercise_id": "adding-negative-numbers-word-problems"}, "quiz-how-did-our-view-of-the-universe-change-": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/big-bang/how-did-big-bang-change/quiz-how-did-our-view-of-the-universe-change-/", "id": "quiz-how-did-our-view-of-the-universe-change-", "display_name": "Quiz: How Did Our Understanding of the Universe Change?", "title": "Quiz: How Did Our Understanding of the Universe Change?", "all_assessment_items": ["{\"sha\": \"731db9abb02c82591464c190544fb618f007190d\", \"live\": true, \"id\": \"xd025f518836bf27c\"}", "{\"sha\": \"7a4b2995a80f04079df97dca9c1bd45858a9fbb9\", \"live\": true, \"id\": \"x105a36473c06d107\"}", "{\"sha\": \"a65a3bb13eb1457102d019b8c541b8065ddaf0f5\", \"live\": true, \"id\": \"x0f5666f0c66fb2d3\"}", "{\"sha\": \"bfdde008bd96cc9cfc327814f8be53a614f1da99\", \"live\": true, \"id\": \"x7ef5e9f4bc99a8b8\"}", "{\"sha\": \"b249a8268d37a51f434a6e1c9b6da235eb3981c0\", \"live\": true, \"id\": \"x6cd9e7d013f90ed3\"}"], "description": "Quiz 2.0", "basepoints": 10.0, "slug": "quiz-how-did-our-view-of-the-universe-change-", "kind": "Exercise", "name": "quiz-how-did-our-view-of-the-universe-change-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-how-did-our-view-of-the-universe-change-"}, "different-wholes": {"uses_assessment_items": true, "id": "different-wholes", "display_name": "Different wholes", "title": "Different wholes", "all_assessment_items": ["{\"sha\": \"55980334c3fcb783dd2b4d0fcba79b9f47725bbd\", \"live\": true, \"id\": \"x2205924638e520cc\"}", "{\"sha\": \"899411c63973372c2968a36c7c6dba4f66e5ff70\", \"live\": true, \"id\": \"xaaf4fc8f03649770\"}", "{\"sha\": \"62388d465621a8cf883cd949886cadf727410aa6\", \"live\": true, \"id\": \"x2d2ce3b1d197ba48\"}", "{\"sha\": \"c7ee22077cd629189e8d157d53e234d9f798a5d8\", \"live\": true, \"id\": \"x59823c67de8f8e1b\"}", "{\"sha\": \"7ac66c24e1208cb19052d3b397e1b8a3ead3ddf2\", \"live\": true, \"id\": \"x8dd5aac685199a4a\"}", "{\"sha\": \"d7ef319eef0d7b93d52b316f070665800ed91932\", \"live\": true, \"id\": \"xf910efef2b1b7ca0\"}", "{\"sha\": \"dca927c169b75b448e32ad7dd9ce662998e22dcf\", \"live\": true, \"id\": \"x641e5114130c3c61\"}", "{\"sha\": \"83e2563593d0c4d1da0509f7d0b390823cf5c64a\", \"live\": true, \"id\": \"x1799add744648669\"}", "{\"sha\": \"1fa1734d51fe7983e293ceaef640e99864667fef\", \"live\": true, \"id\": \"x220e12eaa2ba69a9\"}", "{\"sha\": \"9cae24111366ddd20d6373e6c832ae5561073087\", \"live\": true, \"id\": \"x9df61ef8b6f8aaf1\"}", "{\"sha\": \"32485e9dc33bb2d6474e024490596963ca12bf70\", \"live\": true, \"id\": \"x88b391d8309c6343\"}", "{\"sha\": \"20f7e72aa2ed23fac2e4fbc4dc0b0f8689ff7012\", \"live\": true, \"id\": \"xf916e375050614d0\"}", "{\"sha\": \"8ea2ef58e5c1448583e99602ee0ccd74ef8a4071\", \"live\": true, \"id\": \"x971ff07ea22093a6\"}", "{\"sha\": \"6fe137aaaf23a1564a9ea88c9e1cdf26b125a1a9\", \"live\": true, \"id\": \"x7b8a2a0b47e95b01\"}", "{\"sha\": \"3b13ce044df09aa09ffa73f9969a3d220b0c5234\", \"live\": true, \"id\": \"x3fd3fc5d1512d23d\"}", "{\"sha\": \"59b600c2b2fed172e121aea301f48881c9edf742\", \"live\": true, \"id\": \"xbeeb55160deea841\"}", "{\"sha\": \"6e5efe56fd06123cc5491d26db3b4da7e6b23b77\", \"live\": true, \"id\": \"xb908181245e9f90d\"}", "{\"sha\": \"48030051751e37705b61cf96a88bf44d42700506\", \"live\": true, \"id\": \"xd81877f41e654bfc\"}", "{\"sha\": \"096c7be9f28fda3eb3a3ef5cbc3b28a87f6d688a\", \"live\": true, \"id\": \"x020e1fc7d1d8b789\"}", "{\"sha\": \"e88e22d683911f3be715f5806b99a7bbf1e4fdb1\", \"live\": true, \"id\": \"x118889b936880c9d\"}"], "description": "These practice problems help you understand why you can only compare fractions of the same whole. (Half of a small circle isn't the same as half of a big circle.)", "basepoints": 10.0, "path": "different-wholes/", "slug": "different-wholes", "kind": "Exercise", "name": "different-wholes", "seconds_per_fast_problem": 4.0, "prerequisites": ["equivalent_fractions"], "exercise_id": "different-wholes"}, "preventing-barotrauma-in-deep-sea-divers": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/preventing-barotrauma-in-deep-sea-divers/", "id": "preventing-barotrauma-in-deep-sea-divers", "display_name": "Preventing barotrauma in deep-sea divers", "title": "Preventing barotrauma in deep-sea divers", "all_assessment_items": ["{\"sha\": \"a1b2a2d403cbdf972ed62f995fae24d2904ff102\", \"live\": true, \"id\": \"xc6c7eda43fb8dd54\", \"perseus_api_major_version\": null}", "{\"sha\": \"e0c977a9debe832ab57aafeeba3c9b30dde8ed02\", \"live\": true, \"id\": \"x1a9461d172d97938\", \"perseus_api_major_version\": null}", "{\"sha\": \"b546d1a16d753b3a66c99cb23b945047f1c24534\", \"live\": true, \"id\": \"x07f4c35c66ea036d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"14f200c8e403a20afbbf62788c7d18f3d55ff2da\", \"live\": true, \"id\": \"x9f04a4d70de44623\", \"perseus_api_major_version\": null}", "{\"sha\": \"edee02aa3593d63dd87a4c03162588906fb2c797\", \"live\": true, \"id\": \"x36acf7a0d570e313\", \"perseus_api_major_version\": null}"], "description": "Preventing barotrauma in deep-sea divers", "basepoints": 10.0, "slug": "preventing-barotrauma-in-deep-sea-divers", "kind": "Exercise", "name": "preventing-barotrauma-in-deep-sea-divers", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "preventing-barotrauma-in-deep-sea-divers"}, "-biochemistry-of-a-newly-discovered--pretend--neurotransmitter": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/-biochemistry-of-a-newly-discovered-pretend-neurotransmitter/", "id": "-biochemistry-of-a-newly-discovered--pretend--neurotransmitter", "display_name": "Biochemistry of a newly discovered (pretend) neurotransmitter", "title": "Biochemistry of a newly discovered (pretend) neurotransmitter", "all_assessment_items": ["{\"sha\": \"6a2fcc8698190866cb81697907c20c183b286836\", \"live\": true, \"id\": \"x9a5d6d6c9492cfca\"}", "{\"sha\": \"8b8f589a5715131303f19c2c16ca6c4c2c5c62e8\", \"live\": true, \"id\": \"x51e11bc2cd2e2629\"}", "{\"sha\": \"0c559cd4db8d7c1c1923fae43c1c0faaf53dcdda\", \"live\": true, \"id\": \"xa06c1d3794535014\"}", "{\"sha\": \"5a3070bf6a09a197c4264516b0149425dad0dd4e\", \"live\": true, \"id\": \"x8505d32c8cd723b9\"}", "{\"sha\": \"00679627f7cb9ead32ac41e9ab70aaafc7eee707\", \"live\": true, \"id\": \"x460060b2be11b8f8\"}"], "description": "Questions Related to Controlling Enzyme Activity", "basepoints": 10.0, "slug": "-biochemistry-of-a-newly-discovered-pretend-neurotransmitter", "kind": "Exercise", "name": "-biochemistry-of-a-newly-discovered--pretend--neurotransmitter", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "-biochemistry-of-a-newly-discovered--pretend--neurotransmitter"}, "exekias--amphora-with-ajax-and-achilles-playing-a-game-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/greek-art/greek-pottery/exekias-amphora-with-ajax-and-achilles-playing-a-game-quiz/", "id": "exekias--amphora-with-ajax-and-achilles-playing-a-game-quiz", "display_name": "Exekias, Amphora with Ajax and Achilles Playing a Game (quiz)", "title": "Exekias, Amphora with Ajax and Achilles Playing a Game (quiz)", "all_assessment_items": ["{\"sha\": \"9fdb3fb39db7e7e897d30b52c4ce83cfe967def6\", \"live\": true, \"id\": \"xe245b05dbd934fcb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d7abbccec47db538d814daab09f3cd4bafbbe3c\", \"live\": true, \"id\": \"x25f09d66d48f4326\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4de759ddcf7e519e56e47f8ea23da098ecb30323\", \"live\": true, \"id\": \"x5b5995a2f68e54d4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c132862bcdd71b7a1b37f7d5ab849f2d23e5d6bf\", \"live\": true, \"id\": \"x6bd0b924a42f0236\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"39060949dc95865ba17e1a9d42726a805a772bd3\", \"live\": true, \"id\": \"xe2757140c5ee3807\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "exekias-amphora-with-ajax-and-achilles-playing-a-game-quiz", "kind": "Exercise", "name": "exekias--amphora-with-ajax-and-achilles-playing-a-game-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "exekias--amphora-with-ajax-and-achilles-playing-a-game-quiz"}, "pneumonia": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/pneumonia/", "id": "pneumonia", "display_name": "NCLEX-RN questions on pneumonia 1", "title": "NCLEX-RN questions on pneumonia 1", "all_assessment_items": ["{\"sha\": \"34a19a160dcd59e63ff724d16e365d032e8041a6\", \"live\": true, \"id\": \"xbefe15c98229bda1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9a6572bb7b2054c347cbc3aeb3189390b962a1a0\", \"live\": true, \"id\": \"x50f93591abd01f9b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5637571d8f9c520901015248ff3167c82ce3c38a\", \"live\": true, \"id\": \"xcb679d824eb7fac4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7abd98266deaaa89bc9a1d7527c62c76391d0c2e\", \"live\": true, \"id\": \"xef2dde06d92577bc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d40c25a6cbe76d33af5e9230b8d617fc181d56ac\", \"live\": true, \"id\": \"x7cab052d3f203168\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c9e3076e91d9b3e03a9ab17a37371a0b829539d3\", \"live\": true, \"id\": \"x0b8c56d3224d5443\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e92f1e17325890f64db6d38dfa88d59bdfe6810\", \"live\": true, \"id\": \"x3cc106d02fab5993\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8ab4be45e7511b51bb55d09689f4a2b36b46c18a\", \"live\": true, \"id\": \"x25aacf3e4d466b99\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c1889f781132c51591233052f80bc1c5a5ce81d\", \"live\": true, \"id\": \"xf09a1c7e0e881397\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ce7f22fc1976a20c0d2cd959e1f416667108b23\", \"live\": true, \"id\": \"xa4cd60a9ef975784\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "NCLEX-RN style questions for the pneumonia tutorial", "basepoints": 10.0, "slug": "pneumonia", "kind": "Exercise", "name": "pneumonia", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pneumonia"}, "quiz--earth---the-formation-of-our-solar-system": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/solar-system-and-earth/earth-and-form-solar-system/quiz-earth-the-formation-of-our-solar-system/", "id": "quiz--earth---the-formation-of-our-solar-system", "display_name": "Quiz: Earth & the Formation of Our Solar System", "title": "Quiz: Earth & the Formation of Our Solar System", "all_assessment_items": ["{\"sha\": \"7cac751deaf8276a5a330eedf3f2bba88b3dabd4\", \"live\": true, \"id\": \"xe659390ae50e7b51\"}", "{\"sha\": \"3e9f70a529c2dc440ceafbb034a8911c4f4906e4\", \"live\": true, \"id\": \"x6d510fe37c203461\"}", "{\"sha\": \"1fc1090ade49253194f67a52b19a2d1713d17145\", \"live\": true, \"id\": \"x69e89cf463048365\"}", "{\"sha\": \"64e5023a511b23248e78f17f0ad7c7551105a181\", \"live\": true, \"id\": \"x38fe5cf6b6c5cd77\"}", "{\"sha\": \"8879e6b93048e08071298c6b8411828bdd0c4bad\", \"live\": true, \"id\": \"xa685df270869f660\"}"], "description": "Quiz 4.0", "basepoints": 10.0, "slug": "quiz-earth-the-formation-of-our-solar-system", "kind": "Exercise", "name": "quiz--earth---the-formation-of-our-solar-system", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--earth---the-formation-of-our-solar-system"}, "critical-numbers": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/critical_points_graphing/critical-numbers/", "id": "critical-numbers", "display_name": "Critical numbers", "title": "Critical numbers", "all_assessment_items": ["{\"sha\": \"a28872f17d2f7a72a742aa3c12f3d5d928b72687\", \"live\": true, \"id\": \"x9e3fe351880c525d\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5e5ceeafcfd6d09b2f82f955e77155408d2c069\", \"live\": true, \"id\": \"x6ead158116e370df\", \"perseus_api_major_version\": null}", "{\"sha\": \"eae1085c629e32c3c0adfa7c3a911b13b5cb2c05\", \"live\": true, \"id\": \"x1c102ad9e6269785\", \"perseus_api_major_version\": null}", "{\"sha\": \"848b7b133a2ebe603609c9ca198c9e8d4c87e0b2\", \"live\": true, \"id\": \"xa803c2653e93a7b5\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a7f37bb309ebc4781d1162687def1821a229383\", \"live\": true, \"id\": \"x463b008ab1dfcde2\", \"perseus_api_major_version\": null}", "{\"sha\": \"002c06c1b945eaca2118fd5339d851bb5e9aeed4\", \"live\": true, \"id\": \"x6f72a097cf93544a\", \"perseus_api_major_version\": null}", "{\"sha\": \"5e6bbc57c477a65c1c09e6175f4b7ce877580868\", \"live\": true, \"id\": \"x7460366feaa62fd1\", \"perseus_api_major_version\": null}", "{\"sha\": \"da6bc5d6ec6794f6412da6c8dd85f9abc2e3e0d8\", \"live\": true, \"id\": \"x34ce73202b801cac\", \"perseus_api_major_version\": null}", "{\"sha\": \"282b262184517ecb0b2503704aba5c9fe91daaba\", \"live\": true, \"id\": \"x61405ae805366de7\", \"perseus_api_major_version\": null}", "{\"sha\": \"556dd90d4bf44b3ffcbcd51b759e80a8f673e002\", \"live\": true, \"id\": \"x42dd3d64ae8f5c66\", \"perseus_api_major_version\": null}", "{\"sha\": \"dbdb4837c431ae6fba8cda3c7b63383e8ad21a3f\", \"live\": true, \"id\": \"x4bc9289f957264c8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"791aedec3942a9f11937ecd2e4aa1729a4a72f1b\", \"live\": true, \"id\": \"x4300169282e42b02\", \"perseus_api_major_version\": null}", "{\"sha\": \"480fd4a55f456c0a3090277eb2524add3e274711\", \"live\": true, \"id\": \"x029ad30eb7d87ea9\", \"perseus_api_major_version\": null}", "{\"sha\": \"4f9b8d1d3fde847948b660083bd8106eaa3ca4c3\", \"live\": true, \"id\": \"x688fcce4723de9cf\", \"perseus_api_major_version\": null}", "{\"sha\": \"2eb7a3eeca84eef54bb3756b39efc1b3c1593576\", \"live\": true, \"id\": \"x29f7c46940daca84\", \"perseus_api_major_version\": 3}", "{\"sha\": \"34279d6d219d9c52b3b85024071923909d4b172f\", \"live\": true, \"id\": \"xc35548c92eba05d2\", \"perseus_api_major_version\": null}", "{\"sha\": \"5fd36ca59d982d942a76e97d715c647f64b130f4\", \"live\": true, \"id\": \"xbc74480701aee06b\", \"perseus_api_major_version\": null}", "{\"sha\": \"f19f42f96f34df0174faad8ea2f7112b50f2e21a\", \"live\": true, \"id\": \"x375d21281f81d37b\", \"perseus_api_major_version\": null}", "{\"sha\": \"5609172f2fd1f59097a72ae4f0b6631696fdb19f\", \"live\": true, \"id\": \"x3dd0fc3e7dfacc4a\", \"perseus_api_major_version\": null}", "{\"sha\": \"1b236134b3f9cc1df4afc367a62e3a61b5a37541\", \"live\": true, \"id\": \"xf489930aa3ce6f63\", \"perseus_api_major_version\": null}", "{\"sha\": \"89f051d3e40fa70470d6c17fa7189a74dbea06ae\", \"live\": true, \"id\": \"x8a758adf9254046e\", \"perseus_api_major_version\": null}", "{\"sha\": \"a083a50d9e9690865baee8b0391209c5c34aa596\", \"live\": true, \"id\": \"xeef5ca8975b9bc4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"74d0e23313965ffe31638b5933a6eaf8d06cc346\", \"live\": true, \"id\": \"x0762b67d6e28d2a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"4fef6069c7e026b0c31c46e202fb178316252967\", \"live\": true, \"id\": \"xae7a9202213e3b2c\", \"perseus_api_major_version\": null}", "{\"sha\": \"941ac6f66e889700fd97affc045665c4e935aa81\", \"live\": true, \"id\": \"x46a9dbba06d3f7b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"780dfda7b3a8ade4e8f2e1a02bf6c84ba2c7a7cf\", \"live\": true, \"id\": \"x0048ee91a118dfe9\", \"perseus_api_major_version\": null}", "{\"sha\": \"02619dcdbd6fca29ea0cb69c9212616988988d94\", \"live\": true, \"id\": \"x36b22cbe6308da34\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a56cf0b828691a539860cda129091dc8151f3fa\", \"live\": true, \"id\": \"xfffe1e883a5372e9\", \"perseus_api_major_version\": null}", "{\"sha\": \"9c38359c751e54b27c0c7ec6db79aa0f126bdf2f\", \"live\": true, \"id\": \"x2304f8982df94eb0\", \"perseus_api_major_version\": null}", "{\"sha\": \"2c06e8e495b096485c0afc04ae12fc53428f6201\", \"live\": true, \"id\": \"xb91067d025de1d26\", \"perseus_api_major_version\": null}", "{\"sha\": \"2967982845f834084ff96c5e18f37425a19892fb\", \"live\": true, \"id\": \"xda45cb3e5651b209\", \"perseus_api_major_version\": null}", "{\"sha\": \"70484ffdb674b7d364f02d21eea4aea5da656f1b\", \"live\": true, \"id\": \"x66b5c7c5fbd70305\", \"perseus_api_major_version\": null}", "{\"sha\": \"1ca4453f3711c1766984b9377004877fea7b60d9\", \"live\": true, \"id\": \"x02a26d0d34a87e25\", \"perseus_api_major_version\": null}"], "description": "Find critical numbers and determine whether they are local minima or local maxima.", "basepoints": 10.0, "slug": "critical-numbers", "kind": "Exercise", "name": "critical-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["extreme-values-from-graphs"], "exercise_id": "critical-numbers"}, "virulence-factors-of-listeria-monocytogenes": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/virulence-factors-of-listeria-monocytogenes/", "id": "virulence-factors-of-listeria-monocytogenes", "display_name": "Virulence factors of Listeria monocytogenes", "title": "Virulence factors of Listeria monocytogenes", "all_assessment_items": ["{\"sha\": \"b79fd842323d473ae5718398133c7bfa2e48e637\", \"live\": true, \"id\": \"x751ab7ca06be821f\"}", "{\"sha\": \"b151ac09023a1a47b6ae3e275b3ea919836de35c\", \"live\": true, \"id\": \"xa268ce9c504869aa\"}", "{\"sha\": \"20736ebb4f838d2ac506fb453cc80ae33c64dd7d\", \"live\": true, \"id\": \"xdf24227541229d70\"}", "{\"sha\": \"420088cec746034784024c0a671bd19bdeef1f9b\", \"live\": true, \"id\": \"x09a9efd02c3d7021\"}", "{\"sha\": \"5d3e26e6b4c7d6dd5a77ede02b4e6c43c3dc6a19\", \"live\": true, \"id\": \"xc24da4a8fa819b06\"}"], "description": "Questions related to the growth and genetics of bacteria.", "basepoints": 10.0, "slug": "virulence-factors-of-listeria-monocytogenes", "kind": "Exercise", "name": "virulence-factors-of-listeria-monocytogenes", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "virulence-factors-of-listeria-monocytogenes"}, "exponents-with-negative-fractional-bases": {"uses_assessment_items": true, "id": "exponents-with-negative-fractional-bases", "display_name": "Exponents with negative fractional bases", "title": "Exponents with negative fractional bases", "all_assessment_items": ["{\"sha\": \"91ba3207007e9dccc1d1768361dce4a4bbe5ac2f\", \"live\": true, \"id\": \"xe00e0b1f1e456be9\"}", "{\"sha\": \"4a3b5807e296acaaa7f1be94fca681eb1cb651f3\", \"live\": true, \"id\": \"xf6a6d6b4cbf1163f\"}", "{\"sha\": \"b4424077d66d47c92781b7dcde8302ac324fd2d6\", \"live\": true, \"id\": \"x0102286f0d284c98\"}", "{\"sha\": \"0f0d3e3fd5476fb8e06404e5eed8846a5dc43329\", \"live\": true, \"id\": \"x3a7f714c8a68d8dd\"}", "{\"sha\": \"649963a09886ab7a28ee6d77a4c9cbc3ab45fa06\", \"live\": true, \"id\": \"x592683cfd29f2e0f\"}", "{\"sha\": \"dbe9536077503272c395164a6b196644873797e7\", \"live\": true, \"id\": \"xf6baa1e8a49752d9\"}", "{\"sha\": \"e491b72fbeed1a7314aabe2b91f4061708e516f0\", \"live\": true, \"id\": \"x9bbdbd6005f2967f\"}", "{\"sha\": \"87c92ff381f4a50594d3af26251a922579bdd656\", \"live\": true, \"id\": \"x5358508f5ff89033\"}", "{\"sha\": \"ddeee5239aeb7c2c74a8fd62e28ae14f5c66ac8a\", \"live\": true, \"id\": \"x5cdf11dd7c3595c0\"}", "{\"sha\": \"15e8751f40b2ac750a1096adc31207b6d1c37db3\", \"live\": true, \"id\": \"x3332f4ee105cc6f2\"}", "{\"sha\": \"183c3ec4543de4f6c21dcf25192d114c9576518c\", \"live\": true, \"id\": \"xcc6c88d3fd29e4bb\"}", "{\"sha\": \"562e4a5e8f6c223c3dbb9785080de2a966526747\", \"live\": true, \"id\": \"x7d8b9416ef1695e4\"}", "{\"sha\": \"11730847f738840749192d02879040a04f772540\", \"live\": true, \"id\": \"xc4a1fdb2110926d4\"}", "{\"sha\": \"46e11743e5f3dc23067e7090332c79b24ddd57a4\", \"live\": true, \"id\": \"xc080c024dc47e73d\"}", "{\"sha\": \"39ebacc9c4cd7449949331161271cdb13a124ba6\", \"live\": true, \"id\": \"xf232c2868fdc41e5\"}", "{\"sha\": \"c7086e77c926a559d681e182e44d54087a75a07a\", \"live\": true, \"id\": \"x09ab22b8a00ee7b1\"}", "{\"sha\": \"f82a81e5436c41662ed85e4d7a763edfe44f7aab\", \"live\": true, \"id\": \"xcd6a9f78742b33b4\"}", "{\"sha\": \"75f6b7f9d7788b85f7bc4e87fdc56d8d16b53f10\", \"live\": true, \"id\": \"x920ec90ab7c815d4\"}", "{\"sha\": \"9f93b7728a158939a9abc049fa2b3c0582b89a7e\", \"live\": true, \"id\": \"x343bcc09fb1ef80b\"}", "{\"sha\": \"cba05ded594dfb0148c1d9c469ca9ccb5c376b9a\", \"live\": true, \"id\": \"x49bb3dbc8d9a3265\"}", "{\"sha\": \"535563470c6ae08de277a8fea455a658dc467b2d\", \"live\": true, \"id\": \"x48b0ad54d686709d\"}", "{\"sha\": \"00c4ad31768eb17401c973499020274c0c3ee2df\", \"live\": true, \"id\": \"x4a4a88e8b6bfd33d\"}", "{\"sha\": \"cbc4702222304d9c5934ec23fe7ec05d833b9845\", \"live\": true, \"id\": \"xcbc1d281274634db\"}", "{\"sha\": \"efc3a44282ad39b78c0f21d7250415a244f466ad\", \"live\": true, \"id\": \"x44162634e9d23e8e\"}", "{\"sha\": \"f0cd6d304d999d572f1e9897fba5411597ec04a2\", \"live\": true, \"id\": \"x893487e26ee26bd6\"}", "{\"sha\": \"79f00d366ec5b260cd4d3e515c61edfb522b42aa\", \"live\": true, \"id\": \"x1815ef2efeca757a\"}", "{\"sha\": \"c7c48658f3cb83a088aa49071b449e8f1ad3c503\", \"live\": true, \"id\": \"xfc6e400ae23d9f15\"}", "{\"sha\": \"155e94e759e8b92cdecf85939e8e68c759fdb35a\", \"live\": true, \"id\": \"x7f2d7412feb25a58\"}", "{\"sha\": \"5a0242ff0fff7983931ca049fde6e6ffb9ca452c\", \"live\": true, \"id\": \"x5506b10ec2fb02d2\"}", "{\"sha\": \"e853188b909aa4d8ccdf35c2df5becd109426683\", \"live\": true, \"id\": \"x24f2943b4b91ea74\"}"], "description": "Practice raising fractions to whole number powers. Fractions in these problems may be positive or negative.", "basepoints": 10.0, "path": "exponents-with-negative-fractional-bases/", "slug": "exponents-with-negative-fractional-bases", "kind": "Exercise", "name": "exponents-with-negative-fractional-bases", "seconds_per_fast_problem": 4.0, "prerequisites": ["exponents_1.5"], "exercise_id": "exponents-with-negative-fractional-bases"}, "theories-of-language-acquisition": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/theories-of-language-acquisition/", "id": "theories-of-language-acquisition", "display_name": "Theories of language acquisition", "title": "Theories of language acquisition", "all_assessment_items": ["{\"sha\": \"6e2c1a2c32b0d0766de1b3b1b964e7b91c6c4b86\", \"live\": true, \"id\": \"xe0c63f2f5dc26c36\"}", "{\"sha\": \"d2e2ee18c78bb29ca977385fb5bcc597d257e64d\", \"live\": true, \"id\": \"x88d0b4e8ce793668\"}", "{\"sha\": \"4f7c6783765eb37f219cb6813a136e53acbe477f\", \"live\": true, \"id\": \"x738c6ff6d599059e\"}", "{\"sha\": \"5b220583bd81dad4e7228c3bb4a5ace3bf9e2833\", \"live\": true, \"id\": \"x3b0b63211f0ea2c1\"}", "{\"sha\": \"726d98cee43b7e4bd2b9eee8f710070622b58d7a\", \"live\": true, \"id\": \"xd36c76848aaf7ecc\"}"], "description": "Theories of Language Acquisition", "basepoints": 10.0, "slug": "theories-of-language-acquisition", "kind": "Exercise", "name": "theories-of-language-acquisition", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "theories-of-language-acquisition"}, "portrait-of-giovanni-arnolfini-and-his-wife-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/portrait-of-giovanni-arnolfini-and-his-wife-quiz/", "id": "portrait-of-giovanni-arnolfini-and-his-wife-quiz", "display_name": "Van Eyck, The Arnolfini Portrait (quiz)", "title": "Van Eyck, The Arnolfini Portrait (quiz)", "all_assessment_items": ["{\"sha\": \"340e230a40400f60d5a002de95c66464caa9798f\", \"live\": true, \"id\": \"xe943a2101074860d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"3518fc5db986831e94458f8053fbf7c4416e95a9\", \"live\": true, \"id\": \"xda1ad8eb2f2043ec\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e6226ddf32a8f5dab4119a2e0e2b18fe73565473\", \"live\": true, \"id\": \"xf32e69922c6a94a9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"490ba7db90acb8f5c2f27e62988884e9f490751c\", \"live\": true, \"id\": \"x9ce663fc82d8488d\", \"perseus_api_major_version\": 3}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "portrait-of-giovanni-arnolfini-and-his-wife-quiz", "kind": "Exercise", "name": "portrait-of-giovanni-arnolfini-and-his-wife-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "portrait-of-giovanni-arnolfini-and-his-wife-quiz"}, "one_step_inequalities": {"uses_assessment_items": false, "path": "khan/math/algebra/linear_inequalities/inequalities/one_step_inequalities/", "id": "one_step_inequalities", "display_name": "One-step inequalities", "title": "One-step inequalities", "description": "Practice solving inequalities in one step.", "basepoints": 19.0, "slug": "one_step_inequalities", "kind": "Exercise", "name": "one_step_inequalities", "seconds_per_fast_problem": 14.0, "prerequisites": ["one_step_equations", "inequalities-in-one-variable-1"], "exercise_id": "one_step_inequalities"}, "applications-of-operant-conditioning-in-daily-life": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/applications-of-operant-conditioning-in-daily-life/", "id": "applications-of-operant-conditioning-in-daily-life", "display_name": "Applications of operant conditioning in daily life", "title": "Applications of operant conditioning in daily life", "all_assessment_items": ["{\"sha\": \"c5661aa7c38db5603eb311805e928190267c84cf\", \"live\": true, \"id\": \"x05899d5989279d41\"}", "{\"sha\": \"6d5b48d65ea799a14edba817252b13704c886efd\", \"live\": true, \"id\": \"x372b277c8c8c8b4a\"}", "{\"sha\": \"c0cd584c157043ecb5ae3f26e571a2c6c605e0f3\", \"live\": true, \"id\": \"xf2075aef69d8582c\"}", "{\"sha\": \"b874722ac82826e9993ccaeea1518437ae8fa9e5\", \"live\": true, \"id\": \"xc5261f05d53effc0\"}", "{\"sha\": \"21dfb08d74a234c65a244b4d35ef2c0fdf09c4af\", \"live\": true, \"id\": \"xcc35c475a047155b\"}"], "description": "Questions related to operant conditioning", "basepoints": 10.0, "slug": "applications-of-operant-conditioning-in-daily-life", "kind": "Exercise", "name": "applications-of-operant-conditioning-in-daily-life", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "applications-of-operant-conditioning-in-daily-life"}, "equivalent-forms-of-polynomial-expressions": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/equivalent-forms-of-polynomial-expressions/", "id": "equivalent-forms-of-polynomial-expressions", "display_name": "Equivalent forms of polynomial expressions", "title": "Equivalent forms of polynomial expressions", "all_assessment_items": ["{\"sha\": \"4e6baf960ff897b1247f15cf2c5d9f9a787b9b81\", \"live\": true, \"id\": \"xe01c0afce3f7d105\"}", "{\"sha\": \"a32890eceeffabad9b46060bba7ea99c37e9fb66\", \"live\": true, \"id\": \"xe4f4e259a2cd9cc8\"}", "{\"sha\": \"4d1b67b85512acf7b5c4dea3f09ce643343096be\", \"live\": true, \"id\": \"x6161471c95b1df5c\"}", "{\"sha\": \"0b3ddd6fec522908fb368b4545d924a8e0ec17b2\", \"live\": true, \"id\": \"x3cdb46a264fe26d3\"}", "{\"sha\": \"843ab56b893c4172be357df787293c5f2b5df9c9\", \"live\": true, \"id\": \"x812f1f5af0fdbd47\"}", "{\"sha\": \"081fa4acc4063f59fa56737d10e360df5c78e446\", \"live\": true, \"id\": \"xec21cb790492fa62\"}", "{\"sha\": \"8ec7d149aedf1f121411659c057d105ab916c46d\", \"live\": true, \"id\": \"x4b261e2918069af3\"}", "{\"sha\": \"9d18b46d3171f32baf033c4bcbd6361c0579e7cc\", \"live\": true, \"id\": \"x1e3e236a1be987be\"}", "{\"sha\": \"fea1a475f8b657223c4ca13a2448f0690fac29ad\", \"live\": true, \"id\": \"xc5e8c7ab5face169\"}", "{\"sha\": \"0ddf207e2a9b354088b3fc3ce623c4bff5696341\", \"live\": true, \"id\": \"x9ea5cba6b91d6165\"}", "{\"sha\": \"40bd4b52485aa6cb5d2633a66259c8b9c68b0d06\", \"live\": true, \"id\": \"x40103d7f99094b77\"}", "{\"sha\": \"637ef96bc0fef4265e46303e5f2910a350cb70ad\", \"live\": true, \"id\": \"x1e80ba5abd3d4d7b\"}", "{\"sha\": \"897f2dd6c97d599e362dfbbcebc619c6f747e9fb\", \"live\": true, \"id\": \"xab535746fd5e87dc\"}", "{\"sha\": \"f9976ceb5cb47157d89ed542fffd17a32f1af802\", \"live\": true, \"id\": \"x83258520797a83cc\"}", "{\"sha\": \"4c4096fd4917fb89c2c72486a463bfe96f9b7bf7\", \"live\": true, \"id\": \"x26323657374cfa0e\"}", "{\"sha\": \"d0c65373b62c378778b0ff67d49ecc2b6af182cb\", \"live\": true, \"id\": \"x034c5d75f65691ea\"}", "{\"sha\": \"87855b76d6cf780175baca97512ef6e8e27b842c\", \"live\": true, \"id\": \"x8fdcab1dc7aa7dba\"}", "{\"sha\": \"153d00e210e6669e98c497d416a14693327f66da\", \"live\": true, \"id\": \"x6f5573adc6dc331b\"}", "{\"sha\": \"e8ba17b3d318fced8939f8a7edc267c79e8ebe9f\", \"live\": true, \"id\": \"x24cce98d41f8422e\"}", "{\"sha\": \"db5346a3b3da472b04049c0225c4da6efcb1e90d\", \"live\": true, \"id\": \"xce71fada5bd79063\"}", "{\"sha\": \"43164a70fe2582d0c426062c87050b3a03d63815\", \"live\": true, \"id\": \"x369852edad34fde4\"}", "{\"sha\": \"5c9b57a0b3bc817dbaee7fe4840a8eacb25a269f\", \"live\": true, \"id\": \"x4eab5d372d2f3e5d\"}", "{\"sha\": \"1dc1c51f034f5b4381d4e96f459ed2a4f53f84a9\", \"live\": true, \"id\": \"xdad07c12deddc161\"}", "{\"sha\": \"246ef678bc9e9a8e54437abd5dba59b5605200c8\", \"live\": true, \"id\": \"x6e3395338b64d3c3\"}", "{\"sha\": \"3e87545d0495e8c6cb20eddad062d4aeda561eb8\", \"live\": true, \"id\": \"x472f818c6f05151e\"}", "{\"sha\": \"11a2845707573c0dde5071972309602df1342304\", \"live\": true, \"id\": \"xb09594a93dcd424f\"}", "{\"sha\": \"52aa6a9ea8f4ead8dbba8c760e9969f7926e3ee7\", \"live\": true, \"id\": \"xafdd55bc944fabe6\"}", "{\"sha\": \"6e0e50f43e4c0cb2b82791ce4e12b7e35da4cada\", \"live\": true, \"id\": \"xecb75f46eefebf10\"}", "{\"sha\": \"93650933b89e44b03183dd1bced05e6b85270c9a\", \"live\": true, \"id\": \"x1931f741ee778b92\"}", "{\"sha\": \"64cc9e5c0d53f693a0c72d88b1dbfc41e1295734\", \"live\": true, \"id\": \"x32a8088a93e6665a\"}", "{\"sha\": \"c9f452da28859058d21a6437c4c0f576a8f377ce\", \"live\": true, \"id\": \"x4d067bc0bee29ce9\"}", "{\"sha\": \"756bf9062e8d30713ffc6daa189def5013450ade\", \"live\": true, \"id\": \"x30454604f33448fc\"}", "{\"sha\": \"3c2b5f6bed4b79ce6e99d2f11f727273cc071f93\", \"live\": true, \"id\": \"x2da9060c6a63853f\"}", "{\"sha\": \"6531598c8cc45be93c047d3eb99178824718faec\", \"live\": true, \"id\": \"x3d6b29b26e982d26\"}", "{\"sha\": \"9f2a7554f3d6bc3600aa4b5dd9d644f0d3cf9d1a\", \"live\": true, \"id\": \"x401711bf5a357125\"}", "{\"sha\": \"23a08ff8854218db91a1d480dab698a214ef8fb9\", \"live\": true, \"id\": \"x1a3a375da5296081\"}", "{\"sha\": \"3606d36a45bf016d5e7f285a13e42f3abf051a79\", \"live\": true, \"id\": \"x8d15542329f009f9\"}", "{\"sha\": \"7e9ddfc35b480cf91e05431fecd41b54befb4da6\", \"live\": true, \"id\": \"xa2738c7148227555\"}", "{\"sha\": \"831ec193e8b62d3155848e52e7f22f31f5a8d5cf\", \"live\": true, \"id\": \"x27a96bcc4146266f\"}", "{\"sha\": \"17989524f157a0c134b87431be4c98a4dc6d0aee\", \"live\": true, \"id\": \"x4e6d2ba8d90a454b\"}"], "description": "", "basepoints": 10.0, "slug": "equivalent-forms-of-polynomial-expressions", "kind": "Exercise", "name": "equivalent-forms-of-polynomial-expressions", "seconds_per_fast_problem": 4.0, "prerequisites": ["completing_the_square_in_quadratic_expressions", "factoring_polynomials_by_grouping_1", "factoring_difference_of_squares_3"], "exercise_id": "equivalent-forms-of-polynomial-expressions"}, "gothic-art": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/gothic1/gothic-art/", "id": "gothic-art", "display_name": "Gothic art (quiz)", "title": "Gothic art (quiz)", "all_assessment_items": ["{\"sha\": \"05d6794bd4b375270bf2d73f2cecc2d7ae87d654\", \"live\": true, \"id\": \"x7c2d1a7abfe08da8\"}", "{\"sha\": \"40056e713ce01de21a0f26a9c2cf61b93e1dfed8\", \"live\": true, \"id\": \"xe9f8ddfa90257750\"}", "{\"sha\": \"6e43ddfa4032b5c5ae61ebee2966841c79faa33d\", \"live\": true, \"id\": \"xbc8640821b79ad69\"}", "{\"sha\": \"ba8896707c67e5538da8f570f1acb7f6875f1aa8\", \"live\": true, \"id\": \"xacded3ca7d46b2d2\"}", "{\"sha\": \"4314a2567ee01a79817b813eece4e1aa79438210\", \"live\": true, \"id\": \"xec470c8efc8ca497\"}", "{\"sha\": \"14abbbf96a75d76a6f67bf15559f19ce1aad6f0d\", \"live\": true, \"id\": \"x7ec23277d6a7da62\"}", "{\"sha\": \"f5ed542ff6c8cf58794914f7ec4114e5fae7af68\", \"live\": true, \"id\": \"x55c8be91ae55d955\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "gothic-art", "kind": "Exercise", "name": "gothic-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gothic-art"}, "volumes-of-solids-of-revolution--discs-and-washers": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/solid_revolution_topic/disc-method/volumes-of-solids-of-revolution-discs-and-washers/", "id": "volumes-of-solids-of-revolution--discs-and-washers", "display_name": "Volumes of solids of revolution, discs, and washers", "title": "Volumes of solids of revolution, discs, and washers", "all_assessment_items": ["{\"sha\": \"cca7c01954d65c215c5d1c4340a14a23a8670063\", \"live\": true, \"id\": \"xaf0c7d561897c392\"}", "{\"sha\": \"35e74a9e3bdd4fd9c694c0400479c8eeeda7febe\", \"live\": true, \"id\": \"x82c89af59c7953f2\"}", "{\"sha\": \"b4d6a833703fa47153d7be3bd2313c0fa666ff8f\", \"live\": true, \"id\": \"x823e142e44dfabf9\"}", "{\"sha\": \"d244e8021f58508f9907eea6aec0403ce0805ff6\", \"live\": true, \"id\": \"x8bdc3c708e10f19f\"}", "{\"sha\": \"3603ec45d311f70f6c7aeddd5677d22a27a88373\", \"live\": true, \"id\": \"xefc2ca15612f7bc2\"}", "{\"sha\": \"ce742ccd83a291ebbd329efd837459123af9b64a\", \"live\": true, \"id\": \"x99c7f5a44766a1e1\"}", "{\"sha\": \"62fd9a5d7cf4a96350526f4504ff7b19564f296d\", \"live\": true, \"id\": \"x20353a3ca5f5ad46\"}", "{\"sha\": \"4c75106bd188061af40522c1f5ea04b7441b9241\", \"live\": true, \"id\": \"x93af48bc705edff1\"}", "{\"sha\": \"b188b52c774fda222781a080da2739e985a8d9f0\", \"live\": true, \"id\": \"xc2c7baf847dc0d6f\"}", "{\"sha\": \"ba22354108ac65de42a951ae21c4c1d99eae2a96\", \"live\": true, \"id\": \"xe3339a9c02e376c7\"}", "{\"sha\": \"0ab5cf3f5b0f8287137b1f7f76eed671dcea9c5d\", \"live\": true, \"id\": \"x81267900cb8d1d4c\"}", "{\"sha\": \"b97f7d01b9b93e16091ef3218e62da29dbdeb10a\", \"live\": true, \"id\": \"x2b8b76fecd2459d5\"}", "{\"sha\": \"ea052b9236ac72124eb597d04578cf1a8aabb59a\", \"live\": true, \"id\": \"xe535e60d86343949\"}", "{\"sha\": \"04bb569620ac0b29c6619b5bee23a43ba29d9518\", \"live\": true, \"id\": \"x2d434c9411999e55\"}", "{\"sha\": \"b9b646dbaff76045b7bf8f132d0e4eb99dca6acc\", \"live\": true, \"id\": \"xb7c3e26e3852b2f6\"}", "{\"sha\": \"5692c4f1372a92517e41d6577acc807baff0ab3f\", \"live\": true, \"id\": \"xab7127e3f8222e81\"}", "{\"sha\": \"94b294509f824660ce252515d23feea3902f599f\", \"live\": true, \"id\": \"xb6bac2f22a939ec4\"}", "{\"sha\": \"ba7e3e64f7412cc7a9c14fb032a775d9fb1d9398\", \"live\": true, \"id\": \"x600d6dc577365224\"}", "{\"sha\": \"16d6cc5cc6693a13fe5cd22f9d8fab9993c0782d\", \"live\": true, \"id\": \"x3d027fe17479aff6\"}", "{\"sha\": \"5daec9ea720167f731f24f5248af255a259a5d22\", \"live\": true, \"id\": \"x31cebcc2eb4c527c\"}", "{\"sha\": \"ddc85736154817da989ac5647948200a5c5022ab\", \"live\": true, \"id\": \"x3582669892bd83bc\"}", "{\"sha\": \"0838aa1e036c850bd67edad3a331cc32ef6bf38f\", \"live\": true, \"id\": \"xd3ac46b3b3ff31af\"}", "{\"sha\": \"334d927976aa938f7cc34bd26224a697dd97fec6\", \"live\": true, \"id\": \"xc3945fd803cb0555\"}", "{\"sha\": \"26f09a3903d6be177ac3225b0ebd37f476b48c0d\", \"live\": true, \"id\": \"x4a74d19f895d8ed8\"}", "{\"sha\": \"b44a9058c70512d900bf0f9b084e729ed6329303\", \"live\": true, \"id\": \"x286624841e96c210\"}", "{\"sha\": \"2c31c4dc526688eb68710ed06b8874ff55706e1b\", \"live\": true, \"id\": \"x7eabd8245dfb408d\"}", "{\"sha\": \"82d564f548c2b426b3e9109e0af40d23d9c66893\", \"live\": true, \"id\": \"x6c5bd328a85bd82b\"}", "{\"sha\": \"78a0d3bed65b53e38d7238c073d5220b15edb0e0\", \"live\": true, \"id\": \"xe1f5918d0398f81e\"}", "{\"sha\": \"d61c27450690e4e3aad3dfdd8dcdf80981a4efbb\", \"live\": true, \"id\": \"x1ddf7597095426a7\"}", "{\"sha\": \"55f329e27d605b794a249a384cd18b715ed2b593\", \"live\": true, \"id\": \"xd27579e4f8d5af2b\"}", "{\"sha\": \"ed1ccc6f041b2e405ec44e740a8caae602e338dc\", \"live\": true, \"id\": \"xba7d7755ce723abb\"}", "{\"sha\": \"cca7c01954d65c215c5d1c4340a14a23a8670063\", \"live\": true, \"id\": \"xaf0c7d561897c392\"}", "{\"sha\": \"35e74a9e3bdd4fd9c694c0400479c8eeeda7febe\", \"live\": true, \"id\": \"x82c89af59c7953f2\"}", "{\"sha\": \"b4d6a833703fa47153d7be3bd2313c0fa666ff8f\", \"live\": true, \"id\": \"x823e142e44dfabf9\"}", "{\"sha\": \"d244e8021f58508f9907eea6aec0403ce0805ff6\", \"live\": true, \"id\": \"x8bdc3c708e10f19f\"}", "{\"sha\": \"3603ec45d311f70f6c7aeddd5677d22a27a88373\", \"live\": true, \"id\": \"xefc2ca15612f7bc2\"}", "{\"sha\": \"ce742ccd83a291ebbd329efd837459123af9b64a\", \"live\": true, \"id\": \"x99c7f5a44766a1e1\"}", "{\"sha\": \"62fd9a5d7cf4a96350526f4504ff7b19564f296d\", \"live\": true, \"id\": \"x20353a3ca5f5ad46\"}"], "description": "", "basepoints": 10.0, "slug": "volumes-of-solids-of-revolution-discs-and-washers", "kind": "Exercise", "name": "volumes-of-solids-of-revolution--discs-and-washers", "seconds_per_fast_problem": 4.0, "prerequisites": ["volumes-of-solids-of-known-cross-section"], "exercise_id": "volumes-of-solids-of-revolution--discs-and-washers"}, "permutations_and_combinations_2": {"uses_assessment_items": false, "path": "khan/math/precalculus/prob_comb/combinations/permutations_and_combinations_2/", "id": "permutations_and_combinations_2", "display_name": "Permutations and combinations", "title": "Permutations and combinations", "description": "Permutations and Combinations with overcounting", "basepoints": 20.0, "slug": "permutations_and_combinations_2", "kind": "Exercise", "name": "permutations_and_combinations_2", "seconds_per_fast_problem": 16.0, "prerequisites": ["combinations_1"], "exercise_id": "permutations_and_combinations_2"}, "quiz--looking-back": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/future/looking-back/quiz-looking-back/", "id": "quiz--looking-back", "display_name": "Quiz: Looking Back", "title": "Quiz: Looking Back", "all_assessment_items": ["{\"sha\": \"efb94a0c205c2ce4cf571cebe4492b13185a7c1e\", \"live\": true, \"id\": \"x6bb23028fae30ddb\"}", "{\"sha\": \"b7b1e6f8683fe18ba0e63e27572fa0a898d3f4dd\", \"live\": true, \"id\": \"x45f606788463c2e1\"}", "{\"sha\": \"80fce921db9b41684381f9fd223da86907dd9dc0\", \"live\": true, \"id\": \"x5f95b48c80fa5e5d\"}", "{\"sha\": \"bf6fe8654b90bdabe43fc497fe3ac45dafb688f4\", \"live\": true, \"id\": \"x96c53c358a40bea6\"}", "{\"sha\": \"7b379fd9a79fa95824746f8fb25ddf37c4fc8919\", \"live\": true, \"id\": \"x5eccda3557472336\"}"], "description": "Quiz 10.0", "basepoints": 10.0, "slug": "quiz-looking-back", "kind": "Exercise", "name": "quiz--looking-back", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--looking-back"}, "using-rectangles-to-approximate-area-under-a-curve": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/using-rectangles-to-approximate-area-under-a-curve/", "id": "using-rectangles-to-approximate-area-under-a-curve", "display_name": "Using rectangles to approximate area under a curve", "title": "Using rectangles to approximate area under a curve", "all_assessment_items": ["{\"sha\": \"1c3ea8ab23db91ef9ab309c413707c71789c91bc\", \"live\": true, \"id\": \"x6a8f1dda5aef05b9\"}", "{\"sha\": \"0f35ef0b60207e6b58a00e9207d65638661b8cc8\", \"live\": true, \"id\": \"x824ccba26fd78b62\"}", "{\"sha\": \"7b0fd0947a9274acb8b631f7dfc11bc01a650abd\", \"live\": true, \"id\": \"x6ddc579afb120113\"}", "{\"sha\": \"94ee01296fe9e65a2df04b62d46e5ad887b822b0\", \"live\": true, \"id\": \"xd660dbd69bbb4278\"}", "{\"sha\": \"79b7423bb3e82161ed2fb8c19f1718ccdd59a98a\", \"live\": true, \"id\": \"x6c6f34142097e162\"}", "{\"sha\": \"b73b2b9bafef16ddb731cf659832b8f994c016d9\", \"live\": true, \"id\": \"xc68e17133e23cb91\"}", "{\"sha\": \"036f724e0b35fff61efc5ef563f5d6377347ff9e\", \"live\": true, \"id\": \"x3270ea3d0bf29486\"}", "{\"sha\": \"a91a5715beb2dcd2fb154cce4257e23e2ccefc63\", \"live\": true, \"id\": \"x4e157c96ab161a1e\"}", "{\"sha\": \"55d82503fd10f8662dea8d3f5ea20527a15e11fd\", \"live\": true, \"id\": \"x84124de6053867d6\"}", "{\"sha\": \"da0ac43b3ab9adb9540c72939ae45f4d3131f421\", \"live\": true, \"id\": \"x1440388f3d31a3ee\"}", "{\"sha\": \"cf4d989709f98f7b12da83c685dad0e91e9a27fc\", \"live\": true, \"id\": \"x73a02f09c0b753d2\"}", "{\"sha\": \"a51973d8710404f45599d76e7340a4269dd7315f\", \"live\": true, \"id\": \"x0c79bb46e5450298\"}", "{\"sha\": \"b7e5246ce8aae740e1241a6d1f71186bfbd67add\", \"live\": true, \"id\": \"x23d555c561bdf6ce\"}", "{\"sha\": \"f4b854bcc0e544ada70aeac7c049edef77daa52b\", \"live\": true, \"id\": \"x07d7b908d89e44af\"}", "{\"sha\": \"2d2b9fc8ec108560ac8cf636718144c71680eff5\", \"live\": true, \"id\": \"x2043f6daaa3c0db3\"}", "{\"sha\": \"6d4275cc3937555f9268fbbc8cb5ac34d9c39aa4\", \"live\": true, \"id\": \"x8fa98924e64551f2\"}", "{\"sha\": \"78177c5ed7f8a1558a911379ff8f3fc23dea2b8b\", \"live\": true, \"id\": \"x9df338cb406ba4f6\"}", "{\"sha\": \"657a29d30823ec86bc31351e382adcc60fd3ea21\", \"live\": true, \"id\": \"xf208276b5d754022\"}", "{\"sha\": \"da2349b00b6687f9cd45de381122cfb2dff147e7\", \"live\": true, \"id\": \"x068131b540a0fa9d\"}", "{\"sha\": \"97a938830e3294a3a7cfeaef8294f633e80c93b8\", \"live\": true, \"id\": \"x9cd96c380a3ec654\"}", "{\"sha\": \"6542925292c7c5bf56941c078bcedf4f9284ec05\", \"live\": true, \"id\": \"xbb89342bb0fff71c\"}", "{\"sha\": \"213d4b4cda8076827093a57f1e8ff0a993e8fc1e\", \"live\": true, \"id\": \"x2e0382edf5d7eff0\"}", "{\"sha\": \"dd5f6a4fb1bcaceccfa83e11557471dec84a09e8\", \"live\": true, \"id\": \"x33bf831d510a0d11\"}", "{\"sha\": \"4adeea7d62fa2153015d5d574562835f05b46baf\", \"live\": true, \"id\": \"x8a33c957765750de\"}", "{\"sha\": \"af2bb814a15a3e5c9cae0c5157ef02c7ddce85ff\", \"live\": true, \"id\": \"xf819c38e6eb61081\"}", "{\"sha\": \"0aa616cf50e06e90c115af4fffa6c336ba9531b4\", \"live\": true, \"id\": \"x234c38d67298409c\"}", "{\"sha\": \"68e31d64c01aec5f88ff8a55d3221442c9033508\", \"live\": true, \"id\": \"xf1a687b0c195a38e\"}", "{\"sha\": \"c0073381b25cc1bc361b7a4bb58880140b8f47ce\", \"live\": true, \"id\": \"xa841d287baf648cf\"}", "{\"sha\": \"7bcdb2e94157c7e8298e841b1e60ab34eaf023b0\", \"live\": true, \"id\": \"x51adf25fcd0f12c7\"}", "{\"sha\": \"880fad0463d7934f0b8dd814d6c8ce33dcf1b6e3\", \"live\": true, \"id\": \"x9ce54c53b399da96\"}", "{\"sha\": \"00ebbf7280b236b569c0fd8ac10247dcf41df2f4\", \"live\": true, \"id\": \"x86a7b0c1ab8a1a06\"}"], "description": "", "basepoints": 10.0, "slug": "using-rectangles-to-approximate-area-under-a-curve", "kind": "Exercise", "name": "using-rectangles-to-approximate-area-under-a-curve", "seconds_per_fast_problem": 4.0, "prerequisites": ["indefinite-integrals"], "exercise_id": "using-rectangles-to-approximate-area-under-a-curve"}, "motivations-and-attitudes-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/behavior/physiological-and-sociocultural-concepts-of-motivation-and-attitudes/motivations-and-attitudes-questions/", "id": "motivations-and-attitudes-questions", "display_name": "Motivations and attitudes questions", "title": "Motivations and attitudes questions", "all_assessment_items": ["{\"sha\": \"27f3778cc74914bb4aae4860eea0b8acf2e83294\", \"live\": true, \"id\": \"x6adc39fb87272b97\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"214b7074c612c7dd831db1fdc646c785ab66b69e\", \"live\": true, \"id\": \"x7911b462f8ee04e2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"907a5cf69b3b05cd935e65952e3b0623c9272d64\", \"live\": true, \"id\": \"x968a3480d8d1b289\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"964611e22a32650c2864c82786b486a4c398c64a\", \"live\": true, \"id\": \"x521ecc4390d84a03\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65e3e3aa67afdee96bc718c3f6ef49e9952dd21d\", \"live\": true, \"id\": \"xe664166105cf7218\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"124f608c8c24d67be900d547fae4ba244b7478fb\", \"live\": true, \"id\": \"x4ec6ed39d39487b2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"31b59fb7dd15641115c9e9beb7c7a73aa03c8b69\", \"live\": true, \"id\": \"xe0af717ba641a18c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"29d1f65cda771f0b56d26e08e17716a5b8a798e5\", \"live\": true, \"id\": \"xa0bef644a89e5168\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6bd7b5ebe012964c72aebf048cb51e92401bc09b\", \"live\": true, \"id\": \"x11ade974e07cc3eb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d745b33c12e702d7f3e135d1f52f0c969d2d0b45\", \"live\": true, \"id\": \"x445e16e66eb918bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Motivations and attitudes questions", "basepoints": 10.0, "slug": "motivations-and-attitudes-questions", "kind": "Exercise", "name": "motivations-and-attitudes-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "motivations-and-attitudes-questions"}, "subtraction_2": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/two_dig_add_sub/subtraction_2/", "id": "subtraction_2", "display_name": "Subtraction within 20", "title": "Subtraction within 20", "description": "Practice subtracting. All numbers in these problems are 20 or less.", "basepoints": 12.0, "slug": "subtraction_2", "kind": "Exercise", "name": "subtraction_2", "seconds_per_fast_problem": 5.0, "prerequisites": ["addition_2"], "exercise_id": "subtraction_2"}, "dividing-by-7": {"uses_assessment_items": true, "id": "dividing-by-7", "display_name": "Dividing by 7", "title": "Dividing by 7", "all_assessment_items": ["{\"sha\": \"df8256501e3697144fcf9de42bd9648ef62813b7\", \"live\": true, \"id\": \"xa501dee570cc0993\"}", "{\"sha\": \"6925c78325a18d0050c3562a3a4958f6233ec727\", \"live\": true, \"id\": \"x0bc9eb4ba77a9216\"}", "{\"sha\": \"958772226b602704bff9bd64d06cba222c28270d\", \"live\": true, \"id\": \"x42c179155860729b\"}", "{\"sha\": \"8d81b2f48be1da2402a9e6c4f72aa420f7c28ff4\", \"live\": true, \"id\": \"x66045a9525963174\"}", "{\"sha\": \"85459d92c6aafa5b3d3489d71537b17037caacfd\", \"live\": true, \"id\": \"xc86a7350a76ca603\"}", "{\"sha\": \"e94d26b946b75e3c860da8042f47a160ae565909\", \"live\": true, \"id\": \"xcae98438a1009f32\"}", "{\"sha\": \"1abea119e20ecfedf4e2c71562be864b2e648093\", \"live\": true, \"id\": \"x8c5245abddfcdf5f\"}", "{\"sha\": \"05cee9a8f7b2bbfe90d0baabc8108dec5f3cb7d4\", \"live\": true, \"id\": \"xf50bfa1ab2121471\"}", "{\"sha\": \"071e54df86317468f6fce388651d32eb5126c3b1\", \"live\": true, \"id\": \"x566ff5859ea92e2b\"}", "{\"sha\": \"42d58b6eac63ba066888fd9eecbec3fd971ab66e\", \"live\": true, \"id\": \"x731186f50d1729a9\"}"], "description": "Divide by 7. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-7/", "slug": "dividing-by-7", "kind": "Exercise", "name": "dividing-by-7", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-7", "dividing-by-10", "dividing-by-5"], "exercise_id": "dividing-by-7"}, "dividing-by-4": {"uses_assessment_items": true, "id": "dividing-by-4", "display_name": "Dividing by 4", "title": "Dividing by 4", "all_assessment_items": ["{\"sha\": \"f8aa3aafcc645e7b9beef19941884e0cb92a506c\", \"live\": true, \"id\": \"x18f59faf9679a431\"}", "{\"sha\": \"b13f45f64b3ae1ce4580d7bff5aa8146fd6e461e\", \"live\": true, \"id\": \"xa9614f844557bf72\"}", "{\"sha\": \"c3740b6e68ba1ace6cfb9fec0585ebf640f5921d\", \"live\": true, \"id\": \"x606c3db1753f8097\"}", "{\"sha\": \"1049ae38031eb1d16a030462a3d94274a697a3bb\", \"live\": true, \"id\": \"x490bd46764350d28\"}", "{\"sha\": \"6ac73f5a4c4992840eec6d992223877802d5104b\", \"live\": true, \"id\": \"x1aef126fa4c4079a\"}", "{\"sha\": \"c6bf7f2fc50350da35a4ac44b078fd6490533536\", \"live\": true, \"id\": \"x3aa218662e497d22\"}", "{\"sha\": \"21d61df152cda5e8925d335f02bada4504ce2fb5\", \"live\": true, \"id\": \"xede0a857dddfb76c\"}", "{\"sha\": \"9f2a9e063282aa8a3e85d6ea7d6ebf2f4c6092af\", \"live\": true, \"id\": \"xc494cb521043895c\"}", "{\"sha\": \"c74bfc439ceec64e082a7ba216c59b740d7049ba\", \"live\": true, \"id\": \"xecca1535caf245ed\"}", "{\"sha\": \"68e5577319fe865419246711e65ad463624fb9c7\", \"live\": true, \"id\": \"x4f3c01ab46063f75\"}"], "description": "Divide by 4. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-4/", "slug": "dividing-by-4", "kind": "Exercise", "name": "dividing-by-4", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-3", "dividing-by-10", "dividing-by-5"], "exercise_id": "dividing-by-4"}, "subtraction_1": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/basic_addition/subtraction_1/", "id": "subtraction_1", "display_name": "Subtraction within five", "title": "Subtraction within five", "description": "Subtract small numbers. All answers are four or less.", "basepoints": 10.0, "slug": "subtraction_1", "kind": "Exercise", "name": "subtraction_1", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition_1"], "exercise_id": "subtraction_1"}, "dividing-by-2": {"uses_assessment_items": true, "id": "dividing-by-2", "display_name": "Dividing by 2", "title": "Dividing by 2", "all_assessment_items": ["{\"sha\": \"4fca1515bb8186a933428889b657726466ddad51\", \"live\": true, \"id\": \"xb6ef026307c1d68f\"}", "{\"sha\": \"e76d43c1aeec274d1927ec14ebe0f5d352606873\", \"live\": true, \"id\": \"xc23a31d6c2fc000f\"}", "{\"sha\": \"fddbd0e71b375d2cf0b769a86f1821bed62e324a\", \"live\": true, \"id\": \"x303799f3cc2495a0\"}", "{\"sha\": \"803b28f0ac776f0604d23eac73557de1b9828b45\", \"live\": true, \"id\": \"xc77e0579e8710e2c\"}", "{\"sha\": \"0035122a210c92c909af5cd0bde03be074149e12\", \"live\": true, \"id\": \"x859f5b2d31eda262\"}", "{\"sha\": \"3cae6c3ae771ac90ef3a0274d9a01185830bb6fb\", \"live\": true, \"id\": \"xdd1d8031791dc6cb\"}", "{\"sha\": \"ef931ef9266e2a82179210331dad87c161fcec98\", \"live\": true, \"id\": \"x39800b115a9219ff\"}", "{\"sha\": \"ae30fb7ac0cd2b3c78bea3071fe7e77a81f5ae83\", \"live\": true, \"id\": \"x9cacaf3684db6065\"}", "{\"sha\": \"bbf1bc382baedaf5bae21b1bd47bf74b61823ac8\", \"live\": true, \"id\": \"xa3a82c48c4b4ceb0\"}", "{\"sha\": \"0679dfc635b7ea5b7ef4e4c74b3c6c7fc6d98c79\", \"live\": true, \"id\": \"xb8f106c2d15a2c7b\"}"], "description": "Divide by 2. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-2/", "slug": "dividing-by-2", "kind": "Exercise", "name": "dividing-by-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-2"], "exercise_id": "dividing-by-2"}, "dividing-by-3": {"uses_assessment_items": true, "id": "dividing-by-3", "display_name": "Dividing by 3", "title": "Dividing by 3", "all_assessment_items": ["{\"sha\": \"d7f1a0935d8f3f7e09f078a92cd9caf0be2cc533\", \"live\": true, \"id\": \"x566f59d7b8c341f2\"}", "{\"sha\": \"c8386291aae2d84005b89289817e63e4a0992163\", \"live\": true, \"id\": \"xbb3c54e85c4c1f53\"}", "{\"sha\": \"ea8e9ea1f2bb0c055ad991dfde442bbea64b31e3\", \"live\": true, \"id\": \"xce22c94391808fe9\"}", "{\"sha\": \"7ef88d3e745f0a83714a6afb096465926d996501\", \"live\": true, \"id\": \"xd46e4e81c6483323\"}", "{\"sha\": \"a2689ba44c85dd6abb7a1785d8479bb6741d2c23\", \"live\": true, \"id\": \"xfc213f24ca3db2ba\"}", "{\"sha\": \"0ed639e4b2aeb8cda49716c22a30b3be92327342\", \"live\": true, \"id\": \"xd14ea8cb4b7a9903\"}", "{\"sha\": \"bf0b660718ffe1be55aa249353d43af37d172c9a\", \"live\": true, \"id\": \"xbddbc738b835c5ea\"}", "{\"sha\": \"95c5dfe6336cdd99929499c6a6464521169cceea\", \"live\": true, \"id\": \"x6edaaff6e87a6b2e\"}", "{\"sha\": \"e7f9d377ae84a769151745144da5704cdae20af5\", \"live\": true, \"id\": \"x3b737bc953158737\"}", "{\"sha\": \"44af081d7d55fa769611652c4fb0609a1a7aadec\", \"live\": true, \"id\": \"x3a7f19ed677d3bef\"}"], "description": "Divide by 3. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-3/", "slug": "dividing-by-3", "kind": "Exercise", "name": "dividing-by-3", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-3", "dividing-by-10", "dividing-by-5"], "exercise_id": "dividing-by-3"}, "subtraction_4": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/subtraction_4/", "id": "subtraction_4", "display_name": "Subtraction within 1000", "title": "Subtraction within 1000", "description": "Subtract with two numbers less than 1000.", "basepoints": 21.0, "slug": "subtraction_4", "kind": "Exercise", "name": "subtraction_4", "seconds_per_fast_problem": 18.0, "prerequisites": ["addition_4"], "exercise_id": "subtraction_4"}, "sarcophagus-of-junius-bassus-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/early-christian1/sarcophagus-of-junius-bassus-quiz/", "id": "sarcophagus-of-junius-bassus-quiz", "display_name": "Sarcophagus of Junius Bassus (quiz)", "title": "Sarcophagus of Junius Bassus (quiz)", "all_assessment_items": ["{\"sha\": \"890ed23de2d1cd1b6de9a890d5571410391abfc2\", \"live\": true, \"id\": \"x6f9296f3ca46776c\"}", "{\"sha\": \"292dfaa57a97223753fd1510606a94781219ecb0\", \"live\": true, \"id\": \"xfce4b1760379e661\"}", "{\"sha\": \"b595609c7dd9e446dbc29eb9f47eb13e9907c577\", \"live\": true, \"id\": \"xd073d052ccc3f92d\"}", "{\"sha\": \"52e2f681ae8da2bd07f1bf8b856169770b0a099c\", \"live\": true, \"id\": \"xebfe65b694a20b38\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "sarcophagus-of-junius-bassus-quiz", "kind": "Exercise", "name": "sarcophagus-of-junius-bassus-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sarcophagus-of-junius-bassus-quiz"}, "dividing-by-8": {"uses_assessment_items": true, "id": "dividing-by-8", "display_name": "Dividing by 8", "title": "Dividing by 8", "all_assessment_items": ["{\"sha\": \"ab7ad91b45d419a6bfe7a76564dd56e1f68b27db\", \"live\": true, \"id\": \"xf77265aae292dba8\"}", "{\"sha\": \"8512aff8a1fccab9de8e859bd8f56af71d62aee0\", \"live\": true, \"id\": \"xffe1ffbda69c90cb\"}", "{\"sha\": \"9d85a83d2e4042f8d5a4f93c36985d8b7d1593ac\", \"live\": true, \"id\": \"xc0d9630a981a4275\"}", "{\"sha\": \"44983d27b98de40d1b099ef02f7512e3036453fe\", \"live\": true, \"id\": \"x1a70f2da0738d22b\"}", "{\"sha\": \"b511ae702f275f9cb71d827664f7cdbcd8639d41\", \"live\": true, \"id\": \"xd859a4297be18011\"}", "{\"sha\": \"4182ef1dd74752f9bb0223a5e826d6889d522482\", \"live\": true, \"id\": \"xe992f060a3e91ed1\"}", "{\"sha\": \"afb9acd326c0397513968e7c1812889cc9f41298\", \"live\": true, \"id\": \"xb69b07e96b07b7cf\"}", "{\"sha\": \"0fa6e4ae65442b1542dde6cb7e0c7e5c96cfeafe\", \"live\": true, \"id\": \"x791102e5c312423e\"}", "{\"sha\": \"a25ceb10fabe9e410b9b35a71ebdad8797c066ac\", \"live\": true, \"id\": \"xcce4dadb53961054\"}", "{\"sha\": \"19dcafc80cef08e9f372168b733ed1d9eba9d39f\", \"live\": true, \"id\": \"xff557afb83847514\"}"], "description": "Divide by 8. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-8/", "slug": "dividing-by-8", "kind": "Exercise", "name": "dividing-by-8", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-8", "dividing-by-10", "dividing-by-5"], "exercise_id": "dividing-by-8"}, "dividing-by-9": {"uses_assessment_items": true, "id": "dividing-by-9", "display_name": "Dividing by 9", "title": "Dividing by 9", "all_assessment_items": ["{\"sha\": \"49a3a258c1308fbaea2004cda15025b1bc50607f\", \"live\": true, \"id\": \"xbf843e54268ce7b7\"}", "{\"sha\": \"b3818bb1d27af37565f762013289d321aebb63ca\", \"live\": true, \"id\": \"xc6ab5d6ead5de03c\"}", "{\"sha\": \"75938f2e742ce4af8cc6156ee7c4d814764a88e1\", \"live\": true, \"id\": \"x2a23d5f90a936154\"}", "{\"sha\": \"e3f7a230be9b9fb11a3d8e3b32c2d127292cf0b1\", \"live\": true, \"id\": \"xf85ff66cab0b9600\"}", "{\"sha\": \"d2ee805bb7108882437a11d1ecd4e3bd1931b740\", \"live\": true, \"id\": \"xdc625d24a68037fe\"}", "{\"sha\": \"61004ff63cf286ff8d6fbdb11ff68368f7e07c48\", \"live\": true, \"id\": \"xbcfc1c547f416c63\"}", "{\"sha\": \"5e3f3017604b28a4a213c5ab6ad0cefd15dcfc7f\", \"live\": true, \"id\": \"x3ae92e0dddaf23bf\"}", "{\"sha\": \"2deaa7cc42be780b24be0953bc0162bb4336f473\", \"live\": true, \"id\": \"x6cae25bc0191c589\"}", "{\"sha\": \"565c2984ae1176164898e4e74c07d5389ee024ec\", \"live\": true, \"id\": \"xa6961c9a4c64fd04\"}", "{\"sha\": \"315daa8b473d80842985b3df2f3fff0bda974477\", \"live\": true, \"id\": \"x545e022e025dc053\"}"], "description": "Divide by 9. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-9/", "slug": "dividing-by-9", "kind": "Exercise", "name": "dividing-by-9", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-9", "dividing-by-10", "dividing-by-5"], "exercise_id": "dividing-by-9"}, "emphysema-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/emphysema-quiz/", "id": "emphysema-quiz", "display_name": "NCLEX-RN questions on emphysema 1", "title": "NCLEX-RN questions on emphysema 1", "all_assessment_items": ["{\"sha\": \"3253bfaa39a5b229d2ea3a81b002cd0c50dc7c34\", \"live\": true, \"id\": \"x296ef552d53bd98b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7fa3451e4b42f6d2d03c56e87540ae8dcd0078bb\", \"live\": true, \"id\": \"xf44f3d00d3c87a71\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b54a7d9c535ed162437e613c33117e503cce0f93\", \"live\": true, \"id\": \"xede5498ea561934e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"981879a168cc4101ed3b5cc5fc1ee4e3e8118b44\", \"live\": true, \"id\": \"xf1d82357a7f9806f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a3b5cde20c03bd5144f8e49546121392c1d423d3\", \"live\": true, \"id\": \"x5ecd39c883e56efe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e288f88556cb4c06d42cad585b7562ba5698de83\", \"live\": true, \"id\": \"x3dc160f3f07d736f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3484c2f5fc98a12cef86f80d240cc0c331fc21f4\", \"live\": true, \"id\": \"x05628bde67f48849\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16ad4fb20f5da154120295fbb3a64ba963fb03aa\", \"live\": true, \"id\": \"xe817233416e5ba09\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b6c7b7a54bd2c6277181a8231bf932131e5dcec\", \"live\": true, \"id\": \"xa4e23fcc5e211786\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0b03e08813cd174709414694301488c90d419e0b\", \"live\": true, \"id\": \"xae7a9c090a82e4f8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db6fa8fb160f2717326ddad90a3e683c60a6d495\", \"live\": true, \"id\": \"x0d27f99c1f9bad4c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c75dccb9c35c4e1bfb33b5edcb74e5d2034f1b7e\", \"live\": true, \"id\": \"x4e38870e0a7bf6c5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "NCLEX-RN questions related to emphysema.", "basepoints": 10.0, "slug": "emphysema-quiz", "kind": "Exercise", "name": "emphysema-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "emphysema-quiz"}, "writing-expressions-with-variables-word-problems": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/writing-expressions-with-variables-word-problems/", "id": "writing-expressions-with-variables-word-problems", "display_name": "Writing basic algebraic expressions word problems", "title": "Writing basic algebraic expressions word problems", "all_assessment_items": ["{\"sha\": \"b9641f0bf9eb858502aff7d67f6f00d3214c6c6d\", \"live\": true, \"id\": \"xdc8f3e18\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"336e570d0a48695458290ab6d37de994866a31ab\", \"live\": true, \"id\": \"x5221029a34333b2a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"fc41eb193e58e69c212a423f9d2c40baf5bec770\", \"live\": true, \"id\": \"xa2083c29\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"362963ef168d3fe96c94473142c07a40d786b3e2\", \"live\": true, \"id\": \"x56e5361bd774c856\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8c342c187234353d72f296c2255545bcd467890b\", \"live\": true, \"id\": \"x9a25079540372bc0\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"906fcf539785cfa04f1ff929481650b262a2758d\", \"live\": true, \"id\": \"x2c26d657adee8df7\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"57cc9a86318d88ff2ee82e8e1bbf606c6fb689a0\", \"live\": true, \"id\": \"x9f00b99419a3bbd0\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1814e03608fa0d3a28d71fe6fcf621a273805fb8\", \"live\": true, \"id\": \"x71f128a5e60b12e4\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"08a8dda34e193204324a5e9d9989b82ddff36af4\", \"live\": true, \"id\": \"xce1fe0643bef547a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2cd2146c20c48b4caebeb0bd4995bc56e5b62bc5\", \"live\": true, \"id\": \"xc45d56e7babed9f3\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"ae8e9fce5c0016fba7c7054e3e34246debd389a7\", \"live\": true, \"id\": \"x066bdf29100532ea\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1880cf5209b23a9f8dea6aa412989afe9b09d2e5\", \"live\": true, \"id\": \"x1f61b79159dfca21\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"342dd276bbf483cec13742dac4cbb0b3485acdb6\", \"live\": true, \"id\": \"xa1def5b75e9cd115\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c095de65efccaac6a11a3f2bc9f552cab1d934ba\", \"live\": true, \"id\": \"x9b1b8b09\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"170338a3d61b32038ca2501da83e8caa70be05db\", \"live\": true, \"id\": \"x7d9a6224eb06be50\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f17dab5e8e479eec8180736208ce3457ed220335\", \"live\": true, \"id\": \"x1bcd9c273e3ad110\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1c0643ac56af39164e4642c8fbb47204e9040abc\", \"live\": true, \"id\": \"x1c203af4f5501fab\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"95cee5bf362da36213d1446d660f75ed3c4d59cc\", \"live\": true, \"id\": \"xdccecd9eb1a0e3a0\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"361b2abab5c72034bb47352ce88f383bdc34894f\", \"live\": true, \"id\": \"x1ecd91401618fdb6\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"de159a349a21df16a62367349fe6adfd2946ef68\", \"live\": true, \"id\": \"x33773661d5eaebad\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}"], "description": "Practice writing basic algebraic expressions to model real-world situations.", "basepoints": 19.0, "slug": "writing-expressions-with-variables-word-problems", "kind": "Exercise", "name": "writing-expressions-with-variables-word-problems", "seconds_per_fast_problem": 15.0, "prerequisites": ["writing_expressions_1"], "exercise_id": "writing-expressions-with-variables-word-problems"}, "compose-shapes": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-composing-shapes/compose-shapes/", "id": "compose-shapes", "display_name": "Composing shapes", "title": "Composing shapes", "all_assessment_items": ["{\"sha\": \"de45904adea37c1a3d1b9e7e931991b372b46289\", \"live\": true, \"id\": \"x50b37e5cde8446f1\"}", "{\"sha\": \"29963ea198a9d2761353b673b21c5d5d095053fe\", \"live\": true, \"id\": \"x2622c8b74073e03b\"}", "{\"sha\": \"80b3f74f22b5a9953919e1e49836c409a5c3df5b\", \"live\": true, \"id\": \"x19d72243709d0d5f\"}", "{\"sha\": \"e34502b9252dc0d514d751af05c2df4917219805\", \"live\": true, \"id\": \"x5847018f45ba6724\"}", "{\"sha\": \"3ec310a4f91d65bc817193bfa1ebf6d261131b41\", \"live\": true, \"id\": \"xdfa552ed8ed90906\"}", "{\"sha\": \"98b1baa1d0c31d91cf767f757c0569ea03d21ba1\", \"live\": true, \"id\": \"x6d6d8e0ca9bb8645\"}", "{\"sha\": \"56262cb48b29c9cd5d48d8c2a6439d114162b9b4\", \"live\": true, \"id\": \"xcb2bf0d73ad3a637\"}", "{\"sha\": \"e4c50d5907348ea731ae788094326679148b01dc\", \"live\": true, \"id\": \"x2dbccbbfd79c0ce8\"}", "{\"sha\": \"a9f441722c417f55a7374da7bbfb4c5a5b6eb0e5\", \"live\": true, \"id\": \"x5d375efec535c4d1\"}", "{\"sha\": \"fd68aacc958ff2afe987a2a3b03c88e2ee276822\", \"live\": true, \"id\": \"x1c5fe9b063de1205\"}", "{\"sha\": \"d05e21604cf380bf8135acf7f24d42289a266816\", \"live\": true, \"id\": \"xe3913040c07c4341\"}", "{\"sha\": \"8ba66347a906506a4aea5c93da8d1d280958c99c\", \"live\": true, \"id\": \"x9129938fc60b6476\"}", "{\"sha\": \"b79c5bc2cd362e38de973e26626f211d5a66edce\", \"live\": true, \"id\": \"x83fd44d1fab6f70e\"}", "{\"sha\": \"d75a4a42e6cf82110f00e2f6a1e98d7fde4fefd8\", \"live\": true, \"id\": \"x463ef894490322f2\"}", "{\"sha\": \"3329ca24b8efee70c3eeb5c5a8deeef53792a695\", \"live\": true, \"id\": \"xd370cfaef2b8efa1\"}", "{\"sha\": \"1aed905650b27601fb94d8fabf405a92343f695a\", \"live\": true, \"id\": \"x7e2f7959228ea45c\"}", "{\"sha\": \"c1dabc15ffd680c574f610b19ece56172e0efd07\", \"live\": true, \"id\": \"x1d87a7ea636282ff\"}", "{\"sha\": \"a683fe5383337d9ce85ad204e7c125deac4ae141\", \"live\": true, \"id\": \"x10ab1988685fd966\"}", "{\"sha\": \"f6eaf81bcc4ef3c86bf737315b331278d0530d75\", \"live\": true, \"id\": \"xbf012da5343f6b72\"}", "{\"sha\": \"2c19c3d4f3970050a99a69533548c88729d6c469\", \"live\": true, \"id\": \"x445c8265fc6f1f76\"}", "{\"sha\": \"8a3742798cb3c7b3151940be2bf0df53e8aa4a4c\", \"live\": true, \"id\": \"x6375020cb41e5a2a\"}", "{\"sha\": \"75e3e38ecfc15a5676089f9902f1c56e6b7f3c72\", \"live\": true, \"id\": \"xbf6bd3564eb08b10\"}"], "description": "Practice combining shapes to make other shapes.", "basepoints": 10.0, "slug": "compose-shapes", "kind": "Exercise", "name": "compose-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": ["compare-shapes"], "exercise_id": "compose-shapes"}, "neurofibromin-mutations-in-mice-populations": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/neurofibromin-mutations-in-mice-populations/", "id": "neurofibromin-mutations-in-mice-populations", "display_name": "Neurofibromin mutations in mice populations", "title": "Neurofibromin mutations in mice populations", "all_assessment_items": ["{\"sha\": \"ce77bbf9d72de043a82b1e831ea1a8e6e0523266\", \"live\": true, \"id\": \"xe578ad0ffe61ad5a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f0c6922fcc41ffe156faf7a8ad7af91f8e87db06\", \"live\": true, \"id\": \"x6aef6daf7c6f9808\", \"perseus_api_major_version\": null}", "{\"sha\": \"7fda18f8d0f9dd4cdb8abd4eaa31e1efe1091712\", \"live\": true, \"id\": \"x0bbe3fc84b089fb6\", \"perseus_api_major_version\": null}", "{\"sha\": \"310ab6d373cc0cd38ab7ed8d361488fb2140c023\", \"live\": true, \"id\": \"x7633974e756d17f4\", \"perseus_api_major_version\": null}", "{\"sha\": \"96db04ff6a161fe4c946be2e1f563b0111698ecf\", \"live\": true, \"id\": \"x260c0206b536f8a6\", \"perseus_api_major_version\": null}"], "description": "This passage will test your knowledge in foundational concept 1C", "basepoints": 10.0, "slug": "neurofibromin-mutations-in-mice-populations", "kind": "Exercise", "name": "neurofibromin-mutations-in-mice-populations", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neurofibromin-mutations-in-mice-populations"}, "properties-of-matrix-multiplication": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/properties-matrix-multiplication/properties-of-matrix-multiplication/", "id": "properties-of-matrix-multiplication", "display_name": "Properties of matrix multiplication", "title": "Properties of matrix multiplication", "all_assessment_items": ["{\"sha\": \"875f797d5ffb8e2fc41e1daa6c16608adca77357\", \"live\": true, \"id\": \"x614fac88a1c6298d\"}", "{\"sha\": \"f24d24647f0e8c07201ec607ee4057cbc24c4c31\", \"live\": true, \"id\": \"x56f3309bc320eac3\"}", "{\"sha\": \"49f5abba86798c154fc77bd3a1776d13f73ab5f8\", \"live\": true, \"id\": \"x798ad8b4a7a860e1\"}", "{\"sha\": \"d7d2c4c8120295d16e828dc85cff699d701eb444\", \"live\": true, \"id\": \"x31ec01609f719292\"}", "{\"sha\": \"f558d3f1f88f73e47ab642dd2b2644197d9a4828\", \"live\": true, \"id\": \"x729762fa6c2f0c6e\"}", "{\"sha\": \"1e73dfee29a2aee95f08c09fe710281d94ad26c1\", \"live\": true, \"id\": \"xe7baa4d825e8671e\"}", "{\"sha\": \"5fb38e220f9f25aa6c8dea81fb20d8c1ca03e388\", \"live\": true, \"id\": \"xd123e1fa2d59e6c9\"}", "{\"sha\": \"18a9b93281df32bf08c3c31d4a98ed6bac788822\", \"live\": true, \"id\": \"xc8857cf7beaadd24\"}", "{\"sha\": \"c6ccc0a9dcde196640a4317ec823e131c9949551\", \"live\": true, \"id\": \"xb860e72ec6d687bd\"}", "{\"sha\": \"10e8a2fe4d69b315a894c34bdbffb5d0d2795a0c\", \"live\": true, \"id\": \"x82268536a9f5d0eb\"}", "{\"sha\": \"e55f6c3ff8e5298c0c2fffdd09e342a483f1f58b\", \"live\": true, \"id\": \"x084d1a8605ad4dd7\"}", "{\"sha\": \"0df7b35f048cbab6a58622ab71d60b32bfdfcfa0\", \"live\": true, \"id\": \"x5791edcf467bf8cc\"}", "{\"sha\": \"100993156acff6048660272956043627f12e4c90\", \"live\": true, \"id\": \"x850fdab11cd0f29a\"}", "{\"sha\": \"b7be727a25abe1714ea6cb0e76ca9da8e949eadc\", \"live\": true, \"id\": \"x5322adb4451fbfa0\"}", "{\"sha\": \"338c107a2b8e69455249704dd259b867d58f8657\", \"live\": true, \"id\": \"x4db82448558d7767\"}", "{\"sha\": \"bb26f99cdb4d337d210f9669a3c4884d70ddc67f\", \"live\": true, \"id\": \"x70242a55c575d84b\"}", "{\"sha\": \"91db9c5ffe5e0c311997306217b7fc4fe947e55e\", \"live\": true, \"id\": \"xdad458245f775531\"}", "{\"sha\": \"85f9eb430e9cd485fb7ca56bc1f44956597bcc1e\", \"live\": true, \"id\": \"x7ca2650a68c21e28\"}", "{\"sha\": \"5975c90bc0111f9e29da47d4680f4426d4d78303\", \"live\": true, \"id\": \"xf52b3ca16cadb9b7\"}", "{\"sha\": \"07ec56a2d28390d0159bf24c6dde612e93805269\", \"live\": true, \"id\": \"x7875c65e23f9d02b\"}", "{\"sha\": \"f8db9ea179b594a192bd905f7a32d9d2d9641b38\", \"live\": true, \"id\": \"xa488e5729e7c75f7\"}", "{\"sha\": \"0d9cb2e76c907a8411ddc5dc0172694807e81894\", \"live\": true, \"id\": \"x70712393f2cfa1d6\"}", "{\"sha\": \"4a287f29b9f43b9662e74fda2f29a13003c5d49b\", \"live\": true, \"id\": \"x1321333a5f268aa6\"}", "{\"sha\": \"a16f5dc0727b6ecad3376d0c595c0014ecc63759\", \"live\": true, \"id\": \"x2188887c4eb53b37\"}", "{\"sha\": \"279d17f0d98b7bd895efcd512521c3d29be10a0f\", \"live\": true, \"id\": \"xe2f32c403b7cc4b9\"}", "{\"sha\": \"798dd1cd4c002848fdb9531555b79b2f8f4ca46e\", \"live\": true, \"id\": \"x95c9ae4f9e35cf9b\"}", "{\"sha\": \"34c8d18f4f2ab48d8bde13bade81d95638a93374\", \"live\": true, \"id\": \"xe857acba71da6d0a\"}", "{\"sha\": \"fb337d432d6bac3f3629c53d3cd4d11bab7df108\", \"live\": true, \"id\": \"x05418e8912b8ef3f\"}", "{\"sha\": \"a3a8d11466ca519cf1407f43246b79e2b48282c9\", \"live\": true, \"id\": \"xdb29f1e5166867b7\"}", "{\"sha\": \"5aff5ea2fe288fccdddbf5eacd7897ba651db5fa\", \"live\": true, \"id\": \"xed4f22f6d98c1869\"}", "{\"sha\": \"1ca5e5cbc12ce25d84f2c89a626b346b51366d88\", \"live\": true, \"id\": \"xd9bd6549cd49d7b5\"}", "{\"sha\": \"82b55295cf655f307e62c9b007b792a5217600ce\", \"live\": true, \"id\": \"x1ef7417aa43cdb07\"}", "{\"sha\": \"68c0c7a7415e98a33b78a287a110fb2b7217d87a\", \"live\": true, \"id\": \"xc5046e3d2aa33848\"}", "{\"sha\": \"906402e638e52823bfa362e81fd5725841975489\", \"live\": true, \"id\": \"xd42b4518ffbf24b6\"}", "{\"sha\": \"ef14114c13a974b33c35c45bba3cabd358e427e8\", \"live\": true, \"id\": \"xde720368e40e8ef5\"}"], "description": "", "basepoints": 10.0, "slug": "properties-of-matrix-multiplication", "kind": "Exercise", "name": "properties-of-matrix-multiplication", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_a_matrix_by_a_matrix"], "exercise_id": "properties-of-matrix-multiplication"}, "graphing_inequalities_2": {"uses_assessment_items": false, "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphing_inequalities_2/", "id": "graphing_inequalities_2", "display_name": "Graphing and solving linear inequalities", "title": "Graphing and solving linear inequalities", "description": "Graph a linear inequality on the coordinate plane. Determine whether given ordered pairs are solutions.", "basepoints": 24.0, "slug": "graphing_inequalities_2", "kind": "Exercise", "name": "graphing_inequalities_2", "seconds_per_fast_problem": 29.0, "prerequisites": ["graphing_inequalities"], "exercise_id": "graphing_inequalities_2"}, "fraction-decimal-intuition": {"uses_assessment_items": true, "id": "fraction-decimal-intuition", "display_name": "Fraction-decimal intuition", "title": "Fraction-decimal intuition", "all_assessment_items": ["{\"sha\": \"daffdcd01794a2ce730715a517fdae030072e85a\", \"live\": true, \"id\": \"xc9d452fbd496194b\"}", "{\"sha\": \"94403b867ee02ffc22b25e3722f2d617bc85c234\", \"live\": true, \"id\": \"x9d4b4c53de7290d4\"}", "{\"sha\": \"4ccbefabb01e278ce0b9f68f878b616cc6fc24d9\", \"live\": true, \"id\": \"xd29d187aace72339\"}", "{\"sha\": \"45b7c8dd45966b547f3dbd852f61e7e4c44ee0ea\", \"live\": true, \"id\": \"xcf640d396f664bb3\"}", "{\"sha\": \"01fdbc508c932eeb94fdad36f98b736ef4a28003\", \"live\": true, \"id\": \"x39415a52507784a9\"}", "{\"sha\": \"7952690610c7d45deb89b35eddd900ad8c48b2b9\", \"live\": true, \"id\": \"x8091faaecbcf2a6a\"}", "{\"sha\": \"6c01231bee69e89a2c2aeeedcaba311cd60d997a\", \"live\": true, \"id\": \"xa87148ad6e213c97\"}", "{\"sha\": \"7be1b142d8cbdf9d231dda03f5bf6f84a840f3ab\", \"live\": true, \"id\": \"xb12f6b66aa89baad\"}", "{\"sha\": \"03f17f7012614d6fccd50032a86c3c3e4164ba64\", \"live\": true, \"id\": \"x8b9ceb4efef47f91\"}", "{\"sha\": \"9a7aeb47d145cce52e9e446a32a7a46851492dd5\", \"live\": true, \"id\": \"x6950dbc2ae07b2a1\"}", "{\"sha\": \"5be99b31465cb917879646702d83df63e97eef1f\", \"live\": true, \"id\": \"x66a629abd5ba9768\"}", "{\"sha\": \"251111de27eca56dbb151078bb2a2239ac234ca3\", \"live\": true, \"id\": \"x9d837ae39955abdd\"}", "{\"sha\": \"b4d8de4f1d7e47693253e10920ed1f3bd269f153\", \"live\": true, \"id\": \"x8051504e12a621cc\"}", "{\"sha\": \"0dfdf164db1ad68ca554a3200e3e60ab32d9bd51\", \"live\": true, \"id\": \"x0575ad20c745a52c\"}", "{\"sha\": \"cdafe39b4ffb24532cb6b5a65711c28ce52f06d9\", \"live\": true, \"id\": \"x024a6fe806f60e26\"}", "{\"sha\": \"b67fb70056006f44cb473f35e2d920af6ab59b6a\", \"live\": true, \"id\": \"x284ed5aa12f36b33\"}", "{\"sha\": \"67ff12e57af3db8b740ef8c3f7755754e866bd72\", \"live\": true, \"id\": \"x9762b4b815dce21b\"}", "{\"sha\": \"93ca49ca3462cf7807b67e21adf060dea493db6f\", \"live\": true, \"id\": \"x47237c895796cd1f\"}", "{\"sha\": \"3b97a6d520def65316999c68ee394d96a27ad01e\", \"live\": true, \"id\": \"x684d6e330d2967fa\"}", "{\"sha\": \"cef32d3ab336ee187403d15373b92a1a3684c322\", \"live\": true, \"id\": \"x15b452ae0ec67274\"}"], "description": "Practice these problems to see how decimals and fractions can represent the same number.", "basepoints": 10.0, "path": "fraction-decimal-intuition/", "slug": "fraction-decimal-intuition", "kind": "Exercise", "name": "fraction-decimal-intuition", "seconds_per_fast_problem": 4.0, "prerequisites": ["decimals_on_the_number_line_2", "decimals-in-words"], "exercise_id": "fraction-decimal-intuition"}, "limiting_reagent_stoichiometry": {"uses_assessment_items": false, "path": "khan/science/chemistry/chemical-reactions-stoichiome/limiting-reagent-stoichiometry/limiting_reagent_stoichiometry/", "id": "limiting_reagent_stoichiometry", "display_name": "Limiting reagent stoichiometry", "title": "Limiting reagent stoichiometry", "description": "Determine the amount (in grams) of a product from given amounts of two reactants, one of which is limiting.", "basepoints": 29.0, "slug": "limiting_reagent_stoichiometry", "kind": "Exercise", "name": "limiting_reagent_stoichiometry", "seconds_per_fast_problem": 60.0, "prerequisites": [], "exercise_id": "limiting_reagent_stoichiometry"}, "enzyme-structure-and-function---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/enzyme-structure-and-function-passage-2/", "id": "enzyme-structure-and-function---passage-2", "display_name": "Muscles rely on lactate dehydrogenase ", "title": "Muscles rely on lactate dehydrogenase", "all_assessment_items": ["{\"sha\": \"1dcdd5ea52bfd038ea0d45729d2bf32d52523425\", \"live\": true, \"id\": \"xb5447d2f7a8a3b63\", \"perseus_api_major_version\": null}", "{\"sha\": \"2de2c6877a2e20e4fffb4a973d6cf827bb67c327\", \"live\": true, \"id\": \"x308d0ed766ac09f0\", \"perseus_api_major_version\": null}", "{\"sha\": \"408dbd5cd9d1dfa8499c23e9595c8451266ad935\", \"live\": true, \"id\": \"x15cf0f8656ff5ec7\", \"perseus_api_major_version\": null}", "{\"sha\": \"b7b2c5e4dcfd36ec3df04906175a4340941e5849\", \"live\": true, \"id\": \"x8b4e9baaba328a8c\", \"perseus_api_major_version\": null}", "{\"sha\": \"40320e014ef3b0f6439b0fa0659ebe8f77b7b778\", \"live\": true, \"id\": \"x41a387a16a2824bc\", \"perseus_api_major_version\": 3}"], "description": "", "basepoints": 10.0, "slug": "enzyme-structure-and-function-passage-2", "kind": "Exercise", "name": "enzyme-structure-and-function---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "enzyme-structure-and-function---passage-2"}, "enzyme-structure-and-function---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/enzyme-structure-and-function-passage-1/", "id": "enzyme-structure-and-function---passage-1", "display_name": "Fighting the flu with Oseltamivir", "title": "Fighting the flu with Oseltamivir", "all_assessment_items": ["{\"sha\": \"9fd5b52ff8efc582f7af1e10b2fd94aa33f3aa7c\", \"live\": true, \"id\": \"xf4f6f35132c021ff\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b0f5357440de4bd4cd051bffe91b710307685949\", \"live\": true, \"id\": \"x550a2742f8b3be70\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a890301505add21af4450d7166a9a6a0a50de8cf\", \"live\": true, \"id\": \"xc9f188e86d8b0a17\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fcb477fd482884dfabee4fc21c93e3ff359a47cd\", \"live\": true, \"id\": \"x09e316111170150f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9d8d58126d6b709d2f31797800904b825b8ec16\", \"live\": true, \"id\": \"x6a834fda1dd17a0e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "enzyme-structure-and-function-passage-1", "kind": "Exercise", "name": "enzyme-structure-and-function---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "enzyme-structure-and-function---passage-1"}, "place_value": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/order-of-operations/place_value/place_value/", "id": "place_value", "display_name": "Place value", "title": "Place value", "description": "Identify the place-value of a digit. \u00a0Rewrite a written number in numerals. \u00a0", "basepoints": 13.0, "slug": "place_value", "kind": "Exercise", "name": "place_value", "seconds_per_fast_problem": 6.0, "prerequisites": ["addition_4"], "exercise_id": "place_value"}, "expressions-with-parentheses": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/constructing-numeric-expressions/expressions-with-parentheses/", "id": "expressions-with-parentheses", "display_name": "Evaluating expressions with parentheses", "title": "Evaluating expressions with parentheses", "all_assessment_items": ["{\"sha\": \"f0e545c8fdc0f44509e4ea9adfaaa589202be4a0\", \"live\": true, \"id\": \"xbece2fd6\"}", "{\"sha\": \"83938bb717bb63311b1400461836342f768b9ce9\", \"live\": true, \"id\": \"x24d26a59\"}", "{\"sha\": \"3da00d95e8867ad88aa7688939ee07adee51ee91\", \"live\": true, \"id\": \"xfb8c985c\"}", "{\"sha\": \"9b4001b52e92accbc0a444cba0deab009761682a\", \"live\": true, \"id\": \"x195c4bbd\"}", "{\"sha\": \"ddf67b152c6c199609325e9a4c9e84098f9887a8\", \"live\": true, \"id\": \"x765de460\"}", "{\"sha\": \"4b8d55f81624e08191ef0d95921b121a274c2cce\", \"live\": true, \"id\": \"xce11a89d\"}", "{\"sha\": \"37511549fd576f3ce6ab6f6a369c9b91b6f4c693\", \"live\": true, \"id\": \"xeeb94012\"}", "{\"sha\": \"04b9225c3d7a2153d2584c9e36d3727c1b4b8f86\", \"live\": true, \"id\": \"x2f937cede37a9721\"}", "{\"sha\": \"219960065d326c78dd7ae813492f02ccf49b7a4b\", \"live\": true, \"id\": \"x210b06cdeb0bca52\"}", "{\"sha\": \"ccc71d03b6ad7302e9f5120b03a9359025092cd2\", \"live\": true, \"id\": \"x54922dcc317715a3\"}", "{\"sha\": \"dc5d7cc985bbaff9e2865cac04a03d126b4c7591\", \"live\": true, \"id\": \"x99ff8f613b626cd7\"}", "{\"sha\": \"52f8fb1886dc5fde9170028707ed507e054bb5aa\", \"live\": true, \"id\": \"xbce4c10a396049e0\"}", "{\"sha\": \"e4091362e9f7599c0897ad6753e576b9e00b0cd3\", \"live\": true, \"id\": \"x1568697a7d78c30e\"}", "{\"sha\": \"25c183af18617df35e6ae57fbae9daccfd08a5a3\", \"live\": true, \"id\": \"x7b6ee18c33af9d52\"}", "{\"sha\": \"baac5f6a01f0f742b7f20fdc3fae120cb0aa5891\", \"live\": true, \"id\": \"xeb07382813d6844a\"}", "{\"sha\": \"95fb95d1ae653ed065ec782d7dbcd88d5c495ac4\", \"live\": true, \"id\": \"xfb59b0e90acefd27\"}", "{\"sha\": \"d0cc4c49dbf648fad3b47604c73a6f8225385974\", \"live\": true, \"id\": \"x1e9b45e3c595a19e\"}", "{\"sha\": \"64b4cb17bd041ac3db3920c4cecca9c8ce218501\", \"live\": true, \"id\": \"x4cd720e6d83082ed\"}", "{\"sha\": \"a56f1d37ac8d9b6e511a6c81c4e8fa76f1cd3b78\", \"live\": true, \"id\": \"x6b4ba15b4d97b039\"}", "{\"sha\": \"732cf4cf20a86d6fc16c2b130872dedd28c17931\", \"live\": true, \"id\": \"x054c746cbc78fb82\"}"], "description": "Solve multi-step expressions with parentheses. \u00a0Place parentheses in an expression to make the expression equivalent to a given number.", "basepoints": 20.0, "slug": "expressions-with-parentheses", "kind": "Exercise", "name": "expressions-with-parentheses", "seconds_per_fast_problem": 17.0, "prerequisites": ["multi-step-word-problems-with-whole-numbers"], "exercise_id": "expressions-with-parentheses"}, "equivalent-fraction-models": {"uses_assessment_items": true, "id": "equivalent-fraction-models", "display_name": "Equivalent fractions on the number line", "title": "Equivalent fractions on the number line", "all_assessment_items": ["{\"sha\": \"52379684fb122d43575aa3c3e4b7c5a7b1eb35a8\", \"live\": true, \"id\": \"x7b0f78d1471c12b6\", \"perseus_api_major_version\": 0}", "{\"sha\": \"195b54032578d7c412c172ed4c260abbb5b8c6e1\", \"live\": true, \"id\": \"x5871d7c081186a29\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c94a0c68b5b3be2eb2213ae035157078f72abfd4\", \"live\": true, \"id\": \"x0e5d2ede5701b92b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"734cb584a0e443910c06c0e36a6a8e9df4c2fc69\", \"live\": true, \"id\": \"x02efa3252140337c\", \"perseus_api_major_version\": null}", "{\"sha\": \"48422447572cf59aea26b56a26cfccc5dc192ed5\", \"live\": true, \"id\": \"xb3af48940d46e6c2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fc17383253a90660dfc9e378af234c168c8ed23b\", \"live\": true, \"id\": \"xcb1c26fed24fdef9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ec775c3ce009cd6d0bfb1d196e9ed760828908c3\", \"live\": true, \"id\": \"x820b94ef7e4fac96\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ed466cd5fcbbf07ae9bb47e93f208664261ad6de\", \"live\": true, \"id\": \"xcbb74a225cf876c1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d3675a75ad0563a4424bcbb131456634c62edc5b\", \"live\": true, \"id\": \"xafe1eb60cacdbfa7\", \"perseus_api_major_version\": null}", "{\"sha\": \"7d7e6b65ea583e78e4c81bd03fe5d7ea318d86b1\", \"live\": true, \"id\": \"x587bf88b9b6d3600\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0264c1a8ae257120a1577e89ff8a13917ceca5d3\", \"live\": true, \"id\": \"x8223d3c4ecfab265\", \"perseus_api_major_version\": 3}", "{\"sha\": \"4c2fcd4a118ba34258987d058e4e1dca34ac9253\", \"live\": true, \"id\": \"xeb1cc308806b2113\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0cfc60c1010c93f4a866777bace32749a171bed9\", \"live\": true, \"id\": \"x5e59ab52cde8e0d0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"904ed3b3a94baba27a3535d60889a25c681fc178\", \"live\": true, \"id\": \"x86e517d0e3bcfcde\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2116748ebe45244739551326035db0b85d941ff9\", \"live\": true, \"id\": \"x3993776f037e9d2d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"a02feb23200d9313975287b69e1f0cf464188413\", \"live\": true, \"id\": \"xf56d596625f6b36a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f2c19a22a91db4d8b0058e428309389291e2e8d1\", \"live\": true, \"id\": \"x2b610f7edf9fe10e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ca44a77ed47cc00069697fe1f90134a4736e30e9\", \"live\": true, \"id\": \"x6218f3c75934e32f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"fe839e536fc7ea14b811cbfaba32d3a4496b0a73\", \"live\": true, \"id\": \"x2a5d678074199bf9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f59a912ca05d73ee05f0c9c0f526d43423da9d5c\", \"live\": true, \"id\": \"x447d06215a535a94\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c6e3d30e341e71a60f5d741539a209ac842d4f7a\", \"live\": true, \"id\": \"xd888b997254de97a\", \"perseus_api_major_version\": null}", "{\"sha\": \"e5fea66e83e584d49c19ea2cf729f5ee5cd9f45d\", \"live\": true, \"id\": \"x501f40e29a09fc5b\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f30a2e6019f60e2139ba3e57775e7eee5ffc3b6\", \"live\": true, \"id\": \"x7c645bfa390122a7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c07694be0777bd5a8a970dc8d5dc6f4c989a7c53\", \"live\": true, \"id\": \"x327a2bd5847c0bfc\", \"perseus_api_major_version\": null}", "{\"sha\": \"7949e9c82b38f2a6d84bb1bfaa8073808552fb77\", \"live\": true, \"id\": \"xadfb110132f65eac\", \"perseus_api_major_version\": null}", "{\"sha\": \"40f658430ce30926a98feba4fe14ae4745851b35\", \"live\": true, \"id\": \"xd30cc72e9bb8b401\", \"perseus_api_major_version\": null}", "{\"sha\": \"8d8250c46caf1aa33335b7424603d24119447495\", \"live\": true, \"id\": \"xb8966f9dbd218aaa\", \"perseus_api_major_version\": null}", "{\"sha\": \"c6cc7bfae777ed003bb593bc33172f9fde3046eb\", \"live\": true, \"id\": \"x026fc650b96ecd06\", \"perseus_api_major_version\": null}"], "description": "Graph and identify equivalent fractions on a number line. \u00a0", "basepoints": 10.0, "path": "equivalent-fraction-models/", "slug": "equivalent-fraction-models", "kind": "Exercise", "name": "equivalent-fraction-models", "seconds_per_fast_problem": 4.0, "prerequisites": ["fractions_on_the_number_line_2", "equivalent-fraction-models-1"], "exercise_id": "equivalent-fraction-models"}, "circulatory-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/the-circulatory-system/circulatory-system-questions/", "id": "circulatory-system-questions", "display_name": "Circulatory system questions", "title": "Circulatory system questions", "all_assessment_items": ["{\"sha\": \"adbe753608e5bfc7af8ac707418189e79507657d\", \"live\": true, \"id\": \"x1cd157f2107c4841\"}", "{\"sha\": \"c10d4fba8e769246c73af19f108b3aaca039354a\", \"live\": true, \"id\": \"x674ef67f0aaf55f4\"}", "{\"sha\": \"5c5d83759f787d60da1d12b708f56b57656e2c41\", \"live\": true, \"id\": \"x624923e181783ea8\"}", "{\"sha\": \"891a78562579bb9427966a9520b0652d5b28e8a7\", \"live\": true, \"id\": \"x354392144e7ed8d4\"}", "{\"sha\": \"9c26feb4e75d844f3a14dfc8abab719dc5350fee\", \"live\": true, \"id\": \"xf5631edf4ae3d158\"}", "{\"sha\": \"7ea38307e905f2a36bdafbe93b0d5e2f27485cbc\", \"live\": true, \"id\": \"xfaa085b742e4efcf\"}", "{\"sha\": \"2d12ca959e7402a9ed8af59815af0b6217d2ee8d\", \"live\": true, \"id\": \"x2bfa0eaba24f772b\"}", "{\"sha\": \"927d9bb27461793cb65abce432f80c9020501f40\", \"live\": true, \"id\": \"x93c2fbfc152960b3\"}", "{\"sha\": \"4e8f52a9ba6219a0e590ecec9573b0d9827dbd8a\", \"live\": true, \"id\": \"x9f1e8cc99333762f\"}", "{\"sha\": \"dbf27507fb8cdd3103e61c8e56b5d4257283b1e9\", \"live\": true, \"id\": \"x778c76350b02b939\"}"], "description": "Circulatory system questions", "basepoints": 10.0, "slug": "circulatory-system-questions", "kind": "Exercise", "name": "circulatory-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "circulatory-system-questions"}, "rewriting-and-interpreting-exponential-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exponential-modeling/rewriting-and-interpreting-exponential-functions/", "id": "rewriting-and-interpreting-exponential-functions", "display_name": "Rewriting and interpreting exponential functions", "title": "Rewriting and interpreting exponential functions", "all_assessment_items": ["{\"sha\": \"60c516db44cc69a9384a40757aa624fa6f14c239\", \"live\": true, \"id\": \"x5e1842d0ca1c04da\", \"perseus_api_major_version\": null}", "{\"sha\": \"25b9bde43a1ec2fbda0e3affdffa527dcdce006b\", \"live\": true, \"id\": \"x78cdae88dbff333b\", \"perseus_api_major_version\": null}", "{\"sha\": \"4830b93b220dbba8368266245c4fd31a0d808ee5\", \"live\": true, \"id\": \"x3300c1a92e9863ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"326db363f9dfff2abf88f96fdc95d571f1d6d67d\", \"live\": true, \"id\": \"x9dcc12f9aba27830\", \"perseus_api_major_version\": null}", "{\"sha\": \"756ef420be664132dce167db4709d4e4be23c7dc\", \"live\": true, \"id\": \"x8507a11c0c1d0a59\", \"perseus_api_major_version\": null}", "{\"sha\": \"b4ac548e2b4c496a0b19b1945175f4b6da208be7\", \"live\": true, \"id\": \"x2b4186f0961fba25\", \"perseus_api_major_version\": null}", "{\"sha\": \"5702c2e2cf88efe1210c4e58e0067954d19cd0df\", \"live\": true, \"id\": \"x4a86e76fd2c824e4\", \"perseus_api_major_version\": null}", "{\"sha\": \"7ced7915c38d546192e067d8cca0140996d4e957\", \"live\": true, \"id\": \"x6280197d2857f619\", \"perseus_api_major_version\": null}", "{\"sha\": \"c69c0b35e3968a604978765f8f3ea65deb73bb1e\", \"live\": true, \"id\": \"xd5f82d8be4be2bb6\", \"perseus_api_major_version\": null}", "{\"sha\": \"525e8b02cfd057d0807a92b0a4ced47b5ee252cd\", \"live\": true, \"id\": \"x1dd656942ed53e35\", \"perseus_api_major_version\": null}", "{\"sha\": \"6763f5b81dd28ede19c206b92010de3f605058d1\", \"live\": true, \"id\": \"xb57bdc7b5776cda5\", \"perseus_api_major_version\": null}", "{\"sha\": \"9785c24ed2cd3ab4f9271d29b088050b555359ac\", \"live\": true, \"id\": \"xc7c6f32b10a29ef5\", \"perseus_api_major_version\": null}", "{\"sha\": \"12086e0788a99a049ae7a58c55054f4326329b41\", \"live\": true, \"id\": \"x60e05e1688d01d9b\", \"perseus_api_major_version\": null}", "{\"sha\": \"d56e70bee4556135c88976ea894aeb2b40563910\", \"live\": true, \"id\": \"x25e05927301248df\", \"perseus_api_major_version\": null}", "{\"sha\": \"4df5213351083290990cf8f51e8f9b50cb5ef845\", \"live\": true, \"id\": \"x69fdfa6f669e3ad6\", \"perseus_api_major_version\": null}", "{\"sha\": \"88ccf1a897f2eab960f41fdd8b7abe11b74c6c72\", \"live\": true, \"id\": \"x438bcf2e990ce985\", \"perseus_api_major_version\": null}", "{\"sha\": \"88cfc2ae732c06bf33027d555316e26035cf2a4f\", \"live\": true, \"id\": \"x59e54c6ee92fc9eb\", \"perseus_api_major_version\": null}", "{\"sha\": \"04207d84a7e3fd5289c1ed51dd6527025fcebe7a\", \"live\": true, \"id\": \"xf0567e91c6f1469a\", \"perseus_api_major_version\": null}", "{\"sha\": \"0e0a3951f70874d07340312c888b70b6ff045f48\", \"live\": true, \"id\": \"xcf4a96cc25eceed0\", \"perseus_api_major_version\": null}", "{\"sha\": \"b134b48b8ca6f3d933902dd014c3d924c9f0b52c\", \"live\": true, \"id\": \"xc04eda8cbe357325\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e089ef0d629d7aa731f151b35fbf4ff79cbd5b57\", \"live\": true, \"id\": \"x60010af7b97f90b2\", \"perseus_api_major_version\": null}", "{\"sha\": \"3e4677e1e88bb53c8c6bf881715ba7c4f7bce0b2\", \"live\": true, \"id\": \"x5fc9f6a496659c82\", \"perseus_api_major_version\": null}", "{\"sha\": \"b4a8a261ca47235acd8926c4881137ece7fb2561\", \"live\": true, \"id\": \"x3374f84cf5e41211\", \"perseus_api_major_version\": null}", "{\"sha\": \"e1cf51abafa0a2c39faf647156e74a8c38b64489\", \"live\": true, \"id\": \"x9d8cf0f7f16b09a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"2f166163a4e4bf2a4cb705a802143037b90f3929\", \"live\": true, \"id\": \"xcbf15b3c48c5cd54\", \"perseus_api_major_version\": null}", "{\"sha\": \"e9681283fb6347dc35139f9c81e626034fa2dc0e\", \"live\": true, \"id\": \"x9c8ba0447da1c637\", \"perseus_api_major_version\": null}", "{\"sha\": \"3d56bc71c80fe1b82542090b4ff92f73955d5344\", \"live\": true, \"id\": \"xe26a707efc0f048a\", \"perseus_api_major_version\": null}", "{\"sha\": \"b96426623ce87c07478bf3e5ca2c031ede7e7903\", \"live\": true, \"id\": \"x0f9071aa06d693ce\", \"perseus_api_major_version\": null}", "{\"sha\": \"bb89098af374e01b516f905921d73f018481ed48\", \"live\": true, \"id\": \"x894f1c38fae182a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"804cc92ef2efc440c49f7177378ea2112a728e93\", \"live\": true, \"id\": \"x52f8af06727d971a\", \"perseus_api_major_version\": null}", "{\"sha\": \"883415970fedecc224ecfcc3cb34b01e6bb838a4\", \"live\": true, \"id\": \"x8a2abf29d2e6d005\", \"perseus_api_major_version\": null}", "{\"sha\": \"c6ec910306b8e9cb9ec481a06db71cd06e8ee230\", \"live\": true, \"id\": \"x8cad15c68210b361\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "rewriting-and-interpreting-exponential-functions", "kind": "Exercise", "name": "rewriting-and-interpreting-exponential-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["equivalent-forms-of-expressions-with-variable-exponents"], "exercise_id": "rewriting-and-interpreting-exponential-functions"}, "allegory-and-effect-of-good-and-bad-government-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/allegory-and-effect-of-good-and-bad-government-quiz/", "id": "allegory-and-effect-of-good-and-bad-government-quiz", "display_name": "Lorenzetti, Allegory and Effect of Good and Bad Government (quiz)", "title": "Lorenzetti, Allegory and Effect of Good and Bad Government (quiz)", "all_assessment_items": ["{\"sha\": \"fde2238fcc694843cee943cf5420916ce13f4156\", \"live\": true, \"id\": \"x592da83598091811\", \"perseus_api_major_version\": 0}", "{\"sha\": \"05abda42d5f09656c693ead28307a416e0796af7\", \"live\": true, \"id\": \"xa8aa9b247b4a079e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"65b0e159e07607092bfe8ef75b02352c7d0c2582\", \"live\": true, \"id\": \"xf0f18dd393dc9966\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5a030e0f4825ec1f6cd7de06bd6b7ea0b3ce4d79\", \"live\": true, \"id\": \"x14172a9eddcdbd7d\", \"perseus_api_major_version\": 0}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "allegory-and-effect-of-good-and-bad-government-quiz", "kind": "Exercise", "name": "allegory-and-effect-of-good-and-bad-government-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "allegory-and-effect-of-good-and-bad-government-quiz"}, "divisibility": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-factors-multiples/divisibility/", "id": "divisibility", "display_name": "Divisibility", "title": "Divisibility", "description": "", "basepoints": 17.0, "slug": "divisibility", "kind": "Exercise", "name": "divisibility", "seconds_per_fast_problem": 11.0, "prerequisites": ["prime_factorization"], "exercise_id": "divisibility"}, "exponents_1.5": {"uses_assessment_items": true, "id": "exponents_1.5", "display_name": "Whole number exponents with integer bases", "title": "Whole number exponents with integer bases", "all_assessment_items": ["{\"sha\": \"ac9a75e173b15d1a4d386a8833fa0aeb8fb32ada\", \"live\": true, \"id\": \"x354c0c8504603cf4\"}", "{\"sha\": \"316c66f29eadfce62729d61854b6de628dc46547\", \"live\": true, \"id\": \"xc7c018d8a51968ed\"}", "{\"sha\": \"2a31c07f0b4993e705fd03c0c062a3c304739d7a\", \"live\": true, \"id\": \"x221a35ce7337bbc0\"}", "{\"sha\": \"3adea8c40f936538407408c0da981adb7047ca37\", \"live\": true, \"id\": \"x658ce0e343efbf84\"}", "{\"sha\": \"a81ed1d2489a9f52f172f15a91adedff6db667f6\", \"live\": true, \"id\": \"xcfc849c0498a7783\"}", "{\"sha\": \"ecd2c2d7003dad0a5c8bbc3fcc5130b5b6446ae8\", \"live\": true, \"id\": \"x22e852fca8578242\"}", "{\"sha\": \"489c2e85909ae77fc13c91846aa5c59ee2f23c4a\", \"live\": true, \"id\": \"x7707b4141cc64d50\"}", "{\"sha\": \"411bc8c796c78b8359ac20fa26f382a650c864ff\", \"live\": true, \"id\": \"xe2600d0915771e7f\"}", "{\"sha\": \"dae20329ada2f9d7b2859f383b0286e70e52d190\", \"live\": true, \"id\": \"x47ddc4996d77f19a\"}", "{\"sha\": \"851307c7d31090fa43c27e24ad755a689887931c\", \"live\": true, \"id\": \"xfe15b1e228d87dd6\"}", "{\"sha\": \"4a18b1c7614b838b336b88720e18d1ab3373b2a6\", \"live\": true, \"id\": \"x0aad1be3512c95c7\"}", "{\"sha\": \"464421b22c4a290678a44579334174af692c6ccd\", \"live\": true, \"id\": \"x2a59f2fb44ef0328\"}", "{\"sha\": \"6cf3319a9370838eb601e3f35e130330d7ba0151\", \"live\": true, \"id\": \"xd8a8784c4dd319fe\"}", "{\"sha\": \"802d81a402bd94a3220e50b6a20a317708d97c5e\", \"live\": true, \"id\": \"xce14cfa643f89260\"}", "{\"sha\": \"0e4fceff227273b6bf08439e4633c43201b34f02\", \"live\": true, \"id\": \"xc3e29e5b5a437d07\"}", "{\"sha\": \"776dad7af3f658fd186ac16a9b7054cd814a0d99\", \"live\": true, \"id\": \"x38a24ff666471ad4\"}", "{\"sha\": \"ce9f3b07c299cd48761c03105aeb57a36d77d2a7\", \"live\": true, \"id\": \"x6ab17dfba30873ce\"}", "{\"sha\": \"7b19e99ebaba3456b731eb8e97c1f233fa68812b\", \"live\": true, \"id\": \"x79ce97cec030947d\"}", "{\"sha\": \"4cc3881aa46e669ed5a4cc6046a94791bcdcab24\", \"live\": true, \"id\": \"x6bd21a5e7470cff3\"}", "{\"sha\": \"a3541c3ee5149984a2787c9fb0a27eb48ebcad18\", \"live\": true, \"id\": \"x2d53e4c8420c139c\"}", "{\"sha\": \"22726269878663fe1d6e03b5c5943a2181520ba9\", \"live\": true, \"id\": \"xac124164d2c85abf\"}", "{\"sha\": \"24346e25e60b71667f7a7d4d10f6a9882f73cae9\", \"live\": true, \"id\": \"x0b6f745540e9d066\"}", "{\"sha\": \"8fb476be2c5e1d5ef36ec7922dcaa84785a0c2d1\", \"live\": true, \"id\": \"x9ddb70702f6c7094\"}", "{\"sha\": \"8d6c69adedee462ed74ab35dc17ce3e1f3660e82\", \"live\": true, \"id\": \"xedc1621fea439c5a\"}", "{\"sha\": \"f5d78282a29dee46efbf2a3743f35c3a192be7fa\", \"live\": true, \"id\": \"xefd54edd785a9788\"}"], "description": "Practice raising positive and negative numbers (integers only) to whole number powers. Watch out for mischievous negative signs that aren't really part of the base!", "basepoints": 10.0, "path": "exponents_15/", "slug": "exponents_15", "kind": "Exercise", "name": "exponents_1.5", "seconds_per_fast_problem": 4.0, "prerequisites": ["positive_and_zero_exponents", "multiplying_and_dividing_negative_numbers"], "exercise_id": "exponents_1.5"}, "byzantine-art": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/byzantine1/quiz-byzantine/byzantine-art/", "id": "byzantine-art", "display_name": "Byzantine art (quiz)", "title": "Byzantine art (quiz)", "all_assessment_items": ["{\"sha\": \"d20eaafc3a7e7271b683ed2d14ee6b07769edb90\", \"live\": true, \"id\": \"xfa480389\"}", "{\"sha\": \"d2269a06fb4a12136ac59495b8ac6f8b73ffb6b8\", \"live\": true, \"id\": \"xbb3033ff\"}", "{\"sha\": \"ab473a296269323ab2d8ada4425cdfdd90d3273b\", \"live\": true, \"id\": \"xec142272\"}", "{\"sha\": \"05d3f7265ac189c548760907555d4ffb28f93aef\", \"live\": true, \"id\": \"xf31dcffb\"}", "{\"sha\": \"57cae18052a63baba5c4b615b83ba5bbc5b92eb5\", \"live\": true, \"id\": \"xfbb4e4fb\"}", "{\"sha\": \"ebff9d4eafa3789a578d6b6080002e0b26536a9b\", \"live\": true, \"id\": \"x0ba66d32\"}", "{\"sha\": \"ee47caa21338a888ce105ef62b1a52c9dfe9584d\", \"live\": true, \"id\": \"xa2c8ffe1\"}", "{\"sha\": \"d46875edc1f55098caaf1bc1ad494195f81a02b0\", \"live\": true, \"id\": \"xf0f98eba\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "byzantine-art", "kind": "Exercise", "name": "byzantine-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "byzantine-art"}, "understanding-inverse-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/understanding-inverse-functions/", "id": "understanding-inverse-functions", "display_name": "Understanding inverses of functions", "title": "Understanding inverses of functions", "all_assessment_items": ["{\"sha\": \"c0bb7ac4c3c73d3eecf5fc02f756ba8d03db2b14\", \"live\": true, \"id\": \"xfcc45ff44e4bcbf7\"}", "{\"sha\": \"ee75a0f61645477de73692cc45a115cce2056d77\", \"live\": true, \"id\": \"xdec1789e13ffdf2f\"}", "{\"sha\": \"e0281e9b5ffd5005c31ad53dbf4a6ee113ce62c2\", \"live\": true, \"id\": \"x66145cc2e82de053\"}", "{\"sha\": \"03d94aa00ba4bc485d62abd3f6d2af6cba4ef730\", \"live\": true, \"id\": \"x87c8353098df4e05\"}", "{\"sha\": \"48a561626fb5d4919687968e2a8d219fc82b5cde\", \"live\": true, \"id\": \"x3d4b7779e3e82b83\"}", "{\"sha\": \"a86c9f72d37394ac3815a33efe4720b9effd79b1\", \"live\": true, \"id\": \"xed1d3cb406511384\"}", "{\"sha\": \"185093549c6c432da0d5692759e2aca51e7dbccf\", \"live\": true, \"id\": \"x55034e9ac430ff6d\"}", "{\"sha\": \"de97cedb7de1e9d0354b6e69cfe836f2ff8c7dc8\", \"live\": true, \"id\": \"x49827b671f3df579\"}", "{\"sha\": \"d6d7e8c4e6bd00d8caa68c1f7819f927b816d5e3\", \"live\": true, \"id\": \"xd938ba7e08e3da63\"}", "{\"sha\": \"a447452921601ed94b9d593c4028d0616d87fbbc\", \"live\": true, \"id\": \"xd3606fbb55ee21d5\"}", "{\"sha\": \"14f32c9d33dd3674e3a51832efb9dffcaad7d880\", \"live\": true, \"id\": \"x8964121ec644a7e4\"}", "{\"sha\": \"08e8f152c002b59afb18bdc736f1cd11857b2645\", \"live\": true, \"id\": \"xcab47366b7a84011\"}", "{\"sha\": \"30686159c5c27c037555a5b3540386b9750a933a\", \"live\": true, \"id\": \"x77505f5b8df7b298\"}", "{\"sha\": \"df03c3a3b8273eb14acbee1f5fdec8b7d6cfead1\", \"live\": true, \"id\": \"xfeda5fdce1bb1d48\"}", "{\"sha\": \"84c4a4c4cc9f728464738f0885e3bcfd8cffe23b\", \"live\": true, \"id\": \"xcd049d0f578bc214\"}", "{\"sha\": \"70949bbe029a99039f2127a4f4ad28a6e862e204\", \"live\": true, \"id\": \"xa9545adc117e66f2\"}", "{\"sha\": \"c535311294b9e36cb9d7e259332e4b42b4853e19\", \"live\": true, \"id\": \"x06948b3c7f5c1182\"}", "{\"sha\": \"e1a04ab71a10a655da327aa1849c6e589099ca04\", \"live\": true, \"id\": \"x1d941180f03f4663\"}", "{\"sha\": \"40cc183e91923485ee2b4ff088877f657396e639\", \"live\": true, \"id\": \"x6ea806e7a6f32a31\"}", "{\"sha\": \"419c19f21748eb1d3df43988bb092a37a86d3f95\", \"live\": true, \"id\": \"xcf4565bd87e7727b\"}", "{\"sha\": \"cc2641ae53329570b33b93a33a9be50ea1fff848\", \"live\": true, \"id\": \"xcb4d2fbe7076c75d\"}"], "description": "", "basepoints": 10.0, "slug": "understanding-inverse-functions", "kind": "Exercise", "name": "understanding-inverse-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["inverse-domain-range"], "exercise_id": "understanding-inverse-functions"}, "why-do-we-believe-that-there-are-universal-emotions-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/why-do-we-believe-that-there-are-universal-emotions-/", "id": "why-do-we-believe-that-there-are-universal-emotions-", "display_name": "Why do we believe that there are universal emotions?", "title": "Why do we believe that there are universal emotions?", "all_assessment_items": ["{\"sha\": \"ccc09f4696f7ac311c4f8fe9801cb14eb45f6fff\", \"live\": true, \"id\": \"x5f824f45d3b76d36\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a3ede540f882045a2cc26c8ef4a022fe1200137d\", \"live\": true, \"id\": \"x2036f0e72be4ba1b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc992f0041b444f0492e93ed08f5c875541cca25\", \"live\": true, \"id\": \"xa3bbc52f5b4a2a56\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dcde84e1f5e3e27fdec91729f7cdbd1b5b4a5d4f\", \"live\": true, \"id\": \"xa5c55873c9e7ba1b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"caeeb8bbe91caa41151ace5b036f088d92726aac\", \"live\": true, \"id\": \"xd944d7f673c95b34\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to the universal emotions.", "basepoints": 10.0, "slug": "why-do-we-believe-that-there-are-universal-emotions-", "kind": "Exercise", "name": "why-do-we-believe-that-there-are-universal-emotions-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "why-do-we-believe-that-there-are-universal-emotions-"}, "manipulating-linear-expressions-with-rational-coefficients": {"uses_assessment_items": true, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/manipulating-linear-expressions-with-rational-coefficients/", "id": "manipulating-linear-expressions-with-rational-coefficients", "display_name": "Combining like terms with rational coefficients", "title": "Combining like terms with rational coefficients", "all_assessment_items": ["{\"sha\": \"d09f90d37e3e0a7f23cf099558abc6f0767a8bf6\", \"live\": true, \"id\": \"xcaf2bb6e\"}", "{\"sha\": \"ad04ca42955ad5aee5348cf9d0ff16f5d2d50f61\", \"live\": true, \"id\": \"xd73d536e\"}", "{\"sha\": \"aebdf7575886e1b06369e3bf12d737a129ca63e2\", \"live\": true, \"id\": \"x6db1249e\"}", "{\"sha\": \"8f83f5fdc352e2ccd53f4ff160ab7129b43f6583\", \"live\": true, \"id\": \"x190f023c\"}", "{\"sha\": \"62e361f294724d8cf8c045c855e0a06bbd23230d\", \"live\": true, \"id\": \"x81c40999\"}", "{\"sha\": \"a7669f4a354ba5bd6479ca00b963c8b112389600\", \"live\": true, \"id\": \"x05e0f321\"}", "{\"sha\": \"294e77146f6b1b9f47c19af612b8b5b4c21ab04b\", \"live\": true, \"id\": \"xcc892c88\"}", "{\"sha\": \"7e5e32290fa0388b47e8e8d9042254ec90aea3df\", \"live\": true, \"id\": \"x00d4f385\"}", "{\"sha\": \"cb1676f8eed432772292edd5f8f97100c4064457\", \"live\": true, \"id\": \"xc8432d4d\"}", "{\"sha\": \"d8f488a27a749badf7d2d8c814045d56817791e1\", \"live\": true, \"id\": \"x94b7f1f0\"}", "{\"sha\": \"7b989434abd111f39b06a225d927ae1ed27d14ed\", \"live\": true, \"id\": \"x4ee65a0b\"}", "{\"sha\": \"0885bc185e270fede170caaa1613f57dbcf2920d\", \"live\": true, \"id\": \"x5e9f7ac6\"}", "{\"sha\": \"d011becba7b6620c854a4c9f895642270f685aa4\", \"live\": true, \"id\": \"xfa7d9d9c\"}", "{\"sha\": \"2c27bf3e47e52070817d30cb2b1020e1bd7fdd1e\", \"live\": true, \"id\": \"x05fbcf1d\"}", "{\"sha\": \"10996adc86ed98fde7ab7d9f3d65c5f4a47764e5\", \"live\": true, \"id\": \"x6dc9717d\"}", "{\"sha\": \"bb6d6cb873deb61584b2131b661555ec1adc4ab4\", \"live\": true, \"id\": \"x64da33de\"}", "{\"sha\": \"119c7ba3abb96fa482a816adccb8eb8baabc6ed1\", \"live\": true, \"id\": \"xc5a5b42e\"}", "{\"sha\": \"024cffb868472e648b64547199426023ace57a7d\", \"live\": true, \"id\": \"x4b1cf3ff\"}", "{\"sha\": \"dc997f42465a3868d6cd01179ce1e07f307ae896\", \"live\": true, \"id\": \"x2f39f3df\"}", "{\"sha\": \"1f21cf392d05d561ce56597392ce8affdd8b7032\", \"live\": true, \"id\": \"x3916f7d2\"}", "{\"sha\": \"69146458aa20fcdd7deb64d1ff407eeb3c6def34\", \"live\": true, \"id\": \"xcf915c99\"}", "{\"sha\": \"df2bf2347e67bcccd49200cc23b9eeabc90f454d\", \"live\": true, \"id\": \"xd06f1fdc\"}", "{\"sha\": \"c8b439a0e8e258a48a16b1610f84935673946714\", \"live\": true, \"id\": \"xc3b398f1\"}", "{\"sha\": \"15b786067bdad71374fd1edecd7e1d59af637341\", \"live\": true, \"id\": \"xf85dcd91\"}", "{\"sha\": \"aac76318128921bd157b36047cb40b886833cfea\", \"live\": true, \"id\": \"x043cc6c9\"}", "{\"sha\": \"de9a20c0bf960c218c7f2f70b1fd4165cce3a132\", \"live\": true, \"id\": \"x321126bf\"}", "{\"sha\": \"eb79134928bba00090f40ca099a34a2ff8a4dfa7\", \"live\": true, \"id\": \"xea143555\"}", "{\"sha\": \"1d8ea1bdfb05cc8354df990db5a2c729d9b56dea\", \"live\": true, \"id\": \"x5769196d\"}", "{\"sha\": \"d9da430e46205f0d118169747731c61787cd8e71\", \"live\": true, \"id\": \"x966602d1\"}", "{\"sha\": \"a466130fd4a58d8712b27edabe2754772ae39af0\", \"live\": true, \"id\": \"x21b6b186\"}"], "description": "Practice combining like terms. These problems involve adding and subtracting decimals and fractions.", "basepoints": 10.0, "slug": "manipulating-linear-expressions-with-rational-coefficients", "kind": "Exercise", "name": "manipulating-linear-expressions-with-rational-coefficients", "seconds_per_fast_problem": 4.0, "prerequisites": ["combining_like_terms_2"], "exercise_id": "manipulating-linear-expressions-with-rational-coefficients"}, "ordering-rational-numbers": {"uses_assessment_items": true, "id": "ordering-rational-numbers", "display_name": "Ordering rational numbers", "title": "Ordering rational numbers", "all_assessment_items": ["{\"sha\": \"82cb4802725576ea48b561b24be8060a62e9fe1f\", \"live\": true, \"id\": \"x3af962aa7a90a34d\"}", "{\"sha\": \"0dd51454178e66f75b71d4f3db3558dee288c45b\", \"live\": true, \"id\": \"x3470be7f28478c88\"}", "{\"sha\": \"ceb939b2ae1317b1f9f55581227105b63780e9ee\", \"live\": true, \"id\": \"xe192620e93005bf4\"}", "{\"sha\": \"e59f64bf7aa80dd480ce59667a1e0d8b576040d7\", \"live\": true, \"id\": \"x0ae7fddeedf31f6d\"}", "{\"sha\": \"39e6fbea9531da85a2a64525a13553fff062e739\", \"live\": true, \"id\": \"x87c123f3d1edd339\"}", "{\"sha\": \"4f5b6e47711b6ad1ace2cae255f6bfd49a8beea0\", \"live\": true, \"id\": \"xef175e79c15c9ff6\"}", "{\"sha\": \"4ce6997da44fcbdf9929fd1f8d8b968c9c277c42\", \"live\": true, \"id\": \"x2b6b1dbf9c13b040\"}", "{\"sha\": \"c862cd0dc2a6f13904e30e288c8245ecd91ca8a3\", \"live\": true, \"id\": \"x9a0a6a288c517fc1\"}", "{\"sha\": \"b57ad226ea5663647270804d0c2f7043fbc8e930\", \"live\": true, \"id\": \"x4569adeb5932b73d\"}", "{\"sha\": \"b78ba1eca00e628bc5b3f70719a6e03bc90289e2\", \"live\": true, \"id\": \"x91aa5ca66d1b772e\"}", "{\"sha\": \"a650dcfd7bf0cf97c9e818ab0a3be22ad27dfbb8\", \"live\": true, \"id\": \"xba06af2b4429a09a\"}", "{\"sha\": \"a12e482bbb24c65ee8da1533d9833f0ddb9737d0\", \"live\": true, \"id\": \"x63bdd94f04c2b8f6\"}", "{\"sha\": \"c3abfcf33b608cd86f4e25fd7fd66db25ccc8cda\", \"live\": true, \"id\": \"xd5034ff36fde7cca\"}", "{\"sha\": \"3a0c9892ebeb7c9009632e443baca4e9822f9d82\", \"live\": true, \"id\": \"xab3a62b3f387734e\"}", "{\"sha\": \"e39e3b7e69c377f7577c89697cc3d0f4fd11260c\", \"live\": true, \"id\": \"xe7137b695a5ce725\"}", "{\"sha\": \"8b02c613ae9943172ae5fea261720289b8cb5974\", \"live\": true, \"id\": \"x52bc400041735fc4\"}", "{\"sha\": \"a4613472d690b9016a1880cd0fc891992d926276\", \"live\": true, \"id\": \"x3d5828ed37128f54\"}", "{\"sha\": \"f57ca9f302f0aa27c53967c19eaeda86f97ea916\", \"live\": true, \"id\": \"xd323ca0dd427485a\"}", "{\"sha\": \"6b8821bc5ad5b1aab2cf803c8fb5ecd66c783bd4\", \"live\": true, \"id\": \"x2986d0ec36ef2aa8\"}", "{\"sha\": \"916b50a5418e7dfe36932be140077e60ea8a0987\", \"live\": true, \"id\": \"x3958c2bf364eb2c5\"}"], "description": "Practice ordering positive and negative fractions and decimals.", "basepoints": 10.0, "path": "ordering-rational-numbers/", "slug": "ordering-rational-numbers", "kind": "Exercise", "name": "ordering-rational-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["ordering_negative_numbers", "understanding-inequalities-and-the-number-line"], "exercise_id": "ordering-rational-numbers"}, "squeeze-theorem": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/limits_topic/squeeze_theorem/squeeze-theorem/", "id": "squeeze-theorem", "display_name": "Squeeze theorem", "title": "Squeeze theorem", "all_assessment_items": ["{\"sha\": \"02c773e0f0650880daeeaf5e506aba53570a8207\", \"live\": true, \"id\": \"xdf2a42f227eb2d66\", \"perseus_api_major_version\": null}", "{\"sha\": \"5fd67fb1a43bf91e0adbc85fc0a85ed54721db08\", \"live\": true, \"id\": \"x4372688aa267dc4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"3ba0db91ba4b3b66cac259159b6673bf0a1aacc6\", \"live\": true, \"id\": \"xfba0a9151c95ae39\", \"perseus_api_major_version\": null}", "{\"sha\": \"6372e4378db3b832b327e0964bf0d585f0777164\", \"live\": true, \"id\": \"xd35958ef1b92c1e2\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c46bccd7622df7b83e3ce1d6201bb0510ca0d78\", \"live\": true, \"id\": \"x11bd2bbe43428060\", \"perseus_api_major_version\": null}", "{\"sha\": \"51a228501d08eac429d91903cdc6e730e914f481\", \"live\": true, \"id\": \"xdbae2020e9b8d2df\", \"perseus_api_major_version\": null}", "{\"sha\": \"971d65f250ff88af4e18f6e4008bec4a65854935\", \"live\": true, \"id\": \"x852a6453e76d7ca0\", \"perseus_api_major_version\": null}", "{\"sha\": \"f2b583e3e3f979a15bf6e9707933a1b5b95f5cde\", \"live\": true, \"id\": \"x99a55995cbed32b2\", \"perseus_api_major_version\": null}", "{\"sha\": \"fa2b5298cad72ae4a8933d166b13227133211491\", \"live\": true, \"id\": \"xba438957fa71db16\", \"perseus_api_major_version\": null}", "{\"sha\": \"00168a30516639b5f898864dc10d6378b5009895\", \"live\": true, \"id\": \"xb5eb510eff1434d7\", \"perseus_api_major_version\": null}", "{\"sha\": \"ce02e63e325d392cc40ce977ef80a21d9840b874\", \"live\": true, \"id\": \"x9b9d2fd5f2fd672f\", \"perseus_api_major_version\": null}", "{\"sha\": \"0a64cf42d47b56b595ebcd298c261c1b39114d65\", \"live\": true, \"id\": \"xd52bb497e1b1257b\", \"perseus_api_major_version\": null}", "{\"sha\": \"c18933d8f903d5bca5ad721491cd8c3f0fc008ba\", \"live\": true, \"id\": \"x129cfa86ed9044b4\", \"perseus_api_major_version\": null}", "{\"sha\": \"1a583d9b2e7861849bd1f4ed35d49caaeecd8a49\", \"live\": true, \"id\": \"x4bf1525e3c0c435e\", \"perseus_api_major_version\": null}", "{\"sha\": \"b062f673f34e3765a495fffc8127bf6703bee630\", \"live\": true, \"id\": \"x8a948b79f4be44ff\", \"perseus_api_major_version\": null}", "{\"sha\": \"5d872e8fe2b3f058b7ff2f117d1686ffcbce24f8\", \"live\": true, \"id\": \"x4340be31013b0c13\", \"perseus_api_major_version\": null}", "{\"sha\": \"f79df4a6a7c8a25047e615d64961ac75b727df7d\", \"live\": true, \"id\": \"xd9ed09fdf149adbd\", \"perseus_api_major_version\": null}", "{\"sha\": \"f0fbd25b8892d81909e1242d74fc709a4afb7e6c\", \"live\": true, \"id\": \"x39341d809515dfe5\", \"perseus_api_major_version\": null}", "{\"sha\": \"08af8aa8e4a9be4ba2e06732b4192102ee7931e1\", \"live\": true, \"id\": \"x6488a185e88e3f6d\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5594c90b189cc2de01970210b86c05aa683e0d0\", \"live\": true, \"id\": \"xc35d8e4c80597606\", \"perseus_api_major_version\": null}", "{\"sha\": \"6e7bceba8900453ffd9458ea605e533456d8d611\", \"live\": true, \"id\": \"x0c9796dadda7fc3a\", \"perseus_api_major_version\": null}", "{\"sha\": \"e073e768215ea73339ff36c4758f148c1d05129f\", \"live\": true, \"id\": \"x19bd525e6ef7f210\", \"perseus_api_major_version\": null}", "{\"sha\": \"6e885dbf86a1747896423235a4666b750aa220b3\", \"live\": true, \"id\": \"x8e0d71b3d0692010\", \"perseus_api_major_version\": null}", "{\"sha\": \"ae33693f829239b72b2b65b3516533501886d8df\", \"live\": true, \"id\": \"xc2bf10d7155487bd\", \"perseus_api_major_version\": null}", "{\"sha\": \"b9e400b242351dbf002e2fefbc2d3ff92262db7f\", \"live\": true, \"id\": \"xb0ee64c79dff54df\", \"perseus_api_major_version\": null}", "{\"sha\": \"69b29d1c8e54ce77fffe5dff44515d1ea6631aa1\", \"live\": true, \"id\": \"xc70633140ae8e412\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fd7ef460e58215e9bc676933cc2d29f2b76f1f71\", \"live\": true, \"id\": \"x2b04a0fc43715813\", \"perseus_api_major_version\": null}", "{\"sha\": \"24e8ab989c5bc3076b504a9dcc7187555f56a693\", \"live\": true, \"id\": \"xb13ce4647b51cbc8\", \"perseus_api_major_version\": null}", "{\"sha\": \"cdffea6a716dd3a44023a2e01986fd184301777a\", \"live\": true, \"id\": \"x85ce90fd160eca59\", \"perseus_api_major_version\": null}", "{\"sha\": \"18f228e53b54c629ebd47c365d5bc7c65e88a919\", \"live\": true, \"id\": \"x02d312cbc0e6cc93\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 20.0, "slug": "squeeze-theorem", "kind": "Exercise", "name": "squeeze-theorem", "seconds_per_fast_problem": 16.0, "prerequisites": ["two-sided-limits-using-algebra"], "exercise_id": "squeeze-theorem"}, "manuscripts-overview-quiz": {"uses_assessment_items": true, "id": "manuscripts-overview-quiz", "display_name": "Manuscripts overview quiz", "title": "Manuscripts overview quiz", "all_assessment_items": ["{\"sha\": \"018aa10621c69915d1358e5ce2435f63e2886b85\", \"live\": true, \"id\": \"xe20ffa46e2c5251d\"}", "{\"sha\": \"4d185646fc75d651981643d5422d33bb7d0620a1\", \"live\": true, \"id\": \"x367c800ba297bf67\"}", "{\"sha\": \"d6d1503758b831e3dd3a6860f57051062be51b7f\", \"live\": true, \"id\": \"x926cbdd94bd7e09b\"}", "{\"sha\": \"0443eeaca41b17122eb4d6f5d6644b8eff2fb67e\", \"live\": true, \"id\": \"x3490d54151d1a23f\"}", "{\"sha\": \"cb4e6ddada773dfedc399d501f3b171d7a500b71\", \"live\": true, \"id\": \"x1e582ceae07646d1\"}", "{\"sha\": \"5275cbbb0ccd9d4792ec993473f0c8f037a3097e\", \"live\": true, \"id\": \"x56ca972fc4ebfd88\"}", "{\"sha\": \"6e6a36285e4d1b853b1c4530f143eb49a143d04a\", \"live\": true, \"id\": \"x59364b95856c9838\"}", "{\"sha\": \"b72ae1d09ae817f89388334f76efbf2efddd1d63\", \"live\": true, \"id\": \"x6d8a144557f0d71f\"}", "{\"sha\": \"0de3d1a0b08d3a1735503e6f2a2db3151f809990\", \"live\": true, \"id\": \"x77d12356f9d8b20e\"}", "{\"sha\": \"7391063301c30b065e27c436b505d44bf03c8ffa\", \"live\": true, \"id\": \"xe41d31139ce99bf5\"}", "{\"sha\": \"d63368e129f64a2d4e7b383577c3365bee5ee5e7\", \"live\": true, \"id\": \"xe9b2ae77db53ad78\"}"], "description": "A quiz on an overview of illuminated manuscripts", "basepoints": 12.0, "path": "manuscripts-overview-quiz/", "slug": "manuscripts-overview-quiz", "kind": "Exercise", "name": "manuscripts-overview-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "manuscripts-overview-quiz"}, "equivalent-fractions-with-denominators-of-10-and-100": {"uses_assessment_items": true, "id": "equivalent-fractions-with-denominators-of-10-and-100", "display_name": "Equivalent fractions with denominators of 10 and 100", "title": "Equivalent fractions with denominators of 10 and 100", "all_assessment_items": ["{\"sha\": \"b3f8fd78db8af770ca99a1e87230d91afdadfedd\", \"live\": true, \"id\": \"xe12b4257f6e994b6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7f190737b1a220218adac9b9a9cd720ec0d20b5\", \"live\": true, \"id\": \"x864baa16bbaaac43\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9f8c6aa6d4f74c3942e04cd7c63c91f964c2067\", \"live\": true, \"id\": \"xfa07ae56df521c21\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1b472a3558586ccc2d02b45706ef2c51049c2c4d\", \"live\": true, \"id\": \"x32d10bfe4e910f08\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"add3df28b4c1d6ef6f05079f70d0c341d7811c6a\", \"live\": true, \"id\": \"x5e04b7b66a449b65\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65bfcf83be1a861dd539858dd19993980886dd58\", \"live\": true, \"id\": \"xd92ac651c2c6ae82\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"89bfd0c45c09ebc4f2e7572d218120a13f773eb8\", \"live\": true, \"id\": \"x040e94502eb55273\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a393ea50cb9c3425c8014cf8e34d1ffabd4e325\", \"live\": true, \"id\": \"x3a6306a9319045b3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"49952a17ec1bcad0f10f613879fd618e1b133cec\", \"live\": true, \"id\": \"x5a55c9cdc880496f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"836c84e1b1c88c8f0cc9d8b9439b41a23579f813\", \"live\": true, \"id\": \"xe0228bdbcee10ade\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9a4428b21247c46a5648bb2df240bcc24e3a649\", \"live\": true, \"id\": \"x01bd9d43cff0c1ff\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d5aec6b885f792e6ac48fade3a0e2f826c0d370d\", \"live\": true, \"id\": \"x1e1639ea4203d43f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cfe5d151fa31f7effeead500e6773b2fa730a9d0\", \"live\": true, \"id\": \"x2b24e67fc55921df\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4eb580a139affb124533f52a578cc13f3d2cecdc\", \"live\": true, \"id\": \"x86d2f2462fec61fd\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65a3ec58777330be9d5c31b430cea61fa3e41b46\", \"live\": true, \"id\": \"xc7300e6675f9b4af\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c18155c46b4e6aa005dc6f6db28400676324752d\", \"live\": true, \"id\": \"xf431a4eecddda23f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"860e489262aadeecc666aa5ff0042a5cf712eafe\", \"live\": true, \"id\": \"x6f4a369c0b63f0e8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4cacf6bc2e34b5a70ad28b7575d578e8721c7819\", \"live\": true, \"id\": \"xcc1571447712d237\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca56e0f5bfc5b607b06140c2f8228c4568390667\", \"live\": true, \"id\": \"x53769de55d2681ce\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7be4c75e710d1df3b37cdd8fecb3e2eaea48fc8b\", \"live\": true, \"id\": \"xd46efa643448ac83\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Practice writing equivalent fractions with denominators of 10 and 100.", "basepoints": 10.0, "path": "equivalent-fractions-with-denominators-of-10-and-100/", "slug": "equivalent-fractions-with-denominators-of-10-and-100", "kind": "Exercise", "name": "equivalent-fractions-with-denominators-of-10-and-100", "seconds_per_fast_problem": 4.0, "prerequisites": ["equivalent-fractions-with-denominators-of-10-and-100-intuition"], "exercise_id": "equivalent-fractions-with-denominators-of-10-and-100"}, "mendelian-genetics-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/mendelian-genetics/mendelian-genetics-questions/", "id": "mendelian-genetics-questions", "display_name": "Mendelian genetics questions", "title": "Mendelian genetics questions", "all_assessment_items": ["{\"sha\": \"0bbed89d67a328ff6b19db7dba39777b4e7c33a0\", \"live\": true, \"id\": \"x18ccb76624cb2a2d\"}", "{\"sha\": \"09843160c032dedc3c6c112829e68f7913156cea\", \"live\": true, \"id\": \"x9d8dff254075aa37\"}", "{\"sha\": \"6de243138a5e9fbbe45535e9f53bbb0151773de3\", \"live\": true, \"id\": \"xb52d1ee35618a411\"}", "{\"sha\": \"0c1be359ac2fc179fac35e3f24969f7cee2322ae\", \"live\": true, \"id\": \"x4f76e0f832eb19d8\"}", "{\"sha\": \"e3910fb47d940e253439fde472c3e357131242b5\", \"live\": true, \"id\": \"x8073059099a52993\"}", "{\"sha\": \"c5322b7f12bd905c1cf46b8e5ef50e91de649539\", \"live\": true, \"id\": \"x3389bb0567c84f4e\"}", "{\"sha\": \"9144ff1335b5170501bf4090e0acd9407c7d4fda\", \"live\": true, \"id\": \"x168fc624d9ad2a98\"}", "{\"sha\": \"efac16b9e50e968d3e8b3dbc0dc4349f07d4aebe\", \"live\": true, \"id\": \"xa54e2230f15db7b6\"}", "{\"sha\": \"473d6a2c9f207b2e97b08c0d4f4280ff8b3a69ec\", \"live\": true, \"id\": \"x624182c42612bef0\"}", "{\"sha\": \"7e734fa97724b7ccbc790dd714aa096d1537b87f\", \"live\": true, \"id\": \"xd77be5039071c9e1\"}", "{\"sha\": \"c07c57e58858f4dd577876f8c3e5f497ea549967\", \"live\": true, \"id\": \"x8b450ea1d5dd668f\"}", "{\"sha\": \"d559bedd204f6996f40d78f7c09662765afb36ae\", \"live\": true, \"id\": \"xae037276eedea616\"}"], "description": "Mendelian genetics questions", "basepoints": 10.0, "slug": "mendelian-genetics-questions", "kind": "Exercise", "name": "mendelian-genetics-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mendelian-genetics-questions"}, "interpreting-domain": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/domain-and-range/interpreting-domain/", "id": "interpreting-domain", "display_name": "Domain of modeling functions", "title": "Domain of modeling functions", "all_assessment_items": ["{\"sha\": \"0a0fa0ad7b73f009af337d7040ee734e57679061\", \"live\": true, \"id\": \"x6f3182844e7f3282\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"81a5065028685b3a802da40ad7231d1111e194bd\", \"live\": true, \"id\": \"x285418b01d0362e8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cacef61aff55116ac4cc076588be8d0daced7502\", \"live\": true, \"id\": \"x58d1300c095daa40\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b4d3a1cc5e1420468863794584492f57912b0ca3\", \"live\": true, \"id\": \"xeb0f49d1fd4b4378\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41835c0bad730bbca40a0431f59923ce67121747\", \"live\": true, \"id\": \"x83e6690c0b3a9249\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"050a660834a544a5032411fffe6d7a9bfffa8826\", \"live\": true, \"id\": \"x20c7de56b2289a5f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fcd6b734b82f5f75e42512e611e613fc96e1397a\", \"live\": true, \"id\": \"xf44cfe7c1d80e6a8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6f69ea1b4f8571041d42253c33d315a17a2be51e\", \"live\": true, \"id\": \"xb3f78ddd4d3d7166\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"02838a7175627bda92c616de8e6c10003b937bd0\", \"live\": true, \"id\": \"x311b032c354b4aa5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5b4ac57d480cd94afcd0b97b5fdd7ddadb0edfe0\", \"live\": true, \"id\": \"xe90292177f5355d4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c2c873b1c0f9ee06957e8c479bf9542ce08f6e1e\", \"live\": true, \"id\": \"xa39f3d83cf352a75\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"43591943a567f06bbbc2252da5f2b1133fa80c2f\", \"live\": true, \"id\": \"x62dc5cfb3b848fba\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4fbbffb87f9d09f47cca2c0b354c1991b260ea20\", \"live\": true, \"id\": \"x57286582343bf88a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fbd09cc3e1145c34872b4b2347d272a5add13fa0\", \"live\": true, \"id\": \"xfcd2b7e97ae981f8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9985ceaca7536a7000c9188c42433451628001e2\", \"live\": true, \"id\": \"x487d62b27bdd80f5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0085a014a83820505009d541bd6d9b83e214ccef\", \"live\": true, \"id\": \"x9d87b99a6162d598\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e67a91f831dfdb97494e61f25ae8509f4a7d750c\", \"live\": true, \"id\": \"xb8a04e9e751b50c9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"136fddb092e40be077dda0621eedc479d7be32e6\", \"live\": true, \"id\": \"x548e9ec59a6f8c83\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fd948eb2676d802166fbc7a2750bd2ae0c21ade0\", \"live\": true, \"id\": \"xb78622743bdd8595\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eaf38574aa2365112f64a7f3569f994c364fa001\", \"live\": true, \"id\": \"x9b18cb55b0bdedc2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Use information about a situation to figure out the domain of the function which models it.", "basepoints": 10.0, "slug": "interpreting-domain", "kind": "Exercise", "name": "interpreting-domain", "seconds_per_fast_problem": 4.0, "prerequisites": ["domain-of-algebraic-functions", "function-notation-in-context"], "exercise_id": "interpreting-domain"}, "solving_for_a_variable": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solving_for_variable/solving_for_a_variable/", "id": "solving_for_a_variable", "display_name": "Solving equations in terms of a variable", "title": "Solving equations in terms of a variable", "description": "Solve an equation in terms of a variable.", "basepoints": 28.0, "slug": "solving_for_a_variable", "kind": "Exercise", "name": "solving_for_a_variable", "seconds_per_fast_problem": 54.0, "prerequisites": ["multistep_equations_with_distribution", "understanding-the-process-for-solving-linear-equations"], "exercise_id": "solving_for_a_variable"}, "solving-problems-with-similar-and-congruent-triangles": {"uses_assessment_items": true, "path": "khan/math/geometry/similarity/cc-solving-prob-similar-tri/solving-problems-with-similar-and-congruent-triangles/", "id": "solving-problems-with-similar-and-congruent-triangles", "display_name": "Solving problems with similar and congruent triangles", "title": "Solving problems with similar and congruent triangles", "all_assessment_items": ["{\"sha\": \"134bf3683be9bc72423d9acc5fa2d20cf48d64cf\", \"live\": true, \"id\": \"x7c9eb2068d8bef70\", \"perseus_api_major_version\": null}", "{\"sha\": \"3d94b366651920694f94209de40486c2e52c4242\", \"live\": true, \"id\": \"x28229935e8fc1d80\", \"perseus_api_major_version\": null}", "{\"sha\": \"fd64636f4f4b6deb9af71e0037c5d27061ef2a6d\", \"live\": true, \"id\": \"xf2f7a525a5c2f8b6\", \"perseus_api_major_version\": null}", "{\"sha\": \"e7bd78409db87c8f9918e73c6973b95766295462\", \"live\": true, \"id\": \"x0561a95c2887d4d3\", \"perseus_api_major_version\": null}", "{\"sha\": \"e28aafe6de1eb9b97648c93f63259a039cfa0c38\", \"live\": true, \"id\": \"x391c21237445880a\", \"perseus_api_major_version\": null}", "{\"sha\": \"0fa5180d115af518b97d897632db8e5bcdc75e3e\", \"live\": true, \"id\": \"xe378d523fed39dd2\", \"perseus_api_major_version\": null}", "{\"sha\": \"1461e1d8de62cfa0dbf909c55084ea8834fdb062\", \"live\": true, \"id\": \"x5fcb53d517770dfb\", \"perseus_api_major_version\": null}", "{\"sha\": \"d9f4a03d3ae31f69c10756a3fe2e8ced25f67b99\", \"live\": true, \"id\": \"x78085f4307324b26\", \"perseus_api_major_version\": null}", "{\"sha\": \"e7d7546c7e77c30e695fe59e74ca986eed447141\", \"live\": true, \"id\": \"x9a7a48b3f59068b5\", \"perseus_api_major_version\": null}", "{\"sha\": \"aa44956b1e0cb4f0e33d1cbb6187c2b3404e2027\", \"live\": true, \"id\": \"xebf7cc45b9b03d9f\", \"perseus_api_major_version\": null}", "{\"sha\": \"5fae8cd9d5ab1e07e41ee021014919656d26b9ee\", \"live\": true, \"id\": \"xf12fde3e92d6b1bd\", \"perseus_api_major_version\": null}", "{\"sha\": \"93db29c3f0d17db326aed15d748f757235efe4fc\", \"live\": true, \"id\": \"x282fd37df152d125\", \"perseus_api_major_version\": null}", "{\"sha\": \"b793fad0859a3afa569a347f9e3a7e99da371b49\", \"live\": true, \"id\": \"x9e187fcc52fb5197\", \"perseus_api_major_version\": null}", "{\"sha\": \"9e330eee6eafef0db0222eb6bc66633ae2c55923\", \"live\": true, \"id\": \"x2925aa8ccc0b968c\", \"perseus_api_major_version\": null}", "{\"sha\": \"32e92785e2c28c556a1cf2c89c111324fb3773d9\", \"live\": true, \"id\": \"x74f4b358f6a66fd4\", \"perseus_api_major_version\": null}", "{\"sha\": \"5ce3f4a770b099ae38d1a381d418f8f6bd2299c7\", \"live\": true, \"id\": \"x8671edb73c17dd94\", \"perseus_api_major_version\": null}", "{\"sha\": \"261268e3fa0d1da77fadd8a1dc3eeee71f52aa28\", \"live\": true, \"id\": \"x3cef2c75db72ba3f\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed4adab26921746f607f62f33d94420d05325f41\", \"live\": true, \"id\": \"x5f63209fdae15fbd\", \"perseus_api_major_version\": null}", "{\"sha\": \"05684ec7b8ac0d8dc4f82e4e9285707bab8efbad\", \"live\": true, \"id\": \"x378c8e4cc00de419\", \"perseus_api_major_version\": null}", "{\"sha\": \"4817074cb0b19da6818a3583f00c9d7488b16384\", \"live\": true, \"id\": \"x17f4c497c4eed3b1\", \"perseus_api_major_version\": null}", "{\"sha\": \"d6818c9b92753a5a7ea644e5d29fbeafbe7501ff\", \"live\": true, \"id\": \"xbd082e4d23da1c9f\", \"perseus_api_major_version\": null}", "{\"sha\": \"3e40e2052bc4c5d41a74c5ca0d691070ec532c5b\", \"live\": true, \"id\": \"xf9c7b6da919507e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"ec7470b3630109cceae7335926f2d819ec52893d\", \"live\": true, \"id\": \"xad0aaf823848919a\", \"perseus_api_major_version\": null}", "{\"sha\": \"c1398578bccb65912ce5e93a78770ea53445d2f4\", \"live\": true, \"id\": \"x7935c11cc832b748\", \"perseus_api_major_version\": null}", "{\"sha\": \"fe96779227552ff0e4c41b6c9de65caf985b3df5\", \"live\": true, \"id\": \"x30fbebdf03246afc\", \"perseus_api_major_version\": 3}", "{\"sha\": \"066fd3ebc2b608dd28dd0a4bd0135b8fe605fe37\", \"live\": true, \"id\": \"xc036159b0a52587b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"248c3ac82cff9a0f011c67b6b226af773af85d96\", \"live\": true, \"id\": \"xaf46eed57f926e30\", \"perseus_api_major_version\": null}", "{\"sha\": \"a86c7375944ef7ced3368b61894bc36eebcc723f\", \"live\": true, \"id\": \"xd5a7a3ef653e6ab4\", \"perseus_api_major_version\": null}", "{\"sha\": \"7db945a1bff9c2a48f02a5c83eda6ee7dd03b632\", \"live\": true, \"id\": \"xac6902c6b48f28e9\", \"perseus_api_major_version\": null}", "{\"sha\": \"72497ecc5d4c1b4adf07188c547f113e76aba160\", \"live\": true, \"id\": \"x2cbf374151084856\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "solving-problems-with-similar-and-congruent-triangles", "kind": "Exercise", "name": "solving-problems-with-similar-and-congruent-triangles", "seconds_per_fast_problem": 4.0, "prerequisites": ["solving_similar_triangles_2", "congruent_triangles_2"], "exercise_id": "solving-problems-with-similar-and-congruent-triangles"}, "comparing_absolute_values": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/abs-value-pre-alg/comparing_absolute_values/", "id": "comparing_absolute_values", "display_name": "Comparing absolute values", "title": "Comparing absolute values", "description": "Practice comparing the absolute values of numbers.", "basepoints": 12.0, "slug": "comparing_absolute_values", "kind": "Exercise", "name": "comparing_absolute_values", "seconds_per_fast_problem": 5.0, "prerequisites": ["absolute_value"], "exercise_id": "comparing_absolute_values"}, "ordering_decimals": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/ordering_decimals/", "id": "ordering_decimals", "display_name": "Ordering decimals", "title": "Ordering decimals", "description": "Order 5 decimals with digits up to the thousandths from least to greatest.", "basepoints": 10.0, "slug": "ordering_decimals", "kind": "Exercise", "name": "ordering_decimals", "seconds_per_fast_problem": 4.0, "prerequisites": ["comparing_decimals_2"], "exercise_id": "ordering_decimals"}, "approximating-irrational-numbers-without-a-calculator": {"uses_assessment_items": true, "id": "approximating-irrational-numbers-without-a-calculator", "display_name": "Comparing irrational numbers", "title": "Comparing irrational numbers", "all_assessment_items": ["{\"sha\": \"e1fb28b7ea4d0e6ae775c3870fa4a5f3b59b27b7\", \"live\": true, \"id\": \"x75a5893f11c1e5f8\"}", "{\"sha\": \"a1986a5df070706e638d6c638d50ac21d8b3e04a\", \"live\": true, \"id\": \"x86aaf35c7a4370a9\"}", "{\"sha\": \"65c15caa3f9f4726b1c9982da5f21bf8358e471f\", \"live\": true, \"id\": \"xb846237172363521\"}", "{\"sha\": \"72aab0eba5e410597173a470fc9e1fcfa951e617\", \"live\": true, \"id\": \"x4667532b46f1799f\"}", "{\"sha\": \"7f41c549816db45ee06e868bc5aae0b7474deacc\", \"live\": true, \"id\": \"x3d69b9883a6bc092\"}", "{\"sha\": \"fb8f2dd8df080f8463babcb83f067af0206c0597\", \"live\": true, \"id\": \"xf965b7bf99449fd1\"}", "{\"sha\": \"dc2c2df07ab54706665c6bc479ade5d32d52c4be\", \"live\": true, \"id\": \"x9df4be33abb4177a\"}", "{\"sha\": \"898e97200035f972c24ebed2af51421ea5f068db\", \"live\": true, \"id\": \"xf49b38785f496f2c\"}", "{\"sha\": \"f5f12e9ac77059b691d64d3900eeda316860d9fa\", \"live\": true, \"id\": \"xb2d01f5351f1f258\"}", "{\"sha\": \"6aff15971ef182ee742bbcff09f59c2145b4a172\", \"live\": true, \"id\": \"x6649c711f797ef18\"}", "{\"sha\": \"01e670824140c93fd45553eb5592299f6e054672\", \"live\": true, \"id\": \"x582a9ce54c3958fd\"}", "{\"sha\": \"fa5767a9b25ddb7b788e0989b2161cbfadc1af43\", \"live\": true, \"id\": \"xc7912231695c47b5\"}", "{\"sha\": \"5caa8be4ed5be1bc78d18b77c670ca02e2ad558c\", \"live\": true, \"id\": \"x680c4cf7f60ee44b\"}", "{\"sha\": \"4f3613ba837c04c428d156c019115826ead138ad\", \"live\": true, \"id\": \"x34201c39af120f1d\"}", "{\"sha\": \"6c1c81c3814585bcd71d2958d62fb71715f99359\", \"live\": true, \"id\": \"x8e50d69fde1e4e0e\"}", "{\"sha\": \"6938b610f7eab915de5b2414a231b1d383769bc7\", \"live\": true, \"id\": \"xc39743b17ffec278\"}", "{\"sha\": \"0015d058f518ebbcdf2f3685388bdca0e7c64ad6\", \"live\": true, \"id\": \"x3429db01cec3c4ad\"}", "{\"sha\": \"334975f1eb79d86b8e14720b34240338bd2796cf\", \"live\": true, \"id\": \"x4767eec78e859cbd\"}", "{\"sha\": \"8313159fd1c2ec49a33731b68f2c5d3678b9083c\", \"live\": true, \"id\": \"xea30cb4066fa2394\"}", "{\"sha\": \"203574f7f54ec1015817beb0eac6fbd416b2ba74\", \"live\": true, \"id\": \"x39f3e2fa22bc863d\"}"], "description": "Practice comparing irrational numbers without using a calculator.", "basepoints": 10.0, "path": "approximating-irrational-numbers-without-a-calculator/", "slug": "approximating-irrational-numbers-without-a-calculator", "kind": "Exercise", "name": "approximating-irrational-numbers-without-a-calculator", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing-rational-and-irrational-numbers"], "exercise_id": "approximating-irrational-numbers-without-a-calculator"}, "performing-translations-on-the-coordinate-plane": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-transformations/performing-translations-on-the-coordinate-plane/", "id": "performing-translations-on-the-coordinate-plane", "display_name": "Performing translations", "title": "Performing translations", "all_assessment_items": ["{\"sha\": \"2216a153c212ec2c07dcacc0e9e783818ab397ae\", \"live\": true, \"id\": \"x2f1cf8d81a58f3ce\"}", "{\"sha\": \"d93b5bd3749ede3d98f8dc61a333b19c18fba74e\", \"live\": true, \"id\": \"x45ffed5034c5fc3d\"}", "{\"sha\": \"9d197f65fd2fa770bfdb81b76ccdc3affe799339\", \"live\": true, \"id\": \"xcc201153f06163ca\"}", "{\"sha\": \"10546e97b8072ff4f63c180d647562a78b287f48\", \"live\": true, \"id\": \"x8af04f2b12695ce1\"}", "{\"sha\": \"6a225ff1bd63d6082980d14ec28d695e5a78a10e\", \"live\": true, \"id\": \"xa73dacc93dfcdd71\"}", "{\"sha\": \"c5b47d5386e523a265953a8b97a3b6999cc19b12\", \"live\": true, \"id\": \"x3c59e4a7fc5eb4af\"}", "{\"sha\": \"1d40c93cae2d8c1f39010f75df8fb87932940289\", \"live\": true, \"id\": \"x39b59ef97e26d1b4\"}", "{\"sha\": \"8a7dd9878772e80ee8eb2d44236c06d50f2bb95c\", \"live\": true, \"id\": \"xe553d46ae1dadb3b\"}", "{\"sha\": \"a05f2ac7e3a21c5a4be7c44e28f3c8612f4e8377\", \"live\": true, \"id\": \"xc9d74f45fd65b625\"}", "{\"sha\": \"e41ac9e126ab312c831dfcdde17d18b7731da9d6\", \"live\": true, \"id\": \"xebbcb8560c72b06f\"}", "{\"sha\": \"fa443c03ff129b68cab6904f199ecdaf93f43a83\", \"live\": true, \"id\": \"x8e4b3e165b6db6ba\"}", "{\"sha\": \"72a8a61b0b5108128cf2ae53bd14a9e3f3b24e63\", \"live\": true, \"id\": \"xa3365727ee10eab3\"}", "{\"sha\": \"95771ab4c7f05d8adcf59099777ff55fc19d56bb\", \"live\": true, \"id\": \"xb651151a6eac9094\"}", "{\"sha\": \"4e1ace7535ababd29f9e454b3bf41c26f4017fd4\", \"live\": true, \"id\": \"x1d6a987b81051839\"}", "{\"sha\": \"4afd7a011fbb98478d16c641d4907d3b4683c512\", \"live\": true, \"id\": \"x1e4b04225e24d0c6\"}", "{\"sha\": \"2d7f7e13c2ea4161f77fd2807606aafeb523dbfa\", \"live\": true, \"id\": \"x972410bfc45cfe85\"}", "{\"sha\": \"249cbc3e237587a5608efc21627bc56acf4bf833\", \"live\": true, \"id\": \"x6d98f2149f81ea38\"}", "{\"sha\": \"5e61219fa9264d3adc08552e495984ead34c4ca3\", \"live\": true, \"id\": \"x464e5a812f58f7dd\"}", "{\"sha\": \"3907846047f618dd9a304d256cdd4c4200736879\", \"live\": true, \"id\": \"x947c268cfd8b916b\"}", "{\"sha\": \"b6b781b69d3acbfcae64152ebc481f85ad7e5e6b\", \"live\": true, \"id\": \"xe887b56f6d36665f\"}"], "description": "Use the interactive transformation tool to perform translations.", "basepoints": 10.0, "slug": "performing-translations-on-the-coordinate-plane", "kind": "Exercise", "name": "performing-translations-on-the-coordinate-plane", "seconds_per_fast_problem": 4.0, "prerequisites": ["polygons-in-the-coordinate-plane"], "exercise_id": "performing-translations-on-the-coordinate-plane"}, "hematologic-system-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/hematologic-system-quiz/", "id": "hematologic-system-quiz", "display_name": "Symptoms of low platelet counts", "title": "Symptoms of low platelet counts", "all_assessment_items": ["{\"sha\": \"3c50cc7b6071a7116a8e1cdd4bc0c45e91c6d81f\", \"live\": true, \"id\": \"x69eb3a81768f10c4\"}", "{\"sha\": \"547a911bd8dd791c6c71717e79743d22e481fa27\", \"live\": true, \"id\": \"x5f46d3762da152d9\"}", "{\"sha\": \"8aa3fe0f2a839e2c4273e7694e7fd3880f746207\", \"live\": true, \"id\": \"x5d8e454156d55471\"}", "{\"sha\": \"fe80b61043d98ad59df0175a1dd2e7eee21bb72f\", \"live\": true, \"id\": \"x4d8781d683f37b26\"}", "{\"sha\": \"7c674f060168ffb9a4877d01a13e84d8cbc98cfc\", \"live\": true, \"id\": \"xd4976d1e68a6e320\"}"], "description": "", "basepoints": 10.0, "slug": "hematologic-system-quiz", "kind": "Exercise", "name": "hematologic-system-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "hematologic-system-quiz"}, "properties-of-multiplication-1": {"uses_assessment_items": true, "id": "properties-of-multiplication-1", "display_name": "Properties of multiplication", "title": "Properties of multiplication", "all_assessment_items": ["{\"sha\": \"5f61d39a5e2d48f7288034493b5d11da5bb0b807\", \"live\": true, \"id\": \"xfd89a78842744d75\"}", "{\"sha\": \"ad8761f897a1d3a9478e2175fda113426308e13b\", \"live\": true, \"id\": \"x812253288af6b2be\"}", "{\"sha\": \"b3c724738e6ea687675a824c742347b24876244e\", \"live\": true, \"id\": \"x1da4480aa27a4a13\"}", "{\"sha\": \"b8f5b56be6314bf64781a6b8fe4870a8ffef4e57\", \"live\": true, \"id\": \"x36d1172decd13af3\"}", "{\"sha\": \"9aa7127c95c6f85595fe5e8d75d8f97681c7db19\", \"live\": true, \"id\": \"x1e87421b37bf3961\"}", "{\"sha\": \"14704c28e7bbedb4074bfb2060f99bcfa6d9c52b\", \"live\": true, \"id\": \"xe02a3011301226ee\"}", "{\"sha\": \"cb207c5b68494a0e4c4468c288ad2821a902f5c7\", \"live\": true, \"id\": \"x03a5dfde7afd6d84\"}", "{\"sha\": \"bf5c06998038e9c4682c4359b83a31ddb8f92648\", \"live\": true, \"id\": \"x0211848ea8a30a1d\"}", "{\"sha\": \"ed1e429e7efb702b0dea93fb3c011273964a1e9e\", \"live\": true, \"id\": \"x37e680b1a473156f\"}", "{\"sha\": \"24f57cecaf8dc36ca6f7edcdc874cd377eac3d89\", \"live\": true, \"id\": \"x5e60aec1fe58ac84\"}", "{\"sha\": \"7d7c44c95d77650763ebf8242598cdcf8f2a5f37\", \"live\": true, \"id\": \"xaf295c99886faa31\"}", "{\"sha\": \"f72b138a613b568eed0921270e21fad417feaa2c\", \"live\": true, \"id\": \"x577c222d18e27401\"}", "{\"sha\": \"40054151f400a3ca5e33b0dee55b7a3f2a3c922d\", \"live\": true, \"id\": \"x238e52884106a9fc\"}", "{\"sha\": \"a400264df1867b21eab6ac8d2c062ed5d84a1cb8\", \"live\": true, \"id\": \"xf57524c406e3ade6\"}", "{\"sha\": \"0ed50b874041b2b4685cbae69cb2a8816ecaa1dd\", \"live\": true, \"id\": \"xd95412ec2a365895\"}", "{\"sha\": \"d384eac7e9ff119be590d4ce34cc855436b8e2b0\", \"live\": true, \"id\": \"xee8873ea8928a023\"}", "{\"sha\": \"b6ba1fb1299380c6bec3d787418cdcb02e23c7ba\", \"live\": true, \"id\": \"x50246d87fb9ea69a\"}", "{\"sha\": \"14c172de138621e5498e3fbfa9d553a4343bcc49\", \"live\": true, \"id\": \"x45b617c672fa1e7a\"}", "{\"sha\": \"95c88a4bb791ffdbafcc85b24c7cfee4029551c9\", \"live\": true, \"id\": \"xc297bbdcfab3cffa\"}", "{\"sha\": \"f59b24a9d67b9e3d7995390cc62334e06bde7212\", \"live\": true, \"id\": \"x606fd77a88b24193\"}", "{\"sha\": \"18cc09f60cabd21c1e33b31c96e67e0ac36f61be\", \"live\": true, \"id\": \"x8fecbcb1cd318325\"}"], "description": "Solve multiplication problems by changing the order of factors, grouping of factors, or by decomposing the factors.", "basepoints": 10.0, "path": "properties-of-multiplication-1/", "slug": "properties-of-multiplication-1", "kind": "Exercise", "name": "properties-of-multiplication-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_1"], "exercise_id": "properties-of-multiplication-1"}, "dividing_fractions": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-fractions/dividing_fractions/", "id": "dividing_fractions", "display_name": "Dividing whole numbers by unit fractions", "title": "Dividing whole numbers by unit fractions", "description": "Practice dividing a whole number by a unit fraction.", "basepoints": 12.0, "slug": "dividing_fractions", "kind": "Exercise", "name": "dividing_fractions", "seconds_per_fast_problem": 5.0, "prerequisites": ["dividing-whole-numbers-by-unit-fractions-introduction"], "exercise_id": "dividing_fractions"}, "multiplicative-comparison-word-problems": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/multiplicative-comparison-word-problems/", "id": "multiplicative-comparison-word-problems", "display_name": "Comparing with multiplication word problems", "title": "Comparing with multiplication word problems", "all_assessment_items": ["{\"sha\": \"dc09dda78124ee0ed524e5942257c9100b5efd1c\", \"live\": true, \"id\": \"xdbdc3416001e2e97\"}", "{\"sha\": \"0eec0c99619ac20f35119f6c56204617414fde77\", \"live\": true, \"id\": \"xe957e7364d3f36b6\"}", "{\"sha\": \"6df5fb83cc0a604d64d37a7a3494e5053be01891\", \"live\": true, \"id\": \"xfbe917af75931267\"}", "{\"sha\": \"4ae1bd94057592d481e37efedcd6e043dfde1954\", \"live\": true, \"id\": \"xbf8be6a527dbb42b\"}", "{\"sha\": \"9805c944966eb0f9197d77aa36b2374dc3429e66\", \"live\": true, \"id\": \"xabc3e3b590162e5c\"}", "{\"sha\": \"a3abdf6ec6fd02790ca25eb3a67454eacf18e9d8\", \"live\": true, \"id\": \"x519994ae0e7fe589\"}", "{\"sha\": \"f105f4a13538bb34b8b2b494edcd7aec08a64a62\", \"live\": true, \"id\": \"xff398a5719e63582\"}", "{\"sha\": \"adf33ae569f07f2afa73a56fed216cc54eef8239\", \"live\": true, \"id\": \"x0a23e216d513d654\"}", "{\"sha\": \"22ad67a5a1176fdc4b64c893e45c2cb3135a78f1\", \"live\": true, \"id\": \"x1538ba5b78854847\"}", "{\"sha\": \"ffb019cbaf1b2ff990c26bdbd0a77f9625a57c28\", \"live\": true, \"id\": \"x371062014557dee2\"}", "{\"sha\": \"ac5385aa938a3434472f07b536d92f2dc3c2705b\", \"live\": true, \"id\": \"xc882c4f08888c3ed\"}", "{\"sha\": \"30f7d2755df43cf04d8ed180eaf1b6b1007dafc7\", \"live\": true, \"id\": \"x5e4bcdbc2079a7d2\"}", "{\"sha\": \"bd0f14f8db9aa16a0c1c0186ac02f040c72aff7f\", \"live\": true, \"id\": \"xa4df00599a49a8fe\"}", "{\"sha\": \"676512d538be0c879b5540b0a949cd48d148758a\", \"live\": true, \"id\": \"xbfb0e6acd6f03790\"}", "{\"sha\": \"5616f1de6258b68e0b70cb95ef46cbde1c49641a\", \"live\": true, \"id\": \"x0d19e68ffbdd4f65\"}", "{\"sha\": \"112cbfb7b43d181c13ea3944ac22f56b48928112\", \"live\": true, \"id\": \"x13a6ad0f5b1e6ffc\"}", "{\"sha\": \"179ff2dc4aa873b72fc556b87d5b509647fda764\", \"live\": true, \"id\": \"x16128fd8254ff58b\"}", "{\"sha\": \"3d6b9075e1d24595487082a96a445e6c417a2595\", \"live\": true, \"id\": \"x4ebee00625a0cec3\"}", "{\"sha\": \"1a478ebdfaaad5c8415a9d0c2be554c4de8127f5\", \"live\": true, \"id\": \"xa1df6917b72e1cac\"}", "{\"sha\": \"a7bb5d237247b2a369e716ad4ea472565665aafc\", \"live\": true, \"id\": \"x6e0ee663db6087f7\"}"], "description": "Select the equation that can be used to solve a word problem.", "basepoints": 10.0, "slug": "multiplicative-comparison-word-problems", "kind": "Exercise", "name": "multiplicative-comparison-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["comparing-with-multiplication"], "exercise_id": "multiplicative-comparison-word-problems"}, "addition-and-subtraction-within-10": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-subtract-10/addition-and-subtraction-within-10/", "id": "addition-and-subtraction-within-10", "display_name": "Addition and subtraction within 10", "title": "Addition and subtraction within 10", "all_assessment_items": ["{\"sha\": \"6271a454f7c5b04d6954ef4f42e231bd4593af63\", \"live\": true, \"id\": \"x31fcd695766f0fc1\"}", "{\"sha\": \"2ce9faa000c28a8b8f52ab3c32c00892077dbac6\", \"live\": true, \"id\": \"x5ba1786cf1ea0117\"}", "{\"sha\": \"90a3b1164d9f4be91621e9f6304e863d64774bfd\", \"live\": true, \"id\": \"x1114ed1c390a54cd\"}", "{\"sha\": \"586ab3f078fc9074eda509adcd43e84dbc402b07\", \"live\": true, \"id\": \"x4f8f9a211829f901\"}", "{\"sha\": \"54da8db709624de95c62cd2a32fc5a47b1f95ba6\", \"live\": true, \"id\": \"x97cd4ac08201c28a\"}", "{\"sha\": \"71c1f5872e2b40bec04411a9cb4fe32466e4cb63\", \"live\": true, \"id\": \"xbf3c35144684f18d\"}", "{\"sha\": \"accae8410f825d7e2dfdd5716b4f2fb60653cc03\", \"live\": true, \"id\": \"xd5fd9f221d9ae357\"}", "{\"sha\": \"84134d83ffcb7c310d030d560eaed1250c790fd4\", \"live\": true, \"id\": \"xfec3bc4fca441ad2\"}", "{\"sha\": \"ea19f369757291c6bc275be73138f9c126d16916\", \"live\": true, \"id\": \"xbbc9d56443910cab\"}", "{\"sha\": \"eac531815099269affb2ed79d24e6b268d4ca881\", \"live\": true, \"id\": \"x59c0d00174030fb3\"}", "{\"sha\": \"727dc9b72408cc5b7ddca261abaa545636afd5f0\", \"live\": true, \"id\": \"x779f1c76280f7bab\"}", "{\"sha\": \"3a0ec5f6791bf6ec96a7d1c9ad0ca1e313c06210\", \"live\": true, \"id\": \"x353a89ed79480047\"}", "{\"sha\": \"bc1475293fa7f57e12d8922e3ae907494a137ec0\", \"live\": true, \"id\": \"x6a1af76aee86af76\"}", "{\"sha\": \"cc97f6ed3858157187e658f68a9f23670d20b4cd\", \"live\": true, \"id\": \"x481a01dcde1bb4f8\"}", "{\"sha\": \"4e77799c06cffd1ad37d301a2a3faefe466de7a9\", \"live\": true, \"id\": \"xed7d4a6298aec408\"}", "{\"sha\": \"d49c08fba63c7e671e60876a309a76556a520f8f\", \"live\": true, \"id\": \"x8b9190c44e5c5674\"}", "{\"sha\": \"998667c39349ea04877a9f2912828e1234c54f8a\", \"live\": true, \"id\": \"x079992bbe33f15be\"}", "{\"sha\": \"3cff3ed4ba7fe4867eb5a2f404d62705d1bbb126\", \"live\": true, \"id\": \"x063cda5d03837d73\"}", "{\"sha\": \"e5c06f018d87acf1b0c9a00a3d72b6aad1d3fc4f\", \"live\": true, \"id\": \"xcd779e448cef088a\"}", "{\"sha\": \"a06e5bf85196af5ffae9ed19ac16ce8a4c702467\", \"live\": true, \"id\": \"x22de03c03281d381\"}"], "description": "Practice solving a bunch of addition and subtraction problems with small numbers (numbers 10 or less).", "basepoints": 10.0, "slug": "addition-and-subtraction-within-10", "kind": "Exercise", "name": "addition-and-subtraction-within-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_1", "take-apart", "making-ten-2"], "exercise_id": "addition-and-subtraction-within-10"}, "telling_time_0.5": {"uses_assessment_items": false, "path": "khan/math/arithmetic/telling-time-topic/telling-time/telling_time_05/", "id": "telling_time_0.5", "display_name": "Telling time with a labeled clock", "title": "Telling time with a labeled clock", "description": "Tell time on labeled analog clocks.", "basepoints": 13.0, "slug": "telling_time_05", "kind": "Exercise", "name": "telling_time_0.5", "seconds_per_fast_problem": 6.0, "prerequisites": ["measuring-lengths-with-different-units", "addition_3"], "exercise_id": "telling_time_0.5"}, "solutions_to_systems_of_equations": {"uses_assessment_items": false, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/solutions_to_systems_of_equations/", "id": "solutions_to_systems_of_equations", "display_name": "Systems with one, zero, or infinite solutions", "title": "Systems with one, zero, or infinite solutions", "description": "Determine how many solutions exist to a given system of equations (one, zero, infinite).", "basepoints": 15.0, "slug": "solutions_to_systems_of_equations", "kind": "Exercise", "name": "solutions_to_systems_of_equations", "seconds_per_fast_problem": 8.0, "prerequisites": ["graphical-solutions-to-systems"], "exercise_id": "solutions_to_systems_of_equations"}, "extraneous_solutions": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/extraneous_solutions/", "id": "extraneous_solutions", "display_name": "Extraneous solutions to rational equations", "title": "Extraneous solutions to rational equations", "description": "Solve a rational equation and ignore any extraneous solutions.", "basepoints": 21.0, "slug": "extraneous_solutions", "kind": "Exercise", "name": "extraneous_solutions", "seconds_per_fast_problem": 19.0, "prerequisites": ["solving_rational_equations_2"], "exercise_id": "extraneous_solutions"}, "donatello-s-st--mark-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence/donatello-s-st-mark-quiz/", "id": "donatello-s-st--mark-quiz", "display_name": "Donatello, St. Mark (quiz)", "title": "Donatello, St. Mark (quiz)", "all_assessment_items": ["{\"sha\": \"34a1b84f2ea7abe5f0e1fa4d895f9ed0f49cec71\", \"live\": true, \"id\": \"x01a83c999cfe5fa1\"}", "{\"sha\": \"3626cf1b80213bae7927de4236c4d4bc93308a71\", \"live\": true, \"id\": \"x0e32b15b37ac6283\"}", "{\"sha\": \"db76c750e3eb69ee09be46155acd0f07f61ff3bb\", \"live\": true, \"id\": \"x6191f2ca6b23fb23\"}", "{\"sha\": \"a659894ed6e13c2c95d2580bb7e64a0346995727\", \"live\": true, \"id\": \"x2e7f8cce810041a9\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "donatello-s-st-mark-quiz", "kind": "Exercise", "name": "donatello-s-st--mark-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "donatello-s-st--mark-quiz"}, "interpreting-the-structure-of-expressions": {"uses_assessment_items": true, "path": "khan/math/algebra/linear_inequalities/structure-expressions-linear/interpreting-the-structure-of-expressions/", "id": "interpreting-the-structure-of-expressions", "display_name": "Interpreting the structure of expressions", "title": "Interpreting the structure of expressions", "all_assessment_items": ["{\"sha\": \"5f3539f2a92dc2376aa4758b054ecf06c6ce9095\", \"live\": true, \"id\": \"xf9aecdefdeeb1043\", \"perseus_api_major_version\": null}", "{\"sha\": \"427025cfa10a339e306febd41b1fd1bad9442bd1\", \"live\": true, \"id\": \"x5e8b384291a8b438\", \"perseus_api_major_version\": null}", "{\"sha\": \"6b812b06e346fb8ff5775772f439926e0669704e\", \"live\": true, \"id\": \"xfbe9db20332cdec2\", \"perseus_api_major_version\": null}", "{\"sha\": \"abd23445bcd3460555ebc65fb64db0691c3add8e\", \"live\": true, \"id\": \"xc27fb059b0ec31e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"108acce4eba019d9d2276c5fc8a854236b525661\", \"live\": true, \"id\": \"xae59b9c5c8a33f15\", \"perseus_api_major_version\": null}", "{\"sha\": \"ff36ac5590ab98dd5ac8db6a3b20242521fac1ae\", \"live\": true, \"id\": \"xe4173fc85b9a6a5e\", \"perseus_api_major_version\": null}", "{\"sha\": \"b59ca04e9d20d62a94fb475f59c191eb472b1746\", \"live\": true, \"id\": \"xb808e8ba8fefe396\", \"perseus_api_major_version\": null}", "{\"sha\": \"0bc199d9cac591efd0a90d744422885d857a07d8\", \"live\": true, \"id\": \"x32813a9370f63ee6\", \"perseus_api_major_version\": null}", "{\"sha\": \"35c836a167d72f2d75153c1dbe5d6f04737c3d2b\", \"live\": true, \"id\": \"x76ad6e2dc8a9d7b4\", \"perseus_api_major_version\": null}", "{\"sha\": \"e8bb3b8b8e4344e62ff60c9f57509f1971faa3e1\", \"live\": true, \"id\": \"x50d161f88ec6ac54\", \"perseus_api_major_version\": null}", "{\"sha\": \"e2f4f2adabf76e5967bd5e75fe568f8fd962e895\", \"live\": true, \"id\": \"x2c7f297c813a8cc9\", \"perseus_api_major_version\": null}", "{\"sha\": \"3f0a3793ad81ade5d479aec2d0e11b0f8bb13327\", \"live\": true, \"id\": \"xcf0e7aafcac3eeaf\", \"perseus_api_major_version\": null}", "{\"sha\": \"a50086f48aa137f95a5e2f11f23f45160c2f4128\", \"live\": true, \"id\": \"x3a311880b8d34170\", \"perseus_api_major_version\": null}", "{\"sha\": \"20c23d6718eb9d1a49675b9326f4856eb96a2a36\", \"live\": true, \"id\": \"x4617d273c3b924e0\", \"perseus_api_major_version\": null}", "{\"sha\": \"9b8a293652aaa3f3a7f757fc226b07863babff90\", \"live\": true, \"id\": \"xd4c03e4b46eec5a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"700836f1a458043df6e4f0fc98ebe76ee727ee23\", \"live\": true, \"id\": \"x6ba981561ea960ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"0de2399050c57c8a6f740c7e117aa2b4a087fe5e\", \"live\": true, \"id\": \"x85d5bf9d02fc38f8\", \"perseus_api_major_version\": null}", "{\"sha\": \"f0b838402b9562e29ec8fe236e3fe23b08a3bf66\", \"live\": true, \"id\": \"xd7c6ea15cd4b5fa3\", \"perseus_api_major_version\": null}", "{\"sha\": \"dc3d0892a380296b1706e13a8bddf9f2e56f5539\", \"live\": true, \"id\": \"x2b3dc9f9d8c5a001\", \"perseus_api_major_version\": null}", "{\"sha\": \"cc212faed38554063e723eb6988f8bf9ab985bb5\", \"live\": true, \"id\": \"xc0647cf763e22c99\", \"perseus_api_major_version\": null}", "{\"sha\": \"34b26c0ade734a39b3a48f5b97e6708c0c939d5f\", \"live\": true, \"id\": \"x91f9b22abdf01328\", \"perseus_api_major_version\": null}", "{\"sha\": \"433a84023d7687f56e7e10b51cbcd4630006b7f7\", \"live\": true, \"id\": \"x68bd2928d2c885a8\", \"perseus_api_major_version\": null}", "{\"sha\": \"c7bfd39702512e96cfcacaac9db794eaa1d479fd\", \"live\": true, \"id\": \"x9d8f378e5e9767ed\", \"perseus_api_major_version\": null}", "{\"sha\": \"de268c4b8d006682de258584eac07eb899d8874c\", \"live\": true, \"id\": \"xd36597534526b949\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2b4e06567f1f9388196e7128ca94b6bbe4ec8b59\", \"live\": true, \"id\": \"x4a0462a6f6d0434e\", \"perseus_api_major_version\": null}", "{\"sha\": \"03a39b0f91d8607ed95103e805426c105b5f6c8e\", \"live\": true, \"id\": \"x3b6c0e0747ae950f\", \"perseus_api_major_version\": null}", "{\"sha\": \"4311c469996c8b6486ce2d04f1058a363e020ceb\", \"live\": true, \"id\": \"xb23cbe1183356edc\", \"perseus_api_major_version\": null}", "{\"sha\": \"842f43df6358a41b356a9a6112c274224594e2c3\", \"live\": true, \"id\": \"xe487c025fc880d03\", \"perseus_api_major_version\": null}", "{\"sha\": \"8a0304d8e7031b9033908f36b2aa5fd1806b76da\", \"live\": true, \"id\": \"x8f47194f11fe220b\", \"perseus_api_major_version\": null}", "{\"sha\": \"f48161e32b2c31cb304a8572614d403796637cfc\", \"live\": true, \"id\": \"x63e76397ff9d67ff\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "interpreting-the-structure-of-expressions", "kind": "Exercise", "name": "interpreting-the-structure-of-expressions", "seconds_per_fast_problem": 4.0, "prerequisites": ["structure-in-expressions-1"], "exercise_id": "interpreting-the-structure-of-expressions"}, "quiz-mid-century-to-today": {"uses_assessment_items": true, "id": "quiz-mid-century-to-today", "display_name": "Quiz: Mid-century to today", "title": "Quiz: Mid-century to today", "all_assessment_items": ["{\"sha\": \"f2c3dbc5201ee54147323f1a3148bd95e7f9debd\", \"live\": true, \"id\": \"xfbb463a30af2bd05\"}", "{\"sha\": \"9be3e7f174c3432966c7fec4b63a81ab760336cd\", \"live\": true, \"id\": \"x5f9c6db65b218b3e\"}", "{\"sha\": \"687c9dc3b87863bfa5ed246bd34f50c7c1c19621\", \"live\": true, \"id\": \"x3eda4e8dc7c71b46\"}", "{\"sha\": \"f572d0b0649d22e81e038c144d31ba286de5ffbb\", \"live\": true, \"id\": \"x95a4662f9dbd928c\"}", "{\"sha\": \"9001b1287f70303a2b0016cca4e75f9253a551d7\", \"live\": true, \"id\": \"x25940caf40ebe82e\"}"], "description": "Test your knowledge of British art from mid-century to today.", "basepoints": 10.0, "path": "quiz-mid-century-to-today/", "slug": "quiz-mid-century-to-today", "kind": "Exercise", "name": "quiz-mid-century-to-today", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-mid-century-to-today"}, "krebs-cycle-and-oxidative-phosphorylation---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/krebs-cycle-and-oxidative-phosphorylation-passage-2/", "id": "krebs-cycle-and-oxidative-phosphorylation---passage-2", "display_name": "Glucogenic and ketogenic amino acids", "title": "Glucogenic and ketogenic amino acids", "all_assessment_items": ["{\"sha\": \"d2ee14de8e43ad1421b0e9e492732dfb21e34ca8\", \"live\": true, \"id\": \"x538499d906befedc\"}", "{\"sha\": \"9b51f5711bb79e7d84cd0790b8239142be678264\", \"live\": true, \"id\": \"xea6d28afcbfdbf40\"}", "{\"sha\": \"bce9b183e55fec7f297f8a82c4fb7c716250437d\", \"live\": true, \"id\": \"x516dccaa62ac26cf\"}", "{\"sha\": \"cb2e956ce11166a62ea8238ddc25fa83f1fafddc\", \"live\": true, \"id\": \"x0711da6656daa061\"}", "{\"sha\": \"39184b518da84e8b485abaa5ba6a6a927cf9bd51\", \"live\": true, \"id\": \"x26687553c9c898af\"}"], "description": "", "basepoints": 10.0, "slug": "krebs-cycle-and-oxidative-phosphorylation-passage-2", "kind": "Exercise", "name": "krebs-cycle-and-oxidative-phosphorylation---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "krebs-cycle-and-oxidative-phosphorylation---passage-2"}, "krebs-cycle-and-oxidative-phosphorylation---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/krebs-cycle-and-oxidative-phosphorylation-passage-1/", "id": "krebs-cycle-and-oxidative-phosphorylation---passage-1", "display_name": "Inhibiting the electron transport chain", "title": "Inhibiting the electron transport chain", "all_assessment_items": ["{\"sha\": \"0fc04f668818007961f9039c9f30e171a08f10bd\", \"live\": true, \"id\": \"xd05edd7e36a92c36\", \"perseus_api_major_version\": null}", "{\"sha\": \"a3d1b8c91cabb251048c76f3800c6eb8f14edb7a\", \"live\": true, \"id\": \"xc3079cdef68cf674\", \"perseus_api_major_version\": 3}", "{\"sha\": \"70d90db3ae17de8aa5906372275a6a1a86215783\", \"live\": true, \"id\": \"x4a532c5acf6c07a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"547f829027b9d7214c9a0e44ba12628e346d139b\", \"live\": true, \"id\": \"x5c4518a76825b281\", \"perseus_api_major_version\": null}", "{\"sha\": \"eafb724694eb18fff3e11b047eb33d9c2bcbaef5\", \"live\": true, \"id\": \"x6241f38e327dae7f\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "krebs-cycle-and-oxidative-phosphorylation-passage-1", "kind": "Exercise", "name": "krebs-cycle-and-oxidative-phosphorylation---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "krebs-cycle-and-oxidative-phosphorylation---passage-1"}, "constructing-and-interpreting-absolute-value": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/abs-value-pre-alg/constructing-and-interpreting-absolute-value/", "id": "constructing-and-interpreting-absolute-value", "display_name": "Absolute value to find distance 2", "title": "Absolute value to find distance 2", "all_assessment_items": ["{\"sha\": \"52caf7877166a39c0ad32540a664078d3da6c933\", \"live\": true, \"id\": \"xd69d9d318fa90544\"}", "{\"sha\": \"6cb9f076361638cacaeac543797a94ec5b67c222\", \"live\": true, \"id\": \"x9b1f403c895c8ffc\"}", "{\"sha\": \"523478a3146c681040861ce454dcf08c67a09af2\", \"live\": true, \"id\": \"x0b00f5248e1e52d2\"}", "{\"sha\": \"b7750a386f9999980319569d3dd48bc5a22be3be\", \"live\": true, \"id\": \"xab5163c307410371\"}", "{\"sha\": \"b780ce1864717d6ccc66d33fd2927e2a9aad64a9\", \"live\": true, \"id\": \"x7c78563cd936a595\"}", "{\"sha\": \"7d67cb2d42c9d5b570b69ee608f534bc8b27695a\", \"live\": true, \"id\": \"x3af05554cfa27560\"}", "{\"sha\": \"d40d6f86d94ee139ba55f3c0d252292129c85802\", \"live\": true, \"id\": \"xd1faf90df8fed1a2\"}", "{\"sha\": \"a963b92fed08022067e73b8dc17a7cc3e2d14c14\", \"live\": true, \"id\": \"x855d7cad30f08923\"}", "{\"sha\": \"55f6a5d8748586344bb143849d914c6c5f41d20e\", \"live\": true, \"id\": \"x2c092aa29a6ba9f3\"}", "{\"sha\": \"eb0605de9ee9e8f880f905ac602ad41500cc0096\", \"live\": true, \"id\": \"x9362d1b8f4e5a871\"}", "{\"sha\": \"788c7caedd2ace9d5889076c7a548ec276c9057f\", \"live\": true, \"id\": \"x17d664a74c11a33c\"}", "{\"sha\": \"409a5fe6dacb00fee66725e7347c36416764cc35\", \"live\": true, \"id\": \"x0c7703bce4f37f12\"}", "{\"sha\": \"8446340c8b5fe00eeb088a9f3c000ff738dec15c\", \"live\": true, \"id\": \"xe2a759ca65a184de\"}", "{\"sha\": \"3130739b0d069c4011d3a50e2bac9c1080a5dcc7\", \"live\": true, \"id\": \"xabdb4c1eb7717243\"}", "{\"sha\": \"1dbd7aba39ddf581efcdd421c3ba517c85147f8a\", \"live\": true, \"id\": \"x75a96785c1b5a9cb\"}", "{\"sha\": \"2b403c96cf3f448d8daef5cb078b341c55c5ada4\", \"live\": true, \"id\": \"x4c214a3eaf7a4c8e\"}", "{\"sha\": \"aa5e3dddc5e7dfd0c14e32b83bf8fdd481b6ea52\", \"live\": true, \"id\": \"x79b6df8fe8ee896b\"}", "{\"sha\": \"12a91908ef6eb3435b7c81ec74f4fd14ac0fac4d\", \"live\": true, \"id\": \"xe4774e67ec955d00\"}", "{\"sha\": \"8d902cd515cacec4915b012b47f79013fa53be99\", \"live\": true, \"id\": \"x4fc60fb70cfc772d\"}", "{\"sha\": \"aadc269e9cb31dbf057f40e29110d1c12d413edd\", \"live\": true, \"id\": \"xb4ed9709b2ad3bd1\"}", "{\"sha\": \"52b2e01aebbcc5bd4963d63d6e5d62eaaf9bfe7d\", \"live\": true, \"id\": \"x55cb0f63d2744feb\"}", "{\"sha\": \"93c5a7029a3cb072cfcf8536e120222cabe53763\", \"live\": true, \"id\": \"x67a1f02ca7508f4f\"}", "{\"sha\": \"52ea0924010cf206e9ccb94368e490a2c3b43d20\", \"live\": true, \"id\": \"xbfb9bc2103f6f371\"}"], "description": "Solve conceptually challenging absolute value problems. In order succeed at these problems, you'll need to remember that the absolute value of the difference of two numbers is the distance between those numbers.", "basepoints": 10.0, "slug": "constructing-and-interpreting-absolute-value", "kind": "Exercise", "name": "constructing-and-interpreting-absolute-value", "seconds_per_fast_problem": 4.0, "prerequisites": ["absolute-value-to-find-distance"], "exercise_id": "constructing-and-interpreting-absolute-value"}, "sort-groups-by-count": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-comparing-numbers/sort-groups-by-count/", "id": "sort-groups-by-count", "display_name": "Sort by count or category", "title": "Sort by count or category", "all_assessment_items": ["{\"sha\": \"ad2814fa49abeb40c6d21ee8580ceddcb084768a\", \"live\": true, \"id\": \"x845e7e8fb89d4034\"}", "{\"sha\": \"2ba37720c219073a2f94a08e9d7d4f4a459ae13e\", \"live\": true, \"id\": \"x5e8f432297ebab5e\"}", "{\"sha\": \"83a056ee5d0f5a9f78a932711d515eb632f4f7db\", \"live\": true, \"id\": \"x78ac74322e612c5a\"}", "{\"sha\": \"3868244a563c5284204e27086e699b6328a6f167\", \"live\": true, \"id\": \"xe97feb722571d971\"}", "{\"sha\": \"442f69a0b6995f82c9636da2ec81594d532b3a0c\", \"live\": true, \"id\": \"x93ba5446caed92b9\"}", "{\"sha\": \"b1cb3150eb86363fc67f98ee1d0523fc451b48af\", \"live\": true, \"id\": \"x953d6f401495f383\"}", "{\"sha\": \"4f4103e6adcbe62da238542e369167b6d5544ed5\", \"live\": true, \"id\": \"x9b9491272e9487de\"}", "{\"sha\": \"9378a504bc5695812533dd06cf5e00c9cf7f4dfb\", \"live\": true, \"id\": \"xc708dbfd3fecb44c\"}", "{\"sha\": \"147d4470043f0ae03699079937d7e9ec972cc017\", \"live\": true, \"id\": \"xf9f4c92bb6182a99\"}", "{\"sha\": \"b66bfdc561401d21c3b6c3217287c52f785921c4\", \"live\": true, \"id\": \"x0392589f823b6b21\"}", "{\"sha\": \"fb29a6a42ecb6a4f99e8db9257f032cd9f380a00\", \"live\": true, \"id\": \"xcccb7d435f5992e3\"}", "{\"sha\": \"8c50ff8fe5c54951925816b5b9b29060ac83bcdc\", \"live\": true, \"id\": \"x526fe88791f49456\"}", "{\"sha\": \"e1a846e09df6adbce605dc1801c8ffba260d5445\", \"live\": true, \"id\": \"xa9bf851c5fa2f3fc\"}", "{\"sha\": \"f942f863826cd939b26abf3a167d1df8af66a654\", \"live\": true, \"id\": \"xf865e81d5a082daf\"}", "{\"sha\": \"bfc0625a4aa3881f884e8b609ff58e029fd995fa\", \"live\": true, \"id\": \"x609291ddac555bbb\"}", "{\"sha\": \"b26fcb44c4ca2ccb8002c4847edf29f173e779be\", \"live\": true, \"id\": \"x6e744062bf06edc2\"}", "{\"sha\": \"1a9f4969be33e6f252fe728af0d848d196cba6b5\", \"live\": true, \"id\": \"x6624d42ff8bf340b\"}", "{\"sha\": \"800774469a2b751cf61ad147c669c662f3c6b51d\", \"live\": true, \"id\": \"x372f5b7e1108b609\"}", "{\"sha\": \"d91ecf20a15b45a73f01524a70cda45f3cda61c6\", \"live\": true, \"id\": \"xeee48edc4616c453\"}", "{\"sha\": \"096f1f435a4d8d1587466a27ce4becd795c96afe\", \"live\": true, \"id\": \"x14da7d256ba3f456\"}"], "description": "Practice counting to see which group has the most things in it.", "basepoints": 10.0, "slug": "sort-groups-by-count", "kind": "Exercise", "name": "sort-groups-by-count", "seconds_per_fast_problem": 4.0, "prerequisites": ["how-many-objects-1", "compare-groups-through-10"], "exercise_id": "sort-groups-by-count"}, "equivalent_fractions_2": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/equivalent-fractions-pre-alg/equivalent_fractions_2/", "id": "equivalent_fractions_2", "display_name": "Equivalent fractions 2", "title": "Equivalent fractions 2", "description": "", "basepoints": 15.0, "slug": "equivalent_fractions_2", "kind": "Exercise", "name": "equivalent_fractions_2", "seconds_per_fast_problem": 8.0, "prerequisites": ["equivalent_fractions"], "exercise_id": "equivalent_fractions_2"}, "properties-of-multiplication-with-negative-numbers": {"uses_assessment_items": true, "id": "properties-of-multiplication-with-negative-numbers", "display_name": "Negative number multiplication and division: equivalent expressions", "title": "Negative number multiplication and division: equivalent expressions", "all_assessment_items": ["{\"sha\": \"087167534f8b82c8d95228b653b8acdf787d6d26\", \"live\": true, \"id\": \"x867a58c2d3de223a\"}", "{\"sha\": \"2ef544610545409513c9e60b4214693660fe7baf\", \"live\": true, \"id\": \"x31fadc08c6a417af\"}", "{\"sha\": \"612b8657ca4fecb7c10e79d3f7fc19cda2832fc6\", \"live\": true, \"id\": \"x93d86ecb7f41c144\"}", "{\"sha\": \"8b5d673cec599dbe1116f534184fa2bef408d7ec\", \"live\": true, \"id\": \"xea484cd3dded55fe\"}", "{\"sha\": \"af7d57a2e61b305343713ea042ce18a1365ac173\", \"live\": true, \"id\": \"x301f1477cd7a8433\"}", "{\"sha\": \"33cf77f2264506014046319a73ab398b4cb1b024\", \"live\": true, \"id\": \"x507fc42f13c203ba\"}", "{\"sha\": \"d3445de7f3196bdd02826dd41a57e274955d0155\", \"live\": true, \"id\": \"x155dc2989821d3cb\"}", "{\"sha\": \"f8d51384af3b560bf1476179728f960b242894e9\", \"live\": true, \"id\": \"x4d0088d2fd0382b2\"}", "{\"sha\": \"9624705a070369b8ae132dbfe1c981cf709ff58e\", \"live\": true, \"id\": \"x4d4d3336040be2b6\"}", "{\"sha\": \"1769bb2ea0b81cc9f097edc5f974b08776bea24b\", \"live\": true, \"id\": \"x0c20bdf50957ec9c\"}", "{\"sha\": \"8173fb204948f0a2a432a07c981f4e36c312ad1a\", \"live\": true, \"id\": \"x0774e9049a13386e\"}", "{\"sha\": \"ffbabd26f76835ca1e869b9330437f412dbf5f4a\", \"live\": true, \"id\": \"x254279fa0364ba0f\"}", "{\"sha\": \"e3ac9d72bbe32a80f57ec639b1dc3ae59af982c6\", \"live\": true, \"id\": \"x9507fb135c553b71\"}", "{\"sha\": \"539100822380f9ad107ac3cc2a79bb6e75b1a8f6\", \"live\": true, \"id\": \"x96684412962a5738\"}", "{\"sha\": \"79e4125c93d56634d60a783f6fdb82386446e5df\", \"live\": true, \"id\": \"xa2ce5a7d6f6cfdf8\"}", "{\"sha\": \"17cb4992a6ef52d533ed2f333fa590933e96ac3b\", \"live\": true, \"id\": \"x2ad9e31c544d1e62\"}", "{\"sha\": \"d2d2ad390ef473599a054a2506bce6556dcb510b\", \"live\": true, \"id\": \"x9c7d76e85941b51e\"}", "{\"sha\": \"2559eff68416185ec580d6d1318c40ccc3f06eb5\", \"live\": true, \"id\": \"xd30e152cf0364a62\"}", "{\"sha\": \"8c66e6c9132b3a92a5d9de6ad4b33b1c1ba2e30a\", \"live\": true, \"id\": \"x5b3d333b27f6dd63\"}", "{\"sha\": \"a30d4ea04ce36d3d0bdbd3e29547d00cb8429869\", \"live\": true, \"id\": \"xf9881ba4c31489c0\"}"], "description": "Practice finding equivalent multiplication and division expressions. Numbers in these problems may be negative.", "basepoints": 10.0, "path": "properties-of-multiplication-with-negative-numbers/", "slug": "properties-of-multiplication-with-negative-numbers", "kind": "Exercise", "name": "properties-of-multiplication-with-negative-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["negative-signs-in-numerators-and-denominators"], "exercise_id": "properties-of-multiplication-with-negative-numbers"}, "quiz--my-timeline": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/what-is-big-history/my-big-history/quiz-my-timeline/", "id": "quiz--my-timeline", "display_name": "Quiz: My Big History", "title": "Quiz: My Big History", "all_assessment_items": ["{\"sha\": \"de532a93e76f6b278153c7e563cde11f5633c1e9\", \"live\": true, \"id\": \"x11566f539ee6e0dc\"}", "{\"sha\": \"d1737b9c9e29a05e86ef23e11a74426c2b96099b\", \"live\": true, \"id\": \"x865d1578416dd841\"}", "{\"sha\": \"a0a9a0fb068143eeeb73c1fa49146d54053a070d\", \"live\": true, \"id\": \"x9d9a02c83f212fb7\"}", "{\"sha\": \"7a941f70f253ae87c38ff27cb82312ac2bf89ce9\", \"live\": true, \"id\": \"xb6babc995723e27b\"}", "{\"sha\": \"df6282691087d8bdd45683f3bc769a5c9594a48b\", \"live\": true, \"id\": \"xce6964c70b653870\"}"], "description": "Quiz 1.4", "basepoints": 10.0, "slug": "quiz-my-timeline", "kind": "Exercise", "name": "quiz--my-timeline", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--my-timeline"}, "reciprocal-altruism--vampire-bats--and-relatedness": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/reciprocal-altruism-vampire-bats-and-relatedness/", "id": "reciprocal-altruism--vampire-bats--and-relatedness", "display_name": "Reciprocal altruism, vampire bats, and relatedness", "title": "Reciprocal altruism, vampire bats, and relatedness", "all_assessment_items": ["{\"sha\": \"cf281fb01d3f6a60c067ba7a534fe8da737f8974\", \"live\": true, \"id\": \"x4e9b0934fd7c1865\"}", "{\"sha\": \"e44cde94e48e55f2535bf7d7e973404cc03eb7fb\", \"live\": true, \"id\": \"xc04607c0183921ec\"}", "{\"sha\": \"de6297f5891ae36682a1a8af5d6ce68f47abe627\", \"live\": true, \"id\": \"xe9d2e93f073a9a39\"}", "{\"sha\": \"135149a9610396e0af6e9fd4ab9456ce122fd2ca\", \"live\": true, \"id\": \"xd090ef8bfe4d4b80\"}", "{\"sha\": \"499496f030f6d77841b1659d3a1c980641895859\", \"live\": true, \"id\": \"x10a38cd4e9693834\"}"], "description": "Reciprocal altruism, vampire bats, and relatedness", "basepoints": 10.0, "slug": "reciprocal-altruism-vampire-bats-and-relatedness", "kind": "Exercise", "name": "reciprocal-altruism--vampire-bats--and-relatedness", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "reciprocal-altruism--vampire-bats--and-relatedness"}, "direct-and-limit-comparison-tests": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/direct-and-limit-comparison-tests/", "id": "direct-and-limit-comparison-tests", "display_name": "Direct and limit comparison tests", "title": "Direct and limit comparison tests", "all_assessment_items": ["{\"sha\": \"edc1fa547f322c555523f15f8b8b74d894157fb7\", \"live\": true, \"id\": \"xd4e8329b5bff07a7\"}", "{\"sha\": \"c4e434b6ef2e653be66b91d63a661587274af62a\", \"live\": true, \"id\": \"xd01e4bb426177ad8\"}", "{\"sha\": \"0082220ba97c02fdcdbb1c1191f0cf63ca7886b7\", \"live\": true, \"id\": \"x1b54ccf6d2751068\"}", "{\"sha\": \"d0890337cfade358afc3e8644cd46f3bc585a5b1\", \"live\": true, \"id\": \"xd0341426b65bb744\"}", "{\"sha\": \"715e532705746ef7d619b441f04e33a11705fcd5\", \"live\": true, \"id\": \"x5db00a9702b4868a\"}", "{\"sha\": \"ce01c6ba2eafb9791d9facb6bca84e4b953cdab9\", \"live\": true, \"id\": \"x391e09a7866faf20\"}", "{\"sha\": \"de9482198d4eedcb6f65437aeb508f5136b4f80a\", \"live\": true, \"id\": \"x17ea4ec84ae56f10\"}", "{\"sha\": \"45c4be6ada11a6adb7186cd31df722d4b1fc8fe5\", \"live\": true, \"id\": \"x30c3a77fb80212ee\"}", "{\"sha\": \"351ed565db6c158c1050f3effcf7c8473786a8dd\", \"live\": true, \"id\": \"x68acaeb5f6a24688\"}", "{\"sha\": \"6fadaf1e4c1b097a4c4cb3a2ee5f13e7924c7371\", \"live\": true, \"id\": \"x733b7f603c0cc7dc\"}", "{\"sha\": \"65beae853dddbdd6725bdbc2c16670ca091aa92f\", \"live\": true, \"id\": \"x57a382e112f48178\"}", "{\"sha\": \"e57cb88ec4a977fdd7ca96f394ddd5d8c0ab21a8\", \"live\": true, \"id\": \"xc8a8518dbabf8095\"}", "{\"sha\": \"628719ad9e261bd717051f3d4cf54d402906247f\", \"live\": true, \"id\": \"x1d0baa8e5e4de72f\"}", "{\"sha\": \"207ec0d54ce746c7a8541e5521a7292a5b1b2591\", \"live\": true, \"id\": \"x0d23f78665abd9a5\"}", "{\"sha\": \"3cb03d80f3504be87a6f4b8a7a4cacd653fb7e3e\", \"live\": true, \"id\": \"x658872369f176ef5\"}", "{\"sha\": \"8c58fe981137463672f0a8a40b8d02fcf672ea66\", \"live\": true, \"id\": \"x82e7cf3156f57347\"}", "{\"sha\": \"7419036b8642e3f2143f0e125004397728aea2e4\", \"live\": true, \"id\": \"x77d29ac2fcd15c3c\"}", "{\"sha\": \"8fbd6b6d677d0a4fb19aceab4be6b069694df601\", \"live\": true, \"id\": \"x1288882533a720ef\"}", "{\"sha\": \"53385def795b08e003b3d31fe94956ad2e9b70c1\", \"live\": true, \"id\": \"xc0c6d10fab57cc85\"}", "{\"sha\": \"17749e4f3e5b54edc006051725f510fcd23747cb\", \"live\": true, \"id\": \"x23c08d0739571b75\"}", "{\"sha\": \"a49e8f7ddc32e22f7fda65ac99d0ef1819042f5b\", \"live\": true, \"id\": \"xa12543dda13f8631\"}", "{\"sha\": \"7128760f78c89959adc5af8565b28ac6d9d98e97\", \"live\": true, \"id\": \"xb8ed7f7ee58a43cb\"}", "{\"sha\": \"4bce61786e8462d833e6100d16416935b151e0c9\", \"live\": true, \"id\": \"xc6165ba9afa8c9f3\"}", "{\"sha\": \"29393e402af605347563eccc890322109542e41c\", \"live\": true, \"id\": \"x19893ea9aeec7f51\"}", "{\"sha\": \"2b9eb842ae6cc1bd96316897d22b7c6b4404a85d\", \"live\": true, \"id\": \"x4a163a5c53ecb54b\"}", "{\"sha\": \"4be4024c0ba4c6b650ecdf0ef8f5e3da6931938f\", \"live\": true, \"id\": \"x6291d5d651625084\"}", "{\"sha\": \"d850316d9a5cbad4e1d22fd18af96eaad21b1d17\", \"live\": true, \"id\": \"x6208be0444cd286e\"}", "{\"sha\": \"8eb1de3905bd11fe03ce1728e586fdb2bf76e32c\", \"live\": true, \"id\": \"x882fc625adf45b30\"}", "{\"sha\": \"3786f7aad7b9eb812c30911cb8eb551fd5aad0db\", \"live\": true, \"id\": \"x9f1d35b7f8aae943\"}", "{\"sha\": \"45dcca77a2de5fcd569622f7705287ece6534917\", \"live\": true, \"id\": \"x1543f939345d7d88\"}"], "description": "", "basepoints": 10.0, "slug": "direct-and-limit-comparison-tests", "kind": "Exercise", "name": "direct-and-limit-comparison-tests", "seconds_per_fast_problem": 4.0, "prerequisites": ["convergence-and-divergence-of-series"], "exercise_id": "direct-and-limit-comparison-tests"}, "recognizing-parallel-and-perpendicular-lines": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-angles/basic-geo-interpreting-angles/recognizing-parallel-and-perpendicular-lines/", "id": "recognizing-parallel-and-perpendicular-lines", "display_name": "Recognizing parallel and perpendicular lines", "title": "Recognizing parallel and perpendicular lines", "all_assessment_items": ["{\"sha\": \"97475eb472d2a31e3b094f3b2829379ccf32cde9\", \"live\": true, \"id\": \"x3ed4daadcf715c41\"}", "{\"sha\": \"08e1cd07ef9ab67c57e08cf5b97c83aa488e0238\", \"live\": true, \"id\": \"xf8ac7006a883b4d1\"}", "{\"sha\": \"fc54df182007d2c34afea1211d98c4c832a71dd2\", \"live\": true, \"id\": \"xcef2812a696bc5ee\"}", "{\"sha\": \"5e6b14bfc6ab1a1799f4e8570021b541314ed698\", \"live\": true, \"id\": \"x533ec0f5d3901809\"}", "{\"sha\": \"f10a7a20a2743d215ab3b5ceec7d9a29666cc98e\", \"live\": true, \"id\": \"x8d5cd19d375fa648\"}", "{\"sha\": \"95517eec84c733713507f168fc5894a9de3b061c\", \"live\": true, \"id\": \"x88ddd3af8e6c6855\"}", "{\"sha\": \"aa5eeb694c8d67515621071567e98c2b846dea25\", \"live\": true, \"id\": \"x85f2bce77dc55838\"}", "{\"sha\": \"33727486a8702b99072b3b3784bd1ffb2394fbed\", \"live\": true, \"id\": \"x6c1108f90744ebff\"}", "{\"sha\": \"e96d472a87ac55978cefaa5c168c2a9f33bd36e9\", \"live\": true, \"id\": \"x38ab8b1208a6d472\"}", "{\"sha\": \"78f07ed9223956c64145ee3511e21e6ec11fd347\", \"live\": true, \"id\": \"x78959cd690b8047b\"}", "{\"sha\": \"47dda796be21eb001b6884b8cf484458d8bb9f44\", \"live\": true, \"id\": \"x830cab80ffd94285\"}", "{\"sha\": \"a00c65fbc4e23e602b6a2c722109147f18d967ec\", \"live\": true, \"id\": \"x22de5b87bc96b527\"}", "{\"sha\": \"f0294f75e15fd4297984b0a70c591afe14a947c0\", \"live\": true, \"id\": \"x8d8be41634aa1197\"}", "{\"sha\": \"f958a01030e440c7cbc4f8b8ad5112c4a818378d\", \"live\": true, \"id\": \"xf4561bad9fc85e92\"}", "{\"sha\": \"53f5230e00b1cd803a0d089d101a86f2ef053543\", \"live\": true, \"id\": \"x985c4f365f18ab85\"}", "{\"sha\": \"949cbd54e5240502dbffd282213e0f1ec0639232\", \"live\": true, \"id\": \"xc56e759503452c35\"}", "{\"sha\": \"88c7a8ca6d82230ce47510e9cdf24d4f9d719e64\", \"live\": true, \"id\": \"xbe3195ab4979e5a0\"}", "{\"sha\": \"60d18616641eefc1a1f723e7a208111f27efbd17\", \"live\": true, \"id\": \"xbab64e8b1fe59d15\"}", "{\"sha\": \"44362d65e5bd152f407be3b5d5e2f330f31109d6\", \"live\": true, \"id\": \"x76e65102422d5568\"}", "{\"sha\": \"63c80d233efea029f9e3bfcba0560163c4c19bd0\", \"live\": true, \"id\": \"x93a1225cb73c0125\"}", "{\"sha\": \"09983e93d46d8e1aebc06db1cb343332ccea7672\", \"live\": true, \"id\": \"x068d968323b7b20e\"}", "{\"sha\": \"80407d3156f25630379803a8f57f4be9887d1708\", \"live\": true, \"id\": \"x15e955dbf5df44c4\"}", "{\"sha\": \"f579cc205949904a488749d89ec0e546a77181be\", \"live\": true, \"id\": \"x720ddbeeb4585c87\"}", "{\"sha\": \"f2695224f0baa28e66a761212098b3d24f411522\", \"live\": true, \"id\": \"xa8f1a4936d8a3b74\"}", "{\"sha\": \"0df86c58c84e6ebb4d5015d8dc01fc9a0d628962\", \"live\": true, \"id\": \"x199b8d7089800168\"}", "{\"sha\": \"f9b41158571d93ff6a3812b7b935c3860ebff484\", \"live\": true, \"id\": \"x05a6589094bc3272\"}", "{\"sha\": \"e155eed3ef76823ac4c251195114eb707781002c\", \"live\": true, \"id\": \"x62ca42c0863848a7\"}", "{\"sha\": \"faf21d4d064d3dd64a39b6a3b1fca0c00af95b0a\", \"live\": true, \"id\": \"x7ba79f1f666c5b71\"}", "{\"sha\": \"53a8ef85b2dbdc2ed35412a2fda87e4fa32e7cf2\", \"live\": true, \"id\": \"x4f709e0d8902cd6b\"}", "{\"sha\": \"cbd1fbeeafbba621fa384fcd4b5043e3740cd238\", \"live\": true, \"id\": \"x7cc769b0837543ac\"}"], "description": "Identify parallel and perpendicular lines in geometric figures and pictures.\u00a0", "basepoints": 10.0, "slug": "recognizing-parallel-and-perpendicular-lines", "kind": "Exercise", "name": "recognizing-parallel-and-perpendicular-lines", "seconds_per_fast_problem": 4.0, "prerequisites": ["drawing-right--acute--and-obtuse-angles"], "exercise_id": "recognizing-parallel-and-perpendicular-lines"}, "dividing_polynomials_by_binomials_3": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/dividing_polynomials_by_binomials_3/", "id": "dividing_polynomials_by_binomials_3", "display_name": "Dividing polynomials by binomials 3", "title": "Dividing polynomials by binomials 3", "description": "Simplify the ratio of a polynomial and a binomial.", "basepoints": 17.0, "slug": "dividing_polynomials_by_binomials_3", "kind": "Exercise", "name": "dividing_polynomials_by_binomials_3", "seconds_per_fast_problem": 10.0, "prerequisites": ["dividing_polynomials_by_binomials_2"], "exercise_id": "dividing_polynomials_by_binomials_3"}, "dividing_polynomials_by_binomials_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/dividing_polynomials_by_binomials_2/", "id": "dividing_polynomials_by_binomials_2", "display_name": "Dividing polynomials by binomials 2", "title": "Dividing polynomials by binomials 2", "description": "Simplify the ratio of a polynomial and a binomial.", "basepoints": 21.0, "slug": "dividing_polynomials_by_binomials_2", "kind": "Exercise", "name": "dividing_polynomials_by_binomials_2", "seconds_per_fast_problem": 20.0, "prerequisites": ["dividing_polynomials_by_binomials_1"], "exercise_id": "dividing_polynomials_by_binomials_2"}, "dividing_polynomials_by_binomials_1": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/dividing_polynomials_by_binomials_1/", "id": "dividing_polynomials_by_binomials_1", "display_name": "Dividing polynomials by binomials 1", "title": "Dividing polynomials by binomials 1", "description": "Simplify the ratio of a polynomial and a binomial.", "basepoints": 14.0, "slug": "dividing_polynomials_by_binomials_1", "kind": "Exercise", "name": "dividing_polynomials_by_binomials_1", "seconds_per_fast_problem": 7.0, "prerequisites": ["factoring_polynomials_with_two_variables", "factoring_polynomials_by_grouping_1"], "exercise_id": "dividing_polynomials_by_binomials_1"}, "recognizing_rays_lines_and_line_segments": {"uses_assessment_items": true, "path": "khan/math/geometry/intro_euclid/recognizing_rays_lines_and_line_segments/", "id": "recognizing_rays_lines_and_line_segments", "display_name": "Recognizing rays, lines, and line segments", "title": "Recognizing rays, lines, and line segments", "all_assessment_items": ["{\"sha\": \"f4d7fef6ca4960f380e21984488000544944026f\", \"live\": true, \"id\": \"x51347364c3579f0e\"}", "{\"sha\": \"52fd0cb4653c98c406ccad363af05e45b4c538e5\", \"live\": true, \"id\": \"x43ebed3f1aaf32df\"}", "{\"sha\": \"5435cda16a5abbcd33953dc3e6feaf11fe81debb\", \"live\": true, \"id\": \"x325189ef351e1ce2\"}", "{\"sha\": \"75f9a0beeba9056aacfd2d26ba7eff9599e15cf0\", \"live\": true, \"id\": \"xd4a56681a604a580\"}", "{\"sha\": \"67afae4052b6b5c39e73dee625d6347da567fb0e\", \"live\": true, \"id\": \"x8146620eacfa8a40\"}", "{\"sha\": \"88b2bf7f39a0e6127a538566229939bc05641862\", \"live\": true, \"id\": \"xbeb602666bfe43bd\"}", "{\"sha\": \"18d0b3dd1d0a2af0748142802cca28a6668e0c1c\", \"live\": true, \"id\": \"xa2a9778e48d88d0a\"}", "{\"sha\": \"5fb99b6b2e9a5f07bfcae2c2ca73ef5547edfd06\", \"live\": true, \"id\": \"xa0710714daf73ccd\"}", "{\"sha\": \"2933f13caa2bc7be168bc7468405d922cf0b620e\", \"live\": true, \"id\": \"x51fab693c7a527ea\"}", "{\"sha\": \"c352f48b2b02a40bdc5a6c031e43740e65a8f6de\", \"live\": true, \"id\": \"x789a553cd2915195\"}", "{\"sha\": \"8e990f7360f48642a9bc265865fff7f4e6fb1bc0\", \"live\": true, \"id\": \"x1792e135060da08e\"}", "{\"sha\": \"7790ca3884ea34dafe43b6dc2afe3769de1089e6\", \"live\": true, \"id\": \"xf995a8b6b44481dd\"}", "{\"sha\": \"6ea36c05ee02c0a40e7eeddec8f17992f4a199c5\", \"live\": true, \"id\": \"xaf9953283b7b1380\"}", "{\"sha\": \"f1478615d6c426b7a67dbc4473566b4dc49d7118\", \"live\": true, \"id\": \"x39c337ac076245f0\"}", "{\"sha\": \"54ae625a3af0c7fbd8a87f74b46fe9c6e0cecbcc\", \"live\": true, \"id\": \"x44047cacdfd1a175\"}", "{\"sha\": \"009e58c9df9e43c86ba31c80f0281098310e0494\", \"live\": true, \"id\": \"x226d060fdebf29aa\"}", "{\"sha\": \"61bcac574f13725e971535407a5fb9a488d82495\", \"live\": true, \"id\": \"x274d48272f849ac8\"}", "{\"sha\": \"d7d59dd1897dbb63d306c6329beeb3369490ece8\", \"live\": true, \"id\": \"xc6029fdcc728fff6\"}", "{\"sha\": \"1e391140356f4f339d90596d35924b30fe9f3549\", \"live\": true, \"id\": \"xb5abca6d639313ad\"}", "{\"sha\": \"c3b61e218dd05662f6dfc9e0ca0a378b4ba3024a\", \"live\": true, \"id\": \"x1f875c8711d49e8b\"}", "{\"sha\": \"87dbb8700fb96bb5795081d74d697b67683a826d\", \"live\": true, \"id\": \"x01e419c68e56db64\"}", "{\"sha\": \"049180384f3c71abaead4c213eaef0de9285dba5\", \"live\": true, \"id\": \"xdd041da149ef3100\"}", "{\"sha\": \"b5fa0065ddc20d3261322d3c4bfd5c9d45780b2d\", \"live\": true, \"id\": \"xa0ef235d68d16eb5\"}", "{\"sha\": \"c335bd54bf0762e5fd027295906c96e974993ce6\", \"live\": true, \"id\": \"x91bcf6245188161c\"}", "{\"sha\": \"af95817d1bf9b7f771922ca3353eae4d60b5909b\", \"live\": true, \"id\": \"x82daa18c96422893\"}", "{\"sha\": \"68c86c7a1c9a40046dd523ffd5ac58ce99ad44f6\", \"live\": true, \"id\": \"x6cc229e2540ecd49\"}", "{\"sha\": \"e3a62d2664d55ffb597399a9c1019e7260cd3a4b\", \"live\": true, \"id\": \"x03f46a2eb8a5e168\"}", "{\"sha\": \"7a48924296cc0d41f8070aad894a50997d900719\", \"live\": true, \"id\": \"xf3c6320582af0a18\"}", "{\"sha\": \"36de5ff9ef5db9e97044ab6693bb7a2ad869b42f\", \"live\": true, \"id\": \"x9815de2882d3c714\"}", "{\"sha\": \"637b8a3f9851242c2f22fe66e5b6ecc891d31d2f\", \"live\": true, \"id\": \"x93b98e4aaeccdbcf\"}"], "description": "Identify rays, lines, and line segments in geometric figures.", "basepoints": 10.0, "slug": "recognizing_rays_lines_and_line_segments", "kind": "Exercise", "name": "recognizing_rays_lines_and_line_segments", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "recognizing_rays_lines_and_line_segments"}, "challenging-beliefs-to-prevent-eating-disorders-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/challenging-beliefs-to-prevent-eating-disorders-/", "id": "challenging-beliefs-to-prevent-eating-disorders-", "display_name": "Challenging beliefs to prevent eating disorders", "title": "Challenging beliefs to prevent eating disorders", "all_assessment_items": ["{\"sha\": \"79de9082ce26538421a149546179b4c433100af9\", \"live\": true, \"id\": \"x9baf12b9b0dace3f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6a6959a3f7985b0b49b2668be329a9074f46e0f0\", \"live\": true, \"id\": \"xcd1d893ad46996bd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"311b841504e54b8cdb7dc9feecb71dd89d30145c\", \"live\": true, \"id\": \"xe8d455f08f39bb69\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e464a65f1d2864f4b90b48c535f9ae8c9f2f5825\", \"live\": true, \"id\": \"x3c57c94ea13789fd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4b4f9a753c2232ec72957e236d3c7564d4da663f\", \"live\": true, \"id\": \"x3ca956c6bafc8681\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to attitudes.", "basepoints": 10.0, "slug": "challenging-beliefs-to-prevent-eating-disorders-", "kind": "Exercise", "name": "challenging-beliefs-to-prevent-eating-disorders-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "challenging-beliefs-to-prevent-eating-disorders-"}, "dividing_decimals": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/dividing_decimals/", "id": "dividing_decimals", "display_name": "Dividing decimals 4", "title": "Dividing decimals 4", "description": "Practice dividing decimal numbers using \"long division\".", "basepoints": 21.0, "slug": "dividing_decimals", "kind": "Exercise", "name": "dividing_decimals", "seconds_per_fast_problem": 19.0, "prerequisites": ["division_4", "dividing_decimals_3"], "exercise_id": "dividing_decimals"}, "tangents-to-polar-curves": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/tangent-to-polar-curve/tangents-to-polar-curves/", "id": "tangents-to-polar-curves", "display_name": "Tangents to polar curves", "title": "Tangents to polar curves", "all_assessment_items": ["{\"sha\": \"6b0b479ba481343e11182d5ed4090f2b274ed004\", \"live\": true, \"id\": \"x2db7db367be49e0d\", \"perseus_api_major_version\": null}", "{\"sha\": \"f338db39c075d35ca34953c65fc19ecf0768c46f\", \"live\": true, \"id\": \"x0e5b293df07948ea\", \"perseus_api_major_version\": null}", "{\"sha\": \"c1e320ef5cf98a633762f7818b772d960a1857e5\", \"live\": true, \"id\": \"xfe1e552e37364f09\", \"perseus_api_major_version\": null}", "{\"sha\": \"421c4d5d226b5e1fbfa2ec0cbc9f337e243efab8\", \"live\": true, \"id\": \"x9494569c32e38605\", \"perseus_api_major_version\": null}", "{\"sha\": \"b64d0fe8438a0266ff810c51b16af1858b12c53e\", \"live\": true, \"id\": \"xb29fd67523b93af8\", \"perseus_api_major_version\": null}", "{\"sha\": \"442488155f57ed813bf0dfcc1abb9e4fbcfcd7f4\", \"live\": true, \"id\": \"x7949aad08078c163\", \"perseus_api_major_version\": null}", "{\"sha\": \"ea0aeb1f44f891ff5f7d31e66424a7dcf622f77b\", \"live\": true, \"id\": \"xe40d51026087e91b\", \"perseus_api_major_version\": null}", "{\"sha\": \"624a6b3fb99d03ad2c49d12d4da65ee424edcd16\", \"live\": true, \"id\": \"x7c7fa7a44e58b7c9\", \"perseus_api_major_version\": null}", "{\"sha\": \"13d0805da03f58590711bc1f8caf0fe2e397a60a\", \"live\": true, \"id\": \"x58055812887e77d8\", \"perseus_api_major_version\": null}", "{\"sha\": \"f25800150b8767c8b04627eb94de8503c0c23240\", \"live\": true, \"id\": \"xb7dbdeb4db5bfa2a\", \"perseus_api_major_version\": null}", "{\"sha\": \"876e7a2ca48db022d13f35596bfc90fe1a17be93\", \"live\": true, \"id\": \"xab536214f6a2dae5\", \"perseus_api_major_version\": null}", "{\"sha\": \"8b1435ea65afab312d47595f811890eb621b44a6\", \"live\": true, \"id\": \"x9b4b70871d4a081e\", \"perseus_api_major_version\": null}", "{\"sha\": \"ea2e624d95bfc45d7babdc0caaba2155dcdf0776\", \"live\": true, \"id\": \"x467c18833cfe235c\", \"perseus_api_major_version\": null}", "{\"sha\": \"bf45a0d4d6d5fd094d4a88a319223d7050d29392\", \"live\": true, \"id\": \"x9c853d959f99286b\", \"perseus_api_major_version\": null}", "{\"sha\": \"6c42d88d91276f2ef848ddc7475c4466d59db8b8\", \"live\": true, \"id\": \"xe0cefa41b35843d2\", \"perseus_api_major_version\": null}", "{\"sha\": \"fb7dd4aabfaeaff66ae00b716669aa1abbc210e2\", \"live\": true, \"id\": \"xe0852f8ea5c9fa5f\", \"perseus_api_major_version\": null}", "{\"sha\": \"cbe2099cdeed801a7f0bf51a580f3dcfde32ca40\", \"live\": true, \"id\": \"xa835ddc5a36d436b\", \"perseus_api_major_version\": null}", "{\"sha\": \"c93ac83c6f8ad22944391b571c88ff65b8fff36c\", \"live\": true, \"id\": \"x065d9291a2c8ec63\", \"perseus_api_major_version\": null}", "{\"sha\": \"2b44bdae9ed31cfcd62e5e7932ceae690961e3d1\", \"live\": true, \"id\": \"xe10e207ac9ca2f81\", \"perseus_api_major_version\": 2}", "{\"sha\": \"0010e6c719ad0adc2f30c2a0a2c4ad99355e0818\", \"live\": true, \"id\": \"xeb20aca63afa34f9\", \"perseus_api_major_version\": null}", "{\"sha\": \"2bde7f147021742d3b1125fb71406d3fd5ebe368\", \"live\": true, \"id\": \"xe03b38b33e44f575\", \"perseus_api_major_version\": null}", "{\"sha\": \"003c1a3f48e8caed5da97c850d9eef5864b7068f\", \"live\": true, \"id\": \"x176df5e98a9be34b\", \"perseus_api_major_version\": null}", "{\"sha\": \"3ee21849fa26762136d891d44be14a638c260e18\", \"live\": true, \"id\": \"x0a614e62774257c1\", \"perseus_api_major_version\": null}", "{\"sha\": \"1af5d79646cacb3bdab496db402e4648acb07a75\", \"live\": true, \"id\": \"x89fb57ac489f56f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"4ebefa866d8192f785fe9645525fc5b35783e4ac\", \"live\": true, \"id\": \"x5fe3d67fe93d31db\", \"perseus_api_major_version\": null}", "{\"sha\": \"ffd77c20b1450fad8e7eb987b84dce54cd367bce\", \"live\": true, \"id\": \"xb735ff9a2123e231\", \"perseus_api_major_version\": null}", "{\"sha\": \"e1b5b90d13ea8389a0c565bcabd1a98d1c32c877\", \"live\": true, \"id\": \"x66d49f1bab5f8fa4\", \"perseus_api_major_version\": null}", "{\"sha\": \"abf00be793480dbf63605a011235e44c2f1d9c25\", \"live\": true, \"id\": \"x67a5b35412577aaf\", \"perseus_api_major_version\": null}", "{\"sha\": \"e558a42edab8e8a5755052a36a9063bfaed5b7f7\", \"live\": true, \"id\": \"xbebafc413656072d\", \"perseus_api_major_version\": null}", "{\"sha\": \"10b8a8825da0440a5b1e63fed3c1fb750c957f9d\", \"live\": true, \"id\": \"x471b992827d82694\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "tangents-to-polar-curves", "kind": "Exercise", "name": "tangents-to-polar-curves", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "tangents-to-polar-curves"}, "rounding-decimals": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/rounding-decimals/", "id": "rounding-decimals", "display_name": "Rounding decimals 2", "title": "Rounding decimals 2", "all_assessment_items": ["{\"sha\": \"f6eb6d0774bf11b20f5bb3a18c23e40ffc2b543d\", \"live\": true, \"id\": \"x66cef2e5784fb2b5\"}", "{\"sha\": \"615a154ff150c8b5bcdf963e6a1d4e1aa7f47274\", \"live\": true, \"id\": \"x5c4e365cd59ea271\"}", "{\"sha\": \"ac2aa8c165ac9ebfe4f70f465cc2a6411228c250\", \"live\": true, \"id\": \"x4d41ad228ebe0ab1\"}", "{\"sha\": \"ba97004f08aa91c83c4ea597bf333ee15a4559bd\", \"live\": true, \"id\": \"x57dd473c072e31d4\"}", "{\"sha\": \"64aadcf529b9e6d0fff985b61c53598f7a1939ff\", \"live\": true, \"id\": \"x191eea0148fed51d\"}", "{\"sha\": \"376750164907223736549f049fff4b33c128bf1f\", \"live\": true, \"id\": \"x118cd65780273a1f\"}", "{\"sha\": \"cad2c943749557fe0031dc8a162e9831d25342d8\", \"live\": true, \"id\": \"x42a65c81072daee8\"}", "{\"sha\": \"ef0568ad40b914ebe9d137043097390e0d886dce\", \"live\": true, \"id\": \"xb24671f272bad65a\"}", "{\"sha\": \"8df6e6cb7c10382dedd841d91e313e8f097150ed\", \"live\": true, \"id\": \"x7497ca62106aa544\"}", "{\"sha\": \"e3dc96c9d344620588975f13a6287878757eb80d\", \"live\": true, \"id\": \"xd8cde7c2fcfe660d\"}", "{\"sha\": \"b36fb7a0550c7080c3ffd9b8e6a55f879fd16035\", \"live\": true, \"id\": \"x7b4b4e8c96199099\"}", "{\"sha\": \"4d508096f94ffedc030804bb028e01117d78874a\", \"live\": true, \"id\": \"xc2f0fa55161963cd\"}", "{\"sha\": \"f8d3ee6edf4c00b0c172317035c1d2c9aaf1d3c1\", \"live\": true, \"id\": \"x308fad1b950558b9\"}", "{\"sha\": \"da28add9538f5acd4c9362f09cd10450919f2262\", \"live\": true, \"id\": \"x39647978e2a13e7a\"}", "{\"sha\": \"16969679493bbd15d8d30acf271774699dd002e4\", \"live\": true, \"id\": \"x17225226160dacc7\"}", "{\"sha\": \"29f3adcc3a8b360b0f2f138bd6c67b44a31e42b1\", \"live\": true, \"id\": \"xf6d8bb9b359909d1\"}", "{\"sha\": \"1765a3f17a1563715679fb61a0ef566f0b86f7e0\", \"live\": true, \"id\": \"x4860b90b372b65af\"}", "{\"sha\": \"df4296f97d9af8f0beb7f7e40182e7b6214a269f\", \"live\": true, \"id\": \"x9940a6a52527d4b0\"}", "{\"sha\": \"16ad2935309545d2a201fd6a69adba8ba65dae92\", \"live\": true, \"id\": \"x204401f326f634c2\"}", "{\"sha\": \"4bdca678c6aa076068373673cf047a0628e54dd5\", \"live\": true, \"id\": \"x8673b04fd4a8c845\"}"], "description": "Round decimals using number lines. \u00a0Select numbers that round to a given value.", "basepoints": 10.0, "slug": "rounding-decimals", "kind": "Exercise", "name": "rounding-decimals", "seconds_per_fast_problem": 4.0, "prerequisites": ["rounding_numbers"], "exercise_id": "rounding-decimals"}, "variance": {"uses_assessment_items": false, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/variance/", "id": "variance", "display_name": "Sample and population variance", "title": "Sample and population variance", "description": "", "basepoints": 29.0, "slug": "variance", "kind": "Exercise", "name": "variance", "seconds_per_fast_problem": 60.0, "prerequisites": ["square_roots", "mean_median_and_mode"], "exercise_id": "variance"}, "normal-forces---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/normal-forces-passage-1/", "id": "normal-forces---passage-1", "display_name": "Frictional forces on mobility walkers", "title": "Frictional forces on mobility walkers", "all_assessment_items": ["{\"sha\": \"2c2c40ef912650b864224423bbd832881ab03c77\", \"live\": true, \"id\": \"xee887690e224ba66\"}", "{\"sha\": \"3868b86ea47133e0464cd4e849791efe7b3b69e1\", \"live\": true, \"id\": \"x454398d08a609bd0\"}", "{\"sha\": \"30837f893dc6ba9fc9d7e65339bee28b00a57922\", \"live\": true, \"id\": \"xe783135b3316bb72\"}", "{\"sha\": \"5552faea5a4eaadb888678c130d7decd405deaf4\", \"live\": true, \"id\": \"x8a544c92585607be\"}", "{\"sha\": \"4875f3f3e40ddf8aac65f4e242a2a96b515c6db7\", \"live\": true, \"id\": \"xd722d92bd6ed2780\"}"], "description": "This passage will test your knowlege on normal forces", "basepoints": 10.0, "slug": "normal-forces-passage-1", "kind": "Exercise", "name": "normal-forces---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "normal-forces---passage-1"}, "normal-forces---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/normal-forces-passage-2/", "id": "normal-forces---passage-2", "display_name": "An elevator in a hospital", "title": "An elevator in a hospital", "all_assessment_items": ["{\"sha\": \"6b2562d9d3ff83351234dab2562f73c907cc2165\", \"live\": true, \"id\": \"x7c003728aa00c2c8\"}", "{\"sha\": \"05d5b55880be2624a0ae32c658502e0a20ebe52d\", \"live\": true, \"id\": \"xcf7a802c88708274\"}", "{\"sha\": \"32d51f3878e68c479ab8444a0f7886fb13f846e0\", \"live\": true, \"id\": \"x41741add75ac4e90\"}", "{\"sha\": \"e01930a9078e69b960a46f29e356087563b7ca27\", \"live\": true, \"id\": \"x43200beabddbc9aa\"}", "{\"sha\": \"deb0adac7d881e4aa7d5d6fd7e484fb43d3c051e\", \"live\": true, \"id\": \"x51b5a2878c79c227\"}"], "description": "This passage will test your knowledge on normal forces", "basepoints": 10.0, "slug": "normal-forces-passage-2", "kind": "Exercise", "name": "normal-forces---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "normal-forces---passage-2"}, "roots-of-decimals-and-fractions": {"uses_assessment_items": true, "id": "roots-of-decimals-and-fractions", "display_name": "Roots of decimals and fractions", "title": "Roots of decimals and fractions", "all_assessment_items": ["{\"sha\": \"dd137256eea3ab458cfae705ba2067d730eb07ae\", \"live\": true, \"id\": \"xfdc0a73e32b95239\"}", "{\"sha\": \"1ee3721c4c577686f650d927570076a1541014cb\", \"live\": true, \"id\": \"x350306e3bf7fcfb9\"}", "{\"sha\": \"cd3541ac9a4e2ddc9f6554dc213cfa1219c3c2c4\", \"live\": true, \"id\": \"x54b60ce618ea15fa\"}", "{\"sha\": \"0588b23b529eb571366e57a812a10ae05a7af881\", \"live\": true, \"id\": \"x0f5e9fcc3e062e3e\"}", "{\"sha\": \"ab9c38c2dd5ea9ab5347903b51b3d3fb2410b4aa\", \"live\": true, \"id\": \"xc2e9f9fe791cab7c\"}", "{\"sha\": \"c35d45225d2689d26447cfd0453c88f9514cbf50\", \"live\": true, \"id\": \"xc1f5358b4cf7c9c6\"}", "{\"sha\": \"b78d63669d97424f78e7a5dbcf276541b745f3e6\", \"live\": true, \"id\": \"x63eee761487cf73b\"}", "{\"sha\": \"59ef67cfad88bf7029626b85686a4793dc7b5b08\", \"live\": true, \"id\": \"xfd9077998e6aafdf\"}", "{\"sha\": \"095d66254d945c3e348bfef30ac8cdc4f81ec110\", \"live\": true, \"id\": \"x93c0613437fca803\"}", "{\"sha\": \"c066a79ebf98ba069dee236fa6058b86fda418c3\", \"live\": true, \"id\": \"x4db78bbc7986b1df\"}", "{\"sha\": \"f4c296bc1908bf64a71675e450453e88b6621e0d\", \"live\": true, \"id\": \"xbe5f56572b1c61c4\"}", "{\"sha\": \"ba5c6fbb71ceb2ee9ebba5a5fc6ad34d62d4952e\", \"live\": true, \"id\": \"x50ec088fdeab8b2a\"}", "{\"sha\": \"db960f0c700084fce837856fdc4a523176b4ba2f\", \"live\": true, \"id\": \"x84eaac4a2ad086a3\"}", "{\"sha\": \"5068e4d37e6b4804f51ee2c2252cec312f96802d\", \"live\": true, \"id\": \"xfa95fd3ec793bc71\"}", "{\"sha\": \"50328f68986f2d9b1896f7f6451170efc1647f91\", \"live\": true, \"id\": \"x45f32bbbb8b8be93\"}", "{\"sha\": \"b98b70e35788e21421dedb950196c7be19f5f906\", \"live\": true, \"id\": \"xa1b64bc489172829\"}"], "description": "Practice taking square and cube roots of decimals and fractions.", "basepoints": 10.0, "path": "roots-of-decimals-and-fractions/", "slug": "roots-of-decimals-and-fractions", "kind": "Exercise", "name": "roots-of-decimals-and-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["cube_roots", "square_roots", "exponents-with-negative-fractional-bases"], "exercise_id": "roots-of-decimals-and-fractions"}, "bioenergetics-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/principles-of-bioenergetics/bioenergetics-questions/", "id": "bioenergetics-questions", "display_name": "Bioenergetics questions (2)", "title": "Bioenergetics questions (2)", "all_assessment_items": ["{\"sha\": \"626c6af2d7202e9766e2fbf52b20734b7eb70d9f\", \"live\": true, \"id\": \"x5d8572a0c2ac5be4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0a57cd8d18c361ba27e0bdaecd9c05fb4ce0b93e\", \"live\": true, \"id\": \"xfadb49d2c5c686c8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f4ff5b3922ddd504bb86c2d1818db1056a4f2535\", \"live\": true, \"id\": \"x52af90f5cc3a3ab0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2a17b46c3f45b24ea4b666edfd7305fe8ecdd98e\", \"live\": true, \"id\": \"x4ac8aba15245bc7b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8d51b84a539b2b0e235a9de7ec7fc1665144f83e\", \"live\": true, \"id\": \"x0b0b93ee44ef2165\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8c3274ce148d38da5a6b96fff6a339d3fb473ea9\", \"live\": true, \"id\": \"xc69a613d5ec5c120\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0079694249d7322b5932eeb78a918aa6fe85e55f\", \"live\": true, \"id\": \"xfb6a0876965fa267\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"40497a2f0ac2caab1d0513c84b8b55d998c735e5\", \"live\": true, \"id\": \"x528554f408c87abb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d0d9e4549c3b2b2f98c4ae27f697370fde3e321\", \"live\": true, \"id\": \"xbbe71218d13d9e74\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4196e114d0d685d271f679521223ec2524fc2bb5\", \"live\": true, \"id\": \"xaf946eef4166088b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Bioenergetics questions", "basepoints": 10.0, "slug": "bioenergetics-questions", "kind": "Exercise", "name": "bioenergetics-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "bioenergetics-questions"}, "protestant-reformation": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/protestant-reformation1/protestant-reformation/", "id": "protestant-reformation", "display_name": "Protestant Reformation", "title": "Protestant Reformation", "all_assessment_items": ["{\"sha\": \"ffe56d793e6c0008bc5c8df92ac3984504039b59\", \"live\": true, \"id\": \"x81049d5300d0967f\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee14cf1d08aa88d5325ecf77b674727b6e823b10\", \"live\": true, \"id\": \"x877a6d92d39c0eb3\", \"perseus_api_major_version\": null}", "{\"sha\": \"80da0c364847b88f88756a0eda84d05a79e4d40e\", \"live\": true, \"id\": \"xbc2516a3048ccb8e\", \"perseus_api_major_version\": null}", "{\"sha\": \"143902e429ec6d3b5b1adfafc9f1a6049fb06b73\", \"live\": true, \"id\": \"x3796f5cb108b6e4f\", \"perseus_api_major_version\": null}", "{\"sha\": \"de7a4676d0888bf1b4712f8e30b050b4da96348f\", \"live\": true, \"id\": \"x69eb80fc71531ee4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c084f35bc8d7178de86470142564085cd641ce61\", \"live\": true, \"id\": \"xe249258d905307cf\", \"perseus_api_major_version\": 3}", "{\"sha\": \"cf0af0f1b9fb525fdc24f080243f4dace48452d5\", \"live\": true, \"id\": \"x99fe41200ea83046\", \"perseus_api_major_version\": null}", "{\"sha\": \"49119105cc6b8f2890cc9a51b3ac6ec69e81a576\", \"live\": true, \"id\": \"xc4bf8a75bc0fb57e\", \"perseus_api_major_version\": null}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "protestant-reformation", "kind": "Exercise", "name": "protestant-reformation", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "protestant-reformation"}, "the-great-pyramids-at-giza-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap/the-great-pyramids-at-giza-quiz/", "id": "the-great-pyramids-at-giza-quiz", "display_name": "The Great Pyramids at Giza (quiz)", "title": "The Great Pyramids at Giza (quiz)", "all_assessment_items": ["{\"sha\": \"7e9da686e77a1298f42f60345b91044c31fb06de\", \"live\": true, \"id\": \"xd22f96f70f13b123\"}", "{\"sha\": \"c08f344c83a0ae44bca1a667cfe484c7d5ed7dd1\", \"live\": true, \"id\": \"x3345ec73bff4b06f\"}", "{\"sha\": \"881f1506981542f209902667439f383ddcd2b61f\", \"live\": true, \"id\": \"xf99bc2b2461e676f\"}", "{\"sha\": \"066c9f98db2b034ad4d01c23c15e77fcc8ef0dae\", \"live\": true, \"id\": \"x92031c8ec86134f5\"}", "{\"sha\": \"d8e54d5e707b66c4aa9d5588e459b7637a1ac609\", \"live\": true, \"id\": \"x2cc13baf4f8c3f64\"}", "{\"sha\": \"c936e019480af309f1673da50e79290ff41ea906\", \"live\": true, \"id\": \"x58fb1ca03cdd8f24\"}", "{\"sha\": \"bd49380b4c9873b329062a6685e40077cb3effe3\", \"live\": true, \"id\": \"xf47faa74993b8c12\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "the-great-pyramids-at-giza-quiz", "kind": "Exercise", "name": "the-great-pyramids-at-giza-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-great-pyramids-at-giza-quiz"}, "language-location-in-the-brain---asl": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/language-location-in-the-brain-asl/", "id": "language-location-in-the-brain---asl", "display_name": "Language location in the brain - ASL", "title": "Language location in the brain - ASL", "all_assessment_items": ["{\"sha\": \"0be617ab632b75ae0e52237a04ff11e580024c7e\", \"live\": true, \"id\": \"x901ab358f89eee01\"}", "{\"sha\": \"e8283c9d3afbe3a9d55114ab4458dd085b6087cc\", \"live\": true, \"id\": \"xe59b33deab76e1b9\"}", "{\"sha\": \"db64c3cf740a817320ff656ca9fd796978b16e42\", \"live\": true, \"id\": \"x479a96d53bf59e33\"}", "{\"sha\": \"5e9e18082e4a88886bd6dd794f0bfc26bbe961f2\", \"live\": true, \"id\": \"xfd9a584ca2e05925\"}", "{\"sha\": \"145eda260fea9a6c897bc601f4c19b8b44a3e154\", \"live\": true, \"id\": \"xd3ba946c5498cde8\"}"], "description": "Language location in the brain - ASL", "basepoints": 10.0, "slug": "language-location-in-the-brain-asl", "kind": "Exercise", "name": "language-location-in-the-brain---asl", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "language-location-in-the-brain---asl"}, "linear_inequalities": {"uses_assessment_items": false, "path": "khan/math/algebra/linear_inequalities/inequalities/linear_inequalities/", "id": "linear_inequalities", "display_name": "Multi-step linear inequalities", "title": "Multi-step linear inequalities", "description": "Solve linear inequalities in multiple steps.", "basepoints": 24.0, "slug": "linear_inequalities", "kind": "Exercise", "name": "linear_inequalities", "seconds_per_fast_problem": 29.0, "prerequisites": ["interpretting-solving-linear-inequalities", "multistep_equations_with_distribution", "understanding-the-process-for-solving-linear-equations"], "exercise_id": "linear_inequalities"}, "find-the-mistake-two-step-equations": {"uses_assessment_items": true, "id": "find-the-mistake-two-step-equations", "display_name": "Find the mistake in solving two-step equations", "title": "Find the mistake in solving two-step equations", "all_assessment_items": ["{\"sha\": \"8d2f77fbd21b156ea2174d46e08d96c0301211ec\", \"live\": true, \"id\": \"x95afe613ac00c9e2\"}", "{\"sha\": \"1421d95aed43d401e62bbc85d702dbc13c80b089\", \"live\": true, \"id\": \"xdbb15c782254897a\"}", "{\"sha\": \"04825ead79f169e5d55ea84e7ed24fb7a4b49222\", \"live\": true, \"id\": \"x54d66e137756b7ed\"}", "{\"sha\": \"835d6dba953d0c4ede3d4ee5afd74437a4d7db15\", \"live\": true, \"id\": \"x3c36aebb56325408\"}", "{\"sha\": \"3d37706e900df657fc471bf02c82f4c055f4bb3f\", \"live\": true, \"id\": \"xc15463da82e97b32\"}", "{\"sha\": \"aa01cde9f87ecfa648af45e1a23ac581dd6c0100\", \"live\": true, \"id\": \"x5ec1950fa1f2ecc6\"}", "{\"sha\": \"7731329e16195085000222ecfce1e36c50ffa7a2\", \"live\": true, \"id\": \"xfd4559b622eddb3d\"}", "{\"sha\": \"170a4db37ed64611e7f3018dad787216ab25fb87\", \"live\": true, \"id\": \"x59f843993d96b030\"}", "{\"sha\": \"856ac3d2f7dae1fc909008877f6448714b57be59\", \"live\": true, \"id\": \"x4cc80dcd17ac98b8\"}", "{\"sha\": \"11952c8c9859983b5c7340296a782e0ddeb4d072\", \"live\": true, \"id\": \"x26e5b5a6494aec1e\"}", "{\"sha\": \"c6c90097852056b9c181a400e61badcf749462e2\", \"live\": true, \"id\": \"x5bf5430b107a0c49\"}", "{\"sha\": \"19b1af143d7de89806c6408a290a4e3634a48784\", \"live\": true, \"id\": \"xaa8d2e8272d79034\"}", "{\"sha\": \"77ff9005018160d5b403dca3d76cdad1a34d451e\", \"live\": true, \"id\": \"x87a5066019792e35\"}", "{\"sha\": \"8131f6bbc7ed31d146f05d5f4a656c7519105006\", \"live\": true, \"id\": \"x01f988974aef97a5\"}", "{\"sha\": \"1f621858074a2963df9c2dfd2f3880639c0e9620\", \"live\": true, \"id\": \"xeca7409b2969c798\"}", "{\"sha\": \"5682c4611a33813e04df93de2123a3a69c998f16\", \"live\": true, \"id\": \"x90202c7e83f9d0a1\"}", "{\"sha\": \"9008f9e526327e17208005dcb2e130ee6c94353c\", \"live\": true, \"id\": \"x3209133ddef84657\"}", "{\"sha\": \"93381f2516b9449446b04213512b2b885119d89b\", \"live\": true, \"id\": \"x46cdabd458901ea4\"}", "{\"sha\": \"549c114c50ab39ef1f503cc1c6c5b06a9ce3ebc8\", \"live\": true, \"id\": \"x2c71308d80de8147\"}", "{\"sha\": \"a2d0b105817dfff536e310d92fe1fca29ac29bf6\", \"live\": true, \"id\": \"x6fc51ef018608551\"}", "{\"sha\": \"4161f1cea893b91c3cb56ed070a819c0b07f4b07\", \"live\": true, \"id\": \"x7c45a4607a08ce55\"}"], "description": "Practice spotting the mistake in someone else's work as they attempt to solve two-step equations.", "basepoints": 10.0, "path": "find-the-mistake-two-step-equations/", "slug": "find-the-mistake-two-step-equations", "kind": "Exercise", "name": "find-the-mistake-two-step-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["linear_equations_2"], "exercise_id": "find-the-mistake-two-step-equations"}, "immune-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/the-immune-system/immune-system-questions/", "id": "immune-system-questions", "display_name": "Immune system questions", "title": "Immune system questions", "all_assessment_items": ["{\"sha\": \"b4bb38c79bff6abd4c7942b240c12f35be57cf05\", \"live\": true, \"id\": \"xd3c441330aa59dff\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"562b782dffebe3bc171cedb6e7002f50ebf21d00\", \"live\": true, \"id\": \"xa8b21dfefd8cdb58\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"05e98d808244276e55ffa4121b9f8336dffd5c3e\", \"live\": true, \"id\": \"x8852d445b7bdb874\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"359d4d5e1abad46e9589aaa878bf1c36e84ccb01\", \"live\": true, \"id\": \"xdaf035bdf28398ad\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6be07d561173b60a9981b7518b387801b99f3acc\", \"live\": true, \"id\": \"x00fcea73ae29bd15\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"04b2ece5443708b3e8e8d3ca831d312eb1661d3f\", \"live\": true, \"id\": \"x304f563f81e52ecd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7807e95fc0a46eff01c2d560d61640103d9c784a\", \"live\": true, \"id\": \"xb8db9c58e7211517\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87aa217d21c83f07693597e2141247c0e03fcf94\", \"live\": true, \"id\": \"x57b33825f6154777\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a39fc01c89ade11adf18efb484f314cb00ed7f89\", \"live\": true, \"id\": \"x95b6a0dbc893563f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b23d65cd0a29256242a6372af890def48459d7ae\", \"live\": true, \"id\": \"x491d95b890bfb96d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Immune system questions", "basepoints": 10.0, "slug": "immune-system-questions", "kind": "Exercise", "name": "immune-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "immune-system-questions"}, "test-your-knowledge-of-biodiversity-champions": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/biodiversity-protection/biodiversitychampions/test-your-knowledge-of-biodiversity-champions/", "id": "test-your-knowledge-of-biodiversity-champions", "display_name": "Test your knowledge: biodiversity champions", "title": "Test your knowledge: biodiversity champions", "all_assessment_items": ["{\"sha\": \"d5176c5ac127897bc94cb4e35c6204afd52af5e4\", \"live\": true, \"id\": \"x20b82a2de1ca829f\"}", "{\"sha\": \"612478250f948ee0962a5978f08ac5096677a968\", \"live\": true, \"id\": \"x79d20bb7a6a833f8\"}", "{\"sha\": \"a3485e39a8678d3882760ea16cb6aa6035f712e0\", \"live\": true, \"id\": \"xe121fc26c5bf4cdf\"}", "{\"sha\": \"08d847091b5e7342e0f9152a3240fd516190f641\", \"live\": true, \"id\": \"xbc6aef87c510d13d\"}", "{\"sha\": \"94af9f6206015ef16aa7b9dcd44d222f5266b57b\", \"live\": true, \"id\": \"xdba5bbbdeed64174\"}", "{\"sha\": \"3271aebe76c496c4f7db493ce1bc1e4d8bcda33d\", \"live\": true, \"id\": \"x291ed93c359c5e76\"}", "{\"sha\": \"0409321347158d207cc2ae84df3c75b95cf5c10e\", \"live\": true, \"id\": \"x14f7c77cebf7507a\"}", "{\"sha\": \"267e62f9b7ca3c7170d84b6cba6fa5fe4a787a99\", \"live\": true, \"id\": \"xa27ad2999bd30ec4\"}", "{\"sha\": \"4a1681f375a79192aa391677bb35747ca2d91ad2\", \"live\": true, \"id\": \"x0b04d20b2c400c93\"}", "{\"sha\": \"4eeea3349ce5770acfbe2718779ea43b07a02122\", \"live\": true, \"id\": \"x7083153614d107f5\"}", "{\"sha\": \"512672bf3a77df918f3152727e32d14220057ea1\", \"live\": true, \"id\": \"xdfc09b252eb78873\"}"], "description": "Test your\u00a0knowledge of biodiversity champions", "basepoints": 10.0, "slug": "test-your-knowledge-of-biodiversity-champions", "kind": "Exercise", "name": "test-your-knowledge-of-biodiversity-champions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge-of-biodiversity-champions"}, "fractions_cut_and_copy_2": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/fractions_cut_and_copy_2/", "id": "fractions_cut_and_copy_2", "display_name": "Fractions cut and copy 2", "title": "Fractions cut and copy 2", "description": "", "basepoints": 23.0, "slug": "fractions_cut_and_copy_2", "kind": "Exercise", "name": "fractions_cut_and_copy_2", "seconds_per_fast_problem": 26.0, "prerequisites": ["fractions_cut_and_copy_1"], "exercise_id": "fractions_cut_and_copy_2"}, "fractions_cut_and_copy_1": {"uses_assessment_items": false, "path": "khan/math/arithmetic/fractions/visualizing-equivalent-fractions/fractions_cut_and_copy_1/", "id": "fractions_cut_and_copy_1", "display_name": "Fractions cut and copy 1", "title": "Fractions cut and copy 1", "description": "", "basepoints": 18.0, "slug": "fractions_cut_and_copy_1", "kind": "Exercise", "name": "fractions_cut_and_copy_1", "seconds_per_fast_problem": 13.0, "prerequisites": ["visualizing-equivalent-fractions", "division-with-fractions-and-whole-numbers"], "exercise_id": "fractions_cut_and_copy_1"}, "testing-solutions-of-inequalities": {"uses_assessment_items": true, "id": "testing-solutions-of-inequalities", "display_name": "Testing solutions of inequalities", "title": "Testing solutions of inequalities", "all_assessment_items": ["{\"sha\": \"4c2a7c891fcafc88b9e25794968e1f737993ab74\", \"live\": true, \"id\": \"xc45e6abf36c9b825\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16b4302f63a9269ad0ede76541de6135f4117037\", \"live\": true, \"id\": \"x2f79ae06ae56c7e3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41a9716ae4807e72da8f246ca531c73dfc060631\", \"live\": true, \"id\": \"x20d715cb0e779987\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"53a8f33a5b81e9a3d48f0656bc6ac0381b062e95\", \"live\": true, \"id\": \"x37352153c4227bc9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"34da67d854b73ee45b1da14f342ea5ea0b8e217b\", \"live\": true, \"id\": \"x08436d54d6029232\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ee7797f175ee592eb4eccd705d0c84a69a6b3a3d\", \"live\": true, \"id\": \"xe16da25266c8e167\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e6618efd17da9cc13e9569f3f101ffd8a97f0d3\", \"live\": true, \"id\": \"x067bea928bafdb8d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e02ad439614920e91d6dc9cbdf1a48b8da1e392d\", \"live\": true, \"id\": \"x7ae63960f45edb18\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7fe8d5c15732d9aff71e9e9dab6bedfb71f689a\", \"live\": true, \"id\": \"x17e8ddf575f81c28\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5956bfae4171cd5e47f6062406d0b56650c3cddc\", \"live\": true, \"id\": \"x1845f7dde0190944\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"179b1d202ff72cf1edd860e8d3290265915c36b3\", \"live\": true, \"id\": \"xe83b9131fe823289\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2fb0fd81ac0f5c4a4e1526543d60c7e825139e75\", \"live\": true, \"id\": \"x81adbc717f62a7a2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b2709c9263253027f411686c9389b3494a18aec2\", \"live\": true, \"id\": \"x9eeb3418ee817100\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"065495eced9e10f76dcce9dde9b88700c412a59a\", \"live\": true, \"id\": \"x7eb0eea3a347fb67\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4c11166cbdb09aa0265b41b7899403ee5b09b72f\", \"live\": true, \"id\": \"x8226966ca3af32db\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"318382f60525aaa5e1974bd598095dbd77ca5847\", \"live\": true, \"id\": \"x61c71a133217fd64\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7bb630e73b34d5641480c9e51c74879acb5b5d68\", \"live\": true, \"id\": \"x4300a064f5aa545d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48d13fee79f3b616b05c16c309ed8b1d45516759\", \"live\": true, \"id\": \"x477d1eb0d001266a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4e23f8e5ddd873946e11fdb29e63a73c89712b54\", \"live\": true, \"id\": \"xf4e7dc40152b012f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71fedbe99912682ad204051e6196c66c87c131bb\", \"live\": true, \"id\": \"x654fcf149f21f10b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Practice telling whether or not a value solves an inequality.", "basepoints": 10.0, "path": "testing-solutions-of-inequalities/", "slug": "testing-solutions-of-inequalities", "kind": "Exercise", "name": "testing-solutions-of-inequalities", "seconds_per_fast_problem": 4.0, "prerequisites": ["testing-solutions-of-equations-inequalities"], "exercise_id": "testing-solutions-of-inequalities"}, "transformation-puzzles-2": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/transformation-puzzles/transformation-puzzles-2/", "id": "transformation-puzzles-2", "display_name": "Transformation puzzles 3", "title": "Transformation puzzles 3", "all_assessment_items": ["{\"sha\": \"e01456e2c1cb7ff9b45e180db95aebcb8283000a\", \"live\": true, \"id\": \"x98d2722d01bc916f\"}", "{\"sha\": \"36681e1839f2b994da32ac2c22f139c24a321e30\", \"live\": true, \"id\": \"xa02fa209cb74c240\"}", "{\"sha\": \"de50145d1d20ccb6080ccf9dc7aee1ac17239b54\", \"live\": true, \"id\": \"x4f04eec239a95ef2\"}", "{\"sha\": \"ae769c5df68aaeff3f22aa9419557a6d08a9aeda\", \"live\": true, \"id\": \"x9ab520d9af8ff345\"}", "{\"sha\": \"b7734fcb910c637e35391a7180fc279c9c0ecbb6\", \"live\": true, \"id\": \"xda9da29561254ae0\"}", "{\"sha\": \"83834aafede5c8d86a8f830acd8d034af1b3a612\", \"live\": true, \"id\": \"x5f7c7e6162827590\"}"], "description": "", "basepoints": 29.0, "slug": "transformation-puzzles-2", "kind": "Exercise", "name": "transformation-puzzles-2", "seconds_per_fast_problem": 60.0, "prerequisites": [], "exercise_id": "transformation-puzzles-2"}, "area-of-quadrilaterals-and-polygons": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/area-of-quadrilaterals-and-polygons/", "id": "area-of-quadrilaterals-and-polygons", "display_name": "Area of quadrilaterals and polygons", "title": "Area of quadrilaterals and polygons", "all_assessment_items": ["{\"sha\": \"c34917daa346d52a93f4a2b5e73d1d161c70b88f\", \"live\": true, \"id\": \"x620e1c934f1e4b84\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"79de2637482b291b515d93d8d2d8cab8c9eba799\", \"live\": true, \"id\": \"x0b89f85aa9674dcc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7a82f6f4fb12709b38378afc1008d969926121db\", \"live\": true, \"id\": \"x119cb318a0971afa\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b61a465beb41c9d56fc912fb3b1b53e57dd94b44\", \"live\": true, \"id\": \"xe6e112cdc9dbb73f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c11bf9bf4cd06cb908d80e0b8d43e980d368927f\", \"live\": true, \"id\": \"x17de1071e1774f9c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"98e36ba0297f2c14f277723fe27405395027c862\", \"live\": true, \"id\": \"xe5bccbf4722fdeeb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"db7474a84c5d8192679aedb42f54574e76cbdff4\", \"live\": true, \"id\": \"x622b7ed0a65289f8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"96957711b866fbb405422ff5c5a4f89202e1bc33\", \"live\": true, \"id\": \"xc6a433f2e67737d2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2784595757a5d0a9a9476dd4dbb6047272c1bee3\", \"live\": true, \"id\": \"xc8e9d9369bc6e59f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a238250337cd30df93b0bf22a749e8c8f1545ddf\", \"live\": true, \"id\": \"x14c2739835bc3595\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea1e21b0025e975d6b7080aefd3d508bb222733b\", \"live\": true, \"id\": \"x61bc2a088638ca5a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b0342d973e2e9bab64d19bb0b46ab183741769e\", \"live\": true, \"id\": \"x6fd1526fbe59f1d1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"275912d632c323c65fab0b0ca189acaa96d564f4\", \"live\": true, \"id\": \"x97977dc7621a891b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ce53f3d014983e4990c45a561960fc7201053f8d\", \"live\": true, \"id\": \"x3c35f1c400b3f9a6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6cd0bdc6f3eadf970828ecdc161f49b595eedaac\", \"live\": true, \"id\": \"xb8e9c8dc56adcb9b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aa3878ccf5a24692f4b424807506408c3c02e901\", \"live\": true, \"id\": \"xeba5fef30cb925b3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5f2373b8a9fa4d697b7a5cc57f023fa4e5eb88eb\", \"live\": true, \"id\": \"x1720d75a841d2a5c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8aea795dbf2736587e279b6ce3c358a14f43bece\", \"live\": true, \"id\": \"xe617682b69dca0f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"032e81c75b379060129cbd5efc8b944131c9caaf\", \"live\": true, \"id\": \"xd53f6366a7cede28\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"66efbfa719ae91e5af570555f863ea51431bb026\", \"live\": true, \"id\": \"x4c50a2fd376cb5de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"230d040065a1320be8e17c7fbbe7ed468ff3a34c\", \"live\": true, \"id\": \"x2367f14ac3a50716\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c3b3518e46f3e2b7f56d05f37832817cdf8aa157\", \"live\": true, \"id\": \"x127951d0577f3c9a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db5d2324b78bca8a50570e54682347f80c56a31e\", \"live\": true, \"id\": \"xf55fc8dffd606526\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"314955f21241e1f4622e486c8b50e19be251d5b0\", \"live\": true, \"id\": \"xe5c1f8ac908c8a9f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2860013492f8a4448abe7c15ce1b9d82a63b27df\", \"live\": true, \"id\": \"x323637e122bbb8cf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11295092497afb776bb620d56588a6429db569f8\", \"live\": true, \"id\": \"xa5d6d8fe1d3ade25\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d1119269ca4688aac38ca70a79e0917e8b041a2\", \"live\": true, \"id\": \"x52d7355036d988ca\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"43cbfd0915cd870700177d4bdcdc95e025c3ba92\", \"live\": true, \"id\": \"x2d32bb179b66c8a0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0ce82a9f8e9d1419995626f950608213c5dc9930\", \"live\": true, \"id\": \"x3657a32a13a14530\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc411d6527157960286b520d18824685c010709a\", \"live\": true, \"id\": \"x7bc31078938b83cd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "area-of-quadrilaterals-and-polygons", "kind": "Exercise", "name": "area-of-quadrilaterals-and-polygons", "seconds_per_fast_problem": 4.0, "prerequisites": ["area_of_parallelograms", "areas_of_trapezoids_rhombi_and_kites", "composing-and-decomposing-shapes"], "exercise_id": "area-of-quadrilaterals-and-polygons"}, "dipylon-amphora-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/greek-art/greek-pottery/dipylon-amphora-quiz/", "id": "dipylon-amphora-quiz", "display_name": "Dipylon Amphora (quiz)", "title": "Dipylon Amphora (quiz)", "all_assessment_items": ["{\"sha\": \"09308c1150a4a9b5b584c55e12baf7c25ff5a954\", \"live\": true, \"id\": \"x1876cd7e0ae05d54\"}", "{\"sha\": \"0320ab95e3af675e8101adaf752bf04415689b69\", \"live\": true, \"id\": \"xb3cf82a514c69064\"}", "{\"sha\": \"0c3f3d94cc90451b61552fd4378d0ee5943965e4\", \"live\": true, \"id\": \"x1b13ab08c9bd9d4e\"}", "{\"sha\": \"0a8c7a21f3e56d4207e45c0559128bdd359eadfa\", \"live\": true, \"id\": \"xf5ca7ae872f931c2\"}", "{\"sha\": \"079131a4117a9efb665bcaa41d711082c220b399\", \"live\": true, \"id\": \"x71f32b003cb55a64\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "dipylon-amphora-quiz", "kind": "Exercise", "name": "dipylon-amphora-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "dipylon-amphora-quiz"}, "abex-quiz": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism/abex-quiz/", "id": "abex-quiz", "display_name": "Abstract Expressionism (quiz)", "title": "Abstract Expressionism (quiz)", "all_assessment_items": ["{\"sha\": \"fd13fb6fc4bf82c4884a1acb4eed4bd9e9cb936c\", \"live\": true, \"id\": \"xe43588d9cb48d6c8\"}", "{\"sha\": \"dfaf641f00e889ea22f5a164b9c0d057891ae5db\", \"live\": true, \"id\": \"x0e87eef3f3ace814\"}", "{\"sha\": \"d79a323083efc9fb39cee0130a67ee6635d49182\", \"live\": true, \"id\": \"xba0d842962c18336\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "abex-quiz", "kind": "Exercise", "name": "abex-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "abex-quiz"}, "subtract-with-in-100-level-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens/subtract-with-in-100-level-1/", "id": "subtract-with-in-100-level-1", "display_name": "Subtract within 100: Level 1", "title": "Subtract within 100: Level 1", "all_assessment_items": ["{\"sha\": \"a3746438db7b96166b5e99ff00f21ac3153345d6\", \"live\": true, \"id\": \"xbff14838da4cb135\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d1117a682f2270703ed240bc66bcab5e7f965957\", \"live\": true, \"id\": \"x01810f723dfac60c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e4f98c19281a8875e22062367b8c24aefd9e4df0\", \"live\": true, \"id\": \"x2b5d0db5fff492bb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"583c975494b0c9838e0a875e1f5d710b23a61439\", \"live\": true, \"id\": \"x5ef28283df499a52\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0606fbd1101f57504a449ee40c56ae1fd5a578d3\", \"live\": true, \"id\": \"x8e812d654d42f204\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f37eda9a410ae0e4742702f407b5d7bfb70886b1\", \"live\": true, \"id\": \"xeb626a97c424db8b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"93dc077ea6e090c369a216f39b0968015c681799\", \"live\": true, \"id\": \"x04cb72743a665c18\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7aa38144c659b57f52f16d213737a93c86280731\", \"live\": true, \"id\": \"xd1d9c038dcb030b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8bb5fbfb30429eaa2d1dcb7620f88503cdf74bf\", \"live\": true, \"id\": \"x2bb93aa948513a70\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ffe316bf770301ddc1423e4c842de4ba6101ed27\", \"live\": true, \"id\": \"xf832c792a713bbbb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c7ebbf44359ea146f86378ecbf8c3116c723bf93\", \"live\": true, \"id\": \"xdd9880bf2dc591d5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6fde1b3b75fc35b5b96afcca2dd12284c8090340\", \"live\": true, \"id\": \"x1cb0e556f0a05340\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1fe5b43e6e6c4fe25ad7d972c6e09548e44a36ad\", \"live\": true, \"id\": \"xbd841d465fa7f356\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"12ebe4de1b2021c6dce6a41d50b121143dbfc1d3\", \"live\": true, \"id\": \"x87ef45f51d9601b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8e7f14ff38ff4df1789de3ebb7ff2d55b01bb27\", \"live\": true, \"id\": \"xda4470ab7151d879\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b3e792bb0674f430832ccbeab575d177da1e423b\", \"live\": true, \"id\": \"xd833e1b1f108189d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"46221f7e34bf50e42a8eeb34bb49b41dba82e2a8\", \"live\": true, \"id\": \"x0591f399dd1312eb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"80bcddcc363f1a066a2247beb6fbaffa112d8838\", \"live\": true, \"id\": \"x9d73b24c485f226c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2ec6dc0d43fb4536c22bf162e773f010c3d33475\", \"live\": true, \"id\": \"x8c2df3222a746b98\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fed3189a831b493ce10cc89c130ef2458c9f7b91\", \"live\": true, \"id\": \"xda8604683c7d6e41\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9da2e787b73dea4898b2e64e9c88e1ca6aa3d728\", \"live\": true, \"id\": \"x78d79bea53af6d9a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice subtracting 1 or 10 from a two-digit number. (No regrouping)", "basepoints": 10.0, "slug": "subtract-with-in-100-level-1", "kind": "Exercise", "name": "subtract-with-in-100-level-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["add-within-100--level-1"], "exercise_id": "subtract-with-in-100-level-1"}, "pythagorean-theorem-proofs": {"uses_assessment_items": true, "path": "khan/math/geometry/right_triangles_topic/pythagorean_proofs/pythagorean-theorem-proofs/", "id": "pythagorean-theorem-proofs", "display_name": "Pythagorean Theorem proofs", "title": "Pythagorean Theorem proofs", "all_assessment_items": ["{\"sha\": \"f6ac7dc91fece10320792209b85162b2b5ad1b90\", \"live\": true, \"id\": \"xff29868ac10f2276\"}", "{\"sha\": \"678007a3e39e4dcbf406eac0406b2e4826337167\", \"live\": true, \"id\": \"xba76a7ba7237556f\"}", "{\"sha\": \"5807e1f6223200a977245ea2b5fe81bed425d9e8\", \"live\": true, \"id\": \"x11bc5f9e7b49c6b9\"}", "{\"sha\": \"808f2f15ee446af6be6f0a2965a8b63feeb3f717\", \"live\": true, \"id\": \"x04e4b5f1704ab9e1\"}", "{\"sha\": \"b0798d350652bc696f152f8c9ebf0d4b25965769\", \"live\": true, \"id\": \"x70c83acf079727a9\"}", "{\"sha\": \"ec63fc49cd6f5f2634616d20f3d0e56622ad0363\", \"live\": true, \"id\": \"x37d287a01689f94f\"}", "{\"sha\": \"740b895474c4bd9ef1edc9cf2ddda8095ce4dc8f\", \"live\": true, \"id\": \"x6388e87eb6f6b6c8\"}", "{\"sha\": \"38aea8a47714a2387581cf580570713b79394879\", \"live\": true, \"id\": \"xf7aa60595a7f497a\"}", "{\"sha\": \"fc67f98cdc7a034de81b158a88f8f25e80bd8e66\", \"live\": true, \"id\": \"xd7336765888867eb\"}", "{\"sha\": \"081b202b7c5a5012163a9c91fb07446caeb28fb6\", \"live\": true, \"id\": \"xcb95e3ed779964b6\"}", "{\"sha\": \"1d09517a9e536d01b6f9a2b3d93ac27bd7c35a2d\", \"live\": true, \"id\": \"xfe58f74e65f6955f\"}", "{\"sha\": \"34ad22afe1b1d24a5efae8800758539bb42baa02\", \"live\": true, \"id\": \"x59f2d2c875897e0a\"}", "{\"sha\": \"2f447d076916605e350b90031bb1c8001c9e33ea\", \"live\": true, \"id\": \"xcbc70ee621b78a62\"}", "{\"sha\": \"b2bc4407df594a3f53ef18ade0fe31c1c2641981\", \"live\": true, \"id\": \"x3c7c2a0a8cca5cab\"}", "{\"sha\": \"09b24243d0b52b97a12d814dac02c5fdc6504e5c\", \"live\": true, \"id\": \"x87a9717295d71407\"}", "{\"sha\": \"e67fd128ec2b4cf52348385e84ce5df424e50746\", \"live\": true, \"id\": \"xa4dcf339377bd9cc\"}", "{\"sha\": \"92859a4351a76749d40e28a3dddb287731844ec3\", \"live\": true, \"id\": \"xfa4b4a4531dc96ef\"}", "{\"sha\": \"4d2d12d1d6b4ccc7810b991ed4d30b23ae1b15c5\", \"live\": true, \"id\": \"x69aa2707cbc1cc4c\"}", "{\"sha\": \"15a7689e35c6f768f711d20f1d1943a1c59e79d2\", \"live\": true, \"id\": \"x8af0924c6f427f1b\"}", "{\"sha\": \"f87c5ea997adf94572b015f34a7a81679328073d\", \"live\": true, \"id\": \"xfc52d6953183a50c\"}"], "description": "Explain a proof of the Pythagorean Theorem and its converse.", "basepoints": 10.0, "slug": "pythagorean-theorem-proofs", "kind": "Exercise", "name": "pythagorean-theorem-proofs", "seconds_per_fast_problem": 4.0, "prerequisites": ["pythagorean_theorem_1"], "exercise_id": "pythagorean-theorem-proofs"}, "solving_for_the_x-intercept": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/x-and-y-intercepts/solving_for_the_x-intercept/", "id": "solving_for_the_x-intercept", "display_name": "Intercepts from a linear equation", "title": "Intercepts from a linear equation", "all_assessment_items": ["{\"sha\": \"50f3aa37b9f944b75014d8e5dfdf7dc229a8b2a2\", \"live\": true, \"id\": \"xa26ce3e84a96b64b\"}", "{\"sha\": \"2b5bad3dda33fbcf8782c9b9b371fc2c1e6d6334\", \"live\": true, \"id\": \"x4688512da27ac1c5\"}", "{\"sha\": \"dd40512350b4300b20023b3f6997c619e79af1f2\", \"live\": true, \"id\": \"x0cca33503024960d\"}", "{\"sha\": \"dd71cc412de00b634f08c4fa9ac393cd0a153206\", \"live\": true, \"id\": \"x06f8c378640ebab4\"}", "{\"sha\": \"d9ac3b03a2abc8f0917d8f4e1b5884339beb5cd5\", \"live\": true, \"id\": \"x2eea9a3aa7d453cc\"}", "{\"sha\": \"1120a78fd06c8e14d7f053bceb54c6c619173e73\", \"live\": true, \"id\": \"x81fb8604c9686f7b\"}", "{\"sha\": \"d2bf3c4d18cfaef733082540d2e40efe557ee146\", \"live\": true, \"id\": \"x3a3250cddbd3b652\"}", "{\"sha\": \"e825f3875cb6aedb4265fc0d3545b155f6912114\", \"live\": true, \"id\": \"x252e1a009b32ea3f\"}", "{\"sha\": \"285cb3acc5b0f4a08c81055ce8339143379c9409\", \"live\": true, \"id\": \"x5eb9985db9c05b20\"}", "{\"sha\": \"c9abbec38867533b2987b0935324b2419949efe0\", \"live\": true, \"id\": \"x159e990a5d5366ca\"}", "{\"sha\": \"d6c9e1d56be29b7a8e4884eb2dd09b308b728845\", \"live\": true, \"id\": \"x099cf9a744fb45b5\"}", "{\"sha\": \"fa0531dde4fc0c10e3673b45b0f90dbdfd754671\", \"live\": true, \"id\": \"xea1f59546ce8a8b7\"}", "{\"sha\": \"9c9fb78ebacd57b338fcf31af328bf0fc086000b\", \"live\": true, \"id\": \"x4464ae0070e587d4\"}", "{\"sha\": \"a964459ce3a6aeafefd6b9586f17f75a2445f78d\", \"live\": true, \"id\": \"x8ff9d4e2bf5b6a9d\"}", "{\"sha\": \"7cb8a94dd5c5aa94e11851ad801042c5403d384d\", \"live\": true, \"id\": \"x1c811ec2ae636f1c\"}", "{\"sha\": \"73616a509efbaddedf62a4cbf1c8a689775848f2\", \"live\": true, \"id\": \"x05f368781f491c0f\"}", "{\"sha\": \"da6049cc89c153285fa00e85cf6d8e6237f0c279\", \"live\": true, \"id\": \"x27c6eb2ebd42f451\"}", "{\"sha\": \"f61567845bccb4b78f9611927d341bdceb48c6aa\", \"live\": true, \"id\": \"xb0cb20c3470dca53\"}", "{\"sha\": \"c792e93465e7bbf411183085308021af52d18473\", \"live\": true, \"id\": \"x2b6d509d161263ce\"}", "{\"sha\": \"db1a0d3e5e65438aedaef82e15b722681ba3d860\", \"live\": true, \"id\": \"x8f17a1c6e40117b4\"}", "{\"sha\": \"ffbeb7db06cea03ff8847e1bfbf0c2f6a19394c5\", \"live\": true, \"id\": \"x801be9d7a87a521a\"}", "{\"sha\": \"42a171b280f155dbbe75732299ca09386df11e80\", \"live\": true, \"id\": \"x20ee55ed1494ccb5\"}", "{\"sha\": \"2dea01d481041c13c741cb9bdc28d060db7bb256\", \"live\": true, \"id\": \"x734aeee6b08df198\"}", "{\"sha\": \"e140c2588f1a522031755fc1acf9d5de6282405c\", \"live\": true, \"id\": \"xf5d836ab83405650\"}", "{\"sha\": \"b902b669dc2c0d4cd24899c770998c2f8b58edbd\", \"live\": true, \"id\": \"x0cb2ba5828d205d6\"}", "{\"sha\": \"469b1db1fa6484c8eaf57418c3c5a683a689becb\", \"live\": true, \"id\": \"xa3328803f3bf1fda\"}", "{\"sha\": \"1fd54e38d109ecbadbdfd2b451cb0ee620929e9b\", \"live\": true, \"id\": \"xbb252d8bfd77fc71\"}", "{\"sha\": \"0deaede4ad31d62902e1a9d4d0f6acf5d76c9c2b\", \"live\": true, \"id\": \"x6fa051587683407a\"}", "{\"sha\": \"9e3e9746c87cd01525447995677f1418fb3d6bdf\", \"live\": true, \"id\": \"xf16b17c1a78fc1bf\"}", "{\"sha\": \"5e463caf558d452b272d4f58319872b92d4b1506\", \"live\": true, \"id\": \"x4f0e27235a0cfeec\"}"], "description": "Solve linear equations for the x-intercept and y-intercept", "basepoints": 15.0, "slug": "solving_for_the_x-intercept", "kind": "Exercise", "name": "solving_for_the_x-intercept", "seconds_per_fast_problem": 8.0, "prerequisites": ["linear_equations_2", "linear-function-intercepts"], "exercise_id": "solving_for_the_x-intercept"}, "making-100-and-1000": {"uses_assessment_items": true, "id": "making-100-and-1000", "display_name": "Addition using groups of 10 and 100", "title": "Addition using groups of 10 and 100", "all_assessment_items": ["{\"sha\": \"002eaee467dbacd12d050686d9a7514976dd9d51\", \"live\": true, \"id\": \"x1b37b1f130471286\"}", "{\"sha\": \"28b5a5bb8194714a0bbcf05de9caa6791b230e49\", \"live\": true, \"id\": \"x8b118810ffdc86d6\"}", "{\"sha\": \"432e23aa6f0872a880ae2d51f7e743067a6248bb\", \"live\": true, \"id\": \"x4dfcba54f160a68f\"}", "{\"sha\": \"08f6be58e879fc08448cfabf526e540c0edb3822\", \"live\": true, \"id\": \"xe933310fad51fce3\"}", "{\"sha\": \"5120ac11768f9d7769c10381c16476cb59691d04\", \"live\": true, \"id\": \"x2be224d99e0cd887\"}", "{\"sha\": \"ecc0c0362f5ff92b10ece32b89d9c2e8b7145bb2\", \"live\": true, \"id\": \"x19efce4466dbfabc\"}", "{\"sha\": \"89c5f14fb326e006299710fb1146bab943b814da\", \"live\": true, \"id\": \"xc034351c3b769831\"}", "{\"sha\": \"d02b450b2c2779fc84b5c21284c21d55d89e9869\", \"live\": true, \"id\": \"xfd04e574189ca9d5\"}", "{\"sha\": \"282fcc5a0db46364b99e27f8310370845e21f115\", \"live\": true, \"id\": \"x74d3116457239283\"}", "{\"sha\": \"87c263f020cb7c9c71974a592ed67dd9ac1b5575\", \"live\": true, \"id\": \"xf4bdebc053edd78c\"}", "{\"sha\": \"28c782ee18b47c41b589e0d18c4833a84a3409fe\", \"live\": true, \"id\": \"xb1454c2300fd3e17\"}", "{\"sha\": \"6db532001388ed03dd4820e0c3a886820024f9dc\", \"live\": true, \"id\": \"x85b49fc37a52277d\"}", "{\"sha\": \"e1bfc2b99b2f6b5cad30d7ac1b4e2f923d02076c\", \"live\": true, \"id\": \"x600500aec40d5b76\"}", "{\"sha\": \"84a11be604ea1e898cc27213379570ba3f776a60\", \"live\": true, \"id\": \"x2a5882fe6bb4d41d\"}", "{\"sha\": \"24767e53a93249cd390855336632e950b8c75d2f\", \"live\": true, \"id\": \"x30a71d04973d59d6\"}", "{\"sha\": \"12d6950b31eaa57b811683a036759a3c54ff1542\", \"live\": true, \"id\": \"xbe24b8f6bcbce168\"}", "{\"sha\": \"b967490afd8541796964e6656c35ffe0f86dcdfe\", \"live\": true, \"id\": \"x7a7e1112146b8ed8\"}", "{\"sha\": \"077f11551079172e44fbe701e3ee8998cb52b18e\", \"live\": true, \"id\": \"x1aa9db122bea9ccf\"}", "{\"sha\": \"e459a9b32887c14ddd68fd75dcda2f45a962cbaa\", \"live\": true, \"id\": \"x551057eaa66fdc73\"}"], "description": "Practice making groups of 10 and 100 while adding 3-digit numbers.\u00a0", "basepoints": 10.0, "path": "making-100-and-1000/", "slug": "making-100-and-1000", "kind": "Exercise", "name": "making-100-and-1000", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition_4"], "exercise_id": "making-100-and-1000"}, "percentage_word_problems_1": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-ratios-rates-percentages/percentage_word_problems_1/", "id": "percentage_word_problems_1", "display_name": "Percent word problems", "title": "Percent word problems", "all_assessment_items": ["{\"sha\": \"eabd320a7d5e50494e05db3211082d44329ef820\", \"live\": true, \"id\": \"x5823eba9\"}", "{\"sha\": \"601986c825f06ddf1541699e4dc5e98cba08535f\", \"live\": true, \"id\": \"x3ed015e2\"}", "{\"sha\": \"7b3f7acee222ec12636fd7f6055b648016caf41a\", \"live\": true, \"id\": \"xee683fba\"}", "{\"sha\": \"b8bcf7f178b73d7763aa82df5813340b6ea8cb68\", \"live\": true, \"id\": \"x94c2288a\"}", "{\"sha\": \"b57c87cf3aff48282bf72bb765384ff3809c4f6e\", \"live\": true, \"id\": \"x4120483d\"}", "{\"sha\": \"72e03858e5af2e2297b87c6888cb25899f4bce7a\", \"live\": true, \"id\": \"x87f6d73a\"}", "{\"sha\": \"81a523a36786fa1238295ce6f9da37139e48b598\", \"live\": true, \"id\": \"x0bdc6c5a\"}", "{\"sha\": \"3fb96a49ab96523e9fac044869b3ba8fa81809b8\", \"live\": true, \"id\": \"xd7426042\"}", "{\"sha\": \"a2988a5d4bbae278e41281f7be9c594900159704\", \"live\": true, \"id\": \"x72711ff2\"}", "{\"sha\": \"f020302773eb9193cc0f8f36d2a2d61af5f70383\", \"live\": true, \"id\": \"x22adc7ac\"}", "{\"sha\": \"d34aa095176aabe5e5ecacc03f2437679067030b\", \"live\": true, \"id\": \"xba3d44dd\"}", "{\"sha\": \"db2cc76c1f44144405800550fef050ae9fed3de7\", \"live\": true, \"id\": \"xeb19d92f\"}", "{\"sha\": \"25615953e3cdac60c31be8b007166bee00df1e0b\", \"live\": true, \"id\": \"x5ea1a89d\"}", "{\"sha\": \"d99e12accedff8089ab7c2d7ebe662173f4fdc62\", \"live\": true, \"id\": \"x1a158fb5\"}", "{\"sha\": \"5b500953ee972fbb391fb730c9159d273cb62c2e\", \"live\": true, \"id\": \"xe27f3fc5\"}", "{\"sha\": \"c509b155667beb712501168feba28c1231c55529\", \"live\": true, \"id\": \"xa42df340\"}", "{\"sha\": \"4a8a119b3e8bb691b6c30766f09f071cf3941305\", \"live\": true, \"id\": \"x7f1edcad\"}", "{\"sha\": \"479c1187344fc0e338757285c7bd2a659ddd977f\", \"live\": true, \"id\": \"xd27cbe05\"}", "{\"sha\": \"b9e18ca5128c49bd06ec339bb602694421e2773b\", \"live\": true, \"id\": \"x41416dbe\"}", "{\"sha\": \"161b8aa1aab1c23b7e5714627cf8152778ac3a08\", \"live\": true, \"id\": \"xc55fcfd7\"}", "{\"sha\": \"5d5ca8f59837955f906411c1497a3d3d93130007\", \"live\": true, \"id\": \"x581762be\"}", "{\"sha\": \"e8772bfb961e35afeaad0ec74c8749c54c2b9fb0\", \"live\": true, \"id\": \"x56c015ab\"}", "{\"sha\": \"e58b15827ae5053ef754586755a6229950cd1a4e\", \"live\": true, \"id\": \"x657e6f9f\"}", "{\"sha\": \"ddcb9b0bc29247ed914127890890c053f454d575\", \"live\": true, \"id\": \"x747d18bf\"}", "{\"sha\": \"7a12abd4cf87f74ee4475aac1f58dccbbbb3c89f\", \"live\": true, \"id\": \"x40ed3386\"}", "{\"sha\": \"2665ba7170268bb5149625eac5a438c34f0f0429\", \"live\": true, \"id\": \"x66a92676\"}", "{\"sha\": \"64664169e742f6b55a4821341bf13d04f0fc99a0\", \"live\": true, \"id\": \"xa21785f1\"}", "{\"sha\": \"635c3a47d2eb72e2669cfca79b4291d482be9473\", \"live\": true, \"id\": \"xd43b7f39\"}", "{\"sha\": \"42bb4482b59ddd359c0208a3e8a623fea1435006\", \"live\": true, \"id\": \"x98699497\"}", "{\"sha\": \"6cccec42e48080befc3010034559746caf20951c\", \"live\": true, \"id\": \"xf0aebdbf\"}"], "description": "Practice solving word problems involving percents.", "basepoints": 21.0, "slug": "percentage_word_problems_1", "kind": "Exercise", "name": "percentage_word_problems_1", "seconds_per_fast_problem": 19.0, "prerequisites": ["finding_percents"], "exercise_id": "percentage_word_problems_1"}, "volumes-with-unit-cubes": {"uses_assessment_items": true, "id": "volumes-with-unit-cubes", "display_name": "Comparing volumes with unit cubes", "title": "Comparing volumes with unit cubes", "all_assessment_items": ["{\"sha\": \"4f9df6e15b8edf0b52ebe7be1b5f83cd9b7fdc31\", \"live\": true, \"id\": \"x7e430a0db65bffe2\"}", "{\"sha\": \"2e3673a1d15680da5f146977497ef5014077f120\", \"live\": true, \"id\": \"xf61d838223911ee3\"}", "{\"sha\": \"ab7a45730a9fed7e6842fc99cd88d780589fad85\", \"live\": true, \"id\": \"xfe4878b248c1e73f\"}", "{\"sha\": \"f0086525495ee726ba8a99fb7c45ef8e62961264\", \"live\": true, \"id\": \"x40197b92daaac1c9\"}", "{\"sha\": \"17cdac09d72f8c01f4db492f50a473eaadc92c3d\", \"live\": true, \"id\": \"x4e0d75573f24e7b3\"}", "{\"sha\": \"33bd4627f9adc2cafa4b03aa0183725455970a5a\", \"live\": true, \"id\": \"x9189b21fff27656c\"}", "{\"sha\": \"ad7a3834d7ef19fa17958b97ef5b9389533864b6\", \"live\": true, \"id\": \"x9a69011e3e7c31fa\"}", "{\"sha\": \"b8d6e3af400d42aafa547adbea12e23ca14b55cd\", \"live\": true, \"id\": \"x660fc3ea13588f85\"}", "{\"sha\": \"541a93564539d18b505cf63a8ae01adcd58d4c5a\", \"live\": true, \"id\": \"xa594028608d1a63f\"}", "{\"sha\": \"9674f0e2df5b8064db1e1f283586b3b57e802719\", \"live\": true, \"id\": \"x7651ff1211417530\"}", "{\"sha\": \"cb352258ad49faaf5f0def84302699a492bf2f2a\", \"live\": true, \"id\": \"xfc4ab6cb841a9249\"}", "{\"sha\": \"068753ecbaf81c3304224418bada112eb7996bea\", \"live\": true, \"id\": \"x65f3ce5d02f34640\"}", "{\"sha\": \"56c8fb0f09589cec422a067a3645892b090cf842\", \"live\": true, \"id\": \"xdcd23f551df94884\"}", "{\"sha\": \"bd981110fd7c16dbfa576f45ed36da3143f2843f\", \"live\": true, \"id\": \"x7e33e439a8435c54\"}", "{\"sha\": \"26f0b6f03b61690a0b71925ae67078b4830c08c5\", \"live\": true, \"id\": \"x42f6d904f29b12f7\"}", "{\"sha\": \"24a76beb47d0e17588727d6bb3e43aca1d05ff78\", \"live\": true, \"id\": \"x25215cc227f87531\"}", "{\"sha\": \"ac7f06942c9c2c009dc2a0f9c984ac4fa20da4dd\", \"live\": true, \"id\": \"xcb3b954cdd256da2\"}", "{\"sha\": \"b2282a3003358efb296eea4f49cc5d50f19cbc44\", \"live\": true, \"id\": \"x227998a1eae5ca15\"}", "{\"sha\": \"8f73a867b2639ad09b1f2c90eb4e696b6f547851\", \"live\": true, \"id\": \"x8de2362395cdf8bd\"}", "{\"sha\": \"ba7554b4df08ffd4e984df2cb9793c199ef5a238\", \"live\": true, \"id\": \"xae36d412026475ae\"}"], "description": "Recognize volume as an attribute of solid figures and understand concepts of volume measurement.", "basepoints": 10.0, "path": "volumes-with-unit-cubes/", "slug": "volumes-with-unit-cubes", "kind": "Exercise", "name": "volumes-with-unit-cubes", "seconds_per_fast_problem": 4.0, "prerequisites": ["volume-formula-intuition"], "exercise_id": "volumes-with-unit-cubes"}, "thin-lens-quiz-passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/thin-lens-quiz-passage-2/", "id": "thin-lens-quiz-passage-2", "display_name": "Converging and diverging lenses in a lab", "title": "Converging and diverging lenses in a lab", "all_assessment_items": ["{\"sha\": \"fa190f9b61138e10f6e856c1581e61b421da7656\", \"live\": true, \"id\": \"x71b9eb406e0f74f6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5ab66ee916e1f29b76e4ed787d7edd4a5d0cb236\", \"live\": true, \"id\": \"xae26f9eaa0f9d65c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"be24662ee013877bf1a6e75d226b4ca0a6db89f6\", \"live\": true, \"id\": \"xc438b183ffbc0d27\", \"perseus_api_major_version\": 3}", "{\"sha\": \"4b8203979e36875d7566b7950f2ffd79a35a8443\", \"live\": true, \"id\": \"xb2977067aa7363be\", \"perseus_api_major_version\": 3}", "{\"sha\": \"762292d80f2387207c50734a2f542a699c0ef814\", \"live\": true, \"id\": \"x030dfe0eb058f4ca\", \"perseus_api_major_version\": 3}"], "description": "This passage will test your knowledge on lenses", "basepoints": 10.0, "slug": "thin-lens-quiz-passage-2", "kind": "Exercise", "name": "thin-lens-quiz-passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "thin-lens-quiz-passage-2"}, "integer-addition-and-subtraction-with-substitution": {"uses_assessment_items": true, "id": "integer-addition-and-subtraction-with-substitution", "display_name": "Integer addition and subtraction with substitution", "title": "Integer addition and subtraction with substitution", "all_assessment_items": ["{\"sha\": \"bf8d92e0ea1caa35283c93c42c7c21b926529557\", \"live\": true, \"id\": \"x24981709d891f405\"}", "{\"sha\": \"3e8e1c143647c33f46b98acaf8eb359c32c80683\", \"live\": true, \"id\": \"xe1ac58f9813fbab5\"}", "{\"sha\": \"3dded3ecb2ef32a94474f3689f22f4a2d73d9bcc\", \"live\": true, \"id\": \"x6ca0d98a17c83e1a\"}", "{\"sha\": \"397bb1d50a404d00ec20d3f8a4ecdf70e5ab301b\", \"live\": true, \"id\": \"x8231030094d28758\"}", "{\"sha\": \"40aa9e9f3da90f1e8213abfd19f111ccafeb0a37\", \"live\": true, \"id\": \"xe68954cdca625a13\"}", "{\"sha\": \"822843960c7feba4ea832b4c4f7054985e80e6ab\", \"live\": true, \"id\": \"xff693b5374e7258a\"}", "{\"sha\": \"5c242f162ef0fd68f3490d88993f4d2aab6301c4\", \"live\": true, \"id\": \"x70e8139bb14ac728\"}", "{\"sha\": \"eb3fa20b81e3db145da77476bdb1fb336e4ce1c7\", \"live\": true, \"id\": \"x0d0d6073ced2c6a1\"}", "{\"sha\": \"c4b0374d0875a66bf7ba4d0aba9288b52c888c1e\", \"live\": true, \"id\": \"xf8e4003f981627e8\"}", "{\"sha\": \"3c4034879d943ac00039fea627d648b5dd83cd1a\", \"live\": true, \"id\": \"xec59f80364a13b35\"}", "{\"sha\": \"18bb5d49f6c4ffb429a3fe4f93f7aff4f99d4638\", \"live\": true, \"id\": \"x2a17d30e653f5efc\"}", "{\"sha\": \"c01372ec5f6e6d4c83e9b5db0990e55d9c3d7a01\", \"live\": true, \"id\": \"x3919a4472c624728\"}", "{\"sha\": \"6708069b8482f2bf609985d7931c88b652fe9326\", \"live\": true, \"id\": \"x5bb96358ffdf18bd\"}", "{\"sha\": \"9224b8b270863b43c63a692182e74f4a94d7e11a\", \"live\": true, \"id\": \"x8078a65b540df0a6\"}", "{\"sha\": \"0045e5e7aeee0f640f6f87ce4a488cbf9a949273\", \"live\": true, \"id\": \"x4f8543654dc5f018\"}", "{\"sha\": \"60ab0ec168a9d9091eaa53dc997cd93b68459208\", \"live\": true, \"id\": \"xe44ea338544488bd\"}", "{\"sha\": \"d30e69458f7b98e82ee79aa025486dbf90ff56cb\", \"live\": true, \"id\": \"xf183a57ba0dac523\"}", "{\"sha\": \"1c33aee319b525196d06fac5256bef1aa5133512\", \"live\": true, \"id\": \"x447d4a6be7048081\"}", "{\"sha\": \"3dbb070155122815dcc80822f33aec310497f018\", \"live\": true, \"id\": \"xd0933cb95a3b2e2c\"}", "{\"sha\": \"e2d0a1183e4996a37660e9104675fc29cfdc43b7\", \"live\": true, \"id\": \"x2a5321d52715f864\"}", "{\"sha\": \"3888737936796cd02e9dd2dd4583f96dc53dcf9e\", \"live\": true, \"id\": \"xddebc495239a02fd\"}", "{\"sha\": \"c81ce4ace0c306ca4857a634589e493f62145545\", \"live\": true, \"id\": \"xb3a5ab1d12492f5b\"}", "{\"sha\": \"cab9287140ad3f31592791323e4e1c97a183a262\", \"live\": true, \"id\": \"x617ba1e7c9947ff8\"}", "{\"sha\": \"9f5b2f786c93b47c5b14244c9d9fa16f7bf35895\", \"live\": true, \"id\": \"x54b72881c24d489c\"}", "{\"sha\": \"699cef83080d00b38d367ceef0621fd7ad618c8c\", \"live\": true, \"id\": \"x502b3ad389ac2bec\"}", "{\"sha\": \"b048e88d3392cd921566679a1ab8010b5ef236e6\", \"live\": true, \"id\": \"xcfead17116a513f7\"}", "{\"sha\": \"3ebde1162ab5e314ee4c0cc62cd4d293b7d13f04\", \"live\": true, \"id\": \"x458380355e65eb31\"}", "{\"sha\": \"8741269c498b04a9a856f9cb60222f3b03540114\", \"live\": true, \"id\": \"x2d47553b63a68449\"}", "{\"sha\": \"743c983be059c11cda7d42ca6f6627f34218400c\", \"live\": true, \"id\": \"x6694d3089a9136c9\"}", "{\"sha\": \"b9550225d1cb5f11e77e6655d368defdc8814c85\", \"live\": true, \"id\": \"xcda289c562cdd118\"}"], "description": "Practice plugging in values to evaluate negative number addition and subtraction expressions.", "basepoints": 10.0, "path": "integer-addition-and-subtraction-with-substitution/", "slug": "integer-addition-and-subtraction-with-substitution", "kind": "Exercise", "name": "integer-addition-and-subtraction-with-substitution", "seconds_per_fast_problem": 4.0, "prerequisites": ["integer-addition-and-subtraction-2"], "exercise_id": "integer-addition-and-subtraction-with-substitution"}, "graphing_systems_of_inequalities": {"uses_assessment_items": false, "path": "khan/math/algebra2/systems_eq_ineq/systems_inequalities_precalc/graphing_systems_of_inequalities/", "id": "graphing_systems_of_inequalities", "display_name": "Graphing systems of inequalities", "title": "Graphing systems of inequalities", "description": "Graph a system of linear inequalities.", "basepoints": 28.0, "slug": "graphing_systems_of_inequalities", "kind": "Exercise", "name": "graphing_systems_of_inequalities", "seconds_per_fast_problem": 48.0, "prerequisites": ["graphing_inequalities_2"], "exercise_id": "graphing_systems_of_inequalities"}, "-laoco-n-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/greek-art/hellenistic/-laoco-n-quiz/", "id": "-laoco-n-quiz", "display_name": "Laoco\u00f6n (quiz)", "title": "Laoco\u00f6n (quiz)", "all_assessment_items": ["{\"sha\": \"715d2bf7eb26cba9affce121f60103b5b448e278\", \"live\": true, \"id\": \"x2b4118feb563b558\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"39fdbb01ac5312296704d141464aa93d65dbd23d\", \"live\": true, \"id\": \"x6d720983a1c506a0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b9266236332e0236826cf417a13e4a0241133a1\", \"live\": true, \"id\": \"xa03958f7787b1d53\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7898737ebbed3126944b2648b8b3abb222c769b5\", \"live\": true, \"id\": \"x19dce37535a02034\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"79b6af2762c31c4b7f42d6e8d7acf0a738c574e7\", \"live\": true, \"id\": \"x339bb6a6447c036b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "-laoco-n-quiz", "kind": "Exercise", "name": "-laoco-n-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "-laoco-n-quiz"}, "pythagorean_theorem_2": {"uses_assessment_items": false, "path": "khan/math/geometry/right_triangles_topic/special_right_triangles/pythagorean_theorem_2/", "id": "pythagorean_theorem_2", "display_name": "Special right triangles", "title": "Special right triangles", "description": "", "basepoints": 17.0, "slug": "pythagorean_theorem_2", "kind": "Exercise", "name": "pythagorean_theorem_2", "seconds_per_fast_problem": 10.0, "prerequisites": ["pythagorean_theorem_1"], "exercise_id": "pythagorean_theorem_2"}, "properties-of-integer-exponents": {"uses_assessment_items": true, "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/properties-of-integer-exponents/", "id": "properties-of-integer-exponents", "display_name": "Properties of exponents", "title": "Properties of exponents", "all_assessment_items": ["{\"sha\": \"7ba708aeb57a69fe93d91f0335442cd9e37db7c3\", \"live\": true, \"id\": \"x5d3711425b420402\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7557bbd4221c1ce5c76d622468f345d4a49c5c11\", \"live\": true, \"id\": \"xa3f69df826877049\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f4d176ce3b6bf30c94274b673e32d906def534e7\", \"live\": true, \"id\": \"x317aa78fdac767df\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"989ab8e16d6ab2cfb4a2a8be06d05f15052ef391\", \"live\": true, \"id\": \"x614b8ff5e2b9214c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"91001b87d7678418138bc165bccd0694cc925516\", \"live\": true, \"id\": \"x28cb2fd8aa29e3ef\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"91b959ac4f5f1cdb853d53e05435ce926e9290c1\", \"live\": true, \"id\": \"x06564212f9f295b1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"82d28bcdf56309e85c073013bc4baae23190047f\", \"live\": true, \"id\": \"x0a2393c0cdeb786a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b524543627c0bc4532e9177ee049815210797bb\", \"live\": true, \"id\": \"xa3e0c820ecb846b6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"34549ed519b4ebbf04bb265f881f567ed49be67a\", \"live\": true, \"id\": \"x8eade537114e8855\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d9d54f5dfea38600dc739b2f87e8509f19c2895\", \"live\": true, \"id\": \"x1f0a7b45da94da5c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f56cfae1de85c22f5985fa4944c3e8b73a163b09\", \"live\": true, \"id\": \"x86e65b1c94550dc6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"12d835617a1f6d8a015e23e29807ef234b7ae8b9\", \"live\": true, \"id\": \"x8ce448a05f0e961f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"968b715dea07c4937d8c02b3b72def91e0a85f4d\", \"live\": true, \"id\": \"x169ed21936642751\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9420cffd5b5222aa02bb7bdcff827e776e8c0cb4\", \"live\": true, \"id\": \"x5f2a7c489f95b495\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be5e564760f927592418a9d1ddadc8cf2349a463\", \"live\": true, \"id\": \"xcc68ea79e8d7c7a2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa633592420b0c489c4ec5a84c6bee5bd88e899c\", \"live\": true, \"id\": \"x03404e2aa09688db\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6668036c3383f802c073b49eef16e86b05feaa98\", \"live\": true, \"id\": \"x1a3bd84affa9bc34\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"679704d8523d44de8a181559a0e41a88ec8709cd\", \"live\": true, \"id\": \"xf2174389fc189134\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"95bfc97b3873a83069fca4459c81a9da3e3a9eb0\", \"live\": true, \"id\": \"x051d27f73fd70135\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"af703b2177def365ba850e4869a3295050bd4eea\", \"live\": true, \"id\": \"x3c20fd153328d2f8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f4a26ca3c81a74d088f7650133af97b3c04dc05d\", \"live\": true, \"id\": \"x4704b216a7b28fa5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1dd513922ff13f3fd492e37cd730cadb3fd0ddc5\", \"live\": true, \"id\": \"x9f13454738e40604\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db3aa1d9783c5abd49aaeb79be8fdaa62a01a656\", \"live\": true, \"id\": \"x6d6cc478514e551c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a054b7c95875532aa306026af5217d5f913cf028\", \"live\": true, \"id\": \"xcee3a4139d3c87a0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8ff041249d06815939c0050f1d2d6b647283d5e9\", \"live\": true, \"id\": \"xeac7c3b2a908f9aa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3ae648fcb961b1582f18f93b7b3f0474e30ae62d\", \"live\": true, \"id\": \"xddd32ade1e5db810\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b6579532bb5032f0392aba493cbc903edb95d55\", \"live\": true, \"id\": \"xec8101dbc0b54d57\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e4b11d036b87d6ef7b8cfd0e111227d8b2c01a7\", \"live\": true, \"id\": \"xe44feb90e176b0d5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Practice applying properties of exponents.", "basepoints": 10.0, "slug": "properties-of-integer-exponents", "kind": "Exercise", "name": "properties-of-integer-exponents", "seconds_per_fast_problem": 4.0, "prerequisites": ["exponent_rules"], "exercise_id": "properties-of-integer-exponents"}, "constructing-triangles": {"uses_assessment_items": true, "id": "constructing-triangles", "display_name": "Constructing triangles", "title": "Constructing triangles", "all_assessment_items": ["{\"sha\": \"3e4aebaeb5eaa0ce3bb793eb261d9e19225e074d\", \"live\": true, \"id\": \"x1afa3df30210708e\", \"perseus_api_major_version\": null}", "{\"sha\": \"e178887940008cf90017aa66c36b301cd6569dab\", \"live\": true, \"id\": \"xc40b1278855716df\", \"perseus_api_major_version\": null}", "{\"sha\": \"8c1de61a314a99b0fcd5fa04f4bcfc0aa3eeab66\", \"live\": true, \"id\": \"xf9872931929ac56c\", \"perseus_api_major_version\": null}", "{\"sha\": \"02f9f3f19058decfa797eff103c791f377cac4bf\", \"live\": true, \"id\": \"x38cc51ab93842600\", \"perseus_api_major_version\": null}", "{\"sha\": \"b058a8846ede36d0c4acc87263e87dfd7a365051\", \"live\": true, \"id\": \"x18341f6f8d24d96e\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c5c2614f2106765c75e8366b06cc5b8227e5aea\", \"live\": true, \"id\": \"xdba9a2b900c8bbcd\", \"perseus_api_major_version\": null}", "{\"sha\": \"2e39d6d53992bdca0f62bd6ddf0505201d2fb213\", \"live\": true, \"id\": \"x67ee6010588311f2\", \"perseus_api_major_version\": null}", "{\"sha\": \"854fa311692f02db37ed2ac28df67866f981a89e\", \"live\": true, \"id\": \"x31c216ff88dad8e7\", \"perseus_api_major_version\": null}", "{\"sha\": \"2711a7d0bbb89ed55109b7070f77785ba77317c4\", \"live\": true, \"id\": \"x6763ceb1ec0ceb41\", \"perseus_api_major_version\": null}", "{\"sha\": \"71cef11817a213bf6a45b736008cb58568842eb6\", \"live\": true, \"id\": \"xc001c788d01d9e5f\", \"perseus_api_major_version\": null}", "{\"sha\": \"32d862220e97542bf53fb68b474ebd1bd551dfa2\", \"live\": true, \"id\": \"xf51994a651ca1d7f\", \"perseus_api_major_version\": null}", "{\"sha\": \"6427e110fc5dba04dbfaf2339af58e0d16c04c78\", \"live\": true, \"id\": \"xb880da8414b8f195\", \"perseus_api_major_version\": null}", "{\"sha\": \"34edae2154dc031863e84d4f2bb49fdb6b8a5da6\", \"live\": true, \"id\": \"xb9aa47b3de982d55\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d460f4e75828d179c0f655de01624f12acb79639\", \"live\": true, \"id\": \"x651844ecfaac48e9\", \"perseus_api_major_version\": null}", "{\"sha\": \"551c1dceae1b9796f6cef4b56ec0035f5406c582\", \"live\": true, \"id\": \"xe06107bc78ca0b3c\", \"perseus_api_major_version\": null}", "{\"sha\": \"3e7e955cdb8564d0850b7fd01b379d4126f416b9\", \"live\": true, \"id\": \"x531e157ba7c498eb\", \"perseus_api_major_version\": null}", "{\"sha\": \"642dc53df32da86b60d85e90d8055436cda65d19\", \"live\": true, \"id\": \"x892857b71e427c39\", \"perseus_api_major_version\": null}", "{\"sha\": \"7cdddd556451e706b32fa2f7f705d081ecaf8058\", \"live\": true, \"id\": \"x25470998d7b41ee4\", \"perseus_api_major_version\": null}", "{\"sha\": \"a90e5e27c5deeb4bce65ad13fd4c0591c83fc316\", \"live\": true, \"id\": \"xbd061a8700fced6c\", \"perseus_api_major_version\": null}", "{\"sha\": \"bf152c8734bff80cbf2015231156225870a5502d\", \"live\": true, \"id\": \"x4c335bfbee0cba92\", \"perseus_api_major_version\": null}", "{\"sha\": \"c86e764ff7474144c9aec474ab9b3ac64fbc965c\", \"live\": true, \"id\": \"xe937d430ba8d75d8\", \"perseus_api_major_version\": null}", "{\"sha\": \"248d2798d62c113912db0412324baaea1a9cabba\", \"live\": true, \"id\": \"x72d893d1e3229dfd\", \"perseus_api_major_version\": null}", "{\"sha\": \"b39c54f88d0ce56d725013aaaafe74076846ea30\", \"live\": true, \"id\": \"x1da87b180aca0e3d\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c416eef663c64b39d74852a4b2705ba02793d08\", \"live\": true, \"id\": \"xc256611ab7d92e83\", \"perseus_api_major_version\": null}", "{\"sha\": \"10d66f03e0611b4ca2d444e667eab9cc16a6fd2c\", \"live\": true, \"id\": \"x1c875467bbf94500\", \"perseus_api_major_version\": null}", "{\"sha\": \"4a675184d1e2ef2113e2008fc288cae913b05b40\", \"live\": true, \"id\": \"x572fecbc70b353aa\", \"perseus_api_major_version\": null}", "{\"sha\": \"0f6d2a936b3a50485ba29bc78530d0c419d986b8\", \"live\": true, \"id\": \"x0a2c8d4a7e3a85b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"91845e44a7709c9aa1c1988da2e4760e5ea305da\", \"live\": true, \"id\": \"x6d7be6276bcb5815\", \"perseus_api_major_version\": null}", "{\"sha\": \"37acecab29ac097ed4b1523c1e39c2494cb7ab96\", \"live\": true, \"id\": \"xb72de5fd90de7508\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2a6f68502e6e029de50c09bf22bef1fb9dd9817e\", \"live\": true, \"id\": \"xe3a29ed347477ff6\", \"perseus_api_major_version\": 3}"], "description": "", "basepoints": 10.0, "path": "constructing-triangles/", "slug": "constructing-triangles", "kind": "Exercise", "name": "constructing-triangles", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing-triangles"], "exercise_id": "constructing-triangles"}, "melting-point-and-thermodynamics-of-double-stranded-dna-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/melting-point-and-thermodynamics-of-double-stranded-dna-1/", "id": "melting-point-and-thermodynamics-of-double-stranded-dna-1", "display_name": "Melting Point and Thermodynamics of Double-Stranded DNA", "title": "Melting Point and Thermodynamics of Double-Stranded DNA", "all_assessment_items": ["{\"sha\": \"690e427f7721b1b29a2a830c2928d820ab208093\", \"live\": true, \"id\": \"x517c0caf255b988e\"}", "{\"sha\": \"a110917c2a48149f684e89f347cba33bcf31c8d7\", \"live\": true, \"id\": \"x52155fd4501bae80\"}", "{\"sha\": \"f14b412cc11640db99da4db2ce6d798677b936d5\", \"live\": true, \"id\": \"x46ddc485098a2629\"}", "{\"sha\": \"da71889a687763ee9b571207c62a9643cb38111e\", \"live\": true, \"id\": \"x84262f61c1965cef\"}", "{\"sha\": \"ee072035714f176ae14163bd6c9b14f791aa1b8b\", \"live\": true, \"id\": \"x38d04ba1a5aaa09a\"}"], "description": "Melting Point and Thermodynamics of Double-Stranded DNA", "basepoints": 10.0, "slug": "melting-point-and-thermodynamics-of-double-stranded-dna-1", "kind": "Exercise", "name": "melting-point-and-thermodynamics-of-double-stranded-dna-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "melting-point-and-thermodynamics-of-double-stranded-dna-1"}, "inscribed_angles_1": {"uses_assessment_items": false, "path": "khan/math/geometry/cc-geometry-circles/central-inscribed-circumscribed/inscribed_angles_1/", "id": "inscribed_angles_1", "display_name": "Inscribed angles 1", "title": "Inscribed angles 1", "description": "", "basepoints": 14.0, "slug": "inscribed_angles_1", "kind": "Exercise", "name": "inscribed_angles_1", "seconds_per_fast_problem": 7.0, "prerequisites": ["circles_and_arcs"], "exercise_id": "inscribed_angles_1"}, "are-suicidal-behaviors--contagious--in-adolescence-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/are-suicidal-behaviors-contagious-in-adolescence-/", "id": "are-suicidal-behaviors--contagious--in-adolescence-", "display_name": "Are suicidal behaviors \"contagious\" in adolescence?", "title": "Are suicidal behaviors \"contagious\" in adolescence?", "all_assessment_items": ["{\"sha\": \"140f9a06fbbc4f249fe7a02467809ee0274c0fcd\", \"live\": true, \"id\": \"x4f7206b511ea8516\"}", "{\"sha\": \"a2760378c27b348ce97715c3cf031e582ab24532\", \"live\": true, \"id\": \"xdf3308d56a071f29\"}", "{\"sha\": \"eb1a86875b7e6f3e22663bd55c9ce0c42a3af84a\", \"live\": true, \"id\": \"xf244d37bdc6b1f59\"}", "{\"sha\": \"8a1c7eeecb5eb4e1f8b7aeb94f956cba4138b4be\", \"live\": true, \"id\": \"x725142aa75dd7fff\"}", "{\"sha\": \"6129c8a36ecb716673b2fc81c63fd40ce9521b27\", \"live\": true, \"id\": \"xced7e4274d84320e\"}"], "description": "Questions related to teens and suicidal behavior.", "basepoints": 10.0, "slug": "are-suicidal-behaviors-contagious-in-adolescence-", "kind": "Exercise", "name": "are-suicidal-behaviors--contagious--in-adolescence-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "are-suicidal-behaviors--contagious--in-adolescence-"}, "comparing-decimals-visually": {"uses_assessment_items": true, "id": "comparing-decimals-visually", "display_name": "Comparing decimals visually", "title": "Comparing decimals visually", "all_assessment_items": ["{\"sha\": \"e0afe3d2571fc06e8007d2e626d4fa6ba0126d70\", \"live\": true, \"id\": \"xef8951dc1efbbf44\"}", "{\"sha\": \"c7b1ef430068fca2bd23911825e2a53e0ce512bb\", \"live\": true, \"id\": \"x163d708fa9ec6f8a\"}", "{\"sha\": \"cf94ad7f209ad36aade9f5a8aecdfcbd956809ea\", \"live\": true, \"id\": \"x2cca39713de0c362\"}", "{\"sha\": \"a864f67e69d62a76107065a457dab84e5ad27fb9\", \"live\": true, \"id\": \"x0cf8f89f5d044ce1\"}", "{\"sha\": \"570e73c602a1d24c26ae31ba9d0213133b7980b8\", \"live\": true, \"id\": \"xa94a2c7d48cfdbb9\"}", "{\"sha\": \"3ad87b891044e07d379d1a1371e2a6ce9cec78fa\", \"live\": true, \"id\": \"x38a0ab72101c34ba\"}", "{\"sha\": \"52731cfc14e305243bf17f2825d228b12eaa1c14\", \"live\": true, \"id\": \"x14d868782833a568\"}", "{\"sha\": \"cee157bbd4ed63a5487fd1d8f0ba15ff5621ec92\", \"live\": true, \"id\": \"xbb61bd297de30aee\"}", "{\"sha\": \"cafeb5ca176316e6aa627b84d3eaf14a7acbb12f\", \"live\": true, \"id\": \"xb613f881546d5273\"}", "{\"sha\": \"b4591853ddc2af477adfaf2946b52239a6a1b136\", \"live\": true, \"id\": \"x78c5d95cff2ff6a8\"}", "{\"sha\": \"96ba9a132f2585291642c6d0c5091ca24975569d\", \"live\": true, \"id\": \"x63f6c3828dbeb79b\"}", "{\"sha\": \"bfb5b5419f1f1471987e73d71201695c4cb8d573\", \"live\": true, \"id\": \"x42780a4fde866939\"}", "{\"sha\": \"eb4db62345d052fea9c19307607d17574da9152e\", \"live\": true, \"id\": \"x5f15a5808c07f00d\"}", "{\"sha\": \"0bcaada28611bcaca51d04c9b06cda7c3ee4f4e7\", \"live\": true, \"id\": \"xbab491b70264c156\"}", "{\"sha\": \"074f14ba55c0299efd98cd28e56da2c248613556\", \"live\": true, \"id\": \"x2a84413cf5f8ddfa\"}", "{\"sha\": \"dc58d39d34eb86b443082e97440ba82cfe187755\", \"live\": true, \"id\": \"x044d274ca39d1ea4\"}", "{\"sha\": \"b89e3bea4ed9015beaeab5193c944abe92151a48\", \"live\": true, \"id\": \"xe9b17135adbfcf47\"}", "{\"sha\": \"0d48c182cdc10dbfc37c7ea5c1b9ec908d0307b6\", \"live\": true, \"id\": \"xec35155e2af4b826\"}", "{\"sha\": \"e9bb1acab1259f155bd6e17da04c354cecdfcc44\", \"live\": true, \"id\": \"xa778f2e2a723f25d\"}", "{\"sha\": \"f1968db0518a3f2ef418f473f860437ca21ca297\", \"live\": true, \"id\": \"xc950462305245e15\"}"], "description": "Practice comparing decimals with the help of visual aids.", "basepoints": 10.0, "path": "comparing-decimals-visually/", "slug": "comparing-decimals-visually", "kind": "Exercise", "name": "comparing-decimals-visually", "seconds_per_fast_problem": 4.0, "prerequisites": ["converting_fractions_to_decimals_0.5"], "exercise_id": "comparing-decimals-visually"}, "surface-areas": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/surface-areas/", "id": "surface-areas", "display_name": "Surface area", "title": "Surface area", "all_assessment_items": ["{\"sha\": \"b85b9283cda1a3621632b2ff34473081e18a0179\", \"live\": true, \"id\": \"x69b488ebfd02a5f9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"237ab10acfb706ac8609ef8163ba3c08b515b0d7\", \"live\": true, \"id\": \"x19a7c15336e10eb5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f0edf286e4e817bbf76d7fbadefa06efdc3fc4f9\", \"live\": true, \"id\": \"x2bbcf4b365013dde\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"43f93b83c5d27903a978bd3ea3f43f497bff5bc2\", \"live\": true, \"id\": \"xcea7d844cb80a0bf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"29af2bf6c04d9d53f88219ad7d3a553743a57b3a\", \"live\": true, \"id\": \"xc4b0920c878e1097\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a4b453b155aab927c1a0246fc80c454da4c78893\", \"live\": true, \"id\": \"x73d39159e22589a3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2f903a010ce1b070c27449e753aa238b5c5d313d\", \"live\": true, \"id\": \"x564163d8f5bd6323\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f0768fa315adbf2e476385ef4c422e1e5d064fb4\", \"live\": true, \"id\": \"x3e555ca311488a35\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"76b2528408966a617f77330baf4215acb85a0393\", \"live\": true, \"id\": \"x07af82c89aba6050\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c760684e74c332f877c8b75e193c386bf27f37f7\", \"live\": true, \"id\": \"xa8da9eb913a1b51e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ded22c600c4cd9314f0a73ff4d7fe54768c70ea5\", \"live\": true, \"id\": \"xfeafd2e5d0af598d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"97615fee230a710f913f65fcd6afdda8ea243c75\", \"live\": true, \"id\": \"x053adbdb266e2f0e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9acd0bf68746e23bbad33f4c89ed4324ae5c02c7\", \"live\": true, \"id\": \"x164a72332914cea5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16f4feca4c74f5d379183698977f28bb73b94868\", \"live\": true, \"id\": \"xab3f5bbfbeb3b6a6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90a9ec5c7bcca863f016d6dc83e44c2522a13da4\", \"live\": true, \"id\": \"x33bb5633464c4f76\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7757e7fceb4875d55e51ca67a338edff3b9ee89e\", \"live\": true, \"id\": \"xcfec0d67b0c4dd80\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5cdb63fc6a60e9c61f57d1ca748f22d15b54a62b\", \"live\": true, \"id\": \"x2d5393d491834520\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cdb01c0f0db97e01e99d3bd71f66ff70982730c2\", \"live\": true, \"id\": \"x8c916fec3eb910bc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c49070c42e1a6dac7a26f7582707bee0235066d2\", \"live\": true, \"id\": \"x24a1ca30dad925c8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"63236abb971352c23c68265682f6ca6047e52007\", \"live\": true, \"id\": \"xab2432d77734f5e3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Find the surface area of 3D objects.", "basepoints": 10.0, "slug": "surface-areas", "kind": "Exercise", "name": "surface-areas", "seconds_per_fast_problem": 4.0, "prerequisites": ["surface-area"], "exercise_id": "surface-areas"}, "areas_of_circles_and_sectors": {"uses_assessment_items": false, "path": "khan/math/geometry/cc-geometry-circles/circles/areas_of_circles_and_sectors/", "id": "areas_of_circles_and_sectors", "display_name": "Areas of circles and sectors", "title": "Areas of circles and sectors", "description": "Relate the area of a sector to the area of a whole circle.", "basepoints": 28.0, "slug": "areas_of_circles_and_sectors", "kind": "Exercise", "name": "areas_of_circles_and_sectors", "seconds_per_fast_problem": 52.0, "prerequisites": ["proportions_1", "area_of_a_circle", "measuring_angles"], "exercise_id": "areas_of_circles_and_sectors"}, "hematologic-system--passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/hematologic-system-passage-2/", "id": "hematologic-system--passage-2", "display_name": "The oxygen affinity of hemoglobin", "title": "The oxygen affinity of hemoglobin", "all_assessment_items": ["{\"sha\": \"ba93daa9229a6435680b3bfbdc340d351049b64e\", \"live\": true, \"id\": \"xbf7a50e922eccdff\"}", "{\"sha\": \"5ee94d449c02d0a9331ef22d1073adf4e318a280\", \"live\": true, \"id\": \"xb2e5321a3deb9314\"}", "{\"sha\": \"b15d639d457a38e71c1b489dd6ac7b55487cc528\", \"live\": true, \"id\": \"xdd5a7b7aa80b42a6\"}", "{\"sha\": \"c264ad1246ef57dd558a1fe2e4492a3a1189308a\", \"live\": true, \"id\": \"x729ed5acb769dce5\"}", "{\"sha\": \"4f4ee8a655b75790dca71883987d3b938232a647\", \"live\": true, \"id\": \"xdac83676f2a010ff\"}"], "description": "Hematologic System- Passage 2", "basepoints": 10.0, "slug": "hematologic-system-passage-2", "kind": "Exercise", "name": "hematologic-system--passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "hematologic-system--passage-2"}, "modeling-with-periodic-functions-2": {"uses_assessment_items": true, "path": "khan/math/trigonometry/trig-function-graphs/modeling-periodic-functions/modeling-with-periodic-functions-2/", "id": "modeling-with-periodic-functions-2", "display_name": "Modeling with periodic functions 2", "title": "Modeling with periodic functions 2", "all_assessment_items": ["{\"sha\": \"7d74f983a134e3b49aca16622c2f888aea40c559\", \"live\": true, \"id\": \"x0b48449f9b99cd7b\"}", "{\"sha\": \"78c7cff6ece311b8aa5121e149029af9dfe27687\", \"live\": true, \"id\": \"xeaff7374de51fe6e\"}", "{\"sha\": \"531e03de7c6acc0f120431eb91872e71259fc35d\", \"live\": true, \"id\": \"xb33144b95f68e31a\"}", "{\"sha\": \"5ebaffb2b3d3246a30ab1c8475f0351d393351b0\", \"live\": true, \"id\": \"x35a7ecd1246dadc1\"}", "{\"sha\": \"1fbae1a1bc1dd3674de3b60825cc8212f423cc56\", \"live\": true, \"id\": \"xd57d699044cee498\"}", "{\"sha\": \"71785899810ad5fb91f1fb859704f62316f29dab\", \"live\": true, \"id\": \"x8520a8153cb01b56\"}", "{\"sha\": \"665aa0ad2e4a2b43e5aa45065788118d20fb79ea\", \"live\": true, \"id\": \"x493d2f604151c13a\"}", "{\"sha\": \"ee95849e3aa7dcce4fe738f5ac6d014f24f312fd\", \"live\": true, \"id\": \"x5e856b5e4baac34a\"}", "{\"sha\": \"e6dcbe7ca0ade8ec3d53389987ddfcf19a141368\", \"live\": true, \"id\": \"x85a05f585bece6b0\"}", "{\"sha\": \"b8ed71aa7b8aa984537b743a20ecb594d98cdd1a\", \"live\": true, \"id\": \"xd68d4b7b9ad40f12\"}", "{\"sha\": \"4e055c9b6d9a39d7218e5487c36d947bcc917192\", \"live\": true, \"id\": \"xea5271b968bc8eba\"}", "{\"sha\": \"3a1c39d05e75aed4ec00c4f1132af9b75d099104\", \"live\": true, \"id\": \"xb0c43bc51c504985\"}", "{\"sha\": \"b13a58351d6e99a91ad8ba8ac1b85d505c96b3fa\", \"live\": true, \"id\": \"xc7522093a6a650f3\"}", "{\"sha\": \"0d866e5061a5aad684c6d39800459b950b027fe2\", \"live\": true, \"id\": \"x578b566fe8b23c91\"}", "{\"sha\": \"533ef226dac6fef6a6a9e2c8e2cda84f908378cf\", \"live\": true, \"id\": \"x978992bc631c3091\"}", "{\"sha\": \"79b9ee877509c036385205517ee662c3bf438ea6\", \"live\": true, \"id\": \"xfc9de94f6b57895d\"}", "{\"sha\": \"eee776651246ee337a0ff5288c34f2369fbfbfe7\", \"live\": true, \"id\": \"x6feb0a5ff9caf79a\"}", "{\"sha\": \"69a8c8a86fa849ca87984e474be2f4b0d2978cb3\", \"live\": true, \"id\": \"xea3184bc49849bd1\"}", "{\"sha\": \"46474a74e30e565502fe0f23c6b12521db295784\", \"live\": true, \"id\": \"xe7d1d077b465c10f\"}", "{\"sha\": \"f9617de84520d139a0e4f6c1e60b556a8bceacef\", \"live\": true, \"id\": \"xca69bb0a31bcb7b7\"}", "{\"sha\": \"91974776b3268d26a85ce6ffaf7cdf4a6682bbf6\", \"live\": true, \"id\": \"x028f3e6fe3161a06\"}", "{\"sha\": \"824f2b71a0109a3d4d1aee7a846f321f98be44ea\", \"live\": true, \"id\": \"xde50019f0bd32fe3\"}", "{\"sha\": \"5a753f541d411b3d23d8afd7d66e212316069b12\", \"live\": true, \"id\": \"x38d9cee6f25edff9\"}", "{\"sha\": \"0d047d780ea4a45525618c07a50d5e205ffee792\", \"live\": true, \"id\": \"x88d8638e02597460\"}", "{\"sha\": \"9c1b472f475caa75b14eeed190785059df88ff2d\", \"live\": true, \"id\": \"x9aba7979765e2942\"}", "{\"sha\": \"3e09e34c35a34b92bc5deebc7b1f40e3ff2ad783\", \"live\": true, \"id\": \"x675fbf09d5a0a4e1\"}", "{\"sha\": \"6dcc6236f240706ade5a59f39f8315c072610224\", \"live\": true, \"id\": \"x33ca791b61957bee\"}"], "description": "Level 2 with phase shift!", "basepoints": 10.0, "slug": "modeling-with-periodic-functions-2", "kind": "Exercise", "name": "modeling-with-periodic-functions-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["modeling-with-periodic-functions"], "exercise_id": "modeling-with-periodic-functions-2"}, "evaluating-expressions-3": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/evaluating-expressions-3/", "id": "evaluating-expressions-3", "display_name": "Evaluating expressions with variables word problems", "title": "Evaluating expressions with variables word problems", "all_assessment_items": ["{\"sha\": \"4b90fe066d9d06631d87abdc08f0e7a07fe85a2f\", \"live\": true, \"id\": \"x1205d7d7\"}", "{\"sha\": \"96f3f4a5d82111bbcbe65dec005a2a53f1aa8982\", \"live\": true, \"id\": \"xf25b5b10bffab0d9\"}", "{\"sha\": \"53178ace2ac87be84740482597324bb0168f736d\", \"live\": true, \"id\": \"x7cee7e7d80caf483\"}", "{\"sha\": \"69e6870f3f10c73e957900dd3f0670430dcdf2f7\", \"live\": true, \"id\": \"xc47b80fd1be24768\"}", "{\"sha\": \"1e0d0e53508b5691487c1ec1a9eac48bbec3a506\", \"live\": true, \"id\": \"x92d69657c6d3b140\"}", "{\"sha\": \"f467c7f3030c072b95f0af02d280e9cb40fef4c2\", \"live\": true, \"id\": \"x57bd3b708ddbee7a\"}", "{\"sha\": \"2484422849257a6f51163a121912b40d28df28d6\", \"live\": true, \"id\": \"x3cc30e49a5886bdd\"}", "{\"sha\": \"4854b191bdb0752ef625828bfa0985763716d30a\", \"live\": true, \"id\": \"x68f4aec1fc29e09a\"}", "{\"sha\": \"18a13eb94f956d05515751f26d9bad2e5133850b\", \"live\": true, \"id\": \"x28b79aff\"}", "{\"sha\": \"553bf402a4b68ec1091df64068dc029c74431753\", \"live\": true, \"id\": \"x62507a12\"}", "{\"sha\": \"02042aa4ab7132f0bfa51fa99f8a125a4d1b1b66\", \"live\": true, \"id\": \"xb1b6c90f\"}", "{\"sha\": \"4e9c0857d55bd28943c1eec28afa4519ffa9ace7\", \"live\": true, \"id\": \"xb4a16504fcf0b7e1\"}", "{\"sha\": \"1fe7e2ef2f3861cdb3e6410e09278e28dc297e66\", \"live\": true, \"id\": \"x1e62627af9cd4974\"}", "{\"sha\": \"33bd2c0196dc7195606751c5a4bc0997469d9707\", \"live\": true, \"id\": \"x25c84e7414c179ab\"}", "{\"sha\": \"51aeccac8392ecdafef4456e1b300fa1fa1f9982\", \"live\": true, \"id\": \"x6c00a0e65b4bc7b0\"}", "{\"sha\": \"1f9646dad6ea6b54a1a5cc4d05c91dc9cf0ab3c7\", \"live\": true, \"id\": \"x446c0c6a2a9968c0\"}", "{\"sha\": \"105e24d54b4602e339c03165ebcc9f1d436120eb\", \"live\": true, \"id\": \"x5bd1cddf7117323d\"}", "{\"sha\": \"784e63c19015a05aab4de4c9bbf2857ca02fc54d\", \"live\": true, \"id\": \"xfb075bda43f8fe64\"}", "{\"sha\": \"d5f783cd664602f2b2ea1d5c06b99db1588bdc98\", \"live\": true, \"id\": \"x8033a71c0f73210c\"}", "{\"sha\": \"0c67b27bc8807c455fd0dd82ff8b21df5ed6f6db\", \"live\": true, \"id\": \"xf03c12dae2b012c1\"}"], "description": "Practice plugging in values to evaluate real-world expressions. These are introductory problems, so the expressions aren't too complicated.", "basepoints": 26.0, "slug": "evaluating-expressions-3", "kind": "Exercise", "name": "evaluating-expressions-3", "seconds_per_fast_problem": 38.0, "prerequisites": ["evaluating_expressions_2"], "exercise_id": "evaluating-expressions-3"}, "dividing-fractions-by-fractions-word-problems": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-fractions/dividing-fractions-by-fractions-word-problems/", "id": "dividing-fractions-by-fractions-word-problems", "display_name": "Dividing fractions word problems", "title": "Dividing fractions word problems", "all_assessment_items": ["{\"sha\": \"46a7682a6ca7d3adf74977839e26d6519c9bb0c2\", \"live\": true, \"id\": \"x8a17b1e3924457b3\"}", "{\"sha\": \"b96cf834f3ca5de4c7106f9dea7b6109bcce362b\", \"live\": true, \"id\": \"x80a1e393e8046776\"}", "{\"sha\": \"8908b38da51249f52d46b334a4460fc56030dc1a\", \"live\": true, \"id\": \"x4a2a7ffdda8c0d3e\"}", "{\"sha\": \"590758859e9481539f39a70d59ce2cea22cb82b4\", \"live\": true, \"id\": \"xd31ccc59a39772eb\"}", "{\"sha\": \"1c2feb1bd8cabc67fead9b9faea5d133c341c666\", \"live\": true, \"id\": \"x1bf90e546e81ade9\"}", "{\"sha\": \"0db1a34ef233440d185f0becfda892fc85033b74\", \"live\": true, \"id\": \"x783b7ad0a18fb3b6\"}", "{\"sha\": \"f01b2179a8e023a5693b7c8df4dab683ca2c034c\", \"live\": true, \"id\": \"x885e216afd0e1fe0\"}", "{\"sha\": \"612b659977d24f6537ae548cc2cdc0b03963d97f\", \"live\": true, \"id\": \"x9931e4c535ee7879\"}", "{\"sha\": \"1520f88631fdeab2806f8c5a665a2a1f90b012d8\", \"live\": true, \"id\": \"x6566b381363a2f56\"}", "{\"sha\": \"d4fd35866750a52af5064b760478d6710e350bb1\", \"live\": true, \"id\": \"x8441373a78a538e8\"}", "{\"sha\": \"75181fd35ea7060f0752267f3ee9ace2fae8b2b2\", \"live\": true, \"id\": \"x183f0acf99cba57b\"}", "{\"sha\": \"50f8e079ef41999d626ef246b328d0b2740dbac3\", \"live\": true, \"id\": \"x9f74b832e4082838\"}", "{\"sha\": \"5e6ad6452862695db3d0a15255215a25d40a55e2\", \"live\": true, \"id\": \"x9dc1e05eac33d372\"}", "{\"sha\": \"e123b8f03d70489f7db0d9efe220cd22f1b95d88\", \"live\": true, \"id\": \"xf29a5c62169ff6a0\"}", "{\"sha\": \"5dcf3f6aa59a9c49916438f687f68296d3e44392\", \"live\": true, \"id\": \"xf2345ab6d06d1bea\"}", "{\"sha\": \"daeb2b4e045e384c024ffcc9b55001d8ae9e0abd\", \"live\": true, \"id\": \"x8eeeb05285dea464\"}", "{\"sha\": \"c9855dfcb09fc575facc89fec49a20145c6d0d46\", \"live\": true, \"id\": \"x4beb919adbfb7b41\"}", "{\"sha\": \"3f6e08ffa24ff3e626bec6db966c570a01229082\", \"live\": true, \"id\": \"x12dc51e19cad078e\"}", "{\"sha\": \"f4224a43ae0352d0fa217d9200664875f3f9ce60\", \"live\": true, \"id\": \"x3ef35fedb9f2e519\"}", "{\"sha\": \"8a821c1e399f179a00294a8eee8d00c4946ae19e\", \"live\": true, \"id\": \"xb81c5095fc3d9345\"}"], "description": "Practice solving word problems by dividing fractions by fractions.", "basepoints": 10.0, "slug": "dividing-fractions-by-fractions-word-problems", "kind": "Exercise", "name": "dividing-fractions-by-fractions-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["dividing_fractions_1.5"], "exercise_id": "dividing-fractions-by-fractions-word-problems"}, "negative-number-word-problems-1": {"uses_assessment_items": true, "id": "negative-number-word-problems-1", "display_name": "Multiplying and dividing negative numbers: word problems", "title": "Multiplying and dividing negative numbers: word problems", "all_assessment_items": ["{\"sha\": \"08aebc96fc233e8ddb6ed9ae93de014a2b5f7c7f\", \"live\": true, \"id\": \"x1107b2516d3b166d\"}", "{\"sha\": \"f14dad3476b2463628583a9376fd61d84e47abd7\", \"live\": true, \"id\": \"x8cad83ae610d7ac4\"}", "{\"sha\": \"42cee1a97442cdc90456d17f08ec83e7df4336cc\", \"live\": true, \"id\": \"x0054de84b2d1c50a\"}", "{\"sha\": \"8143bfb87c7afe2ef1d0959230b85e8539832fce\", \"live\": true, \"id\": \"xb6bafef444d17dec\"}", "{\"sha\": \"1b0f00a467e9c852856b8d007d99693a953731f0\", \"live\": true, \"id\": \"xcad005971ecb2002\"}", "{\"sha\": \"b3c42bd0f5757bf5d1f8d2036ae685e0611de9a0\", \"live\": true, \"id\": \"x800a7b05f485beef\"}", "{\"sha\": \"1f2fa3e083f3777ac2d5628192e835f33953bc72\", \"live\": true, \"id\": \"x30e1e0f2c356ff3b\"}", "{\"sha\": \"39101e07fcc902cd498ed873481493ffeb36f8a8\", \"live\": true, \"id\": \"x637897d1f93e195b\"}", "{\"sha\": \"e6f8ec5f8cb9e8ceb329cc15bc6fbbd0a2f88226\", \"live\": true, \"id\": \"xd600b2bf216d7159\"}", "{\"sha\": \"c1427a77b8f6c92e64ed1c425a5094970aea2776\", \"live\": true, \"id\": \"x0f661c9fc328b901\"}", "{\"sha\": \"c960d69de2d59deda3f619ccc1a2630ec0757a85\", \"live\": true, \"id\": \"x51d0898da4994aa2\"}", "{\"sha\": \"8b501d8144528147d7356382909541abdecf2498\", \"live\": true, \"id\": \"x706e54085add86b9\"}", "{\"sha\": \"b6234680fab7d05f4d5c96fa1d64bf2838c57b0e\", \"live\": true, \"id\": \"x9892c8dc30641a7f\"}", "{\"sha\": \"7986007a5bca42bee4654ac119aeba57743faf0e\", \"live\": true, \"id\": \"x5526fac294679ba2\"}", "{\"sha\": \"2458926063b2e928d32fd06ebe2ec1348d8831bc\", \"live\": true, \"id\": \"x8ed64eeeb9ab15a8\"}", "{\"sha\": \"e9f147346d69fcfb8c86a74144523e876ae9ba32\", \"live\": true, \"id\": \"xbf826ac6480320a6\"}"], "description": "Practice matching situations to multiplication and division expressions and equations.", "basepoints": 10.0, "path": "negative-number-word-problems-1/", "slug": "negative-number-word-problems-1", "kind": "Exercise", "name": "negative-number-word-problems-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_and_dividing_negative_numbers"], "exercise_id": "negative-number-word-problems-1"}, "comparing-the-stress-exerted-on-the-body-by-different-running-shoes": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/comparing-the-stress-exerted-on-the-body-by-different-running-shoes/", "id": "comparing-the-stress-exerted-on-the-body-by-different-running-shoes", "display_name": "Comparing the stress exerted on the body by different running shoes", "title": "Comparing the stress exerted on the body by different running shoes", "all_assessment_items": ["{\"sha\": \"4e4c8d20f2f61ec4cce4595af00787a06137ea90\", \"live\": true, \"id\": \"x78b6b23e5c957f56\"}", "{\"sha\": \"692a68761a273cd4c1f9db26aa896eb012220c7e\", \"live\": true, \"id\": \"x89cbd621b597d178\"}", "{\"sha\": \"0c91939c835e9fa33a1eea947bdb87ec0820e295\", \"live\": true, \"id\": \"x04165b456f72db4c\"}", "{\"sha\": \"be5ea48e17e6bbb2beb2932155b12d0f484e0172\", \"live\": true, \"id\": \"xcf41aec0f929e119\"}", "{\"sha\": \"75f639d9a41169527086fdcff2477bfc84bc8eda\", \"live\": true, \"id\": \"xa3670587eea7ae2c\"}"], "description": "Comparing the stress exerted on the body by different running shoes", "basepoints": 10.0, "slug": "comparing-the-stress-exerted-on-the-body-by-different-running-shoes", "kind": "Exercise", "name": "comparing-the-stress-exerted-on-the-body-by-different-running-shoes", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "comparing-the-stress-exerted-on-the-body-by-different-running-shoes"}, "quiz--simple-css-selectors": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css/intro-to-css/quiz-simple-css-selectors/", "id": "quiz--simple-css-selectors", "display_name": "Quiz: Simple CSS selectors", "title": "Quiz: Simple CSS selectors", "all_assessment_items": ["{\"sha\": \"95b9de48786895be216ca7548a40a365657a635e\", \"live\": true, \"id\": \"x06e0fe548d7a87c7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c68a1832927292b1ccef215006b973a8f75f7af5\", \"live\": true, \"id\": \"xc669de62170533eb\", \"perseus_api_major_version\": 0}", "{\"sha\": \"47b0cc8f2e3b1a52c7ba6a3379e1223a9a1a2972\", \"live\": true, \"id\": \"xaea406f3e9f55431\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e08d08dc0cac79b51f30e7f06ddefd912987f0f0\", \"live\": true, \"id\": \"x20ffbfbd45153fc1\", \"perseus_api_major_version\": 0}"], "description": "How well do you know element, class, and id selectors? Find out!", "basepoints": 10.0, "slug": "quiz-simple-css-selectors", "kind": "Exercise", "name": "quiz--simple-css-selectors", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--simple-css-selectors"}, "nclex-rn-questions-on-asthma-4": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-asthma-4/", "id": "nclex-rn-questions-on-asthma-4", "display_name": "NCLEX-RN questions on asthma 4", "title": "NCLEX-RN questions on asthma 4", "all_assessment_items": ["{\"sha\": \"0f678522e62cf6e6841829c48b1b261541c94482\", \"live\": true, \"id\": \"x826798ac56917421\"}", "{\"sha\": \"949ae30967413bb0ddf5f8ca7f70eeefef20b5a1\", \"live\": true, \"id\": \"x63b62a1ce2793721\"}", "{\"sha\": \"c9275c0107c46eca0c4d67d649792a6a28e0107c\", \"live\": true, \"id\": \"x05a3460b2d884d75\"}", "{\"sha\": \"8d6225048c3396bd41dd5935b20a7ac0864f2f63\", \"live\": true, \"id\": \"x85cc821264bf26d6\"}", "{\"sha\": \"abb89d79a3aa3b5eab593fa1084ef83387dbe32e\", \"live\": true, \"id\": \"x5292d7abb7586ace\"}"], "description": "Questions related to asthma", "basepoints": 10.0, "slug": "nclex-rn-questions-on-asthma-4", "kind": "Exercise", "name": "nclex-rn-questions-on-asthma-4", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-asthma-4"}, "nclex-rn-questions-on-asthma-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-asthma-1/", "id": "nclex-rn-questions-on-asthma-1", "display_name": "NCLEX-RN questions on asthma 1", "title": "NCLEX-RN questions on asthma 1", "all_assessment_items": ["{\"sha\": \"ad29850c2708b441b11ff7f7eb78d1f9d50ebdfa\", \"live\": true, \"id\": \"x333ce582bc1aff3a\"}", "{\"sha\": \"ed56b7a25712716fdc61859f033b2d807b03ee7d\", \"live\": true, \"id\": \"x4f28cb200dc9d978\"}", "{\"sha\": \"8ca45b53affe8d8942f56f7264bdf6c1422d23cd\", \"live\": true, \"id\": \"x0fbfab95d3b102a2\"}", "{\"sha\": \"6139490ebc80ff0e441213c71c4d06d976a34bc9\", \"live\": true, \"id\": \"xc819a9fb6585461b\"}", "{\"sha\": \"10de12a46263d19c97268a74eccdd23d080c343f\", \"live\": true, \"id\": \"xa2b73aa1913f1e98\"}", "{\"sha\": \"4f466ea9bfc7fdfe052552c3b45fc4cae1368e68\", \"live\": true, \"id\": \"x7af2d2b6308f2278\"}", "{\"sha\": \"0a8a6ebe862049f5827a7a10638ac6b213156640\", \"live\": true, \"id\": \"x57c7dd67d877f800\"}", "{\"sha\": \"35419074796dbcfc0cc0164bc8631524d930bb15\", \"live\": true, \"id\": \"x226095bb17fb8749\"}", "{\"sha\": \"e3b80aa5312d9257b9507ba55d37bb5974c62ab6\", \"live\": true, \"id\": \"x6b0966899b9fdc16\"}", "{\"sha\": \"a16fd3d5cabee424f41610c187ccf6c1794493ad\", \"live\": true, \"id\": \"xe519e48bacd0cbb8\"}"], "description": "Questions related to asthma", "basepoints": 10.0, "slug": "nclex-rn-questions-on-asthma-1", "kind": "Exercise", "name": "nclex-rn-questions-on-asthma-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-asthma-1"}, "giotto-s-ognissanti-madonna-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/giotto-s-ognissanti-madonna-quiz/", "id": "giotto-s-ognissanti-madonna-quiz", "display_name": "Giotto, Ognissanti Madonna (quiz)", "title": "Giotto, Ognissanti Madonna (quiz)", "all_assessment_items": ["{\"sha\": \"488b2d8ac6680f8e80464addc6b3f3fb72b661ef\", \"live\": true, \"id\": \"xe351530e1a2fdde3\"}", "{\"sha\": \"625b6b5f666056378b02e7689222012f7dff0964\", \"live\": true, \"id\": \"x78215c1569a87fd2\"}", "{\"sha\": \"2056e8d335916bfe3005e7c6d7e0317551875502\", \"live\": true, \"id\": \"xc4badc5667be1a6e\"}", "{\"sha\": \"6c31d60ab0f18d9e6681f1fa7fce93cacf328a80\", \"live\": true, \"id\": \"x9975229069a18750\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "giotto-s-ognissanti-madonna-quiz", "kind": "Exercise", "name": "giotto-s-ognissanti-madonna-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "giotto-s-ognissanti-madonna-quiz"}, "nclex-rn-questions-on-asthma-3": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-asthma-3/", "id": "nclex-rn-questions-on-asthma-3", "display_name": "NCLEX-RN questions on asthma 3", "title": "NCLEX-RN questions on asthma 3", "all_assessment_items": ["{\"sha\": \"2716f0f6a7e56c7c33db615ba065f6432c7b9eaa\", \"live\": true, \"id\": \"x35a95e4406f45854\"}", "{\"sha\": \"fd687d51ed3be80a1c2ce0957063821b98002016\", \"live\": true, \"id\": \"x519ac016daae7f50\"}", "{\"sha\": \"4dc868d723268d592d09c0cae0596ea9a74c185b\", \"live\": true, \"id\": \"xbfc6553f1cc231d2\"}", "{\"sha\": \"ba1638efcfd788c970c73319279dca9419f0cb04\", \"live\": true, \"id\": \"x200ac11c59e407b7\"}", "{\"sha\": \"584a31c82dd07b7f700c9cd57eac0a335b7a9a57\", \"live\": true, \"id\": \"x47538a14f607afbf\"}", "{\"sha\": \"3fa12d31efb680c5dd88238318dc823c1ce7c04f\", \"live\": true, \"id\": \"xfc51edebc027b6ee\"}", "{\"sha\": \"dfb5a9e2b8e826861e943966fd7b2c3a0aa1859c\", \"live\": true, \"id\": \"x3dd2c32fc662a810\"}", "{\"sha\": \"836ef420a413a39f46936c5b1864cedc464221e1\", \"live\": true, \"id\": \"x5a85c6a97066bae7\"}", "{\"sha\": \"24e79b679196e4b1b4137547c2e74072abca0062\", \"live\": true, \"id\": \"x6f5186fa807d6cd4\"}", "{\"sha\": \"786354f606d8ca5057233c4024aa4bcca9bcbffb\", \"live\": true, \"id\": \"xe98496c31dbc47f8\"}"], "description": "Questions related to asthma", "basepoints": 10.0, "slug": "nclex-rn-questions-on-asthma-3", "kind": "Exercise", "name": "nclex-rn-questions-on-asthma-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-asthma-3"}, "nclex-rn-questions-on-asthma-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-asthma-2/", "id": "nclex-rn-questions-on-asthma-2", "display_name": "NCLEX-RN questions on asthma 2", "title": "NCLEX-RN questions on asthma 2", "all_assessment_items": ["{\"sha\": \"5dbf07bd49504a18ad67724e88f865a090c7683f\", \"live\": true, \"id\": \"x98d6f048c4b1948d\", \"perseus_api_major_version\": null}", "{\"sha\": \"212658b4884b68f1044dfe03fb43e06191ed2e0a\", \"live\": true, \"id\": \"xc7c50bb07e6520ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"c8d7f7017a092b77629d43f15b8ee6cab2947696\", \"live\": true, \"id\": \"x70428719f256e5dd\", \"perseus_api_major_version\": null}", "{\"sha\": \"5ad9eac20bbb39dbade1ff52a8dbeed00b4dfb54\", \"live\": true, \"id\": \"xd03824ed35036943\", \"perseus_api_major_version\": null}", "{\"sha\": \"f7429f84ca8577b535cddfbc919cc6f8c9835216\", \"live\": true, \"id\": \"xbf4431ade8b8302f\", \"perseus_api_major_version\": 3}"], "description": "More questions related to asthma", "basepoints": 10.0, "slug": "nclex-rn-questions-on-asthma-2", "kind": "Exercise", "name": "nclex-rn-questions-on-asthma-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-asthma-2"}, "symbolic-differentiation": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/derivative-properties/symbolic-differentiation/", "id": "symbolic-differentiation", "display_name": "Symbolic differentiation", "title": "Symbolic differentiation", "all_assessment_items": ["{\"sha\": \"c06c43dc7d2b183945655c2aeb6e051f320c2486\", \"live\": true, \"id\": \"xe653668b8e78e2b1\"}", "{\"sha\": \"2f32e33b282220cae06992b5e8445f454b0305ad\", \"live\": true, \"id\": \"x7612d7fcd4826507\"}", "{\"sha\": \"42ef7144b3677db5ac921abe22ef1c759cca11ed\", \"live\": true, \"id\": \"xc38df8aace8eb87a\"}", "{\"sha\": \"b6c5be526c20ba058d5173b1d86244f7863ee4b7\", \"live\": true, \"id\": \"x353f38dfd7d113a4\"}", "{\"sha\": \"1c15370c62be15d9022123cb54e5484a7e027195\", \"live\": true, \"id\": \"x4829ea3399aeaf09\"}", "{\"sha\": \"7f6fda814174297079acd2412d05e0c5d5890edb\", \"live\": true, \"id\": \"x24e1f5ccfb231fb1\"}", "{\"sha\": \"44ab71b6b4cbf4bd1d0a993c2682240f404e5cf3\", \"live\": true, \"id\": \"x9daa1458e6c44592\"}", "{\"sha\": \"b81bbbac0e19c6b33375be51899ef3d575ad2c6a\", \"live\": true, \"id\": \"x637db57a9f5d0de0\"}", "{\"sha\": \"6db2f91c282a0e29bcfecd77ae2545540bb1b7a3\", \"live\": true, \"id\": \"xac5a5b3c431920ab\"}", "{\"sha\": \"d7629614ba2062913dbd14ab7a0c87a1e5679e65\", \"live\": true, \"id\": \"xe49ee64be337b9b2\"}", "{\"sha\": \"572c419c1a0bd9dc6b8dcd89a025392db69498ee\", \"live\": true, \"id\": \"x2b190810a9bf1e86\"}", "{\"sha\": \"a23e4bf08090e2791b48dd69201aaa1d3513f594\", \"live\": true, \"id\": \"xf060ba9adfa71e2a\"}", "{\"sha\": \"b78aa30fbd406a0de3f7642a279445f504e8d454\", \"live\": true, \"id\": \"x6047b95e3b8bd36b\"}", "{\"sha\": \"1954273e99bbf8bc1124d0d481de74fc17f5c231\", \"live\": true, \"id\": \"x33116fa101dbfdf6\"}", "{\"sha\": \"1f89111bfe52800ea51df07e5bff10f49a5e52f4\", \"live\": true, \"id\": \"x69015b85cfb36124\"}", "{\"sha\": \"98fdac4691923a7a954f5639a2bb179ff8c36cca\", \"live\": true, \"id\": \"x23260ce90b2d01f6\"}", "{\"sha\": \"8efbf52dcf8d832c06c9779c2be8f2f5dac1c4e3\", \"live\": true, \"id\": \"xc322989fc57ae521\"}", "{\"sha\": \"f3170ca5dafe298640c8f8de0ddb49e38fc83aef\", \"live\": true, \"id\": \"xce6d7d95b5ad5607\"}", "{\"sha\": \"ecdf4cca5e2f0522d150c086246adbc19f5200dd\", \"live\": true, \"id\": \"x6b7128f74c5f2c4e\"}", "{\"sha\": \"19d17d7716d901c56faba5ab2ebb2fcad47159e7\", \"live\": true, \"id\": \"xcfd2bf2d55c6dbf9\"}", "{\"sha\": \"35cbd4d2a8259978b2e68ffbc15bb92ca3fe77bf\", \"live\": true, \"id\": \"xdaf0786148c78ef1\"}", "{\"sha\": \"de2f8a74d42d233040349c84a5919988e06edfef\", \"live\": true, \"id\": \"x31dada37166bc491\"}", "{\"sha\": \"f8bf283cdeebb1dfb917c989e1048f32e00f44ff\", \"live\": true, \"id\": \"x1a6795ccfd9a843a\"}", "{\"sha\": \"0eecef964ede35d02ced5a0f7114ec01fef09531\", \"live\": true, \"id\": \"xcca50ffebe001e9f\"}", "{\"sha\": \"dbac6effd6ba55187fb4c4bfc7d8e5896395b875\", \"live\": true, \"id\": \"x0d94d0fb6901f2b6\"}", "{\"sha\": \"8abbd8b2722258ffb8cc88a77110949126e2111e\", \"live\": true, \"id\": \"x4767ede6b6c8d151\"}", "{\"sha\": \"463cfd1d1cd0d9cbc54285163b592a69f602e723\", \"live\": true, \"id\": \"x26e5a0b61641f3b2\"}", "{\"sha\": \"86066d2b46baa9e21c56471b52de84bd1b3a31e3\", \"live\": true, \"id\": \"xbd0f7c2f1bca5c11\"}", "{\"sha\": \"8c26e518cdd60ac88c9f383c38fabd36e6ccf1a0\", \"live\": true, \"id\": \"x99a77c0360ee86e2\"}"], "description": "", "basepoints": 10.0, "slug": "symbolic-differentiation", "kind": "Exercise", "name": "symbolic-differentiation", "seconds_per_fast_problem": 4.0, "prerequisites": ["the-formal-and-alternate-form-of-the-derivative", "recognizing_slope", "derivative_intuition"], "exercise_id": "symbolic-differentiation"}, "modeling-with-one-variable-equations-and-inequalities": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/one-variable-modeling/modeling-with-one-variable-equations-and-inequalities/", "id": "modeling-with-one-variable-equations-and-inequalities", "display_name": "Modeling with one-variable equations and inequalities", "title": "Modeling with one-variable equations and inequalities", "all_assessment_items": ["{\"sha\": \"593ef02f48506a127003ef917d59c7a49a55c6a7\", \"live\": true, \"id\": \"x0026f29c14accce5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9efcf217933ed29d43e7a1070dc7958efa95f944\", \"live\": true, \"id\": \"xfaea690904d62ce7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a8665327ba5dd836bc947e8a3ccf83fad9eab1e4\", \"live\": true, \"id\": \"xc1da9a701661a216\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"43b2a21e9ec7b054ec37e9462cc7f2a8279020ee\", \"live\": true, \"id\": \"xd9c866c27c7c85e4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ecd80a12ca95f3f7bfb2e663236aff68ed7120f0\", \"live\": true, \"id\": \"x91ddfe959b7e58fe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ba03213c54720da041e3cf1ca3a2ab2092e96d8a\", \"live\": true, \"id\": \"xacc9760039d25ebe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ddc779a458ac27e489734ce63cd3b75d176c2a3\", \"live\": true, \"id\": \"xc0ede89dbb5375db\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a21e02d739e0f9d4983e47f032c9a7f9bc567529\", \"live\": true, \"id\": \"x3207cf9b381bb085\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"73cb32bf4405c7efa32a8bc972881de640537e55\", \"live\": true, \"id\": \"x4e89e0f04f6cd36a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"21a3d66a27260b08ed3082f957f623358be6b012\", \"live\": true, \"id\": \"xa5c56c6565b07911\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"18ec45d5da95f5bd57effbd388cd1d7230fd1a30\", \"live\": true, \"id\": \"x6d1bf04e02385a8a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"62ddac9deaf7d84dde49e50024d4d0414f4473e1\", \"live\": true, \"id\": \"xd2e357b489449389\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f2e0f54409c1edac625c0e90869a93c00477522f\", \"live\": true, \"id\": \"x914a6b2e71a719ef\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71f3644ccec2af17ff9961c17cba7e76fb7db409\", \"live\": true, \"id\": \"xeb976406a41104b1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90e15d534fcb8b91493f0ddf9e8357da2a6e49aa\", \"live\": true, \"id\": \"x6ef5a08960531420\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7f7b5bbbd2cb2f603f86d46035ec961debfbf59e\", \"live\": true, \"id\": \"xee6ab166b0e3e8cb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c15fca3d721ed5c3d9d4f730b228a00b09883d1\", \"live\": true, \"id\": \"x77857a41e56c1d5b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7aff20321d5b614e6b88202036b4543801e09611\", \"live\": true, \"id\": \"xce42aec728ad5261\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ed3182bb42a55bbd3f609331f2f150768924ca37\", \"live\": true, \"id\": \"xb0dec27e5e1ff5ae\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8ef9eb8c2b02653a2dae3ea98727e40dcd445ff\", \"live\": true, \"id\": \"x7a9b3f526171bedb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c89382a1c554a331705780053c7232d4104c9a0\", \"live\": true, \"id\": \"x276c32173e57ef1a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"222139aed00e35b1fdd9b708f3ceae0965d89994\", \"live\": true, \"id\": \"x465e42f0a1d781e5\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}"], "description": "", "basepoints": 10.0, "slug": "modeling-with-one-variable-equations-and-inequalities", "kind": "Exercise", "name": "modeling-with-one-variable-equations-and-inequalities", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "modeling-with-one-variable-equations-and-inequalities"}, "numbers-to-120": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-numbers-120/numbers-to-120/", "id": "numbers-to-120", "display_name": "Numbers to 120", "title": "Numbers to 120", "all_assessment_items": ["{\"sha\": \"d14c3fd1a82128c726d983e925315fb4d467539e\", \"live\": true, \"id\": \"x08932b62d46eb8ce\"}", "{\"sha\": \"98a5d21be05a549052a3767ae2ff89f1a3441636\", \"live\": true, \"id\": \"x67961407ec3b7a6d\"}", "{\"sha\": \"06430c9886abde547add33f2a8f510881432d6c4\", \"live\": true, \"id\": \"xf728164672772dbc\"}", "{\"sha\": \"3b0579fcfc225f700862af7eeb268d8b5044d84e\", \"live\": true, \"id\": \"x4a4417f7b43a6185\"}", "{\"sha\": \"bbaffad5e00a6cff720b085d423f5421ce5cc8bb\", \"live\": true, \"id\": \"x372cec8afb64680d\"}", "{\"sha\": \"546d9a776f7e89c576cac747ef707332c257fd2c\", \"live\": true, \"id\": \"xe1a455bfd601f3dc\"}", "{\"sha\": \"a9121e86a68e10b46762d71785c54752b8a4507f\", \"live\": true, \"id\": \"xcc93caa6552a9070\"}", "{\"sha\": \"6b241bcc0c441df0d864c4e0c44e54cec087993a\", \"live\": true, \"id\": \"xeb00b1ac03d0e8ed\"}", "{\"sha\": \"a9391abdbe5f4ade3139c27d6021c485b3eca83f\", \"live\": true, \"id\": \"x45ea655e327ea439\"}", "{\"sha\": \"3cec21cb5d3c045fb44a5a49c59f94ed47031620\", \"live\": true, \"id\": \"x31b21c541ad77f91\"}", "{\"sha\": \"be2c7cd3dba06476ae1d7391e27482af074b5cd0\", \"live\": true, \"id\": \"x64103405032c6390\"}", "{\"sha\": \"37bfc8a9d52a36200ab6eed59c11e1dbe3be0787\", \"live\": true, \"id\": \"x89320ccc67b541b4\"}", "{\"sha\": \"622a371a303adb6f8eacf7f6f750497d2d5e583d\", \"live\": true, \"id\": \"x7de0457da3c0b708\"}", "{\"sha\": \"cb6b7422d56bfd80a4a036fe786fc63a31d4def2\", \"live\": true, \"id\": \"xbac235f24c266010\"}", "{\"sha\": \"0b537a73cc837f043552992ccf42603bf3d2286c\", \"live\": true, \"id\": \"x59ce4fe9d9a2a096\"}"], "description": "Practice finding missing numbers between 0 and 120.", "basepoints": 10.0, "slug": "numbers-to-120", "kind": "Exercise", "name": "numbers-to-120", "seconds_per_fast_problem": 4.0, "prerequisites": ["count-to-100"], "exercise_id": "numbers-to-120"}, "distance_between_point_and_line": {"uses_assessment_items": false, "path": "khan/math/geometry/analytic-geometry-topic/parallel-and-perpendicular/distance_between_point_and_line/", "id": "distance_between_point_and_line", "display_name": "Distance between point and line", "title": "Distance between point and line", "description": "Find the distance between a point and a line. Some horizontal and vertical lines.", "basepoints": 20.0, "slug": "distance_between_point_and_line", "kind": "Exercise", "name": "distance_between_point_and_line", "seconds_per_fast_problem": 17.0, "prerequisites": ["line_relationships", "pythagorean_theorem_1"], "exercise_id": "distance_between_point_and_line"}, "ww1-aftermath": {"uses_assessment_items": true, "path": "khan/humanities/history/euro-hist/ww1-aftermath/ww1-aftermath/", "id": "ww1-aftermath", "display_name": "WWI Aftermath", "title": "WWI Aftermath", "all_assessment_items": ["{\"sha\": \"2b34b3887d832cfb2e08295a0af196f1c63e6dbe\", \"live\": true, \"id\": \"x162943dc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d261be2c28e942383337ebf7533992d45394c93\", \"live\": true, \"id\": \"x2bda5d61\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11f7278b00c42e08cb71f4637b2509e4f01dd023\", \"live\": true, \"id\": \"x43fe69b2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"21d125697d316b1c09d1a257d38445a524b9f792\", \"live\": true, \"id\": \"x81260231\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bb33163ae97146211a62ecc5cec7ae3a19f2e12b\", \"live\": true, \"id\": \"xb5f2788c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3200d10a99f7596b965ee5925a86b1eb5ee010e8\", \"live\": true, \"id\": \"xc0f93465\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d116486b5b6e2d924528b94d56291aeaa4c6da71\", \"live\": true, \"id\": \"xe1d23308\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"22de105caf77eba0bb6ebd6aec1f1249c3223107\", \"live\": true, \"id\": \"xed8eaaff\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "ww1-aftermath", "kind": "Exercise", "name": "ww1-aftermath", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ww1-aftermath"}, "hypothesis-testing-in-experiments": {"uses_assessment_items": true, "path": "khan/math/probability/statistical-studies/hypothesis-test/hypothesis-testing-in-experiments/", "id": "hypothesis-testing-in-experiments", "display_name": "Hypothesis testing in experiments", "title": "Hypothesis testing in experiments", "all_assessment_items": ["{\"sha\": \"48c70b4e082b267160c1a9e86c330cc7ec5786b9\", \"live\": true, \"id\": \"x8bd514779ca69d87\"}", "{\"sha\": \"c1fcfcbf1042cff9f27035cbc5a624c120d357f4\", \"live\": true, \"id\": \"x1ed1b5d1f1c2497f\"}", "{\"sha\": \"e9c82f63548f2a1c4ce9c66e876b1803cc381772\", \"live\": true, \"id\": \"x9cef0951f1bf2537\"}", "{\"sha\": \"6a739aac95c47c9560bf07fc378e24fabcf0131f\", \"live\": true, \"id\": \"x9e28d6d3c71e517e\"}", "{\"sha\": \"969ffe836d9783422bd7d73862a7a3ef1278f44a\", \"live\": true, \"id\": \"xe7f124c9804146fb\"}", "{\"sha\": \"96d4d188c538bbfa98939f1ad298168969556f61\", \"live\": true, \"id\": \"x1e2ab3359885a607\"}", "{\"sha\": \"70391ba97ae044fed1e72877f31d2627b43ceb30\", \"live\": true, \"id\": \"xc38db1b4f76694ad\"}", "{\"sha\": \"b79f1cf27ba0a2cecae820f098cd5369f47b8e0f\", \"live\": true, \"id\": \"x8dde89ba63fd5539\"}", "{\"sha\": \"15f9349406897135d6fee8d3e03197fb5407034a\", \"live\": true, \"id\": \"xe84e658d24d524fb\"}", "{\"sha\": \"2336c9cfe5884234a5c7c640e2f8d41785c259d4\", \"live\": true, \"id\": \"xfcd188da6eaf24a4\"}", "{\"sha\": \"7bc17f4e3b6f9a29adf50b9d6f8664ac2346e5a8\", \"live\": true, \"id\": \"x9db2e5c01fbaaf37\"}", "{\"sha\": \"787433017851112cf98115535a574bd54fa19db1\", \"live\": true, \"id\": \"xb262bee30ba7caad\"}", "{\"sha\": \"400bfd695d606b1625df3412962bb39959509136\", \"live\": true, \"id\": \"x4c39f7fe1df9a2e8\"}", "{\"sha\": \"3aa6b5f845314cd1b7b27b6affb5e6f61613d970\", \"live\": true, \"id\": \"x9dec8b856129eb8f\"}", "{\"sha\": \"77acbeeca784503f110d30a298e6c495ab68e6b4\", \"live\": true, \"id\": \"x681c2a0b5d145c26\"}"], "description": "", "basepoints": 10.0, "slug": "hypothesis-testing-in-experiments", "kind": "Exercise", "name": "hypothesis-testing-in-experiments", "seconds_per_fast_problem": 4.0, "prerequisites": ["hypothesis-testing-with-simulations", "dividing_decimals"], "exercise_id": "hypothesis-testing-in-experiments"}, "control-of-gene-expression-in-eukaryotes--stat3-and-hyper-ige-syndrome": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/control-of-gene-expression-in-eukaryotes-stat3-and-hyper-ige-syndrome/", "id": "control-of-gene-expression-in-eukaryotes--stat3-and-hyper-ige-syndrome", "display_name": "Control of gene expression in eukaryotes: STAT3 and hyper IgE syndrome", "title": "Control of gene expression in eukaryotes: STAT3 and hyper IgE syndrome", "all_assessment_items": ["{\"sha\": \"ec6b11f344108bff8e409150cd739f0df6c06209\", \"live\": true, \"id\": \"x122177d3ed2fa83e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"14c47d23031445fbb09a29f56efd914d7736ae65\", \"live\": true, \"id\": \"x85b9c5b8e09a082c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71cc29ba27e2ffcf8ea85e5e39abce4db026bfd9\", \"live\": true, \"id\": \"x95d105129e34ef41\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cbe66144f0e96762132783cea5b9e02bc9777909\", \"live\": true, \"id\": \"xdcd58a57b5724fa7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4a3593f5f89149d1ac9f7fc1051ee727fd912b86\", \"live\": true, \"id\": \"xb055b6ce91496720\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to the transmission of genetic information from the gene to the protein", "basepoints": 10.0, "slug": "control-of-gene-expression-in-eukaryotes-stat3-and-hyper-ige-syndrome", "kind": "Exercise", "name": "control-of-gene-expression-in-eukaryotes--stat3-and-hyper-ige-syndrome", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "control-of-gene-expression-in-eukaryotes--stat3-and-hyper-ige-syndrome"}, "neoclassicism": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/neo-classicism/neoclassicism/", "id": "neoclassicism", "display_name": "Neoclassicism", "title": "Neoclassicism", "all_assessment_items": ["{\"sha\": \"d87172bed89d52fa19d58acccf2e765ad71a6f8c\", \"live\": true, \"id\": \"xb27678e3363eeda4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f59c85dfb04c987199b870e182bb419c2bfd2821\", \"live\": true, \"id\": \"x21be0d1395bc6152\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a8e6df5f7f70ac676bcd79820207ea709ce8cee9\", \"live\": true, \"id\": \"x2f1d7a77b002893e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"846df4731f9c1f2db0cdbf8f2435d22fa3699443\", \"live\": true, \"id\": \"xa1aaf55069adbdb7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a662bebe7e2cbaad5a31fab5d193f1a97b51d4fb\", \"live\": true, \"id\": \"xa72825e92b782c6f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87a9171cd40e41cb6df78b00c7d54bbb5590edaa\", \"live\": true, \"id\": \"xfaa0614eb04c1bbb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1e400d3d232b3f0521880212cdfa0b63e4d10854\", \"live\": true, \"id\": \"x794bbe3ee37a2f20\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9acd79bfef5697e52fccc91302c4a6165f155225\", \"live\": true, \"id\": \"x69c886a1acf251ad\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d1e8decbc952c32955e30319720cc570c7e5e8f8\", \"live\": true, \"id\": \"x66177ae2b8fe7e98\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a22f6e661a5c9378215adda41820a1e1883f68bb\", \"live\": true, \"id\": \"xc40d8bfde4845ba1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "neoclassicism", "kind": "Exercise", "name": "neoclassicism", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neoclassicism"}, "anemia-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/anemia-quiz/", "id": "anemia-quiz", "display_name": "NCLEX-RN questions on anemia 1", "title": "NCLEX-RN questions on anemia 1", "all_assessment_items": ["{\"sha\": \"832d031732ff8bcc67e9c87c73d3c189fc0b94e6\", \"live\": true, \"id\": \"xe3e4dbecd5e01684\"}", "{\"sha\": \"ba66a52f5ca8818638b075c9e90dc08104c51d15\", \"live\": true, \"id\": \"xf1d515f88c5c22fb\"}", "{\"sha\": \"71f362ecc8f2a5f1dfbdaedaef1868a36e7dbc34\", \"live\": true, \"id\": \"x06a049fb0e24193b\"}", "{\"sha\": \"43a69028433ae695fd6e129c5bef8393b6c2b563\", \"live\": true, \"id\": \"x406606dc40cf3a28\"}", "{\"sha\": \"c9f05d6d261263a78d1debacd4b7ba1d5566f3d5\", \"live\": true, \"id\": \"x6b98d48908a38bb9\"}", "{\"sha\": \"688f874935d8c474c215d3cb2586ee87c6cf5c33\", \"live\": true, \"id\": \"x20072da5e844ed2f\"}", "{\"sha\": \"56d9721a9cdd0b8ed15ab5fd825e644c9cd34fa9\", \"live\": true, \"id\": \"x01824e25ce13c869\"}", "{\"sha\": \"e812530a6c11b6257c655ccdf481b3ef920f9c9d\", \"live\": true, \"id\": \"x5352a8c0888e1357\"}", "{\"sha\": \"d1e38ca001dc6767e6334c2fff047129af8a6a96\", \"live\": true, \"id\": \"x0743520bab0ec928\"}", "{\"sha\": \"27a8c670ca5d1186ddc25ac09f5f3ef486c9c862\", \"live\": true, \"id\": \"xd586eb25bac3f4c8\"}", "{\"sha\": \"2ec7d79e5cb783428eafd1dc1f50b9946385db2f\", \"live\": true, \"id\": \"x3585c3bce79b7f13\"}", "{\"sha\": \"d0930377a050bbf7ff3f34adba6e83de5d0890cd\", \"live\": true, \"id\": \"xba5564da40aecd8d\"}", "{\"sha\": \"a77d239f393777cd56c1ef0d34a0074a8d07be76\", \"live\": true, \"id\": \"x43b5e07155e44d1e\"}", "{\"sha\": \"a40ef8d6c80f54d0562a5fac44874e8c72a55849\", \"live\": true, \"id\": \"x8ef480f6c1ede062\"}", "{\"sha\": \"ad1c1e583266fc1a1aec051b3c3879aaaf818d81\", \"live\": true, \"id\": \"xdf796e09ea10e506\"}"], "description": "A general quiz on anemia questions.", "basepoints": 10.0, "slug": "anemia-quiz", "kind": "Exercise", "name": "anemia-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "anemia-quiz"}, "finding-area-by-multiplying": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-area-perimeter-polygon/finding-area-by-multiplying/", "id": "finding-area-by-multiplying", "display_name": "Finding area by multiplying", "title": "Finding area by multiplying", "all_assessment_items": ["{\"sha\": \"dc481fbe4055fd17ae9e2aa079044a09d42485c9\", \"live\": true, \"id\": \"x701dd4d437c33fdc\"}", "{\"sha\": \"597b8f571d7c3bfeb1d913c2d63d2e89ce711411\", \"live\": true, \"id\": \"xf37c359030655fb6\"}", "{\"sha\": \"6cbee95cf1a33ddec34a02e7a765ee1e30d0e7cb\", \"live\": true, \"id\": \"x99eaeb345df42c6c\"}", "{\"sha\": \"8afdf03077a8f797ff6c69f5ef340e1502d4dd2d\", \"live\": true, \"id\": \"xacd288e0b24dd388\"}", "{\"sha\": \"e0a4a5db31fface3e7b978c743ed9081c0c5f0e2\", \"live\": true, \"id\": \"x0b180e322077090f\"}", "{\"sha\": \"9f182b307207c311531823d8cbbe9813c6a0439b\", \"live\": true, \"id\": \"xee2a0ddcaf593e37\"}", "{\"sha\": \"1bbc6f642b2d6a65a39380a3f769b2268898dead\", \"live\": true, \"id\": \"x31150bef29558194\"}", "{\"sha\": \"707314e3f4acd56bfdb7a9e70899b3b51c3a2af1\", \"live\": true, \"id\": \"x005c1c0141b42031\"}", "{\"sha\": \"5262869391489db6b06ac37cffaf2e5f6a9262d4\", \"live\": true, \"id\": \"xcbb01147f0d2dc46\"}", "{\"sha\": \"6da1a2a64dfd6f5a2793d6520a57971bd867273e\", \"live\": true, \"id\": \"xa570380eb3ed7d4c\"}", "{\"sha\": \"a930f254fdab1adfb26e9d5d2a9190d2ddde4041\", \"live\": true, \"id\": \"x832eb0446e1b2262\"}", "{\"sha\": \"b1910e0089151be25729d6a27f09e2695eb1c7fd\", \"live\": true, \"id\": \"x6c95574a16dfb677\"}", "{\"sha\": \"825fc79da4fb04252ce02cf02fac7386bbafd5d4\", \"live\": true, \"id\": \"x3ec266ead5447bfd\"}", "{\"sha\": \"15312e352f10bff7a6deefe2df426ac1017284eb\", \"live\": true, \"id\": \"x1fadf18fbed5d774\"}", "{\"sha\": \"75d12430ba315520fe5dd72a1d2d5407da4d0438\", \"live\": true, \"id\": \"xa84f7ca9ab19a783\"}", "{\"sha\": \"e5133894a1aff97791def35c3a28089f476b65f1\", \"live\": true, \"id\": \"x322bda2b7f9b3ceb\"}", "{\"sha\": \"9837ee70695e5148c1fb962de236934f6141141b\", \"live\": true, \"id\": \"x0a57c156dab660e7\"}", "{\"sha\": \"51bd586962133721de86b53bf8ba664454fd2436\", \"live\": true, \"id\": \"xd3b2fa1f4a038f18\"}", "{\"sha\": \"fd16e709a5a3a3dd33e049f7ffa0d05aec4eea53\", \"live\": true, \"id\": \"xdb4492c4c869af8a\"}", "{\"sha\": \"25f79ba59ca26ef0146c5bdb733760b246aeabad\", \"live\": true, \"id\": \"x763aabb66644f78c\"}"], "description": "Find area of rectangles by multiplying side-lengths.", "basepoints": 10.0, "slug": "finding-area-by-multiplying", "kind": "Exercise", "name": "finding-area-by-multiplying", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-area", "multiplication_0.5"], "exercise_id": "finding-area-by-multiplying"}, "integration-using-trigonometric-substitution": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/integration-techniques/trig_substitution/integration-using-trigonometric-substitution/", "id": "integration-using-trigonometric-substitution", "display_name": "Integration using trigonometric substitution", "title": "Integration using trigonometric substitution", "all_assessment_items": ["{\"sha\": \"4ff09f909f113661eff787682aa23a7aeea50c39\", \"live\": true, \"id\": \"xfafac9aa430c8ffc\", \"perseus_api_major_version\": null}", "{\"sha\": \"61099fa4623b9b2d6d4701ce66d871b6b6f93a49\", \"live\": true, \"id\": \"x49889212da217dd6\", \"perseus_api_major_version\": null}", "{\"sha\": \"644b546d5a85b02eba2143aed92d25c628387091\", \"live\": true, \"id\": \"x30f21f9099a3a897\", \"perseus_api_major_version\": null}", "{\"sha\": \"bd6d789284a769a89a4a862847f13676f18ac220\", \"live\": true, \"id\": \"xcf0eb379023625cc\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c1ececd1036c63eab5f2c20cf7ea72767297440\", \"live\": true, \"id\": \"xb1b313d63c525b3f\", \"perseus_api_major_version\": null}", "{\"sha\": \"5d5aaa4425a9d33449f672bcb149decb60f7a79e\", \"live\": true, \"id\": \"x7d74b1bf17fa48c8\", \"perseus_api_major_version\": null}", "{\"sha\": \"6803a0bb64bc88894b3ccfe2c1455cd8b7a58f32\", \"live\": true, \"id\": \"x721288e9a96a9523\", \"perseus_api_major_version\": null}", "{\"sha\": \"0fe4f4b9f3faa2e123aa8f03ca936e65b5717e62\", \"live\": true, \"id\": \"x1d750720a74ae19c\", \"perseus_api_major_version\": null}", "{\"sha\": \"5293596472a578006dfb9400e17694361173225f\", \"live\": true, \"id\": \"xf86482e9bb7e7a60\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e505551988ff57b376ab508a0aebe84545ab21cc\", \"live\": true, \"id\": \"x54420fdd377c33d5\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a992f0bb79e51be77d2da77033c0d3b2d8d123d\", \"live\": true, \"id\": \"x8e2499e81a729d8e\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed7a9efd4413e96cdddbe86549ab85d90edb5988\", \"live\": true, \"id\": \"x08d93896949f9f6f\", \"perseus_api_major_version\": null}", "{\"sha\": \"1ec43902d9d77fdeee96e06993b4e867b14a2c0b\", \"live\": true, \"id\": \"x7844321ee41e26a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"dab9d37149437f8eaec3c1a8f289be9b768ebf54\", \"live\": true, \"id\": \"xf072d7b0f3daf1be\", \"perseus_api_major_version\": null}", "{\"sha\": \"458105b3b475e8887795f4601a56924618c62ab6\", \"live\": true, \"id\": \"x4b8b5c3f0c3c33a9\", \"perseus_api_major_version\": null}", "{\"sha\": \"8e72607daee67976fde365ddba0829f2183eb841\", \"live\": true, \"id\": \"x57184748195c3af6\", \"perseus_api_major_version\": null}", "{\"sha\": \"f18639f59ed1c8fba5cb7f4aaa600829daae557c\", \"live\": true, \"id\": \"x7e812506929643e1\", \"perseus_api_major_version\": null}", "{\"sha\": \"36ae609d4932e69238769298fe4291017256c606\", \"live\": true, \"id\": \"xd30b2cb96ebecda7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ab030cddcac911f5a3320868b812ffead72fab65\", \"live\": true, \"id\": \"x2c31b364429c7fd2\", \"perseus_api_major_version\": null}", "{\"sha\": \"f4cb38d537ff2c60d5fd5ded06efdf2b879fbda6\", \"live\": true, \"id\": \"x694c6c7dd67e77a9\", \"perseus_api_major_version\": null}", "{\"sha\": \"c8f85e0ae5bbf69f5eb3dc42bc6b2394a081ef8e\", \"live\": true, \"id\": \"x345f89442895151e\", \"perseus_api_major_version\": null}", "{\"sha\": \"080154e9d48e645307ceea0f4306b9e4e2cee0b2\", \"live\": true, \"id\": \"xaa4f2f8b35d22ff9\", \"perseus_api_major_version\": null}", "{\"sha\": \"de964ac40446c008d6c75cbc1fe46e9eeadd4699\", \"live\": true, \"id\": \"x5f6c886cc6f32064\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b52cb204a9684e780a68699492951318c801ada\", \"live\": true, \"id\": \"x5755aaf53210bc5b\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f7d6c2dd62ef13fcebb5545ee9ccfb301d3af32\", \"live\": true, \"id\": \"xab1e854051619ab8\", \"perseus_api_major_version\": null}", "{\"sha\": \"1d8fee755f230f357c1399253c8caee2dfb81832\", \"live\": true, \"id\": \"x45c7068bf2e8a400\", \"perseus_api_major_version\": null}", "{\"sha\": \"efefa836b6d652f7efd9a45301430a592136221d\", \"live\": true, \"id\": \"x3b3b1b24f9c89873\", \"perseus_api_major_version\": null}", "{\"sha\": \"87c21d0cd32e9abd04cabfafda411a0d697f686b\", \"live\": true, \"id\": \"xc97b0199388b3e93\", \"perseus_api_major_version\": null}", "{\"sha\": \"c9827611599af27effe9c069a66d747434060f6e\", \"live\": true, \"id\": \"xda3ef820d08c6f8a\", \"perseus_api_major_version\": null}", "{\"sha\": \"7702326d34b903857d7b14fa57d6da6c2a6ebc22\", \"live\": true, \"id\": \"x9dcfb6ce8ef80d8a\", \"perseus_api_major_version\": null}"], "description": "Integration using trigonometric identities", "basepoints": 10.0, "slug": "integration-using-trigonometric-substitution", "kind": "Exercise", "name": "integration-using-trigonometric-substitution", "seconds_per_fast_problem": 4.0, "prerequisites": ["integration-by-u-substitution"], "exercise_id": "integration-using-trigonometric-substitution"}, "regrouping-decimals": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/regrouping-decimals/", "id": "regrouping-decimals", "display_name": "Regrouping decimals", "title": "Regrouping decimals", "all_assessment_items": ["{\"sha\": \"be2906f944769dc1fc1deb64f82692cdf76d4f32\", \"live\": true, \"id\": \"x49b7d737\"}", "{\"sha\": \"bc76239b9cda3a31af9eeabc5a3103716411ae62\", \"live\": true, \"id\": \"xf9064eb7\"}", "{\"sha\": \"56e87dea9b4bc88207238b4bc8ac1313faa4637c\", \"live\": true, \"id\": \"xa75a6f3a\"}", "{\"sha\": \"7468c78fcb0668d9780a073f70e3837a3e3692b1\", \"live\": true, \"id\": \"x713b1599\"}", "{\"sha\": \"6a8985e3ece1ee97823acd93af5940d48583eafe\", \"live\": true, \"id\": \"x83473d73\"}", "{\"sha\": \"bb571d2728a1ab79f13085d4d7934d3ab19c0c93\", \"live\": true, \"id\": \"xe7af425e\"}", "{\"sha\": \"bfd244ad27c56d01a5dbf09e205f2adcf5af92d0\", \"live\": true, \"id\": \"xf3ce266b\"}", "{\"sha\": \"104a352d67a2fabf186f11bbf740782c2da40e81\", \"live\": true, \"id\": \"x41c5b729\"}", "{\"sha\": \"953119ec5be1da4c94e23de559b52e984aacdfe3\", \"live\": true, \"id\": \"x100e66c7\"}", "{\"sha\": \"0b15e27a1ab0630c6ed1770b5e66e66d416ae7f9\", \"live\": true, \"id\": \"xf585d989\"}", "{\"sha\": \"b122578d7efa3acfdf1334873be7440294d4538c\", \"live\": true, \"id\": \"x74901c81\"}", "{\"sha\": \"a8275a3f6a0b30796ccb840f0ad78bfa2fbf5f3b\", \"live\": true, \"id\": \"x11fd0dcf\"}", "{\"sha\": \"95300afb2730bf880651bbb06bf668fe8c90169c\", \"live\": true, \"id\": \"xcae84f29\"}", "{\"sha\": \"85ffcaaaffd3d405a054cca5dab845e4d54e8de3\", \"live\": true, \"id\": \"xe7199e62\"}", "{\"sha\": \"ea2751e4727a66edb925df68f8bf4a3ce4b60b1c\", \"live\": true, \"id\": \"x53531b5f\"}", "{\"sha\": \"069179aecd30cff7627f3dd8d62098eb529318c2\", \"live\": true, \"id\": \"x22cfb5bb\"}", "{\"sha\": \"7658a3ea374faf3ced9aca29136922c6556918a6\", \"live\": true, \"id\": \"x5aca927d\"}", "{\"sha\": \"53a1c94a52e786dd1dd085062cedf40cabdfbcb7\", \"live\": true, \"id\": \"x9a8788f1\"}", "{\"sha\": \"d24b36da98f0d7fd831f4030aaa0c093e0962bc2\", \"live\": true, \"id\": \"xd6566e75\"}", "{\"sha\": \"c29acd06ddf5510315eed45962614116b32731ef\", \"live\": true, \"id\": \"x39e2afa3\"}", "{\"sha\": \"4bddff3d9d89c9046dc4442e0d280ebb53f6a19a\", \"live\": true, \"id\": \"x52936bee\"}"], "description": "Regroup numbers in each place value (e.g., regroup 1 ten as 10 ones) to express decimals in different ways.", "basepoints": 17.0, "slug": "regrouping-decimals", "kind": "Exercise", "name": "regrouping-decimals", "seconds_per_fast_problem": 11.0, "prerequisites": ["regrouping-whole-numbers"], "exercise_id": "regrouping-decimals"}, "solving_similar_triangles_2": {"uses_assessment_items": false, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/solving_similar_triangles_2/", "id": "solving_similar_triangles_2", "display_name": "Solving similar triangles 2", "title": "Solving similar triangles 2", "description": "", "basepoints": 24.0, "slug": "solving_similar_triangles_2", "kind": "Exercise", "name": "solving_similar_triangles_2", "seconds_per_fast_problem": 29.0, "prerequisites": ["solving_similar_triangles_1"], "exercise_id": "solving_similar_triangles_2"}, "solving_similar_triangles_1": {"uses_assessment_items": false, "path": "khan/math/geometry/similarity/triangle_similarlity/solving_similar_triangles_1/", "id": "solving_similar_triangles_1", "display_name": "Solving similar triangles 1", "title": "Solving similar triangles 1", "description": "", "basepoints": 20.0, "slug": "solving_similar_triangles_1", "kind": "Exercise", "name": "solving_similar_triangles_1", "seconds_per_fast_problem": 17.0, "prerequisites": ["similar_triangles_2"], "exercise_id": "solving_similar_triangles_1"}, "trends-in-categorical-data": {"uses_assessment_items": true, "path": "khan/math/probability/statistical-studies/categorical-data/trends-in-categorical-data/", "id": "trends-in-categorical-data", "display_name": "Trends in categorical data", "title": "Trends in categorical data", "all_assessment_items": ["{\"sha\": \"22eb5e3ecc1886d957de0964de1ecd42089be850\", \"live\": true, \"id\": \"xd5befa2f18bcd107\"}", "{\"sha\": \"b0e165f4863dfaea41a07b3a9cec78328fa6d852\", \"live\": true, \"id\": \"x7136b0c27bef1e93\"}", "{\"sha\": \"4290552c17f4c5411b95cfda798bc427b5936aa8\", \"live\": true, \"id\": \"xf3b93c6a81911d91\"}", "{\"sha\": \"f83c1b9b9a5f4c654858c2165e6c150cbf41917b\", \"live\": true, \"id\": \"x52db1e0601dfe0c4\"}", "{\"sha\": \"5d62441f4fd77a2e8dc4535de2b1c0d417465643\", \"live\": true, \"id\": \"x6a8e47b6fc5a6a1d\"}", "{\"sha\": \"cdc5ebcdbbe8a1d37c3217825903ef186c0a86a3\", \"live\": true, \"id\": \"x8782fabccaf4c0b7\"}", "{\"sha\": \"5b078b04a889c44a66bdca2712547b06d01d0c0c\", \"live\": true, \"id\": \"xb91a656d642be6a3\"}", "{\"sha\": \"5947fe70ba630ebb76096c1ccf2bcffa1b7a8750\", \"live\": true, \"id\": \"x94230b6d040c45b0\"}", "{\"sha\": \"bb39621936987caa08b1646526636d4db0bf8e2b\", \"live\": true, \"id\": \"x4956b99606e4cd4f\"}", "{\"sha\": \"6882ff0eae4989bebc25e3597c1aa73ee7e87992\", \"live\": true, \"id\": \"xc85cf8292bbabccb\"}", "{\"sha\": \"82c62a02a021826cab5b7821aaa9812c2daefc54\", \"live\": true, \"id\": \"xd40bb05c37e795f2\"}", "{\"sha\": \"14c8d0fb40d190c791e0f14efce3d075f991bac0\", \"live\": true, \"id\": \"x00db3bd0410907c6\"}", "{\"sha\": \"005441e0dc9381c93907d5abd273c498ee704a1a\", \"live\": true, \"id\": \"xc53ffb74e2d72975\"}", "{\"sha\": \"8b97279b6d71f4726d4a2fff1868683a3a412c4a\", \"live\": true, \"id\": \"xe703d606e85b0b32\"}", "{\"sha\": \"288844d3b6b750673c26e553dbf53c07b16f64da\", \"live\": true, \"id\": \"x3aa5941c196947bf\"}", "{\"sha\": \"e5e3fd2d28f96b76a8ac01829344619f3279f4fa\", \"live\": true, \"id\": \"x04745dcbb33bbcf8\"}", "{\"sha\": \"e597837998bdc6ccb81f96a350b8923c7f24cad6\", \"live\": true, \"id\": \"xc8d83c897cc1f088\"}", "{\"sha\": \"0ea4099b513c015dab21ea316b52a41daf8fdaf1\", \"live\": true, \"id\": \"x3f1d6e077f5b23e3\"}", "{\"sha\": \"bc7fc9961cf55429f8405c129298840799593f41\", \"live\": true, \"id\": \"xdc92f4cf2a3e8f0f\"}", "{\"sha\": \"5f1af721a579dee345c9ea211b294db82ce24def\", \"live\": true, \"id\": \"x22152441740bb112\"}", "{\"sha\": \"4f6a00be4d67cad1dba650e87e8238d8505888bc\", \"live\": true, \"id\": \"x498cc6f6f82a12b5\"}", "{\"sha\": \"067f00b48fc0a7b7670cb8f45db9cd328e7def01\", \"live\": true, \"id\": \"xac10431fba777f5f\"}", "{\"sha\": \"4ae4ddfe5cae70481e6c41f6d8a4079d98341530\", \"live\": true, \"id\": \"xa428929b8dd22688\"}", "{\"sha\": \"ef0de40cf775f4441c27aed4b9a736c01b913ef5\", \"live\": true, \"id\": \"x7bd7f9aa750732a9\"}", "{\"sha\": \"d707301c7a3b6e0fc7fcf8899c691442281afea8\", \"live\": true, \"id\": \"x5890407a4768b18a\"}", "{\"sha\": \"3646a20cad5a328291d87308c1f610672c2169f6\", \"live\": true, \"id\": \"x81b07a4cff481790\"}", "{\"sha\": \"7a083557bc04e21f33909e98909a7b90f7bbf156\", \"live\": true, \"id\": \"x577dfb8af0e5ff9d\"}", "{\"sha\": \"6c7063a87618257ebd017cb2ee29c67de83173ba\", \"live\": true, \"id\": \"x384db01f3ce04008\"}", "{\"sha\": \"b3fc745de05300b4a9996b1afc59022a3be52d68\", \"live\": true, \"id\": \"x8d8a2ca679052417\"}", "{\"sha\": \"582f234ef87bf04497c47a8317503dac920843d7\", \"live\": true, \"id\": \"xfb7415d070cc3544\"}"], "description": "", "basepoints": 10.0, "slug": "trends-in-categorical-data", "kind": "Exercise", "name": "trends-in-categorical-data", "seconds_per_fast_problem": 4.0, "prerequisites": ["types-of-statistical-studies", "dice_probability"], "exercise_id": "trends-in-categorical-data"}, "interpreting-quartiles-on-box-plots": {"uses_assessment_items": true, "id": "interpreting-quartiles-on-box-plots", "display_name": "Interpreting quartiles", "title": "Interpreting quartiles", "all_assessment_items": ["{\"sha\": \"71da21e0f21c153476f19dedda60dfdac176d49a\", \"live\": true, \"id\": \"x12992b47fbbf8a76\"}", "{\"sha\": \"948cbf2a47a515108875b4966d37fa32a3de24dd\", \"live\": true, \"id\": \"x1d64f7625ef8e54a\"}", "{\"sha\": \"a4f3723a54407a2b38213c36b0bd42affca2b4d5\", \"live\": true, \"id\": \"xfe0d33c8c3f51a75\"}", "{\"sha\": \"ccd6ff2b664a0ddaa8cdfd47859970a48c2d5a84\", \"live\": true, \"id\": \"xc3f07c21c564354d\"}", "{\"sha\": \"c1e48b6ba2b4aedf51f9b8d475afd113c6ed91ce\", \"live\": true, \"id\": \"x6d0ca181e49b2caf\"}", "{\"sha\": \"91dec67f248f96333eb4d58052ed3ea9cc9e334c\", \"live\": true, \"id\": \"x7308a101efaf46c1\"}", "{\"sha\": \"fbb7d1f3bbb3c5642ff429054c75055ce2d40ba8\", \"live\": true, \"id\": \"xb2bf7b75c9911780\"}", "{\"sha\": \"e806539711204573bff6f4b464514773c9f63635\", \"live\": true, \"id\": \"xc8d5a243c513809d\"}", "{\"sha\": \"c2a8ecc8657dc63612ad2da18f8d269dbfed2314\", \"live\": true, \"id\": \"xe515d1e561c8388f\"}", "{\"sha\": \"1e2116e2c326325b9bc0dc8b16fdae38bcd4a8ec\", \"live\": true, \"id\": \"x6842930214a529a5\"}", "{\"sha\": \"7cc2f7e37818a20963af0131e23d1becb09c9f87\", \"live\": true, \"id\": \"x5de2adf046cba23b\"}", "{\"sha\": \"c1040b551e9f5979b83f3105591295cfaf9955cb\", \"live\": true, \"id\": \"xa5177a69ef37750e\"}", "{\"sha\": \"88077e2f9dc9d86835890d3937f38cf9000789b7\", \"live\": true, \"id\": \"xa5efc39e695e29a1\"}", "{\"sha\": \"fa070a4258bf77b424795f9566fda4179f7c9382\", \"live\": true, \"id\": \"xf03b02bfca5708aa\"}", "{\"sha\": \"41192d484903a6f33f8dadac53a0be964c6eaa30\", \"live\": true, \"id\": \"x88dac43beb00218a\"}", "{\"sha\": \"d66c5f7cfb4dc31ba6fce60c076b91bd3198dfeb\", \"live\": true, \"id\": \"x538b9e4e3fe54133\"}", "{\"sha\": \"abf01c8058c2d15229295997a3abd35ff2b42acf\", \"live\": true, \"id\": \"x6c4d03f4c30aea57\"}", "{\"sha\": \"8268ba7749ddfabd31d06ce908762da7c83a2a6b\", \"live\": true, \"id\": \"x9fdf3ffdc6acf814\"}", "{\"sha\": \"db15abf2bd9a8d9697f70797694445da9102cf3c\", \"live\": true, \"id\": \"x92bca8385b043e38\"}", "{\"sha\": \"8f7ff05ef5af1dcda203af2d6bd18f200b22b670\", \"live\": true, \"id\": \"x63e9045840f84fe7\"}"], "description": "Practice understanding the meaning of quartiles of data sets.", "basepoints": 10.0, "path": "interpreting-quartiles-on-box-plots/", "slug": "interpreting-quartiles-on-box-plots", "kind": "Exercise", "name": "interpreting-quartiles-on-box-plots", "seconds_per_fast_problem": 4.0, "prerequisites": ["analyzing-data-with-box-plots"], "exercise_id": "interpreting-quartiles-on-box-plots"}, "donatello-s-david-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/donatello-s-david-quiz/", "id": "donatello-s-david-quiz", "display_name": "Donatello, David (quiz)", "title": "Donatello, David (quiz)", "all_assessment_items": ["{\"sha\": \"422898173f5ce94bd9d26d4b3bfdf5c47e74b492\", \"live\": true, \"id\": \"x0bbd1cc34899ee51\"}", "{\"sha\": \"6f35a374e97b6597d69fb934982381eb85506a18\", \"live\": true, \"id\": \"x1b1970e1a1402e86\"}", "{\"sha\": \"8d312483358f8550a0417b624c7f895c6e265913\", \"live\": true, \"id\": \"xc7ab36dabd4792f8\"}", "{\"sha\": \"c67e3258be7ef31001b65eb70df39ed1e96092bb\", \"live\": true, \"id\": \"x7473ead737b197e1\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "donatello-s-david-quiz", "kind": "Exercise", "name": "donatello-s-david-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "donatello-s-david-quiz"}, "analysis-of-image-production-by-the-human-eye": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/analysis-of-image-production-by-the-human-eye/", "id": "analysis-of-image-production-by-the-human-eye", "display_name": "Analysis of Image Production by the Human Eye", "title": "Analysis of Image Production by the Human Eye", "all_assessment_items": ["{\"sha\": \"7661a90d1e9c557a1a2241b6f8d399c335a704c3\", \"live\": true, \"id\": \"x62d594f491bd41e1\"}", "{\"sha\": \"3dc497b6f9f1f875e5e403b7cb689bffba17fcb9\", \"live\": true, \"id\": \"x487739e391d90a3c\"}", "{\"sha\": \"f6179611b26bdfb859b4e0b038f5a503c314dfc0\", \"live\": true, \"id\": \"xc383db21c465ad24\"}", "{\"sha\": \"ac7bc406ddcb9f18f2807484643f41ed2ce1fd8b\", \"live\": true, \"id\": \"x756de74eb1c40538\"}", "{\"sha\": \"5536953a127259f16465a7ba2ac7f3c191bd1c1d\", \"live\": true, \"id\": \"xb739d1ab806519c3\"}"], "description": "Analysis of Image Production by the Human Eye", "basepoints": 10.0, "slug": "analysis-of-image-production-by-the-human-eye", "kind": "Exercise", "name": "analysis-of-image-production-by-the-human-eye", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "analysis-of-image-production-by-the-human-eye"}, "scientific_notation_intuition": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-scientific-notation/scientific_notation_intuition/", "id": "scientific_notation_intuition", "display_name": "Scientific notation intuition", "title": "Scientific notation intuition", "description": "Practice moving the decimal point to express a number in scientific notation.", "basepoints": 12.0, "slug": "scientific_notation_intuition", "kind": "Exercise", "name": "scientific_notation_intuition", "seconds_per_fast_problem": 5.0, "prerequisites": ["exponents_2"], "exercise_id": "scientific_notation_intuition"}, "sat-math-level-3-part-2": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-math-level-3-part-2/", "id": "sat-math-level-3-part-2", "display_name": "SAT math: Level 3 - Quiz 2", "title": "SAT math: Level 3 - Quiz 2", "all_assessment_items": ["{\"sha\": \"47627f0755d2c802870b59a8976197519ef94ff4\", \"live\": true, \"id\": \"x47df99a49993925a\"}", "{\"sha\": \"f37c2e81a639f89cf9df9d5b65481d5d88cc4d42\", \"live\": true, \"id\": \"xf3952095a83e683b\"}", "{\"sha\": \"9824bf24396062027bdb5d7e93c3bab886efeff4\", \"live\": true, \"id\": \"x18cf13cf87a3b00b\"}", "{\"sha\": \"94bba57aa5f191dad49d5c16271b3496b6bd8db3\", \"live\": true, \"id\": \"x3f44ae32b3d45281\"}", "{\"sha\": \"4882392e6512fc72c4383441de7561a6b10ebbca\", \"live\": true, \"id\": \"x4606f1fcd6fb6f88\"}", "{\"sha\": \"07b5a610fb041b8c7e16c93610c2f355a1c78268\", \"live\": true, \"id\": \"xbc1a18740ef456ab\"}", "{\"sha\": \"0d8c1b465e2b1b20848ed32c11c16d0743569d72\", \"live\": true, \"id\": \"xb60e92fec99507eb\"}", "{\"sha\": \"7c7d72c71a84d2add0550d66418ae5522417a9a3\", \"live\": true, \"id\": \"x0e1a8d010eb8a225\"}", "{\"sha\": \"b355b42e3b4e7ae42f498d9581c936e72e8733e2\", \"live\": true, \"id\": \"x61e16e817046cfc8\"}", "{\"sha\": \"08ee58851b46099053b1ac96c664064e376da726\", \"live\": true, \"id\": \"x59c86ccc2af906a9\"}", "{\"sha\": \"252d8e28fe36da30d4b760a566e055e512f19481\", \"live\": true, \"id\": \"x0ffbc960a79dca14\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-3-part-2", "kind": "Exercise", "name": "sat-math-level-3-part-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-3-part-2"}, "sat-math-level-3-part-3": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-math-level-3-part-3/", "id": "sat-math-level-3-part-3", "display_name": "SAT Math: Level 3 - Quiz 3", "title": "SAT Math: Level 3 - Quiz 3", "all_assessment_items": ["{\"sha\": \"d11a71e4ad03cdf9927108f1d8d9125338f201ab\", \"live\": true, \"id\": \"xc72a136967872019\"}", "{\"sha\": \"a9928ebead747934d00374d8fa3706c615b2b28f\", \"live\": true, \"id\": \"xa598280d0075ea52\"}", "{\"sha\": \"538df533acb4703b7a6ae35ebb074ec0f5f8f129\", \"live\": true, \"id\": \"x4a023d8a65074272\"}", "{\"sha\": \"4c3f910fd8a20a1eb2b4e8504c05bf3c5ae33e8f\", \"live\": true, \"id\": \"xcbfba40a0ef93808\"}", "{\"sha\": \"71cf8b0ff920bc2d3fad7799f2d0320faa024530\", \"live\": true, \"id\": \"xffa0ec64d4e2ed04\"}", "{\"sha\": \"056d8d6f58f22670c04f5ef3b4c0cbce4320313e\", \"live\": true, \"id\": \"xfedbd1b0f80a6bee\"}", "{\"sha\": \"2a07d4c2abec016841d43418ea5f6a05f76073e3\", \"live\": true, \"id\": \"x4415694810b5b1c6\"}", "{\"sha\": \"8c014e2ec749782e768057cd6250b9c8c21739b2\", \"live\": true, \"id\": \"xa35f92869851eb93\"}", "{\"sha\": \"565177acf81949c3cbd9db0f6f5b2c71c3e07822\", \"live\": true, \"id\": \"x4f58e2c376c32077\"}", "{\"sha\": \"11d00b2d8b19b4fee3ed51cf5eda4caefc7f9d21\", \"live\": true, \"id\": \"x08e4e6bb7ace3628\"}", "{\"sha\": \"7e91549d60dc6a048f9d4a55bbb3297308439a16\", \"live\": true, \"id\": \"x5fb3efafc81f6e98\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-3-part-3", "kind": "Exercise", "name": "sat-math-level-3-part-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-3-part-3"}, "sat-math-level-3-part-4": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-math-level-3-part-4/", "id": "sat-math-level-3-part-4", "display_name": "SAT Math: Level 3 - Quiz 4", "title": "SAT Math: Level 3 - Quiz 4", "all_assessment_items": ["{\"sha\": \"9f376b78812761c40326e1f0f74b4d57b36762f4\", \"live\": true, \"id\": \"xdb2864824e6a2853\"}", "{\"sha\": \"025fdd2c267694d5a10aefda305182866de8803a\", \"live\": true, \"id\": \"xb927a1d3813f1f1e\"}", "{\"sha\": \"e5e8693e5a1200b294973fd9f74e97a947acf54f\", \"live\": true, \"id\": \"x37c5bbdf3865351d\"}", "{\"sha\": \"6a43c9157ab8a54db6a1ad9086e0f15244fc493a\", \"live\": true, \"id\": \"x7d2d26418ec618b3\"}", "{\"sha\": \"b6dec4f38f0566fb41a48e3eecd75c3123c561a0\", \"live\": true, \"id\": \"x8c114e80669a5ad3\"}", "{\"sha\": \"f312cd6af1d81761d715fb0080185c7bfb126adb\", \"live\": true, \"id\": \"x0a6eb0f33d47cac2\"}", "{\"sha\": \"7ec661a0cfca981770423fa14be5483f6b707842\", \"live\": true, \"id\": \"x096a4a9fc70169e7\"}", "{\"sha\": \"5228b833a3248ad7c93f43cc99884ee111ed020a\", \"live\": true, \"id\": \"xa73ca7f804ac4dea\"}", "{\"sha\": \"152c9201047cbb883fe4c55231633bb964d1f3ac\", \"live\": true, \"id\": \"x883b3b5a92a90bc7\"}", "{\"sha\": \"c3339f7f7f166eeb4035b8a78711eac15f0b9b33\", \"live\": true, \"id\": \"xcbe7132f578786f4\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-3-part-4", "kind": "Exercise", "name": "sat-math-level-3-part-4", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-3-part-4"}, "special-derivatives-quiz": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/special-derivatives-quiz/", "id": "special-derivatives-quiz", "display_name": "Special derivatives quiz", "title": "Special derivatives quiz", "all_assessment_items": ["{\"sha\": \"307de994cf2f52626172ce3bebab5ecfb8010578\", \"live\": true, \"id\": \"xc22ad3fb88ecbbb5\"}", "{\"sha\": \"d116f42c97b6db1b7981ec87e7e5095016baa7e1\", \"live\": true, \"id\": \"x1a9de6f2cf9fa569\"}", "{\"sha\": \"76e908e1f9700000ebf1fee16882b0f557b75f3c\", \"live\": true, \"id\": \"x35dbefe7b20641d1\"}", "{\"sha\": \"82f560e4215d5427ab1ddc90d053d54b8b53291d\", \"live\": true, \"id\": \"x239b73fc75048073\"}", "{\"sha\": \"3c23cbae8c7fa1e4fac899d5dfd366850060d07a\", \"live\": true, \"id\": \"x34c5ec9c41e16585\"}"], "description": "See if you remember the five derivatives from the previous video.", "basepoints": 10.0, "slug": "special-derivatives-quiz", "kind": "Exercise", "name": "special-derivatives-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "special-derivatives-quiz"}, "simplifying_expressions_with_exponents": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/simplifying_expressions_with_exponents/", "id": "simplifying_expressions_with_exponents", "display_name": "Simplifying expressions with exponents", "title": "Simplifying expressions with exponents", "description": "Simplify expressions using exponent rules", "basepoints": 23.0, "slug": "simplifying_expressions_with_exponents", "kind": "Exercise", "name": "simplifying_expressions_with_exponents", "seconds_per_fast_problem": 26.0, "prerequisites": ["simplifying_rational_expressions_1"], "exercise_id": "simplifying_expressions_with_exponents"}, "solving-basic-multiplication-and-division-equations": {"uses_assessment_items": true, "id": "solving-basic-multiplication-and-division-equations", "display_name": "Solving basic multiplication and division equations", "title": "Solving basic multiplication and division equations", "all_assessment_items": ["{\"sha\": \"cf1f54616900b6cf3d6ce84abfa74261a451d636\", \"live\": true, \"id\": \"x8b73b7b95fc9a57f\"}", "{\"sha\": \"236d3852432f616747e109099614eda886085067\", \"live\": true, \"id\": \"x694e1b167441a325\"}", "{\"sha\": \"97d70b46cd13daee4b2be32b008715b90efe2466\", \"live\": true, \"id\": \"x26f7fbc1957907dd\"}", "{\"sha\": \"2a5c2a18ce99133ff1f149aee0bb9f13d72fc374\", \"live\": true, \"id\": \"xf30a7cfc2ef8a93c\"}", "{\"sha\": \"8031997b3333b423d8e31c726c5ce6ce00c81aed\", \"live\": true, \"id\": \"xe67a7a903f74fc85\"}", "{\"sha\": \"b87e71529b7c7db45a8bff7857a54a3982aac0c3\", \"live\": true, \"id\": \"x4064eefdcb3873fa\"}", "{\"sha\": \"14cfef42b07364ff79749ad90a56cf2f326194a6\", \"live\": true, \"id\": \"x996009edb65a386a\"}", "{\"sha\": \"7eef5faa407e95b7d4b3626167885cda1111d8f9\", \"live\": true, \"id\": \"x417913e550f2a1db\"}", "{\"sha\": \"bd4c86aa66e33edaa85ca37ec3420a02acc3b791\", \"live\": true, \"id\": \"x7231c4fd6a680d1b\"}", "{\"sha\": \"d34ff3a1204103449a9a9a82b5cc96947338133a\", \"live\": true, \"id\": \"x870429d3a1117fb2\"}", "{\"sha\": \"44cebc28e67f587fce99cae92336f9f3df971ffa\", \"live\": true, \"id\": \"x978c5038077b14f8\"}", "{\"sha\": \"5b9917344ea906a4190c9ddcfa6f4b3eb7064910\", \"live\": true, \"id\": \"xdaf2b5e3949bd08b\"}", "{\"sha\": \"75ecfb7c51951333c35c4e76ba0a3dea55a6cc22\", \"live\": true, \"id\": \"x46fce021344706cf\"}", "{\"sha\": \"0f54258a43eda1a47a1e1e79de09c82b44e8346e\", \"live\": true, \"id\": \"x9ac631f94f8a0775\"}", "{\"sha\": \"744b55ed99c482c9b8764f05e3877b8497eeb91f\", \"live\": true, \"id\": \"x82109963c987da39\"}", "{\"sha\": \"42632e92d4290805cfecd4c24f0f00325756b9ae\", \"live\": true, \"id\": \"x5e2f4655409f93c0\"}", "{\"sha\": \"cb501344244213dd2e71997d864660ad08e735aa\", \"live\": true, \"id\": \"x44315394d21e483c\"}", "{\"sha\": \"eae36adfbcfc2e23bcf9382f9908780baf5b551f\", \"live\": true, \"id\": \"x8d0795fc80494ac9\"}", "{\"sha\": \"f0c19229a8d1ed7ec04831fd21cacae6adfb7ad4\", \"live\": true, \"id\": \"xe4678aa85e9a02a1\"}", "{\"sha\": \"6025dc3c888e8cbe7ad8235bfb4aa5d3cc0bebb8\", \"live\": true, \"id\": \"x4b3fc45c2fa14914\"}"], "description": "Find the missing part in multiplication and division equations.", "basepoints": 10.0, "path": "solving-basic-multiplication-and-division-equations/", "slug": "solving-basic-multiplication-and-division-equations", "kind": "Exercise", "name": "solving-basic-multiplication-and-division-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_0.5", "division_1"], "exercise_id": "solving-basic-multiplication-and-division-equations"}, "recog-func-2": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/recog-func-2/", "id": "recog-func-2", "display_name": "Recognizing functions from graphs", "title": "Recognizing functions from graphs", "all_assessment_items": ["{\"sha\": \"854fe2c3f455136eaa8797fe0e4830361fe7a298\", \"live\": true, \"id\": \"xd4bb9c5d\", \"perseus_api_major_version\": null}", "{\"sha\": \"6540ebb204fe807facd38346b502ffb50544f001\", \"live\": true, \"id\": \"x8e37b453\", \"perseus_api_major_version\": null}", "{\"sha\": \"3875de1630e50bb8914e048f2a08743d27120db5\", \"live\": true, \"id\": \"x7e30065c\", \"perseus_api_major_version\": null}", "{\"sha\": \"09eca5a98fcf2af1185a7326b316aedacc0aa82b\", \"live\": true, \"id\": \"x0f7d2109\", \"perseus_api_major_version\": null}", "{\"sha\": \"af1b5136a8298fac541cddf918dbdc2acb1b1e12\", \"live\": true, \"id\": \"x695f55d8\", \"perseus_api_major_version\": null}", "{\"sha\": \"2cf32ec21d412abf2a753821e84073621ba8c5a8\", \"live\": true, \"id\": \"xd39f914b\", \"perseus_api_major_version\": null}", "{\"sha\": \"f734670f6fbdf907135c4fe718c6df99ccec2884\", \"live\": true, \"id\": \"xe3bb7807\", \"perseus_api_major_version\": null}", "{\"sha\": \"52015c34f95f23c270b932af75a1b6c1983b2046\", \"live\": true, \"id\": \"xb2e3041d\", \"perseus_api_major_version\": null}", "{\"sha\": \"8f257683c2e4f3b7e8d790a091a5a6e536b0d3df\", \"live\": true, \"id\": \"xda3fb364\", \"perseus_api_major_version\": null}", "{\"sha\": \"0e2e7690966bec0ab8c93e91085a6cc0881a2132\", \"live\": true, \"id\": \"x9bfe2de6\", \"perseus_api_major_version\": null}", "{\"sha\": \"cb450557b568cf04d852c44cccb676a776bf7840\", \"live\": true, \"id\": \"x85f7f485\", \"perseus_api_major_version\": null}", "{\"sha\": \"328d7449245f3ec0d2d9b67ac01796a9dc1f9d3e\", \"live\": true, \"id\": \"x1be05f9c\", \"perseus_api_major_version\": null}", "{\"sha\": \"ec70c7af0647dbc086354fd562e03e0d129be5d4\", \"live\": true, \"id\": \"x326f62664305d43a\", \"perseus_api_major_version\": null}", "{\"sha\": \"58e8a814dc93f5512acbe622fc00c7b07c8c20c4\", \"live\": true, \"id\": \"xb798abc9\", \"perseus_api_major_version\": null}", "{\"sha\": \"d3c032d6c10797e74b30e03b99570c7feee2912c\", \"live\": true, \"id\": \"x4760614c\", \"perseus_api_major_version\": null}", "{\"sha\": \"547232773ebec5252da3e038ae78569f5ed96704\", \"live\": true, \"id\": \"xa4469305\", \"perseus_api_major_version\": null}", "{\"sha\": \"0ede2ce6016f3b3a7202cc4004b68a9e1cafec8f\", \"live\": true, \"id\": \"x6f144ee5\", \"perseus_api_major_version\": null}", "{\"sha\": \"94e1201cb43707a7723faeacfcd16354bab63871\", \"live\": true, \"id\": \"x8982d9c5\", \"perseus_api_major_version\": null}", "{\"sha\": \"9e8b850dff23326ee1b79367218818b13daf9688\", \"live\": true, \"id\": \"xe826e946\", \"perseus_api_major_version\": null}", "{\"sha\": \"e29c1cae959c80dba36ce6f7a2bed625bc085f8d\", \"live\": true, \"id\": \"x78e757c7\", \"perseus_api_major_version\": null}", "{\"sha\": \"8124a370f816edce4d132f12b2a22909b3183348\", \"live\": true, \"id\": \"xdf5fc29b\", \"perseus_api_major_version\": null}", "{\"sha\": \"b3fc509624414c0dacce6c9a21a0973f1e8addaf\", \"live\": true, \"id\": \"x0f59e010\", \"perseus_api_major_version\": null}", "{\"sha\": \"0a96293e9b55a70f93af3cd45ae2d72fa24f1663\", \"live\": true, \"id\": \"x049d5aae\", \"perseus_api_major_version\": null}", "{\"sha\": \"1fd2406c89d87b11df4325daca6f6f4db66dc953\", \"live\": true, \"id\": \"x78ec43e3\", \"perseus_api_major_version\": null}", "{\"sha\": \"f00ccc332754b098d81f55e38403b9c94a9d78ea\", \"live\": true, \"id\": \"x766890ab\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed3b28ca45f6b35e1383a44d3109a190468de0dd\", \"live\": true, \"id\": \"x0909b578\", \"perseus_api_major_version\": null}", "{\"sha\": \"235f4def240eefc84198df228b951b001d4ad58d\", \"live\": true, \"id\": \"x11fbd2cb\", \"perseus_api_major_version\": null}", "{\"sha\": \"61a0128e1b5da232fa1bd01f8185fb08d53e24f6\", \"live\": true, \"id\": \"x47373e92\", \"perseus_api_major_version\": null}", "{\"sha\": \"51ecfda36b0f30b64ba28428aca034d55d562b69\", \"live\": true, \"id\": \"x290c9bf9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"431dfe1ba998e4b13db339e84a37dd47f025633d\", \"live\": true, \"id\": \"x52013495\", \"perseus_api_major_version\": 3}"], "description": "", "basepoints": 14.0, "slug": "recog-func-2", "kind": "Exercise", "name": "recog-func-2", "seconds_per_fast_problem": 7.0, "prerequisites": ["domain_and_range_0.5"], "exercise_id": "recog-func-2"}, "caravaggio--calling-of-st--matthew-quiz": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/caravaggio-calling-of-st-matthew-quiz/", "id": "caravaggio--calling-of-st--matthew-quiz", "display_name": "Caravaggio, Calling of St. Matthew (quiz)", "title": "Caravaggio, Calling of St. Matthew (quiz)", "all_assessment_items": ["{\"sha\": \"b6e6dbd5ed7d74f50e6b50ea0c391ae454dd6579\", \"live\": true, \"id\": \"xf3610b64a8afbf7c\", \"perseus_api_major_version\": null}", "{\"sha\": \"2f2681af955b162a824907036bbd5e7add9fb90f\", \"live\": true, \"id\": \"xa383f4811493b2e8\", \"perseus_api_major_version\": null}", "{\"sha\": \"30e2a29b788236e1dd718290e7e2596397477d20\", \"live\": true, \"id\": \"x1e2bff382c7dcd0e\", \"perseus_api_major_version\": null}", "{\"sha\": \"726ed9edb61bc7e7d3487578dca1cad4b95ffc7b\", \"live\": true, \"id\": \"xf7aac87ab2c6ea44\", \"perseus_api_major_version\": null}", "{\"sha\": \"9b8abb28e4f0b84ffd383b2c893af56aaa59e07d\", \"live\": true, \"id\": \"xebd7b1c946fe585f\", \"perseus_api_major_version\": null}", "{\"sha\": \"cb39a489d83b1035b9faaa88c0eda7c48acc85bc\", \"live\": true, \"id\": \"xbaca962d218994a4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"910f472777dbb97abff0d0ef609b9638c3cb62a3\", \"live\": true, \"id\": \"xf507eed35a9bf5e4\", \"perseus_api_major_version\": null}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "caravaggio-calling-of-st-matthew-quiz", "kind": "Exercise", "name": "caravaggio--calling-of-st--matthew-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "caravaggio--calling-of-st--matthew-quiz"}, "absolute_value": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/alg-basics-absolute-value/absolute_value/", "id": "absolute_value", "display_name": "Finding absolute values", "title": "Finding absolute values", "description": "Practice finding the absolute value of a number.", "basepoints": 10.0, "slug": "absolute_value", "kind": "Exercise", "name": "absolute_value", "seconds_per_fast_problem": 4.0, "prerequisites": ["number-opposites"], "exercise_id": "absolute_value"}, "using-ultrasounds-to-measure-blood-flow-velocity-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/using-ultrasounds-to-measure-blood-flow-velocity-1/", "id": "using-ultrasounds-to-measure-blood-flow-velocity-1", "display_name": "Using Ultrasounds to Measure Blood Flow Velocity", "title": "Using Ultrasounds to Measure Blood Flow Velocity", "all_assessment_items": ["{\"sha\": \"46707276006152d5e475e83eafdefa49108ffbdd\", \"live\": true, \"id\": \"xb18e950ec641d8fd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"fb99817254655613d89dba3f4dbfa1361a7fd739\", \"live\": true, \"id\": \"x73dbe57522956d6a\", \"perseus_api_major_version\": null}", "{\"sha\": \"8d3b7371e0f2855f9a894da66e03f925a39d5c76\", \"live\": true, \"id\": \"x2bd039b7bb9b5440\", \"perseus_api_major_version\": null}", "{\"sha\": \"4669d32bb9eac2cc0c5ee3f34181aeacc564c8ba\", \"live\": true, \"id\": \"x44b65160a467453d\", \"perseus_api_major_version\": null}", "{\"sha\": \"b99d117bd6796c99c107064fd23255119d30d5b9\", \"live\": true, \"id\": \"x85324b4bffe944e2\", \"perseus_api_major_version\": null}"], "description": "Questions related to ultrasound and blood flow velocity", "basepoints": 10.0, "slug": "using-ultrasounds-to-measure-blood-flow-velocity-1", "kind": "Exercise", "name": "using-ultrasounds-to-measure-blood-flow-velocity-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "using-ultrasounds-to-measure-blood-flow-velocity-1"}, "applications-of-derivatives--tangent-and-normal-lines": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/normal-tangent-line-eq/applications-of-derivatives-tangent-and-normal-lines/", "id": "applications-of-derivatives--tangent-and-normal-lines", "display_name": "Applications of derivatives: Tangent and normal lines", "title": "Applications of derivatives: Tangent and normal lines", "all_assessment_items": ["{\"sha\": \"545eb625abae6d333b518d3c076ea792da16bcf1\", \"live\": true, \"id\": \"xcb1ad86852f7f40c\", \"perseus_api_major_version\": null}", "{\"sha\": \"9058428f4db4d9e7c59c7c7b3864780f9e70ad29\", \"live\": true, \"id\": \"xc6811e086fe43ed8\", \"perseus_api_major_version\": null}", "{\"sha\": \"ba8fdf27ad07d445c782c5968009bb9eb54f2a6f\", \"live\": true, \"id\": \"x0b954b611272382a\", \"perseus_api_major_version\": null}", "{\"sha\": \"a00be21ee356422472ff871a7b570fb673a80df6\", \"live\": true, \"id\": \"x16f6559d52596bda\", \"perseus_api_major_version\": null}", "{\"sha\": \"f6dcf2ab25e2b67dca707758fff6dbc75b1df133\", \"live\": true, \"id\": \"x5df41584aedc601b\", \"perseus_api_major_version\": null}", "{\"sha\": \"3277322724947b615e21a1a59bcbcdfe67390034\", \"live\": true, \"id\": \"xcb5e8b5f2a3e79a4\", \"perseus_api_major_version\": null}", "{\"sha\": \"c8eb1695af9660d06a606527e99c6b8f4dc0a8f5\", \"live\": true, \"id\": \"xaa5c90690385cb0f\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a6712ba750878ddb2a8982420370a083d373b12\", \"live\": true, \"id\": \"xdc165684f7e30423\", \"perseus_api_major_version\": null}", "{\"sha\": \"7188b950832860420c7aef66643caaaa238da3bb\", \"live\": true, \"id\": \"xcdf70d49e5223c59\", \"perseus_api_major_version\": null}", "{\"sha\": \"2997c80e3d1e9982830fdeb9e40c6cadb74aea4a\", \"live\": true, \"id\": \"xc6b10113eb2c763d\", \"perseus_api_major_version\": null}", "{\"sha\": \"b8e2aee13a44b3d8a529f71349ba71af45cf9e8d\", \"live\": true, \"id\": \"x14c0e868730c5da8\", \"perseus_api_major_version\": null}", "{\"sha\": \"77e721d85420cfeef6b27e9e7ba79b6ab14e217e\", \"live\": true, \"id\": \"x9977ec3b30479aa3\", \"perseus_api_major_version\": null}", "{\"sha\": \"77c046af26d2825a95919c0cf14148ae277c3b38\", \"live\": true, \"id\": \"xcc2fcbd00c135d0c\", \"perseus_api_major_version\": null}", "{\"sha\": \"f787c2697026aa99e89b8014a0a16dc7b01cf004\", \"live\": true, \"id\": \"x5c78f33543df3d73\", \"perseus_api_major_version\": null}", "{\"sha\": \"82f0de0822478ea354fa62503b7b67b95c24615b\", \"live\": true, \"id\": \"xf9227bf5f6e2fc00\", \"perseus_api_major_version\": null}", "{\"sha\": \"54cc4cba8db764984e0b37bf41f4e5cf8c2b18d5\", \"live\": true, \"id\": \"x5f173c3b508e4d44\", \"perseus_api_major_version\": null}", "{\"sha\": \"25c9bc6b6544c6ceaef8f15b1909e98da197c705\", \"live\": true, \"id\": \"xe929b25d44b25253\", \"perseus_api_major_version\": null}", "{\"sha\": \"0a8351870d439149b384eff9aaf20babc16b3aae\", \"live\": true, \"id\": \"x33dad0ff011fdc5a\", \"perseus_api_major_version\": null}", "{\"sha\": \"d968f0668de50bde14c03edff3218fc696c308d1\", \"live\": true, \"id\": \"xfe52bcd4e8537385\", \"perseus_api_major_version\": null}", "{\"sha\": \"63660bec3c1434d3c3ea2d87b71fc440c552537c\", \"live\": true, \"id\": \"x03d4378f17947b89\", \"perseus_api_major_version\": null}", "{\"sha\": \"41ad456dc5456bbebfb81cd63dc31bc05483d41a\", \"live\": true, \"id\": \"x9b26d8f47a30ea90\", \"perseus_api_major_version\": null}", "{\"sha\": \"b4b889c2428573317393628ff805a9d42624d5c9\", \"live\": true, \"id\": \"x96bb4de9ae970030\", \"perseus_api_major_version\": null}", "{\"sha\": \"6d8ba0aed9f7a2566f97f4068cc72ddba31a75c4\", \"live\": true, \"id\": \"xfad55ab5f8cd091f\", \"perseus_api_major_version\": null}", "{\"sha\": \"1c9db84086756dff496517d71efa561188c32c62\", \"live\": true, \"id\": \"x0356d6846623e30f\", \"perseus_api_major_version\": null}", "{\"sha\": \"38b22174e4f21447fce6928aaa73629c78a5f197\", \"live\": true, \"id\": \"x74f30cdfccaf3e14\", \"perseus_api_major_version\": 0}", "{\"sha\": \"52a7162d474a431e7bf63470adb8012ea49530a2\", \"live\": true, \"id\": \"x3b5bcc225f939733\", \"perseus_api_major_version\": null}", "{\"sha\": \"7d431aa5479b5f3efec08e65641c8dfb035cdc8b\", \"live\": true, \"id\": \"x25eb0ed5130052d9\", \"perseus_api_major_version\": null}", "{\"sha\": \"9c4e511200f094e110413c697fb3068212957f0f\", \"live\": true, \"id\": \"xb2c2a1c56afc9780\", \"perseus_api_major_version\": null}", "{\"sha\": \"dc18bc2b4e10fd1d7afeed5e473bfce8b4e511f9\", \"live\": true, \"id\": \"x2aa199c1b1313d67\", \"perseus_api_major_version\": null}", "{\"sha\": \"d8d209edc89ffa556e3f4c5c623ce4585c9379ba\", \"live\": true, \"id\": \"xfeeab0c0f7b82de6\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 29.0, "slug": "applications-of-derivatives-tangent-and-normal-lines", "kind": "Exercise", "name": "applications-of-derivatives--tangent-and-normal-lines", "seconds_per_fast_problem": 60.0, "prerequisites": ["local-linearization"], "exercise_id": "applications-of-derivatives--tangent-and-normal-lines"}, "combining-the-product-rule-and-chain-rule": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/combining-the-product-rule-and-chain-rule/", "id": "combining-the-product-rule-and-chain-rule", "display_name": "Combining the product and chain rules", "title": "Combining the product and chain rules", "all_assessment_items": ["{\"sha\": \"c8f5c6f324c4f6127249bec68cbbe7eb6be42921\", \"live\": true, \"id\": \"x5277f1394396ca0d\", \"perseus_api_major_version\": null}", "{\"sha\": \"31378e36c3f7ac77754cbc41a2836415fc0b5a39\", \"live\": true, \"id\": \"xce1ffe11c63ee8b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"e6bbf8ac942aebb702fa40f8d5af526d7f391f6a\", \"live\": true, \"id\": \"x0e5c687fc9726662\", \"perseus_api_major_version\": null}", "{\"sha\": \"9bd187b3d7c4ebb37e105f08ceff0067e2c3ff23\", \"live\": true, \"id\": \"x64850614e4f6904d\", \"perseus_api_major_version\": null}", "{\"sha\": \"e38feb9f2d9041f2ed78169be93953518daa7000\", \"live\": true, \"id\": \"xb44835c75565ca26\", \"perseus_api_major_version\": null}", "{\"sha\": \"84cdc45e6a31e4301e52724d8f737268252ae161\", \"live\": true, \"id\": \"xbfc97dcba34e8ca0\", \"perseus_api_major_version\": null}", "{\"sha\": \"45eac4b1ae10289fffa166259b061e4d2bea920a\", \"live\": true, \"id\": \"x43c4d03fb17c01fd\", \"perseus_api_major_version\": null}", "{\"sha\": \"3c23188cb54559f01f42a2e29326984883fcdc31\", \"live\": true, \"id\": \"x99a1f507890d2aae\", \"perseus_api_major_version\": 2}", "{\"sha\": \"c4562cf785ec90d46415b61511acf6e36d221986\", \"live\": true, \"id\": \"x0150c265d0c27ffc\", \"perseus_api_major_version\": null}", "{\"sha\": \"886e54696445f0f7409a9b313a64137ad0246d3c\", \"live\": true, \"id\": \"xb8a189622ca9b345\", \"perseus_api_major_version\": 2}", "{\"sha\": \"4c0f3eb3029e3c7898c17ab63b0fc31df46eb3a0\", \"live\": true, \"id\": \"x34be2cb3828f3e22\", \"perseus_api_major_version\": 2}", "{\"sha\": \"8d0c8be89e75aca4b44c3abaabb7131a68432ee7\", \"live\": true, \"id\": \"xb074fab2941af4c1\", \"perseus_api_major_version\": null}", "{\"sha\": \"1685627c82908b3665b3422b65f3923d710f8d38\", \"live\": true, \"id\": \"xc084049c5acbd05f\", \"perseus_api_major_version\": null}", "{\"sha\": \"8a8a8889122965b91c28de29d3e4bbe65c6c3db7\", \"live\": true, \"id\": \"x77df706333f386fe\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8d1926101c4d9929eae3ae56403b3b7805560a8e\", \"live\": true, \"id\": \"xe91e877d0feed4ec\", \"perseus_api_major_version\": null}", "{\"sha\": \"1b74835015cd3d6d355acf915499d3091ec67b84\", \"live\": true, \"id\": \"x75ecb47689f10fc6\", \"perseus_api_major_version\": null}", "{\"sha\": \"89c0cdafd3c16a995a25e7240197730341c44f89\", \"live\": true, \"id\": \"xaf7d61653a69e46f\", \"perseus_api_major_version\": null}", "{\"sha\": \"51026a9ab124cb6d618f6af92f34fac201e542f0\", \"live\": true, \"id\": \"x807a06e95bf0e243\", \"perseus_api_major_version\": null}", "{\"sha\": \"b848ef9bfb8158143032433bc3ef40e2ae61b692\", \"live\": true, \"id\": \"x5b622cae00e25f3e\", \"perseus_api_major_version\": null}", "{\"sha\": \"aa342a38f160a5b08115a1e0316cb05ad41060de\", \"live\": true, \"id\": \"xaae8f5b1a666d08e\", \"perseus_api_major_version\": null}", "{\"sha\": \"a43e73441be2762bd313df257c0a2e19e831940f\", \"live\": true, \"id\": \"x189b056587a6922d\", \"perseus_api_major_version\": null}", "{\"sha\": \"72cba9884f4b9312d948d232fdce785b8fccdda6\", \"live\": true, \"id\": \"xff4a135ddf0615b2\", \"perseus_api_major_version\": null}", "{\"sha\": \"f3ff2f654764df94578357db2e9ef22458873963\", \"live\": true, \"id\": \"xdce516c36942bbaa\", \"perseus_api_major_version\": null}", "{\"sha\": \"5e06f9729483267b613ebbe611343b5cee87cb78\", \"live\": true, \"id\": \"xab75af8434cac50d\", \"perseus_api_major_version\": null}", "{\"sha\": \"9f703c056238f86d323f4dbb8bde4e3df3fbcb75\", \"live\": true, \"id\": \"xfd00b95b2726bd3d\", \"perseus_api_major_version\": null}", "{\"sha\": \"ba1d26abe1848a8c758894f3014709bc813242a0\", \"live\": true, \"id\": \"x10bd9a8c7224b633\", \"perseus_api_major_version\": null}", "{\"sha\": \"a79ceadb37f9f2b9f69d13f9c212d2f93b0b9409\", \"live\": true, \"id\": \"xd88c3d7ffadee14e\", \"perseus_api_major_version\": null}", "{\"sha\": \"50926ea1cda0e084745a19bcc9e22371a7846fec\", \"live\": true, \"id\": \"x92d438fa75160ab0\", \"perseus_api_major_version\": null}", "{\"sha\": \"a573104f3600f47cf9b152b57cf40bd215da1643\", \"live\": true, \"id\": \"xb374f5c95e6d7d2c\", \"perseus_api_major_version\": null}"], "description": "If you know the product, quotient, and chain rules, try this exercise full of challenging derivatives.", "basepoints": 10.0, "slug": "combining-the-product-rule-and-chain-rule", "kind": "Exercise", "name": "combining-the-product-rule-and-chain-rule", "seconds_per_fast_problem": 4.0, "prerequisites": ["product_rule", "quotient_rule", "chain_rule_1"], "exercise_id": "combining-the-product-rule-and-chain-rule"}, "measuring-lengths-with-different-units": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-measuring-length/measuring-lengths-with-different-units/", "id": "measuring-lengths-with-different-units", "display_name": "Measuring lengths with different units", "title": "Measuring lengths with different units", "all_assessment_items": ["{\"sha\": \"b4d3e007b4877ef6e069e85f62a99d40592cb0d3\", \"live\": true, \"id\": \"x227355b627b0bafa\"}", "{\"sha\": \"ad5ad23a7fd0f3721a2a1189efa1cd3b52eb0708\", \"live\": true, \"id\": \"x60a9c85881e8cc66\"}", "{\"sha\": \"5c37c7c613c78b8683907ac0c5ae7650ad7b857f\", \"live\": true, \"id\": \"xf92d283dabcf7a2f\"}", "{\"sha\": \"0102824d4d51a11d81457daffbac461fa94e9ba7\", \"live\": true, \"id\": \"x1640569c88f0368d\"}", "{\"sha\": \"8f77943366fb7c04efd591719da72c8617dcfc61\", \"live\": true, \"id\": \"xe1667385e1fd0aea\"}", "{\"sha\": \"1e40d6dfa07a091ed60c30ff40cdfa19f42e2b8b\", \"live\": true, \"id\": \"x33b2efc84545b148\"}", "{\"sha\": \"03885a5b54d5ea972158ac1d2673300fe9a93efb\", \"live\": true, \"id\": \"x385f76dd409be8dc\"}", "{\"sha\": \"32ae5f864d973fc4205ba8a1b04404cac0cb876f\", \"live\": true, \"id\": \"x3935676b5a6b6559\"}", "{\"sha\": \"85200bef4731f2672720606790455b08695f56e7\", \"live\": true, \"id\": \"xa45f69d3135a24b7\"}", "{\"sha\": \"6589406d562b6b6023ddffc1f16676de42964040\", \"live\": true, \"id\": \"xd12fd093e453030d\"}", "{\"sha\": \"94680e7e10422ef98f11816afcaced6daf354daf\", \"live\": true, \"id\": \"x080c78fa9356062e\"}", "{\"sha\": \"27fa45334cb5626105c3c156f625bb2dc04ca66b\", \"live\": true, \"id\": \"xdee6be2eb2581b9c\"}", "{\"sha\": \"567f6db3836a45cd666b37b09695ead922ce9d40\", \"live\": true, \"id\": \"xf3c1db084e1691f9\"}", "{\"sha\": \"1202dd1ad4ec8835c6023dd2d43d8941cfdaad78\", \"live\": true, \"id\": \"x956f89538c13cb27\"}", "{\"sha\": \"5fd6bf00d95576756bbe75a6061e21e147b3c196\", \"live\": true, \"id\": \"xf2389898be844cf2\"}", "{\"sha\": \"04cfa4692dbdb36400263b5bc9d4898b4099eb5a\", \"live\": true, \"id\": \"x56f79ddea7e29b70\"}", "{\"sha\": \"b9681c874c6f05e1edf3c9328854e94ad62d66e5\", \"live\": true, \"id\": \"xecc5eb96c10a03f7\"}", "{\"sha\": \"aef4c1801477b1d2731b3d25c8cc35204dded59b\", \"live\": true, \"id\": \"x8841594e8fa8d9c7\"}", "{\"sha\": \"d458c1fde306bf30e4b8841436a21298aeff308a\", \"live\": true, \"id\": \"x854e345edc260e3c\"}", "{\"sha\": \"8eea25539c1f6f538da24266c8cb81429d427b1a\", \"live\": true, \"id\": \"x1200d20d79da7bc8\"}"], "description": "Measure the length of an object twice, using length units of different lengths for the two measurements.", "basepoints": 10.0, "slug": "measuring-lengths-with-different-units", "kind": "Exercise", "name": "measuring-lengths-with-different-units", "seconds_per_fast_problem": 4.0, "prerequisites": ["measuring-lengths-2"], "exercise_id": "measuring-lengths-with-different-units"}, "quiz--javascript-recap": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css-js/html-css-js-intro/quiz-javascript-recap/", "id": "quiz--javascript-recap", "display_name": "Quiz: JavaScript recap", "title": "Quiz: JavaScript recap", "all_assessment_items": ["{\"sha\": \"7a914c0fa26f752b99070fa31339bce31f48209d\", \"live\": true, \"id\": \"x9c3213b5b53cb2eb\", \"perseus_api_major_version\": null}", "{\"sha\": \"78ba91ac223797a3275e93073f87c9d72af8056b\", \"live\": true, \"id\": \"x66b34732a90e993b\", \"perseus_api_major_version\": null}", "{\"sha\": \"e8c4fbd5f5439914ccf0d43c532546bac2f81b85\", \"live\": true, \"id\": \"x9564ac0de4ba8997\", \"perseus_api_major_version\": null}", "{\"sha\": \"39d4e562e837f205604cf25dff61520be5091027\", \"live\": true, \"id\": \"x607fda9bb11f8c1f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d8b8c5908d6d81c3396096fa1b7d76702e75efc8\", \"live\": true, \"id\": \"x53e0dac23c14cbe6\", \"perseus_api_major_version\": null}", "{\"sha\": \"e2e654cc7dc8cc76e07b4f7e15a1e3a2e438786a\", \"live\": true, \"id\": \"x9ed77995fdf83d91\", \"perseus_api_major_version\": 0}", "{\"sha\": \"57d8e457afb8a1f01ddadc1cbdfff8371654f2ec\", \"live\": true, \"id\": \"x495e6fa1346f2e1f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4131f27f21702a08aeff9f10f88c65d1b6e79781\", \"live\": true, \"id\": \"x8230c3ad5e392239\", \"perseus_api_major_version\": null}", "{\"sha\": \"008b13cc1a69484a1623b59ffaac6475dbcd0684\", \"live\": true, \"id\": \"x90acdbb1f08bec88\", \"perseus_api_major_version\": null}"], "description": "Make sure you remember enough JavaScript before you keep going.", "basepoints": 10.0, "slug": "quiz-javascript-recap", "kind": "Exercise", "name": "quiz--javascript-recap", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--javascript-recap"}, "unit-circle-trigonometry": {"uses_assessment_items": true, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-unit-circle/unit-circle-trigonometry/", "id": "unit-circle-trigonometry", "display_name": "Unit circle trigonometry", "title": "Unit circle trigonometry", "all_assessment_items": ["{\"sha\": \"e9f03b574234d37838bc35cf3784329e63e23864\", \"live\": true, \"id\": \"xc2819b723ca7ab66\"}", "{\"sha\": \"6d8424cc2955eadde32e61ce4a54eaf7f1b15c58\", \"live\": true, \"id\": \"x454b0133671ea12e\"}", "{\"sha\": \"eacf1c0cd39f39e8a27f115b6ea83d06f94f20c3\", \"live\": true, \"id\": \"x2e37ad95f51b139c\"}", "{\"sha\": \"b7f4667d08e14c11e2de0223827fb4df99f0b7ae\", \"live\": true, \"id\": \"x62af4f3d3ac3255d\"}", "{\"sha\": \"9e66e7201c1934c577bd0545c455b1cda112a146\", \"live\": true, \"id\": \"xebe8e8fd6a91a0ff\"}", "{\"sha\": \"cb78e4710140c0952fa2c2c1296c8ac3d4523e93\", \"live\": true, \"id\": \"x3b72d5d4b4ceeb6c\"}", "{\"sha\": \"8b286449592be2e9a93bf67021e4052a66e2198e\", \"live\": true, \"id\": \"x06854107ca6ab2ae\"}", "{\"sha\": \"96e8383832d23d39bb0522a9fce5c3ed38a5ea30\", \"live\": true, \"id\": \"x8dac7ad0f90caaf2\"}", "{\"sha\": \"59d21d7f4aa5af9805dbb8fe3b9a0bc3d5d085c8\", \"live\": true, \"id\": \"xf100a4556c480713\"}", "{\"sha\": \"6218694dc90b6bfafed724b702eddec2779b37dc\", \"live\": true, \"id\": \"x72f47a245f0fe3b5\"}", "{\"sha\": \"135d661207569dc0fb42ff2dcc0fef9ae31140aa\", \"live\": true, \"id\": \"xd7aac5afacc9e481\"}", "{\"sha\": \"a20299f4a591f89c24735ea4d67878f9ce3d1b27\", \"live\": true, \"id\": \"xee7c492fbe9e84c2\"}", "{\"sha\": \"0f003ccdf09e66122d7d9ad7f4cc9b59abf27be7\", \"live\": true, \"id\": \"x6db98b05814d131c\"}", "{\"sha\": \"c8f324c70bb49528ff8a9d3d55eddfa953a292f8\", \"live\": true, \"id\": \"x7df185450bbc6058\"}", "{\"sha\": \"0bf76e69d951263ab610638f8600aa8b47898693\", \"live\": true, \"id\": \"xdd05fa5858cc3dc7\"}", "{\"sha\": \"4bb56d6508dae4515612dcbbede808d048371a53\", \"live\": true, \"id\": \"xf69afc6831fcc997\"}", "{\"sha\": \"28a0f4f7bc875ca192a515d9bcc3ae6b3e77a2dd\", \"live\": true, \"id\": \"x2b1be1e2c0663e07\"}", "{\"sha\": \"9c5cefcac0869d11dfee97c5a7a3dfb74d62451c\", \"live\": true, \"id\": \"xd4883e30ce68c1be\"}", "{\"sha\": \"e3e7b7625b235433b3192d1b9f8837a76d438b1e\", \"live\": true, \"id\": \"x25134c19c971974a\"}", "{\"sha\": \"e5c1a938f18c6694bd6875a75a65b4a76f63afb0\", \"live\": true, \"id\": \"xc0fc6472fc30cbc1\"}", "{\"sha\": \"f8cd4d0e7676b8688087aa76243d359f82514428\", \"live\": true, \"id\": \"x907af1418386d540\"}", "{\"sha\": \"450606c9c1f7a86bcc03b6323782f3a3ddc101ea\", \"live\": true, \"id\": \"x8f9b1927e0c0fe81\"}", "{\"sha\": \"889a67188e1acae3730cc336412f69d3d36e55eb\", \"live\": true, \"id\": \"xa01fac238c8c0de2\"}", "{\"sha\": \"83c412b32d1219ae43ff6c225aa68e4466f58f27\", \"live\": true, \"id\": \"x02389f74c94048c6\"}", "{\"sha\": \"7a84e9d8382c3acfe1889acd6a479fbba5ba49d6\", \"live\": true, \"id\": \"x86711f3abcf0c759\"}", "{\"sha\": \"a5c17301a522ce8d98aa8e4a8036b3007f75c788\", \"live\": true, \"id\": \"xc486ed1805373f00\"}", "{\"sha\": \"ba6d5fe4eb54d97da1f5e118c806b80bcd8e923e\", \"live\": true, \"id\": \"xd7ed89bac2934edb\"}", "{\"sha\": \"d45dd4b9ed6499e50cc09629f18572ee27678100\", \"live\": true, \"id\": \"x3503582b3b936955\"}", "{\"sha\": \"f56821850eb162fc722201b2b5120d75bc5e3984\", \"live\": true, \"id\": \"xf61469676ef6cc4d\"}", "{\"sha\": \"7776887fa46eb33cea71a73c54ee3e422a1d310a\", \"live\": true, \"id\": \"x35a2e7a2d2453610\"}", "{\"sha\": \"d46664b8e3375078566a1a08072828bf97d1ef01\", \"live\": true, \"id\": \"x72038d4498b9c433\"}", "{\"sha\": \"9569d699fee899060937f0fd1238781d0be64532\", \"live\": true, \"id\": \"x149201953cee7455\"}", "{\"sha\": \"827d17069b5f813bedc0a4bc994f17f76b13ab77\", \"live\": true, \"id\": \"x59780622b3c57518\"}", "{\"sha\": \"8a36c6a3c64ba143172c7385a6a32bec688a707f\", \"live\": true, \"id\": \"x4fc52c0d66369f7a\"}"], "description": "", "basepoints": 10.0, "slug": "unit-circle-trigonometry", "kind": "Exercise", "name": "unit-circle-trigonometry", "seconds_per_fast_problem": 4.0, "prerequisites": ["unit_circle", "cc-radians-and-arc-length"], "exercise_id": "unit-circle-trigonometry"}, "repeated-addition": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/repeated-addition/", "id": "repeated-addition", "display_name": "Repeated addition", "title": "Repeated addition", "all_assessment_items": ["{\"sha\": \"3acbdf4bb8c3a5e78cac4a67a08b782c6180b30d\", \"live\": true, \"id\": \"x4eb0decd9eeb1e15\"}", "{\"sha\": \"ab8b024e1c3db0b77dd580814acd602c6511067d\", \"live\": true, \"id\": \"x6af0b3840f5db344\"}", "{\"sha\": \"664e83f2c9e9e064f111a9fc366639b46bd8ff10\", \"live\": true, \"id\": \"xc38dd28a7cdf1d93\"}", "{\"sha\": \"3786ec86b935e94ee35bace7c0c1f5fa0ffd2ccc\", \"live\": true, \"id\": \"xc73e5ed7958b4ee3\"}", "{\"sha\": \"7cfc59c48fe1f7816f15edc3873b6d2b108d0d98\", \"live\": true, \"id\": \"x6ed9c76300e70535\"}", "{\"sha\": \"a011f7a02711b6e75b02ff253b3771537fa17f6e\", \"live\": true, \"id\": \"x5b1a9230a84afffa\"}", "{\"sha\": \"18cd8cfbeedd39a2be139d258528328959ae14db\", \"live\": true, \"id\": \"xd1932a1682076af1\"}", "{\"sha\": \"62f75bf5a59087480eefc122c8ba2dd1afc1ca46\", \"live\": true, \"id\": \"x330287a43eeaf5b3\"}", "{\"sha\": \"6f06e48649d84b6d7e773c97428fce11be81b5f8\", \"live\": true, \"id\": \"xb97da35c72f62719\"}", "{\"sha\": \"669f9fc81f8429553d1f661e08418e7dcb138ee9\", \"live\": true, \"id\": \"x0139a98f46ef12d3\"}", "{\"sha\": \"b9544d2fcb0effe63cf00d042067d66192d52f14\", \"live\": true, \"id\": \"x4ab336f1aaed752d\"}", "{\"sha\": \"058f478fcd6f72bac0ae09edc1797ad17459728f\", \"live\": true, \"id\": \"x61f6131e9183568c\"}", "{\"sha\": \"509f38c875c2a7e8093050e3f41213cb5d76d338\", \"live\": true, \"id\": \"x8109528b065002d1\"}", "{\"sha\": \"73933ee4ac1a4ce1b87af4d71bddb49cfdbf6a5b\", \"live\": true, \"id\": \"xf42b0318aa0b2253\"}", "{\"sha\": \"a75bfe6aa6e5ac4d8fa00ef191cdcddfd6d97ff9\", \"live\": true, \"id\": \"x1d9deefd1c4bc70f\"}", "{\"sha\": \"f4659ef2194fd78cd795dab49151bf6e01e7b713\", \"live\": true, \"id\": \"xc272445876d50a3d\"}", "{\"sha\": \"50c705cc46ae206ed673d7ae0e4a349003a9067d\", \"live\": true, \"id\": \"x334e58a23400b238\"}", "{\"sha\": \"1715bf9ae94e282c9bb481128205d640dc467ff5\", \"live\": true, \"id\": \"x1f78d5bdce312833\"}", "{\"sha\": \"661e2aa4acdc1eb45d19deb0e7bc6b87aa881c77\", \"live\": true, \"id\": \"xddc269868c742854\"}", "{\"sha\": \"680c42d0d5edc67ae06fb394a93f8a52b6f7c23b\", \"live\": true, \"id\": \"xa048ecc81b749d4e\"}"], "description": "Practice solving word problems by adding the same number many times.", "basepoints": 10.0, "slug": "repeated-addition", "kind": "Exercise", "name": "repeated-addition", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-and-subtraction-word-problems-within-100--level-1"], "exercise_id": "repeated-addition"}, "domain_of_a_function": {"uses_assessment_items": false, "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain_of_a_function/", "id": "domain_of_a_function", "display_name": "Domain of a function", "title": "Domain of a function", "description": "Given the equation of a function, determine the domain.", "basepoints": 18.0, "slug": "domain_of_a_function", "kind": "Exercise", "name": "domain_of_a_function", "seconds_per_fast_problem": 13.0, "prerequisites": ["functions_2", "domain_and_range_0.5"], "exercise_id": "domain_of_a_function"}, "visualizing-equivalent-fractions": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/visualizing-equiv-fracs-pre-alg/visualizing-equivalent-fractions/", "id": "visualizing-equivalent-fractions", "display_name": "Equivalent fractions introduction", "title": "Equivalent fractions introduction", "all_assessment_items": ["{\"sha\": \"e32dd6e83dcf3569a8d6bad534dc1fea948f92f1\", \"live\": true, \"id\": \"xd558386d4391af8b\"}", "{\"sha\": \"98c0f9df148a14c21107489ce8e600340a789558\", \"live\": true, \"id\": \"xd7fd16bf9ef7d0f7\"}", "{\"sha\": \"51237ebcc967b0f8342c53bc5127ab39e1d5b532\", \"live\": true, \"id\": \"xa7214695ad155b75\"}", "{\"sha\": \"f278fd1962da00844af8279a719f2fb6f4110289\", \"live\": true, \"id\": \"x8571421490edab73\"}", "{\"sha\": \"d2b470254f6579dba23bf0c47787e49bb9969675\", \"live\": true, \"id\": \"xcb8b1e592d34dcd0\"}", "{\"sha\": \"3be1f1c0d3c1b0d743975b6111ad90deeec4dd6b\", \"live\": true, \"id\": \"x2f2e4ef1fde42d90\"}", "{\"sha\": \"a58c3e1c7d8eebebf182e242c1cb7681ebabe6bf\", \"live\": true, \"id\": \"x9f99754cd687fff0\"}", "{\"sha\": \"86d185459d48dc9b4931df1419f13a5ca5efe27a\", \"live\": true, \"id\": \"xa7497cd49289dfcf\"}", "{\"sha\": \"2c7385331fe2fd90013cd3352dc5b61240f9f94f\", \"live\": true, \"id\": \"x0054e455c83ed86e\"}", "{\"sha\": \"c5054541cb8316dae70cf8f623be275dcc908382\", \"live\": true, \"id\": \"x107219bb417cc932\"}", "{\"sha\": \"1c750491e7f3386a075b24009b03ba82f1f26168\", \"live\": true, \"id\": \"xf68a8351cbb7af49\"}", "{\"sha\": \"a16acd068fe684ceb33e9e67b81baa483df498ec\", \"live\": true, \"id\": \"xe8b30546d35e370c\"}", "{\"sha\": \"a7866f4e47f2a28201d7630b7d1ab770c4d15c31\", \"live\": true, \"id\": \"xc68b725a68d934ae\"}", "{\"sha\": \"a9f9337265ad0ea259e50b3077e55e591a4bd7f2\", \"live\": true, \"id\": \"xef1097db7b2a32c4\"}", "{\"sha\": \"c7072ec8b45320743f58491e1e012f8470a021ac\", \"live\": true, \"id\": \"x0964bc79dcaeeed3\"}", "{\"sha\": \"b1c6799ca813d479b58e2533c06a4b4fb8c44b7b\", \"live\": true, \"id\": \"x9a50684dca5673d5\"}", "{\"sha\": \"c647f2aec07ee7a8c0d503c15108e2b1f64a13ff\", \"live\": true, \"id\": \"x30f29f95974be161\"}", "{\"sha\": \"6a4e299f58dabf345fea3da149c4eb78772e0e4e\", \"live\": true, \"id\": \"x9ff560a122989979\"}", "{\"sha\": \"79b0b3b77783d194a35fc3d229339db27c03f2e1\", \"live\": true, \"id\": \"xcd6608d3e71ff3c4\"}", "{\"sha\": \"f651427d2c4f78695e10f0caedd4de81cb03c963\", \"live\": true, \"id\": \"xefc4026b44351397\"}", "{\"sha\": \"52ee3c13455d71c7e5ad32d7e0dce697b731b927\", \"live\": true, \"id\": \"xb0b105911ba51a00\"}", "{\"sha\": \"d8b932fe9794c14b5b6802a49ff19ef4368ef036\", \"live\": true, \"id\": \"x9d06ca381ac49761\"}", "{\"sha\": \"b2f4fa1c73662d407086cd0231e3a86babce4b04\", \"live\": true, \"id\": \"xf0de2bcec3ded709\"}", "{\"sha\": \"0513cb34d824d77c17c0b16f67fff57d4b989370\", \"live\": true, \"id\": \"xfb67655989595017\"}", "{\"sha\": \"2f4423489972f76c1fbb5af4943a19397aa0f506\", \"live\": true, \"id\": \"x8a16ac159b8f1197\"}", "{\"sha\": \"9f26ff80059493190b8da902a3ae7cfd5b4fb814\", \"live\": true, \"id\": \"x2fd482eac40c723f\"}"], "description": "Practice finding equivalent fractions. These problems show you pictures of fractions to help you out.", "basepoints": 10.0, "slug": "visualizing-equivalent-fractions", "kind": "Exercise", "name": "visualizing-equivalent-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["comparing_fractions_1"], "exercise_id": "visualizing-equivalent-fractions"}, "comparing-decimal-place-value": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/comparing-decimal-place-value/", "id": "comparing-decimal-place-value", "display_name": "Comparing decimal place value", "title": "Comparing decimal place value", "all_assessment_items": ["{\"sha\": \"bc65e4f7359ed84fef5ebf43941fd330907b1804\", \"live\": true, \"id\": \"x13b9bbb8\"}", "{\"sha\": \"664a3ec5885a46be5733fde720d23457f71003c2\", \"live\": true, \"id\": \"x16be6d2c\"}", "{\"sha\": \"8e480b645e4f39b3399085b95b2b2c987c30ee0e\", \"live\": true, \"id\": \"x04785668\"}", "{\"sha\": \"ffa40a15d769a5795e7dfbf0e3d07cfba1150d0e\", \"live\": true, \"id\": \"x02795f4f\"}", "{\"sha\": \"86d22729458a148c3e9090dee33984f6319dae13\", \"live\": true, \"id\": \"xf6b82bf1\"}", "{\"sha\": \"7c65cea1f0c9a36fc85fc832f4d7a329f1633b50\", \"live\": true, \"id\": \"xff1946df\"}", "{\"sha\": \"032bb8e1c5665a3f0be4b7945c2ffa91c9f36b8e\", \"live\": true, \"id\": \"x66329a33\"}", "{\"sha\": \"4e81acee0082b03b0b15335402763eddc2f0ee19\", \"live\": true, \"id\": \"xd828255a\"}", "{\"sha\": \"8c27923550305231ac8d138cee602c51e0119d08\", \"live\": true, \"id\": \"xde843305\"}", "{\"sha\": \"f6461a1f6d0160db62c707b2e31bff529c35d6fe\", \"live\": true, \"id\": \"xd12effe2\"}", "{\"sha\": \"53b7b4d6faa939205e695711914c7623f195107c\", \"live\": true, \"id\": \"xc0a5a2ee\"}", "{\"sha\": \"d35f793eeab7a24966e202bd7228e84fa4370d71\", \"live\": true, \"id\": \"xfb8a0252\"}", "{\"sha\": \"3bf31bbabf19d9c75c167ee82be12b4898eddb9c\", \"live\": true, \"id\": \"xa3cc76d3\"}", "{\"sha\": \"b8ac6c1d090dfe5ef9d9d9a606d03497183f6752\", \"live\": true, \"id\": \"x1e1b0c40\"}", "{\"sha\": \"0f2cf8706dbd5d68c0a1178610822aedf4dd716d\", \"live\": true, \"id\": \"x400d23f2\"}", "{\"sha\": \"c08ad0517badee6f279285bb271f4202b49cd830\", \"live\": true, \"id\": \"xbb5a317f\"}", "{\"sha\": \"3c37895cb95c579601641d0f64998361bed7e39c\", \"live\": true, \"id\": \"x66184660\"}", "{\"sha\": \"7b26ab712226a26f7ea7782493a5371cad24b43e\", \"live\": true, \"id\": \"x83d8e478\"}", "{\"sha\": \"ef3a9bfd49940ad640a5c7a600cd7fc85a71ee19\", \"live\": true, \"id\": \"x0de26ef9\"}", "{\"sha\": \"c9507de3af32426043f18217232a1cff8dbebd5e\", \"live\": true, \"id\": \"x5b26dd45\"}", "{\"sha\": \"1d85a8066464fdf2f27654bd8f5641079b981196\", \"live\": true, \"id\": \"xa4378444\"}", "{\"sha\": \"bb64f6cfd37df015984b411f08e3e8e477f604ed\", \"live\": true, \"id\": \"x6a147f16\"}", "{\"sha\": \"8f10cabd9fc2660bc2e1949b07cd3485487679ce\", \"live\": true, \"id\": \"x82cf483d\"}", "{\"sha\": \"0199ea3b7745f935e1f8597db1b09a3752ff5725\", \"live\": true, \"id\": \"x98dde239\"}", "{\"sha\": \"391ce94f22776b6543c7b6495b51c38d1943fc68\", \"live\": true, \"id\": \"x933e3209\"}", "{\"sha\": \"ac732e162d74a9a7579c5b12981d3ca6ec96f9d1\", \"live\": true, \"id\": \"x7da2c619\"}", "{\"sha\": \"89d19012a3be199e581b7dc7c260f57a0a206cfc\", \"live\": true, \"id\": \"x2d85776f\"}", "{\"sha\": \"1a5fb8af603ff5eb6658ed63d1f79a13d85085d1\", \"live\": true, \"id\": \"x50d1d99f\"}", "{\"sha\": \"fe89feead006aa599a7136a7aaef64dcbfd19662\", \"live\": true, \"id\": \"xefb54a76\"}", "{\"sha\": \"14b88d132618cefcf39bcdf31a645457fa0999d6\", \"live\": true, \"id\": \"xd291707d\"}", "{\"sha\": \"56d7deacc242ba98c6bcc63dde2362f346729b9b\", \"live\": true, \"id\": \"xbd6d308a\"}"], "description": "Compare two numbers to thousandths based on meanings of the digits in each place.", "basepoints": 17.0, "slug": "comparing-decimal-place-value", "kind": "Exercise", "name": "comparing-decimal-place-value", "seconds_per_fast_problem": 10.0, "prerequisites": ["multiplying-and-dividing-decimals-by-powers-of-10"], "exercise_id": "comparing-decimal-place-value"}, "integration-by-parts": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/integration-techniques/integration_by_parts/integration-by-parts/", "id": "integration-by-parts", "display_name": "Integration by parts", "title": "Integration by parts", "all_assessment_items": ["{\"sha\": \"f7997708e70026f07115deec4d3c055012915f36\", \"live\": true, \"id\": \"xe6339040aa70a9c8\"}", "{\"sha\": \"2da09a30c18cca719295214b2955daf2386c6322\", \"live\": true, \"id\": \"xc9df8d11e34c66cd\"}", "{\"sha\": \"e0a4c8b2eb889c7ab71ddc19541424b62b2bf29d\", \"live\": true, \"id\": \"xed71bbec17fe3ecf\"}", "{\"sha\": \"8aae385fef2016e7c886b6492ff46cceab913d23\", \"live\": true, \"id\": \"xf5be0b5de5dc39c1\"}", "{\"sha\": \"a8aeb0e4f75ebb2d10c7005f4d97ba4d7d6d5c04\", \"live\": true, \"id\": \"xb0e62f7d64ce2f4b\"}", "{\"sha\": \"1e5a89616fbd9d3791d6ab94ad29122ed264e808\", \"live\": true, \"id\": \"x7c938ae946901835\"}", "{\"sha\": \"9faaa1cd34441ff9452bd01700149eb2ab2af236\", \"live\": true, \"id\": \"x43ad3ba4884fcd99\"}", "{\"sha\": \"10839418ad0db352bc0de08e7c1f974c837f67be\", \"live\": true, \"id\": \"xde4319ae55afc5c3\"}", "{\"sha\": \"5a07a2d5da5da17d462cea7e13450a5be5d07a8a\", \"live\": true, \"id\": \"xb9a18a95dd52f1d9\"}", "{\"sha\": \"ddff2394576891281e8c7c1dea1e2748a51561ee\", \"live\": true, \"id\": \"x3735352620047948\"}", "{\"sha\": \"af61b3ed8da2b22d7a133d1743231314bd127448\", \"live\": true, \"id\": \"x9b4ea89557c6539f\"}", "{\"sha\": \"f6d90b9aecee0bff268a5077cd2c0b155003f715\", \"live\": true, \"id\": \"xf424bd33304f1d49\"}", "{\"sha\": \"2e809df10aab994dc3492a69a76331bc3fd087f7\", \"live\": true, \"id\": \"x10095f04df739fb1\"}", "{\"sha\": \"e48766905e6171e355669da65c11cb78329a9938\", \"live\": true, \"id\": \"x96685ac258316c16\"}", "{\"sha\": \"728be184c0a85ab3b9dfefbbf7bbaf0da50cdb61\", \"live\": true, \"id\": \"x248cb16e4a44e498\"}", "{\"sha\": \"e96532df61561dc627c0f97d63b510fb4d1a0637\", \"live\": true, \"id\": \"xc993bc4189d1962c\"}", "{\"sha\": \"cb56194b7623aaa7e1b8fdd3ab0d61d9d4d2952d\", \"live\": true, \"id\": \"xaeffbf2a24c11e8a\"}", "{\"sha\": \"6dec3b057fac4f5caca5a66896e28890182dccd2\", \"live\": true, \"id\": \"x4e10af6a624db2db\"}", "{\"sha\": \"d8212e343fc7fb5d1438a94cdb7e95156f8e6d42\", \"live\": true, \"id\": \"x49f54293a225d61c\"}", "{\"sha\": \"8ed1b52a01da8c47d9cf7184c7498150f513aec6\", \"live\": true, \"id\": \"x4145af921db90d94\"}", "{\"sha\": \"523eccd1913bd6789ff0e050b8cc2d95bf4ad4a2\", \"live\": true, \"id\": \"x49ccd4a478403221\"}", "{\"sha\": \"8dbc96c486df412ca3473ddac11293f79d46cea3\", \"live\": true, \"id\": \"x8b37630f4566b1d8\"}", "{\"sha\": \"d98bdb63af62dc1a062857b23408c753c62ed24c\", \"live\": true, \"id\": \"xd9339d0bb08cf14f\"}", "{\"sha\": \"c99124cbb1f89317e1fb9ddb060714fd31f5114c\", \"live\": true, \"id\": \"x8b9826b5d3e49d15\"}", "{\"sha\": \"7e20f299afe809c25eabd7c0276abd9e11d01513\", \"live\": true, \"id\": \"x4252390e96a9d1b2\"}", "{\"sha\": \"d4e231e1574edbd10d62b2e3f1152c67e08d4890\", \"live\": true, \"id\": \"x5016ef09680a6c08\"}", "{\"sha\": \"29aedc7198edbffe02ad390e58630460d5b84edb\", \"live\": true, \"id\": \"x3b3d5da81624af9d\"}", "{\"sha\": \"f11d2307615ae3dcd29bcf119c45f94c8047a3fa\", \"live\": true, \"id\": \"x2afead1ddc30cb65\"}", "{\"sha\": \"ce7c9f64547115e5099bb54bcd68286b22641a3e\", \"live\": true, \"id\": \"xba2720ab89c5fc8c\"}", "{\"sha\": \"0b10b011c80c23b1ab585d8346d61da63723b5cb\", \"live\": true, \"id\": \"xed5b1e0453c95fc9\"}"], "description": "", "basepoints": 10.0, "slug": "integration-by-parts", "kind": "Exercise", "name": "integration-by-parts", "seconds_per_fast_problem": 4.0, "prerequisites": ["integration-by-the-reverse-chain-rule"], "exercise_id": "integration-by-parts"}, "multiplying_and_dividing_scientific_notation": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/multiplying_and_dividing_scientific_notation/", "id": "multiplying_and_dividing_scientific_notation", "display_name": "Multiplying and dividing scientific notation", "title": "Multiplying and dividing scientific notation", "description": "Practice expressing products and quotients in scientific notation.", "basepoints": 23.0, "slug": "multiplying_and_dividing_scientific_notation", "kind": "Exercise", "name": "multiplying_and_dividing_scientific_notation", "seconds_per_fast_problem": 24.0, "prerequisites": ["scientific_notation", "exponent_rules"], "exercise_id": "multiplying_and_dividing_scientific_notation"}, "multiplying_polynomials": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/multiplying_polynomials/", "id": "multiplying_polynomials", "display_name": "Multiplying polynomials", "title": "Multiplying polynomials", "description": "Multiply two expressions with variables and exponents to get a polynomial", "basepoints": 17.0, "slug": "multiplying_polynomials", "kind": "Exercise", "name": "multiplying_polynomials", "seconds_per_fast_problem": 11.0, "prerequisites": ["multiplying_expressions_0.5"], "exercise_id": "multiplying_polynomials"}, "hildesheim-doors-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/ottonian1/hildesheim-doors-quiz/", "id": "hildesheim-doors-quiz", "display_name": "Hildesheim Doors (quiz)", "title": "Hildesheim Doors (quiz)", "all_assessment_items": ["{\"sha\": \"a7b40de89d6a8fb73c8a6c8b1f524361495ca846\", \"live\": true, \"id\": \"x2ccd103cd86a00b4\"}", "{\"sha\": \"bb72b77b14a3439b7b70857d4e23d4ff0afa05e1\", \"live\": true, \"id\": \"xf24ad39ba7c4cfdf\"}", "{\"sha\": \"a830e1b155b64aaf05cd1aca6e61ea45f21e04c5\", \"live\": true, \"id\": \"x63d1d19b90ee8c41\"}", "{\"sha\": \"a12d7bba414a87f3c7e2dda749bdb4894ceeb6b5\", \"live\": true, \"id\": \"x317cc68a9508ce06\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "hildesheim-doors-quiz", "kind": "Exercise", "name": "hildesheim-doors-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "hildesheim-doors-quiz"}, "subtract-within-1000--level-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens-hundreds/subtract-within-1000-level-2/", "id": "subtract-within-1000--level-2", "display_name": "Subtract within 1000: Level 2", "title": "Subtract within 1000: Level 2", "all_assessment_items": ["{\"sha\": \"6553b7a4854633ce549af4a53ccce4b9607f56fb\", \"live\": true, \"id\": \"x918d738fd8c5497a\"}", "{\"sha\": \"a02e5a47e91d8238c27423d545cab0e6d8a0201f\", \"live\": true, \"id\": \"x749da1722a8b3696\"}", "{\"sha\": \"41fce6fbee522681ad9ac8692238aa3f9bbea58c\", \"live\": true, \"id\": \"xf8edb047c835d2e3\"}", "{\"sha\": \"0f4c528ee8e29ea49639a4e3397e5140da09cd40\", \"live\": true, \"id\": \"xe54535d2c371c8c2\"}", "{\"sha\": \"78b648297ef1e9958e868a7758fcf0522ea28c6e\", \"live\": true, \"id\": \"x47e19cfe608f5c3b\"}", "{\"sha\": \"c71fc12297c3b1a20239d33922b448e18f642281\", \"live\": true, \"id\": \"x6660f9d4898005bf\"}", "{\"sha\": \"aff83f55835d525a3a9f94f62e6dfb6c8a1dbd90\", \"live\": true, \"id\": \"x7bf11d9c85569a16\"}", "{\"sha\": \"7805f3ae9e2c2421757a572bee4a85622633b87b\", \"live\": true, \"id\": \"x764f1557b68eb914\"}", "{\"sha\": \"6ee98e624dafe1d6a923d39ac9f6e94081b7652c\", \"live\": true, \"id\": \"xaafb46392b0f9f34\"}", "{\"sha\": \"5a83640ed17a7a898e135cbaa3b9d7b7241c7c14\", \"live\": true, \"id\": \"x4f694041e07434d0\"}", "{\"sha\": \"07fcb65266ecc9688408703f90efcabac6bcfb64\", \"live\": true, \"id\": \"x914db96022ed59f4\"}", "{\"sha\": \"4e44a9d1df3eea83509a8d6d5717034b645ee4f6\", \"live\": true, \"id\": \"x229b6a0d524ae040\"}", "{\"sha\": \"84cf806accbcd5fd1501bec3a4af25c20e4b2ee9\", \"live\": true, \"id\": \"xb148a1e03bb5ac48\"}", "{\"sha\": \"a37bd5faba577aa412d92c3873ec12ad70c29b4b\", \"live\": true, \"id\": \"xa6dff68e840accab\"}", "{\"sha\": \"62c812e4e84db0b94e95302a7e7fa84956c372ef\", \"live\": true, \"id\": \"xefe562f3afc3ada2\"}", "{\"sha\": \"af7f3ca263e11a0c3ac55eb37ec647be1cf00006\", \"live\": true, \"id\": \"x860d77bf253523bb\"}", "{\"sha\": \"27180ae5be0821af81d8ca11ed391190925b6efe\", \"live\": true, \"id\": \"xedd9aa7b86785291\"}", "{\"sha\": \"9a3fe387ab09979aad1d0127d1d2c44ac92fb45c\", \"live\": true, \"id\": \"xb3b881062d6717e7\"}", "{\"sha\": \"4edc4072d52fc1ae5f60efef1dfff14bfe4790c6\", \"live\": true, \"id\": \"x2e68d1fc9d9de0de\"}", "{\"sha\": \"7519fab1233b1fe1c52c49ec5261c3247e64d0d8\", \"live\": true, \"id\": \"x1ba7c27b6becdbeb\"}"], "description": "", "basepoints": 10.0, "slug": "subtract-within-1000-level-2", "kind": "Exercise", "name": "subtract-within-1000--level-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["add-within-1000--level-2", "subtract-within-1000--level-1"], "exercise_id": "subtract-within-1000--level-2"}, "dividing-integers": {"uses_assessment_items": true, "id": "dividing-integers", "display_name": "Dividing by zero", "title": "Dividing by zero", "all_assessment_items": ["{\"sha\": \"6922d2122e420958b0ed3b2a30991e25b650d1dd\", \"live\": true, \"id\": \"xf6a10e317dba2e23\"}", "{\"sha\": \"185e341ce27a3d0b6012879baa6421a615b8c33a\", \"live\": true, \"id\": \"xc449af09570a44aa\"}", "{\"sha\": \"a80f8ed58f20dbfe36ae2c8bd30d2653a65a4fc0\", \"live\": true, \"id\": \"xbf12423dd571befa\"}", "{\"sha\": \"5d3d32048d8296be17c906d83c045ca2317f9bdd\", \"live\": true, \"id\": \"x85fdb7da11cd1e43\"}", "{\"sha\": \"74e74865fd02b8de4c876bd4792f852fbfd7c421\", \"live\": true, \"id\": \"x6265e9ac35e1bd27\"}", "{\"sha\": \"2f826a3ec9e6e69e6597269320f9953ea2dac471\", \"live\": true, \"id\": \"x39c1fcd9909f57f5\"}", "{\"sha\": \"2ac4d799ee8bfe802f4525b6b29ce1efd16d9935\", \"live\": true, \"id\": \"x64de205f7eb3451d\"}", "{\"sha\": \"c3d1f72aabd8a2dca02dc8f051c14e9930fcef5f\", \"live\": true, \"id\": \"x2928ea16ab21b305\"}", "{\"sha\": \"130f9647fd9f23523d4d5d7b45b06aa3ce2b7b59\", \"live\": true, \"id\": \"x978740a67326c9f4\"}", "{\"sha\": \"6f46f3b4888f9496944a45fd1df44e99d3726521\", \"live\": true, \"id\": \"x26411ec5024d0cf9\"}", "{\"sha\": \"6df3010344b213e8e7cf40c7bf6efa5957738178\", \"live\": true, \"id\": \"x2af475bee92360eb\"}", "{\"sha\": \"1b4e0cc91cd2c7ef8be10ec8b6ac86d90c798966\", \"live\": true, \"id\": \"x6c181e4b03322e29\"}", "{\"sha\": \"e529e3efe871eedf54a8946949b8b4d2feba4990\", \"live\": true, \"id\": \"xbf0d791a0416f718\"}", "{\"sha\": \"674174044eda913c38374492f309deff5071795b\", \"live\": true, \"id\": \"x268bee881d2ee567\"}", "{\"sha\": \"12a364054701808765b72c2880ebbba044981eb8\", \"live\": true, \"id\": \"xd45657a837b771ec\"}", "{\"sha\": \"c131178759343db435432d901b636603490b111d\", \"live\": true, \"id\": \"xa0b75eea48132762\"}", "{\"sha\": \"5878559eb2cbd0c51810bdd91731607d69dc20c8\", \"live\": true, \"id\": \"xd98b99b6b800129d\"}", "{\"sha\": \"494c76a589812a3e5e4708ebe9283ae876d29b3d\", \"live\": true, \"id\": \"x5af589747b5666c9\"}", "{\"sha\": \"288be5146abf07291d884c4b65f0e451855d9263\", \"live\": true, \"id\": \"x81ed0a44072b62e8\"}"], "description": "Practice identifying when a quotient is undefined because of division by zero.", "basepoints": 10.0, "path": "dividing-integers/", "slug": "dividing-integers", "kind": "Exercise", "name": "dividing-integers", "seconds_per_fast_problem": 4.0, "prerequisites": ["number-opposites"], "exercise_id": "dividing-integers"}, "number_line_2": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-sub-negatives-pre-alg/number_line_2/", "id": "number_line_2", "display_name": "Negative numbers on the number line", "title": "Negative numbers on the number line", "description": "Identify positive and negative integers on the number line.", "basepoints": 14.0, "slug": "number_line_2", "kind": "Exercise", "name": "number_line_2", "seconds_per_fast_problem": 7.0, "prerequisites": ["decimals_on_the_number_line_2", "negative_number_word_problems"], "exercise_id": "number_line_2"}, "number_line_3": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-sub-negatives-pre-alg/number_line_3/", "id": "number_line_3", "display_name": "Negative numbers on the number line without reference to zero", "title": "Negative numbers on the number line without reference to zero", "description": "Practice more challenging problems where you identify positive and negative integers on a number line that doesn't have zero labeled.", "basepoints": 16.0, "slug": "number_line_3", "kind": "Exercise", "name": "number_line_3", "seconds_per_fast_problem": 9.0, "prerequisites": ["number_line_2"], "exercise_id": "number_line_3"}, "surface-area": {"uses_assessment_items": true, "path": "khan/math/geometry/basic-geometry/volume_tutorial/surface-area/", "id": "surface-area", "display_name": "Surface area using nets", "title": "Surface area using nets", "all_assessment_items": ["{\"sha\": \"b075267a273a88d2e52835366c6d4c5de51d02c9\", \"live\": true, \"id\": \"x211a4e9d79fd5d27\"}", "{\"sha\": \"6951aa3a37a21872bd5fc8194b8533fe9b5fb255\", \"live\": true, \"id\": \"xa203fee5563d3e21\"}", "{\"sha\": \"8e2f9796d24469f113a49e76ed1c17a5a4eb23c1\", \"live\": true, \"id\": \"x982835f1d0eb3ec7\"}", "{\"sha\": \"021f846bd1acedc38c77fdf85778e2c76b0cedcb\", \"live\": true, \"id\": \"x338d15d4d87967d6\"}", "{\"sha\": \"62cee44ce1684e25ca900340d9cdc24a51b28efb\", \"live\": true, \"id\": \"x3e85d51e89349277\"}", "{\"sha\": \"1ccaaa38b7616c9adee244512ba015db294d929b\", \"live\": true, \"id\": \"x36c31d6ff0c10dac\"}", "{\"sha\": \"9049639481ad55d39ac093ac10a25a7ff91cd1c2\", \"live\": true, \"id\": \"x8b9801f1668d76b8\"}", "{\"sha\": \"b4ff2cf090b094980e3752d660a03547dd0e396a\", \"live\": true, \"id\": \"x2b0b726855094644\"}", "{\"sha\": \"36161ca052961b2bc7a011dea26b54b1b12ea88f\", \"live\": true, \"id\": \"xe25a31a90f26d8a8\"}", "{\"sha\": \"74c8f1106ce79b4e11d5e11b7ffbd497afbc149c\", \"live\": true, \"id\": \"x125b6506e2e0a2ba\"}", "{\"sha\": \"e0a219640410a5e66cf6599ab6cfa15d55ee4d43\", \"live\": true, \"id\": \"x7e97543a4b5c1625\"}", "{\"sha\": \"1c0e73efa3e2ed657191abf1a9f2b390c2fd589b\", \"live\": true, \"id\": \"x7229ffbe7350d7f7\"}", "{\"sha\": \"da117748e117945e1fb6265fa76828116babe1e2\", \"live\": true, \"id\": \"xd5da9af4e8ec728a\"}", "{\"sha\": \"248cd039e7502c8c74685327a8b851f57731b274\", \"live\": true, \"id\": \"x773595f5f9d25c74\"}", "{\"sha\": \"49a343b5d19f22654125dc274642b4091fd021b6\", \"live\": true, \"id\": \"x3eec23122ae55bd2\"}", "{\"sha\": \"6655558f0983b9279ddb7251d444c2eabee75e5a\", \"live\": true, \"id\": \"xdc67de44dab2c3e8\"}", "{\"sha\": \"a4e9ff938084fdd133e9643158b2afc4753a9128\", \"live\": true, \"id\": \"xcbc3b5f0e2dd746d\"}", "{\"sha\": \"72d00e77e3dcff729eb989391713c6efaf763ce0\", \"live\": true, \"id\": \"x8268530c631be46a\"}", "{\"sha\": \"18f941789ba9f8b186456ee1a4ed17ae7eb086a1\", \"live\": true, \"id\": \"xca0bf838fcfa3f34\"}", "{\"sha\": \"14d24820a671554b3452257d79df17d20dc1f26a\", \"live\": true, \"id\": \"x392160cd92fe3e27\"}", "{\"sha\": \"408747ffc06d4bd107888f9bcf8c61aaec63f8cf\", \"live\": true, \"id\": \"x5f8ed98e90dd09a7\"}", "{\"sha\": \"8e749aeef9dbc536a7459237a0b1e3c7f758a486\", \"live\": true, \"id\": \"xfce1d223dcc59f32\"}", "{\"sha\": \"1d57e654ce67af3dc721237081975ba5c0157778\", \"live\": true, \"id\": \"x89ece9feb268fdc4\"}", "{\"sha\": \"66b2ffbd7445692399ec6f92c88d2a2e62d1608b\", \"live\": true, \"id\": \"x93ff1232d8a5b4fd\"}", "{\"sha\": \"350130c9d3da404fbae721965a371f2f6b560dc2\", \"live\": true, \"id\": \"x17aed86cba018eda\"}", "{\"sha\": \"e81e4fb82268e7f04b0deeb532cea166692be39a\", \"live\": true, \"id\": \"x64f0b3a6c49c33e2\"}", "{\"sha\": \"ca26b1cd7071e0abb1273fa274953545d2734c82\", \"live\": true, \"id\": \"xf640aecbfba6f44e\"}", "{\"sha\": \"21eb2e208fcf99dc7ed13f45e5abb2d08b670118\", \"live\": true, \"id\": \"x600e6990d85eab88\"}", "{\"sha\": \"0346c58e8d9c73eec8c7586f0204277c51a83bdd\", \"live\": true, \"id\": \"xef2418627b5b28d2\"}"], "description": "Use the net of a 3D figure to find its surface area.", "basepoints": 19.0, "slug": "surface-area", "kind": "Exercise", "name": "surface-area", "seconds_per_fast_problem": 14.0, "prerequisites": ["nets-of-3d-figures"], "exercise_id": "surface-area"}, "finding-1-on-the-number-line": {"uses_assessment_items": true, "id": "finding-1-on-the-number-line", "display_name": "Finding 1 on the number line", "title": "Finding 1 on the number line", "all_assessment_items": ["{\"sha\": \"8bd92b75f78269dd1ba29b9ac0b222a91e1bc27b\", \"live\": true, \"id\": \"xd5489c7dabb8f826\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2ba2c50906a24672563d142fb879afdff086ab0e\", \"live\": true, \"id\": \"x069ab601b6209497\", \"perseus_api_major_version\": 0}", "{\"sha\": \"892c93c158e9cdcd964c49452ef8eef13f2e4148\", \"live\": true, \"id\": \"x68ffa66bbdee8ef9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"397bbf7d1d65045f0cd13c274fb0283a20ffdce9\", \"live\": true, \"id\": \"x6a8baa7cd399358c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b2558b6b4f49141bdb388d81f7ebf6a970b24d48\", \"live\": true, \"id\": \"x64bf825cadd942a4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3ba5150dd8eec8130a685d7cc81fa1d504d4b4ed\", \"live\": true, \"id\": \"x1bf07aa561eb6305\", \"perseus_api_major_version\": 0}", "{\"sha\": \"905da9b53305b60f33f2839a5529b9c872c44c88\", \"live\": true, \"id\": \"x1823daf496e1c8f4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"21242971aa3ff7ff19538fed1a6a4a4c31ea5da4\", \"live\": true, \"id\": \"xb09992ccbede2070\", \"perseus_api_major_version\": 0}", "{\"sha\": \"cd3fa279ccfe185a84dbbff795a97589abc610ef\", \"live\": true, \"id\": \"x00d73e1c51451e8c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fa16a1aa18f1534c88d2c54e4985ecedcde4c90e\", \"live\": true, \"id\": \"xbcfcee6c3304ce44\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2fa0c3fbdbad034799f330f842f86bdd2327d1e8\", \"live\": true, \"id\": \"x02932e0709c11bd4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0b01b58e26825a3ea5c6ea19524477474f52172b\", \"live\": true, \"id\": \"xb556f6b3609bf545\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1f8f037b104ed7ab14359e7c50070a0c6ae2e58b\", \"live\": true, \"id\": \"xfd980d61613d9c2d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ce6d8ff010268d5912c6debc9c7ff5c22686fb2e\", \"live\": true, \"id\": \"x7d7adb6de90c634b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"06fbe1cf010a00a1855cb2af2df9cb6af86c3b81\", \"live\": true, \"id\": \"x17b25b07a12e3c4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"5110357056027f4d9d2229b8488aee32761802a8\", \"live\": true, \"id\": \"x9a362e987c5aa4ae\", \"perseus_api_major_version\": null}", "{\"sha\": \"940b7f71844d5474d0ab1f592f79a1da33375b66\", \"live\": true, \"id\": \"xcf0bc1369fc520f4\", \"perseus_api_major_version\": null}", "{\"sha\": \"dc231bd668b97c6664006760d4c6271b491f1bda\", \"live\": true, \"id\": \"x8616693997942e52\", \"perseus_api_major_version\": null}", "{\"sha\": \"502f32eac3e2792e4b527c0206437b4773c48adc\", \"live\": true, \"id\": \"xa66fda2ff6aa6270\", \"perseus_api_major_version\": null}", "{\"sha\": \"d6da1c3bc09a8c36ead11a81c06f6ac06d18123c\", \"live\": true, \"id\": \"x66883510eae39993\", \"perseus_api_major_version\": 3}", "{\"sha\": \"278aeae78034721a2d93bdc3ab8e5f5ef7702d83\", \"live\": true, \"id\": \"x4dd539b35321d40e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"591b0117bd67ab8d521dd302b7bab9ca87f30064\", \"live\": true, \"id\": \"x1a19981ed0e8f9a1\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2e7dc72ba3f605a5c06a398d5994619b215249b1\", \"live\": true, \"id\": \"x303e66eb50014c09\", \"perseus_api_major_version\": 3}", "{\"sha\": \"fc40e6e22438428432dc5a47237079688c80ada6\", \"live\": true, \"id\": \"x6a3a3febc2ec7732\", \"perseus_api_major_version\": 3}"], "description": "Locate one on a number line labeled with zero and a unit fraction.", "basepoints": 10.0, "path": "finding-1-on-the-number-line/", "slug": "finding-1-on-the-number-line", "kind": "Exercise", "name": "finding-1-on-the-number-line", "seconds_per_fast_problem": 4.0, "prerequisites": ["fractions_on_the_number_line_2"], "exercise_id": "finding-1-on-the-number-line"}, "reflecting-points": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-coordinate-plane/reflecting-points/", "id": "reflecting-points", "display_name": "Reflecting points on the coordinate plane", "title": "Reflecting points on the coordinate plane", "all_assessment_items": ["{\"sha\": \"1912c84cf1f18f2690fbb689a1bc05ec1d507352\", \"live\": true, \"id\": \"x49242c17\"}", "{\"sha\": \"ee832674dfb43aa8db87551f706c04e7fd3e76d1\", \"live\": true, \"id\": \"x906b1c00\"}", "{\"sha\": \"96179ecd1848ceae2f673cd455c3884676b02aa4\", \"live\": true, \"id\": \"x7967888f\"}", "{\"sha\": \"55e6f974d8508fb0282e4912007f3833d178f545\", \"live\": true, \"id\": \"x33083dad30073d7f\"}", "{\"sha\": \"8f1e91b54386b8b061ee870c5513d8269d0177ce\", \"live\": true, \"id\": \"x72bb4564\"}", "{\"sha\": \"98b82aa2a75bb1db17c781818b80aabb74e343d2\", \"live\": true, \"id\": \"xa90a9efa\"}", "{\"sha\": \"0a50abcb70b893d67acfe01accfdd6878aff2d35\", \"live\": true, \"id\": \"x670364000a35b564\"}", "{\"sha\": \"42b7557695e6dc8bc446449655907d5166f48f0b\", \"live\": true, \"id\": \"x71d1e757\"}", "{\"sha\": \"61178390b27fa0885c097cdc0deeaf23a8334630\", \"live\": true, \"id\": \"x84d4d975347fa6c0\"}", "{\"sha\": \"cfd2162123161b05a6b9d339db7e8d6775ab7d8a\", \"live\": true, \"id\": \"x6bbd8baf\"}", "{\"sha\": \"34afd819b27a05767b4c07f0be6bdd58a09da40d\", \"live\": true, \"id\": \"x7c8d8f06\"}", "{\"sha\": \"403da5cb67c7ef1c0a8313d01c2c16d77ae95e79\", \"live\": true, \"id\": \"xa086512a\"}", "{\"sha\": \"d2f6018ad4f9dc4ac914a4bb57a78ad21d3b7af9\", \"live\": true, \"id\": \"x973f4113\"}", "{\"sha\": \"7049fdc5238f62bb65ec7f0e644d4ddab4fb266b\", \"live\": true, \"id\": \"x3b408772\"}", "{\"sha\": \"d14b7aeb1269ddfa874dd31ff79ec6740de92ce6\", \"live\": true, \"id\": \"xb7ec0295\"}", "{\"sha\": \"c4bc9492110da94435b05e3dbd8fc7fceaf25c93\", \"live\": true, \"id\": \"x1bf711cf\"}", "{\"sha\": \"93b4e364617569191c11cd44e0e11d1a544a82e4\", \"live\": true, \"id\": \"xc10a2d11\"}", "{\"sha\": \"1cf30daffa189447767e282db5e312620293b438\", \"live\": true, \"id\": \"x0452a55a\"}", "{\"sha\": \"ec9cad05efc27d187dd166783f539dbc00072a9b\", \"live\": true, \"id\": \"xb805ab13\"}", "{\"sha\": \"ed851a95081a938c747f14f3bbb7fb9a17cddfc0\", \"live\": true, \"id\": \"xa3fb1f48\"}", "{\"sha\": \"8a2b4d75da4ac67e659415c9457415fe468ce40b\", \"live\": true, \"id\": \"xd2a254bd42d36d64\"}", "{\"sha\": \"130b7d5d58dd82e76fb04182e3965bfc6859d33f\", \"live\": true, \"id\": \"x71c3fcac\"}", "{\"sha\": \"dcdee506bc20f2e4a88727dedfa9bc080cd69207\", \"live\": true, \"id\": \"x99fe571b\"}", "{\"sha\": \"b947d9232615ada5bb678b1b603386541bb6850e\", \"live\": true, \"id\": \"x4dd31ae059bf49d6\"}", "{\"sha\": \"90419e137407e6e2b2574e0be961b38a88bacb6c\", \"live\": true, \"id\": \"xb6d0f0d2\"}", "{\"sha\": \"b379c940c4b2eea8a8d0f495061a606a1ed83503\", \"live\": true, \"id\": \"xfce91d1c\"}", "{\"sha\": \"6ff10a59bee551a455b9b4e80f2a75a9533c2841\", \"live\": true, \"id\": \"xc42ae1cd50c749e2\"}", "{\"sha\": \"ffab4051aa96183fbb13588c35140cc76fddf07a\", \"live\": true, \"id\": \"x68a4a98686323197\"}", "{\"sha\": \"07bcb2931e5b3f9b8871eaafca4e8e7f426ddca1\", \"live\": true, \"id\": \"x3733700d22f30071\"}"], "description": "Practice reflecting points across axes on the xy coordinate plane.", "basepoints": 19.0, "slug": "reflecting-points", "kind": "Exercise", "name": "reflecting-points", "seconds_per_fast_problem": 14.0, "prerequisites": ["number-opposites", "identifying_points_1"], "exercise_id": "reflecting-points"}, "volume-word-problems-with-cones--cylinders--and-spheres": {"uses_assessment_items": true, "path": "khan/math/geometry/basic-geometry/volume_tutorial/volume-word-problems-with-cones-cylinders-and-spheres/", "id": "volume-word-problems-with-cones--cylinders--and-spheres", "display_name": "Volume word problems with cones, cylinders, and spheres", "title": "Volume word problems with cones, cylinders, and spheres", "all_assessment_items": ["{\"sha\": \"598ea030d050b651379312222644c6fcbfbd1ca8\", \"live\": true, \"id\": \"x7a5a142eb26a204e\", \"perseus_api_major_version\": null}", "{\"sha\": \"a82da115b089b14b47c867f1e7a69a711625fa1e\", \"live\": true, \"id\": \"x2190aedd0d3a1631\", \"perseus_api_major_version\": null}", "{\"sha\": \"dfa7b610ab60503ff42f69ce73cd6df56bccfaf9\", \"live\": true, \"id\": \"x48931b31d98add9c\", \"perseus_api_major_version\": null}", "{\"sha\": \"e86a893450d1779f8fee03d18b5494d9804a9e4c\", \"live\": true, \"id\": \"x5d4d3642a7c3d751\", \"perseus_api_major_version\": null}", "{\"sha\": \"3b30aae9eb93e39ec5e7dc978fd3702359368219\", \"live\": true, \"id\": \"xda3d4e21506b0cde\", \"perseus_api_major_version\": null}", "{\"sha\": \"b9e5bc9cd3c2fe779843540fcd2a403f9ae4c499\", \"live\": true, \"id\": \"x6747ec769c876654\", \"perseus_api_major_version\": null}", "{\"sha\": \"98e4773f6850ce586c242db1a99ca51db5849626\", \"live\": true, \"id\": \"x23b68a9d08f40f66\", \"perseus_api_major_version\": null}", "{\"sha\": \"83fd6edbcbe48c2c52029e094e0a821a98a14e68\", \"live\": true, \"id\": \"x997b4b033385b470\", \"perseus_api_major_version\": null}", "{\"sha\": \"5a2c4d2e0182d7784338ce13ddde5a72d615a6de\", \"live\": true, \"id\": \"xf145aca859d9f8c7\", \"perseus_api_major_version\": null}", "{\"sha\": \"88c79f3a35cc69e92a5ec5b8985a461e451cdddc\", \"live\": true, \"id\": \"x40df6609fc7ff676\", \"perseus_api_major_version\": null}", "{\"sha\": \"933dc02722e74e72cb845f1daeae7e44dc38f926\", \"live\": true, \"id\": \"x66ac4e6471c69590\", \"perseus_api_major_version\": null}", "{\"sha\": \"4949474c6fb7c0fa6791724ed1d75e099cfae641\", \"live\": true, \"id\": \"x6fa87e0e0aa58dba\", \"perseus_api_major_version\": null}", "{\"sha\": \"57680e3a196ae38273865bb3d9933d9837ffbcea\", \"live\": true, \"id\": \"xfac8c07ecad52313\", \"perseus_api_major_version\": null}", "{\"sha\": \"3bdf7cd7c0705a055360638616da4a357c14870e\", \"live\": true, \"id\": \"xe7e8770375a13a37\", \"perseus_api_major_version\": null}", "{\"sha\": \"a6fc63ab07d05a35207838754edccc91109c9792\", \"live\": true, \"id\": \"x828985d80dda8d87\", \"perseus_api_major_version\": null}", "{\"sha\": \"b462aebb25cef9de37745019511a4e2efbbbcf59\", \"live\": true, \"id\": \"x6a7afc4bccd9531b\", \"perseus_api_major_version\": null}", "{\"sha\": \"0d20100c45b0355c794bf15562af29b0cd96fdfe\", \"live\": true, \"id\": \"x0e7e9e5f292be031\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b266fe934cc6965a9d09b41589ba2c15e8a3692\", \"live\": true, \"id\": \"x9639f55e92ab2d99\", \"perseus_api_major_version\": 2}", "{\"sha\": \"d35c6f41dc8ffba37d1954e5df48197e3fcd6718\", \"live\": true, \"id\": \"x9ee36b634c994d10\", \"perseus_api_major_version\": null}", "{\"sha\": \"a4db14f01f4081b6f5696e6fe2c53b491c44b840\", \"live\": true, \"id\": \"xa1c8b1f7b93e9e54\", \"perseus_api_major_version\": null}", "{\"sha\": \"34daa8a8d53bbf5ed5f7a39635707408bf39f45f\", \"live\": true, \"id\": \"x6d5c6206f92f174d\", \"perseus_api_major_version\": null}", "{\"sha\": \"c9e9412cfb5571a43269719c53a3ca7cc568afc5\", \"live\": true, \"id\": \"x5615a174dbe02bc8\", \"perseus_api_major_version\": null}", "{\"sha\": \"bebe6cc4dddbadf99c674236449809f38d7961a2\", \"live\": true, \"id\": \"xb355c8ff4d902350\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 29.0, "slug": "volume-word-problems-with-cones-cylinders-and-spheres", "kind": "Exercise", "name": "volume-word-problems-with-cones--cylinders--and-spheres", "seconds_per_fast_problem": 60.0, "prerequisites": ["solid_geometry", "area--volume--and-surface-area"], "exercise_id": "volume-word-problems-with-cones--cylinders--and-spheres"}, "quiz--why-is-plate-tectonics-important-": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/solar-system-and-earth/plate-tectonics-important/quiz-why-is-plate-tectonics-important-/", "id": "quiz--why-is-plate-tectonics-important-", "display_name": "Quiz: Why Is Plate Tectonics Important?", "title": "Quiz: Why Is Plate Tectonics Important?", "all_assessment_items": ["{\"sha\": \"804547ba9dbf9621b7e4cc1bf55b9ba0f1b2062c\", \"live\": true, \"id\": \"x8d22d5c4df5e1831\"}", "{\"sha\": \"2532aa8f25571460c614f02fa56ef254a6dfac75\", \"live\": true, \"id\": \"xa0bad25dd103e71d\"}", "{\"sha\": \"3cd9d0f7f1783661ce7492d5db59dbe9bbd49481\", \"live\": true, \"id\": \"x393c47331add9704\"}", "{\"sha\": \"eb762f61f9fd37d6179e7d4a40707aaecea6ae63\", \"live\": true, \"id\": \"x89d528aac4f882ff\"}", "{\"sha\": \"ce48a0ebc41a0980a7665fb9da99bb8d2cf7aaa3\", \"live\": true, \"id\": \"xc566e85bc25fd986\"}"], "description": "Quiz 4.2", "basepoints": 10.0, "slug": "quiz-why-is-plate-tectonics-important-", "kind": "Exercise", "name": "quiz--why-is-plate-tectonics-important-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--why-is-plate-tectonics-important-"}, "graphs_of_inequalities": {"uses_assessment_items": false, "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphs_of_inequalities/", "id": "graphs_of_inequalities", "display_name": "Graphs of inequalities in two variables", "title": "Graphs of inequalities in two variables", "description": "Write an inequality from a given graph", "basepoints": 22.0, "slug": "graphs_of_inequalities", "kind": "Exercise", "name": "graphs_of_inequalities", "seconds_per_fast_problem": 21.0, "prerequisites": ["slope-intercept-equation-from-graph"], "exercise_id": "graphs_of_inequalities"}, "shaded_areas": {"uses_assessment_items": false, "path": "khan/math/geometry/basic-geometry/perimeter_area_tutorial/shaded_areas/", "id": "shaded_areas", "display_name": "Shaded areas", "title": "Shaded areas", "description": "Find the areas of shaded regions which are combinations of squares, triangles, and circles.", "basepoints": 24.0, "slug": "shaded_areas", "kind": "Exercise", "name": "shaded_areas", "seconds_per_fast_problem": 30.0, "prerequisites": ["circles_and_arcs", "areas_of_circles_and_sectors"], "exercise_id": "shaded_areas"}, "trigonometric-functions-of-special-angles": {"uses_assessment_items": true, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-functions-special-angles/trigonometric-functions-of-special-angles/", "id": "trigonometric-functions-of-special-angles", "display_name": "Trigonometric functions of special angles", "title": "Trigonometric functions of special angles", "all_assessment_items": ["{\"sha\": \"500fa4243cf8b78ec945fff44fb30531b4ce9c8f\", \"live\": true, \"id\": \"x16f89ce43ec5fd66\"}", "{\"sha\": \"9e80b261bbac85cd482489c04d71ef133fc71999\", \"live\": true, \"id\": \"x6b6c1af85dc2836d\"}", "{\"sha\": \"76c296c7ab4bc0b31404001fb94d864253c0faf4\", \"live\": true, \"id\": \"xcbb0d60c67293dea\"}", "{\"sha\": \"69a0998d2dec8ed20d4c4934883d067359b31aa0\", \"live\": true, \"id\": \"xd3fb0fdb09fe472c\"}", "{\"sha\": \"15ae3de416d605f79f209c7189ddc105f66441fb\", \"live\": true, \"id\": \"x304d3be38250ffea\"}", "{\"sha\": \"27ef400304f605fe566b048ef3e31936e4c6f835\", \"live\": true, \"id\": \"x3daac1771d676580\"}", "{\"sha\": \"91137e988ad45691ceaa0e151eda5292c12fd2e4\", \"live\": true, \"id\": \"x42e784b9ff12f3d6\"}", "{\"sha\": \"0d321b3bb5efc4dd8cc2a60637459f3bc077bd92\", \"live\": true, \"id\": \"x6e95ea6a1ea9043a\"}", "{\"sha\": \"db213f8a4f9e234cbd9c0e2ef92be5384e119c2d\", \"live\": true, \"id\": \"xae21c2c33acef790\"}", "{\"sha\": \"9b9c7cf330fd724f997c8b1cc0365224bfc30fb7\", \"live\": true, \"id\": \"x89d53da80a252891\"}", "{\"sha\": \"e593aef3b759878b00b3e6114e3536d6599a966e\", \"live\": true, \"id\": \"x908918019cf3d11e\"}", "{\"sha\": \"311a252813223aa2fc6b4bcd8874a12a9f0d2f31\", \"live\": true, \"id\": \"x236c57d109c5c5e5\"}", "{\"sha\": \"a9e0de0cca553d272ef49b7723e3541827da62f2\", \"live\": true, \"id\": \"xee0e995938747851\"}", "{\"sha\": \"ac5214329fa82bb76a6b0480b8f97bc709f97a3c\", \"live\": true, \"id\": \"xe5ac0234ccd6e0ba\"}", "{\"sha\": \"82afbb6b654846399830830b693f72479e748139\", \"live\": true, \"id\": \"x3128f611ad1d04d4\"}"], "description": "", "basepoints": 10.0, "slug": "trigonometric-functions-of-special-angles", "kind": "Exercise", "name": "trigonometric-functions-of-special-angles", "seconds_per_fast_problem": 4.0, "prerequisites": ["trigonometry_2"], "exercise_id": "trigonometric-functions-of-special-angles"}, "triangle_inequality_theorem": {"uses_assessment_items": false, "path": "khan/math/geometry/basic-geometry/triangle_inequality_theorem/triangle_inequality_theorem/", "id": "triangle_inequality_theorem", "display_name": "Triangle inequality theorem", "title": "Triangle inequality theorem", "description": "", "basepoints": 17.0, "slug": "triangle_inequality_theorem", "kind": "Exercise", "name": "triangle_inequality_theorem", "seconds_per_fast_problem": 10.0, "prerequisites": ["triangle_angles_1"], "exercise_id": "triangle_inequality_theorem"}, "measurement-precision": {"uses_assessment_items": true, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/measurement-precision/", "id": "measurement-precision", "display_name": "Measurement precision", "title": "Measurement precision", "all_assessment_items": ["{\"sha\": \"3e2033932dd0b072c0cb5c47b4f3d1bca502dc12\", \"live\": true, \"id\": \"x1247421286a289db\"}", "{\"sha\": \"a8f6e5d53eab1658e0840a382e37734366833351\", \"live\": true, \"id\": \"x99d66eda45646ffc\"}", "{\"sha\": \"c4c52cff6c324ebedeb6f0a09f3d8463e18277f1\", \"live\": true, \"id\": \"x25ba03f92f8eb687\"}", "{\"sha\": \"d96e479b6a0aac802a3ee5458e5d7db33c96abdc\", \"live\": true, \"id\": \"x128214ef52ca6850\"}", "{\"sha\": \"53d4b4124a4ac7c7d852e656fbd1ce11fe986f56\", \"live\": true, \"id\": \"xdc305045401112b1\"}", "{\"sha\": \"730b464c5eb9b0bc8e209a1a68cafca818280c01\", \"live\": true, \"id\": \"xe47444f147b2d457\"}", "{\"sha\": \"6f115adcbb654be52294120238dbf8ff11d5a2b7\", \"live\": true, \"id\": \"xa6240c6f9a53e4be\"}", "{\"sha\": \"2e487f8c872f83e106023a56bdf490fef9092e95\", \"live\": true, \"id\": \"x6b16a765fbcb3081\"}", "{\"sha\": \"71c1aa6d64bea14411778ef9622b2666570ff702\", \"live\": true, \"id\": \"x788f1b916c7906da\"}", "{\"sha\": \"02f850531ea06ffd009141a6ad2e10f2e495d694\", \"live\": true, \"id\": \"xd78a976ecce596d4\"}", "{\"sha\": \"71b8af37508fba2a9ffecffbe423dcab97fc9663\", \"live\": true, \"id\": \"x325ddf02e7c066c6\"}", "{\"sha\": \"038829b4c72ae6c1b7c6f0e2af514715f625452d\", \"live\": true, \"id\": \"xcea07009b0de8e9e\"}", "{\"sha\": \"739cd6b25b1ad3775c38265529ea96316c2808a6\", \"live\": true, \"id\": \"x548b0d76ef09e0d4\"}", "{\"sha\": \"b3154dbd67edab89ef50e554c3eb8af1dcbff614\", \"live\": true, \"id\": \"x61137dbfcc0f1b7b\"}", "{\"sha\": \"597628239998829688c9b1a0cbf16abeb30e4f41\", \"live\": true, \"id\": \"xd4df42cc8f532d3d\"}", "{\"sha\": \"0908aeb290e9dab186456e4bef0e6aa8b71fe793\", \"live\": true, \"id\": \"x7880036d06f348dc\"}", "{\"sha\": \"060821aa7bba73970eedfba036e66501e53b6e42\", \"live\": true, \"id\": \"xfd55b3c8b55edac2\"}", "{\"sha\": \"2d33cecb07e01ee45819e98bd90903772f46162a\", \"live\": true, \"id\": \"xecf197e16a040ec3\"}", "{\"sha\": \"c8166d54410c4afb98059fdcbd9d80e6c391f580\", \"live\": true, \"id\": \"x73a0d348992f5b58\"}", "{\"sha\": \"596c60c1e26185a01dd8687519bc91e79803a82e\", \"live\": true, \"id\": \"x7bdbb681259347cd\"}", "{\"sha\": \"e0e0188e9691065fce9d5620cc70d618a41019b4\", \"live\": true, \"id\": \"xb68f74547188f57e\"}", "{\"sha\": \"fb50bf5358ab6bd66f185727cefb26e020685356\", \"live\": true, \"id\": \"xacf16c1bf7066aa0\"}", "{\"sha\": \"8930c7490ef5412dc1e8151db4a986dfb390fd6a\", \"live\": true, \"id\": \"x3eda2928159585ab\"}", "{\"sha\": \"c7f70aba01d474a4a6bde09654b9ff57b7bbf1f4\", \"live\": true, \"id\": \"x1194be6d736469bc\"}", "{\"sha\": \"39d1b3e648de726c97b234ea510de9d1241bbba8\", \"live\": true, \"id\": \"x5debf773a4ad528e\"}", "{\"sha\": \"38ae31afc3081cf6ac702540612738a415ace792\", \"live\": true, \"id\": \"xfc9375564e098c52\"}", "{\"sha\": \"080044e19d70ba858e558f023a752c178a7fb7ab\", \"live\": true, \"id\": \"x7b469f365c2df102\"}", "{\"sha\": \"099d50ba29dc2870915edf720c44e910db302f58\", \"live\": true, \"id\": \"xb42170f21ccfe2b2\"}", "{\"sha\": \"696b7060aa4d0e9c9e455f623b51a28eb0cd9423\", \"live\": true, \"id\": \"x7a7baa4faffdfc5e\"}", "{\"sha\": \"8422c45339924f20b9fd9f5e46cad598d46594ee\", \"live\": true, \"id\": \"x7257200517ed7b6f\"}", "{\"sha\": \"8733d27d8649de83a284171da9a249caddcc6615\", \"live\": true, \"id\": \"x33763156bfbfc8c8\"}", "{\"sha\": \"9b705fb479fcf9b056fa48f46edb8d293edb8635\", \"live\": true, \"id\": \"xebfc5a15758a62d9\"}", "{\"sha\": \"29af51d2166a905d2def28abd2522959d45ae038\", \"live\": true, \"id\": \"x945df2387d6e69e4\"}", "{\"sha\": \"4a07c2ca5ab4e042d19b8e80519707e50a523bb5\", \"live\": true, \"id\": \"x90eeee11ced84ed7\"}", "{\"sha\": \"5e3f9b047e66d6e607d0c377e243df041bbfd6b0\", \"live\": true, \"id\": \"xc415049bfeaefa62\"}", "{\"sha\": \"df51519558820e737684bb7c9a654f5e45f42d4f\", \"live\": true, \"id\": \"x431a0237273939d6\"}", "{\"sha\": \"2b16a5701fc29ebb83336e54b8e292da5cf7662e\", \"live\": true, \"id\": \"x6e48b3b52878520a\"}", "{\"sha\": \"515ecf16647a011ecd0e6da52efe4850dd5f0efd\", \"live\": true, \"id\": \"xacc424259f786024\"}", "{\"sha\": \"4a26e098fea6cdada721920879b70e0f9a675e37\", \"live\": true, \"id\": \"xfb71f4ddfffb76d9\"}", "{\"sha\": \"def396b5a2580a552db62e4ba573f8e996c1feeb\", \"live\": true, \"id\": \"x74e91087dab0b80f\"}", "{\"sha\": \"a5660104255dd68ff3cb33f858990050945812a9\", \"live\": true, \"id\": \"x40f93ac5dd13d29d\"}", "{\"sha\": \"d0e88743b27ffac6b2bb6751b0f6609639d47f11\", \"live\": true, \"id\": \"x952fa033e1309045\"}", "{\"sha\": \"cb47ea5854060c4f4ccfff1e3c75b953726bc697\", \"live\": true, \"id\": \"xdf131f2a5d07de74\"}", "{\"sha\": \"39d61ff4487884fe2f2e188361f7f0d3d6887140\", \"live\": true, \"id\": \"xca3c7ee65cee094b\"}", "{\"sha\": \"25fbd3d73f970cc7ca4b388df323ac1ac176e452\", \"live\": true, \"id\": \"xea3644095bc8eb56\"}", "{\"sha\": \"2a47ec0a2717d7e42a90fe76e6cdab84c532cc15\", \"live\": true, \"id\": \"x75809b8fa7fab888\"}", "{\"sha\": \"8b7ab9490a33e66922b26db495389c5fd652729c\", \"live\": true, \"id\": \"x5bb1cca2620697c4\"}", "{\"sha\": \"b133b799159d17223d92640a0fc1e7ec924cba10\", \"live\": true, \"id\": \"xe61ca6b44578c4f9\"}", "{\"sha\": \"9a00b32c81f1783ff9766781001c3b3852dfa9a1\", \"live\": true, \"id\": \"x0106e355556627f9\"}", "{\"sha\": \"f2026f7c65596cdfa7204e609a981ec841086f6f\", \"live\": true, \"id\": \"x7ee8ba929d1f4bc7\"}"], "description": "", "basepoints": 10.0, "slug": "measurement-precision", "kind": "Exercise", "name": "measurement-precision", "seconds_per_fast_problem": 4.0, "prerequisites": ["scientific_notation"], "exercise_id": "measurement-precision"}, "ace-inhibitors-and-the-renal-regulation-of-blood-pressure-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/ace-inhibitors-and-the-renal-regulation-of-blood-pressure-/", "id": "ace-inhibitors-and-the-renal-regulation-of-blood-pressure-", "display_name": "ACE inhibitors and the renal regulation of blood pressure", "title": "ACE inhibitors and the renal regulation of blood pressure", "all_assessment_items": ["{\"sha\": \"b1ffca69b2ae8eadf74e7f2ee43dd900b7630d13\", \"live\": true, \"id\": \"x9030a11cb45cb3bf\"}", "{\"sha\": \"971eebd0bfd805fd5e3241c6dba72bbb84cc98c7\", \"live\": true, \"id\": \"x2045f6347c614b3a\"}", "{\"sha\": \"91496197c8ebb5cd0c436be1ee363337510160fb\", \"live\": true, \"id\": \"xd80df77a0aeb445e\"}", "{\"sha\": \"9e0055f5222feb37d9fd89735e50c32fef5953fb\", \"live\": true, \"id\": \"xd98bf0568d3a9ce1\"}", "{\"sha\": \"68df364644d453ddbfa100d5dd9f050204f2970c\", \"live\": true, \"id\": \"x554c53d2cc549b5e\"}"], "description": "Questions about kidney physiology", "basepoints": 10.0, "slug": "ace-inhibitors-and-the-renal-regulation-of-blood-pressure-", "kind": "Exercise", "name": "ace-inhibitors-and-the-renal-regulation-of-blood-pressure-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ace-inhibitors-and-the-renal-regulation-of-blood-pressure-"}, "lindau-gospels-cover-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/carolingian1/lindau-gospels-cover-quiz/", "id": "lindau-gospels-cover-quiz", "display_name": "Lindau Gospels Cover Quiz", "title": "Lindau Gospels Cover Quiz", "all_assessment_items": ["{\"sha\": \"ee507947679e3fca22f95cc590ca014fa81ea80c\", \"live\": true, \"id\": \"xdd51aeeba74cf779\"}", "{\"sha\": \"baff3c39aa5a018f8390ead88f413d76a0a67008\", \"live\": true, \"id\": \"xfaef26becf90a1a9\"}", "{\"sha\": \"10fb1ed97dd090e57d4d9440a6d1d17d15e15db0\", \"live\": true, \"id\": \"x3133eb18981293fc\"}", "{\"sha\": \"96f0957bb983c758faa47d7acd536d53892811b5\", \"live\": true, \"id\": \"x60ae1addca5b30ac\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "lindau-gospels-cover-quiz", "kind": "Exercise", "name": "lindau-gospels-cover-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "lindau-gospels-cover-quiz"}, "counting-out-1-20-objects": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-counting/counting-out-1-20-objects/", "id": "counting-out-1-20-objects", "display_name": "Counting with small numbers", "title": "Counting with small numbers", "all_assessment_items": ["{\"sha\": \"c2074685910760669c855d628b7a44ef8d828be9\", \"live\": true, \"id\": \"xde8147b8edb82294\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76c7fd55c20dfe0f4f938745b73e1e7d0c4757ac\", \"live\": true, \"id\": \"xa5c8d62485b6bf16\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a4318a5630a8766f55dc6830527dbaffc7fb917b\", \"live\": true, \"id\": \"x2313c50d4dfd4a0a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b350b21cf286a64c0e7869a6429fc6c5fd139c1f\", \"live\": true, \"id\": \"xcd7ba1c0c381fadb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e8ba59f1f99433fbd0360332f999cde76ab8976b\", \"live\": true, \"id\": \"x4cb56360820eece5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"954fcd5885c36b841a22bc5bf89207bced27b8be\", \"live\": true, \"id\": \"xcc39b61282c884be\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"15070fc64826e1cd00665c38e2e42e5834ed359a\", \"live\": true, \"id\": \"x9c6c9733676e5240\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"89d992ba940c4ecaa7687d7a84ce632ead085882\", \"live\": true, \"id\": \"x8ae458b86dfe440b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"54f92d19cabbd7647cd5d21d4678e8711431e9fb\", \"live\": true, \"id\": \"x8e7fd4a4b5b002c1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8d00285eae0fab5210dcfb325be7741e48c75681\", \"live\": true, \"id\": \"xeee62e178c0cfe6f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4453b349bad32a1e416e7e74af64e09e2c5810f8\", \"live\": true, \"id\": \"xdee0840c85c0add5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bb340ca13b104a9b9d1065b74a2fdfa423f817d1\", \"live\": true, \"id\": \"xa756d02df7435e1a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f65a9c4a6a8df260021fe424d562e8ff6d1741bd\", \"live\": true, \"id\": \"x6b9db70231ff254d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"00808cbc066910be1220235faa7d93a9126f6a57\", \"live\": true, \"id\": \"x1855395b96b1e34f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90db973ee0fd319c596410e215a76a651601901d\", \"live\": true, \"id\": \"x477b6212a24d08da\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6cf4d0675de30afee8cab929b97000e2c41fbc8\", \"live\": true, \"id\": \"xfc8946e7c80f2800\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f522fb965ab3805f56250db187fefadb281edd2\", \"live\": true, \"id\": \"x14784d8f428fa949\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"849c88aa2122ea5a40bb39540acf551d3ac67728\", \"live\": true, \"id\": \"x3f2d3b6cb53f67a4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a9197ffb73ad014d477c7eb1eed41f9ea025774b\", \"live\": true, \"id\": \"xb6e923d2f396f5ab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"446eef76c02fc29049012312c704c12b4b54ba8d\", \"live\": true, \"id\": \"x9ef4ca7e914c87ec\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice counting up to 10 objects.", "basepoints": 10.0, "slug": "counting-out-1-20-objects", "kind": "Exercise", "name": "counting-out-1-20-objects", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "counting-out-1-20-objects"}, "graph-from-standard-form-equation": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/standard-form/graph-from-standard-form-equation/", "id": "graph-from-standard-form-equation", "display_name": "Graph from a standard form equation", "title": "Graph from a standard form equation", "all_assessment_items": ["{\"sha\": \"0f23a3a9af57974e6af1ad6347b2bc007ca92550\", \"live\": true, \"id\": \"xad732256cf73afbd\"}", "{\"sha\": \"753ae566f964244b6116f342093aecbd3ddd1ce8\", \"live\": true, \"id\": \"x7503fd260531d616\"}", "{\"sha\": \"166e843e1c37e2c5d2cc967877ee36954d33c26e\", \"live\": true, \"id\": \"x349b1128863b2c59\"}", "{\"sha\": \"7abcb0cfc05fc2faec93f469b2abdcafbded3340\", \"live\": true, \"id\": \"x62ed01c9be39f7cd\"}", "{\"sha\": \"a030a4c1718f9eec3dc1bca934e9a7fb962fc7c8\", \"live\": true, \"id\": \"xc1c51611974a9bd7\"}", "{\"sha\": \"5b1faa7438bcf9cf8a129e80fec5fb81ba154454\", \"live\": true, \"id\": \"x8591c944ee2e8296\"}", "{\"sha\": \"a0c998d2ea26be2a1b13a73b0cfeaae82388aa7b\", \"live\": true, \"id\": \"x8d096ca4bd0bf61b\"}", "{\"sha\": \"09fd6e1cc8c17f0f9988f65cbac545c05fea8f7b\", \"live\": true, \"id\": \"x0eceb0ab03b38db5\"}", "{\"sha\": \"a50a9bc3ca45b02f610031919ae1eb370ae5f38d\", \"live\": true, \"id\": \"x101862b08acd4017\"}", "{\"sha\": \"c97c5c2a3293f0b54b41372a5a8cc9e5bdbdf571\", \"live\": true, \"id\": \"xa88df00ed7218bba\"}", "{\"sha\": \"29d56e2203cb07c65dafa61eda05818252427053\", \"live\": true, \"id\": \"xb30cfe2e72628062\"}", "{\"sha\": \"0b8f7111448dd841f056049193eb12af62ba47bb\", \"live\": true, \"id\": \"x03494d8071ddaca3\"}", "{\"sha\": \"f7635dddefcee1a34bab3e6215bb02be4fef3414\", \"live\": true, \"id\": \"xa13ad0c09f4e155b\"}", "{\"sha\": \"06c7a64dbdfa4dfd24184fbabca69e7a728eda9d\", \"live\": true, \"id\": \"x2846c72e2fcd7d37\"}", "{\"sha\": \"8bdb9105139c2b47c041e4afbe017409ede5e800\", \"live\": true, \"id\": \"x4282e759566bb78f\"}", "{\"sha\": \"01ba41e1c791358b998c71764f1a035b4089ef5e\", \"live\": true, \"id\": \"xc6006101ea294a5b\"}", "{\"sha\": \"f296c1b5415fe7122535370b39cf5205f8ea25bd\", \"live\": true, \"id\": \"x52197d1a49686452\"}", "{\"sha\": \"ff6a1e36f60859df8246cb4b28046f66d660b990\", \"live\": true, \"id\": \"x1f92190395ba7445\"}", "{\"sha\": \"37d623dad46a4865562a6501550c4160c28e7fd8\", \"live\": true, \"id\": \"xe3b5e6d483f8f05e\"}", "{\"sha\": \"a2f8efe74c363bd66c7a4e903b83837900a93725\", \"live\": true, \"id\": \"x0dc80156e5fe716d\"}"], "description": "Find the graph of a linear equation", "basepoints": 10.0, "slug": "graph-from-standard-form-equation", "kind": "Exercise", "name": "graph-from-standard-form-equation", "seconds_per_fast_problem": 4.0, "prerequisites": ["slope-from-an-equation-in-standard-form"], "exercise_id": "graph-from-standard-form-equation"}, "writing-systems-of-equations-as-matrix-equations": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/matrix-equations/writing-systems-of-equations-as-matrix-equations/", "id": "writing-systems-of-equations-as-matrix-equations", "display_name": "Writing systems of equations as matrix equations", "title": "Writing systems of equations as matrix equations", "all_assessment_items": ["{\"sha\": \"eb43e8a34275a87bc6d8ae062b0c7fd8c1f5d7df\", \"live\": true, \"id\": \"x18d09e1400767a70\"}", "{\"sha\": \"2a675d67d0794a186d1687d931f2a1268f1b61dd\", \"live\": true, \"id\": \"xc12ce960ed7552ac\"}", "{\"sha\": \"3a01ec0fa3d0a8f2a907084fcc2378187e32e839\", \"live\": true, \"id\": \"x97d2effb19a3583d\"}", "{\"sha\": \"55c44a54ab2a2ba5c2e9b40e3e1b01711ae4da38\", \"live\": true, \"id\": \"x66e8acc40aeadbfc\"}", "{\"sha\": \"ea7637cea75219e08bb2668a6e5d4bc384d3befe\", \"live\": true, \"id\": \"xc277ac1076c05916\"}", "{\"sha\": \"8bea2c9d5f05aec8c6479fe0920cf6ffcebc8637\", \"live\": true, \"id\": \"x50b7d559ceae40e8\"}", "{\"sha\": \"5ace0c35aa8797c808090dc231c338f38717b141\", \"live\": true, \"id\": \"xff444ff98b7df2c3\"}", "{\"sha\": \"082bf20065a6ab1da988388fbe11496334d929fc\", \"live\": true, \"id\": \"xadde3174d511961a\"}", "{\"sha\": \"da37cd3118429fc5c02818559f80b316dcf6d3b5\", \"live\": true, \"id\": \"x95ef02ccb5f82059\"}", "{\"sha\": \"c0dc69d39f4b7408d91040624b291f0c490f4004\", \"live\": true, \"id\": \"xefc0d5c1f22891ca\"}", "{\"sha\": \"3af808001aaf0756b3f796e13b437f5e13b9579c\", \"live\": true, \"id\": \"x2d4efd9619fe1e78\"}", "{\"sha\": \"656600244b2f66e5ccd81b49ea61d0d4cc451b89\", \"live\": true, \"id\": \"x4557fb03eea05c2a\"}", "{\"sha\": \"314a0426db7e9cc2d1eea14b1e745b51d886a8c4\", \"live\": true, \"id\": \"x07c6f59a4daf2f5d\"}", "{\"sha\": \"88b306364261704252361e50661e795147671399\", \"live\": true, \"id\": \"x457ef806c0336c40\"}", "{\"sha\": \"a85d2876c5d5b2d2cbf2a2a01c4fd9ae35d86d03\", \"live\": true, \"id\": \"xa277624ec3fc727a\"}", "{\"sha\": \"ca39e0490ea0858b10784c97b67aaebbc70c11e1\", \"live\": true, \"id\": \"xd838f15ad0487c40\"}", "{\"sha\": \"d3cf44798572b942960699e186c2921b706697af\", \"live\": true, \"id\": \"x0eae762e043569b3\"}", "{\"sha\": \"67f11e13308e24716010a0ebef0d9415e9e3674b\", \"live\": true, \"id\": \"xaa2029d6d72809d6\"}", "{\"sha\": \"d094b5d94cc7f45cf0a1588bcc99232cfdbc20e1\", \"live\": true, \"id\": \"x6152ad64d3b85d9f\"}", "{\"sha\": \"824b33ac517af2fa024ee99897329f7313e8f8c4\", \"live\": true, \"id\": \"x0d5aec3892fdd46a\"}", "{\"sha\": \"52b8acc6158c1e521931524d2b41fc9ed1f9cdfa\", \"live\": true, \"id\": \"xee4662a90130965b\"}", "{\"sha\": \"053841de3d9c46c6a94ad2097bd19b26c060b660\", \"live\": true, \"id\": \"xef36e0c56fa95cb9\"}", "{\"sha\": \"8537d4d6e515dbe3ab1e39e26b9bcc50a6fab272\", \"live\": true, \"id\": \"xf83c6b483d4fd757\"}", "{\"sha\": \"07c26e081ad2e116abe991d298e3bcca9d0ce097\", \"live\": true, \"id\": \"x4061f4dbc95abe27\"}", "{\"sha\": \"d277bad2451c22628981c2930d3c92877d00b2b3\", \"live\": true, \"id\": \"x48ca68256fe6acdc\"}", "{\"sha\": \"bb2c28d8b32e41728a0abf66cf2464760175caa6\", \"live\": true, \"id\": \"xbfd48230adc978fe\"}", "{\"sha\": \"a0e61dba533764604addf36958703fe274766e05\", \"live\": true, \"id\": \"xa112756cc8f9c018\"}", "{\"sha\": \"dab1b1e42868bcf6a539d925ca6338a5fb2439c0\", \"live\": true, \"id\": \"xc1f9214174899866\"}", "{\"sha\": \"1d3706c05520c41a25c3e26ec16ee632cd6548c8\", \"live\": true, \"id\": \"xc000e7f6694b0299\"}", "{\"sha\": \"2ecb3ff092084bd828249e7cb903fa733c0bcaef\", \"live\": true, \"id\": \"x8a9950cfdf42f76d\"}"], "description": "", "basepoints": 10.0, "slug": "writing-systems-of-equations-as-matrix-equations", "kind": "Exercise", "name": "writing-systems-of-equations-as-matrix-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_a_matrix_by_a_vector", "systems_of_equations"], "exercise_id": "writing-systems-of-equations-as-matrix-equations"}, "introductory-muscular-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-muscles/introductory-muscular-quiz/", "id": "introductory-muscular-quiz", "display_name": "Introductory musculatory system quiz", "title": "Introductory musculatory system quiz", "all_assessment_items": ["{\"sha\": \"6e82462c71707c82428542632a011ed6bdb2018c\", \"live\": true, \"id\": \"x1746fb65e8127a55\", \"perseus_api_major_version\": null}", "{\"sha\": \"542f0705c0ad3d9569f01437e9a311f37f791840\", \"live\": true, \"id\": \"x72ebbb20788738af\", \"perseus_api_major_version\": null}", "{\"sha\": \"32c52fa8dd7f330371e98b9190475e737ce9f020\", \"live\": true, \"id\": \"xb475c7ee213179de\", \"perseus_api_major_version\": null}", "{\"sha\": \"e9d0b6d2e165e708813f0700b2ee9bd57ccfd0a7\", \"live\": true, \"id\": \"x0faee55541e3a938\", \"perseus_api_major_version\": null}", "{\"sha\": \"d81b136492c3830d7b55282b7c81e6db44e3b164\", \"live\": true, \"id\": \"x100a6095b61accd9\", \"perseus_api_major_version\": null}", "{\"sha\": \"89c28657907b55de030987f8f15dc1a8d1a0b2e9\", \"live\": true, \"id\": \"x9a68a4082decbcec\", \"perseus_api_major_version\": null}", "{\"sha\": \"285b4a2833f7769218db59a4857b1b63e2f3653f\", \"live\": true, \"id\": \"xce7a576f5d5083bb\", \"perseus_api_major_version\": null}", "{\"sha\": \"ce2a4f03a680ae0a90612daf89cef9bc403d18e8\", \"live\": true, \"id\": \"x91c0607562ca10be\", \"perseus_api_major_version\": null}", "{\"sha\": \"7173852001a0ad151416863024fa5497345e93bb\", \"live\": true, \"id\": \"xc5e38cc8ebbc0374\", \"perseus_api_major_version\": null}", "{\"sha\": \"a7dfae91744bb538b8439f4713b98dd1481ab2c2\", \"live\": true, \"id\": \"xdb952919954a3880\", \"perseus_api_major_version\": null}", "{\"sha\": \"b820ccbe51da8e183c829d4417538303692c7b3e\", \"live\": true, \"id\": \"xcfd492d995e7da91\", \"perseus_api_major_version\": null}", "{\"sha\": \"008faec61c9596b66b4dc203716611fdfa6ca714\", \"live\": true, \"id\": \"x58a966f4a0400c8a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"decaa9ffbaeed4b00a43994a32779a4065170493\", \"live\": true, \"id\": \"xff187b2fdf88d377\", \"perseus_api_major_version\": null}", "{\"sha\": \"eab33904afbfede1b5dadb227c049129b3219ac7\", \"live\": true, \"id\": \"xba2dd3ee2b39a294\", \"perseus_api_major_version\": null}", "{\"sha\": \"f414feccecc08e421a11ccd56b3d309f26b4c147\", \"live\": true, \"id\": \"xd4282209172635dd\", \"perseus_api_major_version\": null}", "{\"sha\": \"377e5b0ac84c08d9a2043b0606d7a055b0bcbb2c\", \"live\": true, \"id\": \"xa4e938405fae36b6\", \"perseus_api_major_version\": null}", "{\"sha\": \"e92f3c260ab2c1a2137c86c83b0a79b9c5c66817\", \"live\": true, \"id\": \"x1db5d3178d5af821\", \"perseus_api_major_version\": null}", "{\"sha\": \"2bfff09465bf513e85677264cd1bce27e4c37189\", \"live\": true, \"id\": \"x587570a7ecafca92\", \"perseus_api_major_version\": null}", "{\"sha\": \"34beae004556feb6e3d80ad8d58a59785a13eb1d\", \"live\": true, \"id\": \"xf60f3cd3a89962a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"06d50a567310f58a5e1ebd4eec079473a84c10c9\", \"live\": true, \"id\": \"x7eb744b6befc8b63\", \"perseus_api_major_version\": null}"], "description": "Introductory muscle quiz", "basepoints": 10.0, "slug": "introductory-muscular-quiz", "kind": "Exercise", "name": "introductory-muscular-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "introductory-muscular-quiz"}, "navigating-the-stages-of-sleep": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/navigating-the-stages-of-sleep/", "id": "navigating-the-stages-of-sleep", "display_name": "Navigating the stages of sleep", "title": "Navigating the stages of sleep", "all_assessment_items": ["{\"sha\": \"6ce19839079d472cc489c066ba50277cbdc270ed\", \"live\": true, \"id\": \"xa589f2e115e293ad\"}", "{\"sha\": \"a3250fb84ef66ca99bbd50b2689169179b64d01e\", \"live\": true, \"id\": \"xae8e2bab0ddb4a38\"}", "{\"sha\": \"e0cb1e4b91edaa846762dc8273e90f7c78a8bf10\", \"live\": true, \"id\": \"x4f5b2c7ef5a70b5a\"}", "{\"sha\": \"28de1bafa51ffb106cd186a859d314b572234f4c\", \"live\": true, \"id\": \"x738ccfffe1d7ea3a\"}", "{\"sha\": \"13b051918c9ca78b8c35120a3af5fb48a2eaeda4\", \"live\": true, \"id\": \"xdc5069d7c719d19b\"}"], "description": "Questions related to sleep stages", "basepoints": 10.0, "slug": "navigating-the-stages-of-sleep", "kind": "Exercise", "name": "navigating-the-stages-of-sleep", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "navigating-the-stages-of-sleep"}, "drawing-lines": {"uses_assessment_items": true, "path": "khan/math/geometry/intro_euclid/drawing-lines/", "id": "drawing-lines", "display_name": "Drawing rays, lines, and line segments", "title": "Drawing rays, lines, and line segments", "all_assessment_items": ["{\"sha\": \"4e3e4e5829f9db971198efda4dfc05accd506e17\", \"live\": true, \"id\": \"x77b3b9f1bc4a47cb\", \"perseus_api_major_version\": null}", "{\"sha\": \"2e54c6ec7421379d10da9b5437ce4e558cf3eb4c\", \"live\": true, \"id\": \"x42e4fd94c8a7de8f\", \"perseus_api_major_version\": null}", "{\"sha\": \"df21366a6371ab7ca727d2034a67895b777bd528\", \"live\": true, \"id\": \"x0e03e6cd522c9f02\", \"perseus_api_major_version\": null}", "{\"sha\": \"b960392a984dcddb0f31bf948dbde5f6eb56bbcc\", \"live\": true, \"id\": \"xeba0ac8ac14b812b\", \"perseus_api_major_version\": null}", "{\"sha\": \"22c529cdcc762ab5d71060c88ff1a51e95ba69ed\", \"live\": true, \"id\": \"x6dca8a0cd5d36998\", \"perseus_api_major_version\": null}", "{\"sha\": \"c8061c7d9415b28451858ee873917275775a242a\", \"live\": true, \"id\": \"x6302f32bafe79b3e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2b65a705bf705f1ed6bb5d0e63f923743c9039ac\", \"live\": true, \"id\": \"xa11011e407ac4935\", \"perseus_api_major_version\": null}", "{\"sha\": \"20171b7b05f6592353d7d7775a2a655144aeda5c\", \"live\": true, \"id\": \"x2834500571f806bd\", \"perseus_api_major_version\": null}", "{\"sha\": \"76b99fe05351ff7d83f0aed8c52cb5e44206ba95\", \"live\": true, \"id\": \"x17636f80d7925ead\", \"perseus_api_major_version\": null}", "{\"sha\": \"76b87e06db6b5ea5f0f40f541f3c390e784353bc\", \"live\": true, \"id\": \"xc6d78a73b325fdf7\", \"perseus_api_major_version\": null}", "{\"sha\": \"81aea1ec9588dec50026c585cf4a806a83d12ad6\", \"live\": true, \"id\": \"x58dbf02039d7ad27\", \"perseus_api_major_version\": null}", "{\"sha\": \"49a8278189258ddac6c94c8c897a7c02ed270213\", \"live\": true, \"id\": \"x51832ef9b9c5c09c\", \"perseus_api_major_version\": null}", "{\"sha\": \"d68d0bd637adceae98c21b367d49ee2171700dae\", \"live\": true, \"id\": \"xa0ca58cb2636a6c9\", \"perseus_api_major_version\": null}", "{\"sha\": \"229da0e7aeef3b1a154276ed2383c30644671cc6\", \"live\": true, \"id\": \"xbf8388f8df4fbbef\", \"perseus_api_major_version\": null}", "{\"sha\": \"5914e66229024cf0c985a13de0875366a6a4a0d7\", \"live\": true, \"id\": \"xaade55a44e6f0c71\", \"perseus_api_major_version\": null}", "{\"sha\": \"b90decbc38ba3197adb0440fab82b59dc06f80ad\", \"live\": true, \"id\": \"x0b2af51862a636b7\", \"perseus_api_major_version\": null}", "{\"sha\": \"3dc3b13c0196e858f6a048b57451173695d53e40\", \"live\": true, \"id\": \"x2339061226d382d9\", \"perseus_api_major_version\": null}", "{\"sha\": \"8165d40be84adc3d8f21bdc5ca890381664b73a2\", \"live\": true, \"id\": \"x9d99de0d4fc7bf86\", \"perseus_api_major_version\": null}", "{\"sha\": \"542cff610807058a5954461c60ec6a3dab278483\", \"live\": true, \"id\": \"x71e91680deda384b\", \"perseus_api_major_version\": null}", "{\"sha\": \"fc444d54a866b96b913a7695341ff33de53441b4\", \"live\": true, \"id\": \"xc01b08a8f28dd84a\", \"perseus_api_major_version\": null}", "{\"sha\": \"79365b30627be0cb34416cb758e191cd62a6c4f2\", \"live\": true, \"id\": \"x06874f335d5ddfe6\", \"perseus_api_major_version\": null}", "{\"sha\": \"f25f3584c855d0c215d50df2fdd838afe12c14d5\", \"live\": true, \"id\": \"xa2b6db078a9c4598\", \"perseus_api_major_version\": null}", "{\"sha\": \"dc5d4872b28f0bb8b7969705917d523ac0f96520\", \"live\": true, \"id\": \"x5c581ccf5c8f8f6a\", \"perseus_api_major_version\": null}", "{\"sha\": \"5d59d7792798f81392cc77d034da5b7e2953ddcd\", \"live\": true, \"id\": \"xaedea12073452bec\", \"perseus_api_major_version\": null}", "{\"sha\": \"490dbd0d0b5f8acf5616b5892b0896a14a8bdba6\", \"live\": true, \"id\": \"x0a01a3f9b4b9cf63\", \"perseus_api_major_version\": null}", "{\"sha\": \"70540af7c270f492228e284c69639ec4988edb41\", \"live\": true, \"id\": \"x59748442ce55625e\", \"perseus_api_major_version\": null}", "{\"sha\": \"08391682b3f370ed4acf7d1c1a465e77ae1d9e96\", \"live\": true, \"id\": \"x8789a761e395cef8\", \"perseus_api_major_version\": null}", "{\"sha\": \"3b4a18940485f0ba05a65439cf9f1d33a74dd8b0\", \"live\": true, \"id\": \"x51bafe9dd520df8b\", \"perseus_api_major_version\": null}", "{\"sha\": \"6c9469081801727269029bcfc667c0e769f6e5fc\", \"live\": true, \"id\": \"xd6d1487cd8387863\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee13ff5ac94d43592790e66cbc9fc267b9730a8c\", \"live\": true, \"id\": \"x9ea645130a8efdd7\", \"perseus_api_major_version\": null}", "{\"sha\": \"cbf7c216bea8481a876d94b96b64f0ca8f826729\", \"live\": true, \"id\": \"xdbbcf3d772e1a9ee\", \"perseus_api_major_version\": null}", "{\"sha\": \"6222c7886053105edecbcbec5def31f7072f1c43\", \"live\": true, \"id\": \"xd5c96f7a150d91a5\", \"perseus_api_major_version\": null}", "{\"sha\": \"88a2c874849d781e26b131a11b21a2942ea388fc\", \"live\": true, \"id\": \"x39281509766c8448\", \"perseus_api_major_version\": null}"], "description": "Draw rays, lines, and line segments with given points. \u00a0Create parallel and perpendicular lines.", "basepoints": 10.0, "slug": "drawing-lines", "kind": "Exercise", "name": "drawing-lines", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing_rays_lines_and_line_segments"], "exercise_id": "drawing-lines"}, "volumes-of-solids-of-known-cross-section": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/solid_revolution_topic/volume-solids-known-cross-sectio/volumes-of-solids-of-known-cross-section/", "id": "volumes-of-solids-of-known-cross-section", "display_name": "Volumes of solids of known cross-section", "title": "Volumes of solids of known cross-section", "all_assessment_items": ["{\"sha\": \"8840886bb0e75c30d502b56fef811c22e30dd6ab\", \"live\": true, \"id\": \"x3d5039af37dc827a\", \"perseus_api_major_version\": null}", "{\"sha\": \"543d0f73cc0a42baab7029d645d4bf048c5de37a\", \"live\": true, \"id\": \"x6d089a98d693a642\", \"perseus_api_major_version\": null}", "{\"sha\": \"053ec640d5812c818bddaf0545ef13033ebd5869\", \"live\": true, \"id\": \"xb2c1ae9ca047b32a\", \"perseus_api_major_version\": null}", "{\"sha\": \"b80374def335f0027c9c8495d8e46fd4a432b9c9\", \"live\": true, \"id\": \"x248f658e0be78482\", \"perseus_api_major_version\": null}", "{\"sha\": \"78e33c0bd022b3a2821a2e2bdf7d4946e9b3fc10\", \"live\": true, \"id\": \"xad611b2afef5c7c7\", \"perseus_api_major_version\": null}", "{\"sha\": \"b8f475b21568e3f42342cdca62046497e6d0fc9d\", \"live\": true, \"id\": \"x032525fbae5a78c5\", \"perseus_api_major_version\": null}", "{\"sha\": \"f11f16b8030f208f268897eae044941ac9a1655a\", \"live\": true, \"id\": \"xf4b5ed409d3545ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"53d3565865b20bef7373bd6feb50278cd9eb312f\", \"live\": true, \"id\": \"xc070915aa5886770\", \"perseus_api_major_version\": null}", "{\"sha\": \"348775c371a39f844e36639eff2f2a32dbabf91a\", \"live\": true, \"id\": \"xc5872fa91d3cd6fd\", \"perseus_api_major_version\": null}", "{\"sha\": \"2e94d3796bf3497e1f72091cd3a9efb0ecc52b70\", \"live\": true, \"id\": \"x1aa5147d69d570b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"bc413b2e84a36bd0126fb7cf73f8f1ca70571ea8\", \"live\": true, \"id\": \"x1d869f5d62f1f8a6\", \"perseus_api_major_version\": null}", "{\"sha\": \"e35e3915bc1fc44695c62baec6e483cd46d98bc5\", \"live\": true, \"id\": \"x7f8431746cabc52b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"415d296291dc2f4e12eedfe18c6ebeaee268111c\", \"live\": true, \"id\": \"x4d314af437ed9fe5\", \"perseus_api_major_version\": null}", "{\"sha\": \"15bfb5329dd71ca4106c76bcb3490f7d9a7145b5\", \"live\": true, \"id\": \"x405ef34280696e0a\", \"perseus_api_major_version\": null}", "{\"sha\": \"b4a808c707178f262e091d7ceea5c6a564276965\", \"live\": true, \"id\": \"xb2a8041d1acc29e4\", \"perseus_api_major_version\": null}", "{\"sha\": \"04ef07af6cd0356b8488eb0d4387eb9dff0d0464\", \"live\": true, \"id\": \"xdebf38ffe20b7c04\", \"perseus_api_major_version\": null}", "{\"sha\": \"5afce6e33199390267fcfe4e5ce15b1f00ecc773\", \"live\": true, \"id\": \"x17c7dc92f43ca165\", \"perseus_api_major_version\": null}", "{\"sha\": \"3e9e1d5e796352fb94bdccb78c238bf864aaaa88\", \"live\": true, \"id\": \"x2afb73213468e9c6\", \"perseus_api_major_version\": null}", "{\"sha\": \"86cf0c4a9734bf0e77211e0a88988e2b5baebea7\", \"live\": true, \"id\": \"x4535970a34e1b9bd\", \"perseus_api_major_version\": null}", "{\"sha\": \"45a7326144d7eeaad0e1c8e5997a2a7965472ea1\", \"live\": true, \"id\": \"x5cad9e53a7e1baa5\", \"perseus_api_major_version\": null}", "{\"sha\": \"cc57d196c264d973fd99bc20c651339cfa81b173\", \"live\": true, \"id\": \"x8dbac920177e3eef\", \"perseus_api_major_version\": null}", "{\"sha\": \"5e8f378b611ce96cb89f9c3c5d173eb44705aefd\", \"live\": true, \"id\": \"x0085e09c9d80b092\", \"perseus_api_major_version\": null}", "{\"sha\": \"f13abda606c792cfc2ee627a29fa02fc02cf9592\", \"live\": true, \"id\": \"x213795a958884f6d\", \"perseus_api_major_version\": null}", "{\"sha\": \"b98af253ca8a470bf9a4ad2579d438559a13b4f2\", \"live\": true, \"id\": \"x751517dc1dcc9114\", \"perseus_api_major_version\": null}", "{\"sha\": \"640912c363e46dbd5959d56fc690378ebbd28dab\", \"live\": true, \"id\": \"xb6df4a562f22f991\", \"perseus_api_major_version\": null}", "{\"sha\": \"f505a0438d43aceaf7cb08616309d05f16574992\", \"live\": true, \"id\": \"x5fb5763838968d66\", \"perseus_api_major_version\": null}", "{\"sha\": \"4205805329b5667415d0ecca42068f6ce02a21bd\", \"live\": true, \"id\": \"x57a51ed0b4fc3067\", \"perseus_api_major_version\": null}", "{\"sha\": \"051f052402ee94a63529eb758e44c9338f268674\", \"live\": true, \"id\": \"x22ea99f429612f94\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8df06e758012c2792170874b5e8bca6178592a94\", \"live\": true, \"id\": \"x531c8490123c2827\", \"perseus_api_major_version\": 3}", "{\"sha\": \"be269eccfa4df09df387c1b88d4f96235263c8d4\", \"live\": true, \"id\": \"x882905f9f4c7a7f3\", \"perseus_api_major_version\": null}", "{\"sha\": \"46ee5c3c12033436d6cbd2ac71726facc2e43c1d\", \"live\": true, \"id\": \"x1815694a1081bd11\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "volumes-of-solids-of-known-cross-section", "kind": "Exercise", "name": "volumes-of-solids-of-known-cross-section", "seconds_per_fast_problem": 4.0, "prerequisites": ["integration-using-trigonometric-substitution"], "exercise_id": "volumes-of-solids-of-known-cross-section"}, "divisibility_tests": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/factors-multiples/divisibility_tests/divisibility_tests/", "id": "divisibility_tests", "display_name": "Divisibility tests", "title": "Divisibility tests", "description": "", "basepoints": 13.0, "slug": "divisibility_tests", "kind": "Exercise", "name": "divisibility_tests", "seconds_per_fast_problem": 6.0, "prerequisites": ["prime_factorization"], "exercise_id": "divisibility_tests"}, "slicing-3d-figures": {"uses_assessment_items": true, "path": "khan/math/geometry/basic-geometry/cross-sections/slicing-3d-figures/", "id": "slicing-3d-figures", "display_name": "Slicing 3D figures", "title": "Slicing 3D figures", "all_assessment_items": ["{\"sha\": \"0b0f2bb2944e343ddb5c7a606a42885b96a6114d\", \"live\": true, \"id\": \"x6b70eb108befb974\"}", "{\"sha\": \"76d5f87ea27ee37a5b612f7ad086225619aec324\", \"live\": true, \"id\": \"xe0f2940759a29b80\"}", "{\"sha\": \"ee5b948aba54bee54d2387cbd10b2ec925234cac\", \"live\": true, \"id\": \"xada8abcf9cc3ea4e\"}", "{\"sha\": \"cc2aa596ec5e20d55b7292ada8ccd9b99aa8f7de\", \"live\": true, \"id\": \"x8d78e3eed8c34e00\"}", "{\"sha\": \"70dfd468dc6405cd4fa54302595106d084df2feb\", \"live\": true, \"id\": \"x581101157bf5ca32\"}", "{\"sha\": \"5710474898709260e51c86e326a0ea5414b7a12d\", \"live\": true, \"id\": \"x462b5e87a5ace1db\"}", "{\"sha\": \"1353be495c420f69020f6f5a6ca625d56e26d1d5\", \"live\": true, \"id\": \"x7c120e3f24093a5b\"}", "{\"sha\": \"b9117b077eb3fe05a483e69e1109d1015f18b979\", \"live\": true, \"id\": \"xa33f179a801021da\"}", "{\"sha\": \"a259aee1367d6b8023b7645d577c874998292777\", \"live\": true, \"id\": \"xc8ec7679f407c09d\"}", "{\"sha\": \"3406c0687fde913832be906b6cf7833e20e63cd3\", \"live\": true, \"id\": \"x80dc1341b9007790\"}", "{\"sha\": \"80024b6df5ace9ead10960df4d95461a4188e30d\", \"live\": true, \"id\": \"x7b7f9e81dc7e0cea\"}", "{\"sha\": \"eb54d0ef36be63e6581a33f786dbae243d546c68\", \"live\": true, \"id\": \"x72bb801397b54d5e\"}", "{\"sha\": \"717684ff22ca8a4cce0a9e835994981b3b4f9969\", \"live\": true, \"id\": \"x141c0caeea18da08\"}", "{\"sha\": \"80867d1b1c54a757ad375ff6ad811d8e6adc86d6\", \"live\": true, \"id\": \"xddab61063efd799b\"}", "{\"sha\": \"c52e8e372c1b6b5e3af8fe25fbf9400ca1b6b7ec\", \"live\": true, \"id\": \"xaaf221c1e7ea291e\"}", "{\"sha\": \"3b82ba34c01012d3688a10ba84e61a3fc5401ee3\", \"live\": true, \"id\": \"x4139736ff42aefd2\"}", "{\"sha\": \"5044b6e99c62fda3f01366d77a3e6f4d5fc24449\", \"live\": true, \"id\": \"xc67926587d081df3\"}", "{\"sha\": \"ba494bdd0fbaab6785f6719e8d3171e6bdb789ad\", \"live\": true, \"id\": \"x17d7d4300a3c1b2e\"}", "{\"sha\": \"e5c75d45db588bdf33ffeee4410865d349419095\", \"live\": true, \"id\": \"x352783df3e596cf8\"}", "{\"sha\": \"510e3f2c13eebf78c0e7f6659d4b9a1d603f16a2\", \"live\": true, \"id\": \"x60af91c5a29402db\"}", "{\"sha\": \"afef3180574693d5f855e0067d0ec7fa940af3eb\", \"live\": true, \"id\": \"xa8e760f9413bc308\"}", "{\"sha\": \"587da45010bb34e66107dcc0d097b1866775509b\", \"live\": true, \"id\": \"xd6e807519fae0d9b\"}", "{\"sha\": \"0c5bcc4c6d70ca80011b013b80529f7e6df78a35\", \"live\": true, \"id\": \"x2e7aee12e3895c4c\"}", "{\"sha\": \"cc205bb8e11194a5486ad0cb479645419814d7ab\", \"live\": true, \"id\": \"x728cd6c47f90fd12\"}", "{\"sha\": \"e380385815ea2ad5eb01a6a9f52bd1464916c479\", \"live\": true, \"id\": \"x2ea82a3291511b2e\"}", "{\"sha\": \"2d19d8bc7546c1d33e9eacb634c4c16289db1eee\", \"live\": true, \"id\": \"xb0b26af2552ebf85\"}", "{\"sha\": \"c8129daaae69a364d395000af457a8bbad2e85de\", \"live\": true, \"id\": \"x209d34a33212eb67\"}", "{\"sha\": \"83ef3b66eaf988fee559c87391bccf52322f2562\", \"live\": true, \"id\": \"x8bf3dcc1812f07b6\"}", "{\"sha\": \"7379ef0bd22ca7599a52eef0c05f283d879c117e\", \"live\": true, \"id\": \"x4f1f8eb1e5cd00ec\"}", "{\"sha\": \"273367660588046b1a34232c96e8740307a817cc\", \"live\": true, \"id\": \"xa63d03bcdc40499a\"}"], "description": "", "basepoints": 10.0, "slug": "slicing-3d-figures", "kind": "Exercise", "name": "slicing-3d-figures", "seconds_per_fast_problem": 4.0, "prerequisites": ["nets-of-3d-figures"], "exercise_id": "slicing-3d-figures"}, "drawing-polygons-2": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/drawing-polygons-2/", "id": "drawing-polygons-2", "display_name": "Drawing polygons 2", "title": "Drawing polygons 2", "all_assessment_items": ["{\"sha\": \"8a4ac653b4bafb1833fce92bdd0769f8d4f7368a\", \"live\": true, \"id\": \"x1c2c1aacab8ffacf\", \"perseus_api_major_version\": null}", "{\"sha\": \"1ed247dc29a9a48fe25373c875f5ff4444145193\", \"live\": true, \"id\": \"x220dabb96a10a1a1\", \"perseus_api_major_version\": null}", "{\"sha\": \"ae3f3412939b20dc3f941057ad7aab6e8b2c645a\", \"live\": true, \"id\": \"xff2f0dcd5fcb550d\", \"perseus_api_major_version\": null}", "{\"sha\": \"57eee805251a49f0d4209cb0cabcd9b22d043262\", \"live\": true, \"id\": \"xdd7004fba1080ec9\", \"perseus_api_major_version\": null}", "{\"sha\": \"db7603c2cad64442793f6de920577aa511f20758\", \"live\": true, \"id\": \"xd567499c56e6d9f3\", \"perseus_api_major_version\": null}", "{\"sha\": \"3c7694d3bfc06a9f221d2bb5779bb0a741fa7639\", \"live\": true, \"id\": \"xf1c4cfa5df31a73b\", \"perseus_api_major_version\": null}", "{\"sha\": \"5d4ff5e5d42732456452405f1226227eda88794e\", \"live\": true, \"id\": \"x3d1fa1b6e2a6233e\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c62b8f8d416686de053e89573eaf492ea226fab\", \"live\": true, \"id\": \"x7f20de58e6042021\", \"perseus_api_major_version\": null}", "{\"sha\": \"c15a653c75a53ad948753f67f94265dd78ab420e\", \"live\": true, \"id\": \"x0fa5897aa118a7c1\", \"perseus_api_major_version\": null}", "{\"sha\": \"abf0c6bf62f458654a33dd47268e5992c1a0192f\", \"live\": true, \"id\": \"xbc13b9d1f3753c80\", \"perseus_api_major_version\": null}", "{\"sha\": \"0292d4f34370866e37eb0ab648e924fa33b0669e\", \"live\": true, \"id\": \"xa7c8a5be2095923b\", \"perseus_api_major_version\": null}", "{\"sha\": \"e1abf86c05c5037c9f799069ee828878702610e3\", \"live\": true, \"id\": \"xa7b613eeabd95ea0\", \"perseus_api_major_version\": null}", "{\"sha\": \"a60cfd36e8322c30d0ebe2b63691bcecaecdf791\", \"live\": true, \"id\": \"x91a204d9366218b6\", \"perseus_api_major_version\": null}", "{\"sha\": \"cf65ca548fe191d85231c73cdb9361a71fb7bfdb\", \"live\": true, \"id\": \"x2891d3fb19dd6723\", \"perseus_api_major_version\": null}", "{\"sha\": \"dfc2bd55c9cc1707023563afc35f2177882f4351\", \"live\": true, \"id\": \"x2fe7076e549291ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"c4bf435cd28fe77b6c1923ce3d3eb8951656a764\", \"live\": true, \"id\": \"x62c0d1498f10f307\", \"perseus_api_major_version\": null}", "{\"sha\": \"65a2d88bcb6abfbc6ca506b4f69415db7c25457b\", \"live\": true, \"id\": \"x54ae305a4ae92fed\", \"perseus_api_major_version\": null}", "{\"sha\": \"be8939088a8ce7653d061f4abaccbe16d1f3a0c9\", \"live\": true, \"id\": \"xe6e07a194d7f0d36\", \"perseus_api_major_version\": null}", "{\"sha\": \"6ef6931a60f6fba7247735962b771f7653b3b7d7\", \"live\": true, \"id\": \"x7f31274d9eea8523\", \"perseus_api_major_version\": null}", "{\"sha\": \"15db4b4bbd13c861a5a79e7cbb917a6b49c793f1\", \"live\": true, \"id\": \"x9970ec6434649eb5\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 10.0, "slug": "drawing-polygons-2", "kind": "Exercise", "name": "drawing-polygons-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["drawing-polygons"], "exercise_id": "drawing-polygons-2"}, "distribution-warmup": {"uses_assessment_items": true, "path": "khan/math/recreational-math/math-warmup/distribution-warmup/distribution-warmup/", "id": "distribution-warmup", "display_name": "Distribution warmup", "title": "Distribution warmup", "all_assessment_items": ["{\"sha\": \"84f37f32580ddc02648404b9e61abbffcbfbd08c\", \"live\": true, \"id\": \"x8b1316b9c13e6e73\"}", "{\"sha\": \"e6080284c16049202c134663c3f987c7fb7d7f1c\", \"live\": true, \"id\": \"x6978189f19184604\"}", "{\"sha\": \"1a4950a8e7ae86c21872d6a79b9c74703e21de00\", \"live\": true, \"id\": \"x0c4d5c9d85f8eff6\"}", "{\"sha\": \"b0d3da70b14ad0056a3f67ffcd50055bb2302617\", \"live\": true, \"id\": \"xc3be6ce9cb18caa0\"}", "{\"sha\": \"603fdfbabc7f2da435b701b3f2a72246489e19b9\", \"live\": true, \"id\": \"xc70edb9adebd3460\"}"], "description": "Understand that a set of data collected to answer a statistical question has a distribution which can be described by its center, spread, and overall shape.", "basepoints": 10.0, "slug": "distribution-warmup", "kind": "Exercise", "name": "distribution-warmup", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "distribution-warmup"}, "parabola_intuition_3": {"uses_assessment_items": false, "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/parabola_intuition_3/", "id": "parabola_intuition_3", "display_name": "Parabola intuition 3", "title": "Parabola intuition 3", "description": "Make one parabola overlap with another by adjusting the focus coordinates and directrix. Find the equation of the parabola.", "basepoints": 29.0, "slug": "parabola_intuition_3", "kind": "Exercise", "name": "parabola_intuition_3", "seconds_per_fast_problem": 60.0, "prerequisites": ["graphing_parabolas_2", "parabola_intuition_2"], "exercise_id": "parabola_intuition_3"}, "parabola_intuition_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/parabola_intuition_2/", "id": "parabola_intuition_2", "display_name": "Parabola intuition 2", "title": "Parabola intuition 2", "description": "Make one parabola overlap with another by adjusting the focus coordinates and directrix.", "basepoints": 25.0, "slug": "parabola_intuition_2", "kind": "Exercise", "name": "parabola_intuition_2", "seconds_per_fast_problem": 34.0, "prerequisites": ["parabola_intuition_1"], "exercise_id": "parabola_intuition_2"}, "virulence-factors-in-outbreak-strain-cholera": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/virulence-factors-in-outbreak-strain-cholera/", "id": "virulence-factors-in-outbreak-strain-cholera", "display_name": "Virulence Factors in Outbreak-Strain Cholera", "title": "Virulence Factors in Outbreak-Strain Cholera", "all_assessment_items": ["{\"sha\": \"d0e531b03d99dab87f8c092575906b4c45123c07\", \"live\": true, \"id\": \"xb5fadf61220b0f80\"}", "{\"sha\": \"c4f9edbf1907a290d964425b3e3ef34917b9fc3e\", \"live\": true, \"id\": \"x345ad78fc240eec9\"}", "{\"sha\": \"e92000031fc26382a600730c0574b55663fa9148\", \"live\": true, \"id\": \"xf5250458df3b4b1c\"}", "{\"sha\": \"be4d10ef3378965318d9eb9b9e61be034dbf2f57\", \"live\": true, \"id\": \"x515ed2ab2aba00d0\"}", "{\"sha\": \"a2cd703f9430814da12e837d44c2280662ec81d3\", \"live\": true, \"id\": \"xc090e065229a5cc4\"}"], "description": "Questions related to the structure, growth, physiology and genetics of prokaryotes and viruses.", "basepoints": 10.0, "slug": "virulence-factors-in-outbreak-strain-cholera", "kind": "Exercise", "name": "virulence-factors-in-outbreak-strain-cholera", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "virulence-factors-in-outbreak-strain-cholera"}, "volume_with_unit_cubes": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-measurement/on-volume/volume_with_unit_cubes/", "id": "volume_with_unit_cubes", "display_name": "Volume with unit cubes 1", "title": "Volume with unit cubes 1", "description": "Find volume of three-dimensional figures by counting unit cubes.", "basepoints": 13.0, "slug": "volume_with_unit_cubes", "kind": "Exercise", "name": "volume_with_unit_cubes", "seconds_per_fast_problem": 6.0, "prerequisites": ["measuring-area-with-unit-squares"], "exercise_id": "volume_with_unit_cubes"}, "baroque-art-in-holland": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/baroque-art-in-holland/", "id": "baroque-art-in-holland", "display_name": "Baroque art in Holland (quiz)", "title": "Baroque art in Holland (quiz)", "all_assessment_items": ["{\"sha\": \"fdfb0913aa604dde01601c74231b50dfa8665334\", \"live\": true, \"id\": \"xb32aa66d09226101\"}", "{\"sha\": \"82d8f6dbd99081a438f2cc7ae01fbf8e37fd8570\", \"live\": true, \"id\": \"x8719071d69632a59\"}", "{\"sha\": \"e0c7c6a1495a7b060d0b2eee708e0801662a8b3c\", \"live\": true, \"id\": \"xee99362b6032ad43\"}", "{\"sha\": \"d35787e448ed856dec4f1b14bdf6204c726fbe82\", \"live\": true, \"id\": \"x8d67c7a544ded258\"}", "{\"sha\": \"bd780ea805b8b43d502d2df5c75909d1a101d68d\", \"live\": true, \"id\": \"x9591c71ae3cb61b0\"}", "{\"sha\": \"18bc361990c3948a6370a22f5f81100010aa523e\", \"live\": true, \"id\": \"xef63eae3e51741e5\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "baroque-art-in-holland", "kind": "Exercise", "name": "baroque-art-in-holland", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "baroque-art-in-holland"}, "making-100-level-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-making-groups-of-ten/making-100-level-2/", "id": "making-100-level-2", "display_name": "Addition using groups of 10: Level 2", "title": "Addition using groups of 10: Level 2", "all_assessment_items": ["{\"sha\": \"87509b3b67c2aad3aba54a57c62a14ca5660f2d4\", \"live\": true, \"id\": \"xbb4bea497fdeebef\"}", "{\"sha\": \"ae6d7d358ba01281c352f2eb12f4f648c9d0dfba\", \"live\": true, \"id\": \"x29171207209ba746\"}", "{\"sha\": \"a101fb5faa4446acc56163c1c8db60a028a30f27\", \"live\": true, \"id\": \"x092581a5e7e7ae1c\"}", "{\"sha\": \"0492338a24486c8394f21250e4c224009298748a\", \"live\": true, \"id\": \"x2b073b0eb5b24b78\"}", "{\"sha\": \"cd71dbe64d24776154bfadd89aec09d2fb2d0442\", \"live\": true, \"id\": \"x7adc2d04b17f109a\"}", "{\"sha\": \"6887098bdc4672250c3c39d354a9247ea9d7ac2a\", \"live\": true, \"id\": \"xead6bca659e6bffb\"}", "{\"sha\": \"15656d5cc3f7fbe144df03f5bc2ecd614afaaa76\", \"live\": true, \"id\": \"xa3e18b9ff464d14a\"}", "{\"sha\": \"0fcbabf9f4c9e13d1600d5a9cfe01d3a9b226350\", \"live\": true, \"id\": \"x3430c33dd170c8a6\"}", "{\"sha\": \"463457f7b7b4da76b81393665c205a27d5df7388\", \"live\": true, \"id\": \"xd0b0caad1566f8b4\"}", "{\"sha\": \"8ac64c39bf993f6387984cec8a6817d1f90e4cd0\", \"live\": true, \"id\": \"xe6b69f416bdbf743\"}", "{\"sha\": \"b91cf089202acc2b9026fe677cfdf62a176f1d10\", \"live\": true, \"id\": \"x06ba6fa2b00d0984\"}", "{\"sha\": \"d8efed27cf7256c3716e21d9e5feec8de77ad685\", \"live\": true, \"id\": \"x6a7842834d1f2fc0\"}", "{\"sha\": \"7ad2508b2665d4dad7c823d03a19c8fae21c8af7\", \"live\": true, \"id\": \"x16502185438363f0\"}", "{\"sha\": \"b7e34c6aafc8f1fe92055e8fa76b884514ce9b6b\", \"live\": true, \"id\": \"xb4152a6afb3a27c1\"}", "{\"sha\": \"ecf46002c20b97026b37f7e86d1091a138046d54\", \"live\": true, \"id\": \"xd26221315a629f17\"}", "{\"sha\": \"566930ef13bb440635d334752bb9a921515d61be\", \"live\": true, \"id\": \"x51785010c931e66a\"}", "{\"sha\": \"42dca629906da9504ad9b19a9d6b3d3cb7a31a3a\", \"live\": true, \"id\": \"x11558c8488f4fab4\"}", "{\"sha\": \"d8f3b5b55e0769cd1b20a1de15b77c2be0a7b814\", \"live\": true, \"id\": \"xa8be417223a4d98f\"}", "{\"sha\": \"9279d258393d9807caa247381f9628dcbeeba707\", \"live\": true, \"id\": \"x9a9df7fd46b927a7\"}", "{\"sha\": \"415c5f626abd7e6c4033cf43637036b5e58a07c9\", \"live\": true, \"id\": \"x6c4401a8ff48311a\"}"], "description": "Practice more challenging problems adding two-digit numbers by making groups of ten.", "basepoints": 10.0, "slug": "making-100-level-2", "kind": "Exercise", "name": "making-100-level-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["making-100"], "exercise_id": "making-100-level-2"}, "understanding-the-ballistics-of-gene-bombardment": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/understanding-the-ballistics-of-gene-bombardment/", "id": "understanding-the-ballistics-of-gene-bombardment", "display_name": "Understanding the ballistics of gene bombardment", "title": "Understanding the ballistics of gene bombardment", "all_assessment_items": ["{\"sha\": \"4e2b9997391a7e8749e230937bde37077df29817\", \"live\": true, \"id\": \"xff3f2ee0d83f20c5\"}", "{\"sha\": \"2b680e0d79c817131d4d716c689712701b8e6ed6\", \"live\": true, \"id\": \"x2e62c63ce5ac717c\"}", "{\"sha\": \"3d214100094d72d146d4f3b13e62f43aa98b5eee\", \"live\": true, \"id\": \"x02d4c36b1f2a47fe\"}", "{\"sha\": \"c0374c1f820001f583fc16fb46e296879fa49566\", \"live\": true, \"id\": \"xc6aafbdac0ea79fa\"}", "{\"sha\": \"28d14db52acc62ba87d1ca87aad09ba217e98fd3\", \"live\": true, \"id\": \"x5ccc6541af717271\"}"], "description": "Understanding the ballistics of gene bombardment", "basepoints": 10.0, "slug": "understanding-the-ballistics-of-gene-bombardment", "kind": "Exercise", "name": "understanding-the-ballistics-of-gene-bombardment", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "understanding-the-ballistics-of-gene-bombardment"}, "attention-and-language---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/attention-and-language-passage-1/", "id": "attention-and-language---passage-1", "display_name": "Linguistic patterns of English and Navajo speakers", "title": "Linguistic patterns of English and Navajo speakers", "all_assessment_items": ["{\"sha\": \"edd9e98a156868c350700d031be4a612623cb453\", \"live\": true, \"id\": \"x0256cfc8cb2ec633\"}", "{\"sha\": \"4327623f8d8dfe59d4f7e9cdb7b15c98bf074624\", \"live\": true, \"id\": \"xce8af1affb3259cd\"}", "{\"sha\": \"66d52a380c5642c6379aba15307b94c54299e102\", \"live\": true, \"id\": \"xcb0d56c738373d76\"}", "{\"sha\": \"638b96358da80df94b9cd13e3de5c4d4d1116a63\", \"live\": true, \"id\": \"x689046888c67be53\"}", "{\"sha\": \"30652dda1db717b81b89db58770f8870669a36f0\", \"live\": true, \"id\": \"xf87f3829256e2670\"}"], "description": "", "basepoints": 10.0, "slug": "attention-and-language-passage-1", "kind": "Exercise", "name": "attention-and-language---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "attention-and-language---passage-1"}, "measurement-word-problems-with-metric-units": {"uses_assessment_items": true, "id": "measurement-word-problems-with-metric-units", "display_name": "Converting to smaller units word problems (metric)", "title": "Converting to smaller units word problems (metric)", "all_assessment_items": ["{\"sha\": \"56877193226744815a44406b9b9f1f6399cd5053\", \"live\": true, \"id\": \"xcf2a098c0f0ffcf7\"}", "{\"sha\": \"a7e4ad09283ef2cc0e0b22aed146639b9fcc3e3c\", \"live\": true, \"id\": \"xb4020781ec9340fe\"}", "{\"sha\": \"6651066f5644653fc5db53c17d45e6d44d05106a\", \"live\": true, \"id\": \"x8e9afbfb9779a28c\"}", "{\"sha\": \"fe690a070f675bdcf8b24be457600d16738619e0\", \"live\": true, \"id\": \"x41e11eb4880007fe\"}", "{\"sha\": \"ff5205ce3a84bc996b102d8311f19cb1b6efbd67\", \"live\": true, \"id\": \"x14cf1f8bf7e2dd69\"}", "{\"sha\": \"edee606da5c595424268cd89c6917374dcd94232\", \"live\": true, \"id\": \"xfaf7f73c6e75bb81\"}", "{\"sha\": \"6719f5620292bda541009c0a8fa8362e711b1992\", \"live\": true, \"id\": \"xf22a2274f4d41522\"}", "{\"sha\": \"53cdfe4162a63b518265c3a791510a12ea051f45\", \"live\": true, \"id\": \"x54ffeeb45419216c\"}", "{\"sha\": \"3f8dfc5f6cfad7f25bf20d2fc264fda3f93086a2\", \"live\": true, \"id\": \"x3d066641da2199ee\"}", "{\"sha\": \"aca93c5d6e85ae160cb3b9958141673d064ea552\", \"live\": true, \"id\": \"x2e8f4cff32c09131\"}", "{\"sha\": \"443427c3f1e9b25a96322192ffc55e4a57ef4f8c\", \"live\": true, \"id\": \"x6d8c33f762b018cd\"}", "{\"sha\": \"4f769919990ead1405cf281023e7821d0b0449cf\", \"live\": true, \"id\": \"xfcb8f426ccc389a9\"}", "{\"sha\": \"07609c6232b51c329343c79ab2570793e7ac2e87\", \"live\": true, \"id\": \"x2f30c2577af0db3d\"}", "{\"sha\": \"0bf03d59200da55b2942d76f87b373523cd26af5\", \"live\": true, \"id\": \"x40f02ee53bed65be\"}", "{\"sha\": \"29f7f9b1539a2d1bc582baf6525176dfe0104aff\", \"live\": true, \"id\": \"x5ac903963155b412\"}", "{\"sha\": \"e6db647d3d19e0e5a365923423a4850768f489ae\", \"live\": true, \"id\": \"x173ef8ec7a44d1b6\"}", "{\"sha\": \"4d7929f3eb3668c91a00d92a721e96b05a3087e9\", \"live\": true, \"id\": \"x9cecffff9f24a88f\"}", "{\"sha\": \"36de5ae4dd00fd68b6f4524cf3119bbe9a07a301\", \"live\": true, \"id\": \"x02ccdd39692cc43f\"}"], "description": "Convert a measure to a smaller unit to solve a word problem. \u00a0Units include metric measures of distance, volume, and mass.", "basepoints": 10.0, "path": "measurement-word-problems-with-metric-units/", "slug": "measurement-word-problems-with-metric-units", "kind": "Exercise", "name": "measurement-word-problems-with-metric-units", "seconds_per_fast_problem": 4.0, "prerequisites": ["measurement-units"], "exercise_id": "measurement-word-problems-with-metric-units"}, "attention-and-language---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/attention-and-language-passage-2/", "id": "attention-and-language---passage-2", "display_name": "Language deficits and traumatic brain injury", "title": "Language deficits and traumatic brain injury", "all_assessment_items": ["{\"sha\": \"78fb29087b16d467ca02be9efea667c270105511\", \"live\": true, \"id\": \"x253f435a1f99c0f3\"}", "{\"sha\": \"9dda96c09e00ae87f0ca700fc06208f11b66094b\", \"live\": true, \"id\": \"x009689ff27bdaae7\"}", "{\"sha\": \"330831ba9cd1a6f5090bae0587f41ee424e86315\", \"live\": true, \"id\": \"xcc51baf407449f9a\"}", "{\"sha\": \"27fce8a5dba013f0d4505b33348ac73686bcd6da\", \"live\": true, \"id\": \"x21e263b6662ccb92\"}", "{\"sha\": \"d12500f6a91207626da45254c4c60d0c4e49cdbb\", \"live\": true, \"id\": \"x674725ea23f8782d\"}"], "description": "", "basepoints": 10.0, "slug": "attention-and-language-passage-2", "kind": "Exercise", "name": "attention-and-language---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "attention-and-language---passage-2"}, "plotting_the_line_of_best_fit": {"uses_assessment_items": false, "path": "khan/math/probability/regression/regression-correlation/plotting_the_line_of_best_fit/", "id": "plotting_the_line_of_best_fit", "display_name": "Estimating the line of best fit", "title": "Estimating the line of best fit", "description": "Given a random assortment of points, find the best fit line for them.", "basepoints": 13.0, "slug": "plotting_the_line_of_best_fit", "kind": "Exercise", "name": "plotting_the_line_of_best_fit", "seconds_per_fast_problem": 6.0, "prerequisites": ["slope-intercept-equation-from-graph"], "exercise_id": "plotting_the_line_of_best_fit"}, "rococo-art": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/rococo/rococo-art/", "id": "rococo-art", "display_name": "Rococo Art", "title": "Rococo Art", "all_assessment_items": ["{\"sha\": \"db05cc3323b9b1c71ade9a6da74f760e5a8a2ca0\", \"live\": true, \"id\": \"xf618f73843146d14\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8d0d13349800b4c9e370287213fefc1946f68f1\", \"live\": true, \"id\": \"x82a0d42593183397\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c27e761e36b62a1d0c4fdfd95abbcfdf0e6cd6c6\", \"live\": true, \"id\": \"x58f5c5e8a8f68a51\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d83d3756ce813c1c45676a4f5343ed43e2fd26f3\", \"live\": true, \"id\": \"x4dc0ca226d1e747b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa3fe2ead595d6ccc00297bc9fb6b4ecb9113128\", \"live\": true, \"id\": \"x0e66c52672528180\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cb3b04c97560156c1a424b53e7b3c5a5e36aa142\", \"live\": true, \"id\": \"x5a7ddc40285875e2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d197b137ea3c763d769b7f78ab63c452fe381043\", \"live\": true, \"id\": \"xa403e80ec729aecb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "rococo-art", "kind": "Exercise", "name": "rococo-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "rococo-art"}, "two-way-relative-frequency-tables": {"uses_assessment_items": true, "id": "two-way-relative-frequency-tables", "display_name": "Two-way relative frequency tables", "title": "Two-way relative frequency tables", "all_assessment_items": ["{\"sha\": \"ffb2bef3a9f807fcb73c6565b58fe2555560eaf2\", \"live\": true, \"id\": \"xa6cd9e12084a49dc\"}", "{\"sha\": \"38224e78e4ca6956a8d98b93bb459e9d3037a976\", \"live\": true, \"id\": \"x685c307042f594b7\"}", "{\"sha\": \"a3c8db0585e47dc042c26acd0113ce617f51a33d\", \"live\": true, \"id\": \"x60c7b1944f307fd3\"}", "{\"sha\": \"055bf38e998fc1f8e5668a75a1694d0d8c39649d\", \"live\": true, \"id\": \"x12eb494d3f7e5f37\"}", "{\"sha\": \"b7e77d1ffdb013fe1db685d7b0172ae02a128fd5\", \"live\": true, \"id\": \"x7a0c94a44a3dfa7a\"}", "{\"sha\": \"d5123fe6c4f44f2589cc98166bea6342cbb61f09\", \"live\": true, \"id\": \"x86727b81e46bb9e1\"}", "{\"sha\": \"9dcfdcb48e19d738cedbabb7c626ecba842ce228\", \"live\": true, \"id\": \"x2346992ca5888687\"}", "{\"sha\": \"6d4c19a2641331579fa4c42151d35da472f56b1f\", \"live\": true, \"id\": \"xbbfaab465f14084d\"}", "{\"sha\": \"2c36f5bf34bd1cbbb59e7d16a9fd734ef72f8147\", \"live\": true, \"id\": \"x5ac986d9a295360e\"}", "{\"sha\": \"dc41fb3101b8f3c6b2c1dff21a8e67573c34ec7f\", \"live\": true, \"id\": \"xf8c4b944923bb30f\"}", "{\"sha\": \"59ac7ca4b6bd9fad5732543aa38c07f757997618\", \"live\": true, \"id\": \"x566e06491c002c2a\"}", "{\"sha\": \"bb75b982c3de3c80d36b3dd8db7c855b28af24ca\", \"live\": true, \"id\": \"x68043bd6c4f1adc9\"}", "{\"sha\": \"075333d6ef2554357854e16c50c40d4e0737aba3\", \"live\": true, \"id\": \"xd22ab36a7c44ba1c\"}", "{\"sha\": \"cd77b0f0bf8bf8fb0e22a3eb1b4857c6053b5b56\", \"live\": true, \"id\": \"x082a0417469c5430\"}", "{\"sha\": \"a5fbdbf178cd60f5c7e62c9b56d2d140897b1848\", \"live\": true, \"id\": \"xf0c1de91e06ce06c\"}", "{\"sha\": \"506129ad792ef6a9965b772af3f49e3c3133d575\", \"live\": true, \"id\": \"x8262bb9952721c61\"}", "{\"sha\": \"26c198c65a3c153c4fb14f3e010a40fbfcd53bed\", \"live\": true, \"id\": \"xc98517f278e29bc0\"}", "{\"sha\": \"8b6b860bf1cef9a42023318b0f23370de5df1708\", \"live\": true, \"id\": \"xcfb85a97aa52bcd1\"}", "{\"sha\": \"555372fbdb4366fd332589983cc9e6421ede1082\", \"live\": true, \"id\": \"x149eae76b215e5f4\"}", "{\"sha\": \"744cb7c0ad76c0ad72b0f3d93195ffd8628d9b3b\", \"live\": true, \"id\": \"x1c732541fda95e96\"}", "{\"sha\": \"76502baa005d74a7b6c81f3b756731fa4daad7ea\", \"live\": true, \"id\": \"x7a08656aac02694e\"}", "{\"sha\": \"b9bddcd97c79300edcaa07a55c1df1fee2cd8ee4\", \"live\": true, \"id\": \"x5f8bf06d851ec4f5\"}", "{\"sha\": \"f645c7338a9a12f8d51bd22e0b2b17f7b611e956\", \"live\": true, \"id\": \"x7d13e42bfb86542e\"}", "{\"sha\": \"fdb39103029f620359a924d5acaa01696a8c66df\", \"live\": true, \"id\": \"x877710f8c1326c93\"}", "{\"sha\": \"0ca78a5a920e0d09df78b2ae83756b904b0fecb5\", \"live\": true, \"id\": \"x9b217f37b3cf9bc8\"}", "{\"sha\": \"faaf639510ca618161fc848805afb856b23074aa\", \"live\": true, \"id\": \"xd6a971c15953dc18\"}", "{\"sha\": \"e247bc489f936368a4ce103d4a7e2af07f6dac1b\", \"live\": true, \"id\": \"x683f466957e877cb\"}", "{\"sha\": \"002f2dd3c10c2af4ef1d6eb052c49252e22aae04\", \"live\": true, \"id\": \"xdbdab6cdc894dc27\"}", "{\"sha\": \"12e420798f8a8aa1df840c31649b245cd4730901\", \"live\": true, \"id\": \"xcda83a40270bd347\"}", "{\"sha\": \"fb4a059a3e5993e4c078a631bd7f25368f40a71f\", \"live\": true, \"id\": \"xbccf421f7de3c5e9\"}", "{\"sha\": \"5a32f801412622a6c018c01b5d348ffb8eb6662d\", \"live\": true, \"id\": \"xddf895e473b60723\"}", "{\"sha\": \"a928dbad5f2088fbfc0768b90ac69f42b1f430ab\", \"live\": true, \"id\": \"xae843121ff29429d\"}"], "description": "", "basepoints": 10.0, "path": "two-way-relative-frequency-tables/", "slug": "two-way-relative-frequency-tables", "kind": "Exercise", "name": "two-way-relative-frequency-tables", "seconds_per_fast_problem": 4.0, "prerequisites": ["two-way-frequency-tables"], "exercise_id": "two-way-relative-frequency-tables"}, "scientific_notation": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-scientific-notation/scientific_notation/", "id": "scientific_notation", "display_name": "Scientific notation", "title": "Scientific notation", "description": "Practice expressing numbers in scientific notation.", "basepoints": 19.0, "slug": "scientific_notation", "kind": "Exercise", "name": "scientific_notation", "seconds_per_fast_problem": 14.0, "prerequisites": ["scientific_notation_intuition"], "exercise_id": "scientific_notation"}, "central--inscribed--and-circumscribed-angles": {"uses_assessment_items": true, "path": "khan/math/geometry/cc-geometry-circles/central-inscribed-circumscribed/central-inscribed-and-circumscribed-angles/", "id": "central--inscribed--and-circumscribed-angles", "display_name": "Central, inscribed, and circumscribed angles", "title": "Central, inscribed, and circumscribed angles", "all_assessment_items": ["{\"sha\": \"de1496996789ba48276b44e4ac883079eac9cbc0\", \"live\": true, \"id\": \"x88370f1fb415622c\"}", "{\"sha\": \"dffa19262c31f8b0b39e21ab0730f61f70f092bd\", \"live\": true, \"id\": \"xe9a95c76a30719b7\"}", "{\"sha\": \"ea2cdaaa6232e11a482da237e401a251d7e8dffa\", \"live\": true, \"id\": \"xf64e0325b8c6d0ee\"}", "{\"sha\": \"c3c27866fef4f245d5be6e17efa982abc06c4abb\", \"live\": true, \"id\": \"x27f173e4b83f6f08\"}", "{\"sha\": \"2814651cbeeebd5fbd316e0549c4543f7c8445bd\", \"live\": true, \"id\": \"x153dbe0890f3e3bf\"}", "{\"sha\": \"286f5d51b91465b3c4177c0ef788b48990c4b983\", \"live\": true, \"id\": \"x21bd870b289238fe\"}", "{\"sha\": \"d95ed69ee6de90e6b27c9facc1e4adf02db48bfd\", \"live\": true, \"id\": \"x5384d498228bad57\"}", "{\"sha\": \"3e730b16e978686910422e5165b5353ee280b1a2\", \"live\": true, \"id\": \"x6a1cfbaf5b123816\"}", "{\"sha\": \"54f8d8adbf69256cfca9d8c8d1376b8fd85ee9c2\", \"live\": true, \"id\": \"xfa36b24ca48232e2\"}", "{\"sha\": \"2f384f1d6fe39462e0d2d093d69f45d5426558ce\", \"live\": true, \"id\": \"x9085a292829c0982\"}", "{\"sha\": \"6ff4abeef98f52c91afc4a8d40bcbb85db30e575\", \"live\": true, \"id\": \"x4f0da0cc1d6b1914\"}", "{\"sha\": \"4267c6329513b61a6114e8d2b31c05a2548138a0\", \"live\": true, \"id\": \"xe449ad56c4ef05d0\"}", "{\"sha\": \"4658f75d954831782f6a12170745f7e43b055f84\", \"live\": true, \"id\": \"xd676d1ca3645c394\"}", "{\"sha\": \"c76a24fe9ab11f4d1b8e35df31fa2936d929494d\", \"live\": true, \"id\": \"xccdf1cc8d70c4a70\"}", "{\"sha\": \"7c323748ee4f361ba09cde7431e1b94dac041cd6\", \"live\": true, \"id\": \"x49dc90db71764a50\"}", "{\"sha\": \"02af8fb5c68db77937163599b8b981a519d3b759\", \"live\": true, \"id\": \"x2cba279f7605eee4\"}", "{\"sha\": \"5de37d38e58f2c931985ccfbadfe9d6c66009e7c\", \"live\": true, \"id\": \"xa9688da06059742c\"}", "{\"sha\": \"5e3db27f597bf678ab60137b4ac75e9be3b0dd85\", \"live\": true, \"id\": \"x5d778397064d4149\"}", "{\"sha\": \"3b1bd3a7efc4d5e2895e0ec3db06c2bdbc0e51a8\", \"live\": true, \"id\": \"x8efbdd6b13f49f23\"}", "{\"sha\": \"746d5bf9764bda88eceb295255baae686e2841c7\", \"live\": true, \"id\": \"x74819a1e3b104d01\"}", "{\"sha\": \"936bb87a111f791b95f39380e61064bac45ba04f\", \"live\": true, \"id\": \"xdf85050bad65f474\"}", "{\"sha\": \"2dbbd7aad0fdd31696ba7191dc575ff307f85700\", \"live\": true, \"id\": \"xa9bc6a10e7f4721e\"}", "{\"sha\": \"89c57e072170092bd28ab00f9c0604bf8ee026e6\", \"live\": true, \"id\": \"x5f9accb835f8d39c\"}", "{\"sha\": \"091dbfab1e4980c29d039adf992e00863b85f2e2\", \"live\": true, \"id\": \"xaa68c41b28fc68b5\"}", "{\"sha\": \"d7969415f34e58c845566b750e4e89998be3c008\", \"live\": true, \"id\": \"x59fc1d3b5891f044\"}", "{\"sha\": \"05b4f11ddc210f3b8ac41962037c95d5aed412ee\", \"live\": true, \"id\": \"x31afa44ca53ec9a8\"}", "{\"sha\": \"7a6664cbfd47d141ff708d29853748042cb675fd\", \"live\": true, \"id\": \"xa65d5d0152f6da0c\"}", "{\"sha\": \"b5a1cd94061537d59934b0973be0b67ef090f7ad\", \"live\": true, \"id\": \"xbe33b7d9fdb6d452\"}", "{\"sha\": \"9134912dd29f7aec3560340cce0b1ae30f260941\", \"live\": true, \"id\": \"x928e65b75919a8aa\"}", "{\"sha\": \"b287bf250774529a1cb8745e31f00f598d8815d0\", \"live\": true, \"id\": \"x754a9825a0e351de\"}"], "description": "", "basepoints": 10.0, "slug": "central-inscribed-and-circumscribed-angles", "kind": "Exercise", "name": "central--inscribed--and-circumscribed-angles", "seconds_per_fast_problem": 4.0, "prerequisites": ["inscribed_angles_1"], "exercise_id": "central--inscribed--and-circumscribed-angles"}, "nclex-rn-questions-on-shock-2-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-shock-2-1/", "id": "nclex-rn-questions-on-shock-2-1", "display_name": "NCLEX-RN questions on shock 2", "title": "NCLEX-RN questions on shock 2", "all_assessment_items": ["{\"sha\": \"e22c1b16404dd36a67dcd0b50974d67da2e0ea68\", \"live\": true, \"id\": \"x7115a531d2c1cc7d\"}", "{\"sha\": \"b07fed4d50a99c5cf56c40c11888af042edb2450\", \"live\": true, \"id\": \"xb2da9d81b1102431\"}", "{\"sha\": \"8c4bae6643d6eaad2851b5fa1df9333fa64d43b2\", \"live\": true, \"id\": \"x244464b740822681\"}", "{\"sha\": \"44f262735dd449ff6bdd9b2348a7e5e2d40cedba\", \"live\": true, \"id\": \"xa6403ab92607116e\"}", "{\"sha\": \"71d2ffb0b196461a357afbee2685163831d82170\", \"live\": true, \"id\": \"xa514cdc9570f46c8\"}"], "description": "More questions related to shock", "basepoints": 10.0, "slug": "nclex-rn-questions-on-shock-2-1", "kind": "Exercise", "name": "nclex-rn-questions-on-shock-2-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-shock-2-1"}, "comparing-area-and-perimeter": {"uses_assessment_items": true, "id": "comparing-area-and-perimeter", "display_name": "Comparing area and perimeter", "title": "Comparing area and perimeter", "all_assessment_items": ["{\"sha\": \"000a37badaa5ff380d4f746d4fab82c491ea7585\", \"live\": true, \"id\": \"x4246192364070183\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d9428765bfc74459ad92af3fc58a39165eb60246\", \"live\": true, \"id\": \"x324a02d05b62f27c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"dfd3388a150ab6059c843b09e24c241c0a5690ec\", \"live\": true, \"id\": \"x9f9e17be029aa1cd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"31afee0cb3787ce7d80dcc4140182ea6502fada1\", \"live\": true, \"id\": \"x92854523d2077fe0\", \"perseus_api_major_version\": 0}", "{\"sha\": \"06ebe6eecb9d34a942a12cf0ad8e0b8ce4c01f2a\", \"live\": true, \"id\": \"xc503f6f0b809725b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ff7bd28cbb232c8545eaa5c9c9c4b92fcd01d4d1\", \"live\": true, \"id\": \"x5fc279ab847446a5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b975437dc059f7ae7529bfb5bc4d690b6a0e68e0\", \"live\": true, \"id\": \"x67f4c8a3e6b479c2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"143d03b9a44aeb38c0d1a14896eb8566c4977361\", \"live\": true, \"id\": \"xf0337f0129751eec\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5b2abe8251b38cfa5177a12a9cbdc52e1d392efd\", \"live\": true, \"id\": \"xe0c18453697d3eca\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ef46103ca9de0283e700dda42eb520e1b22defd3\", \"live\": true, \"id\": \"xb2c9c89632bce218\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c081d50cb47fc84706c54abdb541fbcc35bffda5\", \"live\": true, \"id\": \"x2ec3bb629746c974\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4a01eb514174a0eb55486752709ca8a7f707bfe0\", \"live\": true, \"id\": \"x7acef40321846ed1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"da40887b2f5e431227f432706119fae8a8603a96\", \"live\": true, \"id\": \"xe109eecf41a2d449\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3a6d4c9bfdd01e4d0051c37bb4b1584dd4f4008d\", \"live\": true, \"id\": \"x105a1571f9c7da1a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"18db6f3cc33234a4b8bf9a21432153d94f46bb29\", \"live\": true, \"id\": \"x15230844b893376d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ef7811ddcee196c3e66608fdd5ba7c82e27172a8\", \"live\": true, \"id\": \"xbded2702273576fd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"07ef60b15cd45cfb8e245aa6d658c89d2269e383\", \"live\": true, \"id\": \"x448b0ff0466743f0\", \"perseus_api_major_version\": null}", "{\"sha\": \"e64ca82a0191077676567d7d316a32623bd8f49d\", \"live\": true, \"id\": \"x13d83c174d9cc0ce\", \"perseus_api_major_version\": null}", "{\"sha\": \"25d682402762c28703f886eef9d26587e1c2b069\", \"live\": true, \"id\": \"xb7bdaec6730c8dac\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0b0192e556edf7cf3d14915a248844040fbcb99f\", \"live\": true, \"id\": \"xd652fca51d47cf0a\", \"perseus_api_major_version\": 0}"], "description": "Compare the areas and perimeters of rectangles when given a context or picture.", "basepoints": 10.0, "path": "comparing-area-and-perimeter/", "slug": "comparing-area-and-perimeter", "kind": "Exercise", "name": "comparing-area-and-perimeter", "seconds_per_fast_problem": 4.0, "prerequisites": ["perimeter_of_squares_and_rectangles", "comparing-areas-by-multiplying"], "exercise_id": "comparing-area-and-perimeter"}, "comparing_whole_numbers": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/comparing_whole_numbers/", "id": "comparing_whole_numbers", "display_name": "Comparing two-digit numbers", "title": "Comparing two-digit numbers", "description": "Practice comparing numbers using the symbols <, >, and =. All numbers in these problems are\u00a0within 100.", "basepoints": 10.0, "slug": "comparing_whole_numbers", "kind": "Exercise", "name": "comparing_whole_numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-2-digit-numbers"], "exercise_id": "comparing_whole_numbers"}, "systems_of_equations_with_substitution": {"uses_assessment_items": true, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/systems_of_equations_with_substitution/", "id": "systems_of_equations_with_substitution", "display_name": "Solving systems of linear equations with substitution", "title": "Solving systems of linear equations with substitution", "all_assessment_items": ["{\"sha\": \"4eedcf871e5a507e726fffa1246eaa88d7cbb457\", \"live\": true, \"id\": \"xd4a6320e2cef14ca\"}", "{\"sha\": \"b47116732bddd4f1db11361018ab7f884b1ddda4\", \"live\": true, \"id\": \"xeb158883427a799b\"}", "{\"sha\": \"a5312e0a2c736369db62a03e45721b0d0fa86951\", \"live\": true, \"id\": \"xe91872b071b83664\"}", "{\"sha\": \"7a6e2abb2b1c443144f8617880b1bd73c557e05f\", \"live\": true, \"id\": \"xb44fbe76f979bf78\"}", "{\"sha\": \"f891333dc6aa453228f407b65aae8beb5dd3010c\", \"live\": true, \"id\": \"xbeb0b136ef8efb52\"}", "{\"sha\": \"2b5ae471c6cba44b75cc55a24482c2059446bb8b\", \"live\": true, \"id\": \"x8422be1835d1575a\"}", "{\"sha\": \"9890d94d5b988a0dc24b27aa7fe49d3ad6af10b0\", \"live\": true, \"id\": \"x4b929d547ae11f3b\"}", "{\"sha\": \"d55b358e46538008f92bba3fce8469e25bda333c\", \"live\": true, \"id\": \"x3b8b75e860cf2ec9\"}", "{\"sha\": \"0e4ca169081aa328a23451f1c6bf132384e232a2\", \"live\": true, \"id\": \"x6cce8a99470b297b\"}", "{\"sha\": \"e1624ddbc8480b067981e6ed6c352f7db1b934a3\", \"live\": true, \"id\": \"xb81e16283f119cdd\"}", "{\"sha\": \"8f14f1c3a04779499a2414d06263a04581a69bd0\", \"live\": true, \"id\": \"xd5fc6641f8ce5ed2\"}", "{\"sha\": \"271dce81b36e241d07d41c102b3eac1e9df034fd\", \"live\": true, \"id\": \"x1a10df688e086d68\"}", "{\"sha\": \"2f9e08e7d4bbcdc99a7a214a6b65fb5e742a7f6a\", \"live\": true, \"id\": \"x5edc9bc2e4b5e3ef\"}", "{\"sha\": \"c7bb1d307b1fba110705f28fd98f97577af56a61\", \"live\": true, \"id\": \"xc175acb30f4bef33\"}", "{\"sha\": \"66bf78dc44d710526f3ad1b7c3e7e994c448db19\", \"live\": true, \"id\": \"x2a1876ca51e9c5a4\"}", "{\"sha\": \"2bba0a7f9d71b55b6c03c317cc922711688f2c6a\", \"live\": true, \"id\": \"x0cb9d75f463e6abf\"}", "{\"sha\": \"e46ddc6de0a74bca7e0ccc1a14bcc74c23fafce0\", \"live\": true, \"id\": \"xdcbeaa434f2d744b\"}", "{\"sha\": \"67ae89d74ce81b4611f0de0ddca3246bc68f1f91\", \"live\": true, \"id\": \"xd71aacbc376dc397\"}", "{\"sha\": \"0b3d609b2da9611e70d5831c503b0309ba443aa2\", \"live\": true, \"id\": \"x116e461bb8db2b20\"}", "{\"sha\": \"c5b0f02da99f95bded8b467eba1ea67f8875c930\", \"live\": true, \"id\": \"xbd1bc4e9a131b5d3\"}"], "description": "Solve systems of equations using substitution", "basepoints": 29.0, "slug": "systems_of_equations_with_substitution", "kind": "Exercise", "name": "systems_of_equations_with_substitution", "seconds_per_fast_problem": 60.0, "prerequisites": ["graphing_systems_of_equations"], "exercise_id": "systems_of_equations_with_substitution"}, "how-do-organisms-maintain-a-constant-ph-range-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/how-do-organisms-maintain-a-constant-ph-range-/", "id": "how-do-organisms-maintain-a-constant-ph-range-", "display_name": "How do organisms maintain a constant pH range?", "title": "How do organisms maintain a constant pH range?", "all_assessment_items": ["{\"sha\": \"83398a188982f3bec5f6c115ba1575491f165727\", \"live\": true, \"id\": \"xe2332adee0e77cb5\"}", "{\"sha\": \"61c14ed3d3eb1c9cd3da3035c460579de3304710\", \"live\": true, \"id\": \"x85b6ef41a65d48c5\"}", "{\"sha\": \"bdf38cf19068fca7f65d0db34e4addc39b825bbf\", \"live\": true, \"id\": \"x2fd78bf9e9acd705\"}", "{\"sha\": \"57e50718f5808b35646b4fb50e572ef9b20a5159\", \"live\": true, \"id\": \"x992ee94d6713336e\"}", "{\"sha\": \"899822e2cba65ec2d0724c30ef607be7ee2bb704\", \"live\": true, \"id\": \"x56e9275adcb7c8c2\"}"], "description": "Questions related to acids and bases", "basepoints": 10.0, "slug": "how-do-organisms-maintain-a-constant-ph-range-", "kind": "Exercise", "name": "how-do-organisms-maintain-a-constant-ph-range-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "how-do-organisms-maintain-a-constant-ph-range-"}, "ratio_word_problems": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/rates-and-ratios/ratios_and_proportions/ratio_word_problems/", "id": "ratio_word_problems", "display_name": "Ratio word problems", "title": "Ratio word problems", "all_assessment_items": ["{\"sha\": \"c2d241a78047ba750e1c40f88747a01d8c7c3605\", \"live\": true, \"id\": \"x077f66343feb496c\"}", "{\"sha\": \"fd3d9c544c39a4eda53d80e58234355b5d46df01\", \"live\": true, \"id\": \"xec97060a2666a4b1\"}", "{\"sha\": \"557cb93787591e881705d23fd9c67a1431179fb6\", \"live\": true, \"id\": \"xef8cbd3909d64b70\"}", "{\"sha\": \"f6d77bb9ac8e9271b3324339a90d71f053baadc7\", \"live\": true, \"id\": \"xca0b2ed04d6dbdab\"}", "{\"sha\": \"06f777ae34338d07596013667c99250c03dda310\", \"live\": true, \"id\": \"x4eb3ac34885319ec\"}", "{\"sha\": \"5d413b95c824b869060be36799f3ffcb608fab8d\", \"live\": true, \"id\": \"x9b8d912e4b727c3d\"}", "{\"sha\": \"28dce3ee25e06cb5872f7d91d4fd07560bfd153e\", \"live\": true, \"id\": \"xff6fb0c560c6768b\"}", "{\"sha\": \"ff2395d6d425d0c3ca8a9d5959bdb7f65da6bd4f\", \"live\": true, \"id\": \"xb81a1f6153d372be\"}", "{\"sha\": \"ca2f607815c10495dbb9293386e40c199f2a4fa6\", \"live\": true, \"id\": \"xf356ada1adee8d5d\"}", "{\"sha\": \"b025645312e196738e9f90fcee9fd332a9073e99\", \"live\": true, \"id\": \"xcfcb3314873348f3\"}", "{\"sha\": \"635ce4c88fa429fded4511c4e771cd34aa1203cc\", \"live\": true, \"id\": \"xe8bb190ec3c332dd\"}", "{\"sha\": \"49dada3adbc05d83daa282135111372be6dee91f\", \"live\": true, \"id\": \"x8469c34c0fbf6d01\"}", "{\"sha\": \"dd16ed150d3d8f6ddde4c50bbfaada13915f31ed\", \"live\": true, \"id\": \"xe20bf8ba88c20cb7\"}", "{\"sha\": \"6706f071b4950bc48918e80c55c56435a6ce6f2a\", \"live\": true, \"id\": \"x60c69be36f244b25\"}", "{\"sha\": \"76682752cde85183a6577d37676fbd0d7d9d04b1\", \"live\": true, \"id\": \"x7e2f66c94b6524bb\"}", "{\"sha\": \"c7b7e9665a8d231d6be09d3839a34b2038868f4f\", \"live\": true, \"id\": \"xaaddc462f3b4cde7\"}", "{\"sha\": \"cfe6a15bc380ca27df078ed282bf94c546bc800e\", \"live\": true, \"id\": \"x7781cb19f41c3d2f\"}", "{\"sha\": \"d79ca821764c1663b5fb794a398f4a5c29cf2468\", \"live\": true, \"id\": \"xe42c8f9ba7a0958e\"}", "{\"sha\": \"cec44541e973f53964029daccfc74b81a3961366\", \"live\": true, \"id\": \"x1a16d372afa911e4\"}", "{\"sha\": \"a5ebc78f383b6cf4ce3f7c8410780d84e7c9101c\", \"live\": true, \"id\": \"xc18ea1a0aad6f0ec\"}"], "description": "Practice solving basic ratio word problems.", "basepoints": 17.0, "slug": "ratio_word_problems", "kind": "Exercise", "name": "ratio_word_problems", "seconds_per_fast_problem": 11.0, "prerequisites": ["representing-ratios"], "exercise_id": "ratio_word_problems"}, "sequences-as-functions": {"uses_assessment_items": true, "path": "khan/math/precalculus/seq_induction/precalc-geometric-sequences/sequences-as-functions/", "id": "sequences-as-functions", "display_name": "Explicit formulas for geometric sequences", "title": "Explicit formulas for geometric sequences", "all_assessment_items": ["{\"sha\": \"f0c5cf102d97cb7e173d9929b443e2d9802d99ad\", \"live\": true, \"id\": \"x13f657f0c62d1c2c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"54cf8fbf6fd0078dbb56b16b9fb674cee8776e5c\", \"live\": true, \"id\": \"x7c985055501e333e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e054c9ed0f70e17991b558203e3b39074542120c\", \"live\": true, \"id\": \"x46aed1d7955d5d4f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e957ada03827100df3c1e5f969e6e245c8f4d42d\", \"live\": true, \"id\": \"xad6efc7de632296a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7cdc2257f03a4d57e1b8f26cc6745a733a22199f\", \"live\": true, \"id\": \"x4065bda80f3ee323\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ee370cf3b4690024f9a997c81c081330dd90acd0\", \"live\": true, \"id\": \"x5a1d31c755a7880b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"46d2ecd0f30ce633d3b16a2dde7a3e7197436845\", \"live\": true, \"id\": \"xd8873237bbd9c62b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7bfd78fe4ec8063e4e37dd215c788bc95682e5a3\", \"live\": true, \"id\": \"xa993f21036826d06\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e20212245030606d456468fa38b9ce01f4a229a2\", \"live\": true, \"id\": \"x13a5eb9111d0876e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db9aad8d70bbb91502e37f6de7f7f9ec3844ccb6\", \"live\": true, \"id\": \"x0174d050b78a021a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"822dbc47ff4c6a7a362d1854101c5b0d7bba4cc7\", \"live\": true, \"id\": \"x2209a2c5e7f64301\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9313b9255f4e77dfd1506a9b3a5240352d08a43\", \"live\": true, \"id\": \"xc2aa0d0f8171e8fd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bfa0183e2fab6210922c2166c67ee55db3a1b75f\", \"live\": true, \"id\": \"x49153557ab71b6bc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bec3db301b87a16c2eab6f671095ac5af921589a\", \"live\": true, \"id\": \"xa9eb75383258f5f3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9dd3ce3b1a24fd1063b9dfb784411ad13032248f\", \"live\": true, \"id\": \"x55ed60b05d101843\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ec063c17aa03ebe0b1fd5858686e0d6436eac30d\", \"live\": true, \"id\": \"x00e0138ee23c3241\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7a30f954727fda4497331ef5c44e3725a791037a\", \"live\": true, \"id\": \"x471b07111c3e011a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5cd2825759fc88fb57f077eb5e1d1ee811c9fa0d\", \"live\": true, \"id\": \"xab45a9ffe5049ca1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"364682167e03ec751080ecb671696fb5c513bb20\", \"live\": true, \"id\": \"x9e316abbfff3889a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f5770dca4ef8ed825cad993234ce1b2c3a75e63a\", \"live\": true, \"id\": \"xcfffd5581fea72db\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "sequences-as-functions", "kind": "Exercise", "name": "sequences-as-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["geometric_sequences_2"], "exercise_id": "sequences-as-functions"}, "follicular-lymphoma--bcl-2--and-cell-growth": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/follicular-lymphoma-bcl-2-and-cell-growth/", "id": "follicular-lymphoma--bcl-2--and-cell-growth", "display_name": "Follicular Lymphoma, Bcl-2, and Cell Growth", "title": "Follicular Lymphoma, Bcl-2, and Cell Growth", "all_assessment_items": ["{\"sha\": \"4d6fce652f32d9eefcdcb999f3d41bcc511b5cd0\", \"live\": true, \"id\": \"xb8d656f0f0e31ada\", \"perseus_api_major_version\": null}", "{\"sha\": \"e314dcf906b3a209c62e4989668fa5ffebb4adae\", \"live\": true, \"id\": \"x3e5caf7aab8755da\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b6707099b1f14a3d831f5a228d3dac6336961b5f\", \"live\": true, \"id\": \"xe6112d203773bb2b\", \"perseus_api_major_version\": null}", "{\"sha\": \"55af695fb4bafbb3018845be4ef71d551a87274d\", \"live\": true, \"id\": \"xbe5cdea14c38ab94\", \"perseus_api_major_version\": null}", "{\"sha\": \"2453f135a9e0f4168a82dc332db39ea4efb3d766\", \"live\": true, \"id\": \"xf31238c7271b19da\", \"perseus_api_major_version\": null}"], "description": "Follicular Lymphoma, Bcl-2, and Cell Growth", "basepoints": 10.0, "slug": "follicular-lymphoma-bcl-2-and-cell-growth", "kind": "Exercise", "name": "follicular-lymphoma--bcl-2--and-cell-growth", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "follicular-lymphoma--bcl-2--and-cell-growth"}, "more-square-and-cube-root-problems": {"uses_assessment_items": true, "id": "more-square-and-cube-root-problems", "display_name": "More square and cube root problems", "title": "More square and cube root problems", "all_assessment_items": ["{\"sha\": \"825881f85ceef42940fb0c76b40f6362ef371bf2\", \"live\": true, \"id\": \"xbbdfea8691f004f5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4dfdcb96f2f95d999926200a475b40d04223bb60\", \"live\": true, \"id\": \"x00e45a8a2ba4ac85\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a991129387bfdde453f7e7a05e5f8a7a06ffbdc8\", \"live\": true, \"id\": \"xc33176bc0b6f8142\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dad5bd7151ad653c78bd852557a716d34e5f1d38\", \"live\": true, \"id\": \"xf5f33f92fbbb2419\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16b7def47331539963e819a3dac9ba18f7068faa\", \"live\": true, \"id\": \"x85a629c3a535e95f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ee630f9fc3ddfd24e777b04a7a10a924d78ae443\", \"live\": true, \"id\": \"x7c2058c0f6be21a8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"68b9913f79068e60d119563651a395b57598f39e\", \"live\": true, \"id\": \"x581ca2c43f638242\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8f3020d59dc3661befb4549cdfd2d471c9d4ee0a\", \"live\": true, \"id\": \"x1adc8ab5a196ff7b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c5694a76b456023247aabad325cb0f6f75e72892\", \"live\": true, \"id\": \"xd29985ad8984ab78\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92d4d447f5ee6f3f0ab3a685aada0ac1c657892c\", \"live\": true, \"id\": \"x982c5ccf9f963b06\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"789e053eac0dcc467602709ef58573145e63accb\", \"live\": true, \"id\": \"xf1ab4f4c68a3d68e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4baa621f2d612d8e4a8cc39f036cc12f0df6ff54\", \"live\": true, \"id\": \"xdef01bd9a2b4348f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"af50ad888744692d60b550239f3722fc31188128\", \"live\": true, \"id\": \"x1a5c6a14dc6247e6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2491004f4f13a3481e5a639d3bf612d67dcaa60f\", \"live\": true, \"id\": \"x920a33111519c448\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f4038c54fbf62fc7bd28532a54327fc3ec64d0d9\", \"live\": true, \"id\": \"x0f1d0dd90eb82a99\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"afebe82797e0bde6e9867545c3d79fecfd10b187\", \"live\": true, \"id\": \"x30746eb85d6034cb\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dd49092508e5a8e11b377a50b602035621d40c57\", \"live\": true, \"id\": \"x0e07c0a7f0c16c46\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c5be17c13566d389eee02d944d705c71584150a3\", \"live\": true, \"id\": \"xf96bdf21d54da31a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41c1a27e4230dc4f81d1bc877b6802fcb5dc7de0\", \"live\": true, \"id\": \"x356178f0f46c8218\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5194f8a6d566a001b7ccaf05767e49f42e75a736\", \"live\": true, \"id\": \"x305697a813061e6f\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d4a8f791c53c0f3a7b355b43ffd56b78807109f3\", \"live\": true, \"id\": \"x76c921b96a43a10c\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}"], "description": "Practice solving problems using your knowledge of square and cube roots.", "basepoints": 10.0, "path": "more-square-and-cube-root-problems/", "slug": "more-square-and-cube-root-problems", "kind": "Exercise", "name": "more-square-and-cube-root-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["equations-w-square-and-cube-roots"], "exercise_id": "more-square-and-cube-root-problems"}, "product_rule": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/product_rule/", "id": "product_rule", "display_name": "Product rule", "title": "Product rule", "all_assessment_items": ["{\"sha\": \"d597d552ca048cd3189e57b3a29020403e1e1fa9\", \"live\": true, \"id\": \"xfda3f7e1783c61a3\"}", "{\"sha\": \"4d5471363f6209f58741d679f678b309530b58a5\", \"live\": true, \"id\": \"xb21f543e663ed452\"}", "{\"sha\": \"82f1e67f0464994e70f287de29b6a1f3c5072853\", \"live\": true, \"id\": \"x4dd744bb55df7437\"}", "{\"sha\": \"e8b5135f69d113bf774a768cd2b1e7333d71f30d\", \"live\": true, \"id\": \"x0037c60f2f944a4b\"}", "{\"sha\": \"556cc1aea7ba77d450c9034b57dcb0e90d596084\", \"live\": true, \"id\": \"x272b14dedee07045\"}", "{\"sha\": \"aa9a635165d880f29b8906de503fa8df3e5bc5b5\", \"live\": true, \"id\": \"x54d922f83487c382\"}", "{\"sha\": \"9293a95b3f2e003ee20b74554f9e52bee7bfa642\", \"live\": true, \"id\": \"x0f0c70b6f5a43fee\"}", "{\"sha\": \"0a5b2a941ff114d68d9e11136fbb30cc5cec802d\", \"live\": true, \"id\": \"xdf77501b4e41742c\"}", "{\"sha\": \"5f0bceb0524f539c34d386dde979ab15f7c831e6\", \"live\": true, \"id\": \"xa359fbe30f7f496f\"}", "{\"sha\": \"2fbb988d56c919802396d0cb07d77465b1ebb104\", \"live\": true, \"id\": \"x26aeff3b04e4cbfd\"}", "{\"sha\": \"df37b3baac1434adafbd41bcbe316c88f0dabb99\", \"live\": true, \"id\": \"x3c245a7194575e3c\"}", "{\"sha\": \"bc48976d8251eedd81479d582f61b99e32959f0c\", \"live\": true, \"id\": \"xa0d515f3892e08ce\"}", "{\"sha\": \"29f3e571df89e44d242d3467da996612d09d2628\", \"live\": true, \"id\": \"xa1d9021ebbb4a56d\"}", "{\"sha\": \"acfe86ea43b430ae28e2717eb082886d7b94e2e7\", \"live\": true, \"id\": \"xbe2b7c53be8088fa\"}", "{\"sha\": \"d2787f5386eb987f50fd7712d96e8a3cc0a7de14\", \"live\": true, \"id\": \"x91e91e00164df1de\"}", "{\"sha\": \"1c4c5144ba4e7a6c51ec3438065d3f8da80c8b15\", \"live\": true, \"id\": \"x528adfea1cea735f\"}", "{\"sha\": \"110d12a97bdf5aa95998ee9612b4c30e926b08d7\", \"live\": true, \"id\": \"xdbfede355f6954c9\"}", "{\"sha\": \"962d277276826c5f8c199ccb1c1fb456d071d1a7\", \"live\": true, \"id\": \"x0ad01442d6a06f1b\"}", "{\"sha\": \"a0fe582d7f8282ce27c563fb87d5e4fd748547e1\", \"live\": true, \"id\": \"xf2b87b6b74d68421\"}", "{\"sha\": \"06a0c7ad40dde11908fe00f82c6c2faf295c0a3f\", \"live\": true, \"id\": \"x0d9eca6cb85cbff6\"}", "{\"sha\": \"9119a97222ea70ed06b6be26cf71ae38e6b4b558\", \"live\": true, \"id\": \"x83102c66f11073c0\"}", "{\"sha\": \"537acc0b363a3ec3cb4695f52975bd2c1e18b149\", \"live\": true, \"id\": \"x186794fc93f94c91\"}", "{\"sha\": \"a8a0df5d9fc2ad2d5702ba1829d67bb7217dcf59\", \"live\": true, \"id\": \"xba3afc8ffccd6387\"}", "{\"sha\": \"03dce640f31e21e2ccff3a30ebe6e51aa895b113\", \"live\": true, \"id\": \"x86a701e13e8db456\"}", "{\"sha\": \"9dc5e4ba77c639e1d944e75400c14eb833892c8c\", \"live\": true, \"id\": \"x655ae0bcce300b0b\"}", "{\"sha\": \"ea059f16b113901d91b54bb073dc84f95a1786f6\", \"live\": true, \"id\": \"x02200fb3426eaa04\"}", "{\"sha\": \"df5bbd9f36cbda826de311106d68088c4602fdbe\", \"live\": true, \"id\": \"x27f1981ee55cb05a\"}", "{\"sha\": \"5e8cbf755099a5525e607b62b106ed6b601acc45\", \"live\": true, \"id\": \"xe82a5fae9b456cf1\"}", "{\"sha\": \"005b3deb7783ce55f4535ab0697957795094d439\", \"live\": true, \"id\": \"x2f4331a42236e63a\"}", "{\"sha\": \"75fcff0fa4fc85b8e2ca9a6a5692a6b59b479fcc\", \"live\": true, \"id\": \"xfd1a990fde51ba0f\"}", "{\"sha\": \"f9a7ccfe08841342573822c36b6dbdc1667b64ed\", \"live\": true, \"id\": \"xeeb983294c45ef34\"}", "{\"sha\": \"1f16d77d4fe303d8490015913c19ef0f2b649a12\", \"live\": true, \"id\": \"x6259a63ce84008e2\"}"], "description": "", "basepoints": 26.0, "slug": "product_rule", "kind": "Exercise", "name": "product_rule", "seconds_per_fast_problem": 41.0, "prerequisites": ["power_rule", "special_derivatives"], "exercise_id": "product_rule"}, "relate-division-to-multiplication": {"uses_assessment_items": true, "id": "relate-division-to-multiplication", "display_name": "Relate division to multiplication", "title": "Relate division to multiplication", "all_assessment_items": ["{\"sha\": \"55f750ed72e77d1944f3ebae27111da9597bfd61\", \"live\": true, \"id\": \"x6e16a436db6542eb\"}", "{\"sha\": \"6dd40b64fa6c1eca4bdb6b36bd8dc1f418f10d32\", \"live\": true, \"id\": \"x8a59c70f1c46f60d\"}", "{\"sha\": \"ca17072a2f40abbe3053bee891a1da2249742645\", \"live\": true, \"id\": \"xcd1245a8fd40a0d3\"}", "{\"sha\": \"f0102a6bd7c2c6b26a7d81dc90180afcafbb0e8c\", \"live\": true, \"id\": \"x315f8c5d377b09e7\"}", "{\"sha\": \"571a3c250ec807232e161659733b22eee062fccf\", \"live\": true, \"id\": \"xeb2afa4befee7596\"}", "{\"sha\": \"15845d42958a0a22a60d007e468b71ab90b6ef3e\", \"live\": true, \"id\": \"x2dbcf6518bfb1194\"}", "{\"sha\": \"523d461df76f542fdd9b2a5513aa160b9b5d209c\", \"live\": true, \"id\": \"x951abd1dbdcf9cd8\"}", "{\"sha\": \"044c165564be43c4262337d679f1382280bb946e\", \"live\": true, \"id\": \"x27e9d555fa0713f5\"}", "{\"sha\": \"1b7d81d83e1f5a5cfa087d489c211924d57633dd\", \"live\": true, \"id\": \"xafc3f173c79be873\"}", "{\"sha\": \"643501a877885d8270cffa95289d2eac369bde60\", \"live\": true, \"id\": \"xdd1d76e01c85e392\"}", "{\"sha\": \"b453c85d5d382a327babc188b90aeb6e0b6de0a0\", \"live\": true, \"id\": \"xc773f965659c5b9a\"}", "{\"sha\": \"9eaccdbe91631195cceb2fb58b370cedbd952e4f\", \"live\": true, \"id\": \"x425148276415fb6d\"}", "{\"sha\": \"5c6dde4590303be5c53fe062748412b0a31944a4\", \"live\": true, \"id\": \"x0659de62cb48fa60\"}", "{\"sha\": \"c678a2cf8cec60371c08bfcf02194d209a85d898\", \"live\": true, \"id\": \"xe7b2ccc4a9542d7e\"}", "{\"sha\": \"63a80db8ca3bcbaa8ff8d0bd2f87ddabad77ffe5\", \"live\": true, \"id\": \"xf941d6f515d56e29\"}", "{\"sha\": \"ab1c2c1eacd75e32262a8399bc269e779389459c\", \"live\": true, \"id\": \"x97add4505b2c6573\"}", "{\"sha\": \"740ef796e3412bf3b345f97add381b388d07aed0\", \"live\": true, \"id\": \"x23063396ddda827f\"}", "{\"sha\": \"c9d1bf70037dc6abe54636a3ce2e89e18ca16a35\", \"live\": true, \"id\": \"xddc44ed76ad46437\"}", "{\"sha\": \"b274b705ba4950a276e75ce976284a0b990b448c\", \"live\": true, \"id\": \"x479ded539e79631c\"}", "{\"sha\": \"603c6b340b071caa00fc8bc1755e4a3a5ba1b7ae\", \"live\": true, \"id\": \"x2ccfc9af42e57d2e\"}", "{\"sha\": \"7304c05e9248c57fad21b7401e72d0f373058b51\", \"live\": true, \"id\": \"x45c4e890feea9086\"}", "{\"sha\": \"db968fb8c8770b317683120510ef3eb7ad1c439d\", \"live\": true, \"id\": \"xbd42316eaa6c6be1\"}", "{\"sha\": \"f8e134f72dfd50369944c7df0069346cc32b6c0d\", \"live\": true, \"id\": \"x069b7848b6288005\"}", "{\"sha\": \"5c7e41596001378fedcdfd5da7d88ecfb8384905\", \"live\": true, \"id\": \"x06c8244141ba5dfc\"}", "{\"sha\": \"202d0915a477d974627109ad09ed5933a1b6c76b\", \"live\": true, \"id\": \"x41418d5cb61d0b28\"}", "{\"sha\": \"31c7ddb289e52687752080587b117ec3fdb4a666\", \"live\": true, \"id\": \"xb31e481b9911b23e\"}"], "description": "See the relationship between multiplication and division problems.", "basepoints": 10.0, "path": "relate-division-to-multiplication/", "slug": "relate-division-to-multiplication", "kind": "Exercise", "name": "relate-division-to-multiplication", "seconds_per_fast_problem": 4.0, "prerequisites": ["division_1"], "exercise_id": "relate-division-to-multiplication"}, "gas-phase-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/gas-phase/gas-phase-questions/", "id": "gas-phase-questions", "display_name": "Gas phase questions", "title": "Gas phase questions", "all_assessment_items": ["{\"sha\": \"85b5095c752a9620487180a6789f6b7e1c9974fd\", \"live\": true, \"id\": \"xa356faf0965bea4c\"}", "{\"sha\": \"75ecd5b1036410aa823c554e6762e1199bddf23e\", \"live\": true, \"id\": \"x7595651bc4a88ad1\"}", "{\"sha\": \"9a4b2a010a35521cbe1da8a3bf72644827a736be\", \"live\": true, \"id\": \"xaee6b2e84c23019d\"}", "{\"sha\": \"3e7d2814d06fc79c3873dbae79e576d22bf094c4\", \"live\": true, \"id\": \"x43d8f2ad18ba4862\"}", "{\"sha\": \"6a42036aa5bb809638fc4cf54b070d504ddc2ebf\", \"live\": true, \"id\": \"x834147cd37c506ef\"}", "{\"sha\": \"c536859853b9d5d715b3eb798d781e47fa3f0502\", \"live\": true, \"id\": \"xf62faea22c8bc4ef\"}", "{\"sha\": \"02ebd0021abc4a5bd6990127775babbadd9f8bb2\", \"live\": true, \"id\": \"x430f4e963ac4dce9\"}", "{\"sha\": \"333c29f6ad2ebff8dfbe985506d1384bd1186d49\", \"live\": true, \"id\": \"x19059ed86389bfd5\"}", "{\"sha\": \"1ba4745163c8e37a9e8e4ea739c2f725b4a753b4\", \"live\": true, \"id\": \"x80bc23a88869561d\"}", "{\"sha\": \"7775e129ec437de77461ebb1a7093d9e8ce7180b\", \"live\": true, \"id\": \"xe9534caa67aeac93\"}"], "description": "Gas phase questions", "basepoints": 10.0, "slug": "gas-phase-questions", "kind": "Exercise", "name": "gas-phase-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gas-phase-questions"}, "constructions_1": {"uses_assessment_items": false, "path": "khan/math/geometry/geometry-worked-examples/constructions_1/", "id": "constructions_1", "display_name": "Compass constructions 1", "title": "Compass constructions 1", "description": "Circles and straight-edges, oh my!", "basepoints": 25.0, "slug": "constructions_1", "kind": "Exercise", "name": "constructions_1", "seconds_per_fast_problem": 33.0, "prerequisites": ["parallel_lines_2", "graphing_circles_2"], "exercise_id": "constructions_1"}, "constructions_2": {"uses_assessment_items": false, "path": "khan/math/geometry/geometric-constructions/polygons-inscribed-in-circles/constructions_2/", "id": "constructions_2", "display_name": "Compass constructions 2", "title": "Compass constructions 2", "description": "", "basepoints": 10.0, "slug": "constructions_2", "kind": "Exercise", "name": "constructions_2", "seconds_per_fast_problem": 4.0, "prerequisites": ["constructions_1", "exploring-rigid-transformations-and-congruence"], "exercise_id": "constructions_2"}, "constructions_3": {"uses_assessment_items": false, "path": "khan/math/geometry/geometric-constructions/constructing-tangents/constructions_3/", "id": "constructions_3", "display_name": "Constructing a line tangent to a circle", "title": "Constructing a line tangent to a circle", "description": "", "basepoints": 5.0, "slug": "constructions_3", "kind": "Exercise", "name": "constructions_3", "seconds_per_fast_problem": 0.0, "prerequisites": ["constructions_1"], "exercise_id": "constructions_3"}, "rate_problems_2": {"uses_assessment_items": false, "path": "khan/math/algebra/ratio-proportion-topic/advanced-ratios/rate_problems_2/", "id": "rate_problems_2", "display_name": "Rate problems 2", "title": "Rate problems 2", "description": "", "basepoints": 14.0, "slug": "rate_problems_2", "kind": "Exercise", "name": "rate_problems_2", "seconds_per_fast_problem": 7.0, "prerequisites": ["rate_problems_1"], "exercise_id": "rate_problems_2"}, "rate_problems_1": {"uses_assessment_items": true, "id": "rate_problems_1", "display_name": "Rate problems 1", "title": "Rate problems 1", "all_assessment_items": ["{\"sha\": \"991ac3e2ab56ca95269937562de021e5737c0e67\", \"live\": true, \"id\": \"xb328ec7b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90b2b9773a0eb30840f791136209c5b595f2f374\", \"live\": true, \"id\": \"x7677b728\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"395d3a7fd1261fcfc530c63153632545c16c9ad2\", \"live\": true, \"id\": \"x9b8f43d6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3ed2eaa126edb02ac2522de555fe53e95dfe63cb\", \"live\": true, \"id\": \"x551c6d07\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0ae32bc58a89c3f8aff802dea9339b506fbcf4f2\", \"live\": true, \"id\": \"x4ee5d7d8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"63cdd68cffe3365d663ee2ad21aa209fa9214301\", \"live\": true, \"id\": \"x400fb646\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"67383cdc31f35a66930bd1013df6186373ab2dae\", \"live\": true, \"id\": \"xc852e135\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"31ca5c1d52ea31c589c9ad31ebda398aad4e4d4c\", \"live\": true, \"id\": \"x220c430a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88d212d317be17ac4049c8bbdb6698588a222045\", \"live\": true, \"id\": \"x5f9730bb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"da2aed40e0d7b61246acd5c14d95ad15048cf8e9\", \"live\": true, \"id\": \"x7198b3e2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d920874c98820cf92e3b9e0c79c3b631d5cf3f50\", \"live\": true, \"id\": \"x5e1dda98\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"06f5d01948c8f9d23ab9859f3f189e9004c6b7cd\", \"live\": true, \"id\": \"xb5f096de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5ef390f39e00504158cbb58265a3102e50809694\", \"live\": true, \"id\": \"x0a3a7e52\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b4b499ebdc4fd35db8ffcfbe2c81ba794b032d08\", \"live\": true, \"id\": \"xd6c22ccb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"766f497b608026df2b15490517c46095dde8fb7c\", \"live\": true, \"id\": \"xf8c4f74f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fac33a677c3856b346f2d151b868856513732435\", \"live\": true, \"id\": \"x24198872\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6c8a69f38854cb88bfc887273d732aff0b9270a\", \"live\": true, \"id\": \"xdbc4791d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fb04cbb3f05f5047aa83ffb71618531e9e87ba31\", \"live\": true, \"id\": \"x0921bcab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 29.0, "path": "rate_problems_1/", "slug": "rate_problems_1", "kind": "Exercise", "name": "rate_problems_1", "seconds_per_fast_problem": 60.0, "prerequisites": ["understanding-fractions-as-division", "visualizing-and-interpreting-relationships-between-patterns"], "exercise_id": "rate_problems_1"}, "dividing_fractions_word problems_2": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/div-fractions-fractions-pre-alg/dividing_fractions_word-problems_2/", "id": "dividing_fractions_word problems_2", "display_name": "Dividing fractions by fractions and whole numbers applications", "title": "Dividing fractions by fractions and whole numbers applications", "description": "", "basepoints": 21.0, "slug": "dividing_fractions_word-problems_2", "kind": "Exercise", "name": "dividing_fractions_word problems_2", "seconds_per_fast_problem": 20.0, "prerequisites": ["dividing_fractions_1.5"], "exercise_id": "dividing_fractions_word problems_2"}, "complex-fractions": {"uses_assessment_items": true, "id": "complex-fractions", "display_name": "Simplifying hairy fractions", "title": "Simplifying hairy fractions", "all_assessment_items": ["{\"sha\": \"289e86c4a3a03b21286f42582774f9ac1446805a\", \"live\": true, \"id\": \"x1478b0b302cf5a7d\"}", "{\"sha\": \"365f9e4edc5b5793545fce96556c1c30b3c14596\", \"live\": true, \"id\": \"x7a68346e74658b11\"}", "{\"sha\": \"9bea3e3f7e25c077c72cce1d8afa99a7d984472c\", \"live\": true, \"id\": \"x4f27670224885cd6\"}", "{\"sha\": \"4aae46a77db1e270590f7669391f0cb3504eeb02\", \"live\": true, \"id\": \"xc090f6e72134f3d9\"}", "{\"sha\": \"b4636b2fab01d4e9baa4758293eff9650e135626\", \"live\": true, \"id\": \"x55a4aa8d7fc6daa5\"}", "{\"sha\": \"6085dd147766936457055f26ad80e5fdb1351d2c\", \"live\": true, \"id\": \"x0b93ae85f1da9f67\"}", "{\"sha\": \"cdb437cd96b99d9f591856587014c5f77d203916\", \"live\": true, \"id\": \"xb316304bfb01ff99\"}", "{\"sha\": \"3a174fd1ec97b60ef472eee2e11993aa40caf173\", \"live\": true, \"id\": \"x22cd5993000d40b9\"}", "{\"sha\": \"3a15eb8a355a5ed3f481db9135f7a5b0370341ec\", \"live\": true, \"id\": \"xef927f945cc408c7\"}", "{\"sha\": \"f78895617f4292959b48f2f06bb9585049d845bb\", \"live\": true, \"id\": \"xa5aeb7df8f234949\"}", "{\"sha\": \"3959fe1875a14a32e0b5fe5263a55699440bd8ca\", \"live\": true, \"id\": \"x61a967f8a1894d49\"}", "{\"sha\": \"d7b790336c47f4d0903e9590287bd1a5edb13415\", \"live\": true, \"id\": \"xf6562d806f5a7051\"}", "{\"sha\": \"710eac8e99ee8e94c49131e59b4baf5b56efcf73\", \"live\": true, \"id\": \"x483078b753716b41\"}", "{\"sha\": \"270aef0244f2cecca84d27986ea37bcb0649a775\", \"live\": true, \"id\": \"xb88bc131ea1c54c0\"}", "{\"sha\": \"cbc55a7f24b11e995f7b5cb9e680b99da81a8650\", \"live\": true, \"id\": \"xcf3cad9787cb2e8a\"}", "{\"sha\": \"c0340a060f81bd642d64b263a4bda368c4af3b87\", \"live\": true, \"id\": \"x8a023483e8494ccc\"}", "{\"sha\": \"4eb6b795695c575c8fa9ac19025279b30c9194fd\", \"live\": true, \"id\": \"x887ab2642f7d2d7e\"}", "{\"sha\": \"23848a614c5e25998d5a03ad2d5e671e33ce9e6b\", \"live\": true, \"id\": \"x88d4bbc0fb1fbdcc\"}", "{\"sha\": \"a8b765ab88b115d25ca871f0acaaad80a48b418c\", \"live\": true, \"id\": \"x55b29301d9649e93\"}", "{\"sha\": \"870d5024d5efd519ee5be98424873244c2580a2b\", \"live\": true, \"id\": \"x21a459484f56be78\"}", "{\"sha\": \"93adf771cb809d2313cda2ab0ad2613c09d22b08\", \"live\": true, \"id\": \"x02c7959f12a515ea\"}", "{\"sha\": \"464a40081bed1c5c4a026f93d0d169cd2dfe3084\", \"live\": true, \"id\": \"x937238d79afd507e\"}", "{\"sha\": \"950d18210c5c5786399b9aa69577a26130052bab\", \"live\": true, \"id\": \"x8e9d5ee18f676e79\"}", "{\"sha\": \"6f3e0e5eb6c03b2846fc6319205e6594bf638732\", \"live\": true, \"id\": \"x526ca86e52526f4c\"}", "{\"sha\": \"e6d88a8945cc2a34c17e152d52e09a5099b80bd6\", \"live\": true, \"id\": \"x3cfdb5a06667d5b0\"}", "{\"sha\": \"290c787936ffce47185b575a894877b59463ef95\", \"live\": true, \"id\": \"xadbd079d91927dbe\"}", "{\"sha\": \"66b9b306eb615fe97866693625f8a84dbedfd444\", \"live\": true, \"id\": \"xdc6f1a3e40799666\"}", "{\"sha\": \"0e447cc9913ab0e04f8941f2e51a865dc142b629\", \"live\": true, \"id\": \"xc0a4cee81a7217eb\"}"], "description": "Practice simplifying complex fractions.", "basepoints": 10.0, "path": "complex-fractions/", "slug": "complex-fractions", "kind": "Exercise", "name": "complex-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["negative-signs-in-numerators-and-denominators"], "exercise_id": "complex-fractions"}, "converting_mixed_numbers_and_improper_fractions": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/converting_mixed_numbers_and_improper_fractions/", "id": "converting_mixed_numbers_and_improper_fractions", "display_name": "Converting mixed numbers and improper fractions", "title": "Converting mixed numbers and improper fractions", "description": "Practice writing a fraction as a mixed number and vice versa.", "basepoints": 19.0, "slug": "converting_mixed_numbers_and_improper_fractions", "kind": "Exercise", "name": "converting_mixed_numbers_and_improper_fractions", "seconds_per_fast_problem": 14.0, "prerequisites": ["division_2", "equivalent_fractions"], "exercise_id": "converting_mixed_numbers_and_improper_fractions"}, "representing-relationships-with-matrices": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/representing-relationships-with-matrices/", "id": "representing-relationships-with-matrices", "display_name": "Representing relationships with matrices", "title": "Representing relationships with matrices", "all_assessment_items": ["{\"sha\": \"44834360d31fadf05114b3d128f9f3dff82bdbd8\", \"live\": true, \"id\": \"x887412852b05c872\", \"perseus_api_major_version\": null}", "{\"sha\": \"a177b5ffedbac840d40828a526f8677c9c7adde6\", \"live\": true, \"id\": \"xbde82ae71a166720\", \"perseus_api_major_version\": null}", "{\"sha\": \"252f54696242545ae227bc5d7fb45213a1a782ca\", \"live\": true, \"id\": \"xde16b3bf71e69435\", \"perseus_api_major_version\": null}", "{\"sha\": \"ceaf2a2f3e426c8040434f2987cae3689010d37a\", \"live\": true, \"id\": \"x29af1630282c1bdd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"edc5dd72ab17b3f5bb985e5fb08714f6f4c5a7d0\", \"live\": true, \"id\": \"xbf5555fd93767c2a\", \"perseus_api_major_version\": null}", "{\"sha\": \"5c39b29c551e454966300bf204378d511d4ba6f4\", \"live\": true, \"id\": \"xcb06eb43200e4183\", \"perseus_api_major_version\": null}", "{\"sha\": \"765832f6b5011a273cbb986a1c8f521e4e54acbe\", \"live\": true, \"id\": \"x90401a2f3af90f6e\", \"perseus_api_major_version\": null}", "{\"sha\": \"78fdfb74fba4bf57d6e03b13eea8df27a0105741\", \"live\": true, \"id\": \"xbaaa4f8c46099bd7\", \"perseus_api_major_version\": null}", "{\"sha\": \"d3922bc2da64b797797657c25d7756f573e6d1ee\", \"live\": true, \"id\": \"x7a6f0a8be5076039\", \"perseus_api_major_version\": null}", "{\"sha\": \"a6564d789e8dfc766722789197e1f266c670f38c\", \"live\": true, \"id\": \"xdf16b47e07d9b490\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b5b7bd2dc2fd6ef7a40ecbba14ae704ef359a82\", \"live\": true, \"id\": \"xa1f8d2279f751e62\", \"perseus_api_major_version\": null}", "{\"sha\": \"460759ebfd6504b8a7e79b913f9d126cbe2f9ae2\", \"live\": true, \"id\": \"xf908c2bc779c5401\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5fc0be4228e67017c6dfbe87b6d39cb01bc3467\", \"live\": true, \"id\": \"x35aba4315e3c2dc6\", \"perseus_api_major_version\": null}", "{\"sha\": \"a6393005830cf736e35456867247f715e347e05d\", \"live\": true, \"id\": \"x5a27cea0495cb9e2\", \"perseus_api_major_version\": null}", "{\"sha\": \"62d6deae6627ba290c6407a2af5f36931418f2b2\", \"live\": true, \"id\": \"xdf8e421242355dcb\", \"perseus_api_major_version\": null}", "{\"sha\": \"500f60aed52084695a192fbd14d11f93f6642e4f\", \"live\": true, \"id\": \"x540674f6107f611d\", \"perseus_api_major_version\": null}", "{\"sha\": \"cd060ee4532d80486369e732ab6f7f8660e250fb\", \"live\": true, \"id\": \"x0dae5acf592fa995\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a33dbefc7bafe40745879c0646cb97f74fdda26\", \"live\": true, \"id\": \"x9cd2600c314eedcc\", \"perseus_api_major_version\": null}", "{\"sha\": \"4508d16571fe2dd12936064cdbaa1fccd1367d82\", \"live\": true, \"id\": \"x381bc02d228fe133\", \"perseus_api_major_version\": null}", "{\"sha\": \"d57768342a847a85474c8a7097caba8f4358a04d\", \"live\": true, \"id\": \"x5c2483a7fb0f40dc\", \"perseus_api_major_version\": null}", "{\"sha\": \"30383ac7d1aee3dca0183d86754c8d40d70eb9e6\", \"live\": true, \"id\": \"x7d9ff776c66abb33\", \"perseus_api_major_version\": null}", "{\"sha\": \"6d7ca6403781c6e4be5c4f796c8f4bf45f149498\", \"live\": true, \"id\": \"xa2c1dded28c1ee16\", \"perseus_api_major_version\": null}", "{\"sha\": \"3fae2268ed676c9030c9293365a3de1c3844e855\", \"live\": true, \"id\": \"xa5cd8aa33cc9e038\", \"perseus_api_major_version\": null}", "{\"sha\": \"3cffec91175d906a0dfa5a1d018045348a917984\", \"live\": true, \"id\": \"xf55e42b56ac40cd4\", \"perseus_api_major_version\": null}", "{\"sha\": \"0cca6ea999ac6297a24793d1d111b5cc527ea6aa\", \"live\": true, \"id\": \"x8f1d1e13d4cf1d3c\", \"perseus_api_major_version\": null}", "{\"sha\": \"3aec7cc67fcf9d6eb87e0755284e324e65c077b2\", \"live\": true, \"id\": \"xa74aa39f5185ea75\", \"perseus_api_major_version\": null}", "{\"sha\": \"1a3dacfe6732eaaa75a02ea88c8085ca0ce3bfab\", \"live\": true, \"id\": \"x995ef0f65299a395\", \"perseus_api_major_version\": null}", "{\"sha\": \"3992461b861cf98ae3bcc57813cb76a2a5ca37ee\", \"live\": true, \"id\": \"x5295032d803a4a11\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a36a7060a2c63f778cd7531c20269b8bb7c546e\", \"live\": true, \"id\": \"x7c103f55f03c9c2c\", \"perseus_api_major_version\": null}", "{\"sha\": \"8adfc5fdee713eb08d86c4420b21253205e0c7b5\", \"live\": true, \"id\": \"x3ea1117d64572281\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "representing-relationships-with-matrices", "kind": "Exercise", "name": "representing-relationships-with-matrices", "seconds_per_fast_problem": 4.0, "prerequisites": ["matrix_dimensions"], "exercise_id": "representing-relationships-with-matrices"}, "solving_quadratics_by_factoring": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/solving_quadratics_by_factoring/", "id": "solving_quadratics_by_factoring", "display_name": "Solving quadratics by factoring", "title": "Solving quadratics by factoring", "description": "Factor quadratics to find the x-intercepts. Solve a polynomial by factoring.", "basepoints": 19.0, "slug": "solving_quadratics_by_factoring", "kind": "Exercise", "name": "solving_quadratics_by_factoring", "seconds_per_fast_problem": 14.0, "prerequisites": ["factoring_polynomials_1"], "exercise_id": "solving_quadratics_by_factoring"}, "graphing_systems_of_equations": {"uses_assessment_items": true, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/graphing_systems_of_equations/", "id": "graphing_systems_of_equations", "display_name": "Solving systems of equations graphically", "title": "Solving systems of equations graphically", "all_assessment_items": ["{\"sha\": \"6a75df138bfc2f87ba31dca7fe64d9ece1b11550\", \"live\": true, \"id\": \"x47a910ce6b5784e2\"}", "{\"sha\": \"1b012c07ba65986d022fd13abbc986b11e6b341a\", \"live\": true, \"id\": \"x42f372d87e77f20c\"}", "{\"sha\": \"7c3f24e88f5ccf67b11514bda89aee9504b12978\", \"live\": true, \"id\": \"x567ef691054dfbfe\"}", "{\"sha\": \"663b9384480914644f0d93b24cf782de7fb64efa\", \"live\": true, \"id\": \"xcd14c41979f4e20a\"}", "{\"sha\": \"44bd1aca61e07432ebd1b7e24657a6235216786f\", \"live\": true, \"id\": \"xfa78964b7697cb56\"}", "{\"sha\": \"b32d15872daafe7307a88d70f8150f12ab28a392\", \"live\": true, \"id\": \"x7293d3f4a58875fc\"}", "{\"sha\": \"025021ec913a853a843a743db90803cc0223f428\", \"live\": true, \"id\": \"x6ea3c789c94de7b3\"}", "{\"sha\": \"b0aacd18764678e8fdbee51fb1c3fe3ad2f0d53a\", \"live\": true, \"id\": \"x32e58b54bfcd9d8b\"}", "{\"sha\": \"9a5365370fdfd51a2c502ee581ae407c1a6a5066\", \"live\": true, \"id\": \"x4ba2f6a1b58e0f29\"}", "{\"sha\": \"8a634dedd9f2a13d006ebfff5ea2adaa875565b4\", \"live\": true, \"id\": \"x3c4a3348f92002cf\"}", "{\"sha\": \"d044fe8dd43a1d40e6dfe63f822ea89b6188d6bb\", \"live\": true, \"id\": \"x17655e79f69878da\"}", "{\"sha\": \"3b612249446472f7a0a870944ce73a25c632dee5\", \"live\": true, \"id\": \"x313e5192189961c2\"}", "{\"sha\": \"a4e6d0dc37ebe2111ccf8d95847b6f042e1b37e7\", \"live\": true, \"id\": \"x96768bb55a136d97\"}", "{\"sha\": \"be18b987361cfead809b1b350f2308583bd5b4a5\", \"live\": true, \"id\": \"x8cf2088bcd630e40\"}", "{\"sha\": \"cce9f6b8317300f6c7d0bf996cd57af881eb0c63\", \"live\": true, \"id\": \"x682511c020156ee2\"}", "{\"sha\": \"ff900c1ebbd35a243c581b00b6957aabb4595bf3\", \"live\": true, \"id\": \"xab50fc380018eb01\"}", "{\"sha\": \"6df820e5b46ee34790536da6b0ddd360509b882b\", \"live\": true, \"id\": \"x4b5cda54f33f7762\"}", "{\"sha\": \"c2414399027d090aa0eac574f921e85707e0dc28\", \"live\": true, \"id\": \"x036f2bed93156d2f\"}", "{\"sha\": \"939165dc270b81a959c277dbc1d9139cc8c3f2fa\", \"live\": true, \"id\": \"x2a4f4538df3bbb4c\"}", "{\"sha\": \"622b7fd6ed660a8bf01a5f7b7c769f8eedd5c450\", \"live\": true, \"id\": \"xec089e35dbaeab18\"}", "{\"sha\": \"f00bd88808a0cd1e46830c8519aff202664eafb4\", \"live\": true, \"id\": \"x6d6f4582a16480b3\"}", "{\"sha\": \"1b8eeeb0a8807e2ac450eb09a97b11ed1331fd65\", \"live\": true, \"id\": \"xe9a917150ed0f85d\"}", "{\"sha\": \"32e47ebc8bedfc3a4ec021ab16088a7127162e9c\", \"live\": true, \"id\": \"xa2092dda37bd85b7\"}", "{\"sha\": \"76b877d6939a5add7693733d73fa4a37f8f644bc\", \"live\": true, \"id\": \"x674b53166e781797\"}", "{\"sha\": \"6651a150647c3433fbaf75b3a452c45f67c9cba2\", \"live\": true, \"id\": \"xab3ab417833389dd\"}", "{\"sha\": \"8097792b8125cf3a5aabd139bca85fdb8d3c3a10\", \"live\": true, \"id\": \"x22e797fa2f3ece89\"}", "{\"sha\": \"d95f51d4226519252ac03901a5ba2cecc9b2e88a\", \"live\": true, \"id\": \"xe04169b827f1669f\"}", "{\"sha\": \"6de912e68d8769edbbe2fbf3d988dfd068a02e24\", \"live\": true, \"id\": \"x62d4fcbb11b45859\"}", "{\"sha\": \"3ca58342555ee4a062f41fd5e3c69876cade10fa\", \"live\": true, \"id\": \"x4b29f108a9a40139\"}", "{\"sha\": \"04004eb6cad007dd38d2207badec3f243c84f2b8\", \"live\": true, \"id\": \"xd5ef41f727446674\"}"], "description": "Graph a system of equations in slope-intercept or standard form", "basepoints": 28.0, "slug": "graphing_systems_of_equations", "kind": "Exercise", "name": "graphing_systems_of_equations", "seconds_per_fast_problem": 51.0, "prerequisites": ["verifying-solutions-to-systems-of-equations"], "exercise_id": "graphing_systems_of_equations"}, "inverse-trig-word-problems": {"uses_assessment_items": true, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/inverse-trig-word-problems/", "id": "inverse-trig-word-problems", "display_name": "Inverse trig word problems", "title": "Inverse trig word problems", "all_assessment_items": ["{\"sha\": \"e4263f54db228615c428b1aa8f1465309603609f\", \"live\": true, \"id\": \"xe9594229d4190a6e\"}", "{\"sha\": \"7f78f99d2e64a15729ac0be0f6e51baf66bfbd13\", \"live\": true, \"id\": \"x703445bf6f8e56de\"}", "{\"sha\": \"0040fa3c70831d2c8128d847a65880b1cd84f559\", \"live\": true, \"id\": \"xe1019c08d91d7fb9\"}", "{\"sha\": \"be6f5fb7f0a4f0c1c03c6e24f3e76fa3520b0c7a\", \"live\": true, \"id\": \"xcccad311661eac67\"}", "{\"sha\": \"9ce9c82eb8b942764ed9af548faa124fbd1ecdee\", \"live\": true, \"id\": \"x8173607c83891fcf\"}", "{\"sha\": \"3c8e59c45c5fb1f6b98c8d37e5db67578c1ef863\", \"live\": true, \"id\": \"xdbc5470b32d7039b\"}", "{\"sha\": \"8e16117fb0e5bde2b87804f36d8d16f637157af9\", \"live\": true, \"id\": \"x9e4858241d9f5f22\"}", "{\"sha\": \"34f280683e5e19501db87d702276d4eb72fa4f87\", \"live\": true, \"id\": \"x4cbd5671c5a05e24\"}", "{\"sha\": \"55c399c0e8725c45860d34caf6cccd1719206a12\", \"live\": true, \"id\": \"x6a58eab3864408ff\"}", "{\"sha\": \"2e503069195caffdbd6639cfcb1081c132b1d0e2\", \"live\": true, \"id\": \"x0ad09b0f9b3bceac\"}", "{\"sha\": \"6aca5b1f8218bc163063d660da4a4e5c20955bb0\", \"live\": true, \"id\": \"x4ef676ef19ea2141\"}", "{\"sha\": \"99589ee8b776c44b876a57a3fc03139ab246a8a2\", \"live\": true, \"id\": \"x5dda2b371f97fdfc\"}", "{\"sha\": \"4aa4ee7e89cc9b6ccda14e43a7529c5e2990ba01\", \"live\": true, \"id\": \"x6ce7e62851ea7756\"}", "{\"sha\": \"c93b307272ca8d9d143e80a38ab24f57b97694b8\", \"live\": true, \"id\": \"xafe0dbeeff69e762\"}", "{\"sha\": \"1ccbd57a5920d01cdf23081ff282c852e8187929\", \"live\": true, \"id\": \"x9940a36afbcdf1d8\"}", "{\"sha\": \"9e65e6d9731c94533e85bd82d79f50498fd94548\", \"live\": true, \"id\": \"xe905e9472497e688\"}", "{\"sha\": \"ac31481ce596e8f32e05a5ca4104e4e6390af63e\", \"live\": true, \"id\": \"x2f33bcecfe4d10f4\"}", "{\"sha\": \"ed9cdbd0bed9f97aa695bb98742cd3d2c9903314\", \"live\": true, \"id\": \"x9d296241e3a3dc37\"}", "{\"sha\": \"9cdc5a1889846ea4fbaa4634d058a71c694aedbe\", \"live\": true, \"id\": \"x56f6368afc2d9490\"}", "{\"sha\": \"143c0e446967cc0354ed5c18f44f7fa5be707d37\", \"live\": true, \"id\": \"x6c669cd4861a24a2\"}"], "description": "", "basepoints": 10.0, "slug": "inverse-trig-word-problems", "kind": "Exercise", "name": "inverse-trig-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-inverse-trig-functions"], "exercise_id": "inverse-trig-word-problems"}, "graphing_parabolas_0.5": {"uses_assessment_items": false, "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/graphing_parabolas_05/", "id": "graphing_parabolas_0.5", "display_name": "Graphing parabolas in standard form", "title": "Graphing parabolas in standard form", "description": "Graph a parabola given the equation in the form ax^2+bx+c", "basepoints": 28.0, "slug": "graphing_parabolas_05", "kind": "Exercise", "name": "graphing_parabolas_0.5", "seconds_per_fast_problem": 50.0, "prerequisites": ["parabola_intuition_1"], "exercise_id": "graphing_parabolas_0.5"}, "subtracting_decimals_2": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/subtracting_decimals_2/", "id": "subtracting_decimals_2", "display_name": "Subtracting decimals 2", "title": "Subtracting decimals 2", "description": "Practice adding two numbers that are written to the tenths, hundredths, or thousandths place.", "basepoints": 10.0, "slug": "subtracting_decimals_2", "kind": "Exercise", "name": "subtracting_decimals_2", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtracting_decimals"], "exercise_id": "subtracting_decimals_2"}, "relate-division-to-multiplication-word-problems": {"uses_assessment_items": true, "id": "relate-division-to-multiplication-word-problems", "display_name": "Relate division to multiplication word problems", "title": "Relate division to multiplication word problems", "all_assessment_items": ["{\"sha\": \"67876ab0d2af56f19d325c847227487b25e9957c\", \"live\": true, \"id\": \"xa6fca14611ad307f\"}", "{\"sha\": \"30705ebcea724d34148224435abedbf7c1d543a0\", \"live\": true, \"id\": \"xbfc851f0be4a4ec2\"}", "{\"sha\": \"3af23ab5f7f5c6e5df521a324026c1d5e0f8937d\", \"live\": true, \"id\": \"xc697c62b1c2804b7\"}", "{\"sha\": \"5c0d174573e22cd5516d1654736671157edd519f\", \"live\": true, \"id\": \"x0a697b4d9b177f72\"}", "{\"sha\": \"cf9d1ae002848e0a35d2d2b59ee5ab884af590a5\", \"live\": true, \"id\": \"x7a2bd35d5a75da20\"}", "{\"sha\": \"fbfb5dba39a9c0bf8565693fac5c7baba91ec73d\", \"live\": true, \"id\": \"x19aeaa148f408f63\"}", "{\"sha\": \"3423d09dbc9d162fb521bf15b7fc096559ee331a\", \"live\": true, \"id\": \"xc04141ba0c8e6da7\"}", "{\"sha\": \"4416d99d6ab37867029a2a45534c761d04489213\", \"live\": true, \"id\": \"x969957688f1de61f\"}", "{\"sha\": \"a4f3d8340a56fcb304a995f331bf4418ffb4ca4f\", \"live\": true, \"id\": \"x2197f305d2bec652\"}", "{\"sha\": \"1608a7b367083f3358d6dad32ff201575ef313f3\", \"live\": true, \"id\": \"x6b93ceb02a62a6ca\"}", "{\"sha\": \"b19be7212dc26b2438f982cc659e0be39b660bc1\", \"live\": true, \"id\": \"x237a92514f4d25f5\"}", "{\"sha\": \"27abca8f04e5e48798475e1e887958220e029192\", \"live\": true, \"id\": \"xdd92c0062c27d46d\"}", "{\"sha\": \"1c2c209c498d4e4d077fd9b4b2931d482ededb09\", \"live\": true, \"id\": \"x7e1c53aef11e5fc6\"}", "{\"sha\": \"70d71cd25e1b496f20d74aafbece44a859fc1e57\", \"live\": true, \"id\": \"xa074392507b40cc7\"}", "{\"sha\": \"0cbc0cbae278507b4a4d472ff30cdb946179bc0e\", \"live\": true, \"id\": \"x6a808b51354ac74e\"}", "{\"sha\": \"8e41726a3bf24213cac86dbd1978a8b0fa321d4c\", \"live\": true, \"id\": \"xfc55df7bcdff1de5\"}", "{\"sha\": \"24997f55db81cf54d2c8757a5d364aeb41aa2744\", \"live\": true, \"id\": \"xe1ffc52983380944\"}", "{\"sha\": \"a20858576153f7b28d0f9a165b81784ee812fe1e\", \"live\": true, \"id\": \"xd620786701c971e4\"}", "{\"sha\": \"93cc5da5a1bf837981926914b45e692b21c4c719\", \"live\": true, \"id\": \"xcee3152dc665a664\"}", "{\"sha\": \"f54a6f2caf12e3adf17095a60b99c703f2f77655\", \"live\": true, \"id\": \"x64356b54af460044\"}"], "description": "Find both the multiplication and division equation that can be used to solve a word problem.", "basepoints": 10.0, "path": "relate-division-to-multiplication-word-problems/", "slug": "relate-division-to-multiplication-word-problems", "kind": "Exercise", "name": "relate-division-to-multiplication-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["relate-division-to-multiplication"], "exercise_id": "relate-division-to-multiplication-word-problems"}, "assemblies-of-molecules--cells-and-groups-of-cells-within-single-cellular-and-multicellular-organisms": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/assemblies-of-molecules-cells-and-groups-of-cells-within-single-cellular-and-multicellular-organisms/", "id": "assemblies-of-molecules--cells-and-groups-of-cells-within-single-cellular-and-multicellular-organisms", "display_name": "Immunology of Acute vs. Chronic Inflammation", "title": "Immunology of Acute vs. Chronic Inflammation", "all_assessment_items": ["{\"sha\": \"1d05aa19d8b2faf623df4344ad8f94832115d656\", \"live\": true, \"id\": \"xa98210987cfc3b80\", \"perseus_api_major_version\": null}", "{\"sha\": \"28ea81a0ab355aa01f234a2a7120b446f00695c4\", \"live\": true, \"id\": \"x3c5752f2491544b1\", \"perseus_api_major_version\": null}", "{\"sha\": \"8a25cc4245fe817befd1d07f1869d5042b73bb3a\", \"live\": true, \"id\": \"x64cbc7e7c3487892\", \"perseus_api_major_version\": null}", "{\"sha\": \"5cfea33d35a70991760b7d89e9aaa8ae80c54ee9\", \"live\": true, \"id\": \"x5a2ac3349de2edc7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0a749ba8c1993562e4e7bc3f796332394529db50\", \"live\": true, \"id\": \"x003cb33f6185dedf\", \"perseus_api_major_version\": null}"], "description": "Immunology of Acute vs. Chronic Inflammation", "basepoints": 10.0, "slug": "assemblies-of-molecules-cells-and-groups-of-cells-within-single-cellular-and-multicellular-organisms", "kind": "Exercise", "name": "assemblies-of-molecules--cells-and-groups-of-cells-within-single-cellular-and-multicellular-organisms", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "assemblies-of-molecules--cells-and-groups-of-cells-within-single-cellular-and-multicellular-organisms"}, "functions-from-equations": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/functions-and-function-notation/functions-from-equations/", "id": "functions-from-equations", "display_name": "Writing function rules from equations", "title": "Writing function rules from equations", "all_assessment_items": ["{\"sha\": \"9a5affe7bf6ca0343f233f90ce4c97e0c6e7d652\", \"live\": true, \"id\": \"xaff13d3760f4988f\", \"perseus_api_major_version\": 2}", "{\"sha\": \"bfd102f616bbcb80f56c3767e5e1d725d2c74582\", \"live\": true, \"id\": \"xf87bb009c980ac13\", \"perseus_api_major_version\": null}", "{\"sha\": \"30ca8f52d85217d7774d2af70b661795537e3d66\", \"live\": true, \"id\": \"xd574c182907af296\", \"perseus_api_major_version\": null}", "{\"sha\": \"c2e9d5318da274b399e5dc871abcd82a8f16cd69\", \"live\": true, \"id\": \"x77409eede6fe5d46\", \"perseus_api_major_version\": 2}", "{\"sha\": \"11fd4c0c6e79c7343f295c0b1a3f56cb8e58adbb\", \"live\": true, \"id\": \"x40b6abd799664a81\", \"perseus_api_major_version\": null}", "{\"sha\": \"eefedd3da0bb70f2787ec9e634a3bd38fd50a9d2\", \"live\": true, \"id\": \"x57f63d2f6defc074\", \"perseus_api_major_version\": null}", "{\"sha\": \"c6ce6800afbc1042495f9c3f1355397a595aee89\", \"live\": true, \"id\": \"x5af249150fb8cc5c\", \"perseus_api_major_version\": 2}", "{\"sha\": \"bb43340059887167adf729ecf531c3259225d8b4\", \"live\": true, \"id\": \"x91ec7f45e6c083eb\", \"perseus_api_major_version\": null}", "{\"sha\": \"a72971e995a27eed96143832eb4a0f4ca5345e9e\", \"live\": true, \"id\": \"x95e9a611baa185b1\", \"perseus_api_major_version\": null}", "{\"sha\": \"7d94c9eeae3945f232547af1816738ec6aef38e6\", \"live\": true, \"id\": \"x0c6e2199091198fb\", \"perseus_api_major_version\": 2}", "{\"sha\": \"15d76bb16302c6523f86162ead05dc8c56fd7e16\", \"live\": true, \"id\": \"xcc09b9c74b0dd865\", \"perseus_api_major_version\": null}", "{\"sha\": \"2d91ec4ed6c89506e4439ef805906d70ad3febf2\", \"live\": true, \"id\": \"x53fd94190ed20739\", \"perseus_api_major_version\": null}", "{\"sha\": \"415e6349632c8ff5bb40c116b9c7b258013c548d\", \"live\": true, \"id\": \"x56952f31169e7f8a\", \"perseus_api_major_version\": 2}", "{\"sha\": \"323e8156783f2ab2ea5ff43758ee9242d2ad6159\", \"live\": true, \"id\": \"x10824aef0ab6bfdc\", \"perseus_api_major_version\": null}", "{\"sha\": \"6e9cec77d891c0bbf35c952acbb30c9245448392\", \"live\": true, \"id\": \"xac2ba18197b50a39\", \"perseus_api_major_version\": null}", "{\"sha\": \"b4221aa6da2dfd41a40812bbd3c194b4064d48cd\", \"live\": true, \"id\": \"x1779a5e408898867\", \"perseus_api_major_version\": 2}", "{\"sha\": \"0cd13bb42805a57afac851a4df9c9a042b1480dc\", \"live\": true, \"id\": \"x36189da14360cc64\", \"perseus_api_major_version\": null}", "{\"sha\": \"2ea2b550a34818541557403f76d3cdf0052b1bfb\", \"live\": true, \"id\": \"x28ca07bad0773c35\", \"perseus_api_major_version\": null}", "{\"sha\": \"f853dfa24a8191110ae21152d163e404b4c8eafc\", \"live\": true, \"id\": \"x058965785572b89a\", \"perseus_api_major_version\": 2}", "{\"sha\": \"b47e58fabffb6a4dd8003e9b05c244dbfc8b1a7e\", \"live\": true, \"id\": \"x6df05e9b4099f397\", \"perseus_api_major_version\": null}"], "description": "Rearrange equations to define a function", "basepoints": 10.0, "slug": "functions-from-equations", "kind": "Exercise", "name": "functions-from-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["functions_1"], "exercise_id": "functions-from-equations"}, "graphing-solutions-to-two-variable-linear-equations": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/solutions-to-two-var-linear-equations/graphing-solutions-to-two-variable-linear-equations/", "id": "graphing-solutions-to-two-variable-linear-equations", "display_name": "Graphing solutions to two-variable linear equations", "title": "Graphing solutions to two-variable linear equations", "all_assessment_items": ["{\"sha\": \"1f1a09035e432fc52af5d4c869d41ab3a95641d4\", \"live\": true, \"id\": \"x0fe19320f42e20bb\"}", "{\"sha\": \"5e34f9684f472b8fcfbfee2901d54ad5ba2bb1df\", \"live\": true, \"id\": \"x84f1eb76c4702693\"}", "{\"sha\": \"7e1676b3aa7cfee905b439d43c903c21a57ba73c\", \"live\": true, \"id\": \"xcaf229b3b9edefc0\"}", "{\"sha\": \"31cfcc8860db8646946d2f85560384139b946f52\", \"live\": true, \"id\": \"xa5b6e22bd5268647\"}", "{\"sha\": \"d07969e3a57078db71feda129d0a26d5797f234b\", \"live\": true, \"id\": \"x77872a82a1f480c7\"}", "{\"sha\": \"963938785c681b057832df537eac3313c611c45e\", \"live\": true, \"id\": \"x972971f89c98ac96\"}", "{\"sha\": \"e531c0e20a4f94b76b9ba56b4d8f5d4fb46ea3d7\", \"live\": true, \"id\": \"x344cea9263d6c2cb\"}", "{\"sha\": \"23882ac6a3709a94ae90997acf33115ac9cf3f2f\", \"live\": true, \"id\": \"xafaebc2e82171f10\"}", "{\"sha\": \"2a311302356aad68e0513f0a773e31c126db37e7\", \"live\": true, \"id\": \"x2c1d3093ead0d843\"}", "{\"sha\": \"499f9018f1d982604bf10b4cac8a66068135f3e3\", \"live\": true, \"id\": \"x67d59a97cf5ae495\"}", "{\"sha\": \"fad356dd919b1a17ab03f278e99e191d93343e40\", \"live\": true, \"id\": \"xe7b8282e8b745a82\"}", "{\"sha\": \"5c1cfdd739abee7f05cc9a76409da281480701d0\", \"live\": true, \"id\": \"x564d6b590cd0dd90\"}", "{\"sha\": \"44d2f3395598ae2c641f826618befda127a215fe\", \"live\": true, \"id\": \"x2607800200f1640a\"}", "{\"sha\": \"57f8ffe0c27049c18110f52ae316320ce81de6ea\", \"live\": true, \"id\": \"x1fa39cfd822b9905\"}", "{\"sha\": \"08b90487caf5c9a0fc543ae7e7dd36d2066ed70f\", \"live\": true, \"id\": \"x4ef55dd49fe31699\"}", "{\"sha\": \"43e4aa7f884b67c9a2a946cf769b04cc17add0fb\", \"live\": true, \"id\": \"x98b57ba1c950bb56\"}", "{\"sha\": \"c88c0d5eb6047edb09b5a67c935a7f1e56aa8854\", \"live\": true, \"id\": \"x907942e579b69133\"}", "{\"sha\": \"edf9f980164329d03cc4cde8b01fd8a340b8dd9d\", \"live\": true, \"id\": \"x0a5c2d9df7b6ef97\"}", "{\"sha\": \"f0307e4cef9ba39200816c252efb8f6894e90393\", \"live\": true, \"id\": \"x7d3a7571ce09b597\"}", "{\"sha\": \"9a11a662e8d6e7fd914953e37e246231848f8207\", \"live\": true, \"id\": \"x14f289e7499528e3\"}"], "description": "Graph solution pairs on the coordinate plane", "basepoints": 10.0, "slug": "graphing-solutions-to-two-variable-linear-equations", "kind": "Exercise", "name": "graphing-solutions-to-two-variable-linear-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["plugging_in_values"], "exercise_id": "graphing-solutions-to-two-variable-linear-equations"}, "calculating-the-median": {"uses_assessment_items": true, "id": "calculating-the-median", "display_name": "Calculating the median", "title": "Calculating the median", "all_assessment_items": ["{\"sha\": \"3748170a74ef8b3924a523eb68cb289cc79c324c\", \"live\": true, \"id\": \"x5abd25293a00a318\"}", "{\"sha\": \"4bca16e2c3a756713dd3619a03f9b31276cee82e\", \"live\": true, \"id\": \"xc2ee84ecb8b113eb\"}", "{\"sha\": \"b681d15dd123e6d022e76d46b69f6328775c4665\", \"live\": true, \"id\": \"xbb9d76cd80008a4e\"}", "{\"sha\": \"7e4baae1ddee8b3b13acee5ebce2b80d20fbd317\", \"live\": true, \"id\": \"x606721e0fc76fbce\"}", "{\"sha\": \"82b322c80e1a302f44b496001dc5b69ff2d9c69c\", \"live\": true, \"id\": \"xb058d9dd8151fe7a\"}", "{\"sha\": \"c2080c26c6c8e07b530674b4320d7b36bcb627a7\", \"live\": true, \"id\": \"xc85997cc5c64671b\"}", "{\"sha\": \"146bedf3dfc54df952a195fdcfbf78eb633da6b7\", \"live\": true, \"id\": \"xc60af0a53c56070e\"}", "{\"sha\": \"7450ebe32ad9e29370afa8d64e3f54b1bc667053\", \"live\": true, \"id\": \"x52eb9d1a39211735\"}", "{\"sha\": \"54c3bf5d85d512190e2521a9230dee27b9b30f1d\", \"live\": true, \"id\": \"x772eb454dd71d06d\"}", "{\"sha\": \"1abd8a6823135ff5cb97e8e1799c28595bf9644b\", \"live\": true, \"id\": \"xb5ede8a1f50eb0aa\"}", "{\"sha\": \"e8e3aa21805aa25d2f7952c112d164fdf948b715\", \"live\": true, \"id\": \"x951bb03a0a91bb77\"}", "{\"sha\": \"78e3f2806d1883feb242ad2fb7b515b217e263af\", \"live\": true, \"id\": \"x515c8bf1f8ab9704\"}", "{\"sha\": \"44a9871c23787e13e0268ad89dbe2e824d14d2f5\", \"live\": true, \"id\": \"xa7463507dbbb806c\"}", "{\"sha\": \"904dfd0b76e0c2622987c6fcd413609a202c38a4\", \"live\": true, \"id\": \"xef6043cf0972d904\"}", "{\"sha\": \"17c9ea655972f0fb9dbc7eae609707698f045eeb\", \"live\": true, \"id\": \"x8360a0c9cdd669d2\"}", "{\"sha\": \"1eabdc6e011cb1f953c946ac28a5f45179a042d5\", \"live\": true, \"id\": \"x50f3e9636de7f636\"}", "{\"sha\": \"756e129548d19dcd5108eebbd5504e1c7861d71f\", \"live\": true, \"id\": \"x37f3867b914dd564\"}", "{\"sha\": \"4f5498af498fa2c6c88aa4b906b929e152efbe8e\", \"live\": true, \"id\": \"xd97c509a975d3d77\"}", "{\"sha\": \"bfa3d295fc9e02f055e78481ca3a15155c80d487\", \"live\": true, \"id\": \"x84adca53e663a8f5\"}", "{\"sha\": \"ba83c0650fab3f4b611938104d79d293ae8fef8a\", \"live\": true, \"id\": \"xee97ba894d9c0974\"}", "{\"sha\": \"f1127c91fb935cb0b301411e831d2b0eec97ee38\", \"live\": true, \"id\": \"x9d3c9c85fe16aac2\"}"], "description": "Practice finding the median of a data set. Like the mean, the median gives us a sense of the middle, or\u00a0center, of the data.", "basepoints": 10.0, "path": "calculating-the-median/", "slug": "calculating-the-median", "kind": "Exercise", "name": "calculating-the-median", "seconds_per_fast_problem": 4.0, "prerequisites": ["intro-to-simple-data"], "exercise_id": "calculating-the-median"}, "recognizing_fractions_0.5": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/understanding-fractions-pre-alg/recognizing_fractions_05/", "id": "recognizing_fractions_0.5", "display_name": "Recognizing fractions 1", "title": "Recognizing fractions 1", "description": "Identify the fraction of a whole that is shaded.", "basepoints": 14.0, "slug": "recognizing_fractions_05", "kind": "Exercise", "name": "recognizing_fractions_0.5", "seconds_per_fast_problem": 7.0, "prerequisites": ["that-s-not-fair-", "cutting-shapes-into-equal-parts"], "exercise_id": "recognizing_fractions_0.5"}, "amino-acids-and-proteins---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/amino-acids-and-proteins-passage-2/", "id": "amino-acids-and-proteins---passage-2", "display_name": "Dietary supplements for building up muscles", "title": "Dietary supplements for building up muscles", "all_assessment_items": ["{\"sha\": \"f711f08f49c5507e3cf6ee61b16b22ad9a6e4ca5\", \"live\": true, \"id\": \"x0b384d9ed53b3bf6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f85a1716a5c812f9d9292a4a3d97d0ab997932d9\", \"live\": true, \"id\": \"x21770d6157eb1c2f\", \"perseus_api_major_version\": null}", "{\"sha\": \"a8560bb50cd2f48821d523f2064e55638c38f672\", \"live\": true, \"id\": \"x2baee23b0d38ad50\", \"perseus_api_major_version\": null}", "{\"sha\": \"b8fb5043c04663777dd8fc89e5f425edf8cf220e\", \"live\": true, \"id\": \"x94197d72cdda979c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f9978733ebcd5a794d4b780f1dd7329e7c283312\", \"live\": true, \"id\": \"x1bdc420480a3518a\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "amino-acids-and-proteins-passage-2", "kind": "Exercise", "name": "amino-acids-and-proteins---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "amino-acids-and-proteins---passage-2"}, "pop-and-after": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/pop/pop-and-after/", "id": "pop-and-after", "display_name": "Pop and after (quiz)", "title": "Pop and after (quiz)", "all_assessment_items": ["{\"sha\": \"e9497b6eb0b19d3ce210be777fffae90e153a081\", \"live\": true, \"id\": \"x4aa9b9b1d008d1ca\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc70a724a35eb6c4b9ac94c036ab3f109c889c48\", \"live\": true, \"id\": \"x0ac5616bf064dd99\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b5d2594882e1c77047411ff78cecafdcedbf675\", \"live\": true, \"id\": \"x8becbee82fe2d80a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7962193420ca57ba16a3e3de1cffedfbb49de8f2\", \"live\": true, \"id\": \"xb1bd0214f972108e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"934428f15d21e57bc879cb680acd7590f8f275f2\", \"live\": true, \"id\": \"x69425eb666a78ce3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a8823dbbbbf0255c5fc8b05dd3ce0db7bf07e84a\", \"live\": true, \"id\": \"x18a6ed1b84a44c0c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"375d0456fdb28d9ab3daff3afa00b4fae44ea9f4\", \"live\": true, \"id\": \"x101285b6382c206e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"216e6ca47878cb2ecc592e68b0ab31e83ffa5f9b\", \"live\": true, \"id\": \"x9eb16557a9647794\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "pop-and-after", "kind": "Exercise", "name": "pop-and-after", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pop-and-after"}, "two-way-frequency-tables": {"uses_assessment_items": true, "id": "two-way-frequency-tables", "display_name": "Two-way frequency tables", "title": "Two-way frequency tables", "all_assessment_items": ["{\"sha\": \"61a6355430091f475e69058dbc1eed8bf4a56868\", \"live\": true, \"id\": \"x9534f2e4ae832609\"}", "{\"sha\": \"f435b4c7a5bf166c4a6f9ce83b0f8ee47d66d4d1\", \"live\": true, \"id\": \"x47fe1dcc0683e6b8\"}", "{\"sha\": \"73dc3f994948f57974307c3e29ea10a5ee1274ca\", \"live\": true, \"id\": \"x544f8e3a8ef6c493\"}", "{\"sha\": \"78837fcf37d07ccb0ca2a94e3c43f6d32c02268b\", \"live\": true, \"id\": \"x9b3992fe3e1009c3\"}", "{\"sha\": \"e5f56109491650ecdc6b5f4e8fe4c1315dd0e76c\", \"live\": true, \"id\": \"xbce4e4db20a1f148\"}", "{\"sha\": \"c1c881ae7cb09f49bac9855e1e2dd61a5054fa01\", \"live\": true, \"id\": \"xfa8c23e9a8954056\"}", "{\"sha\": \"ed44b865a4d27dba44e41c8ac61c5bd16e8a0d52\", \"live\": true, \"id\": \"x7bfa8efd005608e3\"}", "{\"sha\": \"435aca7f3867208cb801289d76551d926b55e6f8\", \"live\": true, \"id\": \"x2da876528f5927a0\"}", "{\"sha\": \"ebaee4f46d95ddaaee83a4a31a9edbf4ce3a4d2f\", \"live\": true, \"id\": \"x316af7c25381119c\"}", "{\"sha\": \"94785d75005c94d31904491bc1fb606e1bba453c\", \"live\": true, \"id\": \"x9987e96f3253973f\"}", "{\"sha\": \"52042c13844434cf13ded8351d9ee30ba363c4b2\", \"live\": true, \"id\": \"xfcfadfb35940cce7\"}", "{\"sha\": \"af1e8a65e2f89f855f5cc7d22ff5acb1c261697c\", \"live\": true, \"id\": \"x714536933e9e6792\"}", "{\"sha\": \"be5d869b531d2a19d30e717d3ad431787f65bd5f\", \"live\": true, \"id\": \"x6ab83d2948cbd125\"}", "{\"sha\": \"f3edd23c638c8e37455fba3ecfb138238f9053d1\", \"live\": true, \"id\": \"xaab0629699d507f5\"}", "{\"sha\": \"2596a4a4b0c02942b47c914c2f76579ffddb0c42\", \"live\": true, \"id\": \"xfc972bc62c3fbeea\"}", "{\"sha\": \"4ae825d32d526ed3a1047198c6386c505436fadc\", \"live\": true, \"id\": \"x0d6b7d7e7e6eb627\"}", "{\"sha\": \"275263e5613717449683f4796edddda184166c6e\", \"live\": true, \"id\": \"x36d9e84a1bffb0e3\"}", "{\"sha\": \"0b666619111c2c4d86c24056b872c15812258859\", \"live\": true, \"id\": \"xeeab7fe522473f0b\"}", "{\"sha\": \"9b27509fb7bc693d3ece5fad97542e24e6329dc8\", \"live\": true, \"id\": \"x4478e457ec1908f6\"}", "{\"sha\": \"43cf36afa7e0ee4bd3e966f911627d97eed458d2\", \"live\": true, \"id\": \"xa912cf8b0e5482e5\"}"], "description": "", "basepoints": 10.0, "path": "two-way-frequency-tables/", "slug": "two-way-frequency-tables", "kind": "Exercise", "name": "two-way-frequency-tables", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "two-way-frequency-tables"}, "inverses_of_functions": {"uses_assessment_items": false, "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/inverses_of_functions/", "id": "inverses_of_functions", "display_name": "Inverses of linear functions", "title": "Inverses of linear functions", "description": "Determine the inverse of a linear function based on the equation and graph.", "basepoints": 18.0, "slug": "inverses_of_functions", "kind": "Exercise", "name": "inverses_of_functions", "seconds_per_fast_problem": 12.0, "prerequisites": ["domain_of_a_function", "range_of_a_function"], "exercise_id": "inverses_of_functions"}, "emotion---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/emotion-passage-2/", "id": "emotion---passage-2", "display_name": "Positive emotion and emotional eating", "title": "Positive emotion and emotional eating", "all_assessment_items": ["{\"sha\": \"a90dee96435146404c1686cdd8dd0a3e3a0cc394\", \"live\": true, \"id\": \"xe5117925f9a00e61\"}", "{\"sha\": \"dc181a8e50a1f17164215b478bf88e6ab546d43a\", \"live\": true, \"id\": \"xd1f4621d7b2ae6e0\"}", "{\"sha\": \"7db0fb2e42d88834b5b67a5eb426fcc65c16b6a5\", \"live\": true, \"id\": \"xa32399e377e766b2\"}", "{\"sha\": \"8b1f249cd9765e80f637f1c107dd7cd3cc912f60\", \"live\": true, \"id\": \"x3a8996a4ed0262ea\"}", "{\"sha\": \"07d6e58e88ee449038764f923cf7c53b1d2548dc\", \"live\": true, \"id\": \"x97716ee103f7ac36\"}"], "description": "", "basepoints": 10.0, "slug": "emotion-passage-2", "kind": "Exercise", "name": "emotion---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "emotion---passage-2"}, "emotion---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/emotion-passage-1/", "id": "emotion---passage-1", "display_name": "Responses to emotion induction", "title": "Responses to emotion induction", "all_assessment_items": ["{\"sha\": \"db50cfb8d6f312b4ee14c04e3a34198b2badadd6\", \"live\": true, \"id\": \"x6f9975b44c487917\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4fd1626685f4192cf86a5ead514ec246c2aca92c\", \"live\": true, \"id\": \"x7b64990e2f98cd22\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d1ef590010bc90c3b2a8299e79d5f7adaa76ddaf\", \"live\": true, \"id\": \"xc6476dc5e4b61105\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a1eb1ce541025f3ac0012b22c2e08cb191061f42\", \"live\": true, \"id\": \"x2c2b0642f1262dd2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"336123ca6e24a28b86cb298c5449141f1f165ee6\", \"live\": true, \"id\": \"xb5347ce7b7e2d370\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "emotion-passage-1", "kind": "Exercise", "name": "emotion---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "emotion---passage-1"}, "neurofibromin-mutations-in-mice-populations---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/neurofibromin-mutations-in-mice-populations-passage-2/", "id": "neurofibromin-mutations-in-mice-populations---passage-2", "display_name": "Repetitive nerve stimulation in Myasthenia gravis patients", "title": "Repetitive nerve stimulation in Myasthenia gravis patients", "all_assessment_items": ["{\"sha\": \"689b4433687fd83c11b69f1a65dcda7a8a8ffba9\", \"live\": true, \"id\": \"x0f63c3b606fa474b\", \"perseus_api_major_version\": null}", "{\"sha\": \"8c53697f1f9747d034fbf7ee26c5ec931dc04dfb\", \"live\": true, \"id\": \"x2384f1a0f6a98827\", \"perseus_api_major_version\": null}", "{\"sha\": \"5c36b95c9ba044b7e855571c344a80441c8fc82e\", \"live\": true, \"id\": \"xae049b4b0f103794\", \"perseus_api_major_version\": 3}", "{\"sha\": \"27b9a04303fdf2e10d57bd7d0a06c2797dd2be47\", \"live\": true, \"id\": \"x1bc7dd0a42623603\", \"perseus_api_major_version\": null}", "{\"sha\": \"5fdd02df690f1f2954853d437e7f7686501a5b08\", \"live\": true, \"id\": \"x384df4febbc0dcf5\", \"perseus_api_major_version\": null}"], "description": "Repetitive nerve stimulation in Myasthenia gravis patients", "basepoints": 10.0, "slug": "neurofibromin-mutations-in-mice-populations-passage-2", "kind": "Exercise", "name": "neurofibromin-mutations-in-mice-populations---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neurofibromin-mutations-in-mice-populations---passage-2"}, "understanding-solution-methods-to-systems-of-equations": {"uses_assessment_items": true, "path": "khan/math/algebra/systems-of-eq-and-ineq/equivalent_systems_of_equations/understanding-solution-methods-to-systems-of-equations/", "id": "understanding-solution-methods-to-systems-of-equations", "display_name": "Equivalent systems of equations", "title": "Equivalent systems of equations", "all_assessment_items": ["{\"sha\": \"76ef4ddd1327f59bb66732870827afe2437ed43d\", \"live\": true, \"id\": \"xbbcc7da41bc4e4c3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6914aeb5136297e823fdaf36afb2046e39f18b63\", \"live\": true, \"id\": \"x0d239bf6b81dc354\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b980ae790468142dd1ed48e9d86ef20882f1ae5f\", \"live\": true, \"id\": \"xa513409af8079946\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aefb07379be7fd053fc2ac627feab4721a01aad2\", \"live\": true, \"id\": \"x27bacf6ce22d1f17\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"43ba8266a09bdf8f638bef3d4a6de666223620ac\", \"live\": true, \"id\": \"xb9a735544966c649\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"afa3a463ad7ab84aa987146041a778c19e4135d0\", \"live\": true, \"id\": \"xe43e370cd967856b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1651f03447f30fc233e295dcf92e8ba2524e588c\", \"live\": true, \"id\": \"x5853be317f461998\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9a9c57214ec4d6d927f92e5272877791aa3dafa\", \"live\": true, \"id\": \"x9830651434b24112\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"375c94d92f08dea641e5dbba4058db9c80230c58\", \"live\": true, \"id\": \"x211e798a3a80b970\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5134fb8d37ed5bc2629229c55dd1dd80ffd1a4dc\", \"live\": true, \"id\": \"x1e4bf7ecef472ab4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e3c5702f0a9baa39fe9cbf5c27ed4832d48ee5a\", \"live\": true, \"id\": \"x8bdda5e83ee82bad\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a81f823bf4febc3c2ff9130b9f6b9d7ffe18700a\", \"live\": true, \"id\": \"x0ac781d4f90507bb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4a3813ba0d899c2e228c0085a7a46fda5905c9c2\", \"live\": true, \"id\": \"x632e2f162586ff6f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"618df4b61c19b584f37e5e0d22da06e123e0f28f\", \"live\": true, \"id\": \"x9ebd483d2eba1dee\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1bd5fe1280766c6dcc219d4e814e07735dda6ca3\", \"live\": true, \"id\": \"x5bd10332e390240c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"02b9ccd4f94e715c4615dfdd112313a943a96647\", \"live\": true, \"id\": \"x907931cade1a5fc2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fe37c9c2dbd0888d5d01facb4c28bd30bc7b9bb6\", \"live\": true, \"id\": \"xdafe3b59943a6def\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8bccea61632f8a5cf2f61a963b5225f044be6df\", \"live\": true, \"id\": \"x5b046d6152a2ea1d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76cb88e73e1b0c49ccddb2f0ed3ebdc8d9ba06ff\", \"live\": true, \"id\": \"x91e150ed07ab7c88\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7c8e7c6dd1cec1b5f5740fa71c1512808b8a9140\", \"live\": true, \"id\": \"x9ea6873f52d0e795\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd65a5260746dc7f8e16af4d35ebb55092d6433a\", \"live\": true, \"id\": \"xfa4cce904822d326\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23be34a78abcaeb41c466327d5aeef48531fcd6e\", \"live\": true, \"id\": \"xa0895f6b753edbfe\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11bffe68b7059b6a3727a58d383294d365896ed6\", \"live\": true, \"id\": \"x591793c5922058db\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db75972de71fea3f786f74ea91e0a2683e0b4593\", \"live\": true, \"id\": \"x0696990b179e9d86\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 29.0, "slug": "understanding-solution-methods-to-systems-of-equations", "kind": "Exercise", "name": "understanding-solution-methods-to-systems-of-equations", "seconds_per_fast_problem": 60.0, "prerequisites": ["graphing_systems_of_equations"], "exercise_id": "understanding-solution-methods-to-systems-of-equations"}, "molecular-genetics-and-microbiology-of-zaire-ebolavirus": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/molecular-genetics-and-microbiology-of-zaire-ebolavirus/", "id": "molecular-genetics-and-microbiology-of-zaire-ebolavirus", "display_name": "Molecular genetics and microbiology of Zaire Ebolavirus", "title": "Molecular genetics and microbiology of Zaire Ebolavirus", "all_assessment_items": ["{\"sha\": \"361f71aaee758667fe0af0b7599013c28a3dcd66\", \"live\": true, \"id\": \"x2593c2d3ebe765ce\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0718955f8190fd449be2a639af97307a8a0088ad\", \"live\": true, \"id\": \"x4a4f76081eaf37aa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"60f9d7c2923c449568f5d607af52fc09ece946fa\", \"live\": true, \"id\": \"x50db15929fbb070a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"95eb13193e9a162ad121dabf8d9d4fed42b0fe95\", \"live\": true, \"id\": \"xc2379caeee5f269a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8390e25584f51f35557e17c18f82961e18bf8c70\", \"live\": true, \"id\": \"x02ec62933658c2e0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to the viral life cycle", "basepoints": 10.0, "slug": "molecular-genetics-and-microbiology-of-zaire-ebolavirus", "kind": "Exercise", "name": "molecular-genetics-and-microbiology-of-zaire-ebolavirus", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "molecular-genetics-and-microbiology-of-zaire-ebolavirus"}, "learning-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/behavior/learning-slug/learning-questions/", "id": "learning-questions", "display_name": "Learning questions", "title": "Learning questions", "all_assessment_items": ["{\"sha\": \"141d743922459a3663aee166f2e98a1e6a343566\", \"live\": true, \"id\": \"x49fd4d13c4285dba\"}", "{\"sha\": \"2753356524658db0d500e2b5063ce823f8411ae8\", \"live\": true, \"id\": \"x45d4d09791267eb7\"}", "{\"sha\": \"ba784d27d58f82f87024c63855761742c3f16087\", \"live\": true, \"id\": \"x231f769f2c37edf6\"}", "{\"sha\": \"b8e1cd1922da3b2d487c09617d306d840d6faa12\", \"live\": true, \"id\": \"xdf2173bd425a1409\"}", "{\"sha\": \"fbc939f97f60c67832450dc40e0b4b9e2a57a672\", \"live\": true, \"id\": \"x6af2ada1a4c94e70\"}", "{\"sha\": \"1d766338f41f043f4088428c1e8dc77c5adffd05\", \"live\": true, \"id\": \"x30e9126df5298328\"}", "{\"sha\": \"4f3f408d950d1318dcc9b96d49f6cef7012449ce\", \"live\": true, \"id\": \"xd13c5272bc547032\"}", "{\"sha\": \"e6bc14cf8fe08d623c390d9b624c12491141ddb7\", \"live\": true, \"id\": \"x253c38130dc56c24\"}", "{\"sha\": \"b1207d4eb97eb3da7c521c060772016cb177e409\", \"live\": true, \"id\": \"x89342d6388f5df22\"}", "{\"sha\": \"d79cffd716adfe71ea5d509d6f056db18d6a30c8\", \"live\": true, \"id\": \"xa96be1a8b4f89432\"}"], "description": "Learning questions", "basepoints": 10.0, "slug": "learning-questions", "kind": "Exercise", "name": "learning-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "learning-questions"}, "nclex-rn-questions-on-stroke-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-stroke-2/", "id": "nclex-rn-questions-on-stroke-2", "display_name": "NCLEX-RN questions on stroke 2", "title": "NCLEX-RN questions on stroke 2", "all_assessment_items": ["{\"sha\": \"e7492d1c8038fddf3e2751aaf801ad830e946500\", \"live\": true, \"id\": \"x0cb4868e3ddc57ba\"}", "{\"sha\": \"ba161090871fb21f7dd324cace25d3686ccbbed3\", \"live\": true, \"id\": \"x8844485dedd4891b\"}", "{\"sha\": \"d7d81aa6f8f08ac7ee4b0a0daf95a4f1c20b26ec\", \"live\": true, \"id\": \"xe10766301bf61f4d\"}", "{\"sha\": \"c444aa9ffddd12d8dc3da5cbbe16982936a0c94b\", \"live\": true, \"id\": \"xe1ff5a4244341aa7\"}", "{\"sha\": \"ce4287d5e6a98dcba7b21b6bdf1ac7a9376103db\", \"live\": true, \"id\": \"x723c444a05d0970c\"}"], "description": "More questions related to stroke", "basepoints": 10.0, "slug": "nclex-rn-questions-on-stroke-2", "kind": "Exercise", "name": "nclex-rn-questions-on-stroke-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-stroke-2"}, "addition-word-problems-within-10": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-sub-word-problem-within-10/addition-word-problems-within-10/", "id": "addition-word-problems-within-10", "display_name": "Addition word problems within 10", "title": "Addition word problems within 10", "all_assessment_items": ["{\"sha\": \"f1c71b0defe516e79ff5048f006d3a2428c57763\", \"live\": true, \"id\": \"x68f6b3727bd30648\"}", "{\"sha\": \"197e6e03bada152aa3e72a3e887d6fc1432a17ee\", \"live\": true, \"id\": \"x5ac2e4e503fbadd6\"}", "{\"sha\": \"def0b409376db9f399b4c467b212c1a1aa1dda0f\", \"live\": true, \"id\": \"x7f7d0c4bf86d43be\"}", "{\"sha\": \"b2bb4315134b158211be4d2ec7e2dd2056beac7b\", \"live\": true, \"id\": \"xcfa3540444a00c38\"}", "{\"sha\": \"ee89730047e03ebec0adf0e01b1a18fe7eaa9f69\", \"live\": true, \"id\": \"xcd79c8965053c3ac\"}", "{\"sha\": \"86b147f7091276cd26cefd655521e0aa6bd2700d\", \"live\": true, \"id\": \"xa99df918eb09f785\"}", "{\"sha\": \"1eb9d3a105706b20281e3a2a6fbeb7d58717a561\", \"live\": true, \"id\": \"x5f8553348926f035\"}", "{\"sha\": \"bed26a99a25958ccbe73b8fc22779948a7c2f90f\", \"live\": true, \"id\": \"xcfa9335b6b93c3bf\"}", "{\"sha\": \"5e13d2518e659df204607620d8324469b6805844\", \"live\": true, \"id\": \"x673a18b90802d758\"}", "{\"sha\": \"56fbd23ed431461f7605e2b47b245f4b5ff656ad\", \"live\": true, \"id\": \"xf17af1df35d8e6a9\"}", "{\"sha\": \"3c34beae6b0507a6bf22af8f770a7ab65a7fc3fd\", \"live\": true, \"id\": \"xd7500b8699bc2b0e\"}", "{\"sha\": \"41aa14dd590a98bf53b2ca78713d2ec96db7be1e\", \"live\": true, \"id\": \"x87f55833c20741d5\"}", "{\"sha\": \"d93f5bcc6eda10831c50d8706f7eee919ba5a84a\", \"live\": true, \"id\": \"xfacc735db780d224\"}", "{\"sha\": \"8347cd675723d62cd3b6c7f68ba8823a3fc06280\", \"live\": true, \"id\": \"x3c723b5105465682\"}", "{\"sha\": \"d20c0e7fac05669f09032e52dbd12c37de885fbd\", \"live\": true, \"id\": \"xdb5c9a9f9ccd6b84\"}", "{\"sha\": \"f7e6aa1ed0e948af95d2f4d299ecb5157d23ed8e\", \"live\": true, \"id\": \"xa869b5ee7518f8cf\"}", "{\"sha\": \"c3c5faf02f5a799eca36357f9b41db4564532066\", \"live\": true, \"id\": \"xc9c23faade82813a\"}", "{\"sha\": \"ca156042c263183789d64c162dea83348717ab57\", \"live\": true, \"id\": \"x38ffdff5ace9882a\"}", "{\"sha\": \"0a3c75df4a1c719fb94a8ee5023958dd44b1ce4c\", \"live\": true, \"id\": \"x3c6b3f078ea0f991\"}", "{\"sha\": \"cb092fe5a9306ddb4a95d2ddc42d9ca928d08686\", \"live\": true, \"id\": \"xc07a1df93e81ebe9\"}", "{\"sha\": \"8da145c6b6276beaec7674f8e684e63dd73212b3\", \"live\": true, \"id\": \"x2f1f50e5904de2bc\"}", "{\"sha\": \"f45c7a6d52b5dc5cdf8a3acbeab10a464a6fb8d3\", \"live\": true, \"id\": \"xe0198674aff01abf\"}", "{\"sha\": \"9e92783cb6a0bc21f2cb23a773f04f8f801869cb\", \"live\": true, \"id\": \"xb6506908c3251871\"}", "{\"sha\": \"11aef1650bcfc44884dcc7e9e15524055ede71af\", \"live\": true, \"id\": \"x932508094bb54b7b\"}", "{\"sha\": \"24841d6c9e8d68e184b75796b93a0f0e3f9f60a1\", \"live\": true, \"id\": \"x5207aac39905c92a\"}", "{\"sha\": \"3d30119345de86ff1dec73aa9e95f8c43ec9226d\", \"live\": true, \"id\": \"xe93a623d9c7d4d02\"}", "{\"sha\": \"32142b1f5af081eee70b37a9e96c39b35e42e0e3\", \"live\": true, \"id\": \"x443f08019c4679d1\"}", "{\"sha\": \"a3a4354375ddab406b82a0403b0584a52c70e4ac\", \"live\": true, \"id\": \"x19b9d9196912eb19\"}", "{\"sha\": \"fea86cf5f21244531fdd5ee6db78d896acc3b34c\", \"live\": true, \"id\": \"x39d7d8225326e8e3\"}", "{\"sha\": \"9e152d970c018b0e8d02c1475600d1e72feca4c2\", \"live\": true, \"id\": \"x8a5f25f9b73c6e9b\"}", "{\"sha\": \"950819260736a6346c139cb8355e5a19ad84fa90\", \"live\": true, \"id\": \"x4eb6da9b33a26c3f\"}", "{\"sha\": \"47577ff031bda8ba8512603b0ac1de9ac0612141\", \"live\": true, \"id\": \"xc41ef24eb1ff3a56\"}"], "description": "Practice solving word problems by adding small numbers (numbers 10 or less).", "basepoints": 10.0, "slug": "addition-word-problems-within-10", "kind": "Exercise", "name": "addition-word-problems-within-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["making-ten"], "exercise_id": "addition-word-problems-within-10"}, "burgundy-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/beginners-guide-northern-renaissance/burgundy-quiz/", "id": "burgundy-quiz", "display_name": "Northern Renaissance in the fifteenth century (quiz\u2014part 2)", "title": "Northern Renaissance in the fifteenth century (quiz\u2014part 2)", "all_assessment_items": ["{\"sha\": \"18eba9382bf00cf9b0b894a3657202ca5e8bcf0d\", \"live\": true, \"id\": \"xfe18be1b10e673b6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f4c7e5086b16223c5a526fba5265451ccbc3f0df\", \"live\": true, \"id\": \"x898ec1c802511c11\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"407a6f536f368dbde880613edd5929d128d92245\", \"live\": true, \"id\": \"x65427ed9fa9afc2c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"871182ea520e30e22ce1e3a594f2e0ec1fcb9f48\", \"live\": true, \"id\": \"x709c47e53869f515\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2486846adf7a720a6d91639ac438e4961debab9c\", \"live\": true, \"id\": \"x3ac85650cce8e2fe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88f53414bac60ac1369674a5780d23d04c1e9a25\", \"live\": true, \"id\": \"x8a70db7845456703\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "burgundy-quiz", "kind": "Exercise", "name": "burgundy-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "burgundy-quiz"}, "quiz-what-is-a-dinosaur": {"uses_assessment_items": true, "id": "quiz-what-is-a-dinosaur", "display_name": "Quiz: What is a dinosaur?", "title": "Quiz: What is a dinosaur?", "all_assessment_items": ["{\"sha\": \"4d6a2a97d94daacd8cdca6ed3b22c3de6f9b0e4d\", \"live\": true, \"id\": \"xa49abd0da675d027\", \"perseus_api_major_version\": null}", "{\"sha\": \"e55f3743500aa49c5dbcd5c1d39d879092035be3\", \"live\": true, \"id\": \"x729dc074d86eec15\", \"perseus_api_major_version\": null}", "{\"sha\": \"e19b6d9cfdc0bd046bc0cf1d35da8f99f2b2b107\", \"live\": true, \"id\": \"xbbd85220256be5d3\", \"perseus_api_major_version\": 0}", "{\"sha\": \"93309ee7e770c4d326ae1218f844d0360c22e3a5\", \"live\": true, \"id\": \"xe9c6df4e3e3918d4\", \"perseus_api_major_version\": null}", "{\"sha\": \"9933875654487d5ac04ac99e2c83e7a27fee0d5f\", \"live\": true, \"id\": \"x24df6cd612b9a753\", \"perseus_api_major_version\": null}", "{\"sha\": \"270ea41d150281bfd18a3900fbde7bbad117cb2d\", \"live\": true, \"id\": \"xda0d9df117420a7b\", \"perseus_api_major_version\": null}", "{\"sha\": \"d1d6e70bd763f33c704c44a4689f64e56e1e8a4c\", \"live\": true, \"id\": \"x8e687ca2fa360835\", \"perseus_api_major_version\": null}"], "description": "\n", "basepoints": 10.0, "path": "quiz-what-is-a-dinosaur/", "slug": "quiz-what-is-a-dinosaur", "kind": "Exercise", "name": "quiz-what-is-a-dinosaur", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-what-is-a-dinosaur"}, "demographics---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/demographics-passage-1/", "id": "demographics---passage-1", "display_name": "Population growth and immigration", "title": "Population growth and immigration", "all_assessment_items": ["{\"sha\": \"b6f4161a471365a528b966e9fe7795c5618c3e47\", \"live\": true, \"id\": \"xd8f302596552a77c\"}", "{\"sha\": \"a032d07e1579623dba1929afd96c5ef1d38fd564\", \"live\": true, \"id\": \"x873c063c23d81c15\"}", "{\"sha\": \"2b6424c7a0e0b90aa9f70ba7024a606cd1c83f3f\", \"live\": true, \"id\": \"x69b73dd8d3c3d887\"}", "{\"sha\": \"c197f1e52aabdbf6a611474689329eea7b5ef209\", \"live\": true, \"id\": \"xc69d64d9b1b0147d\"}", "{\"sha\": \"3605f2d1d4275f19719462c94775cab2d566a4a1\", \"live\": true, \"id\": \"xc8c7de192fe70905\"}"], "description": "Questions related to population growth and immigration", "basepoints": 10.0, "slug": "demographics-passage-1", "kind": "Exercise", "name": "demographics---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "demographics---passage-1"}, "demographics---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/demographics-passage-2/", "id": "demographics---passage-2", "display_name": "The J-curve hypothesis", "title": "The J-curve hypothesis", "all_assessment_items": ["{\"sha\": \"c250f7ff119996940adf36338db2379c006fea6a\", \"live\": true, \"id\": \"xff4cba57bbf7d442\", \"perseus_api_major_version\": null}", "{\"sha\": \"5183e8495d6709f133a98dd01662e82d0f8f8cd2\", \"live\": true, \"id\": \"x85795143a103cd21\", \"perseus_api_major_version\": 3}", "{\"sha\": \"457626b77ed692d23c4f88d5e107fe0e8be1340c\", \"live\": true, \"id\": \"x8287740e34c1f864\", \"perseus_api_major_version\": null}", "{\"sha\": \"80fcb398ef922c17a371f313f2e6d28923fc007e\", \"live\": true, \"id\": \"xb855ff64179e32d4\", \"perseus_api_major_version\": null}", "{\"sha\": \"aed175fd56f77bbc39fd24e8738635b00ae102f7\", \"live\": true, \"id\": \"x7356559238318fc7\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "demographics-passage-2", "kind": "Exercise", "name": "demographics---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "demographics---passage-2"}, "endocrine-system---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/endocrine-system-passage-2/", "id": "endocrine-system---passage-2", "display_name": "Measuring hormone levels", "title": "Measuring hormone levels", "all_assessment_items": ["{\"sha\": \"1cfbcf4bf86e47cc3fb80ff0d3c1182823d78410\", \"live\": true, \"id\": \"x460434dd4ac4aa07\"}", "{\"sha\": \"74e12b9d849cab51179009e49e19c2750b694107\", \"live\": true, \"id\": \"x2dc5f2ffb0f14d69\"}", "{\"sha\": \"c9cd006cf1d89ca64e3e8ee6555b345905d31d31\", \"live\": true, \"id\": \"x2247574e4e46d586\"}", "{\"sha\": \"0355842f2635933bcac83799ee87809cda5f8c9e\", \"live\": true, \"id\": \"x27a9ec644d1a4ff5\"}", "{\"sha\": \"0e8213246652b77d6af32ba45e5d699b4d66e645\", \"live\": true, \"id\": \"x41926528396a7513\"}"], "description": "", "basepoints": 10.0, "slug": "endocrine-system-passage-2", "kind": "Exercise", "name": "endocrine-system---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "endocrine-system---passage-2"}, "endocrine-system---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/endocrine-system-passage-1/", "id": "endocrine-system---passage-1", "display_name": "Regulation of growth hormone", "title": "Regulation of growth hormone", "all_assessment_items": ["{\"sha\": \"957b258c212e419fe803a29240997a64c683429a\", \"live\": true, \"id\": \"x0d5f591f1faa0845\", \"perseus_api_major_version\": 0}", "{\"sha\": \"338999685de9ac474dbe1e2b6b4907ebd933b1af\", \"live\": true, \"id\": \"x1ff7d50736a4e018\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0b52b015f018a3aa74de669da94fb5be84628a29\", \"live\": true, \"id\": \"x8d7c65b9101efde4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4ef1eaf3b89b008f16187c181b980d306d9c3000\", \"live\": true, \"id\": \"x282555ccb61f95fe\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c68239e302f506339806353400a4c7af6d63fa0e\", \"live\": true, \"id\": \"xa02d6e32fe476682\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 10.0, "slug": "endocrine-system-passage-1", "kind": "Exercise", "name": "endocrine-system---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "endocrine-system---passage-1"}, "reading_stem_and_leaf_plots": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/reading_stem_and_leaf_plots/", "id": "reading_stem_and_leaf_plots", "display_name": "Reading stem and leaf plots", "title": "Reading stem and leaf plots", "description": "", "basepoints": 16.0, "slug": "reading_stem_and_leaf_plots", "kind": "Exercise", "name": "reading_stem_and_leaf_plots", "seconds_per_fast_problem": 9.0, "prerequisites": ["reading_tables_2", "creating-line-plots-2"], "exercise_id": "reading_stem_and_leaf_plots"}, "biological-basis-of-behavior---endocrine-system": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/biological-basis-of-behavior-endocrine-system/", "id": "biological-basis-of-behavior---endocrine-system", "display_name": "Stress responses and the endocrine system", "title": "Stress responses and the endocrine system", "all_assessment_items": ["{\"sha\": \"d5fd4ea76673c3c7af5f72ae203899fe9e857203\", \"live\": true, \"id\": \"x09b221ed752e9678\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"80fa6d42f297479861b47c5d150d38047c3dca11\", \"live\": true, \"id\": \"x422ded3c9a82f63b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"332b4bbdd170a2fe360e335182db7b90f4d86c45\", \"live\": true, \"id\": \"x56b026714fa50182\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db5de36a9141c6d697721587ce1f529d766b3f36\", \"live\": true, \"id\": \"x71c107d89d5ad5d0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"646e4ac33e33a882c915921317b11f2633d73632\", \"live\": true, \"id\": \"xe2533ce6d5eda581\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "biological-basis-of-behavior-endocrine-system", "kind": "Exercise", "name": "biological-basis-of-behavior---endocrine-system", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "biological-basis-of-behavior---endocrine-system"}, "add-within-1000--level-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens-hundreds/add-within-1000-level-1/", "id": "add-within-1000--level-1", "display_name": "Add within 1000: Level 1", "title": "Add within 1000: Level 1", "all_assessment_items": ["{\"sha\": \"6cdd653e44ac2eb449c03315b3cdc47bde42bdcc\", \"live\": true, \"id\": \"xbe28830e28d136aa\"}", "{\"sha\": \"dc5b3831dc40012efa3682051a4baf93ad38e73b\", \"live\": true, \"id\": \"xeff8961ef28f5bb8\"}", "{\"sha\": \"2ebe0b90764573f31c6ef292a2381e7a779b583b\", \"live\": true, \"id\": \"x47a5bf1b2145430d\"}", "{\"sha\": \"ba397907d5fa8fc1f948b3fb503524cb3d384233\", \"live\": true, \"id\": \"xfcd5bd4446d9e1b2\"}", "{\"sha\": \"655445d2ad5224779229662cbdf8ae78a07fff0a\", \"live\": true, \"id\": \"x727cb7023181e85f\"}", "{\"sha\": \"c7943b0845f534acffdc2b661bc301039e358213\", \"live\": true, \"id\": \"xb757bb1698c29b93\"}", "{\"sha\": \"558dbcdd615aef2ebd8d38cc3be6d58b0fdf241f\", \"live\": true, \"id\": \"x1aeeb895959d63f8\"}", "{\"sha\": \"6f6070c4658744721678cab24c3e024615876dda\", \"live\": true, \"id\": \"xdcfec815142e015b\"}", "{\"sha\": \"3b6c9f3e6d9e8dd663a2d24da87058c60f1af1b4\", \"live\": true, \"id\": \"x550a2344ab0ee1fd\"}", "{\"sha\": \"4a9b55fb5ba2c2211aeef6c7b516bcfaaf47e527\", \"live\": true, \"id\": \"x88ab1197825733a5\"}", "{\"sha\": \"211a9b3964a30c94a6c30eb12c2afe4190f572c2\", \"live\": true, \"id\": \"x5ff24f5e77585436\"}", "{\"sha\": \"5256c6121e0911111a37ef07048979e5a07a42f5\", \"live\": true, \"id\": \"x5f7f49a5d651fd95\"}", "{\"sha\": \"637dd27e8a8076b6f5d75ea262792f0d55c463a2\", \"live\": true, \"id\": \"x6e2d9bc42ec07ba6\"}", "{\"sha\": \"9efc4a2d46350370e1134d85d67663c7526ad15c\", \"live\": true, \"id\": \"x0a193bf61afdca84\"}", "{\"sha\": \"cf514627c2daa33f27228d1baa11d35ee99758be\", \"live\": true, \"id\": \"xb9c6fbed115517c4\"}", "{\"sha\": \"5666d65de03014472f81a59c5d8d9ac51d036f31\", \"live\": true, \"id\": \"x0074c1406ef137f4\"}", "{\"sha\": \"f4a1868ddf9abb3c7f8431042a0491d4a7d57c52\", \"live\": true, \"id\": \"x4cfab8026dbe79b6\"}", "{\"sha\": \"c06b5dcc7ffd6ce08818f17039cfbed813f2dbe2\", \"live\": true, \"id\": \"x524411ac4fe10a9f\"}", "{\"sha\": \"f300c3c7c40dcf6c274837a4b55a2c4a4162c0bc\", \"live\": true, \"id\": \"xee3814023310d86d\"}", "{\"sha\": \"b9ee1ee10871d8a9b7dc49b0216847fde4b49637\", \"live\": true, \"id\": \"xd80a596129803979\"}"], "description": "", "basepoints": 10.0, "slug": "add-within-1000-level-1", "kind": "Exercise", "name": "add-within-1000--level-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["hundreds--tens--and-ones", "add-within-100--level-2"], "exercise_id": "add-within-1000--level-1"}, "trigonometric-functions-and-side-ratios-in-right-triangles": {"uses_assessment_items": true, "path": "khan/math/trigonometry/basic-trigonometry/cc-trig-ratios-similarity/trigonometric-functions-and-side-ratios-in-right-triangles/", "id": "trigonometric-functions-and-side-ratios-in-right-triangles", "display_name": "Trigonometric functions and side ratios in right triangles", "title": "Trigonometric functions and side ratios in right triangles", "all_assessment_items": ["{\"sha\": \"4af28eb32279effa70fe03eee357c6e572ef50d1\", \"live\": true, \"id\": \"xebd695e8b75aedf4\"}", "{\"sha\": \"e3b956c684fbe9e17e741bcee052c3e0658a3d0c\", \"live\": true, \"id\": \"x34d731bd565e1c1b\"}", "{\"sha\": \"8fe305e6d7a645528f6fdd59ef194702acd34f96\", \"live\": true, \"id\": \"xdfca08539cfb0cab\"}", "{\"sha\": \"c0a864a389b2d746d062ae301e4cf16cc8030f4d\", \"live\": true, \"id\": \"xb5a3cb5692248659\"}", "{\"sha\": \"39489a51b01a14bd15fb9beafa3f558e477ef468\", \"live\": true, \"id\": \"xa75c84f7bb8e1529\"}", "{\"sha\": \"c81cf04ccc190ff39a1d6f864bae9ada000dc5d8\", \"live\": true, \"id\": \"xb7e311ebff046cae\"}", "{\"sha\": \"429fb7bd5b2de6b0ea69a543da489d2c926d11c8\", \"live\": true, \"id\": \"x5b123b861e37944f\"}", "{\"sha\": \"02b14d67c96b23e6ea4e3a37aa20c69cfb38d221\", \"live\": true, \"id\": \"xc8aa6688e5d69ac1\"}", "{\"sha\": \"26e9cdba3c84dab79c4bfaeb29b4bd5cde9ea1be\", \"live\": true, \"id\": \"x569fd6dbfed5cf36\"}", "{\"sha\": \"80428b751b17a138a18f608e8608383046f2b360\", \"live\": true, \"id\": \"xcaca78102515d20e\"}", "{\"sha\": \"82efc2a26fed0a2cd069d320f69b981bd7c489e9\", \"live\": true, \"id\": \"xd2de6b3d1b92ea1d\"}", "{\"sha\": \"44490d8abd3099aa888773a17ed9d2ad79df8c69\", \"live\": true, \"id\": \"xf5ec2c84b1d02621\"}", "{\"sha\": \"c778be23c0bf05e4448dc80ea0e522612316d0a1\", \"live\": true, \"id\": \"x03d5d2150972f59a\"}", "{\"sha\": \"319019535ac3a55f8f1d12dee52eacef6abb1f59\", \"live\": true, \"id\": \"x871e66f9c03b71af\"}", "{\"sha\": \"f5be3493933c56080de758075e9b28a018d93aa6\", \"live\": true, \"id\": \"xc736a1dcd71ea2e0\"}", "{\"sha\": \"7e5b7ba7c92b85859afc23be2a4d0d50372d62f0\", \"live\": true, \"id\": \"x0f4af21fb6bf8be9\"}", "{\"sha\": \"d08bd135f2d6e1fdbc972f3b4e6c93a83b4e6ef7\", \"live\": true, \"id\": \"x98ab0efa45834837\"}", "{\"sha\": \"4c95de37802e8955dd8bf885b986cd4894c3d548\", \"live\": true, \"id\": \"x42b02a8a5e915294\"}", "{\"sha\": \"58b1719edce2fc940fe9866c92665242fe6ea13c\", \"live\": true, \"id\": \"xc5bc67df857b0b9d\"}", "{\"sha\": \"e071c6b62ef7b3daa0d9ab2c7138a646acbc656f\", \"live\": true, \"id\": \"xb109bb25e9a9e00a\"}", "{\"sha\": \"9e590a83b4af04e4d9448f6db7f64f70905e4630\", \"live\": true, \"id\": \"x0c4ee3f50f816899\"}", "{\"sha\": \"f56db94354813af436815fb147234584eebdb27d\", \"live\": true, \"id\": \"x2c3440a3af56aacd\"}", "{\"sha\": \"ec745e109f8d6ba5fe7d3ccc2a3f4e3087e88f19\", \"live\": true, \"id\": \"xf662c7d4a1faa1a9\"}", "{\"sha\": \"4a86312da21b9c32ee17feff9edf8b5ec6ee72dc\", \"live\": true, \"id\": \"xb61dc179a8c4df8c\"}", "{\"sha\": \"f2cbd7f72d5026b611d01debb8c96430a5adc992\", \"live\": true, \"id\": \"x72dbd152b54bde55\"}", "{\"sha\": \"bf6241628b6d160b2e04231b69381b1afe55a10c\", \"live\": true, \"id\": \"xf6f24900a5cf8f7c\"}", "{\"sha\": \"3e234f6b1101cbc62620d0ae40b2ba82fad0b6b4\", \"live\": true, \"id\": \"x1fd656c6f206e888\"}", "{\"sha\": \"0669d3404371845227fae8e0cb743147e66296a3\", \"live\": true, \"id\": \"x6eafd9053b505ba2\"}", "{\"sha\": \"5827b750a33363d4beba6a694d65046765e3b540\", \"live\": true, \"id\": \"x8c8d79c400b75d83\"}", "{\"sha\": \"88348445e77ac861c34230057824f9f3ede8b309\", \"live\": true, \"id\": \"x08961f976094355e\"}"], "description": "", "basepoints": 10.0, "slug": "trigonometric-functions-and-side-ratios-in-right-triangles", "kind": "Exercise", "name": "trigonometric-functions-and-side-ratios-in-right-triangles", "seconds_per_fast_problem": 4.0, "prerequisites": ["solving-problems-with-similar-and-congruent-triangles", "defining-similarity-through-angle-preserving-transformations", "unit-circle-trigonometry", "trigonometric-functions-of-special-angles"], "exercise_id": "trigonometric-functions-and-side-ratios-in-right-triangles"}, "purification-of-caffeine": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/purification-of-caffeine/", "id": "purification-of-caffeine", "display_name": "Purification of caffeine", "title": "Purification of caffeine", "all_assessment_items": ["{\"sha\": \"45e8f4da55f432367ff7c71c1f08c32ba6aac945\", \"live\": true, \"id\": \"x825e792e845a988e\"}", "{\"sha\": \"140d712f1e0e60f0771bd785fdc0871828a461a6\", \"live\": true, \"id\": \"x144ff4884f464e87\"}", "{\"sha\": \"4919a6071e24449b175283c6615769ff43fa0200\", \"live\": true, \"id\": \"x58910a0faa72aa2f\"}", "{\"sha\": \"de35ad76aefc3290e0e8df4f84eb76c0b2a97c4e\", \"live\": true, \"id\": \"x763aa73cbd7c4db3\"}", "{\"sha\": \"d8bf4e0917ae936a0b528cb0e9f06983d0f7142c\", \"live\": true, \"id\": \"xe9de70f76a2637e9\"}"], "description": "Questions related to purification techniques and chemical reactivity.", "basepoints": 10.0, "slug": "purification-of-caffeine", "kind": "Exercise", "name": "purification-of-caffeine", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "purification-of-caffeine"}, "combining-like-terms-with-distribution": {"uses_assessment_items": true, "id": "combining-like-terms-with-distribution", "display_name": "Combining like terms with distribution", "title": "Combining like terms with distribution", "all_assessment_items": ["{\"sha\": \"45d48ea71545b95f75d727664eb53913c17177b8\", \"live\": true, \"id\": \"xdf1196c50a699e56\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7082ebffdc238ad34841cd2bd3e4f58a3c369f22\", \"live\": true, \"id\": \"x763bb6bce55d9d39\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"750f10a36179f59acf16d2543a9f647bda014f24\", \"live\": true, \"id\": \"xe9762d480a8f96c4\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3555d606f411dcf1e892f0e0b55645255b77088e\", \"live\": true, \"id\": \"x2f6faad7afe95e46\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e7edf6d841b43ee52c18fb45b38907bacd9b5ff\", \"live\": true, \"id\": \"xf1cb6195c4482b31\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b57190d1c209ec4b49a8b67c3d6533cdaa64ae37\", \"live\": true, \"id\": \"x90348dfd6a167a00\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2a787edce24d522face2d2b349e2f853cd841dbd\", \"live\": true, \"id\": \"x8b3a329949e0e785\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bf8c1bd1401987402a2453ab9b2ee55be9ca7759\", \"live\": true, \"id\": \"x95c2e6a6e70297ef\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"634b8c7fd76bb46667e423679b2bd195659fa987\", \"live\": true, \"id\": \"x02aeb5a2bfc3e8aa\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b40683ba744c8c0eb34d2da06a5a25db119b95fc\", \"live\": true, \"id\": \"xed0f54043bcf7e6a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8db7ba54b6b7723ce133c24f396940378f502f3f\", \"live\": true, \"id\": \"x5e97b9c26f9819f8\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c8682045ec87623ae3c0b5d07686f7cc7fb77bde\", \"live\": true, \"id\": \"x6de5a7c7fdc76ca9\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"4562f98e71ce7d0d7f980832a94100156cde1ef5\", \"live\": true, \"id\": \"x65b73e860751129e\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"74fe1538a3f61116b8e8954a3d2b7573cac282ca\", \"live\": true, \"id\": \"xd64f9a433889713c\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8a5425a482dce50adfe1313bfe7b00c182c1d8d8\", \"live\": true, \"id\": \"x68e5347aa2b99457\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0b7e396d801c11eacfacec166747247d7b8ed41f\", \"live\": true, \"id\": \"x5d1871e41536f5ea\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8ff626d82927133c9fb0375797c75c3da89e9e3\", \"live\": true, \"id\": \"x4aa8e4dac55da231\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"0eb9ee899a1a978e791e6e548ee72309da17acbf\", \"live\": true, \"id\": \"xdeeea9a9e2c3ce6d\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7d764960f9705a4e59b42e7006723e7c67b8cf10\", \"live\": true, \"id\": \"x6dc904135cc50b2d\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f21c805fd46d160788c079ee2ed9148205dd7155\", \"live\": true, \"id\": \"x63da0c2bb2b378a9\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}"], "description": "Practice expanding expressions using the distributive property then combining like terms.", "basepoints": 10.0, "path": "combining-like-terms-with-distribution/", "slug": "combining-like-terms-with-distribution", "kind": "Exercise", "name": "combining-like-terms-with-distribution", "seconds_per_fast_problem": 4.0, "prerequisites": ["distributive-property-with-variables", "combining-like-terms-0.5"], "exercise_id": "combining-like-terms-with-distribution"}, "quiz-welcome-to-the-big-history": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/what-is-big-history/welcome-to-big-history/quiz-welcome-to-the-big-history/", "id": "quiz-welcome-to-the-big-history", "display_name": "Quiz: Welcome to the Big History", "title": "Quiz: Welcome to the Big History", "all_assessment_items": ["{\"sha\": \"8e7ace9887b38444eac776ccbec1e01ebbe286da\", \"live\": true, \"id\": \"x238559eefb2c3dfb\"}", "{\"sha\": \"f3865d25fcdf8a4b3bbb44bfc1feffb190a33776\", \"live\": true, \"id\": \"xe47b40cda1b45a8e\"}", "{\"sha\": \"5eb00b76440e7feea822ef7c75591b52fc9c912c\", \"live\": true, \"id\": \"x21cce9322cde531d\"}", "{\"sha\": \"426f910c50bbbc038ebdb8902e95bfe3a8bd41fc\", \"live\": true, \"id\": \"x40261ab43ad47284\"}", "{\"sha\": \"5ac298ead7f4035d7626d9f5003cc0ef44a9f5a0\", \"live\": true, \"id\": \"xa6faeb0ad156ae94\"}"], "description": "Quiz 1.0", "basepoints": 10.0, "slug": "quiz-welcome-to-the-big-history", "kind": "Exercise", "name": "quiz-welcome-to-the-big-history", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-welcome-to-the-big-history"}, "klimt-s-the-kiss-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/symbolism/klimt-s-the-kiss-quiz/", "id": "klimt-s-the-kiss-quiz", "display_name": "Klimt's The Kiss Quiz", "title": "Klimt's The Kiss Quiz", "all_assessment_items": ["{\"sha\": \"c5e36ecb61949c89e50978f47faa6856349d6dda\", \"live\": true, \"id\": \"x131bfd46ae0079ac\", \"perseus_api_major_version\": 0}", "{\"sha\": \"bc034da0534311c6523b3fe660693027472dcbe0\", \"live\": true, \"id\": \"x330dec27f200d1ad\", \"perseus_api_major_version\": 3}", "{\"sha\": \"fbbc968f92c4521993734af892503866bc5d105d\", \"live\": true, \"id\": \"x1fde2ca9ceae05d9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"efc6897252fe8096070585d79bba133bb1e314ca\", \"live\": true, \"id\": \"x8d3a1de4a3c5d304\", \"perseus_api_major_version\": 3}"], "description": "This quiz is for the video Gustav Klimt, The Kiss", "basepoints": 10.0, "slug": "klimt-s-the-kiss-quiz", "kind": "Exercise", "name": "klimt-s-the-kiss-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "klimt-s-the-kiss-quiz"}, "portraits-of-the-duke-and-duchess-of-urbino-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/central-italy1/portraits-of-the-duke-and-duchess-of-urbino-quiz/", "id": "portraits-of-the-duke-and-duchess-of-urbino-quiz", "display_name": "Piero della Francesca, Portraits of the Duke and Duchess of Urbino (quiz)", "title": "Piero della Francesca, Portraits of the Duke and Duchess of Urbino (quiz)", "all_assessment_items": ["{\"sha\": \"da367c328663ac79095e97b93950623ace642224\", \"live\": true, \"id\": \"x79a1cfb9e901c867\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6f519ebf4c9b0acf1801b35a848464ebee851494\", \"live\": true, \"id\": \"x1fff166877c63157\", \"perseus_api_major_version\": 3}", "{\"sha\": \"eb59a50dc40e95e7e6d6a96aab81439b562847bd\", \"live\": true, \"id\": \"x484542d5a9a474b1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d8c70f47c24e8d4ca0fdc42c332968da73ed4afa\", \"live\": true, \"id\": \"xe52548f07c3c3c67\", \"perseus_api_major_version\": 3}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "portraits-of-the-duke-and-duchess-of-urbino-quiz", "kind": "Exercise", "name": "portraits-of-the-duke-and-duchess-of-urbino-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "portraits-of-the-duke-and-duchess-of-urbino-quiz"}, "recognizing_conic_sections": {"uses_assessment_items": false, "path": "khan/math/algebra2/conics_precalc/conic_section_intro/recognizing_conic_sections/", "id": "recognizing_conic_sections", "display_name": "Recognizing conic sections", "title": "Recognizing conic sections", "description": "Determine if the graph of a conic section shows a circle, hyperbola, parabola, or ellipse.", "basepoints": 10.0, "slug": "recognizing_conic_sections", "kind": "Exercise", "name": "recognizing_conic_sections", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_polynomials", "parabola_intuition_1"], "exercise_id": "recognizing_conic_sections"}, "one-sided-limits-from-graphs": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/limits_topic/calculus-estimating-limits-graph/one-sided-limits-from-graphs/", "id": "one-sided-limits-from-graphs", "display_name": "One-sided limits from graphs", "title": "One-sided limits from graphs", "all_assessment_items": ["{\"sha\": \"beb70b39196e5fba7143caac7ac7caf79347d66e\", \"live\": true, \"id\": \"xe07f098d\"}", "{\"sha\": \"cb747f77c492d550d33f4d515da4428c504519f2\", \"live\": true, \"id\": \"xe7d3a244\"}", "{\"sha\": \"93f03cb8c041cfa3f4986e245e22b8a8141b16f1\", \"live\": true, \"id\": \"x31ce653a\"}", "{\"sha\": \"1f271619d3337cf050326b5e20dbe05db7b9d0c4\", \"live\": true, \"id\": \"xbd7bc480\"}", "{\"sha\": \"ebf293f1768d185f824071797b8c101c1aa09e96\", \"live\": true, \"id\": \"xdca1b079\"}", "{\"sha\": \"690cde69fb1fa558e470a03edbe20b68584d4c37\", \"live\": true, \"id\": \"x045dcb20\"}", "{\"sha\": \"ecb5760fdb65330311c59047ec43e5bb0f936c27\", \"live\": true, \"id\": \"x9b4a54f0\"}", "{\"sha\": \"68e9cc5eddf8469d4462473bcf1453cc6990ef86\", \"live\": true, \"id\": \"x19a9b9d1\"}", "{\"sha\": \"8d6aaef915b3e40e223040020cdb04f7b63a3541\", \"live\": true, \"id\": \"xd97c8623\"}", "{\"sha\": \"12f948d3e01c420283e76bd108edbd48ec92de4e\", \"live\": true, \"id\": \"x15101946\"}", "{\"sha\": \"d3d5def0b3a6830313d76a0f225c5c80d0945e93\", \"live\": true, \"id\": \"x79a7e472\"}", "{\"sha\": \"10cbe3e42a4a4637a0a0e2dd34f1f7ba30620b31\", \"live\": true, \"id\": \"xc4009af1\"}", "{\"sha\": \"d2c02234d9ecd7e02d4944b15ae77e73aea91d88\", \"live\": true, \"id\": \"xfd24fb7f\"}", "{\"sha\": \"d167749976323b9f54fc5d0e64f73d7f7ad17ff8\", \"live\": true, \"id\": \"xcbc3d1d4\"}", "{\"sha\": \"838b622638c25b8a8c4f2faf9d92ca2be5cdd513\", \"live\": true, \"id\": \"xe6b26e28\"}", "{\"sha\": \"641b868cc2ea427d4f552b9c98d683c3b22b9d92\", \"live\": true, \"id\": \"x603af2db\"}", "{\"sha\": \"72bf42962c1913ab2bcc9f4c48b06c846ff2dea3\", \"live\": true, \"id\": \"xe99b6660\"}", "{\"sha\": \"2a48330e7f49bf72f424e38ee1774f5024d8fe8a\", \"live\": true, \"id\": \"x7b0ca6bf\"}", "{\"sha\": \"faec0227fd4585946c248674ee607749b52aaa01\", \"live\": true, \"id\": \"x40af0afc\"}", "{\"sha\": \"a43f4a9160088aaefed4343823c62258407c706f\", \"live\": true, \"id\": \"x3b4db2fe\"}", "{\"sha\": \"7de268b2e14c286e73b98b4e89ec9993b2b477fb\", \"live\": true, \"id\": \"x032c8b66\"}", "{\"sha\": \"6bef8ea89ed7ebe51196cc7f7c87dfb69d9ad3ef\", \"live\": true, \"id\": \"xfd6bd277\"}", "{\"sha\": \"9f87453395e47e30f6d92cba1ef373081b84a26a\", \"live\": true, \"id\": \"xbeb05f14\"}", "{\"sha\": \"3dcee78aaf44bbed7a550f3d5efcec30bac1b71d\", \"live\": true, \"id\": \"xdd3b3a17\"}", "{\"sha\": \"0f869c6593ab56a9a74f1bbc60cb23d6ecc4c22b\", \"live\": true, \"id\": \"x3d22c80c\"}", "{\"sha\": \"4ea2cf35857efa595cf8b16dc0ea2ed5f6e23793\", \"live\": true, \"id\": \"x9698539e\"}", "{\"sha\": \"ac2ea7a5dcb260351495ca2247c16223594d760b\", \"live\": true, \"id\": \"x6572bc65\"}"], "description": "", "basepoints": 17.0, "slug": "one-sided-limits-from-graphs", "kind": "Exercise", "name": "one-sided-limits-from-graphs", "seconds_per_fast_problem": 11.0, "prerequisites": ["comparing-features-of-functions-2"], "exercise_id": "one-sided-limits-from-graphs"}, "finding-limits-numerically": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/limits_topic/limits_tutorial/finding-limits-numerically/", "id": "finding-limits-numerically", "display_name": "Finding limits numerically", "title": "Finding limits numerically", "all_assessment_items": ["{\"sha\": \"f9867c82b2242b6d7e4d240c4adac9e94c367a28\", \"live\": true, \"id\": \"x6e720ba95877d391\"}", "{\"sha\": \"dd29bc1e652a1c0c0033003de33ee49487ba9b3a\", \"live\": true, \"id\": \"xb65317b30964cc42\"}", "{\"sha\": \"0e10457c349ee9708cae62f381f8348eee1b9d48\", \"live\": true, \"id\": \"x24f560f7798e6065\"}", "{\"sha\": \"3d26ba8d3db403558c39cc78f825ec627a6a275e\", \"live\": true, \"id\": \"x6b8b2ee71d033528\"}", "{\"sha\": \"0f96a20dbe3b99965ce54271d96e7f0c2081c4f8\", \"live\": true, \"id\": \"x3434a2222b9c3a3e\"}", "{\"sha\": \"c2900599c4b800ee5067d6986a039697f8d423ac\", \"live\": true, \"id\": \"xec71fdbab59cfe3c\"}", "{\"sha\": \"eb0eeab22d2880f226fc9e42089db8d8ee4acc24\", \"live\": true, \"id\": \"xa3578a58df1a9fa5\"}", "{\"sha\": \"f995f07bf4b47ccec6d1796ef6ad4627b9e6ca27\", \"live\": true, \"id\": \"xe0c3a39391f6b398\"}", "{\"sha\": \"9bb3359c2aa56d1bc42571b76bd86c99a716dbbd\", \"live\": true, \"id\": \"x0a3c12c33057f10b\"}", "{\"sha\": \"6406142290e10585e734daddf7bdf2d89b8d7882\", \"live\": true, \"id\": \"x1a99e8f79b2b9a41\"}", "{\"sha\": \"3c621aa5459c62f94d27d2f8d90f49588b561359\", \"live\": true, \"id\": \"xda140849f9fd0929\"}", "{\"sha\": \"0c9d8908551a7971aeb4c4622fbe84cb705ce35d\", \"live\": true, \"id\": \"x319d778e217d40c1\"}", "{\"sha\": \"29ddab087c2f080dcba21478dce4fa1810f8de5a\", \"live\": true, \"id\": \"xaa1c51de00b83e73\"}", "{\"sha\": \"6dc37c1358cfe1edb5708562fa79309d8614183d\", \"live\": true, \"id\": \"xa13d321408532cd8\"}", "{\"sha\": \"60d284a7f4d37393a0e0abe40e83373096a24bf3\", \"live\": true, \"id\": \"x42910fe1303d2c47\"}", "{\"sha\": \"51be0a4125013563636bbce2ec7f15fe3ec1cc7a\", \"live\": true, \"id\": \"x86de3cc78ec7ad4f\"}", "{\"sha\": \"3005fbf0aaca7080ef6cbddce9dc04a8aeb4b69c\", \"live\": true, \"id\": \"x2fdc702fa70f14e5\"}", "{\"sha\": \"1fce7260ae3238278b27dc646eac3ac4f0cbb8ea\", \"live\": true, \"id\": \"x26042d421c96f9e1\"}", "{\"sha\": \"5e428b3769c669c1076c6b70422ac77054f2704e\", \"live\": true, \"id\": \"x25bb3d0ce97319c4\"}", "{\"sha\": \"4f57602fe18e5fb302a2a4fdd66058280987fdcd\", \"live\": true, \"id\": \"x885865934f82ec6f\"}", "{\"sha\": \"37a0010df5057e4751974d7fbbef0c655006a9d7\", \"live\": true, \"id\": \"x86341d79c26205be\"}", "{\"sha\": \"84b2e1b3d9c9237e024cb31b55ff12c3b19926e6\", \"live\": true, \"id\": \"x5d97a584443e5553\"}", "{\"sha\": \"df64c0e1e70f9914b010e21d426de778c8b77756\", \"live\": true, \"id\": \"xbdab8ce4e98d6fbe\"}", "{\"sha\": \"3e1193472a4f54493dab4ab4922fd1b36c45c0ab\", \"live\": true, \"id\": \"x84fbed66709d1994\"}", "{\"sha\": \"95d0d6e724ca08b85c751e7cbc7f8a07629f7513\", \"live\": true, \"id\": \"x29353d6b5b2fc333\"}", "{\"sha\": \"23bf38147b7ebb3351c95e4e0006a1dacde7fe7a\", \"live\": true, \"id\": \"xe508c945230d3fa2\"}", "{\"sha\": \"2ef2443718502e4758bcf2986b3be649ef2b6938\", \"live\": true, \"id\": \"x374b01923ae12084\"}", "{\"sha\": \"0145a8ce949569247a14ced7075a4b8f5d3bfdcd\", \"live\": true, \"id\": \"x00eea86aa3a145d3\"}", "{\"sha\": \"f9abe05c7a4da39d9e237175502ab12d54a35a4f\", \"live\": true, \"id\": \"x3b2f8f45aded3cc4\"}", "{\"sha\": \"670c86d2def1a3696db4f04e95710b5b9f231ba2\", \"live\": true, \"id\": \"x756bebd9d906a1e4\"}"], "description": "Find limits numerically by completing a table of values.", "basepoints": 22.0, "slug": "finding-limits-numerically", "kind": "Exercise", "name": "finding-limits-numerically", "seconds_per_fast_problem": 22.0, "prerequisites": ["two-sided-limits-from-graphs"], "exercise_id": "finding-limits-numerically"}, "preventing-lipopolysaccharide-formation-in-cystic-fibrosis-patients": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/preventing-lipopolysaccharide-formation-in-cystic-fibrosis-patients/", "id": "preventing-lipopolysaccharide-formation-in-cystic-fibrosis-patients", "display_name": "Preventing Lipopolysaccharide Formation in Cystic Fibrosis Patients", "title": "Preventing Lipopolysaccharide Formation in Cystic Fibrosis Patients", "all_assessment_items": ["{\"sha\": \"97927ce96b7df89511e8f35f498d1725247992f1\", \"live\": true, \"id\": \"x488b903640e08f3f\"}", "{\"sha\": \"82912860212098bd31840a144a9d025ec6a5e8fd\", \"live\": true, \"id\": \"x815be8e5656d0ada\"}", "{\"sha\": \"b0b4f0d552579c432be47174d89290eee7a56352\", \"live\": true, \"id\": \"xbd873e4c2cc24703\"}", "{\"sha\": \"3fa8adc8a3f38d569a937829d875f0f8fe2ccd41\", \"live\": true, \"id\": \"x22b781cdf88858b1\"}", "{\"sha\": \"b1537b4a226615b105f73b12f9157acb61693bcf\", \"live\": true, \"id\": \"x72eff87ac21035e1\"}"], "description": "Preventing Lipopolysaccharide Formation in Cystic Fibrosis Patients", "basepoints": 10.0, "slug": "preventing-lipopolysaccharide-formation-in-cystic-fibrosis-patients", "kind": "Exercise", "name": "preventing-lipopolysaccharide-formation-in-cystic-fibrosis-patients", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "preventing-lipopolysaccharide-formation-in-cystic-fibrosis-patients"}, "demographic-characteristics-and-processes": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/society-and-culture/demographics/demographic-characteristics-and-processes/", "id": "demographic-characteristics-and-processes", "display_name": "Demographic characteristics and processes", "title": "Demographic characteristics and processes", "all_assessment_items": ["{\"sha\": \"a8a793dfaccba30f9902f2f953c6202307514557\", \"live\": true, \"id\": \"x4d5f6aa76cef24e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"4fcb04fe9170ac75efd02187d3f0920599ced0e5\", \"live\": true, \"id\": \"x22a33f03efe7e2c2\", \"perseus_api_major_version\": null}", "{\"sha\": \"8e89aabaac1a1a5baaeef0d08f5fc4eb0e3ee11b\", \"live\": true, \"id\": \"xc302d18c1ac6dbff\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ea8d580ca3f002cfd17c24c4e54fe9895e73e34e\", \"live\": true, \"id\": \"x995b8a4ea9920997\", \"perseus_api_major_version\": null}", "{\"sha\": \"a06795a851cf24c3b4ba5266b9331a31d3aa5a24\", \"live\": true, \"id\": \"xd57efde9e07e3aa3\", \"perseus_api_major_version\": null}", "{\"sha\": \"9f7f483e69a9425ae17996482fe04b5ee283b7ce\", \"live\": true, \"id\": \"xea34b3597041abc9\", \"perseus_api_major_version\": null}", "{\"sha\": \"1ef01ff7746ae630c6b3be92b852005c58fae8c8\", \"live\": true, \"id\": \"x7d03db75fe407d59\", \"perseus_api_major_version\": null}", "{\"sha\": \"1d822a6313f8f18327fa33481b987bdfa9d737c5\", \"live\": true, \"id\": \"xad6544f4f8717f48\", \"perseus_api_major_version\": null}", "{\"sha\": \"a819f26316c7ef6e2032cfaf878ad6f827246a62\", \"live\": true, \"id\": \"x88b8f5c336e48ae2\", \"perseus_api_major_version\": null}", "{\"sha\": \"f8c05370d227767ed0f5612ffa2b63c27ec3701f\", \"live\": true, \"id\": \"x462a4c76a8404693\", \"perseus_api_major_version\": null}", "{\"sha\": \"9e3a05339a4dd05c67cfdeea3482877730791b31\", \"live\": true, \"id\": \"x3e613eb246c3fe08\", \"perseus_api_major_version\": null}", "{\"sha\": \"80877425498dedabb944f7e68a2d4b4ed9cff512\", \"live\": true, \"id\": \"x19ef25dd1eb62fe2\", \"perseus_api_major_version\": null}"], "description": "Demographic characteristics and processes - free-standing questions", "basepoints": 10.0, "slug": "demographic-characteristics-and-processes", "kind": "Exercise", "name": "demographic-characteristics-and-processes", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "demographic-characteristics-and-processes"}, "equal-parts-of-circles-and-rectangles": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-fractions-of-shapes/equal-parts-of-circles-and-rectangles/", "id": "equal-parts-of-circles-and-rectangles", "display_name": "Equal parts of circles and rectangles", "title": "Equal parts of circles and rectangles", "all_assessment_items": ["{\"sha\": \"d6d58e2b67f61aa569f50697ca361748c955b6b9\", \"live\": true, \"id\": \"x5bb855b2e5b45507\"}", "{\"sha\": \"e4c5fa59acd72a4d530c0e214412fbf3d790f7d7\", \"live\": true, \"id\": \"x50475b7fa909596c\"}", "{\"sha\": \"653a63ca22d6199f56436133fdc270e6c56dac64\", \"live\": true, \"id\": \"x9a5923c0d581efa7\"}", "{\"sha\": \"f2a400a4deb358e6e27b119777f6e4211f6b6265\", \"live\": true, \"id\": \"x9ea7eb93ea36778b\"}", "{\"sha\": \"476db5aa16a9bc363a48f5a5e5b315c0f5ea531a\", \"live\": true, \"id\": \"x24b128d57c95d9f8\"}", "{\"sha\": \"d52bc3868adeda3e687e477355b6bd19fa155f75\", \"live\": true, \"id\": \"x80be033ed3e6972e\"}", "{\"sha\": \"10b04fbdc4b37542cd1f3771087523ef0c8a1583\", \"live\": true, \"id\": \"x8137d5018371953d\"}", "{\"sha\": \"50e378a2f7189368fb30716a13d01efe353aeb66\", \"live\": true, \"id\": \"x37efd4aa095ada5a\"}", "{\"sha\": \"e7b3079a4c16b31adc80632128f2486ed210dfd1\", \"live\": true, \"id\": \"xb1093e891e41ed29\"}", "{\"sha\": \"a21638662a8200c4dc6324a680cf8d5b460cd604\", \"live\": true, \"id\": \"x1f6265aa950c8f4c\"}", "{\"sha\": \"a92adb5b85d456f20737aafe001ef8ef60a493b8\", \"live\": true, \"id\": \"xfed08c29e385746b\"}", "{\"sha\": \"e34e1b3272bf1a8f50e0dc5058d0fa199e32bb21\", \"live\": true, \"id\": \"xf2ca463c89da7f23\"}", "{\"sha\": \"5a085a923e4c385941558a9f7859f43f2214c015\", \"live\": true, \"id\": \"x5774cc4ec4fece20\"}", "{\"sha\": \"1361214a90783411d235f53a3401d9f5b20f403e\", \"live\": true, \"id\": \"x0cda7e85fec304b4\"}", "{\"sha\": \"1f77f6150e061bae1ce90601d08e53b2d14ab628\", \"live\": true, \"id\": \"x16e3af2585552883\"}", "{\"sha\": \"5d28f482ca5ed2adea8e6021b1bed0c436f448e9\", \"live\": true, \"id\": \"xb14d4ee49abb8dd0\"}", "{\"sha\": \"101b610dfb8398c3c1760d098ff5bc8093b46feb\", \"live\": true, \"id\": \"x2817b1d5ecb5031b\"}", "{\"sha\": \"c27ce23e0f079b60c5c976c821b1e86903a19b7a\", \"live\": true, \"id\": \"x4eadc6ab86d1088a\"}", "{\"sha\": \"52fb8cf75338b9e332cb2d2796afbf114e1b298d\", \"live\": true, \"id\": \"xc5863cdd2f400829\"}", "{\"sha\": \"1b7b8865b23ad69550963516a1b26f7e015c4512\", \"live\": true, \"id\": \"x245e9402d4b597e6\"}"], "description": "Practice telling if shapes are divided into two or four equal sections.", "basepoints": 10.0, "slug": "equal-parts-of-circles-and-rectangles", "kind": "Exercise", "name": "equal-parts-of-circles-and-rectangles", "seconds_per_fast_problem": 4.0, "prerequisites": ["halves-and-fourths"], "exercise_id": "equal-parts-of-circles-and-rectangles"}, "constructing-geometric-figures": {"uses_assessment_items": true, "id": "constructing-geometric-figures", "display_name": "Constructing 2D figures", "title": "Constructing 2D figures", "all_assessment_items": ["{\"sha\": \"558257fcae42933a6f7b9263104fa83fd83552d6\", \"live\": true, \"id\": \"xa032b60eb9810f30\"}", "{\"sha\": \"0682efeaa1f6888b42d3bfbb0796f30934a3a588\", \"live\": true, \"id\": \"x5c7e8049b9672507\"}", "{\"sha\": \"0dfc52a09f44dc0e19eb7ad44968c113dfbc7924\", \"live\": true, \"id\": \"x0341d7bd2961f8ac\"}", "{\"sha\": \"aef98e7f9503b624843d187775b0b89f081fc8d7\", \"live\": true, \"id\": \"x636b464bfdbdef50\"}", "{\"sha\": \"c78050f365de1de784b73fdd3b03703f59081f6b\", \"live\": true, \"id\": \"x716a1fba964f151d\"}", "{\"sha\": \"c6b2ba59989071fa7e066c80794fae940f75076c\", \"live\": true, \"id\": \"xb3ca82bb1be672ae\"}", "{\"sha\": \"942f3244793c85a3d8ff08db75c369b29e1f82c4\", \"live\": true, \"id\": \"x8b85f66442829666\"}", "{\"sha\": \"e52c978882881dcde7fb0abbbc3e7a85dd3d3ec3\", \"live\": true, \"id\": \"xa21aff95ae1f9a2c\"}", "{\"sha\": \"7ca2b06099eb8c11f282064435bf9086d3038004\", \"live\": true, \"id\": \"x52c218226bf3c88f\"}", "{\"sha\": \"e036cbbb72795c20a017a8998b7fc98cd8770364\", \"live\": true, \"id\": \"x3d6439a781597d9c\"}", "{\"sha\": \"5796f80e50335c070d5c69a53108765e8c636dc2\", \"live\": true, \"id\": \"x0a4cebeb1feb4470\"}", "{\"sha\": \"94587f5f62262f87ff045e4b63ac077fa2b54980\", \"live\": true, \"id\": \"x8344c3a5d9d93169\"}", "{\"sha\": \"73a8eb2e5a784be2562d974050989260bf3c3ac7\", \"live\": true, \"id\": \"x9f11f9ed9a3ce004\"}", "{\"sha\": \"e39dfb6f02f7d5fdd8c692f5f5af74072e7f03be\", \"live\": true, \"id\": \"xc2f881305c00d34e\"}", "{\"sha\": \"fe4da0f71392a732f8ac9aa507229943c50f2dd8\", \"live\": true, \"id\": \"x3813f0553f9574f3\"}", "{\"sha\": \"b275b61dbfc275b0ebb673b005a38b1ac9ca6212\", \"live\": true, \"id\": \"x30ec3e4c19607f03\"}", "{\"sha\": \"f8bb147edf119ed605b7c13ce1d1314088337300\", \"live\": true, \"id\": \"x391f877e3978e0a6\"}", "{\"sha\": \"15a01f351a81010ed374c41a3553c2b3ee8845eb\", \"live\": true, \"id\": \"xbd5b3a895f08e909\"}", "{\"sha\": \"7ed291ced0cc65e7b5976929203853f1c4045127\", \"live\": true, \"id\": \"xc558f7a2154c4fee\"}", "{\"sha\": \"120eb51326e590695785a984f979c9f400a16436\", \"live\": true, \"id\": \"x385b2e1415652b6c\"}", "{\"sha\": \"c38860f1d6bbb0a4138ac3f80bc0b598c60034a9\", \"live\": true, \"id\": \"x9ea8e27d6bebc72a\"}", "{\"sha\": \"4943718abdf8d2defa3efd157e3908cf18f79c79\", \"live\": true, \"id\": \"xbad736895bc61bbf\"}", "{\"sha\": \"f7b5b33c6272c2d8dd07eca1e9e1627eeb3fab57\", \"live\": true, \"id\": \"x95415aebb943b231\"}", "{\"sha\": \"a238fd47b22f31e9737f5965a012691395b8228b\", \"live\": true, \"id\": \"x2e4bec2b838f401f\"}", "{\"sha\": \"9b369bc35101e834440dec9cd751c8e2eeab1f12\", \"live\": true, \"id\": \"x6cc102bdc03ffd69\"}"], "description": "", "basepoints": 10.0, "path": "constructing-geometric-figures/", "slug": "constructing-geometric-figures", "kind": "Exercise", "name": "constructing-geometric-figures", "seconds_per_fast_problem": 4.0, "prerequisites": ["constructing-triangles", "properties-of-shapes"], "exercise_id": "constructing-geometric-figures"}, "nclex-rn-questions-on-shock-1-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-shock-1-1/", "id": "nclex-rn-questions-on-shock-1-1", "display_name": "NCLEX-RN questions on shock 1", "title": "NCLEX-RN questions on shock 1", "all_assessment_items": ["{\"sha\": \"f8455d91808db87778dffe8a8e494fcf7d2e93a2\", \"live\": true, \"id\": \"x064e4902c011cc81\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7ec1246f6e4730acf002f6cfb1ef0df4988d4a6d\", \"live\": true, \"id\": \"x93d22676b6fc10de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"58678b230ff84dc3a1fb029dd2f8ae733280d6fc\", \"live\": true, \"id\": \"xd9a1474072400d00\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"60af9f3eea15386db19ce3cb7d0499c6ce2ff472\", \"live\": true, \"id\": \"x23fe8ade0fa236a5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8517e05d287b66d3c3b6d5d007935ee131db04fa\", \"live\": true, \"id\": \"x4875170ee6940918\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bcadcbc436c9f752d7470ba59c2455e1b9a495b3\", \"live\": true, \"id\": \"xd99841e65bf0b2ab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4482b56c9d2a6355c85e66583e0ca5f3c14dc00f\", \"live\": true, \"id\": \"xaef2de23eb43956d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8c72ffffe56f5eed7bf18e3343034635bd99638f\", \"live\": true, \"id\": \"x5f645f432ad6a691\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c6b0f878c7ca84256796190b7e89e50cc0b46953\", \"live\": true, \"id\": \"x4c8c06230ec0b546\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2a8e932f60456acbcae49bd83836f30e3364d198\", \"live\": true, \"id\": \"x0dcffe3daba18a36\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Questions related to shock", "basepoints": 10.0, "slug": "nclex-rn-questions-on-shock-1-1", "kind": "Exercise", "name": "nclex-rn-questions-on-shock-1-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-shock-1-1"}, "multiplying-and-dividing-decimals-by-powers-of-10": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/multiplying-and-dividing-decimals-by-powers-of-10/", "id": "multiplying-and-dividing-decimals-by-powers-of-10", "display_name": "Multiplying and dividing decimals by powers of 10", "title": "Multiplying and dividing decimals by powers of 10", "all_assessment_items": ["{\"sha\": \"07c52bdf8552b9cae13c2cc1cef0d18f21beb302\", \"live\": true, \"id\": \"xf8a0d3e1ce0c5c39\"}", "{\"sha\": \"71dbf87322d6cdf47a391c24f8f9f38a4ec01067\", \"live\": true, \"id\": \"x792f6b92138dc6b0\"}", "{\"sha\": \"bd4e2892124a32b21f5df73770d4572f87b5a2aa\", \"live\": true, \"id\": \"x62fd707d6e8b13c3\"}", "{\"sha\": \"b61d3a921a7ad1952f9ec20ceae3f19532805b1c\", \"live\": true, \"id\": \"xb63afa10bdab9ffe\"}", "{\"sha\": \"774bc615644d41fd763b84dde363d733d211306f\", \"live\": true, \"id\": \"x01a60c7dd764f813\"}", "{\"sha\": \"c1e63f4c449881d17423646c5ce7c43abfaaae64\", \"live\": true, \"id\": \"xd1d85232e9876e65\"}", "{\"sha\": \"3c6279ec4f8e099d2d01d50b2c8721b482ffc06c\", \"live\": true, \"id\": \"x446b91b26db43963\"}", "{\"sha\": \"bae2c237b0ac3ad97c9842c4430f0cc0d8278236\", \"live\": true, \"id\": \"xe7e9ae68c7c5d3af\"}", "{\"sha\": \"1c081c1482adfd305cc34c7cd34172f3856ed74d\", \"live\": true, \"id\": \"xd22607170c089045\"}", "{\"sha\": \"539178cdfbb789fb475f1fb8307477ebc65f84a9\", \"live\": true, \"id\": \"x0372f5ebe940df61\"}", "{\"sha\": \"934a55a2d42c4e297764da7852fc1d6e6bf5c417\", \"live\": true, \"id\": \"x963e23c6a8e7ed12\"}", "{\"sha\": \"fa6d4dab74db16068ac10b48c4b1e1675a99dcf0\", \"live\": true, \"id\": \"x7ae91e53f7fa3e51\"}", "{\"sha\": \"a31cf08e461ede077e57781948d7862b671fb6fa\", \"live\": true, \"id\": \"x3ba0130ff3ffacdf\"}", "{\"sha\": \"595a7697a72009f3d9c88c585f17c95d21f0a1b0\", \"live\": true, \"id\": \"xea65626b7c4a1dc3\"}", "{\"sha\": \"2c4fcfef54851a23165735c1df82705983175820\", \"live\": true, \"id\": \"x618e7456951fed2b\"}", "{\"sha\": \"bcde2ea1e3b2807db15c56d916b2d6add68bba06\", \"live\": true, \"id\": \"xc483ccae6d35e881\"}", "{\"sha\": \"e33274b433a571b9f1705464e25f1ceffd270080\", \"live\": true, \"id\": \"xc62ae08768cccee8\"}", "{\"sha\": \"5ce21cbc447a6f81c99241145a987ac89045f43e\", \"live\": true, \"id\": \"x31527b2c7b23434c\"}", "{\"sha\": \"8fd3a0230fdf6607e770b9a4b80474c46732ec3b\", \"live\": true, \"id\": \"x6b171f31a908ff2e\"}", "{\"sha\": \"de2dd0b171103b2269978fa6cb33375b2dc934ab\", \"live\": true, \"id\": \"xa17ca20cab186976\"}"], "description": "Multiply and dividing decimals by powers of 10.", "basepoints": 10.0, "slug": "multiplying-and-dividing-decimals-by-powers-of-10", "kind": "Exercise", "name": "multiplying-and-dividing-decimals-by-powers-of-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-and-dividing-whole-numbers-by-powers-of-10", "patterns-in-zeros"], "exercise_id": "multiplying-and-dividing-decimals-by-powers-of-10"}, "subtract-within-1000--level-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens-hundreds/subtract-within-1000-level-1/", "id": "subtract-within-1000--level-1", "display_name": "Subtract within 1000: Level 1", "title": "Subtract within 1000: Level 1", "all_assessment_items": ["{\"sha\": \"4050fb5c6d3efc00a8303fb19a4ff787a0bfa81d\", \"live\": true, \"id\": \"xec9d7de63fefe233\"}", "{\"sha\": \"60397d6ed868f6223f1e7c35e7656a5499881cd0\", \"live\": true, \"id\": \"x7bdbdd392312b3e8\"}", "{\"sha\": \"a18cb531d365101e6e8f6942b348e90b313d6a5d\", \"live\": true, \"id\": \"xafc06d96c3eb7824\"}", "{\"sha\": \"d068afeec3bc2097f782991fe4735a033e3f63c1\", \"live\": true, \"id\": \"x0858837582b518dd\"}", "{\"sha\": \"32719341fbe1c0395d611d53e239945cb2f6f2ac\", \"live\": true, \"id\": \"x9a788afe9e6d6bd0\"}", "{\"sha\": \"b541f1b0ae2b9d6de526074082ada468b1cac5e5\", \"live\": true, \"id\": \"xfedee7d334da615e\"}", "{\"sha\": \"80d4fe66f70eaad1305f70b48b890b14262a53e6\", \"live\": true, \"id\": \"x6b5a55a136ae1a75\"}", "{\"sha\": \"067eedcc00dcc19d1b59f0f8196100d3e84e6904\", \"live\": true, \"id\": \"xbbdee28f2d9a64b9\"}", "{\"sha\": \"beed4f06b09461ac0e3f0468e0722dea7e276394\", \"live\": true, \"id\": \"x605e91e13b9581f8\"}", "{\"sha\": \"2892d83fc961d48819bbe19be47bb9799e1924a5\", \"live\": true, \"id\": \"x8970c1ce1735323b\"}", "{\"sha\": \"0150c619314fe3d4a6586f87418b75ef78a2adc4\", \"live\": true, \"id\": \"x187f5ef08083f75f\"}", "{\"sha\": \"b2c18bcf73ee90b78f2e3df9f5a985ef23e9a90c\", \"live\": true, \"id\": \"xd027b2b36b497823\"}", "{\"sha\": \"bb9b6f46c54f8bacd713169f73f263a5c01e8492\", \"live\": true, \"id\": \"x02e6521b2c3907de\"}", "{\"sha\": \"5f743d68e9ada54dc255ad891800bc82434104d2\", \"live\": true, \"id\": \"x8f89f517681d4649\"}", "{\"sha\": \"091659e62d299c58d6338c9e2c3d0b2f2ef23559\", \"live\": true, \"id\": \"x539e1a0517bfa06a\"}", "{\"sha\": \"81c1ba23739088d5a2f2b040496bf1164d6814ec\", \"live\": true, \"id\": \"xeb5b48524e6370b3\"}", "{\"sha\": \"260fff7ab53c397d98169cc1d711670282a7159d\", \"live\": true, \"id\": \"x8f8fcb5fcbc7cefc\"}", "{\"sha\": \"58ddd6c9b8237cf846ee033ab84da28d25fb06aa\", \"live\": true, \"id\": \"xd57500b52b05f2f0\"}", "{\"sha\": \"3e0d58af1bde374796f580a145c1897784917260\", \"live\": true, \"id\": \"x925b54cf2ec6bf72\"}", "{\"sha\": \"50937496f26e16aca055959661043f0164ce1cb8\", \"live\": true, \"id\": \"x76f67c0c91323084\"}"], "description": "", "basepoints": 10.0, "slug": "subtract-within-1000-level-1", "kind": "Exercise", "name": "subtract-within-1000--level-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["add-within-1000--level-1", "subtract-within-100-level-2"], "exercise_id": "subtract-within-1000--level-1"}, "electrostatics--passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/electrostatics-passage-2/", "id": "electrostatics--passage-2", "display_name": "Electric Field Treatments and electroporation", "title": "Electric Field Treatments and electroporation", "all_assessment_items": ["{\"sha\": \"909f7f8be6ef1301d0817d2323349e8816f0f71b\", \"live\": true, \"id\": \"x61c8e01e8616fbb9\"}", "{\"sha\": \"16d4001e2089fca43709c2836af9400ac72939da\", \"live\": true, \"id\": \"xa1daaa29e52ad508\"}", "{\"sha\": \"ead41bbc2f3e98f29db585f2fcae4339707cf252\", \"live\": true, \"id\": \"x9173cb731a9514ac\"}", "{\"sha\": \"78c44f6373f5671d384dcc93a09dbd5f9d213c7a\", \"live\": true, \"id\": \"x31e5b59e7340c74b\"}", "{\"sha\": \"c7ee291bd9fa9b20050a6f6c5184480ff2a58af0\", \"live\": true, \"id\": \"xd916c90f46db77e8\"}"], "description": "This passage will test your knowledge on electrostatics", "basepoints": 10.0, "slug": "electrostatics-passage-2", "kind": "Exercise", "name": "electrostatics--passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "electrostatics--passage-2"}, "electrostatics--passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/electrostatics-passage-1/", "id": "electrostatics--passage-1", "display_name": "Electrostatics, medicine, and metal spheres", "title": "Electrostatics, medicine, and metal spheres", "all_assessment_items": ["{\"sha\": \"d653df3139f975540c5b93ec1981bf3e5ec0991b\", \"live\": true, \"id\": \"x4cb9e12ce1dd27bb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8ab9b641d6a77ca69a4dfbf2d78f76aa1536fd58\", \"live\": true, \"id\": \"x7b4bd6e9f8063ac7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"71a452faa0409a67a7bcbcbceeba89c695048a2f\", \"live\": true, \"id\": \"x79c470fb5439799a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"eb31f9f0e93b16fed93bdacb6c4e3a25e07ae79f\", \"live\": true, \"id\": \"x518a5bc291da59eb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c28b78e36deca63e9034c982955cebc872d5a82f\", \"live\": true, \"id\": \"xf4e6886cec20c261\", \"perseus_api_major_version\": 3}"], "description": "This passage will test your knowledge on electrostatics", "basepoints": 10.0, "slug": "electrostatics-passage-1", "kind": "Exercise", "name": "electrostatics--passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "electrostatics--passage-1"}, "disorders-of-the-skeletal-system-and-bone-remodeling-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/disorders-of-the-skeletal-system-and-bone-remodeling-/", "id": "disorders-of-the-skeletal-system-and-bone-remodeling-", "display_name": "Disorders of the skeletal system and bone remodeling", "title": "Disorders of the skeletal system and bone remodeling", "all_assessment_items": ["{\"sha\": \"38bc13d171822b8584fd9773d647eb0576f8c347\", \"live\": true, \"id\": \"x15afa98d8917d7cc\"}", "{\"sha\": \"2b4b13188df891ef6413282d723d160a31530ed5\", \"live\": true, \"id\": \"xbc773da19aa7a322\"}", "{\"sha\": \"ee1dc829cfe0a5940f221fce2e2d4b23beb93fde\", \"live\": true, \"id\": \"x77c2757167332f2b\"}", "{\"sha\": \"c94ce8cf37154692cd85d7fdc415fdfc0861f159\", \"live\": true, \"id\": \"x4128b6d2feed5c2a\"}", "{\"sha\": \"5f535e2635ca507b5ae5e2100fb029ef2313eeb5\", \"live\": true, \"id\": \"xc45091369bc50cb2\"}"], "description": "Questions related to the human skeletal system", "basepoints": 10.0, "slug": "disorders-of-the-skeletal-system-and-bone-remodeling-", "kind": "Exercise", "name": "disorders-of-the-skeletal-system-and-bone-remodeling-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "disorders-of-the-skeletal-system-and-bone-remodeling-"}, "adding_and_subtracting_negative_numbers": {"uses_assessment_items": true, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/adding_and_subtracting_negative_numbers/", "id": "adding_and_subtracting_negative_numbers", "display_name": "Subtracting negative numbers", "title": "Subtracting negative numbers", "all_assessment_items": ["{\"sha\": \"407f4467dcbf65746a6ef4b08728ae5c01f8df08\", \"live\": true, \"id\": \"x94bf15299a25055e\"}", "{\"sha\": \"6974f380e90a4b38019ccf1ee49cef121d086d9a\", \"live\": true, \"id\": \"x24a2932b16936940\"}", "{\"sha\": \"6f14c89a16c8bbe472c1b66bd3bd97f59d9d466e\", \"live\": true, \"id\": \"xa4624f17a60d0f83\"}", "{\"sha\": \"f27137e6d13c7556eb0ff4b65fdf40a9b5f2570b\", \"live\": true, \"id\": \"x9cf56e0ab4e3dd25\"}", "{\"sha\": \"ea01e38f088ab95eba48326b0df91ae343e1db14\", \"live\": true, \"id\": \"xdd6816c3c2bcc176\"}", "{\"sha\": \"a5c1a447b1c8f80c5ed23a70cd21d9e54985aea4\", \"live\": true, \"id\": \"xa49b1e3904078936\"}", "{\"sha\": \"00c2fdf1d49e75d1b62733f3a2dd76f427696d53\", \"live\": true, \"id\": \"x4e0888cf1772861c\"}", "{\"sha\": \"98b88bdb1d22d17fd42e7adc2451d3d4ecbc4258\", \"live\": true, \"id\": \"xac2cb77adac00dc4\"}", "{\"sha\": \"cfedf9cf9e90aee5ca181a0781d71f1cfb33fb94\", \"live\": true, \"id\": \"x08c2c5bbebac9946\"}", "{\"sha\": \"3c0e97c219dabb32bb1bb210869105380c251c31\", \"live\": true, \"id\": \"x7cca623d25e542f8\"}", "{\"sha\": \"a66680fad36f3004e3c0016028f3b476843eebec\", \"live\": true, \"id\": \"x58f3cea016d06190\"}", "{\"sha\": \"751d29e0527c207ecc5bd997c4a85a0951086b82\", \"live\": true, \"id\": \"xb7fef42556fd5092\"}", "{\"sha\": \"f2cade748992e09bd1a2812325e8137e0b6e753d\", \"live\": true, \"id\": \"xfdc93914df4ccdb2\"}", "{\"sha\": \"2b3588e79b58a2da24bfcbae27aa574687de7abe\", \"live\": true, \"id\": \"x8ea39a780b7fddef\"}", "{\"sha\": \"1c8603c9e9390718e28df78c30426f30b3048424\", \"live\": true, \"id\": \"xab8b6ec51fecd290\"}", "{\"sha\": \"4f2361d3ec1919d0e2f5958e2a45f4288ee2d372\", \"live\": true, \"id\": \"x78ed9a7720e133b7\"}", "{\"sha\": \"76bd46286e824ed2fad50e0ee7fe40377dbdd930\", \"live\": true, \"id\": \"xff477fbe63982888\"}", "{\"sha\": \"07168493af863f02f7521563591d2caf8235ccc3\", \"live\": true, \"id\": \"xa698b66c64a26245\"}", "{\"sha\": \"bc5965e217d89a3e74b96960dcda139be75cea48\", \"live\": true, \"id\": \"xe2c9435c704fd581\"}", "{\"sha\": \"b5f1429b66fab54a0c7e00a7344be3f8b3bfa142\", \"live\": true, \"id\": \"x599194878187acf1\"}", "{\"sha\": \"795cb66e0b0907e927568631ae80593418bdc572\", \"live\": true, \"id\": \"xe6df8ae4c0eadead\"}", "{\"sha\": \"3c92b707cebaba2c9f6e7d48df6e1c6fa10917f4\", \"live\": true, \"id\": \"x6be859e5f09964e0\"}", "{\"sha\": \"adead0009498fec93136c26987c6335ab091ee09\", \"live\": true, \"id\": \"xff7a9e696fd4175f\"}", "{\"sha\": \"2f0d632e627e9cb9d4569662f4d8abac7d27f3ce\", \"live\": true, \"id\": \"xd28a6075a3ed594a\"}", "{\"sha\": \"e85c0d3faa35c5c6525a0a9eccc2f6eb00ee87c7\", \"live\": true, \"id\": \"x058390526535d3e5\"}"], "description": "Practice subtracting positive and negative single-digit numbers.", "basepoints": 13.0, "slug": "adding_and_subtracting_negative_numbers", "kind": "Exercise", "name": "adding_and_subtracting_negative_numbers", "seconds_per_fast_problem": 6.0, "prerequisites": ["adding_negative_numbers"], "exercise_id": "adding_and_subtracting_negative_numbers"}, "type-2-diabetes-mellitus": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/type-2-diabetes-mellitus/", "id": "type-2-diabetes-mellitus", "display_name": "Type 2 diabetes mellitus", "title": "Type 2 diabetes mellitus", "all_assessment_items": ["{\"sha\": \"8e7ff48dd090ed5cdcb7c20ac5eb2566ff7f04e4\", \"live\": true, \"id\": \"xfbdaf8c8a6a9580a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eb86a5846b05d69cbb69c69514d3da1095799a40\", \"live\": true, \"id\": \"x5ccd08215716514d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1ff2dcefdb3b7783276fd332b4c1395317b9fee8\", \"live\": true, \"id\": \"xf44010d3a548f8bd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"75f751b37474ab7755c3abe757bb881a7fd50f86\", \"live\": true, \"id\": \"x7964efb22c62e02c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c20c79802523615562da6d04a4d73fc39dd2a95\", \"live\": true, \"id\": \"xa980af8dc2a4dbcb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to the endocrine system", "basepoints": 10.0, "slug": "type-2-diabetes-mellitus", "kind": "Exercise", "name": "type-2-diabetes-mellitus", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "type-2-diabetes-mellitus"}, "range_of_a_function": {"uses_assessment_items": false, "path": "khan/math/algebra2/functions_and_graphs/domain_range/range_of_a_function/", "id": "range_of_a_function", "display_name": "Range of a function", "title": "Range of a function", "description": "Given the equation of a quadratic function, determine the range.", "basepoints": 18.0, "slug": "range_of_a_function", "kind": "Exercise", "name": "range_of_a_function", "seconds_per_fast_problem": 12.0, "prerequisites": ["functions_2", "domain_and_range_0.5"], "exercise_id": "range_of_a_function"}, "cas-ecosystem-function": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-important-ca/biodiversity-and-ecosystem-funct/cas-ecosystem-function/", "id": "cas-ecosystem-function", "display_name": "Test your knowledge: ecosystem function", "title": "Test your knowledge: ecosystem function", "all_assessment_items": ["{\"sha\": \"d4b0a3add60efd207a881e927eb85a2382627922\", \"live\": true, \"id\": \"x0081c05aa4bdb276\"}", "{\"sha\": \"be737622ab8c645fe944d1b470c40e4fb8014067\", \"live\": true, \"id\": \"x5801f7f34a27875a\"}", "{\"sha\": \"bc0cd15dbb8d2a070db089ec22489e4cb150b068\", \"live\": true, \"id\": \"x202e9a75801072d9\"}", "{\"sha\": \"2747b6ff924b1a6ac792cba0078994e98453cb6a\", \"live\": true, \"id\": \"x5e9146aa3f5854ac\"}", "{\"sha\": \"50709231cacc3fe50f950440cef7e1b91ed398b8\", \"live\": true, \"id\": \"x413825de39b64c47\"}", "{\"sha\": \"18c588f5b92b044ac4f881ce2250a535e868ecee\", \"live\": true, \"id\": \"x4774375e0989571d\"}", "{\"sha\": \"b8e5f6c651b961f1c928dbcc75b6036f84c7c420\", \"live\": true, \"id\": \"xcb17029821c6fea0\"}", "{\"sha\": \"7d9a3fc6a921c0f2cc95ca0fecdb7d15102a0f21\", \"live\": true, \"id\": \"x18d6a0bc962f9d3c\"}", "{\"sha\": \"fb8bccad7eef0b7301a7399c2f757a0528088dbf\", \"live\": true, \"id\": \"xb7146e5200d68e05\"}", "{\"sha\": \"0a62beac2d1754892bfb10e0b32f6e88630153a6\", \"live\": true, \"id\": \"xe303b7c58ef37b57\"}", "{\"sha\": \"ac73105a0b347256e8bfb99b48c0aac4b18553d8\", \"live\": true, \"id\": \"x622eca6b22ca7174\"}", "{\"sha\": \"f752b030224e5759bac270ba0746bbd814505527\", \"live\": true, \"id\": \"x70efce0bd5111124\"}", "{\"sha\": \"9fffdb0fc9383a23d9ec816e07214e6494795426\", \"live\": true, \"id\": \"x20f0a215f6c700a6\"}", "{\"sha\": \"028b20b8e6867ef08ba1b425f0286bcd1dbab1bb\", \"live\": true, \"id\": \"x2111f2f503109cde\"}"], "description": "", "basepoints": 10.0, "slug": "cas-ecosystem-function", "kind": "Exercise", "name": "cas-ecosystem-function", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cas-ecosystem-function"}, "sight--vision----passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sight-vision-passage-1/", "id": "sight--vision----passage-1", "display_name": "Feline night vision", "title": "Feline night vision", "all_assessment_items": ["{\"sha\": \"d7b2afda9bc59b04d11a11c1112637278c8ee945\", \"live\": true, \"id\": \"xb0d4d72c6e3a7750\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8566d11f0b66cc048731a6fa0443a0a5ffc4ac75\", \"live\": true, \"id\": \"xb79b8d82171ad211\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e644baa3c3aaa7021d25361ac041fe7856916c5\", \"live\": true, \"id\": \"x1c0b2168347712fd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"644237c4bf23566705c7693d77459cf0deec371a\", \"live\": true, \"id\": \"x1a601fce3dc940eb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6cd96d6f223dc2af863c5c2fbc8ad4a1bf452cbc\", \"live\": true, \"id\": \"xfdc76265993a3646\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3de87b4f2b6d6c59a9daf6ad82135eac7176b969\", \"live\": true, \"id\": \"xb17f6733a724b1f4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to vision", "basepoints": 10.0, "slug": "sight-vision-passage-1", "kind": "Exercise", "name": "sight--vision----passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sight--vision----passage-1"}, "axis_of_symmetry": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-transformations/axis_of_symmetry/", "id": "axis_of_symmetry", "display_name": "Axis of symmetry", "title": "Axis of symmetry", "all_assessment_items": ["{\"sha\": \"a79fcfbff3edc5ab956dbaebb6adfc3168e5be63\", \"live\": true, \"id\": \"x8d672f08af0375eb\"}", "{\"sha\": \"e4d577f378e3cc1254f6c32cecf4dd30a29b68bd\", \"live\": true, \"id\": \"x82ef93fe77ede2c4\"}", "{\"sha\": \"ddc39004f2740ba3bda6b5d37965deaaa335c862\", \"live\": true, \"id\": \"x586784b01a101ff3\"}", "{\"sha\": \"b5f8e921ca57c04bc5b24959602cf05bf022bb97\", \"live\": true, \"id\": \"x76ad42870b6b60b0\"}", "{\"sha\": \"9a94eec1b2e7a5effaf25ddbcfcc912790f475c3\", \"live\": true, \"id\": \"xa06ffb672d990ab9\"}", "{\"sha\": \"31699d10c99b9321f0541eb87e44d08b149c6b41\", \"live\": true, \"id\": \"x841efbc34a64619b\"}", "{\"sha\": \"474e52c4f35d26cfbc8703d907b34f3c9023f430\", \"live\": true, \"id\": \"x3facb24d492da8ab\"}", "{\"sha\": \"09e701aa5757a6d49afc51e35da23e954a26001b\", \"live\": true, \"id\": \"xe23268e9f2752714\"}", "{\"sha\": \"e583e339a1c6a49fb75ca96611209eb90fee4e39\", \"live\": true, \"id\": \"x0cc1afa655c8abee\"}", "{\"sha\": \"007e949626d2e76a38d70846224b5440200a603b\", \"live\": true, \"id\": \"x266d9ed31256b828\"}", "{\"sha\": \"dce66fc353ab72805fdc942ba54e2df8e8fd531f\", \"live\": true, \"id\": \"x51a74d3df3bfc42f\"}", "{\"sha\": \"df8c22c39403e23c87160010bc6797ea640c37e1\", \"live\": true, \"id\": \"x62f3e5005e3909e5\"}", "{\"sha\": \"8116c409bb67bcebabe5b420cc068dc269d48828\", \"live\": true, \"id\": \"x76ba61dbcf536c22\"}", "{\"sha\": \"60e7da4842da75a2399173fcf8467ebb29689bef\", \"live\": true, \"id\": \"xafb20fc4eb9d0007\"}", "{\"sha\": \"e441f842dd69ec9e4a07cc15ce4e6a459937cd7c\", \"live\": true, \"id\": \"x7d1b50a000b56549\"}", "{\"sha\": \"01a7e89ba04aa711225ec83b5f0304859b36f1cb\", \"live\": true, \"id\": \"x61a0501eb87f107e\"}", "{\"sha\": \"aedee609a244f20527f470130e110c3e7940c8e6\", \"live\": true, \"id\": \"x381ab72b3b6d6ed4\"}", "{\"sha\": \"5ea14edbbd0ddb7308215c648dc78d8d5378552f\", \"live\": true, \"id\": \"x00f1be8a689313ca\"}", "{\"sha\": \"2397bd67358eb90fe5a4d6a688d33c687dcccd8e\", \"live\": true, \"id\": \"x4f09d55729d29a42\"}", "{\"sha\": \"1aa7758f8eb604d809acab593fecb01b4bab4e4b\", \"live\": true, \"id\": \"x003f887c3a9915c1\"}", "{\"sha\": \"6ccc5508e4428c034e800711e586b397cdd3c69e\", \"live\": true, \"id\": \"x8d58e4fabb79ca92\"}", "{\"sha\": \"f62985807c78409edd0c592253a1e4b0b1bc63d6\", \"live\": true, \"id\": \"x50b3ddef6a3c1d56\"}", "{\"sha\": \"dda357ddb43ddf01285b1df8b0984d4778775aaa\", \"live\": true, \"id\": \"xa78d0c5dfcb85ca4\"}", "{\"sha\": \"1cea2880e6ec46a5d0c27397b0b2f571f291345a\", \"live\": true, \"id\": \"xf2493df22f02d2ce\"}", "{\"sha\": \"99373a47bf6af6ddce54cabc64f8f5adee6eb79b\", \"live\": true, \"id\": \"x37e73fa51f5c82f4\"}", "{\"sha\": \"f46e68fea86f6539f5a38453a350664e34760b37\", \"live\": true, \"id\": \"x78dcf79b1a33cbe0\"}", "{\"sha\": \"ebc6fee6d36e2953a11847856e6893c8a0386e8f\", \"live\": true, \"id\": \"x4df381d464347542\"}", "{\"sha\": \"55e38f70d04fc74c19c9791ecbded4fb96626b27\", \"live\": true, \"id\": \"xbffebdbdcf827b0a\"}", "{\"sha\": \"2c652d811b628b7c6965e4729a5258c0b8d06d2f\", \"live\": true, \"id\": \"x46660374143cdc12\"}", "{\"sha\": \"2b768623badb733569c9472979f9906084177965\", \"live\": true, \"id\": \"xf4571d9eebf5f4cf\"}", "{\"sha\": \"88406a495eb93b9a8c956d5bc6958ccf2a77b24f\", \"live\": true, \"id\": \"xe4ac337898142fae\"}", "{\"sha\": \"b4fbe05af5751ff587b4e686ae67883e3c8929a6\", \"live\": true, \"id\": \"xe55d72f9d22e1c0c\"}", "{\"sha\": \"d76e3fff3bb29a46dff4b674bb224add17573f4d\", \"live\": true, \"id\": \"x89b98f3b76fb4721\"}", "{\"sha\": \"644e73cb8b6f8cc94224bf60ae6eed201d50c9df\", \"live\": true, \"id\": \"x7ed086cafe864407\"}", "{\"sha\": \"f962446ee1efc8042f6ab6cfdeab7a16316718d9\", \"live\": true, \"id\": \"x8abb1af67de9a47b\"}", "{\"sha\": \"4a872b98339e3104ec2c33d297f2f34aa83c3105\", \"live\": true, \"id\": \"x4c9919c51d6cd542\"}", "{\"sha\": \"1aff0b7f9341f696bbeaceefbb8f26519d7313f6\", \"live\": true, \"id\": \"xff3cc74c3d5e0428\"}", "{\"sha\": \"11fb2536f317208d790624f9d8dc0afdd9cbf233\", \"live\": true, \"id\": \"x64a88ed065e2e1eb\"}", "{\"sha\": \"d13b29373848920e641ee7fee68229334b821c74\", \"live\": true, \"id\": \"xb19e1acb7c6cd1ca\"}", "{\"sha\": \"19f96bbcbf352cc07fd0d4f639bba185df0cc53f\", \"live\": true, \"id\": \"x0af052ecc1df69b6\"}", "{\"sha\": \"b2d2350c319ba1895783135094f7c9c781964333\", \"live\": true, \"id\": \"xe6061e473d0ef2d0\"}"], "description": "Draw and identify lines of symmetry. \u00a0Create and identify symmetrical shapes.", "basepoints": 10.0, "slug": "axis_of_symmetry", "kind": "Exercise", "name": "axis_of_symmetry", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing_rays_lines_and_line_segments"], "exercise_id": "axis_of_symmetry"}, "integer-addition-and-subtraction": {"uses_assessment_items": true, "id": "integer-addition-and-subtraction", "display_name": "Integer addition and subtraction: find the missing value", "title": "Integer addition and subtraction: find the missing value", "all_assessment_items": ["{\"sha\": \"8680d68b37c2556ce0b7a9fc0e628c11df707604\", \"live\": true, \"id\": \"xcc20326bcb5bf91d\"}", "{\"sha\": \"7c3a1db76a922fde316cdad034a49062d9215d8c\", \"live\": true, \"id\": \"x6a9ec443b339eca6\"}", "{\"sha\": \"6303bf3b85297ce4d815003b5306d4bdffd48ab4\", \"live\": true, \"id\": \"x807c968f5dc02bad\"}", "{\"sha\": \"a7ed8f11057a81f38f2d6fbb55a4693485984e9a\", \"live\": true, \"id\": \"xd5151fab9c4f9048\"}", "{\"sha\": \"c2ee972cde0650c3b5599b2419d3c0a5bd02f949\", \"live\": true, \"id\": \"x0120f9f9574a64c2\"}", "{\"sha\": \"bb2cbfe6eb85bf89202ea92c2db24a1f9731cb96\", \"live\": true, \"id\": \"x160604a98b8fb38c\"}", "{\"sha\": \"72b591a94abf06c169306164558536f0d6499de5\", \"live\": true, \"id\": \"xa39914d9a6b44171\"}", "{\"sha\": \"655c29ec943f3803be322b0f87694b60eb2e2616\", \"live\": true, \"id\": \"x681b1cd156c59e80\"}", "{\"sha\": \"daf6f95c4d4feb2d30d1e92259c8177784483ca9\", \"live\": true, \"id\": \"x5bf297396596bf9b\"}", "{\"sha\": \"4210bfafebfa6f6d8b5a7fde6943c4af6bdbddb0\", \"live\": true, \"id\": \"xfec8bc26b6ada198\"}", "{\"sha\": \"358e1c1240e07cabacd99498f25ff64addb8eb35\", \"live\": true, \"id\": \"xb8ca93d297136904\"}", "{\"sha\": \"86edafcc90169008daf2eeca1123c2e64e46e9ab\", \"live\": true, \"id\": \"xbd3b34293fb591a2\"}", "{\"sha\": \"c42a640b7738b9b759931762fa824585bc999b11\", \"live\": true, \"id\": \"x7b27f9336e6b6272\"}", "{\"sha\": \"db8901e33ae2c606267e32f1d2834cca6689abbb\", \"live\": true, \"id\": \"x146cb2ef734d4012\"}", "{\"sha\": \"729b17a34ea39a5e51172d629b84f848fdbdcd2e\", \"live\": true, \"id\": \"x57b58e02397b35fd\"}", "{\"sha\": \"67661dfe23a8729b99ad7bd0438b49e17663ab49\", \"live\": true, \"id\": \"x54b1b23af62ae203\"}", "{\"sha\": \"afb3d56eefffe58b683962a0291ae744aac1a81d\", \"live\": true, \"id\": \"x8628be484c010df2\"}", "{\"sha\": \"61553e94c7dc19aa11878c67a24d9f45555475c0\", \"live\": true, \"id\": \"x1cbe88cf7d63a3c5\"}", "{\"sha\": \"c783d2713b4cc607b8e4fcaf81ad86250a1012ca\", \"live\": true, \"id\": \"xa88752a37218add6\"}", "{\"sha\": \"7531dc928ae42babdd0dab7ae407210757c2cf49\", \"live\": true, \"id\": \"x6924bf3af0c393ef\"}", "{\"sha\": \"d9f8933ca622b7759ed18bbefa8c78910d05ac51\", \"live\": true, \"id\": \"x195497fa81db1cd0\"}", "{\"sha\": \"d123fc8ddbb8f080866c80557247c606e803dee9\", \"live\": true, \"id\": \"xc87eedc76dcf9888\"}", "{\"sha\": \"c14f7f65db2efcd6d7a1c822fab14de7e847b4a8\", \"live\": true, \"id\": \"x7b189f09cb6c89d1\"}", "{\"sha\": \"83f58b1f6faafc720f035eab26b50bc0c16af960\", \"live\": true, \"id\": \"x1be90394c94041d0\"}", "{\"sha\": \"3eafa80126e964cd74eb0f479045935d965d2e9a\", \"live\": true, \"id\": \"xf77b08ed8d926109\"}", "{\"sha\": \"8483732bcbc1ae5a20dbcc0762558f5e37c8196d\", \"live\": true, \"id\": \"x8e53cd0658445816\"}", "{\"sha\": \"d930be32635c4353c9489d8333a6186050f97ce7\", \"live\": true, \"id\": \"x8abaa6aa369e1766\"}", "{\"sha\": \"95d42611fe6bc05b29f2580476bebff76c4ae0af\", \"live\": true, \"id\": \"xda54389caa4f69ac\"}"], "description": "Practice finding the missing value in an addition or subtraction equation involving negative numbers.", "basepoints": 10.0, "path": "integer-addition-and-subtraction/", "slug": "integer-addition-and-subtraction", "kind": "Exercise", "name": "integer-addition-and-subtraction", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_negative_numbers"], "exercise_id": "integer-addition-and-subtraction"}, "making-100": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-making-groups-of-ten/making-100/", "id": "making-100", "display_name": "Addition using groups of 10: Level 1", "title": "Addition using groups of 10: Level 1", "all_assessment_items": ["{\"sha\": \"5b42a32010cfca8b8a7a49b3648511b6764dab13\", \"live\": true, \"id\": \"x250e4dca77790882\"}", "{\"sha\": \"8ccde8495d81bfcc641aadcb9dee6e8318c9ffc8\", \"live\": true, \"id\": \"x38493fd79d05a9a2\"}", "{\"sha\": \"fcab5436aa0dad5e6644586d742d13ad0b7aaa21\", \"live\": true, \"id\": \"x4552d9167427cfb8\"}", "{\"sha\": \"ed678772434b6f4cc1a0497c1f6cc5f5bb577b2b\", \"live\": true, \"id\": \"xda426252d24e3ab5\"}", "{\"sha\": \"0c984593dbb3998138c7bde34a4a9ec69f9c4a23\", \"live\": true, \"id\": \"x4766aaba2bf35bd5\"}", "{\"sha\": \"4bd930f578d22026e986c9ed25f2cc2b6791ffae\", \"live\": true, \"id\": \"x549f6ad3e0223eac\"}", "{\"sha\": \"1090e2b87129ae5110d00464d9d0d14f29095d2b\", \"live\": true, \"id\": \"x1aa82f621ee4493c\"}", "{\"sha\": \"25e87948e310e25774a09dc47a7fc6ebd69ffd2b\", \"live\": true, \"id\": \"x574863bbf10e61d3\"}", "{\"sha\": \"3b677022b61fbba6f7184cfcfc8767625fe7f0aa\", \"live\": true, \"id\": \"x0e6b4d4510aa722c\"}", "{\"sha\": \"ace76c3dbb0c108a0749b5cf00dd3d54e495df8f\", \"live\": true, \"id\": \"xaaf012b4920d964a\"}", "{\"sha\": \"b8d11e9940020ccb310ba7b4f52b003b48303f56\", \"live\": true, \"id\": \"x63fa3b719394de83\"}", "{\"sha\": \"f804b33f14062dc69dd66b8aa49d97f88bad3305\", \"live\": true, \"id\": \"x6b6b23cc854fba65\"}", "{\"sha\": \"62840155879766b0cf5da8583a6934d9c000ee10\", \"live\": true, \"id\": \"x749f29874b44c28a\"}", "{\"sha\": \"8547addf6aee3ecad3a4eaab2bf839be12fa1ae1\", \"live\": true, \"id\": \"x7b6ba72bea4e3626\"}", "{\"sha\": \"729d621e400e287869ad43616716d8af040b282d\", \"live\": true, \"id\": \"x41b186e980ff6806\"}", "{\"sha\": \"72a39d327cdd3ecf9e827c0be2c93e2d417cd0b9\", \"live\": true, \"id\": \"x20762aef179566d5\"}", "{\"sha\": \"672f6ee7e64c6bfd7af9c4f9c3dcb49c8ae1d010\", \"live\": true, \"id\": \"x0667706f75aca44c\"}", "{\"sha\": \"465398be7af31964b1fe4d5884056428f015a83a\", \"live\": true, \"id\": \"xb25ff58cfee8f573\"}", "{\"sha\": \"b7eae2f7cf80411be78e53207c35e32a2cf15fe1\", \"live\": true, \"id\": \"xd0db81a0e1e9e51c\"}", "{\"sha\": \"7d04f05cd3093450f6ae1d7454e84f8f4cdf63b5\", \"live\": true, \"id\": \"xf9f69279ae7cd1e2\"}"], "description": "Practice adding two-digit numbers by making groups of ten.", "basepoints": 10.0, "slug": "making-100", "kind": "Exercise", "name": "making-100", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition_3"], "exercise_id": "making-100"}, "gericault--raft-of-the-medusa-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/gericault-raft-of-the-medusa-quiz/", "id": "gericault--raft-of-the-medusa-quiz", "display_name": "Gericault, Raft of the Medusa (quiz)", "title": "Gericault, Raft of the Medusa (quiz)", "all_assessment_items": ["{\"sha\": \"eca3697b73c51ffa62d1069babd63122503ffd11\", \"live\": true, \"id\": \"x9a78490c2cb1864f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e88d3608c1acf34a79cd346b7f4b44c2577f0ad\", \"live\": true, \"id\": \"xf56f2f116cf655c8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3a5dd070a039141b75306306765f324826496fd6\", \"live\": true, \"id\": \"x00123e04248be26e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b8382580a769c20e4407d26a3aa268a092fd974b\", \"live\": true, \"id\": \"xe9b6fd510d879669\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"047d6cefcf153b9f31fe6657054110947c62d894\", \"live\": true, \"id\": \"x267da2c0fd7daaa4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "gericault-raft-of-the-medusa-quiz", "kind": "Exercise", "name": "gericault--raft-of-the-medusa-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gericault--raft-of-the-medusa-quiz"}, "composing-and-decomposing-shapes": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/composing-and-decomposing-shapes/", "id": "composing-and-decomposing-shapes", "display_name": "Finding area by composing and decomposing shapes", "title": "Finding area by composing and decomposing shapes", "all_assessment_items": ["{\"sha\": \"50efaeae786185d2078e919e1cc9c3ee97eb8349\", \"live\": true, \"id\": \"xf3e32e2d6e888e1b\", \"perseus_api_major_version\": null}", "{\"sha\": \"7bcb5704a8ae7ed209f61c5ce1c089e83af9ccea\", \"live\": true, \"id\": \"x80c83b209703765e\", \"perseus_api_major_version\": null}", "{\"sha\": \"edb973ef320f250df5f863205b2b6d593a7df93e\", \"live\": true, \"id\": \"x405cd06e1a64fe0a\", \"perseus_api_major_version\": null}", "{\"sha\": \"e490bd0ba51d1361f28e006741627b8240ec19d0\", \"live\": true, \"id\": \"xa24b830a97fc8ae7\", \"perseus_api_major_version\": null}", "{\"sha\": \"b2e5c1f56e2787ec48091a5437c5cccc56dfd0f7\", \"live\": true, \"id\": \"xcc05cd118a5fddc1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"475f1d29003cc3541dbcaa276e85e8008964f757\", \"live\": true, \"id\": \"xf71a5277ebd2b1ee\", \"perseus_api_major_version\": null}", "{\"sha\": \"2145fb3ca702ea467f69e79bf2488f988eabad2a\", \"live\": true, \"id\": \"xf69bdd9ef555260e\", \"perseus_api_major_version\": null}", "{\"sha\": \"5fbc4d00cfd6774c074a065b7b9b3511fa005ef5\", \"live\": true, \"id\": \"x00ceb76b3c63886f\", \"perseus_api_major_version\": null}", "{\"sha\": \"da083e8edc1026f9f4bf74167ac7336bd595f07c\", \"live\": true, \"id\": \"x3748626441dc2c4c\", \"perseus_api_major_version\": null}", "{\"sha\": \"f79d540951d7c4c79006df31bda678b31ac123ab\", \"live\": true, \"id\": \"x3bba6b5c4863bda7\", \"perseus_api_major_version\": null}", "{\"sha\": \"4d9fd88fee4a601149e4c0b958c72e55f0749090\", \"live\": true, \"id\": \"x4c306a907c3d7c75\", \"perseus_api_major_version\": null}", "{\"sha\": \"350d275e860708a7443510e6d25709c2d37cb815\", \"live\": true, \"id\": \"x83417cfed56951cb\", \"perseus_api_major_version\": null}", "{\"sha\": \"82f0eea17ac1e588172a4646eb27c68154be1f32\", \"live\": true, \"id\": \"x1360b3084d511d3f\", \"perseus_api_major_version\": null}", "{\"sha\": \"2089b32f19259a14fd5123fdf18e46ee4d6047f3\", \"live\": true, \"id\": \"x4aa3a7d56645732b\", \"perseus_api_major_version\": null}", "{\"sha\": \"a5c66e4d6aa614e75ca1351d0cb565ceea891de4\", \"live\": true, \"id\": \"x9c5a0a3921162972\", \"perseus_api_major_version\": null}", "{\"sha\": \"94fa32467b15037eec674867b52ff7f531286685\", \"live\": true, \"id\": \"x5b75eef1a7151a83\", \"perseus_api_major_version\": null}", "{\"sha\": \"cbd73a6f5c016f6e084a29c298356b5c06e7de7a\", \"live\": true, \"id\": \"x5dc8c670f44d1837\", \"perseus_api_major_version\": null}", "{\"sha\": \"7fe59d7d29d018ce5c6151c5a8cd9098018c2809\", \"live\": true, \"id\": \"x8c6bc6e1d75edb7d\", \"perseus_api_major_version\": null}", "{\"sha\": \"e8e7f7c7292d96c856bfdb256d88b05f4745f501\", \"live\": true, \"id\": \"xe4c6cedbf0f152d1\", \"perseus_api_major_version\": null}", "{\"sha\": \"4a9a395d6c0d728f6df43dfd32ae17803a6ab8fe\", \"live\": true, \"id\": \"xd9d282fd6e656546\", \"perseus_api_major_version\": null}", "{\"sha\": \"daeef7f4a86675e5186ee5905a6855e22ab38172\", \"live\": true, \"id\": \"x6457d5067a42fab1\", \"perseus_api_major_version\": null}", "{\"sha\": \"7fb3699aa480ccad30a116b972f6b1d14fc7265b\", \"live\": true, \"id\": \"x1c6e2f705d8cdae4\", \"perseus_api_major_version\": null}", "{\"sha\": \"392cc7a0fbb8377a6dd83c6dfa0d2a63b4a0a7fb\", \"live\": true, \"id\": \"xffb7d616f1607a79\", \"perseus_api_major_version\": null}", "{\"sha\": \"ce41a0114fbd73cfaefdb66880a44db8f4358629\", \"live\": true, \"id\": \"xb46775681091dd1e\", \"perseus_api_major_version\": null}", "{\"sha\": \"9b329bfb42201410d40e410439a4abc0b0136205\", \"live\": true, \"id\": \"xe0cf9db511efd2db\", \"perseus_api_major_version\": null}", "{\"sha\": \"c68769e77a3844ec78e7ea863dffb8e3522387a8\", \"live\": true, \"id\": \"x4c1b6ee09e08a9a0\", \"perseus_api_major_version\": null}", "{\"sha\": \"5b46c9768110e50e7e14caf8a2915223fea90185\", \"live\": true, \"id\": \"x8247cfe2962a2672\", \"perseus_api_major_version\": null}", "{\"sha\": \"4bac765c16c2bf79398643d40561ccb3b9b3c41d\", \"live\": true, \"id\": \"xd371469d54e255a9\", \"perseus_api_major_version\": null}", "{\"sha\": \"da5717f5a39924f8de183080fba5559ae262a2bb\", \"live\": true, \"id\": \"x793958e5c731dffd\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee6b51f9585efabf872e4feb6f58283770715ebe\", \"live\": true, \"id\": \"x6e3f6cd12498db47\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "composing-and-decomposing-shapes", "kind": "Exercise", "name": "composing-and-decomposing-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": ["area_of_squares_and_rectangles", "decompose-shapes-to-find-area"], "exercise_id": "composing-and-decomposing-shapes"}, "graphing_inequalities": {"uses_assessment_items": false, "path": "khan/math/algebra/systems-of-eq-and-ineq/graphing-linear-inequalities/graphing_inequalities/", "id": "graphing_inequalities", "display_name": "Graphing linear inequalities in two variables", "title": "Graphing linear inequalities in two variables", "description": "Graph a linear inequality on the coordinate plane. Determine whether the line should be solid or dotted, and shade the proper side.", "basepoints": 21.0, "slug": "graphing_inequalities", "kind": "Exercise", "name": "graphing_inequalities", "seconds_per_fast_problem": 20.0, "prerequisites": ["graphs_of_inequalities"], "exercise_id": "graphing_inequalities"}, "ordering_negative_numbers": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-negative-numbers/ordering_negative_numbers/", "id": "ordering_negative_numbers", "display_name": "Ordering negative numbers", "title": "Ordering negative numbers", "description": "Practice putting integers in order.", "basepoints": 16.0, "slug": "ordering_negative_numbers", "kind": "Exercise", "name": "ordering_negative_numbers", "seconds_per_fast_problem": 9.0, "prerequisites": ["number_line_2"], "exercise_id": "ordering_negative_numbers"}, "understanding-addition-and-subtraction-with-negative-numbers": {"uses_assessment_items": true, "id": "understanding-addition-and-subtraction-with-negative-numbers", "display_name": "Understanding negative number addition and subtraction with variables", "title": "Understanding negative number addition and subtraction with variables", "all_assessment_items": ["{\"sha\": \"e9d7cf5a1ef4541b576f04be3f6b90b3aff19e2c\", \"live\": true, \"id\": \"x9762a96d6ed72ffb\"}", "{\"sha\": \"cfc949444ba13488a56f594e08d671a4566a2a59\", \"live\": true, \"id\": \"xd874b91d7e96e8e4\"}", "{\"sha\": \"c0418126a5db60d2f8af071429104d5d6f8e0c00\", \"live\": true, \"id\": \"xb9bdb7b805d3221d\"}", "{\"sha\": \"61ee7d4a973f3d89f282f01c90f09f16195ffc11\", \"live\": true, \"id\": \"x9b7d923e5f168763\"}", "{\"sha\": \"392d30806be438de2f8bc0d5ff8279409bcab71d\", \"live\": true, \"id\": \"x89451955162e0708\"}", "{\"sha\": \"ef60568a668586cbe8b4647344af1555d66d538b\", \"live\": true, \"id\": \"x2630a00bc0919ed9\"}", "{\"sha\": \"1a4be71c81d33faece7eed4898f7c56c636cdd82\", \"live\": true, \"id\": \"x0b7d83ae9dcba640\"}", "{\"sha\": \"c129abca1af392962b912f41b94b45d842e28931\", \"live\": true, \"id\": \"xea0a8e5dd711d5b9\"}", "{\"sha\": \"eed1e44c81440bb5b391ca4d60938fb0d482b153\", \"live\": true, \"id\": \"xad379d94b7a760ce\"}", "{\"sha\": \"3719fd9294502762aa05db37e98688b13074c2cf\", \"live\": true, \"id\": \"x98cd49b5121e21de\"}", "{\"sha\": \"5e30822601c21ebef4a8102cc6cf668f5228dd94\", \"live\": true, \"id\": \"x56a633da4f62b8b3\"}", "{\"sha\": \"a03de92e7d9265d17c7c0bdaca2468fb4eb13fad\", \"live\": true, \"id\": \"x0ef6d2b4c68519d9\"}", "{\"sha\": \"d832790137ffa23fa4f29faf30f19288680ac821\", \"live\": true, \"id\": \"x5207f2836aa03b35\"}", "{\"sha\": \"c985d3030d32a7ebc9b863dfe5818e86693a45a7\", \"live\": true, \"id\": \"x33814e542c5816f3\"}", "{\"sha\": \"b99e84c3bbfeca3880b6a2ba2cfd931d9ba78d62\", \"live\": true, \"id\": \"xb698e113e751422f\"}", "{\"sha\": \"214127b57a5efe425ccb6206afe7710707781d0c\", \"live\": true, \"id\": \"x000308979d33050b\"}", "{\"sha\": \"b7fccd470494a3df9721d6b4881b7e433530e9c5\", \"live\": true, \"id\": \"x702a90a60fbd1dc3\"}", "{\"sha\": \"57c80ef035a66a8cbcb09f606bc868d99110a2f8\", \"live\": true, \"id\": \"xb84bbd3e1a85d8a9\"}", "{\"sha\": \"70ab5cfc646b550205398d1a749bbc85f1624922\", \"live\": true, \"id\": \"x2847e4fed7c1c79f\"}", "{\"sha\": \"a1b83f93115b8a0615ba9b99f352527718a18df1\", \"live\": true, \"id\": \"xb441fe35e6768bcd\"}"], "description": "Practice solving challenging negative number addition and subtraction problems. Number line models, variables, and absolute value come together to push your knowledge of negative numbers even deeper (maybe even below zero!).", "basepoints": 10.0, "path": "understanding-addition-and-subtraction-with-negative-numbers/", "slug": "understanding-addition-and-subtraction-with-negative-numbers", "kind": "Exercise", "name": "understanding-addition-and-subtraction-with-negative-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["negative-number-addition-and-subtraction--equations-and-number-lines", "integer-addition-and-subtraction"], "exercise_id": "understanding-addition-and-subtraction-with-negative-numbers"}, "jade-cong": {"uses_assessment_items": true, "path": "khan/humanities/art-asia/imperial-china/neolithic-art-china/jade-cong/", "id": "jade-cong", "display_name": "Jade Cong (quiz)", "title": "Jade Cong (quiz)", "all_assessment_items": ["{\"sha\": \"11c233db88b9bad6a0141170636af48d51266a6f\", \"live\": true, \"id\": \"x0d6cca68f7de7fbf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5fcb604f299c5d66014654148b8d8992494871cb\", \"live\": true, \"id\": \"x02b51eb6ab3175f9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"888e1028c5d795c95e11ef51603418f43e21f44a\", \"live\": true, \"id\": \"x04d3748bd9a7cfad\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2143e8614c3fa17b483c88d1bb9e9feadd6078e3\", \"live\": true, \"id\": \"x93d3e10acd0d2970\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a45ec1e07a70b676eba541a6f67413ced486793b\", \"live\": true, \"id\": \"xd04abd4b0b59847b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a412d3e26e856ea2a7cda16d0b7ab5a99071d00a\", \"live\": true, \"id\": \"x5005ef9a45d1af61\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge of the Jade Cong.", "basepoints": 10.0, "slug": "jade-cong", "kind": "Exercise", "name": "jade-cong", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "jade-cong"}, "standard_deviation": {"uses_assessment_items": false, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/standard_deviation/", "id": "standard_deviation", "display_name": "Sample and population standard deviation", "title": "Sample and population standard deviation", "description": "", "basepoints": 29.0, "slug": "standard_deviation", "kind": "Exercise", "name": "standard_deviation", "seconds_per_fast_problem": 58.0, "prerequisites": ["variance", "standard_deviation_of_a_population"], "exercise_id": "standard_deviation"}, "bernini-s-david-quiz": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/baroque-italy/bernini-s-david-quiz/", "id": "bernini-s-david-quiz", "display_name": "Bernini, David (quiz)", "title": "Bernini, David (quiz)", "all_assessment_items": ["{\"sha\": \"59c2da9c42eee2cf14d7202890acd6df5a06f64a\", \"live\": true, \"id\": \"x6f9b30c3bad33bdf\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2ea5b4366c3449ceb735a55814ddc537d395b04c\", \"live\": true, \"id\": \"x13ec8f2b4c0f95d6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8cd5c9ad147121820e27bc834f779f6d7ffca636\", \"live\": true, \"id\": \"x8b4b327a74246e4c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"defd50bc260ff2773857d801bba714097136a473\", \"live\": true, \"id\": \"x8471d3628e43c1aa\", \"perseus_api_major_version\": 3}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "bernini-s-david-quiz", "kind": "Exercise", "name": "bernini-s-david-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "bernini-s-david-quiz"}, "regrouping-whole-numbers": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/regrouping-whole-numbers/", "id": "regrouping-whole-numbers", "display_name": "Regrouping whole numbers", "title": "Regrouping whole numbers", "all_assessment_items": ["{\"sha\": \"5553ad2f9a856cd16357b72e4c050f8e1d88f44e\", \"live\": true, \"id\": \"x461aea97\"}", "{\"sha\": \"7faf9837292de0931929059c30f0373c902e6f1e\", \"live\": true, \"id\": \"x4ebb8616\"}", "{\"sha\": \"ecc9e5303c491ab5f0a323056ac65820de6d3f78\", \"live\": true, \"id\": \"xba568f44\"}", "{\"sha\": \"40537a3f7bb910c122bed2f4540ccef2139adec2\", \"live\": true, \"id\": \"xd894f12e\"}", "{\"sha\": \"61e2e5082db382b23b5dfaf5ccf856c31705ad73\", \"live\": true, \"id\": \"xf28698cf\"}", "{\"sha\": \"cd72211c8372c27272089816213f917ef21da61a\", \"live\": true, \"id\": \"x147ed012\"}", "{\"sha\": \"146a06fb2cabc1eadfb592ad755c3fbf325af44e\", \"live\": true, \"id\": \"x6d38e37f\"}", "{\"sha\": \"abdb1e8afa4303ebda41b59b9ea67163871c5a8a\", \"live\": true, \"id\": \"x373b70e0\"}", "{\"sha\": \"90f3f5602e94339db993f262d1eb188a972a3f50\", \"live\": true, \"id\": \"xd98927c0\"}", "{\"sha\": \"9c906edb6ecf1836ceb09336067c899dc482dfec\", \"live\": true, \"id\": \"x975540ec\"}", "{\"sha\": \"0d5e35d26f7ab25fbfc9c94f74e21d6a4f42562d\", \"live\": true, \"id\": \"x7130da71\"}", "{\"sha\": \"0b2306a742c7cbaee2a9973954bf44fdc1c2af4d\", \"live\": true, \"id\": \"x1d8f8c1d\"}", "{\"sha\": \"a2d7dd28703eef8df956a13b3c615dadd319c768\", \"live\": true, \"id\": \"x268b00dc\"}", "{\"sha\": \"03adff293575a37ee00e1d4a181ef7b5f62a0165\", \"live\": true, \"id\": \"xe3cadc58\"}", "{\"sha\": \"dbb9e6d3e7ae84f068b5089c844856ee29635a86\", \"live\": true, \"id\": \"x217e3cb6\"}", "{\"sha\": \"4780bedc1353fa6f7eb68f9b2063d12072a258b3\", \"live\": true, \"id\": \"x35c3ea45\"}", "{\"sha\": \"e995373d789f7574de6627d78fd4fedda4035005\", \"live\": true, \"id\": \"xc37fc10a\"}", "{\"sha\": \"38ca3db33e0ebd4155c2fb33512a5df888127bd2\", \"live\": true, \"id\": \"x2078ac03\"}", "{\"sha\": \"9503f64421a63ffb96659bd779add7495b1fea37\", \"live\": true, \"id\": \"xfcf65294\"}", "{\"sha\": \"bcb8dfcc9637c4bf6b731613ffe8281ba8a087d7\", \"live\": true, \"id\": \"x8fffa36c\"}", "{\"sha\": \"4b81be4e5c04b81174dfd768a00ea8bcff909baf\", \"live\": true, \"id\": \"x717946f0\"}", "{\"sha\": \"c2623f622b7d0a36d040820b4ce0f91d36eefcf4\", \"live\": true, \"id\": \"x687e2ac4\"}", "{\"sha\": \"98bb1df5ef51b5a6592052634342c9cc677a99df\", \"live\": true, \"id\": \"xfaf4062b\"}"], "description": "Regroup numbers in each place value (e.g., regroup 1 ten as 10 ones) to express whole numbers in different ways.", "basepoints": 18.0, "slug": "regrouping-whole-numbers", "kind": "Exercise", "name": "regrouping-whole-numbers", "seconds_per_fast_problem": 12.0, "prerequisites": ["writing-and-interpreting-decimals"], "exercise_id": "regrouping-whole-numbers"}, "instrumental-vs-intrinsic-value": {"uses_assessment_items": true, "path": "khan/partner-content/wi-phi/critical-thinking/instrumental-vs-intrinsic-value/", "id": "instrumental-vs-intrinsic-value", "display_name": "Instrumental vs intrinsic value", "title": "Instrumental vs intrinsic value", "all_assessment_items": ["{\"sha\": \"d639398b77ccceb7677f8d64ab13028e7d562a6b\", \"live\": true, \"id\": \"x683e78534322b837\", \"perseus_api_major_version\": 3}", "{\"sha\": \"639543bb03c5e0bfd0e30abedb7c60fd8974001b\", \"live\": true, \"id\": \"xe9c5c96ec77fd67e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c5e84ee993213e5819618026506e3d24c6084a38\", \"live\": true, \"id\": \"x7fe6e20ed94a1cce\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b6babaf89739f774b7a59e1ff3a930654fb02706\", \"live\": true, \"id\": \"x880a088dd7ab4e8e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6eff9b585b05b33892ca0bf84dd87ef472b81b42\", \"live\": true, \"id\": \"xcde4903289f8876d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"588a08a57f934ca23890792e70791efab6542f60\", \"live\": true, \"id\": \"x57007dc91fbe442f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b6318267f79fca6d8d548401f573c246c129f618\", \"live\": true, \"id\": \"x3b183322c041a72d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ba4dda58c91c3cff11d5e0e766a0169607105517\", \"live\": true, \"id\": \"x6a61c4e2ec10b2e7\", \"perseus_api_major_version\": 3}"], "description": "Test your knowledge of the distinction between instrumental and intrinsic value.", "basepoints": 10.0, "slug": "instrumental-vs-intrinsic-value", "kind": "Exercise", "name": "instrumental-vs-intrinsic-value", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "instrumental-vs-intrinsic-value"}, "recognizing_slope": {"uses_assessment_items": false, "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/recognizing_slope/", "id": "recognizing_slope", "display_name": "Recognizing slope of curves", "title": "Recognizing slope of curves", "description": "Identify intervals with positive and negative slope on graphs of functions", "basepoints": 15.0, "slug": "recognizing_slope", "kind": "Exercise", "name": "recognizing_slope", "seconds_per_fast_problem": 8.0, "prerequisites": ["limits_2"], "exercise_id": "recognizing_slope"}, "understanding-probability": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-probability/understanding-probability/", "id": "understanding-probability", "display_name": "Comparing probabilities", "title": "Comparing probabilities", "all_assessment_items": ["{\"sha\": \"804bff4378fad99b969fa0f78e7ca80e0995ac80\", \"live\": true, \"id\": \"x9bb466cbbefcc6fe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"64de44aff1e347fdada386c185d53cb0d630b335\", \"live\": true, \"id\": \"xbfe5b44a204192c2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7156c3e4234bb1b55124a5baed40bf7df70f1929\", \"live\": true, \"id\": \"xb3a87f2517d8c419\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d0c4a23d15e3a21061a0d4478d5451344dafce29\", \"live\": true, \"id\": \"x287ccaa957a5ec01\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"089b1fd16018cfbe1a6f34db5b98ed51d479c838\", \"live\": true, \"id\": \"x896d30ec070acd7a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65394313bb456969f4c76efc63c6ba2dc84794af\", \"live\": true, \"id\": \"xae26aec43fc956b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90f52680e64e4468fac2c4c4611da0540c44296c\", \"live\": true, \"id\": \"xbd9a68fe3c98d83d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"60b4e72a395da28000541c7c87757dbccaf74013\", \"live\": true, \"id\": \"x4b787772bedab724\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"70201c3ed04817384af1488af0817db00674227a\", \"live\": true, \"id\": \"x0f83a823808f07a6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be6b18e7e6658d82f9a9f44c3b011069dc20f958\", \"live\": true, \"id\": \"xc8591e64c5374425\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c37e1635ad94a85eba1cc31c7cffec5ef9180aa8\", \"live\": true, \"id\": \"xa597fc2f0e0dc21c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11337ae9dc1d59bf0232c9a762842412d205c9e8\", \"live\": true, \"id\": \"x355e0c6b274a20c3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d35e1047cb4e5fe6ff85ae6c1dc1efaba5d7e3b\", \"live\": true, \"id\": \"x782192e6aea44b39\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de5922199b3e95f02881749b973e5d0029c89b9d\", \"live\": true, \"id\": \"xfddea78af67c01af\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dc0d66c5a27ae804775246fbd09360338c68c4b0\", \"live\": true, \"id\": \"x703eac7bcd0517b2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1fac58f4c1428ab4f081048086c296f49c2f7014\", \"live\": true, \"id\": \"x6b47f234f72e191d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2868b154f38198db816d71fb8c694e6a7b9a10c5\", \"live\": true, \"id\": \"x4c63165fcf14b851\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"588f273b3ea0780a7966fbe4d827b372d1d2fccb\", \"live\": true, \"id\": \"x310a4c759afe01b7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3ca5804903172e5799292df42e3f53a6606e96ef\", \"live\": true, \"id\": \"xa1eeb2960760cebb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9a6c1e125f1842e6667ae9b83946ff9016936475\", \"live\": true, \"id\": \"x3b5971563df23da4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice expressing probabilities in different forms (fractions, decimals, and percents).", "basepoints": 21.0, "slug": "understanding-probability", "kind": "Exercise", "name": "understanding-probability", "seconds_per_fast_problem": 18.0, "prerequisites": ["probability_1"], "exercise_id": "understanding-probability"}, "constructing-linear-functions-word-problems": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/constructing-linear-functions-word-problems/", "id": "constructing-linear-functions-word-problems", "display_name": "Constructing linear functions word problems", "title": "Constructing linear functions word problems", "all_assessment_items": ["{\"sha\": \"cf14303f3bbd17bce7e54f8de577cdba256ec0d7\", \"live\": true, \"id\": \"xe31e9472e5e9936f\"}", "{\"sha\": \"c498c7594958d1a552debb935c6991aff0c8c353\", \"live\": true, \"id\": \"x00bdd403b9f0928a\"}", "{\"sha\": \"afce90dce23a28813758a8725344e52ca7e37b5f\", \"live\": true, \"id\": \"xe461e143e81251d3\"}", "{\"sha\": \"38efe078a93c5356eb5b09d8183cf8c040c6e16f\", \"live\": true, \"id\": \"x1954e1f22bdd6b27\"}", "{\"sha\": \"9a55d9fdb4f4192b42130b43a7699cb76b102d27\", \"live\": true, \"id\": \"xf67cb447db31f674\"}", "{\"sha\": \"9bb65131df47e976bb33a4d06aa6d9b2786ecc2b\", \"live\": true, \"id\": \"xb239c27196a68b94\"}", "{\"sha\": \"2e226ad3dac1b2989dea33dc38ead82321b47827\", \"live\": true, \"id\": \"x4e91d4a1407072fe\"}", "{\"sha\": \"a9fdda80eca73dce4bf436024b86c2a728d76e89\", \"live\": true, \"id\": \"x21f3ede3fb58e678\"}", "{\"sha\": \"117210ce9ec3850cf289ce3055f6e3bcc219e2e8\", \"live\": true, \"id\": \"x71deb1c3f029222f\"}", "{\"sha\": \"28db10a95a9bc2a146193faa47b10298675cf62c\", \"live\": true, \"id\": \"xa26d10b3168f0f4f\"}", "{\"sha\": \"5447e5870e2ff062a6af9e9d84649810b83341a7\", \"live\": true, \"id\": \"x4895046c00bd87f4\"}", "{\"sha\": \"ccc0baba2b48fbc1b1ced4fefc40212e9d58ed41\", \"live\": true, \"id\": \"x99cb7fa3996b182a\"}", "{\"sha\": \"acfabd9a0fbea14b1a8dff873bcbc06d10b0ab0a\", \"live\": true, \"id\": \"xfbe4f35aafd287f4\"}", "{\"sha\": \"0e69408203678202a564967e53fe2336b12b5d2b\", \"live\": true, \"id\": \"x1e80bd11c2436282\"}", "{\"sha\": \"b3c87bf18549b35e9a746a7717d6eba6ab78ca95\", \"live\": true, \"id\": \"x3a2cf77b9783e094\"}", "{\"sha\": \"1468bdb65c767187479810cb2fbff7f23dc75fdf\", \"live\": true, \"id\": \"xc1225b59e6ad8960\"}", "{\"sha\": \"82b25c7d951b19a539876188c6aad32458c9fd15\", \"live\": true, \"id\": \"x9f8c4a9267db1d3c\"}", "{\"sha\": \"5561c337d946e350c503cb8669fde71ea601cb2f\", \"live\": true, \"id\": \"x6d0995d4256121f9\"}", "{\"sha\": \"76e2e1e3d8c376e36b0ed71c2b3e4a6349d95f23\", \"live\": true, \"id\": \"xb22f8dc46108dc4d\"}", "{\"sha\": \"51a87504e150e7dacfbaa4654d607f851b94504f\", \"live\": true, \"id\": \"x8c10f73f9d93665f\"}"], "description": "Write a linear equation to model a situation", "basepoints": 10.0, "slug": "constructing-linear-functions-word-problems", "kind": "Exercise", "name": "constructing-linear-functions-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["functions-from-equations", "graphing-linear-functions-word-problems", "writing-the-equation-of-a-line-in-any-form"], "exercise_id": "constructing-linear-functions-word-problems"}, "lung-cancer-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/lung-cancer-quiz-2/", "id": "lung-cancer-quiz-2", "display_name": "NCLEX-RN questions on lung cancer 2", "title": "NCLEX-RN questions on lung cancer 2", "all_assessment_items": ["{\"sha\": \"2f8de93b9ca40405dbea501b12a8fce5cd0d3a34\", \"live\": true, \"id\": \"x24e9c725ba70d6f0\"}", "{\"sha\": \"b7f2fbf7fb67361aaa82cd3dc2e339a1f3ec60a5\", \"live\": true, \"id\": \"xbf94f4d6e81d5d8f\"}", "{\"sha\": \"f071f461ad5c55b44577241e5e4c9c2f34600a1f\", \"live\": true, \"id\": \"x7a765cd05e4e49e2\"}", "{\"sha\": \"45c0946c20eda21d79128655627d6335e679ab08\", \"live\": true, \"id\": \"x1e631584abb25d20\"}", "{\"sha\": \"1a5e367ccd201374883cf4d7403cd594c5261f1b\", \"live\": true, \"id\": \"xc14ac3bfa2e826a2\"}"], "description": "Another lung cancer quiz", "basepoints": 10.0, "slug": "lung-cancer-quiz-2", "kind": "Exercise", "name": "lung-cancer-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "lung-cancer-quiz-2"}, "gastrointestinal-system---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/gastrointestinal-system-passage-2/", "id": "gastrointestinal-system---passage-2", "display_name": "Why rabbits can digest cellulose", "title": "Why rabbits can digest cellulose", "all_assessment_items": ["{\"sha\": \"a74cc44a679ad9271eb86d72735ab87e531c6c55\", \"live\": true, \"id\": \"x33190d36a2588c03\"}", "{\"sha\": \"1fb71bd4e6405e03a14c0a6260de5d9d4fd4a8e3\", \"live\": true, \"id\": \"x98e48629f4a439db\"}", "{\"sha\": \"0425b93c2706563f2e26ae6143c65b3e3c7b21a8\", \"live\": true, \"id\": \"x49ec7ade11e4d933\"}", "{\"sha\": \"78a2adc3a54ea27056247db833751da46ab0a5c3\", \"live\": true, \"id\": \"x6c2cc8604fd7e8c7\"}", "{\"sha\": \"4c2ae068206e2d4676f566023a221823dff17d90\", \"live\": true, \"id\": \"xc261f055da2486fc\"}"], "description": "Gastrointestinal system - Passage 2", "basepoints": 10.0, "slug": "gastrointestinal-system-passage-2", "kind": "Exercise", "name": "gastrointestinal-system---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gastrointestinal-system---passage-2"}, "gastrointestinal-system---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/gastrointestinal-system-passage-1/", "id": "gastrointestinal-system---passage-1", "display_name": "Hormonal control of weight loss", "title": "Hormonal control of weight loss", "all_assessment_items": ["{\"sha\": \"ba6450f5cdcde83a11f7b154b62dcbe708ad1608\", \"live\": true, \"id\": \"x0c58a13fc3f6d755\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1b8ffa0a0eab733ba7d935fbd062b1dc74da244b\", \"live\": true, \"id\": \"x7a94cb1286ae75c0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8ab316dca51bff5d811ddd2178bab00aa6499659\", \"live\": true, \"id\": \"x7406ff92a1125a50\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9d77752c7bf88056cbe214497b82feb435ff65cf\", \"live\": true, \"id\": \"x8a05b8829d9af4fb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d41bca076f7818f7743ffa322e4a20d86f1eea99\", \"live\": true, \"id\": \"x1fed7b60eef2ab46\", \"perseus_api_major_version\": 3}"], "description": "Gastrointestinal system - Passage 1", "basepoints": 10.0, "slug": "gastrointestinal-system-passage-1", "kind": "Exercise", "name": "gastrointestinal-system---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gastrointestinal-system---passage-1"}, "finding_percents": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-ratios-rates-percentages/finding_percents/", "id": "finding_percents", "display_name": "Finding percents", "title": "Finding percents", "description": "Find a percent of a quantity as a rate per 100; solve problems involving finding the whole, given a part and the percent.", "basepoints": 18.0, "slug": "finding_percents", "kind": "Exercise", "name": "finding_percents", "seconds_per_fast_problem": 12.0, "prerequisites": ["ratio_word_problems", "rate_problems_0.5", "converting_percents_to_decimals"], "exercise_id": "finding_percents"}, "visualizing_derivatives": {"uses_assessment_items": false, "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/visualizing_derivatives/", "id": "visualizing_derivatives", "display_name": "Visualizing derivatives", "title": "Visualizing derivatives", "description": "", "basepoints": 19.0, "slug": "visualizing_derivatives", "kind": "Exercise", "name": "visualizing_derivatives", "seconds_per_fast_problem": 14.0, "prerequisites": ["derivative_intuition", "symbolic-differentiation"], "exercise_id": "visualizing_derivatives"}, "formal-and-informal-fallacies": {"uses_assessment_items": true, "path": "khan/partner-content/wi-phi/critical-thinking/formal-and-informal-fallacies/", "id": "formal-and-informal-fallacies", "display_name": "Formal and informal fallacies", "title": "Formal and informal fallacies", "all_assessment_items": ["{\"sha\": \"dc5b12b574a270ba6a03897fb8053afcbb05a20a\", \"live\": true, \"id\": \"x892819721348f34e\"}", "{\"sha\": \"741065965945f2d8dcc274c9fe45c7b0ea046bf4\", \"live\": true, \"id\": \"xb62b64d378c655d5\"}", "{\"sha\": \"5ad869ff11b35549a76c4687d5712f4910cde7fe\", \"live\": true, \"id\": \"xd087baf6a80917b4\"}", "{\"sha\": \"4b832f42722c37319bc1f83728771ee99f4ded72\", \"live\": true, \"id\": \"xc301fb5a50f026b9\"}", "{\"sha\": \"7c489382aa99116613544380f2fa1af87e22bdde\", \"live\": true, \"id\": \"x4d104308aaa00342\"}", "{\"sha\": \"996275bc24bfed210f867e56a6033b4bf63f0de2\", \"live\": true, \"id\": \"x2c7d9750f7d98b3f\"}", "{\"sha\": \"e4db77c19b4c1ab7f4241db287e522025c871f75\", \"live\": true, \"id\": \"x5a4a02aa8ff3d986\"}", "{\"sha\": \"b7990fdb5464cd8c1cdb11cd8f2618feda0c1f3e\", \"live\": true, \"id\": \"x9f8b33f9ff9ed981\"}", "{\"sha\": \"fbc325611ddcdaa5c2dcd2f4f85d0cdad2a3cd62\", \"live\": true, \"id\": \"x4318b6827beeba84\"}", "{\"sha\": \"7fc601af48c2f1e161548962ea50698460460e4f\", \"live\": true, \"id\": \"x457e618a25a1055c\"}"], "description": "Test your knowledge of the distinction between formal and informal fallacies!", "basepoints": 10.0, "slug": "formal-and-informal-fallacies", "kind": "Exercise", "name": "formal-and-informal-fallacies", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "formal-and-informal-fallacies"}, "muscular-system---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/muscular-system-passage-1/", "id": "muscular-system---passage-1", "display_name": "Autoimmune disorders of the muscle", "title": "Autoimmune disorders of the muscle", "all_assessment_items": ["{\"sha\": \"335499a5f5f6cb149a1b792c85bc92d1972005ba\", \"live\": true, \"id\": \"xae568e77620f33be\"}", "{\"sha\": \"b01d855e7b3b92a614b7604332c3639e624e0dbe\", \"live\": true, \"id\": \"xf3d4c1208b04822b\"}", "{\"sha\": \"0013cc4c0fe7fa6161238aad0ade90b28ce8b775\", \"live\": true, \"id\": \"x69dc640867d0761d\"}", "{\"sha\": \"186827d74cc932df1581815aeba2f7a87cdcd21e\", \"live\": true, \"id\": \"xee52eaa63740d1cf\"}", "{\"sha\": \"c2146ec82fae107046e6db6cd6c54b3e752b6c3b\", \"live\": true, \"id\": \"x462e869068e5cf25\"}"], "description": "", "basepoints": 10.0, "slug": "muscular-system-passage-1", "kind": "Exercise", "name": "muscular-system---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "muscular-system---passage-1"}, "muscular-system---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/muscular-system-passage-2/", "id": "muscular-system---passage-2", "display_name": "The detection of myocardial infarction", "title": "The detection of myocardial infarction", "all_assessment_items": ["{\"sha\": \"bc6e01300363963c27e70b2bfb62d8cb241e1b3a\", \"live\": true, \"id\": \"x7a03fb46c0e40965\"}", "{\"sha\": \"e1b2b90e068274cf4dae2848d20f048003e3fd37\", \"live\": true, \"id\": \"x3ab6ff21cde8f300\"}", "{\"sha\": \"205df5e15900134c13be1e5e42a9bb12de7ba093\", \"live\": true, \"id\": \"xaeb7aef2c77db15e\"}", "{\"sha\": \"eebb4abbaf88b10c5bc4cdadbcb9f6628f92c7df\", \"live\": true, \"id\": \"x8e20cdb4743c6bb1\"}", "{\"sha\": \"84e2fcd36b42d4827c74d88a8b869bfd6ae53518\", \"live\": true, \"id\": \"x2736f41cf4164912\"}"], "description": "", "basepoints": 10.0, "slug": "muscular-system-passage-2", "kind": "Exercise", "name": "muscular-system---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "muscular-system---passage-2"}, "educational-attainment--income--and-psychiatric-disorders": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/educational-attainment-income-and-psychiatric-disorders/", "id": "educational-attainment--income--and-psychiatric-disorders", "display_name": "Educational attainment, income, and psychiatric disorders", "title": "Educational attainment, income, and psychiatric disorders", "all_assessment_items": ["{\"sha\": \"adbb1e97b0c3ce425cfe92eb357b2e3b3e62447f\", \"live\": true, \"id\": \"x7cf91bbac557d084\"}", "{\"sha\": \"7536506c9ac3798ce130d396461716934d176b3d\", \"live\": true, \"id\": \"x1bbb6ff313bb462b\"}", "{\"sha\": \"c0453b9e60d8287424c01cbadbd2870d904c053b\", \"live\": true, \"id\": \"x1468adcc946f8868\"}", "{\"sha\": \"39f74f05cde328b05d2cf4945248e93d8d24d120\", \"live\": true, \"id\": \"x3dfbd92272feec0f\"}", "{\"sha\": \"de9c50e30c83555f6738e84f56dbe24237be6fbb\", \"live\": true, \"id\": \"x7ac97e6e84aa612c\"}"], "description": "Educational attainment, income, and psychiatric disorders", "basepoints": 10.0, "slug": "educational-attainment-income-and-psychiatric-disorders", "kind": "Exercise", "name": "educational-attainment--income--and-psychiatric-disorders", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "educational-attainment--income--and-psychiatric-disorders"}, "hunt--our-english-coast-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/hunt-our-english-coast-quiz/", "id": "hunt--our-english-coast-quiz", "display_name": "Hunt, Our English Coast Quiz", "title": "Hunt, Our English Coast Quiz", "all_assessment_items": ["{\"sha\": \"a7d8e62b43073cc5bca4333cf858ac4d747264da\", \"live\": true, \"id\": \"x687717d28e4eafec\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"05648dd6e93eb5d1436d1b8706c42f80b2e585b2\", \"live\": true, \"id\": \"x68baba49c915c46b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"70b000afc0b42fda48855f39dcbf61c5705e0cce\", \"live\": true, \"id\": \"x91bf9c8bf2a677eb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"226d20b5372271c1f925db1f44da6be056dcf27c\", \"live\": true, \"id\": \"x63f8f41b9c6cab27\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41f3163fcbaa3e1a2d9b36576c4547fe6293d1a8\", \"live\": true, \"id\": \"x326801c28ea3371e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge of this object.", "basepoints": 10.0, "slug": "hunt-our-english-coast-quiz", "kind": "Exercise", "name": "hunt--our-english-coast-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "hunt--our-english-coast-quiz"}, "romanesque-art": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/romanesque1/romanesque-art/", "id": "romanesque-art", "display_name": "Romanesque art (quiz)", "title": "Romanesque art (quiz)", "all_assessment_items": ["{\"sha\": \"b21dc3a8ee2f1c3db7c090e7b6dc0e2922d3abe2\", \"live\": true, \"id\": \"x187abbfa\"}", "{\"sha\": \"9ad003760966d5a0fd25f4128561eb6539817cea\", \"live\": true, \"id\": \"x8a4c6f23\"}", "{\"sha\": \"3a1e3710f2eedc54224326cfa57017b1c233f988\", \"live\": true, \"id\": \"xe21d148a\"}", "{\"sha\": \"9068bfea981a50cea46012db70698a3414032ef0\", \"live\": true, \"id\": \"x971eae93\"}", "{\"sha\": \"f50de37b333956ce1cb851dd3dcad711eba18778\", \"live\": true, \"id\": \"x5130b1f8\"}", "{\"sha\": \"7645d59a76225fe7c4cc70c966e68b9d45018c7a\", \"live\": true, \"id\": \"xd8f79965\"}", "{\"sha\": \"e4681e4f915316cfcaf0cb06e9880115f00d1164\", \"live\": true, \"id\": \"xda18af53\"}", "{\"sha\": \"c40372d6f400a1117603b399528f8c60dcd44e0e\", \"live\": true, \"id\": \"xb8f21384\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "romanesque-art", "kind": "Exercise", "name": "romanesque-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "romanesque-art"}, "validity": {"uses_assessment_items": true, "path": "khan/partner-content/wi-phi/critical-thinking/validity/", "id": "validity", "display_name": "Validity", "title": "Validity", "all_assessment_items": ["{\"sha\": \"f69ee7d6b3f730321a1acda832dcca67e0059078\", \"live\": true, \"id\": \"xe165f90e420351f1\"}", "{\"sha\": \"710c61c7db16b9bd3393ce7db20302a3b29dabf0\", \"live\": true, \"id\": \"x83633bebe1f866e1\"}", "{\"sha\": \"c3496658d9eeff1b520772f45c6bfaa7385cda11\", \"live\": true, \"id\": \"xfb45bc80c203cbff\"}", "{\"sha\": \"45327513985717f44f8a55862a0b9e3a80080bcb\", \"live\": true, \"id\": \"x13349b7836cc809c\"}", "{\"sha\": \"b38b812476db6eb63856ef17cc37c501a62dd42b\", \"live\": true, \"id\": \"x4c006f8eca8bc735\"}", "{\"sha\": \"a2a6e150f68098c2ad669797a28c5467f0c83fcd\", \"live\": true, \"id\": \"xe6a1993ff15ea827\"}", "{\"sha\": \"beed0f703524757c81c155f298abb6a6d59ae56d\", \"live\": true, \"id\": \"xc127dcc3953379ec\"}", "{\"sha\": \"b51c5aa93d5c2eca54c390717a2d96704b59b50e\", \"live\": true, \"id\": \"x6364e06131b8c60d\"}", "{\"sha\": \"e54cd1d809380f9090a1447226712acf2e2a487f\", \"live\": true, \"id\": \"x289e2b70ec23d0f7\"}", "{\"sha\": \"a8c43925cfe0c9c844a24b3f7cea313463e57b39\", \"live\": true, \"id\": \"x332622bdfc9a7416\"}", "{\"sha\": \"1159a7f8c131951ac17df8622ecbc3cc7ac8b4d0\", \"live\": true, \"id\": \"xb0952a0900c3bfe4\"}"], "description": "Test your knowledge of validity!", "basepoints": 10.0, "slug": "validity", "kind": "Exercise", "name": "validity", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "validity"}, "trigonometry_2": {"uses_assessment_items": false, "path": "khan/math/trigonometry/basic-trigonometry/basic_trig_ratios/trigonometry_2/", "id": "trigonometry_2", "display_name": "Trigonometry 2", "title": "Trigonometry 2", "description": "", "basepoints": 20.0, "slug": "trigonometry_2", "kind": "Exercise", "name": "trigonometry_2", "seconds_per_fast_problem": 16.0, "prerequisites": ["trigonometry_1.5"], "exercise_id": "trigonometry_2"}, "simplifying_fractions": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/equivalent-fractions-pre-alg/simplifying_fractions/", "id": "simplifying_fractions", "display_name": "Simplifying fractions", "title": "Simplifying fractions", "description": "", "basepoints": 17.0, "slug": "simplifying_fractions", "kind": "Exercise", "name": "simplifying_fractions", "seconds_per_fast_problem": 11.0, "prerequisites": ["greatest_common_divisor"], "exercise_id": "simplifying_fractions"}, "trigonometry_1": {"uses_assessment_items": true, "path": "khan/math/trigonometry/basic-trigonometry/basic_trig_ratios/trigonometry_1/", "id": "trigonometry_1", "display_name": "Trigonometry 1", "title": "Trigonometry 1", "all_assessment_items": ["{\"sha\": \"bbd82cbed15260b73872db4a428c4c8200753617\", \"live\": true, \"id\": \"x392dc0deb912b53b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1700709ca36988255f86dc314c7df25f805756e4\", \"live\": true, \"id\": \"x19c0e5c9c5e34fdd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0986324d20297ac5c71f555236b6c2196e26b05d\", \"live\": true, \"id\": \"x31f8b4a5319bef8a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6a73a304c27f0b81dd4a76d98b01a26218517c07\", \"live\": true, \"id\": \"xffae45aa64e75741\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"45fc9baba63348dd948544df75b6042071dd07c1\", \"live\": true, \"id\": \"xd10e30ef89c934d4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"493ee65cadea23eed9067db4dc236beaaec1cc9b\", \"live\": true, \"id\": \"x4d41196a91d9c615\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6962e80975e97f2c6de822786b578a857672b86f\", \"live\": true, \"id\": \"xf869f2102e5ef0e4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b2aaeeff58ff35a57ca101312e3f2241491db914\", \"live\": true, \"id\": \"xa01bee6ac8537f7c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4640e65b459c2cada59c053c7466a69a04d04d98\", \"live\": true, \"id\": \"xc12802dd6c161864\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dc0197a2a6b191446288359e44099de926e7ec4f\", \"live\": true, \"id\": \"x96e7fa864d2517aa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0f0b12d74c1d1ba4a7739d4333e8ed7c0c2fcdb9\", \"live\": true, \"id\": \"x097a8a8bb5b5d8c5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cbaffe47e4460d7bfb5726c5e429052489429eac\", \"live\": true, \"id\": \"x33995f151032aab1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aae02c5ff15add6fb70ba6457dbbf5da73358e2d\", \"live\": true, \"id\": \"x58e14247737f58c2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"36a1b6eca8d9a71a40cc70f17bc91951425daf5b\", \"live\": true, \"id\": \"x369015de1833f18d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a1c5b6c89f4801ddbe35adb10598c52b1f2e1abd\", \"live\": true, \"id\": \"x342d09dc9af33294\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"043c88c4cc204401cc19aec859e2b695b4638fa0\", \"live\": true, \"id\": \"x5d5894871c6e4dfc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c6c9abb1001d987da0ca1daffb9ab2ceb94a6be\", \"live\": true, \"id\": \"x1489f421b41e16ce\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a0e5f5f8694fceed9d12489d102c050b4e29e921\", \"live\": true, \"id\": \"xf2d06145be2bb19c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b1dcb327c04f5d21350695d52bfb4849edbc7c26\", \"live\": true, \"id\": \"xdd858a816871bd56\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"02f779a64cd158f1951a6761d76505ea06aff729\", \"live\": true, \"id\": \"xd0bd12945f0fa697\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"edb9f7f40548b99974761156ddfe52cd3c11d37e\", \"live\": true, \"id\": \"x391a547bf1f45183\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a6e54c6b43199026ba5cd1b57d0e6be240252496\", \"live\": true, \"id\": \"x001b150afe44eddd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3221890c42827098f4c99aa8912a732e46a6ea60\", \"live\": true, \"id\": \"xf16c0cc21256cd19\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9cd98a4eba3fea7c3f00d722ceacb5a63f63ad2f\", \"live\": true, \"id\": \"x75063c49aafae3d9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e833c3fecd7bd782f96d8695d392441896ff68c7\", \"live\": true, \"id\": \"xf3fd69a92adb475b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e35b467959a574eea76003df5647f2c69d85b0c0\", \"live\": true, \"id\": \"x5116f4a8d3b81729\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6e71eeea73164358ecf5f372bbec8e1ed50117ae\", \"live\": true, \"id\": \"x505013659256c0ff\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c3f591b3ab2519e781248fcf62f694bd7b18711\", \"live\": true, \"id\": \"x30138b85c7267213\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"615d610355be041f570fb3aad3896b29d2923130\", \"live\": true, \"id\": \"xc02ff34b76174de1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a3a3213cd2f80f0c603cecd9a46d632336f55b7e\", \"live\": true, \"id\": \"xa591390226c4663c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 18.0, "slug": "trigonometry_1", "kind": "Exercise", "name": "trigonometry_1", "seconds_per_fast_problem": 12.0, "prerequisites": ["trigonometry_0.5"], "exercise_id": "trigonometry_1"}, "creating-power-series-from-geometric-series-using-algebra": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/power-series-algebra/creating-power-series-from-geometric-series-using-algebra/", "id": "creating-power-series-from-geometric-series-using-algebra", "display_name": "Creating power series from geometric series using algebra", "title": "Creating power series from geometric series using algebra", "all_assessment_items": ["{\"sha\": \"20bdcfe7adcd79f7c6b25ebc71fa25568c0d6914\", \"live\": true, \"id\": \"x1592afa2a2d03061\"}", "{\"sha\": \"1114e2f6661374dc952b894aeff8cd40ba18c0d3\", \"live\": true, \"id\": \"x8717641108b15d65\"}", "{\"sha\": \"5bc3e037d7f703cdc702eeaf86a0bd2c90493492\", \"live\": true, \"id\": \"x2975413e1f3eb077\"}", "{\"sha\": \"954ba625bfbbcd552a6c653495320bcfb399e3f7\", \"live\": true, \"id\": \"xdfff4bd3f8e08366\"}", "{\"sha\": \"88a1381ff2c8a34b139f2e9b68c9169caf6a8a43\", \"live\": true, \"id\": \"x898adc22380e5a8e\"}", "{\"sha\": \"772062329ed96ef5a394f07fec27d185e1ed34e1\", \"live\": true, \"id\": \"x34567d20ca8b9f1f\"}", "{\"sha\": \"eaa9685a254a91ff7b2b62179c92fd1c5a31dc5d\", \"live\": true, \"id\": \"x383b36121bc912e4\"}", "{\"sha\": \"8c96675cf731c771cc9d6f9baf6991da6445f228\", \"live\": true, \"id\": \"x1711accf4b91aa7d\"}", "{\"sha\": \"60fbeaf6b5dbf58386838b5f8cfd36731958a6d5\", \"live\": true, \"id\": \"xfca5681069eeee11\"}", "{\"sha\": \"755155f6067bcf213a3e6986ed279d6ae7c31478\", \"live\": true, \"id\": \"xd92cd07509ce2ee9\"}", "{\"sha\": \"e2400bc254bc7dc7685b96439fadcdd79cda2dd1\", \"live\": true, \"id\": \"x08c3ad75714dd66b\"}", "{\"sha\": \"2318eeca5ca52d91dfef4787b505d50a8fe4e60f\", \"live\": true, \"id\": \"x528208e51f5b7b57\"}", "{\"sha\": \"e8212349eb9ab1ac4484a50737447a0c873a79c7\", \"live\": true, \"id\": \"xa9e505a5b285c8d7\"}", "{\"sha\": \"99da8ec85c8e89f1b2abf5434315cdecf78ca5be\", \"live\": true, \"id\": \"x5d9fbb2fcf32037c\"}", "{\"sha\": \"fb522e826fcd28b84d68bc04388afd3f4b5002b9\", \"live\": true, \"id\": \"x169e1ebaa3413948\"}", "{\"sha\": \"26ddf084037a799c9f7ac68e096bea56ba562ebc\", \"live\": true, \"id\": \"x703508e17fb58fc3\"}", "{\"sha\": \"cac98674de93272b7eed5ddfa2e475bdfc3250c6\", \"live\": true, \"id\": \"x41da1fb717d29331\"}", "{\"sha\": \"3663be90559281c2212b1851d35533f0414d4061\", \"live\": true, \"id\": \"xd1f1305672b05194\"}", "{\"sha\": \"59103b40140e7e652f8191e9fc7427cdc203a760\", \"live\": true, \"id\": \"x28c3a52dfb75d49d\"}", "{\"sha\": \"454f27d92da028cb9dfb8248dabd3abb996e42ec\", \"live\": true, \"id\": \"x1dcdd9b706ba20e6\"}", "{\"sha\": \"8643509ec37187b9cb359da9a1699b948d118b3b\", \"live\": true, \"id\": \"x4ffac1f234746824\"}", "{\"sha\": \"d44c9cb708f250e818d641c2211517fc7789b8a8\", \"live\": true, \"id\": \"x0ae5f9a306206bd9\"}", "{\"sha\": \"3abf375ea24ce4a2a93eab5619ae11271f37840a\", \"live\": true, \"id\": \"xee91a05503f5e910\"}", "{\"sha\": \"a0ff2d6899bf37bedf0c5e8f8acc9ab787aa78ed\", \"live\": true, \"id\": \"x901651c91fbc66b5\"}", "{\"sha\": \"3abf53ebd879aba88687a4d7caa16381b0b4ac15\", \"live\": true, \"id\": \"xdd9541a734e4e152\"}"], "description": "", "basepoints": 23.0, "slug": "creating-power-series-from-geometric-series-using-algebra", "kind": "Exercise", "name": "creating-power-series-from-geometric-series-using-algebra", "seconds_per_fast_problem": 24.0, "prerequisites": ["understanding-series"], "exercise_id": "creating-power-series-from-geometric-series-using-algebra"}, "skip-counting-by-5s": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/skip-counting-by-5s/", "id": "skip-counting-by-5s", "display_name": "Skip-counting by 5s", "title": "Skip-counting by 5s", "all_assessment_items": ["{\"sha\": \"1efaa27a91011c7457db12f9f83bdc7ec4a16137\", \"live\": true, \"id\": \"x2976753447b4fa9a\"}", "{\"sha\": \"11f3ce671b208ff421336020b0cf78d67d9468a2\", \"live\": true, \"id\": \"x8ca7e91b972f019d\"}", "{\"sha\": \"b21e414ebd3e28540815577de19263465b0b8038\", \"live\": true, \"id\": \"x5e603ccdcde8538d\"}", "{\"sha\": \"11cd0533655cf4ed833e48b393852dddb94e8598\", \"live\": true, \"id\": \"x113c9e5ea18af334\"}", "{\"sha\": \"8c7b1b0d03823276d0a116cd477f16931ec9a6be\", \"live\": true, \"id\": \"xdb69605e99d81401\"}", "{\"sha\": \"0f402f52a29099e5de46e2db07e75bce78f70928\", \"live\": true, \"id\": \"x80669cc7ff687dc9\"}", "{\"sha\": \"6a034c6e2ae79dd31205fd3d5cf26032287fbf2b\", \"live\": true, \"id\": \"xbe3832842c331fa2\"}", "{\"sha\": \"68f989adf72f2723199b0da65b1cc2c0edf3d323\", \"live\": true, \"id\": \"xfbf0c125ad0cbdfc\"}", "{\"sha\": \"c5c335f39ed2e3ff67a1541753c09cafd882a239\", \"live\": true, \"id\": \"x49c07a14d4a39a0e\"}", "{\"sha\": \"cc4d95f5e7de2b59a9e2ca7a0ab96b268826a77a\", \"live\": true, \"id\": \"xb021702d54dd98ce\"}", "{\"sha\": \"96b708023b41bc7f82c70ee5e8ff6f3c91bcd98b\", \"live\": true, \"id\": \"xc943aa204bafcda8\"}", "{\"sha\": \"ef55ec4a86ca2312cd9b055b13bc3e7100ca4f91\", \"live\": true, \"id\": \"x8f087f8aac772fb3\"}", "{\"sha\": \"fa89a70077837c093b23fad592d919d7547bda12\", \"live\": true, \"id\": \"x98bb40497bc84b2f\"}", "{\"sha\": \"b892e389a0faa36b2d394c69715b18f0bf58d359\", \"live\": true, \"id\": \"xd050cbb2f9c2f501\"}", "{\"sha\": \"b82a46707eb301e1a6831abfd8e88c6844114aea\", \"live\": true, \"id\": \"x43f9297a0c56d7fb\"}", "{\"sha\": \"342d6497c8d1c81d1a2e8984883b2fa9c55d28bc\", \"live\": true, \"id\": \"x2fd14fe78758868d\"}", "{\"sha\": \"900cf41d6be67c37b112a04feb14238a30d13050\", \"live\": true, \"id\": \"x644d154c8f803dd3\"}", "{\"sha\": \"1e649da3c09db54bf752918a79111688d6c7cd24\", \"live\": true, \"id\": \"x6c836e15c29282b0\"}", "{\"sha\": \"1139a483871ed4139cec97809bddab707df978f3\", \"live\": true, \"id\": \"xd570f477e4ab01fc\"}", "{\"sha\": \"58a50ea764522d2ca1a6e8ccb3c7ef88c042cc85\", \"live\": true, \"id\": \"x1573cc558ccaae2e\"}"], "description": "Practice counting by fives.", "basepoints": 10.0, "slug": "skip-counting-by-5s", "kind": "Exercise", "name": "skip-counting-by-5s", "seconds_per_fast_problem": 4.0, "prerequisites": ["hundreds--tens--and-ones"], "exercise_id": "skip-counting-by-5s"}, "nclex-rn-questions-on-iron-deficiency-anemia-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-iron-deficiency-anemia-2/", "id": "nclex-rn-questions-on-iron-deficiency-anemia-2", "display_name": "NCLEX-RN questions on iron-deficiency anemia 2", "title": "NCLEX-RN questions on iron-deficiency anemia 2", "all_assessment_items": ["{\"sha\": \"5dcf665144034af33d23fcf6b81e3628e15c93a4\", \"live\": true, \"id\": \"x24dff1a1b6ef5e0f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d9a009440b4ebc0273fbf7def1f41a3a71b83b1\", \"live\": true, \"id\": \"x08d6e6fcc978ddf6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"72c934f05aa3afe2dd3829593144def40acb2a75\", \"live\": true, \"id\": \"xfd80641834c1091d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2197fa1c8bc430b5ce70d9772b7b116ea6f427cf\", \"live\": true, \"id\": \"x9102190f1e461431\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4ed78354172b9ff971ec77e8313081e9f577f582\", \"live\": true, \"id\": \"x059199027805d74b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "More questions related to iron-deficiency anemia", "basepoints": 10.0, "slug": "nclex-rn-questions-on-iron-deficiency-anemia-2", "kind": "Exercise", "name": "nclex-rn-questions-on-iron-deficiency-anemia-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-iron-deficiency-anemia-2"}, "nclex-rn-questions-on-iron-deficiency-anemia-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-iron-deficiency-anemia-1/", "id": "nclex-rn-questions-on-iron-deficiency-anemia-1", "display_name": "NCLEX-RN questions on iron-deficiency anemia 1", "title": "NCLEX-RN questions on iron-deficiency anemia 1", "all_assessment_items": ["{\"sha\": \"ffb4fdcb6104f6355dd70efcfe88ea19903730f5\", \"live\": true, \"id\": \"x65e2e6aa843d328d\"}", "{\"sha\": \"2250d252de814be46cec700be6c497e846bd4398\", \"live\": true, \"id\": \"xe4ea1be68c29862a\"}", "{\"sha\": \"64260c3057899f61969b9fff9bf10261877c15d9\", \"live\": true, \"id\": \"xd36a67a9a19c17e0\"}", "{\"sha\": \"d4efa08a4f560e8449844be43a2c8ee01f5dfb3c\", \"live\": true, \"id\": \"x7929019e61652bfc\"}", "{\"sha\": \"938e59d3b8cdb5836b3e2f25da42d2a976df2e3e\", \"live\": true, \"id\": \"xc87a5512f4a44060\"}", "{\"sha\": \"434b8148f1d66c60b83eba02309facde838b3b61\", \"live\": true, \"id\": \"x75cb1523b57e567c\"}", "{\"sha\": \"35af6c67570ce204fb17dbd7d8bd8bbf5dd990e4\", \"live\": true, \"id\": \"x06e12d0a61b43d05\"}", "{\"sha\": \"5d55c0783b0526ab9cae6a9c2ef9bf74923b6093\", \"live\": true, \"id\": \"x5fd4567933b64687\"}", "{\"sha\": \"925d309821ccd31d0fb6bfffb00f5e9362dc558e\", \"live\": true, \"id\": \"x7e894f9c7e9aca26\"}", "{\"sha\": \"6e57e15dca73b455b4e70e3b5a25efcd2ecef637\", \"live\": true, \"id\": \"x6bfe0d5eda173038\"}"], "description": "Questions about iron-deficiency anemia", "basepoints": 10.0, "slug": "nclex-rn-questions-on-iron-deficiency-anemia-1", "kind": "Exercise", "name": "nclex-rn-questions-on-iron-deficiency-anemia-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-iron-deficiency-anemia-1"}, "evolution-and-population-dynamics----passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/evolution-and-population-dynamics-passage-2/", "id": "evolution-and-population-dynamics----passage-2", "display_name": "Human impact on animal populations", "title": "Human impact on animal populations", "all_assessment_items": ["{\"sha\": \"69c15268db005ba7cfa63625ed3743944f640c26\", \"live\": true, \"id\": \"x38ce0b79e71880c8\"}", "{\"sha\": \"c32e0fad2b6a7ccdc1e4afd32587926f64b2cce6\", \"live\": true, \"id\": \"x3388bda8832defcd\"}", "{\"sha\": \"7ce71f966e9ca781ff97ca09db33ef2321ebf002\", \"live\": true, \"id\": \"xfe16afe1a7cb5870\"}", "{\"sha\": \"25d1599e9cbcbc742a60a7b79fa494f77c3bb8a8\", \"live\": true, \"id\": \"x62baedc76ff153c5\"}", "{\"sha\": \"cbb7014f725044a727a286565fa61f1f2c343490\", \"live\": true, \"id\": \"x904045836dd7c43d\"}"], "description": "Evolution and population dynamics - Passage 2", "basepoints": 10.0, "slug": "evolution-and-population-dynamics-passage-2", "kind": "Exercise", "name": "evolution-and-population-dynamics----passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "evolution-and-population-dynamics----passage-2"}, "beginners-guide-to-medieval-art": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/medieval-europe/beginners-guide-to-medieval-art/", "id": "beginners-guide-to-medieval-art", "display_name": "Beginner's guide to medieval art (quiz)", "title": "Beginner's guide to medieval art (quiz)", "all_assessment_items": ["{\"sha\": \"020fa001cb97e216a09538ef40e11a7b15f14faa\", \"live\": true, \"id\": \"x00818f79\"}", "{\"sha\": \"059482f1b56203eadd2cd9400c47f8fa20a70f73\", \"live\": true, \"id\": \"x6b9f389d\"}", "{\"sha\": \"0b7f8b4b2b6bc470afe9d3cebba62e40a321bb15\", \"live\": true, \"id\": \"x6404326d\"}", "{\"sha\": \"1ce17e9a2649a4c16fce4bad926dadab0b71d616\", \"live\": true, \"id\": \"x7918e010\"}", "{\"sha\": \"192a4d9195ccd586398fa7a68166bdd521d54f38\", \"live\": true, \"id\": \"x14d123e2\"}", "{\"sha\": \"0ff5c6dbafc49d4317847a71ec3cd9f36074c384\", \"live\": true, \"id\": \"x7edd59e4\"}", "{\"sha\": \"80b955a0250bb709e87e4eac1fef94e868a21365\", \"live\": true, \"id\": \"x08aa2ab6\"}", "{\"sha\": \"9850ee7ebebce650431a82cc8b8c1efdc5e2f0b6\", \"live\": true, \"id\": \"x706b7126\"}", "{\"sha\": \"d3322d2e2016d3b844a5bb65dc4f26f86e93cef1\", \"live\": true, \"id\": \"xe717f324\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "beginners-guide-to-medieval-art", "kind": "Exercise", "name": "beginners-guide-to-medieval-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "beginners-guide-to-medieval-art"}, "computing-in-scientific-notation": {"uses_assessment_items": true, "path": "khan/math/algebra-basics/core-algebra-exponent-expressions/algebra-foundations-computing-scientific-notation/computing-in-scientific-notation/", "id": "computing-in-scientific-notation", "display_name": "Computing in scientific notation", "title": "Computing in scientific notation", "all_assessment_items": ["{\"sha\": \"4e75090520ff365bcd85ac26b38698b17a329593\", \"live\": true, \"id\": \"x6b5d6dd0\"}", "{\"sha\": \"840f88311b7f84db272648b9d47ca910a04d083c\", \"live\": true, \"id\": \"x4efa3eb5\"}", "{\"sha\": \"3485d34b88c07dcbfbfe8b6bc7bd3224ac013cab\", \"live\": true, \"id\": \"xd6b69e6d\"}", "{\"sha\": \"ab06969b4552248e6dcee46b2f13b9039d9ea26d\", \"live\": true, \"id\": \"x66384803\"}", "{\"sha\": \"a38d78597fa46c58de0078acf830eeb5dce64065\", \"live\": true, \"id\": \"x3c429fea\"}", "{\"sha\": \"75e89f0c00c040d96e0da2389741939bfbc8ac1a\", \"live\": true, \"id\": \"x78007907\"}", "{\"sha\": \"83e699d20230f8c168455eae2fe680e4ef45e252\", \"live\": true, \"id\": \"xf9d58471\"}", "{\"sha\": \"d7e8db7e0efa8d945d541c0fc7fa3fb39a7afaa9\", \"live\": true, \"id\": \"xac489f1b\"}", "{\"sha\": \"5e54b7e4a22c5fee39428806c4bb6e4f694ce756\", \"live\": true, \"id\": \"xc409e544\"}", "{\"sha\": \"e58136390cbe1cb6385c26fcd2d383cd0d0fab03\", \"live\": true, \"id\": \"x658129fc\"}", "{\"sha\": \"7831c13741562bd2fd0ab4e5d02e5c76fe015240\", \"live\": true, \"id\": \"xcb772595\"}", "{\"sha\": \"4bcc86bbbc14a26e20730e66c0b4b08247c20ab7\", \"live\": true, \"id\": \"x248507ea\"}", "{\"sha\": \"5cba1735198f28ed0d3a121ab95119ce1fc62f10\", \"live\": true, \"id\": \"xcff9a20f\"}", "{\"sha\": \"8e6f9f9480f3667f358575bb325771659952b238\", \"live\": true, \"id\": \"x87c6824e\"}", "{\"sha\": \"3894e14549157c5b5858bd264767ac6db6557622\", \"live\": true, \"id\": \"xc54112df\"}", "{\"sha\": \"af94808f62a3b011b6b916d5f94bc1a905f4ba00\", \"live\": true, \"id\": \"x896b5f4c\"}", "{\"sha\": \"2e63e33bf955d2e88676a228245820732af5d873\", \"live\": true, \"id\": \"x60224903\"}", "{\"sha\": \"d37da80464e76eb354b43134d4b9f39e5169e8f9\", \"live\": true, \"id\": \"x58de69a1\"}", "{\"sha\": \"4db0229f4fa5c340d8ef37a576158dbf64001169\", \"live\": true, \"id\": \"x9491236e\"}", "{\"sha\": \"e6c5b62d1b30a28359a21507be13968a807e2809\", \"live\": true, \"id\": \"xd9b19af5\"}", "{\"sha\": \"2f7cd6ff7a103f1df1ca010b585d2954fd75576d\", \"live\": true, \"id\": \"xe341dcba\"}", "{\"sha\": \"e48dcf34a55b5b683d90e03afae52acb9176fd50\", \"live\": true, \"id\": \"x1a80ca52\"}", "{\"sha\": \"951d3691b44edd69cf4de862ab1d968160e0674a\", \"live\": true, \"id\": \"xc5b62330\"}", "{\"sha\": \"b6c39d723e4086c21b0fa3b141a6923aa5d1c9d1\", \"live\": true, \"id\": \"xf05735c6\"}", "{\"sha\": \"51a0e62d1029c90b078b156d5a75c04d479fd5e8\", \"live\": true, \"id\": \"x6a1f8c8c\"}", "{\"sha\": \"fa2b5de055d4f713a27f9ca03e32687203635e61\", \"live\": true, \"id\": \"x4bb803c5\"}", "{\"sha\": \"ea4dda517e2f6818ee486d09a9d350abc44c202d\", \"live\": true, \"id\": \"xa2d57bc5\"}", "{\"sha\": \"862bbc24288bc65641d3e3bea52f54ffc0763424\", \"live\": true, \"id\": \"x6746cbc8\"}", "{\"sha\": \"0c93afea2cab73a2b0d4496eecd77639a636ac32\", \"live\": true, \"id\": \"xaab068a9\"}"], "description": "Practice solving more challenging problems involving scientific notation.", "basepoints": 29.0, "slug": "computing-in-scientific-notation", "kind": "Exercise", "name": "computing-in-scientific-notation", "seconds_per_fast_problem": 55.0, "prerequisites": ["multiplying_and_dividing_scientific_notation"], "exercise_id": "computing-in-scientific-notation"}, "cell-membrane-overview---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cell-membrane-overview-passage-2/", "id": "cell-membrane-overview---passage-2", "display_name": "Ion transport defects cause cystic fibrosis ", "title": "Ion transport defects cause cystic fibrosis", "all_assessment_items": ["{\"sha\": \"9013ea4ec8ea9c6c8ffba9fe27a18d21261f6bcb\", \"live\": true, \"id\": \"x1405f2add9c0d638\"}", "{\"sha\": \"e9c0c0e19b50fdfaffd9be07443347cca599747a\", \"live\": true, \"id\": \"xb65fb3d226ea8b57\"}", "{\"sha\": \"eb1d408d3f44adf991385e073c7fd89ff5d5c159\", \"live\": true, \"id\": \"x6fec87727720392e\"}", "{\"sha\": \"bedad8d86b889eedf7871443237fa86901d92bf5\", \"live\": true, \"id\": \"x194a9349c2bc29b3\"}", "{\"sha\": \"b90571f551a3249fedb34338d5ff329091b0c7b9\", \"live\": true, \"id\": \"xb374cbcc19bf2d12\"}"], "description": "", "basepoints": 10.0, "slug": "cell-membrane-overview-passage-2", "kind": "Exercise", "name": "cell-membrane-overview---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cell-membrane-overview---passage-2"}, "cell-membrane-overview---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cell-membrane-overview-passage-1/", "id": "cell-membrane-overview---passage-1", "display_name": "Cell membranes and trafficking disorders", "title": "Cell membranes and trafficking disorders", "all_assessment_items": ["{\"sha\": \"e1481344923bbb97e0ac32952b926885364eb303\", \"live\": true, \"id\": \"xbaaf03cf894541e3\", \"perseus_api_major_version\": null}", "{\"sha\": \"aa69a00750b735ff1d4702536f41f0a63c11624f\", \"live\": true, \"id\": \"xb2ecc28d762577b9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b2341478355b7ab76c7aaf21a497d181087c0bca\", \"live\": true, \"id\": \"x34cdd288c0e639ab\", \"perseus_api_major_version\": null}", "{\"sha\": \"d20b72611664fbf67036d82043f8a5814f97a8b7\", \"live\": true, \"id\": \"x12f3a15dfb1d8287\", \"perseus_api_major_version\": null}", "{\"sha\": \"9a17617230ecfcf26918e441796643090d9d6f53\", \"live\": true, \"id\": \"x32fc731dcb52443c\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "cell-membrane-overview-passage-1", "kind": "Exercise", "name": "cell-membrane-overview---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cell-membrane-overview---passage-1"}, "reading-histograms": {"uses_assessment_items": true, "id": "reading-histograms", "display_name": "Reading histograms", "title": "Reading histograms", "all_assessment_items": ["{\"sha\": \"b004190f5a20904c3811824c69b14b463e353885\", \"live\": true, \"id\": \"x9f1e1d8537b01eac\"}", "{\"sha\": \"11602c8cf047cb6c8648663548b769a6e8be9e08\", \"live\": true, \"id\": \"x4d8f1f3bd8dcbee8\"}", "{\"sha\": \"e1ceec48be382ecede72c0fa801d7ae49e64b513\", \"live\": true, \"id\": \"xbc893b1824d12071\"}", "{\"sha\": \"1a688e479c098b869d0abbbcd1f186cdea9dbbdf\", \"live\": true, \"id\": \"xe428dc0a85f36b0e\"}", "{\"sha\": \"9ee1e5002bb648dbf3c8f9734356d397ba185fe7\", \"live\": true, \"id\": \"xcce27e90412c4cf5\"}", "{\"sha\": \"567752e73d8265cc5366892d5843b465918634fd\", \"live\": true, \"id\": \"xfc4a97857cb0c1bd\"}", "{\"sha\": \"1af9f6d2971ab0e5be0f6f9fee675996280c4cd0\", \"live\": true, \"id\": \"x452b3d0cace30671\"}", "{\"sha\": \"f5b02cf420ff4d3db2b6906d4b9ab316feac3d75\", \"live\": true, \"id\": \"x56b110393b5e1cce\"}", "{\"sha\": \"c10949a2755690ceac46a873fd7a04d02bd744a7\", \"live\": true, \"id\": \"xae3fbca6a78ea1c2\"}", "{\"sha\": \"76c2529d2dfd53322ed4fe7bdc69f6ed7b6932f3\", \"live\": true, \"id\": \"xaea0504f3bdab957\"}", "{\"sha\": \"4a5e9a4da71c47ab8b6fc8b55750bf5fab811807\", \"live\": true, \"id\": \"xd2f725180fdfb95a\"}", "{\"sha\": \"e291ac15922ddf8524c4a64f862b57a3bdded2c4\", \"live\": true, \"id\": \"x1c16de62ccfc09fc\"}", "{\"sha\": \"2f3ffdc41313f4e3d6734540f828d920d9b8f3ad\", \"live\": true, \"id\": \"x32cf859e4d90f316\"}", "{\"sha\": \"40548de22f062d59ec443a4652dbfcb0edda6348\", \"live\": true, \"id\": \"x8c8ccba347aa5487\"}", "{\"sha\": \"b23199aec6bb8718423392da17d0f4353adaa3ed\", \"live\": true, \"id\": \"x48ee799f8c1db2bb\"}", "{\"sha\": \"542bafe6e1499474bead22e6c510c1e02cca7765\", \"live\": true, \"id\": \"x17aef6e8edbb6eb9\"}", "{\"sha\": \"d50f3bdbbcb9d34ee1af9acd58b04bceab149826\", \"live\": true, \"id\": \"x1e0b1ce80416fb50\"}", "{\"sha\": \"26fff3054f32beaeef875f9a5a148064220c0071\", \"live\": true, \"id\": \"x75a620fabb1a6f82\"}", "{\"sha\": \"125e15ab7753e4489d557cb12532a3be33d8f008\", \"live\": true, \"id\": \"x3fabb8db7d996fe5\"}", "{\"sha\": \"897c3e8673c2ea2a10344320d3dd24e0cf9f96cf\", \"live\": true, \"id\": \"xf8af1dab929140f9\"}", "{\"sha\": \"7a0b34440e39cc31dd64c33179bb98813adb6b38\", \"live\": true, \"id\": \"xe6b5cb4937f7cc6f\"}", "{\"sha\": \"834d1d9c694b75dc409e2578347e9be98d627d13\", \"live\": true, \"id\": \"xbfa7ff106c461875\"}", "{\"sha\": \"916fa3b6857876b1e732b4c92a49e3e8b4e8a3fc\", \"live\": true, \"id\": \"x43a259dcbb1f95c2\"}", "{\"sha\": \"f4e3bb7570b87f9367a07be3af15acbc96df4672\", \"live\": true, \"id\": \"xa924915a2ad441d3\"}"], "description": "Practice reading histograms.", "basepoints": 10.0, "path": "reading-histograms/", "slug": "reading-histograms", "kind": "Exercise", "name": "reading-histograms", "seconds_per_fast_problem": 4.0, "prerequisites": ["creating-dot-plots"], "exercise_id": "reading-histograms"}, "quiz-what-emerged-from-the-big-bang-": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/big-bang/claim-testing/quiz-what-emerged-from-the-big-bang-/", "id": "quiz-what-emerged-from-the-big-bang-", "display_name": "Quiz: Claim Testing", "title": "Quiz: Claim Testing", "all_assessment_items": ["{\"sha\": \"85bd2e033cc6fbc5bfbb7d4c3a3c23b81fb72613\", \"live\": true, \"id\": \"x06bb3cec1b8e7172\"}", "{\"sha\": \"b848df875879286b138e8d496b5af4693ca6738c\", \"live\": true, \"id\": \"x2902599534e56d5c\"}", "{\"sha\": \"7e52dc21d2696759756cca15f84604bf0abbfa6a\", \"live\": true, \"id\": \"xc2b9e232dd9c66b2\"}", "{\"sha\": \"9ad5570ce1834ee6ca52210322e25fb4bf662212\", \"live\": true, \"id\": \"x3c0ec59e1d448c11\"}", "{\"sha\": \"76b085307f90f4fb188ea40965fb1163c87785b9\", \"live\": true, \"id\": \"xd8617abbe9cad21a\"}"], "description": "Quiz 2.2", "basepoints": 10.0, "slug": "quiz-what-emerged-from-the-big-bang-", "kind": "Exercise", "name": "quiz-what-emerged-from-the-big-bang-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-what-emerged-from-the-big-bang-"}, "derivative_intuition": {"uses_assessment_items": false, "path": "khan/math/differential-calculus/taking-derivatives/visualizing-derivatives-tutorial/derivative_intuition/", "id": "derivative_intuition", "display_name": "Derivative intuition", "title": "Derivative intuition", "description": "", "basepoints": 25.0, "slug": "derivative_intuition", "kind": "Exercise", "name": "derivative_intuition", "seconds_per_fast_problem": 35.0, "prerequisites": ["limits_2"], "exercise_id": "derivative_intuition"}, "the-forces-and-torques-acting-on-the-hip-joint": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-forces-and-torques-acting-on-the-hip-joint/", "id": "the-forces-and-torques-acting-on-the-hip-joint", "display_name": "The Forces and Torques Acting on the Hip Joint", "title": "The Forces and Torques Acting on the Hip Joint", "all_assessment_items": ["{\"sha\": \"a5407945eb4486329614f7520c02fc342506584a\", \"live\": true, \"id\": \"x0338fecdebf8c819\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c1a247aaa92d0644dc176b7f9972dad41e1b7b15\", \"live\": true, \"id\": \"x9a70d4d2258046b9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4960e5dcf02961fa21ff866fb2bedaa0031f97cf\", \"live\": true, \"id\": \"xe0fedf6fea20339b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ac72c2a0b6a8faad2a087e544abf698bb1481067\", \"live\": true, \"id\": \"x618481da6a4d6fc3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f83e04c95b1a4181a77bdbb1c94eab93867f87a\", \"live\": true, \"id\": \"xe95c2342fd4f5887\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "The Forces and Torques Acting on the Hip Joint", "basepoints": 10.0, "slug": "the-forces-and-torques-acting-on-the-hip-joint", "kind": "Exercise", "name": "the-forces-and-torques-acting-on-the-hip-joint", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-forces-and-torques-acting-on-the-hip-joint"}, "art-history-media": {"uses_assessment_items": true, "path": "khan/humanities/art-history-basics/artists-materials-techniques/materials-techniques-quiz/art-history-media/", "id": "art-history-media", "display_name": "Materials and techniques (quiz)", "title": "Materials and techniques (quiz)", "all_assessment_items": ["{\"sha\": \"2e8dd35da4017552623e00204b0d754fa1e5e8e8\", \"live\": true, \"id\": \"xee25387d\"}", "{\"sha\": \"ab0064c8062f3d71e68ba3a97452746f001078fd\", \"live\": true, \"id\": \"x59e8df03\"}", "{\"sha\": \"8b026b28034ba3b49a8f533f18c219ff5415a4d0\", \"live\": true, \"id\": \"xbc419667\"}", "{\"sha\": \"605e9c061a486bf7da5b019cec8e4ad8df6cb842\", \"live\": true, \"id\": \"xc7014e6e\"}", "{\"sha\": \"5c595c1f8f010e48a3b0f276d41c7a4db260b98d\", \"live\": true, \"id\": \"x4741ff08\"}", "{\"sha\": \"8630a839d4d8b5926444ea9b2e7101e7efd3f1aa\", \"live\": true, \"id\": \"x1a3824a3\"}", "{\"sha\": \"9989ec393c61cb8082ee504f6f346e397be4c424\", \"live\": true, \"id\": \"x8ad1a06e\"}", "{\"sha\": \"6d7e2ab17474affd2d251c486de3479c5b25e30e\", \"live\": true, \"id\": \"xda4cc6a2\"}"], "description": "Test your comprehension of the different mediums that artists use.", "basepoints": 10.0, "slug": "art-history-media", "kind": "Exercise", "name": "art-history-media", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "art-history-media"}, "writing-fractions-as-repeating-decimals": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/writing-fractions-as-repeating-decimals/", "id": "writing-fractions-as-repeating-decimals", "display_name": "Writing fractions as repeating decimals", "title": "Writing fractions as repeating decimals", "all_assessment_items": ["{\"sha\": \"c85f6ced986737662d7a4117ac57f55e2024a482\", \"live\": true, \"id\": \"xaa396636\"}", "{\"sha\": \"41eddf096612dd376699ee3f38620bcd9e9135b8\", \"live\": true, \"id\": \"xf80e73e3\"}", "{\"sha\": \"a0f1e5b37c1c89f568fc1cdb980bbfc3c7ab0fcb\", \"live\": true, \"id\": \"x093f60e0\"}", "{\"sha\": \"f7e83e861ff2f0b7bc19af401d2fd96b07c5d12f\", \"live\": true, \"id\": \"xdd0dc821\"}", "{\"sha\": \"a5c2c240c4b93718373f33ff1085863c89513b6e\", \"live\": true, \"id\": \"x40dc4a07\"}", "{\"sha\": \"5302b5e2161ac5a988f1c43bbc8fbe23b12e4a92\", \"live\": true, \"id\": \"xe0d14fc8\"}", "{\"sha\": \"5f7772c3cd8fe69d07a0d76c84b586473e8afec3\", \"live\": true, \"id\": \"xb1f96281\"}", "{\"sha\": \"b197421c030873efa0e420a20ca280f6f5f7f8eb\", \"live\": true, \"id\": \"x9e03fb84\"}", "{\"sha\": \"b152f593b3c5c376a9eaf0a5e78c554b7ebaf019\", \"live\": true, \"id\": \"xac783e02fb22ba13\"}", "{\"sha\": \"ccc15b774346dea451269340b1c2a487f586d772\", \"live\": true, \"id\": \"x987760ef\"}", "{\"sha\": \"a7c469fff9acb3e36bbb701a53c3da7475001f91\", \"live\": true, \"id\": \"xee0bb588c735c392\"}", "{\"sha\": \"c72d726a694c434bb18a0a2f699adf713de6d09e\", \"live\": true, \"id\": \"xb33dba04a1e473b7\"}", "{\"sha\": \"b8ec9b22dc1a29fe84944b6644ee4bfe81aeb709\", \"live\": true, \"id\": \"x014c591e8b35f1c4\"}", "{\"sha\": \"de2eb861d535fb7c4cac1ec9450ee795e85dbe4b\", \"live\": true, \"id\": \"xee86c20c08d1e069\"}", "{\"sha\": \"82d8379c804c3d966bf7f5f0f3a344f44ec93675\", \"live\": true, \"id\": \"xff4898c12a73e360\"}", "{\"sha\": \"99f44c9cba5348967ec5e0ee843fee624af780a5\", \"live\": true, \"id\": \"x513c8da038395f17\"}", "{\"sha\": \"2951998ad9118f70881dc7320c59e29921c10c97\", \"live\": true, \"id\": \"x768787d370268f1b\"}"], "description": "Practice writing fractions as repeating decimals\u2014get ready to bust out those long division skills!", "basepoints": 20.0, "slug": "writing-fractions-as-repeating-decimals", "kind": "Exercise", "name": "writing-fractions-as-repeating-decimals", "seconds_per_fast_problem": 16.0, "prerequisites": ["converting_fractions_to_decimals"], "exercise_id": "writing-fractions-as-repeating-decimals"}, "reflection-and-refraction---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/reflection-and-refraction-passage-2/", "id": "reflection-and-refraction---passage-2", "display_name": "An experiment with light rays and a prism", "title": "An experiment with light rays and a prism", "all_assessment_items": ["{\"sha\": \"7dcd526f831b838e90a2cc99e8631318717d5644\", \"live\": true, \"id\": \"x1ba4e8732d566beb\"}", "{\"sha\": \"1399b6b6bbc86d8e6282b4f961ebf0d9f5cd129d\", \"live\": true, \"id\": \"x6cf3aa1dd8487d96\"}", "{\"sha\": \"26d8e454c930ff2a1494e0ac50785b2ba033df17\", \"live\": true, \"id\": \"x1d04991fdd8f4010\"}", "{\"sha\": \"fca13fcc952bca45baeb2f996e792ffc5f1647cc\", \"live\": true, \"id\": \"x14cdaed4cb5f5f15\"}", "{\"sha\": \"4993c18bce01519eca28b6e19e4261602038d950\", \"live\": true, \"id\": \"x1f7885bb89160552\"}"], "description": "This passage will test your knowledge on reflection and Refraction - Passage 2", "basepoints": 10.0, "slug": "reflection-and-refraction-passage-2", "kind": "Exercise", "name": "reflection-and-refraction---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "reflection-and-refraction---passage-2"}, "raphael-s-school-of-athens-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/raphael-s-school-of-athens-quiz/", "id": "raphael-s-school-of-athens-quiz", "display_name": "Raphael, School of Athens (quiz)", "title": "Raphael, School of Athens (quiz)", "all_assessment_items": ["{\"sha\": \"cbf23e41d87a1dd13c01385749f72fbfcf59739e\", \"live\": true, \"id\": \"x5fa6273018bef5f1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"75a0cb5bef4afe54ccb587bad817644169daff20\", \"live\": true, \"id\": \"x711f1c6b4f4574d1\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ab3fdc60716409d2fa54f790944f85afc95840ff\", \"live\": true, \"id\": \"xd5214173ec9b3337\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8f07da7bb172a582c9c723db108cf7e1ccf4111d\", \"live\": true, \"id\": \"x91bcb917410de93f\", \"perseus_api_major_version\": 3}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "raphael-s-school-of-athens-quiz", "kind": "Exercise", "name": "raphael-s-school-of-athens-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "raphael-s-school-of-athens-quiz"}, "dividing-mixed-numbers": {"uses_assessment_items": true, "id": "dividing-mixed-numbers", "display_name": "Dividing mixed numbers", "title": "Dividing mixed numbers", "all_assessment_items": ["{\"sha\": \"5b0386aedc82a85ede4f7a146c34e27c40ca6a13\", \"live\": true, \"id\": \"x14e9e980d5a9ff38\"}", "{\"sha\": \"7cdc19d6bf02e542455a63002b3bc263546bf747\", \"live\": true, \"id\": \"x4d8596196e517a66\"}", "{\"sha\": \"8fb622ed7f4ac38c3413755ecc437b09738ca0e0\", \"live\": true, \"id\": \"x3f5123174c885101\"}", "{\"sha\": \"5e6ea19dc5c943c9f3b412db67924dccb42179f3\", \"live\": true, \"id\": \"xd956c77bc03f3a1e\"}", "{\"sha\": \"49301754324bb01cd4749e0dab5788969aa8e7fd\", \"live\": true, \"id\": \"xe1a02ca2cb6db076\"}", "{\"sha\": \"0508dce8b3b997c732e15b16acba9dc2b125290a\", \"live\": true, \"id\": \"x256cffc60973c6aa\"}", "{\"sha\": \"5b4351b95ac2fb0ad0aaf2d50e0c9346cc1aff1a\", \"live\": true, \"id\": \"x1e6f91a82a749d83\"}", "{\"sha\": \"3c8fe0af880b78e073f828893d744b2360bdf722\", \"live\": true, \"id\": \"x4bc0bc1514eaac89\"}", "{\"sha\": \"f103359ee42e58a4f9b50ec59f597ba374f53be0\", \"live\": true, \"id\": \"x997dd2cd42ffd920\"}", "{\"sha\": \"fb59173b28a8a9b6b8aadf642ad8d3ca39557d66\", \"live\": true, \"id\": \"x079a5ce6c86370fb\"}", "{\"sha\": \"8c5ecaf0393805d6495e9cf153d4d6613ffe54d5\", \"live\": true, \"id\": \"x3aa1bd091df3459f\"}", "{\"sha\": \"fc3ccae3a05e59e3f35f74b1f75bd007b916d395\", \"live\": true, \"id\": \"x64b7c2640fce507d\"}", "{\"sha\": \"647d406539fa7b74ff79904d307e53c4bb1bf432\", \"live\": true, \"id\": \"x4247c97788dfb9af\"}", "{\"sha\": \"8913513f308d6b4d4541ed9e5d79bfd762de61d6\", \"live\": true, \"id\": \"x48a6943da02ff32c\"}", "{\"sha\": \"75938e92377b98735c715fb1084461709706a8ce\", \"live\": true, \"id\": \"xa85f47ed078b9142\"}", "{\"sha\": \"2ec50d071083fd78f2b8ffa431e62dca8d411486\", \"live\": true, \"id\": \"x090435812236df63\"}", "{\"sha\": \"079b38add270c8c69187e122e52fdfbf97e152f1\", \"live\": true, \"id\": \"xc1b5d043af0a35d9\"}", "{\"sha\": \"838b241b69c19b84583024c6ae2d65d1bbc8f178\", \"live\": true, \"id\": \"xd46652950d8594b1\"}", "{\"sha\": \"43120ebd728c550fcef88cc6de81440423f32449\", \"live\": true, \"id\": \"x1607f35f50dc16a9\"}", "{\"sha\": \"58f46e351c76565ae941058fb28872fd64627617\", \"live\": true, \"id\": \"x058eadd8e63a0892\"}", "{\"sha\": \"4978ef74766ecff74ddbb6362ef69cef4a2f6edb\", \"live\": true, \"id\": \"xddead71c5eae8545\"}", "{\"sha\": \"849614d3ac8f6f30dd00480358734cd6e4842d36\", \"live\": true, \"id\": \"x970c0b0aec9c6961\"}", "{\"sha\": \"d5cca3ac12961d538559854bd375a27cd91999e7\", \"live\": true, \"id\": \"xef3dde726cf6a4b7\"}", "{\"sha\": \"94259f736d3956511fcbcd8e651d521bb206730c\", \"live\": true, \"id\": \"x19858c034f8577d7\"}", "{\"sha\": \"d4e3547424ff66f6ee43bc1fc6a2095ed5cae129\", \"live\": true, \"id\": \"x2986de3dd2cc1aa8\"}", "{\"sha\": \"9004dc8ab20b36244c1c4785b79a1dfd619eeec9\", \"live\": true, \"id\": \"x3bdc8f4a895821a4\"}", "{\"sha\": \"e8d90332d28e35c291be7ac59473417d894b01ee\", \"live\": true, \"id\": \"x348a4a614cfa7298\"}", "{\"sha\": \"69b90a683d0e036d576d9cfb29a19885d83b82ba\", \"live\": true, \"id\": \"x37ef94abdbf4abd9\"}", "{\"sha\": \"f5c69d35196dbbbe53cb8e1a328dcf1cc8a44bdd\", \"live\": true, \"id\": \"x80728a0c04f2b4fa\"}", "{\"sha\": \"7bbe908b0f8792cfa449b57b1e2315f129427ec4\", \"live\": true, \"id\": \"x3fe557d0943d161e\"}"], "description": "Practice dividing mixed numbers. Numbers in these problems may be positive or negative.", "basepoints": 10.0, "path": "dividing-mixed-numbers/", "slug": "dividing-mixed-numbers", "kind": "Exercise", "name": "dividing-mixed-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["converting_mixed_numbers_and_improper_fractions", "negative-signs-in-numerators-and-denominators"], "exercise_id": "dividing-mixed-numbers"}, "advanced-heart-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/circulatory-system/circulatory-system-introduction/advanced-heart-quiz/", "id": "advanced-heart-quiz", "display_name": "Advanced circulatory system quiz", "title": "Advanced circulatory system quiz", "all_assessment_items": ["{\"sha\": \"0baa3142cc6580480e50c5b97263f2cc828fd996\", \"live\": true, \"id\": \"xc4a3fa700a937a99\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c8a6fd51cb69e6b971e361fb794f6cf3b48a57a\", \"live\": true, \"id\": \"xa5825da1087050fe\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7da538b1c7b475fe8cb169c8136103928972fa46\", \"live\": true, \"id\": \"x2f01143a0db271e5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"161c4cc4b53e3a37386d6770481d85cdb4ee8444\", \"live\": true, \"id\": \"x8bbeda482184a730\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b6c8446198809106426ee1762ee21f8555c878db\", \"live\": true, \"id\": \"xd2da13f1c9907bb6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3e0eb862cbba9084aaa2c68088916006fed8e495\", \"live\": true, \"id\": \"x9c60d4fba818dd28\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"141c8524b5455f4a0c17f623488925dbbba04532\", \"live\": true, \"id\": \"x81b66474c6ee4543\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"30657f8115f56e8b614ae8f786461ea5799718fb\", \"live\": true, \"id\": \"x2abd31af3947f0eb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"29d2067880cd9deb90d2f40ae7dadd94be161b2a\", \"live\": true, \"id\": \"xb3fd9649ca23a999\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"26b60303f71e459753ef55899481d5d68aaec0e0\", \"live\": true, \"id\": \"xa49497427119f708\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f87fb3faa6cb9d185d22f6f7fc412341b9a8e6d1\", \"live\": true, \"id\": \"x99c535aef839bd2b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c653ea64f8b66f7cc8fe8530b57af8963cfeb9f\", \"live\": true, \"id\": \"x98d55512ec83306f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Advanced heart quiz", "basepoints": 10.0, "slug": "advanced-heart-quiz", "kind": "Exercise", "name": "advanced-heart-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "advanced-heart-quiz"}, "graphing_points": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-coordinate-plane/graphing_points/", "id": "graphing_points", "display_name": "Graphing points", "title": "Graphing points", "description": "Plot a given point on the coordinate plane.", "basepoints": 13.0, "slug": "graphing_points", "kind": "Exercise", "name": "graphing_points", "seconds_per_fast_problem": 6.0, "prerequisites": [], "exercise_id": "graphing_points"}, "structure-of-the-central-nervous-system": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/structure-of-the-central-nervous-system/", "id": "structure-of-the-central-nervous-system", "display_name": "Structure of the central nervous system", "title": "Structure of the central nervous system", "all_assessment_items": ["{\"sha\": \"ce1791ec549d3bb8731c2acacb86e54ca9934af3\", \"live\": true, \"id\": \"x2c83c2d7ee3e7127\"}", "{\"sha\": \"69077f696092dbab75e3bfe8f20da3c742bb86be\", \"live\": true, \"id\": \"x4e3673eb9027e683\"}", "{\"sha\": \"d34f220553a0544f9878ee8f34e5d288f421c3a2\", \"live\": true, \"id\": \"x9a325c9bd5e8b824\"}", "{\"sha\": \"c41410fb3f82f8cfe7856b80c6e19ed01e1a2c6e\", \"live\": true, \"id\": \"xb4d4541e5195b476\"}", "{\"sha\": \"c37e44f2a21e05dc519a4d8085032aea5556a111\", \"live\": true, \"id\": \"xdb1d7c7ddbf33693\"}"], "description": "Structure of the Central Nervous System", "basepoints": 10.0, "slug": "structure-of-the-central-nervous-system", "kind": "Exercise", "name": "structure-of-the-central-nervous-system", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "structure-of-the-central-nervous-system"}, "a-clinical-approach-to-anemia--solve-the-case": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/a-clinical-approach-to-anemia-solve-the-case/", "id": "a-clinical-approach-to-anemia--solve-the-case", "display_name": "A clinical approach to anemia: solve the case", "title": "A clinical approach to anemia: solve the case", "all_assessment_items": ["{\"sha\": \"22bf6c4ba0e4f85e4b4279378dcd01ad64f39ae6\", \"live\": true, \"id\": \"xd0af7c616e1e9d6a\"}", "{\"sha\": \"308a1030699ff152dcb0f54e9506bdf89f7a0e9b\", \"live\": true, \"id\": \"xfbf416374df97af6\"}", "{\"sha\": \"42ee9d5a936c22a5efc14aadd1f04ee244ce8515\", \"live\": true, \"id\": \"x71406ad632b6240f\"}", "{\"sha\": \"258bc49f581777b4198ddf827d8813905958c37d\", \"live\": true, \"id\": \"xdd08b6dd21d053a9\"}", "{\"sha\": \"cec9f89acbfa6ca1c70120027ba686c60060ef11\", \"live\": true, \"id\": \"xbe9b9582548249c3\"}"], "description": "Questions related to the hematologic system", "basepoints": 10.0, "slug": "a-clinical-approach-to-anemia-solve-the-case", "kind": "Exercise", "name": "a-clinical-approach-to-anemia--solve-the-case", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "a-clinical-approach-to-anemia--solve-the-case"}, "applying-right-triangles": {"uses_assessment_items": true, "path": "khan/math/trigonometry/basic-trigonometry/trig-application-problems/applying-right-triangles/", "id": "applying-right-triangles", "display_name": "Applying right triangles", "title": "Applying right triangles", "all_assessment_items": ["{\"sha\": \"955effe28e9f964bd9055277e3c6a353fed09db8\", \"live\": true, \"id\": \"xf0804de6c65c53b6\", \"perseus_api_major_version\": null}", "{\"sha\": \"7e7ce5580c55ca16702eb41d24f99bfd4a35e692\", \"live\": true, \"id\": \"x1873d7a2df8f29db\", \"perseus_api_major_version\": null}", "{\"sha\": \"56464887b23b636314cf9d7168f9df5606091145\", \"live\": true, \"id\": \"x9e6f24c884b69b66\", \"perseus_api_major_version\": null}", "{\"sha\": \"2ee5cd653102dc85ffa827c76e68c367c6737821\", \"live\": true, \"id\": \"x0bbc8795966a42d2\", \"perseus_api_major_version\": null}", "{\"sha\": \"ca91d91dddd1464ce13e2f636220a7a7bc4bff55\", \"live\": true, \"id\": \"xe62c4dbeb1961199\", \"perseus_api_major_version\": null}", "{\"sha\": \"adfbd39e2a847f235ee9e760c6bef82730f9b625\", \"live\": true, \"id\": \"xe2075c4db5f7e75c\", \"perseus_api_major_version\": null}", "{\"sha\": \"6f9ef3a3533e337bf9f313d41bc72928fa6cbc41\", \"live\": true, \"id\": \"x5d270687c4ef3b35\", \"perseus_api_major_version\": null}", "{\"sha\": \"34ee66071018100b4dcd1ba4ab384dc46bd59bc6\", \"live\": true, \"id\": \"x97a0ded2cb9d1b41\", \"perseus_api_major_version\": null}", "{\"sha\": \"36aa86d95a62ab059161fcf56d85f241d1e2e595\", \"live\": true, \"id\": \"x55498d0607db8bca\", \"perseus_api_major_version\": null}", "{\"sha\": \"af9c4d3f935a1a40ba0b14812b565527ca391c7b\", \"live\": true, \"id\": \"x7570fc4c2d17cc42\", \"perseus_api_major_version\": null}", "{\"sha\": \"b0d25cecf2792f8e29ba17602f8df7a36a5a8cf7\", \"live\": true, \"id\": \"x2ee3f414004cf1a4\", \"perseus_api_major_version\": null}", "{\"sha\": \"d79f847727a7180b06a472e9975eab358cf10e17\", \"live\": true, \"id\": \"x454cd69bb40a1407\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab74bc4a2831b28226bcfdf0431866143b2de02b\", \"live\": true, \"id\": \"xe9b4115521c9814c\", \"perseus_api_major_version\": null}", "{\"sha\": \"253ac4f52395659b69cb680f15cb21d6ad4eb9bf\", \"live\": true, \"id\": \"x686b212c7da2d605\", \"perseus_api_major_version\": null}", "{\"sha\": \"d69c94714b83c19cc0f40b83e5211d504dc01442\", \"live\": true, \"id\": \"x590789b141bf1713\", \"perseus_api_major_version\": null}", "{\"sha\": \"c6ff1082fbceeeb1537a03b8040586300b1443f4\", \"live\": true, \"id\": \"x9360613f92c3f8a8\", \"perseus_api_major_version\": null}", "{\"sha\": \"35c34ffdb1549357a5840c27f04e21c7b298a7af\", \"live\": true, \"id\": \"xa6d21d17f292df2d\", \"perseus_api_major_version\": null}", "{\"sha\": \"c9745def9d62653e12e4eb59322b8de4415e1d96\", \"live\": true, \"id\": \"x697220871e7dfe1b\", \"perseus_api_major_version\": null}", "{\"sha\": \"224dec47f913de3c68ac8152b7a2eb1c6d96ef9b\", \"live\": true, \"id\": \"xef4e915522887429\", \"perseus_api_major_version\": null}", "{\"sha\": \"58b3ae169c61c47273a5b4904177ec7748c96cd3\", \"live\": true, \"id\": \"xb1cc89bf60b31609\", \"perseus_api_major_version\": null}", "{\"sha\": \"fdd8c4f3718d21316bb8fba79735c3c3db01647f\", \"live\": true, \"id\": \"x35a2be889a02300d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"69ff6d313e7a8354ebb7166711e3836b00b996af\", \"live\": true, \"id\": \"xef99e6c9d998a226\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c04ae1431188f0db9a66ea8899f05f84bf6f2705\", \"live\": true, \"id\": \"xf9a6e7ac6b443a4d\", \"perseus_api_major_version\": null}", "{\"sha\": \"71c78f847aec745aa01c4ac0b10c042e25db8c35\", \"live\": true, \"id\": \"xd024b8e0fdf4c84f\", \"perseus_api_major_version\": null}", "{\"sha\": \"0c0dd103a21c61542e57d236683a433109e3778f\", \"live\": true, \"id\": \"x03d627eeecf42ab5\", \"perseus_api_major_version\": null}", "{\"sha\": \"64d1e51465ad8c6f322f0668dea335ba3616a29b\", \"live\": true, \"id\": \"x531066e490b9691e\", \"perseus_api_major_version\": null}", "{\"sha\": \"c805ff7a36da3a3a62dbd10ef471d41eac68f5b0\", \"live\": true, \"id\": \"x02f000925a946bc0\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b172e1d98ace322e871978a24f7f501fd46f85e\", \"live\": true, \"id\": \"xd870cd08be127c23\", \"perseus_api_major_version\": null}", "{\"sha\": \"83e5eac2ced43324a1995ef5fe52cdbfd3b05f83\", \"live\": true, \"id\": \"x03721cbf1535344d\", \"perseus_api_major_version\": null}", "{\"sha\": \"79562412bb3450e075d60b20631fc69eab0d2a2d\", \"live\": true, \"id\": \"xe9e018e2faf6f5b3\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "applying-right-triangles", "kind": "Exercise", "name": "applying-right-triangles", "seconds_per_fast_problem": 4.0, "prerequisites": ["trigonometry_2", "pythagorean_theorem_1", "inverse_trig_functions"], "exercise_id": "applying-right-triangles"}, "discrimination-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/individuals-and-society/discrimination/discrimination-questions/", "id": "discrimination-questions", "display_name": "Discrimination questions", "title": "Discrimination questions", "all_assessment_items": ["{\"sha\": \"d6c4e155b0e5e6ce6315c41c815afd7492dc10f4\", \"live\": true, \"id\": \"x5918a0a7d67323a5\", \"perseus_api_major_version\": 3}", "{\"sha\": \"711dbc4a84ebcf1ebc19e9447372f97518865974\", \"live\": true, \"id\": \"x4c6091933cab5e05\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0c799e834b72c37c9c7843963e9b173256bdc427\", \"live\": true, \"id\": \"x822296e403426556\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b93261dbbf363d64a004bdb3371f67c19ec8485c\", \"live\": true, \"id\": \"x15e9e1097bf2cb56\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8458c89cfc0275d1c0890604f73d169b42eba740\", \"live\": true, \"id\": \"x46ce0e7f747f61b7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"68485db1c6e1b0ba8fab6131bd989fc63038f393\", \"live\": true, \"id\": \"x04ef0dd1453d8628\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d8cb683ae23153f53ce8f4c05b302297950ab211\", \"live\": true, \"id\": \"x69e87c1859f3b14d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"aff90732d0ca83b4c9e7c889699451cedb365515\", \"live\": true, \"id\": \"x8f23fd7d1d1ab1ee\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5d16999f72746c6cfd385a637d3287d306882593\", \"live\": true, \"id\": \"x4f126470ee0ce291\", \"perseus_api_major_version\": 3}", "{\"sha\": \"27be5eeb1da886aa983250c1278649f4525be517\", \"live\": true, \"id\": \"x25bcfced1f6f6359\", \"perseus_api_major_version\": 3}"], "description": "Discrimination questions", "basepoints": 10.0, "slug": "discrimination-questions", "kind": "Exercise", "name": "discrimination-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "discrimination-questions"}, "principle-s-of-bioenergetics": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/principle-s-of-bioenergetics/", "id": "principle-s-of-bioenergetics", "display_name": "Heat generation in brown fat", "title": "Heat generation in brown fat", "all_assessment_items": ["{\"sha\": \"b578711f46aaceb7e7af6bfd540fe70f764de1e9\", \"live\": true, \"id\": \"xb7f742235825271b\"}", "{\"sha\": \"6d30440c2bd0dd6150a2edcac287896b0f628edd\", \"live\": true, \"id\": \"xb3b91eea47a9c3cc\"}", "{\"sha\": \"d8572f146061ec08d34b8352e0257bd65544e57b\", \"live\": true, \"id\": \"xdce61a745531bc3c\"}", "{\"sha\": \"399a8b95ec7d98473cd71ce3e405f603792820a6\", \"live\": true, \"id\": \"xf87df2f3c21cfede\"}", "{\"sha\": \"bae2df81a229751357e309aa4ed9641a34d09c56\", \"live\": true, \"id\": \"x726a945e66babe47\"}"], "description": "", "basepoints": 10.0, "slug": "principle-s-of-bioenergetics", "kind": "Exercise", "name": "principle-s-of-bioenergetics", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "principle-s-of-bioenergetics"}, "molecular-targets-of-antiretroviral-therapies": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/molecular-targets-of-antiretroviral-therapies/", "id": "molecular-targets-of-antiretroviral-therapies", "display_name": "Molecular targets of antiretroviral therapies", "title": "Molecular targets of antiretroviral therapies", "all_assessment_items": ["{\"sha\": \"a8e227aea229e1cb7bc47696f20f6458e126e3c2\", \"live\": true, \"id\": \"x20a5db9322451ddc\"}", "{\"sha\": \"d5d01ad675d3c205a80c2144ab0fb93fe5e945bd\", \"live\": true, \"id\": \"xab4c0a1af5c4db4d\"}", "{\"sha\": \"05339f038e4f19b6e615715ac91ce3efee547014\", \"live\": true, \"id\": \"x65e0519861c1ea99\"}", "{\"sha\": \"5158877aeebea2828bd47c5c3079c9770c259e70\", \"live\": true, \"id\": \"xb3f816ce17af691e\"}", "{\"sha\": \"9e148b4594b7603782011539c32d83856ba8b2b1\", \"live\": true, \"id\": \"x33f436e46bc47b2b\"}"], "description": "Questions related to the viral life cycle", "basepoints": 10.0, "slug": "molecular-targets-of-antiretroviral-therapies", "kind": "Exercise", "name": "molecular-targets-of-antiretroviral-therapies", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "molecular-targets-of-antiretroviral-therapies"}, "recognizing_functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/recognizing-functions-2/recognizing_functions/", "id": "recognizing_functions", "display_name": "Recognizing functions from tables", "title": "Recognizing functions from tables", "all_assessment_items": ["{\"sha\": \"2be448dc875d683442b1195e7bd238f1ba7ca2e3\", \"live\": true, \"id\": \"xb11a7228\"}", "{\"sha\": \"f3cdf4dafed74d9e2bd7cd45b9a1f7debcdf643f\", \"live\": true, \"id\": \"x3fa19cd4a2bb3d90\"}", "{\"sha\": \"2a1d457727d2c4111f7171bbd258ca0f3a4e30de\", \"live\": true, \"id\": \"xef9dc68de93bec13\"}", "{\"sha\": \"b82848261259f6ebbe3d1da2f3a65c4d6e986060\", \"live\": true, \"id\": \"xdc9b00cebe595f67\"}", "{\"sha\": \"a2713045edb8de90e3de60ad0d57870291545426\", \"live\": true, \"id\": \"x1e50e840fab1acb8\"}", "{\"sha\": \"9ab875348b618213953958c3ee8391d35a5a678a\", \"live\": true, \"id\": \"x6fb49b60a110c0e5\"}", "{\"sha\": \"f9c7646f355de50335cebbeec58053d37ee1da78\", \"live\": true, \"id\": \"xcac8dc7abd8f25dc\"}", "{\"sha\": \"aea5be60f614e548e8f3dcf86b4a1e32e3879676\", \"live\": true, \"id\": \"x693a6e539fc46a5c\"}", "{\"sha\": \"5cadb5d09b4741664d1bda44546765c7dcb219f3\", \"live\": true, \"id\": \"x907b35ca70b61fbf\"}", "{\"sha\": \"e1dc34a1e9c53f89feddff183d8bff8619c97e59\", \"live\": true, \"id\": \"xa550e46f3241184e\"}", "{\"sha\": \"af0abbc4d7c6fd3632cec3579bfae3439ecdc12b\", \"live\": true, \"id\": \"x415df0aff1662e95\"}", "{\"sha\": \"34fd573d32cd71b20532807288e117a95da42931\", \"live\": true, \"id\": \"x090c7d21221bb208\"}", "{\"sha\": \"37914b2c105c42aec9b50722e8629eed1cbad8e0\", \"live\": true, \"id\": \"xbfa21f2db83d2641\"}", "{\"sha\": \"22b6b90bf0775c7e6f1c26ffbe2ea590d420b912\", \"live\": true, \"id\": \"xa48f841f61fef8bc\"}", "{\"sha\": \"070fdb5ae0933a3c6086c3fb770ee570aaaaa7e3\", \"live\": true, \"id\": \"x066f80ca3e931fbd\"}", "{\"sha\": \"a5b99f91d0b1154fe9f482e815ea56d82caf2182\", \"live\": true, \"id\": \"x720dbb07e5f7f533\"}", "{\"sha\": \"07bf56146343258ec97a13457d1ff88793b6e2dc\", \"live\": true, \"id\": \"xb95f3fe0188a5b3d\"}", "{\"sha\": \"357a6e5e985a792ca7ab1b9417adeb0063ff1b31\", \"live\": true, \"id\": \"x865365e4ab6243e6\"}", "{\"sha\": \"4d1c8fcedfbc4755bdcb708ca4877865b8b4bc6a\", \"live\": true, \"id\": \"xc55a44453f25bdb7\"}", "{\"sha\": \"b0e2b9b11efe4609bbe9eeee9a799a942857e748\", \"live\": true, \"id\": \"xba8265e55e3549cb\"}", "{\"sha\": \"6937f4b61e1de7d233832bae10e31b5944224749\", \"live\": true, \"id\": \"x709802dc95fa0e02\"}", "{\"sha\": \"ac9c31a8bb686d6eaf19437e2d511502fec9ffdf\", \"live\": true, \"id\": \"xdc62b11a0be040ee\"}", "{\"sha\": \"5c3bd793163cf0ef1bf2505f386c7fab41b07049\", \"live\": true, \"id\": \"x93a207ac567f796a\"}", "{\"sha\": \"a9e72b66cb73767f40db3c77ce72886a4fd7fdba\", \"live\": true, \"id\": \"x72562405725880a2\"}", "{\"sha\": \"ebcb86323a2931120ddc59b8597016bd69b83676\", \"live\": true, \"id\": \"x5533ab1c34f33a4d\"}", "{\"sha\": \"c2a6205549483d568458663764f1b6f16150b61c\", \"live\": true, \"id\": \"x34f5f6f29776779a\"}", "{\"sha\": \"4ad1e3aaa34034ed6bab1542938fc3ff3300ba6a\", \"live\": true, \"id\": \"x79977395a51c7646\"}", "{\"sha\": \"ee25b106e236ccc3b1ee2534c2fe933f6c5f3293\", \"live\": true, \"id\": \"x379bd7a0cf25542b\"}", "{\"sha\": \"d3bdfb87a0ad1d4f83b6a8d77eb8597b9288dc9c\", \"live\": true, \"id\": \"x7d2e74ddb9ac65d8\"}", "{\"sha\": \"a7f266693dd6f6482d357822e77ca2bea42173a5\", \"live\": true, \"id\": \"x81feac23387b6e4f\"}"], "description": "Determine if different relationships are functions or not.", "basepoints": 13.0, "slug": "recognizing_functions", "kind": "Exercise", "name": "recognizing_functions", "seconds_per_fast_problem": 6.0, "prerequisites": ["recog-func-2", "interpreting-domain"], "exercise_id": "recognizing_functions"}, "michelangelo-s-ceiling-of-the-sistine-chapel-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/michelangelo-s-ceiling-of-the-sistine-chapel-quiz/", "id": "michelangelo-s-ceiling-of-the-sistine-chapel-quiz", "display_name": "Michelangelo, Ceiling of the Sistine Chapel Quiz", "title": "Michelangelo, Ceiling of the Sistine Chapel Quiz", "all_assessment_items": ["{\"sha\": \"6ae8baf47bfdfd1bfa81dbdc0870f9b5727db997\", \"live\": true, \"id\": \"x587d4861514cc163\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7e44e1d53a16c0a36496f6dc85590473f421351a\", \"live\": true, \"id\": \"x93fcedc68a03d8bc\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8dba8bc13770ea940d60340cfefd7745408b6412\", \"live\": true, \"id\": \"x2fa3bc25e47851e9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"166deb3a471676bfc1095a5a3cb7ce5d7b3b7804\", \"live\": true, \"id\": \"xc6ab42b687289fba\", \"perseus_api_major_version\": 3}"], "description": "This quiz is for the video Michelangelo, ceiling of the Sistine Chapel.", "basepoints": 10.0, "slug": "michelangelo-s-ceiling-of-the-sistine-chapel-quiz", "kind": "Exercise", "name": "michelangelo-s-ceiling-of-the-sistine-chapel-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "michelangelo-s-ceiling-of-the-sistine-chapel-quiz"}, "leonardo-s": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/leonardo-s/", "id": "leonardo-s", "display_name": "Leonardo, Last Supper (quiz)", "title": "Leonardo, Last Supper (quiz)", "all_assessment_items": ["{\"sha\": \"bf8aa479f2fb4f11abe5aedba1e8a04925b2f03e\", \"live\": true, \"id\": \"xc9e35f13e542f1c3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c55174d57677be38b01b8f4a0e9f0ffd88c54df\", \"live\": true, \"id\": \"x7c386dc9fda4f6d3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"288948b5189fae8edbd25609378b7d55733cde35\", \"live\": true, \"id\": \"x40c1cf070aa22fa9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d70dce22acc16e3e68acfdcff760213f011c847e\", \"live\": true, \"id\": \"xef6e45a3ea4b5b85\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "leonardo-s", "kind": "Exercise", "name": "leonardo-s", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "leonardo-s"}, "multiplication_1.5": {"uses_assessment_items": false, "path": "khan/math/arithmetic/multiplication-division/multi_digit_multiplication/multiplication_15/", "id": "multiplication_1.5", "display_name": "Multiplication without carrying", "title": "Multiplication without carrying", "description": "Multiply 2- or 3-digit numbers by 1-digit numbers. No carrying.", "basepoints": 12.0, "slug": "multiplication_15", "kind": "Exercise", "name": "multiplication_1.5", "seconds_per_fast_problem": 5.0, "prerequisites": ["understanding-place-value-1", "multiplication_0.5", "solving-basic-multiplication-and-division-equations"], "exercise_id": "multiplication_1.5"}, "reflections-1": {"uses_assessment_items": true, "path": "khan/math/geometry/transformations/hs-geo-reflections/reflections-1/", "id": "reflections-1", "display_name": "Reflections 1", "title": "Reflections 1", "all_assessment_items": ["{\"sha\": \"4ac33d4dd3b22dc5e8cfb796c8eea14a48097ac9\", \"live\": true, \"id\": \"x2c839afed12e9782\"}", "{\"sha\": \"30086573ac166c187112bd28a7cf4d5654923129\", \"live\": true, \"id\": \"xec3f2edb89fcc96d\"}", "{\"sha\": \"b399e73b9c00022633ed76e967a54f356557fe09\", \"live\": true, \"id\": \"xb66cf6bf3334bab7\"}", "{\"sha\": \"53dccf5a7af957282b991a211bfed671e866cf11\", \"live\": true, \"id\": \"x694f60876443deda\"}", "{\"sha\": \"436395374b8341a1a99ac56a1534bb58f44c6338\", \"live\": true, \"id\": \"xa4b6d3421b7fc852\"}", "{\"sha\": \"0fb5ed6d7ee673c1abd2c3b034e14a7ae014b50b\", \"live\": true, \"id\": \"xe67f4d80de0db6c9\"}", "{\"sha\": \"978a7eecb42b54dbe533b8c8a881ddb57a394a31\", \"live\": true, \"id\": \"x17e2948e70b92efe\"}", "{\"sha\": \"8d2405268d9593b0c9d00eef3d444608dcc9498c\", \"live\": true, \"id\": \"xc0afdcfc613cc499\"}", "{\"sha\": \"0e0ff279ed0d445a0c6f70c28cc3e4431cdecad5\", \"live\": true, \"id\": \"x525d0f2caf5e0bdb\"}", "{\"sha\": \"b592d15f6129560ea58a01b95c7d0e03043185e3\", \"live\": true, \"id\": \"xbf12ce17124ccf4e\"}", "{\"sha\": \"1c0030a65eb5818461cdd8639844caf5c1015f9a\", \"live\": true, \"id\": \"x0471ae77f073e8ea\"}", "{\"sha\": \"5cc859d8ab581f561dcc8c74c26a448a98986785\", \"live\": true, \"id\": \"x8397f786efc60fe8\"}", "{\"sha\": \"f4b9f3647001478001eb05f374ac056b5e631cf5\", \"live\": true, \"id\": \"x665481cd18b91b78\"}", "{\"sha\": \"fdea35bdef87dae76ef1cd4670c26666738ea6ea\", \"live\": true, \"id\": \"x3c71e43e63e3a48c\"}", "{\"sha\": \"30ef030c6b46ca7c11e04e91717edd082698393f\", \"live\": true, \"id\": \"x2b618c47c4c20db9\"}", "{\"sha\": \"09b44195addf1a9af86a40c20597221b91d5d1f9\", \"live\": true, \"id\": \"x868ae19c884826d4\"}", "{\"sha\": \"467765d392499bae00a955f7162002296d2161a5\", \"live\": true, \"id\": \"xbf5ed99c5b7c1d8b\"}", "{\"sha\": \"90c181a24c274935f6addc29269e7c91da02a8e7\", \"live\": true, \"id\": \"x92417d95186194b6\"}", "{\"sha\": \"74d4aba47c3849c8d83bf3a49fd918b5edac65ff\", \"live\": true, \"id\": \"xf080d44734de3bde\"}", "{\"sha\": \"02ad224099995f74b47b3569fb25b67e17360d82\", \"live\": true, \"id\": \"x321844b5f3a2d676\"}"], "description": "Find and perform reflections over lines with simple slopes", "basepoints": 10.0, "slug": "reflections-1", "kind": "Exercise", "name": "reflections-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["defining-reflections"], "exercise_id": "reflections-1"}, "reflections-2": {"uses_assessment_items": true, "path": "khan/math/geometry/transformations/hs-geo-reflections/reflections-2/", "id": "reflections-2", "display_name": "Reflections 2", "title": "Reflections 2", "all_assessment_items": ["{\"sha\": \"5afb0e71637be61d3abd40982cd6557fc83536d6\", \"live\": true, \"id\": \"x401ac40b1790749e\"}", "{\"sha\": \"dd3f6156dfe6de8a96fc3e0a226b06bd376ea244\", \"live\": true, \"id\": \"xf499825e17420d90\"}", "{\"sha\": \"a75ecf1b5cdec23de1fb1796d1ac9420d92d775c\", \"live\": true, \"id\": \"x7bc9e2f0d59b2340\"}", "{\"sha\": \"3f2a935dd6e979c963ad23eede3a01e5cbbc6010\", \"live\": true, \"id\": \"x30d4d5d3da442355\"}", "{\"sha\": \"3aa1572f65c3890c00056b217f8e2468a1b279a9\", \"live\": true, \"id\": \"xf86cd993f77fd7c7\"}", "{\"sha\": \"27c92bbb03bbd8a908d7d5eadf91e98360012c71\", \"live\": true, \"id\": \"x18de80b0ad06783e\"}", "{\"sha\": \"6f85db5c5b1b7a36e6ef6316808e5416ae7f8890\", \"live\": true, \"id\": \"x1825637b6150f76b\"}", "{\"sha\": \"be1082142df3c92e2f9896319ed37dbf863dc099\", \"live\": true, \"id\": \"x72fdf006b86e0777\"}", "{\"sha\": \"e94fd9053954e37678366c985dbc072cc9f6c8bd\", \"live\": true, \"id\": \"xe5807642ea37f2c4\"}", "{\"sha\": \"2bc93082eacb16ff1f2eec53720cc189bad4bbc0\", \"live\": true, \"id\": \"x903af01cc9abb3c0\"}", "{\"sha\": \"fe45c902f294840c8e4f84f5dd8110221a95d6bf\", \"live\": true, \"id\": \"x8f9f211b31bd207f\"}", "{\"sha\": \"37a9d1bcd86620e3cf143829f3c6100a448b0d65\", \"live\": true, \"id\": \"x1a449ce81d041f69\"}", "{\"sha\": \"15b7906cb1ae27970c542c6e875f7c1366c50bf7\", \"live\": true, \"id\": \"x9bb9f7f9504ba121\"}", "{\"sha\": \"1ca5f9fdfcda145bed8cbd698d85dd65b010681f\", \"live\": true, \"id\": \"xcbd8ceb780032ce3\"}", "{\"sha\": \"6793b78b283142051601a9723fa90bdb75b4f428\", \"live\": true, \"id\": \"xc6830ee251abbc66\"}", "{\"sha\": \"10e0d649c8b61ecb1dc0b08e4c008052a1664b1a\", \"live\": true, \"id\": \"x5504fde8af6a8a95\"}", "{\"sha\": \"14ea98c82bf737759d5d645f341394e1a9a8f0a6\", \"live\": true, \"id\": \"xc910667b0e1db972\"}", "{\"sha\": \"2a3d822ed3fd0d3636a2f56e7478bceace8a2a08\", \"live\": true, \"id\": \"x8f057dba1328cd3d\"}", "{\"sha\": \"a7ea8d27667b0eee45473129a45fce94f2e8a1fb\", \"live\": true, \"id\": \"x09c5541fff19c951\"}", "{\"sha\": \"9689e06dcba819dd83f814e29529dd816bc89348\", \"live\": true, \"id\": \"xd1bf49fdefa7bf1f\"}"], "description": "Draw the result of reflections", "basepoints": 10.0, "slug": "reflections-2", "kind": "Exercise", "name": "reflections-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["reflections-1"], "exercise_id": "reflections-2"}, "recog-features-func-2": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/recog-features-func-2/", "id": "recog-features-func-2", "display_name": "Recognizing features of functions", "title": "Recognizing features of functions", "all_assessment_items": ["{\"sha\": \"1bb4dc9ebcb7b5d2cfd6941e4317b98d6b9f7555\", \"live\": true, \"id\": \"xb62bc698\"}", "{\"sha\": \"211dcf372c93f89868c8a5edaa32cc436d5abeb6\", \"live\": true, \"id\": \"x864c338d\"}", "{\"sha\": \"0b9789643d39efb89c22bd99ccfe21424698c608\", \"live\": true, \"id\": \"xe7eedd9e\"}", "{\"sha\": \"27c9011a7df2d388a0bfa96c8c4f30fcf0360874\", \"live\": true, \"id\": \"x9c93f15a\"}", "{\"sha\": \"b64581becc2641e2b99ccd305fff76c1477e694d\", \"live\": true, \"id\": \"x51e981b2\"}", "{\"sha\": \"d82abe45ad75e91107d88150d8af3c3014445c28\", \"live\": true, \"id\": \"x1edfd8de\"}", "{\"sha\": \"2dbe9816890038a877ff4d4d6e5d15da6c035b67\", \"live\": true, \"id\": \"x9be7bb42\"}", "{\"sha\": \"072372a5fa1a9e932ef9125271f8e070e79ef608\", \"live\": true, \"id\": \"x4379e99d\"}", "{\"sha\": \"dc165b1c7b62fcca9ab33d4da903c4ecb16945ad\", \"live\": true, \"id\": \"x04282896\"}", "{\"sha\": \"64dfd3415b74fcefbd32082f7a82b976881a5baa\", \"live\": true, \"id\": \"x8e46975e\"}", "{\"sha\": \"9bb88a249f1b7485f2c2959e9e6c033c460d5a25\", \"live\": true, \"id\": \"x3e078a6b\"}", "{\"sha\": \"651b4188c74711bbe79295e316308f20aeefd79b\", \"live\": true, \"id\": \"xed6e3158\"}", "{\"sha\": \"a92c9afeb4a052a46774026c60aecd10ae311e7f\", \"live\": true, \"id\": \"xbb448a4d\"}", "{\"sha\": \"047c5f3cb79b0088541c9b470ba872dddd4af2a0\", \"live\": true, \"id\": \"x11b9e077\"}", "{\"sha\": \"d81ad5745f1b6255e544106a469c19636033587d\", \"live\": true, \"id\": \"x009d73e3\"}", "{\"sha\": \"6ddea680f8817836c01896abb02dd0055e3095a1\", \"live\": true, \"id\": \"xfe9a02dc\"}", "{\"sha\": \"7e6f4988a138d4a62c10e99d83dd9ad693a93604\", \"live\": true, \"id\": \"x68a10213\"}", "{\"sha\": \"689f38704c51e62005118541aebb4a0f33c83bae\", \"live\": true, \"id\": \"xab2f88dd\"}", "{\"sha\": \"bcece02fe7c5db2bdb8e4a0c7faa6881453cc116\", \"live\": true, \"id\": \"xa152e1cb\"}", "{\"sha\": \"8e91b826e42b94c39000525d8de4c0ed0ac73f77\", \"live\": true, \"id\": \"xae7bd8bd\"}", "{\"sha\": \"736a412e73252c5810fef84b446c34ef4caef66f\", \"live\": true, \"id\": \"x0bb2bf76\"}", "{\"sha\": \"397f37e4c4fd336a2e6e5424f65a31b05de48798\", \"live\": true, \"id\": \"x363b0ce8\"}", "{\"sha\": \"e4b0ec1fa0c9e6e5c26a77327bc7b18b115d042d\", \"live\": true, \"id\": \"x92f33d63\"}", "{\"sha\": \"6cab10d32ef652fd098129240d110e22a4f4d135\", \"live\": true, \"id\": \"xbe22451e\"}", "{\"sha\": \"c74e860e974393575af637ac5062fb28d06a6166\", \"live\": true, \"id\": \"xb645448e\"}", "{\"sha\": \"0d297356de4674c04bf01926ffbf37a6ae0de5c9\", \"live\": true, \"id\": \"xc0478fb8\"}", "{\"sha\": \"aecb37f49ec38432aca1804cebe64356b7134b50\", \"live\": true, \"id\": \"x25c6c296\"}", "{\"sha\": \"4dca6be41b7215cf0e7a906aa1a3f10faca6ec47\", \"live\": true, \"id\": \"xdc40a4b7\"}", "{\"sha\": \"a5e22c223a6a5e5dde1e001c695b5a74f6ffecfd\", \"live\": true, \"id\": \"x49ac452a\"}", "{\"sha\": \"393e179b497ab0d2f7ec5be8c1cd5c744d25b45f\", \"live\": true, \"id\": \"xef983b06\"}", "{\"sha\": \"8729797e861be2c8a79828b904d20c9135afb3e1\", \"live\": true, \"id\": \"x97c23e42\"}", "{\"sha\": \"73887228dc54bbf8f7065e6f1d0adbbc66204ddf\", \"live\": true, \"id\": \"xb753b055\"}"], "description": "", "basepoints": 17.0, "slug": "recog-features-func-2", "kind": "Exercise", "name": "recog-features-func-2", "seconds_per_fast_problem": 10.0, "prerequisites": ["even_and_odd_functions"], "exercise_id": "recog-features-func-2"}, "measuring_angles": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/measuring_angles/", "id": "measuring_angles", "display_name": "Measuring angles", "title": "Measuring angles", "description": "Measure angles using a protractor.", "basepoints": 18.0, "slug": "measuring_angles", "kind": "Exercise", "name": "measuring_angles", "seconds_per_fast_problem": 12.0, "prerequisites": ["recognizing_rays_lines_and_line_segments"], "exercise_id": "measuring_angles"}, "nth-term-test": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/nth-term-test/", "id": "nth-term-test", "display_name": "nth term test", "title": "nth term test", "all_assessment_items": ["{\"sha\": \"235ab57ab996454be1c2153b00a7f59e4fe27a11\", \"live\": true, \"id\": \"xb401ee5f370b9ed3\"}", "{\"sha\": \"cb5fbf008a5ed9c4702047e871c19340b11e6d06\", \"live\": true, \"id\": \"xd67596211cecd84e\"}", "{\"sha\": \"5022d09ace068b2441f1d5984072c551bbec8c7a\", \"live\": true, \"id\": \"x2b438cb5b5437c02\"}", "{\"sha\": \"14edacd217df6f429a6281b8c4090ca9aeb551f2\", \"live\": true, \"id\": \"x3266749c2f036cb3\"}", "{\"sha\": \"f6a96c6670f1e25e59bb696904e5ef8769df4e60\", \"live\": true, \"id\": \"x9f0fcc9201074580\"}", "{\"sha\": \"126e35b7f7c9db6a36e6dc3fa75c72d96d0a9e54\", \"live\": true, \"id\": \"x2fbf0239e4624397\"}", "{\"sha\": \"a0c48d819a1e64af264fccd7b5f7a0e883eba0d6\", \"live\": true, \"id\": \"x45dbc8ce5b916bcb\"}", "{\"sha\": \"a7f09fb440494ebb346e0573fd861d9bce6f497e\", \"live\": true, \"id\": \"xfe8a1602235f90dc\"}", "{\"sha\": \"dfe076deee84db0f3f41ced45dc46429bdcd90c7\", \"live\": true, \"id\": \"x342c3dd8b39b9958\"}", "{\"sha\": \"37fe6499a8daec3ffa65b7f87f151049543676c5\", \"live\": true, \"id\": \"xbcaa14c6475a7ec9\"}", "{\"sha\": \"020c74817c1606844f6b72c993aa9ac1958946f8\", \"live\": true, \"id\": \"xb8b2cc2a775d5630\"}", "{\"sha\": \"4325c233312b5c9a187421d59b77c0b6aca78363\", \"live\": true, \"id\": \"xdfb14dc6f97e0a13\"}", "{\"sha\": \"e4d3cf43a4d92d19e6d919c3d53bde8de370afa8\", \"live\": true, \"id\": \"xaf6f2e1906c1b412\"}", "{\"sha\": \"5084c2a92c99389f2b78f98aca66c315e283c4df\", \"live\": true, \"id\": \"xc8579e262c9439aa\"}", "{\"sha\": \"a900d216781f28e0b97daddbec519f3d89d95c83\", \"live\": true, \"id\": \"xa0763f1fbce89637\"}", "{\"sha\": \"6a7997df1c4f26803eb6341db6c365f929ad8f2a\", \"live\": true, \"id\": \"xe66697cdf1d9b3d1\"}", "{\"sha\": \"9a50f1f7b2ca410d2d4d0e3156ab1fe3133fe0f1\", \"live\": true, \"id\": \"x65ba9859d567ae3f\"}", "{\"sha\": \"6a3b3b426e32a1787681f1e9e5559fce83f38058\", \"live\": true, \"id\": \"xd1469e975dfed9db\"}", "{\"sha\": \"f6b2f38067c46c3d70557e4df95476baed23ac53\", \"live\": true, \"id\": \"x466ecade01d175f6\"}", "{\"sha\": \"b9c5b56a50ed8b080e0525e58f5b40495e109f52\", \"live\": true, \"id\": \"x5c1649d8d68a18c3\"}", "{\"sha\": \"2ffd320ba739072196ed3527c9140fd646a7b488\", \"live\": true, \"id\": \"x5aaf342a01eb7f83\"}", "{\"sha\": \"eff277fee4f887318947ffc6d099574d611a39ad\", \"live\": true, \"id\": \"xf444a677900a4719\"}", "{\"sha\": \"d7fbd2684c72a9177b6b34827470b9b5fbab21df\", \"live\": true, \"id\": \"xbcb168ffc75c4044\"}", "{\"sha\": \"5db4c159dba7b209efc92bd2cd7625f8e5271171\", \"live\": true, \"id\": \"xb951313e501df8e9\"}", "{\"sha\": \"af9ef6b73fa9f8d260adb14de138b521a3faee10\", \"live\": true, \"id\": \"x770403c31673e2a2\"}", "{\"sha\": \"cd2584729c35118a26ccb90fc1d2da7a00ba4cce\", \"live\": true, \"id\": \"x56c23848711b1e9e\"}", "{\"sha\": \"e401c773ac91fd945b5202c82a0257bf27308678\", \"live\": true, \"id\": \"x4aaabb15e44b7a49\"}", "{\"sha\": \"955b5a5b427fb66e01c4214ea5f37c7b976ee129\", \"live\": true, \"id\": \"x53e796264eaa58a3\"}", "{\"sha\": \"f741ea1ec15c67396175e0a0c0463495ec11fdc5\", \"live\": true, \"id\": \"x0d2a804815b37a1c\"}", "{\"sha\": \"b06e415e9178f0ec69f2afdb343f7fe3b9c9c943\", \"live\": true, \"id\": \"x63578af07ce3bf41\"}"], "description": "", "basepoints": 10.0, "slug": "nth-term-test", "kind": "Exercise", "name": "nth-term-test", "seconds_per_fast_problem": 4.0, "prerequisites": ["finding-taylor-series"], "exercise_id": "nth-term-test"}, "veristic-male-portrait-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome/veristic-male-portrait-quiz/", "id": "veristic-male-portrait-quiz", "display_name": "Veristic Male Portrait (quiz)", "title": "Veristic Male Portrait (quiz)", "all_assessment_items": ["{\"sha\": \"1875722413f6056e67b33efaed477731c1167609\", \"live\": true, \"id\": \"x8da1c76a42260769\"}", "{\"sha\": \"bb0f07cfff7af59a7375ddbd2f23119badb55560\", \"live\": true, \"id\": \"x652459a1f334e102\"}", "{\"sha\": \"68476845290f79a554ddb259525be4bf0776d047\", \"live\": true, \"id\": \"x75333b937f75660f\"}", "{\"sha\": \"de028b6dbcb4de76baddd067d6aac9a100a4892a\", \"live\": true, \"id\": \"xc80a92638ada1429\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "veristic-male-portrait-quiz", "kind": "Exercise", "name": "veristic-male-portrait-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "veristic-male-portrait-quiz"}, "creating_box_and_whisker_plots": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/creating_box_and_whisker_plots/", "id": "creating_box_and_whisker_plots", "display_name": "Creating box plots 1", "title": "Creating box plots 1", "description": "Practice making box plots to summarize data sets.", "basepoints": 28.0, "slug": "creating_box_and_whisker_plots", "kind": "Exercise", "name": "creating_box_and_whisker_plots", "seconds_per_fast_problem": 54.0, "prerequisites": ["calculating-the-median"], "exercise_id": "creating_box_and_whisker_plots"}, "peplos-kore-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/peplos-kore-quiz/", "id": "peplos-kore-quiz", "display_name": "Peplos Kore (quiz)", "title": "Peplos Kore (quiz)", "all_assessment_items": ["{\"sha\": \"d7dd853dee6c9504512f45c38bff9cb71f8beb18\", \"live\": true, \"id\": \"xeb3297e3972165fd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca78816e1252085be78be8b0ebb0d8752103d86e\", \"live\": true, \"id\": \"x1a474fa2f73e4b08\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be54bd0fcf95bf06df8aef5beef43b7c6c59ff3a\", \"live\": true, \"id\": \"x7e6f319fcd1f30a6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"49044f76dddd2f6f1e7a890ebfeaec4ecfb77239\", \"live\": true, \"id\": \"xfaabf2ed2ed246ba\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a966afdb94c0a9e4ca1f31362a51580d8cd6278b\", \"live\": true, \"id\": \"xae454e96dc7390fa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "peplos-kore-quiz", "kind": "Exercise", "name": "peplos-kore-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "peplos-kore-quiz"}, "multiplying-fractions-and-whole-numbers-word-problems": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-and-whole-numbers-word-problems/", "id": "multiplying-fractions-and-whole-numbers-word-problems", "display_name": "Multiplying fractions and whole numbers word problems", "title": "Multiplying fractions and whole numbers word problems", "all_assessment_items": ["{\"sha\": \"7de03046d4f04c649d7fcb489b05da60c347d8eb\", \"live\": true, \"id\": \"x6fad4f23d082cd6c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"7b94a46dabfbce9cb442a224f432b267d08e71ae\", \"live\": true, \"id\": \"x106c0bb076335d4b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"497759a523919c0d7167edd1ec8e3addb972c460\", \"live\": true, \"id\": \"xdb8a30647558c5e0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a842bd6cbb187a641d3dc7786cb0982e84d62d38\", \"live\": true, \"id\": \"x0412c317c3eec472\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"70cca7881a20183754897e01a1c523d72a4e0b3b\", \"live\": true, \"id\": \"xff6afc85fb14879d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9002eb2bbcbc9f4f952398473b5a39f0385a53b9\", \"live\": true, \"id\": \"x50e06b655fdcaeda\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b49c398bf51221e32db54934827dfc87c976ff15\", \"live\": true, \"id\": \"x40e08d0c50172579\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"eb6f54fc2606376de167e80fa38c9b9533593ce5\", \"live\": true, \"id\": \"x7cd990ec7c583c01\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a5745c50ef8edbc9ee001ed3178e5dae20016ca3\", \"live\": true, \"id\": \"xd5d631b1eff76afd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ddbf12169d0e37be4b18d4a5b2d0cdd656d5416b\", \"live\": true, \"id\": \"xc528c8059ecdb9b6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fb87443873d4bb621b82f9e320d965638a9a66dd\", \"live\": true, \"id\": \"x553d2f4acc51eb16\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d192fa9ff86f2df5671de3043730f6b641e94837\", \"live\": true, \"id\": \"xe3b5deea2520cc71\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bec9f18457e8c9a6fd3955734724a208bb251e77\", \"live\": true, \"id\": \"xc50e9a3c9baf7e05\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bdf1683a4a36a453b915a614213ebdc506abcff9\", \"live\": true, \"id\": \"xd1c22ea37b94bdb1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"0b5edb1fbfbbed8a022645ffae67af84b1ea0447\", \"live\": true, \"id\": \"x836371403acebf02\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"86a83fcfce560c2bf80fd57129df3ae132639072\", \"live\": true, \"id\": \"xb2b6875603655ecb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"823146b9622a17fd55ed6bd7ad2bd9ae94ef3433\", \"live\": true, \"id\": \"x28a44eab15bdfa14\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"198c39a3f6a6fbe7512f7f4077bafc2b7d6f7399\", \"live\": true, \"id\": \"x052c5e36dfa2f978\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"7cf6caad81bfd626bca5275ae6fc247ba69f765e\", \"live\": true, \"id\": \"x83a891e663216098\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}"], "description": "Practice solving multiplication word problems that include whole numbers and fractions.", "basepoints": 21.0, "slug": "multiplying-fractions-and-whole-numbers-word-problems", "kind": "Exercise", "name": "multiplying-fractions-and-whole-numbers-word-problems", "seconds_per_fast_problem": 19.0, "prerequisites": ["multiplying_fractions_by_integers"], "exercise_id": "multiplying-fractions-and-whole-numbers-word-problems"}, "ottonian-art": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/ottonian1/ottonian-art/", "id": "ottonian-art", "display_name": "Ottonian art (quiz)", "title": "Ottonian art (quiz)", "all_assessment_items": ["{\"sha\": \"3da18da6f0a09b2d1701ebc448c5a75311d4f11c\", \"live\": true, \"id\": \"x92d113b2a4eeacd2\"}", "{\"sha\": \"1b59895e08467df65d142efaac585aa17c60da6c\", \"live\": true, \"id\": \"xb6f51d7900e5cac6\"}", "{\"sha\": \"bf887b1beb11dbb3f9123d9b7468d776ec76b0bf\", \"live\": true, \"id\": \"xe79bac7f28db0723\"}", "{\"sha\": \"ae96a46d794bf5c3e860a022931d91457a7465b8\", \"live\": true, \"id\": \"x5a99043bb0340492\"}", "{\"sha\": \"f17263ffc0c2703d6ee1e93b28a298891922fb3c\", \"live\": true, \"id\": \"x9d7cb4da0750d456\"}", "{\"sha\": \"05a492f0d48dd4ad83d3a354ff56b61346d1192e\", \"live\": true, \"id\": \"x2063b1c6b15b8e0e\"}", "{\"sha\": \"a5703361dea5b785f888accf1ac07c3b9fdbb91a\", \"live\": true, \"id\": \"x9420f77d39427dd8\"}", "{\"sha\": \"460b4a6a040abf67716819efd73a4f1f11666cae\", \"live\": true, \"id\": \"x6606c029b0cdc055\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "ottonian-art", "kind": "Exercise", "name": "ottonian-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ottonian-art"}, "patients-in-a-wheelchair-on-a-ramp": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/patients-in-a-wheelchair-on-a-ramp/", "id": "patients-in-a-wheelchair-on-a-ramp", "display_name": "Patients in a wheelchair", "title": "Patients in a wheelchair", "all_assessment_items": ["{\"sha\": \"cd31e9db7bf089bc540ffb3b57913061cb51c802\", \"live\": true, \"id\": \"xc31306ac656cb65c\"}", "{\"sha\": \"b0f3ecf469d61c0b96e4adf0afe90e676ae6f9e9\", \"live\": true, \"id\": \"x2708240bbe90ef96\"}", "{\"sha\": \"12df08431e75f950d339004dead9b1a402b62d8d\", \"live\": true, \"id\": \"xdd1fbd740772da50\"}", "{\"sha\": \"42f92fa5ffb0f3c7af3cffcd0f13e069338528bf\", \"live\": true, \"id\": \"x777712c5de886e03\"}", "{\"sha\": \"1be850cf1c2e228d1c3ed870bba61c6dccac151f\", \"live\": true, \"id\": \"xff920e5f18cf945d\"}"], "description": "This passage will test your knowledge on forces on an inclined plane", "basepoints": 10.0, "slug": "patients-in-a-wheelchair-on-a-ramp", "kind": "Exercise", "name": "patients-in-a-wheelchair-on-a-ramp", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "patients-in-a-wheelchair-on-a-ramp"}, "distributive_property": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-properties-numbers/distributive_property/", "id": "distributive_property", "display_name": "Distributive property", "title": "Distributive property", "all_assessment_items": ["{\"sha\": \"229f80edc310ca71beaab684c9fead0b851cc789\", \"live\": true, \"id\": \"xb35b57cd\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9506797015a221af9c8241e350e812c9eaedcbc3\", \"live\": true, \"id\": \"xa7d3f99d\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"65a5e17f3143911fd40d85d256974d039ab92430\", \"live\": true, \"id\": \"x7bb56a42\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f350358e775101b6155fe72c4f157fac9a579004\", \"live\": true, \"id\": \"x45fc33a3\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9762159a85c25b5368d8da6e3e5844cbe3cf6566\", \"live\": true, \"id\": \"x2271998d\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9aa7f50ae7127e713aeacb461ed692cb366f3311\", \"live\": true, \"id\": \"xd5d484d8\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"74230165c36df092e0796a38ee4f7c087044df25\", \"live\": true, \"id\": \"x898e836b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d0069f5c176c1e654515bfd450b52a9be54f1d47\", \"live\": true, \"id\": \"xdca5a82b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6b8b49895ab96a39ac098137ca22abb150239d1e\", \"live\": true, \"id\": \"xcbea6dec\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8641c48e793b811fd4498a73c48f4473d97bcce4\", \"live\": true, \"id\": \"xb53b16dd\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"13afb491832b9410b7e8a54ad13a8bc06534a344\", \"live\": true, \"id\": \"xc9eed20b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6de191b4d6b213c1ba7258da2a6294ee7b84ef56\", \"live\": true, \"id\": \"xd1ad75fa\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"0a56ce47a96118a54e6bd17efd4d2dee490b2c9e\", \"live\": true, \"id\": \"x96fe5d31\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e3ba3f71d1a9c0b830b83b95086f2f52650e4d36\", \"live\": true, \"id\": \"x69aed097\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2598657c86f9e0f463b68243d3d54b00b6bdc0ba\", \"live\": true, \"id\": \"x7d7cc644\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"47c4268a8d0aa7e4435ea57ddcc49b12f242f075\", \"live\": true, \"id\": \"x9cfc9e6a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"3692deb89f453ac441d9c15da7e612f63daa48cc\", \"live\": true, \"id\": \"x40bab88d\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"3cb53c296b22b5f6325870f4d3562d100d7525ad\", \"live\": true, \"id\": \"x3a3b546b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cacf06ae9f9f9e23c594e63536d5fd1a23c1aaea\", \"live\": true, \"id\": \"x12dd8d4a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"5e448a7be5ec98390466f57c10387d080dab8d4a\", \"live\": true, \"id\": \"x0c86767b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}"], "description": "Practice applying the distributive property on numerical expressions (no variables).", "basepoints": 23.0, "slug": "distributive_property", "kind": "Exercise", "name": "distributive_property", "seconds_per_fast_problem": 25.0, "prerequisites": ["order_of_operations_2"], "exercise_id": "distributive_property"}, "order-by-length": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-intro/order-by-length/", "id": "order-by-length", "display_name": "Order by length", "title": "Order by length", "all_assessment_items": ["{\"sha\": \"dc5400841b05802383c7c390b9fd76765f33a023\", \"live\": true, \"id\": \"xa339ee06a0452239\"}", "{\"sha\": \"97f38da45dae4f29722645433fa3c27fd6141687\", \"live\": true, \"id\": \"xe423c4447180fc09\"}", "{\"sha\": \"7e126442c3c8577be0e61b2ef8bcd3356fff9814\", \"live\": true, \"id\": \"x8c6b3bc4d15342e2\"}", "{\"sha\": \"eb1ce01a6788bea18f1cb6878ef94700c91d8170\", \"live\": true, \"id\": \"x1dfb982c93be34bf\"}", "{\"sha\": \"189495970fbb204412a82f2b96102163b263d39c\", \"live\": true, \"id\": \"xbbd95f9d2b04931b\"}", "{\"sha\": \"3d654027d878783dcfec0e4a462dbf6f740ec91c\", \"live\": true, \"id\": \"x2a141068c5e9d976\"}", "{\"sha\": \"ce1422487881703dc46ae8031e6433ad898f48d5\", \"live\": true, \"id\": \"x198faf1f13c61ce8\"}", "{\"sha\": \"82932788f8c62be73cc2c6673b871ee46a805e35\", \"live\": true, \"id\": \"xbf0f0d1b84a8af0e\"}", "{\"sha\": \"8d34a0e2c83088d00329edb8e34535c75c02d22f\", \"live\": true, \"id\": \"x3d2acc9e318cb435\"}", "{\"sha\": \"6a1d0b95cc466899fab10418dd7c1e958b5e0703\", \"live\": true, \"id\": \"x3b569906ba62958d\"}", "{\"sha\": \"70fe05ab4cabc09f17f876f8fc6c1bed1111d50b\", \"live\": true, \"id\": \"xbc3534657903266b\"}", "{\"sha\": \"2b067102ae647f93610a8239c8ec2b876dbf13bc\", \"live\": true, \"id\": \"x8b07710a33208eae\"}", "{\"sha\": \"e73a9952a6526b33ca9b16ee4497c032b997877b\", \"live\": true, \"id\": \"x99c080221ad74464\"}", "{\"sha\": \"5ddf1cb7e49bcab882a8592795159fe4bb58d8cd\", \"live\": true, \"id\": \"x36485f4848edf910\"}", "{\"sha\": \"42e5547e149a6c17dd7ab10f3fd01822151812e2\", \"live\": true, \"id\": \"x63c493c6c45ec2f2\"}", "{\"sha\": \"4bc700fb26370be35f05c16668fab44f5d9f777a\", \"live\": true, \"id\": \"x56aa3d2528ac5c74\"}", "{\"sha\": \"01e34942cd1901774b912ff8c284090c22843eeb\", \"live\": true, \"id\": \"xd454867033657031\"}", "{\"sha\": \"0d0ae87b3991f24df45963245a437460a7be992c\", \"live\": true, \"id\": \"x26edbafab58db03c\"}", "{\"sha\": \"d42b6465cb88691ab9b3a9b431a074c754c2c344\", \"live\": true, \"id\": \"x5b93e602740ecd3f\"}", "{\"sha\": \"39b3b74103d71ac3ad7419529af3bc38cbcf5474\", \"live\": true, \"id\": \"x7d1e7091b9c30fab\"}", "{\"sha\": \"6fdee831254bf4c3cf22090008573a60b05f0a1f\", \"live\": true, \"id\": \"xec29790c410aa35b\"}"], "description": "Order three objects by length. \u00a0Compare the lengths of two objects indirectly by using a third object.", "basepoints": 10.0, "slug": "order-by-length", "kind": "Exercise", "name": "order-by-length", "seconds_per_fast_problem": 4.0, "prerequisites": ["which-has-more-"], "exercise_id": "order-by-length"}, "quiz--the-anthropocene": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/acceleration/the-anthropocene/quiz-the-anthropocene/", "id": "quiz--the-anthropocene", "display_name": "Quiz: The Anthropocene", "title": "Quiz: The Anthropocene", "all_assessment_items": ["{\"sha\": \"747bcee4b6225c7d2cc169b1817a1ef4f9ccf703\", \"live\": true, \"id\": \"xdbc49360e74e4d43\"}", "{\"sha\": \"9e1364f4194fe8b7ec5b0bf16ed656c2b9f058d1\", \"live\": true, \"id\": \"x41534eccd6f5ef9c\"}", "{\"sha\": \"b3082bdace7eb3fe1f86a14994eb060058a0f64e\", \"live\": true, \"id\": \"xb5b4de5baca98397\"}", "{\"sha\": \"f714a3a7807c0a9ce3247f0af4fc9141539a7c75\", \"live\": true, \"id\": \"xdb66cc27cb2ab024\"}", "{\"sha\": \"0b9430cca9bf0442d94274452de8583b640fc417\", \"live\": true, \"id\": \"xf833e172b8234025\"}"], "description": "Quiz 9.1", "basepoints": 10.0, "slug": "quiz-the-anthropocene", "kind": "Exercise", "name": "quiz--the-anthropocene", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--the-anthropocene"}, "frankenthaler-s-the-bay-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/frankenthaler-s-the-bay-quiz/", "id": "frankenthaler-s-the-bay-quiz", "display_name": "Frankenthaler's The Bay (quiz)", "title": "Frankenthaler's The Bay (quiz)", "all_assessment_items": ["{\"sha\": \"975fed757a9f3d286db26467525a405a2887817b\", \"live\": true, \"id\": \"x5b5a16f891c4915f\"}", "{\"sha\": \"dfaf641f00e889ea22f5a164b9c0d057891ae5db\", \"live\": true, \"id\": \"x0e87eef3f3ace814\"}", "{\"sha\": \"c035c63078061a34e196852327d3c209b23ca0e4\", \"live\": true, \"id\": \"x2b8aab5c460e213f\"}", "{\"sha\": \"0f5ac44e2e214183b68ec63a3a98ce49687ca241\", \"live\": true, \"id\": \"x3dc0f14b414b3c3c\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "frankenthaler-s-the-bay-quiz", "kind": "Exercise", "name": "frankenthaler-s-the-bay-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "frankenthaler-s-the-bay-quiz"}, "renaissance-venice-in-the-1400s": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/renaissance-venice/venice-early-ren/renaissance-venice-in-the-1400s/", "id": "renaissance-venice-in-the-1400s", "display_name": "Renaissance Venice in the 1400s (quiz)", "title": "Renaissance Venice in the 1400s (quiz)", "all_assessment_items": ["{\"sha\": \"29413881ddcd180d4a24bc897082dc45454fccaa\", \"live\": true, \"id\": \"x3f569c13\"}", "{\"sha\": \"d7b6ff4a071dd8ca56de2a24482a8ed9218e677c\", \"live\": true, \"id\": \"x29255e5b1be3d536\"}", "{\"sha\": \"a63d01d92ba2f6ad56a441a6386dd0c2f2f3b8de\", \"live\": true, \"id\": \"x4c05f6878457ce00\"}", "{\"sha\": \"9ce6afca0bf168d4a13e99b78e023d195c33523f\", \"live\": true, \"id\": \"xf7d580a965368095\"}", "{\"sha\": \"6619db8d85ffd6bbdce7eaa6c912e1fe41af687e\", \"live\": true, \"id\": \"xaff7e56615cc2262\"}", "{\"sha\": \"de24e8bfe2ad232870bd2b84a365dcb7a635cf14\", \"live\": true, \"id\": \"xf1e5e75f48063906\"}", "{\"sha\": \"57561e8e7e5b2eaed3455a121372883bdf689719\", \"live\": true, \"id\": \"xf5b05e5b2bee1ed5\"}", "{\"sha\": \"feb09a1b09ccd984b7da0d3a6347d75135f82d7f\", \"live\": true, \"id\": \"x1c92a21f628c5dbe\"}", "{\"sha\": \"07c38a736b5b47b678893836931a925ee06206bb\", \"live\": true, \"id\": \"xfe601823166ac740\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "renaissance-venice-in-the-1400s", "kind": "Exercise", "name": "renaissance-venice-in-the-1400s", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "renaissance-venice-in-the-1400s"}, "chronic-bronchitis-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/chronic-bronchitis-quiz-2/", "id": "chronic-bronchitis-quiz-2", "display_name": "NCLEX-RN questions on chronic bronchitis 2", "title": "NCLEX-RN questions on chronic bronchitis 2", "all_assessment_items": ["{\"sha\": \"371e84c89bd139d50853708f72d6041aff224ca3\", \"live\": true, \"id\": \"xacd98f88fbf53689\"}", "{\"sha\": \"3c0e2fb222cd33cb2f663395ef856db0a5ab4190\", \"live\": true, \"id\": \"xfb39972fa7dfcf02\"}", "{\"sha\": \"3252be0d895784cf2f975d02254890bf638a655c\", \"live\": true, \"id\": \"x7ae615ab0d90b507\"}", "{\"sha\": \"344854208ff0b431900893bc26899965573e70cc\", \"live\": true, \"id\": \"xbee8884dead3e945\"}", "{\"sha\": \"e6f26a7088fe258091189fb4eb9c4a996135b85d\", \"live\": true, \"id\": \"xa6dd626c1a275fef\"}"], "description": "Questions related to chronic bronchitis", "basepoints": 10.0, "slug": "chronic-bronchitis-quiz-2", "kind": "Exercise", "name": "chronic-bronchitis-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "chronic-bronchitis-quiz-2"}, "geometric-series--1": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/geometric-series-1/", "id": "geometric-series--1", "display_name": "Calculating finite geometric series", "title": "Calculating finite geometric series", "all_assessment_items": ["{\"sha\": \"f69334a748e8189111f0cad90d5294f0717d1628\", \"live\": true, \"id\": \"x22de54864774b2dd\"}", "{\"sha\": \"9891d33ed1235e44819c2f9927ffe9d01280bfae\", \"live\": true, \"id\": \"xccffd803f86bbcea\"}", "{\"sha\": \"f978f4e83ec8a6c6365fc7c509f6905b1cdc5f93\", \"live\": true, \"id\": \"xc3e849aac63ed382\"}", "{\"sha\": \"b1996e1dd4190dbd4a5486e6cb2da7e3da314fd6\", \"live\": true, \"id\": \"x5ba1c530bf5d571f\"}", "{\"sha\": \"6feacd276841f78304f2b75e1a80ac0cabd4b0ba\", \"live\": true, \"id\": \"xf8d0d27bf5d1a6a8\"}", "{\"sha\": \"cc872556d5926580afc94dcd8957b5c99f7f1340\", \"live\": true, \"id\": \"x2da5ac192becd2bb\"}", "{\"sha\": \"46fa202b7d00afc9302ffb5b95f80dca2cac3b3e\", \"live\": true, \"id\": \"x3d8957e1e342d3b2\"}", "{\"sha\": \"5ad22308f57d2fb5eb5b3a72d49e59dd0282eea6\", \"live\": true, \"id\": \"xd21e99b781f38277\"}", "{\"sha\": \"4625aaddc4ae55497cabcc2ac4cb23a4d28892d9\", \"live\": true, \"id\": \"x1484796f9527f7ca\"}", "{\"sha\": \"822002d77b45ac7c8540c7f058b9422390b00eee\", \"live\": true, \"id\": \"x457dc069f1ca30f5\"}", "{\"sha\": \"d3516ceec24d44a823887187bdf700e52ee0808b\", \"live\": true, \"id\": \"x63aaefb034200cdf\"}", "{\"sha\": \"22a980dedcc97e9b755cc4f9430a610b46e2f89d\", \"live\": true, \"id\": \"xafa9f93a824bcf8a\"}", "{\"sha\": \"f123ea8591069374ff978e113951167f6e58d4b9\", \"live\": true, \"id\": \"x712900bdf7b68e6b\"}", "{\"sha\": \"da5636fd66c6230dfc59e08d053b5f8a2129bb80\", \"live\": true, \"id\": \"x73415c5f1dc55b16\"}", "{\"sha\": \"1db20a1a9db3e43dd9a33cf7e75ef5cc49470ac4\", \"live\": true, \"id\": \"xbd4b523e40c9b512\"}", "{\"sha\": \"95f8ee903a0c722c3b009d75e48553bfdcc24313\", \"live\": true, \"id\": \"x137930d04edc986f\"}", "{\"sha\": \"757a652d4c2cc3af0c1539ed834dbf1c09e239a0\", \"live\": true, \"id\": \"x34fa1fbac4142d0b\"}", "{\"sha\": \"18221e5d0692c7b9a6282aecd208986f8b7d98b7\", \"live\": true, \"id\": \"xcefaf56247bf615f\"}", "{\"sha\": \"f5849f845403ae889c4a4b026f19b9f7d1416064\", \"live\": true, \"id\": \"x8cfa8a5c2f4446e6\"}", "{\"sha\": \"6edfbb12ba282e87fa7b7d9fbfd56659075a0abc\", \"live\": true, \"id\": \"x4f4758af8940a118\"}", "{\"sha\": \"79ccd104416ca95823f79427a534d9c18346a775\", \"live\": true, \"id\": \"xccc3fc775b132f11\"}", "{\"sha\": \"860833fecf8519406228e88811011366cc099a6c\", \"live\": true, \"id\": \"xde9f7ab94d7594e3\"}", "{\"sha\": \"7783fc02a48d04d10719401b8fcfdc63df34cdc7\", \"live\": true, \"id\": \"x2bc846626fbe1f29\"}", "{\"sha\": \"9ee6d84d81983e42d1cb6292686c38c0861e0d26\", \"live\": true, \"id\": \"x4773429dae64839d\"}", "{\"sha\": \"878ba37fdbf85fce79c306fbc002c495bcb172ad\", \"live\": true, \"id\": \"xbeeee82938b192c1\"}", "{\"sha\": \"c63da274ebeb54c5b334768126364fd7a9168ba8\", \"live\": true, \"id\": \"x4679d37fe21dfe0e\"}", "{\"sha\": \"cd29054b92f336974296b3a68aa0129a9aaf913b\", \"live\": true, \"id\": \"xb2fe6e79ac4831d0\"}", "{\"sha\": \"bb96bd645f584577029e10337886b309e155fd5e\", \"live\": true, \"id\": \"x625427322d657194\"}", "{\"sha\": \"a8beecad439db9d3bbb88fbc8c4192bd6b9609d2\", \"live\": true, \"id\": \"x4c53c4fec0638087\"}", "{\"sha\": \"c2bec024bae4164753672cb988ba7c088c9abb4a\", \"live\": true, \"id\": \"x63d7a52d20cddb10\"}", "{\"sha\": \"d7b9ad90dfe1c14f4dd665857c845cc59b293d4a\", \"live\": true, \"id\": \"x24833c479d756c85\"}", "{\"sha\": \"ef1cd7d92ea2fdbe64e5e8abb574d7c3c04c9a54\", \"live\": true, \"id\": \"x97d1570bd932f47f\"}", "{\"sha\": \"8b7ca8d198b2191fe44a206fe2e5790d7c358672\", \"live\": true, \"id\": \"xfcc35a19c139c9d0\"}", "{\"sha\": \"2f551709aa158c56ae9465c8c401651d5fd74aac\", \"live\": true, \"id\": \"x959f297c2820a992\"}", "{\"sha\": \"c8f843b400064005b076be9dc2a2967e79a8a2bc\", \"live\": true, \"id\": \"x01ad6105031f761e\"}", "{\"sha\": \"aba4a5d1278dde2af1d1699d4f0f10dd40015ec3\", \"live\": true, \"id\": \"x3ae07e35ac0d4ff7\"}", "{\"sha\": \"df3336e24c16bd09631b99ab8437799f436556e9\", \"live\": true, \"id\": \"xbc559be60876940a\"}", "{\"sha\": \"7694a2dac7af260d8757709ff369c8a2c8020176\", \"live\": true, \"id\": \"xb91fdbcad2a8300a\"}", "{\"sha\": \"02a97a4bea188f3c6e22a5b50640753f969d1485\", \"live\": true, \"id\": \"xe4ebad3b48cb0fc6\"}", "{\"sha\": \"108d04bea13e4454db0981b903c6f0bef51650a6\", \"live\": true, \"id\": \"x41765c63110bfe7d\"}", "{\"sha\": \"7f667a80b5d0c0cdc61810467d1e8b34727d93c0\", \"live\": true, \"id\": \"x032c4bf27c169a0a\"}", "{\"sha\": \"c46aab89409e365690b3457fe3c1db36c7f8c4fc\", \"live\": true, \"id\": \"x01923243ab11fb7a\"}", "{\"sha\": \"f1f086feddd3a73e1eca64227ecd100ce354f73c\", \"live\": true, \"id\": \"x68317692685c8589\"}", "{\"sha\": \"52cdc782c1861580b4c05c0e78b0217c6d75cdbb\", \"live\": true, \"id\": \"xf435569936c2163f\"}"], "description": "", "basepoints": 10.0, "slug": "geometric-series-1", "kind": "Exercise", "name": "geometric-series--1", "seconds_per_fast_problem": 4.0, "prerequisites": ["factoring_difference_of_squares_3", "multiplying_polynomials", "geometric_sequences_2"], "exercise_id": "geometric-series--1"}, "chronic-bronchitis-quiz-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/chronic-bronchitis-quiz-1/", "id": "chronic-bronchitis-quiz-1", "display_name": "NCLEX-RN questions on chronic bronchitis 1", "title": "NCLEX-RN questions on chronic bronchitis 1", "all_assessment_items": ["{\"sha\": \"7d113d50210e0663b4d7173890790059511644fe\", \"live\": true, \"id\": \"xc0109ec8ee279664\"}", "{\"sha\": \"4d8b7b1a264ee4a13ce4a2aab5b06b4835f926d5\", \"live\": true, \"id\": \"x2e71288c8fb5e697\"}", "{\"sha\": \"9c7cbd69df563ee3ad3add2531fe4a2f05355857\", \"live\": true, \"id\": \"x8fdfe71a6727d9c2\"}", "{\"sha\": \"2080475c5cfe93028348979df0006cd08841b845\", \"live\": true, \"id\": \"x8c4252f65889d6a7\"}", "{\"sha\": \"97252a71d0adc859deac2529cea90f468e5c1300\", \"live\": true, \"id\": \"xdf42cd3c4e0b5cd7\"}", "{\"sha\": \"61a38f87d48e7b0b82f107d0948c1643ccdf1da5\", \"live\": true, \"id\": \"x4f8a0634fd006d93\"}", "{\"sha\": \"6f9c4150a47a5f1a9f9806b7463532f54c75e62f\", \"live\": true, \"id\": \"x00a5a90904c5a2cf\"}", "{\"sha\": \"5514c1c8ddee68d826b68c038d977c20e1631260\", \"live\": true, \"id\": \"xa9d2c0f0f1ecaca1\"}", "{\"sha\": \"820f088f0f17427da3855e97b9f5afe0756f95fc\", \"live\": true, \"id\": \"x6e5556a1e42d23f1\"}", "{\"sha\": \"7459b04ee0c65cedf047730669dc0d2826ca9034\", \"live\": true, \"id\": \"xd928b4c59e211d37\"}"], "description": "Questions related to chronic bronchitis", "basepoints": 10.0, "slug": "chronic-bronchitis-quiz-1", "kind": "Exercise", "name": "chronic-bronchitis-quiz-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "chronic-bronchitis-quiz-1"}, "properties-of-shapes": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-shapes/basic-geo-classifying-shapes/properties-of-shapes/", "id": "properties-of-shapes", "display_name": "Properties of shapes", "title": "Properties of shapes", "all_assessment_items": ["{\"sha\": \"ee76eedf7aef5580efc4f90709cdac0a7633961f\", \"live\": true, \"id\": \"xa3c85f20c14f6174\"}", "{\"sha\": \"82e05aab655ddafbfcd54cae4c2d1e420b846c85\", \"live\": true, \"id\": \"x46de23b252ecf615\"}", "{\"sha\": \"070da51d2c785082ae9cbdaa6892741e8a40a835\", \"live\": true, \"id\": \"xbdc2ca7bbf6aba94\"}", "{\"sha\": \"47e2b10f70a5daf3188a6e634894989e5e8e35db\", \"live\": true, \"id\": \"x386ffc931cc89e9d\"}", "{\"sha\": \"457eb3a6055379eb2e67a8b14a40f4dc06b3e645\", \"live\": true, \"id\": \"x71889ca04f9eeefa\"}", "{\"sha\": \"08666d605fe56611a88fc4896a6d33128c662b7d\", \"live\": true, \"id\": \"xe14e3696cc8bde44\"}", "{\"sha\": \"ff55f4960cfa36a509da4de17e4da1a820348b0e\", \"live\": true, \"id\": \"xaa9e4cf2b0cb37c3\"}", "{\"sha\": \"477ce6d3b15025e102f2262f3f5b84a93d6ddfdf\", \"live\": true, \"id\": \"x05d0633ccaee2045\"}", "{\"sha\": \"ca189bdc5fcfa6df03946a246c893e45851e528e\", \"live\": true, \"id\": \"xe88645aeb5215f20\"}", "{\"sha\": \"b7aeb4b49a3484ce6d2656358cea640952b1217e\", \"live\": true, \"id\": \"x5473810d3271e146\"}", "{\"sha\": \"3dd470baddcd945b32de53fb6ecf533a212cff17\", \"live\": true, \"id\": \"x1493eda6f0d81a17\"}", "{\"sha\": \"6d2f14a184e7f299ca23a647d2661ac9c96faba8\", \"live\": true, \"id\": \"x23e7958048b1920e\"}", "{\"sha\": \"dbe192f94901787c6d7ad8c4ddbc41e051d6e9a8\", \"live\": true, \"id\": \"xe0b92988232649f9\"}", "{\"sha\": \"5569dcb8091a8b1d3cef684cc66bae12df80d10b\", \"live\": true, \"id\": \"x9a50bf5bac884cdb\"}", "{\"sha\": \"be9e924120e96959157a849b064841fe6d8366bf\", \"live\": true, \"id\": \"x49519ca754b2c15a\"}", "{\"sha\": \"7fce90730bc572b5b7c84cb91fbc9d26abc5bb01\", \"live\": true, \"id\": \"x7449402290a0e769\"}", "{\"sha\": \"7d51352775c1a107964df52ca59eced723d4161f\", \"live\": true, \"id\": \"x5ef63c54371a4ecc\"}", "{\"sha\": \"564cceff0f6bd310296e43d789c0bcbf41223f8b\", \"live\": true, \"id\": \"x22d69c1e6db18908\"}", "{\"sha\": \"3b0e5022ad46279d51830044860b48a43297ad09\", \"live\": true, \"id\": \"x683fb32fde71c06b\"}", "{\"sha\": \"496b6c2e727c82d953e3e50c57d06c25e46c0c0a\", \"live\": true, \"id\": \"xd660ba7a99c3f8b6\"}", "{\"sha\": \"59df28e6220385df46df1db00e2ec35da1d35ca0\", \"live\": true, \"id\": \"x6bac355e7cd46cfb\"}", "{\"sha\": \"1a63bb325bb448a06664ee22aa93d37186cccb9c\", \"live\": true, \"id\": \"x333590844a6bf171\"}", "{\"sha\": \"e9fcfd28b7291571588f11d01edc314b511733c2\", \"live\": true, \"id\": \"x18e07b0168ae884c\"}"], "description": "Identify and compare shapes based on their attributes. \u00a0Shapes include triangle types, quadrilateral types, pentagons, and hexagons.", "basepoints": 10.0, "slug": "properties-of-shapes", "kind": "Exercise", "name": "properties-of-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": ["quadrilateral_types"], "exercise_id": "properties-of-shapes"}, "the-high-renaissance-in-florence-and-rome": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/high-ren-florence-rome/bramante/the-high-renaissance-in-florence-and-rome/", "id": "the-high-renaissance-in-florence-and-rome", "display_name": "The High Renaissance in Florence and Rome", "title": "The High Renaissance in Florence and Rome", "all_assessment_items": ["{\"sha\": \"28a738e5c712cb7ecbbaac274544b0b16f72a135\", \"live\": true, \"id\": \"x15ab09532c3dd337\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"28a7fd14645e2225fedf8199524d4849580ac418\", \"live\": true, \"id\": \"x39c87af0e857a59a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"df871313f2ff051bf05b81103acb990f084d74e2\", \"live\": true, \"id\": \"xa3c74d80b20162bd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"58f6f2be416a7733e23fe39c8c43b627458ab12c\", \"live\": true, \"id\": \"x640fbe78e7b62666\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"05a831ff1ed82d647210f91751f6239c91ec1112\", \"live\": true, \"id\": \"x7fd8d0edf3365c34\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"219fc2cbc0eec3b618214b14078a2e9bf47d907a\", \"live\": true, \"id\": \"xd6a7d1367649fb51\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1e1be88ac5f46b14c25de75f6726dd2610ff676f\", \"live\": true, \"id\": \"x7427f8865d655116\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dac26a1247ae170f73a66ac4d60305b6bc99d2cb\", \"live\": true, \"id\": \"x30259cf093036cdc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge of the High Renaissance in Florence and Rome.", "basepoints": 10.0, "slug": "the-high-renaissance-in-florence-and-rome", "kind": "Exercise", "name": "the-high-renaissance-in-florence-and-rome", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-high-renaissance-in-florence-and-rome"}, "the-alhambra-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/ap-art-islamic-world-medieval/the-alhambra-quiz/", "id": "the-alhambra-quiz", "display_name": "The Alhambra (quiz)", "title": "The Alhambra (quiz)", "all_assessment_items": ["{\"sha\": \"c4715bfc76f5833bc00187d926d29bce0c101c6b\", \"live\": true, \"id\": \"xe0b58d9e836d537c\"}", "{\"sha\": \"bb831233c68437bb4b27f139c5c8c4d2eaa7d578\", \"live\": true, \"id\": \"xebdda76c1a87aa5c\"}", "{\"sha\": \"58e97aac5639f9a089ac501d75651ec8a1c88497\", \"live\": true, \"id\": \"x5f8fcdda71baffee\"}", "{\"sha\": \"7f7d08a344811cdf85e00453d5db8eb46786e55f\", \"live\": true, \"id\": \"x023224f920c64be8\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "the-alhambra-quiz", "kind": "Exercise", "name": "the-alhambra-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-alhambra-quiz"}, "oppenheim-s-object-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/oppenheim-s-object-quiz/", "id": "oppenheim-s-object-quiz", "display_name": "Oppenheim's Object Quiz", "title": "Oppenheim's Object Quiz", "all_assessment_items": ["{\"sha\": \"47e9e24f47725bcbf8fbdcef5ae113887c396a41\", \"live\": true, \"id\": \"x3daee9e90875d77f\"}", "{\"sha\": \"d752546c51483472ead7fc1c8f947161da3748c1\", \"live\": true, \"id\": \"x1bf3c4b1062e3371\"}", "{\"sha\": \"19f3767f6ae6ed3e85210cf7ce76a520b315b7b0\", \"live\": true, \"id\": \"x872070df9a99e6f9\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "oppenheim-s-object-quiz", "kind": "Exercise", "name": "oppenheim-s-object-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "oppenheim-s-object-quiz"}, "san-vitale-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/san-vitale-quiz/", "id": "san-vitale-quiz", "display_name": "San Vitale (quiz)", "title": "San Vitale (quiz)", "all_assessment_items": ["{\"sha\": \"d0712746cea1da49b00d478871f40d6ac055e51a\", \"live\": true, \"id\": \"xd7d2808386c9d1ea\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e6f58c88f86c060e0ba0698620116da4d5277013\", \"live\": true, \"id\": \"x5a6e157cd2b4e76d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b1608a9147e7c5b920a251307b722a3b3636683\", \"live\": true, \"id\": \"x8a2bb4045ff34b1e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"687cdb50e952812f4eb39d7b3d8b8024515071ca\", \"live\": true, \"id\": \"x39e9508138d9f010\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9ad1c2344e1fbeedd9e15cb8c02c800810d5dc4a\", \"live\": true, \"id\": \"x986a72cc3147f07a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "san-vitale-quiz", "kind": "Exercise", "name": "san-vitale-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "san-vitale-quiz"}, "victory-stele-of-naram-sin-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/akkadian/victory-stele-of-naram-sin-quiz/", "id": "victory-stele-of-naram-sin-quiz", "display_name": "Victory Stele of Naram Sin (quiz)", "title": "Victory Stele of Naram Sin (quiz)", "all_assessment_items": ["{\"sha\": \"1c6add9664e770bb8c13acec0ec44d099b3553f1\", \"live\": true, \"id\": \"xc48015acdba5851c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f4535e5638caddb3234d7cb7c298ea760703b86\", \"live\": true, \"id\": \"x02ed4ae993d671da\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8890d401f4381f2b2e91273c649be2c223457a04\", \"live\": true, \"id\": \"xf60e2980ff696a40\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f641f1c8840b3268b1d3c6edd90d0b34db819733\", \"live\": true, \"id\": \"x6e32de756e3076f7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "victory-stele-of-naram-sin-quiz", "kind": "Exercise", "name": "victory-stele-of-naram-sin-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "victory-stele-of-naram-sin-quiz"}, "find-the-mistake-in-solving-one-step-equations": {"uses_assessment_items": true, "id": "find-the-mistake-in-solving-one-step-equations", "display_name": "Find the mistake in solving one-step equations", "title": "Find the mistake in solving one-step equations", "all_assessment_items": ["{\"sha\": \"968a2df19b052ca9fc8b8a94c3d12444d9993b33\", \"live\": true, \"id\": \"xde869315c4fb2f67\"}", "{\"sha\": \"6401f7a6b4317d45963a921cf0ee371705aaa783\", \"live\": true, \"id\": \"xcb3b86c789353919\"}", "{\"sha\": \"eb2f20d6ae8d71a6d4687f16816c8d47eaa4c2d0\", \"live\": true, \"id\": \"x341d39a4d02f7c46\"}", "{\"sha\": \"160c1ce1b62c36d49033b6ab64c06e6a4ef3e266\", \"live\": true, \"id\": \"xa573cc225dc27b6c\"}", "{\"sha\": \"d6eca9f44003898721c42fae7c084954afebeab3\", \"live\": true, \"id\": \"xc0383dc3ec6f1e52\"}", "{\"sha\": \"eba3877672131d085efc9eb2f318894587a74199\", \"live\": true, \"id\": \"x2841a49710d09c1a\"}", "{\"sha\": \"0aa6587a60251fe7c9779ef130784296dffe8bd5\", \"live\": true, \"id\": \"x433be9a9c9b01f74\"}", "{\"sha\": \"adf8a67258e62abfb920dda2a9acf0602abed082\", \"live\": true, \"id\": \"xddc31aa40dc68e52\"}", "{\"sha\": \"a72d094877602aeaff98b29986b144371452fcce\", \"live\": true, \"id\": \"xfaac2d76d2111439\"}", "{\"sha\": \"5eeafcf13dcbcc49e789ede2c8e882e8e4cd67f0\", \"live\": true, \"id\": \"xbdeac6f4901f3e38\"}", "{\"sha\": \"7703abfa7130b8cdbc79fd01aa0c7e4eb87ee61d\", \"live\": true, \"id\": \"x94a80904d7c7bc66\"}", "{\"sha\": \"05b24b7b787b66cae3bb64699982fa432677e4fd\", \"live\": true, \"id\": \"x400b6934f8d2eff4\"}", "{\"sha\": \"4a014e414201556fa30421fd3d5870bcea64c754\", \"live\": true, \"id\": \"x400dc987bec9a698\"}", "{\"sha\": \"1808ded4025702a7310a548d45da00ecb6afecde\", \"live\": true, \"id\": \"x5aca543342dad45e\"}", "{\"sha\": \"ad303fb6fba7bbd99d83d993e2eafa79d37cd227\", \"live\": true, \"id\": \"x1431efc675e03194\"}", "{\"sha\": \"e18c9a356a73f5d400514c380adbc0a4adee6f82\", \"live\": true, \"id\": \"x4b8e4c01a6c2bffa\"}", "{\"sha\": \"383d1dc024f1d1bc593869c2ca54f81bb36376d6\", \"live\": true, \"id\": \"x4195edaad2b98498\"}", "{\"sha\": \"616ad04d34628a4ebe7669cbdda97cb91630dac7\", \"live\": true, \"id\": \"x9af2102789d31c46\"}", "{\"sha\": \"d46e01c21a948db617010698194e42726a74b28a\", \"live\": true, \"id\": \"xbb0ad8b17404900b\"}", "{\"sha\": \"4655262622d185102669e5608cae2f092d0b9c22\", \"live\": true, \"id\": \"xaa9f5c1a39c78548\"}"], "description": "Practice spotting the mistake in someone else's work as they attempt to solve one-step equations.", "basepoints": 10.0, "path": "find-the-mistake-in-solving-one-step-equations/", "slug": "find-the-mistake-in-solving-one-step-equations", "kind": "Exercise", "name": "find-the-mistake-in-solving-one-step-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["one_step_equations", "linear_equations_1"], "exercise_id": "find-the-mistake-in-solving-one-step-equations"}, "transformation-matrices-1": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/transformation-matrix/transformation-matrices-1/", "id": "transformation-matrices-1", "display_name": "Geometric transformations with matrix multiplication", "title": "Geometric transformations with matrix multiplication", "all_assessment_items": ["{\"sha\": \"c3801046ea9561b825a178c4d590cc563ac34102\", \"live\": true, \"id\": \"x95de064ade5c2ee3\"}", "{\"sha\": \"97a1b280affee1b7c31c5c3ce2a2b961110ecb3b\", \"live\": true, \"id\": \"x4cd4eab5084db38a\"}", "{\"sha\": \"81fcf977e5d6e30a125133a6d6ccf01e985e54fd\", \"live\": true, \"id\": \"x47f45d256b485020\"}", "{\"sha\": \"1e56b19df7f55501084b2002b7a5ff0d123218f7\", \"live\": true, \"id\": \"x8760f38c93fe3482\"}", "{\"sha\": \"7797ce40b32b35a520ea1f97db095f89ffd91d8f\", \"live\": true, \"id\": \"x98ad9a521dd7a01d\"}", "{\"sha\": \"325b4e7c7b734aa454a272401a1a291045a6f66c\", \"live\": true, \"id\": \"xb16e6812e17a4ab8\"}", "{\"sha\": \"094cbc066993e4d7ea2942daef1d4cfcf107793d\", \"live\": true, \"id\": \"xe1b163d65264201d\"}", "{\"sha\": \"a6aefc79640763aa9f3d12f3ba6a7b5115a55c38\", \"live\": true, \"id\": \"x9859b6d46ee0fc67\"}", "{\"sha\": \"25e0fd0cc7313b1f99c0a89dd3c0b6f59c7b324d\", \"live\": true, \"id\": \"xf8670d1d43c78df3\"}", "{\"sha\": \"3dd61d9f3f5e98b4fb981447935d32b18f51acc6\", \"live\": true, \"id\": \"x9d168c0c1e43897c\"}", "{\"sha\": \"58488c6e22c4921bef72d74f172a327a972a781a\", \"live\": true, \"id\": \"x30b2a5f02e07e747\"}", "{\"sha\": \"2abf84df8e320a66ac0570e257a2b528632f6d49\", \"live\": true, \"id\": \"x5452da2f5a62cbb8\"}", "{\"sha\": \"8db445ebca1b5b401e6fd3527abcc92731f1bfa7\", \"live\": true, \"id\": \"x2cbbec2497f01f3a\"}", "{\"sha\": \"7a2e20117a2e93a98f21e3ffa838cd506e5829ea\", \"live\": true, \"id\": \"x01db561c4980160b\"}", "{\"sha\": \"93714cc300fb318818f6cf130ca0c102983375d8\", \"live\": true, \"id\": \"x877b34ef3ddf45d2\"}", "{\"sha\": \"e0d50b50cee967bc8eb94d81870303254277d4a7\", \"live\": true, \"id\": \"xba846024b8917449\"}", "{\"sha\": \"1f06f0f3ad3ad111f1c45e4c821f4cf7a09b39dc\", \"live\": true, \"id\": \"x1b8a330eb0968032\"}", "{\"sha\": \"141252841f58b09abd58bf02048100fb68050e6c\", \"live\": true, \"id\": \"xf76141f3b33dd6fb\"}", "{\"sha\": \"e2e1d8bad75e20b348ed462bbe669aedc9ed3a41\", \"live\": true, \"id\": \"xc3643526f348d788\"}", "{\"sha\": \"9187418c8759583e240076702db674c34d9c0a6f\", \"live\": true, \"id\": \"x1c2617ddbde7702e\"}", "{\"sha\": \"d4dd8e94e73f86ae32401841a868b649e0050f0a\", \"live\": true, \"id\": \"x822b3e7406e6b268\"}", "{\"sha\": \"92308a5b453ed574514a9d61d91f81dfc2fe7466\", \"live\": true, \"id\": \"x8494bcb8f0234024\"}", "{\"sha\": \"c62d013c3e6aad51b9cf74d4a3a8c32b34901f20\", \"live\": true, \"id\": \"xf819c6a74f185c05\"}", "{\"sha\": \"8b9b8c708d3eafb8f24d4c50b33f1025f48c196b\", \"live\": true, \"id\": \"xe14c1b45cf34aa89\"}", "{\"sha\": \"ce654b43d5f68ce334136ac5642ff9d97a5b1a86\", \"live\": true, \"id\": \"xa7dd5723c38008b2\"}", "{\"sha\": \"12f9ae7972c080c6e9242a35bd2f01b707f3fa35\", \"live\": true, \"id\": \"x52ee52d9e5faba19\"}", "{\"sha\": \"0de4efac02528f3e158ca539b08a389a07890060\", \"live\": true, \"id\": \"xcee330f9c2361546\"}", "{\"sha\": \"c0675997eb8f23867263b5adb7e3b22febf4fabd\", \"live\": true, \"id\": \"xc6c4460a630ffe21\"}", "{\"sha\": \"ee1bde34bdf429473b96a4bb5a38bad3c3d85aa3\", \"live\": true, \"id\": \"x177b3cc65f3b0bb2\"}", "{\"sha\": \"617539dc6931c5d1b4a407de64403e72366a88ff\", \"live\": true, \"id\": \"xa2425e0189d4bd44\"}"], "description": "", "basepoints": 10.0, "slug": "transformation-matrices-1", "kind": "Exercise", "name": "transformation-matrices-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_a_matrix_by_a_matrix", "translations", "reflections-2", "rotations-2"], "exercise_id": "transformation-matrices-1"}, "test-your-knowledge--harnessing-science-and-education-for-biodiversity-conservation-": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/biodiversity-protection/science-education/test-your-knowledge-harnessing-science-and-education-for-biodiversity-conservation-/", "id": "test-your-knowledge--harnessing-science-and-education-for-biodiversity-conservation-", "display_name": "Test your knowledge: harnessing science and education for biodiversity conservation", "title": "Test your knowledge: harnessing science and education for biodiversity conservation", "all_assessment_items": ["{\"sha\": \"b9573ea93e325c2bfb943f159662299cb37ecf5d\", \"live\": true, \"id\": \"x70209ed7b11a9ada\"}", "{\"sha\": \"98173262d28fe72763081171931c63a1071d47db\", \"live\": true, \"id\": \"x00d80d1ff2f1ba42\"}", "{\"sha\": \"ca7a79b99ce241b6eeecd1db896a3c48b93ec54b\", \"live\": true, \"id\": \"x4ccc7953d0d29982\"}", "{\"sha\": \"106e5d68d5f9be69cdeee5e89fd57b984fce8c83\", \"live\": true, \"id\": \"x2efd9224100efb37\"}", "{\"sha\": \"091001e1be5aae42a843ebd2409972baffdac465\", \"live\": true, \"id\": \"xf2d86babbf1219a5\"}", "{\"sha\": \"df1b304e81ea56f7f4485e26076a515ab31dc095\", \"live\": true, \"id\": \"x0e51002accfbd420\"}", "{\"sha\": \"13f36a4215aa9e0fcb43a37960bd467a774882ba\", \"live\": true, \"id\": \"x5c184d6fe1f73488\"}", "{\"sha\": \"87d3f4de70566cf661bc3755a2b0c3603ee3ef7b\", \"live\": true, \"id\": \"xef3ab46a96e05649\"}", "{\"sha\": \"7c201f92b6b401f7f8dd3db57bbfbf29d8909e96\", \"live\": true, \"id\": \"xce864af54c8b1157\"}", "{\"sha\": \"f61c06ededcfeb72bfb5d58c93886a589bdd57b1\", \"live\": true, \"id\": \"x53489d18c6bbbbdc\"}", "{\"sha\": \"dc256163478da5f54e9d7b92fa21bfb69b006a89\", \"live\": true, \"id\": \"x6c8800d10795fa8f\"}"], "description": "Test your knowledge: harnessing science and education for biodiversity conservation", "basepoints": 10.0, "slug": "test-your-knowledge-harnessing-science-and-education-for-biodiversity-conservation-", "kind": "Exercise", "name": "test-your-knowledge--harnessing-science-and-education-for-biodiversity-conservation-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge--harnessing-science-and-education-for-biodiversity-conservation-"}, "powers_of_complex_numbers_1": {"uses_assessment_items": false, "path": "khan/math/precalculus/imaginary_complex_precalc/exponential-form-complex-numbers/powers_of_complex_numbers_1/", "id": "powers_of_complex_numbers_1", "display_name": "Powers of complex numbers", "title": "Powers of complex numbers", "description": "Use Euler's formula to determine the value of a complex number raised to an nth power.", "basepoints": 24.0, "slug": "powers_of_complex_numbers_1", "kind": "Exercise", "name": "powers_of_complex_numbers_1", "seconds_per_fast_problem": 28.0, "prerequisites": ["multiplying_and_dividing_complex_number_polar_forms"], "exercise_id": "powers_of_complex_numbers_1"}, "integration-by-u-substitution": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/integration-techniques/u_substitution/integration-by-u-substitution/", "id": "integration-by-u-substitution", "display_name": "Integration by u-substitution", "title": "Integration by u-substitution", "all_assessment_items": ["{\"sha\": \"5d4e29351787e01d45b1285de907ee5e96d9e015\", \"live\": true, \"id\": \"x9e8e772495ed3640\", \"perseus_api_major_version\": null}", "{\"sha\": \"b1508ec7bc2f83fd8fb52ff42fc60c3b8bf34b84\", \"live\": true, \"id\": \"x2ed8a4bfd10f30c4\", \"perseus_api_major_version\": null}", "{\"sha\": \"774d9529af3296b93ef10b0fac6abcd0f0e23284\", \"live\": true, \"id\": \"x0b8ef8875c30e9fa\", \"perseus_api_major_version\": null}", "{\"sha\": \"e296f1ba95b96c13f78ab8dcc671d8bb7ba4234c\", \"live\": true, \"id\": \"xc342eddb89ecd07f\", \"perseus_api_major_version\": null}", "{\"sha\": \"fbcbe4fc1566bef1a3de1ffaeeee4a1c8fe16c4e\", \"live\": true, \"id\": \"xb9cc246cda2da0de\", \"perseus_api_major_version\": null}", "{\"sha\": \"a749361dcbba1cd4068377f73e4458b15b927b1d\", \"live\": true, \"id\": \"x86fdb66cd15403e0\", \"perseus_api_major_version\": null}", "{\"sha\": \"a5757f1c0ef7f0cefe67e418ef98dd25bad491db\", \"live\": true, \"id\": \"x9d4ecda8f83497a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"283a2f7c8976c747d4aa41fb5b8ba19a5813c7da\", \"live\": true, \"id\": \"xe7ae4042e2cac849\", \"perseus_api_major_version\": null}", "{\"sha\": \"a6f5331ca788720318a854a366e0372d3e5fda3d\", \"live\": true, \"id\": \"x35584ff32fd799b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"a4a5cea6cbdc0802f5089d47e52f90172a8cf6eb\", \"live\": true, \"id\": \"xa7e766285485e3a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"03068906a35225c34094e80dbf8d687a45ed155d\", \"live\": true, \"id\": \"x9f7b3d0f66e5c3c5\", \"perseus_api_major_version\": null}", "{\"sha\": \"8fffe165e4af9f8a6bc5ecc626a779d958f044e8\", \"live\": true, \"id\": \"xc30d87026dd38a86\", \"perseus_api_major_version\": null}", "{\"sha\": \"7dce8def91dd100e9cce91675f25cd3d2f419ed5\", \"live\": true, \"id\": \"x69165d3343767259\", \"perseus_api_major_version\": 3}", "{\"sha\": \"23995c88554cb2f176499d4f477b6285fcb52d4b\", \"live\": true, \"id\": \"x67a5cc42a395d24e\", \"perseus_api_major_version\": null}", "{\"sha\": \"e683c68747f688fb27f8c7829aa78774b5ebd6e9\", \"live\": true, \"id\": \"x13a710f9753faae6\", \"perseus_api_major_version\": null}", "{\"sha\": \"e3f171b6f0e0e8c8bd2ea33ccd7e87be42e67642\", \"live\": true, \"id\": \"x5f025a4b0e5111f3\", \"perseus_api_major_version\": null}", "{\"sha\": \"6e25e9f5770419967c89deafceb62e8c71656faa\", \"live\": true, \"id\": \"xe6f18e4e38dfba21\", \"perseus_api_major_version\": null}", "{\"sha\": \"624c28e2254d9f6926ccfcfdafe58809393ff97e\", \"live\": true, \"id\": \"x07893567b9730a7e\", \"perseus_api_major_version\": null}", "{\"sha\": \"9f4a720b934cce30beb219d4c12fb95c41ef5fde\", \"live\": true, \"id\": \"xb2baa968e5334a4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"2c455f0453d54c9055db3b7f3e332f0dfdcf312e\", \"live\": true, \"id\": \"xc1fd503d4b865475\", \"perseus_api_major_version\": null}", "{\"sha\": \"23c62be90a443e412a711bea3a52b5380590037e\", \"live\": true, \"id\": \"x1a9cbe2434dde7f5\", \"perseus_api_major_version\": null}", "{\"sha\": \"0858489c2962ca6a654d89f79bc197d3dfa85dc0\", \"live\": true, \"id\": \"xcf4ba8b1cbef00bb\", \"perseus_api_major_version\": null}", "{\"sha\": \"2aa896d51fb01d2895bfb2aea2eeae35eab95099\", \"live\": true, \"id\": \"xbbb16f072785bc19\", \"perseus_api_major_version\": null}", "{\"sha\": \"730400679a20d694e621b81fd597971e4c451ce4\", \"live\": true, \"id\": \"xd019451b744f5a36\", \"perseus_api_major_version\": null}", "{\"sha\": \"14b651165f9509b054b7d297dac079ea2511cbf7\", \"live\": true, \"id\": \"x67e2cd5aa35a086e\", \"perseus_api_major_version\": null}", "{\"sha\": \"631a9bcc31f5c578037668d26824b0235769c635\", \"live\": true, \"id\": \"x45ddc5122754a52c\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f0f1b2014f77dae929a76cc05c2fe048ebcbc65\", \"live\": true, \"id\": \"x75ef99cc24cdce05\", \"perseus_api_major_version\": null}", "{\"sha\": \"fbdc2371a7ffcfdc0a2d4f1ab2b7203683590d3d\", \"live\": true, \"id\": \"x1da17cd9aa2982a5\", \"perseus_api_major_version\": null}", "{\"sha\": \"6e04cc81700da274f7cde4ed3592566715a65851\", \"live\": true, \"id\": \"x583905da3c83c094\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "integration-by-u-substitution", "kind": "Exercise", "name": "integration-by-u-substitution", "seconds_per_fast_problem": 4.0, "prerequisites": ["integration-by-parts"], "exercise_id": "integration-by-u-substitution"}, "modular-addition": {"uses_assessment_items": true, "path": "khan/computing/computer-science/cryptography/modarithmetic/modular-addition/", "id": "modular-addition", "display_name": "Modular addition", "title": "Modular addition", "all_assessment_items": ["{\"sha\": \"95db080b5789e67f69878f6f2f08a06afd47126e\", \"live\": true, \"id\": \"xd00715a1\"}", "{\"sha\": \"89f06c6c8f245eb13ba5a5b324651a6f64b9b667\", \"live\": true, \"id\": \"x4b14cdb9\"}", "{\"sha\": \"ca09a900cfa127320239d33d5fcbf20e45306107\", \"live\": true, \"id\": \"x845d8a07\"}", "{\"sha\": \"c932ad8891eb0bce0d78859bda4bc6c6eaa6f989\", \"live\": true, \"id\": \"x9a999345\"}", "{\"sha\": \"f60b51da9c4f6749aea8b423d5d2ce478258483b\", \"live\": true, \"id\": \"xa602353d\"}", "{\"sha\": \"3bbe94d6e9de8d51e45f4866d22a8d788f2f0ada\", \"live\": true, \"id\": \"xd65d81c3\"}", "{\"sha\": \"9a446295375b41b3abad78ab47c7ff24686e10a3\", \"live\": true, \"id\": \"xd6550066\"}", "{\"sha\": \"12370d46aa4bf3c029a1bb5d7e9973d42932ade3\", \"live\": true, \"id\": \"xf21bff1c\"}", "{\"sha\": \"08984e27e84d3b0b4fe57c1ce925578b4022c0d9\", \"live\": true, \"id\": \"xcfa608e9\"}", "{\"sha\": \"8818517febd17e9353fbe7fbb2a645cd4656c752\", \"live\": true, \"id\": \"x6dcd6db1\"}", "{\"sha\": \"c3b7cf8530a9dae9b3deab7f1f155514aa095af0\", \"live\": true, \"id\": \"x3d0ec97a\"}", "{\"sha\": \"3a8b314efd9cc0a337be84cc8f31db2d67f3776a\", \"live\": true, \"id\": \"xa413ce8a\"}", "{\"sha\": \"416ecfeba3dca11baac27c99868dba3b24003269\", \"live\": true, \"id\": \"xa0f1ebd4\"}", "{\"sha\": \"aec1f6d034965091e829042796797f87d326d0b8\", \"live\": true, \"id\": \"x4c4d2d90\"}", "{\"sha\": \"e7c01cd176d8878d3cc5cb97a3a7407929b37d8e\", \"live\": true, \"id\": \"xbf5e5eeb\"}", "{\"sha\": \"da4c8890b95015a888887baf2253b4a2901eb4df\", \"live\": true, \"id\": \"x6748340a\"}", "{\"sha\": \"cf8d772c194e1960eae8fef4bec8e8578a9eaa15\", \"live\": true, \"id\": \"xd88a933f\"}", "{\"sha\": \"d27a35ff3d24be2b72327f84f5e12521c10500c8\", \"live\": true, \"id\": \"xc6f9c42b\"}", "{\"sha\": \"564133af81c9ba7bc39ad1ffd90a5f308dd9c382\", \"live\": true, \"id\": \"xba32bf8b\"}", "{\"sha\": \"2990457db45b42703ae561f6f40d473fcdce0817\", \"live\": true, \"id\": \"xaf9d5f24\"}", "{\"sha\": \"ff87a67ca53a094d6f5a3e45549a1d56307500f0\", \"live\": true, \"id\": \"x39969588\"}", "{\"sha\": \"43ee15297e3b35954b5188215c6ae95c6b9523f6\", \"live\": true, \"id\": \"x393f0571\"}", "{\"sha\": \"5f99017dd9c49806c2dfb202dd7a6a44e9915629\", \"live\": true, \"id\": \"xb996b6e7\"}", "{\"sha\": \"039a12be9f705ffa88c731224608da9f2cdd1210\", \"live\": true, \"id\": \"x941cdf27\"}", "{\"sha\": \"d5e73a22daddf6771abd1e01f7d2c8ba4fd6df03\", \"live\": true, \"id\": \"x7704c1f3\"}", "{\"sha\": \"ca9a2541b026a9805e33d3f96780f8608d4ea6b5\", \"live\": true, \"id\": \"xf1c29357\"}", "{\"sha\": \"6a17c66408069f00acdd7981c56cd454a3788c90\", \"live\": true, \"id\": \"x60058544\"}"], "description": "", "basepoints": 10.0, "slug": "modular-addition", "kind": "Exercise", "name": "modular-addition", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "modular-addition"}, "chain_rule_1": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain_rule_1/", "id": "chain_rule_1", "display_name": "Chain rule on two functions", "title": "Chain rule on two functions", "all_assessment_items": ["{\"sha\": \"a010c2778353bb40dbf9fb6fe346535c168520e4\", \"live\": true, \"id\": \"xec8030b1072c26ee\"}", "{\"sha\": \"1943d4fac870660b19cd636bec67cc99eda785ef\", \"live\": true, \"id\": \"x23fd205b9805b532\"}", "{\"sha\": \"bb8bf0ab50ae419101770951c09fb491dd34b337\", \"live\": true, \"id\": \"x3940d2d49cf4f067\"}", "{\"sha\": \"9fffcaaad13079778dd3ca82a672b5a4e2e3d7f4\", \"live\": true, \"id\": \"x0b218c67d0b84447\"}", "{\"sha\": \"1437dfafa02f157218f65276bdd247799893de2a\", \"live\": true, \"id\": \"xe521f7740341a272\"}", "{\"sha\": \"29bfd419873c92bc330c6722ba08b71d38dc1396\", \"live\": true, \"id\": \"x964974754fd1eef7\"}", "{\"sha\": \"564cc7c44494c0263c4697f7ab3582e0ddf43eb7\", \"live\": true, \"id\": \"xb3225569ac70c766\"}", "{\"sha\": \"cde481fd5993fad3a1465808ec62029f171eb524\", \"live\": true, \"id\": \"xd279a2dbbb94d16c\"}", "{\"sha\": \"3d1dd7685f7ce1bdfbf68453535f93d32e9eb0df\", \"live\": true, \"id\": \"x16372f49f8560735\"}", "{\"sha\": \"072595ade26ac2f14b893eecb34d1e9765b6b920\", \"live\": true, \"id\": \"xe3229097e45a5e52\"}", "{\"sha\": \"860fd09850ebb6b646339a7d2cefd3d11ab17822\", \"live\": true, \"id\": \"x89d4bbac40534e9c\"}", "{\"sha\": \"e8412981013c044e28d3264bd49db8e759094da5\", \"live\": true, \"id\": \"x571d89464f329488\"}", "{\"sha\": \"7855879f03aa11505d67e1dbd4fd494796dafb80\", \"live\": true, \"id\": \"xf77966d0a63733fb\"}", "{\"sha\": \"5478b3c3bf6e672805fa6f74bec96e3cc8a58a2e\", \"live\": true, \"id\": \"x554a09ab808f2fdf\"}", "{\"sha\": \"4b1143e1c116079a3ee7accd80421efe1c6f1eb9\", \"live\": true, \"id\": \"xcdb6cc0da5771872\"}", "{\"sha\": \"75559fb98f515b43fdf8df2acff2301ec1cbf950\", \"live\": true, \"id\": \"x35437f294c2eb02f\"}", "{\"sha\": \"495e4ac8d887aca082c18e00a0ea7bdba7bfe453\", \"live\": true, \"id\": \"x3f2d602eef4be278\"}", "{\"sha\": \"0ee9f9a109f77351df981cfc9f28189d8c5919bb\", \"live\": true, \"id\": \"x71921e94d95ed3af\"}", "{\"sha\": \"d316f47ec247c785ed91a0109fe674a9218e9cf1\", \"live\": true, \"id\": \"xb38319dc5247e198\"}", "{\"sha\": \"7d9e40a8a784cf3ab62809a26121801dfca0f655\", \"live\": true, \"id\": \"x43d85c79d04c7f2d\"}", "{\"sha\": \"3ea5d652cfd2f973f5301b32ffd93060afc4e0e1\", \"live\": true, \"id\": \"x58f5072ec59d435e\"}", "{\"sha\": \"1fb921ce7e823d4978bb3fd8412d4ed465bfab1b\", \"live\": true, \"id\": \"xdf42fd8b5fbc7a54\"}", "{\"sha\": \"4830c7b493a737de7b3a157ac29e5b528d8466e8\", \"live\": true, \"id\": \"x3e41f793a2a95c36\"}", "{\"sha\": \"4db9766180de43df99dacfc582dadc29313b2fb3\", \"live\": true, \"id\": \"xa9b3c8a060b2091f\"}", "{\"sha\": \"9ff3664bb44a53caadbf700d39aedaa8a3367212\", \"live\": true, \"id\": \"x242297ce5911eb03\"}", "{\"sha\": \"dec577ba6e2987eec02e6a8bb69f2bd42502d9b7\", \"live\": true, \"id\": \"xff3da7ecd592a61c\"}", "{\"sha\": \"d5ddaffd2a82b04d2971139501e5c8dc24bfc84d\", \"live\": true, \"id\": \"x3c50350373d2ad75\"}", "{\"sha\": \"07bc9c5fa86ce03bd407b587a44e729aff3eaceb\", \"live\": true, \"id\": \"x9fede9a524a2fe00\"}", "{\"sha\": \"dca0a5d9378eaa7fece429fd04af04e3abf68854\", \"live\": true, \"id\": \"x499827018d4162f1\"}", "{\"sha\": \"8b732ea6da7c8b620d78944e314c301621e8ff8e\", \"live\": true, \"id\": \"x8592b33bd2fc3d16\"}", "{\"sha\": \"f9b3ec8e9f1a62d6e69aa7e0f0c14448a8b296bc\", \"live\": true, \"id\": \"x70128a169d400bda\"}", "{\"sha\": \"a776bb49569344e109f28dcc00837a6451204f27\", \"live\": true, \"id\": \"x570d65da8a028960\"}", "{\"sha\": \"079429c51da6646ecdad6591cf44d87d3717e30f\", \"live\": true, \"id\": \"xacdd923916055e61\"}"], "description": "", "basepoints": 28.0, "slug": "chain_rule_1", "kind": "Exercise", "name": "chain_rule_1", "seconds_per_fast_problem": 53.0, "prerequisites": ["power_rule", "special_derivatives"], "exercise_id": "chain_rule_1"}, "limits-at-infinity-where-f-x--is-unbounded": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/limits_topic/limits-infinity/limits-at-infinity-where-f-x-is-unbounded/", "id": "limits-at-infinity-where-f-x--is-unbounded", "display_name": "Limits at infinity where f(x) is unbounded", "title": "Limits at infinity where f(x) is unbounded", "all_assessment_items": ["{\"sha\": \"56d6a2a118f3acc51161e17c2b3f215147c4b481\", \"live\": true, \"id\": \"xd9a3e2e244791e1f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ba37d51cd7527be4259fbed37d7612394bf5d5bb\", \"live\": true, \"id\": \"x6007bf6ec439e1b9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11e48571302df6e3e648e5ff726e455e306796e6\", \"live\": true, \"id\": \"x83cc2eceb572a757\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a47d9534dea919791030455d4b4a84c3ea39987b\", \"live\": true, \"id\": \"x45a3716a9d3ac931\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"efad3119e6836d9d138400a7a841c07204feb10b\", \"live\": true, \"id\": \"x6489c066122c6faa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e311135ce09eb55951864ee1fcf148127b5e55d\", \"live\": true, \"id\": \"x47d5f72e5800f65a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f95a72ec345062a02be1522e19a39b0520d1a994\", \"live\": true, \"id\": \"x7be77962c62b581d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"799eb257e51e9aaabfa264b0b5a717344950309c\", \"live\": true, \"id\": \"x3b4e2145cc80654b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e91f275ef701476e8ebc3b50c3b44c07838c22aa\", \"live\": true, \"id\": \"xeb0b916133e870c9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ce30d56d35d30eec7b220579bbc174519b7169e8\", \"live\": true, \"id\": \"x06d654ba90a07709\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dd6a34cd7bb6bd7658aa00e396b0383a3c4c5b6b\", \"live\": true, \"id\": \"xaa0dc437c82bb3cd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7c31fd560c50553c598cf71007c1f88fe69d356c\", \"live\": true, \"id\": \"xc5b2ab38194577ea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"24e9322fca149d730d5c3431e82a769a56da336e\", \"live\": true, \"id\": \"xfc0ce0b27b5f3d3a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fcd5a33a05edd8b28307d7b584fff4820ea6c409\", \"live\": true, \"id\": \"xa8a2ba976d6cd098\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8eb8df509c383182a57b7d4b3832c36cd7a815b0\", \"live\": true, \"id\": \"x8922329a1420b73a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"56f502620ba5cf91de0cd3608a2dce28abd27183\", \"live\": true, \"id\": \"x21de5d568ec1629b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6334b77a82558677d51fe59634c190f403efaadb\", \"live\": true, \"id\": \"x0cd5820a524cf3ea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"084b03de70f8367a6bd52ca8f41bbb8054385c82\", \"live\": true, \"id\": \"xa852dcb708dc797e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c30f8e1fa27d0dbd87a9d173ff2ca5a599539f7e\", \"live\": true, \"id\": \"x4e185a710401d8de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"518dbcf9a41b82d063684c1fad434562db385b12\", \"live\": true, \"id\": \"x3e71767650b0ffb9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d6650487ef1a43928df274a7b142a436fa4287cb\", \"live\": true, \"id\": \"xd233254c4cb052bb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9befadb023b2a5bb01b7b76c938f1d6c024849b8\", \"live\": true, \"id\": \"xf0e33ba26aadba2e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b78f71bdfb3de08e2c9188691badb0cb80fc966\", \"live\": true, \"id\": \"xd558063c5e116367\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aa9627a830ff5bc83b1bfcad2899ae17a4faa518\", \"live\": true, \"id\": \"xa0fd70bbb56fb321\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4ac0fdfa4247c9b0fd3e0a221053822f7c87bac0\", \"live\": true, \"id\": \"x2b46bfbb0ccd3e9a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c9cf0b7ec6319231e842bd412b84cf1b949e204b\", \"live\": true, \"id\": \"xdaaa54ed3378e4a0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"04cf6c10679a302b91a48a03cd916f4d95177d99\", \"live\": true, \"id\": \"x473d9ecc575f40de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f1e1239bd51520e8a569bea94ef919cdfff94ec1\", \"live\": true, \"id\": \"x50a6fff9dca7e64a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d74e47577c348c20f7059c334378edeadaa77f80\", \"live\": true, \"id\": \"x1436cb4b6b4d7939\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2eb76b1388cda9ba507401f36cd69c44b830256f\", \"live\": true, \"id\": \"xb596e6d17eae4186\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 20.0, "slug": "limits-at-infinity-where-f-x-is-unbounded", "kind": "Exercise", "name": "limits-at-infinity-where-f-x--is-unbounded", "seconds_per_fast_problem": 16.0, "prerequisites": ["two-sided-limits-using-algebra"], "exercise_id": "limits-at-infinity-where-f-x--is-unbounded"}, "realism": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/realism/", "id": "realism", "display_name": "Realism ", "title": "Realism", "all_assessment_items": ["{\"sha\": \"84358000b3e6ff9fa63bfcc7876a8db029e9a3f4\", \"live\": true, \"id\": \"xf051f90a\"}", "{\"sha\": \"26ae685f965374a05a6f195be5cf358970a82ee7\", \"live\": true, \"id\": \"xeda81a51\"}", "{\"sha\": \"18e5bf3e7a71345e20d448ed5766553f0efc4ad1\", \"live\": true, \"id\": \"x1f736041\"}", "{\"sha\": \"2e7fb7bd5410e08ef23ab0074f28b743ce71c22b\", \"live\": true, \"id\": \"xf25a5eba\"}", "{\"sha\": \"121f4430267333a66c0746e94a5005455ed60ffa\", \"live\": true, \"id\": \"x645ccdd3\"}", "{\"sha\": \"c0832c313da2fab348c2d85223a1d40d18a22976\", \"live\": true, \"id\": \"xaa731309\"}", "{\"sha\": \"a459cc4c5ce8833ddf2e37fe258ac6104e715154\", \"live\": true, \"id\": \"x3164c064\"}", "{\"sha\": \"c1ed798c29b4f3f8f3748b931f04453d745e6c2b\", \"live\": true, \"id\": \"x19a46c8e\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "realism", "kind": "Exercise", "name": "realism", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "realism"}, "fuselli--the-nighmare-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-england/fuselli-the-nighmare-quiz/", "id": "fuselli--the-nighmare-quiz", "display_name": "Fuseli, The Nighmare (quiz)", "title": "Fuseli, The Nighmare (quiz)", "all_assessment_items": ["{\"sha\": \"3e7f2e2861606642cacb207b3d0a93ec9bb0967e\", \"live\": true, \"id\": \"xe441d21c0e191a02\"}", "{\"sha\": \"6b8b6a7db97e8b24c7bb8fda8afc19020e643091\", \"live\": true, \"id\": \"x797979f9941336f5\"}", "{\"sha\": \"dbf04f2273e8528841841f330929a23ffa2fbd2f\", \"live\": true, \"id\": \"x332e42447acb403b\"}", "{\"sha\": \"fe6ef0cc9634d664d14306ac09f78a7407401479\", \"live\": true, \"id\": \"xb594a70a14bce176\"}", "{\"sha\": \"5a751a80538421eb4df82ee1c4cfeec47f6ec720\", \"live\": true, \"id\": \"x01e59e1c3895d8ea\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "fuselli-the-nighmare-quiz", "kind": "Exercise", "name": "fuselli--the-nighmare-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fuselli--the-nighmare-quiz"}, "shape-of-distributions": {"uses_assessment_items": true, "id": "shape-of-distributions", "display_name": "Shape of distributions", "title": "Shape of distributions", "all_assessment_items": ["{\"sha\": \"cb869be7d59ebc5c41aeb2d70e5268a358c6e8fb\", \"live\": true, \"id\": \"x7dcc007cb1be51bc\"}", "{\"sha\": \"acc3fd8f88bc1d6600026f8957f53bda00e417e1\", \"live\": true, \"id\": \"x974b4e1bfd527dd1\"}", "{\"sha\": \"4b30e571ab2eed843258d94a8d8a105c7db6567f\", \"live\": true, \"id\": \"x4afc7ba3afc6066b\"}", "{\"sha\": \"a6398b53f02e95ce9f71beec44840061f70803c9\", \"live\": true, \"id\": \"x94273188cfe70a21\"}", "{\"sha\": \"0bf9355bcc6c6e3b5ad2584b5281524c91604525\", \"live\": true, \"id\": \"xc6b669317a8fac28\"}", "{\"sha\": \"b6304a546fc8ddc24bb0d2d0b784ab101a22da39\", \"live\": true, \"id\": \"xa0e6f5b7f8ca8b68\"}", "{\"sha\": \"f68a4cc3fe46b8686d85950c72c94954f808655f\", \"live\": true, \"id\": \"xde2323a760392b41\"}", "{\"sha\": \"808c89787ad1e5a937a9f1c8471fabe10f766ad8\", \"live\": true, \"id\": \"xbe92e4785da18fcb\"}", "{\"sha\": \"e7ec8ec79f1e8a3dd69e493c4df830246ad5557b\", \"live\": true, \"id\": \"xfb07e168d3f99978\"}", "{\"sha\": \"77aedd74b7ee10409e55f8019764ed796e83f546\", \"live\": true, \"id\": \"x7a3d0d55c1c33130\"}", "{\"sha\": \"1720132b608c66330a0f7f2b2ef40cc2d68998a6\", \"live\": true, \"id\": \"xc88ff22f16e630fc\"}", "{\"sha\": \"b76e97f50377965a307ca486217b16735a91e6f8\", \"live\": true, \"id\": \"xc0cfe9050ed731c9\"}", "{\"sha\": \"faf7861dd15244544b4a9548fb8090d07b7887f4\", \"live\": true, \"id\": \"x386fb22386afc50c\"}", "{\"sha\": \"bca6a0729ea50b654bfb2f055251bbbf82902e7a\", \"live\": true, \"id\": \"xac93a9a21a2d1384\"}", "{\"sha\": \"52ef27c9094c74e8664d1070fccb1c88d779f9e5\", \"live\": true, \"id\": \"x488c100d2de60caf\"}", "{\"sha\": \"33bb985a12cbe026727ba13081117bd7d788049e\", \"live\": true, \"id\": \"x8d402f9c7aad6182\"}", "{\"sha\": \"b7d67e3a9288ca38f224640dbd11152969e27c9a\", \"live\": true, \"id\": \"x96aac12ff6bbcf69\"}", "{\"sha\": \"f7ec23dae095fb3e7db68a60f8e9b6f466b6e197\", \"live\": true, \"id\": \"xb91b2103019586f3\"}", "{\"sha\": \"93d634d3cca93fca6fb19475830d79db76d779f5\", \"live\": true, \"id\": \"xabd97e027b113164\"}", "{\"sha\": \"06f953fc40a8744468e0e0e9258fcdeb114a309e\", \"live\": true, \"id\": \"x336ddad0eda6a1fa\"}", "{\"sha\": \"f396cf8d070a60fa07301a18e99047a605d94130\", \"live\": true, \"id\": \"xe0ca396cdc1d9294\"}", "{\"sha\": \"667b1a8489015e5bb958df881abbe0c9cca09cda\", \"live\": true, \"id\": \"x3601baae11123367\"}", "{\"sha\": \"00d1432e7f572794a447d03c5fb5bbc10110472e\", \"live\": true, \"id\": \"x6bdddd80eeb483e2\"}", "{\"sha\": \"4292a12f81bae09c03b5dccc84da0b93a6b73842\", \"live\": true, \"id\": \"xf54887feaef01b29\"}", "{\"sha\": \"f4c22217a31c24b3fe71c00465bd7557df99e483\", \"live\": true, \"id\": \"x1b172708314af5a8\"}", "{\"sha\": \"ac3a0598b1b1dd2bbbec7e1911e65ee968c3a919\", \"live\": true, \"id\": \"x5250d3ba8fbc74fb\"}", "{\"sha\": \"61b2fa2432cae4e10d247b69a44ea87d6202a726\", \"live\": true, \"id\": \"xd00720fcdee9d1dc\"}", "{\"sha\": \"839c560518e776664fb1172741ec38b08c7824d0\", \"live\": true, \"id\": \"x4d3a55183a8a4e57\"}", "{\"sha\": \"f3c31ada979e3ade942738a6ae994dcd17f0f470\", \"live\": true, \"id\": \"x546f86a578185580\"}", "{\"sha\": \"9e09526982c20b8c26823e2cd56b3b27067dc9a9\", \"live\": true, \"id\": \"x557e1a0e0fab8d63\"}", "{\"sha\": \"6676accd2851d2b9ee89ceb639154948c0dcaff0\", \"live\": true, \"id\": \"x801e0511bffbc0a0\"}", "{\"sha\": \"7e25dca44512242dfd7513a7e3d1d618759951e1\", \"live\": true, \"id\": \"x4aaffd53b9732d85\"}", "{\"sha\": \"0bdbffb26ec5a9393bf6666a6a8c0eacaf36d679\", \"live\": true, \"id\": \"xd4b86f3f2a0e7d4a\"}", "{\"sha\": \"3f56752ee03ef2d2c998567b8c49eb8231caf43b\", \"live\": true, \"id\": \"xe4bbe5f36201819c\"}", "{\"sha\": \"f53b3e355f7eeed86d9bf00f35b7fc61520dbc52\", \"live\": true, \"id\": \"x7057bdd9e244633f\"}"], "description": "Practice explaining the shapes of data distributions. Some distributions are symmetrical, perfectly balanced on the left and right. Other distributions are unbalanced. We say they are \u201cskewed\u201d and have \u201ctails.\"", "basepoints": 10.0, "path": "shape-of-distributions/", "slug": "shape-of-distributions", "kind": "Exercise", "name": "shape-of-distributions", "seconds_per_fast_problem": 4.0, "prerequisites": ["analyzing-data-with-box-plots", "reading-histograms"], "exercise_id": "shape-of-distributions"}, "limits_2": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/limits_topic/algebraic-limits/limits_2/", "id": "limits_2", "display_name": "Two-sided limits using advanced algebra", "title": "Two-sided limits using advanced algebra", "all_assessment_items": ["{\"sha\": \"d57d3da4e8d4601db0a7ba93d11fb3054118ef6c\", \"live\": true, \"id\": \"x8830464a860ec56b\"}", "{\"sha\": \"7de3790813e31d114105a37b9cccec85904866f8\", \"live\": true, \"id\": \"xe924303c1e7077eb\"}", "{\"sha\": \"686bb55830581e9dbdd95d9521e38a405c370cb5\", \"live\": true, \"id\": \"x6bb731e264c7d1ed\"}", "{\"sha\": \"c86a42b26f06a67d1e79cc5c54aa944df51b65db\", \"live\": true, \"id\": \"x414ab8b0c0060c58\"}", "{\"sha\": \"1b7c13a3cf13460636b7459c698e460c980ad5c6\", \"live\": true, \"id\": \"x24cc50cf16280ac3\"}", "{\"sha\": \"61313be9dfb9c26de7987f5f0a6af42d458f05f1\", \"live\": true, \"id\": \"xc0e2114080259c08\"}", "{\"sha\": \"e9cbf9d69e5d816699729b6e3f74f3720170aeae\", \"live\": true, \"id\": \"xdd74fa0165aee227\"}", "{\"sha\": \"a9837e0020eb17df269dc9d1a68b18d9fadf94fb\", \"live\": true, \"id\": \"xc0bfb404c7d181f6\"}", "{\"sha\": \"418bf62f47687326ca14adb371f5bd3588772c0c\", \"live\": true, \"id\": \"x762b14923c391b3c\"}", "{\"sha\": \"b75ab2f62360a6183b380c67c3bbccdbb11d7fb4\", \"live\": true, \"id\": \"xce871f16ec845086\"}", "{\"sha\": \"1ad3b04b2997063b6fcf263a72b37d3d1587961e\", \"live\": true, \"id\": \"xb28a9b7f08e34154\"}", "{\"sha\": \"da3cf1aeed885065d6540efe9b41daf865e773d7\", \"live\": true, \"id\": \"x8ed78a7a3d5b85ba\"}", "{\"sha\": \"d04e388b3736f3c083f0151c9ace37ced430f6d7\", \"live\": true, \"id\": \"x53f59cd27cf9f7a2\"}", "{\"sha\": \"a22461e20c5a63232f38ffc2d3ef4d137b315243\", \"live\": true, \"id\": \"x7b674227f06af79b\"}", "{\"sha\": \"ae4082e43d21a59dc31eb50bd72f1a0625038aec\", \"live\": true, \"id\": \"xd596cb48a6ac0f06\"}", "{\"sha\": \"f71883978e3b3bd4cffd377bd7ec956a117b0d6c\", \"live\": true, \"id\": \"x6f78e375cdff95f8\"}", "{\"sha\": \"b7ef9c2e0a23c7436142a1cd1fc5be76fe836b7f\", \"live\": true, \"id\": \"xd3d1bc304bc4ed20\"}", "{\"sha\": \"f8e57bd06fb2497afd0646e018bc4dc4c99d4d12\", \"live\": true, \"id\": \"xca19f46bd86eedce\"}", "{\"sha\": \"f08c56e70fa06dd9358121bcdd63f11635d20a23\", \"live\": true, \"id\": \"x1ad314e771dc8987\"}", "{\"sha\": \"8e4679387d1a1e3231c1a0ee13db22693e6bf7c3\", \"live\": true, \"id\": \"xc551eb3221f49436\"}", "{\"sha\": \"4535ada93add979ff8774473dff5fc79380f9c93\", \"live\": true, \"id\": \"x91ae47e4b95dad9f\"}", "{\"sha\": \"ed1c6501a30d9fbb2fc44e1a5b788ff9cd3042c5\", \"live\": true, \"id\": \"xfe6a7aa97bac4d14\"}", "{\"sha\": \"0c419a04e3842bcb51db202ded60d2779911239f\", \"live\": true, \"id\": \"x925be99ccc9b0a11\"}", "{\"sha\": \"8daccde38177dfc2f9e49353e4404c0aa20543a7\", \"live\": true, \"id\": \"x3bdee7ce1df6e208\"}", "{\"sha\": \"709d6a05562f37feec30539b663da5e28835302d\", \"live\": true, \"id\": \"xb70ca30bda8e713c\"}", "{\"sha\": \"df0685c79520038ce95e3c334e18239cc60ab6d6\", \"live\": true, \"id\": \"x8fa3eaf3e77bbbe5\"}", "{\"sha\": \"e7060585d7431e60572fe8bea6d380075b066a20\", \"live\": true, \"id\": \"xa3088718e8e4d3bc\"}", "{\"sha\": \"49d5751241de2a3a138da9e3f72eeb0c678629df\", \"live\": true, \"id\": \"x33c410a8bd7b3a0d\"}", "{\"sha\": \"44d5293b4b39c4c26b3f59680f769e8410dd27fc\", \"live\": true, \"id\": \"x2518c7f2db830046\"}", "{\"sha\": \"867f0fda79423d67e779f4b91dc3b52e5596bca3\", \"live\": true, \"id\": \"x4d2702e733e8c1f9\"}"], "description": "", "basepoints": 27.0, "slug": "limits_2", "kind": "Exercise", "name": "limits_2", "seconds_per_fast_problem": 45.0, "prerequisites": ["two-sided-limits-using-algebra", "adding_and_subtracting_rational_expressions_6"], "exercise_id": "limits_2"}, "adding-and-subtracting-on-the-number-line-word-problems": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/adding-and-subtracting-on-the-number-line-word-problems/", "id": "adding-and-subtracting-on-the-number-line-word-problems", "display_name": "Adding and subtracting on the number line word problems", "title": "Adding and subtracting on the number line word problems", "all_assessment_items": ["{\"sha\": \"144519245d6b870c4200e3cbfbd02dc082297945\", \"live\": true, \"id\": \"xc9d8d5f8c915aed9\"}", "{\"sha\": \"2f0aafc1d4502a7cce82fd30d5eeee32aee49413\", \"live\": true, \"id\": \"xdd6e0a3cf197d6ba\"}", "{\"sha\": \"b4c3e12a46ee6c72a108d49c09baabba6e3e437b\", \"live\": true, \"id\": \"x951351b7131eddb8\"}", "{\"sha\": \"5828c04cd164a8a254f1907567020ed9af798e04\", \"live\": true, \"id\": \"x216a7dab66414300\"}", "{\"sha\": \"8349463e721fe0a75cde2c9ae16a1ebd373515d7\", \"live\": true, \"id\": \"x3f2014753bd766dd\"}", "{\"sha\": \"94617d1bd5be9fcfc5de7f410a9331fdb4a9cf60\", \"live\": true, \"id\": \"xb22f2691f0267fd1\"}", "{\"sha\": \"1bb2a953db0b7809562a82dfb0f8a0768ad31fda\", \"live\": true, \"id\": \"x47c33b4cd4b88ce0\"}", "{\"sha\": \"fa42b77200ef4b32ecbea4b54f2f24c93d3a4949\", \"live\": true, \"id\": \"x5cbbdf667d69198a\"}", "{\"sha\": \"123961b7a4c9cb3c67134345a4e199c53659c7e5\", \"live\": true, \"id\": \"x832487427f2e9aff\"}", "{\"sha\": \"44aac5625d54e6f4df640f04c7cf672a310f9cf0\", \"live\": true, \"id\": \"xb41c5ce248261eb5\"}", "{\"sha\": \"3eb322cdcc4277ad7cc925f6cf2b1f954a2a2adf\", \"live\": true, \"id\": \"x946190e99733f4cf\"}", "{\"sha\": \"ae33a534c9e4609ce1b36ba4783ff78d6d93276c\", \"live\": true, \"id\": \"xa5434cfb1f3e639a\"}", "{\"sha\": \"c4db2b1ce0f1dd0776fdab5c7973f54dd9fa9e0c\", \"live\": true, \"id\": \"x3f89bc42ec587929\"}", "{\"sha\": \"b8b2dca232f9e4aae9af7ef995dacb87c727cdb6\", \"live\": true, \"id\": \"x8554222010c15d94\"}", "{\"sha\": \"cc93fe920831163500328985ab4ae930cad8b7d1\", \"live\": true, \"id\": \"x96b077759471c597\"}", "{\"sha\": \"0cfbc62a5f2cfbbea3686135e4416a69bcd48bb3\", \"live\": true, \"id\": \"x7a34e5c4acd62b7b\"}", "{\"sha\": \"0e09a883a9bb1412269a7ac1c77e0e74e94d29f4\", \"live\": true, \"id\": \"x28cf6c9e0953f2e6\"}", "{\"sha\": \"c0cb2461fe3aefa3391df5986a992eb63df59467\", \"live\": true, \"id\": \"x4ce1a933d87b3cdd\"}", "{\"sha\": \"becf1b3ae5064771481fb6549b0f31d186e1671c\", \"live\": true, \"id\": \"x357acbba4cc9462c\"}"], "description": "Practice adding and subtracting using the number line. Numbers used are 100 or less.", "basepoints": 10.0, "slug": "adding-and-subtracting-on-the-number-line-word-problems", "kind": "Exercise", "name": "adding-and-subtracting-on-the-number-line-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_3", "addition-and-subtraction-word-problems-within-20--level-1", "comparing-lengths"], "exercise_id": "adding-and-subtracting-on-the-number-line-word-problems"}, "what-conditions-influence-lyophilisation-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/what-conditions-influence-lyophilisation-/", "id": "what-conditions-influence-lyophilisation-", "display_name": "What conditions influence lyophilisation?", "title": "What conditions influence lyophilisation?", "all_assessment_items": ["{\"sha\": \"e76012eadc165716bea9b611d962a4f2e71da4c2\", \"live\": true, \"id\": \"xda708738c1206327\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e96ed2486511b90f92a3e7bc9f0a4514cee7a1c7\", \"live\": true, \"id\": \"x9f24bfa145f4c33d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e5df20e2120528eb146e6c5a73a8b7c9053e16af\", \"live\": true, \"id\": \"xab75f8fc73f6cb1e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a81f2cc19355254490e23d2de4cdfae01532f334\", \"live\": true, \"id\": \"xbb986d460e2048bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2c9920a38eecb15dc702c5a8a36fb2c28bd49f9\", \"live\": true, \"id\": \"x2a726a0efbf55033\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Questions related to phase changes", "basepoints": 10.0, "slug": "what-conditions-influence-lyophilisation-", "kind": "Exercise", "name": "what-conditions-influence-lyophilisation-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "what-conditions-influence-lyophilisation-"}, "arts-of-the-islamic-world": {"uses_assessment_items": true, "path": "khan/humanities/art-islam/arts-islamic-quiz/arts-of-the-islamic-world/", "id": "arts-of-the-islamic-world", "display_name": "Arts of the Islamic World", "title": "Arts of the Islamic World", "all_assessment_items": ["{\"sha\": \"68458494bb5d904813ba3eb5f599f8ac6be88cac\", \"live\": true, \"id\": \"x34e42b7bfddeb5f2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"abf92408e24e4d5d0614fe0f541f70ebeb4e6093\", \"live\": true, \"id\": \"x7e747918a7507d70\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0f85403c14dfb004d8abd651804deb4fc0f4f341\", \"live\": true, \"id\": \"xea8806fef9244d7b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ecc33dfb883491fb0fbc8087777225c86eca824b\", \"live\": true, \"id\": \"x18e7b93b11dd0d97\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8deaa339ded4ab201229a4b21c6528558df6950d\", \"live\": true, \"id\": \"xf90df3e4b85caccd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd395544c03bd9cac7fff9481843313817242b7f\", \"live\": true, \"id\": \"xe8dd1f67d91dbffe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"44a02170e02cd7fc3911e88dfac7ec05cc279e29\", \"live\": true, \"id\": \"xfaaea442480a62e7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e620b18393988cad83aed413efc2d29d750b33ba\", \"live\": true, \"id\": \"xeae9ae1ff86d64e5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"04e63cd406582adda5339b610038baefec680747\", \"live\": true, \"id\": \"x2ea57a6fc79aa06c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7c8a63a6f1d17f37838866add451896b8cdef91c\", \"live\": true, \"id\": \"xece077f69867c36f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"996a5618c1457f3521dd60cca269ac6a59784761\", \"live\": true, \"id\": \"xf08594bad2287d24\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fd51e6be5567338a9fd295023f1493495d02a025\", \"live\": true, \"id\": \"xabc1f5237242f214\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d82bc8daa04c1f3ff8bfc120b8f03d0db732d13\", \"live\": true, \"id\": \"x65d2bf71f9ae84f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"902291869c7a2805b7f2beea14e6238139bc0c8d\", \"live\": true, \"id\": \"xdab6e1cde4c10621\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5ba0ecc0aab6796daf0a443af63a2bdd14be172a\", \"live\": true, \"id\": \"x5a79ccf205a9a2ac\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"18522f576028509f8b6ca24d9e53b63411f2c419\", \"live\": true, \"id\": \"x2d4e9937\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a0178c70088a8165885d4fbfabeff600425bb040\", \"live\": true, \"id\": \"x4067a16a6b4c305d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0a0356ff06d3c41054d530fec2b8ad4e147d6584\", \"live\": true, \"id\": \"xfc18248b6257dc0d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"249046a292198b462bd3021994b0c5b0ec56ef3a\", \"live\": true, \"id\": \"x00f6dd37390d3db4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f975809b39965c18e19e0ca14e842330e500bd85\", \"live\": true, \"id\": \"x3af9f0b2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c573498cb555f04445b0fcdefa7455f39f4c2b8\", \"live\": true, \"id\": \"x6ab7272f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3c82f36d523a14cfc2eaa7e0ee9e56dabb7de2a0\", \"live\": true, \"id\": \"x29d0224a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7df16e3fb9a1b42d69a765c0f365646161ea05c8\", \"live\": true, \"id\": \"x4f5aff4a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"70324abc154e94754858a7cae015e8eaa52be007\", \"live\": true, \"id\": \"x13adb883e016a6cc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge of the arts of the Islamic world!", "basepoints": 10.0, "slug": "arts-of-the-islamic-world", "kind": "Exercise", "name": "arts-of-the-islamic-world", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "arts-of-the-islamic-world"}, "inscribing_and_circumscribing_circles_on_a_triangle": {"uses_assessment_items": false, "path": "khan/math/geometry/geometric-constructions/circum-in-circles/inscribing_and_circumscribing_circles_on_a_triangle/", "id": "inscribing_and_circumscribing_circles_on_a_triangle", "display_name": "Inscribing and circumscribing circles on a triangle", "title": "Inscribing and circumscribing circles on a triangle", "description": "", "basepoints": 10.0, "slug": "inscribing_and_circumscribing_circles_on_a_triangle", "kind": "Exercise", "name": "inscribing_and_circumscribing_circles_on_a_triangle", "seconds_per_fast_problem": 4.0, "prerequisites": ["constructions_1", "exploring-rigid-transformations-and-congruence"], "exercise_id": "inscribing_and_circumscribing_circles_on_a_triangle"}, "absolute-value-word-problems": {"uses_assessment_items": true, "path": "khan/math/algebra-basics/core-algebra-foundations/alg-basics-absolute-value/absolute-value-word-problems/", "id": "absolute-value-word-problems", "display_name": "Interpreting absolute value", "title": "Interpreting absolute value", "all_assessment_items": ["{\"sha\": \"41f0dad20f03a9de065e36ff1ed0670e573bf1f4\", \"live\": true, \"id\": \"x589e6ba2\"}", "{\"sha\": \"45d1465244708389a208bd2543774ca45de5c458\", \"live\": true, \"id\": \"x02b60f25\"}", "{\"sha\": \"d943566e289ed958abb889cc1ea7746f817c4bad\", \"live\": true, \"id\": \"xc27e07b7\"}", "{\"sha\": \"2a0144693b639d8a27f66cd83627d3138f4e1246\", \"live\": true, \"id\": \"xe038deb0\"}", "{\"sha\": \"7631a9aaee4e149e4c69c567d368726a66178450\", \"live\": true, \"id\": \"xcee56258\"}", "{\"sha\": \"89616ec05611514720c2e9058e42a3dca9c23f92\", \"live\": true, \"id\": \"x38ec656037a33180\"}", "{\"sha\": \"9f4594102ad830fc669ad2a8c27b2770efbc797d\", \"live\": true, \"id\": \"x13bad9ae\"}", "{\"sha\": \"5b084dd2d09399578d7160167f2ed30b4d188aa9\", \"live\": true, \"id\": \"x69b9124c4d1e6a2d\"}", "{\"sha\": \"a1ee14849ea78375fbb8c4905e612bb06fd9270a\", \"live\": true, \"id\": \"x827e69265f66bab2\"}", "{\"sha\": \"6caef9ccf3da598b7db6b51c131eeb3bd3a34fba\", \"live\": true, \"id\": \"x96defe7073ad6697\"}", "{\"sha\": \"8a99c3725b15201fdf6f99dbcad2f33786dfe1b5\", \"live\": true, \"id\": \"x7a1ea8a1b9ad63ff\"}", "{\"sha\": \"0c6804861f36e25db5ca65997c8feb914116f4d0\", \"live\": true, \"id\": \"x5cb0aab568f7fd66\"}", "{\"sha\": \"a5991562fd544d2cea2ca58a5d4351ce61305040\", \"live\": true, \"id\": \"xff527cdb091cccf0\"}", "{\"sha\": \"30b07a257dd09fb27e4ecb0f6956426cfa164216\", \"live\": true, \"id\": \"x5df996a536ef52b8\"}", "{\"sha\": \"f56564a8ce0814926149a89ed71652100cb9fd6e\", \"live\": true, \"id\": \"x087bb395a6f8d58c\"}", "{\"sha\": \"885f41fbc80260f8200e958b2105387792cd61ce\", \"live\": true, \"id\": \"x031cc106be9c172e\"}", "{\"sha\": \"afbb398218d0d0125144cc58cf8c06e27cbbb6b0\", \"live\": true, \"id\": \"x88d14c690b6a4a61\"}", "{\"sha\": \"fb7899722ab60ae78cfd2adf8941ea36dd13e674\", \"live\": true, \"id\": \"x1cbc242b802438ad\"}", "{\"sha\": \"cd4b6ba2674f1d7b109dd132dbfc8347e138c4d4\", \"live\": true, \"id\": \"x1a8f982625b168fc\"}", "{\"sha\": \"67a20ae6fcdf707c3e4786acc828accf3a3953a2\", \"live\": true, \"id\": \"xdfd894ca6748fd4e\"}", "{\"sha\": \"bf1cf3d39963946cde055d77b174dd075963edad\", \"live\": true, \"id\": \"x28ab28a59b4babf2\"}", "{\"sha\": \"8bbee5462f5d10040bfd16e21cd45faf16e0ed8a\", \"live\": true, \"id\": \"xc18e1b4c3d35ede6\"}", "{\"sha\": \"94815420f73a851b1a66e04528f187bd4ce39d1a\", \"live\": true, \"id\": \"x2f20de628a9c88f9\"}", "{\"sha\": \"a92fc459b93ef6e59b446679c0d1a33b6a61fc2c\", \"live\": true, \"id\": \"x7c031906f5b6f946\"}", "{\"sha\": \"ecdc7fa2e7e0e5f8c327584b8271a05cfa8a38d4\", \"live\": true, \"id\": \"x53974fc232423a92\"}"], "description": "", "basepoints": 20.0, "slug": "absolute-value-word-problems", "kind": "Exercise", "name": "absolute-value-word-problems", "seconds_per_fast_problem": 17.0, "prerequisites": ["absolute_value"], "exercise_id": "absolute-value-word-problems"}, "learning---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/learning-passage-2/", "id": "learning---passage-2", "display_name": "Video game usage and aggressive behavior", "title": "Video game usage and aggressive behavior", "all_assessment_items": ["{\"sha\": \"3bccf4826336ee68205ab2d98589619c63d17700\", \"live\": true, \"id\": \"x2794b10f05b7b493\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8469fa9d25abfa0153edadb084240993a47ccc38\", \"live\": true, \"id\": \"x0258bc583242208a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d701bec2605e27333ceb6812a38e42063e42e05c\", \"live\": true, \"id\": \"x92b68eb7f1b7c934\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3c77ee1f3b77f989711137755f0bc5859fe32a63\", \"live\": true, \"id\": \"x56e30839ca516467\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"57ad5a5965c35823893ab2c9cbd17e60fefddfa5\", \"live\": true, \"id\": \"x81a21d82cd21b3f6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "learning-passage-2", "kind": "Exercise", "name": "learning---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "learning---passage-2"}, "converting_decimals_to_fractions_1": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/decimals-fractions-pre-alg/converting_decimals_to_fractions_1/", "id": "converting_decimals_to_fractions_1", "display_name": "Rewriting decimals as fractions", "title": "Rewriting decimals as fractions", "description": "Practice rewriting decimals as fractions. These problems use decimals with tenths and hundredths.", "basepoints": 12.0, "slug": "converting_decimals_to_fractions_1", "kind": "Exercise", "name": "converting_decimals_to_fractions_1", "seconds_per_fast_problem": 5.0, "prerequisites": ["fraction-decimal-intuition"], "exercise_id": "converting_decimals_to_fractions_1"}, "converting_decimals_to_fractions_2": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/converting_decimals_to_fractions_2/", "id": "converting_decimals_to_fractions_2", "display_name": "Rewriting decimals as fractions 2", "title": "Rewriting decimals as fractions 2", "description": "Practice rewriting decimals as fractions. These problems use decimals with up to four decimal places.", "basepoints": 18.0, "slug": "converting_decimals_to_fractions_2", "kind": "Exercise", "name": "converting_decimals_to_fractions_2", "seconds_per_fast_problem": 12.0, "prerequisites": ["converting_decimals_to_fractions_1"], "exercise_id": "converting_decimals_to_fractions_2"}, "recursive-formulas-for-arithmetic-sequences": {"uses_assessment_items": true, "path": "khan/math/precalculus/seq_induction/seq_and_series/recursive-formulas-for-arithmetic-sequences/", "id": "recursive-formulas-for-arithmetic-sequences", "display_name": "Recursive formulas for arithmetic sequences", "title": "Recursive formulas for arithmetic sequences", "all_assessment_items": ["{\"sha\": \"26fa04ccdbce5e4a35112178e3025b110ff36b0f\", \"live\": true, \"id\": \"xd0affa0f8509cd0c\"}", "{\"sha\": \"810082ab1c5e335a799ddcff5dd2c5f79e410c69\", \"live\": true, \"id\": \"x352b3dafca816811\"}", "{\"sha\": \"7c32996af8988dc9e41b5a5fea8966d1709ec9cb\", \"live\": true, \"id\": \"x919eb132a4c6d831\"}", "{\"sha\": \"7e420d42754f9a1df32402f2be0d816a92304c70\", \"live\": true, \"id\": \"x17c64eb168a06c4b\"}", "{\"sha\": \"3ba82e9f275939a624716c5a072e27273e75229c\", \"live\": true, \"id\": \"x88b042142a4b445b\"}", "{\"sha\": \"62c9b9e948c17645484eaf001a8b88a6871f370e\", \"live\": true, \"id\": \"x684e7fd7d5e381a3\"}", "{\"sha\": \"8f53c453ff9190e425a37dd3bfe9310543510f59\", \"live\": true, \"id\": \"xf49c2e1a55c06a26\"}", "{\"sha\": \"299c2fb1ca09fc14cae5ecf0f93980c172d2bb41\", \"live\": true, \"id\": \"xb5a9d06bc9c65076\"}", "{\"sha\": \"f669bee92ea0a3420bac890e67011eac80d8e0bd\", \"live\": true, \"id\": \"xc77686348e3f1777\"}", "{\"sha\": \"8cc3a0b34905474a842b8a9ad9ee1f069699160c\", \"live\": true, \"id\": \"x582b88458151105b\"}", "{\"sha\": \"e796fb65d506dccbfca52486f457992e5c71e55b\", \"live\": true, \"id\": \"x89e8f646bf98c677\"}", "{\"sha\": \"b75b05adcab2fb9564d4c6f68e4cc1ad89311715\", \"live\": true, \"id\": \"x8d69a0a961f228ad\"}", "{\"sha\": \"b7dffa1efd7998653de39c406edb0791e3028601\", \"live\": true, \"id\": \"xc6b3bfb871197dd8\"}", "{\"sha\": \"9733ac056854ab08455fb232715e778235a46b55\", \"live\": true, \"id\": \"x56ed2cc79921dd5e\"}", "{\"sha\": \"33da59adb41214a8b3129ae53bc8a4422881336a\", \"live\": true, \"id\": \"xa220a34c059906c9\"}", "{\"sha\": \"80a1b8d0fb4c1c0be8b551c74432bdd55b0be831\", \"live\": true, \"id\": \"x26f2ae3243e0b13e\"}", "{\"sha\": \"aeffcc22455cc75eceb0647041d8badb6563994b\", \"live\": true, \"id\": \"x5b8b800b4cdd07b3\"}", "{\"sha\": \"367b0449094c8570884249bf9b5d27a55688660b\", \"live\": true, \"id\": \"x39656164d428d32d\"}", "{\"sha\": \"53e08f0dbcb6403a6a419b88805b6c2a6d068a3f\", \"live\": true, \"id\": \"x5843e7e22736eff9\"}", "{\"sha\": \"d98040ee7dfd59487b74354b87b28514e9608feb\", \"live\": true, \"id\": \"xb044a9a123740fd7\"}", "{\"sha\": \"bc5344392cb3f60daf8d44d4bc910c87e3ae5b70\", \"live\": true, \"id\": \"xf53f22799dd333e1\"}", "{\"sha\": \"7905cd6ecea847a1a9ba1c5a3a560e7d9100c903\", \"live\": true, \"id\": \"xfa20dc2e754bf30e\"}", "{\"sha\": \"9b4136e3e7c9b1d6f39359bf00823e2030cfad11\", \"live\": true, \"id\": \"x8dcd9cc2c08bfc86\"}", "{\"sha\": \"3bbeb2d4452408fd4a24da266723da0643ba5686\", \"live\": true, \"id\": \"xd01e2550c5f3a951\"}", "{\"sha\": \"ef0c2d89932984235d7731619564ca5202baddaf\", \"live\": true, \"id\": \"xa6be7cd33c5c1108\"}", "{\"sha\": \"cc44a534eb9e1cd35567270816fd5b842640b8a1\", \"live\": true, \"id\": \"x00a4dddd73cb71e2\"}", "{\"sha\": \"7ffcc4daecb3b544037033937ec9242dce3d3d89\", \"live\": true, \"id\": \"xd059d744c258d1b4\"}", "{\"sha\": \"42930bd8da94fe6cd381db4da73c8a9412c1dd5c\", \"live\": true, \"id\": \"xb96ae9f114f667b8\"}", "{\"sha\": \"762949ba1c2f13787f02cb9633183f3950bfc90d\", \"live\": true, \"id\": \"x984e4a0f818cafd5\"}", "{\"sha\": \"9e33e6b4d58863524bb4d1868b287cc5eceb2b4f\", \"live\": true, \"id\": \"x0e3263f50fb1b9d9\"}"], "description": "Recursive formulas for arithmetic sequences", "basepoints": 10.0, "slug": "recursive-formulas-for-arithmetic-sequences", "kind": "Exercise", "name": "recursive-formulas-for-arithmetic-sequences", "seconds_per_fast_problem": 4.0, "prerequisites": ["explicit-formulas-for-arithmetic-sequences"], "exercise_id": "recursive-formulas-for-arithmetic-sequences"}, "multiplying_fractions_0.5": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/multiplying-fractions-pre-alg/multiplying_fractions_05/", "id": "multiplying_fractions_0.5", "display_name": "Multiplying positive fractions", "title": "Multiplying positive fractions", "description": "Multiplying two fractions with simplification.", "basepoints": 17.0, "slug": "multiplying_fractions_05", "kind": "Exercise", "name": "multiplying_fractions_0.5", "seconds_per_fast_problem": 11.0, "prerequisites": ["understanding-multiplying-fractions-by-fractions"], "exercise_id": "multiplying_fractions_0.5"}, "the--speed-limit--of-dna-polymerase-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-speed-limit-of-dna-polymerase-/", "id": "the--speed-limit--of-dna-polymerase-", "display_name": "The \u201cSpeed Limit\u201d of DNA Polymerase", "title": "The \u201cSpeed Limit\u201d of DNA Polymerase", "all_assessment_items": ["{\"sha\": \"2a7de53dae5c55982b92bd5857eca81dfe301c03\", \"live\": true, \"id\": \"x527ef34f96072fc3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ad68c950461dd1226ddfd0ea072db049602db0c6\", \"live\": true, \"id\": \"x124ae03df1ec3e39\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1da637d8c588950b53df2c6c30204f5be9abf0ea\", \"live\": true, \"id\": \"x07bc85dae47ac383\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b7c54f46d68ff71378ea58802405292bcc287203\", \"live\": true, \"id\": \"xdaba564a33f69e5e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f0968e99f67fc567ac285ff94049fde5fb6fefa\", \"live\": true, \"id\": \"xdd8b3eaa4f205baa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "The \u201cSpeed Limit\u201d of DNA Polymerase", "basepoints": 10.0, "slug": "the-speed-limit-of-dna-polymerase-", "kind": "Exercise", "name": "the--speed-limit--of-dna-polymerase-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the--speed-limit--of-dna-polymerase-"}, "fat-and-protein-metabolism---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/fat-and-protein-metabolism-passage-2/", "id": "fat-and-protein-metabolism---passage-2", "display_name": "Fat metabolism deficiences", "title": "Fat metabolism deficiences", "all_assessment_items": ["{\"sha\": \"2a0c330757a680f2f196a396d7af7e5d3703041b\", \"live\": true, \"id\": \"xff6f60983059ce24\"}", "{\"sha\": \"1381b5cc7411b668e78f9c479e1730e725efdfab\", \"live\": true, \"id\": \"xcad11c132703c9f5\"}", "{\"sha\": \"32e9e0b46fc915e41af12ba6c2e21286e301d8be\", \"live\": true, \"id\": \"x1320565a23c9318a\"}", "{\"sha\": \"6a5c48f42bf8f86f1501bbe4ea4f705779a7a686\", \"live\": true, \"id\": \"x78d8ec259dc9423c\"}", "{\"sha\": \"5c6aaf2ed983a54957e6837244bcf939ae7e53b2\", \"live\": true, \"id\": \"xf841395f40d287d6\"}"], "description": "Fat and Protein Metabolism - Passage 2", "basepoints": 10.0, "slug": "fat-and-protein-metabolism-passage-2", "kind": "Exercise", "name": "fat-and-protein-metabolism---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fat-and-protein-metabolism---passage-2"}, "fat-and-protein-metabolism---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/fat-and-protein-metabolism-passage-1/", "id": "fat-and-protein-metabolism---passage-1", "display_name": "Diabetes and hyperglycemia", "title": "Diabetes and hyperglycemia", "all_assessment_items": ["{\"sha\": \"9dfaec71acca3af731d81f8f573364f7fcf4f054\", \"live\": true, \"id\": \"x9e2e0e072205d6cd\"}", "{\"sha\": \"3ba75d395ef8202fef21cc072846bc9c8bdb7779\", \"live\": true, \"id\": \"xb059415168772a01\"}", "{\"sha\": \"8e3d8129160dffdd4c5135583e42a679ac2d90f3\", \"live\": true, \"id\": \"x7253f26eeb2e583f\"}", "{\"sha\": \"97b52b1ca01407a8fadd4532574d32c9c21785fc\", \"live\": true, \"id\": \"x883b526dd10375e1\"}", "{\"sha\": \"32d5132fddd721e5f98d9371ef553336a227847d\", \"live\": true, \"id\": \"x1d48b02e15155f40\"}"], "description": "Fat and Protein Metabolism - Passage 1", "basepoints": 10.0, "slug": "fat-and-protein-metabolism-passage-1", "kind": "Exercise", "name": "fat-and-protein-metabolism---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fat-and-protein-metabolism---passage-1"}, "introduction-to-differential-equations-and-initial-value-problems": {"uses_assessment_items": true, "path": "khan/math/differential-equations/first-order-differential-equations/differential-equations-intro/introduction-to-differential-equations-and-initial-value-problems/", "id": "introduction-to-differential-equations-and-initial-value-problems", "display_name": "Introduction to differential equations and initial value problems", "title": "Introduction to differential equations and initial value problems", "all_assessment_items": ["{\"sha\": \"47eb59906cc1b86874edce244f4279d3a43e2f3a\", \"live\": true, \"id\": \"x5951db4eae705c63\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83030605f97a9abe1354e9f0a6ec5efa8191bc11\", \"live\": true, \"id\": \"x67686ae23df1b5e9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5da28d0a8b07bf9fde1c061b6203461f63a44bc1\", \"live\": true, \"id\": \"x28f544e5ff7224a7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9867919fc6b5c88c6a656751288b7a1f15d4d1df\", \"live\": true, \"id\": \"xf34aea0e2ad184bd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a980cda56c6c5b69bd4c25df9ed34cad5bd57636\", \"live\": true, \"id\": \"xb8f7434f2609dee5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b4259667d1a1b4d955837590acd251fc61d636e3\", \"live\": true, \"id\": \"xc717540822a1e179\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7413fe2f3543c2e1a58a8c3784e0fc2b9a212dca\", \"live\": true, \"id\": \"x1d74ee607a6720c4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7a66b37a60acdba27a35d3d7658ad8481775472\", \"live\": true, \"id\": \"x17b09e7e1402b0b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e0070a638b67ce675960a9d9504bcc23f38b54d9\", \"live\": true, \"id\": \"x8addae0e9bb600d5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"10da7eac1bbf9362d58a82df562542254ef1b627\", \"live\": true, \"id\": \"x14e21ae2bcf96e70\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6bbf53a7ac9092772ef4a2b9a243e4f77f39b0e9\", \"live\": true, \"id\": \"x0f0a672e677b276b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4fbc594477f734569ea432332320d986252986db\", \"live\": true, \"id\": \"x0d2ebadfd6cad9d2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4c299527ff336a9e3fcdb25edcf61f608faeb413\", \"live\": true, \"id\": \"x7a02f4da6fe1d5ae\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23a380ec435d39ea411171145ecd1638566572be\", \"live\": true, \"id\": \"xa4dd4f1888d4756a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6f4428f6978e97edc2e55db6ead700f606b290b8\", \"live\": true, \"id\": \"xfcf23c8246a3a5f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c731dac6398544163bc4b01d5ae6a22bbd0f769\", \"live\": true, \"id\": \"x76bcd538d9657bc6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6ed4d9a629dbe3f79e45e5a95d3925b87d609217\", \"live\": true, \"id\": \"xd82a54f58edcbe73\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d28e8ba865723cffa695912b8a29d3cc2de657f\", \"live\": true, \"id\": \"x69181bfbc40a98b3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"21a6aaa1205895cd680816cd0a9752e1f8283299\", \"live\": true, \"id\": \"xf0b791be6ffbde35\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bb8233e8f265381e6b303b145a89379172814edd\", \"live\": true, \"id\": \"x76b8c6584b05d350\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b91733f1ff5500f1c761b291f1b2a07e5beb0a2f\", \"live\": true, \"id\": \"xaf5980ec612a0de5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2763fd555a6f230e4b361bb646afeb8176324351\", \"live\": true, \"id\": \"xbf0d15a652d83367\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7025ccbb2feebed45bb2d2f19a55d56e0a62bdc\", \"live\": true, \"id\": \"x48dc02c74db98265\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"01d81604df3887fe3295dba77a2b26981f29e5d4\", \"live\": true, \"id\": \"x6fe136b190ef1550\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c84626f5e0996c98cd44ce0641795caa15ecf028\", \"live\": true, \"id\": \"x0f958f64599ee83a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"26f529d7d3c629a960848c40b035e166f0adaa97\", \"live\": true, \"id\": \"x1ca0358dd45787d9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e01706bf4b4f3322e581ce696d6f81d5e6aa222b\", \"live\": true, \"id\": \"x444b7390b6574ef1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4c06ed4a9cb32b8d98985207e1c78c3f25a92a19\", \"live\": true, \"id\": \"x40027df391655269\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7ca27f718df881fcee9a73b76e96484053b29836\", \"live\": true, \"id\": \"xcc07d1e07875d52a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"faf8cde577c610ab816fa53d766ec30c82d1bf2f\", \"live\": true, \"id\": \"xf1ed85013579090a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "introduction-to-differential-equations-and-initial-value-problems", "kind": "Exercise", "name": "introduction-to-differential-equations-and-initial-value-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["the-fundamental-theorem-of-calculus", "functions-defined-by-integrals"], "exercise_id": "introduction-to-differential-equations-and-initial-value-problems"}, "gems-of-antiquity-quiz": {"uses_assessment_items": true, "id": "gems-of-antiquity-quiz", "display_name": "Gems of antiquity quiz", "title": "Gems of antiquity quiz", "all_assessment_items": ["{\"sha\": \"5ab20b7dcab44ceb53e77d36755ccfbc7fe753f2\", \"live\": true, \"id\": \"x8c7279dd031ce6ed\"}", "{\"sha\": \"e5ecdaddaab6adb7cce45f8ab9509b8fef93cd4b\", \"live\": true, \"id\": \"x69d538bc16dce6da\"}", "{\"sha\": \"af96320150b44d15ae378c5a409acc6d17b71fec\", \"live\": true, \"id\": \"xbbd8ca279c609c79\"}", "{\"sha\": \"ca75906352741235b5dba74450b2d785b9adef89\", \"live\": true, \"id\": \"x21fc96a591d936c9\"}", "{\"sha\": \"97449002f9ff9e155b38c000d21f2e31c59f21ce\", \"live\": true, \"id\": \"xb5d2561b6fed8bf2\"}", "{\"sha\": \"607947763888d13599d9f3f35ccfbca21619d10b\", \"live\": true, \"id\": \"x67b1cbf434889f1e\"}", "{\"sha\": \"81ee8cf08201924ad4c15a0c444d9cf16b0c11ba\", \"live\": true, \"id\": \"x74263cebdf07e197\"}", "{\"sha\": \"ebe73f3f6f1e8fee46d944b044f9f6656912568b\", \"live\": true, \"id\": \"xec25058eb02c7ed1\"}", "{\"sha\": \"c61440b1a379f05c20376ea575ca00b368081754\", \"live\": true, \"id\": \"xed9ebe9ab1449665\"}", "{\"sha\": \"380eba1d94bb5e9aa280c0c59700582640510ffc\", \"live\": true, \"id\": \"x582c432a1d18b6cb\"}"], "description": "A quiz on gems of antiquity", "basepoints": 12.0, "path": "gems-of-antiquity-quiz/", "slug": "gems-of-antiquity-quiz", "kind": "Exercise", "name": "gems-of-antiquity-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "gems-of-antiquity-quiz"}, "visual-pathways-in-the-brain--and-what-happens-when-they-break": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/visual-pathways-in-the-brain-and-what-happens-when-they-break/", "id": "visual-pathways-in-the-brain--and-what-happens-when-they-break", "display_name": "Visual pathways in the brain, and what happens when they break", "title": "Visual pathways in the brain, and what happens when they break", "all_assessment_items": ["{\"sha\": \"b29c2827b0c462ba163b9992b2c9a651de25285d\", \"live\": true, \"id\": \"xb2136e3d0c367ee6\", \"perseus_api_major_version\": null}", "{\"sha\": \"872de724a704810b224c0a2513d17d3132bfcaa4\", \"live\": true, \"id\": \"xbba3fde51399745b\", \"perseus_api_major_version\": null}", "{\"sha\": \"66d6e3a5050b7412f35568809e1b3e5566b65684\", \"live\": true, \"id\": \"x9d0b6d2bc7be8367\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee0e6ec09bb4b35235621e8165ac72975a1b9f93\", \"live\": true, \"id\": \"xd5a970d877b48840\", \"perseus_api_major_version\": null}", "{\"sha\": \"5a61710cd447849034b907e2b34baaf1da282383\", \"live\": true, \"id\": \"x647aae85c1284349\", \"perseus_api_major_version\": null}"], "description": "Questions related to sensory processing and vision", "basepoints": 10.0, "slug": "visual-pathways-in-the-brain-and-what-happens-when-they-break", "kind": "Exercise", "name": "visual-pathways-in-the-brain--and-what-happens-when-they-break", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "visual-pathways-in-the-brain--and-what-happens-when-they-break"}, "quadrilateral_angles": {"uses_assessment_items": false, "path": "khan/math/geometry/quadrilaterals-and-polygons/quadrilaterals/quadrilateral_angles/", "id": "quadrilateral_angles", "display_name": "Quadrilateral angles", "title": "Quadrilateral angles", "description": "", "basepoints": 14.0, "slug": "quadrilateral_angles", "kind": "Exercise", "name": "quadrilateral_angles", "seconds_per_fast_problem": 7.0, "prerequisites": ["complementary_and_supplementary_angles", "quadrilateral_types"], "exercise_id": "quadrilateral_angles"}, "counting_1": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/order-of-operations/counting-tutorial/counting_1/", "id": "counting_1", "display_name": "Counting 1", "title": "Counting 1", "description": "", "basepoints": 13.0, "slug": "counting_1", "kind": "Exercise", "name": "counting_1", "seconds_per_fast_problem": 6.0, "prerequisites": ["subtraction_4"], "exercise_id": "counting_1"}, "factor-pairs": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/factors-multiples/divisibility_and_factors/factor-pairs/", "id": "factor-pairs", "display_name": "Factor pairs", "title": "Factor pairs", "all_assessment_items": ["{\"sha\": \"710bed5669913745b8b5e3b069df7b1335eb3ea4\", \"live\": true, \"id\": \"x8d8303e4db09c251\"}", "{\"sha\": \"462bb16c228883432c7deaba91c995fcbf18958d\", \"live\": true, \"id\": \"xa3a561675714398e\"}", "{\"sha\": \"222856ca471515f955204d129acd82e711670181\", \"live\": true, \"id\": \"xc6c4df85335e0195\"}", "{\"sha\": \"17858793f4703dfb86ca53441d962e8e1ca9ae91\", \"live\": true, \"id\": \"x99d9d44eab223651\"}", "{\"sha\": \"537d33182cc16ee68b90ec5eb37790ab53af8577\", \"live\": true, \"id\": \"x37681f6eacf8d558\"}", "{\"sha\": \"f981e35c5163d8cf07469828b803c58366341ba2\", \"live\": true, \"id\": \"x8fd0c8c3caa6c4ed\"}", "{\"sha\": \"c9f25bae4ceb6a1086d60f3965e939f53c8a77c9\", \"live\": true, \"id\": \"xf3330881512d2466\"}", "{\"sha\": \"1b9f7bb587f828318cff858cad8bde0645583c25\", \"live\": true, \"id\": \"xcd0b64a5fc7d7837\"}", "{\"sha\": \"50be14ec1278bb1003775fa1a551cdb71c5ea864\", \"live\": true, \"id\": \"x796be31e6af16d00\"}", "{\"sha\": \"734f8b422eabaed5dd412fcf99696d3f8ada84e7\", \"live\": true, \"id\": \"x2bfbb85345f78839\"}", "{\"sha\": \"a9d00c906fe210d027ac6735da26dbafee5f086f\", \"live\": true, \"id\": \"x8c36463701e3a131\"}", "{\"sha\": \"af0868de017aee6c5c0a0493195675a8e05d3678\", \"live\": true, \"id\": \"xee8be14a85bc94d9\"}", "{\"sha\": \"31e6ecfee89a5c0c7f3a9524ed3be85d9e39f1fc\", \"live\": true, \"id\": \"x2d17d798ca2a8d53\"}", "{\"sha\": \"6aa82ef26c929157c7d02e33046f0d1098502828\", \"live\": true, \"id\": \"xb7fe9b79bbe2bbb2\"}", "{\"sha\": \"9b22b18879d31b21f603014a20c0f715313c968f\", \"live\": true, \"id\": \"xa07de39cdaa7ef1d\"}", "{\"sha\": \"b888b6def484d968c4e5686b4d000e2daab8b15f\", \"live\": true, \"id\": \"xc9e837085f019fdf\"}", "{\"sha\": \"16dff779c4a18308080b6c372bdfb1b53fe19b68\", \"live\": true, \"id\": \"x3eb052b1ca7b05d6\"}", "{\"sha\": \"3cf06694454acbf015f5926dc4675c4c635ddb23\", \"live\": true, \"id\": \"x6f16acaa06809dbc\"}", "{\"sha\": \"57054be8c4481e7008cea3e0288b6e79648679d8\", \"live\": true, \"id\": \"x2789831efcb72697\"}", "{\"sha\": \"c504fe276c9978a300df89944d31c5fd12f890eb\", \"live\": true, \"id\": \"x1cc9b015817c9a2a\"}"], "description": "Practice finding factor pairs for whole numbers.", "basepoints": 10.0, "slug": "factor-pairs", "kind": "Exercise", "name": "factor-pairs", "seconds_per_fast_problem": 4.0, "prerequisites": ["divisibility_intuition"], "exercise_id": "factor-pairs"}, "the-synapse---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-synapse-passage-2/", "id": "the-synapse---passage-2", "display_name": "Synaptic transmission between neurons", "title": "Synaptic transmission between neurons", "all_assessment_items": ["{\"sha\": \"ce3eb17ae006f0f88ae4383339357cb565f3cdc8\", \"live\": true, \"id\": \"x9dea98602144bf04\"}", "{\"sha\": \"e248194ac6757181f121f6204c599ea181fb1e1d\", \"live\": true, \"id\": \"xb4496b53cce7c08b\"}", "{\"sha\": \"0a1580eaa08ac3a7e6420bcbeaebcb8e28116b5d\", \"live\": true, \"id\": \"xcc969bc1339a79fe\"}", "{\"sha\": \"1d458288de95affe175493ffa54347ceded04299\", \"live\": true, \"id\": \"x23ef2aca896df793\"}", "{\"sha\": \"9f75603b0c56de2b698bc6d351a4efc2654b64d7\", \"live\": true, \"id\": \"x1065371b0e8459bd\"}"], "description": "", "basepoints": 10.0, "slug": "the-synapse-passage-2", "kind": "Exercise", "name": "the-synapse---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-synapse---passage-2"}, "the-synapse---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-synapse-passage-1/", "id": "the-synapse---passage-1", "display_name": "Neurotransmitter removal from the synapse", "title": "Neurotransmitter removal from the synapse", "all_assessment_items": ["{\"sha\": \"aeb21cb9ed23cfc59e64c9f4b4bd4ae8553a82c4\", \"live\": true, \"id\": \"x7158977f1d5d1d87\"}", "{\"sha\": \"6300d16393aa7e1487cb9a2b5dfc58c90b4595ad\", \"live\": true, \"id\": \"x3b9f1b121ea98e23\"}", "{\"sha\": \"ec77fb52dba2e0a8f4db5c3b2fb10448ec8bf7ec\", \"live\": true, \"id\": \"x6ea8906da6f1b8cf\"}", "{\"sha\": \"6d1d25bcfdf5f124a70e4bcc8f4a924c72f3e9bd\", \"live\": true, \"id\": \"x64b5590ad5c32ad0\"}", "{\"sha\": \"0630cded3d966b3b4b6b658a8563053e2c58078b\", \"live\": true, \"id\": \"xa75aef7e234e5e77\"}"], "description": "", "basepoints": 10.0, "slug": "the-synapse-passage-1", "kind": "Exercise", "name": "the-synapse---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-synapse---passage-1"}, "quiz--describing-graphs": {"uses_assessment_items": true, "path": "khan/computing/computer-science/algorithms/graph-representation/quiz-describing-graphs/", "id": "quiz--describing-graphs", "display_name": "Quiz: Describing graphs", "title": "Quiz: Describing graphs", "all_assessment_items": ["{\"sha\": \"03ef5b983503c382cebb1fd73a56a293c0fc7c39\", \"live\": true, \"id\": \"x7a55e13f677d6923\"}", "{\"sha\": \"f2519afc5588d6535e4da4662bd617bccd2668ed\", \"live\": true, \"id\": \"x0bf6f82fea1e633c\"}", "{\"sha\": \"cbe96500083de41beca2a9270b022ffc954ab589\", \"live\": true, \"id\": \"x71ebcc679583df66\"}", "{\"sha\": \"fda5b5aa5ef720a8d5ea26d0ed3589f0be5514a8\", \"live\": true, \"id\": \"xb9334423b22a09f3\"}", "{\"sha\": \"d41710e9c6ce5ee8418a190b239e39367c2f41fe\", \"live\": true, \"id\": \"x5d95085d00d7a9f5\"}", "{\"sha\": \"40c289a3497c5a1424ccdfe98f5244c5459cd79d\", \"live\": true, \"id\": \"xc7482a0361ebea2b\"}"], "description": "Tests terminology.", "basepoints": 10.0, "slug": "quiz-describing-graphs", "kind": "Exercise", "name": "quiz--describing-graphs", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--describing-graphs"}, "lung-cancer-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/lung-cancer-quiz/", "id": "lung-cancer-quiz", "display_name": "NCLEX-RN questions on lung cancer 1", "title": "NCLEX-RN questions on lung cancer 1", "all_assessment_items": ["{\"sha\": \"c44a829cfb34372c1e681d040b16842ac4a73496\", \"live\": true, \"id\": \"xb129b74019f00732\"}", "{\"sha\": \"f25bae5f115b502dde749cf1c1c56def9bb64c9d\", \"live\": true, \"id\": \"x156d337490375b2d\"}", "{\"sha\": \"954354036cf58b630224778d0d4d87347ff5bbfa\", \"live\": true, \"id\": \"xbd9171e6d90d3962\"}", "{\"sha\": \"470510247014686886aa889538f500b7394b70f4\", \"live\": true, \"id\": \"xf6054b0e09a4ee88\"}", "{\"sha\": \"84b8427084716121f1d9665fd14adf02a0c78b78\", \"live\": true, \"id\": \"x5e3b3e0ebe2ecc28\"}", "{\"sha\": \"982a58d01df8d847663937d074fe782f281cd30f\", \"live\": true, \"id\": \"x1b9edba5e415034b\"}", "{\"sha\": \"04fbcfcf3354095433aa8c3a5704c293fa93df3c\", \"live\": true, \"id\": \"xe7c3600e225149d1\"}", "{\"sha\": \"06d8226b3723e90bd9aa5b940b349be6f80b8c06\", \"live\": true, \"id\": \"x9ee33f17a2e7cccf\"}", "{\"sha\": \"ac7780b3107bcf67294b405efdb4476683ced692\", \"live\": true, \"id\": \"x0d892bb8b14a5032\"}", "{\"sha\": \"449dc56768b114d0ae06231235faefaf416ab246\", \"live\": true, \"id\": \"xe0694cf07a66121d\"}"], "description": "NCLEX-RN style questions related to lung cancer", "basepoints": 10.0, "slug": "lung-cancer-quiz", "kind": "Exercise", "name": "lung-cancer-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "lung-cancer-quiz"}, "decimals_on_the_number_line_1": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/decimals_on_the_number_line_1/", "id": "decimals_on_the_number_line_1", "display_name": "Decimals on the number line 1", "title": "Decimals on the number line 1", "description": "Practice finding decimal numbers on the number line. Decimals are limited to tenths in these problems.", "basepoints": 12.0, "slug": "decimals_on_the_number_line_1", "kind": "Exercise", "name": "decimals_on_the_number_line_1", "seconds_per_fast_problem": 5.0, "prerequisites": ["decimal-intuition-with-grids"], "exercise_id": "decimals_on_the_number_line_1"}, "decimals_on_the_number_line_3": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/decimals-on-number-line-pre-alg/decimals_on_the_number_line_3/", "id": "decimals_on_the_number_line_3", "display_name": "Decimals on the number line 3", "title": "Decimals on the number line 3", "description": "Practice placing positive and negative decimal numbers on the number line.", "basepoints": 13.0, "slug": "decimals_on_the_number_line_3", "kind": "Exercise", "name": "decimals_on_the_number_line_3", "seconds_per_fast_problem": 6.0, "prerequisites": ["number_line_2"], "exercise_id": "decimals_on_the_number_line_3"}, "decimals_on_the_number_line_2": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/decimals_on_the_number_line_2/", "id": "decimals_on_the_number_line_2", "display_name": "Decimals on the number line 2", "title": "Decimals on the number line 2", "description": "Practice finding decimal numbers on the number line. Decimals are limited to hundredths in these problems.", "basepoints": 12.0, "slug": "decimals_on_the_number_line_2", "kind": "Exercise", "name": "decimals_on_the_number_line_2", "seconds_per_fast_problem": 5.0, "prerequisites": ["decimals_on_the_number_line_1"], "exercise_id": "decimals_on_the_number_line_2"}, "proportions_1": {"uses_assessment_items": false, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/proportions_1/", "id": "proportions_1", "display_name": "Proportions 1", "title": "Proportions 1", "description": "", "basepoints": 18.0, "slug": "proportions_1", "kind": "Exercise", "name": "proportions_1", "seconds_per_fast_problem": 13.0, "prerequisites": ["constructing-and-comparing-proportional-relationships"], "exercise_id": "proportions_1"}, "19th-century": {"uses_assessment_items": true, "id": "19th-century", "display_name": "Quiz: 19th century", "title": "Quiz: 19th century", "all_assessment_items": ["{\"sha\": \"ba895c3e626fb40a9092682fa9ad7352df20b0b9\", \"live\": true, \"id\": \"xc2ccc9faf7151a2d\"}", "{\"sha\": \"c4219b60f2451eae5de61718d57bde21016731de\", \"live\": true, \"id\": \"x5e7418194e51ede4\"}", "{\"sha\": \"f6314cb1838423a2fcbe1ef4fca302a3c94be5f0\", \"live\": true, \"id\": \"x6ac2b267a54ed6ca\"}", "{\"sha\": \"ebb6ac604884a24c9dead486ef8205b955da6316\", \"live\": true, \"id\": \"xc4a5cecde690ff0c\"}", "{\"sha\": \"dc507f782d3f7e25f08349ffbb0cae79c785f08a\", \"live\": true, \"id\": \"xff8a7156096e3c65\"}"], "description": "Test your knowledge of British art in the 19th century.", "basepoints": 10.0, "path": "19th-century/", "slug": "19th-century", "kind": "Exercise", "name": "19th-century", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "19th-century"}, "proportions_2": {"uses_assessment_items": false, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/proportions_2/", "id": "proportions_2", "display_name": "Proportions 2", "title": "Proportions 2", "description": "", "basepoints": 21.0, "slug": "proportions_2", "kind": "Exercise", "name": "proportions_2", "seconds_per_fast_problem": 19.0, "prerequisites": ["proportions_1", "linear_equations_3"], "exercise_id": "proportions_2"}, "parallel_lines_1": {"uses_assessment_items": true, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/parallel_lines_1/", "id": "parallel_lines_1", "display_name": "Parallel lines 1", "title": "Parallel lines 1", "all_assessment_items": ["{\"sha\": \"137481b2b7f4cb28d842f13b29af7ef736756b17\", \"live\": true, \"id\": \"x8f57deefcc39d884\", \"perseus_api_major_version\": 0}", "{\"sha\": \"db74bbec62613a4ecef8d2a18cc3a6d9bee84f23\", \"live\": true, \"id\": \"x990af93fa6f24178\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d4cdb0267df7ec59694b9897fbe2cf08c850b54f\", \"live\": true, \"id\": \"x0b11e95bdab3f1f4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"487dc3ac531ecfb121663caeaa2bea0006944869\", \"live\": true, \"id\": \"xb13767aece97ee03\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0e7bf1c36c6c2502936a205a37be62fccc38a74f\", \"live\": true, \"id\": \"x31da49d473c4cc62\", \"perseus_api_major_version\": 0}", "{\"sha\": \"41903e014c5b0db062e4e714158455de43d7a798\", \"live\": true, \"id\": \"x548395f1c4ca12c3\", \"perseus_api_major_version\": 0}", "{\"sha\": \"35ce9499a4586b1f995d0f9a5639c0472a9e94be\", \"live\": true, \"id\": \"xa3f7803a3d8b37a7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0811b5559bfb0ad13ba8a897869872aa4fbfed8f\", \"live\": true, \"id\": \"x838e426d9487b28a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1c3d99eccb83b7aff75461701de937eb0e410f62\", \"live\": true, \"id\": \"xe808b20137974cb7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ffe483d06edc1463f9630c7be6a17cbe91cba2c8\", \"live\": true, \"id\": \"xfb4bbea788011ac6\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b560bc7584f4d3d8049b751d7dfcee9b414853ad\", \"live\": true, \"id\": \"xe2162c3338a43a06\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c7fa6e2c44b232631f73ac7e9fd566fce08d5c10\", \"live\": true, \"id\": \"x9c9de026df590299\", \"perseus_api_major_version\": 0}", "{\"sha\": \"43e266dc0a17dee6d1cfbf1983c306ccc68fdbf1\", \"live\": true, \"id\": \"xdc60eb138cdcb592\", \"perseus_api_major_version\": 0}", "{\"sha\": \"03f7cb7148327a36e0f4706a4c8b0986cddbf2e7\", \"live\": true, \"id\": \"x756f83b352e087c6\", \"perseus_api_major_version\": 0}", "{\"sha\": \"cb21de77d87d282c3046b97b38b4125b40eb5e03\", \"live\": true, \"id\": \"xd3715e9dde40aa65\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d82ca324e64432ea8d518409d4348aa3d93e5d43\", \"live\": true, \"id\": \"x49e70438dd9898ce\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b8285cda2b893c086fbfd629787af44623602203\", \"live\": true, \"id\": \"xfac1f41c4d33feaa\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3e6a1f39e4e6e0403de40e004d3921b1d11edce0\", \"live\": true, \"id\": \"x5602983628fe349f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ed4a4ddb70b2e51ef455f5a4e7c00d80bc99a40f\", \"live\": true, \"id\": \"x1aeff2d3c837a981\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6bb74a0a7002522b7490b8d6a297f9d0d92f049f\", \"live\": true, \"id\": \"xf670bfdaddf45590\", \"perseus_api_major_version\": 0}", "{\"sha\": \"66fb59e9cce0123cf35a27b958fffb25c35103b0\", \"live\": true, \"id\": \"x2114fea86dbf76b2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"36426cd5b6abfb280bdd2691159354259ad4cedb\", \"live\": true, \"id\": \"xe6b59dab2b12e70a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"00ca8c786e83f6ad919d46311d6ba7a03b34a0d0\", \"live\": true, \"id\": \"x6db80002631e214d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1dfd6ffffe031387e488bb17e264de3e22633af6\", \"live\": true, \"id\": \"x3dda43dd251b3546\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ab9e44ad0afa0a2efd53f93c80dd9eb5d369cf6c\", \"live\": true, \"id\": \"x8475667e3df5fb07\", \"perseus_api_major_version\": 0}", "{\"sha\": \"65e60f88563615b3aecef4e927e2d01a7d0c0e5e\", \"live\": true, \"id\": \"xa18dddedf6b91d55\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5c4b051326d54fe6c514f62037e3f8efeba57964\", \"live\": true, \"id\": \"xfc6c8c2a2c7c1947\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4c3f4cf1b349d0b2974d384091200dc072351cf2\", \"live\": true, \"id\": \"xaa96da03f8a96d44\", \"perseus_api_major_version\": 0}", "{\"sha\": \"09db20c00dff9d622b149ef1ed88fd5f3a0ee2ff\", \"live\": true, \"id\": \"x0bfe7b7296550082\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d6cfd0970a09d52534d69c2c64ccf07a5c6b4ab0\", \"live\": true, \"id\": \"x94d9bb14bc89f97d\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 14.0, "slug": "parallel_lines_1", "kind": "Exercise", "name": "parallel_lines_1", "seconds_per_fast_problem": 7.0, "prerequisites": ["complementary_and_supplementary_angles", "congruent_angles"], "exercise_id": "parallel_lines_1"}, "parallel_lines_2": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/parallel_lines_2/", "id": "parallel_lines_2", "display_name": "Equation practice with congruent angles", "title": "Equation practice with congruent angles", "description": "", "basepoints": 25.0, "slug": "parallel_lines_2", "kind": "Exercise", "name": "parallel_lines_2", "seconds_per_fast_problem": 31.0, "prerequisites": ["parallel_lines_1"], "exercise_id": "parallel_lines_2"}, "average-rate-of-change-word-problems": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/average_rate_of_change/average-rate-of-change-word-problems/", "id": "average-rate-of-change-word-problems", "display_name": "Average rate of change word problems", "title": "Average rate of change word problems", "all_assessment_items": ["{\"sha\": \"ab9180769a471339a0d1e5f9ab2e519d702adf6c\", \"live\": true, \"id\": \"x99ac5db1a0d21499\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ece472d9d905ca7674e05e36ea672d444b4d6c0e\", \"live\": true, \"id\": \"x26b31bb3fb89fded\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0798597085b538b11dd635558253abbefbd7c5a1\", \"live\": true, \"id\": \"x9e302474e220953a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9651894a6629b3a4afbd8326b0afa2b6232bdfd5\", \"live\": true, \"id\": \"x13270a1ee15be485\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4c665992ca72ac7b51b00125502aa339763ad734\", \"live\": true, \"id\": \"x7774d82835bbace3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e36867b618e85f3cf54124cff076b45da1de89a8\", \"live\": true, \"id\": \"xf2f8238d7156f9fa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"781ff1657f63de44528e8d46ead0321233732ca6\", \"live\": true, \"id\": \"x59ed0dd4435299ec\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8cefa95a74038b2a815092eeb06b295cf91894f8\", \"live\": true, \"id\": \"x40364a85c150e7d0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"641635010a20e4e3b3d4e21fad3e1be9f6e28430\", \"live\": true, \"id\": \"xb8125ff1268cd6c0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a84d6c28c82ff12682ecc9eccaa896210d0c4d5e\", \"live\": true, \"id\": \"xf327224055095cac\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6742e436d0773227e31866baf6067458a5529662\", \"live\": true, \"id\": \"x0641d19e045e0d71\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"73ab1488903273ea2aac37cc73d648be59986631\", \"live\": true, \"id\": \"x532b86a95e4256c9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"30084406da5ba1f37784feb415c0656de41e9ce8\", \"live\": true, \"id\": \"xcb9065a50c62db6f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d5630caee92f470050f8919f9e87093188b7021a\", \"live\": true, \"id\": \"x2e9cb345cc754254\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d38ae865559e5a3243a2f8b33605e9a99555796\", \"live\": true, \"id\": \"x19f29d7c9fe7bbb9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d274f2044f7b04ade34160ab17e5d928e68b19a\", \"live\": true, \"id\": \"xcfed277a62171101\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0d63a4c87a88f357b183cb3915246cabee43d608\", \"live\": true, \"id\": \"xbd1542e148d273d5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4939ef7809aaa83476eef2b6610403cbbfee7ace\", \"live\": true, \"id\": \"xac4530a80a201e7f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c4ea4f948f7175656e6583377b7b17cdd414f1bd\", \"live\": true, \"id\": \"x606a7429d8e67402\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48410a0e460c217881fc6b657a86bcf2206e5701\", \"live\": true, \"id\": \"x7861562066665d32\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"789a514d22fd3f57faacb84dbbf7abe3c7f34ff6\", \"live\": true, \"id\": \"x71b4f1d2f94d283c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3c4af8161517fef181114fc783f1792e14df3477\", \"live\": true, \"id\": \"x4dd74dc6b76df582\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c6ff0f9028fb0c6861e4e3b0a5ef09ac7e6201b3\", \"live\": true, \"id\": \"xb6890ab0ed691a90\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8923bbda9e48cf911aa357630da78d8d3bedaa50\", \"live\": true, \"id\": \"x4c51fd556b946fc5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bc679b9a15588656b46484fd9ab274f9977dd492\", \"live\": true, \"id\": \"xccb40cf1efde6a6f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"85fea389e8e0953c7120ae5a2dfa14562fce9d34\", \"live\": true, \"id\": \"xc83e785dfd52db9d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"09adb7b1fa94cfd0fa891fe72e3672f37ef39cf6\", \"live\": true, \"id\": \"x6df1a44db5a9c926\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f449906d1d1b2dba1828fcc77acb6b3bddc369e\", \"live\": true, \"id\": \"xf7532d79eaf38d72\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b9a9f7d0271537916f4ec702be24ea5a4dbc869f\", \"live\": true, \"id\": \"x8e1fffd6aa70331d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1607b47021fe79f07c680cbac46ac1ee33d00183\", \"live\": true, \"id\": \"x0cdcb25e5dcc1b4a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Find and interpret average rates of change", "basepoints": 10.0, "slug": "average-rate-of-change-word-problems", "kind": "Exercise", "name": "average-rate-of-change-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["avg-rate-of-change", "interpret-features-func-2"], "exercise_id": "average-rate-of-change-word-problems"}, "amino-acids-and-proteins": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/amino-acids-and-proteins/", "id": "amino-acids-and-proteins", "display_name": "Collagen mutations result in Osteogenesis imperfecta ", "title": "Collagen mutations result in Osteogenesis imperfecta", "all_assessment_items": ["{\"sha\": \"c7b60560ee931d0914f0aa5d0a4a690151243509\", \"live\": true, \"id\": \"x3b3dc760202be061\"}", "{\"sha\": \"f9da38b91e799155e9f8646f0d7f39a3e4156765\", \"live\": true, \"id\": \"x15dd5a1a0d14bef8\"}", "{\"sha\": \"aabba62032d4209bd2ccb4690106874a5b7328a5\", \"live\": true, \"id\": \"x5886ce270df30ace\"}", "{\"sha\": \"ad98a230bef9221f4ae5643ee881ea008d199029\", \"live\": true, \"id\": \"x93be6da43cf430d3\"}", "{\"sha\": \"a86037c10e7b0fcfb031bfccfb6ef698cf81c27e\", \"live\": true, \"id\": \"xd4c978c8025bd3ce\"}"], "description": "", "basepoints": 10.0, "slug": "amino-acids-and-proteins", "kind": "Exercise", "name": "amino-acids-and-proteins", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "amino-acids-and-proteins"}, "even_and_odd_functions": {"uses_assessment_items": false, "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/even_and_odd_functions/", "id": "even_and_odd_functions", "display_name": "Even and odd functions", "title": "Even and odd functions", "description": "Determine if a graphed function is even, odd, or neither.", "basepoints": 12.0, "slug": "even_and_odd_functions", "kind": "Exercise", "name": "even_and_odd_functions", "seconds_per_fast_problem": 5.0, "prerequisites": ["functions_2"], "exercise_id": "even_and_odd_functions"}, "florence-in-the-1300s": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/late-gothic-italy/florence-late-gothic/florence-in-the-1300s/", "id": "florence-in-the-1300s", "display_name": "Florence in the 1300s (quiz)", "title": "Florence in the 1300s (quiz)", "all_assessment_items": ["{\"sha\": \"29df9508a7ca7d1b817086a7f011e56ce48690a1\", \"live\": true, \"id\": \"x2037dd31fe16feaa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87f638345d086d8440e4a971b2919e15f9fae2d7\", \"live\": true, \"id\": \"x959b894bbd5c653b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b5e20246aff0a5f115800c4569995a99829c4f31\", \"live\": true, \"id\": \"xdd95eed4a2917aac\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"937e47b86307bf5c1fd52a3f154a09686387e094\", \"live\": true, \"id\": \"xc0aa4eac17de7319\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"acb835a053ef3750bad50ae48403085bf594ba24\", \"live\": true, \"id\": \"x814117ede43140b6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3975109e0f5a3ac2b3e5d0bc823917b33e67d9ac\", \"live\": true, \"id\": \"xa946d24aa06c59b9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"31bc42a44632d10d35162c274ca878e571ca0434\", \"live\": true, \"id\": \"x85d313c9d5c8b0c9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c30e1a7503884b7606b25f6aa08b0e7623f19019\", \"live\": true, \"id\": \"x7596a06c887a1f6e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "florence-in-the-1300s", "kind": "Exercise", "name": "florence-in-the-1300s", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "florence-in-the-1300s"}, "dividing_decimals_0.5": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/dividing_decimals_05/", "id": "dividing_decimals_0.5", "display_name": "Dividing completely", "title": "Dividing completely", "description": "Divide two whole numbers to get a quotient with a decimal. \u00a0", "basepoints": 17.0, "slug": "dividing_decimals_05", "kind": "Exercise", "name": "dividing_decimals_0.5", "seconds_per_fast_problem": 10.0, "prerequisites": ["multiplying_decimals_1", "division_3", "division_2"], "exercise_id": "dividing_decimals_0.5"}, "solutions-to-linear-equations": {"uses_assessment_items": true, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solutions-linear-equations/solutions-to-linear-equations/", "id": "solutions-to-linear-equations", "display_name": "Linear equations with one, zero, or infinite solutions", "title": "Linear equations with one, zero, or infinite solutions", "all_assessment_items": ["{\"sha\": \"0740c5b361e646af8cabbdd81c6ae77ebaa8b0bb\", \"live\": true, \"id\": \"x30d9c20b\"}", "{\"sha\": \"9960f5d5c91694edb3a8a777278f475b2e4f69cb\", \"live\": true, \"id\": \"xea9c26f2\"}", "{\"sha\": \"e5de1a4f3e0cd749b833c229efa76c666bb10c80\", \"live\": true, \"id\": \"x56646a09\"}", "{\"sha\": \"923b6b4f3f788b6e17de1e55622b751d1603f315\", \"live\": true, \"id\": \"x63426d99\"}", "{\"sha\": \"3e05ad2f41e460b013bc912855125d5c03adb256\", \"live\": true, \"id\": \"xd722587d\"}", "{\"sha\": \"ba8b0f48b6971a6d7ba12713a7ee657ed364fa02\", \"live\": true, \"id\": \"xa79b229c\"}", "{\"sha\": \"700c98104dde4983de57551beafd74bc8bb86f12\", \"live\": true, \"id\": \"xea4efef6\"}", "{\"sha\": \"479283a9af3cb3cbb6f792fef24d22531a321578\", \"live\": true, \"id\": \"xfee45aeb\"}", "{\"sha\": \"be3270c895e50d3bcdd485b806a82dfc1a9a7885\", \"live\": true, \"id\": \"xce8a820e\"}", "{\"sha\": \"d56141bac67088bf5279b0231eadeed02650f516\", \"live\": true, \"id\": \"xbacda1e4\"}", "{\"sha\": \"e8ee6043888fd3294441c902e9c77865e667fa2b\", \"live\": true, \"id\": \"x5a4a92b3\"}", "{\"sha\": \"ab3bba5d9ef428ab1ab6f3228d20e8ff10196d84\", \"live\": true, \"id\": \"xc6396e9e\"}", "{\"sha\": \"c1fd7d92a83699d1db04c240c1e69e2da95d5eec\", \"live\": true, \"id\": \"x4adb33f1\"}", "{\"sha\": \"07d4f372e71e510d8b9159bf7580e13e83aac100\", \"live\": true, \"id\": \"x3609eca8\"}", "{\"sha\": \"df7153ac7c29fdd49c792cc5b14b50b4477327dd\", \"live\": true, \"id\": \"x2b9e76fb\"}", "{\"sha\": \"188d5cca2fc608978bb34b45816332dd9fad9121\", \"live\": true, \"id\": \"x5ef33183\"}", "{\"sha\": \"127ba42b4dbfc729c6299a7235d8cbc7bb3c9fff\", \"live\": true, \"id\": \"x9c5ac416\"}", "{\"sha\": \"b730fc1964631c18dc641e33892cf7f0f7bd2362\", \"live\": true, \"id\": \"xcd90103a\"}", "{\"sha\": \"2b90ddbac54337a10ce2d5c209bf2381db4b0478\", \"live\": true, \"id\": \"x933bcf6f\"}", "{\"sha\": \"f258b3775af68b2ebd2979ca938c5baee26f9585\", \"live\": true, \"id\": \"x3d510751\"}", "{\"sha\": \"46369393dc709402704f3dd745331ec75a19dd61\", \"live\": true, \"id\": \"x5ad5109e\"}", "{\"sha\": \"013591957358bcafd089d965325e0c8ae739c830\", \"live\": true, \"id\": \"xcf900678\"}", "{\"sha\": \"84c2cd035f9d6c787a777bc6c70d5bea826fb4cf\", \"live\": true, \"id\": \"x1f20015e\"}", "{\"sha\": \"be10645e8f0b5e2a75d2282bd690bd24c8bf5e36\", \"live\": true, \"id\": \"x9ad845da\"}", "{\"sha\": \"fadad2d8a960b6f027ab9c2af9a3754731797886\", \"live\": true, \"id\": \"xfc073936\"}", "{\"sha\": \"809564681292eeef3eb110396a649c381b92e21b\", \"live\": true, \"id\": \"x0d87cbf7\"}", "{\"sha\": \"87059a73c8eba252c2a90325cfeded2a87ab9045\", \"live\": true, \"id\": \"x604dd0a1\"}", "{\"sha\": \"d928629fbf2488cfb3ef7c5aef71387817a917c4\", \"live\": true, \"id\": \"x3171b988\"}", "{\"sha\": \"0d9817a21b0c5dbb012d16db8889017fb06286f7\", \"live\": true, \"id\": \"xd903a991\"}", "{\"sha\": \"43189f22d52d3201f5d6c97f3b0dd666c87b64fd\", \"live\": true, \"id\": \"xee12f2a5\"}"], "description": "", "basepoints": 18.0, "slug": "solutions-to-linear-equations", "kind": "Exercise", "name": "solutions-to-linear-equations", "seconds_per_fast_problem": 12.0, "prerequisites": ["linear_equations_3"], "exercise_id": "solutions-to-linear-equations"}, "parabola_intuition_1": {"uses_assessment_items": false, "path": "khan/math/algebra2/conics_precalc/parabolas_precalc/parabola_intuition_1/", "id": "parabola_intuition_1", "display_name": "Parabola intuition 1", "title": "Parabola intuition 1", "description": "Make one parabola overlap with another by adjusting the leading coefficient and vertex coordinates.", "basepoints": 20.0, "slug": "parabola_intuition_1", "kind": "Exercise", "name": "parabola_intuition_1", "seconds_per_fast_problem": 16.0, "prerequisites": ["line_graph_intuition"], "exercise_id": "parabola_intuition_1"}, "multiplying_radicals": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/multiplying_radicals/", "id": "multiplying_radicals", "display_name": "Simplifying square roots 2", "title": "Simplifying square roots 2", "description": "Multiply expressions containing radicals.", "basepoints": 19.0, "slug": "multiplying_radicals", "kind": "Exercise", "name": "multiplying_radicals", "seconds_per_fast_problem": 14.0, "prerequisites": ["simplifying_radicals"], "exercise_id": "multiplying_radicals"}, "sluter-s-well-of-moses-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/sluter/sluter-s-well-of-moses-quiz/", "id": "sluter-s-well-of-moses-quiz", "display_name": "Sluter, Well of Moses (quiz)", "title": "Sluter, Well of Moses (quiz)", "all_assessment_items": ["{\"sha\": \"d9a016b8917f144d08d94d9359fd958d6a399043\", \"live\": true, \"id\": \"x631b6f183848e45e\"}", "{\"sha\": \"7153fb8492112cfcfdef465c82c887ecddc91e9b\", \"live\": true, \"id\": \"xa1543323afb17834\"}", "{\"sha\": \"783594496ef99a8a42062dcf449b4d5d92cab588\", \"live\": true, \"id\": \"xc8c57bf5d3b7dd08\"}", "{\"sha\": \"62149af97e67467866c1c0b0168014119552c253\", \"live\": true, \"id\": \"xbfd24bb0ae75deff\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "sluter-s-well-of-moses-quiz", "kind": "Exercise", "name": "sluter-s-well-of-moses-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sluter-s-well-of-moses-quiz"}, "skip-counting-by-100s": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/skip-counting-by-100s/", "id": "skip-counting-by-100s", "display_name": "Skip-counting by 100s", "title": "Skip-counting by 100s", "all_assessment_items": ["{\"sha\": \"7e1172f41ea63d1176bca468144e04b559423729\", \"live\": true, \"id\": \"xcc996f8de955a58c\"}", "{\"sha\": \"0846f96c6c02f37d24b426f3932ae0cde436a901\", \"live\": true, \"id\": \"xa3ea098328c381f5\"}", "{\"sha\": \"9d39dc840aac0e536248b0ada037731f96e2132e\", \"live\": true, \"id\": \"xcb927c1a6e126449\"}", "{\"sha\": \"a1ed98588355101d73f40a9389aea5132dcd2a59\", \"live\": true, \"id\": \"xb15fc2ee226d67cd\"}", "{\"sha\": \"cf0caaf4aeb20f385feed9e2294a477c85f7b451\", \"live\": true, \"id\": \"x7e89947c9bd3a0dc\"}", "{\"sha\": \"b9bd80cf016904f9b4d547cf2f6720667b2c5699\", \"live\": true, \"id\": \"x94ff327b581eccbb\"}", "{\"sha\": \"d3234faab023c8b949d93beaf0f6c8075746c16b\", \"live\": true, \"id\": \"xb955bec2f8825aaf\"}", "{\"sha\": \"465b03e797f4894b811f5fd59bfa44ee57281cc9\", \"live\": true, \"id\": \"x3cd5f4abe0b0f48c\"}", "{\"sha\": \"bdff5e2b1efee3b223a2ad2d2b38d2577190cd27\", \"live\": true, \"id\": \"x1b54e0bee06b9f87\"}", "{\"sha\": \"4b37833bbcfb675ea9fcdf4a5d00610a6712dbae\", \"live\": true, \"id\": \"xa709846e30a6db7f\"}", "{\"sha\": \"548345edcb0662672f2a73941283d2653e8f4d07\", \"live\": true, \"id\": \"x6d62516a1e457ad2\"}", "{\"sha\": \"3aedab827abc0b6a850bf10e480b295a0d6c248e\", \"live\": true, \"id\": \"x9db2b67885c7ea52\"}", "{\"sha\": \"5b00f44a8af837da3f03765b28bcdb1051e52c7b\", \"live\": true, \"id\": \"xfd56b6352ea47c0b\"}", "{\"sha\": \"b1568652b53b6c4582b8c779e87ae5c87201817c\", \"live\": true, \"id\": \"xba00570548b695db\"}", "{\"sha\": \"3750133cb725fb24d337c9e1d18ada00ef8fb79f\", \"live\": true, \"id\": \"x718716733e1a0adc\"}", "{\"sha\": \"192cac53a63f7e4795206014bccd14d4feec58a7\", \"live\": true, \"id\": \"x6fa097c592fed77f\"}", "{\"sha\": \"5a52eafbf767fe76d36cbffb3b270306c577fad0\", \"live\": true, \"id\": \"xc9a6c740ed59c19c\"}", "{\"sha\": \"aa85b06daf847ebe7764b9ab6295577b7127db59\", \"live\": true, \"id\": \"xf57b0464a2d1235a\"}", "{\"sha\": \"0dfc76c15bb7258bd8fd2e83f629ecb6877df169\", \"live\": true, \"id\": \"x0e82c824acecc8d8\"}", "{\"sha\": \"6288c29bfe6630ac3422791c287139b12970e221\", \"live\": true, \"id\": \"x59017c130554e046\"}"], "description": "Practice counting by hundreds.", "basepoints": 10.0, "slug": "skip-counting-by-100s", "kind": "Exercise", "name": "skip-counting-by-100s", "seconds_per_fast_problem": 4.0, "prerequisites": ["skip-counting-by-10s"], "exercise_id": "skip-counting-by-100s"}, "two-sided-limits-from-graphs": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/limits_topic/calculus-estimating-limits-graph/two-sided-limits-from-graphs/", "id": "two-sided-limits-from-graphs", "display_name": "Two-sided limits from graphs", "title": "Two-sided limits from graphs", "all_assessment_items": ["{\"sha\": \"c1bce9286becffe7a076b312ca0a1b08f98e0d52\", \"live\": true, \"id\": \"xd0211128d07d37c1\", \"perseus_api_major_version\": 3}", "{\"sha\": \"611066884aa159b22cdc657e878a4d9d167d653d\", \"live\": true, \"id\": \"x0d83a64dcc4816b7\", \"perseus_api_major_version\": null}", "{\"sha\": \"7b55299b0181c3f6c8b21881e3d8a3ee61c4b4ac\", \"live\": true, \"id\": \"x0b4add4feaf26d50\", \"perseus_api_major_version\": null}", "{\"sha\": \"2798857786808592f8a602e193513aaeacf9e61b\", \"live\": true, \"id\": \"x77d7f23fb22bc4f0\", \"perseus_api_major_version\": null}", "{\"sha\": \"c19b2631912a9acdee6917e2596084cb214b5eec\", \"live\": true, \"id\": \"xdbcab33691a410d9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"00aac2db42b7a3dc702d010f1676a2135991c1b7\", \"live\": true, \"id\": \"xc022aafb01e38c22\", \"perseus_api_major_version\": null}", "{\"sha\": \"111350b0a701ea83a1f9847b0192f4b9a5aab311\", \"live\": true, \"id\": \"xc7f58d3f5356ba6a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"567acfcd57d4f42650a6473b424d0ae8c4daf7fa\", \"live\": true, \"id\": \"xfb10a66c88b0ed0c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b81755f5ddd833b487dde4c12e3eec9d8addf6cf\", \"live\": true, \"id\": \"x02d38e30ff5f23ba\", \"perseus_api_major_version\": null}", "{\"sha\": \"bfd93651e27130e7c6620f59217e2d44078aa14a\", \"live\": true, \"id\": \"x355fa2a458c3d8f9\", \"perseus_api_major_version\": null}", "{\"sha\": \"e013b3a3f259401018fca9db713631feafd17f68\", \"live\": true, \"id\": \"x79752c3fbeec4e90\", \"perseus_api_major_version\": null}", "{\"sha\": \"2584c758590a94758d4f588de46baad4ab1038a3\", \"live\": true, \"id\": \"xd4b90399423f9a48\", \"perseus_api_major_version\": 3}", "{\"sha\": \"10dc7998ec57b200c1bd8645d2164f0215e03a77\", \"live\": true, \"id\": \"xe10a8177788eb76e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"cdcef795430d5fe2067566c5647d1a4d241f5093\", \"live\": true, \"id\": \"xe12cf66f393edff6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"dda4414998632eca71e52e762aec6420881e8309\", \"live\": true, \"id\": \"xd9abf6f1f323793c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"db01db0e1910a36f53aaf90eef2b4fddace06be3\", \"live\": true, \"id\": \"xa598b24503bb2fca\", \"perseus_api_major_version\": null}", "{\"sha\": \"a919dbf9fdd165fc63ca6546cdabcc9940b877cb\", \"live\": true, \"id\": \"x4aadae2b247b4102\", \"perseus_api_major_version\": null}", "{\"sha\": \"e0af61798fd24432fda50187b46e760dbefe6741\", \"live\": true, \"id\": \"x6903dbad148636e4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6a52b5e476115eb8dcc224fdac9c9fb62f28d3ea\", \"live\": true, \"id\": \"xedb2294184f07b56\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f4d4ff268f265da26c37a7ceb8775363b0277177\", \"live\": true, \"id\": \"x6fe81b03bd124c96\", \"perseus_api_major_version\": 3}", "{\"sha\": \"76bc7d8df11166e5f3887502652a046da149b4b1\", \"live\": true, \"id\": \"x30d5f0995c9d5ec4\", \"perseus_api_major_version\": null}", "{\"sha\": \"ec559583a96e6e05e92d050c21abcd270bdbf787\", \"live\": true, \"id\": \"x08b7347900c069b6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f9c83e18cd91b4e7c4171c5c5522ef078a19c585\", \"live\": true, \"id\": \"xdde8140dcee157a1\", \"perseus_api_major_version\": null}", "{\"sha\": \"0078ca58c5f17933acf53035576bd16290e03db7\", \"live\": true, \"id\": \"x8ea8f20baab32839\", \"perseus_api_major_version\": null}", "{\"sha\": \"b6a38959e4277c61f870d36b965e10c17ac88e5d\", \"live\": true, \"id\": \"x40e700025d4d542e\", \"perseus_api_major_version\": null}", "{\"sha\": \"9127c4e36d19abc1664ef63e7ed484328b7c8001\", \"live\": true, \"id\": \"x9951121918c05ddb\", \"perseus_api_major_version\": null}", "{\"sha\": \"c9691231ef280bff62424fdaff445f490755d0df\", \"live\": true, \"id\": \"x47505d4b5688855e\", \"perseus_api_major_version\": null}", "{\"sha\": \"89c4c12db68976b5471048cda34d0724eab216f4\", \"live\": true, \"id\": \"xef9626597bb2af99\", \"perseus_api_major_version\": null}", "{\"sha\": \"7f1501d1c6f666a61f542d01324d818ea91b57c7\", \"live\": true, \"id\": \"xc5623e06c7afb654\", \"perseus_api_major_version\": null}", "{\"sha\": \"4d84365d958e0f642e87da84dfd37f1bf6c5ee49\", \"live\": true, \"id\": \"xb9be0c7208672aec\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 16.0, "slug": "two-sided-limits-from-graphs", "kind": "Exercise", "name": "two-sided-limits-from-graphs", "seconds_per_fast_problem": 9.0, "prerequisites": ["one-sided-limits-from-graphs"], "exercise_id": "two-sided-limits-from-graphs"}, "force-of-tension---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/force-of-tension-passage-1/", "id": "force-of-tension---passage-1", "display_name": "Force of tension - Passage 1", "title": "Force of tension - Passage 1", "all_assessment_items": ["{\"sha\": \"8876d5e766ed45cfc3a97858274bf0ceab49f931\", \"live\": true, \"id\": \"x4bd2dd790b6580f2\"}", "{\"sha\": \"7d6baa22d193ef04fb4bc965208bdf980becdf71\", \"live\": true, \"id\": \"x95a61a9478ee1930\"}", "{\"sha\": \"c28144c90160f48e5e85b15716b5fa93373e897c\", \"live\": true, \"id\": \"xe28b304c98f81a5d\"}", "{\"sha\": \"38961dd441ee62d646e76e93d1943b121b4edccb\", \"live\": true, \"id\": \"x6df8e7521a0ca557\"}", "{\"sha\": \"8148e7b66911455b99a5a279c700e5a0f81a5829\", \"live\": true, \"id\": \"x1f2fbb28dff5a057\"}"], "description": "", "basepoints": 10.0, "slug": "force-of-tension-passage-1", "kind": "Exercise", "name": "force-of-tension---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "force-of-tension---passage-1"}, "niobid-krater-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/niobid-krater-quiz/", "id": "niobid-krater-quiz", "display_name": "Niobid Krater (quiz)", "title": "Niobid Krater (quiz)", "all_assessment_items": ["{\"sha\": \"13b57d8fdb0e863665cf0d858b1d46bb05bac7c5\", \"live\": true, \"id\": \"xe627326c998cb8fa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b3b0caf87accc3fdc5f619ae63dc61e2d53e8eb7\", \"live\": true, \"id\": \"x2b69c5e168837c89\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3a3dcb4ae2121852f4e5893bed4b5c05fb9ff33a\", \"live\": true, \"id\": \"x8d9be0c2793d7987\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1820348a27335515ec95c804d48da787e2279810\", \"live\": true, \"id\": \"x48db6a4c8a582396\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d542845e154d189ce0ce3aba51c9c5aefd08c3fe\", \"live\": true, \"id\": \"x7cffd09162617922\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2375ef7e562b7602be876a5ca1801a6702c4f818\", \"live\": true, \"id\": \"x8f82543b6d8ad4fe\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "niobid-krater-quiz", "kind": "Exercise", "name": "niobid-krater-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "niobid-krater-quiz"}, "seated-boxer-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/seated-boxer-quiz/", "id": "seated-boxer-quiz", "display_name": "Seated Boxer (quiz)", "title": "Seated Boxer (quiz)", "all_assessment_items": ["{\"sha\": \"7c9bc4c529e8ff4912eb0a20a915faf29fa40500\", \"live\": true, \"id\": \"x668a09f3b01e82d3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8bd8c9165632d28f1582838fa33490a0ff3efaba\", \"live\": true, \"id\": \"x4d8dca55f78be101\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de7abc95b998c6de9e4e0fbdce4eb98b44f47ea6\", \"live\": true, \"id\": \"x679692a0967aeda9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9755d0d8a38b02772cfca07f96321692ce58d58\", \"live\": true, \"id\": \"x3451378822e7f072\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3c67f82e0d6957279704d6f75d4040c022bc4d92\", \"live\": true, \"id\": \"xcad5d405c2c4cdaa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "seated-boxer-quiz", "kind": "Exercise", "name": "seated-boxer-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "seated-boxer-quiz"}, "forces-on-inclined-planes---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/forces-on-inclined-planes-passage-2/", "id": "forces-on-inclined-planes---passage-2", "display_name": "Hills, inclement weather, and cars", "title": "Hills, inclement weather, and cars", "all_assessment_items": ["{\"sha\": \"94d25fcc5a30d543633ba490218edad8ad7bdf85\", \"live\": true, \"id\": \"x5bc2d7147f2a3e99\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8defee4ba0cb3a635fd70d7325df13df3e90c408\", \"live\": true, \"id\": \"xdea2cdba576105cf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd6be55e1f74f072a6a8d62ff950a8ffacf5a65a\", \"live\": true, \"id\": \"xef5da0dadad7a736\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0775cc220c61c156c900464562c3ed0f354a1ba8\", \"live\": true, \"id\": \"x0366747175556851\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"846e5b0ee5e86de0bc85b675c44c78fc05efd732\", \"live\": true, \"id\": \"xedbb3781cda99656\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "This passage will test your knowledge on forces on inclined planes", "basepoints": 10.0, "slug": "forces-on-inclined-planes-passage-2", "kind": "Exercise", "name": "forces-on-inclined-planes---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "forces-on-inclined-planes---passage-2"}, "unit_circle": {"uses_assessment_items": false, "path": "khan/math/trigonometry/unit-circle-trig-func/trig-unit-circle/unit_circle/", "id": "unit_circle", "display_name": "Unit circle intuition", "title": "Unit circle intuition", "description": "", "basepoints": 21.0, "slug": "unit_circle", "kind": "Exercise", "name": "unit_circle", "seconds_per_fast_problem": 19.0, "prerequisites": ["degrees_to_radians"], "exercise_id": "unit_circle"}, "somatosensory-effects-of-temple-grandin-s-squeeze-box-on-hypersensitivity-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/somatosensory-effects-of-temple-grandin-s-squeeze-box-on-hypersensitivity-/", "id": "somatosensory-effects-of-temple-grandin-s-squeeze-box-on-hypersensitivity-", "display_name": "Somatosensory effects of Temple Grandin\u2019s squeeze box on hypersensitivity.", "title": "Somatosensory effects of Temple Grandin\u2019s squeeze box on hypersensitivity.", "all_assessment_items": ["{\"sha\": \"6077ad577192505b7c3b3d960506d532808cd3aa\", \"live\": true, \"id\": \"x9ad33f7767747452\"}", "{\"sha\": \"d63a822b8cd4d68f8365f6ecfbd61db6b4bda77c\", \"live\": true, \"id\": \"xf62744482fbc7679\"}", "{\"sha\": \"b1c927a938c4653a0a69499d96f5064066e81d8e\", \"live\": true, \"id\": \"x7d78375fad8d3d15\"}", "{\"sha\": \"8b6c27d0075c7b642ba3688a8b422601b2811861\", \"live\": true, \"id\": \"xfc964f1872cbefaf\"}", "{\"sha\": \"c1da18aed9384ca85bf6306d1417118629b86314\", \"live\": true, \"id\": \"xf3ab547bef13c49c\"}"], "description": "Questions relating to somatosensation", "basepoints": 10.0, "slug": "somatosensory-effects-of-temple-grandin-s-squeeze-box-on-hypersensitivity-", "kind": "Exercise", "name": "somatosensory-effects-of-temple-grandin-s-squeeze-box-on-hypersensitivity-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "somatosensory-effects-of-temple-grandin-s-squeeze-box-on-hypersensitivity-"}, "arachaic--anavysos-kouros-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/arachaic-anavysos-kouros-quiz/", "id": "arachaic--anavysos-kouros-quiz", "display_name": "Anavysos Kouros (quiz)", "title": "Anavysos Kouros (quiz)", "all_assessment_items": ["{\"sha\": \"a6c78725ae45667717efd5e399c074bf8c1a1f2f\", \"live\": true, \"id\": \"xf6634f7249f7c52a\"}", "{\"sha\": \"4c1a63febe26a5c861f6910deed647b98e50c9e8\", \"live\": true, \"id\": \"x89d39b23d129da7b\"}", "{\"sha\": \"4ed109394167b84668ac432146ffffd8353ed510\", \"live\": true, \"id\": \"xd13c7106afd7e7db\"}", "{\"sha\": \"437125ee4afe5edd6982a6ab4cf263826da5b286\", \"live\": true, \"id\": \"x8af2525d49444613\"}", "{\"sha\": \"a166be443ec5d953907dd6f5caddc860e87c37b2\", \"live\": true, \"id\": \"xec80a0f4fffabd3e\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "arachaic-anavysos-kouros-quiz", "kind": "Exercise", "name": "arachaic--anavysos-kouros-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "arachaic--anavysos-kouros-quiz"}, "romantic-and-sexual-networks-of-adolescents": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/romantic-and-sexual-networks-of-adolescents/", "id": "romantic-and-sexual-networks-of-adolescents", "display_name": "Romantic and sexual networks of adolescents", "title": "Romantic and sexual networks of adolescents", "all_assessment_items": ["{\"sha\": \"84ebb69351430146f064f3a6a863aea4fb06f46c\", \"live\": true, \"id\": \"x2f188cc3dd45de14\", \"perseus_api_major_version\": null}", "{\"sha\": \"685d7384ae2f54f80c8d6e65eef4dacdc7870685\", \"live\": true, \"id\": \"x63c1a55437519bcb\", \"perseus_api_major_version\": null}", "{\"sha\": \"069324590e6413775f829b98af0d552130d7e713\", \"live\": true, \"id\": \"x10579f2524eeddda\", \"perseus_api_major_version\": null}", "{\"sha\": \"fe7d8728928ee720dbc4b0e3406201d05b38819a\", \"live\": true, \"id\": \"x66082d265a61398f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"48792489049cf30524b8498b20e45b0317b12430\", \"live\": true, \"id\": \"x2d1a1ff5490d68a1\", \"perseus_api_major_version\": null}"], "description": "Questions related to social networks and disease diffusion", "basepoints": 10.0, "slug": "romantic-and-sexual-networks-of-adolescents", "kind": "Exercise", "name": "romantic-and-sexual-networks-of-adolescents", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "romantic-and-sexual-networks-of-adolescents"}, "adding_and_subtracting_polynomials": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/adding_and_subtracting_polynomials/", "id": "adding_and_subtracting_polynomials", "display_name": "Adding and subtracting polynomials", "title": "Adding and subtracting polynomials", "description": "Add or subtract polynomials", "basepoints": 26.0, "slug": "adding_and_subtracting_polynomials", "kind": "Exercise", "name": "adding_and_subtracting_polynomials", "seconds_per_fast_problem": 38.0, "prerequisites": ["combining_like_terms_2"], "exercise_id": "adding_and_subtracting_polynomials"}, "health-after-trauma--correlates-of-ptsd": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/health-after-trauma-correlates-of-ptsd/", "id": "health-after-trauma--correlates-of-ptsd", "display_name": "Health after trauma- correlates of PTSD", "title": "Health after trauma- correlates of PTSD", "all_assessment_items": ["{\"sha\": \"25149ce87fd21649f8797c27759e97933452dfd9\", \"live\": true, \"id\": \"x94cd33bcd3ddb23a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"13c27b96612605080fd91a98dad227a20b5c4a89\", \"live\": true, \"id\": \"x1b02bb3bc2bb1052\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5a6a41b6b227c26075fc27abde2297e091fad617\", \"live\": true, \"id\": \"xa374f7fb02e7b763\", \"perseus_api_major_version\": 3}", "{\"sha\": \"af099559203df6fca225cd60cf4141b3255ed3cc\", \"live\": true, \"id\": \"x9aeb6cb99e95e48c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8bf2d66a5a7104d95faaf298fa68533090f32e3d\", \"live\": true, \"id\": \"x7c05635ad0fd9573\", \"perseus_api_major_version\": 3}"], "description": "Questions related to psychological disorders", "basepoints": 10.0, "slug": "health-after-trauma-correlates-of-ptsd", "kind": "Exercise", "name": "health-after-trauma--correlates-of-ptsd", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "health-after-trauma--correlates-of-ptsd"}, "msl-brief": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/searchingforlife/mars_science_lab/msl-brief/", "id": "msl-brief", "display_name": "MSL Brief", "title": "MSL Brief", "all_assessment_items": ["{\"sha\": \"14fcfe58c2267d3b7d301d9b89db01777e826c8b\", \"live\": true, \"id\": \"x6a957e30aef5901e\"}", "{\"sha\": \"be16f64ce5613d0a638fe67cd2ba6d0aa05cce48\", \"live\": true, \"id\": \"x05620783df16cd4e\"}", "{\"sha\": \"61b7a4bd918fce7cb51a414396128a1ab7426465\", \"live\": true, \"id\": \"x81dd2536d1343dc5\"}", "{\"sha\": \"0d7054066a48da485958e766194ddeb2240a4bb5\", \"live\": true, \"id\": \"xdf5ab297055a3efc\"}", "{\"sha\": \"4316903a0ba7f3814ab7f421ee2bb653853b36ce\", \"live\": true, \"id\": \"xf01235f38ed21d71\"}", "{\"sha\": \"31a33c2bae271d4d93907aea5b80fd68f6792612\", \"live\": true, \"id\": \"xa47102ee97f0dc0c\"}", "{\"sha\": \"da99f4853eaf7068a48c47787b38b7b1d3b8145a\", \"live\": true, \"id\": \"x41535929106d11fd\"}", "{\"sha\": \"28f44d7040adabd48040a0c95130463d56c847ba\", \"live\": true, \"id\": \"xa2a5a0d88de7ca46\"}"], "description": "", "basepoints": 10.0, "slug": "msl-brief", "kind": "Exercise", "name": "msl-brief", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "msl-brief"}, "addition_4": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/addition_carrying/addition_4/", "id": "addition_4", "display_name": "Addition within 1000", "title": "Addition within 1000", "description": "Practice adding three-digit numbers. All sums are 1000 or less.", "basepoints": 21.0, "slug": "addition_4", "kind": "Exercise", "name": "addition_4", "seconds_per_fast_problem": 20.0, "prerequisites": [], "exercise_id": "addition_4"}, "addition_3": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/addition_carrying/addition_3/", "id": "addition_3", "display_name": "Addition within 100", "title": "Addition within 100", "description": "Practice adding two-digit numbers. All numbers in these problems are 100 or less.", "basepoints": 14.0, "slug": "addition_3", "kind": "Exercise", "name": "addition_3", "seconds_per_fast_problem": 7.0, "prerequisites": ["addition_2", "add-within-100--level-2"], "exercise_id": "addition_3"}, "addition_2": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/two_dig_add_sub/addition_2/", "id": "addition_2", "display_name": "Addition within 20", "title": "Addition within 20", "description": "Practice adding. All numbers in these problems are 20 or less.", "basepoints": 12.0, "slug": "addition_2", "kind": "Exercise", "name": "addition_2", "seconds_per_fast_problem": 5.0, "prerequisites": ["addition-and-subtraction-within-10"], "exercise_id": "addition_2"}, "addition_1": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/basic_addition/addition_1/", "id": "addition_1", "display_name": "Addition within five", "title": "Addition within five", "description": "Add small numbers. All answers are five or less.", "basepoints": 10.0, "slug": "addition_1", "kind": "Exercise", "name": "addition_1", "seconds_per_fast_problem": 4.0, "prerequisites": ["making-five"], "exercise_id": "addition_1"}, "the-effects-of-microgravity-on-muscle-tissues": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-effects-of-microgravity-on-muscle-tissues/", "id": "the-effects-of-microgravity-on-muscle-tissues", "display_name": "The effects of microgravity on muscle tissues", "title": "The effects of microgravity on muscle tissues", "all_assessment_items": ["{\"sha\": \"1fc7c7ce246209d06b2b5202de559e2accd860c2\", \"live\": true, \"id\": \"x43a056daaaf1eb82\"}", "{\"sha\": \"334bb0e52b41bda46791774bd5ac844481a6fb2e\", \"live\": true, \"id\": \"xf3e7fd3b7b1e9110\"}", "{\"sha\": \"ec90aee14adaf8e83aae0d6785da8935b74c6f37\", \"live\": true, \"id\": \"x6da8916cfeb164ec\"}", "{\"sha\": \"105a2ab90448dd8be2d3276dabaef1bc57ce3274\", \"live\": true, \"id\": \"xe65906ae4609f80b\"}", "{\"sha\": \"a0cb237fea71eefeb60f0911a351659fc0842aba\", \"live\": true, \"id\": \"x8ba1e21e3d1a13e4\"}"], "description": "The effects of microgravity on muscle tissues", "basepoints": 10.0, "slug": "the-effects-of-microgravity-on-muscle-tissues", "kind": "Exercise", "name": "the-effects-of-microgravity-on-muscle-tissues", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-effects-of-microgravity-on-muscle-tissues"}, "arithmetic_word_problems": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/arithmetic_word_problems/", "id": "arithmetic_word_problems", "display_name": "Multiplication and division word problems", "title": "Multiplication and division word problems", "all_assessment_items": ["{\"sha\": \"850c84cb23cc3c6e30a121b60cb94b6f2e677d88\", \"live\": true, \"id\": \"x1d5334e6\"}", "{\"sha\": \"556836e22c82fcabc7aeb3e158ba8460ac559a83\", \"live\": true, \"id\": \"x3a04e954\"}", "{\"sha\": \"71a35bdc262a484c054b996d9f437bbe323cc3e2\", \"live\": true, \"id\": \"xbc5a7335\"}", "{\"sha\": \"9e88968311eefd4687de174c18f2a63398b699e5\", \"live\": true, \"id\": \"x33b418d9\"}", "{\"sha\": \"49ef67fbf70c25ca7861aa792100219fbc60ab6f\", \"live\": true, \"id\": \"x6a0b5a6d\"}", "{\"sha\": \"6b2d58eee0cad958cc5de47a7fcd91543a1e9e82\", \"live\": true, \"id\": \"xfcccf458\"}", "{\"sha\": \"ae4d5c7c67146a44e92c3cfe3f45bfa8a799b6e0\", \"live\": true, \"id\": \"xab26ba30\"}", "{\"sha\": \"25261a29ae9b882044d12324cc9ec47dee4ee99f\", \"live\": true, \"id\": \"x05930b15\"}", "{\"sha\": \"911cf425930994d60bd6115fef8ac1d02dd01a25\", \"live\": true, \"id\": \"xa08b096e\"}", "{\"sha\": \"76bdbf32c8652f55837facc91f9af629292dfae1\", \"live\": true, \"id\": \"x97bf6c5d\"}", "{\"sha\": \"69e794740d6da94fa8202cf75dec3b3491bbaf0e\", \"live\": true, \"id\": \"xc3160a0c\"}", "{\"sha\": \"6be21f289551dc33ea0b07aeb1ac30fbf8f3d103\", \"live\": true, \"id\": \"x13a3c545\"}", "{\"sha\": \"4af7a8f9197d538dd74eb6cd0c142e5b52ae98be\", \"live\": true, \"id\": \"x64cb2659\"}", "{\"sha\": \"a6d71904c19f45292b743821a70ebee76faeba73\", \"live\": true, \"id\": \"x7112f0d5\"}", "{\"sha\": \"b66776ecefdbc9f6af68cc2fd0a8e5a5478a9ccb\", \"live\": true, \"id\": \"xe3ade861\"}", "{\"sha\": \"46828af9cce21e17345d010a8901ac040393c664\", \"live\": true, \"id\": \"x21a8882d\"}", "{\"sha\": \"03e8078d05cbb3b26fa5f937e40650fc7cdae743\", \"live\": true, \"id\": \"xd7426b69\"}", "{\"sha\": \"3b59debc4fd268083292dff81ce5f189b1182bcc\", \"live\": true, \"id\": \"x15ac7cca\"}", "{\"sha\": \"431a1aef36dca5f52036624d34caafb53b3c268f\", \"live\": true, \"id\": \"x22b8ffa2\"}", "{\"sha\": \"0a9a23eb79969c1ad7f8c60fbdca37ce8c62bcbb\", \"live\": true, \"id\": \"x43af2227\"}", "{\"sha\": \"e2264c3e87b8ac352f6967ab49d6028354da0732\", \"live\": true, \"id\": \"x5e889a66\"}", "{\"sha\": \"75a409524e902008d69d1591393ecd7378de4967\", \"live\": true, \"id\": \"xb253b636\"}", "{\"sha\": \"888f77a5ef283422492e8c1864b31109d8ca1bbe\", \"live\": true, \"id\": \"x9d74a564\"}", "{\"sha\": \"ef0fa9858a132fc00a83c1f2c03b8df72a03e27d\", \"live\": true, \"id\": \"x0d7b4037\"}", "{\"sha\": \"bb23960dcfc718082b6f8b380066484210da2dda\", \"live\": true, \"id\": \"xb65fbf0a\"}", "{\"sha\": \"e14d1e9f941da9c8eb959f97d4427abd9decf826\", \"live\": true, \"id\": \"xad0ce2a3\"}", "{\"sha\": \"05dfe05e22f1fd8277bffe510022bdcf3a482fb8\", \"live\": true, \"id\": \"xb0dc1f48\"}", "{\"sha\": \"2e3137121d437936569b1f18fdb82278235f8ecd\", \"live\": true, \"id\": \"x5c757c4a\"}", "{\"sha\": \"50218b9f3ac4717de0ef0c75706d550d7e61f847\", \"live\": true, \"id\": \"x6a16267a\"}", "{\"sha\": \"7a3d464058bd602ff0202ade57e8f804507438a7\", \"live\": true, \"id\": \"x0342b3c5\"}"], "description": "Word problems with simple multiplication and division. Some problems have remainders.", "basepoints": 17.0, "slug": "arithmetic_word_problems", "kind": "Exercise", "name": "arithmetic_word_problems", "seconds_per_fast_problem": 10.0, "prerequisites": ["two-step-word-problems-with-addition--subtraction--multiplication--and-division"], "exercise_id": "arithmetic_word_problems"}, "filling-rectangles-with-same-sized-squares": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-fractions-of-shapes/filling-rectangles-with-same-sized-squares/", "id": "filling-rectangles-with-same-sized-squares", "display_name": "Filling rectangles with same-sized squares", "title": "Filling rectangles with same-sized squares", "all_assessment_items": ["{\"sha\": \"5591353c7079496d9d7e0908b2795bdb3e0aa1b5\", \"live\": true, \"id\": \"x10243232f9949d1e\"}", "{\"sha\": \"c58b5bd4df02b60f7ef814f28a74007483ab5f18\", \"live\": true, \"id\": \"x34ca70adad3a04b8\"}", "{\"sha\": \"16f1de6b62a9434bb73ee3fc9640677921feada4\", \"live\": true, \"id\": \"x4368ca2806f35580\"}", "{\"sha\": \"a662bf47c136ae946ae2f8a9265097eab31dc38b\", \"live\": true, \"id\": \"x95ba9892733d16ec\"}", "{\"sha\": \"e7294345d6d5e37e0a0031a9ccf1fa4f61c29ef2\", \"live\": true, \"id\": \"x5aee2d5de41b77ea\"}", "{\"sha\": \"d4e8b0c9a8fb386aba37b9cb20555ab1597d2681\", \"live\": true, \"id\": \"x2d8fdcb7a108a25a\"}", "{\"sha\": \"654a8cef677cda0190b4b196a3b1f504f457e3dd\", \"live\": true, \"id\": \"xdf1b0a1477c599d6\"}", "{\"sha\": \"433f48c0100fba5c7bea5b8947acfaa01bba2b4c\", \"live\": true, \"id\": \"x05e43d832beb68e7\"}", "{\"sha\": \"3890d8e0851e09e1dfef692f363fc04846315bdc\", \"live\": true, \"id\": \"xc72000462ba7cbb5\"}", "{\"sha\": \"a068f84db715d5e88af22f78bb249240c3d30215\", \"live\": true, \"id\": \"x19dc7ff2e6c7be9b\"}", "{\"sha\": \"fb20bdb760dfa4a6f86366441f450a1cd3be1836\", \"live\": true, \"id\": \"x61222cae3f86bb05\"}", "{\"sha\": \"42c206255ff5a59e8ae6b6899f0db9e96c1eb5a5\", \"live\": true, \"id\": \"xe6be9bf95a7ef1fe\"}"], "description": "", "basepoints": 10.0, "slug": "filling-rectangles-with-same-sized-squares", "kind": "Exercise", "name": "filling-rectangles-with-same-sized-squares", "seconds_per_fast_problem": 4.0, "prerequisites": ["measuring-lengths-1"], "exercise_id": "filling-rectangles-with-same-sized-squares"}, "quiz--css-layout": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css/css-layout-properties/quiz-css-layout/", "id": "quiz--css-layout", "display_name": "Quiz: CSS Layout", "title": "Quiz: CSS Layout", "all_assessment_items": ["{\"sha\": \"4053c6d002375a4b0e0c65d16ed9c2f44de5e985\", \"live\": true, \"id\": \"x1ce6d5d9af12d970\", \"perseus_api_major_version\": null}", "{\"sha\": \"2086d381905f935cef5c650891f060366c865d6b\", \"live\": true, \"id\": \"xa0465eb4d9421db6\", \"perseus_api_major_version\": null}", "{\"sha\": \"6bc1a45c8169e15330e41e99134d3061e072d93e\", \"live\": true, \"id\": \"x14d9bcf25c2e82b7\", \"perseus_api_major_version\": null}", "{\"sha\": \"fb3bd46fe748c1942f8f193c5f26c098920fc53b\", \"live\": true, \"id\": \"x6bf77499afc58086\", \"perseus_api_major_version\": null}", "{\"sha\": \"190f925e23bf2cf2f6e15bdb542a3a0b6a4a90bd\", \"live\": true, \"id\": \"xa04bc2142274a822\", \"perseus_api_major_version\": 3}"], "description": "Practice CSS layout concepts and properties.", "basepoints": 10.0, "slug": "quiz-css-layout", "kind": "Exercise", "name": "quiz--css-layout", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--css-layout"}, "making-ten": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-make-10/making-ten/", "id": "making-ten", "display_name": "Making ten (using grids)", "title": "Making ten (using grids)", "all_assessment_items": ["{\"sha\": \"88563adac806dcf488c5884bff055a67bb2f1462\", \"live\": true, \"id\": \"xa00394d047c32706\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8709fc6596fcfaf07312fb79a89584b44136ce82\", \"live\": true, \"id\": \"x2555eb000389c63b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65270144ac405e00d3add46f7c79de1b6fc43145\", \"live\": true, \"id\": \"x3ee97712fc3bf609\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"924851c578b9f0d763ee49e525b8484d191f30f3\", \"live\": true, \"id\": \"xb37455a76d1478c7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92f069575ff7cfae8b5465c2685b56ad6d3b6ed3\", \"live\": true, \"id\": \"x9c6d5fb300351b1b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dbfb0ec661e7e7e57ae175ed0575c3a8057d5ebf\", \"live\": true, \"id\": \"x3fe0e665958cf47b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4daa9ecfa36c3d71c3ce71942ade732da1e442f9\", \"live\": true, \"id\": \"xc83f7ae82610e13f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0cc179b5df3ab7313508210648d56d9e9e18f130\", \"live\": true, \"id\": \"xcd27712d7b19824c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c5f20e1e246dd16d72f49c90ad51af259f45953\", \"live\": true, \"id\": \"x37c8a9fa6c93b23b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"131e0df5044fb7caaed791a32b965bd5257a6d76\", \"live\": true, \"id\": \"xd80164bbdbf1c910\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bd8abd0b5de0555d26fdfe36b38432e81be5940e\", \"live\": true, \"id\": \"xcd490f07864ccc5a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"77289f25deb4ad7d2143acd17407219678e54a38\", \"live\": true, \"id\": \"x454429b502f5ab2b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ee45a423d5dee2b559d0bf44378baf062bccb9e\", \"live\": true, \"id\": \"x02ad093b2a9ca04f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3a1b5dee665939301791425c2ce2cbc3881bc3e0\", \"live\": true, \"id\": \"xce68f703d9805e16\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7917a5cf914b65c4770e290d2d748cff4fed5ff\", \"live\": true, \"id\": \"x19ff3e7d2a6f7f59\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"704c1b2d00580ac4246eaac9220ed8371f8c99f4\", \"live\": true, \"id\": \"x373bd837a8f8351d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5ea27f101cd7d128d2f1b4f5455094f053fed974\", \"live\": true, \"id\": \"x2171f63965a26e91\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9674abefa25a56b354ddf0be752411960f47b3b0\", \"live\": true, \"id\": \"x98034506974cc141\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"55f962b1eadf1f82627a653b0fa22ee3cd7326b7\", \"live\": true, \"id\": \"xece1e1f7beef6f14\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"03e6e392ed33dcb6bb2bebb4c397b854a2846495\", \"live\": true, \"id\": \"xe64d318bb6837bea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice adding numbers to make 10.\u00a0These problems show grids to help you out.", "basepoints": 10.0, "slug": "making-ten", "kind": "Exercise", "name": "making-ten", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition_1"], "exercise_id": "making-ten"}, "victory--nike--adjusting-her-sandal-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/victory-nike-adjusting-her-sandal-quiz/", "id": "victory--nike--adjusting-her-sandal-quiz", "display_name": "Victory (Nike) Adjusting her Sandal (quiz)", "title": "Victory (Nike) Adjusting her Sandal (quiz)", "all_assessment_items": ["{\"sha\": \"62c1fb2219ad0f98212d914e2a4499ac367d3f7b\", \"live\": true, \"id\": \"x439b520be024f8ca\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c2b61eac19967f68c03d7fa31a75b41f6f950530\", \"live\": true, \"id\": \"x12b964ae4e046333\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e605853818e6760a16b22117db52407bcd92a08d\", \"live\": true, \"id\": \"x6060e45fed0baa36\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ebcf654678fde34d01a174360c902ff12ec22159\", \"live\": true, \"id\": \"x1e3663b517c18aab\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"446fc52af920fac5600ebe36233b256e48d3a846\", \"live\": true, \"id\": \"xb591c1eb5d535103\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "victory-nike-adjusting-her-sandal-quiz", "kind": "Exercise", "name": "victory--nike--adjusting-her-sandal-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "victory--nike--adjusting-her-sandal-quiz"}, "modern-discoveries": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/searchingforlife/mars-modern-exploration/modern-discoveries/", "id": "modern-discoveries", "display_name": "Modern discoveries", "title": "Modern discoveries", "all_assessment_items": ["{\"sha\": \"617473868fa13f6058fdf01c80b02399bf9f9c78\", \"live\": true, \"id\": \"xa0abf896d2d959f2\"}", "{\"sha\": \"7ba03ca36c6f4bbe045e852f9efb1de215ad6d62\", \"live\": true, \"id\": \"x5a01fad4b31ab0f9\"}", "{\"sha\": \"48fe6767a14aa5a911fe66db7f2ffc9287215a5f\", \"live\": true, \"id\": \"x49a3c997b5dc57d9\"}", "{\"sha\": \"eb09df060a51270509f4f6d14218f4d83beedcd2\", \"live\": true, \"id\": \"x28759d61d1afdbfc\"}", "{\"sha\": \"0013bf867efcb893395446d1a5cba895bc0dfeb8\", \"live\": true, \"id\": \"x44847a99aee02289\"}", "{\"sha\": \"3a2b422aee1d2022205429b369668736992f2e68\", \"live\": true, \"id\": \"x9d677fee7a4dfb91\"}", "{\"sha\": \"5722f6625526c447ee70342efa77405fa23a11c0\", \"live\": true, \"id\": \"x6a29746b2b6fb713\"}", "{\"sha\": \"a2574484bce2aa22c69091250d435e3381164a61\", \"live\": true, \"id\": \"xb887d4cfa3320b99\"}", "{\"sha\": \"0d1618f17c0b98ce773ebd31f3266520beb099e7\", \"live\": true, \"id\": \"xf678e41cedd0fa00\"}", "{\"sha\": \"2fba90b055d8f14ecbc35c4e5362b9e2575dd126\", \"live\": true, \"id\": \"x7cf2651c23749bc9\"}"], "description": "", "basepoints": 10.0, "slug": "modern-discoveries", "kind": "Exercise", "name": "modern-discoveries", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "modern-discoveries"}, "goya--the-third-of-may-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-spain/goya-the-third-of-may-quiz/", "id": "goya--the-third-of-may-quiz", "display_name": "Goya, The Third of May (quiz)", "title": "Goya, The Third of May (quiz)", "all_assessment_items": ["{\"sha\": \"da49671ac408e27280efdc1cad6ae00f0d128145\", \"live\": true, \"id\": \"x285315038e7931cc\"}", "{\"sha\": \"610b2cd747e4931633b7e5a8e6599e2f4ba71970\", \"live\": true, \"id\": \"xa03823ba2b24b44e\"}", "{\"sha\": \"d871d34056169692edc2aaf5bfdf90577579f8e8\", \"live\": true, \"id\": \"x0e419b514c66dfbc\"}", "{\"sha\": \"2e1acc8f1b0fbb7a8b7342f844ee897ef8c93cd8\", \"live\": true, \"id\": \"xaeac866781ee2d91\"}", "{\"sha\": \"2a857b104070f24ce88f8da4773b1a30feb5f94f\", \"live\": true, \"id\": \"x1f9621b126dcd30f\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "goya-the-third-of-may-quiz", "kind": "Exercise", "name": "goya--the-third-of-may-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "goya--the-third-of-may-quiz"}, "sat-reading--sentence-completion": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-reading-writing-practice/sat-reading-sentence-completion/sat-reading-sentence-completion/", "id": "sat-reading--sentence-completion", "display_name": "SAT Reading: Sentence completion", "title": "SAT Reading: Sentence completion", "all_assessment_items": ["{\"sha\": \"c98d2934f295477fc3e8fd95ddce3e2ab570a939\", \"live\": true, \"id\": \"x4ea1510dc6dbf71f\"}", "{\"sha\": \"122ce1170ac5d26926c2970d8394bda56849176a\", \"live\": true, \"id\": \"xdfca38ae79e760bc\"}", "{\"sha\": \"2a5415dbf9189562af9b1bed0a676397846cecb0\", \"live\": true, \"id\": \"xd1161107d5607169\"}", "{\"sha\": \"ec62d545e65febad589eed8af20739dba9729e6d\", \"live\": true, \"id\": \"x85bf597bd2e0a8dd\"}", "{\"sha\": \"cc88022f6a6e49d7a212cafaf5d1ba875508e02d\", \"live\": true, \"id\": \"x9d086f75f2f54129\"}", "{\"sha\": \"a4580adb96c139c3cf70d89d3f02ee5063267244\", \"live\": true, \"id\": \"xe5b8ab1b22c76e89\"}", "{\"sha\": \"c639ab4fcf1be53801b840cece14bc966188fa0b\", \"live\": true, \"id\": \"xaf079aca954c125a\"}", "{\"sha\": \"aeb46d0dece2af58bdc551ce96775b92bf288099\", \"live\": true, \"id\": \"x1feee98b80b05b4a\"}", "{\"sha\": \"68b4e6aedc88b4a4179d950c0d18868dafe59fd2\", \"live\": true, \"id\": \"x48946a59327c7414\"}", "{\"sha\": \"f141b1200e9e6d3a4ec3b691723df12d71450ab6\", \"live\": true, \"id\": \"x8095a50ea2273f91\"}", "{\"sha\": \"76624cb913acd704e13735cac23094e282d63697\", \"live\": true, \"id\": \"x43dadea49acf8529\"}", "{\"sha\": \"de6fb63891d7a19a0339f265b9e7d84bae50468b\", \"live\": true, \"id\": \"x1730e7b6278eb52b\"}", "{\"sha\": \"a20eaf460c40b6ef31b85cbade126b8147e95df9\", \"live\": true, \"id\": \"x60ce92a7ba4c6f38\"}", "{\"sha\": \"5b7555e99980539e0d97f5c18c5c2a9c63c66a9c\", \"live\": true, \"id\": \"x29b438bdd6d77409\"}", "{\"sha\": \"a3c1def03bb808f5361d5856601459e52946341b\", \"live\": true, \"id\": \"x6ac8248324939e8a\"}", "{\"sha\": \"9f64f4153ad39060aa663771411091184e006a3f\", \"live\": true, \"id\": \"x6147b0e94612e63f\"}", "{\"sha\": \"1751c77c8fc2c1f434ecd66fa4a6e5db6491a74a\", \"live\": true, \"id\": \"x6959bb4c34d73ff4\"}", "{\"sha\": \"aa277ad32890af2a23280de1e1ce8ed8a2d1f0dc\", \"live\": true, \"id\": \"x046a8af1f69a95f7\"}", "{\"sha\": \"2b02899d25248e3e24159e36b30ae3c4c361a56f\", \"live\": true, \"id\": \"x24dc3b35ab44b1c5\"}", "{\"sha\": \"583972cfe83adf78edac46a9e61a84fae1dcca92\", \"live\": true, \"id\": \"xf89ec33a00465f14\"}", "{\"sha\": \"de3d31ac664cbd1c92e8594b17792f010fce1a34\", \"live\": true, \"id\": \"x8d9e8a6eb34d4127\"}", "{\"sha\": \"16555541464fdf5c8b792dce2f2f4c2220eea235\", \"live\": true, \"id\": \"x736c5843bfa46bad\"}", "{\"sha\": \"82069e8eb862def98b2f58f48fdcd82399ab93c3\", \"live\": true, \"id\": \"x1755bd01c0db5eee\"}", "{\"sha\": \"3cd1d009165b701b2dbdf2993920f8c3a1c7380b\", \"live\": true, \"id\": \"xadec18745d43568b\"}", "{\"sha\": \"98b76d79dfb5d329f9052ae13638cc9df5946b6c\", \"live\": true, \"id\": \"x16f375cdbdce3e73\"}", "{\"sha\": \"0c483274b1aa7577164ae83d0c3ceae2b7d4d665\", \"live\": true, \"id\": \"x1b91787c065c1deb\"}", "{\"sha\": \"fddb7f7c801bbc3fc895130a4bbecc63a155b1f2\", \"live\": true, \"id\": \"x8231b97b29c03ffb\"}", "{\"sha\": \"ea2a6d4e3db987d39dfe4e6233571e410d244d45\", \"live\": true, \"id\": \"xdef745e9a7c5e45a\"}", "{\"sha\": \"0be0fa5614f79e1327f0c2978b940ee0ba839b80\", \"live\": true, \"id\": \"x450fee9517353739\"}", "{\"sha\": \"612d245b358c55f53166d03fcd6a1e3a0c3bdd97\", \"live\": true, \"id\": \"xe66191608f92ca63\"}", "{\"sha\": \"489cd54aa5717b81ee3dd45e08d13dc6ae045b4e\", \"live\": true, \"id\": \"xac4ca43dfc3c3ba9\"}", "{\"sha\": \"5f75b99c1a9327e7a51432b7f81344de6068efaf\", \"live\": true, \"id\": \"xa815d176b712a84c\"}", "{\"sha\": \"355e49f7bb9dbae6cf13e55749b4ac00ace22f0f\", \"live\": true, \"id\": \"xeae5ca264093bdaa\"}", "{\"sha\": \"666f1653f95957a278599272788cf9f7572e2b05\", \"live\": true, \"id\": \"x657d7b2a0adc4685\"}", "{\"sha\": \"900090c08445bdb976740b6c4c0380fbb9595e3e\", \"live\": true, \"id\": \"xd226b830db90612c\"}", "{\"sha\": \"c7d1cb4d719376ee9c4e044f78064de1cb9215a2\", \"live\": true, \"id\": \"xec658db422734cb6\"}", "{\"sha\": \"1c82ee4322268770447677a2d6c72e3d67e36d11\", \"live\": true, \"id\": \"x9526e80842f5da4d\"}", "{\"sha\": \"536c7692ebd55fdd0646a8607007ade026094024\", \"live\": true, \"id\": \"xe63617d222e639f7\"}", "{\"sha\": \"ebdebbbf7b9511b6f8caefba2db7192b772d8b82\", \"live\": true, \"id\": \"xeb791df0f20e3194\"}", "{\"sha\": \"9c314dcd22fdddbcc6b9f6eaa6f1844f117c65bb\", \"live\": true, \"id\": \"xa0fe17605f646d8c\"}", "{\"sha\": \"3031c6d14fdfc5fcfe223404840ebc96d8acda93\", \"live\": true, \"id\": \"xf154f565aad4d4bc\"}", "{\"sha\": \"96591aa80db976a7a8fc35eaf54d6e590a7592f2\", \"live\": true, \"id\": \"x2e46112142a318a3\"}", "{\"sha\": \"0c305f28ffe715df0d6a79b4ba3c9327f6ffe0bc\", \"live\": true, \"id\": \"xd91432aa886efa00\"}", "{\"sha\": \"9fe6098b362994c2794987d41c28d573ea547f8e\", \"live\": true, \"id\": \"xe2c0ba60a5cac183\"}", "{\"sha\": \"718ffb3f039d39fe64b077e59d7f250f243e5693\", \"live\": true, \"id\": \"x24a96acc7b318c5f\"}", "{\"sha\": \"1226212e83394222c91dec2a748ee73c3b06a0f4\", \"live\": true, \"id\": \"xeb5bc92f6014ff92\"}", "{\"sha\": \"5075e029600437dc99a9ac214110c462791530e9\", \"live\": true, \"id\": \"xfc43c1f34e097816\"}", "{\"sha\": \"51d654bb364cf9dc1afb3c17c04228fc29f0d4da\", \"live\": true, \"id\": \"x3faaa0aba5acbbcf\"}", "{\"sha\": \"353541ebba11d7f6be76d8340c52156c0017f7dd\", \"live\": true, \"id\": \"x37f9d920946f6965\"}", "{\"sha\": \"a6488b0c005a3d993d4914a7fd60b2ccb65e1597\", \"live\": true, \"id\": \"x331ce7b42fdeb6b8\"}", "{\"sha\": \"9edcf7600561f0fe8e85978c574923dcad30beb3\", \"live\": true, \"id\": \"xa5ca15304bc9b79d\"}", "{\"sha\": \"e9741b2768445a75ffb33091cbf25399eacdd69a\", \"live\": true, \"id\": \"x9287967d2925b35c\"}", "{\"sha\": \"e4ab722f209f5aa548028f1099e37bac6a2859b5\", \"live\": true, \"id\": \"xdf4481090c45fc81\"}", "{\"sha\": \"f4317515b92e9a8ba6e2e0b702ac0459a2971eb8\", \"live\": true, \"id\": \"x74c0b58b528490f5\"}", "{\"sha\": \"305a1b57e0a03240e38ac9e32019b6a57fc32ba7\", \"live\": true, \"id\": \"xdb5f57b1228b52f2\"}", "{\"sha\": \"290fe2a4fe9c1315d576754b3f754c538499ebd9\", \"live\": true, \"id\": \"xb47eba4a17f44f5b\"}", "{\"sha\": \"b7a270be9dee40e684b175165be28c4dcc66cd14\", \"live\": true, \"id\": \"x0d17780f867b1f73\"}"], "description": "", "basepoints": 10.0, "slug": "sat-reading-sentence-completion", "kind": "Exercise", "name": "sat-reading--sentence-completion", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-reading--sentence-completion"}, "systems_of_equations": {"uses_assessment_items": true, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/systems_of_equations/", "id": "systems_of_equations", "display_name": "Solving systems of two linear equations", "title": "Solving systems of two linear equations", "all_assessment_items": ["{\"sha\": \"f40bfac8273179897a73d6a72305a3a4c39b8c94\", \"live\": true, \"id\": \"x6685dbcec0a6cfaa\"}", "{\"sha\": \"ad2c44548076c035557da59f99886d01181608df\", \"live\": true, \"id\": \"xbd9d233f9d38424e\"}", "{\"sha\": \"19acc9c71efebcd2c85096445631a0b529d3be53\", \"live\": true, \"id\": \"x84855f85a43843e1\"}", "{\"sha\": \"51aa85ed2d28312be45fe6cfba212a5624fb1a52\", \"live\": true, \"id\": \"x5f123b825a1511e9\"}", "{\"sha\": \"c56f0ef54586f5b32c12940f6d8a76724eddd85e\", \"live\": true, \"id\": \"xfb11d867bc802eba\"}", "{\"sha\": \"94c4e432c71318743c54fe2ceaca6020c134e081\", \"live\": true, \"id\": \"xcdeea2e72751b55e\"}", "{\"sha\": \"8da75155f6e66a3c1d454011a015772dd693a76e\", \"live\": true, \"id\": \"x46d3d3fbadf046cb\"}", "{\"sha\": \"797090886ce4f51ce29258cff8bac68a740ceef7\", \"live\": true, \"id\": \"x8cc0d62203f51771\"}", "{\"sha\": \"f2f38e3969c673e6b801f17a0aff29dfd9dd93a2\", \"live\": true, \"id\": \"x0fe429e4a8c92852\"}", "{\"sha\": \"44d452e0c6ed385f764b83670d2101d48cd2967f\", \"live\": true, \"id\": \"x2028d076c28d8c6a\"}", "{\"sha\": \"8de00edd4eb57fd6ec999ca8f9ff81190084b303\", \"live\": true, \"id\": \"xe365e507d4a091b9\"}", "{\"sha\": \"b3d60f35db22cf029a9bb22b3f4c94b6e109ba72\", \"live\": true, \"id\": \"x144c3333e39bad9d\"}", "{\"sha\": \"b5ce569c9bb561c7544e9abc7a8e280d6bab503e\", \"live\": true, \"id\": \"xe6518556d8211a00\"}", "{\"sha\": \"4fd44cab50db10b14ee624dfdc653e1a0ea3771b\", \"live\": true, \"id\": \"x1d6d6f8b02a5e1d7\"}", "{\"sha\": \"5c65a7b164638313af2dbf9f9a9afc731c62290a\", \"live\": true, \"id\": \"xbdfb02c883e19d01\"}", "{\"sha\": \"7b1299e0d7b93deac1220f9ddc81e4d4096029af\", \"live\": true, \"id\": \"xc4067c28285ae272\"}", "{\"sha\": \"db5a7c4b80cd2f34c0cbb6ce742e871a22353e52\", \"live\": true, \"id\": \"xc5aa2c9673f92e36\"}", "{\"sha\": \"99ebec31e975f7adc9176ad656c772673f0163e3\", \"live\": true, \"id\": \"xcaa0fbf043f333c7\"}", "{\"sha\": \"5f7383e7ad283b0965ebd1c8c19d0b69b6dff055\", \"live\": true, \"id\": \"x9d1fb34cd70a4c7d\"}", "{\"sha\": \"450c8e70ae8a7309c4e106cb556650e029deb6be\", \"live\": true, \"id\": \"x4982ce3d4680c805\"}", "{\"sha\": \"cf98d538773c7393c9eecd2b8248aacde5e6ecf1\", \"live\": true, \"id\": \"xea0b13594bbb48bf\"}", "{\"sha\": \"3c042b89f9e92e183d14405c38cd166fdc55d020\", \"live\": true, \"id\": \"x01c677465edd9b34\"}", "{\"sha\": \"ff91320616dd94989cea973568d7776571c80945\", \"live\": true, \"id\": \"x2a9db4a9013ea993\"}", "{\"sha\": \"df9a6a66a297dba80ec7e20ad3a34da2077a7d14\", \"live\": true, \"id\": \"xefa5572c962f2ce7\"}", "{\"sha\": \"3c22c89e6a6354af15abf441389c8d1031e8e60a\", \"live\": true, \"id\": \"x32a0ed5573402ea7\"}", "{\"sha\": \"88a01fe47d611369bdefe8e676ff4bae4dbc7e0d\", \"live\": true, \"id\": \"x4c5c8462d979e629\"}", "{\"sha\": \"6d439cc1e3db378ffee1bb6a6fbccd4c4e3c6a3c\", \"live\": true, \"id\": \"x502ccc470b0b9c07\"}", "{\"sha\": \"e88813b230bf213a9d3a3be8baa8f7b911465187\", \"live\": true, \"id\": \"xb8fe4e75a34d15cc\"}", "{\"sha\": \"f4de85a57324ef0af09ece54509e25b36f43aeef\", \"live\": true, \"id\": \"xf9755f2e72391286\"}", "{\"sha\": \"b8a7be670a216227acfa78ecae1cec9a330233b6\", \"live\": true, \"id\": \"x5e6a4bcbab2f9534\"}", "{\"sha\": \"87dd61e11ae8b46ffa12557c418be2f3de7bfa0a\", \"live\": true, \"id\": \"xb7f2dd98040e5e0c\"}", "{\"sha\": \"06063442ad7e4ca2e710e6ced619fdb0e1e8fa30\", \"live\": true, \"id\": \"x6729742fd8d5c505\"}"], "description": "Solve systems of equations with substitution and elimination.", "basepoints": 29.0, "slug": "systems_of_equations", "kind": "Exercise", "name": "systems_of_equations", "seconds_per_fast_problem": 60.0, "prerequisites": ["constructing-consistent-and-inconsistent-system"], "exercise_id": "systems_of_equations"}, "miller-s-law--chunking--and-the-capacity-of-working-memory": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/miller-s-law-chunking-and-the-capacity-of-working-memory/", "id": "miller-s-law--chunking--and-the-capacity-of-working-memory", "display_name": "Miller\u2019s law, chunking, and the capacity of working memory", "title": "Miller\u2019s law, chunking, and the capacity of working memory", "all_assessment_items": ["{\"sha\": \"8b2aec16ee81d064aa40bdaa15ccf8bef41454a1\", \"live\": true, \"id\": \"x8a1812f3443c846e\"}", "{\"sha\": \"1750640f9e004abc25bbdd8d278952a9a5a845fc\", \"live\": true, \"id\": \"x43594c02da808235\"}", "{\"sha\": \"c8d8e36136b5e474b457e15873a62420a92ed060\", \"live\": true, \"id\": \"xfd75b975171c4e5c\"}", "{\"sha\": \"21f577464843a71dba49afe7f2fc500e9f5bd53f\", \"live\": true, \"id\": \"xf4c19889eb92bf98\"}", "{\"sha\": \"6a211505cb5d4a190489aa606ccd0903ef5caf8e\", \"live\": true, \"id\": \"x1c0ee1b11090cc79\"}"], "description": "Questions related to memory", "basepoints": 10.0, "slug": "miller-s-law-chunking-and-the-capacity-of-working-memory", "kind": "Exercise", "name": "miller-s-law--chunking--and-the-capacity-of-working-memory", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "miller-s-law--chunking--and-the-capacity-of-working-memory"}, "division-and-composition": {"uses_assessment_items": true, "path": "khan/partner-content/wi-phi/critical-thinking/division-and-composition/", "id": "division-and-composition", "display_name": "Division and composition", "title": "Division and composition", "all_assessment_items": ["{\"sha\": \"6bb3bf2d7c583d1383b5bd4185c8e4b6090571e2\", \"live\": true, \"id\": \"xcbe95503ad425d4d\"}", "{\"sha\": \"4df77fe13ad307c78ed596b2d5387406e1a4706e\", \"live\": true, \"id\": \"x3053f0d839a2626e\"}", "{\"sha\": \"b7fcf35d7371ba9fcc7cc1d2c9d942f153b11f5a\", \"live\": true, \"id\": \"xbd50ec9fd37d907e\"}", "{\"sha\": \"adaa65a7e508215272f5b78f4df069032a66ed2e\", \"live\": true, \"id\": \"xbeca0803843372a9\"}", "{\"sha\": \"7e85569f932793aa04ea5f850ee702083928d84c\", \"live\": true, \"id\": \"x96cf1f342c612d9a\"}", "{\"sha\": \"19f457632d37a0daf41bf416b31a089285c58b7a\", \"live\": true, \"id\": \"x05aea3178006b402\"}", "{\"sha\": \"3245917a7cbf9dfb6fcfb7b9b3d4413b1630f32a\", \"live\": true, \"id\": \"x383beb6941ee9f8c\"}", "{\"sha\": \"bc95cd54b20e6f1d8ad037c458d358d78eb06372\", \"live\": true, \"id\": \"xb635bab3b865c297\"}", "{\"sha\": \"2288e652cc1c8d95fc04c7c4057afccec972e5fd\", \"live\": true, \"id\": \"xffd61cd29a8a7892\"}", "{\"sha\": \"90b35751e0f252df5fc4fc0745dcce250250bd31\", \"live\": true, \"id\": \"x02c5518134d951ff\"}", "{\"sha\": \"d0450bd71fc09fc5f017c03ec4a52e2fe6a8b4ae\", \"live\": true, \"id\": \"x764be480a66bd742\"}", "{\"sha\": \"2e09d9ef6e1d5ff7113a88eb19b99560e085b537\", \"live\": true, \"id\": \"xf101da2aac16a8b1\"}", "{\"sha\": \"52d05e8d7e2b94485e97694b062283dbda42fdbb\", \"live\": true, \"id\": \"xa0d53a615108aa51\"}"], "description": "Test your knowledge of the distinction between the fallacy of division and the fallacy of composition.", "basepoints": 10.0, "slug": "division-and-composition", "kind": "Exercise", "name": "division-and-composition", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "division-and-composition"}, "us-identity--the-body-quiz": {"uses_assessment_items": true, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/us-identity-the-body-quiz/", "id": "us-identity--the-body-quiz", "display_name": "US: Identity, the body and the subversion of Modernism (quiz)", "title": "US: Identity, the body and the subversion of Modernism (quiz)", "all_assessment_items": ["{\"sha\": \"5be819ec924a697e7b428d5c080e3394d54d4659\", \"live\": true, \"id\": \"xd1e21a238c08819c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3e8a2be3d7668c533471e03960121f33b128a487\", \"live\": true, \"id\": \"x6392b1a799f792e1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3e3b36cad0689cb50cc9cd2ccb74d4e5c60703c0\", \"live\": true, \"id\": \"xdabfa6c1bbe344a7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90b4178fe87416021b122954c60dd0df911c4d78\", \"live\": true, \"id\": \"x6c891fe92d99d018\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"109588648fec591ccae984c07b2dd1a68bdffa37\", \"live\": true, \"id\": \"xb3cb1011890600e9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5610166a41b59f65a55b5011853655e80994a87d\", \"live\": true, \"id\": \"x6477eabf6bfd9a04\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"10e295dd32a98d4a310c4580d9b85ae96e285c6e\", \"live\": true, \"id\": \"xe25693f7cbfc9308\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"570369948c57b4be55d6d067f9f9ce8104602827\", \"live\": true, \"id\": \"xac9241dc684b751e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9232167c19e0a09e0fb525855e95345ea3cd5524\", \"live\": true, \"id\": \"x920964e9465f474e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"68d66a9cd82a6788d034aa879d4bbd058cd0b1e9\", \"live\": true, \"id\": \"xe3d3e9fbca152a6f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d838891c35a8048cf49c6217fe33df2e69f12a99\", \"live\": true, \"id\": \"x99a11555639096c1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a7e3a39bb411bc33adeceb5adda187d4900c9c8f\", \"live\": true, \"id\": \"x10a92f0f99bf36b2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5506003fb860880cbf8d5d2b704896b5926d8f46\", \"live\": true, \"id\": \"xb479ecd30afbb6f1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"59006247e33c7697ade6e853524410c2a9221cd6\", \"live\": true, \"id\": \"xf8c7a72e4ba5dfdd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2f895a79d7924f03846be0ec3207032ca1f9fb00\", \"live\": true, \"id\": \"x05e9abb1fc5e5343\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"facffc3d9d78e58c8dbe8d03688b9045565636f2\", \"live\": true, \"id\": \"x2dad127b5b07286d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d2292cb698a3568abda73b5ebd3fa8c4dcf7cc5e\", \"live\": true, \"id\": \"x7f2afcfe7d14ffdc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"324d48217cf3170c36f6a4ca4be8bbbbd49edcfa\", \"live\": true, \"id\": \"xee9b370d9f322b6f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5615f197adb9fef9e2923e324646ea77dc2bab1e\", \"live\": true, \"id\": \"x829e5e75057541e2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "us-identity-the-body-quiz", "kind": "Exercise", "name": "us-identity--the-body-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "us-identity--the-body-quiz"}, "binomial-theorem": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/binomial_theorem/binomial-theorem/", "id": "binomial-theorem", "display_name": "Binomial theorem", "title": "Binomial theorem", "all_assessment_items": ["{\"sha\": \"ce587abdf3463558d38bc6c7a206d5ed1c4a49d6\", \"live\": true, \"id\": \"x4b48d0df458629d0\"}", "{\"sha\": \"6f3449bda3850c5761c853e41d56e9924c49ae43\", \"live\": true, \"id\": \"xeabd0b33f2b5b36b\"}", "{\"sha\": \"a2a96eab46b2146eedebf5b729e0621cd310e087\", \"live\": true, \"id\": \"xbdb9be46d33897d0\"}", "{\"sha\": \"0e707a102bd9611ecc0482081c102388b3988011\", \"live\": true, \"id\": \"x1af5b71d4766ed56\"}", "{\"sha\": \"ee6a6e81bcfbf8fd3f110c9572b09380c95854e9\", \"live\": true, \"id\": \"x9fd9ef85fc76c283\"}", "{\"sha\": \"08fe2ee4eb7c86ff43772f4b5c6588cde6f4bbdf\", \"live\": true, \"id\": \"xe3c30c3bf37945a4\"}", "{\"sha\": \"c0f5a590a3dca4389c3f8628e6fa7cca2e866487\", \"live\": true, \"id\": \"x8e61ef254d3c10a9\"}", "{\"sha\": \"08221918280af67d0ff72642c548a34a7a980f6e\", \"live\": true, \"id\": \"xb0c2aa7ba758bc05\"}", "{\"sha\": \"ffd254881e95097873f01527e49d400b802ff3de\", \"live\": true, \"id\": \"x7d4ee02f848070e9\"}", "{\"sha\": \"d1eff0289091585f471dc64ed971a48c633205f6\", \"live\": true, \"id\": \"xae77aeee7ba3802d\"}", "{\"sha\": \"ba85e3e6e89c3037dc1d65eda10183cea30412b6\", \"live\": true, \"id\": \"xd4365a3c2532bcaa\"}", "{\"sha\": \"7347e0bd9dee929b07d804255ca368026478e03f\", \"live\": true, \"id\": \"x9ccf37add054ed1a\"}", "{\"sha\": \"785777f6e6f2090e8f00e69bad277b65da68f8fa\", \"live\": true, \"id\": \"x1956a4943c571c00\"}", "{\"sha\": \"127e59b85e852d2c60532db760b3e4a38b050694\", \"live\": true, \"id\": \"xed7dfdc3a8e413c1\"}", "{\"sha\": \"28963cf79346cc8c40f7aab63049c447a42cabf3\", \"live\": true, \"id\": \"xe0a09708548855f6\"}", "{\"sha\": \"cb663eae443e922829a5b7797aa2927bcf5858af\", \"live\": true, \"id\": \"xacaedda650922321\"}", "{\"sha\": \"488798da9e68b0b95d693c92c943064cd43a3936\", \"live\": true, \"id\": \"x192e9a79a6853b27\"}", "{\"sha\": \"260805e43fec936c62aba8b0fe8c7222da70b137\", \"live\": true, \"id\": \"x7ec49aa19b390a08\"}", "{\"sha\": \"fc187cb0503e08e0bf364662edec14545717a6c7\", \"live\": true, \"id\": \"x9cbb233316b95d7c\"}", "{\"sha\": \"062d15f98fc382a8d17ea03eebf573233bb64c73\", \"live\": true, \"id\": \"x5f9eb427a9a1bdb0\"}", "{\"sha\": \"f6746fe5d694c2bcbad00ad599d8fa4dc6704629\", \"live\": true, \"id\": \"xc0fc22985195d773\"}", "{\"sha\": \"86a7033e97d65f6a2d73b7fc2611df9f490664f0\", \"live\": true, \"id\": \"x4a064396ebafd982\"}", "{\"sha\": \"ba7c8a72fecc6b187348d8b0c7a2498a78e22c10\", \"live\": true, \"id\": \"xadd6cb3433d11b69\"}", "{\"sha\": \"ff7b8184a41a6fdf07a0268bc7ec803bac88da49\", \"live\": true, \"id\": \"x00475ab521787bd3\"}", "{\"sha\": \"03420da631b341ca0dd027af16f397c8fb43a8c9\", \"live\": true, \"id\": \"x4d470d84fc9c1dbf\"}"], "description": "", "basepoints": 10.0, "slug": "binomial-theorem", "kind": "Exercise", "name": "binomial-theorem", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_polynomials"], "exercise_id": "binomial-theorem"}, "converting_between_point_slope_and_slope_intercept": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/point-slope/converting_between_point_slope_and_slope_intercept/", "id": "converting_between_point_slope_and_slope_intercept", "display_name": "Point-slope form", "title": "Point-slope form", "all_assessment_items": ["{\"sha\": \"b2c0bde6cd3e4736032af93aba583eec353b013c\", \"live\": true, \"id\": \"xf7edafaddede8af9\"}", "{\"sha\": \"12dd9fcfd2f73a02ec77d93ad379c42b9ab54134\", \"live\": true, \"id\": \"x5f120412ab4a63c1\"}", "{\"sha\": \"0648a4f5377a45d36ac0b44c3cdaa1e7bba71d93\", \"live\": true, \"id\": \"x542f70a80e95f10b\"}", "{\"sha\": \"bb080ebda15517a4a241e488015b139b67d2d6b3\", \"live\": true, \"id\": \"x5db9640f27b6ca4c\"}", "{\"sha\": \"bc6ab4d628edb0237e6026c7221febc4851816e3\", \"live\": true, \"id\": \"x528b7c154e55e6ff\"}", "{\"sha\": \"a077b724c2115460802208da4e1d6a30c4d38b67\", \"live\": true, \"id\": \"x27d12a8a09e10632\"}", "{\"sha\": \"8a2171f08f89d1ed9ecaef767257930826dba89c\", \"live\": true, \"id\": \"xf916d8ea3fbb30cb\"}", "{\"sha\": \"b70d7e44774511d8e12a4f4cdb00bfb31467fdc2\", \"live\": true, \"id\": \"x4bc8c32b5b516e8e\"}", "{\"sha\": \"848d81d163ab4fafabfed355ba7fff0d8abcf940\", \"live\": true, \"id\": \"xe3a8683248333177\"}", "{\"sha\": \"a264dce2dd5eff03cb581299c6d8a27de9bbacf2\", \"live\": true, \"id\": \"x402873bf5e50021c\"}", "{\"sha\": \"9be229bb90a04295c8feb56bd0aa9ec1739a280f\", \"live\": true, \"id\": \"x457bd3efc3f5254a\"}", "{\"sha\": \"3406cbf5be9ef83b5a5294340cf285c7256d9d03\", \"live\": true, \"id\": \"xef23990b6e435ebd\"}", "{\"sha\": \"ef6b6648821e700853c40f69126ae909dbedbbb7\", \"live\": true, \"id\": \"x73e50e6c1c523efb\"}", "{\"sha\": \"c3fff3dc7ada3c3b19fbfc2349a43ee897342a6a\", \"live\": true, \"id\": \"xd96684bd96a63d55\"}", "{\"sha\": \"e32c1231b29e1ee2dfd99f60cafb3790029618f5\", \"live\": true, \"id\": \"xcdf96c3adf81bc05\"}", "{\"sha\": \"388e66988c6811c3714965122aa2dcc96ba77678\", \"live\": true, \"id\": \"x8fe9c74fc92ad9c8\"}", "{\"sha\": \"2010c3a9fd0f483e3b7a72dc43c92d7fd160b33e\", \"live\": true, \"id\": \"xad1c77fdac6fc920\"}", "{\"sha\": \"adf155eaae77facce6c454d355e09adaf062eda1\", \"live\": true, \"id\": \"x103202ac20c3d409\"}", "{\"sha\": \"4d1eb8955e9e3ce992dd6ac27dc81695bacb7bf9\", \"live\": true, \"id\": \"x9a1515dd7dfae291\"}", "{\"sha\": \"c26ab8ffab00b7ac3e879cf2bfa2e2e5c70ef2d7\", \"live\": true, \"id\": \"xeda7b738b4d80cda\"}"], "description": "Write equations in point-slope form given two pairs of values, and convert the equation into slope-intercept form.", "basepoints": 19.0, "slug": "converting_between_point_slope_and_slope_intercept", "kind": "Exercise", "name": "converting_between_point_slope_and_slope_intercept", "seconds_per_fast_problem": 15.0, "prerequisites": ["slope-intercept-equation-from-two-points"], "exercise_id": "converting_between_point_slope_and_slope_intercept"}, "cutting-shapes-into-equal-parts": {"uses_assessment_items": true, "id": "cutting-shapes-into-equal-parts", "display_name": "Cutting shapes into equal parts", "title": "Cutting shapes into equal parts", "all_assessment_items": ["{\"sha\": \"9f358f3383e1167aef318a260727bbfcec79deb7\", \"live\": true, \"id\": \"x8229209234fcecf1\", \"perseus_api_major_version\": null}", "{\"sha\": \"94ede45d8c75dc066b38bc2393f2d22580119d40\", \"live\": true, \"id\": \"x6bed979da1b89b99\", \"perseus_api_major_version\": null}", "{\"sha\": \"3f6ee5dcf3f86d858dd41464c40844e290e1b581\", \"live\": true, \"id\": \"x5f46938d977bdd0e\", \"perseus_api_major_version\": null}", "{\"sha\": \"feb5fb63e579ea26cb9a546fc6bf6f5761b12284\", \"live\": true, \"id\": \"x75f59e9d434dc641\", \"perseus_api_major_version\": null}", "{\"sha\": \"d11aa9019e65280a4dfc90d41dac6cb117b6b8d1\", \"live\": true, \"id\": \"xd184baebfcba022c\", \"perseus_api_major_version\": null}", "{\"sha\": \"be65d22305efa4621f0b9cd75eb144fe3fa2ccbb\", \"live\": true, \"id\": \"x95a5e586f52172bd\", \"perseus_api_major_version\": null}", "{\"sha\": \"50ed5d51dad2754c4b684d4621efeb73ce71e83f\", \"live\": true, \"id\": \"x85d7ff0f7a294fdb\", \"perseus_api_major_version\": null}", "{\"sha\": \"c8a5f45ebe971a3a9314bb4ed7f702cd9e436669\", \"live\": true, \"id\": \"x7c9ba2015a751312\", \"perseus_api_major_version\": null}", "{\"sha\": \"c0cee4f9f3eeacfac10725a335fb642158816f86\", \"live\": true, \"id\": \"x09fa4275d14ff416\", \"perseus_api_major_version\": null}", "{\"sha\": \"c3313bec80b108610b33dd638622b1fdd35926fd\", \"live\": true, \"id\": \"x9a3b728e17cae09e\", \"perseus_api_major_version\": null}", "{\"sha\": \"95a72c12103abf2b93487b877b613009f9a97c36\", \"live\": true, \"id\": \"x62bf4a90db00fe65\", \"perseus_api_major_version\": null}", "{\"sha\": \"4720700a24cc900db8b9acb5853f60c812735d6f\", \"live\": true, \"id\": \"x2058da6d9f163ec5\", \"perseus_api_major_version\": null}", "{\"sha\": \"6c1550a9fc0cbf58deb8ea3519f14bdc32a00d54\", \"live\": true, \"id\": \"xfde9d66df13d587c\", \"perseus_api_major_version\": null}", "{\"sha\": \"1a0a19ff6ac91665faa23ed0158400c7c7cc2f10\", \"live\": true, \"id\": \"x4eeaab2fec266e41\", \"perseus_api_major_version\": null}", "{\"sha\": \"a80e83027e0d5ada8146db05ec6e923a829d82c5\", \"live\": true, \"id\": \"x25daf110d23870b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"5edf4dfe5994f4491e3c415e38b6a67a6b55e7fe\", \"live\": true, \"id\": \"xb3aac92cc5f733bb\", \"perseus_api_major_version\": null}", "{\"sha\": \"e7bee048f741030c756530d88282bc6dfc0476d3\", \"live\": true, \"id\": \"xa3ba7811af663120\", \"perseus_api_major_version\": null}", "{\"sha\": \"4e5e85a7ca3a85723d9d3cc6b6df823c1fed8352\", \"live\": true, \"id\": \"x21961940218ed8dd\", \"perseus_api_major_version\": null}", "{\"sha\": \"db024609939575f1a3879d96a786922a4f5ea248\", \"live\": true, \"id\": \"xaf27004ba92f9a64\", \"perseus_api_major_version\": null}", "{\"sha\": \"245578f04904a1c3e46286c6c68e54c32a94be65\", \"live\": true, \"id\": \"x18b4086e09b8cde9\", \"perseus_api_major_version\": null}", "{\"sha\": \"3a991b12c5cc2d24dc0c9885ff3a4ed45631b867\", \"live\": true, \"id\": \"x00cd504fd4ea1f83\", \"perseus_api_major_version\": 0}", "{\"sha\": \"44fc34997187238653c4ff7bb0ab41d639a6bb8d\", \"live\": true, \"id\": \"x75668056946b66ef\", \"perseus_api_major_version\": 0}", "{\"sha\": \"dad960e457f2b710ee0c81dc235f98b5cb167167\", \"live\": true, \"id\": \"xed74ba578333c149\", \"perseus_api_major_version\": 0}", "{\"sha\": \"50003429d5f7306c0e7c0b595895b5f7c621cd9a\", \"live\": true, \"id\": \"x766b358c904f997c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c79171e0cadead6adf8d3f6ec2413cefe1b923bf\", \"live\": true, \"id\": \"xd362a08aef32f212\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1785759718bc0219fbed260e0a01a11e13f4e82e\", \"live\": true, \"id\": \"xc3680609a474efe6\", \"perseus_api_major_version\": 0}", "{\"sha\": \"91d2aa3aa7a823b4e75cbf55ca80840d66b98c3e\", \"live\": true, \"id\": \"xdbed238e23e39994\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5015a558e22db2e0a50c32c239c9b25a3ddcacb3\", \"live\": true, \"id\": \"xbb59ca78688e3d4c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a09fe88a0428a4dcd77e064d062262f273719474\", \"live\": true, \"id\": \"xc6457ba81c1f2e70\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5a3bab8018456e3ae5ded0d21cfab8a77e71c0f3\", \"live\": true, \"id\": \"x85d4b7ba4889f617\", \"perseus_api_major_version\": 0}", "{\"sha\": \"63cf7042448e13958cc4bf5f4948cae59a86c6d9\", \"live\": true, \"id\": \"x536e1f8bad9d6f77\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6d7f3a487cfe8febc80b42ac447031c25091887e\", \"live\": true, \"id\": \"xcb18026ef2125ff9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f76afeef6277bcd2a1799dda05797c966bfa952a\", \"live\": true, \"id\": \"x86b8e1fc45ba33ba\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ef6c6768a80461fc6a23f2f67428964e27677252\", \"live\": true, \"id\": \"xe7c0f0f5d92e840e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"96b84cf722c89e74db8e291d606fa7c0043e8b6f\", \"live\": true, \"id\": \"xcf5742841419acdf\", \"perseus_api_major_version\": 0}", "{\"sha\": \"04b4dc2e1cb75a00bb3696a1d73d2262835dbc1d\", \"live\": true, \"id\": \"xeb1276594f610b85\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2b8725c423a3f7ec690d85287c24c96cfb974ef7\", \"live\": true, \"id\": \"xda3eec176e7e2b7f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f1e73117eadb5db2bf7209b3f524e66d1e165e97\", \"live\": true, \"id\": \"xd01a0956468ae588\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7cc631d80ae88284d6545197855fc8777fe3dd19\", \"live\": true, \"id\": \"x009747b6ab7f5906\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1e109d305f825bd66b8f47a1eef4b2733fec468a\", \"live\": true, \"id\": \"x3d72f73e7f8ff5fc\", \"perseus_api_major_version\": 0}"], "description": "Identify unit fractions when given a visual or a context.\u00a0", "basepoints": 10.0, "path": "cutting-shapes-into-equal-parts/", "slug": "cutting-shapes-into-equal-parts", "kind": "Exercise", "name": "cutting-shapes-into-equal-parts", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cutting-shapes-into-equal-parts"}, "making-ten-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-make-10/making-ten-2/", "id": "making-ten-2", "display_name": "Making ten", "title": "Making ten", "all_assessment_items": ["{\"sha\": \"1c8576417e237318840fec2c83175cfe9f44f3be\", \"live\": true, \"id\": \"xc2e466ebdd27c24c\"}", "{\"sha\": \"2cd0cfdc9e6bb39ddd1e4f6a3effaf91e537a342\", \"live\": true, \"id\": \"xa33423a66d5c1751\"}", "{\"sha\": \"80d62043b182975028b8364c4452b68e7e8be11b\", \"live\": true, \"id\": \"x68362d5a22963557\"}", "{\"sha\": \"9e6bf560e4bf82f23f5c23a0f4926669b123c8dc\", \"live\": true, \"id\": \"xbb6b2ddd0b99e57f\"}", "{\"sha\": \"61256920acedf5c50b7d8f44523feea9b09de60e\", \"live\": true, \"id\": \"x2be36e196904c336\"}", "{\"sha\": \"b1eb22a808dda123cedc322c334fd95262484046\", \"live\": true, \"id\": \"x81506bed4a8be784\"}", "{\"sha\": \"43bfe219b1614daef20be602bbd620a5a6e66b17\", \"live\": true, \"id\": \"x33e76ac346c7d9bd\"}", "{\"sha\": \"21afb57844599930ce3b9eac192352cb6fec6684\", \"live\": true, \"id\": \"xb40f7dca1f93e527\"}", "{\"sha\": \"3dfc1d95e476b2a6add3b74f06274c4fdd795e93\", \"live\": true, \"id\": \"x74b18f4abba9d67f\"}", "{\"sha\": \"88cb8d7affb2be67270602242bf5f19110829cd9\", \"live\": true, \"id\": \"x01a528ef56e8eda7\"}", "{\"sha\": \"ff646c2cc3a6b648c29756e8dd4bf6f486b79130\", \"live\": true, \"id\": \"x7ef5b7c4e76b21e1\"}", "{\"sha\": \"ff5289548fbdc10989c00400b52487af600cbcea\", \"live\": true, \"id\": \"x0cfcf6f6a65ff99f\"}", "{\"sha\": \"c783418c1987ad4e4244d341aaf84cbe77393f76\", \"live\": true, \"id\": \"x7b1bf484889692ec\"}", "{\"sha\": \"3cc8cf1eefe07a4c2f05e100b91388404c6c9f3f\", \"live\": true, \"id\": \"x805729c45c7f95f3\"}", "{\"sha\": \"d18981eb937c3bb19cd28bb1f348fd46e7a6dfbf\", \"live\": true, \"id\": \"x85397f9111529c90\"}", "{\"sha\": \"50e5fea747cb3b6bdb34d57ff4eaff4191e54bf3\", \"live\": true, \"id\": \"x83a2cafc8e28c54a\"}", "{\"sha\": \"942c1d99edab3d9f8c07a98a13d1659540d1966d\", \"live\": true, \"id\": \"x23a4e16a44d3ddf3\"}", "{\"sha\": \"0789e6a12d8439cc7b3bba67714eec73eb166406\", \"live\": true, \"id\": \"x43f8fb36e05ec888\"}", "{\"sha\": \"01d16cb4ec3257d46d85059064650fc5034f3111\", \"live\": true, \"id\": \"x51833f67c45eea4e\"}", "{\"sha\": \"b1de590bcaf4938f30dc63158a0104f2cc0dbf54\", \"live\": true, \"id\": \"xed7722d4d39b1dd4\"}"], "description": "Practice adding numbers to make 10.", "basepoints": 10.0, "slug": "making-ten-2", "kind": "Exercise", "name": "making-ten-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["making-ten"], "exercise_id": "making-ten-2"}, "baroque-art-in-spain": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/spain/baroque-art-in-spain/", "id": "baroque-art-in-spain", "display_name": "Baroque art in Spain (quiz)", "title": "Baroque art in Spain (quiz)", "all_assessment_items": ["{\"sha\": \"4787f18ec2936dc92c89c7e7c6418931a3968062\", \"live\": true, \"id\": \"x807acffe2f4da792\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7340777f0c1f7d1bcf5656fd9ed74f682a4c611b\", \"live\": true, \"id\": \"xaf9c889b0a7c4eee\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2affae18953881a12f7767af528b6e10b029abe0\", \"live\": true, \"id\": \"x20cb5978207742c8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fdc9b807c1005341af9b5c45f719262fa6fe427c\", \"live\": true, \"id\": \"x5d703f876f2d287e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a4fb8a1393c54d6846a215eff9dfdcb0c3685c0b\", \"live\": true, \"id\": \"xd1700016f3de836c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a1cd19382754a291429d39ddef6853666b68143d\", \"live\": true, \"id\": \"xd662ce531e179c54\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b04517c2bc6d72b9c63194c4268f333b533a87f\", \"live\": true, \"id\": \"x249073ae7f1ba482\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "baroque-art-in-spain", "kind": "Exercise", "name": "baroque-art-in-spain", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "baroque-art-in-spain"}, "carbohydrates--the-structure-and-function-of-glycogen": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/carbohydrates-the-structure-and-function-of-glycogen/", "id": "carbohydrates--the-structure-and-function-of-glycogen", "display_name": "Carbohydrates: the structure and function of glycogen", "title": "Carbohydrates: the structure and function of glycogen", "all_assessment_items": ["{\"sha\": \"c082ba3c0330004956c3fa650667d655d527818a\", \"live\": true, \"id\": \"x693b70e9edb0caa7\"}", "{\"sha\": \"e28d5169298dd41d5cf459e758ed351a31340f89\", \"live\": true, \"id\": \"x8f44f210fb86f755\"}", "{\"sha\": \"ce7de72f24473c0b639054c6af1b681489d5ec49\", \"live\": true, \"id\": \"xfbb0b50a84715b1b\"}", "{\"sha\": \"0f2c76b35487f330ef4aa124435a98ef3cb62b85\", \"live\": true, \"id\": \"x1a3c454ac21cda99\"}", "{\"sha\": \"9ed275aaf68c6d74cfb8509b593362280385b7bd\", \"live\": true, \"id\": \"xdd35a41bc5d1941a\"}"], "description": "The structure and function of glycogen.", "basepoints": 10.0, "slug": "carbohydrates-the-structure-and-function-of-glycogen", "kind": "Exercise", "name": "carbohydrates--the-structure-and-function-of-glycogen", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "carbohydrates--the-structure-and-function-of-glycogen"}, "lights-puzzles-x-1": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/lights-puzzles/lights-puzzles-x-1/", "id": "lights-puzzles-x-1", "display_name": "Lights Puzzles X 1", "title": "Lights Puzzles X 1", "all_assessment_items": ["{\"sha\": \"bcb1c1fe96b4a340dff187b5e3f04aa3f206a1f4\", \"live\": true, \"id\": \"x58fa02ef7ab1b816\"}", "{\"sha\": \"e144db67f126343508d287d9893d46aaccfe21c4\", \"live\": true, \"id\": \"x3807380c39ab0739\"}", "{\"sha\": \"0989ab6aba1eb73a9e31a0f32a1d5cda57076e2b\", \"live\": true, \"id\": \"xa5fa6ab7672bc2f0\"}", "{\"sha\": \"e89b2ab5053773d61b71192da5f4dbf661810d62\", \"live\": true, \"id\": \"x36cf678465086274\"}", "{\"sha\": \"399d17f1d4183f23a28f440452e1cca3f071150e\", \"live\": true, \"id\": \"x65cd97da189d4f2e\"}"], "description": "Lights puzzles with Xs", "basepoints": 24.0, "slug": "lights-puzzles-x-1", "kind": "Exercise", "name": "lights-puzzles-x-1", "seconds_per_fast_problem": 30.0, "prerequisites": [], "exercise_id": "lights-puzzles-x-1"}, "lights-puzzles-x-3": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/lights-puzzles/lights-puzzles-x-3/", "id": "lights-puzzles-x-3", "display_name": "Lights Puzzles X 3", "title": "Lights Puzzles X 3", "all_assessment_items": ["{\"sha\": \"308897fe690bc0491d5dbd4fb5ad345abad45c88\", \"live\": true, \"id\": \"x3855606acd505b65\"}", "{\"sha\": \"55a202edafc607198f7ec7271b90d08f1aebf5bc\", \"live\": true, \"id\": \"x623eefe59871651d\"}", "{\"sha\": \"9b190fe550aab0a9896dc289b99da65245a704f4\", \"live\": true, \"id\": \"xa939836083f4262a\"}", "{\"sha\": \"d064a69dabdfd93f33f87babd061acf2984ed576\", \"live\": true, \"id\": \"x9b79fac7280cb30b\"}", "{\"sha\": \"15ab7b8b573bbd795607ffdf85bda5195b73f162\", \"live\": true, \"id\": \"x9fe9a4c3d4e2ab7c\"}"], "description": "5x5 lights puzzles with Xs!", "basepoints": 29.0, "slug": "lights-puzzles-x-3", "kind": "Exercise", "name": "lights-puzzles-x-3", "seconds_per_fast_problem": 60.0, "prerequisites": [], "exercise_id": "lights-puzzles-x-3"}, "lights-puzzles-x-2": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/lights-puzzles/lights-puzzles-x-2/", "id": "lights-puzzles-x-2", "display_name": "Lights Puzzles X 2", "title": "Lights Puzzles X 2", "all_assessment_items": ["{\"sha\": \"3ee6a310aa3c0776b1f1fd1d85fa8d92f4ce9b28\", \"live\": true, \"id\": \"x19ebc04c2217301c\"}", "{\"sha\": \"e3d3ac97d74e619dac180e75cd817ae8527fc6ce\", \"live\": true, \"id\": \"x4dc7dd84ac06496b\"}", "{\"sha\": \"099da62c6e32f52ac470831ebcb999b018e88dab\", \"live\": true, \"id\": \"xe5a225414337d6e4\"}", "{\"sha\": \"2fff1606d506bcead10b93f305eaa3b07d8e38a4\", \"live\": true, \"id\": \"x3aaf8d0be5970186\"}", "{\"sha\": \"364b1db0d6c2329ca62994ef528e3195e7b3250c\", \"live\": true, \"id\": \"xd828f117bcc863f4\"}"], "description": "Harder X puzzles", "basepoints": 29.0, "slug": "lights-puzzles-x-2", "kind": "Exercise", "name": "lights-puzzles-x-2", "seconds_per_fast_problem": 60.0, "prerequisites": [], "exercise_id": "lights-puzzles-x-2"}, "absolute-value-to-find-distance": {"uses_assessment_items": true, "path": "khan/math/arithmetic/absolute-value/abs_value_tutorial/absolute-value-to-find-distance/", "id": "absolute-value-to-find-distance", "display_name": "Absolute value to find distance", "title": "Absolute value to find distance", "all_assessment_items": ["{\"sha\": \"5dbbb5cbacd99397d1f7d45565bf15da205fd8e9\", \"live\": true, \"id\": \"xfeba4d3e50d86f68\"}", "{\"sha\": \"9d0978c47c3c77c8941154e6f3c898ba1f079f40\", \"live\": true, \"id\": \"xf3035ac589940ba4\"}", "{\"sha\": \"d9d9c03a9e58453dbb8ffad5ffaba601748f8475\", \"live\": true, \"id\": \"x76d6e637a385ffc0\"}", "{\"sha\": \"f1e93e2ad6d63416f044f7aab4fb7cddb0f47848\", \"live\": true, \"id\": \"xa8ccf6741922eaaf\"}", "{\"sha\": \"8d89546537e996ecc68b07b10cf94b771d96b08d\", \"live\": true, \"id\": \"x5afb43cd66f2bb42\"}", "{\"sha\": \"35c0eb56135520c60d26e2e61d6cc6283c96e612\", \"live\": true, \"id\": \"x06454d11ce9a2807\"}", "{\"sha\": \"78e08cb32c3960383ed685dbe4c11be452979964\", \"live\": true, \"id\": \"x17b0d05150d27b19\"}", "{\"sha\": \"cb33c6d7cb6cf9cbecd57c860525d1b30c87164c\", \"live\": true, \"id\": \"x2e27812b11dffe14\"}", "{\"sha\": \"b4bd894213c6133a2422503e90b8ec1e563560ed\", \"live\": true, \"id\": \"x2cb364c025caa4e5\"}", "{\"sha\": \"f62d2559e7f78a63aa986a629294bf24ac75053c\", \"live\": true, \"id\": \"xd1eea8026de3bcbd\"}", "{\"sha\": \"76eb7a84a57a2458be5a82867b042f6b7599d5b9\", \"live\": true, \"id\": \"x43a45aa16edd0de6\"}", "{\"sha\": \"7dbdce59215adfb02b78f66cace342260531db16\", \"live\": true, \"id\": \"x685f8779fbe1469b\"}", "{\"sha\": \"4503ce9699400d86b942799a9256af2e6269037d\", \"live\": true, \"id\": \"xd94e3cfa0f8e8f0c\"}", "{\"sha\": \"1dbed32d00be61a9ffc6acabcdf16580256e9cc8\", \"live\": true, \"id\": \"x512bdef5113a92fc\"}", "{\"sha\": \"b43dd519866f5754fb410e435d688104e44ab005\", \"live\": true, \"id\": \"x6b81dfbca5c8534b\"}", "{\"sha\": \"00c7d849ece2a9f58ba8bfff0c6b92472ee2910f\", \"live\": true, \"id\": \"xe1171ad7\"}", "{\"sha\": \"ddd1e357921a42079edfd184b3a2ed7c14ef3ca3\", \"live\": true, \"id\": \"x6766f9cb\"}", "{\"sha\": \"daa5fc62ff6a5a2f5a0274de3074323a4e07f5b1\", \"live\": true, \"id\": \"x3cedc07e\"}", "{\"sha\": \"739a64ffaa3518a6f844db7a35041f4da77782de\", \"live\": true, \"id\": \"x2de79cc0\"}", "{\"sha\": \"5e292a99a635e9eb7f48a7be66013ec6b9c42787\", \"live\": true, \"id\": \"x41cbe583\"}", "{\"sha\": \"30a1d1dcf6fdba68b51150b10f8af01272056eec\", \"live\": true, \"id\": \"xcaa4443aebe5e037\"}", "{\"sha\": \"54d964581087c8607301b839b803d06114865795\", \"live\": true, \"id\": \"xf9c16a6316aa8f72\"}", "{\"sha\": \"19796857a9b77b0fa2e3f216048c9772dbcbdee8\", \"live\": true, \"id\": \"xbb0f4d7452c986d6\"}", "{\"sha\": \"21ba24d1a86e46c9e25e2320b354d0dc89e5689a\", \"live\": true, \"id\": \"xd8a3c5c5f905cefd\"}", "{\"sha\": \"d82b32f6101be0dd72eecaac6f9200581eea2233\", \"live\": true, \"id\": \"x5bd6a1db74ca51e8\"}"], "description": "Practice taking the absolute value of the difference of two numbers to find the distance between those numbers. Apply this principle to solve word problems.", "basepoints": 10.0, "slug": "absolute-value-to-find-distance", "kind": "Exercise", "name": "absolute-value-to-find-distance", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_negative_numbers"], "exercise_id": "absolute-value-to-find-distance"}, "measure-mass": {"uses_assessment_items": true, "id": "measure-mass", "display_name": "Arithmetic word problems with mass", "title": "Arithmetic word problems with mass", "all_assessment_items": ["{\"sha\": \"619aad126952c32ff4dfc2c41483133d268877dd\", \"live\": true, \"id\": \"x3db3fdbc6de1c631\"}", "{\"sha\": \"e96d8898e941067ce64ff44d23405a11bc71a50c\", \"live\": true, \"id\": \"x6e06166effcfe65e\"}", "{\"sha\": \"c193b89a6d255eb4a4d1742254d73a88561400b7\", \"live\": true, \"id\": \"xa7a35bfbc21a79e1\"}", "{\"sha\": \"f392cbc38f07c022ca4aebf4d254d3c1adb9e60c\", \"live\": true, \"id\": \"x9037bf74ffb5a6f7\"}", "{\"sha\": \"decd7c6179acd8e9b7e4b2a1f27976a319a90837\", \"live\": true, \"id\": \"xaede8d4061d06905\"}", "{\"sha\": \"f4e2bc7be26932c1281e7c1d765f645a445a198a\", \"live\": true, \"id\": \"xc3cbd89cd7485810\"}", "{\"sha\": \"452caab39c7c0bbabfb89cacd9f8620177f24510\", \"live\": true, \"id\": \"x67bf2fa274fd84fd\"}", "{\"sha\": \"b21d6e07179e4e1ab5d6d695faf44551ef059b95\", \"live\": true, \"id\": \"x21d95909ce48c020\"}", "{\"sha\": \"292c88f7944e740cc3333de4cd7412b68b1aabf3\", \"live\": true, \"id\": \"xd56c08caecedd8ea\"}", "{\"sha\": \"a3bc574df372e1bae2945e2288a78baa4fc97d05\", \"live\": true, \"id\": \"xf1fd547f44ff942f\"}", "{\"sha\": \"6ca1b813561f266854343f2859b7cb0dfd1b85b4\", \"live\": true, \"id\": \"xcd0ef2d7507bf14f\"}", "{\"sha\": \"cfb9e2903690daca82da27b3330464579a1fc65d\", \"live\": true, \"id\": \"x2aa45103b40bdb61\"}", "{\"sha\": \"1d529529c761c15b4a20d9774247055720ceb372\", \"live\": true, \"id\": \"x007fc73af8062b64\"}", "{\"sha\": \"d52cce1db023c247d22a9278a26b54ab650bd21a\", \"live\": true, \"id\": \"x23ed6dabdb03fd8b\"}", "{\"sha\": \"bc4c39393ebbaf7274ee86ec495b41470a9ad2ad\", \"live\": true, \"id\": \"xfc888cbec1a937a4\"}", "{\"sha\": \"4b9cdbf5bfd5f79a5ab4c5d05d459278485303e0\", \"live\": true, \"id\": \"xab48b170a8da15b0\"}", "{\"sha\": \"dcc08926e243c9a29827be77240085097fc3d755\", \"live\": true, \"id\": \"x795ee599e2a4f193\"}", "{\"sha\": \"f0b6ec954114ccea3546b2ae9d4a76111496495d\", \"live\": true, \"id\": \"xd18171a9b8b71a3f\"}", "{\"sha\": \"c1d839ce7fb3fdbdf837784545a4c837579e3c66\", \"live\": true, \"id\": \"xa409bb899ac08b78\"}", "{\"sha\": \"27cb7d1743814706500e67dd41301ae8fc704dfd\", \"live\": true, \"id\": \"xd4563f3f9e193f9c\"}", "{\"sha\": \"0ff6a6cb759d4d523060cf0a29a2e9fa1c5325ba\", \"live\": true, \"id\": \"x1de0ae631bf872de\"}", "{\"sha\": \"5fbe7991f279aaccd690c698f629371ba19d10d0\", \"live\": true, \"id\": \"x50a4fe5da8fb0808\"}", "{\"sha\": \"c3fee4a227e4dd0c5ec0f8a67c0b29c406dfe1d8\", \"live\": true, \"id\": \"x4c4905e1dcc5d216\"}", "{\"sha\": \"c4528854bdf30e9cf02f1fe33c7097e3d0ad7c88\", \"live\": true, \"id\": \"x0c18a5dddb40a673\"}", "{\"sha\": \"1a42b55ca0ba89b6050b2984afbde92e18a8c57e\", \"live\": true, \"id\": \"xa484cfaa3430f9da\"}", "{\"sha\": \"2d306fecd96c31b7f2f0dfa1fcf9de02642cc017\", \"live\": true, \"id\": \"xab24f7e271074ac7\"}", "{\"sha\": \"678ff5a4be8ed46454ac7ef35687e63b0cdbb9c9\", \"live\": true, \"id\": \"x1f740d24ee397de8\"}", "{\"sha\": \"1b91d9be713ac3519ad991a9ae406c03c20105e6\", \"live\": true, \"id\": \"x3ed7c865105f27b1\"}", "{\"sha\": \"f488e1a6bdca6821682a4fe902373322b3fba263\", \"live\": true, \"id\": \"x2df77a32fd85d874\"}", "{\"sha\": \"d0540bbba6d803f0acb396462d4b99056944fc2f\", \"live\": true, \"id\": \"x224230064e2b03bc\"}"], "description": "Solve word problems involving mass. \u00a0Estimate the mass of items.", "basepoints": 10.0, "path": "measure-mass/", "slug": "measure-mass", "kind": "Exercise", "name": "measure-mass", "seconds_per_fast_problem": 4.0, "prerequisites": ["division_1", "multiplication_0.5"], "exercise_id": "measure-mass"}, "baroque-art-in-flanders": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/flanders-1/baroque-art-in-flanders/", "id": "baroque-art-in-flanders", "display_name": "Baroque art in Flanders (quiz)", "title": "Baroque art in Flanders (quiz)", "all_assessment_items": ["{\"sha\": \"26aac027abcaa8c9a86a3bd612b9086ba5431ec2\", \"live\": true, \"id\": \"x7bdfb0a2c50aaa3f\"}", "{\"sha\": \"41c50185506481b1bbd99b958ae2c2387c791e8e\", \"live\": true, \"id\": \"x7fbe45a0dfed489b\"}", "{\"sha\": \"6096b57f32ef0462984f5f5b74ac2a42e48495e1\", \"live\": true, \"id\": \"x7c2e985c4235130b\"}", "{\"sha\": \"8629014ccb3f6195e91bd2516140b783cf8f097d\", \"live\": true, \"id\": \"x392a58ad0c336c22\"}", "{\"sha\": \"148ab226d6a0db63a3f5b9f9f7cfca7247958dd6\", \"live\": true, \"id\": \"x22b2660ed60818c1\"}", "{\"sha\": \"94214d0c7d87bb310ae626430c0b06046ce8d9c0\", \"live\": true, \"id\": \"x9cf59f7e4b265343\"}", "{\"sha\": \"18a395b2ec760a19c9daff807b3a7a2fdeecd4bb\", \"live\": true, \"id\": \"x4b02b4d2146a98c5\"}", "{\"sha\": \"ff832cffdbaa611122e42ee108c362551a45868d\", \"live\": true, \"id\": \"xdc88d72df5fa4942\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "baroque-art-in-flanders", "kind": "Exercise", "name": "baroque-art-in-flanders", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "baroque-art-in-flanders"}, "positive_and_negative_parts_of_functions": {"uses_assessment_items": false, "path": "khan/math/algebra2/functions_and_graphs/analyzing_functions/positive_and_negative_parts_of_functions/", "id": "positive_and_negative_parts_of_functions", "display_name": "Positive and negative intervals", "title": "Positive and negative intervals", "description": "Identify positive and negative regions on graphs of functions", "basepoints": 12.0, "slug": "positive_and_negative_parts_of_functions", "kind": "Exercise", "name": "positive_and_negative_parts_of_functions", "seconds_per_fast_problem": 5.0, "prerequisites": ["domain_and_range_0.5"], "exercise_id": "positive_and_negative_parts_of_functions"}, "integumentary-quiz-passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/integumentary-quiz-passage-1/", "id": "integumentary-quiz-passage-1", "display_name": "How to remove a tattoo", "title": "How to remove a tattoo", "all_assessment_items": ["{\"sha\": \"b3117968ae2edf1d7eb8b83dda941142b6d90c86\", \"live\": true, \"id\": \"xa651826cbb35d7b8\"}", "{\"sha\": \"7bbe8be227c4352264e52319d0f7d8d4161202b3\", \"live\": true, \"id\": \"x77eb5c2a63d7200f\"}", "{\"sha\": \"0f388a875268dbe186c8a6333efbab691a1beeb1\", \"live\": true, \"id\": \"x985fd36963c897c9\"}", "{\"sha\": \"77f876ab2756718a54d12809b064e9b46d10814c\", \"live\": true, \"id\": \"x9a54176b47726220\"}", "{\"sha\": \"b4f187d98ab355f1cf4e768f9b67b19380663432\", \"live\": true, \"id\": \"x07419b1c9d213a30\"}"], "description": "Integumentary Quiz Passage 1", "basepoints": 10.0, "slug": "integumentary-quiz-passage-1", "kind": "Exercise", "name": "integumentary-quiz-passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "integumentary-quiz-passage-1"}, "integumentary-quiz-passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/integumentary-quiz-passage-2/", "id": "integumentary-quiz-passage-2", "display_name": "Skin cancer prevention", "title": "Skin cancer prevention", "all_assessment_items": ["{\"sha\": \"7df6c1bcf966c0d8f1d75a4fac258bbb4edd634a\", \"live\": true, \"id\": \"xa0165ec95d3b20bb\"}", "{\"sha\": \"52fa5c3d22007063a804bd509daf0d392af0c39c\", \"live\": true, \"id\": \"xc1c3602eba41bdd4\"}", "{\"sha\": \"e40634ad277a41fd722982ee250227d4d08a1b0f\", \"live\": true, \"id\": \"x8905b16eb6818904\"}", "{\"sha\": \"76240c9bc0f602e7f6ff6eca48ab5810cdd8faaa\", \"live\": true, \"id\": \"x7b7eb2b69ba9c067\"}", "{\"sha\": \"6978f4fc042dd89819e96f80c0845bce3967e807\", \"live\": true, \"id\": \"x59617e6cf59e3513\"}"], "description": "Integumentary Quiz Passage 2", "basepoints": 10.0, "slug": "integumentary-quiz-passage-2", "kind": "Exercise", "name": "integumentary-quiz-passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "integumentary-quiz-passage-2"}, "friedrich--abbey-among-the-oak-trees-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-germany/friedrich-abbey-among-the-oak-trees-quiz/", "id": "friedrich--abbey-among-the-oak-trees-quiz", "display_name": "Friedrich, Abbey among Oak Trees (quiz)", "title": "Friedrich, Abbey among Oak Trees (quiz)", "all_assessment_items": ["{\"sha\": \"13b594aa217042c76b531d199344c5244e6d435f\", \"live\": true, \"id\": \"x435b8f85ca3bdcae\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b0e899bcbab4b741428eb1c5bc0ea93221466a0\", \"live\": true, \"id\": \"xa3b0aa9cc10c4af8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c32938e2facaefab7917023f34615c74923377f7\", \"live\": true, \"id\": \"x85b0a11dc498da0b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d21de57dcf5db08ebde6763a10ea32a92e1ccc9e\", \"live\": true, \"id\": \"xee0d6a2e4dde792e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eae08fa021e31434ac79ed366a09135281473a98\", \"live\": true, \"id\": \"x01800a0eb37f43e4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "friedrich-abbey-among-the-oak-trees-quiz", "kind": "Exercise", "name": "friedrich--abbey-among-the-oak-trees-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "friedrich--abbey-among-the-oak-trees-quiz"}, "quiz--validate-this-html": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css/html-css-further-learning/quiz-validate-this-html/", "id": "quiz--validate-this-html", "display_name": "Quiz: Validate this HTML", "title": "Quiz: Validate this HTML", "all_assessment_items": ["{\"sha\": \"46ce2ed48051fcea86d43d559d663dfe0f53cec2\", \"live\": true, \"id\": \"x35f1eb9d851e8431\", \"perseus_api_major_version\": 3}", "{\"sha\": \"40247fcd1b5ecc7677da63ed00b6ea42cdad6660\", \"live\": true, \"id\": \"x2201339691a55cf7\", \"perseus_api_major_version\": null}", "{\"sha\": \"339b7b8fcbedaa9107ee946039eed6d5b791c28f\", \"live\": true, \"id\": \"x85567b14545dce37\", \"perseus_api_major_version\": null}"], "description": "Try validating small HTML pages and figure out what's wrong.", "basepoints": 10.0, "slug": "quiz-validate-this-html", "kind": "Exercise", "name": "quiz--validate-this-html", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--validate-this-html"}, "the-electrophoretic-separation-of-proteins": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-electrophoretic-separation-of-proteins/", "id": "the-electrophoretic-separation-of-proteins", "display_name": "The electrophoretic separation of proteins", "title": "The electrophoretic separation of proteins", "all_assessment_items": ["{\"sha\": \"a35c58945cfa9ef5efa062f82c67607c2e97b916\", \"live\": true, \"id\": \"xcffa9f9bf150cf57\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c2f0d9e9487e8838fe4cebdb8f48e7c3f5a382d7\", \"live\": true, \"id\": \"x027ec653f3c992b2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"52710b6a2496ffd5d1d6a3ede965a10187c67fab\", \"live\": true, \"id\": \"x212ddb37d96964c9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e540d0b7a038895733d967a696c616e712ea59a\", \"live\": true, \"id\": \"xcc896985021f256c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"769ed824f766a66a0450f2a8715df1f7b828125c\", \"live\": true, \"id\": \"x1eb39303aafab4a2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "the-electrophoretic-separation-of-proteins", "kind": "Exercise", "name": "the-electrophoretic-separation-of-proteins", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-electrophoretic-separation-of-proteins"}, "exploring-photographs-quiz": {"uses_assessment_items": true, "id": "exploring-photographs-quiz", "display_name": "Exploring photographs quiz", "title": "Exploring photographs quiz", "all_assessment_items": ["{\"sha\": \"762fd23917c25cba3c118f173727403f3972eb30\", \"live\": true, \"id\": \"xd5df5681b58d49d3\"}", "{\"sha\": \"203c741dd0098ff74d702bdc92ecf3d500786fdc\", \"live\": true, \"id\": \"x7c2758566481ecb9\"}", "{\"sha\": \"60df573fe5ae19636c6a73bb1efbe9a15a7c33ac\", \"live\": true, \"id\": \"x674708d46f53edfc\"}", "{\"sha\": \"8e5693061046ab5bc764bf345a98ca6c2bef8f52\", \"live\": true, \"id\": \"x8e72177540a7c3d7\"}", "{\"sha\": \"c1d9e9d1a88b11657ab6ad12aff61ca04e0c9771\", \"live\": true, \"id\": \"x97b1b07327505951\"}", "{\"sha\": \"f2c2875ebbe395d1b0bcfe1b85a3591588b33ec0\", \"live\": true, \"id\": \"x9066ab744f884e63\"}", "{\"sha\": \"140e9b9ac71d83923099ace77263e4c7c05a6ebc\", \"live\": true, \"id\": \"xaecb68bca8a45c6b\"}", "{\"sha\": \"2c863b1dd2b3ac6dbcafcd334efef60242943d0f\", \"live\": true, \"id\": \"x541b20e441e9c2a5\"}", "{\"sha\": \"66e0f81758756c413bc9ff15ee53f0a586008ccd\", \"live\": true, \"id\": \"x89f2656642195b29\"}", "{\"sha\": \"085627076e113a2cdd9400022f545a434bd3c7d9\", \"live\": true, \"id\": \"x9e6f470563da5380\"}"], "description": "Quiz on the article\u00a0Exploring photographs and its companion video\u00a0Looking at Photographs", "basepoints": 12.0, "path": "exploring-photographs-quiz/", "slug": "exploring-photographs-quiz", "kind": "Exercise", "name": "exploring-photographs-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "exploring-photographs-quiz"}, "the-effects-of-ultrasound-on-different-tissue-types": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-effects-of-ultrasound-on-different-tissue-types/", "id": "the-effects-of-ultrasound-on-different-tissue-types", "display_name": "The effects of ultrasound on different tissue types", "title": "The effects of ultrasound on different tissue types", "all_assessment_items": ["{\"sha\": \"25bf3797321a108a85b799e6e71e439ffd206efb\", \"live\": true, \"id\": \"x4706807840b0db84\"}", "{\"sha\": \"f013ab099eb481e2c3bcd89c541e691f6cbd610e\", \"live\": true, \"id\": \"x4a2ddd504724fdec\"}", "{\"sha\": \"58507bb1a8eb34dc1502c509a984c79958a71b2b\", \"live\": true, \"id\": \"x68ed75c5634eda9d\"}", "{\"sha\": \"7018259e88090e70e05046fb5726eea13e5a9883\", \"live\": true, \"id\": \"xd0fb93742358975c\"}", "{\"sha\": \"c9aecf50ec194d5841d38fbf7663cc5e54477dd7\", \"live\": true, \"id\": \"xae76be3b042ba15e\"}"], "description": "Questions related to ultrasound and acoustics", "basepoints": 10.0, "slug": "the-effects-of-ultrasound-on-different-tissue-types", "kind": "Exercise", "name": "the-effects-of-ultrasound-on-different-tissue-types", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-effects-of-ultrasound-on-different-tissue-types"}, "d-rer-s-self-portrait-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern/durer/d-rer-s-self-portrait-quiz/", "id": "d-rer-s-self-portrait-quiz", "display_name": "D\u00fcrer, Self-portrait (quiz)", "title": "D\u00fcrer, Self-portrait (quiz)", "all_assessment_items": ["{\"sha\": \"4a8555950ca4ddd7b6c17e731eda5e2aca5f3a0b\", \"live\": true, \"id\": \"x80d75000a9a6ea5a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"422d404cd4b0a42ad9f0b0327b8fc93cc6a54cf6\", \"live\": true, \"id\": \"xf618aca78ceb23b0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bbdca098dde34e6c092fcdeb283a7daf84810452\", \"live\": true, \"id\": \"xcaa944ed01ff735a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d6a88dbfcf422500929be6a858e1473e5e0fa35\", \"live\": true, \"id\": \"xa7e5b29befa0ff07\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "d-rer-s-self-portrait-quiz", "kind": "Exercise", "name": "d-rer-s-self-portrait-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "d-rer-s-self-portrait-quiz"}, "midline-of-trig-functions": {"uses_assessment_items": true, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/midline-of-trig-functions/", "id": "midline-of-trig-functions", "display_name": "Midline of trigonometric functions", "title": "Midline of trigonometric functions", "all_assessment_items": ["{\"sha\": \"54ae8e213aa11b592169d0e140e90de2f60eeae2\", \"live\": true, \"id\": \"x4cf36b79757f0a25\"}", "{\"sha\": \"e7f22151ab3fdfbb0707e9dbacff2e3118f53903\", \"live\": true, \"id\": \"xb25132f969b4c1df\"}", "{\"sha\": \"9c93bfae81c86d16516bbe6bdccc47dabc854db8\", \"live\": true, \"id\": \"x117bae760f3c1e0e\"}", "{\"sha\": \"c4f2f3cb54c670dcd9aa98dbc9629362ef857ac3\", \"live\": true, \"id\": \"xbf66a7d919bba59a\"}", "{\"sha\": \"478207a923fc991d0f9fe1edfd5143685eeea2c7\", \"live\": true, \"id\": \"x5e0b61467d0d35e8\"}", "{\"sha\": \"948b2224ad32010cdf8ee60f03af1113ed759eb8\", \"live\": true, \"id\": \"xc8a6b852bf46b9e8\"}", "{\"sha\": \"617f3df13e9f2d6c0942e4b174d0adfc72a86f75\", \"live\": true, \"id\": \"x8b05232efb06ba9e\"}", "{\"sha\": \"4c1dfd0ad9b9216964572a2890657579f3fdb5eb\", \"live\": true, \"id\": \"xb408cdaa3aaeb0d5\"}", "{\"sha\": \"2447ac848fb5dca7d96fa1461f0297a6d3f4f85d\", \"live\": true, \"id\": \"x67bfab183d24554d\"}", "{\"sha\": \"b66cbb14230cbe290aaea6e9394c3a923b5b367f\", \"live\": true, \"id\": \"x0006236da34c1a33\"}", "{\"sha\": \"46cd16e9b28bc95d79fbf78398a32566b21fa2fd\", \"live\": true, \"id\": \"x793dea87e1468e52\"}", "{\"sha\": \"5239375b657f687ffe1261d104c8800e66a517ea\", \"live\": true, \"id\": \"x88719381dc49383e\"}", "{\"sha\": \"41685f0e964f30ddae12c2c31a4937bffb250a17\", \"live\": true, \"id\": \"x0d3d242b97cc271c\"}", "{\"sha\": \"41c8380b737a9afaa8f0de8f31c51f762827287e\", \"live\": true, \"id\": \"xc14fa17894fa4ac3\"}", "{\"sha\": \"ab95de4e791e2e407ce456afa28e489ebc3ca263\", \"live\": true, \"id\": \"x9fe739677462f413\"}", "{\"sha\": \"0fa4a833797d723862711be06cb3346fbeec12d4\", \"live\": true, \"id\": \"xa4ea41837ed0b851\"}", "{\"sha\": \"c5fa1032f2b1fde23c741534b8761ff91debe889\", \"live\": true, \"id\": \"xfd852d4eed2afede\"}", "{\"sha\": \"efe67396999a197711448e2c6fff56008edb1285\", \"live\": true, \"id\": \"xd6197451e70bbf04\"}", "{\"sha\": \"a6e10bac6b599a0baa31078139cfc8afa0613e74\", \"live\": true, \"id\": \"x1a4ac6e57b81e009\"}", "{\"sha\": \"6334c83b445fc8b9abc87c77cca0d968891224c0\", \"live\": true, \"id\": \"x49fd98f8eea7fcee\"}"], "description": "Find the midline of trigonometric functions.", "basepoints": 10.0, "slug": "midline-of-trig-functions", "kind": "Exercise", "name": "midline-of-trig-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["symmetry-and-periodicity-of-trig-functions"], "exercise_id": "midline-of-trig-functions"}, "modeling-with-composite-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/composing-functions/modeling-with-composite-functions/", "id": "modeling-with-composite-functions", "display_name": "Modeling with composite functions", "title": "Modeling with composite functions", "all_assessment_items": ["{\"sha\": \"7e834c6f752184fc720f8751339720a993837cd8\", \"live\": true, \"id\": \"xf112aaa69d9157df\", \"perseus_api_major_version\": null}", "{\"sha\": \"dbc5f9152b92ca47eb369604ecd24174d61ebec4\", \"live\": true, \"id\": \"x5ba0d9b1ca8fc5b4\", \"perseus_api_major_version\": null}", "{\"sha\": \"8ed1ee590dc1dbf066ba3d90464cb215789e3bec\", \"live\": true, \"id\": \"xc2fb647f81768c57\", \"perseus_api_major_version\": null}", "{\"sha\": \"3470540e6b0692619cc0690e8ff4a3d900a87db0\", \"live\": true, \"id\": \"xabe81c0d1c962bfe\", \"perseus_api_major_version\": null}", "{\"sha\": \"91938d43f7fb8edbe1b20061ce4fce6cf9706d43\", \"live\": true, \"id\": \"x75fec64d29fbe710\", \"perseus_api_major_version\": null}", "{\"sha\": \"f79040d16f8bdf667a8bda7c24e4e7e29f67e8cb\", \"live\": true, \"id\": \"xaa7962a1c4e9164c\", \"perseus_api_major_version\": null}", "{\"sha\": \"4131e9f3b0ae466216fcf0b8429deadbee6b7ce2\", \"live\": true, \"id\": \"xc5af706f9fc23676\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab7ff9eaee6809c5746704f772f69925b391f34a\", \"live\": true, \"id\": \"x01ffd9f22da46544\", \"perseus_api_major_version\": null}", "{\"sha\": \"72f6ddc489b69e29e7a4793a0e3c2d8f07fad85d\", \"live\": true, \"id\": \"xe56b36f6781985c7\", \"perseus_api_major_version\": 2}", "{\"sha\": \"7cf4fce992ccde9fe394845e26a37dcbb6f3db38\", \"live\": true, \"id\": \"xb707a90e3b8d38a1\", \"perseus_api_major_version\": 2}", "{\"sha\": \"b2670d8ad308ae0ba0eb5484d100e3ca4e848db9\", \"live\": true, \"id\": \"xed21e4e4c4977183\", \"perseus_api_major_version\": 2}", "{\"sha\": \"dc7971c980176807a86ef14ededccf2dceadfbb1\", \"live\": true, \"id\": \"xa3b7a475c8988188\", \"perseus_api_major_version\": 2}", "{\"sha\": \"3e7b0eda070f61aaa986210bddda73804e17df54\", \"live\": true, \"id\": \"x301339d198f0d6fe\", \"perseus_api_major_version\": 2}", "{\"sha\": \"113f70b52f082aa35b3e5ee97bb06ec27c61c697\", \"live\": true, \"id\": \"x11f811ff38068330\", \"perseus_api_major_version\": 2}", "{\"sha\": \"8293f7c33853ca06c00a76a0a455372f65843c60\", \"live\": true, \"id\": \"x84a21b37a91ea057\", \"perseus_api_major_version\": 2}", "{\"sha\": \"3ee1356755aa1dae4e13292269b82c928918b9ec\", \"live\": true, \"id\": \"x8df618061aad95e8\", \"perseus_api_major_version\": 2}", "{\"sha\": \"435b47ba8628885611004cea9b54c4db3c1cdd1a\", \"live\": true, \"id\": \"x5457edef3c379192\", \"perseus_api_major_version\": 2}", "{\"sha\": \"27b2d9f7d2cfb0b82b39c7dea2644296d371ebaa\", \"live\": true, \"id\": \"x75e21c9aad4ffd91\", \"perseus_api_major_version\": 2}", "{\"sha\": \"40faceaf81791bb9b7e90bcbeecc03afe7019f5a\", \"live\": true, \"id\": \"xdbcdd95f9c943cf6\", \"perseus_api_major_version\": 2}", "{\"sha\": \"055abcabe47f6ec9d5a3926b682f292ed69e122b\", \"live\": true, \"id\": \"xa2c13eecc5437972\", \"perseus_api_major_version\": 2}", "{\"sha\": \"813b2b9a57d86739896d562407406e83da80c21f\", \"live\": true, \"id\": \"xb20f6349464cd59c\", \"perseus_api_major_version\": 2}", "{\"sha\": \"a4287a9abef14e62295f8e09d2f1b8d9f72b9428\", \"live\": true, \"id\": \"x421054ed8de21cc8\", \"perseus_api_major_version\": 2}", "{\"sha\": \"e533da7789678e5779b9e5fea68ed5980fd31c65\", \"live\": true, \"id\": \"xb864314a413046e5\", \"perseus_api_major_version\": 2}", "{\"sha\": \"11a4da23d39041ae6aba21a472c977743e8d8d33\", \"live\": true, \"id\": \"x1c5b088a1a95daf5\", \"perseus_api_major_version\": 2}"], "description": "", "basepoints": 10.0, "slug": "modeling-with-composite-functions", "kind": "Exercise", "name": "modeling-with-composite-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["functions_3"], "exercise_id": "modeling-with-composite-functions"}, "what-are-your-chances-of-getting-divorced-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/what-are-your-chances-of-getting-divorced-/", "id": "what-are-your-chances-of-getting-divorced-", "display_name": "What are your chances of getting divorced?", "title": "What are your chances of getting divorced?", "all_assessment_items": ["{\"sha\": \"84c140e1b39053a8c54110fe02e8811d0b31e95d\", \"live\": true, \"id\": \"x829cc1cafdc48f58\"}", "{\"sha\": \"88939e2cae5ffb53186a741d62c6d6e94406fa40\", \"live\": true, \"id\": \"xfc4af47817b30147\"}", "{\"sha\": \"00036abda4155662f294de72813709c8720bb2e6\", \"live\": true, \"id\": \"x44ec1399d01638f9\"}", "{\"sha\": \"f33fe40a52abd15037c09000ea256a14ec849a7f\", \"live\": true, \"id\": \"x5ba2eb8f735b5e30\"}", "{\"sha\": \"f874f9d103bbf0cefadde97b0d25441e09b85c71\", \"live\": true, \"id\": \"x53cb9c1bad2e78c4\"}"], "description": "Questions related to marital disruption.", "basepoints": 10.0, "slug": "what-are-your-chances-of-getting-divorced-", "kind": "Exercise", "name": "what-are-your-chances-of-getting-divorced-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "what-are-your-chances-of-getting-divorced-"}, "benchmark-angles": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/benchmark-angles/", "id": "benchmark-angles", "display_name": "Benchmark angles", "title": "Benchmark angles", "all_assessment_items": ["{\"sha\": \"fd4e5ba60976f641893bcce6a739ff1b3575b5e3\", \"live\": true, \"id\": \"x3554cca2a4f26df7\"}", "{\"sha\": \"c63f160ef5d48872116a4505c211f8d9931dc68b\", \"live\": true, \"id\": \"xa6507021ffe7d53d\"}", "{\"sha\": \"8ac9e56c739440569a21348c48c8be32b55a8957\", \"live\": true, \"id\": \"x62d7b969bbdb037a\"}", "{\"sha\": \"2489a252f90c1d362034e55bf148443ee583652c\", \"live\": true, \"id\": \"x42f174ad068a99ce\"}", "{\"sha\": \"0686f9d6dd4ca3f3e7f1471a601a4f2a86394982\", \"live\": true, \"id\": \"x8ee189a99eeb0414\"}", "{\"sha\": \"3709913d338c46b358301fbaf67ab347f361dbd5\", \"live\": true, \"id\": \"x5a53a7885cc1e412\"}", "{\"sha\": \"b5990bff6f275f99a0a8e852e596228205c257be\", \"live\": true, \"id\": \"x8d5c6bc320e53991\"}", "{\"sha\": \"7e725e5985e1e14e974a52ea7129d9e56e24234d\", \"live\": true, \"id\": \"xedbfd6a3412204b7\"}", "{\"sha\": \"6a5748281a86597b0ad001b7f5b546c6f1a6575d\", \"live\": true, \"id\": \"xb0afbe833bec4b15\"}", "{\"sha\": \"078065836f7fc502193ac012a6f056324224659f\", \"live\": true, \"id\": \"x50309d5f1b142ab0\"}", "{\"sha\": \"1efa352c9548191b953edf48f1257425df8b7413\", \"live\": true, \"id\": \"x6d37865e43597476\"}", "{\"sha\": \"e5ca46645fef1d6b5e451fd67d6daf778ffafb31\", \"live\": true, \"id\": \"x1caa681bcef7634e\"}", "{\"sha\": \"aaecc9b23a8f478014bbba2823cbba49cb30c52a\", \"live\": true, \"id\": \"xfc1619c4ab461ddb\"}", "{\"sha\": \"a15fed6cbc3920f0f3d1b4bcf8e4ad5ea748796b\", \"live\": true, \"id\": \"xe5974944cc434f58\"}", "{\"sha\": \"c561b19922b1659cae4fd977291dc97ec0571088\", \"live\": true, \"id\": \"xd5177ccaf78d3a30\"}", "{\"sha\": \"32680a01a01630426d228c1e5b4f1f6be718afaa\", \"live\": true, \"id\": \"x90132d401d6471d6\"}", "{\"sha\": \"173ca6e6ab83185b523c667ec23b53674e3190df\", \"live\": true, \"id\": \"x5c354d48e3db6ac9\"}", "{\"sha\": \"67c47e8c850bcb020dc48090f35740975ebd7cf5\", \"live\": true, \"id\": \"x8d85ca9ed1137ab4\"}", "{\"sha\": \"7607875b0fc70a4bf3cdad5a2a5dec9ea589c946\", \"live\": true, \"id\": \"xf56c85092c5059c0\"}", "{\"sha\": \"2e3ab045bc4c42d81e2346cccb749040c181454a\", \"live\": true, \"id\": \"xfc906b64a303a11f\"}", "{\"sha\": \"d0406592623db992e15d306c00e648d2dd60081f\", \"live\": true, \"id\": \"x6cff27b8821951af\"}", "{\"sha\": \"ce4abd1179d3c87f79d27a126b5c114cf370b925\", \"live\": true, \"id\": \"xef45230d848911b2\"}", "{\"sha\": \"c93a6ed831d3b07b1d5076199c5fb4d809821f56\", \"live\": true, \"id\": \"xd46610fd6b543fcd\"}", "{\"sha\": \"a5d0b5e85e15cf3aca0bb7100c7f4956f9b24d0d\", \"live\": true, \"id\": \"x29ff9407ced34f2c\"}", "{\"sha\": \"e301931f4015d9aa05c35a097ad1d040beabadac\", \"live\": true, \"id\": \"x2af6283782953afa\"}", "{\"sha\": \"b15423894b2b43e4080749bab6f997c01e359825\", \"live\": true, \"id\": \"x64de888209ceabe2\"}", "{\"sha\": \"835385c9692ccc2860cb2b7f082a01f85f1271d5\", \"live\": true, \"id\": \"xe2dda50d63e00f1c\"}", "{\"sha\": \"bae9f62f1979b9c313eafa5e8512f07cfbddf3c2\", \"live\": true, \"id\": \"x4a41ed86b953d410\"}", "{\"sha\": \"a5a59bcbf5b66628c9d037891d9ba70ead86703b\", \"live\": true, \"id\": \"x615a6e4f048a23b0\"}", "{\"sha\": \"bc9ced9590ae2ce68b90c2291ba06fffa7198a65\", \"live\": true, \"id\": \"xb4d725629a955ae4\"}"], "description": "Estimate the size of angles when given a picture or a situation.", "basepoints": 10.0, "slug": "benchmark-angles", "kind": "Exercise", "name": "benchmark-angles", "seconds_per_fast_problem": 4.0, "prerequisites": ["angle_types"], "exercise_id": "benchmark-angles"}, "converting-measurements-word-problems": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-unit-conversion/converting-measurements-word-problems/", "id": "converting-measurements-word-problems", "display_name": "Converting units word problems (metric)", "title": "Converting units word problems (metric)", "all_assessment_items": ["{\"sha\": \"6204f31f1c0fbd369dbbe1f8b549f244fea62ff9\", \"live\": true, \"id\": \"xad2384f3c606d928\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bfe3f1a0690644436eb5e07a049f0d6a4a0098d5\", \"live\": true, \"id\": \"x60e996d101a08d30\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fb91bcc777939704a340ff74e3ad006f23c1f555\", \"live\": true, \"id\": \"xe97ad81f92d8f2a6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a43d9e46f5f21b3d1b66c9b2d71c22fc588eb09c\", \"live\": true, \"id\": \"xbc3bab63183e1b9a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dad04e84acf7732233eccc193a00f52c295dd47f\", \"live\": true, \"id\": \"x51745ffabe92394d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"294ddcc6ae107af73f569e3f487398202046ed5c\", \"live\": true, \"id\": \"x511ed2fbd9698fc6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"826a5f7c5326778e1b84814e67b88eeca74535a1\", \"live\": true, \"id\": \"xe2618ba1c14b1079\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4a245228668e6b450720392dbc4244d2f18ae6dc\", \"live\": true, \"id\": \"x6a853ff1c19810cd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"86b7ffaa40101e2ecf587f423694e94162f7f3c7\", \"live\": true, \"id\": \"x35f1f1ea5c14a6c0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d73d4738905f50bb064e2a544151148a17be8fe\", \"live\": true, \"id\": \"x3bf05f2c655c2b88\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"925a274fec3ed3454b577bff507be22ff9af3d3f\", \"live\": true, \"id\": \"xb0736524d99d2575\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3cb35bacf0baf9ec9aa46972c7aedb4b393df43b\", \"live\": true, \"id\": \"x792bd96e35623197\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6f25ac406796b9330362e1a0a234649b2a0ec195\", \"live\": true, \"id\": \"x716a24f24783495b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"24dce5ab19659c7d4b0127888ddbc0d1b5f95fd7\", \"live\": true, \"id\": \"xeb98cbbcb8631828\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e1450223dd18c3f3329e02e858acac6d5f86a725\", \"live\": true, \"id\": \"x58aafcdab80ce3da\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b3c4d949bf44d6473c192380b43b8a82acbdc29\", \"live\": true, \"id\": \"xc8b35807a2ba7523\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"51ffb9a523f272e571bb3351e07553214f77bc05\", \"live\": true, \"id\": \"x2f7928d3368b234a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9ffb2495371d45bfc319e875a0a19dd13aa8eb99\", \"live\": true, \"id\": \"xfee638acea505c13\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9719cb00e9ece3a25f6dfcbb5573d548f4bad2d9\", \"live\": true, \"id\": \"xdbb476057f64d921\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83c2c46e0ffddfcbeaac335c2bc64aa25c3a895e\", \"live\": true, \"id\": \"x4c1bb19e7519fb3f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"69e38233420626f0557c9a8bc9cb5c400e70d84f\", \"live\": true, \"id\": \"x463c5fc5c1f8472b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8ea40019015d040365780b644cbc3575fef9c2c\", \"live\": true, \"id\": \"x041842b44a1a1a0a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e38fba9864fddb12f6e1d10b4149d1bc93b43b84\", \"live\": true, \"id\": \"x9f75e1946bf38de3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d2c46bb57dbfc69162886894f137b10074ce7fca\", \"live\": true, \"id\": \"x936987c801d0cf9e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Solve word problems that involve converting between metric measures of distance, volume, and mass, as well as measures of time.", "basepoints": 24.0, "slug": "converting-measurements-word-problems", "kind": "Exercise", "name": "converting-measurements-word-problems", "seconds_per_fast_problem": 28.0, "prerequisites": ["converting-units"], "exercise_id": "converting-measurements-word-problems"}, "understanding-whole-number-representations": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/order-of-operations/whole-number-representations-tut/understanding-whole-number-representations/", "id": "understanding-whole-number-representations", "display_name": "Understanding whole number representations", "title": "Understanding whole number representations", "all_assessment_items": ["{\"sha\": \"83cc61e833f8918d264995341cbc02443207eb57\", \"live\": true, \"id\": \"xd55a9ba9\"}", "{\"sha\": \"5e614dae11b9fd8de55aefe8bfdc979961fe3f16\", \"live\": true, \"id\": \"x160be3fa\"}", "{\"sha\": \"fa7e513c5d0e9bb25aeb44cc73ad009e7618632d\", \"live\": true, \"id\": \"x1320378b\"}", "{\"sha\": \"f6f363249c5084712c99dc5877660824937cbb37\", \"live\": true, \"id\": \"x12a2624a\"}", "{\"sha\": \"7bf94b8a642532bb7bfe7ae291cfdb7b8fc1b4dd\", \"live\": true, \"id\": \"xa705418e\"}", "{\"sha\": \"a2a302de642e62f4dd490a1dc318d9fd3c8bd9cf\", \"live\": true, \"id\": \"x108aa279\"}", "{\"sha\": \"c17f3e6028cf395180615c8af2aea6a966dd8b4a\", \"live\": true, \"id\": \"x640ff398\"}", "{\"sha\": \"3452ca1de5152925b8a0c7e5d84202c37b842f1c\", \"live\": true, \"id\": \"x36b40736\"}", "{\"sha\": \"41c488b3db7b1615a88202fca8a84db4f9946ea5\", \"live\": true, \"id\": \"x637d54e5\"}", "{\"sha\": \"5645078ff535f17c6974a8fd24b395405821baf6\", \"live\": true, \"id\": \"xab18d320\"}", "{\"sha\": \"3e0098ae091c52a0b87ebb795d598422fb351bb0\", \"live\": true, \"id\": \"x7fd06b28\"}", "{\"sha\": \"a377cd92fea6ed07306c75d39d8b283b5f8bb7df\", \"live\": true, \"id\": \"x43b31a5c\"}", "{\"sha\": \"e52b3d23005dd3dafb0e20af6ccb6dfabc48710b\", \"live\": true, \"id\": \"xa07cdc0d40a61f4c\"}", "{\"sha\": \"f4901c8f459dfe41474fd975f59339b59689e1b7\", \"live\": true, \"id\": \"xd716056ff56fa221\"}", "{\"sha\": \"3f8faa236df17c3d659ad474ea3b028b834972ca\", \"live\": true, \"id\": \"xa18b521acc5fbdea\"}", "{\"sha\": \"e9e863e5d7635870bf282b9f04e806d08987aaa8\", \"live\": true, \"id\": \"x02d9b0ddff5072fc\"}", "{\"sha\": \"479b37583e474df0420e409504a62df3c5ad5a92\", \"live\": true, \"id\": \"x9ef487cf\"}", "{\"sha\": \"c62e04c802d1d2f541947348050e20264750c69a\", \"live\": true, \"id\": \"x1f3c7e6e\"}", "{\"sha\": \"d549fc9809a463e3e9ee6f445f8677955d1d34bc\", \"live\": true, \"id\": \"xd3578d25\"}", "{\"sha\": \"712351fe3cdd193b1e3027712aeb68320c8de017\", \"live\": true, \"id\": \"x91675a9b\"}", "{\"sha\": \"8c182197db660266335b7501218271e291c363be\", \"live\": true, \"id\": \"xbe46556b\"}", "{\"sha\": \"d70dd2553ab3af95b4d37f0b23b208aa2de1058a\", \"live\": true, \"id\": \"x5fe56d30\"}", "{\"sha\": \"fd98b3a5ea4d774ccf93bed37bfc96a30cd84be4\", \"live\": true, \"id\": \"x85551a7b\"}", "{\"sha\": \"06b7399f7efab6530178e42ad761e51df39ef25d\", \"live\": true, \"id\": \"x87776a92\"}", "{\"sha\": \"da446bc85f5b5abc4fa42b7cdcca164e60c10b38\", \"live\": true, \"id\": \"x0d4fbb02\"}", "{\"sha\": \"753513afd854a35151420e26d546bb765aa3848f\", \"live\": true, \"id\": \"x4b36d261\"}", "{\"sha\": \"967936f40208c931ba44ede601258c174c8598b0\", \"live\": true, \"id\": \"x320500dd\"}", "{\"sha\": \"48ac981e5234e8691453b7cad0fd974e1ee40f73\", \"live\": true, \"id\": \"x129ebbe1\"}", "{\"sha\": \"a6cade1e59c074689f1e28594a6c803460d1bc31\", \"live\": true, \"id\": \"x562ccd47\"}"], "description": "Identify what each digit in a multi-digit number represents. \u00a0", "basepoints": 17.0, "slug": "understanding-whole-number-representations", "kind": "Exercise", "name": "understanding-whole-number-representations", "seconds_per_fast_problem": 10.0, "prerequisites": ["place_value"], "exercise_id": "understanding-whole-number-representations"}, "solving-for-unknown-angles": {"uses_assessment_items": true, "id": "solving-for-unknown-angles", "display_name": "Solving for unknown angles", "title": "Solving for unknown angles", "all_assessment_items": ["{\"sha\": \"8fff6bc8c01f39c0ff3a4b02fb40172ebd3fe7f0\", \"live\": true, \"id\": \"xbcbbb142d2dedf8c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2ca0f96cb7ff1e5dfa40b1517e2c62c064c7511c\", \"live\": true, \"id\": \"x315b8dda370c785b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f8e09731de59220c44c4aee234cf805e1c4df3d3\", \"live\": true, \"id\": \"xca5079552ad51c37\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e7e7abf0d0e080152e68388a0098670585735bc1\", \"live\": true, \"id\": \"x6628c290394ae2a2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"afef348b44339eaae0c23dcec28cede2a4b5eb39\", \"live\": true, \"id\": \"x70d3f23238c9d7b0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d3859fa3b3c27a9e71c7a07dcbf92d9105b33fda\", \"live\": true, \"id\": \"xbcb1e2f9e599028d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"838564e9782eb0145784f00a05b2e5728d9c0eaf\", \"live\": true, \"id\": \"xf511fcfe52799655\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c143a3bf34fae3aff2cc22c8d57c472bbc2f17aa\", \"live\": true, \"id\": \"x17156433775e4c48\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e4775641b06db85a32e80d0f737f96feff1bf0a2\", \"live\": true, \"id\": \"x067ecc37fab18853\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"80f7e2380faac9f217b98642103ec76e1a618f62\", \"live\": true, \"id\": \"xff994223bfdebf49\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"82609d832bda43adab97a35363c5c86b9cb61fa1\", \"live\": true, \"id\": \"x6f9d83ed4e103cdc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e916f1b48f14d1420f9172f409df1af79755c2c\", \"live\": true, \"id\": \"x3456fbda909446d1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"dc19bfca0a3d749d75fb1970f6404909be101b80\", \"live\": true, \"id\": \"xb44834cccd68029a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6af54e7abaf23dd0fa9d1ee5e792e75b5f4138d2\", \"live\": true, \"id\": \"xb470d5184500464f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"4a4fd0cdd8c5558f19e8e720a2ca933d95305f45\", \"live\": true, \"id\": \"x0d127f42e0245e50\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"75a7e836d67eddb555a1335a5c7a583c697231ea\", \"live\": true, \"id\": \"x15852e97c4b4f6a1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8329cb060be414a702db82df1a554d44ef3c7f04\", \"live\": true, \"id\": \"xda9646376abb74e0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b05ebcf6cadd589741d65d0a576fcfa06b522054\", \"live\": true, \"id\": \"xc37f66f73d39755d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d9e31441c730c4bd42c1912249c2fe1078d1598\", \"live\": true, \"id\": \"xfd5da9e8dee78737\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9fdbd6f1a0af899488568f4ad9ce3cf1a1fcf2e9\", \"live\": true, \"id\": \"xa2d9988c8dd4b456\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eb4771a94459c8e992033a8f9c73159d823ced28\", \"live\": true, \"id\": \"xb6e1c58a5c652896\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9977c69c1b8da1a3d5afcf953cf1aff9f0d441ec\", \"live\": true, \"id\": \"xc9092a538dcd8838\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"694c33e99174f8de5fdd30a9eb81a149a86e7345\", \"live\": true, \"id\": \"x0c1764e265eaba20\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"ed3f5176748d4858b656544c6e07131767730017\", \"live\": true, \"id\": \"xd23e78963c2e6d0c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8fd5feaca097e9fd37c4c9900781951db5497580\", \"live\": true, \"id\": \"xb4fb304f49bdb63b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f93557f72124aaa8d746deb41cc8b5f43b0381b8\", \"live\": true, \"id\": \"x8de3981f3d0bd24f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ec1db502a0145ce7e982be4836563548df1dc6ec\", \"live\": true, \"id\": \"x0594dae2dfb8c961\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a9abcea714746ae18757c6e0167d72e19cdbc693\", \"live\": true, \"id\": \"x90cba4b2494b458a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 19.0, "path": "solving-for-unknown-angles/", "slug": "solving-for-unknown-angles", "kind": "Exercise", "name": "solving-for-unknown-angles", "seconds_per_fast_problem": 14.0, "prerequisites": ["vertical_angles"], "exercise_id": "solving-for-unknown-angles"}, "measuring-time-word-problems": {"uses_assessment_items": true, "id": "measuring-time-word-problems", "display_name": "Time word problems", "title": "Time word problems", "all_assessment_items": ["{\"sha\": \"e0d5e3b7f0563e8bfa0415dae53e2ca58e65e14a\", \"live\": true, \"id\": \"x5213fb66a781a9cc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41ddbf4732ad0cf6b0050281a0d116ca38a989e7\", \"live\": true, \"id\": \"xe30fb145490db60e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6353d10d239eb1a70e386139e8c911940241854b\", \"live\": true, \"id\": \"x731949488da472a2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2d77b58c098de67a715b9716c94f3253bbf13fef\", \"live\": true, \"id\": \"xa77578aa6835044d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9742d5e169d7fe5cabcf8bb94886163d779100da\", \"live\": true, \"id\": \"x476a56f8dca07e4c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cb73f3c9c00312e564eb94d08973bd65baebcd2b\", \"live\": true, \"id\": \"x986947f415bec052\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"069f677b24c4ea1f0ca47314ab7298cbe3c0ad49\", \"live\": true, \"id\": \"x9d7530b5bd5d9693\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e27fe5559ca413c49b1a1aafe6ce8c64be0faed\", \"live\": true, \"id\": \"xc01b990eb41645a2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e541550a9ff983fdf5f34c618a58f70e12045c8\", \"live\": true, \"id\": \"x71e88781c99a82ce\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90f6450cb0e5a8bb9b0ddfd202db959ef8afa968\", \"live\": true, \"id\": \"xadb88807f0869372\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc9637b5e325b021b8fa6ba1c1af41a1ca532150\", \"live\": true, \"id\": \"x0e33d5a7b501bfd3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef5ace1da4f4b5c2cdd986ebe1e7c01c20e94fca\", \"live\": true, \"id\": \"xf62a73326f16249c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"33a1fa4d6d452594476c5c8f86e205824c72b240\", \"live\": true, \"id\": \"x063807f8dc0a5987\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ceb8aaab4100f1c1a18b0eeb87c29d468280e405\", \"live\": true, \"id\": \"xac028a6faf0caeec\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d7b906f00883d073b4c44b635cda9d1d6cbed8b\", \"live\": true, \"id\": \"x03ccd07b411fdd06\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b7d29dba541698c585ac022ae45e5d6bc43d03e8\", \"live\": true, \"id\": \"xb3e003bb414dc575\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8dbbfa6a502e858c168ce8562e4d331c44bc3f9e\", \"live\": true, \"id\": \"x5567117574131509\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"07fbd4d2782e9f007ca7f347318952d5ab4eda82\", \"live\": true, \"id\": \"x0badadc76e3f24e9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"af7de88f28ee738a7922f443feb4911b8e38c13a\", \"live\": true, \"id\": \"xcfcfb43b1c4af223\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Solve word problems to find what time an event occurred or how long an event lasted.", "basepoints": 18.0, "path": "measuring-time-word-problems/", "slug": "measuring-time-word-problems", "kind": "Exercise", "name": "measuring-time-word-problems", "seconds_per_fast_problem": 13.0, "prerequisites": ["telling-time-word-problems"], "exercise_id": "measuring-time-word-problems"}, "mtu-1-unit-quiz": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/measuringuniverse/spacemath1/mtu-1-unit-quiz/", "id": "mtu-1-unit-quiz", "display_name": "Modelling the solar system", "title": "Modelling the solar system", "all_assessment_items": ["{\"sha\": \"760528b81447c8917d6dfff1c0e46b3160fb7372\", \"live\": true, \"id\": \"x42e3394297886bd6\"}", "{\"sha\": \"a0294d986898a4db71f5279b48a145794bb8f521\", \"live\": true, \"id\": \"xf38ffb4531a4069f\"}", "{\"sha\": \"90d0fdec8631dc7bcb3d3767d2494e39ec5041ad\", \"live\": true, \"id\": \"x029d841d7727092d\"}", "{\"sha\": \"a45fbd714ff60aca223395903584741c501b5087\", \"live\": true, \"id\": \"xe06fe5b9f19f25db\"}", "{\"sha\": \"6788b47ed3893070985bf2bfe4682dbecc46f71f\", \"live\": true, \"id\": \"xf06a5ee0fd53332d\"}", "{\"sha\": \"84bcf442d131bfbc1506af025806b1b3660f1d0b\", \"live\": true, \"id\": \"x68d9901c5426ae76\"}"], "description": "", "basepoints": 10.0, "slug": "mtu-1-unit-quiz", "kind": "Exercise", "name": "mtu-1-unit-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mtu-1-unit-quiz"}, "parthenon-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/parthenon-quiz/", "id": "parthenon-quiz", "display_name": "Parthenon (quiz)", "title": "Parthenon (quiz)", "all_assessment_items": ["{\"sha\": \"bcf451f6a495ca4eaa3345241817d1d3c9798548\", \"live\": true, \"id\": \"x2ae265e9679b1f66\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4be0a69df1020d6ba186872db048927c1c4910a9\", \"live\": true, \"id\": \"x2025ceb665c88b0a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"20d6d42a2e0f9885e0c654249185d5b9afea25c0\", \"live\": true, \"id\": \"x75843a55ddda2526\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7df7eca953d42cbd8ffdca566699fc6ddc00e649\", \"live\": true, \"id\": \"x541901332999a51e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6666abfea3d29d644337f2c87a9e5ba5f8008fcc\", \"live\": true, \"id\": \"xdad24db06640fd68\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d976a9fe674c11257a07dc34e96ace9e1ca05dfc\", \"live\": true, \"id\": \"x7f3463c0161397cf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e58b9d5bbe47bfad9d888712fb6d6334feeaf52\", \"live\": true, \"id\": \"xef2560d7d624e4da\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"da795bb6191ae3146133c9e36643bf59c2fcd23b\", \"live\": true, \"id\": \"x9f9bc608681ea3df\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "parthenon-quiz", "kind": "Exercise", "name": "parthenon-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "parthenon-quiz"}, "quiz--how-our-ancestors-evolved": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/early-humans/how-ancestors-evolved/quiz-how-our-ancestors-evolved/", "id": "quiz--how-our-ancestors-evolved", "display_name": "Quiz: How Our Ancestors Evolved", "title": "Quiz: How Our Ancestors Evolved", "all_assessment_items": ["{\"sha\": \"31a68d4bbb9141fbd9f30d3f079baff7dd819566\", \"live\": true, \"id\": \"x89a51c3c01697f7a\"}", "{\"sha\": \"b551cdf2581f67f7199d8d9a3fa91bd10f45d0f9\", \"live\": true, \"id\": \"x99902123818d28bf\"}", "{\"sha\": \"6d2f579c3e434950da12b0eb2c6e7552b02b7a11\", \"live\": true, \"id\": \"x2497a84c015475cd\"}", "{\"sha\": \"504f90efcf5a396d5e180062607614eec1641700\", \"live\": true, \"id\": \"xcc4fd07ed208c337\"}", "{\"sha\": \"e634fe84a216d226e9fd76a1a1100a43b0352cfa\", \"live\": true, \"id\": \"x2f1d46c52c42e927\"}"], "description": "Quiz 6.0", "basepoints": 10.0, "slug": "quiz-how-our-ancestors-evolved", "kind": "Exercise", "name": "quiz--how-our-ancestors-evolved", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--how-our-ancestors-evolved"}, "inequalities-in-one-variable-1": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/greater-than-less-than/inequalities-in-one-variable-1/", "id": "inequalities-in-one-variable-1", "display_name": "Writing inequalities to describe real-world situations", "title": "Writing inequalities to describe real-world situations", "all_assessment_items": ["{\"sha\": \"36cc10305a5e69554f325d5e7dbeef3ece3a50df\", \"live\": true, \"id\": \"x0c436701\"}", "{\"sha\": \"27b3f875a3f402c7129590874ed514fcb587121e\", \"live\": true, \"id\": \"xb61bde06\"}", "{\"sha\": \"2d323c1d10cd2df18fc14bf2c4cb7fec2f867a54\", \"live\": true, \"id\": \"xb14e6ab0\"}", "{\"sha\": \"74632ed706fc78e85fec775186775a5ed0f76b27\", \"live\": true, \"id\": \"x55a5f145\"}", "{\"sha\": \"0c652efec3b6b39a9bc17fa7a02def75a7337d54\", \"live\": true, \"id\": \"x5764785e\"}", "{\"sha\": \"a620945f7acaafef048a9f3d05f9aae6c5fa28e3\", \"live\": true, \"id\": \"x98a3df75\"}", "{\"sha\": \"658a376b2cbb6a04c78b196783ba00a9dd93bea0\", \"live\": true, \"id\": \"xca259232\"}", "{\"sha\": \"2a92233acde441db95e241cc0c5caec4380b9f95\", \"live\": true, \"id\": \"x2163ffb6\"}", "{\"sha\": \"098a775f575995ffd3839902fa1a1a4e5cb19b4b\", \"live\": true, \"id\": \"xf1acc22f\"}", "{\"sha\": \"12adc1539103942fa1740b99f2c382213dc7b107\", \"live\": true, \"id\": \"x34e2e69e\"}", "{\"sha\": \"0572a559056f1d4a6e802bff47c5b8996a40f740\", \"live\": true, \"id\": \"x39a57557\"}", "{\"sha\": \"a26f89337b530cbed496bab521b4e9c57aad068b\", \"live\": true, \"id\": \"x33072a89\"}", "{\"sha\": \"223d13f30c0a87b2955c9073fb3a6dd6094ff317\", \"live\": true, \"id\": \"x4617b08fd009f659\"}", "{\"sha\": \"7facebeb06f7669e892f6b70e2931716c2599f2b\", \"live\": true, \"id\": \"x1802f303aa70d1d6\"}", "{\"sha\": \"02f3dc7f7ab30f5bc6ee30e8aff9929104f3c68e\", \"live\": true, \"id\": \"x6d5d34373987f057\"}", "{\"sha\": \"23f42f667437a9f62427811022c2cfa901149aac\", \"live\": true, \"id\": \"xb11913e03b4c456a\"}", "{\"sha\": \"2a1e6931b678ed777861eec2735d8e3ef750094e\", \"live\": true, \"id\": \"x7d503e08b1b66627\"}", "{\"sha\": \"3bbc45d9fde2724919b7a52efd1548f600b8e332\", \"live\": true, \"id\": \"x9cf0175eef06eb99\"}", "{\"sha\": \"2840b9e6e893e46eaf6d523a60b3f31c6216dba3\", \"live\": true, \"id\": \"x7cb37077d8f99d75\"}"], "description": "Practice writing inequalities with variables to describe real-world situations.", "basepoints": 21.0, "slug": "inequalities-in-one-variable-1", "kind": "Exercise", "name": "inequalities-in-one-variable-1", "seconds_per_fast_problem": 19.0, "prerequisites": ["writing-numerical-inequalities"], "exercise_id": "inequalities-in-one-variable-1"}, "measurement-units": {"uses_assessment_items": true, "id": "measurement-units", "display_name": "Converting to smaller units", "title": "Converting to smaller units", "all_assessment_items": ["{\"sha\": \"44e4311709ee94788bfe468ff597a8f34abc50e6\", \"live\": true, \"id\": \"x1fea58ae712c50f7\"}", "{\"sha\": \"2249b65e36c8131249ae49906e4ddc468583f6d9\", \"live\": true, \"id\": \"xe8896d784ddeea4b\"}", "{\"sha\": \"c12a6c39c39d2e1f791d2f02e75f5049a26deb95\", \"live\": true, \"id\": \"xaa7067ce863c00b7\"}", "{\"sha\": \"15386a82fcd6e20f9fbada869397a1d3c9f15283\", \"live\": true, \"id\": \"xce75955ca70c5a2a\"}", "{\"sha\": \"5014c2487b5b5ae992bd4e7bbe0d69f52676053e\", \"live\": true, \"id\": \"x92ad4798b8943b8c\"}", "{\"sha\": \"d2f4f4d0d92d62dfe0845f6ac8414b97596dbcf6\", \"live\": true, \"id\": \"x7af362856eeb6efc\"}", "{\"sha\": \"73d621b9ed579ad0a684ecf50e5eb2682baa11df\", \"live\": true, \"id\": \"xf9c6c46b0e42129e\"}", "{\"sha\": \"69cd644a1a03b98b91b89b2604fe62b2e7e91521\", \"live\": true, \"id\": \"xaa9d438887d83fc5\"}", "{\"sha\": \"7997fc44881e7a082c6aff74ca3117599ea406c9\", \"live\": true, \"id\": \"xd0a0e9c1f996b64c\"}", "{\"sha\": \"c6d881541a816fab22c490800ad33b460da3a61f\", \"live\": true, \"id\": \"xf8cf7c8ff294bdd0\"}", "{\"sha\": \"ea041195264a47ee70f7d969a9ed4276e68dbb93\", \"live\": true, \"id\": \"xbf7b94c4b878e315\"}", "{\"sha\": \"6d2d62b76979ca2959b60300f22ce2045333988f\", \"live\": true, \"id\": \"x1e641fb8af678721\"}", "{\"sha\": \"0f1c5fe67760b149ed2318975b0cc8ead7c67943\", \"live\": true, \"id\": \"xf813f7d3dd0f9821\"}", "{\"sha\": \"244bc031b3c6059ce9b221b0a70f6a01e1f28caa\", \"live\": true, \"id\": \"xa6976d6863ac4441\"}", "{\"sha\": \"af7daf3a638feca1389c1d8c8ae4c35eb44cb8ec\", \"live\": true, \"id\": \"x80be92c45fb8035f\"}", "{\"sha\": \"dfcf233ef9a66528d3160316d3d416de00d0fb8d\", \"live\": true, \"id\": \"x107fd8c6d2f8fc50\"}", "{\"sha\": \"8a718876888838360392d9f768017b6b0bc956a0\", \"live\": true, \"id\": \"x101bc5ded43069d6\"}", "{\"sha\": \"aab5a8939554e3de4b72f3487ab1a2fceeb5ba51\", \"live\": true, \"id\": \"x09489e6745564c0f\"}", "{\"sha\": \"8f6e56b456fcdb9b5fa4b46778b9655b81cda083\", \"live\": true, \"id\": \"x58d4e96a4be100d0\"}"], "description": "Practice converting a measure to a smaller unit. \u00a0Items include metric units, U.S. customary units, and units of time.", "basepoints": 10.0, "path": "measurement-units/", "slug": "measurement-units", "kind": "Exercise", "name": "measurement-units", "seconds_per_fast_problem": 4.0, "prerequisites": ["unit-sense", "multiplication_3"], "exercise_id": "measurement-units"}, "isenheim-altarpiece-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/isenheim-altarpiece-quiz/", "id": "isenheim-altarpiece-quiz", "display_name": "Gr\u00fcnewald, Isenheim Altarpiece (quiz)", "title": "Gr\u00fcnewald, Isenheim Altarpiece (quiz)", "all_assessment_items": ["{\"sha\": \"f3ec8d4f03fd0d5f5b3929e0fbfa37f3312509fd\", \"live\": true, \"id\": \"x0dc35b8d1dda1790\"}", "{\"sha\": \"c7de14dc255fea45d4e48f1bf665038d403de677\", \"live\": true, \"id\": \"x9584aa934e3e03c7\"}", "{\"sha\": \"c0c0afa6ec6980a01b883fc4c6fd4636009c3eb9\", \"live\": true, \"id\": \"xd84b5b3ba264b1fa\"}", "{\"sha\": \"8a8f4260033588340ee53138de19c0dfca086cae\", \"live\": true, \"id\": \"x17ebc06907585ee2\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "isenheim-altarpiece-quiz", "kind": "Exercise", "name": "isenheim-altarpiece-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "isenheim-altarpiece-quiz"}, "area-between-two-curves": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/solid_revolution_topic/area-between-curves/area-between-two-curves/", "id": "area-between-two-curves", "display_name": "Area between two curves", "title": "Area between two curves", "all_assessment_items": ["{\"sha\": \"f60f84150e5b07d048ee3a7a22423fec688840df\", \"live\": true, \"id\": \"x9d7864f89efb74fa\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c060ed3e0f86fc2e42ca7cf28bd2101b8ee3476d\", \"live\": true, \"id\": \"x548135e7d7b157a8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1708c3cf113ebffbd956d1ce1c2392ac863d37b9\", \"live\": true, \"id\": \"x75601e3cbe9245eb\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c681c41b2856df0659deedd5dacb907621a0ccb2\", \"live\": true, \"id\": \"xd86bdcb5ac732c74\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fbdf0248d77b2fdc772ef1147732b3e69305a99a\", \"live\": true, \"id\": \"x38de0aed4cbbeff3\", \"perseus_api_major_version\": 2}", "{\"sha\": \"2f8ce96014037dc03e4165b35dc6c96a17e6eea2\", \"live\": true, \"id\": \"xf4f7eb63856bfef1\", \"perseus_api_major_version\": 2}", "{\"sha\": \"95202be29fd07f553a800145acf25911cdb1b95f\", \"live\": true, \"id\": \"x37d5ecf8749a5c4a\", \"perseus_api_major_version\": 2}", "{\"sha\": \"f5511a8b329b11c1b91627db919cd1fc62431e7f\", \"live\": true, \"id\": \"xd939271d40f7dc0f\", \"perseus_api_major_version\": 2}", "{\"sha\": \"72e85ac24322ca18e991d2653e6ff9f92db4187c\", \"live\": true, \"id\": \"xf7ac7d02cf7a8e47\", \"perseus_api_major_version\": 2}", "{\"sha\": \"354eaf6ac154635ee4a847b03086432ca248900a\", \"live\": true, \"id\": \"xdae3374206522d77\", \"perseus_api_major_version\": 2}", "{\"sha\": \"50b2ee6194938656f436e2cf349b142658bbd963\", \"live\": true, \"id\": \"x9cca20637dcb9799\", \"perseus_api_major_version\": 3}", "{\"sha\": \"cf2f882ffcb331639005d5cc8d03fcea07d90586\", \"live\": true, \"id\": \"x60e8b52d1aeddb24\", \"perseus_api_major_version\": 2}", "{\"sha\": \"f6306bb782df9be8cd7c45081f92c8dc4238bfdf\", \"live\": true, \"id\": \"xc6241deb98409f5d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c66cd8352adac4b5e6ef6f896843c3c0a1ed26e8\", \"live\": true, \"id\": \"x4c7377d58b8c69e3\", \"perseus_api_major_version\": 2}", "{\"sha\": \"74b1d6588d21bf8b33121ae4d41af4cf21c7d3e1\", \"live\": true, \"id\": \"x28a08a67be26fc1a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2649526698679b461cff99043e56238d23b8f78e\", \"live\": true, \"id\": \"x8086958392d02389\", \"perseus_api_major_version\": 0}", "{\"sha\": \"20ebd597e1ddb03614f294a446a88f0ca91e3984\", \"live\": true, \"id\": \"x73c967e8f1d84b82\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e75578db3f8753e9fcdb0d3cf1df53797515fd19\", \"live\": true, \"id\": \"xfd4b79d95f4a10a5\", \"perseus_api_major_version\": 2}", "{\"sha\": \"8f49cef5f3ce1cbc25c4dc4d6fa0a52773bc7b71\", \"live\": true, \"id\": \"x80d3cc689a349559\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7e8f4ecf84eced2744461d5c4598152e47d49c72\", \"live\": true, \"id\": \"x3cfa43bcfe6cf13a\", \"perseus_api_major_version\": 2}", "{\"sha\": \"ac60442668e4b5cfc0618738661a03001426639b\", \"live\": true, \"id\": \"xe17f2ea717b08504\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6f8ce6cd31191c0b39d6e4f0693fb97492e92a93\", \"live\": true, \"id\": \"x9a6a22ef7b8fe006\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c2a378d6a8fc02db5c3c6afe2b2071e20d737ea3\", \"live\": true, \"id\": \"x8a4f07e2c8896207\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b94f181cfab5abd7f582b7b77ad3f7426dabcb9d\", \"live\": true, \"id\": \"x02d3e8a4118984ea\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6098af1cf1ebda1548d4820a88b649de7b44a386\", \"live\": true, \"id\": \"x444e722e6749fcdc\", \"perseus_api_major_version\": 3}", "{\"sha\": \"33cb0a992afd7036a0195cba7c22580c57357d3f\", \"live\": true, \"id\": \"x06db6befa3a14d83\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f08e8f75ed9d21cf3d42ee2cf1c7b48966dc57e5\", \"live\": true, \"id\": \"x21a532af7d6679fb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"07105c5450751c380db498e633faeaa42dc3368f\", \"live\": true, \"id\": \"x9ee8113d00c47745\", \"perseus_api_major_version\": 3}", "{\"sha\": \"a995b87335f2a998ee8254329dd300ccc9cd633b\", \"live\": true, \"id\": \"xc17d05812b5e8d45\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c9577b40d349d31bc11bfa8c7c1045cb6b34590d\", \"live\": true, \"id\": \"x6d82dc5f7648f849\", \"perseus_api_major_version\": 3}", "{\"sha\": \"fac51dbdf0d849ad3891f61739e8b4976a419956\", \"live\": true, \"id\": \"x184387c69ec8c90c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"947c9a911d791ea58836b76728810acf0bd0c9fb\", \"live\": true, \"id\": \"xabed256666138b32\", \"perseus_api_major_version\": 3}", "{\"sha\": \"108083a56d5c06df662cfd907fba2e32a4e5d16a\", \"live\": true, \"id\": \"xfea839a72c16553a\", \"perseus_api_major_version\": 3}"], "description": "", "basepoints": 10.0, "slug": "area-between-two-curves", "kind": "Exercise", "name": "area-between-two-curves", "seconds_per_fast_problem": 4.0, "prerequisites": ["area-between-a-curve-and-an-axis"], "exercise_id": "area-between-two-curves"}, "relative-position-on-the-coordinate-plane": {"uses_assessment_items": true, "id": "relative-position-on-the-coordinate-plane", "display_name": "Distance between points on the coordinate plane", "title": "Distance between points on the coordinate plane", "all_assessment_items": ["{\"sha\": \"557134c2032d9bddb992a9bd5b09e2710d8681de\", \"live\": true, \"id\": \"xa47987e3e61344d9\"}", "{\"sha\": \"a07bcd9f26a7a5a01737e7be28aedcfcc84f5cf4\", \"live\": true, \"id\": \"x4b65f94bc86d24c0\"}", "{\"sha\": \"1bb01f5f3ba8a3116926c2868c8053de185f0e14\", \"live\": true, \"id\": \"x0a1f5c1423a51975\"}", "{\"sha\": \"0bebb35b28cff2c015fd769b121f453f965ba829\", \"live\": true, \"id\": \"xb61f99316b7bbdde\"}", "{\"sha\": \"0fe00338c08e074bf022cf24f02693760b659ab6\", \"live\": true, \"id\": \"xb83a167665636835\"}", "{\"sha\": \"2301f555265cae1f15347bc9f98db855df6b0814\", \"live\": true, \"id\": \"x318cdce7bc0279f3\"}", "{\"sha\": \"7b5eac697cbbd72e0bd84038d92e505ecd5ede19\", \"live\": true, \"id\": \"x2f23bcae79c60495\"}", "{\"sha\": \"5fe6dfe01db24c1abcd6720dee5f8949d6aa6daf\", \"live\": true, \"id\": \"xda124c90a3284ca2\"}", "{\"sha\": \"160c8f8e6d4ce0e8d968b3dd78289fb620bd2a1c\", \"live\": true, \"id\": \"x8950b9a6acb8196c\"}", "{\"sha\": \"8538a162106939c1d4afbf215a355f5a18d4a892\", \"live\": true, \"id\": \"xb0349cbae6416de6\"}", "{\"sha\": \"4e4c1d1fefc8e48d5e323fc4078416e43dd5f80f\", \"live\": true, \"id\": \"x5ff526024d5f8ef4\"}", "{\"sha\": \"25c0f93bcc438ae91dea3e45ae03ab6ad6f516f4\", \"live\": true, \"id\": \"xe903f77a551e36f1\"}", "{\"sha\": \"115cba40232389827f68953153c66b68b4681043\", \"live\": true, \"id\": \"x2025f0d42cef2755\"}", "{\"sha\": \"4605b18a3866f80ed26b4de05a427ce7f61741e3\", \"live\": true, \"id\": \"xbf105aa6d47d3878\"}", "{\"sha\": \"3c4c367677da359a413e27cee2495f3ed2d72865\", \"live\": true, \"id\": \"xe3fb93a8255ad92b\"}", "{\"sha\": \"11e096f24d146303b30d3ac914f40c149433d687\", \"live\": true, \"id\": \"x571eb5d86582fbb0\"}", "{\"sha\": \"6ab16a3dfaf0380687cf76a63770d964b1e94593\", \"live\": true, \"id\": \"x59d3d59cff9bb1c7\"}", "{\"sha\": \"ed9336d4e3fa30ba3663918054f9019879dfbdc7\", \"live\": true, \"id\": \"xfc5bd3b76be6c25f\"}", "{\"sha\": \"f77ee7311fef96f3bbc5b24c940c6bcd55915306\", \"live\": true, \"id\": \"x32df2880ab80afde\"}", "{\"sha\": \"338f23fe097dd3ce903ce1816e5caa62a18bc393\", \"live\": true, \"id\": \"x005fb4a4d84f7879\"}", "{\"sha\": \"bac17a3caa6f520c193d10a752265a0fa6eebd04\", \"live\": true, \"id\": \"x6d891389619ba1e5\"}", "{\"sha\": \"16a4ae45e9d3a73f3d619a83eff22b7fc14b5f50\", \"live\": true, \"id\": \"x0a849d40bbb49351\"}", "{\"sha\": \"a4aa19ee41ab01fef9e4371e05b82e5478df9c9a\", \"live\": true, \"id\": \"x66f95f54c47c75d0\"}"], "description": "Practice finding the distance between two points on the coordinate plane that share the same x- or y-coordinate.\u00a0", "basepoints": 10.0, "path": "relative-position-on-the-coordinate-plane/", "slug": "relative-position-on-the-coordinate-plane", "kind": "Exercise", "name": "relative-position-on-the-coordinate-plane", "seconds_per_fast_problem": 4.0, "prerequisites": ["identifying_points_1"], "exercise_id": "relative-position-on-the-coordinate-plane"}, "comparing-lengths": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-compare-estimate-length/comparing-lengths/", "id": "comparing-lengths", "display_name": "Comparing lengths", "title": "Comparing lengths", "all_assessment_items": ["{\"sha\": \"a042013b45c8b3d09dee3d32552f53c559f12c91\", \"live\": true, \"id\": \"x9685f643693f052c\"}", "{\"sha\": \"010c1f3e2e65386d928eebf629aaedb4282bfea2\", \"live\": true, \"id\": \"x471344036321dced\"}", "{\"sha\": \"a71612d096bed5665edd740ab18dcd9536637933\", \"live\": true, \"id\": \"x799d7f6ba4b0f740\"}", "{\"sha\": \"f012ac3cc383b190c57e944e5e39c23a3a1c712f\", \"live\": true, \"id\": \"x1221cc074eebff6b\"}", "{\"sha\": \"33816bdb99164776e80d200ea4e5f7372d47c556\", \"live\": true, \"id\": \"x36a0492b11ef56d2\"}", "{\"sha\": \"25d1c2abb39b96f75f9836c6420b7c7bd6ed8841\", \"live\": true, \"id\": \"xdc3dea24efc3c73b\"}", "{\"sha\": \"fa5751466fe7d42252eae06c3b1b481d57358950\", \"live\": true, \"id\": \"xc9659f8743454635\"}", "{\"sha\": \"283a25f1a84f792a6218d0d25c0b9faaa54336e6\", \"live\": true, \"id\": \"xa81239000d2dac6e\"}", "{\"sha\": \"a0f8172d4f56501d26aee11e21a8d9b717c1b17a\", \"live\": true, \"id\": \"xe614744539ec29c4\"}", "{\"sha\": \"586977d5abcc9646cf48a868fc19463437811956\", \"live\": true, \"id\": \"x17d1c81d0e95e7ff\"}", "{\"sha\": \"b535bf8129fd5478e7738dbe979d2720a79b9783\", \"live\": true, \"id\": \"x5591463c00414928\"}", "{\"sha\": \"d4d846cf67cff3fdeb782db14567e62742365ff8\", \"live\": true, \"id\": \"x5cb30da9bbdf1a48\"}", "{\"sha\": \"55630c491d6cd4ae8ad2b451895279bde17ee623\", \"live\": true, \"id\": \"xcbfae8f4e8385466\"}", "{\"sha\": \"2431f670b1842b46a37659f026d59b2f222e7bd3\", \"live\": true, \"id\": \"x6c37e930b46c09bd\"}", "{\"sha\": \"194fb8998f1178d345288934d8c6365d22376a68\", \"live\": true, \"id\": \"xc7f28880c59a4fe0\"}", "{\"sha\": \"3309a96f49dfa0b9b3e638f0d80fa312a955962b\", \"live\": true, \"id\": \"x367b3fcf5efeb467\"}", "{\"sha\": \"d44c62ce4bf093764b911d3ad7f14881e1786fad\", \"live\": true, \"id\": \"xeabb1511881448b6\"}", "{\"sha\": \"827ac64a1ad117fe3ada910a586f0453395169da\", \"live\": true, \"id\": \"xf6638a9425f59664\"}", "{\"sha\": \"fe1b9b9b3b14f1862e4ce58a739a85ed28dae14b\", \"live\": true, \"id\": \"x63975827dd295ef9\"}", "{\"sha\": \"589cd2d453b8dfc48d6f25ac65798f62c35359c7\", \"live\": true, \"id\": \"xf5b607cb630335b6\"}"], "description": "Find the difference between two lengths.", "basepoints": 10.0, "slug": "comparing-lengths", "kind": "Exercise", "name": "comparing-lengths", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_2", "measuring-lengths-2"], "exercise_id": "comparing-lengths"}, "tension-in-the-muscles": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/tension-in-the-muscles/", "id": "tension-in-the-muscles", "display_name": "Tension in the muscles", "title": "Tension in the muscles", "all_assessment_items": ["{\"sha\": \"55d2efc68406418bdb5513e53da4ffd3f38092c5\", \"live\": true, \"id\": \"x00a1b9211b733dea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f1f8b2fac1abf95183ffe43cc25b3f99ff45091\", \"live\": true, \"id\": \"x367d6b644efb5bc7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4ccbe43591611b76f37928fe0b4bec036c400b18\", \"live\": true, \"id\": \"x106c6be9075f68fe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8730ee1fa2e3f9736d2bb8bf0a7dba9d484c5c2f\", \"live\": true, \"id\": \"xa0bf7d8a2940c3cf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"82210af5b72709f03bc9ae8b656713a1c0a1a172\", \"live\": true, \"id\": \"x2440d04ec799795c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "This passage will test your knowledge on the force of tension", "basepoints": 10.0, "slug": "tension-in-the-muscles", "kind": "Exercise", "name": "tension-in-the-muscles", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "tension-in-the-muscles"}, "tens-and-ones": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-tens/tens-and-ones/", "id": "tens-and-ones", "display_name": "Tens and ones", "title": "Tens and ones", "all_assessment_items": ["{\"sha\": \"67486ac4e907e07e8e304f0597c50229bad69c77\", \"live\": true, \"id\": \"x36a0d008d3bba8bb\"}", "{\"sha\": \"6c5b7dad74ac728f9039e132f848c7c314b01900\", \"live\": true, \"id\": \"xe821ef9b12605c84\"}", "{\"sha\": \"ebbe471a20ab93488ab8defd36bcc4e472054fd4\", \"live\": true, \"id\": \"xfda618b7eb42008a\"}", "{\"sha\": \"40c3fad92dc39f7c5a54d7f8a2f8aa8398b380d2\", \"live\": true, \"id\": \"x93a1f859e2d27960\"}", "{\"sha\": \"afd6fe068481402cdfa3654d78b3a508d801e8a3\", \"live\": true, \"id\": \"xbcbcc6482d229759\"}", "{\"sha\": \"aa029c3c4035cb9dd61dca5b613825a497412e45\", \"live\": true, \"id\": \"xdc58ea09acc16728\"}", "{\"sha\": \"0dfb3b2978d2ac76bb69c9f44dc2689a36a81b13\", \"live\": true, \"id\": \"x5deb4e6b17952006\"}", "{\"sha\": \"ff5e0c23ebd0ffe8940d405392d0519a91c2b59e\", \"live\": true, \"id\": \"x6c91192b0f010289\"}", "{\"sha\": \"1fb6382722ba0021dffcb6b93a4f27cd25d48a99\", \"live\": true, \"id\": \"xa45f3e1f184722db\"}", "{\"sha\": \"3a257f1a4b27013b3b9a3b73170d92f05ea43f85\", \"live\": true, \"id\": \"x41b8e4ccb7e699eb\"}", "{\"sha\": \"88d20c31f35ccc884c3a5f8d64e478266affa5c4\", \"live\": true, \"id\": \"x64f13d681150608c\"}", "{\"sha\": \"b4b3148689b663a1919124f4b5fd06d1cdfe90f4\", \"live\": true, \"id\": \"x0eaccadea93f6c1f\"}", "{\"sha\": \"f195b6ad13729e2bd9110c96edf7364d6bfa4fd4\", \"live\": true, \"id\": \"xc04367d490dd25fc\"}", "{\"sha\": \"d3dd94126e849f4bbc575e884df5b30f44b7e7b3\", \"live\": true, \"id\": \"x59401139e679d175\"}"], "description": "Pracice thinking about 2-digit numbers as tens and ones.", "basepoints": 10.0, "slug": "tens-and-ones", "kind": "Exercise", "name": "tens-and-ones", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-2-digit-numbers"], "exercise_id": "tens-and-ones"}, "braque-s-the-portuguese-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/braque-s-the-portuguese-quiz/", "id": "braque-s-the-portuguese-quiz", "display_name": "Braque, The Portuguese (quiz)", "title": "Braque, The Portuguese (quiz)", "all_assessment_items": ["{\"sha\": \"443426692b4b644643aa7d8a1226272f9e45a26b\", \"live\": true, \"id\": \"x978d974ed4b426bb\"}", "{\"sha\": \"3924680b026e68527743cef16d972babed29ff58\", \"live\": true, \"id\": \"x174c59ee56f3bd8c\"}", "{\"sha\": \"3a9399b663a3fad48d645153da9c51868ee198a5\", \"live\": true, \"id\": \"x384512ac62649931\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "braque-s-the-portuguese-quiz", "kind": "Exercise", "name": "braque-s-the-portuguese-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "braque-s-the-portuguese-quiz"}, "law_of_sines": {"uses_assessment_items": false, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law_of_sines/", "id": "law_of_sines", "display_name": "Law of sines", "title": "Law of sines", "description": "Solve missing triangle measures using the law of sines", "basepoints": 26.0, "slug": "law_of_sines", "kind": "Exercise", "name": "law_of_sines", "seconds_per_fast_problem": 36.5, "prerequisites": ["trigonometric-functions-and-side-ratios-in-right-triangles"], "exercise_id": "law_of_sines"}, "using-probability-to-make-predictions": {"uses_assessment_items": true, "id": "using-probability-to-make-predictions", "display_name": "Making predictions with probability", "title": "Making predictions with probability", "all_assessment_items": ["{\"sha\": \"c99812917e1e652aae4123be4dbfb550502c8bd3\", \"live\": true, \"id\": \"x2bd7aa23116ad41c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"27a846ed3461dcfcea3b81d9c267db5bc1de8c77\", \"live\": true, \"id\": \"x549f87579a87b182\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ad263bcc3ff83846862c1ef3f317c1bb548a7837\", \"live\": true, \"id\": \"xb6323a82dbaf89c0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf4e13ef0cf9fe5772565008799ceb223663ef33\", \"live\": true, \"id\": \"x1486ced9f741eace\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"922cafc4fabd1bb4629ac4c0ae7314eea7a2ab72\", \"live\": true, \"id\": \"xb05d2b73dbe14be8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c92e1f3e488a86ade9d4b10549dbd26d881b002d\", \"live\": true, \"id\": \"x26c9cadb446b3736\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"418134052ed93a10735f573f6a51a936cfc0fddf\", \"live\": true, \"id\": \"xfb17674dad5346eb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b502ea3bad6ca2594f390dff9be5915c9c7c9961\", \"live\": true, \"id\": \"xd4d4414b33591ba7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3598fa857014a48ae2f03e7797cfe69d1761c6de\", \"live\": true, \"id\": \"xb0e9348172bb0452\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ec64a43aba5c8e0f4e06d802cfa3e6508448492\", \"live\": true, \"id\": \"x8a5ad2ff629d7d74\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a213ca4728138d8f647e957012d92e96f15d49d3\", \"live\": true, \"id\": \"xd1a2a6da40c1860a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71b0e38b370136f853108eed1a977184598bc2b1\", \"live\": true, \"id\": \"xb11afc93191ee5fc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8f0933c0f5dd1bb9f12f7a0131990fdd4dff740d\", \"live\": true, \"id\": \"xe8d4841dc9a44ca7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4b065ac9c6a2afad347f1b72bf20eab7f103ad4e\", \"live\": true, \"id\": \"xba5c210ad30abb56\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ba417dd8cb687d2db2cfc1ebd845b9fe3343be15\", \"live\": true, \"id\": \"xaaa5d24fb5ecf526\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4eca409ea5a1d24a33764bb2955cd97a81ed3b4b\", \"live\": true, \"id\": \"x33b40f59a0e082e2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"132e08537cbe5584830911666913ca8809ce3a2d\", \"live\": true, \"id\": \"x02bc6262437200e7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc3066a448aecca9238a95d41c98a26321ad1092\", \"live\": true, \"id\": \"x6de7b3e5122fc8e4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"711cc99f7432dc1363695f72639cfa8bdbdc0a77\", \"live\": true, \"id\": \"x284373160530c428\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"18b3cd6cd84af044ab4dcd5ea121fc8b56a5ac0a\", \"live\": true, \"id\": \"xe9d5277a5cf4d84c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Practice predicting the number of times a certain event will happen.", "basepoints": 10.0, "path": "using-probability-to-make-predictions/", "slug": "using-probability-to-make-predictions", "kind": "Exercise", "name": "using-probability-to-make-predictions", "seconds_per_fast_problem": 4.0, "prerequisites": ["probability_1"], "exercise_id": "using-probability-to-make-predictions"}, "direct_and_inverse_variation": {"uses_assessment_items": false, "path": "khan/math/algebra/ratio-proportion-topic/direct_inverse_variation/direct_and_inverse_variation/", "id": "direct_and_inverse_variation", "display_name": "Direct and inverse variation", "title": "Direct and inverse variation", "description": "Select a function that indicates direct or inverse variation between two variables.", "basepoints": 17.0, "slug": "direct_and_inverse_variation", "kind": "Exercise", "name": "direct_and_inverse_variation", "seconds_per_fast_problem": 10.0, "prerequisites": ["slope_of_a_line", "constructing-proportions-to-solve-application-problems"], "exercise_id": "direct_and_inverse_variation"}, "understanding-fractions-as-division": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/dividing-fractions-pre-alg/understanding-fractions-as-division/", "id": "understanding-fractions-as-division", "display_name": "Understanding fractions as division", "title": "Understanding fractions as division", "all_assessment_items": ["{\"sha\": \"f43381d87d5f47626b482504d43b4a907712821c\", \"live\": true, \"id\": \"x3764b4e9d9f1b2c1\"}", "{\"sha\": \"03ea749db0e20c0ea8539605cf86d487fcc61307\", \"live\": true, \"id\": \"x4adbdf2317164a2d\"}", "{\"sha\": \"74d363826e3afc47d2acd4bd87ef99f3c913e186\", \"live\": true, \"id\": \"xcb3374f226940819\"}", "{\"sha\": \"15755a4421466ee054124823c483a477da20424e\", \"live\": true, \"id\": \"x3c964dc488cc7e68\"}", "{\"sha\": \"0229b27e650ecca82820c948fd6e40831ca9ea32\", \"live\": true, \"id\": \"xa538f23220851ce1\"}", "{\"sha\": \"b28b9e507e563ed79620d0d4856752b69c3d1144\", \"live\": true, \"id\": \"x0a5fec3ceab16f44\"}", "{\"sha\": \"eccb05f6f6ae4e9f5baaa11a71c0adab04375b0b\", \"live\": true, \"id\": \"xad3b48f1f44cdc2f\"}", "{\"sha\": \"68ac06efd11f614ba18b73a9349de11108638017\", \"live\": true, \"id\": \"x1457640ee945dbb2\"}", "{\"sha\": \"aa9d1c9556fac1790a76b7d8222fa32ca3f45490\", \"live\": true, \"id\": \"x34e335c04899746c\"}", "{\"sha\": \"11148c8173d5727e4e514863591fd3e76942e3d8\", \"live\": true, \"id\": \"x26fea590fae17af5\"}", "{\"sha\": \"2d9248d87c0209eac47ef166e066209798f69df0\", \"live\": true, \"id\": \"x84010720a7925da5\"}", "{\"sha\": \"6336ffa16cb9e5adb94fe383aa6a6167c363a1dd\", \"live\": true, \"id\": \"x0af4bc3e0c25696e\"}", "{\"sha\": \"5cc60f837da7af79659da2d06e4fc0bf956664f9\", \"live\": true, \"id\": \"xb0946001f7d3c95e\"}", "{\"sha\": \"280ab5319a3b9c944400372b7c0d45066ca18e0b\", \"live\": true, \"id\": \"x8b22893f28200639\"}", "{\"sha\": \"18575a5e1be2bf1e221961d51c8b19698096f46b\", \"live\": true, \"id\": \"xd6834a3d421bbd52\"}", "{\"sha\": \"323aee5609309153061ba96dff693e146ae20476\", \"live\": true, \"id\": \"xf77e12d7de91abc4\"}", "{\"sha\": \"d99bc30bd8e7e7a670a90be20998510b7b2869f4\", \"live\": true, \"id\": \"xda8867ed4daf1337\"}", "{\"sha\": \"72901bbeba05123ae8b5c4b1305b6b11bb369217\", \"live\": true, \"id\": \"x732b754e2b6c1e3c\"}", "{\"sha\": \"b8111f0a3d70e81ef93940c65b21ca06545a117a\", \"live\": true, \"id\": \"xebd8f150b2d3217e\"}", "{\"sha\": \"371d27a018ffed96e3538931aeb75bd343849894\", \"live\": true, \"id\": \"xfdb65e94ba8ae51d\"}", "{\"sha\": \"5cdca92d5421603d20c8c6e35ccc67184c6f88bb\", \"live\": true, \"id\": \"xd1208bcafeda4e12\"}", "{\"sha\": \"59a3918d5db531a517c0d50117516d576e450006\", \"live\": true, \"id\": \"xe049e8c00d72e256\"}", "{\"sha\": \"ef5afac77683d19ad62a8cb4d88dc8335ef8935d\", \"live\": true, \"id\": \"x63b809a1d6a185d0\"}", "{\"sha\": \"2f8a0a6613c836b0ad9550c8e2464d0ef9499451\", \"live\": true, \"id\": \"xce30583a161a4690\"}"], "description": "Practice understanding that the fraction bar really just means division.", "basepoints": 18.0, "slug": "understanding-fractions-as-division", "kind": "Exercise", "name": "understanding-fractions-as-division", "seconds_per_fast_problem": 12.0, "prerequisites": ["fraction-multiplication-as-scaling"], "exercise_id": "understanding-fractions-as-division"}, "physiological-stress-response-to-cuss-words-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/physiological-stress-response-to-cuss-words-/", "id": "physiological-stress-response-to-cuss-words-", "display_name": "Physiological stress response to cuss words?", "title": "Physiological stress response to cuss words?", "all_assessment_items": ["{\"sha\": \"8106a7057a495fdef5fa2c6645c429f3588b2725\", \"live\": true, \"id\": \"xd052861331fbba57\"}", "{\"sha\": \"7498fd5cb69c00dbf1ed6c6ee6ceb71d7fc5074b\", \"live\": true, \"id\": \"xc5f31ced4ad9353e\"}", "{\"sha\": \"6e86f80df4ff786030b28091f55b5eb934b75873\", \"live\": true, \"id\": \"x5fd2cfd3fb00e0f9\"}", "{\"sha\": \"844ce66daff88dc2da8d2833ca51ba0534e20e17\", \"live\": true, \"id\": \"x57cd3fff77371e3c\"}", "{\"sha\": \"9bd84a8cebb570f9c9942b71b15faeb8bd19a3c8\", \"live\": true, \"id\": \"x77292883d52401c9\"}"], "description": "Physiological stress response to cuss words?", "basepoints": 10.0, "slug": "physiological-stress-response-to-cuss-words-", "kind": "Exercise", "name": "physiological-stress-response-to-cuss-words-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "physiological-stress-response-to-cuss-words-"}, "dna-motion-in-gel-electrophoresis-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/dna-motion-in-gel-electrophoresis-/", "id": "dna-motion-in-gel-electrophoresis-", "display_name": "DNA Motion in Gel Electrophoresis", "title": "DNA Motion in Gel Electrophoresis", "all_assessment_items": ["{\"sha\": \"30fafd7ec2ef2cce3961cbbc3154943600998f0e\", \"live\": true, \"id\": \"xe1d5a560f406d474\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"45e2c32e76dceafef91b7894f1979068fe508296\", \"live\": true, \"id\": \"x461082985baa6dd4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"293c94cac715e3f73c6d4ab2849c9434e1c9adf6\", \"live\": true, \"id\": \"x98ae1dbcffdd7f44\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"29b0e09418518af55b66cbe1cbf70ff882f0a47f\", \"live\": true, \"id\": \"x5348fd662b51705c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8f706b0160c21dd61bfcea84f9e8b8e32740368e\", \"live\": true, \"id\": \"xd15cb2a3c3160243\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "DNA Motion in Gel Electrophoresis", "basepoints": 10.0, "slug": "dna-motion-in-gel-electrophoresis-", "kind": "Exercise", "name": "dna-motion-in-gel-electrophoresis-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "dna-motion-in-gel-electrophoresis-"}, "quiz--how-did-the-first-humans-live-": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/early-humans/how-did-first-humans-live/quiz-how-did-the-first-humans-live-/", "id": "quiz--how-did-the-first-humans-live-", "display_name": "Quiz: How Did the First Humans Live?", "title": "Quiz: How Did the First Humans Live?", "all_assessment_items": ["{\"sha\": \"57549b7f4fcab0d334274e04fff66709a0574c32\", \"live\": true, \"id\": \"xbe54da08026e59c8\"}", "{\"sha\": \"1c41efe997104127b72671520f31996a264495ec\", \"live\": true, \"id\": \"x0b162d23f7aaec4b\"}", "{\"sha\": \"68d1376652493a8668ca84bcf6f412c94e903a18\", \"live\": true, \"id\": \"x4837527678d2971d\"}", "{\"sha\": \"491a68eb837ec2646cc663f6b7aee68ecb996edf\", \"live\": true, \"id\": \"x469290e844b6d497\"}", "{\"sha\": \"6ec787b65ee11915d49df9ffae78981d544e4f39\", \"live\": true, \"id\": \"x2abc3c1246b0b214\"}"], "description": "Quiz 6.3", "basepoints": 10.0, "slug": "quiz-how-did-the-first-humans-live-", "kind": "Exercise", "name": "quiz--how-did-the-first-humans-live-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--how-did-the-first-humans-live-"}, "cubism-and-its-impact": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/early-abstraction/cubism/cubism-and-its-impact/", "id": "cubism-and-its-impact", "display_name": "Cubism and its impact (quiz)", "title": "Cubism and its impact (quiz)", "all_assessment_items": ["{\"sha\": \"35b7f6b5af55be3386009d5d21d46d71c41e8512\", \"live\": true, \"id\": \"x515cccf421f1c3e2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dce2dafb5cd6c0e9cd056f2eb6a3b8de62c25391\", \"live\": true, \"id\": \"x9d5734d04cc4007f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"12200aa93f129a3d44c8d72e5999e9bee123eb08\", \"live\": true, \"id\": \"xe7187fe747ff6cda\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "cubism-and-its-impact", "kind": "Exercise", "name": "cubism-and-its-impact", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cubism-and-its-impact"}, "rounding_whole_numbers": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/order-of-operations/rounding_whole_numbers/rounding_whole_numbers/", "id": "rounding_whole_numbers", "display_name": "Rounding whole numbers", "title": "Rounding whole numbers", "description": "Round whole numbers to the nearest hundred or thousand. \u00a0", "basepoints": 13.0, "slug": "rounding_whole_numbers", "kind": "Exercise", "name": "rounding_whole_numbers", "seconds_per_fast_problem": 6.0, "prerequisites": ["understanding-whole-number-representations", "rounding-to-the-nearest-ten-or-hundred"], "exercise_id": "rounding_whole_numbers"}, "meaning-of-equal-sign-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-equals-sign/meaning-of-equal-sign-1/", "id": "meaning-of-equal-sign-1", "display_name": "The equals sign", "title": "The equals sign", "all_assessment_items": ["{\"sha\": \"20f32bcf83e96da00bc9273a402b2795c38b28e8\", \"live\": true, \"id\": \"xdd964797661dc989\"}", "{\"sha\": \"8a7b6f5b4c75c0ef5dbd8b1c5cb981e1cf040aa6\", \"live\": true, \"id\": \"x6765a417fa95516d\"}", "{\"sha\": \"db4face04e6896b7b21cc11355204a316d8244b1\", \"live\": true, \"id\": \"x4be9e35fd3785aad\"}", "{\"sha\": \"9980c0c92e1c9bacf1f5bf2ce6ca3ecfb1681d39\", \"live\": true, \"id\": \"x7ec6e5dbc9aade92\"}", "{\"sha\": \"144245e67b31f9bbbbe8f9e75ae2f475434af61c\", \"live\": true, \"id\": \"xb4ea5bc99beff098\"}", "{\"sha\": \"6617e6f873aa09bd8bd863a2ca46e771bc9698a0\", \"live\": true, \"id\": \"x0d0485d4849971af\"}", "{\"sha\": \"eac50c7e35dc8d7843fad602d768432534edd2d8\", \"live\": true, \"id\": \"xea67d73fcc537c00\"}", "{\"sha\": \"1d1ee53a9847e854638cf319b56718f49cf94ef8\", \"live\": true, \"id\": \"x226aa20917bcdc8f\"}", "{\"sha\": \"5c04c630fd74c6386ffd8e6b9727c196a7f7bb8b\", \"live\": true, \"id\": \"xa2d2bc37b7015842\"}", "{\"sha\": \"967ea663f1b8a8efa68d1dc5ad0815b60d411712\", \"live\": true, \"id\": \"x980bf61ba2fc2016\"}", "{\"sha\": \"59084dae78b3b8c15f06692cad5eacae12482f4c\", \"live\": true, \"id\": \"xbbb11c71e64d4221\"}", "{\"sha\": \"06278d1998c15a2d1e62f3455a11640a94080dac\", \"live\": true, \"id\": \"x338789aa7fcf6ba8\"}", "{\"sha\": \"2de6d547fc9b14c8f083423b47ffe76bef2d369c\", \"live\": true, \"id\": \"x6f41178d8a1e8074\"}", "{\"sha\": \"9e867e954f5799d2c311f3a4d0344f46c75480c5\", \"live\": true, \"id\": \"x8886e630fc2336b0\"}", "{\"sha\": \"5985ff8f5bd08dba47d6366ea52602b2d73a3105\", \"live\": true, \"id\": \"x6144e3cf5a460987\"}", "{\"sha\": \"9d9582e7c21d8cf71b2f9b47294176363845fc46\", \"live\": true, \"id\": \"x0cec1624d2b70ff7\"}", "{\"sha\": \"308de6a76e3f731ca24c1bfdb13fa7458675bb40\", \"live\": true, \"id\": \"x9f35cf518d167711\"}", "{\"sha\": \"bd44157186456bc98a3074eaff9c6ea338ca8502\", \"live\": true, \"id\": \"x5108b2ec021efeed\"}", "{\"sha\": \"e505b2f51c3ffdd112b09ae0275d88bf436f2149\", \"live\": true, \"id\": \"xeb5b789399b4f335\"}", "{\"sha\": \"c3cc5a29aa66d27c5f4084eed57f9b602e83f138\", \"live\": true, \"id\": \"xadb3b46284fee9de\"}"], "description": "Practice telling which equation is true.", "basepoints": 10.0, "slug": "meaning-of-equal-sign-1", "kind": "Exercise", "name": "meaning-of-equal-sign-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_2"], "exercise_id": "meaning-of-equal-sign-1"}, "skeletal-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/the-skeletal-system/skeletal-system-questions/", "id": "skeletal-system-questions", "display_name": "Skeletal system questions", "title": "Skeletal system questions", "all_assessment_items": ["{\"sha\": \"c9ce494c83d96ba79f91ec8b25a225dacd79f572\", \"live\": true, \"id\": \"x084801957b1feb75\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c48914718028cfc47212e2395dca3346aed4cd9\", \"live\": true, \"id\": \"xabd767c6eda7a67a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e737d3de01ab0d27cbbd4aa97d90cc849d8f40a7\", \"live\": true, \"id\": \"x24bdca8966fcf199\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ff1eb45f34bc3245dd631a81d1782cdd73a2a4e\", \"live\": true, \"id\": \"x306690f66d838c82\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b504136ef9b63c5296ccb319e3d2a3f6f9759f7\", \"live\": true, \"id\": \"x8d311d87697892f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"410d3c49c1a0356950f4e5faa683fe3f84bd6a5c\", \"live\": true, \"id\": \"x4aa80d4015eeccf1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dba8191d7bcbbd8f8283630223502d06f61bebc1\", \"live\": true, \"id\": \"x28695757ab8609ae\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bf74f89e054bfdcfed25fdffe79bed0dd0dada8d\", \"live\": true, \"id\": \"x0cca4b9ba5871b95\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5cb4ca4954c58c62cd2abd05bcaa0b68c7a21cf0\", \"live\": true, \"id\": \"x9e10b29a48e84825\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0a60d9fbece88636682ff3cc56e7a4f242dc13ec\", \"live\": true, \"id\": \"x55a2716635aff99e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Skeletal system questions", "basepoints": 10.0, "slug": "skeletal-system-questions", "kind": "Exercise", "name": "skeletal-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "skeletal-system-questions"}, "goya--the-sleep-of-reason-produces-monsters-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-spain/goya-the-sleep-of-reason-produces-monsters-quiz/", "id": "goya--the-sleep-of-reason-produces-monsters-quiz", "display_name": "Goya, The Sleep of Reason Produces Monsters (quiz)", "title": "Goya, The Sleep of Reason Produces Monsters (quiz)", "all_assessment_items": ["{\"sha\": \"6a0c2bd2b4d69783d801f52652a492bdf9caf8c2\", \"live\": true, \"id\": \"x211c4799adfed184\"}", "{\"sha\": \"d8ceb68ce0b420f54463eafa4eac8174946eb88e\", \"live\": true, \"id\": \"x4bd8f42bfa2f05e3\"}", "{\"sha\": \"ba9aeb6d60b42e26bf24d6f4596c500c270bddf0\", \"live\": true, \"id\": \"xc578c0e7866f59a0\"}", "{\"sha\": \"8913833197f0866061f4b948f4f654fdf21e29d7\", \"live\": true, \"id\": \"x9c3a757defb3cd11\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "goya-the-sleep-of-reason-produces-monsters-quiz", "kind": "Exercise", "name": "goya--the-sleep-of-reason-produces-monsters-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "goya--the-sleep-of-reason-produces-monsters-quiz"}, "ingres--la-grande-odalisque-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/ingres-la-grande-odalisque-quiz/", "id": "ingres--la-grande-odalisque-quiz", "display_name": "Ingres, La Grande Odalisque (quiz)", "title": "Ingres, La Grande Odalisque (quiz)", "all_assessment_items": ["{\"sha\": \"358a6fca6272bd7aa3605e696fdb5f63ab3d7d56\", \"live\": true, \"id\": \"x010fc81241e4d53d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"55013f2ce98deadb5f7366065ad33cf67fcdfef8\", \"live\": true, \"id\": \"xe36e5222d7d3e500\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6473975679f660e4bcc4e8db8aeed5f48e70c61e\", \"live\": true, \"id\": \"x455daa58b6412f6f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e27ec7dcc0ae789730d474a8553a8e9d629fd308\", \"live\": true, \"id\": \"xf32ea561f4d82922\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "ingres-la-grande-odalisque-quiz", "kind": "Exercise", "name": "ingres--la-grande-odalisque-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ingres--la-grande-odalisque-quiz"}, "quiz-darwin-and-evolution-by-natural-selection": {"uses_assessment_items": true, "id": "quiz-darwin-and-evolution-by-natural-selection", "display_name": "Quiz: Darwin and evolution by natural selection", "title": "Quiz: Darwin and evolution by natural selection", "all_assessment_items": ["{\"sha\": \"2d17e48c4d4bebdbdaea9a088b7ca3dda7cb0125\", \"live\": true, \"id\": \"x6b36f58b66653e80\", \"perseus_api_major_version\": 3}", "{\"sha\": \"643989efe3ba40726c536730049bed6305f810d9\", \"live\": true, \"id\": \"x262c2a83286183cd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"13b1cd18212cbf350ccaa7674f03e996b959bd17\", \"live\": true, \"id\": \"xadcd08420d78ec80\", \"perseus_api_major_version\": 3}", "{\"sha\": \"db8918e858131008a36552add1e3215f7d412b16\", \"live\": true, \"id\": \"x7161f6615bc2aab3\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1cc7fae7a9b9cd443015ba35ec3471bb8e0d3c64\", \"live\": true, \"id\": \"xd6751dc2dfecb626\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1eec5eba54f9f7b5ff4857a5f883213da0c66a8f\", \"live\": true, \"id\": \"xc3c49440089c46f5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"285ffee42e3c93940995f80cd30537939d247810\", \"live\": true, \"id\": \"xa5cd57a995521c8a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6e5fb3e8cc3bcd8e3b8bdccfb7b8faf6271f86eb\", \"live\": true, \"id\": \"xbb427c84e5b9699b\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 10.0, "path": "quiz-darwin-and-evolution-by-natural-selection/", "slug": "quiz-darwin-and-evolution-by-natural-selection", "kind": "Exercise", "name": "quiz-darwin-and-evolution-by-natural-selection", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-darwin-and-evolution-by-natural-selection"}, "implicit-differentiation": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/implicit_differentiation/implicit-differentiation/", "id": "implicit-differentiation", "display_name": "Implicit differentiation", "title": "Implicit differentiation", "all_assessment_items": ["{\"sha\": \"5bc9e9b605064816d67315ba6027e18ec1ad047d\", \"live\": true, \"id\": \"xe26c0298\"}", "{\"sha\": \"b7f4aadb0f6b013bfdc7823585d56cb2e0a6768c\", \"live\": true, \"id\": \"xed06eefb\"}", "{\"sha\": \"34ce46ece1966e9e12c96e734b925116b716f781\", \"live\": true, \"id\": \"xb440adc5\"}", "{\"sha\": \"687464a5fb8e37a5e48be2b3f6ffe7fd56cd6387\", \"live\": true, \"id\": \"x814c9822\"}", "{\"sha\": \"eadc8263f22aa4225a882aa8aa7cdf7f251fb2c3\", \"live\": true, \"id\": \"xcd8f53ec\"}", "{\"sha\": \"081a5345f98c34e813acde16de9f7802011b6ea5\", \"live\": true, \"id\": \"xcd6630a1\"}", "{\"sha\": \"6be3310e8427480f51e81c4e9d89d29eb35c7a80\", \"live\": true, \"id\": \"xb3cda344\"}", "{\"sha\": \"c8d879830040c36707389f80f0cf024f0582ed97\", \"live\": true, \"id\": \"x6e37f35e\"}", "{\"sha\": \"68c07ce80beb33b895e34271545e8b2e7c7f1250\", \"live\": true, \"id\": \"xa5ce4b17\"}", "{\"sha\": \"cdf4cddc9d56ef00edc9111e8a6622f3fcbec449\", \"live\": true, \"id\": \"x456ec59d\"}", "{\"sha\": \"23478422b16e652d69679d6fe51f1eb52f26d5ab\", \"live\": true, \"id\": \"xc3a54fed\"}", "{\"sha\": \"10334160b065b3964a6862dcbeccdc4cfbaf3943\", \"live\": true, \"id\": \"x5fdf213e\"}", "{\"sha\": \"e52824e4f208f32c5a33691ae08f17c9182767b9\", \"live\": true, \"id\": \"x1741ee4c\"}", "{\"sha\": \"aba435911d4c682591804fcc2c5fdb50e4c800e6\", \"live\": true, \"id\": \"x8cbecf1a\"}", "{\"sha\": \"2607c6e69f2ff5525359b9d44d815c5f133dabed\", \"live\": true, \"id\": \"xcd13423b\"}", "{\"sha\": \"da6538ad148a571655b973cd4854671b79f5c527\", \"live\": true, \"id\": \"xb19eee47\"}", "{\"sha\": \"ecf22be115ca52cdabc5f00cacd95bdfb1fab399\", \"live\": true, \"id\": \"x80ae1f66\"}", "{\"sha\": \"d173253b73670d86411fe216c1cf698dc407a758\", \"live\": true, \"id\": \"xc340071f\"}", "{\"sha\": \"e57f5e121efe7a59c91a8a9df174eb08c52a874d\", \"live\": true, \"id\": \"xadbac56a\"}", "{\"sha\": \"7ebac09cb046ea88fd50bcf059cd26b903dadb15\", \"live\": true, \"id\": \"x77198874\"}", "{\"sha\": \"51b6da19612a2550d258f9536a2d2e33a175ae30\", \"live\": true, \"id\": \"x9e681c6a\"}", "{\"sha\": \"c97fcab17336dc24d7065aa735c098ee89dbd8b9\", \"live\": true, \"id\": \"x1aca8855\"}", "{\"sha\": \"1d510e1ed05adc52db9559e2706df386accb9417\", \"live\": true, \"id\": \"xba29ab1e\"}", "{\"sha\": \"d13e9da6a34f458b8e97355453df542dd5873e15\", \"live\": true, \"id\": \"x00b8adf1\"}", "{\"sha\": \"3b85a5effe1eaa9bc7a2999a6c26915bd80dce81\", \"live\": true, \"id\": \"x98e768ad\"}", "{\"sha\": \"f7326ffbd58b996d57e968995fd9fe192257ceb5\", \"live\": true, \"id\": \"x94a76aba\"}", "{\"sha\": \"fb343e0ed12ff663c7cb1cb02467af30bceaf2af\", \"live\": true, \"id\": \"x3469d47d\"}", "{\"sha\": \"a6478cdcd05fbe024d80ff658f103fdc71b74144\", \"live\": true, \"id\": \"x0bfdd679\"}"], "description": "", "basepoints": 29.0, "slug": "implicit-differentiation", "kind": "Exercise", "name": "implicit-differentiation", "seconds_per_fast_problem": 60.0, "prerequisites": ["combining-the-product-rule-and-chain-rule"], "exercise_id": "implicit-differentiation"}, "the-underlying-mechanism-of-milk-allergies-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-underlying-mechanism-of-milk-allergies-/", "id": "the-underlying-mechanism-of-milk-allergies-", "display_name": "The underlying mechanism of milk allergies", "title": "The underlying mechanism of milk allergies", "all_assessment_items": ["{\"sha\": \"077f9d316c98174ab0814169658d3397ab7b2a6e\", \"live\": true, \"id\": \"x32d0f2db30dd5e18\"}", "{\"sha\": \"8e7c834a3371b6304952a96fb53c8214e88bb068\", \"live\": true, \"id\": \"x09a77ef9be4d7d15\"}", "{\"sha\": \"972ae3a352da3766ad93f952dac651526b56c7db\", \"live\": true, \"id\": \"xb24a7dfa402a9c44\"}", "{\"sha\": \"31bad47b124c4efd0f6f097bf5f1d68eb5b2ae9d\", \"live\": true, \"id\": \"x12bfe8eff1da0f4b\"}", "{\"sha\": \"e67a2a30d43799a8804748bf7cca2708426ffaad\", \"live\": true, \"id\": \"x831cda1d95d680ff\"}"], "description": "The underlying mechanism of milk allergies", "basepoints": 10.0, "slug": "the-underlying-mechanism-of-milk-allergies-", "kind": "Exercise", "name": "the-underlying-mechanism-of-milk-allergies-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-underlying-mechanism-of-milk-allergies-"}, "writing_proportions": {"uses_assessment_items": false, "path": "khan/math/algebra/ratio-proportion-topic/ratios_algebra/writing_proportions/", "id": "writing_proportions", "display_name": "Writing proportions", "title": "Writing proportions", "description": "", "basepoints": 16.0, "slug": "writing_proportions", "kind": "Exercise", "name": "writing_proportions", "seconds_per_fast_problem": 9.0, "prerequisites": ["analyzing-and-identifying-proportional-relationships"], "exercise_id": "writing_proportions"}, "writing-numbers-to-1000": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-hundreds/writing-numbers-to-1000/", "id": "writing-numbers-to-1000", "display_name": "Three-digit place value challenge", "title": "Three-digit place value challenge", "all_assessment_items": ["{\"sha\": \"9eea7e6496f1addbe1234d79b3d278eb577be79b\", \"live\": true, \"id\": \"x5da13c36988dedeb\"}", "{\"sha\": \"003c9ab3d3d276f6ed9176ccf74be501da252c46\", \"live\": true, \"id\": \"x15e0b83fc73256b5\"}", "{\"sha\": \"5da7d2027b20140620394466055eb9c76a7acda8\", \"live\": true, \"id\": \"x42d13db36034c712\"}", "{\"sha\": \"fedf077471cea75d441e1bc9253e82e9b9eba4dc\", \"live\": true, \"id\": \"x8d8e72fcf7ca57f6\"}", "{\"sha\": \"26cd30d3458e4441c567e7285ebaa872bdbb1f15\", \"live\": true, \"id\": \"xf81e12513714b17f\"}", "{\"sha\": \"04732d40a38313c3ca8a98917aeee3aeff8129a2\", \"live\": true, \"id\": \"x3738c1054f01a2f3\"}", "{\"sha\": \"ac6ce6e0d9f5bdbe4a8596ed12a2c33b5c622937\", \"live\": true, \"id\": \"xa25b8bb16edb52a5\"}", "{\"sha\": \"0b3ad91fb8caf2a98d310dd86f59b3cd4e5a009e\", \"live\": true, \"id\": \"x76fe7a702da6298f\"}", "{\"sha\": \"b7e8f0da28f3e5237642cc8f433acc5fb8d14a8e\", \"live\": true, \"id\": \"x33e8bb6eae3e7028\"}", "{\"sha\": \"7013b479886fc45f7429e4c876d11afa9b8add41\", \"live\": true, \"id\": \"xe383d36f96781661\"}", "{\"sha\": \"fb34d1b5972b6fb84c656001c4852c2335280a27\", \"live\": true, \"id\": \"x6ce69b7c64323874\"}", "{\"sha\": \"cf7a37a760c60e292d17192b6b92a33fc779dae1\", \"live\": true, \"id\": \"x44a0dcf0ce5bc55a\"}", "{\"sha\": \"7a13b69735b485ddb87500fdd89fa6c05575e945\", \"live\": true, \"id\": \"x9a4e13128278bace\"}", "{\"sha\": \"9b2e2e2181dfe01b77d93f06a3daaece4e9b65f5\", \"live\": true, \"id\": \"x342e9174093cab22\"}", "{\"sha\": \"52bf6cb1d54d9c39873324df5db8451a50487650\", \"live\": true, \"id\": \"xaf837286bcbab5d8\"}", "{\"sha\": \"ed9e742836183c9e6f803b4151814f663e036c2a\", \"live\": true, \"id\": \"xfe8cdb3137f60785\"}", "{\"sha\": \"3a74a178b3d43b326e2d0ea2c6372711da440f54\", \"live\": true, \"id\": \"xa0ac8a8ee5f5a8ae\"}", "{\"sha\": \"f7a9315d85642f93b809f8e5c8276109c680f60d\", \"live\": true, \"id\": \"x17297deb4e5eba9a\"}", "{\"sha\": \"b5eff4db0a9d7b49a8af226fb81c5d2ad1777515\", \"live\": true, \"id\": \"xbd37c602c6442cca\"}", "{\"sha\": \"9f49d69cc8d30295a863c189b1aeec06a9f3ec28\", \"live\": true, \"id\": \"x28953bd9bc11adfb\"}", "{\"sha\": \"e2d936b63e1e929f4198b05fd31766b078ac0599\", \"live\": true, \"id\": \"x6b11c7022cebfda8\"}", "{\"sha\": \"f21144bb2cd8870a2951b78da202ba349c5dad4f\", \"live\": true, \"id\": \"x493f2348a9b7f22a\"}", "{\"sha\": \"d21f3c23ea2475ded79406076821847318455129\", \"live\": true, \"id\": \"xd8dc2408c702a9ac\"}", "{\"sha\": \"7bd706178865674c04fc886fac3eee1aaa110ca8\", \"live\": true, \"id\": \"x3b0b4776814b23f8\"}", "{\"sha\": \"780d6f643590431d6bce31e7d619c30e875163eb\", \"live\": true, \"id\": \"xdb1eac75edbc7bad\"}"], "description": "Practice breaking numbers into hundreds, tens, and ones.", "basepoints": 10.0, "slug": "writing-numbers-to-1000", "kind": "Exercise", "name": "writing-numbers-to-1000", "seconds_per_fast_problem": 4.0, "prerequisites": ["hundreds--tens--and-ones"], "exercise_id": "writing-numbers-to-1000"}, "multiplying-by-4-digit-numbers-with-visual-models": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/multiplying-by-4-digit-numbers-with-visual-models/", "id": "multiplying-by-4-digit-numbers-with-visual-models", "display_name": "Multiplying 4 digits by 1 digit with visual models", "title": "Multiplying 4 digits by 1 digit with visual models", "all_assessment_items": ["{\"sha\": \"df40d7337a290bd0a48ac3bebba95f7a759813d8\", \"live\": true, \"id\": \"xb297192b42ffbf8d\"}", "{\"sha\": \"299d83f9bf69b351e6cc415287ee62b3046a615b\", \"live\": true, \"id\": \"x5b7028751a94fe6c\"}", "{\"sha\": \"93d9f692c59d117a8bdbb400ab0936434ed9287f\", \"live\": true, \"id\": \"xc831148900354593\"}", "{\"sha\": \"351e897be638aa1a05cf7f7f68dd20b11c0b8439\", \"live\": true, \"id\": \"xef0cf9f79510fbc1\"}", "{\"sha\": \"5037569d328bfa62c881172dea606896de91a9de\", \"live\": true, \"id\": \"xb2cb752bdbb0f6b2\"}", "{\"sha\": \"1c7e629b0abfb73c3b10f7932d71d3b987a9de2e\", \"live\": true, \"id\": \"x4eb0bb4043465bfc\"}", "{\"sha\": \"2c6a0fa745a04ab0efca94b7ea0d0a643f7b6261\", \"live\": true, \"id\": \"x1b3c82b56d0f7886\"}", "{\"sha\": \"7f0fb8e900c811aa87cfa804d2415cb4bcec8ccd\", \"live\": true, \"id\": \"x55b0892b1f289b98\"}", "{\"sha\": \"800530614311807b69ec1c27baf334c70a5c20e8\", \"live\": true, \"id\": \"x4d96628d648ac078\"}", "{\"sha\": \"1cdfdb537421361e0dbbd961c7399c5e4f378922\", \"live\": true, \"id\": \"xf75155db452d052b\"}", "{\"sha\": \"86e7056e1e10b58cf16d2efeec5bf0f37198de17\", \"live\": true, \"id\": \"x76f91cd6ea3634f4\"}", "{\"sha\": \"db56f786836da77104ede38dca16e9e8d84ea17f\", \"live\": true, \"id\": \"x0db39d039f7e3c2d\"}", "{\"sha\": \"f5cc88867044c5a7d9f009dbf4a48d2dc9021bdc\", \"live\": true, \"id\": \"xfa8b1f2211fff388\"}", "{\"sha\": \"ae120331b1abc6d00c70a031854d440b41d2a265\", \"live\": true, \"id\": \"x6224cb59b818691a\"}", "{\"sha\": \"091b9625b07cde5a44d6855414daf9a6fd11dba9\", \"live\": true, \"id\": \"x2044f1fed8eca0bd\"}", "{\"sha\": \"56f1485c69a4c28c73db4e04bd2e668aaafaf12d\", \"live\": true, \"id\": \"xa480ad87531708f0\"}", "{\"sha\": \"1124e435ae98fa81e1a2a5a756f2778a48d00a22\", \"live\": true, \"id\": \"xb5a0977a5de7f37c\"}", "{\"sha\": \"bb130fee2f5664ac3142ccd34b4a6b5d64feb37c\", \"live\": true, \"id\": \"xf5b001e526147213\"}"], "description": "Use an area model to decompose the larger factor and multiply. \u00a0", "basepoints": 10.0, "slug": "multiplying-by-4-digit-numbers-with-visual-models", "kind": "Exercise", "name": "multiplying-by-4-digit-numbers-with-visual-models", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_0.5", "understanding-place-value-1"], "exercise_id": "multiplying-by-4-digit-numbers-with-visual-models"}, "scalar_matrix_multiplication": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/scalar_matrix_multiplication/", "id": "scalar_matrix_multiplication", "display_name": "Scalar matrix multiplication", "title": "Scalar matrix multiplication", "all_assessment_items": ["{\"sha\": \"9cfc180b3693f9fa5a933a17a0668fc5113e624a\", \"live\": true, \"id\": \"x1969b6ee45712f2d\"}", "{\"sha\": \"dabd606ce4183dd3255776e1fddf13c6692d21ea\", \"live\": true, \"id\": \"x57e5650a75ffa9d2\"}", "{\"sha\": \"0b89c649b897de649c0bee4d7eb24c4cfd569f35\", \"live\": true, \"id\": \"xadbbaa4e95228e77\"}", "{\"sha\": \"5910ae3b30fffe450408ed50e6cdce1fcdde57e9\", \"live\": true, \"id\": \"xcf7e9c5bb5f961bb\"}", "{\"sha\": \"535d446c569650635a1ff3fd1b94e3cdfea850ca\", \"live\": true, \"id\": \"x746194631913a2bf\"}", "{\"sha\": \"73b35afb7315b7c4061129d7d0160a15c54a9795\", \"live\": true, \"id\": \"x6dbfa0133ef891a9\"}", "{\"sha\": \"5a319fa64914e5d1ce6964cb334f9341f176d7ae\", \"live\": true, \"id\": \"x7d38324acde9317d\"}", "{\"sha\": \"219a567771295e833908e5668737e2e4bbe0dbcb\", \"live\": true, \"id\": \"x0acfd2f98459a3ac\"}", "{\"sha\": \"3c179b836db28d9d85aaa2b01d4e56cb71d5c2cb\", \"live\": true, \"id\": \"x83ed9de868ad0fb5\"}", "{\"sha\": \"74a4a1f710ac8dbac7e425cb5636c209ba36fedc\", \"live\": true, \"id\": \"x1824886e65fe2059\"}", "{\"sha\": \"ae75df81ada77634165f43ef6af193bcc3ea4643\", \"live\": true, \"id\": \"x1360d4a6c4788cdc\"}", "{\"sha\": \"72d9293f139adf7626ed885a965ad6942b996000\", \"live\": true, \"id\": \"x8a64d1e039085eff\"}", "{\"sha\": \"2030395ad3675828d1e56b3f1de90c02495c7724\", \"live\": true, \"id\": \"x6bb95d75cdd98ac8\"}", "{\"sha\": \"5954e8bb84e6f138f71ee804778f47c81067cd0b\", \"live\": true, \"id\": \"x20e7e9997e2c3244\"}", "{\"sha\": \"97d35cdeb77cf933629189dfe5c040969fbcf085\", \"live\": true, \"id\": \"xab11147f097abea5\"}", "{\"sha\": \"a3572846cb473612aece8a11dd291a43303bb46a\", \"live\": true, \"id\": \"x9672cf2bdff1b239\"}", "{\"sha\": \"f1e78a00c838aaab943fb54fe7cae6e9493bdff7\", \"live\": true, \"id\": \"x56b937d18ec81955\"}", "{\"sha\": \"7ae99a5e5bf2e78594f5a1b9789db84bb40d2240\", \"live\": true, \"id\": \"xbedfe9018e669341\"}", "{\"sha\": \"b53af2031c1cc77944dc9840a3236c12a18f3647\", \"live\": true, \"id\": \"x791ecbbea958ac37\"}", "{\"sha\": \"01e4b81b72acae2c597da96b3fcfc3d25892e7b0\", \"live\": true, \"id\": \"x34a8bcbd99a47f20\"}", "{\"sha\": \"5e4396054907f3d46f7e50594fa9a27b6106460e\", \"live\": true, \"id\": \"x60350c47bbdc334b\"}", "{\"sha\": \"49547663b9d8162d61ae96e96529368ac8600375\", \"live\": true, \"id\": \"x5c690f4a04d68d51\"}", "{\"sha\": \"f2732060ff31d6e0df5f7b1d660935efd6a8e0b0\", \"live\": true, \"id\": \"x1eb9f03626635063\"}", "{\"sha\": \"c356b51e7f7e100babb28d7e46e2384a9de8f897\", \"live\": true, \"id\": \"x3ffa6a8722557af8\"}", "{\"sha\": \"2a64032d2997af9fe13a67151dfe82a28511570b\", \"live\": true, \"id\": \"x74ce8c599b96c499\"}", "{\"sha\": \"11d08a4e46d5e46cadf828aed5bf0755cd10941e\", \"live\": true, \"id\": \"x10e9ebb32093405e\"}", "{\"sha\": \"51f0f64f35873b8541827e8698c21067a946bd44\", \"live\": true, \"id\": \"xccd992c39f91fba7\"}", "{\"sha\": \"03133ed53755f2d98c8953f9a2d0f0c775637673\", \"live\": true, \"id\": \"x679dbb07f7c45f55\"}", "{\"sha\": \"5d7e80d3befa812138c2ff0b2ec2868a106ceab4\", \"live\": true, \"id\": \"xecd385abc7e92ce1\"}", "{\"sha\": \"895f655076c5228eae4c5bbb167d9c99c5067307\", \"live\": true, \"id\": \"xa2ada5084c6bfdd9\"}", "{\"sha\": \"2cb22f712cd058423ef98a8ca8c6f0132492df19\", \"live\": true, \"id\": \"xe907f57ee309f78b\"}", "{\"sha\": \"ddcece3b2f5d7d8bd12e822470a4f10b2f13a4b6\", \"live\": true, \"id\": \"x9feff29f3f0554c6\"}"], "description": "Multiply a matrix by a scalar", "basepoints": 18.0, "slug": "scalar_matrix_multiplication", "kind": "Exercise", "name": "scalar_matrix_multiplication", "seconds_per_fast_problem": 12.0, "prerequisites": ["matrix_dimensions"], "exercise_id": "scalar_matrix_multiplication"}, "theories-of-personality---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/theories-of-personality-passage-1/", "id": "theories-of-personality---passage-1", "display_name": "Antisocial personality disorder and inkblot tests", "title": "Antisocial personality disorder and inkblot tests", "all_assessment_items": ["{\"sha\": \"cee7b64b742d963a874a053c9bf8075cce5cc46f\", \"live\": true, \"id\": \"xdfb249d1e2d8cdf6\"}", "{\"sha\": \"e7428e2490e726643d30141b06881fe11a6316b8\", \"live\": true, \"id\": \"xb68b8f7cfbe8c634\"}", "{\"sha\": \"e1f73e18f836a25cfdc87bdcf043ba318db38b78\", \"live\": true, \"id\": \"xf9e87907d3f34776\"}", "{\"sha\": \"fdb58ecd6d09562b2c4c48ac925a707d26f24cac\", \"live\": true, \"id\": \"xa31b254491e035c0\"}", "{\"sha\": \"835b28ed891a0bccac1d3606ee826e5ca48846f4\", \"live\": true, \"id\": \"x543aed3435bc37d4\"}"], "description": "", "basepoints": 10.0, "slug": "theories-of-personality-passage-1", "kind": "Exercise", "name": "theories-of-personality---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "theories-of-personality---passage-1"}, "indefinite-integrals": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/indefinite-integrals/", "id": "indefinite-integrals", "display_name": "Finding the constant of integration", "title": "Finding the constant of integration", "all_assessment_items": ["{\"sha\": \"531530623ae40a8b993722d8425aba4f907cd647\", \"live\": true, \"id\": \"x83666b8c0330a4bd\"}", "{\"sha\": \"baf8079456db3bd4c1840d78b60cb2e48d9af1dc\", \"live\": true, \"id\": \"x59917b6960c868a3\"}", "{\"sha\": \"d2be48095c9255a4b56e00ef4a91311f3c89af9c\", \"live\": true, \"id\": \"x733e0afe04d6ea86\"}", "{\"sha\": \"8d513008075a0222dedf188ce58759ef007434ec\", \"live\": true, \"id\": \"xdb76c87fdc79793f\"}", "{\"sha\": \"ce4ec3b14c2436696bf423a7b2135113760f4c97\", \"live\": true, \"id\": \"xbd9e99f786a100fd\"}", "{\"sha\": \"cc104a54bc4c7af24023e328b53e2cfa04cd51d5\", \"live\": true, \"id\": \"x9b61f3c67978ac3e\"}", "{\"sha\": \"19a89d469afd29c305455183935f56f843bbae72\", \"live\": true, \"id\": \"x55a41378c73cb652\"}", "{\"sha\": \"bb69e3f290496e5f04e48abf92c96fa4e942d9c5\", \"live\": true, \"id\": \"x9f2ec27f848d7e55\"}", "{\"sha\": \"39ddd2bc2c0de02b6d4946bc6c515966b12d80f3\", \"live\": true, \"id\": \"x99017dafdf1c4e32\"}", "{\"sha\": \"173e4db89bd43c58bc560e180f7c4ad24bb9dc95\", \"live\": true, \"id\": \"x331b95b0da7c3099\"}", "{\"sha\": \"b17c6c99c1a21a7ac148b640fc518e92adbbca82\", \"live\": true, \"id\": \"xcd278c78a1c95fe0\"}", "{\"sha\": \"00093357200f61357e1b9415552e90fbc01291ca\", \"live\": true, \"id\": \"xbec431a85817789e\"}", "{\"sha\": \"a0d082039a2c3e87cad85406611dc9d1c36e6991\", \"live\": true, \"id\": \"xafb03e574ae06781\"}", "{\"sha\": \"dd44384eaa2220bdd94adb27f9d06b38353d3797\", \"live\": true, \"id\": \"x966b720b2fe4cebb\"}", "{\"sha\": \"743a60e025ccec9641d90ac87c07ee869dc6784b\", \"live\": true, \"id\": \"xe1a0145c1c938ef8\"}", "{\"sha\": \"bb6e740f94dd08c42a9bef31ba8b05b9ac9d85a7\", \"live\": true, \"id\": \"xe45a124b5ae337d1\"}", "{\"sha\": \"8d35c4c028baad4f415bf28cc3cf48f815612c59\", \"live\": true, \"id\": \"x06ed635b09a061f9\"}", "{\"sha\": \"339c83d62f37178e5c0e54a588ba15278f3b9d7d\", \"live\": true, \"id\": \"x7c61c3faaff1c31d\"}", "{\"sha\": \"dff838d6ae52bb47c55a957850ddddfc63a7377e\", \"live\": true, \"id\": \"xb7f8b1f92dd5a62b\"}", "{\"sha\": \"cb0a0f87295df3ba5d53c844076f9ba2007f800b\", \"live\": true, \"id\": \"xacea8f6b4529a509\"}", "{\"sha\": \"b88e1b621136928b189ad36f05ea4e4c3fc73a67\", \"live\": true, \"id\": \"xfe0f0d6e651edc63\"}", "{\"sha\": \"f840b122a7a1ad2b58bbd9b5f427b8f1fff68a75\", \"live\": true, \"id\": \"x892db919e916566d\"}", "{\"sha\": \"57cdff6db907f678f6d74935f6c9c44eca0fbf4d\", \"live\": true, \"id\": \"x8a6ae7c1a15c6c70\"}", "{\"sha\": \"921eccc8c37b7f60b8d686d283cb6f2b7c3705ac\", \"live\": true, \"id\": \"xe0556e0ccf4d95df\"}", "{\"sha\": \"9c15896430a71e2d40444599bbb11eb39fa59a87\", \"live\": true, \"id\": \"x72bcbafc7556967f\"}", "{\"sha\": \"2300abc554f3e09fed37697203ae6d3ccea95f4e\", \"live\": true, \"id\": \"x83e03c3e15a598e6\"}", "{\"sha\": \"d6b40681471798ae30f85770b5ef0c78b20aeda9\", \"live\": true, \"id\": \"x124bcfb9c392c61d\"}", "{\"sha\": \"61b9d525cfb31e51f5e5d3adb52058b9670f673a\", \"live\": true, \"id\": \"x07b6fbf181001d51\"}", "{\"sha\": \"4a14b8d11115a842051a7e99090e8671a5950975\", \"live\": true, \"id\": \"xe73eec779b69c55d\"}", "{\"sha\": \"1a179afa4995d0ff5663450af102392787596cc6\", \"live\": true, \"id\": \"xc519231f0f4f9b77\"}"], "description": "", "basepoints": 10.0, "slug": "indefinite-integrals", "kind": "Exercise", "name": "indefinite-integrals", "seconds_per_fast_problem": 4.0, "prerequisites": ["graphs-of-antiderivatives"], "exercise_id": "indefinite-integrals"}, "multi-digit-division-with-visual-models": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/multi-digit-division-with-visual-models/", "id": "multi-digit-division-with-visual-models", "display_name": "Multi-digit division with visual models", "title": "Multi-digit division with visual models", "all_assessment_items": ["{\"sha\": \"d018ccc3b17ae84b33e5ed2ec4b285d0f2deb1d0\", \"live\": true, \"id\": \"xc4c46a7b40955d41\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1cde6ee9d4bff63b1faf38c4e0dfa4dcd5fa4866\", \"live\": true, \"id\": \"x73c18068ed50f43a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"20bdcb169abab2b5f451c4baa15f5b71238a43f0\", \"live\": true, \"id\": \"xb12f8e8af5eba3f2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"bb76baa5e1ce0d960957b2f577511252ffb831e6\", \"live\": true, \"id\": \"xfff5813849a2dbc9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b3871e2e73f19838b4a0a0ac15e23774591e9091\", \"live\": true, \"id\": \"x7e466f012cdbff16\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e599157ea469b0a5916d739ae37637b1ab916340\", \"live\": true, \"id\": \"x9d3c628587af425b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e03cf77a4ffc82fadee25144303634a765fbc9b1\", \"live\": true, \"id\": \"x8ece7ed969c5e041\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"eefc4545a1681bed6a377ea8da06fe78df6b7fc2\", \"live\": true, \"id\": \"x7b0f151e5c243582\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"25c13b4b2cd56695e1cf71ebc610a4dc74e85350\", \"live\": true, \"id\": \"x057ef92aecea53bf\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"71adfbf0f8c8a6c5358d5a51c2b0568be52f1421\", \"live\": true, \"id\": \"xdd75bb2f87f7808f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b1e337d8801eaa60d5ca2e36f49e7873a7a02dfc\", \"live\": true, \"id\": \"x07f83cfc0019c9e1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"111616564997042a358177dccf20ee5a3d8964f1\", \"live\": true, \"id\": \"xaab5418e68ad69d5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1d4fa11866831b0a0b95bf2c79d895de8d97cd37\", \"live\": true, \"id\": \"x8898f3cd7e3761ac\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a7467384cda466f6fd11f5654a7971ff7d645c3b\", \"live\": true, \"id\": \"x209c8b7507605a25\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"0f85d3645d55dc7b7f8117c8d75852d3d979512b\", \"live\": true, \"id\": \"x1d59b651a9264db8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"7ed0ac4216bbe882db5005cb155bc95778699a79\", \"live\": true, \"id\": \"xcbc6674f97e3256e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"5147112bfc5a722dc0481c754571605de3b57841\", \"live\": true, \"id\": \"xd9afc886b66e1006\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a2d72a28896df3d9abdf9f2038d0ccaa551089c7\", \"live\": true, \"id\": \"xc7367f0eb1396e83\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c5f9094397b1cadcab7b99fd8b1b9424ae9174db\", \"live\": true, \"id\": \"x9451d696be2075a0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9b312a408fd1ead21b48d35f7579dabf6e298252\", \"live\": true, \"id\": \"xc6d26c762ff15e2d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}"], "description": "We can break up big division problems into smaller, easier problems.", "basepoints": 10.0, "slug": "multi-digit-division-with-visual-models", "kind": "Exercise", "name": "multi-digit-division-with-visual-models", "seconds_per_fast_problem": 4.0, "prerequisites": ["division_1.5"], "exercise_id": "multi-digit-division-with-visual-models"}, "solving-ratio-problems-with-tables": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-ratios-rates-percentages/solving-ratio-problems-with-tables/", "id": "solving-ratio-problems-with-tables", "display_name": "Solving ratio problems with tables", "title": "Solving ratio problems with tables", "all_assessment_items": ["{\"sha\": \"170bd278b1b233cf6cf47dc2f2d5789daed39a17\", \"live\": true, \"id\": \"x502727fb5de05007\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0749927465517fb5d2b9966443ed95ac9efc4380\", \"live\": true, \"id\": \"x5eff57386a2ad64b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f758eb982c4fbee508865869cfb6f593a474468f\", \"live\": true, \"id\": \"xb15f1d1390200468\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef967d4dce73f1a9cf7dd2a10f187fc480474c2e\", \"live\": true, \"id\": \"xa1ed749ee56283c9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90a9e152e314b3d4009a0e876e0a35242098be42\", \"live\": true, \"id\": \"x94ae4e8a4e70d346\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9465fa5b7875e94c8792969788b8a021034a8d10\", \"live\": true, \"id\": \"xa83b4f8de1af73df\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9dec94a7d4e7b89c0ae486fd921687b07fe09120\", \"live\": true, \"id\": \"x185d8c4ea8e61dc6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7461a1953e2ca053cc27e6d817f43fe533844ee9\", \"live\": true, \"id\": \"xaf75da3e6f7ae2df\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d52f1696c6f2f41d25051e14c0ddab16bd94348\", \"live\": true, \"id\": \"xb496903b94436624\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2948d9049d141254105ace02546a8552ece98647\", \"live\": true, \"id\": \"x7254b07d287f6db8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e75e7f6c2c9a1571833685f09324961ae6e417a\", \"live\": true, \"id\": \"xb627e3a50ddc79d2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"62781cf25da86ac8405caec5d622c438a00cf11d\", \"live\": true, \"id\": \"x8833e83c44adc4d3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aa96f74dc318185f38fcab56a74a2a422b25bfa8\", \"live\": true, \"id\": \"x42e95a257d6efb04\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b53b368c36b208bca50c6fb436f4b36e7ddce6d6\", \"live\": true, \"id\": \"x0c88ba49508ded9b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4cdf001103598ab27830b77db507872399ce7a42\", \"live\": true, \"id\": \"xebfd0d086bf3c0c7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea155160256d2dee3f61d7128c47c2cb1f2fcef4\", \"live\": true, \"id\": \"x17081942dd875ec0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f641f1e8331957eed052705425c23e880f329a0a\", \"live\": true, \"id\": \"x18e534cc6b87566d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6cddda922a4caad9458fe328ffbe0e1b93d1f406\", \"live\": true, \"id\": \"xf8960302a92df27b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5917b7c068bab38884c4c5543d3a965231a48543\", \"live\": true, \"id\": \"xf13d43b41d6a3e35\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4c1622503286be9346aa73fb1016283d8ebcfe2d\", \"live\": true, \"id\": \"x3d6adf99c5439223\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Practice filling out tables of equivalent ratios.", "basepoints": 25.0, "slug": "solving-ratio-problems-with-tables", "kind": "Exercise", "name": "solving-ratio-problems-with-tables", "seconds_per_fast_problem": 32.0, "prerequisites": ["representing-ratios"], "exercise_id": "solving-ratio-problems-with-tables"}, "dividing-fractions-by-whole-numbers-introduction": {"uses_assessment_items": true, "id": "dividing-fractions-by-whole-numbers-introduction", "display_name": "Dividing unit fractions by whole numbers introduction", "title": "Dividing unit fractions by whole numbers introduction", "all_assessment_items": ["{\"sha\": \"5a14d84edab021182e75f438a4760f4d5633efe8\", \"live\": true, \"id\": \"x13b56f700f7ed079\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e44864dbc604c6129face68b7d19448fcd6e7f2\", \"live\": true, \"id\": \"x3c56e72518d77861\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f70d489167299ecad7151b3dc1ecc1424ba14db4\", \"live\": true, \"id\": \"x9c27a1d7833dded8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b84842bf5f74dfce18b6b222713a466d858d0839\", \"live\": true, \"id\": \"xb691813dc5cbac01\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bff4a728ba5730797aa9a9f07c62d899b3107045\", \"live\": true, \"id\": \"x96c110b8cf78f044\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c181a9f28fef71e18061a6c09d5cb6e9c5052a2\", \"live\": true, \"id\": \"x989334a4aa71c889\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca4fbc2f0a874d37ae27c3f01824037386735731\", \"live\": true, \"id\": \"x2e0191e4c67e8f17\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"24b95c14c4881834806289f83ca54c65fccf8ad4\", \"live\": true, \"id\": \"x85e237b24ad682e1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83fb4106afc5f79fedb23dcff191635fc77e0048\", \"live\": true, \"id\": \"xaf1662286d65e921\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8eaec5698ae91a57174f119311a846906c1765b4\", \"live\": true, \"id\": \"xa5e74d6526290e83\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"66df42cd7d6c4b25b1d565e1534f6069ff78bf49\", \"live\": true, \"id\": \"x77ed413571eea021\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48dc88769ec61d00da56215a8378f1f41e08943f\", \"live\": true, \"id\": \"x9d381b9e0d95ee32\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"24b33fad2ca68ca1a5b286c18abf64ee596d318f\", \"live\": true, \"id\": \"x3b52ceb0e72a254b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"07e03d659fd96f98af6cdfd45c81c84be066ecf4\", \"live\": true, \"id\": \"x08c33b4837cb35f1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4316ede25050032f542720413beb640d37c46c79\", \"live\": true, \"id\": \"x98719002b2110531\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3685b7a27831d7406f0242a99f7f46aaf4310d43\", \"live\": true, \"id\": \"x3d2ebd7ffa8ebcfb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bcd3c695ab0e2891e2fdfa2bd268d6d9bf11ae86\", \"live\": true, \"id\": \"xf6a75fb93cb418d2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"64ed00dabb4879698c78ef63b3aadd03d6e965d5\", \"live\": true, \"id\": \"x8d9ca03347613b41\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ffb6016f44618ace2833c5ee0563c2e09d5a2f9e\", \"live\": true, \"id\": \"xa1d2fc6017fe1118\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fdbd59d6d79073eb8c6d9f8aec49ada9994c8b8f\", \"live\": true, \"id\": \"x75d8db2eaef1a37a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Practice dividing unit fractions by whole numbers with visual models.", "basepoints": 10.0, "path": "dividing-fractions-by-whole-numbers-introduction/", "slug": "dividing-fractions-by-whole-numbers-introduction", "kind": "Exercise", "name": "dividing-fractions-by-whole-numbers-introduction", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-unit-fractions-and-whole-numbers"], "exercise_id": "dividing-fractions-by-whole-numbers-introduction"}, "negative-number-addition-and-subtraction--equations-and-number-lines": {"uses_assessment_items": true, "id": "negative-number-addition-and-subtraction--equations-and-number-lines", "display_name": "Integer addition and subtraction: equations and number lines", "title": "Integer addition and subtraction: equations and number lines", "all_assessment_items": ["{\"sha\": \"e23cee5dea1ec69d9c727e508d5eea583f897b14\", \"live\": true, \"id\": \"x9c5db293cf7cd413\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"0f409b7972999555100bcd527547cf97b695cf20\", \"live\": true, \"id\": \"x9108c4694f368e4b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"3e24ebeb4b5b766d7095cfe1fa11522d387a3eeb\", \"live\": true, \"id\": \"x78abb9f914c32982\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9df37b8ac44d4bb9e5fe0e3523fd61f3a209f4c7\", \"live\": true, \"id\": \"x39cfc94b3d039302\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f3fea4bd8cb0b87564c04c55a47311f7b8d3e7fa\", \"live\": true, \"id\": \"x5e1e310fb9a0bb90\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a3ff907c5adea3eb0e2e7494bc830f2ea2c87605\", \"live\": true, \"id\": \"x8eb6b54b62efd010\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a36e38abaf9d1096fcfc9d69e6d23ce91d00bb43\", \"live\": true, \"id\": \"xdab0ac9f3c04c60c\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b0620a3940929b14a63cb7736d858a58d64a1954\", \"live\": true, \"id\": \"x9dde932a1383109d\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d0b5cfe00aa46d6f71182c5ceb1f6cfd8f280338\", \"live\": true, \"id\": \"xd610b87535fc620e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88e4ffc694b098a62cdca5169efb7af19808bf44\", \"live\": true, \"id\": \"x71f64f609e0ecd93\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aea8b073566b8f38892d4ba2d07c93195a2d7112\", \"live\": true, \"id\": \"xf63af1f04fe534b3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1cdb77226aa77147c2371332dd44488bfb2552e0\", \"live\": true, \"id\": \"xf44c0185ceef49ea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6527cef838ec3a48bd2846c1b544e8d08dbf037\", \"live\": true, \"id\": \"x52861d81023728a9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c9436262123c1f717a4ba36618d2adf6efee007a\", \"live\": true, \"id\": \"xf39cda2a86b64de2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8c3c4d1c7894f6392655d4353e1f0294bcc3f45\", \"live\": true, \"id\": \"xf8477be75aae4dbd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"50e91aecf7f3c0b5fa6e81c244da89882a6847a8\", \"live\": true, \"id\": \"xae44b6995c503ad2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6794a91a0344dcd3d3cd74874a11f72976a59a60\", \"live\": true, \"id\": \"x2baa9049c0d91421\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a3554e3e470ee33ed49faf074e6f1471e4082032\", \"live\": true, \"id\": \"x60957a011ef2c036\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ae75ddd4cc5fb8eb00ea7a85519397d1a4431417\", \"live\": true, \"id\": \"x7dd2eed87fb79e7a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d1f96a64deef12e19a70dda23476568bbeaa020e\", \"live\": true, \"id\": \"xcf883aa48449ca04\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7db332c108550c757cdcbb954cd22d1d9404fa41\", \"live\": true, \"id\": \"x65752deb6c41430e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9f34ed253c1cc8870f7e4a9dd5f4f3e94dc9d69\", \"live\": true, \"id\": \"x7e76404ad301d6f1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d610f1d45a23f6efdb0a15a2935849143760fe58\", \"live\": true, \"id\": \"x49cdf40132f72bda\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e5593bca454734b0691216234994bde7f0c532e5\", \"live\": true, \"id\": \"x0827c46e2c9e38de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice writing addition and subtraction equations to match number line diagrams.", "basepoints": 10.0, "path": "negative-number-addition-and-subtraction-equations-and-number-lines/", "slug": "negative-number-addition-and-subtraction-equations-and-number-lines", "kind": "Exercise", "name": "negative-number-addition-and-subtraction--equations-and-number-lines", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding-negative-numbers-on-the-number-line"], "exercise_id": "negative-number-addition-and-subtraction--equations-and-number-lines"}, "cellular-effects-of-metformin--a-drug-for-diabetes-mellitus": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cellular-effects-of-metformin-a-drug-for-diabetes-mellitus/", "id": "cellular-effects-of-metformin--a-drug-for-diabetes-mellitus", "display_name": "Cellular effects of metformin, a drug for diabetes mellitus", "title": "Cellular effects of metformin, a drug for diabetes mellitus", "all_assessment_items": ["{\"sha\": \"99f931bc1d6b9133b6c8a07f5c1634ec4dfc0e67\", \"live\": true, \"id\": \"x8773f96254b94525\"}", "{\"sha\": \"f7ff79e00da20ada3b705b9c0d5d2ad92c3d9df7\", \"live\": true, \"id\": \"xf3892490eaafa4b7\"}", "{\"sha\": \"8d0ecbecd4b6eba1aecc68b26ac70339c5b7d3c1\", \"live\": true, \"id\": \"xad9030a020879de5\"}", "{\"sha\": \"1d66b6c4b58712142d4b79711656885a3a30694b\", \"live\": true, \"id\": \"x71b0e9b1f096ad3c\"}", "{\"sha\": \"f7ec4a5b82dea75cb53791eacbfc2cc9a007c014\", \"live\": true, \"id\": \"x71e529640994e7c4\"}"], "description": "Cellular Effects of Metformin, a drug for Diabetes Mellitus", "basepoints": 10.0, "slug": "cellular-effects-of-metformin-a-drug-for-diabetes-mellitus", "kind": "Exercise", "name": "cellular-effects-of-metformin--a-drug-for-diabetes-mellitus", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cellular-effects-of-metformin--a-drug-for-diabetes-mellitus"}, "creating-power-series-from-geometric-series-using-differentiation-and-integration": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/power-series-algebra/creating-power-series-from-geometric-series-using-differentiation-and-integration/", "id": "creating-power-series-from-geometric-series-using-differentiation-and-integration", "display_name": "Creating power series from geometric series using differentiation and integration", "title": "Creating power series from geometric series using differentiation and integration", "all_assessment_items": ["{\"sha\": \"f8b3dfdab4521c939ffe290de1fe7a59e5eaaa91\", \"live\": true, \"id\": \"xdfaa9f8ebc2af5d7\"}", "{\"sha\": \"eeace2f52977eee8793fde9bc67fa973e90215ef\", \"live\": true, \"id\": \"x5c56eaebbd0f85d4\"}", "{\"sha\": \"f4aba7dea3337643bad3115c6fe25d0289150ce2\", \"live\": true, \"id\": \"x1dc7cca7bd2d184a\"}", "{\"sha\": \"4a2fc9fa28ea1eada79ccbca01170cf8600ba9b8\", \"live\": true, \"id\": \"x1eb0f147853b0c7d\"}", "{\"sha\": \"86ed0bfcff4a6c7846a1a1b51086c1511cc5529d\", \"live\": true, \"id\": \"x74192cf083ae6e51\"}", "{\"sha\": \"a2f58235f2666833356b348a546f79d5a34064e3\", \"live\": true, \"id\": \"x90d7dc619e32be6d\"}", "{\"sha\": \"bad5e88348f202ed427ffa5007bb348323d03432\", \"live\": true, \"id\": \"x632739c2e4368262\"}", "{\"sha\": \"8aaa6a3a03669a4c4fa1d8428a837bcb76bd4a45\", \"live\": true, \"id\": \"xdf5a83f03f23e6c9\"}", "{\"sha\": \"c09e756f1bff04a1ce60310ac6007af425e3bc3e\", \"live\": true, \"id\": \"xc0162660de04c7ad\"}", "{\"sha\": \"39b53d85328bbbd6018e45752ddb7792af26db61\", \"live\": true, \"id\": \"x8fd5e64106bdb18f\"}", "{\"sha\": \"ebc7c17ea58b8cb6660da904c06db7fe19e868ba\", \"live\": true, \"id\": \"x7f236ad09ce36672\"}", "{\"sha\": \"11d148965bc66a768c14fec735c75a8d0b3923a7\", \"live\": true, \"id\": \"x2759a81d4d45e892\"}", "{\"sha\": \"e02a9ea42023f8d0a226c65afcef4156beedc9dd\", \"live\": true, \"id\": \"xe7038b433b6eda87\"}", "{\"sha\": \"07705ff34872d91990b235de9fac9bdd654f3c93\", \"live\": true, \"id\": \"x2af6defdb7e345db\"}", "{\"sha\": \"bafb1c45165544d4c8b7fe0eeda61edef0c15c4d\", \"live\": true, \"id\": \"x0db9306329341979\"}", "{\"sha\": \"bed5323fd2a9c17227f20b5ed28f65edede4e834\", \"live\": true, \"id\": \"x216e0964a2390450\"}", "{\"sha\": \"5cf43475d3df843818b1db07754f5f96c14cd703\", \"live\": true, \"id\": \"x558e995c1829b00b\"}", "{\"sha\": \"b79b4c1db779d499e5b2648f193052d5b97848d4\", \"live\": true, \"id\": \"xe8cc30540b87b64b\"}", "{\"sha\": \"9f8d735ff8783ff8a04ba7adeb2b4a018e91fe77\", \"live\": true, \"id\": \"x6f863260844c73f2\"}", "{\"sha\": \"a4b89e29f3cfb35d37dc043d050ed380e756038e\", \"live\": true, \"id\": \"x8056194f640520c5\"}", "{\"sha\": \"55298bd94810fe77a26b0e61d3fbfa980f84cc46\", \"live\": true, \"id\": \"xaf956342f0473d8a\"}", "{\"sha\": \"2534c17d8ce41267ea2fc90dfa1c870a40dbbae0\", \"live\": true, \"id\": \"xbb25d6e393c9f6ce\"}", "{\"sha\": \"d7a33ee417e4ebd789cc1bdd57ecf921e0e57c77\", \"live\": true, \"id\": \"x3f8916862aa03401\"}", "{\"sha\": \"8b822340038a8c7c14b1953f50deca2a061fd948\", \"live\": true, \"id\": \"x04fcf159efb2b51f\"}", "{\"sha\": \"2acdc9479b1819e9f1a97d20cbe406021968f667\", \"live\": true, \"id\": \"x8b11d2b643c5f4cf\"}", "{\"sha\": \"e946bbb2a98e00424910b155b4b6aa585f31a9a1\", \"live\": true, \"id\": \"x7d414bdbcf4104a7\"}", "{\"sha\": \"03cde16604199d7d3586ff547bac25bebf1cf892\", \"live\": true, \"id\": \"x6908a3d8b5d38394\"}", "{\"sha\": \"13fbe215d3f4e0a15fbd2ad5c80cc9e962cff708\", \"live\": true, \"id\": \"x7875f5d5714414ac\"}", "{\"sha\": \"dcaaf3a6d38b5ae04da9e5b9d907761bb4e402c7\", \"live\": true, \"id\": \"xd613317f7e404238\"}", "{\"sha\": \"c47d1991b7f6f15cdcf43e83b504cdcb3db6d9e1\", \"live\": true, \"id\": \"x98cb9785ed165cfd\"}"], "description": "", "basepoints": 10.0, "slug": "creating-power-series-from-geometric-series-using-differentiation-and-integration", "kind": "Exercise", "name": "creating-power-series-from-geometric-series-using-differentiation-and-integration", "seconds_per_fast_problem": 4.0, "prerequisites": ["maclaurin-series-for-sin-x--cos-x--and-e-x"], "exercise_id": "creating-power-series-from-geometric-series-using-differentiation-and-integration"}, "angles_1": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/angles_1/", "id": "angles_1", "display_name": "Finding angle measures 1", "title": "Finding angle measures 1", "description": "", "basepoints": 20.0, "slug": "angles_1", "kind": "Exercise", "name": "angles_1", "seconds_per_fast_problem": 17.0, "prerequisites": ["congruent_angles"], "exercise_id": "angles_1"}, "multiplying_fractions": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-fractions/multiplying_fractions/", "id": "multiplying_fractions", "display_name": "Multiplying positive and negative fractions", "title": "Multiplying positive and negative fractions", "description": "Practice multiplying fractions. Fractions in these problems may be positive or negative.", "basepoints": 17.0, "slug": "multiplying_fractions", "kind": "Exercise", "name": "multiplying_fractions", "seconds_per_fast_problem": 11.0, "prerequisites": ["multiplying_and_dividing_negative_numbers"], "exercise_id": "multiplying_fractions"}, "angles_2": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/angles_2/", "id": "angles_2", "display_name": "Finding angle measures 2", "title": "Finding angle measures 2", "description": "", "basepoints": 20.0, "slug": "angles_2", "kind": "Exercise", "name": "angles_2", "seconds_per_fast_problem": 16.0, "prerequisites": ["angles_1"], "exercise_id": "angles_2"}, "drawings-quiz": {"uses_assessment_items": true, "id": "drawings-quiz", "display_name": "Drawings quiz", "title": "Drawings quiz", "all_assessment_items": ["{\"sha\": \"9f849b0a7f2ef96e6e68c99992b42abd3e132f5c\", \"live\": true, \"id\": \"x5305383d783b0725\"}", "{\"sha\": \"50a9e5de53a87c897d3b2be915f4a6bd43d8eda9\", \"live\": true, \"id\": \"x2a9b844739457b4b\"}", "{\"sha\": \"49148967e891d43410e35ec8eeb919bfaa705746\", \"live\": true, \"id\": \"x44caeeb63bba2a2a\"}", "{\"sha\": \"31e5773f34bc7251ea95a5e73f0e2aedbdf232a9\", \"live\": true, \"id\": \"xa2d615a4f32a5c6e\"}", "{\"sha\": \"7187e29ffad46f7ca1b141d15f292749d70495a6\", \"live\": true, \"id\": \"xf64baa2f0b34ed91\"}", "{\"sha\": \"d17819aec31cfd3c0f911cbbed5766aaf922abe8\", \"live\": true, \"id\": \"xa62df4a822194738\"}", "{\"sha\": \"5295e5ef3a75190cdf893379f446aa8c813cedd7\", \"live\": true, \"id\": \"xc968b2312ba84c9f\"}", "{\"sha\": \"78c51df5cdbbd01cb668987082cc6f6d53563314\", \"live\": true, \"id\": \"x8eb0e3714ca86e04\"}", "{\"sha\": \"a736d0bdf6b399161d6259b3c6a647e8ba22eb5d\", \"live\": true, \"id\": \"x5e99f9eac4bf958b\"}", "{\"sha\": \"788a14e66e39df0c3159786081cedd7ac3bd39b2\", \"live\": true, \"id\": \"xc225154bed7cffba\"}"], "description": "Test your knowledge about drawings.", "basepoints": 12.0, "path": "drawings-quiz/", "slug": "drawings-quiz", "kind": "Exercise", "name": "drawings-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "drawings-quiz"}, "cranach-s-law-and-gospel-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/cranach-s-law-and-gospel-quiz/", "id": "cranach-s-law-and-gospel-quiz", "display_name": "Cranach, Law and Gospel (quiz)", "title": "Cranach, Law and Gospel (quiz)", "all_assessment_items": ["{\"sha\": \"56117137522bbe08a96be8889687dd70e166035d\", \"live\": true, \"id\": \"x70b5ea14519ec51c\"}", "{\"sha\": \"c0cf266e7f366fa98bcad753a3d32fc623de6bed\", \"live\": true, \"id\": \"x7d1e864f2fc70f67\"}", "{\"sha\": \"da6bbf5853e796bea0ef53fb6e646b512dd51ecc\", \"live\": true, \"id\": \"xc955292247335bb3\"}", "{\"sha\": \"3b722330f546ced28ffdc05a87212ffde526ab96\", \"live\": true, \"id\": \"x07eee14896d84475\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "cranach-s-law-and-gospel-quiz", "kind": "Exercise", "name": "cranach-s-law-and-gospel-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cranach-s-law-and-gospel-quiz"}, "extreme-value-theorem": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/absolute-relative-maxima-minima/extreme-value-theorem/", "id": "extreme-value-theorem", "display_name": "Extreme value theorem", "title": "Extreme value theorem", "all_assessment_items": ["{\"sha\": \"2ed82c94e6806ee3c0ea4eaedc0bf361068a1933\", \"live\": true, \"id\": \"x2f7ddb40b62d883a\"}", "{\"sha\": \"896cbb0d14f73f436e20a65445c18b78d4081a38\", \"live\": true, \"id\": \"x40f7968a44a5a64b\"}", "{\"sha\": \"8244030f036288eda00a4af9a87ad873e56fe12f\", \"live\": true, \"id\": \"x83521b05b17d392b\"}", "{\"sha\": \"a6bdfdf3d1a75223e64185ab719df20b2ba9ecd0\", \"live\": true, \"id\": \"x3c8f2144c0a0d1f5\"}", "{\"sha\": \"677ae87031e939eb2917c697cf4e82f04ed3a156\", \"live\": true, \"id\": \"x4370f0af641ca07a\"}", "{\"sha\": \"3e70bf5c2e90185c751bae0d48cdddd0d63d95ae\", \"live\": true, \"id\": \"x922ab55f1f8be14d\"}", "{\"sha\": \"a26019730661723ece547175bc93f04637fb9401\", \"live\": true, \"id\": \"x69b67db4a8d1b73b\"}", "{\"sha\": \"c1ab2d89d511de83f97c32cedbfe843a59e037e1\", \"live\": true, \"id\": \"xdf1006c1b1206a16\"}", "{\"sha\": \"3e5ef6a191654ac834006b23035efe2162888bf3\", \"live\": true, \"id\": \"x8809ece356ad7e5d\"}", "{\"sha\": \"46f3e1663de0fcbd4abb052e4b9d92db367d43c3\", \"live\": true, \"id\": \"x226cbceed18981ef\"}", "{\"sha\": \"e4107592d59e20cf6d0172f959fc995f845d93b6\", \"live\": true, \"id\": \"x602afa25a9223c74\"}", "{\"sha\": \"e570b347ec0719a8ffb813db97102e6d2785d89a\", \"live\": true, \"id\": \"xe876227c81d300fc\"}", "{\"sha\": \"79301a1b12cf5b8c4ca77ee9ec3a88dbff1740c2\", \"live\": true, \"id\": \"xf83c272539e4ee38\"}", "{\"sha\": \"0ae628fd3c28db2648cec5faf9fe178d1907023f\", \"live\": true, \"id\": \"x6bfea47a34d3c68f\"}", "{\"sha\": \"abb1fc45fb02fd83cc29525bad97997a2cda508c\", \"live\": true, \"id\": \"x69930fc0df6ca9d1\"}", "{\"sha\": \"022d70eff85692ac560355e4d9dd8e68bee74cfe\", \"live\": true, \"id\": \"xef79c37d3ff23873\"}", "{\"sha\": \"10c409b77584489f9300815885427e473f849f26\", \"live\": true, \"id\": \"x38001e19ed3f7da5\"}", "{\"sha\": \"23e10d490368e3731fcc81f3f9321e54889aca10\", \"live\": true, \"id\": \"x5c67474e55d96569\"}", "{\"sha\": \"de848e359600c279c04cd0cc83259e8b7db2c47b\", \"live\": true, \"id\": \"xbf08fb94a021a472\"}", "{\"sha\": \"78190edd111eface53315ecfd180951aadfef6c0\", \"live\": true, \"id\": \"xbe085de7a255fd01\"}", "{\"sha\": \"9cdb1dfe83fa8aa58d6772a9d030f2885cf7e077\", \"live\": true, \"id\": \"xbaeaeac019cceadf\"}", "{\"sha\": \"77a20d500d97f5bd5a7f67550b90856eb7fdc5cf\", \"live\": true, \"id\": \"x610f650ee34cf0a2\"}", "{\"sha\": \"1b9f8d96af8828489a300a111f5492d8ada6867c\", \"live\": true, \"id\": \"xed6a2040fd7acc4b\"}", "{\"sha\": \"620fdff1d056d4704480b5be337e774d71b3c37c\", \"live\": true, \"id\": \"x53ad0d5c3ec31c68\"}", "{\"sha\": \"617c7bb5dce5ca94d0b4e29099a3793fb085b705\", \"live\": true, \"id\": \"x01c51f06728fac28\"}", "{\"sha\": \"adf7657d817b3cebab829b7b4b1a6e97e8cec1b8\", \"live\": true, \"id\": \"x26a71343438e5c29\"}", "{\"sha\": \"ff8d08cf4ca412c2b8bfef4cd0d48a527fae6323\", \"live\": true, \"id\": \"xe2458263afc15686\"}", "{\"sha\": \"4714b48aa0e6e0ac781fde4ae3a1ed2362773cfd\", \"live\": true, \"id\": \"xfa3ee32d06c349d9\"}", "{\"sha\": \"2249d06d0fbfed29255d0d5c492b5389fdc95a2b\", \"live\": true, \"id\": \"xf53ee6ef7debd4d2\"}", "{\"sha\": \"b7df345a311131cbbc25225f96ac833c56d725d8\", \"live\": true, \"id\": \"x8cb0590dd6d235e4\"}"], "description": "Extreme value theorem and the closed interval method.", "basepoints": 10.0, "slug": "extreme-value-theorem", "kind": "Exercise", "name": "extreme-value-theorem", "seconds_per_fast_problem": 4.0, "prerequisites": ["extreme-values-from-graphs"], "exercise_id": "extreme-value-theorem"}, "slope-from-two-points": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/slope/slope-from-two-points/", "id": "slope-from-two-points", "display_name": "Slope from two solutions", "title": "Slope from two solutions", "all_assessment_items": ["{\"sha\": \"c204072429d6c12e0aa26dc559dc6f5302c000bc\", \"live\": true, \"id\": \"x54d3621fc0bbc48f\"}", "{\"sha\": \"7085b06874525f9d44853bc45e3261b964134e86\", \"live\": true, \"id\": \"x9f50bceff06938e6\"}", "{\"sha\": \"8f6f5318ff5a5b9e907c80f79ea1919558fb4447\", \"live\": true, \"id\": \"xa4ad37dce6fcc6ec\"}", "{\"sha\": \"86f04bdc6f0fa88f0be3d5a8ef07070181583755\", \"live\": true, \"id\": \"x34bbb83267f07d80\"}", "{\"sha\": \"4963fc0568d8b7e77f33ef08e42fa2101116dd31\", \"live\": true, \"id\": \"x85c1c8f93c0e2f04\"}", "{\"sha\": \"e761d429ed6941f8eb531deea351feb26729ad7b\", \"live\": true, \"id\": \"x84357876def428c9\"}", "{\"sha\": \"ca46c36e3f4dec10e86ee9af97fb3f6df4bebdd6\", \"live\": true, \"id\": \"xcdce17d9eb1d4df3\"}", "{\"sha\": \"4ad2ce442845a9de08d16b7c25941dd2eb3e870f\", \"live\": true, \"id\": \"xa8d37b500f80dfbd\"}", "{\"sha\": \"f542f4bac9df0f1d4c6b6b824ecd0f13c0b9fb54\", \"live\": true, \"id\": \"x3a9da39937e1897d\"}", "{\"sha\": \"7191150c9444ba963350d2969345171780599aca\", \"live\": true, \"id\": \"x980051db4f317c30\"}", "{\"sha\": \"6c65c2ecb27eef8d4aa992b2c9948e24a5d0eddf\", \"live\": true, \"id\": \"x7109382652884437\"}", "{\"sha\": \"dcb5d00c430aab19b3e09cbd6da0d22bed4b03bd\", \"live\": true, \"id\": \"xd763591ecb69a4b1\"}", "{\"sha\": \"e7c3d4ce6ea9b189810b20c136f009d30c4ff96f\", \"live\": true, \"id\": \"xb75c4c6b5a567994\"}", "{\"sha\": \"a113aeae723dfda08b2ed57564a64e5ab4703e34\", \"live\": true, \"id\": \"x7881ec8bcb7df6da\"}", "{\"sha\": \"c0e0080cb78582bc33f95b1b96675405c72a0f70\", \"live\": true, \"id\": \"x2e1a3e4579d9237c\"}", "{\"sha\": \"d1442bda772665733b997aa91293d2159ede1755\", \"live\": true, \"id\": \"xf64b5fc31dbae9ae\"}", "{\"sha\": \"09ccb104edda69e2e4e809d792c1cbdf4bd45dd1\", \"live\": true, \"id\": \"xa69c4949443dabdd\"}", "{\"sha\": \"ecf5c2f15703fcea1a16adbfdd6c43c23cb0fe17\", \"live\": true, \"id\": \"x352528b41f826bec\"}", "{\"sha\": \"399b33d281214deef52e01d11a0f137dad4e952a\", \"live\": true, \"id\": \"x5f5e3c162799acb8\"}", "{\"sha\": \"1871db7fb1b057f68a658287268b104ee26ee566\", \"live\": true, \"id\": \"x219c87cb77f27eba\"}"], "description": "Find the slope of a line that contains two given points", "basepoints": 10.0, "slug": "slope-from-two-points", "kind": "Exercise", "name": "slope-from-two-points", "seconds_per_fast_problem": 4.0, "prerequisites": ["slope-from-a-graph"], "exercise_id": "slope-from-two-points"}, "cross-sections-of-3d-shapes": {"uses_assessment_items": true, "path": "khan/math/geometry/basic-geometry/cross-sections/cross-sections-of-3d-shapes/", "id": "cross-sections-of-3d-shapes", "display_name": "Cross sections of 3D objects", "title": "Cross sections of 3D objects", "all_assessment_items": ["{\"sha\": \"2403a0766b01d67493749dd2b9cb6de5b8fdd07e\", \"live\": true, \"id\": \"xad3ad5681433543f\"}", "{\"sha\": \"6e83cc770911d208ab3fd4e0af3248132b16285b\", \"live\": true, \"id\": \"xcc6cd0d79ae2d4c7\"}", "{\"sha\": \"b93b8b5017f577535e483e254d346a2ac33f53db\", \"live\": true, \"id\": \"xa84cc40c1ebdbf41\"}", "{\"sha\": \"8cd5a95cd07036e020ea46edcd09ffe73b861160\", \"live\": true, \"id\": \"x32c8b50dc471f1cd\"}", "{\"sha\": \"c649ff945f3100150174c85f526c54b712beb3bf\", \"live\": true, \"id\": \"x2c63e19c273aeda1\"}", "{\"sha\": \"37703041dba920d60bd289eb7745b1be9e41c607\", \"live\": true, \"id\": \"xd3247a038f30ff90\"}", "{\"sha\": \"6329c97f60fb2b24e7960d936851b90d431642f3\", \"live\": true, \"id\": \"xda6ee32bcbbb96d9\"}", "{\"sha\": \"77db841f6c25fb16613213bdb7971924fa8f7f84\", \"live\": true, \"id\": \"x8bf158261f1e4b11\"}", "{\"sha\": \"bf3b74e75c20c7dffa58e08621170e9dc94c59c3\", \"live\": true, \"id\": \"xa0378669718405d7\"}", "{\"sha\": \"6a6df93bc53f9dbb0c0c6a20276bc73c1917525e\", \"live\": true, \"id\": \"x08158cfac8ef7732\"}", "{\"sha\": \"daaeb86878b3aae6bb19c2d89b29c9a5d6c25b19\", \"live\": true, \"id\": \"x3a72ec5d1515f6d7\"}", "{\"sha\": \"67dc334410f8f2f087aa6ac450cc2a426eafac06\", \"live\": true, \"id\": \"x43a0ebc4488645c2\"}", "{\"sha\": \"777baa7f1794b8e1c59e69078eb32e4041cedcf8\", \"live\": true, \"id\": \"x34012b72704fdb45\"}", "{\"sha\": \"b47f71a95e864579b60305ae6bc90f727c7d2a6f\", \"live\": true, \"id\": \"x80f7673cd3845ed6\"}", "{\"sha\": \"dfa64002e0caccfcca809f92e9cb00994b78b4db\", \"live\": true, \"id\": \"x7a5f799e2a2ba14b\"}", "{\"sha\": \"3ad00d178aff3ecf317fed1f8ba8ee20522ccb8b\", \"live\": true, \"id\": \"x942840c81244aa02\"}", "{\"sha\": \"6eed9f40c3e269e56e55032b954feea263d7af73\", \"live\": true, \"id\": \"x46dabaa09255a6cd\"}", "{\"sha\": \"5400761b2c1ad30e20396d54ce1b0f27d0d9fece\", \"live\": true, \"id\": \"x73c2f50bd29d144b\"}", "{\"sha\": \"88808787fad564686ad030b090be8da4ff2f2518\", \"live\": true, \"id\": \"xd1884a95da696742\"}"], "description": "", "basepoints": 10.0, "slug": "cross-sections-of-3d-shapes", "kind": "Exercise", "name": "cross-sections-of-3d-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": ["slicing-3d-figures", "points_lines_and_planes"], "exercise_id": "cross-sections-of-3d-shapes"}, "masaccio-s-holy-trinity-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/masaccio-s-holy-trinity-quiz/", "id": "masaccio-s-holy-trinity-quiz", "display_name": "Masaccio, Holy Trinity (quiz)", "title": "Masaccio, Holy Trinity (quiz)", "all_assessment_items": ["{\"sha\": \"1cdc8995408fb82a6c9927cc37be757599020b6a\", \"live\": true, \"id\": \"x26a9c4dec8ef7479\"}", "{\"sha\": \"28c9fc0141280c11e6c620fb5136a5338723794c\", \"live\": true, \"id\": \"x538fba4be15e9cbf\"}", "{\"sha\": \"cee0e81955e31f53dcb6aae6697dd50a4d8d9084\", \"live\": true, \"id\": \"x54ead005a3ffb703\"}", "{\"sha\": \"dda29ca0be003f74e413a424ad5588a740e351f0\", \"live\": true, \"id\": \"xcb75dcd07a4f6e0d\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "masaccio-s-holy-trinity-quiz", "kind": "Exercise", "name": "masaccio-s-holy-trinity-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "masaccio-s-holy-trinity-quiz"}, "the-effect-of-contrast-agents-on-mri-signals": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-effect-of-contrast-agents-on-mri-signals/", "id": "the-effect-of-contrast-agents-on-mri-signals", "display_name": "The effect of contrast agents on MRI signals", "title": "The effect of contrast agents on MRI signals", "all_assessment_items": ["{\"sha\": \"02fdc44048235763784a4887c5cd21fa23240eb0\", \"live\": true, \"id\": \"x8767b68123baeaf1\", \"perseus_api_major_version\": null}", "{\"sha\": \"786c7a3aa91049a744dad9e8710e4363032a5449\", \"live\": true, \"id\": \"xfa6cbc2683f6a236\", \"perseus_api_major_version\": null}", "{\"sha\": \"9b549a8c78f6dc07757795556b620f97a0a0f2a5\", \"live\": true, \"id\": \"x4d399613e8bd56b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"a8285237d933a25476f7c595d8f4d3ca81bc7046\", \"live\": true, \"id\": \"x2b68d79badb813c3\", \"perseus_api_major_version\": null}", "{\"sha\": \"916d8b9585efb82a6f31d7736351afdb43825f41\", \"live\": true, \"id\": \"x658afeb2eba8d77e\", \"perseus_api_major_version\": 3}"], "description": "Questions related to magnetism.", "basepoints": 10.0, "slug": "the-effect-of-contrast-agents-on-mri-signals", "kind": "Exercise", "name": "the-effect-of-contrast-agents-on-mri-signals", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-effect-of-contrast-agents-on-mri-signals"}, "systems_of_equations_with_elimination_0.5": {"uses_assessment_items": true, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/systems_of_equations_with_elimination_05/", "id": "systems_of_equations_with_elimination_0.5", "display_name": "Solving systems of linear equations with elimination 1 ", "title": "Solving systems of linear equations with elimination 1", "all_assessment_items": ["{\"sha\": \"9821919f28a0c29cc2ed25879cd7568e310b1bbc\", \"live\": true, \"id\": \"x7c60a85c9c4ebb23\"}", "{\"sha\": \"e697fd1321702b2cbea5cf8b70273746afc77897\", \"live\": true, \"id\": \"x7b93c648fd75a576\"}", "{\"sha\": \"851878d7b6d63f75e1af4cfb73654149f14db62a\", \"live\": true, \"id\": \"x2ffcdcff7f8c2a7a\"}", "{\"sha\": \"66775cc4725a4f9afefc6779e23b6fd0830104e3\", \"live\": true, \"id\": \"x11389575b4dbf303\"}", "{\"sha\": \"71045d27624d2ce991aa177a7a002d439379916b\", \"live\": true, \"id\": \"x0b8385dcfd7709be\"}", "{\"sha\": \"b7e9d9b174a77f2af1a8830b0bddea3dff68c3c4\", \"live\": true, \"id\": \"xe921856b7b053525\"}", "{\"sha\": \"6c7dd8ecd26a0db3fb0242775e29859d89fd06c3\", \"live\": true, \"id\": \"x61583c8ca346a8b5\"}", "{\"sha\": \"6c314ca3f206f0c914d3ad77c0a0e420d86f1eef\", \"live\": true, \"id\": \"xe64a7ae8ed23421d\"}", "{\"sha\": \"bdbd0dc4b3ff4a6539845b2c65d4cf86eed0d5ac\", \"live\": true, \"id\": \"x0f1e484975403677\"}", "{\"sha\": \"927837f6b7ad856124702b079790658a166209af\", \"live\": true, \"id\": \"x5db63c44030c281b\"}", "{\"sha\": \"7103947e014a2afe9a0315beb201946cc21b136f\", \"live\": true, \"id\": \"xbd3351f3d21d64d1\"}", "{\"sha\": \"1ebeac4726501bc386a0b883795b0727f02f017c\", \"live\": true, \"id\": \"xde9201c614077589\"}", "{\"sha\": \"e6dc3292f619febda126d5dfeabcd5738f542999\", \"live\": true, \"id\": \"x67f7c5244fc628b8\"}", "{\"sha\": \"e2e82ca8120f7c57bfeb41551ac817afecf6006d\", \"live\": true, \"id\": \"x2fe9b19341aa8012\"}", "{\"sha\": \"fed6062f9beaf649e381a112407294a76690ed0c\", \"live\": true, \"id\": \"x9a6379245ede471e\"}", "{\"sha\": \"a5ba97b31ce2df6c69b816d671a9e4974093ad27\", \"live\": true, \"id\": \"xdb799683c507b19d\"}", "{\"sha\": \"27669b1c2a202b9934b244abf33dd167246e7588\", \"live\": true, \"id\": \"xf9c644b81294ba37\"}", "{\"sha\": \"6d18957bd82735e61d61115b888758f0d0ef03e6\", \"live\": true, \"id\": \"x5a41dd5c3be25c55\"}", "{\"sha\": \"521e60709cea6fc197dd41b141df7ac2424344f2\", \"live\": true, \"id\": \"x155e89cd3ea0a484\"}", "{\"sha\": \"9d01736d51cc9fe4162198da0d5498abc7b637b8\", \"live\": true, \"id\": \"x69f72bcea77f761f\"}"], "description": "Solve systems of equation with one-step elimination (e.g., x-values or y-values cancel each other out).", "basepoints": 28.0, "slug": "systems_of_equations_with_elimination_05", "kind": "Exercise", "name": "systems_of_equations_with_elimination_0.5", "seconds_per_fast_problem": 49.0, "prerequisites": ["graphing_systems_of_equations"], "exercise_id": "systems_of_equations_with_elimination_0.5"}, "understanding-addition-and-subtraction-on-the-number-line": {"uses_assessment_items": true, "id": "understanding-addition-and-subtraction-on-the-number-line", "display_name": "Integer addition and subtraction: number line interpretation", "title": "Integer addition and subtraction: number line interpretation", "all_assessment_items": ["{\"sha\": \"10982da4c7abfd9d2a97d87d1a06435c08b4a836\", \"live\": true, \"id\": \"xe88afd2e5e99c2eb\"}", "{\"sha\": \"862c9da1fc33342d0e4f4f8b5b90c8dff9197520\", \"live\": true, \"id\": \"xd1c7929d24a2f00f\"}", "{\"sha\": \"05de94f7ee2606ad4100cda201b422174266ebdd\", \"live\": true, \"id\": \"x503e4bb8de69fa12\"}", "{\"sha\": \"826730e68aa4fbf3922d4636c62c89ea7e076956\", \"live\": true, \"id\": \"x0e6bd1df203c7886\"}", "{\"sha\": \"b59f8a29bd00125c81df3dfa41e038d53b4321c7\", \"live\": true, \"id\": \"xd96eb217b7c9a450\"}", "{\"sha\": \"cf7ae0b53262f4d1a56b8cd7a24a8ed76186be65\", \"live\": true, \"id\": \"xbd6be7269a700394\"}", "{\"sha\": \"d5aaad1262aada8495a9568c2901e9f59e8841b6\", \"live\": true, \"id\": \"x804ff13c5e0a3b0d\"}", "{\"sha\": \"f10ec5da759439aaa7601927dc5d2de1c0c4d042\", \"live\": true, \"id\": \"x85e43baa483fc14d\"}", "{\"sha\": \"6c31f63107fe30fec50673c66b417b5068f4b3b2\", \"live\": true, \"id\": \"x2436d2f7d2b2dc6d\"}", "{\"sha\": \"cb9739a48e255f05312c1d588ac4e73c56ed1f40\", \"live\": true, \"id\": \"xbebd2f72cd59eb7f\"}", "{\"sha\": \"3a008e22c8648f5c9b195145ecf5efed976530ef\", \"live\": true, \"id\": \"x3a70b38ca758b5a2\"}", "{\"sha\": \"06221b524d8220fa29a1062236722e174edcbae8\", \"live\": true, \"id\": \"xf97688185047bb0e\"}", "{\"sha\": \"f6d84eb27499def1d87c5855fba3397d1d48ea74\", \"live\": true, \"id\": \"x67ac6202a9d4f087\"}", "{\"sha\": \"1033dbc9a088e9bf19b11821a61507621b78dcfb\", \"live\": true, \"id\": \"x67e44f95cf30cb93\"}", "{\"sha\": \"9f312e4bf21b27d739c70478a3fb47eba5fe5ec0\", \"live\": true, \"id\": \"xb406d46142c425d9\"}", "{\"sha\": \"20ffc948c983e9e005866591fc4cb7bffeff223b\", \"live\": true, \"id\": \"x45364903b6bb25c3\"}", "{\"sha\": \"1793f0764df041fb5d76b2cf346cc451f87de679\", \"live\": true, \"id\": \"xd973b123bab53a84\"}", "{\"sha\": \"455bceee8bcbfdc4bc1f2cdaa3e36fefb31d1352\", \"live\": true, \"id\": \"x3f9d8f1bc1edf16f\"}", "{\"sha\": \"63c0974522f7c8718cdfec3d1ff5acf8bb7e8ce9\", \"live\": true, \"id\": \"x550561183fbc7144\"}", "{\"sha\": \"4eee58aec4f1fe170a2e6393ad2233852075e292\", \"live\": true, \"id\": \"x7cc0baac5d140007\"}", "{\"sha\": \"9ebce65af298732215247ee5c5da2c06e506bd6b\", \"live\": true, \"id\": \"x04f5bb2056f5a942\"}", "{\"sha\": \"cd1e57160bd2fdbb3f2b9feebec9386afa4b47d9\", \"live\": true, \"id\": \"x428f83cf6fa27a30\"}", "{\"sha\": \"c48ceadc030e3d3e83223f140107f712bd54bf01\", \"live\": true, \"id\": \"xc5b1a83429ca90fc\"}", "{\"sha\": \"3ab6cd92e77784d950f6cb60f03875301762cd0c\", \"live\": true, \"id\": \"x873f699dbd384dfc\"}", "{\"sha\": \"aee4c14c884a366a2db49333b73af7eecc95c37e\", \"live\": true, \"id\": \"x6c115eefe7cc2360\"}", "{\"sha\": \"20b9a6fcb46b8b00646abe93ed14999fe7d606c3\", \"live\": true, \"id\": \"xaf3c2b6396663afc\"}", "{\"sha\": \"8d50afa850d37699e68fa9ded90b097951f198e1\", \"live\": true, \"id\": \"xc68972fee29782e4\"}", "{\"sha\": \"3fc445fd2fd84f7f7319c3833233ebb73925dfab\", \"live\": true, \"id\": \"x22654291a8e6cdba\"}", "{\"sha\": \"66b1c6e17fb60c895f45da660d5963fa03b85375\", \"live\": true, \"id\": \"x68f5deef1c423e40\"}", "{\"sha\": \"86b6f16de2bd10888840542d49002d096ad2bb97\", \"live\": true, \"id\": \"x458e3358458ed022\"}", "{\"sha\": \"f5329339102bfc3d70f8a9201f14805d95e81f1b\", \"live\": true, \"id\": \"x8817b46c17165809\"}"], "description": "Practice working through addition and subtraction problems using the number line.", "basepoints": 10.0, "path": "understanding-addition-and-subtraction-on-the-number-line/", "slug": "understanding-addition-and-subtraction-on-the-number-line", "kind": "Exercise", "name": "understanding-addition-and-subtraction-on-the-number-line", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding-negative-numbers-on-the-number-line"], "exercise_id": "understanding-addition-and-subtraction-on-the-number-line"}, "grave-stele-of-hegeso": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/grave-stele-of-hegeso/", "id": "grave-stele-of-hegeso", "display_name": "Grave Stele of Hegeso (quiz)", "title": "Grave Stele of Hegeso (quiz)", "all_assessment_items": ["{\"sha\": \"83fdf9258b4c4a7536923f3168ace5d284518293\", \"live\": true, \"id\": \"x34c730ca324e74e6\"}", "{\"sha\": \"3570571942a2961a8f7de1bc753fd5ee7a6e9cde\", \"live\": true, \"id\": \"x48b2f27e51cfee99\"}", "{\"sha\": \"6283b55a868d5b5bf6f0fb10d099f6a7328a3330\", \"live\": true, \"id\": \"xed4dcae491152f33\"}", "{\"sha\": \"1794afff75bcf5621cc010f7721bcb99fa1b7279\", \"live\": true, \"id\": \"x816e0c9deb2a5f36\"}", "{\"sha\": \"c4dd02533c8e3a15c01171a32d8d553029626ab2\", \"live\": true, \"id\": \"x87f43edf600a5af6\"}", "{\"sha\": \"07ea9a12320e428a9dacd2e3a617cb0934d98381\", \"live\": true, \"id\": \"x87c21a8bfabd6aca\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "grave-stele-of-hegeso", "kind": "Exercise", "name": "grave-stele-of-hegeso", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "grave-stele-of-hegeso"}, "holoprosencephaly--a-medical-condition-with-devastating-consequences": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/holoprosencephaly-a-medical-condition-with-devastating-consequences/", "id": "holoprosencephaly--a-medical-condition-with-devastating-consequences", "display_name": "Holoprosencephaly: a medical condition with devastating consequences", "title": "Holoprosencephaly: a medical condition with devastating consequences", "all_assessment_items": ["{\"sha\": \"fdc527bdcbeab4b9b54a5497ff1cc8927d0c397c\", \"live\": true, \"id\": \"xd99773e76ba4e3de\"}", "{\"sha\": \"ca5ba4d4b108aa0008bf5f7e7104164b2cdb134f\", \"live\": true, \"id\": \"x23127c8ade22ecf9\"}", "{\"sha\": \"e5ee0470332765a8d95a87478b215c727f8d7df1\", \"live\": true, \"id\": \"xe8a872954fdef273\"}", "{\"sha\": \"e6fd12e54d062c7b7336582024b3798a731db1bf\", \"live\": true, \"id\": \"xf6c9b94ee65aff28\"}", "{\"sha\": \"982ae703c50d6c316a474cd1b4d718a0f53defb9\", \"live\": true, \"id\": \"x57da1cb1f51b4a95\"}"], "description": "Holoprosencephaly: a medical condition with devastating consequences", "basepoints": 10.0, "slug": "holoprosencephaly-a-medical-condition-with-devastating-consequences", "kind": "Exercise", "name": "holoprosencephaly--a-medical-condition-with-devastating-consequences", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "holoprosencephaly--a-medical-condition-with-devastating-consequences"}, "vectors-and-scalers---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/vectors-and-scalers-passage-1/", "id": "vectors-and-scalers---passage-1", "display_name": "Swine flu in Finland", "title": "Swine flu in Finland", "all_assessment_items": ["{\"sha\": \"19a57f2605ff72518f378da4ef997fbe24ddb55c\", \"live\": true, \"id\": \"xfcedfa62a040f936\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"86df16510fe06b169749ddb6b1ead9c4174c2835\", \"live\": true, \"id\": \"x52d7c315303f8130\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c392c32e4947f4f871e4255c3621a7649043d265\", \"live\": true, \"id\": \"x42865670bf76e0bf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"81356d0353acf070482bb69aeaaf60c0a55bec22\", \"live\": true, \"id\": \"x0f82b0ad87e00db4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cc21e5658cdcd60f06c9145886b9a9ee288ff978\", \"live\": true, \"id\": \"x208128d4c4933560\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "This passage will test your knowledge on vectors and scalars", "basepoints": 10.0, "slug": "vectors-and-scalers-passage-1", "kind": "Exercise", "name": "vectors-and-scalers---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "vectors-and-scalers---passage-1"}, "sutton-hoo-ship-burial-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/early-medieval/sutton-hoo-ship-burial-quiz/", "id": "sutton-hoo-ship-burial-quiz", "display_name": "Sutton Hoo ship burial (quiz)", "title": "Sutton Hoo ship burial (quiz)", "all_assessment_items": ["{\"sha\": \"ee3cca4c453b1d958fdacf53ca4b5cc1e3473bdc\", \"live\": true, \"id\": \"x8c96774384522a35\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bb54fab64f8a2c5970208a042a90680b113b6889\", \"live\": true, \"id\": \"x937b5a90444a836d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea90f346920a2a85872167ae5e112d18d46ecca1\", \"live\": true, \"id\": \"x3b26827cf751e4fa\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5f69a129534cab653b1de2cd27ab56f266d338dc\", \"live\": true, \"id\": \"x36c4619f2e4bb110\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cbf94354654259c3904c25c151e3eaa15d1bb77e\", \"live\": true, \"id\": \"xeffcdd8d27d4af3c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8f15a77519f306de105397843978b324001eb34d\", \"live\": true, \"id\": \"x900d970c4f234e2b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "sutton-hoo-ship-burial-quiz", "kind": "Exercise", "name": "sutton-hoo-ship-burial-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sutton-hoo-ship-burial-quiz"}, "vectors-and-scalers---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/vectors-and-scalers-passage-2/", "id": "vectors-and-scalers---passage-2", "display_name": "Ancient Greek catapults and medical packs", "title": "Ancient Greek catapults and medical packs", "all_assessment_items": ["{\"sha\": \"3f999d3ed806425554321b7e1474490e93f41f69\", \"live\": true, \"id\": \"xc5d478576ab7c782\", \"perseus_api_major_version\": null}", "{\"sha\": \"b71018cdac7077f7d3af754cb163e77948b06193\", \"live\": true, \"id\": \"x49c677c0fea75ce8\", \"perseus_api_major_version\": null}", "{\"sha\": \"07c2b9c5894f87a9d903ac979aca054d6db11045\", \"live\": true, \"id\": \"x20c7541888e3d6eb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e015515a641f47e7d89a507fcdeb60d2f83012a4\", \"live\": true, \"id\": \"x29af1a97b7a43548\", \"perseus_api_major_version\": null}", "{\"sha\": \"a5dc8a04a69cb014caa82e1e417ee0a1009f8908\", \"live\": true, \"id\": \"xff7a8cd9abeaca53\", \"perseus_api_major_version\": null}"], "description": "This passage will test your knowledge on vectors and scalars", "basepoints": 10.0, "slug": "vectors-and-scalers-passage-2", "kind": "Exercise", "name": "vectors-and-scalers---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "vectors-and-scalers---passage-2"}, "converting_percents_to_decimals": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-ratios-rates-percentages/converting_percents_to_decimals/", "id": "converting_percents_to_decimals", "display_name": "Converting percents to decimals", "title": "Converting percents to decimals", "description": "", "basepoints": 13.0, "slug": "converting_percents_to_decimals", "kind": "Exercise", "name": "converting_percents_to_decimals", "seconds_per_fast_problem": 6.0, "prerequisites": ["understanding_moving_the_decimal", "converting-between-fractions-and-percents"], "exercise_id": "converting_percents_to_decimals"}, "perimeter_of_squares_and_rectangles": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/measurement/perimeter/perimeter_of_squares_and_rectangles/", "id": "perimeter_of_squares_and_rectangles", "display_name": "Finding perimeter", "title": "Finding perimeter", "description": "Find perimeter or a side length of a figure without a visual shown.", "basepoints": 14.0, "slug": "perimeter_of_squares_and_rectangles", "kind": "Exercise", "name": "perimeter_of_squares_and_rectangles", "seconds_per_fast_problem": 7.0, "prerequisites": ["perimeter_1"], "exercise_id": "perimeter_of_squares_and_rectangles"}, "multiplying_decimals_0.5": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/multiplying-decimals-pre-alg/multiplying_decimals_05/", "id": "multiplying_decimals_0.5", "display_name": "Multiplying decimals 1", "title": "Multiplying decimals 1", "description": "Multiply a whole number times a decimal written to the tenths or hundredths place. \u00a0", "basepoints": 10.0, "slug": "multiplying_decimals_05", "kind": "Exercise", "name": "multiplying_decimals_0.5", "seconds_per_fast_problem": 4.0, "prerequisites": ["regrouping-decimals"], "exercise_id": "multiplying_decimals_0.5"}, "frequencies-of-bivariate-data": {"uses_assessment_items": true, "path": "khan/math/probability/statistical-studies/categorical-data/frequencies-of-bivariate-data/", "id": "frequencies-of-bivariate-data", "display_name": "Interpreting two-way tables", "title": "Interpreting two-way tables", "all_assessment_items": ["{\"sha\": \"00b3230c4a0b2bd7c2bf2e12a129cd44b611bc20\", \"live\": true, \"id\": \"xfe6276adfe07963b\", \"perseus_api_major_version\": null}", "{\"sha\": \"47a94569679612da7b75ce7192cfc928f0a1cb1e\", \"live\": true, \"id\": \"xe3b4fba6ad248458\", \"perseus_api_major_version\": null}", "{\"sha\": \"976dce6903e38e33d71b5e7f6d691784251d08d1\", \"live\": true, \"id\": \"x78bc21995b148da3\", \"perseus_api_major_version\": null}", "{\"sha\": \"24e5d2538ec16863b4d3c93296c1574e04c6ad65\", \"live\": true, \"id\": \"x7a5aa66c8ce441fb\", \"perseus_api_major_version\": null}", "{\"sha\": \"fae56f412a2c889a0cf904010329b1a945c5d32f\", \"live\": true, \"id\": \"x7df04d5a5d078611\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e4b5b8d9911e54215e266ea0873811148bcdfb62\", \"live\": true, \"id\": \"x554e9a260baadc92\", \"perseus_api_major_version\": null}", "{\"sha\": \"e90891d7621ff9ecb814939d28c893c4b9ef187a\", \"live\": true, \"id\": \"x7e5aafd79aaf6667\", \"perseus_api_major_version\": null}", "{\"sha\": \"2aaa469386b2367d6608205c2a3c521d03ffca28\", \"live\": true, \"id\": \"xad78c5d886c26f8b\", \"perseus_api_major_version\": null}", "{\"sha\": \"60bf1c01fa0ed4b35de81e1c2905ffb88f589cf7\", \"live\": true, \"id\": \"x3ddb35c5d5999710\", \"perseus_api_major_version\": null}", "{\"sha\": \"be74c36b7cbaff30d49f414385adc8402907d7fe\", \"live\": true, \"id\": \"xab2f58d7b5aaf037\", \"perseus_api_major_version\": null}", "{\"sha\": \"d8fdc90d1fd868be18f580b27b89a49edf5c953c\", \"live\": true, \"id\": \"x65e6122c44df5b19\", \"perseus_api_major_version\": null}", "{\"sha\": \"b8cc6d84e8031162f09c70eab54eac84217db165\", \"live\": true, \"id\": \"x90011985f7979432\", \"perseus_api_major_version\": null}", "{\"sha\": \"7326075ea89f333d96bfefcc75e8606c838de16e\", \"live\": true, \"id\": \"x469206115d891a16\", \"perseus_api_major_version\": null}", "{\"sha\": \"811c3549063045505b6d57384da4bc59d0b423d1\", \"live\": true, \"id\": \"x2672b62999191303\", \"perseus_api_major_version\": null}", "{\"sha\": \"09a976ab9c0f6eac8c652c10163c8b954d074243\", \"live\": true, \"id\": \"xc417764433770867\", \"perseus_api_major_version\": null}", "{\"sha\": \"a200730f8836eae11a0e2b4cd6620c2e018e3dcd\", \"live\": true, \"id\": \"x5c05cad17e9fa012\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a377493033dd1c6a05a54caab36b81a4f348a99\", \"live\": true, \"id\": \"x66a3da1a18b37d7f\", \"perseus_api_major_version\": null}", "{\"sha\": \"b2a46147511a815e347bd27a5873158eb4157862\", \"live\": true, \"id\": \"xc0b93467297c7cc0\", \"perseus_api_major_version\": null}", "{\"sha\": \"e8a9cdfeeb19462b5dc13e2d78fa9e23c6c12eaf\", \"live\": true, \"id\": \"x5c14a3263f834599\", \"perseus_api_major_version\": null}", "{\"sha\": \"1bd1ed51738e7171ec2ed915e6d11c3ebc885d79\", \"live\": true, \"id\": \"x9c47da7abbaf9ef5\", \"perseus_api_major_version\": null}"], "description": "Do you understand how two-way tables really work? Here's your chance to practice. Go get 'em! You got this!", "basepoints": 27.0, "slug": "frequencies-of-bivariate-data", "kind": "Exercise", "name": "frequencies-of-bivariate-data", "seconds_per_fast_problem": 46.0, "prerequisites": ["valid-claims", "two-way-relative-frequency-tables"], "exercise_id": "frequencies-of-bivariate-data"}, "approximating-with-orders-of-magnitude": {"uses_assessment_items": true, "id": "approximating-with-orders-of-magnitude", "display_name": "Approximating with powers of 10", "title": "Approximating with powers of 10", "all_assessment_items": ["{\"sha\": \"584295f9a67fc607f3d596a05c6adce380905014\", \"live\": true, \"id\": \"xf7c81b3d03c67d40\"}", "{\"sha\": \"5fa9d513f5cb7f2eafedb2081e63d5af9a4a3e9a\", \"live\": true, \"id\": \"x5db28489c14d46ce\"}", "{\"sha\": \"a87ae00ada12f54d354f9e5918d5a8532ed2fc96\", \"live\": true, \"id\": \"x47642d4a54bb5b13\"}", "{\"sha\": \"b76c17782a3e1114733c9482587f5aa24ff73f25\", \"live\": true, \"id\": \"x55cea56f1a02a8d9\"}", "{\"sha\": \"acd930c59425fd37072d32fabf991aeaa7210b20\", \"live\": true, \"id\": \"xd88dd788472aa0de\"}", "{\"sha\": \"4753edd9e130ee051a256287560138948389404e\", \"live\": true, \"id\": \"x7833708504288259\"}", "{\"sha\": \"4ade672e420c2524a8270b33ee744d5f2deb3c84\", \"live\": true, \"id\": \"x6f6a7ff2eda522ef\"}", "{\"sha\": \"5d91c4bdf9156b43417d5295be5007aedf24c52a\", \"live\": true, \"id\": \"x139290b4e37a2c3b\"}", "{\"sha\": \"1c3680dd3c443f37ff2320d0c0ae4fff60abcf9d\", \"live\": true, \"id\": \"x334e858da9b5d12a\"}", "{\"sha\": \"608782fd1b7e43b6bb677f0f9d45634524cb4908\", \"live\": true, \"id\": \"x1f9ada4faf6001a0\"}", "{\"sha\": \"d438f9549652d472ec644c8668eebbf683bb72fd\", \"live\": true, \"id\": \"x65388df6c99cf1b5\"}", "{\"sha\": \"ce1a07318c6c6c1828e51d6f87d7b992840631d4\", \"live\": true, \"id\": \"x0b5082b18e672971\"}", "{\"sha\": \"87d773be047c737a18292377eba9b2ba54e4bfed\", \"live\": true, \"id\": \"x309a60fbb2f27624\"}", "{\"sha\": \"f12a13b3ce045c115210631a2c8e596860db8265\", \"live\": true, \"id\": \"x65bf86f8c0a23170\"}", "{\"sha\": \"09b4cc2c1d21e5c566eea64897a71b85efd74b08\", \"live\": true, \"id\": \"xccf90d67e0846e50\"}", "{\"sha\": \"33b65d4e6d1c33b16e26d64ddb0aca1afa7b3a10\", \"live\": true, \"id\": \"x1563c0b9f6a77e03\"}", "{\"sha\": \"07dae5a931c0a8a22d5cc44ba70fa4eee96ad2bb\", \"live\": true, \"id\": \"xdf886937d1f3843a\"}", "{\"sha\": \"daee92698c03cc891ca31d80591c876c5b3b157b\", \"live\": true, \"id\": \"xc536d232cbd1e7c9\"}", "{\"sha\": \"ee7311ffde1328d40e551171015b6ebe93ec79b7\", \"live\": true, \"id\": \"x2d1bff608e0ecb91\"}", "{\"sha\": \"3cce802ae742a446c47fe2cad5d378a69a616be9\", \"live\": true, \"id\": \"xc9a9d807d01bf402\"}"], "description": "Practice comparing two real-world quantities by approximating them with powers of 10.", "basepoints": 10.0, "path": "approximating-with-orders-of-magnitude/", "slug": "approximating-with-orders-of-magnitude", "kind": "Exercise", "name": "approximating-with-orders-of-magnitude", "seconds_per_fast_problem": 4.0, "prerequisites": ["orders-of-magnitude"], "exercise_id": "approximating-with-orders-of-magnitude"}, "probability-models": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-probability/probability-models/", "id": "probability-models", "display_name": "Probability models", "title": "Probability models", "all_assessment_items": ["{\"sha\": \"93cc03839dbe0c6db9979cc23958db0965a6f693\", \"live\": true, \"id\": \"xbe71fcd44817532d\"}", "{\"sha\": \"2baa0d84f808f70fdf2d7daf92e5de12f41f93c6\", \"live\": true, \"id\": \"xdeafc3159fcc7768\"}", "{\"sha\": \"d818124f3c3ee9d39460588093df508059819314\", \"live\": true, \"id\": \"x06b00ee344355a7f\"}", "{\"sha\": \"2130e044ab9f1766ceaab52e3fad67cbc864b7f4\", \"live\": true, \"id\": \"x5dba9103913bb585\"}", "{\"sha\": \"b488faae66919f062589f2ceedc0c166bc75b7c8\", \"live\": true, \"id\": \"xa49684c7c1f22fbe\"}", "{\"sha\": \"91beb9d2b12a64df29561d4a3261771118c649d9\", \"live\": true, \"id\": \"x129230a1201882ac\"}", "{\"sha\": \"ba8f2f884742f032d313ec0f89b07eb0eff469a4\", \"live\": true, \"id\": \"xe6634d7197f744a3\"}", "{\"sha\": \"94dbbfa3071b16c9c2d67edd5c73e0cc86800bc7\", \"live\": true, \"id\": \"x4deed89a4909d123\"}", "{\"sha\": \"b4cc111820856bd0246e0a48661fb53442047f0d\", \"live\": true, \"id\": \"x32811d73e7d36b32\"}", "{\"sha\": \"84706db5e9d3213d070666ad0cc216adc996b98c\", \"live\": true, \"id\": \"x46cd7a705c055a5e\"}", "{\"sha\": \"979df7823e0937bac8626b3b1b53ea86808c568b\", \"live\": true, \"id\": \"xd22c34661896a590\"}", "{\"sha\": \"431e52b510f4306b41cd23f0b6f6813a297811b9\", \"live\": true, \"id\": \"x134de7c5af61c298\"}", "{\"sha\": \"3372676c28d5ab3006a441057675aa354e6e5475\", \"live\": true, \"id\": \"x9ba58e156cc386d0\"}", "{\"sha\": \"617658e5ba8cee4edcb223fc31992028da6ac4d8\", \"live\": true, \"id\": \"xaf5e77070db31643\"}", "{\"sha\": \"c45777cac8ab57ed06d0a971ec9041321c3602e3\", \"live\": true, \"id\": \"x8aac52fa96aff2e6\"}", "{\"sha\": \"52cf04d98e4667eaac8e0ac69edf222704f4e927\", \"live\": true, \"id\": \"x4ef63925116b7b1e\"}", "{\"sha\": \"8e960224edd5f07463c0d23fbd41b54ac0fa66c5\", \"live\": true, \"id\": \"x27a780c86c888507\"}", "{\"sha\": \"d240c0892cdc2452eb989af60c4e9362f0506588\", \"live\": true, \"id\": \"x410b8966d0d4ab4c\"}", "{\"sha\": \"7803b1e8a9e256337c3725189a99ef766336992a\", \"live\": true, \"id\": \"xe0f8130e30cb3e6d\"}", "{\"sha\": \"baa040c0f8f853b0ba37926a9ac8bbee0d99be32\", \"live\": true, \"id\": \"xab3e84f815109ce8\"}", "{\"sha\": \"a336ffa19300d2058129eb70c3ff1f80e50872e6\", \"live\": true, \"id\": \"x93899d7454400f20\"}"], "description": "Practice creating probability models and understand what makes a valid probability model.", "basepoints": 10.0, "slug": "probability-models", "kind": "Exercise", "name": "probability-models", "seconds_per_fast_problem": 4.0, "prerequisites": ["finding-probability"], "exercise_id": "probability-models"}, "nervous-system-disorders-ii--ms": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/nervous-system-disorders-ii-ms/", "id": "nervous-system-disorders-ii--ms", "display_name": "Nervous system disorders II: MS", "title": "Nervous system disorders II: MS", "all_assessment_items": ["{\"sha\": \"94382519e1bab6fc0baa47d4afbf94e86a093730\", \"live\": true, \"id\": \"x490ec56f229e41c5\"}", "{\"sha\": \"54c7fe08716852a26062970a40c6ed1b51bed387\", \"live\": true, \"id\": \"xfd618124758c601d\"}", "{\"sha\": \"7c77d5ec9af75828f83501ee0f187ded70cea54d\", \"live\": true, \"id\": \"x638204b4cb1d9cd4\"}", "{\"sha\": \"509e8a219cf412c60a4a5b2d264b89ea6fbc3ae4\", \"live\": true, \"id\": \"x73d9ef31bbda4d50\"}", "{\"sha\": \"b4418afbe91774cfaf418c10a5d96e401f51402c\", \"live\": true, \"id\": \"xae9e0fc4fcef4191\"}"], "description": "Questions related to the nervous system", "basepoints": 10.0, "slug": "nervous-system-disorders-ii-ms", "kind": "Exercise", "name": "nervous-system-disorders-ii--ms", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nervous-system-disorders-ii--ms"}, "modeling-with-exponential-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exponential-modeling/modeling-with-exponential-functions/", "id": "modeling-with-exponential-functions", "display_name": "Modeling with exponential functions", "title": "Modeling with exponential functions", "all_assessment_items": ["{\"sha\": \"2c357a3c473beab70d446fe0716d971ef9f9eab8\", \"live\": true, \"id\": \"xae219a573759da1d\", \"perseus_api_major_version\": null}", "{\"sha\": \"57fa097a404274f1146bbbd29d3a446c4b539a81\", \"live\": true, \"id\": \"x6d786bbe76903497\", \"perseus_api_major_version\": null}", "{\"sha\": \"1d3c8ea5773dca31791de5ceee14b6bded8ac470\", \"live\": true, \"id\": \"x413e2e1a7bb6c568\", \"perseus_api_major_version\": null}", "{\"sha\": \"314646b58ad9fd2c30775e5b480a2b893aae7abd\", \"live\": true, \"id\": \"xa616a8c79cdaf88f\", \"perseus_api_major_version\": null}", "{\"sha\": \"8cd002a6934b202162a941542f72c6fde18204a4\", \"live\": true, \"id\": \"xd099359c482c80a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"cfdb362244887ea3eeb4e80d28659ade6e74ca2e\", \"live\": true, \"id\": \"x5f1e0d8ec8500044\", \"perseus_api_major_version\": null}", "{\"sha\": \"c335eff05a16df9fc7b267dfdecc4bdd5054d107\", \"live\": true, \"id\": \"x6ff877731548a9ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"136265df416a3895da8d4e866ddb71f5be737b55\", \"live\": true, \"id\": \"x78d27f13412fc412\", \"perseus_api_major_version\": null}", "{\"sha\": \"5cc942cda9081f6c3e0e8e951305649ea32bedbd\", \"live\": true, \"id\": \"x6a3f5c818b0f93cd\", \"perseus_api_major_version\": null}", "{\"sha\": \"85a9ea66797db10ac7c80a85f8217979961d5f3e\", \"live\": true, \"id\": \"x464ad872d8722295\", \"perseus_api_major_version\": null}", "{\"sha\": \"378d0129430ad1eee2fb01301349b33cfb66d6af\", \"live\": true, \"id\": \"x6924ea1357233ba5\", \"perseus_api_major_version\": null}", "{\"sha\": \"bd6fc0b8a0d570c42151651c73cc275002e6d40d\", \"live\": true, \"id\": \"x1a8dd6abeffd76de\", \"perseus_api_major_version\": null}", "{\"sha\": \"f607d49723e8786563a3687b309dd547a2d9d60e\", \"live\": true, \"id\": \"x3f8e349ee11784ae\", \"perseus_api_major_version\": null}", "{\"sha\": \"f19cc982209a253fac5f5ae0c8e5adeb206885c6\", \"live\": true, \"id\": \"x7a7905a65f29cf28\", \"perseus_api_major_version\": 0}", "{\"sha\": \"74b5bbcd4ebfb3bc0c0d53c9c4d1b0de20257dcf\", \"live\": true, \"id\": \"xacb59452cbdc6fab\", \"perseus_api_major_version\": null}", "{\"sha\": \"2a3ccbc900324f22c5c252c3b3967c8f53b4c1c2\", \"live\": true, \"id\": \"xcafe48ce829ca721\", \"perseus_api_major_version\": null}", "{\"sha\": \"44ab49960f6170670684560dfe22afc692a6c9ae\", \"live\": true, \"id\": \"xe485227c0fe94f32\", \"perseus_api_major_version\": null}", "{\"sha\": \"c79d57f7956a98eb80aaf2c61eafecfbf6d4feea\", \"live\": true, \"id\": \"x074355e1e9a7d22d\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "modeling-with-exponential-functions", "kind": "Exercise", "name": "modeling-with-exponential-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["constructing-linear-and-exponential-functions", "rewriting-and-interpreting-exponential-functions"], "exercise_id": "modeling-with-exponential-functions"}, "volume_with_fractions": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-measurement/on-volume/volume_with_fractions/", "id": "volume_with_fractions", "display_name": "Volume with fractions", "title": "Volume with fractions", "description": "", "basepoints": 10.0, "slug": "volume_with_fractions", "kind": "Exercise", "name": "volume_with_fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["volume_1"], "exercise_id": "volume_with_fractions"}, "expectation-warmups": {"uses_assessment_items": true, "path": "khan/math/recreational-math/math-warmup/probabilty-warmup/expectation-warmups/", "id": "expectation-warmups", "display_name": "Expectation warmup", "title": "Expectation warmup", "all_assessment_items": ["{\"sha\": \"f3d3c38e501bf1fc9aebe0600dcefe07fbe09395\", \"live\": true, \"id\": \"x3afabda974f13a97\"}", "{\"sha\": \"cb451d2b78343ef8a9885d75e04dd4f9d6b88055\", \"live\": true, \"id\": \"x7ccadf7d88c4ead0\"}", "{\"sha\": \"6b327c295b6f11958f8c12407894049dc0fde8f8\", \"live\": true, \"id\": \"x77180c60cf504717\"}", "{\"sha\": \"c6e33459f52e48ac84c6907defbd086e2f21631d\", \"live\": true, \"id\": \"x6002144811585c98\"}", "{\"sha\": \"c57a1be14c71befc1276fcf6d30afc28529e2fef\", \"live\": true, \"id\": \"x8482eccede2e228f\"}"], "description": "Select the correct answer to prove your understanding\u00a0", "basepoints": 10.0, "slug": "expectation-warmups", "kind": "Exercise", "name": "expectation-warmups", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "expectation-warmups"}, "dividing_fractions_2": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/core-algebra-foundations-fractions/dividing_fractions_2/", "id": "dividing_fractions_2", "display_name": "Dividing positive and negative fractions", "title": "Dividing positive and negative fractions", "description": "Practice dividing fractions. Fractions in these problems may be positive or negative.", "basepoints": 17.0, "slug": "dividing_fractions_2", "kind": "Exercise", "name": "dividing_fractions_2", "seconds_per_fast_problem": 11.0, "prerequisites": ["multiplying_fractions"], "exercise_id": "dividing_fractions_2"}, "speed-and-velocity-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/speed-and-velocity/speed-and-velocity-questions/", "id": "speed-and-velocity-questions", "display_name": "Speed and velocity questions", "title": "Speed and velocity questions", "all_assessment_items": ["{\"sha\": \"77b73c3cc0e6be087ca7f6bfe1caccf5654eeddd\", \"live\": true, \"id\": \"x1fbae98d2c484cf0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a9e9acb9115d6d065cc13e7a99324d2fc9e26727\", \"live\": true, \"id\": \"xb4e13d49d83726df\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3c92d3e21aff090cb3dee432a2b4313c966dfaf9\", \"live\": true, \"id\": \"xc7099050cfeb5159\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"32b17f30ccef646506e2d58167cb182c89b30e37\", \"live\": true, \"id\": \"x8efa9fc7168ed4d7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c6a9b409c07e8bba652b00d79b7b8aae5c5be64\", \"live\": true, \"id\": \"x74496a395c8fb469\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7d405390df56e557fa2bf86f6c9b472790491eda\", \"live\": true, \"id\": \"x13a0afa8c384ba43\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b852a997a32d0b6d7841326058d66fd4a0aab82\", \"live\": true, \"id\": \"xf4d1d9268cd2238b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5703a1fd5429aa8f5c0bac14a95e2de747cb1d14\", \"live\": true, \"id\": \"xd577402d5b548748\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa27ea0f31a7fb2e36a7154f1f35cee59b450ac5\", \"live\": true, \"id\": \"x35f783aac6ea513d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6fae8ebfac99fcb34b1d8d19086e1f7c42726c46\", \"live\": true, \"id\": \"x10c4d5085c0ba1d2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Speed and velocity questions", "basepoints": 10.0, "slug": "speed-and-velocity-questions", "kind": "Exercise", "name": "speed-and-velocity-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "speed-and-velocity-questions"}, "quiz-dinosaur-extinction": {"uses_assessment_items": true, "id": "quiz-dinosaur-extinction", "display_name": "Quiz: Dinosaur Extinction", "title": "Quiz: Dinosaur Extinction", "all_assessment_items": ["{\"sha\": \"cd7b196d6917776abf6583a66baeac648235fdcf\", \"live\": true, \"id\": \"xd4617f8ae1464957\"}", "{\"sha\": \"d7e0a3345126ca48347b06b31991064b48a37618\", \"live\": true, \"id\": \"xf3202d94b0a40b26\"}", "{\"sha\": \"50882600a732afeefaf8bfd565dc306dc873d567\", \"live\": true, \"id\": \"xec8d48267ad8b90f\"}", "{\"sha\": \"7d6560e931b7ab843c9b91cdf2bb1061230a5207\", \"live\": true, \"id\": \"x7885c2bdaa47ed9a\"}", "{\"sha\": \"ef9f7edec40136ac31593aeba15fe29fc044be68\", \"live\": true, \"id\": \"x6c374425bfdfc9cd\"}", "{\"sha\": \"f3354bb7e542e9c0767bda5fc55e1ff5a822330f\", \"live\": true, \"id\": \"x1241b3eb70b174e0\"}", "{\"sha\": \"d7d51f331d0a7ef78d17f1d099b70c051d633dec\", \"live\": true, \"id\": \"x0dd31c1116b8778e\"}"], "description": "", "basepoints": 10.0, "path": "quiz-dinosaur-extinction/", "slug": "quiz-dinosaur-extinction", "kind": "Exercise", "name": "quiz-dinosaur-extinction", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-dinosaur-extinction"}, "hellenistic--dying-gaul-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/greek-art/hellenistic/hellenistic-dying-gaul-quiz/", "id": "hellenistic--dying-gaul-quiz", "display_name": "Dying Gaul (quiz)", "title": "Dying Gaul (quiz)", "all_assessment_items": ["{\"sha\": \"8fcac6d05c397b783ed3669f678ac59d21847a6c\", \"live\": true, \"id\": \"xd9260f27bc68b6d7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d00693646ae6a73fc90209196731e8925e890f2b\", \"live\": true, \"id\": \"x00359ec67cf0f498\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16e2ed1965a1303a777df8e9d3ab3de8e485ef5d\", \"live\": true, \"id\": \"x908cf300c7a0ef45\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"40e15a92657c914f6656d9697977a235a87fb552\", \"live\": true, \"id\": \"xd4dde7e713350a06\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b98ef4968e02d99373752e53b4600cc96a6787e4\", \"live\": true, \"id\": \"x65a5a3dca1171dc2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "hellenistic-dying-gaul-quiz", "kind": "Exercise", "name": "hellenistic--dying-gaul-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "hellenistic--dying-gaul-quiz"}, "lung-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/respiratory-system/respiratory-system-introduction/lung-quiz/", "id": "lung-quiz", "display_name": "Introductory respiratory system quiz", "title": "Introductory respiratory system quiz", "all_assessment_items": ["{\"sha\": \"6f8d4b0224d7ccf722d13739492e51845a639e58\", \"live\": true, \"id\": \"xd85f23a06bd2fed6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ad4d7daf70fc7ef2af17ca97bf9389c816928e50\", \"live\": true, \"id\": \"x3db809a9252cdf6c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"29de77aee1651e76e693430dfcbed8a4470ebd83\", \"live\": true, \"id\": \"x7abc2153cdf1ba0e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ab3ce1489d3ec05f9bddd597b6c7f011980818e\", \"live\": true, \"id\": \"xc2eff11302f36ed5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e7c47ee0e305828bdb4a8bd63155a4cc95cbb687\", \"live\": true, \"id\": \"xf07fefb9d6c2fcdc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c76c60faa6001fea79c34c0a5339b3ebc2eedc2f\", \"live\": true, \"id\": \"xc8a22ca34e312382\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d5385dbd0d9257c4b6872bba0187dd73349271a5\", \"live\": true, \"id\": \"xc6d778114d09e14d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b444567af7a5476670c7bb3a9e8cf0b3ea11e58\", \"live\": true, \"id\": \"x7733b6d1f213c0ff\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48cfa819044f189ffa29eaead2484e52be2ab067\", \"live\": true, \"id\": \"xf265461db767db93\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e10b0a8ed0e57af4841e39ba9cf1fddb32d41d49\", \"live\": true, \"id\": \"x1dde3d04b66e2107\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e3bc3813d52bd0f0eb0c72678e0ef5f434d53494\", \"live\": true, \"id\": \"xf15d687775e5f490\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7aacba4b0c22017b78ac16d094af28b5bb81fb71\", \"live\": true, \"id\": \"xe98e322d9bb94f75\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Questions", "basepoints": 10.0, "slug": "lung-quiz", "kind": "Exercise", "name": "lung-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "lung-quiz"}, "exploring-angle-preserving-transformations-and-similarity": {"uses_assessment_items": true, "path": "khan/math/geometry/similarity/similarity-and-transformations/exploring-angle-preserving-transformations-and-similarity/", "id": "exploring-angle-preserving-transformations-and-similarity", "display_name": "Exploring angle-preserving transformations and similarity", "title": "Exploring angle-preserving transformations and similarity", "all_assessment_items": ["{\"sha\": \"fb1176fd75496505818cd1d9b21859081d6e442d\", \"live\": true, \"id\": \"x2d72e7518e78aafb\"}", "{\"sha\": \"dac4ba132a6cdb3eb9e4ad21c9c426ca5ebfa540\", \"live\": true, \"id\": \"x06e3d65011572033\"}", "{\"sha\": \"2c01f3dc1bb847160115b4e4b8f7d621516084fc\", \"live\": true, \"id\": \"x847c3b8de5066f74\"}", "{\"sha\": \"0b398d18c4b1912534a26f73b6825b5a2a071561\", \"live\": true, \"id\": \"xd9e37d0dc0969606\"}", "{\"sha\": \"f65ab9c03922ce503d62c3c7b7c4b35e15696ed2\", \"live\": true, \"id\": \"x801ea68dbead4665\"}", "{\"sha\": \"5b1899862da018ddc63028fff6231b4dd1aef2bb\", \"live\": true, \"id\": \"x10e903e13050e4e5\"}", "{\"sha\": \"c4d844722347aa5e285893a09417240073191b87\", \"live\": true, \"id\": \"xf9ebb1e0ad6c612e\"}", "{\"sha\": \"91b6135d813e831a1d8d6d805b08134a42acc16f\", \"live\": true, \"id\": \"x19afe46a94759c6e\"}", "{\"sha\": \"9909dae5b3abc39dd0af06f5022691c365468388\", \"live\": true, \"id\": \"x91f146b2ec00975a\"}", "{\"sha\": \"ff152610ec7c1e5da5ecef72f76b53cd38032e54\", \"live\": true, \"id\": \"x4451ea2c4123d993\"}", "{\"sha\": \"c7e32778b1c11f37bc69ce4117d39da6de5613c6\", \"live\": true, \"id\": \"xf5a02ec85f04d541\"}", "{\"sha\": \"1ac6d5e37b8448f15fda4e638e19b52c6c1098b4\", \"live\": true, \"id\": \"x70ce150cf446590e\"}", "{\"sha\": \"f301c4fe7058587d8ece34c1b8c33c3b2ac9fdb0\", \"live\": true, \"id\": \"xbb07f3d2e62b8ae3\"}", "{\"sha\": \"b429d3fa23db4f841a6d5724215b6912da0f1f21\", \"live\": true, \"id\": \"x0d860f5a3783a8bb\"}", "{\"sha\": \"7dece11d5b0f79ebaa89d541a11b922efdb4d24e\", \"live\": true, \"id\": \"x56321d1654afe8b3\"}", "{\"sha\": \"f2d570a2394a26ffa58b97c67023b36c07f39bf7\", \"live\": true, \"id\": \"x9861637ed87a0b33\"}", "{\"sha\": \"f4cf40ec9231e257a379a404ad9e40442b052ed8\", \"live\": true, \"id\": \"x315d1f195c87c49f\"}", "{\"sha\": \"71e9f8377e9f5ce2f656e22f3003caab2d8d262e\", \"live\": true, \"id\": \"x54ab0b982d9b2fd4\"}", "{\"sha\": \"d83198ff40f15d8cfb6a17bb01cf7fb861e9a34d\", \"live\": true, \"id\": \"x850bd4f31192eef5\"}", "{\"sha\": \"53405768b77b3caa011ea0fffd1c52836365ec77\", \"live\": true, \"id\": \"xec80cf7a5e27bcb6\"}", "{\"sha\": \"9a39e1f4184f2e1fb59dac4c2e59593de070254b\", \"live\": true, \"id\": \"x7bfda022f3890b67\"}", "{\"sha\": \"2181ea909cb5efcc06b3d3494b91d046f29d9c79\", \"live\": true, \"id\": \"xa043e4e23aabc542\"}"], "description": "", "basepoints": 25.0, "slug": "exploring-angle-preserving-transformations-and-similarity", "kind": "Exercise", "name": "exploring-angle-preserving-transformations-and-similarity", "seconds_per_fast_problem": 32.0, "prerequisites": ["exploring-rigid-transformations-and-congruence"], "exercise_id": "exploring-angle-preserving-transformations-and-similarity"}, "partial_fraction_expansion_1": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/partial-fraction-expan-alg/partial_fraction_expansion_1/", "id": "partial_fraction_expansion_1", "display_name": "Partial fraction expansion", "title": "Partial fraction expansion", "description": "Represent a complicated rational fraction as a sum of simpler fractions using partial fraction expansion.", "basepoints": 29.0, "slug": "partial_fraction_expansion_1", "kind": "Exercise", "name": "partial_fraction_expansion_1", "seconds_per_fast_problem": 60.0, "prerequisites": ["simplifying_rational_expressions_3", "adding_and_subtracting_rational_expressions_6"], "exercise_id": "partial_fraction_expansion_1"}, "doppler-effect-in-living-tissue": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/doppler-effect-in-living-tissue/", "id": "doppler-effect-in-living-tissue", "display_name": "Doppler effect in living tissue", "title": "Doppler effect in living tissue", "all_assessment_items": ["{\"sha\": \"c75ae907b0b8e55ece72d6d84e41f50ae220d1cd\", \"live\": true, \"id\": \"x0b217ef0d19bb4ad\"}", "{\"sha\": \"910e0853bec03ddb1525ab3b95531f3aca86af31\", \"live\": true, \"id\": \"x133ffe8bccb3058b\"}", "{\"sha\": \"1198da92285e3bf636ed0f60d6703a3b0f9e4128\", \"live\": true, \"id\": \"x27e8f7260c928eed\"}", "{\"sha\": \"f92e5f278ea016f9e0a8ad46672cc7ee8eabb96a\", \"live\": true, \"id\": \"x9ac54c8a9ff5037b\"}", "{\"sha\": \"39c44258fbf562981d5f4351cf73fb71d56f2588\", \"live\": true, \"id\": \"xaf9b2fd8a63227af\"}"], "description": "questions related to sound", "basepoints": 10.0, "slug": "doppler-effect-in-living-tissue", "kind": "Exercise", "name": "doppler-effect-in-living-tissue", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "doppler-effect-in-living-tissue"}, "dividing-by-10": {"uses_assessment_items": true, "id": "dividing-by-10", "display_name": "Dividing by 10", "title": "Dividing by 10", "all_assessment_items": ["{\"sha\": \"fb97a1ef0598bb88a6ce7ff43e7adc8d2a0c5c22\", \"live\": true, \"id\": \"x8e7cab399d1bc091\"}", "{\"sha\": \"e41c62291e232af9e1772f5d3540700e5bf9fd3f\", \"live\": true, \"id\": \"x0cc58f64ee14f072\"}", "{\"sha\": \"eaaa7aab841f65363379af8305a0169169f14638\", \"live\": true, \"id\": \"xeaf6f0223d0fd5e0\"}", "{\"sha\": \"5785dbd5cb42be058f4300095bb2b76e70bad693\", \"live\": true, \"id\": \"xcba27e44871bf1b2\"}", "{\"sha\": \"32e0b676bd525ee3a437beadccbf0a7dd5584f70\", \"live\": true, \"id\": \"x062d74107b444e59\"}", "{\"sha\": \"789bcceb7b1eca020a6562acc2ea7bd70dbef981\", \"live\": true, \"id\": \"x210d4db4cae3c666\"}", "{\"sha\": \"f241429551693745bf64390491298059f181b3a0\", \"live\": true, \"id\": \"xf94a6339463a0033\"}", "{\"sha\": \"1d86e2e76527a830ffd60249856415b38135a832\", \"live\": true, \"id\": \"xf0d5ce0aab3dba0c\"}", "{\"sha\": \"aa8958ee1cbec4ae7fda6856e42dcb9e9d10f98b\", \"live\": true, \"id\": \"x91702f67d63921b0\"}", "{\"sha\": \"3b7ea44cef8bf40812e85c8952112412db81e145\", \"live\": true, \"id\": \"xd05128b20d783a23\"}"], "description": "Divide by 10. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-10/", "slug": "dividing-by-10", "kind": "Exercise", "name": "dividing-by-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["dividing-by-2"], "exercise_id": "dividing-by-10"}, "comparing-growth-rates-of-exponentials-and-polynomials": {"uses_assessment_items": true, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/comparing-growth-rates-of-exponentials-and-polynomials/", "id": "comparing-growth-rates-of-exponentials-and-polynomials", "display_name": "Comparing growth rates of exponentials and polynomials", "title": "Comparing growth rates of exponentials and polynomials", "all_assessment_items": ["{\"sha\": \"9578914b9509e0d1c8d7a8c0735cb3d756a0a773\", \"live\": true, \"id\": \"xda3a1f6799cca8be\"}", "{\"sha\": \"09ed87ea6c8398aa097b946dd8e426fa90410c14\", \"live\": true, \"id\": \"x36fa3e4929eb9c41\"}", "{\"sha\": \"be0df84079d29ce67333563987a5ba79fd1de64d\", \"live\": true, \"id\": \"x3f49e591c558511d\"}", "{\"sha\": \"5267b107bf883ebdc93f78ea894973e45481e529\", \"live\": true, \"id\": \"xbf82eba2cb49273b\"}", "{\"sha\": \"eda37f35d95545b866fbf5a9aff22af780a1539b\", \"live\": true, \"id\": \"xb853761697d6ff50\"}", "{\"sha\": \"8c944e95355244d5aa076040e4e41eff700dfe1f\", \"live\": true, \"id\": \"x4c63a898ce97b0bb\"}", "{\"sha\": \"2bbba3160a7e3d3f652a690f3fe98132dfb97aaa\", \"live\": true, \"id\": \"x0e171528a6a35c57\"}", "{\"sha\": \"c95e0c8033ab9eb331d9878a833b347c2fcc205d\", \"live\": true, \"id\": \"xf40efb283ec3e794\"}", "{\"sha\": \"89cc1b5b5b376ba11da884dd8f62a0e23784d08e\", \"live\": true, \"id\": \"xdbd5b3b624dab368\"}", "{\"sha\": \"4fe683a95eb9a7b2bfa228c242b4d87c02e7727a\", \"live\": true, \"id\": \"x6dfc4ac2c5a1992c\"}", "{\"sha\": \"be6a08bba75de00c8df582e4123528003bb63378\", \"live\": true, \"id\": \"x79745248b75924a7\"}", "{\"sha\": \"9c50cd80f433d0679d3566139ca61ecd437f90e3\", \"live\": true, \"id\": \"x9c3f863b0ee5e799\"}", "{\"sha\": \"cac755f520f983d42aaf9abea583b959500f4a1c\", \"live\": true, \"id\": \"x42b9600d606424f0\"}", "{\"sha\": \"fd7a8f878074115d7ced93d6479c233ad23bc68e\", \"live\": true, \"id\": \"xcac03b2d9e18104c\"}", "{\"sha\": \"324958aab78ec343cf836a7027e421dbda23adaa\", \"live\": true, \"id\": \"x0ce8341fa7966169\"}", "{\"sha\": \"fbebe4ff8e523d82f4caaf725d8f2a38d3efa23b\", \"live\": true, \"id\": \"xcdf30488a5cf22d9\"}", "{\"sha\": \"db6d68c4fe514e8b375db8006aefec6a59ef0f61\", \"live\": true, \"id\": \"xab98a17569ee721f\"}", "{\"sha\": \"cc3a77e0692569f4850f9128a5bb86d9ce01e80f\", \"live\": true, \"id\": \"xb75fd3483f9100cd\"}", "{\"sha\": \"ce7fae7fa655ada9d5108cb05a212daaa3bf59be\", \"live\": true, \"id\": \"xa4311afe36d12941\"}"], "description": "", "basepoints": 10.0, "slug": "comparing-growth-rates-of-exponentials-and-polynomials", "kind": "Exercise", "name": "comparing-growth-rates-of-exponentials-and-polynomials", "seconds_per_fast_problem": 4.0, "prerequisites": ["graphs-of-exponentials-and-logarithms", "graphs-of-polynomials"], "exercise_id": "comparing-growth-rates-of-exponentials-and-polynomials"}, "counting-objects": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-counting/counting-objects/", "id": "counting-objects", "display_name": "Counting in order", "title": "Counting in order", "all_assessment_items": ["{\"sha\": \"c6f190660a8d584253cf809bc8656493552f4ac9\", \"live\": true, \"id\": \"x9380eb7fe24e1a46\"}", "{\"sha\": \"5fd4859cc305d292446a8b0ed05ce99c120d2b8f\", \"live\": true, \"id\": \"x6c7e7eebfa55e9d7\"}", "{\"sha\": \"1e3bfe6d38bd83c23da4b4b30c055ead86a6b07d\", \"live\": true, \"id\": \"xdc2ab03475eea11b\"}", "{\"sha\": \"7a9fb51053b2e671f1997e1bcdd37c8b3a60b33d\", \"live\": true, \"id\": \"x94d046a4034716f2\"}", "{\"sha\": \"2110e8daa4c62580246ff54fcd0e1e640d284a33\", \"live\": true, \"id\": \"xb445b4e86fdd9744\"}", "{\"sha\": \"40a3eca5ee1c608e081dcc46522f7dc30eb01bb9\", \"live\": true, \"id\": \"xde2e86feb8df0dae\"}", "{\"sha\": \"7402be1e20d441087e0da27b065b449ab0b9b51d\", \"live\": true, \"id\": \"xbbb09a2e67bc1e04\"}", "{\"sha\": \"8bea22670f5d4cc4ca31f35573be511ccf23a155\", \"live\": true, \"id\": \"xf24762b5ffd741f9\"}", "{\"sha\": \"a26711e6a2d24da5d37a1a827ce601e05a0b42e5\", \"live\": true, \"id\": \"x51e276b7fc8a0bc6\"}", "{\"sha\": \"6e403de8eadf02c538c17dabe8929947ded7f5fb\", \"live\": true, \"id\": \"xac0726dbc9aae99d\"}", "{\"sha\": \"9bd45a2199e9dbffefead46b102c8b40e15316bd\", \"live\": true, \"id\": \"xae1155e079f1f275\"}", "{\"sha\": \"e615323015f4b5f363536a017e8e2ed5046537e9\", \"live\": true, \"id\": \"x6ed1b89b841aa474\"}", "{\"sha\": \"af1eed6f525cdefb15047726a9dc59bb9383d957\", \"live\": true, \"id\": \"x424e418be8f9a154\"}", "{\"sha\": \"c75bb4f5d9b791e8a197e0f9097b6a79ca5a85ef\", \"live\": true, \"id\": \"x1756642c0e5e4e70\"}", "{\"sha\": \"161587a3da84b4aa5b2c0ececd382d4cf8b7c981\", \"live\": true, \"id\": \"xa9c894ee4af90c0e\"}", "{\"sha\": \"b88b413e2908c7a5b95f117e8ebb084772ee1d7a\", \"live\": true, \"id\": \"xd3d38dd5084dccfa\"}", "{\"sha\": \"8cefd9cbbbf7fbba4a7b861599429769a935570d\", \"live\": true, \"id\": \"x28108cc492990148\"}", "{\"sha\": \"3b4c30e9daec119fbd7edb7446b6192d6fe759cb\", \"live\": true, \"id\": \"xf7e2fdbf870bb2ec\"}", "{\"sha\": \"b2a7caf30864aac5e65012f83ec945f9faad99ac\", \"live\": true, \"id\": \"x3b297ec3af2ec67f\"}"], "description": "Practice counting without making mistakes.", "basepoints": 10.0, "slug": "counting-objects", "kind": "Exercise", "name": "counting-objects", "seconds_per_fast_problem": 4.0, "prerequisites": ["counting-out-1-20-objects"], "exercise_id": "counting-objects"}, "principles-of-chemical-thermodynamics-and-kinetics": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/principles-of-chemical-thermodynamics-and-kinetics/", "id": "principles-of-chemical-thermodynamics-and-kinetics", "display_name": "Thermodynamics of Gallium Arsenide Formation", "title": "Thermodynamics of Gallium Arsenide Formation", "all_assessment_items": ["{\"sha\": \"65bd95cca20c161ad2e36bfdca6a82b8fc6c00c3\", \"live\": true, \"id\": \"x07ccd2c37ac1e5c9\"}", "{\"sha\": \"bfec4b5933c25136594548bc04a97076919d1017\", \"live\": true, \"id\": \"x7e333593d4517d7c\"}", "{\"sha\": \"7e37e21f2c2a4ebac0ed44d9bad941b45803422f\", \"live\": true, \"id\": \"xef927a92ae6c95dc\"}", "{\"sha\": \"1414c771db685dbfa8bede76547692e7751f9bd8\", \"live\": true, \"id\": \"xbb04cb01a674bde3\"}", "{\"sha\": \"5cc71428e1560d16b25116691e425c31ef511f31\", \"live\": true, \"id\": \"xfb0d95da2ca8c880\"}"], "description": "Thermodynamics of Gallium Arsenide Formation", "basepoints": 10.0, "slug": "principles-of-chemical-thermodynamics-and-kinetics", "kind": "Exercise", "name": "principles-of-chemical-thermodynamics-and-kinetics", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "principles-of-chemical-thermodynamics-and-kinetics"}, "leukemia-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/leukemia-quiz/", "id": "leukemia-quiz", "display_name": "NCLEX-RN questions on leukemia 1", "title": "NCLEX-RN questions on leukemia 1", "all_assessment_items": ["{\"sha\": \"9a177e02e9a83dc31853e3592f366dd68704ffb2\", \"live\": true, \"id\": \"xbfae82cf92614ff5\"}", "{\"sha\": \"7d361cb1991ffe38d826e721a7d084275ce2e7a7\", \"live\": true, \"id\": \"x462f2c79d9e8c1c0\"}", "{\"sha\": \"fc1d9e0561ef0d17d1783a8562f29e2631443b85\", \"live\": true, \"id\": \"xde3448bc6012a740\"}", "{\"sha\": \"2c316f13f6020507f0ddc1d5e2e6513123623428\", \"live\": true, \"id\": \"x61eff1e5e070e13d\"}", "{\"sha\": \"ff287705cd9b3562915efdfcd2e398e838e2b23e\", \"live\": true, \"id\": \"x8d534684c10a7cbe\"}", "{\"sha\": \"7cfa6cb2c97acff7e07dd90b9effeb7c1f60e6c2\", \"live\": true, \"id\": \"x0e2f0784eba64770\"}", "{\"sha\": \"b9cbdc42d04d67c77a6d7605f621122bd9eccad6\", \"live\": true, \"id\": \"xa6ff8304b66276c9\"}", "{\"sha\": \"9d7d3f399992a4f4e84e7698fd96a00fffa6e31e\", \"live\": true, \"id\": \"x5f1cfd387776d974\"}", "{\"sha\": \"43adbbfb60ca3987acff2b173ae11184fcd178de\", \"live\": true, \"id\": \"x0669097da2ca431e\"}", "{\"sha\": \"319c14ef70c5b84c8eedffc988dba43d07f2baf6\", \"live\": true, \"id\": \"xcef8e645874b9cfd\"}"], "description": "NCLEX-RN questions related to Leukemia", "basepoints": 10.0, "slug": "leukemia-quiz", "kind": "Exercise", "name": "leukemia-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "leukemia-quiz"}, "simplifying_rational_expressions_3": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying_rational_expressions_3/", "id": "simplifying_rational_expressions_3", "display_name": "Simplifying rational expressions 3", "title": "Simplifying rational expressions 3", "description": "Simplify the ratio of two polynomials.", "basepoints": 10.0, "slug": "simplifying_rational_expressions_3", "kind": "Exercise", "name": "simplifying_rational_expressions_3", "seconds_per_fast_problem": 4.0, "prerequisites": ["simplifying_rational_expressions_2"], "exercise_id": "simplifying_rational_expressions_3"}, "simplifying_rational_expressions_2": {"uses_assessment_items": true, "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying_rational_expressions_2/", "id": "simplifying_rational_expressions_2", "display_name": "Simplifying rational expressions 2", "title": "Simplifying rational expressions 2", "all_assessment_items": ["{\"sha\": \"9963231afbcc3e3527c84fb67196cd8661b5bcd9\", \"live\": true, \"id\": \"x4a6c39887574ecb9\"}", "{\"sha\": \"e8cbd909ca7b3d636cbe9e0b90363a843dfa37a5\", \"live\": true, \"id\": \"xe1d48092f2aedca8\"}", "{\"sha\": \"6771f6704846a5443aaad96074f34f6ce04940f3\", \"live\": true, \"id\": \"x7c6660c6f13d40ae\"}", "{\"sha\": \"ff9b0a9c7708ea019267af844c6fa806eb58c9f4\", \"live\": true, \"id\": \"x882775fce97e7aea\"}", "{\"sha\": \"10e940bd6cbfeb42105f6bb5f780a551b86f2d8e\", \"live\": true, \"id\": \"x08cd6eb6175f6919\"}", "{\"sha\": \"703c62aede9e8095e63030c0bb6075018254cf74\", \"live\": true, \"id\": \"x3999d6d4b5f12632\"}", "{\"sha\": \"a8541a154aa68134c6847735c00bb98e1cb4de3c\", \"live\": true, \"id\": \"x08b29435c03eff23\"}", "{\"sha\": \"37c698932276110a408ade355b5dc846f6416cca\", \"live\": true, \"id\": \"xf02f8df486c27fdc\"}", "{\"sha\": \"6c2ecbe9b757131d892bbc7225fc64adaa13f4c1\", \"live\": true, \"id\": \"xf511cc191e6494e3\"}", "{\"sha\": \"7c8f2b59e9f651c7a9e8ebc5c54e67071e40ac7f\", \"live\": true, \"id\": \"xe1a5f157971cb676\"}", "{\"sha\": \"0ba90983183495b44d5334bbf0d12123430ef3a3\", \"live\": true, \"id\": \"xde0ea375d8a75ffb\"}", "{\"sha\": \"801caf4470aeadf30f848eac85fc59f6a073b8c8\", \"live\": true, \"id\": \"x1ab1f7cebd12c99a\"}", "{\"sha\": \"c7b3068c51e646989d3a2d87506f12c143d3ab68\", \"live\": true, \"id\": \"x95d65245f7d5aa3e\"}", "{\"sha\": \"ccb9169bb8ccd3f1347c343e9e393f912db913c8\", \"live\": true, \"id\": \"xac307540ee5a16bc\"}", "{\"sha\": \"9fdac57bacb9a6b0e1e47497b1ef28f09133a319\", \"live\": true, \"id\": \"xb9fe66d3d2779195\"}", "{\"sha\": \"cc47bbe9ae38e5a4beee32c77cffbf850b7ee6ca\", \"live\": true, \"id\": \"x9ea0182b85b87a77\"}", "{\"sha\": \"c2d997363a1e7b541c3d74540ebaf7a5957a5197\", \"live\": true, \"id\": \"xe56d1eae5446ffba\"}", "{\"sha\": \"09d316e6571888777a62508f04ffb7d673cde097\", \"live\": true, \"id\": \"x2c0bf594bf21d2a1\"}", "{\"sha\": \"af1d4b1b948719885da754bae780f8904f718aee\", \"live\": true, \"id\": \"x9420bde64001955c\"}", "{\"sha\": \"2cc8f7cebcda0ff7fb059f265d11ecd5c38c40b2\", \"live\": true, \"id\": \"x3e440f3059b3a519\"}", "{\"sha\": \"04f9c8185e57dd652e7ebb63bce429d4b94aa540\", \"live\": true, \"id\": \"x42e05ea160d2f4d7\"}", "{\"sha\": \"f030a99af63739d1aebb481507e9926680d0e856\", \"live\": true, \"id\": \"xa9e5caf09cd45716\"}", "{\"sha\": \"862b6dd6d3788777bf24d1ddbfc43214c6b3f878\", \"live\": true, \"id\": \"xad1d353fe1d09618\"}", "{\"sha\": \"d6fcc803a5a7693d875cd31edcc118454042488e\", \"live\": true, \"id\": \"x5c8887f8030bf938\"}", "{\"sha\": \"df9ecef73e5ceb329585da4c52b0fcda82e654da\", \"live\": true, \"id\": \"xbf42a165767a30bd\"}", "{\"sha\": \"64724418bec261708ffa4c2f2590a227f8059ce8\", \"live\": true, \"id\": \"xc3075b40a13332f4\"}", "{\"sha\": \"dd6ff2627e7ade2d1cef5fd24a015f2c7114c386\", \"live\": true, \"id\": \"x880a451041e0a85a\"}", "{\"sha\": \"473ffb60e01e526592e7b1bd7c68788bfcefaae1\", \"live\": true, \"id\": \"x7fc51ae212f5a7ad\"}", "{\"sha\": \"ff17123d653a17b63a2eedc84c948252575dfbab\", \"live\": true, \"id\": \"x1230d6b4031ae42a\"}", "{\"sha\": \"b6a72efe0ecb514157b3e3aa7e4a3f9caf575e96\", \"live\": true, \"id\": \"xdb26094c5400b336\"}"], "description": "Simplify the ratio of two polynomials.", "basepoints": 10.0, "slug": "simplifying_rational_expressions_2", "kind": "Exercise", "name": "simplifying_rational_expressions_2", "seconds_per_fast_problem": 4.0, "prerequisites": ["simplifying_rational_expressions_1"], "exercise_id": "simplifying_rational_expressions_2"}, "simplifying_rational_expressions_1": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/exponent-properties-algebra/simplifying_rational_expressions_1/", "id": "simplifying_rational_expressions_1", "display_name": "Simplifying rational expressions with exponent properties", "title": "Simplifying rational expressions with exponent properties", "description": "Simplify the ratio of two monomials.", "basepoints": 17.0, "slug": "simplifying_rational_expressions_1", "kind": "Exercise", "name": "simplifying_rational_expressions_1", "seconds_per_fast_problem": 10.0, "prerequisites": ["factoring_polynomials_with_two_variables", "factoring_polynomials_by_grouping_1"], "exercise_id": "simplifying_rational_expressions_1"}, "simplifying_rational_expressions_4": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/simplifying-rational-alg/simplifying_rational_expressions_4/", "id": "simplifying_rational_expressions_4", "display_name": "Simplifying rational expressions 4", "title": "Simplifying rational expressions 4", "description": "", "basepoints": 10.0, "slug": "simplifying_rational_expressions_4", "kind": "Exercise", "name": "simplifying_rational_expressions_4", "seconds_per_fast_problem": 4.0, "prerequisites": ["simplifying_rational_expressions_3"], "exercise_id": "simplifying_rational_expressions_4"}, "intermediate-lung-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/respiratory-system/respiratory-system-introduction/intermediate-lung-quiz/", "id": "intermediate-lung-quiz", "display_name": "Intermediate respiratory system quiz", "title": "Intermediate respiratory system quiz", "all_assessment_items": ["{\"sha\": \"d3654c134bc65b1c449d8078a9f0e8adf223fc24\", \"live\": true, \"id\": \"xd8a6703cae98126c\"}", "{\"sha\": \"65d905c48cde4a961cfbc587ab6c5976094d88c1\", \"live\": true, \"id\": \"x321732d1f3052676\"}", "{\"sha\": \"a42cc177aa26a449391d416950d0548db23fd170\", \"live\": true, \"id\": \"x9df8d59897945448\"}", "{\"sha\": \"a8784fb12791bf1283a1a4e9675c47827b99e9a0\", \"live\": true, \"id\": \"x20aa0167ff69e2cf\"}", "{\"sha\": \"2a77342a6eaf1349143fd12953be779bed1c6d03\", \"live\": true, \"id\": \"xd76cb109ebd61a90\"}", "{\"sha\": \"699ecf06b0adb94c4d451399d450d0f35a3e4746\", \"live\": true, \"id\": \"x0659cfcdab920751\"}", "{\"sha\": \"811dd7386130b8c941b3f8ab55b8241deef0fcfb\", \"live\": true, \"id\": \"xd81181a48a24b064\"}", "{\"sha\": \"62cf604e4eada08a1207dc8aca4cd72c573af136\", \"live\": true, \"id\": \"x304a58340edc48bc\"}", "{\"sha\": \"472aa97a160ec5347e18eb6a12058bf50ddf8484\", \"live\": true, \"id\": \"xa13952de73d4be60\"}", "{\"sha\": \"1eeeabac3324a0d058dde66a7bd0b3eebc0680ec\", \"live\": true, \"id\": \"x2c623c3a8e8d06ee\"}", "{\"sha\": \"d5fbc9083368a357d38ffd425c91725e8795626b\", \"live\": true, \"id\": \"xa2d05f0c7c30670d\"}", "{\"sha\": \"1b31179dc830d36d17dc6def34b26c70b690e54f\", \"live\": true, \"id\": \"x7d12d0623aca63c8\"}"], "description": "Intermediate Lung Quiz", "basepoints": 10.0, "slug": "intermediate-lung-quiz", "kind": "Exercise", "name": "intermediate-lung-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "intermediate-lung-quiz"}, "area--volume--and-surface-area": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-volume/area-volume-and-surface-area/", "id": "area--volume--and-surface-area", "display_name": "Area, volume, and surface area", "title": "Area, volume, and surface area", "all_assessment_items": ["{\"sha\": \"f2cfd482ade33f59d8e1d783328400b8ec5ad0da\", \"live\": true, \"id\": \"x0dcefb4fdcbf8315\", \"perseus_api_major_version\": null}", "{\"sha\": \"69c54aab29257aad5dfbd18623d3a4298e4a8b03\", \"live\": true, \"id\": \"x0e6445ad25557e40\", \"perseus_api_major_version\": null}", "{\"sha\": \"1f3b75eae5c7e6f52af624f79f2fe0e752b2b2e4\", \"live\": true, \"id\": \"xd27f560044011f21\", \"perseus_api_major_version\": null}", "{\"sha\": \"92918cbd2252f3ba78dc2496da86a03e21e683a7\", \"live\": true, \"id\": \"x4e644b9868f4e7bb\", \"perseus_api_major_version\": null}", "{\"sha\": \"cf038845564a63b7f57b826d34654d073fd64459\", \"live\": true, \"id\": \"x7cadfb512d9fc1d4\", \"perseus_api_major_version\": null}", "{\"sha\": \"a27b4c84ef5a0c817826c6d65b8f7cc06883b672\", \"live\": true, \"id\": \"xd6227f8ede3bdcf6\", \"perseus_api_major_version\": null}", "{\"sha\": \"5a710dcccd2c11b212b679a4cba4ac0987a5703b\", \"live\": true, \"id\": \"x5482354a69951a95\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8fa2cb182af096629da5bb3ca7939dacbd754497\", \"live\": true, \"id\": \"xfe7abf43d5f7336a\", \"perseus_api_major_version\": null}", "{\"sha\": \"bb4d27f577eeaff1d9d4d5e8b2f3ccc217db80e5\", \"live\": true, \"id\": \"x2303e1e7ce324859\", \"perseus_api_major_version\": null}", "{\"sha\": \"99ee2fc6d3fb91c07d7e04cf1c3a177f2fb587a2\", \"live\": true, \"id\": \"xb0e4e814268fd586\", \"perseus_api_major_version\": null}", "{\"sha\": \"23e33597d21ba1d91f95aa1c3e9c5c05d2e8544e\", \"live\": true, \"id\": \"xbab0d531f221f744\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e3d57b3be0b15a28f3551e525338083961f7aff5\", \"live\": true, \"id\": \"x6648cea11832855f\", \"perseus_api_major_version\": null}", "{\"sha\": \"1307a74b07e805ed387a5c99f90a12a7b563d4da\", \"live\": true, \"id\": \"x7624e1cba96b8577\", \"perseus_api_major_version\": null}", "{\"sha\": \"04621086815da3c216f175931032b1ba2e2ec713\", \"live\": true, \"id\": \"x27ff33d9c309c7ce\", \"perseus_api_major_version\": null}", "{\"sha\": \"577dbf9cc7cd61852149f3dc04f88acb5a9f4b5d\", \"live\": true, \"id\": \"x6ed17026d8bfe0bb\", \"perseus_api_major_version\": null}", "{\"sha\": \"34fdf3a14b38666eeaa090b976a47a8fe346e315\", \"live\": true, \"id\": \"x33396169090e3680\", \"perseus_api_major_version\": null}", "{\"sha\": \"69dcece63bf40465ea1ec550315fb5c99edadc34\", \"live\": true, \"id\": \"x06b1691221f6ea7d\", \"perseus_api_major_version\": null}", "{\"sha\": \"3697099f0f4b689f7548a065966c37c1ae7b3ee9\", \"live\": true, \"id\": \"x23beb4cd843665af\", \"perseus_api_major_version\": null}", "{\"sha\": \"f28d66e2191e4b8880ce73149fb73b1d741c0294\", \"live\": true, \"id\": \"xd9d03a194cdc8ae4\", \"perseus_api_major_version\": null}", "{\"sha\": \"5d8011c77e391fcf19bb91449e069a64e92ea9f8\", \"live\": true, \"id\": \"x198bb773ad6f170b\", \"perseus_api_major_version\": null}", "{\"sha\": \"4334f6a5d2ec42bf0a17d8f061e86beef250dae2\", \"live\": true, \"id\": \"x07994d4fb2b79b94\", \"perseus_api_major_version\": 0}", "{\"sha\": \"657f2d4a64f2298bf5ab6cbd54b3d85c9c7c42e9\", \"live\": true, \"id\": \"x2d596dc8eec89b08\", \"perseus_api_major_version\": null}", "{\"sha\": \"ca7477108e5b90f55d1a1543f01e855287ff0d5a\", \"live\": true, \"id\": \"x63b88eeb5015ba3c\", \"perseus_api_major_version\": null}", "{\"sha\": \"0ccd3458ed07242c4bf5d6e2e5b51df1f894de00\", \"live\": true, \"id\": \"xb2ab1d8c26fd802e\", \"perseus_api_major_version\": null}", "{\"sha\": \"0e9d82b06566de885d2fd285499d644c7a0054d6\", \"live\": true, \"id\": \"xd0f91d87d96a4556\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c379d3ba937f3a943343b15f74a331d8a6691f7\", \"live\": true, \"id\": \"x10eb0d14b6e1f311\", \"perseus_api_major_version\": null}", "{\"sha\": \"932ea3cb5dba92614aaae0aa426d667be260947a\", \"live\": true, \"id\": \"x276127b5872fbc61\", \"perseus_api_major_version\": null}", "{\"sha\": \"22bb7260ee20b88d11f12e10b61b84ea943a26c5\", \"live\": true, \"id\": \"x3e93af40b7f72c90\", \"perseus_api_major_version\": null}", "{\"sha\": \"baea512a79d67d288aa15e7d7ea4e65fbfcc938f\", \"live\": true, \"id\": \"xe36af4fb7a84ecf5\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 27.0, "slug": "area-volume-and-surface-area", "kind": "Exercise", "name": "area--volume--and-surface-area", "seconds_per_fast_problem": 42.0, "prerequisites": ["surface-area", "volume-word-problems-with-fractions"], "exercise_id": "area--volume--and-surface-area"}, "pleural-effusion-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/pleural-effusion-quiz-2/", "id": "pleural-effusion-quiz-2", "display_name": "NCLEX-RN questions on pleural effusion 2", "title": "NCLEX-RN questions on pleural effusion 2", "all_assessment_items": ["{\"sha\": \"81971efe581ab91f1ce8e43d8ce439a96ae0b557\", \"live\": true, \"id\": \"x73207075da51fe01\"}", "{\"sha\": \"9d10eda38ebd9c5b6ac7e9ed993897b61016da3b\", \"live\": true, \"id\": \"x673bb6198d4933ce\"}", "{\"sha\": \"780e10a00f73c9d2e1a882e4d5dcea2734817163\", \"live\": true, \"id\": \"xaf9b2af42daf00e7\"}", "{\"sha\": \"a5d679eb798755c296a47eddb2ae0f99da9baa41\", \"live\": true, \"id\": \"x6104e442b575adca\"}", "{\"sha\": \"98af549eec787f766ce62a1d4bff78409d0d992e\", \"live\": true, \"id\": \"xc3c8fc58fe4545ef\"}"], "description": "Another pleural effusion quiz", "basepoints": 10.0, "slug": "pleural-effusion-quiz-2", "kind": "Exercise", "name": "pleural-effusion-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pleural-effusion-quiz-2"}, "age_word_problems": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/age_word_problems_tut/age_word_problems/", "id": "age_word_problems", "display_name": "Age word problems", "title": "Age word problems", "description": "Solve age word problems with a system of equations.", "basepoints": 27.0, "slug": "age_word_problems", "kind": "Exercise", "name": "age_word_problems", "seconds_per_fast_problem": 44.0, "prerequisites": ["understanding-systems-of-equations-word-problems"], "exercise_id": "age_word_problems"}, "dilations": {"uses_assessment_items": true, "path": "khan/math/geometry/transformations/dilations-scaling/dilations/", "id": "dilations", "display_name": "Dilations", "title": "Dilations", "all_assessment_items": ["{\"sha\": \"726fe3285b022a353338f175358483ea3d2e1ceb\", \"live\": true, \"id\": \"xf6ad112d9d2c7233\", \"perseus_api_major_version\": null}", "{\"sha\": \"2a93b7ca7754516058b108bc8d94e646bee98c71\", \"live\": true, \"id\": \"x9c37f3c9af51d947\", \"perseus_api_major_version\": null}", "{\"sha\": \"da50429f8af33a45e2df2293d21d2cfda410d6f1\", \"live\": true, \"id\": \"x0719781bab05e601\", \"perseus_api_major_version\": null}", "{\"sha\": \"7b86813fdbeda128c1a4f044c7fac4368745a245\", \"live\": true, \"id\": \"xdf28e6c4d34b91ac\", \"perseus_api_major_version\": null}", "{\"sha\": \"c0d90a90c0bdf7fde20b9762f98d21aeb09dd836\", \"live\": true, \"id\": \"x7f46da67b1c0391e\", \"perseus_api_major_version\": null}", "{\"sha\": \"848309b3c26314c48e220c3f262317ad74db054d\", \"live\": true, \"id\": \"x5783d9353bf1b873\", \"perseus_api_major_version\": null}", "{\"sha\": \"fb9d6612d162a98d13f3d07a247bb00dcb6197b8\", \"live\": true, \"id\": \"x1fbbf66bfe2e6575\", \"perseus_api_major_version\": null}", "{\"sha\": \"64b351a32f8edf684d8b09e96ecf9a12386fa52c\", \"live\": true, \"id\": \"xf45a68a24b217dad\", \"perseus_api_major_version\": null}", "{\"sha\": \"da71f5db9a3c540d0b2d9244f75084ff5bc6ed61\", \"live\": true, \"id\": \"x225494fdbc5726f0\", \"perseus_api_major_version\": null}", "{\"sha\": \"2a602e191632223584178a9259aac2b7fd8c3b23\", \"live\": true, \"id\": \"x550c4b9121160465\", \"perseus_api_major_version\": null}", "{\"sha\": \"9db202268bc88bbc863ff576e394783125e01b58\", \"live\": true, \"id\": \"x8641c431acf764de\", \"perseus_api_major_version\": null}", "{\"sha\": \"458fb93c2a629b566747290110d2627205af1ad5\", \"live\": true, \"id\": \"xb6a3b94de3b52188\", \"perseus_api_major_version\": null}", "{\"sha\": \"316264fa508976f73d092b9442afeb2c953c843e\", \"live\": true, \"id\": \"xd4260552c025913c\", \"perseus_api_major_version\": null}", "{\"sha\": \"24b85e3bc724252ce3c1d233d26986d0944860ee\", \"live\": true, \"id\": \"x411b33dda619941f\", \"perseus_api_major_version\": null}", "{\"sha\": \"2da25b7589baaad3d76d68f1d3f267e3122a598a\", \"live\": true, \"id\": \"xdaee3d1638d5d03c\", \"perseus_api_major_version\": null}", "{\"sha\": \"833d83a92223ff71cef603b409abe851d78e74ba\", \"live\": true, \"id\": \"x8c1b68ca8c5e6010\", \"perseus_api_major_version\": null}", "{\"sha\": \"734bf2054f1190f582add82f8458937c2ba17d06\", \"live\": true, \"id\": \"x63c893cb8becece8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ecb2da5b81d1f1be7db76d9f9fddcaf38efaf10b\", \"live\": true, \"id\": \"x4396987626a6fae1\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f8567056efa56cdd0e15dd143c37d4f496c0c16\", \"live\": true, \"id\": \"xeba6160852a1ab3c\", \"perseus_api_major_version\": null}", "{\"sha\": \"66c6c7052d012528f7595962f86fb498b09da206\", \"live\": true, \"id\": \"xfa93a52dd96e321d\", \"perseus_api_major_version\": null}", "{\"sha\": \"9e70862b27fc97fdad7fac5c9afeef8f94d1b11e\", \"live\": true, \"id\": \"xb487230c45238116\", \"perseus_api_major_version\": null}", "{\"sha\": \"4a27ae09b95f40b0c2b3e92a4a537c39103cd031\", \"live\": true, \"id\": \"x2c7b279beb221f58\", \"perseus_api_major_version\": null}", "{\"sha\": \"41a1c666916e5f072ab7d9892a2a8f395ff8218d\", \"live\": true, \"id\": \"x7a2d49b1bf3bb6d9\", \"perseus_api_major_version\": null}", "{\"sha\": \"a6696355850ed784ff553d5027f21539e060a224\", \"live\": true, \"id\": \"xc5b5f83b93022d17\", \"perseus_api_major_version\": null}", "{\"sha\": \"c218918eb64511fe6c4778e5e0011002e6a08cc8\", \"live\": true, \"id\": \"x1a6b4df4b8f687f0\", \"perseus_api_major_version\": null}", "{\"sha\": \"93599b24cc099b494a30a09f0e0b95c7271d5d18\", \"live\": true, \"id\": \"x2d714386edd019ee\", \"perseus_api_major_version\": null}", "{\"sha\": \"7330e654b4a6ec9ebd3214e07f6e00728802d1d1\", \"live\": true, \"id\": \"x2515fad3bc087ee4\", \"perseus_api_major_version\": null}", "{\"sha\": \"9c484cd9c03d0da376533db74b6e36eea6914a6a\", \"live\": true, \"id\": \"xe2dbcb8a2c8620a6\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab7377b1b4f010c47c9170cba88dedadc73babf2\", \"live\": true, \"id\": \"xe3fb596734669e94\", \"perseus_api_major_version\": null}", "{\"sha\": \"6cbd16ebb432a58e565cc30dd8198ad560ed2b57\", \"live\": true, \"id\": \"x6ad1c93b813f5b89\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 27.0, "slug": "dilations", "kind": "Exercise", "name": "dilations", "seconds_per_fast_problem": 45.0, "prerequisites": ["exploring-angle-preserving-transformations-and-similarity"], "exercise_id": "dilations"}, "valid-claims": {"uses_assessment_items": true, "path": "khan/math/probability/statistical-studies/statistical-questions/valid-claims/", "id": "valid-claims", "display_name": "Valid claims", "title": "Valid claims", "all_assessment_items": ["{\"sha\": \"35ab83c58d8e7899068b1fd3f2aa71d842d9c349\", \"live\": true, \"id\": \"x9ce22c761373f251\"}", "{\"sha\": \"41285bcdb2e878eaa005641d0709f9d077dc3b21\", \"live\": true, \"id\": \"x3735b14f550286a1\"}", "{\"sha\": \"580802c7b0fc5913f0cf832a55b5a6e9ac2cf354\", \"live\": true, \"id\": \"xe59dabc14c6727cd\"}", "{\"sha\": \"bd91652940a3499d3f803e54e6e2eebf8b2b8144\", \"live\": true, \"id\": \"x947597dae3f17031\"}", "{\"sha\": \"e89f32e8a406ed16ec4229744631e675a422fd00\", \"live\": true, \"id\": \"x98ac86db17ebf9a8\"}", "{\"sha\": \"454b62e2fc6d94f7fc17ab71692112032ffa682d\", \"live\": true, \"id\": \"x8b50b1a9aa364b1e\"}", "{\"sha\": \"bbdc6d4bab339fa82e43f7f6a09744408e9c2b09\", \"live\": true, \"id\": \"x8280d4abaab81e1f\"}", "{\"sha\": \"0dd2848ac9ed34001620df20f23b9a5a473278dc\", \"live\": true, \"id\": \"xbec177a399bbca15\"}", "{\"sha\": \"eaa679fe9e636091b16137f18df738e66cee4039\", \"live\": true, \"id\": \"x8e097a6d31e6e7ad\"}", "{\"sha\": \"7623215329a9321e0960b5ed4f41c6a3b30a53f7\", \"live\": true, \"id\": \"x23fe5586b0055e48\"}", "{\"sha\": \"90dd02c24e5538d97dca875e1b508bd91b07c687\", \"live\": true, \"id\": \"xd0b3b9ee414ca8ed\"}", "{\"sha\": \"183ad692df45ed63f7f23f47bcbe92975c2d84aa\", \"live\": true, \"id\": \"x195562158ba421d7\"}", "{\"sha\": \"a57001dde2c04219ed546f571c57fad0f10e64c9\", \"live\": true, \"id\": \"x4891d32e12650f97\"}", "{\"sha\": \"5aa7cb1715cced8d1412bc98a4afac2a2d1e28da\", \"live\": true, \"id\": \"x08c83f34cd9f1ecb\"}", "{\"sha\": \"a70135a4c10bdf0a2dc0635afadf198d46af350a\", \"live\": true, \"id\": \"x7becb0539e48c73a\"}", "{\"sha\": \"63735b2d78f08d7104ee697923a2eb7c873d44d2\", \"live\": true, \"id\": \"x7b848042f0179bf3\"}", "{\"sha\": \"75e81738b840539afbd1f80af0937fe85e195397\", \"live\": true, \"id\": \"xe0935e6c72be9136\"}", "{\"sha\": \"eedd1dd660d6e92e5bdc138f230e886440b54faa\", \"live\": true, \"id\": \"x318d495ceee7e501\"}", "{\"sha\": \"11d91ae97cefd46d51ac6be75df5e6ba881e063e\", \"live\": true, \"id\": \"x98e16764a95265c7\"}", "{\"sha\": \"445d5f719d10bd6ee70f8df72463e0ff2b2b70db\", \"live\": true, \"id\": \"x812fef8def18892e\"}", "{\"sha\": \"e15e26e7c88aaed14f55b1cdd70bf4c86b195db7\", \"live\": true, \"id\": \"x1b136b7b8ab96aef\"}", "{\"sha\": \"cfd8a72cb897e61a1518d84fe20c19e2565f0953\", \"live\": true, \"id\": \"x2a2cb761d13501c3\"}", "{\"sha\": \"78612c0480e472edd5c9713ce12a2a9bdbad1c76\", \"live\": true, \"id\": \"xd59a15c822ad7408\"}", "{\"sha\": \"e7fe8299956598d72125e72ac2beeb5956435d5b\", \"live\": true, \"id\": \"xfaadd91bceacc5a6\"}", "{\"sha\": \"b82ca9660ccd163cc100be3b930da3a47ac3385f\", \"live\": true, \"id\": \"xb07651a133792d0b\"}", "{\"sha\": \"53003bf52c3b7668773c7cdaf9e783e76e3f0ce2\", \"live\": true, \"id\": \"xbaf650cd4825d9e7\"}", "{\"sha\": \"91a4401199fa499048ba2665e59837b16eddb390\", \"live\": true, \"id\": \"x68ae2025a99200ef\"}", "{\"sha\": \"c6914f95a09545fe9706041539217024e1b24f67\", \"live\": true, \"id\": \"x3c4f9c358eac3505\"}", "{\"sha\": \"426786a80152760a222377d4b3b5e2959e6fa098\", \"live\": true, \"id\": \"x8b96cae4975b5e73\"}", "{\"sha\": \"37a1bba8dbf671a453f3c8243745402175335f1f\", \"live\": true, \"id\": \"x73fa4fe3b536913c\"}"], "description": "Practice figuring out whether we took a random sample and whether we're able to draw valid conclusions from our data.", "basepoints": 21.0, "slug": "valid-claims", "kind": "Exercise", "name": "valid-claims", "seconds_per_fast_problem": 18.0, "prerequisites": ["finding_percents"], "exercise_id": "valid-claims"}, "neuronal-membranes--nature-s-capacitors": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/neuronal-membranes-nature-s-capacitors/", "id": "neuronal-membranes--nature-s-capacitors", "display_name": "Neuronal Membranes: Nature's Capacitors", "title": "Neuronal Membranes: Nature's Capacitors", "all_assessment_items": ["{\"sha\": \"0e1bce20a7d380678476ff3793e1ec21e323438d\", \"live\": true, \"id\": \"xb89375f4f1dbe6e8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a2db1eae5a805b55153c9d5148b9a04ece524cda\", \"live\": true, \"id\": \"xb39390523ca8e06e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"97ed6244f624356cc08afbe0414dddbb7ba5b9ad\", \"live\": true, \"id\": \"xbe76c92fa66379ff\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e1cd72d2f01c99de9d46b0ea03eb8bf8892fd9c5\", \"live\": true, \"id\": \"x3970e33a41b17ca2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7412c5a47982666dc7471b2db55a35860241d0c8\", \"live\": true, \"id\": \"xbe78bba52e777426\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Questions related to Circuits and capacitors", "basepoints": 10.0, "slug": "neuronal-membranes-nature-s-capacitors", "kind": "Exercise", "name": "neuronal-membranes--nature-s-capacitors", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neuronal-membranes--nature-s-capacitors"}, "standard-of-ur-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-near-east-ap/standard-of-ur-quiz/", "id": "standard-of-ur-quiz", "display_name": "Standard of Ur (quiz)", "title": "Standard of Ur (quiz)", "all_assessment_items": ["{\"sha\": \"7d44a214fea7c0903798366fc5688a3a4f2f3f61\", \"live\": true, \"id\": \"xb94bafbd53b01c68\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"093e358dea619a0829c316c4f2b1db7e09fa539b\", \"live\": true, \"id\": \"x9493ffebef625f25\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d9690416a6908d1adbc58753daa15dbabe4fe459\", \"live\": true, \"id\": \"x7ae91ee9ec2b6c3d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"993f59f5d8dc7d7c0025a623f7c16f763e686e6c\", \"live\": true, \"id\": \"xaddb92b3da997077\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"02d5ed43bb3fa89a693d3bf3556d943ffe588847\", \"live\": true, \"id\": \"x2532743de0df8d9b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76dc1d9b2e29d0f86584c64daaa1083cb2b4fc36\", \"live\": true, \"id\": \"xa1e8978e8168353d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23393768d1f17b6ea5771ecd89c8d2ce24427459\", \"live\": true, \"id\": \"xe0deaf367bcab661\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a74eb3285d6fe775ea847e3211b788c3e40581f\", \"live\": true, \"id\": \"x2d20b1297cdf8438\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "standard-of-ur-quiz", "kind": "Exercise", "name": "standard-of-ur-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "standard-of-ur-quiz"}, "dna-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/dna/dna-questions/", "id": "dna-questions", "display_name": "DNA questions", "title": "DNA questions", "all_assessment_items": ["{\"sha\": \"b1ec3bec5d25613540576f461f641c2fa3bec253\", \"live\": true, \"id\": \"xfdeff8901152d4bd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"06b29a8de15610f0c4cd5141c0126decd1e778a4\", \"live\": true, \"id\": \"x4f567999575797af\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a8c60e508836fea24141fd39a021a43f991ddd5e\", \"live\": true, \"id\": \"xfad6c60451b1050e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4016a3d9f8e7a983f727661d34bae85f1acac932\", \"live\": true, \"id\": \"xd5b9e3594150d91d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5cf9dffeca0fdb2694e85c42b5a7cd33ff68e0a3\", \"live\": true, \"id\": \"x0b6b8774f0978313\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"85898ee733891607b3467829cff57b422da0fbe3\", \"live\": true, \"id\": \"xb8aa93a4800ffbee\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca344870a78f42d186a616ba905a7097a9d1d091\", \"live\": true, \"id\": \"x4728110b35bb8920\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ebae2cafeac72fa9dea1d50d09323d55dbc21010\", \"live\": true, \"id\": \"xf0d2573b3bdbc779\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"886bbe240c6dad89a904d5d61f776e5d0e55e7bc\", \"live\": true, \"id\": \"x6ce5af7928e1a7b7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5136f5310dec9f8db69deaec596928f34a83e981\", \"live\": true, \"id\": \"x2d2c15bcef072416\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6f8dee6a9a7c4a929864fc7df26fa0fa09a8efb\", \"live\": true, \"id\": \"xd2e98136025a4ab7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "DNA questions", "basepoints": 10.0, "slug": "dna-questions", "kind": "Exercise", "name": "dna-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "dna-questions"}, "intro-to-simple-data": {"uses_assessment_items": true, "id": "intro-to-simple-data", "display_name": "Data set warm-up", "title": "Data set warm-up", "all_assessment_items": ["{\"sha\": \"7137c6108e8cfb42d2a89cda051a0c635e1d12d1\", \"live\": true, \"id\": \"xc145db3e6129776c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"35ada5af62838b8fe2e731967b7f14837547bab8\", \"live\": true, \"id\": \"x6f62f1e140bf3617\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eec581af0e8ae4e46d2ceb63d2b178443cd3dcbb\", \"live\": true, \"id\": \"x535844a71ed94a83\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aec24641436d2c54d3c09f5efe3d553338e8d9c9\", \"live\": true, \"id\": \"x1fefa619f593da87\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9059f7b1c227f8294cf86d35027f6b95002a51e0\", \"live\": true, \"id\": \"x1966cab2b3967e17\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"69fec1edcf24f12e212ac5530b674dcf3d6a8192\", \"live\": true, \"id\": \"xe45f7d9aac66b064\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d3d0d19f6345406b67bfe9b712a48364c5afe9fa\", \"live\": true, \"id\": \"xf84e9ef9aa88dba7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea624bcca9a10cbb2daeb4ab4beecae68c1f995a\", \"live\": true, \"id\": \"xfed99dd3d04f59ed\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0dc86fd99e6bc523080c1ceac07b0b007e74d3b4\", \"live\": true, \"id\": \"x628f9a2d8a81bd19\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b32b6196f981b20167b13766753a77f03bea34fb\", \"live\": true, \"id\": \"xf505bcec9d231078\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"036f05f6e51ccbe2446b969521bbb81b78c75348\", \"live\": true, \"id\": \"x1c7fa97a4b4ea7d6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aaf78c979571b10f68878bdc9fef41e62c792807\", \"live\": true, \"id\": \"xa3c71dca96997eef\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef565a6c65bafde4eb6567963dbac71379e457b5\", \"live\": true, \"id\": \"x6e7bce3c71bc76ed\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"194f91f2facc777e4cd9b74ba4ad2774dc2e946c\", \"live\": true, \"id\": \"x325ff45f51667a94\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf4f1a0e3ea38e0276dc0455bac92fb44724c7e3\", \"live\": true, \"id\": \"x2f35e097287a32df\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f4c0df096ef82e98c991d4e6d1fdf5011ae1f857\", \"live\": true, \"id\": \"x514fa532aecf9b20\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4efb9011942aac33e017e6ec0f7969637ff6642c\", \"live\": true, \"id\": \"x92b18b6c42dbdcca\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2aa67d80fffc3734206f9a8fd7c724feb2afa20d\", \"live\": true, \"id\": \"xacd219840b82215f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db25e8152dbe1b2b6af0b4e04c90bfbae466bf60\", \"live\": true, \"id\": \"xb4294ec6d986f3e5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e7ced504346e23b7749da5352b8c13acc44c652f\", \"live\": true, \"id\": \"x04e699857c4cabae\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"99d1c964c6dad420831c0aac18198ce0bb928a2d\", \"live\": true, \"id\": \"x7fc554c46a2d09ba\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"812717c609d6f1466a3f347bb1c2535f74d8dd9b\", \"live\": true, \"id\": \"xa658d6b197cb4400\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f2ba8c2bd63dffe5402a64907d054216a96f0cbd\", \"live\": true, \"id\": \"xd4a7f71341e07b52\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dc1e2d06d34031443b39470790bd4d6aac82e02c\", \"live\": true, \"id\": \"x925b1a5e7ca90641\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"252568f2fe29f342d63cf27e3e22c1343f58fdbd\", \"live\": true, \"id\": \"x63d4da95f9fe3bcb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"10384a39b831f366787623d6e4032b43b586b39a\", \"live\": true, \"id\": \"x7d9315eb1d169214\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"46a199e77e7aedabc58dbdea91212d174e3c3766\", \"live\": true, \"id\": \"xd81de8f9afadbfc6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b80c0df1901c03a6c0cdaa38679716e757506a72\", \"live\": true, \"id\": \"x41c9fc1381750c2e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a0e38bc5fdd58f8af221345b6182b096244fba1c\", \"live\": true, \"id\": \"x6316ded6dae477a6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8f5883d6be5c9a6e69367c3b583a6c55cb2e71e\", \"live\": true, \"id\": \"xd8227340039763a3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d6cff90292f6f79dae9de022904d6fa5ae2c852f\", \"live\": true, \"id\": \"xe1d7c60b31459819\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6daee79e527331c9cdbcc5442243f4e2bf773132\", \"live\": true, \"id\": \"x692619b5c1ec7aa1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bfcfb907c7ad7f543409f9e6c6cd6b9a0ecb9f5e\", \"live\": true, \"id\": \"x704c8e0826b92b4d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f129adf30f129af517e27bfa8859932d13eb9c3f\", \"live\": true, \"id\": \"xc1bbd6154eaf7ab0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d89c6d5ce20776b7849267e9e776683cd587b36b\", \"live\": true, \"id\": \"xe71e9e475864ba9c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d7a0f97dfa420020c81752066d8479cc2b837f17\", \"live\": true, \"id\": \"x771adf3a5196d997\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7eaa94db984ad551253a927ab315ba3ca57a0c23\", \"live\": true, \"id\": \"xe47c0e6faeebe7ce\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2149e4f3ce1139593244340d6e32f2a4601571cf\", \"live\": true, \"id\": \"x48ca45b6a23748d8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"80678b5f92676d5afb3ed94b68652fca12cc1f1f\", \"live\": true, \"id\": \"x1ec5827f53dbd5f6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea3ae86d7114adf3c26b95d20aa434e0f22e593d\", \"live\": true, \"id\": \"x4fc38fa0677c52b1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6cb1f1ed3a3c32563a8dabbbb67b93a647089fb6\", \"live\": true, \"id\": \"x7e25d994a69aedeb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"891e3ef69ce65bfafdc71fb78e25d4656f6a2610\", \"live\": true, \"id\": \"x71c3fcd2cc53c63b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9c3597cebfe441831158f51e3ddb5fb9fa400324\", \"live\": true, \"id\": \"xa1ee4b5ea84d1c6b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bd1aeacf14fe370d915dac0f4e95db8c72dc1cda\", \"live\": true, \"id\": \"x94b45ba9e21a4995\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"82a8500617889f42936a8a51615f9dc21ccee92b\", \"live\": true, \"id\": \"x3c2f88ff14236ccd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7686b21685a0bd0a1934001e748aa263a616d759\", \"live\": true, \"id\": \"x0f886726c7fe0eda\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5f90138f1828f5c1caec1408e81cb5c75fe965f4\", \"live\": true, \"id\": \"x94edde36577bef23\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ec40790d9a7f999c6acb93a9fcb6ec6a92d6caec\", \"live\": true, \"id\": \"xd8092e89d24061dd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Begin your journey into the world of statistics with some warm-up questions about data sets.", "basepoints": 10.0, "path": "intro-to-simple-data/", "slug": "intro-to-simple-data", "kind": "Exercise", "name": "intro-to-simple-data", "seconds_per_fast_problem": 4.0, "prerequisites": ["reading_bar_charts_2"], "exercise_id": "intro-to-simple-data"}, "power_rule": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/power_rule_tutorial/power_rule/", "id": "power_rule", "display_name": "Power rule (advanced)", "title": "Power rule (advanced)", "all_assessment_items": ["{\"sha\": \"cc6ad83c8f03007281329c0d9bcaece962cbc211\", \"live\": true, \"id\": \"x375d0fb5a847979c\"}", "{\"sha\": \"2060f2ed7523e6beeccb71b66312627a8567d42a\", \"live\": true, \"id\": \"xc48aacc7e56e488d\"}", "{\"sha\": \"547dc6b57b9a1d5ea6aba2337c079312e8a5f287\", \"live\": true, \"id\": \"x372f692279538437\"}", "{\"sha\": \"14e4dd1a4b0e90ea37131612a23e0f545f36b7ca\", \"live\": true, \"id\": \"xbe92c66186984389\"}", "{\"sha\": \"b5289a8370a0cd23ec813f4f1b5a8097b13820d7\", \"live\": true, \"id\": \"x92b4ee8e48be7434\"}", "{\"sha\": \"76b8ba4ee9240b0eb8d9df1d20846068cb86607d\", \"live\": true, \"id\": \"x272737d531fcdda0\"}", "{\"sha\": \"fea29b826add83a146231b1696b5915b8490735a\", \"live\": true, \"id\": \"x526d98cb9210cb50\"}", "{\"sha\": \"609f5883f9450bd755460239285af4e4c1921a6c\", \"live\": true, \"id\": \"x5b7c652ec7753712\"}", "{\"sha\": \"01a3446cb0d100002cdcbc50152f98df5ad29a7c\", \"live\": true, \"id\": \"x64036805ba567dd8\"}", "{\"sha\": \"f15a7d0e01cb90de773585ce9f9d9377e673dc25\", \"live\": true, \"id\": \"xd04d00a8771d62ad\"}", "{\"sha\": \"42e8e2325b5e92cda432a82e61a2396b9938e70f\", \"live\": true, \"id\": \"x502fa4ce9c84c377\"}", "{\"sha\": \"5ce01d0a024213beb633c331c99b6e8f30354f66\", \"live\": true, \"id\": \"xc80256c06e567f1e\"}", "{\"sha\": \"75c039a09accc03be4827af8841f402b83f073e3\", \"live\": true, \"id\": \"x1974081191234851\"}", "{\"sha\": \"2e076e6070042bd2436c951a2d243766d03f6fb5\", \"live\": true, \"id\": \"x09a8e86885166446\"}", "{\"sha\": \"5da9ac24c48fa6f44ba7ffafc99718e660d45525\", \"live\": true, \"id\": \"xc2fea0c713f95165\"}", "{\"sha\": \"5daf6b42c35d905841e0121d4af97b1bdfc2a488\", \"live\": true, \"id\": \"x5228870d2d39e4ac\"}", "{\"sha\": \"01ea93d6e50799b2392a68195ba482784322db23\", \"live\": true, \"id\": \"xed001af5c8ada8ea\"}", "{\"sha\": \"d7468ee484021ac01801ad52de7e309b5118f1f8\", \"live\": true, \"id\": \"xb6b66afa315aaf12\"}", "{\"sha\": \"5a75c57a5858a36dff8379646c9bd9a39261cdcd\", \"live\": true, \"id\": \"xc07aaa8b96d99e34\"}", "{\"sha\": \"6567ec69fe357a711cc439df622e4ee9022648ca\", \"live\": true, \"id\": \"xfbb1181f623bb251\"}", "{\"sha\": \"7ead97802c8737b6da0e48ad7c0142d36271269d\", \"live\": true, \"id\": \"xe736053a30e922db\"}", "{\"sha\": \"071908d9abd8175a0227207b59eb05e44b54b264\", \"live\": true, \"id\": \"xd033106b0019b06c\"}", "{\"sha\": \"8ebcabed6505808980c233b612fa9455f013a41a\", \"live\": true, \"id\": \"xe70e80b6bb35ee98\"}", "{\"sha\": \"0b906813bb2a40af70cf30fe79e2d65b410bd6fc\", \"live\": true, \"id\": \"x3975740470a7d533\"}", "{\"sha\": \"0b6aba387947d7860169dfeb776d54513b7205b0\", \"live\": true, \"id\": \"x9974c14ad365b58c\"}", "{\"sha\": \"6e0bd9bc7da3484f4577468a40cf8593c9478818\", \"live\": true, \"id\": \"x9e129aa05dd8d169\"}", "{\"sha\": \"7c9f0c07e770bb41959ca464236a47122f0f55b2\", \"live\": true, \"id\": \"xa9ca45b62cd276f7\"}", "{\"sha\": \"5b3b9ee9a40209cbafbf0a22ac3bca4d768ac352\", \"live\": true, \"id\": \"x8a3cc90d14e10bcb\"}", "{\"sha\": \"c9b74a5e22c63715c12408b4aca0084ecf4e7d75\", \"live\": true, \"id\": \"x8ddec408831737fc\"}", "{\"sha\": \"388ec4252e73b47a02a3e76717a1966d7ff4c4c6\", \"live\": true, \"id\": \"xe8b6c6528134b0d0\"}"], "description": "", "basepoints": 27.0, "slug": "power_rule", "kind": "Exercise", "name": "power_rule", "seconds_per_fast_problem": 46.0, "prerequisites": ["power-rule-basic"], "exercise_id": "power_rule"}, "least_common_multiple": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-properties-numbers/least_common_multiple/", "id": "least_common_multiple", "display_name": "Least common multiple", "title": "Least common multiple", "description": "", "basepoints": 17.0, "slug": "least_common_multiple", "kind": "Exercise", "name": "least_common_multiple", "seconds_per_fast_problem": 10.0, "prerequisites": ["identifying-factors-and-multiples"], "exercise_id": "least_common_multiple"}, "extraneous-solutions-to-radical-equations": {"uses_assessment_items": true, "path": "khan/math/algebra/exponent-equations/radical_equations/extraneous-solutions-to-radical-equations/", "id": "extraneous-solutions-to-radical-equations", "display_name": "Extraneous solutions to radical equations", "title": "Extraneous solutions to radical equations", "all_assessment_items": ["{\"sha\": \"e1955a107ca5fb35c64e85a733c640e6955057e7\", \"live\": true, \"id\": \"xcc2bbf92ceec4abc\"}", "{\"sha\": \"90c90bfbff0e1914e499c7ed77dc4cdbda167ad6\", \"live\": true, \"id\": \"xb9216b50cfac115c\"}", "{\"sha\": \"63e5f05a3772b67cd7c37cddd7f222ade51cbc3d\", \"live\": true, \"id\": \"xfcd0f80f29d85005\"}", "{\"sha\": \"36574f794ec12c2381e95e243977ab67eefdf2cd\", \"live\": true, \"id\": \"xb1707f503eac8b71\"}", "{\"sha\": \"2a5e5a68b93be75e0cf9ae304c959c5c895120f4\", \"live\": true, \"id\": \"x0082a8922a550894\"}", "{\"sha\": \"5937ffab6cd19a52a07d4a2728103511ed73db4d\", \"live\": true, \"id\": \"x74c8ccb8106dcaf3\"}", "{\"sha\": \"ff5000d292071c663d27fec20d728cc6f0ea415f\", \"live\": true, \"id\": \"xe58d5d5661ee453b\"}", "{\"sha\": \"fa67ec9f9118d2a5fea141c21c1103a533dacbe6\", \"live\": true, \"id\": \"x372911c8401f23bb\"}", "{\"sha\": \"d113a089ed415abbe72d85125944688f9f34d59c\", \"live\": true, \"id\": \"x257f297258f58c83\"}", "{\"sha\": \"668cfa13c95feb606846917560b7c28d6a1b0814\", \"live\": true, \"id\": \"xaf07ffc994db63c3\"}", "{\"sha\": \"32a4d024e150785551e5037047912084b84bfbcf\", \"live\": true, \"id\": \"x7e9d1da5710272ec\"}", "{\"sha\": \"cd8eec30bce3e6bbedb4e3e8dfc2b1eb7906e5b2\", \"live\": true, \"id\": \"x30c261862c9f7ce4\"}", "{\"sha\": \"b966fd4b3d18869a504ffdcc456a7327e5af5f91\", \"live\": true, \"id\": \"xe5dfca06c762114b\"}", "{\"sha\": \"d93ef089f3e667e62f7349a31a1d400233420f84\", \"live\": true, \"id\": \"x77d838b9026efeb0\"}", "{\"sha\": \"3d9a238961476bdbca1bcca2ce8d350ea26bd80a\", \"live\": true, \"id\": \"xdccca3a192db6276\"}", "{\"sha\": \"5bbb386f2365625af472e88e5a500a596738f560\", \"live\": true, \"id\": \"x13bb09586345fcd7\"}", "{\"sha\": \"290e8f425986b514683692a965e32f65c3949f1c\", \"live\": true, \"id\": \"xf83c618371c72cce\"}", "{\"sha\": \"81092e8a6eb09b4e8a05045bcf12a1bedd712e43\", \"live\": true, \"id\": \"x2e458c160201e3f1\"}", "{\"sha\": \"bc316e5c4b0ae37588a2e0134764e1cd7bc1ab88\", \"live\": true, \"id\": \"x19b9483aae0f9e8c\"}", "{\"sha\": \"bc2b21cf229d3bef730f7444ab888cd823fad7c4\", \"live\": true, \"id\": \"xeb4d8fd4da714b33\"}", "{\"sha\": \"72255b6eeb9e93e2e70f152e462044254d2a899d\", \"live\": true, \"id\": \"x13d42c36aab5c534\"}", "{\"sha\": \"d18ec0880e556e08997db98eac96bb29d244a098\", \"live\": true, \"id\": \"x29c80fcf8a65aba8\"}", "{\"sha\": \"9d5977131f08c71d211c5fbb10a6dc7a75a080f0\", \"live\": true, \"id\": \"xc1a9cdcd15ed9b9f\"}", "{\"sha\": \"784de59f49a3c501c3370b46c431bd47854a0d5a\", \"live\": true, \"id\": \"x6839cc643606f049\"}", "{\"sha\": \"1d132bc68186316e92e70c975a371b66a788cc63\", \"live\": true, \"id\": \"x10ef0d7fbb918325\"}", "{\"sha\": \"470e36a8ab2d938d4402c607011c16de1e737b52\", \"live\": true, \"id\": \"x13a2b19ed6848ef9\"}", "{\"sha\": \"ad0d1638a20c7a657d17df550e6ae32354256256\", \"live\": true, \"id\": \"x63b50839053b5cf9\"}", "{\"sha\": \"746f99272b5d247c28f5309147c6c080ea60b7a5\", \"live\": true, \"id\": \"x212f31eb1d291d5d\"}", "{\"sha\": \"d0603a9b0aa7273395666195d7e73895bd1e9a58\", \"live\": true, \"id\": \"x71bf3f836547294f\"}", "{\"sha\": \"6a7f6c558db5954ea617ad47b24dd5f959f786d7\", \"live\": true, \"id\": \"xd8a9920eebba3dac\"}", "{\"sha\": \"63cfc9e93cbd9d506cdf81c2162f58315e19e5d1\", \"live\": true, \"id\": \"x46abd5af12fdf9ba\"}", "{\"sha\": \"ee9bbaedbaea8ff8313079161a480ee101ce996a\", \"live\": true, \"id\": \"xe1a6c3b8de0d2374\"}"], "description": "", "basepoints": 10.0, "slug": "extraneous-solutions-to-radical-equations", "kind": "Exercise", "name": "extraneous-solutions-to-radical-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["radical_equations"], "exercise_id": "extraneous-solutions-to-radical-equations"}, "cole-s-the-oxbow-quiz": {"uses_assessment_items": true, "path": "khan/humanities/art-americas/us-art-19c/romanticism-us/cole-s-the-oxbow-quiz/", "id": "cole-s-the-oxbow-quiz", "display_name": "Cole's The Oxbow (quiz)", "title": "Cole's The Oxbow (quiz)", "all_assessment_items": ["{\"sha\": \"a48d008a48797e6f7a2aee3e1aeb62b103b9dc3e\", \"live\": true, \"id\": \"x936224a18b9ce4f5\", \"perseus_api_major_version\": 3}", "{\"sha\": \"05889c798cc25bca598d8274d51c51586be4245d\", \"live\": true, \"id\": \"x0c4c9d313a876626\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4bef46d8b279ef2fbbeee615d183908c6f801cac\", \"live\": true, \"id\": \"xf094ec2885759109\", \"perseus_api_major_version\": 3}", "{\"sha\": \"88e52f6986e5e19cba17bb02ead95455e7ddffcd\", \"live\": true, \"id\": \"xe06747cab18ce5cf\", \"perseus_api_major_version\": 0}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "cole-s-the-oxbow-quiz", "kind": "Exercise", "name": "cole-s-the-oxbow-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cole-s-the-oxbow-quiz"}, "greatest_common_divisor": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-properties-numbers/greatest_common_divisor/", "id": "greatest_common_divisor", "display_name": "Greatest common factor", "title": "Greatest common factor", "all_assessment_items": ["{\"sha\": \"28c28bd2bd0b78a7ddf8076c325593b818993b59\", \"live\": true, \"id\": \"x3495a99970ffd6e4\"}", "{\"sha\": \"ee3d5ebd299780993fea43de0dea4cee13bc89f9\", \"live\": true, \"id\": \"x471e169518d4145d\"}", "{\"sha\": \"e075fd7cc72f4ecccad8980d4c7f39c2a42ad8a8\", \"live\": true, \"id\": \"xcf8492f4751a309c\"}", "{\"sha\": \"ce42e0e8d1b88ab5cf00d549acdfabc7af5c2de3\", \"live\": true, \"id\": \"xb486308d3063c81b\"}", "{\"sha\": \"9e3013b1c9188293de9f63cd5f59ea184f6fa37b\", \"live\": true, \"id\": \"x8c3ec655e72a6a80\"}", "{\"sha\": \"c4509aaca6d73f8b6323caa6f213bb6bd8d84d4d\", \"live\": true, \"id\": \"xd67759339bf95321\"}", "{\"sha\": \"b9e137c83ab82b5437aac30f50eb1ca74f55d072\", \"live\": true, \"id\": \"x9ed65b2d9e65ef08\"}", "{\"sha\": \"8c529b43db83ff6935906c51713db2543aa087da\", \"live\": true, \"id\": \"xdce3bb6df4ccc180\"}", "{\"sha\": \"76a0351325e48762870e5856ff9f6bedddb75d4a\", \"live\": true, \"id\": \"xf2f172c87a0cac61\"}", "{\"sha\": \"a3efb97188f55a21cb84bf0208d50a3d3bf158fb\", \"live\": true, \"id\": \"x4a47a833401846bd\"}", "{\"sha\": \"de0efbd35646f27f8dcc1ae96241e87a0c4983d0\", \"live\": true, \"id\": \"xcb5b71a3834abd8d\"}", "{\"sha\": \"23cb38a282df72269b67d3bb177b42e4420c9c9c\", \"live\": true, \"id\": \"x86eab47c9dcdbf0d\"}", "{\"sha\": \"806103a039430488e0885210be52c3f0a148387e\", \"live\": true, \"id\": \"x81028d767e7f8fb3\"}", "{\"sha\": \"880dde5abe6324549eebd8ac33ca3dfd40c92b0b\", \"live\": true, \"id\": \"xd1db2ddeefa4e9fc\"}", "{\"sha\": \"838660530fa334af3d55ab30e5354e8f891809f2\", \"live\": true, \"id\": \"x9fb57ac977c16299\"}", "{\"sha\": \"8bc3c91c1b423e3f883c5dc5a6f321cc70810c7a\", \"live\": true, \"id\": \"x141bb0069902bb20\"}", "{\"sha\": \"b0f5c914e71f4449c58291378f03629bd7ac44e2\", \"live\": true, \"id\": \"x1941a6e076097a9d\"}", "{\"sha\": \"541ae4323f03e8f1a3d388e3db7caf4df1cb167e\", \"live\": true, \"id\": \"x9b4c3bd416926ea2\"}", "{\"sha\": \"b72faad6177920dfe2d13ad26da12449cfaf7381\", \"live\": true, \"id\": \"xb3e0151377f74db2\"}", "{\"sha\": \"ed5534bdbfd6492926ab0d027fccd1bf6e620f65\", \"live\": true, \"id\": \"xc5f81fdc231a1182\"}", "{\"sha\": \"cd78edb46312541f2ecf2d33ab0a1031aded8b12\", \"live\": true, \"id\": \"x4b892c7de24030de\"}", "{\"sha\": \"91805c0afabcf91396f5e326807eed18de54836b\", \"live\": true, \"id\": \"x939142403e469879\"}", "{\"sha\": \"9d6f5b1da95ea5a805ce08d15aa7a4e299e59632\", \"live\": true, \"id\": \"x26262a1a99c962a4\"}", "{\"sha\": \"cf7807558b6419527fed4b62f07a2e573a1e3517\", \"live\": true, \"id\": \"xeca1a40361c94a2e\"}", "{\"sha\": \"5ddf7a36314e4300d31db2b1d2112e85d693ba7e\", \"live\": true, \"id\": \"x74cd5d430cc4ab03\"}", "{\"sha\": \"f1bb1ed50f0afb336500370561998b88b3dc5ac5\", \"live\": true, \"id\": \"x1c1feee737d43c19\"}", "{\"sha\": \"720fe49ec6e87ce7bbd639aed5b6c9876ab44168\", \"live\": true, \"id\": \"x9396952e11dbc519\"}", "{\"sha\": \"c6e71cfcfe66167ac91430d47a0b1c9b87ce2dfc\", \"live\": true, \"id\": \"x391da4947705bec4\"}", "{\"sha\": \"9afb4aa884000c5f6866a33db118030a2743610c\", \"live\": true, \"id\": \"xada96385a435a30c\"}", "{\"sha\": \"801f22fab14d8e68ee6e0619ae29399b06b673de\", \"live\": true, \"id\": \"x6eb56ab5da6c862b\"}", "{\"sha\": \"2f505704c2b89c0cc3ce4df62996f2d86144309b\", \"live\": true, \"id\": \"x6105f4c88f2586ef\"}", "{\"sha\": \"5e2f5111f8201f2ae1858afea23abaac1fdb5e0f\", \"live\": true, \"id\": \"xb5d793630d362dfe\"}", "{\"sha\": \"eade0366f13d02c9dfb1e037eca4012507a97839\", \"live\": true, \"id\": \"xf96b1dc8fb8fcc26\"}"], "description": "", "basepoints": 13.0, "slug": "greatest_common_divisor", "kind": "Exercise", "name": "greatest_common_divisor", "seconds_per_fast_problem": 6.0, "prerequisites": ["identifying-factors-and-multiples"], "exercise_id": "greatest_common_divisor"}, "solving-2-step-inequalities": {"uses_assessment_items": true, "path": "khan/math/algebra/linear_inequalities/inequalities/solving-2-step-inequalities/", "id": "solving-2-step-inequalities", "display_name": "Two-step inequalities", "title": "Two-step inequalities", "all_assessment_items": ["{\"sha\": \"7f7c9e549f66ccecf0c7d5eed74ac8ff02f3c1f2\", \"live\": true, \"id\": \"xde079eb4\", \"perseus_api_major_version\": null}", "{\"sha\": \"834e479a3248c0634a1884c95bf0f8017f5589d2\", \"live\": true, \"id\": \"xc7e0f146\", \"perseus_api_major_version\": null}", "{\"sha\": \"5756d5c85e0b514f5a55d77414d298fb2d6854bf\", \"live\": true, \"id\": \"x4edbacf96bff75db\", \"perseus_api_major_version\": null}", "{\"sha\": \"a211236f3f0b7c61322ffb5e58c7fb123cfbdfaa\", \"live\": true, \"id\": \"xbb4a24fabe716f9f\", \"perseus_api_major_version\": null}", "{\"sha\": \"4837f47f000b3d404817714e581b5a468667886a\", \"live\": true, \"id\": \"x3f35a186b63c758f\", \"perseus_api_major_version\": null}", "{\"sha\": \"e11349b2d4f67c439493a0dbdb7b203723f812b4\", \"live\": true, \"id\": \"xcc418dbb\", \"perseus_api_major_version\": null}", "{\"sha\": \"5b0154b7d33e73e25c8f4ea224209e19c964087b\", \"live\": true, \"id\": \"x244c8e07c758767a\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee696cb02aefdb918eaca19fd952d30e4d8ac1f6\", \"live\": true, \"id\": \"xbe14bfad\", \"perseus_api_major_version\": null}", "{\"sha\": \"8b48e688118318c0dfccf75ffa464040fdfd03ee\", \"live\": true, \"id\": \"x44c9cfa62c07738b\", \"perseus_api_major_version\": null}", "{\"sha\": \"48ca83a503b837f0aec7a024e759607a91f0f8a5\", \"live\": true, \"id\": \"xa17cd097\", \"perseus_api_major_version\": 0}", "{\"sha\": \"67656cad2570f5259c9caca9e8ef88db7e730e93\", \"live\": true, \"id\": \"xd473f09635669e90\", \"perseus_api_major_version\": null}", "{\"sha\": \"a2a057dac22911436eb7370bd66756fed2ef6423\", \"live\": true, \"id\": \"xed764ffffd6dd150\", \"perseus_api_major_version\": null}", "{\"sha\": \"d8b40c35847b26353779d856b507bacdcfbd3344\", \"live\": true, \"id\": \"x23cce493\", \"perseus_api_major_version\": null}", "{\"sha\": \"a720af77971bfeb67588442494a87b2449ee61db\", \"live\": true, \"id\": \"xf67293869dd13e1a\", \"perseus_api_major_version\": null}", "{\"sha\": \"9853b88e1d9766fe2c0d1d2d407fbed6447062ab\", \"live\": true, \"id\": \"xd7cb48d7\", \"perseus_api_major_version\": null}", "{\"sha\": \"fcbf730ccec61b72cd41d4541511f9b6eee6bbee\", \"live\": true, \"id\": \"x01c0841067970ad1\", \"perseus_api_major_version\": null}", "{\"sha\": \"94f0235a786a43f5eb88884b8e30284bc7115d3c\", \"live\": true, \"id\": \"x941292dd\", \"perseus_api_major_version\": null}", "{\"sha\": \"af7151e9e2d4e4fcfb3372199b405c5dce67eba3\", \"live\": true, \"id\": \"xe26e0f14\", \"perseus_api_major_version\": null}", "{\"sha\": \"5f8f980f828d09190038337671a668010f1e10e5\", \"live\": true, \"id\": \"x491969af0942f7d5\", \"perseus_api_major_version\": null}", "{\"sha\": \"e9d20725e07fcc7f57aaa22f17b3b4a0e271cd1b\", \"live\": true, \"id\": \"xa1b5b867\", \"perseus_api_major_version\": null}"], "description": "Solve 2-step inequalities like 3x + 2 > 5.", "basepoints": 10.0, "slug": "solving-2-step-inequalities", "kind": "Exercise", "name": "solving-2-step-inequalities", "seconds_per_fast_problem": 4.0, "prerequisites": ["one_step_inequalities", "linear_equations_2"], "exercise_id": "solving-2-step-inequalities"}, "multiplying-fractions-by-fractions-word-problems": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/mult-fracs-word-probs-pre-alg/multiplying-fractions-by-fractions-word-problems/", "id": "multiplying-fractions-by-fractions-word-problems", "display_name": "Multiplying fractions by fractions word problems", "title": "Multiplying fractions by fractions word problems", "all_assessment_items": ["{\"sha\": \"c22c226b5b2922b7da3157b15da6edcda205f41b\", \"live\": true, \"id\": \"x2a1bc1d6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"125825d21822aefeb295d17f577376738f46e29c\", \"live\": true, \"id\": \"x199b68d6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a36d68eda499ea176af00138f31af8bf797bef64\", \"live\": true, \"id\": \"xbf8d158e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71182ccc56217243fa5fec15feee12f7d247b9b7\", \"live\": true, \"id\": \"xa66a23c4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"575d4a3318197f80c8474c53a027cea46b8d64c6\", \"live\": true, \"id\": \"x1ed39bc9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"794c0d472ca13fcb44179f7d85f095a9def6f7a2\", \"live\": true, \"id\": \"x0aa14558\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c512ff170eeef6561587cac13524790696cb0834\", \"live\": true, \"id\": \"x3568af66\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c3961d9c602a268d4cdd6c2548c03fbd572223b\", \"live\": true, \"id\": \"x5487f974\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f47dfd8e5f861b9e777463ae38761fb1cb7d30e9\", \"live\": true, \"id\": \"x22e12ca6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"def94bab69887fa2fe62ebc0aab04f4671e23d1c\", \"live\": true, \"id\": \"x204aa315\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"298d7f55d8954ef289c5ee30d39bba76cdffe6b0\", \"live\": true, \"id\": \"xb8342df5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b32b46b0d8cb78016ff2023d757f08f0379e7c95\", \"live\": true, \"id\": \"xfaa08261\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4a5139c251d5437f6f4cc152f421ab589b14dfcd\", \"live\": true, \"id\": \"xa27dedee\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"38e57a29077557b75967ab260e1f998a8f807d0f\", \"live\": true, \"id\": \"xc1a8ee7e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8fd0dc29bddf0fae53dc628a45299c95e53c0221\", \"live\": true, \"id\": \"x1d8f35e4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11c84acbd4ac769d2d91b4f1f37255cceba7484d\", \"live\": true, \"id\": \"x9e1b8e1b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d114a1b49f83ae4f48b42805923fc8fb9073d73c\", \"live\": true, \"id\": \"x35d4b973\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"97f8c74e1bbbaa36952e169f7d927c612970dc9f\", \"live\": true, \"id\": \"x85288c72\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa0cb597d103e229a0d79a4f78f8a8ace0104599\", \"live\": true, \"id\": \"x2137b469\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1779f56bddfd986d3d653076fdaad0a8867a77e6\", \"live\": true, \"id\": \"xd824c0e8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef69ff5064cb3449ba48ab9113c582785b1b744d\", \"live\": true, \"id\": \"xb2575ae9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7201b7443fea2c4c12ea9ce9615bf6719f906cd2\", \"live\": true, \"id\": \"x9f0e37e5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eaad794966131169f69397b7d8816ea30a7d6b4c\", \"live\": true, \"id\": \"xf47f4b42\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6452025e0a7fae487aa0affaae49d2bbca01897\", \"live\": true, \"id\": \"xc20a359c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Solve and interpret fraction multiplication word problems.", "basepoints": 22.0, "slug": "multiplying-fractions-by-fractions-word-problems", "kind": "Exercise", "name": "multiplying-fractions-by-fractions-word-problems", "seconds_per_fast_problem": 22.0, "prerequisites": ["multiplying_fractions_0.5", "fraction-multiplication-as-scaling"], "exercise_id": "multiplying-fractions-by-fractions-word-problems"}, "convergence-and-divergence-of-series": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/convergence-and-divergence-of-series/", "id": "convergence-and-divergence-of-series", "display_name": "Convergence and divergence of series", "title": "Convergence and divergence of series", "all_assessment_items": ["{\"sha\": \"d87d5d910b0aa03a2153e97eab3d42420496cf75\", \"live\": true, \"id\": \"x6d3769d402985f69\"}", "{\"sha\": \"587226ff4dec555da2107ef80c3d434713fc9450\", \"live\": true, \"id\": \"x8c31f2d491b462ca\"}", "{\"sha\": \"d6591d6413788ba14b9d71cc14a1b5523ba1932d\", \"live\": true, \"id\": \"x7654995a201aa79f\"}", "{\"sha\": \"d8adbc46c0a1e455ac694c05f2477086dd2da7f8\", \"live\": true, \"id\": \"x3bc125a3bb1c24c4\"}", "{\"sha\": \"4937c7a599cf1e933a4332029dbf775501a9e56a\", \"live\": true, \"id\": \"x9315d44c82d4e17f\"}", "{\"sha\": \"21f373e6950a60602e31323a79fcffff3340f2d7\", \"live\": true, \"id\": \"x1aef97836e73511e\"}", "{\"sha\": \"29adf2f35147db0c93e9a178768a0a40785d055f\", \"live\": true, \"id\": \"x7066c19ca20f3fff\"}", "{\"sha\": \"9663a6fb4d87221547e0ebc10c3cbe4a51d69e74\", \"live\": true, \"id\": \"x64f3c91c003294d5\"}", "{\"sha\": \"c754cb67e4da6c2f076bb9c746b60c8f39fa392b\", \"live\": true, \"id\": \"xb42c1d8b792961ad\"}", "{\"sha\": \"9217c965a5cb6a5dd7875a2ab31bc4c96b4b8aad\", \"live\": true, \"id\": \"x316bc0fc0c131cce\"}", "{\"sha\": \"3df2e3ce233e5b087b9492b5d56c275acc098961\", \"live\": true, \"id\": \"xde7e6e74b16b54cb\"}", "{\"sha\": \"3f2dd1653a07b8e07d7591beadf7e0017887f432\", \"live\": true, \"id\": \"xa39191ba42ceeb05\"}", "{\"sha\": \"36f13078ec8bc7539d0167e11c5a1b941402ddaa\", \"live\": true, \"id\": \"xcc3ee28e950fd822\"}", "{\"sha\": \"fedcf1b26246faec71910faa71a7e28a5e0d526a\", \"live\": true, \"id\": \"x0cf2ab78da17aa56\"}", "{\"sha\": \"16e431880c4f5e7aab0315589d0dc8da3c6a6957\", \"live\": true, \"id\": \"xee1271400e76e721\"}", "{\"sha\": \"5ffb8243045b5d994656a5ca364988cefe33f0ac\", \"live\": true, \"id\": \"x7483dcc4f9e82111\"}", "{\"sha\": \"ae5821c41ca1c7539a54b601fcdae2f6ca1aec40\", \"live\": true, \"id\": \"x7d5ddce6cb5b6dbe\"}", "{\"sha\": \"1f2ff172427aaa36728650a1a997dba51e287f51\", \"live\": true, \"id\": \"x9499bd69d3a28c88\"}", "{\"sha\": \"f428e343fb01e72d9bb57722430023bea78dedad\", \"live\": true, \"id\": \"x19a25c227e0cd080\"}", "{\"sha\": \"a65fb5c434ba3e205547076a7b00bdf6142a9c24\", \"live\": true, \"id\": \"x307a188f713dd7c8\"}", "{\"sha\": \"14816fb497c040767394f0d2f587084b5a89b67b\", \"live\": true, \"id\": \"xbb0ebf2c0b08d99e\"}", "{\"sha\": \"e2df9e1bf2ae8c68467d36d0c92a715860919c6f\", \"live\": true, \"id\": \"x525f0fc7b62a90ee\"}", "{\"sha\": \"b37238ed817872c4ce7933789b025e095bc919b3\", \"live\": true, \"id\": \"xcf96751299b11d85\"}", "{\"sha\": \"9bbce64a7d6d9c82ded285e497dcb8b47a2cff3e\", \"live\": true, \"id\": \"xfe35dce0f9eb0083\"}", "{\"sha\": \"d969b37b6452d05d025a6592215fd5352f8a32f1\", \"live\": true, \"id\": \"x9a6a53a1f3ca6aa0\"}", "{\"sha\": \"9433eb3dbbc246e54fde86c23dbe4d67b22add2a\", \"live\": true, \"id\": \"x080db56b2759c321\"}"], "description": "", "basepoints": 10.0, "slug": "convergence-and-divergence-of-series", "kind": "Exercise", "name": "convergence-and-divergence-of-series", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-series"], "exercise_id": "convergence-and-divergence-of-series"}, "gcf-and-lcm-word-problems": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-properties-numbers/gcf-and-lcm-word-problems/", "id": "gcf-and-lcm-word-problems", "display_name": "GCF and LCM word problems", "title": "GCF and LCM word problems", "all_assessment_items": ["{\"sha\": \"cfb1acdb55e27a13d0513f5fdc77c4a743bdddb3\", \"live\": true, \"id\": \"xc2f681f3377a3e16\", \"perseus_api_major_version\": null}", "{\"sha\": \"0f3e81b63d5dd4ecd64fa80bfe31a15fa3f80234\", \"live\": true, \"id\": \"xb3661d6ad7bbfd3f\", \"perseus_api_major_version\": null}", "{\"sha\": \"08b0c499bb05191b6c7f7d384b0ebdb809c51bf3\", \"live\": true, \"id\": \"x57fd1fdf92a1d2fe\", \"perseus_api_major_version\": null}", "{\"sha\": \"f17bce8109d856f8f87dca02a60d54c4bc003fd2\", \"live\": true, \"id\": \"x35ee0b1000e40bd6\", \"perseus_api_major_version\": null}", "{\"sha\": \"de7a87ac2f922431a7fa9792894b733837c26fef\", \"live\": true, \"id\": \"xe52d80992e500d08\", \"perseus_api_major_version\": null}", "{\"sha\": \"a01b1d0a041a02c26a114013f0b360bf72dff364\", \"live\": true, \"id\": \"xb0d1c2debcdf858c\", \"perseus_api_major_version\": null}", "{\"sha\": \"7f9290c1cb4ca316f8710032583841e1f0d9635d\", \"live\": true, \"id\": \"xf055900a0efdee46\", \"perseus_api_major_version\": null}", "{\"sha\": \"41052fd97b7c27815550d94e004b2e3c0f752841\", \"live\": true, \"id\": \"x39ac1805a5c07517\", \"perseus_api_major_version\": null}", "{\"sha\": \"5735ac9f2a36e9e39a5eafc7c36dc3b8704dc5e5\", \"live\": true, \"id\": \"x2377034e13009725\", \"perseus_api_major_version\": null}", "{\"sha\": \"3de2f2b64612f538011672b94810c98f6ea764ff\", \"live\": true, \"id\": \"xedd8345c440414fc\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3f4a139fe336eeaccac2dde16c78579221cf59e7\", \"live\": true, \"id\": \"x17ac0c484d510a71\", \"perseus_api_major_version\": null}", "{\"sha\": \"7dd2171feddbe215392111e3c6378a0d9fbe4bd4\", \"live\": true, \"id\": \"x7b51840528af61f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"f650953563a3b7262b8e6fe0b0eb4bab3798ac04\", \"live\": true, \"id\": \"x64975ae22189ed7e\", \"perseus_api_major_version\": null}", "{\"sha\": \"759acd683572671544f9b0bdcca2e9082dc2219e\", \"live\": true, \"id\": \"x48a7e6bd3d4e36d9\", \"perseus_api_major_version\": null}", "{\"sha\": \"15a48e29b02b4119455c30fe1a87bba1191f9d37\", \"live\": true, \"id\": \"x51d3272e3859e12c\", \"perseus_api_major_version\": null}", "{\"sha\": \"5c550dd6618ab886768f6c971e6f84fb52805050\", \"live\": true, \"id\": \"x4b55ebd35c1043c9\", \"perseus_api_major_version\": null}", "{\"sha\": \"8a92dc8e380ac5f0cfc34c99e0ea109df3ee3d4e\", \"live\": true, \"id\": \"x85dac7ebe6ee8672\", \"perseus_api_major_version\": null}", "{\"sha\": \"469be2e99ae93e9f60ee9149cd237889b4c05e1e\", \"live\": true, \"id\": \"x054b2d65677af1e6\", \"perseus_api_major_version\": null}", "{\"sha\": \"bfa9daeb8da4c901429ad4da383070a4ef48f439\", \"live\": true, \"id\": \"x70839299c279aacc\", \"perseus_api_major_version\": null}", "{\"sha\": \"ac4f4629dea6d1578938ebc1a00e80adf1746cd7\", \"live\": true, \"id\": \"x458e9c55590861d8\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "gcf-and-lcm-word-problems", "kind": "Exercise", "name": "gcf-and-lcm-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["greatest_common_divisor", "least_common_multiple"], "exercise_id": "gcf-and-lcm-word-problems"}, "order_of_operations": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-properties-numbers/order_of_operations/", "id": "order_of_operations", "display_name": "Order of operations with negative numbers", "title": "Order of operations with negative numbers", "description": "Practice evaluating expressions using the order of operations. Numbers used in these problems may be negative.", "basepoints": 16.0, "slug": "order_of_operations", "kind": "Exercise", "name": "order_of_operations", "seconds_per_fast_problem": 9.0, "prerequisites": ["multiplying_and_dividing_negative_numbers"], "exercise_id": "order_of_operations"}, "comparing-with-multiplication": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/comparing-with-multiplication/", "id": "comparing-with-multiplication", "display_name": "Comparing with multiplication", "title": "Comparing with multiplication", "all_assessment_items": ["{\"sha\": \"0005f91834c77345a86af552aaf75c5862935407\", \"live\": true, \"id\": \"xeacf0bb0\"}", "{\"sha\": \"db87cf2e447d76a66555dc2f01c389e0e0a6baff\", \"live\": true, \"id\": \"x5515f5e4\"}", "{\"sha\": \"0c7800b2be4b9be0f532e9610e2342d3f8bd1ea1\", \"live\": true, \"id\": \"x492905ad\"}", "{\"sha\": \"c8bed02ca3cd557b5aaffa938da26f86b44d1b22\", \"live\": true, \"id\": \"x2c53ca3f\"}", "{\"sha\": \"dd9639930a1c496c0b6ab06928c75637d451134b\", \"live\": true, \"id\": \"xafa3fd6e\"}", "{\"sha\": \"3f97e2f510f9b7b8040fb491fd46c37ec1811f0b\", \"live\": true, \"id\": \"x632f427c\"}", "{\"sha\": \"042c153329269d616a3758caf829a544ad2b1df0\", \"live\": true, \"id\": \"x716eeed7\"}", "{\"sha\": \"fcc0c7bff3678b6ca76103d7d3af9831f07b2c79\", \"live\": true, \"id\": \"xfd5c759b\"}", "{\"sha\": \"45cb122246d302a20b2b36d11b7e174cb9943c03\", \"live\": true, \"id\": \"xcfa4c856\"}", "{\"sha\": \"833c765e55c4427ed6f66b396303889881a4c4e5\", \"live\": true, \"id\": \"x65f30e11\"}", "{\"sha\": \"91c00654c44e996f9745d19eac4deae90091f9f1\", \"live\": true, \"id\": \"x20bc9f74\"}", "{\"sha\": \"12140505caafdc54af9b7b3a47ca1ac6455315eb\", \"live\": true, \"id\": \"xbbf3c2af\"}", "{\"sha\": \"344296cd726c4b4dd15f1106160cdb9580ecdf5f\", \"live\": true, \"id\": \"x2be04ad8\"}", "{\"sha\": \"15d95b5001e4d50354a200175da49931d8ef59f2\", \"live\": true, \"id\": \"xc98a10ed\"}", "{\"sha\": \"1efbe47bf5f073e6ce8aeaf461781c31aaa90a0a\", \"live\": true, \"id\": \"xe384663e\"}", "{\"sha\": \"03cc5b077a081b78c000ca0eff5709983e379391\", \"live\": true, \"id\": \"x8997657f\"}", "{\"sha\": \"1a141b9fcfbc141f4a7fe95a62e185b76e14cef4\", \"live\": true, \"id\": \"x95df8888\"}", "{\"sha\": \"7d78d20fdb060856663c4ed34c33b9d2c76df717\", \"live\": true, \"id\": \"x7744703b\"}", "{\"sha\": \"38660929915d95b27c8497554fe4a85f4cc94894\", \"live\": true, \"id\": \"xf38a7068\"}", "{\"sha\": \"fbc9b32be4f8ccb559057e6fe7f706f8b14f49df\", \"live\": true, \"id\": \"x414e5532\"}", "{\"sha\": \"1e2ec77a40fd7b4d712444c113008680f3925211\", \"live\": true, \"id\": \"x9f471b63\"}", "{\"sha\": \"97d55ea5a8faefc3528c20583981fa1b5a0d59c6\", \"live\": true, \"id\": \"x6d8c1543\"}", "{\"sha\": \"1ed590bd1b7d6883ca33e359ae0f5188d3858575\", \"live\": true, \"id\": \"x48969d5f\"}", "{\"sha\": \"05ebc00d23b351008a65289dd2a1ef436f6537d8\", \"live\": true, \"id\": \"x36403920\"}", "{\"sha\": \"b4832d97f858ac58b01155862a30ca32ab42a64c\", \"live\": true, \"id\": \"x849cca2b\"}", "{\"sha\": \"23f0e7c40604b3d239f8ad278310b013d1e64f13\", \"live\": true, \"id\": \"x282745de\"}", "{\"sha\": \"4932b28196c89fb8e2d4c39937131059581d4ab6\", \"live\": true, \"id\": \"x7871b825\"}", "{\"sha\": \"6612bd12240206b9f7d9f32ec6bf122190e3abba\", \"live\": true, \"id\": \"xf0a2c413\"}", "{\"sha\": \"3ec5bea9b533d3e004beacf65851477b74eee436\", \"live\": true, \"id\": \"x6043eacd\"}", "{\"sha\": \"ca702256a6e9fd4ec4d2b5c8e51e46cfcac6932b\", \"live\": true, \"id\": \"x345287b7\"}", "{\"sha\": \"8b78e7d7720b1cba47edf05420560dd1c16e366c\", \"live\": true, \"id\": \"xeeebc3be\"}", "{\"sha\": \"2bd0431a5133298c65e3c57dfafd9dac3bd104d9\", \"live\": true, \"id\": \"x86bbdfa1\"}"], "description": "Rewrite multiplication equations as comparisons and comparisons as equations. \u00a0", "basepoints": 10.0, "slug": "comparing-with-multiplication", "kind": "Exercise", "name": "comparing-with-multiplication", "seconds_per_fast_problem": 4.0, "prerequisites": ["two-step-word-problems-with-addition--subtraction--multiplication--and-division"], "exercise_id": "comparing-with-multiplication"}, "subtracting_decimals_0.5": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/adding-decimals-pre-alg/subtracting_decimals_05/", "id": "subtracting_decimals_0.5", "display_name": "Subtracting decimals 0.5", "title": "Subtracting decimals 0.5", "description": "Complete subtraction problems where both numbers are written to the tenths place. \u00a0\u00a0", "basepoints": 20.0, "slug": "subtracting_decimals_05", "kind": "Exercise", "name": "subtracting_decimals_0.5", "seconds_per_fast_problem": 16.0, "prerequisites": ["regrouping-decimals", "patterns-in-zeros"], "exercise_id": "subtracting_decimals_0.5"}, "mechanisms-of-antibody-variability-during-b-cell-development": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/mechanisms-of-antibody-variability-during-b-cell-development/", "id": "mechanisms-of-antibody-variability-during-b-cell-development", "display_name": "Mechanisms of antibody variability during B-cell development", "title": "Mechanisms of antibody variability during B-cell development", "all_assessment_items": ["{\"sha\": \"fc4146aa603f10365da8de57a59c668beb1bc6c0\", \"live\": true, \"id\": \"x90f6db23d2638975\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e0674a377864d687aa589460dc7ecafd9b1652f1\", \"live\": true, \"id\": \"xbdbb872a2661df79\", \"perseus_api_major_version\": null}", "{\"sha\": \"92714bc218d2ebd064b66b81b537f010f704221e\", \"live\": true, \"id\": \"x7f04f6528c1dfba6\", \"perseus_api_major_version\": null}", "{\"sha\": \"febedb704434bd0589ffc9cffaa629431ea5ceef\", \"live\": true, \"id\": \"x816c45b9eed134e4\", \"perseus_api_major_version\": null}", "{\"sha\": \"378b28f959c866173e25f46f9c19639100f76b29\", \"live\": true, \"id\": \"xdb10d4ea1936a096\", \"perseus_api_major_version\": null}"], "description": "Questions related to DNA and the immune system", "basepoints": 10.0, "slug": "mechanisms-of-antibody-variability-during-b-cell-development", "kind": "Exercise", "name": "mechanisms-of-antibody-variability-during-b-cell-development", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mechanisms-of-antibody-variability-during-b-cell-development"}, "components_of_vectors": {"uses_assessment_items": true, "path": "khan/math/precalculus/vectors-precalc/rect-form/components_of_vectors/", "id": "components_of_vectors", "display_name": "Components of vectors", "title": "Components of vectors", "all_assessment_items": ["{\"sha\": \"21fd5e508e339383f30dc940245e2ed8c0f7fc61\", \"live\": true, \"id\": \"xb0f6c69905e5ddd0\"}", "{\"sha\": \"9383343c48275b7b84d278a704a8608f6b4459ce\", \"live\": true, \"id\": \"xba6014bcb71a6643\"}", "{\"sha\": \"d34a114e460051c352f8c27f81720a02b9e68064\", \"live\": true, \"id\": \"x49d73d48b3ef7749\"}", "{\"sha\": \"393301588fdf0a20474eb4a2a56535e72288f210\", \"live\": true, \"id\": \"xf798a652ae256722\"}", "{\"sha\": \"6030407553e920bc57347f61058e57d2f03fb81c\", \"live\": true, \"id\": \"x0fb2c9173ea3eff8\"}", "{\"sha\": \"ed979b86219ff719c3548de97026e17e7fb07861\", \"live\": true, \"id\": \"x4effef7c48318c55\"}", "{\"sha\": \"1cea4a424f3a44d67e490919728f205115d45ba4\", \"live\": true, \"id\": \"xe404566ee063bb70\"}", "{\"sha\": \"22b7382d2cfd5804e8c880b510443805c005946a\", \"live\": true, \"id\": \"xfd627f9d70963ce2\"}", "{\"sha\": \"b96f92beadeaf19ec3773f73a78e91e48d997c35\", \"live\": true, \"id\": \"x8a9bdf83271d3ef7\"}", "{\"sha\": \"0a16ad4c327cc67daa882eb0f31943659785d8e4\", \"live\": true, \"id\": \"x8303f59f299c546f\"}", "{\"sha\": \"78b464ece0b3e3026ec65913f9c83b917e958463\", \"live\": true, \"id\": \"xd82e00d77b634705\"}", "{\"sha\": \"8758cd8325851565a2bab90752e5e700783ae5ae\", \"live\": true, \"id\": \"xdb46d2e82529d63d\"}", "{\"sha\": \"618a89eee90fe9d4f3efb90eab94b21e8cc0191b\", \"live\": true, \"id\": \"x1e592dd410da21cd\"}", "{\"sha\": \"7e4d0458fb16088a5e4cad2cd9cfa09bd14090af\", \"live\": true, \"id\": \"xc93544ac9af1e63c\"}", "{\"sha\": \"e96d5ea99a62c5e88a6ff3f7882d7583f43f3db2\", \"live\": true, \"id\": \"x7b76b24d23acf11e\"}", "{\"sha\": \"46d49890d05854593b6d085c9aa366e7f450d764\", \"live\": true, \"id\": \"x519d13add2038d7f\"}", "{\"sha\": \"be408405dad3f5d27a4058c8a23190010f65b23d\", \"live\": true, \"id\": \"x3dc2d461431ac5eb\"}", "{\"sha\": \"bc1ea17d9353bb52c00240530fa091acd4c3ae8e\", \"live\": true, \"id\": \"x47b0eb366744dc85\"}", "{\"sha\": \"494cc3b07ac0130fc6eaf15cd8463b4629df8f88\", \"live\": true, \"id\": \"x45c8d525e337b1c5\"}", "{\"sha\": \"ab438f1c16a676ad53595d43b818b653db13e4e8\", \"live\": true, \"id\": \"x5ed11157d310b3ea\"}", "{\"sha\": \"2a8994918dfdf41fe57b003b5d0f30607816c4d5\", \"live\": true, \"id\": \"x7da8542a4af55359\"}", "{\"sha\": \"2f9fc5a5109b02746385deb187eee89e60f6db15\", \"live\": true, \"id\": \"x29c64ca9ce7cb325\"}", "{\"sha\": \"eba6c2706e881238aae271f88e3850279e445730\", \"live\": true, \"id\": \"x7401dfb1c04c0120\"}", "{\"sha\": \"aca740e8cf4ca4c944ea8470f71e6a4626b60681\", \"live\": true, \"id\": \"x73b012cac381dc82\"}", "{\"sha\": \"e1658714b5129e872bbe78a83a6aa17bcf85e809\", \"live\": true, \"id\": \"xcd1cc56dc004fda9\"}", "{\"sha\": \"1ce33a353361c1e30e3ac165c519d60afb77450b\", \"live\": true, \"id\": \"xab40db2c3af53471\"}", "{\"sha\": \"3e48d1e61eab978c9c8ab4e5f7a0afe4b651b4ce\", \"live\": true, \"id\": \"xba5d45540a86fd7a\"}", "{\"sha\": \"ce952ed071051230c61e9a4a064798f1950c839f\", \"live\": true, \"id\": \"xee06c70e82826714\"}", "{\"sha\": \"0a3afa346d95fc9ac6627aec809d90674c64fc6e\", \"live\": true, \"id\": \"x76f1bbc4cdcc4f81\"}", "{\"sha\": \"35d536ac4e9a6894467393c08803aec2f2a687ee\", \"live\": true, \"id\": \"xc05f64d484c02c08\"}"], "description": "", "basepoints": 5.0, "slug": "components_of_vectors", "kind": "Exercise", "name": "components_of_vectors", "seconds_per_fast_problem": 0.0, "prerequisites": ["recognizing-vector-quantities"], "exercise_id": "components_of_vectors"}, "the-evolution-of-gecko-toepads": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-evolution-of-gecko-toepads/", "id": "the-evolution-of-gecko-toepads", "display_name": "The evolution of gecko toepads", "title": "The evolution of gecko toepads", "all_assessment_items": ["{\"sha\": \"58d00ef4d713dac8c7083b64158e16e893574502\", \"live\": true, \"id\": \"x1d1a24a34d6ccf8f\"}", "{\"sha\": \"ddc9835ae622bedb54db8d04f49a0b2752b8ca52\", \"live\": true, \"id\": \"x993e9de3a33962d8\"}", "{\"sha\": \"b74b366473be685411e4b4b6db04ff464aa17cb2\", \"live\": true, \"id\": \"x304a4a110f716b7b\"}", "{\"sha\": \"5f0f7785605d89963e5fbb23b8d4eafe25d8d357\", \"live\": true, \"id\": \"x93a05c190d15d771\"}", "{\"sha\": \"bc882d20d5179080514e468f405447c06097df1b\", \"live\": true, \"id\": \"xce6a602a28d6d555\"}"], "description": "Questions related to evolution", "basepoints": 10.0, "slug": "the-evolution-of-gecko-toepads", "kind": "Exercise", "name": "the-evolution-of-gecko-toepads", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-evolution-of-gecko-toepads"}, "graphs-of-radical-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/shifting-reflecting-functions/graphs-of-radical-functions/", "id": "graphs-of-radical-functions", "display_name": "Graphs of square root functions", "title": "Graphs of square root functions", "all_assessment_items": ["{\"sha\": \"53350f713915594beb452ac4394222b046b4723c\", \"live\": true, \"id\": \"xcae56e1d7b5570a8\"}", "{\"sha\": \"ecb466e674cb982034695a83027365da060c9b54\", \"live\": true, \"id\": \"xe8e548fba75f48f1\"}", "{\"sha\": \"58fd9f5028153e412130877fa963e3702a872c13\", \"live\": true, \"id\": \"x2a0f6d1c3c889c50\"}", "{\"sha\": \"252bb3a545231bb673f4a6affac169e74b735212\", \"live\": true, \"id\": \"xaf94490644a29625\"}", "{\"sha\": \"8774e0b2f61692a11eb90859a428090ec85c6e33\", \"live\": true, \"id\": \"x2548ea5eb359fa8c\"}", "{\"sha\": \"716a8e65971f561aa62a4c7727a70b05e436982f\", \"live\": true, \"id\": \"x361d1f5c33be8e80\"}", "{\"sha\": \"0a9ad57bc0cb4bd5f9d145102fb7733c9b951b60\", \"live\": true, \"id\": \"xb284002058e71694\"}", "{\"sha\": \"8efcb852f8c2cf55777a037a0766bc14b3162c63\", \"live\": true, \"id\": \"xc7aaf82e2abacc21\"}", "{\"sha\": \"0ee2d2cb2ce7fae7c1ee8e2caceaff84c7459cb8\", \"live\": true, \"id\": \"xb8a2daeabf3cc4f2\"}", "{\"sha\": \"dfe993bd06e542e2537c9281eacfa634ae9e999b\", \"live\": true, \"id\": \"x9fcd9073d1b5d637\"}", "{\"sha\": \"28b8b4de4345eeda0ed1fe86f60d8d3cdec7c578\", \"live\": true, \"id\": \"xc93dbf2f8e4ce738\"}", "{\"sha\": \"77233855115c00f70b189339f389cc1c8b0ffd92\", \"live\": true, \"id\": \"xadc636dafa09d4be\"}", "{\"sha\": \"874d3218ff2002dba4a0fdeabfe055e3a7126878\", \"live\": true, \"id\": \"xdabb12ea872b3409\"}", "{\"sha\": \"98c38a1b4e80fa226d977dd9554d9de42ef8d177\", \"live\": true, \"id\": \"xbdabec40f7c6e383\"}", "{\"sha\": \"b00ec6a304e20f36eacfe4f00e8f68657aebaec1\", \"live\": true, \"id\": \"x05fc2a3e96ef1b7b\"}", "{\"sha\": \"928eb317d21108c0e9354b1e7a575f4a55e80ef2\", \"live\": true, \"id\": \"x4701dbc542f69aef\"}", "{\"sha\": \"9eaccdd8b63a50e123622a0b1b77f4b55e29b6ab\", \"live\": true, \"id\": \"xcaf189d012e38d1e\"}", "{\"sha\": \"ba56ab7d321f49385a7c7926ed56afa7466d5872\", \"live\": true, \"id\": \"x96ae45dc9edc3013\"}", "{\"sha\": \"26eadd8ee2b2b00fceec238c2254d3c17e783448\", \"live\": true, \"id\": \"x137c07301c2d1564\"}", "{\"sha\": \"6bf391369d105316d40a86a83630752f7cfa0883\", \"live\": true, \"id\": \"x2c2a317020399ea5\"}", "{\"sha\": \"d039ae8f992f395b67100b7c186b775dfdfe3489\", \"live\": true, \"id\": \"x1d4b0042dd04d6db\"}"], "description": "", "basepoints": 28.0, "slug": "graphs-of-radical-functions", "kind": "Exercise", "name": "graphs-of-radical-functions", "seconds_per_fast_problem": 51.0, "prerequisites": ["shifting_and_reflecting_functions", "radical_equations"], "exercise_id": "graphs-of-radical-functions"}, "explicit-formulas-for-arithmetic-sequences": {"uses_assessment_items": true, "path": "khan/math/precalculus/seq_induction/seq_and_series/explicit-formulas-for-arithmetic-sequences/", "id": "explicit-formulas-for-arithmetic-sequences", "display_name": "Explicit formulas for arithmetic sequences", "title": "Explicit formulas for arithmetic sequences", "all_assessment_items": ["{\"sha\": \"627352c650ad08d649b109d5b743f90d7a314f21\", \"live\": true, \"id\": \"x7571ea7e24666d65\"}", "{\"sha\": \"d7cefbe4290c22fec42dad245ebf1da786e91c1e\", \"live\": true, \"id\": \"x272249e85354c35e\"}", "{\"sha\": \"fe94a072f7ca663556317719e07f1af78d4b3320\", \"live\": true, \"id\": \"xd704acaa464f7a60\"}", "{\"sha\": \"7c23c766d114b138c41f6939641710288f75a35c\", \"live\": true, \"id\": \"x56303912ce80d973\"}", "{\"sha\": \"7312d8c4f1b6482690e5c557e2455d11fe9a61b8\", \"live\": true, \"id\": \"x7d8ba833ab93a871\"}", "{\"sha\": \"a4a1d907f8feaca8ba72ec647feae3a75391a288\", \"live\": true, \"id\": \"x4b5316cb1aeffd28\"}", "{\"sha\": \"24702c593b6b24d9ff856df5093d53b3dbbed61d\", \"live\": true, \"id\": \"xafdf431ffc452e1c\"}", "{\"sha\": \"745e6238cd435db26a231acf100bf12b3da866d4\", \"live\": true, \"id\": \"xf89e596865295724\"}", "{\"sha\": \"55bc64088943a766bf8e6e09f567775e785cdba4\", \"live\": true, \"id\": \"x744c7f9c69993baa\"}", "{\"sha\": \"9f7d7e76f504b55b31910e2da134831babe0b99a\", \"live\": true, \"id\": \"xec4346991e3b1b43\"}", "{\"sha\": \"3fea2b8ea1bd7a25b1154dff4226b865a167a1fa\", \"live\": true, \"id\": \"xbbbc1e0c707c3e08\"}", "{\"sha\": \"1c68a2a1df6017b2344d46e013051dde741eb245\", \"live\": true, \"id\": \"xc0f73445de3dc642\"}", "{\"sha\": \"0684bc935b058e6489dd453876a8ad6268f04662\", \"live\": true, \"id\": \"xefd8baa449bff17a\"}", "{\"sha\": \"b40bba199f9471175f84c5d879dcabed812e1b42\", \"live\": true, \"id\": \"x18aa6de386436aa2\"}", "{\"sha\": \"64dbba658355df860a876438ad72dc4724309785\", \"live\": true, \"id\": \"x8a3e1987c46e6be3\"}", "{\"sha\": \"311f981eb677c14aed72c82462ca906ba0eae147\", \"live\": true, \"id\": \"x61776062c1b05435\"}", "{\"sha\": \"dbea829c4e0fa4ab263736efe0409087da7c6269\", \"live\": true, \"id\": \"xb9c90ca0247d71bd\"}", "{\"sha\": \"c1c5ebafd991fbfa6bef6b384addb022d87afdb5\", \"live\": true, \"id\": \"x9bc6b67807ec8c75\"}", "{\"sha\": \"9cd32e318c8b705a815ffdcf6149c008d85afed1\", \"live\": true, \"id\": \"x4894c9b997f55789\"}", "{\"sha\": \"887c8bce82c37dff19263aa2696f2885da4e0f29\", \"live\": true, \"id\": \"x63972ded05b25b05\"}"], "description": "Explicit formulas for arithmetic sequences", "basepoints": 10.0, "slug": "explicit-formulas-for-arithmetic-sequences", "kind": "Exercise", "name": "explicit-formulas-for-arithmetic-sequences", "seconds_per_fast_problem": 4.0, "prerequisites": ["arithmetic_sequences_2"], "exercise_id": "explicit-formulas-for-arithmetic-sequences"}, "making-decisions-with-expected-values": {"uses_assessment_items": true, "path": "khan/math/probability/random-variables-topic/expected-value/making-decisions-with-expected-values/", "id": "making-decisions-with-expected-values", "display_name": "Making decisions with expected values", "title": "Making decisions with expected values", "all_assessment_items": ["{\"sha\": \"99deeaf1da38fc058b11c2dda319dc6e856c8330\", \"live\": true, \"id\": \"xcbd4af68b4ce4585\", \"perseus_api_major_version\": null}", "{\"sha\": \"32d713712b458b1e4811f9f9c60ec49649471949\", \"live\": true, \"id\": \"x496618744dd4c61d\", \"perseus_api_major_version\": null}", "{\"sha\": \"e7284686a1f5f4caa17121df88878a5d7f7a1c24\", \"live\": true, \"id\": \"x96ef59d0d7d6feb0\", \"perseus_api_major_version\": null}", "{\"sha\": \"5e9f2c7194ce7914d8448aebf1ae7008adbc3c14\", \"live\": true, \"id\": \"x9b9b23611bac7e81\", \"perseus_api_major_version\": null}", "{\"sha\": \"4f371760125616726bb5393a79c67716de84414f\", \"live\": true, \"id\": \"x367eac841b397c4a\", \"perseus_api_major_version\": null}", "{\"sha\": \"830a45fc0356a00d6fddb013c72c8a9ecc99cb3a\", \"live\": true, \"id\": \"x66dc21b79d0f9a75\", \"perseus_api_major_version\": null}", "{\"sha\": \"ef43bfd226c0c2e1c475af539b7750e41ec25d8c\", \"live\": true, \"id\": \"x36bb2d12e8dfb9c5\", \"perseus_api_major_version\": null}", "{\"sha\": \"a749c94b0adcecf15fece1fdc4fbee631e7edaee\", \"live\": true, \"id\": \"x3bdb9ccab59a43c4\", \"perseus_api_major_version\": null}", "{\"sha\": \"5527d509cf0dcc6d166c2bab43878f2a75074cb9\", \"live\": true, \"id\": \"xd106e79d306327f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c8d1e686d800238746d539ec6634722de6ec2ab\", \"live\": true, \"id\": \"x876b541dd1c23922\", \"perseus_api_major_version\": null}", "{\"sha\": \"de770578774b84ee685bbf6005bbbf6527c5918d\", \"live\": true, \"id\": \"x07195c35fda0b136\", \"perseus_api_major_version\": null}", "{\"sha\": \"117066475a682325c148366f871e076dffaf4b35\", \"live\": true, \"id\": \"x35ff8b1b65e27efd\", \"perseus_api_major_version\": null}", "{\"sha\": \"e6e5fc7b0782e137153395a5244941e3a664dcdc\", \"live\": true, \"id\": \"xd37469695ca35768\", \"perseus_api_major_version\": null}", "{\"sha\": \"2b0d44a8bb742f5e9d46d4307fb2499538ed7cc6\", \"live\": true, \"id\": \"xda1279314053635a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6d95ecc2a99e8931be1ed3ebe2305f2661e1bfea\", \"live\": true, \"id\": \"x4ec48cc8f054dd66\", \"perseus_api_major_version\": 3}", "{\"sha\": \"382b5709575fdf034ba21bfd6c52c4974b7329b9\", \"live\": true, \"id\": \"x8ec2a9df86e57897\", \"perseus_api_major_version\": null}", "{\"sha\": \"412d99bad26b5b554ebfa2fb62160ac684f2b84c\", \"live\": true, \"id\": \"x73ddc5568c26fd6a\", \"perseus_api_major_version\": null}", "{\"sha\": \"8f0fd1869f8cec589c9f85a8c9dee5ab459059b0\", \"live\": true, \"id\": \"x7d8ae04bc84df5f4\", \"perseus_api_major_version\": null}", "{\"sha\": \"11b68f0c5645d1dda427aa24c6377d4e18556452\", \"live\": true, \"id\": \"xda05e519917a80a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"10f79d33c552e03dbd96849f51a3acdd0626fb18\", \"live\": true, \"id\": \"x4a1ded87bec280e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"08c2bf62c57db0c2fc8458d721ed104b28609e34\", \"live\": true, \"id\": \"x4801d774b8e9e79c\", \"perseus_api_major_version\": null}", "{\"sha\": \"cb7ce458a3412e1bd8798ac719b8265e96529ae2\", \"live\": true, \"id\": \"x6e109f360da1da30\", \"perseus_api_major_version\": null}", "{\"sha\": \"e93063a2c1c585e7fc314f8b180a463334c317b5\", \"live\": true, \"id\": \"xb8b3087a558729d4\", \"perseus_api_major_version\": null}", "{\"sha\": \"2e1c0e9229b8c3ffb7ff53812bfe0a548cd30e11\", \"live\": true, \"id\": \"xa46002280d4a09f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"14938e37a9629192cebcdf0a851e73cb4dccd92b\", \"live\": true, \"id\": \"xd9c3fe8731fe2c08\", \"perseus_api_major_version\": null}", "{\"sha\": \"202b1134f3d8c998d2fb92a272ce3d9e06e26ef7\", \"live\": true, \"id\": \"xb1e53b9576a1f82b\", \"perseus_api_major_version\": null}", "{\"sha\": \"9a1eea7d2767ed47654f5769089f2c183707898b\", \"live\": true, \"id\": \"x5c78fa30261b2670\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "making-decisions-with-expected-values", "kind": "Exercise", "name": "making-decisions-with-expected-values", "seconds_per_fast_problem": 4.0, "prerequisites": ["expected-value-with-calculated-probabilities"], "exercise_id": "making-decisions-with-expected-values"}, "writing-and-interpreting-decimals": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/writing-and-interpreting-decimals/", "id": "writing-and-interpreting-decimals", "display_name": "Writing and interpreting decimals", "title": "Writing and interpreting decimals", "all_assessment_items": ["{\"sha\": \"6b88fa32e9bd2061001f9e681ac461da14284308\", \"live\": true, \"id\": \"x9a3f1fa3\"}", "{\"sha\": \"99a424a489500453da34b8ace4625c6143fea7b7\", \"live\": true, \"id\": \"x65664fc6\"}", "{\"sha\": \"c44c565accaac9aa703deb091973c7af90aacd10\", \"live\": true, \"id\": \"x8c2ab906\"}", "{\"sha\": \"94783a12d77d24789ebe9a38d6941affc5abecca\", \"live\": true, \"id\": \"xb15a23c5\"}", "{\"sha\": \"532a80d78eaf430c26c5ec848b8720752d6848ac\", \"live\": true, \"id\": \"xcc9b8bfe\"}", "{\"sha\": \"7676e16e1fa45e2f14b2e1a25d866bca29509ba2\", \"live\": true, \"id\": \"x2f36fe7c\"}", "{\"sha\": \"a0e1bde6eef803f886d8663b4eaf71ea172c9a51\", \"live\": true, \"id\": \"xe0234de6\"}", "{\"sha\": \"d1f0651c85e947ab53d43f7b818aaf7636e08ba2\", \"live\": true, \"id\": \"xc06198f8\"}", "{\"sha\": \"235eae1057c577016a034f17cee8211b6fb55caa\", \"live\": true, \"id\": \"x9987f1d9\"}", "{\"sha\": \"5513eb50223ddb9ea1372fa6e0743cffe560b2bf\", \"live\": true, \"id\": \"xec384162\"}", "{\"sha\": \"4f08d7694edf44b5f320f3fb804178193b7f28ed\", \"live\": true, \"id\": \"xab4a6e6d\"}", "{\"sha\": \"d0748731137fca85d6f226b26585c245df777f52\", \"live\": true, \"id\": \"x3eb8daa2\"}", "{\"sha\": \"640fefe2a43a4318f6699d04cbb01a847cecf96e\", \"live\": true, \"id\": \"xd63c7d15\"}", "{\"sha\": \"3f9948c8ccfe950c746f165fd07ee89ed909cae1\", \"live\": true, \"id\": \"x33ad53a0\"}", "{\"sha\": \"46b33e184a9570b0876469268051a253acb5f9fa\", \"live\": true, \"id\": \"xcb5f4989\"}", "{\"sha\": \"c09d562759e43245404f7fd5e0b659953acff56e\", \"live\": true, \"id\": \"x2309cbe1\"}", "{\"sha\": \"d78b4d75f2215b90fe29aa8f8616abd2e8e29bf7\", \"live\": true, \"id\": \"x1cb98674\"}", "{\"sha\": \"ee323d8d542fcae1fdf9655e77fbb800aac1c8c9\", \"live\": true, \"id\": \"x00460eea\"}", "{\"sha\": \"9213805973ca5dc6298850c81e4dc06a17dd595d\", \"live\": true, \"id\": \"xe7d7109c\"}", "{\"sha\": \"b3db7491ea4ceacf30116c8d5f5fb740706ab2b3\", \"live\": true, \"id\": \"xb7c548f4\"}", "{\"sha\": \"e4beb2281f472347f79d9f7267f86eeb2246775a\", \"live\": true, \"id\": \"xf554dbf1\"}", "{\"sha\": \"3d7fdd03b4d3af6c23014e78fb284b7cab4de29a\", \"live\": true, \"id\": \"xb55e387f\"}", "{\"sha\": \"6b166b2ca3928718a97642a29b8d646f0c57d54e\", \"live\": true, \"id\": \"xc6597b99\"}"], "description": "Read and write decimals to thousandths using base-ten numerals, number names, and expanded form.", "basepoints": 20.0, "slug": "writing-and-interpreting-decimals", "kind": "Exercise", "name": "writing-and-interpreting-decimals", "seconds_per_fast_problem": 16.0, "prerequisites": ["understanding_decimals_place_value"], "exercise_id": "writing-and-interpreting-decimals"}, "ellipse_intuition": {"uses_assessment_items": false, "path": "khan/math/algebra2/conics_precalc/ellipses-precalc/ellipse_intuition/", "id": "ellipse_intuition", "display_name": "Exploring the foci of an ellipse", "title": "Exploring the foci of an ellipse", "description": "", "basepoints": 5.0, "slug": "ellipse_intuition", "kind": "Exercise", "name": "ellipse_intuition", "seconds_per_fast_problem": 0.0, "prerequisites": ["equation_of_a_circle_1"], "exercise_id": "ellipse_intuition"}, "quiz--how-do-earth-and-life-interact": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/life/how-did-life-begin-change/quiz-how-do-earth-and-life-interact/", "id": "quiz--how-do-earth-and-life-interact", "display_name": "Quiz: How Do Earth and Life Interact", "title": "Quiz: How Do Earth and Life Interact", "all_assessment_items": ["{\"sha\": \"dba50a887fc336d60012c7ad0a278c0883b251c2\", \"live\": true, \"id\": \"xe8e413d1dbb479ab\"}", "{\"sha\": \"fbf890d7a8a4355bac078d2f3fc266f4b3069df0\", \"live\": true, \"id\": \"x78022626023ddb8a\"}", "{\"sha\": \"0ed15934e3ea85c84034d0121df634261435fc4a\", \"live\": true, \"id\": \"xb4a97a86631bc9cb\"}", "{\"sha\": \"bcf19d5fab56203e941eaf66402065ab0215d8c0\", \"live\": true, \"id\": \"x257a85cc8b345578\"}", "{\"sha\": \"f8e444899604444eb1892af07b277d07369e6ca1\", \"live\": true, \"id\": \"x5f7f9fd1de9cb3c8\"}"], "description": "Quiz 5.2", "basepoints": 10.0, "slug": "quiz-how-do-earth-and-life-interact", "kind": "Exercise", "name": "quiz--how-do-earth-and-life-interact", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--how-do-earth-and-life-interact"}, "naming-the-whole": {"uses_assessment_items": true, "id": "naming-the-whole", "display_name": "Comparing fractions of different wholes", "title": "Comparing fractions of different wholes", "all_assessment_items": ["{\"sha\": \"d2a9cc80efa0fccb13259b695b8707185aae05af\", \"live\": true, \"id\": \"xf73876840e85c1b1\"}", "{\"sha\": \"6bf2dba295ac48ce3ab2348ff572e7be191c6e05\", \"live\": true, \"id\": \"x82ea4989cc0e0eec\"}", "{\"sha\": \"86ef4424187a0c47210894a84dfd0463181b2a89\", \"live\": true, \"id\": \"x06aa2b9845f17143\"}", "{\"sha\": \"f56aa18a63ddaadc39036eca8a28ffd9c68ad9d2\", \"live\": true, \"id\": \"x2a1c1b1f249103a5\"}", "{\"sha\": \"eab0ee0656f04ecf2605ae0fc1769d90e5abc5f3\", \"live\": true, \"id\": \"xa05f6424960dd01a\"}", "{\"sha\": \"e8419d37322f4cc1a6148102b338bc3badf63ccc\", \"live\": true, \"id\": \"x8d16d16d972555a6\"}", "{\"sha\": \"99555a1edb4c7e395b7cafac4f9dec24840125d9\", \"live\": true, \"id\": \"x6b74e2043a7fe18e\"}", "{\"sha\": \"b999858bd30044249e110e96479737863043a3da\", \"live\": true, \"id\": \"x91c5a641313ea619\"}", "{\"sha\": \"45fc0337893bd3b497c4a4a5bf45d9999caaac62\", \"live\": true, \"id\": \"x78672de8c2af7ed2\"}", "{\"sha\": \"05d6ce36b941fdaf5e2ef07a56b349f3b93c03e2\", \"live\": true, \"id\": \"x5a839db530ee6a7c\"}", "{\"sha\": \"0de2d43347fed8faf9bf2bed5ac563bd225d2a62\", \"live\": true, \"id\": \"x340d786272e8b7ba\"}", "{\"sha\": \"ab94d7943caff5b6a7c0eb912200438fbdbfd728\", \"live\": true, \"id\": \"xed2b364ad17f083b\"}", "{\"sha\": \"a17a05417ace2ff92cd751b6cae057b62db0115f\", \"live\": true, \"id\": \"xd5c89f172949550f\"}", "{\"sha\": \"814328fd2d9ac164c01fac7f69227f22cdd37327\", \"live\": true, \"id\": \"xcd31abc452421435\"}", "{\"sha\": \"2e3dfddb5568f68918c5f06ed22c60665521379b\", \"live\": true, \"id\": \"x13f58d52ba3b0297\"}", "{\"sha\": \"d33c4b454bf45cd9bdbd42a3af8f47f273f5799c\", \"live\": true, \"id\": \"x3c61af5aff5c629c\"}", "{\"sha\": \"e16127eb4cc0fc1439e0be9bd6d0ce7b7365f495\", \"live\": true, \"id\": \"x3947881ba4d7d8bc\"}", "{\"sha\": \"f9bdf7a884bab1d95af0e89aa17e4604d4f8ea09\", \"live\": true, \"id\": \"x18dfd9ab45a494ee\"}"], "description": "Compare two fractions based on the whole that each one refers to.", "basepoints": 10.0, "path": "naming-the-whole/", "slug": "naming-the-whole", "kind": "Exercise", "name": "naming-the-whole", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing_fractions_0.5"], "exercise_id": "naming-the-whole"}, "late-victorian": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/victorian-art-architecture/victorian-late/late-victorian/", "id": "late-victorian", "display_name": "Late Victorian (quiz)", "title": "Late Victorian (quiz)", "all_assessment_items": ["{\"sha\": \"78f09f48ec521948dc36d9981a2569a90d19a018\", \"live\": true, \"id\": \"xb0352e2d8b378965\"}", "{\"sha\": \"73df13b7fc87f65061011b091646f80e886ba83c\", \"live\": true, \"id\": \"x3c501245a05b7107\"}", "{\"sha\": \"bc6fa46eda6e0d2c4f0c1d5903f039a5838f5030\", \"live\": true, \"id\": \"x9d44cc529bda8309\"}", "{\"sha\": \"62642870a5328c30f19dad6f37336ca8b5f81a01\", \"live\": true, \"id\": \"xe614afd503ba3043\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "late-victorian", "kind": "Exercise", "name": "late-victorian", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "late-victorian"}, "chain-rule-on-three-functions": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/chain_rule/chain-rule-on-three-functions/", "id": "chain-rule-on-three-functions", "display_name": "Chain rule on three functions", "title": "Chain rule on three functions", "all_assessment_items": ["{\"sha\": \"559da64a5e549c843c39e9b32d0b30794e4047b5\", \"live\": true, \"id\": \"xb4cec3ec95f400ee\"}", "{\"sha\": \"183a97367ebfac64d2ef76a97f4905f18154162f\", \"live\": true, \"id\": \"x0ece8dc8b2c9becd\"}", "{\"sha\": \"f846d22efe8fcd47b7e3fb5b4ec7a22b619dae8f\", \"live\": true, \"id\": \"x9b879c94b646f5dc\"}", "{\"sha\": \"c20290db6fb0dd156a3ef884d52eb607e23af5f8\", \"live\": true, \"id\": \"x67765a013ea90ce3\"}", "{\"sha\": \"572f210191e6bda04ec58e56be1005b6db4473db\", \"live\": true, \"id\": \"x4a47137a7a9dbf7f\"}", "{\"sha\": \"2d05632e615710b8eb172d1a2c4e046148374b8a\", \"live\": true, \"id\": \"xa3095e2043d5c7db\"}", "{\"sha\": \"b9c2edba561156cf840ee71dc4c7228f479a854b\", \"live\": true, \"id\": \"x9fc6a71b3c8e016d\"}", "{\"sha\": \"2692ad4ae72f33f80f98f339cd2060c72f941b7f\", \"live\": true, \"id\": \"x9b0dcbf4aa0d06aa\"}", "{\"sha\": \"efcd7d768f1ec9d1a1df8c399e0be624ea8cbfe2\", \"live\": true, \"id\": \"xffd6c12c1c5b8043\"}", "{\"sha\": \"ec176803449c3faaac1cf4b184b5bcccb3e779e7\", \"live\": true, \"id\": \"x5f3ec658ef7160c7\"}", "{\"sha\": \"f8f1f352e10800aae2b390f8d5cbfada180199f1\", \"live\": true, \"id\": \"xf19457bcc6f1949b\"}", "{\"sha\": \"6cb550282d83b4871889b8c2d1925fde817be54c\", \"live\": true, \"id\": \"xeb87e49087684c17\"}", "{\"sha\": \"8f01ee7f492b63648240871892a81705e8cb6e05\", \"live\": true, \"id\": \"x1f95825d4d5408c7\"}", "{\"sha\": \"f7f595ebea4329e5318dc23df39268ac17bd38c2\", \"live\": true, \"id\": \"xc8e8d30b0de302bb\"}", "{\"sha\": \"34cce69497e89ccb428f642af7b8d0eec8a8039b\", \"live\": true, \"id\": \"xf8642a9a907933a2\"}", "{\"sha\": \"9fbb7ccc3da685d86e764cd82265de7743fa129f\", \"live\": true, \"id\": \"x43e9daecfe010058\"}", "{\"sha\": \"ad8509cdd88a27f11a32a7ea6ddeedd5234d452f\", \"live\": true, \"id\": \"xb23bf83e5ebcfaa2\"}", "{\"sha\": \"ac23c68af2041ee591f02020c3ccdd90f24fefb6\", \"live\": true, \"id\": \"xa4fba4f484a9e0fd\"}", "{\"sha\": \"eda94f6578e3a1045fb6e8d4cd96676066694881\", \"live\": true, \"id\": \"xfcb08238a1a32b26\"}", "{\"sha\": \"a9e6b8fb5fbfa4338357dbe930ea73ecdd0bbe86\", \"live\": true, \"id\": \"x5ae0b93b023afac5\"}", "{\"sha\": \"2bef6a385e6ae7c54a69e1a0ee16ca481b7dbfe7\", \"live\": true, \"id\": \"x2b16f3b342b523cb\"}", "{\"sha\": \"757241b6c16e04aaf8a100637a20500185fda12c\", \"live\": true, \"id\": \"x8df632a83f5b56a7\"}", "{\"sha\": \"140df9acd916e7d0c00e0862961532509517d818\", \"live\": true, \"id\": \"xb3fecd3793aef1d2\"}", "{\"sha\": \"a727f03828f6bf869eaf20c3a35a541796772ad9\", \"live\": true, \"id\": \"xcf87c689ddddb575\"}", "{\"sha\": \"e302a7d5c10051d21535b80dc940b111091764fe\", \"live\": true, \"id\": \"xd5611b5d071f212b\"}", "{\"sha\": \"51e8674484a9cb3d481f6d0e203e1c494b88da4a\", \"live\": true, \"id\": \"xa61463527640d45f\"}", "{\"sha\": \"3fd587fbe3fa26ff504e65eb02ae2d86290e39fe\", \"live\": true, \"id\": \"x504898c2d87d73fa\"}", "{\"sha\": \"a63047271ede7ef9a6f974916a70a3649e405fd5\", \"live\": true, \"id\": \"x81a0e730f5c39514\"}", "{\"sha\": \"025529e6e2058a39d8f1843ccc15845807b987dc\", \"live\": true, \"id\": \"x9b2fd937892d3f62\"}", "{\"sha\": \"92923d6c41073d382c71336d8bfa4ca9a22c3e57\", \"live\": true, \"id\": \"x81a7f4231d89c7c4\"}", "{\"sha\": \"fb9e3958ad588ed883939303ba1c48c57cc23918\", \"live\": true, \"id\": \"xa9ec7c103709430d\"}"], "description": "", "basepoints": 28.0, "slug": "chain-rule-on-three-functions", "kind": "Exercise", "name": "chain-rule-on-three-functions", "seconds_per_fast_problem": 54.0, "prerequisites": ["chain_rule_1"], "exercise_id": "chain-rule-on-three-functions"}, "reading_pictographs_1": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/reading_pictographs_1/", "id": "reading_pictographs_1", "display_name": "Reading pictographs 1", "title": "Reading pictographs 1", "description": "Read picture graphs to answer questions about a context.", "basepoints": 16.0, "slug": "reading_pictographs_1", "kind": "Exercise", "name": "reading_pictographs_1", "seconds_per_fast_problem": 9.0, "prerequisites": [], "exercise_id": "reading_pictographs_1"}, "reading_pictographs_2": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/reading_pictographs_2/", "id": "reading_pictographs_2", "display_name": "Reading pictographs 2", "title": "Reading pictographs 2", "description": "Interpret picture graphs to answer questions about a context.", "basepoints": 18.0, "slug": "reading_pictographs_2", "kind": "Exercise", "name": "reading_pictographs_2", "seconds_per_fast_problem": 12.0, "prerequisites": ["reading_pictographs_1"], "exercise_id": "reading_pictographs_2"}, "social-behavior-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/individuals-and-society/social-behavior/social-behavior-questions/", "id": "social-behavior-questions", "display_name": "Social behavior questions", "title": "Social behavior questions", "all_assessment_items": ["{\"sha\": \"3088c1606eef18ff44b7b31632806010bf9efa9c\", \"live\": true, \"id\": \"x1b0ccce4c1b1af43\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd94e0171f58315d2f1abb28f2ed12273b0c1fc3\", \"live\": true, \"id\": \"x57661460ae81f768\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"00c3e1186e0aa6eff27b68b9423ced3e69ee2e96\", \"live\": true, \"id\": \"x9fc63de5e4112ac7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"46c8c3d40bcc0590a506ae8a32467b19f9aa503c\", \"live\": true, \"id\": \"x067bd93edaf5eeba\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c3eb01e059bd08152adc65dcb6a1876c3b0a3e08\", \"live\": true, \"id\": \"x77eaa8c46bd2a832\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc65c816d70a944d1749b01ffea2c365d4306e06\", \"live\": true, \"id\": \"xb80c823c6ff5c2b0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"332da62ebda201acaf22b0d13f42c2fdfeb5e48b\", \"live\": true, \"id\": \"x89ceccb9da34f805\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"372ebaf78e7f42879d5d09ebb142c8f4e71a0d9b\", \"live\": true, \"id\": \"xcffd6f65dbe71186\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3063b8c52d1aa78c50ae2257db66416f03b9181b\", \"live\": true, \"id\": \"x6cfc1c519b0c9e88\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d700d67b44272e25f5db17510deaba5fa29878f5\", \"live\": true, \"id\": \"x814e0402e10aee31\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Social behavior questions", "basepoints": 10.0, "slug": "social-behavior-questions", "kind": "Exercise", "name": "social-behavior-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "social-behavior-questions"}, "thutmose-bust-of-nefertiti-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/egypt-art/new-kingdom/thutmose-bust-of-nefertiti-quiz/", "id": "thutmose-bust-of-nefertiti-quiz", "display_name": "Thutmose Bust of Nefertiti (quiz)", "title": "Thutmose Bust of Nefertiti (quiz)", "all_assessment_items": ["{\"sha\": \"91b32d6c365aef68c04bb31db2c8d3530f3e6a68\", \"live\": true, \"id\": \"x0c0c7aa8b7ae0db0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d9c2bc6925cde67861704ceabb00ab6671b5e891\", \"live\": true, \"id\": \"x2740d5208c81a86b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71a212a8afad58ff3942a1cd271fc05a9386f0e7\", \"live\": true, \"id\": \"x10d5765c2608de4e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e0771dc65ca00527cdd3e8d84d3794b73ccafb8d\", \"live\": true, \"id\": \"xd15cfaecb5984697\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3a89d541fd424179753947a3cee68a3b5f0147a8\", \"live\": true, \"id\": \"x3d64fcd6f8217afb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "thutmose-bust-of-nefertiti-quiz", "kind": "Exercise", "name": "thutmose-bust-of-nefertiti-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "thutmose-bust-of-nefertiti-quiz"}, "qualitatively-defining-rigid-transformations": {"uses_assessment_items": true, "path": "khan/math/geometry/transformations/properties-definitions-of-translations/qualitatively-defining-rigid-transformations/", "id": "qualitatively-defining-rigid-transformations", "display_name": "Qualitatively defining rigid transformations", "title": "Qualitatively defining rigid transformations", "all_assessment_items": ["{\"sha\": \"6c2332ec7041e043fabe271283df4bc861d4faf2\", \"live\": true, \"id\": \"xa9ec2fad74f51907\"}", "{\"sha\": \"911f2b115e3861a54509b6d9f0dba4ba2c340298\", \"live\": true, \"id\": \"x34f7a8d7a004bb1b\"}", "{\"sha\": \"4ae79bab2f606f977d55ab927b687260cc5c8c48\", \"live\": true, \"id\": \"xf91c8aa6a380d7cc\"}", "{\"sha\": \"430012c52174443b82f2d7ce8163c16d50f233ca\", \"live\": true, \"id\": \"x89eb2811582b393b\"}", "{\"sha\": \"095d0e7eb4388220f3d7f6b595de59f66d769ddf\", \"live\": true, \"id\": \"xa3f2b20e2b18199b\"}", "{\"sha\": \"bfb1f0e93d53147f7088c93bd14bdd9a78693e97\", \"live\": true, \"id\": \"x246bfd37062086c9\"}", "{\"sha\": \"6606cc58c29df231311ea8a00827c90974f78a0a\", \"live\": true, \"id\": \"xa471663c718222af\"}", "{\"sha\": \"f1d8c29ae00e80a0c6eb0d4a0fb7e02c37056470\", \"live\": true, \"id\": \"xf4d2d20c1642fdef\"}", "{\"sha\": \"79b8e510bec9a0a11b200b918af3098878cbcb1f\", \"live\": true, \"id\": \"x7db18db1bb03e381\"}", "{\"sha\": \"7f8899c068ada26b2206dcb86a9ed5fcc6fbd50b\", \"live\": true, \"id\": \"x76094c1e1201fdf2\"}", "{\"sha\": \"e79e5a41bf341f09e2a041a95adb67a1a1d59b1c\", \"live\": true, \"id\": \"x8eb05217b13fa9bd\"}", "{\"sha\": \"6c4b321a745e86e0f675464c5fd202f38756a341\", \"live\": true, \"id\": \"xad90e0dd6979be99\"}", "{\"sha\": \"c6382928925c26fbcf7534740b7ff0f45bb9642a\", \"live\": true, \"id\": \"xa92e630b8827da00\"}", "{\"sha\": \"50ca2fb4acdf0ece87a54dd05ee1389922e771f0\", \"live\": true, \"id\": \"x63b69fe27fdb2bb1\"}", "{\"sha\": \"8bb61cdb46dd6ac54a65ab13871997bb0dc97c9d\", \"live\": true, \"id\": \"x743485eeb603e659\"}", "{\"sha\": \"a5f64ccc6743ee87d49d1d3dbc31f1dfa8e3897a\", \"live\": true, \"id\": \"x411a7aeb2533fa40\"}", "{\"sha\": \"b0f94118aff6d00ad953c19e30c259b3bcf81436\", \"live\": true, \"id\": \"x15704d169573dcab\"}", "{\"sha\": \"c1519b220a806298cf780efc9f16d848fbb5e275\", \"live\": true, \"id\": \"xa219f324707ffb4f\"}", "{\"sha\": \"279b2dc446c1933a8ffce52e33633ccef730d806\", \"live\": true, \"id\": \"xab7f5b990f48fbfb\"}", "{\"sha\": \"4a2b52d5c8b19bdbc4350354317d319ba6571e43\", \"live\": true, \"id\": \"xc40703e32a91595a\"}", "{\"sha\": \"180bd857a6f37f31c7b0417b94a81512ce482443\", \"live\": true, \"id\": \"xd632e31d000ff5cf\"}", "{\"sha\": \"8e3ac99a3a71706dab62b4e2b7b657f23d08467f\", \"live\": true, \"id\": \"x4f4bab6a3c960aaa\"}", "{\"sha\": \"0d7b3e0c0d0b783f45568e8238c2a75b7ae06ea6\", \"live\": true, \"id\": \"x24dcde8edd244f3e\"}", "{\"sha\": \"b844c12211d80a6274f77b4e8ec5e5035b3a31e0\", \"live\": true, \"id\": \"x8a0f29112f646bf8\"}", "{\"sha\": \"a3fbb7ffdb84d847bdc8b1350ff48b0093607c88\", \"live\": true, \"id\": \"x40d64f983b2ac54d\"}", "{\"sha\": \"84592aef74f4411bf9c2a8b3990bc6b60ea09cfd\", \"live\": true, \"id\": \"xfeb7e079d1e08eb8\"}", "{\"sha\": \"c72a01a8d743eef59917393b8cb47539e10b8572\", \"live\": true, \"id\": \"xd75143531fa9f553\"}", "{\"sha\": \"77f2b5ecf172e75f5f379eff5756d1f6c5311150\", \"live\": true, \"id\": \"x0b86e79c489b503d\"}", "{\"sha\": \"86019a7304d1d8b46d46ed032e46bc1fb9cb963e\", \"live\": true, \"id\": \"xe588a994e528b9b5\"}", "{\"sha\": \"e46df93d02c964ee85f9b657366dceb711b79f67\", \"live\": true, \"id\": \"xc7b4481dc61420a6\"}", "{\"sha\": \"b6dcf2c2eb6d8d3f2767a870459222e8d9eeccc0\", \"live\": true, \"id\": \"x4e881fd115503aee\"}", "{\"sha\": \"e3d2b2d678a664b0dcffe5cacd4abfc369b64619\", \"live\": true, \"id\": \"x9d58b9995c16c511\"}", "{\"sha\": \"8ad0123d1958810b859217c56c772e0304747028\", \"live\": true, \"id\": \"x09bd2d1fd42dd501\"}"], "description": "", "basepoints": 29.0, "slug": "qualitatively-defining-rigid-transformations", "kind": "Exercise", "name": "qualitatively-defining-rigid-transformations", "seconds_per_fast_problem": 58.0, "prerequisites": ["geometric-definitions", "reflections-2", "rotations-2", "translations"], "exercise_id": "qualitatively-defining-rigid-transformations"}, "ratio-test": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/convergence-divergence-tests/ratio-test/", "id": "ratio-test", "display_name": "Ratio test", "title": "Ratio test", "all_assessment_items": ["{\"sha\": \"aff627530e3f0f75e070952cf472162d94d8bc9c\", \"live\": true, \"id\": \"xf5602d3c81b0bcd3\", \"perseus_api_major_version\": null}", "{\"sha\": \"8b55bd3d298c331a3bdcaae255bb3e8c10fed449\", \"live\": true, \"id\": \"x3793748b3ab569b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"cf70bde0e672eb77b54a537b5268dc5ef10eaf50\", \"live\": true, \"id\": \"xbf8ec1e1dacffe77\", \"perseus_api_major_version\": null}", "{\"sha\": \"5a6640bac1004b3541d3bb45494f7e4e1f8d4c67\", \"live\": true, \"id\": \"xd9d713f7bfff3a1c\", \"perseus_api_major_version\": null}", "{\"sha\": \"f0e185a709e98ba68157597532c741620ef9b8fe\", \"live\": true, \"id\": \"x3d53910a0b5b8e7d\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a0125ff58daef95317ec07e592465cefbcab396\", \"live\": true, \"id\": \"x69c40bf6cfa090ce\", \"perseus_api_major_version\": null}", "{\"sha\": \"9f90f3c5bbe8ac3706eaa73dcbe795206ad0c51d\", \"live\": true, \"id\": \"x45e2456b43ead7de\", \"perseus_api_major_version\": null}", "{\"sha\": \"cc4c8e15cb61b9c4ec2d83b713254163e0b0fe3e\", \"live\": true, \"id\": \"x54654cae6550085e\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a2e7cbd47932daec239b1f5bba3ec069899612a\", \"live\": true, \"id\": \"x1a1b1e8bf9775924\", \"perseus_api_major_version\": null}", "{\"sha\": \"0a54d6c1d5b84effddcea765278d7c150e986ed8\", \"live\": true, \"id\": \"xc07aacd9c96c377f\", \"perseus_api_major_version\": null}", "{\"sha\": \"60d4a000a97bccba2315c7bd44061fd348ea598c\", \"live\": true, \"id\": \"xd047039e11df63fc\", \"perseus_api_major_version\": null}", "{\"sha\": \"66853918344026b6859a76ae3dab8c5490603fc5\", \"live\": true, \"id\": \"x4c09169b33fbfb8d\", \"perseus_api_major_version\": null}", "{\"sha\": \"e481f021fa57ff19809c3a15c3b668feee759fe3\", \"live\": true, \"id\": \"x0961bdf946bff8e2\", \"perseus_api_major_version\": null}", "{\"sha\": \"a68a78f053fa6a3bf0ba83f2d7612eac75ce6cee\", \"live\": true, \"id\": \"xd602a4021f1e9747\", \"perseus_api_major_version\": 3}", "{\"sha\": \"a970713e21941e86e5579b7378a25bd15697063d\", \"live\": true, \"id\": \"x2fe0f83ae4135699\", \"perseus_api_major_version\": null}", "{\"sha\": \"b67201983e2c375b595a0a9ad2432949d7186e96\", \"live\": true, \"id\": \"x8e77cf2a68faaa10\", \"perseus_api_major_version\": null}", "{\"sha\": \"b8ed5a36cacde56799ad6463313fbaf5ca9e9ab6\", \"live\": true, \"id\": \"xb3f5b4d9c9355683\", \"perseus_api_major_version\": null}", "{\"sha\": \"da66b4e5aa9243bc8a45c527190fd3b00587fa61\", \"live\": true, \"id\": \"x35fc8721f55a2fa1\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed668b07bb7e48df037a11771307f149d5bf6fb5\", \"live\": true, \"id\": \"xeb9c08c573c32356\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "ratio-test", "kind": "Exercise", "name": "ratio-test", "seconds_per_fast_problem": 4.0, "prerequisites": ["convergence-and-divergence-of-series"], "exercise_id": "ratio-test"}, "zero-and-identity-matrices": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/zero-identity-matrix-tutorial/zero-and-identity-matrices/", "id": "zero-and-identity-matrices", "display_name": "Zero and identity matrices", "title": "Zero and identity matrices", "all_assessment_items": ["{\"sha\": \"de2f92b2b4a5373056ef4859e10419821ac61018\", \"live\": true, \"id\": \"xb2b0d4d0b380ba87\"}", "{\"sha\": \"62f79ae8996f67cacb4c073c7d585d00b4e0f080\", \"live\": true, \"id\": \"x70b9d2ba8646510f\"}", "{\"sha\": \"599f96928619d3281bf8f5df4ffad482687a0c2f\", \"live\": true, \"id\": \"x3b96edaacae4c22f\"}", "{\"sha\": \"9390b27a20957aa0cde6cc579869269321230a88\", \"live\": true, \"id\": \"x82dc10be78c3cd8c\"}", "{\"sha\": \"6a5d6efb8c5fb41b35aab5618fbc12d2cd46d069\", \"live\": true, \"id\": \"x366fb67d5db55e28\"}", "{\"sha\": \"5d615f08d21b881ace5129d73af9cffaab2ff979\", \"live\": true, \"id\": \"xb7b3f623fcaf2d8b\"}", "{\"sha\": \"f424bc32c3f56d469941e86f0423d4b507438765\", \"live\": true, \"id\": \"xa58c36d2f6b50981\"}", "{\"sha\": \"c74841d1f69b28e1e812d9d8d10367e86b032a00\", \"live\": true, \"id\": \"xd3c5729ba036a6e1\"}", "{\"sha\": \"a64cc3430b7a7e7bf27a14f5d4f6dcc4035d61a8\", \"live\": true, \"id\": \"x253e426c3207007d\"}", "{\"sha\": \"a24786b426ff361e7c899460a16cdf5e683622b5\", \"live\": true, \"id\": \"x276f7c76cca15186\"}", "{\"sha\": \"2e4b5ab57b6c92a6fc1a40937c01d72c9315c5df\", \"live\": true, \"id\": \"x36c280e86c5361a4\"}", "{\"sha\": \"44dad4a2ce9e8dc7c3e5935fd757666d346981e0\", \"live\": true, \"id\": \"xb73e188494e9be06\"}", "{\"sha\": \"6d54c5cc0b49713183c332d8642e599b46ccf641\", \"live\": true, \"id\": \"xb9340b714856ade8\"}", "{\"sha\": \"d1302a9c287767698f44174b55f8c52845a67494\", \"live\": true, \"id\": \"xe1d1f9c5947926c3\"}", "{\"sha\": \"343ea1dcd8f970e0f5bc8203e9f9302ca10554e5\", \"live\": true, \"id\": \"x50a9a13577bf9336\"}", "{\"sha\": \"e21d9aaa2c942d408fc00c8009d82dfb395ff088\", \"live\": true, \"id\": \"xe282f89601c1604c\"}", "{\"sha\": \"8075bc0662a6060760dfdb7c4c6ef691ddba1985\", \"live\": true, \"id\": \"xed1636477b6f8d06\"}", "{\"sha\": \"f7d4625e20bd39a440fbb2ce8a46d33b805575a2\", \"live\": true, \"id\": \"x0e31d666a46ad83a\"}", "{\"sha\": \"f802cdb9e53ea6dc9d771867e2e90b7f42cbe6ff\", \"live\": true, \"id\": \"xa0f45d9c23a633b7\"}", "{\"sha\": \"178649c8058df5713ad348af606f7784c6ee6a72\", \"live\": true, \"id\": \"x0895000c4789bf19\"}", "{\"sha\": \"0f0e5b15b73d2b7adf4959743beb2c4756c69146\", \"live\": true, \"id\": \"x7397362e15884dfc\"}", "{\"sha\": \"8684c4f84b7229a6fc7e17914daa28403c068779\", \"live\": true, \"id\": \"x3dd33fe779de6712\"}", "{\"sha\": \"ae2babb23d2fa967887d42cf49fb1ed13d74d997\", \"live\": true, \"id\": \"x6c452efa8821978b\"}", "{\"sha\": \"ce3c151b2d16070bde8d3cf96d28d4daa593ae69\", \"live\": true, \"id\": \"xe44dae408610c7b8\"}", "{\"sha\": \"5cc5b2c15500f0ae509d389d66694d0175b7737e\", \"live\": true, \"id\": \"x12ddd49ee7a3fa7d\"}", "{\"sha\": \"7bb3a1b232b36c7aa0f7743570ddec431616ecd5\", \"live\": true, \"id\": \"xdb4f6dec1741fcb9\"}", "{\"sha\": \"32e5a979de9c018cd525f37a2d53cd6e2fb53887\", \"live\": true, \"id\": \"xbf2e82cfbccf867b\"}", "{\"sha\": \"fbba7a88b545e5b243ac1ea1fa65bb371f77b2a4\", \"live\": true, \"id\": \"xf35d1d38b63ee707\"}", "{\"sha\": \"ca4e71cd3226f8f3b11c360c7c91962b1ea0f122\", \"live\": true, \"id\": \"x397fe24c158953a9\"}", "{\"sha\": \"a485ce98e6ed36a233dd18254c6948ff7991c59b\", \"live\": true, \"id\": \"x5278663dcbae130d\"}", "{\"sha\": \"1c96a4870a71bb857f7ca6d587d16e435f93971e\", \"live\": true, \"id\": \"x2ea6b21fa7c1062a\"}", "{\"sha\": \"cdf7417b1556df4311aaa45d4d42911b9f9fb88d\", \"live\": true, \"id\": \"xef4726bd017a6746\"}", "{\"sha\": \"017c5c93bdc986915a0ce59f644b1a6e430c0cf4\", \"live\": true, \"id\": \"xa25cf1a178e9d648\"}", "{\"sha\": \"08a718145772c6bbe5b5f029448006088528ebf1\", \"live\": true, \"id\": \"x50a616e5010c1017\"}", "{\"sha\": \"e7b6b1b7938cb0ad0ebba6c809622772085ab0eb\", \"live\": true, \"id\": \"xfd05a8c40106258e\"}", "{\"sha\": \"4a98bf7958e8658a46e88673d45e5015f5ef3652\", \"live\": true, \"id\": \"x0e9496345a126351\"}", "{\"sha\": \"6c0cf06b9b96e6d7c80a690e212f29de570fc694\", \"live\": true, \"id\": \"xd791c44f69ab9c6a\"}", "{\"sha\": \"68737e8faaaddebccacddae71997235966de6e55\", \"live\": true, \"id\": \"xc961d3dc382f1fa3\"}", "{\"sha\": \"5ac69ebe8b2d8f4cd3bb95ebe9f281cbd7d0cff5\", \"live\": true, \"id\": \"x756b3730aa0eb929\"}", "{\"sha\": \"4ee5acfb60d6935af130e19533d51618f91155b8\", \"live\": true, \"id\": \"xc367797b7e5bfe8d\"}", "{\"sha\": \"210ba9ee50b6e3f3def15cf9d8af29b4f8b1dc98\", \"live\": true, \"id\": \"x1cba733843b0c0d3\"}", "{\"sha\": \"b4b085b05b3c9081076b01c768a526712eb438ce\", \"live\": true, \"id\": \"x25355e6af725866a\"}", "{\"sha\": \"6c22d50d324ce7e48df68262662b5740a775cd9e\", \"live\": true, \"id\": \"xc638b8f2b91f2597\"}", "{\"sha\": \"adc72a35b933697ea55bc3efabc9fe4eb62babf8\", \"live\": true, \"id\": \"x18d18c170373c30d\"}", "{\"sha\": \"9d9ba3dadff881415bac2bc213919707a9b50d59\", \"live\": true, \"id\": \"x8ebaafe1020f0ef6\"}", "{\"sha\": \"f1b1947d32bff93f6884c42bd0fe2ad6ffccd189\", \"live\": true, \"id\": \"x04425e46bca29818\"}"], "description": "", "basepoints": 10.0, "slug": "zero-and-identity-matrices", "kind": "Exercise", "name": "zero-and-identity-matrices", "seconds_per_fast_problem": 4.0, "prerequisites": ["matrix_addition_and_subtraction", "multiplying_a_matrix_by_a_matrix"], "exercise_id": "zero-and-identity-matrices"}, "vermeer-s-woman-holding-a-balance-quiz": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/holland/vermeer-s-woman-holding-a-balance-quiz/", "id": "vermeer-s-woman-holding-a-balance-quiz", "display_name": "Vermeer, Woman Holding a Balance (quiz)", "title": "Vermeer, Woman Holding a Balance (quiz)", "all_assessment_items": ["{\"sha\": \"ded98cd546ff0c288917a120ab88adad7ab38eae\", \"live\": true, \"id\": \"x72a837ea0ea8871c\"}", "{\"sha\": \"c492e1e106ee598200a2b152791ba89f753b39d8\", \"live\": true, \"id\": \"x255a3d06c1764a36\"}", "{\"sha\": \"2bdd1b22348ffed9452f2eb4eb1a96e52f117c4a\", \"live\": true, \"id\": \"x0ff198df5c3cea88\"}", "{\"sha\": \"27809a39103b786db9dc9f103a6c5c333f1c43e7\", \"live\": true, \"id\": \"x148fe15b79049b61\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "vermeer-s-woman-holding-a-balance-quiz", "kind": "Exercise", "name": "vermeer-s-woman-holding-a-balance-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "vermeer-s-woman-holding-a-balance-quiz"}, "radical_equations": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/radical_equations/radical_equations/", "id": "radical_equations", "display_name": "Radical equations", "title": "Radical equations", "description": "Solve equations containing square roots of variables.", "basepoints": 23.0, "slug": "radical_equations", "kind": "Exercise", "name": "radical_equations", "seconds_per_fast_problem": 24.0, "prerequisites": ["adding_and_subtracting_radicals"], "exercise_id": "radical_equations"}, "multiplying_mixed_numbers_1": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-number-mult-div-pre-alg/multiplying_mixed_numbers_1/", "id": "multiplying_mixed_numbers_1", "display_name": "Multiplying mixed numbers", "title": "Multiplying mixed numbers", "description": "Multiply two mixed numbers. \u00a0", "basepoints": 26.0, "slug": "multiplying_mixed_numbers_1", "kind": "Exercise", "name": "multiplying_mixed_numbers_1", "seconds_per_fast_problem": 36.0, "prerequisites": ["multiplying_fractions_0.5"], "exercise_id": "multiplying_mixed_numbers_1"}, "hypothesis-testing-with-simulations": {"uses_assessment_items": true, "path": "khan/math/probability/statistical-studies/hypothesis-test/hypothesis-testing-with-simulations/", "id": "hypothesis-testing-with-simulations", "display_name": "Simple hypothesis testing", "title": "Simple hypothesis testing", "all_assessment_items": ["{\"sha\": \"064e83832dffc7abbc40cb13673f5400e7f03270\", \"live\": true, \"id\": \"x681a38cc31e7eae8\"}", "{\"sha\": \"cfeb0a563e2019c23388909556e0ddc380a65c1f\", \"live\": true, \"id\": \"xf212b2613349b85b\"}", "{\"sha\": \"cbc8a3ea18386ee4a0fa2c0fbbc55fe6d11e2694\", \"live\": true, \"id\": \"x01a572e3bd5640e8\"}", "{\"sha\": \"1497ae6841f40d8c735b3ef972f0693ce70d53af\", \"live\": true, \"id\": \"x6ce47c97b641b8b2\"}", "{\"sha\": \"4160d7362197398485cc2b6fdb2c7887f29c037e\", \"live\": true, \"id\": \"xd7bb006d4e82b3ba\"}", "{\"sha\": \"363bf8f6111723b3a5c078ff94009036aa48b746\", \"live\": true, \"id\": \"xfb3ea1d88385055f\"}", "{\"sha\": \"a46024c4c125b78e258643d99316e95ad2617b07\", \"live\": true, \"id\": \"x98d3eb436ed5541b\"}", "{\"sha\": \"0b87825c5242957e110a3179f07af195cf4f9255\", \"live\": true, \"id\": \"x5d51c2e03042e3ec\"}", "{\"sha\": \"78f82c6b880c9fa9f6fb26accdd44b3e3210b98f\", \"live\": true, \"id\": \"x0bdad428e5f30604\"}", "{\"sha\": \"9c8ec793f10d0a3e50dd775eaef7778f1ed8d9a5\", \"live\": true, \"id\": \"x28b98869fd4a00e0\"}", "{\"sha\": \"a56a48cebecb46a54785a071f446a4dc1b81490e\", \"live\": true, \"id\": \"x527ed7e8c68bdea3\"}", "{\"sha\": \"e9a7b6a1c1e0c9554d294b892f8cd1c52fe3ea8b\", \"live\": true, \"id\": \"x73a436bde499e664\"}", "{\"sha\": \"f0170f2d3d252a1decbfadef087ef4b1be558471\", \"live\": true, \"id\": \"xd94e02b612ba382c\"}", "{\"sha\": \"e78b12cfa68d9affea979856c1139295c866050b\", \"live\": true, \"id\": \"x7aa374e07a1e84b7\"}", "{\"sha\": \"53f069d7519a5a176e10629b5bc8f6e8060bd827\", \"live\": true, \"id\": \"x417831edca608bc1\"}", "{\"sha\": \"53c55e8d32af2d7a3cb5cf124cb07a84248e761c\", \"live\": true, \"id\": \"x49e6b961a9c0edf4\"}", "{\"sha\": \"d90d54117649328836c8ba4458e1d4a9faeeb34e\", \"live\": true, \"id\": \"x621b7d7404c2d594\"}", "{\"sha\": \"921689b37a7e7cf4cde867d30ce0d5c024f010fb\", \"live\": true, \"id\": \"x0a6a14853616aef8\"}", "{\"sha\": \"9309a85dfa13c8ccd70668734918f0f2f2806fe9\", \"live\": true, \"id\": \"xe38b78dfdb0adf5e\"}", "{\"sha\": \"56c540ecf6133c7cf422104119ed30aee2b902b2\", \"live\": true, \"id\": \"x5d8c0899ff21c8f2\"}", "{\"sha\": \"420ebcec6694b86e9751a5b0feb38cdbe19d3cbc\", \"live\": true, \"id\": \"x667df919a8481cdb\"}", "{\"sha\": \"489dc5d84598dac8c7fde1605fffa34d76297704\", \"live\": true, \"id\": \"xd4e5ac17d6376fb2\"}", "{\"sha\": \"87916edbe21d37c3a2afb8ff376650c52274786b\", \"live\": true, \"id\": \"xcb45167b6a38d90c\"}", "{\"sha\": \"9aba4972a10ab8bce99068a6e5c3d380b2a62f1b\", \"live\": true, \"id\": \"x172917a0f28aa4a5\"}"], "description": "", "basepoints": 10.0, "slug": "hypothesis-testing-with-simulations", "kind": "Exercise", "name": "hypothesis-testing-with-simulations", "seconds_per_fast_problem": 4.0, "prerequisites": ["types-of-statistical-studies"], "exercise_id": "hypothesis-testing-with-simulations"}, "interpreting-line-plots-with-fraction-multiplication-and-division": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/interpreting-line-plots-with-fraction-multiplication-and-division/", "id": "interpreting-line-plots-with-fraction-multiplication-and-division", "display_name": "Interpreting dot plots with fraction operations", "title": "Interpreting dot plots with fraction operations", "all_assessment_items": ["{\"sha\": \"2f21b801adbd5f39a1b6f7cc392561c0bbcb5bae\", \"live\": true, \"id\": \"x41729ebcfa30a459\", \"perseus_api_major_version\": 0}", "{\"sha\": \"188644eeca19ade52ba66f94868c2001fb01aa23\", \"live\": true, \"id\": \"x81fec0f6c53c7f97\", \"perseus_api_major_version\": 0}", "{\"sha\": \"87d7ae7e54d6ab51952bcf96c54f992009cdf575\", \"live\": true, \"id\": \"xc33e369ec26d4799\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6507557aef2ff7d47e8eb261c8be50c30e3f4a5e\", \"live\": true, \"id\": \"xfad4d3cc5ca8ffa1\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee38ddc5ab0e0d6e295d9da332d48609af080d5a\", \"live\": true, \"id\": \"xd63e0a54f902edaf\", \"perseus_api_major_version\": null}", "{\"sha\": \"2f7f3683dea48e7ec9197c03afe06b6caabcb993\", \"live\": true, \"id\": \"x5dafe5826f08f3f3\", \"perseus_api_major_version\": null}", "{\"sha\": \"7bf942eba9425ea1a85f4058049b16d7323a0d95\", \"live\": true, \"id\": \"xfd69b2face512d20\", \"perseus_api_major_version\": null}", "{\"sha\": \"c43fedd40c6d3b2477dd999b0efd3013b105863c\", \"live\": true, \"id\": \"x2bb95754a7a9ff88\", \"perseus_api_major_version\": null}", "{\"sha\": \"c47c4c6f777009e6f05910f239dd3f9817eb378f\", \"live\": true, \"id\": \"xaf451d7cbb0db281\", \"perseus_api_major_version\": null}", "{\"sha\": \"9cedfae0837f5f92969b203573dac4d09ae0e396\", \"live\": true, \"id\": \"x281f62a05ab7c63c\", \"perseus_api_major_version\": null}", "{\"sha\": \"50401e99c71eaca676026e2378466b2110b142dc\", \"live\": true, \"id\": \"x601c932c0ba90ede\", \"perseus_api_major_version\": null}", "{\"sha\": \"013eabc3834a86b50766783ec62dd3253f04073f\", \"live\": true, \"id\": \"x06fe91a93ade5052\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ebe7745153bf91bb030ef58ae8a306a3020f6c7c\", \"live\": true, \"id\": \"xac8cbfd273c4fcfd\", \"perseus_api_major_version\": null}", "{\"sha\": \"94e3c2952c7fe2cc23e9c77a5a649a149e14c22c\", \"live\": true, \"id\": \"x0ff074652e9d4c77\", \"perseus_api_major_version\": null}", "{\"sha\": \"56a16458ce8c41373b82362fb39ce65d2fc53a83\", \"live\": true, \"id\": \"x1f046408b3b098a4\", \"perseus_api_major_version\": null}", "{\"sha\": \"470893b36c12234b9c50654e14b427e41103884b\", \"live\": true, \"id\": \"x5cc3f61dda9750e7\", \"perseus_api_major_version\": null}", "{\"sha\": \"a647d616f725da7a05a36f97669f9755443f6307\", \"live\": true, \"id\": \"x19cdbb86b569ac55\", \"perseus_api_major_version\": null}", "{\"sha\": \"996e91d46a246454ed513e355d2955c2e0cf888d\", \"live\": true, \"id\": \"x68f5440670849990\", \"perseus_api_major_version\": null}", "{\"sha\": \"6dc9d45bdf795b155e07b0f96ce0856d249cc69f\", \"live\": true, \"id\": \"xa0d663e329487ed7\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c6b2c1370b9daf1ef9443ddf1a95e05f83cdbdd\", \"live\": true, \"id\": \"x396bc5328b1ccb64\", \"perseus_api_major_version\": null}", "{\"sha\": \"01be3fd9db472c35e3383bd44549439651ab4732\", \"live\": true, \"id\": \"x92e7b0b4e23501c4\", \"perseus_api_major_version\": null}"], "description": "Interpret fraction data on dot plots to solve word problems.", "basepoints": 24.0, "slug": "interpreting-line-plots-with-fraction-multiplication-and-division", "kind": "Exercise", "name": "interpreting-line-plots-with-fraction-multiplication-and-division", "seconds_per_fast_problem": 28.0, "prerequisites": ["multiplying-fractions-by-fractions-word-problems"], "exercise_id": "interpreting-line-plots-with-fraction-multiplication-and-division"}, "skip-counting-by-10s": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting/skip-counting-by-10s/", "id": "skip-counting-by-10s", "display_name": "Skip-counting by 10s", "title": "Skip-counting by 10s", "all_assessment_items": ["{\"sha\": \"e1a101b8a86433ccdfd35bf1575003f16adb8cd3\", \"live\": true, \"id\": \"xd8475d36b93f67eb\"}", "{\"sha\": \"21a4a1fdfdf8c1f6761774219132fc45380f2169\", \"live\": true, \"id\": \"xb9ef4f35fab301b7\"}", "{\"sha\": \"ae0808a8f673885466e757aaaaadb38747434fbd\", \"live\": true, \"id\": \"x844a80c198728eed\"}", "{\"sha\": \"65db15168a254a738c7de3fba8f70cb9c5fdc525\", \"live\": true, \"id\": \"xc705015b299f512a\"}", "{\"sha\": \"21b09de398d06ecf16662cf15567fe0dd01b9e17\", \"live\": true, \"id\": \"xda9fe0ed35d6938c\"}", "{\"sha\": \"2579bf967b24681958cd95a053d5d2ae436ed694\", \"live\": true, \"id\": \"x2e8c082b5cad1382\"}", "{\"sha\": \"b28b3ed616b7a14d0dbe052eab4960a43a7774f4\", \"live\": true, \"id\": \"x680c97f19d610dae\"}", "{\"sha\": \"cc152c6da85488c89c7273563161b3af8a22a826\", \"live\": true, \"id\": \"xab3e72e01e4c45c3\"}", "{\"sha\": \"5f888eee77981685b5fb2aff33821c6848d5c3d2\", \"live\": true, \"id\": \"x37d9e5b047dd2de7\"}", "{\"sha\": \"c153f5413686e0521a4c51fab00299e3f26d3b30\", \"live\": true, \"id\": \"x2f98037f610fbb15\"}", "{\"sha\": \"801f7349a6af1c1a12b44a1b11a95a8197bbee4e\", \"live\": true, \"id\": \"xfc00435a8cd8ae0e\"}", "{\"sha\": \"836e8425a563ab9d1efd0e220e85ae19424d5e3c\", \"live\": true, \"id\": \"x65be29ebacc80cdf\"}", "{\"sha\": \"7cdfc66a4c980203dbef7273ed78c3dabce8913e\", \"live\": true, \"id\": \"xbda58f97368c8bbd\"}", "{\"sha\": \"5a4323537ca3e72ba79439d14766938154ab606d\", \"live\": true, \"id\": \"x02f7f3997efb1e03\"}", "{\"sha\": \"334d9187b30b14e8e9ce33a1003f7e5fc298205f\", \"live\": true, \"id\": \"xfb377e185218ac06\"}", "{\"sha\": \"46427d20ad67bcc64546fdaff7b3143186790455\", \"live\": true, \"id\": \"xcc1061ff94858ad4\"}", "{\"sha\": \"4f8ad4acb0169aee83829d16bdb42ce0cea73240\", \"live\": true, \"id\": \"xfc14f728d2f8fccc\"}", "{\"sha\": \"911200d3379ea38b36e3c97c3dc8263ff6fd150c\", \"live\": true, \"id\": \"xf167744d13cd45ea\"}", "{\"sha\": \"66425a15ede426f9af837ddf71c21579a8ca5851\", \"live\": true, \"id\": \"xcfd6590b98617854\"}", "{\"sha\": \"a089af699d09465ac07eacb4fdec3e6f241bf3cc\", \"live\": true, \"id\": \"x67f41136f9f75c33\"}"], "description": "Practice counting by tens.", "basepoints": 10.0, "slug": "skip-counting-by-10s", "kind": "Exercise", "name": "skip-counting-by-10s", "seconds_per_fast_problem": 4.0, "prerequisites": ["skip-counting-by-5s"], "exercise_id": "skip-counting-by-10s"}, "interpreting-tables": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/interpreting_linear_functions/interpreting-tables/", "id": "interpreting-tables", "display_name": "Interpreting linear tables word problems", "title": "Interpreting linear tables word problems", "all_assessment_items": ["{\"sha\": \"7804816d8c45701c8cc8e6e2fbe54b1a526b86d9\", \"live\": true, \"id\": \"x80a900458940982d\"}", "{\"sha\": \"e67764cad60827643850709e77da1d6aec0c1ea5\", \"live\": true, \"id\": \"x187e4526e1fe7980\"}", "{\"sha\": \"b0a19d3d265792d798112a9940d0ffb45ed64db5\", \"live\": true, \"id\": \"x72fda5773927ce72\"}", "{\"sha\": \"13dfaf40596e9da26d94c3aec3cb42bf25fde9d3\", \"live\": true, \"id\": \"xc4a791e05e72bab3\"}", "{\"sha\": \"a0bacf92ba6053a4f17f8669ece480e296c4183b\", \"live\": true, \"id\": \"xf9e014e2227672be\"}", "{\"sha\": \"8894a823b134c8fd599a580899cd69873563aa8d\", \"live\": true, \"id\": \"xf55eaf1a081d3a97\"}", "{\"sha\": \"0085f20e09a7b2c90bcee34df7d27c9e0117db75\", \"live\": true, \"id\": \"x7ff3b39b93320741\"}", "{\"sha\": \"b259a232ac2b86092d6c61a50110c1126fb79d90\", \"live\": true, \"id\": \"xab6f855f1617178b\"}", "{\"sha\": \"2c80b66d6ab20220ad7bdf336c3a75cb3735446d\", \"live\": true, \"id\": \"x006a87242916d96b\"}", "{\"sha\": \"c89c97af58fdfebf9587045a50f72fe2de9c495c\", \"live\": true, \"id\": \"x4dbaf9170973eb45\"}", "{\"sha\": \"cf4a7c5aed1388ca159b39849dc9f025301f4411\", \"live\": true, \"id\": \"x18e008b3fb98ca46\"}", "{\"sha\": \"83097f4390ece9ebd1b2f645ebbf445610b446fe\", \"live\": true, \"id\": \"xb0a0654038bfc3b1\"}", "{\"sha\": \"240f59cb95d5fc0d8087262ac9814dac9c1798cf\", \"live\": true, \"id\": \"x02ab5c709ab90ad3\"}", "{\"sha\": \"f3326941cd3e8eb1e11a5ce4eaa674955ea09b6a\", \"live\": true, \"id\": \"x13631b6d2e9f162e\"}", "{\"sha\": \"b757638b8df346ad53944bf56de6241cb1a5e27b\", \"live\": true, \"id\": \"x31744eb3e023ff0f\"}"], "description": "Solve real world word problems using a table of values", "basepoints": 10.0, "slug": "interpreting-tables", "kind": "Exercise", "name": "interpreting-tables", "seconds_per_fast_problem": 4.0, "prerequisites": ["intercepts-from-table", "slope-from-two-points"], "exercise_id": "interpreting-tables"}, "adding_and_subtracting_rational_expressions_3": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding_and_subtracting_rational_expressions_3/", "id": "adding_and_subtracting_rational_expressions_3", "display_name": "Adding and subtracting rational expressions 5", "title": "Adding and subtracting rational expressions 5", "description": "", "basepoints": 10.0, "slug": "adding_and_subtracting_rational_expressions_3", "kind": "Exercise", "name": "adding_and_subtracting_rational_expressions_3", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_rational_expressions_2"], "exercise_id": "adding_and_subtracting_rational_expressions_3"}, "vector-word-problems": {"uses_assessment_items": true, "path": "khan/math/precalculus/vectors-precalc/magnitude-direction/vector-word-problems/", "id": "vector-word-problems", "display_name": "Vector word problems", "title": "Vector word problems", "all_assessment_items": ["{\"sha\": \"671c6a1c66f4da9ad5070ec76173a5f72069c458\", \"live\": true, \"id\": \"xd9900713862a525c\"}", "{\"sha\": \"b428dc9e1c1379d803672a735b6c335c5384123d\", \"live\": true, \"id\": \"xd651b62eee7c13c0\"}", "{\"sha\": \"5ef727e0bb97c423e8f5c6a7b19cd828df98b182\", \"live\": true, \"id\": \"x84486bd9e3c4a3a1\"}", "{\"sha\": \"545be35967145028f345c0d150665f8bf34b5d74\", \"live\": true, \"id\": \"x89f9ff58c2879512\"}", "{\"sha\": \"5abe0ac2d9b40f4627c191ef4eeb3ab26376b9ab\", \"live\": true, \"id\": \"xe1cccd4dc11f1be3\"}", "{\"sha\": \"dcb99bde8833d393b7cee452a256bfbf590ecc58\", \"live\": true, \"id\": \"x0a4ce438ad88d4ad\"}", "{\"sha\": \"6ddfa5ed43e0babf272bbafc437eeb59e743c3c2\", \"live\": true, \"id\": \"x65596129442f6050\"}", "{\"sha\": \"e19d0987593be21c987c45aeb3e39a1318dd9aa6\", \"live\": true, \"id\": \"x0da5cd412df0b407\"}", "{\"sha\": \"d37785a696e7e2869560503215f669acc8e1f82e\", \"live\": true, \"id\": \"x1b939a9d5834c9bf\"}", "{\"sha\": \"431c60da43b58f6ee4142ff12717ca50e31c9a21\", \"live\": true, \"id\": \"x8d5228458a397e3b\"}", "{\"sha\": \"a9bbf144ce3aac8938526712cba0d0e46d32474b\", \"live\": true, \"id\": \"xfae6ec1a8eafe53e\"}", "{\"sha\": \"cca067c67eac00de9d8619471e33cbbc8e755576\", \"live\": true, \"id\": \"x8fcfdda0f8338014\"}", "{\"sha\": \"8d7f44d725262481af9caea22bb5152d406602d6\", \"live\": true, \"id\": \"xe423c127d5c52f3e\"}", "{\"sha\": \"a527abb4537e9da8295baffb6b1f93ceb921dcc9\", \"live\": true, \"id\": \"x0962f9f3dff6bc5c\"}", "{\"sha\": \"aee8aec3fbd597f45d51f677eb9dca7b7df2e857\", \"live\": true, \"id\": \"xd02e3ab640598533\"}", "{\"sha\": \"d7f5471a49209d1c097b867e420dc022789777fc\", \"live\": true, \"id\": \"x69473517fa61c823\"}", "{\"sha\": \"e1e7e6ed27f9f70bfd9d961c6f5f6db4784a51a3\", \"live\": true, \"id\": \"x9f74eaaf24012d13\"}", "{\"sha\": \"a45a647fe5a2e2812ea251e082037110e423d203\", \"live\": true, \"id\": \"x8d41298e575bc01b\"}", "{\"sha\": \"9a49f2fa85e9602b203b2f5e9d6ac8d03ac2f0ef\", \"live\": true, \"id\": \"x6a94a0f1da321989\"}", "{\"sha\": \"c35cf8f19a1b679eac653b0d6ddd1b8b610a7d84\", \"live\": true, \"id\": \"x6c298abaa07148d5\"}", "{\"sha\": \"93606e0258a9020d3126cbbe309bb1b2b9a2a494\", \"live\": true, \"id\": \"x91ad930aab00cfff\"}", "{\"sha\": \"12cf945a03eb6612a243184988a1fa410502d523\", \"live\": true, \"id\": \"x2ac30867ddb599e3\"}", "{\"sha\": \"1bdf3069b59b2bac4d1e8c45fd976993fc95b7a5\", \"live\": true, \"id\": \"x80ba1481837e54fa\"}", "{\"sha\": \"4213dbe4621b3ec7dd1c54652afba87ebba12e29\", \"live\": true, \"id\": \"xf7cec98e9c400031\"}", "{\"sha\": \"989b84e5a53e7b05bc98201cee630da403c21fa2\", \"live\": true, \"id\": \"xdf4c22c31169a395\"}", "{\"sha\": \"4c080e4f87edeb6b373c4def4c97999207579e08\", \"live\": true, \"id\": \"xd99d40413b758834\"}", "{\"sha\": \"377ee50000111261abbdead7cbfe69a2de5f20b3\", \"live\": true, \"id\": \"x047f2c43c2ec0731\"}", "{\"sha\": \"f2b692836bd1ebf959bac833bf11e09dd25f98ac\", \"live\": true, \"id\": \"xf82ef8b3dd23b042\"}", "{\"sha\": \"b01fb62a3f803fd976ebebffa64f32b53375405d\", \"live\": true, \"id\": \"x05f6aa7630ab55fd\"}"], "description": "", "basepoints": 10.0, "slug": "vector-word-problems", "kind": "Exercise", "name": "vector-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding-vectors-in-magnitude-and-direction-form", "scaling_vectors"], "exercise_id": "vector-word-problems"}, "exponent_rules": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/alg-integer-exponents/exponent_rules/", "id": "exponent_rules", "display_name": "Using exponent rules to evaluate expressions", "title": "Using exponent rules to evaluate expressions", "description": "Practice evaluating expressions by adding, subtracting, or multiplying exponents.", "basepoints": 14.0, "slug": "exponent_rules", "kind": "Exercise", "name": "exponent_rules", "seconds_per_fast_problem": 7.0, "prerequisites": ["exponents_2"], "exercise_id": "exponent_rules"}, "16th-18th-century-british-art": {"uses_assessment_items": true, "id": "16th-18th-century-british-art", "display_name": "Quiz: 16th - 18th century", "title": "Quiz: 16th - 18th century", "all_assessment_items": ["{\"sha\": \"04863d91f80dd404ab6004627f622a7336533d4c\", \"live\": true, \"id\": \"x50f8167bf03d72f5\"}", "{\"sha\": \"68e76229b30b9f579f56775ab1b8198b3d25ee61\", \"live\": true, \"id\": \"xf2c250ca4a05398e\"}", "{\"sha\": \"3c5c20b1617badd2e0541bd886396e2d6b14a506\", \"live\": true, \"id\": \"x00eb0ac3e67d1e27\"}", "{\"sha\": \"33f10cb3e574794556bb4ad9bbb554a6b570355b\", \"live\": true, \"id\": \"x9a42f900b96ea133\"}", "{\"sha\": \"62bccd13bebb646a55ba9658036b93a6596addc0\", \"live\": true, \"id\": \"x6d411f9a1883ee17\"}"], "description": "Test your knowledge of British art from the 16th - 18th centuries.", "basepoints": 10.0, "path": "16th-18th-century-british-art/", "slug": "16th-18th-century-british-art", "kind": "Exercise", "name": "16th-18th-century-british-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "16th-18th-century-british-art"}, "colossus-of-constantine-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/roman/late-empire/colossus-of-constantine-quiz/", "id": "colossus-of-constantine-quiz", "display_name": "Colossus of Constantine (quiz)", "title": "Colossus of Constantine (quiz)", "all_assessment_items": ["{\"sha\": \"523b9d387e921b99454996e8e6f171f21b75e9a1\", \"live\": true, \"id\": \"xb9f51625fcd95d6a\"}", "{\"sha\": \"c467d437fb1373768796cdb2970cb18730796243\", \"live\": true, \"id\": \"x74f17a2a56d6a88e\"}", "{\"sha\": \"f22794e1d0d9d6c118d3399f178ae85ced28fc2d\", \"live\": true, \"id\": \"xe0ff0a08f3fc228b\"}", "{\"sha\": \"bdf7ca4fd756d742a974e7ca87eff476bf8eea39\", \"live\": true, \"id\": \"x81b6682739f4cfe4\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "colossus-of-constantine-quiz", "kind": "Exercise", "name": "colossus-of-constantine-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "colossus-of-constantine-quiz"}, "gastrointestinal-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/the-gastrointestinal-system/gastrointestinal-system-questions/", "id": "gastrointestinal-system-questions", "display_name": "Gastrointestinal system questions", "title": "Gastrointestinal system questions", "all_assessment_items": ["{\"sha\": \"a45d20f6b8d314c21ccfca8c954eb369369a29f0\", \"live\": true, \"id\": \"x8540d161e91908de\"}", "{\"sha\": \"da38f540a80d802b2931dc208e4f91054f3d42e1\", \"live\": true, \"id\": \"xcc0acd4835d6b441\"}", "{\"sha\": \"9655c5a73491f384f50200a6d85460b300533130\", \"live\": true, \"id\": \"x40685df399dee20c\"}", "{\"sha\": \"e2dcbf9329c39429f09e8d4645c258c5d8555090\", \"live\": true, \"id\": \"x6a8b77ceb7b4aac4\"}", "{\"sha\": \"e93d3209e04ce2a67ed51c806f57e3cf81cd9eb8\", \"live\": true, \"id\": \"x4f03d2af03cfc022\"}", "{\"sha\": \"7ae74a9b7df4a59bbf094b9c756e4362ce9f0afa\", \"live\": true, \"id\": \"xa7f43a953485c0ed\"}", "{\"sha\": \"2e20468b0554d1c7e2e94fb48e2c11ce4a245d21\", \"live\": true, \"id\": \"xcb0a0183035ae8af\"}", "{\"sha\": \"956ba3d28fa15c57d22de361497c3dd646c87ef9\", \"live\": true, \"id\": \"xff573c798d5dfe9c\"}", "{\"sha\": \"00a6bef1689455d9a3200eacf8689796c0224b94\", \"live\": true, \"id\": \"x1a9b108782eb786a\"}", "{\"sha\": \"8e98afc3073b65fa1ac9c0cbe6518c1746c89f26\", \"live\": true, \"id\": \"x42a6bfc63e6257d8\"}", "{\"sha\": \"6c6afb3fefa71369a81214144ef2d5987dc73ab7\", \"live\": true, \"id\": \"xc726cbf883e685fd\"}"], "description": "Gastrointestinal system questions", "basepoints": 10.0, "slug": "gastrointestinal-system-questions", "kind": "Exercise", "name": "gastrointestinal-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gastrointestinal-system-questions"}, "multiplying_and_dividing_complex_number_polar_forms": {"uses_assessment_items": false, "path": "khan/math/precalculus/imaginary_complex_precalc/exponential-form-complex-numbers/multiplying_and_dividing_complex_number_polar_forms/", "id": "multiplying_and_dividing_complex_number_polar_forms", "display_name": "Multiplying and dividing complex numbers in polar form", "title": "Multiplying and dividing complex numbers in polar form", "description": "Multiply and divide complex numbers in polar form, and plot the answer by specifying the radius and angle.", "basepoints": 25.0, "slug": "multiplying_and_dividing_complex_number_polar_forms", "kind": "Exercise", "name": "multiplying_and_dividing_complex_number_polar_forms", "seconds_per_fast_problem": 31.0, "prerequisites": ["dividing_complex_numbers", "rectangular-and-polar-forms-of-complex-numbers"], "exercise_id": "multiplying_and_dividing_complex_number_polar_forms"}, "dependent_probability": {"uses_assessment_items": false, "path": "khan/math/precalculus/prob_comb/dependent_events_precalc/dependent_probability/", "id": "dependent_probability", "display_name": "Dependent probability", "title": "Dependent probability", "description": "", "basepoints": 22.0, "slug": "dependent_probability", "kind": "Exercise", "name": "dependent_probability", "seconds_per_fast_problem": 23.0, "prerequisites": ["probability_1", "independent_probability"], "exercise_id": "dependent_probability"}, "parallax-method": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/parallax-method/", "id": "parallax-method", "display_name": "Parallax method", "title": "Parallax method", "all_assessment_items": ["{\"sha\": \"b916b52e3427e199d102ed052122acf7aed25579\", \"live\": true, \"id\": \"x4035509e64800276\"}", "{\"sha\": \"1a395a9c33c6f89cf868eff36b2b30766551e2d4\", \"live\": true, \"id\": \"xeb7140b7e135baf3\"}", "{\"sha\": \"f4f4311e7b933141c84d9e324eb2ace36bb3a275\", \"live\": true, \"id\": \"x7c09cc66fa444734\"}", "{\"sha\": \"115c46320131fac9bef89d52abf53fab4e13a1d9\", \"live\": true, \"id\": \"x1a610f0b9d9259c2\"}", "{\"sha\": \"e350e657eb57ee94387ee491da44c2a1d9bb462b\", \"live\": true, \"id\": \"x3de3870c0c8dc7c3\"}", "{\"sha\": \"887440206307c69981e22c9095582a5049131ddf\", \"live\": true, \"id\": \"xd7c016f2abd5e29b\"}", "{\"sha\": \"628eb7a5c20dc5392d3fa791ffb9cd11d7cc1d35\", \"live\": true, \"id\": \"xd94ebef74aea33b7\"}", "{\"sha\": \"30f9ed9324452abe4c69db7a9a2f839b26bbfbc9\", \"live\": true, \"id\": \"x8f15951dc1d88f03\"}", "{\"sha\": \"b11c23551a98ed6b88443ab8b0a62b6f8e81a356\", \"live\": true, \"id\": \"xf4c4bcbc3c03ddd1\"}", "{\"sha\": \"3cf9f69f7ccf542a92c83eb142a7ceffc6620d09\", \"live\": true, \"id\": \"xa1f77739e8aa4e90\"}", "{\"sha\": \"90a4d924652f1f57f205f0655e8cc148edf10cfd\", \"live\": true, \"id\": \"xc67575a7d5082cd0\"}"], "description": "", "basepoints": 10.0, "slug": "parallax-method", "kind": "Exercise", "name": "parallax-method", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "parallax-method"}, "comparing_improper_fractions_and_mixed_numbers": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/mixed-numbers-pre-alg/comparing_improper_fractions_and_mixed_numbers/", "id": "comparing_improper_fractions_and_mixed_numbers", "display_name": "Comparing fractions and mixed numbers", "title": "Comparing fractions and mixed numbers", "all_assessment_items": ["{\"sha\": \"62646970f01330204b1ced1ed8c8f885be4fc9ea\", \"live\": true, \"id\": \"x159509d5c38b7265\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f1576cbfcdd063c410765a430b62e65b9a9129b\", \"live\": true, \"id\": \"x612ba08d88276c4b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9e1646da7bbeb09a75aef6d390fe3af2ab52edc\", \"live\": true, \"id\": \"x10a4e556df3159c3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"26f0edb7b3fe2dc3ae97432f5dca427299aa9cb8\", \"live\": true, \"id\": \"x458c8e3bfee1088e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"74c46472b82b0e64c0c69d385594244ae77560f5\", \"live\": true, \"id\": \"xbfaaf6f8ac32701a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ec65829859d0419c9275267ce0ff3d7bedacf87b\", \"live\": true, \"id\": \"x7b87f706c52bdd46\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9c4fc6422fc7835b299d5e4aed18733d863b372\", \"live\": true, \"id\": \"xa962625237cf5cc4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"923700b15a21fc34ed4e53bec358234e899a3548\", \"live\": true, \"id\": \"x9bc363fdb6b6be95\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"250e6bf0a020a3dd0e901420098c8012748202be\", \"live\": true, \"id\": \"xeca27fc5a7f2ad50\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"138d596d1f6f742304afdcb3693818ab7e0a0c0b\", \"live\": true, \"id\": \"x627441e33d9395c7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b9bcc4d1af8851976a707298d4393638fc677dac\", \"live\": true, \"id\": \"x80ac05644f5782a0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9eb5b52efc6604fb98dca7ec3a89230f1c7c3a2a\", \"live\": true, \"id\": \"x08df4a52e006b666\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11eb71df3a2703c780ee638767aa5a3d8711ff4c\", \"live\": true, \"id\": \"xa6ff62d3b1c8686b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d19b7b3f1d69b60093191fb86f322b3c7770e71\", \"live\": true, \"id\": \"x85be116e3413e107\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2cdaaac46e412724a55f0263b838bd21dc9a6e89\", \"live\": true, \"id\": \"x3320ec27dc829acb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"482154dc2e9a9aa8ebdec1ea7ca13b444164423b\", \"live\": true, \"id\": \"xe0e841e6165e32e5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c165e20b20f246a9e3b66025f35719f08c097b91\", \"live\": true, \"id\": \"x160a445cf854c2fd\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be224794235a51416fbe6e0fb11650741babb2f9\", \"live\": true, \"id\": \"x48698c47a23a1233\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"22dd5afe7f92e46e131cc19f37600a8eee30ba95\", \"live\": true, \"id\": \"xef4924e9d1286ab9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9b7a72dc08af0a6416cf9b066452c4562a52f2d\", \"live\": true, \"id\": \"x54b31b865334c301\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Practice comparing a fraction to a mixed number.", "basepoints": 17.0, "slug": "comparing_improper_fractions_and_mixed_numbers", "kind": "Exercise", "name": "comparing_improper_fractions_and_mixed_numbers", "seconds_per_fast_problem": 10.0, "prerequisites": ["comparing_fractions_2", "converting_mixed_numbers_and_improper_fractions"], "exercise_id": "comparing_improper_fractions_and_mixed_numbers"}, "evolution-and-population-dynamics---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/evolution-and-population-dynamics-passage-1/", "id": "evolution-and-population-dynamics---passage-1", "display_name": "Selective pressures on cacti needle length", "title": "Selective pressures on cacti needle length", "all_assessment_items": ["{\"sha\": \"1ee74af689908aaf3ec915848203b3887776c756\", \"live\": true, \"id\": \"x8eae24212855d817\"}", "{\"sha\": \"de751ce5ef613282b118e7354b88c1ead0d64fb1\", \"live\": true, \"id\": \"x1a378a658b237ba7\"}", "{\"sha\": \"516d882209ac5547b86a946f28d617e6ed6f7e82\", \"live\": true, \"id\": \"x0a9d29ca0c7acb73\"}", "{\"sha\": \"abf38437e136a15251b8f9a292bca8d2c0ffd361\", \"live\": true, \"id\": \"x9e836f51203ee5a7\"}", "{\"sha\": \"e43c22f2ebe694d3303f6f7282aebffb069c836e\", \"live\": true, \"id\": \"x980ad6fee37dfa3f\"}"], "description": "", "basepoints": 10.0, "slug": "evolution-and-population-dynamics-passage-1", "kind": "Exercise", "name": "evolution-and-population-dynamics---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "evolution-and-population-dynamics---passage-1"}, "solutions_to_quadratic_equations": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/solutions_to_quadratic_equations/", "id": "solutions_to_quadratic_equations", "display_name": "Solutions to quadratic equations", "title": "Solutions to quadratic equations", "description": "Determine how many solutions a quadratic equation has and whether they are rational, irrational, or complex", "basepoints": 23.0, "slug": "solutions_to_quadratic_equations", "kind": "Exercise", "name": "solutions_to_quadratic_equations", "seconds_per_fast_problem": 25.0, "prerequisites": ["quadratic_equation"], "exercise_id": "solutions_to_quadratic_equations"}, "quiz--expansion---interconnection": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/expansion-interconnection/expansion/quiz-expansion-interconnection/", "id": "quiz--expansion---interconnection", "display_name": "Quiz: Expansion & Interconnection", "title": "Quiz: Expansion & Interconnection", "all_assessment_items": ["{\"sha\": \"7bea1b87a5991869393aa27533b406eeb3cec2d5\", \"live\": true, \"id\": \"x8aebbf3f1766576d\"}", "{\"sha\": \"6f2cf9ed68aa1c88d599a3ecd58b4ebd893ec335\", \"live\": true, \"id\": \"x35f65a151dfae557\"}", "{\"sha\": \"d781d227cbec732fdaf446907e1a1a00686b2f48\", \"live\": true, \"id\": \"x1d3e7f25aeb8bcf5\"}", "{\"sha\": \"04e8f6c0352f2f0be8e2f279167a775b330f89e6\", \"live\": true, \"id\": \"x4d4423ff0ada5e24\"}", "{\"sha\": \"d313d38c9dafbd35b0221802965eb721d1f68de8\", \"live\": true, \"id\": \"x52bf2264325ce5f2\"}"], "description": "Quiz 8.0", "basepoints": 10.0, "slug": "quiz-expansion-interconnection", "kind": "Exercise", "name": "quiz--expansion---interconnection", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--expansion---interconnection"}, "neuron-membrane-potentials-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/neuron-membrane-potentials/neuron-membrane-potentials-questions/", "id": "neuron-membrane-potentials-questions", "display_name": "Neuron membrane potentials questions", "title": "Neuron membrane potentials questions", "all_assessment_items": ["{\"sha\": \"c9002eee6a0dd6df9ca9cbd7f047011a037ce9e6\", \"live\": true, \"id\": \"xc211e8d421bd5fd7\"}", "{\"sha\": \"a071d14b420b679140102e5f223875a3d2666979\", \"live\": true, \"id\": \"x229e25228e55fa54\"}", "{\"sha\": \"d276cf1918ac70f1e6ef3aea284f8dbe08e21c01\", \"live\": true, \"id\": \"x9128da89a4a4d347\"}", "{\"sha\": \"2bbe053c9cb4e0b78a64dadfc89d6ad7faab81d7\", \"live\": true, \"id\": \"x83ac3fa4014f5c92\"}", "{\"sha\": \"d4b7ab7c40a8e96f7209fce2b57ca5b867664c13\", \"live\": true, \"id\": \"x34eb60047c684d40\"}", "{\"sha\": \"d40b523a1e4b932cd1a3889984d25fc8d19320ce\", \"live\": true, \"id\": \"x0f8e044d19668d84\"}", "{\"sha\": \"e2bdfa4acac6e76014b1c5a7e3538b3bb5067881\", \"live\": true, \"id\": \"x495058853d36a4a3\"}", "{\"sha\": \"5e4686c53eb79ccf0931a5b7d558d51bb3f7deb4\", \"live\": true, \"id\": \"xea995c0778fb16a4\"}", "{\"sha\": \"b9d218e2c2f55daf2c74ceed1d5d586d463354e2\", \"live\": true, \"id\": \"x25ec1ab10a539678\"}", "{\"sha\": \"d04253ce6896cb649e41e7d14cd83b90d3fde110\", \"live\": true, \"id\": \"x7ff4a692313ad5b6\"}"], "description": "Neuron membrane potentials questions", "basepoints": 10.0, "slug": "neuron-membrane-potentials-questions", "kind": "Exercise", "name": "neuron-membrane-potentials-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neuron-membrane-potentials-questions"}, "understanding-sequences": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-sequences/understanding-sequences/", "id": "understanding-sequences", "display_name": "Understanding sequences", "title": "Understanding sequences", "all_assessment_items": ["{\"sha\": \"c73fa953b1fc2e6eac7baedd217818c776ea67c7\", \"live\": true, \"id\": \"x3a508d0a14cc4468\"}", "{\"sha\": \"81be6612d0ced6fd8aedd7b071b13bc27ac865ce\", \"live\": true, \"id\": \"xe80bf20e613daa69\"}", "{\"sha\": \"7a300ddc33e2906375363fb7b7b10acd5c05e8be\", \"live\": true, \"id\": \"xa5b16e1764107a76\"}", "{\"sha\": \"beba1baf5874441ed467f0e859738dd40cb8c1d0\", \"live\": true, \"id\": \"x30489c5a9418e9b2\"}", "{\"sha\": \"75fecf2eb7393346217180581a33e766d0a0eb05\", \"live\": true, \"id\": \"xa5be7ce2427d728c\"}", "{\"sha\": \"a79dd0d6caa0537f25e8e530096e805cb74f95f0\", \"live\": true, \"id\": \"x74e56c991c33d258\"}", "{\"sha\": \"8a8858414bfbfd599bbb7ae7a80156d20fbeebcb\", \"live\": true, \"id\": \"x13411d0ea8c1422c\"}", "{\"sha\": \"76bdd7f718ba98152dc0ec932055a73287fae4d4\", \"live\": true, \"id\": \"x9dcd612246758414\"}", "{\"sha\": \"c3bdd2405b079449a6fbdc7d485dbd4708293e45\", \"live\": true, \"id\": \"x988638db5ab83cfd\"}", "{\"sha\": \"daf0a105247357dc801812d932fa751ab7e5d7e3\", \"live\": true, \"id\": \"x04b0f1db65d7172c\"}", "{\"sha\": \"3a86785f9237e1d6ed192065722b660c805d7148\", \"live\": true, \"id\": \"x9c2ac85ee3065820\"}", "{\"sha\": \"a5dc57468168249029e5f9698d739ea4f05b0512\", \"live\": true, \"id\": \"x0ef03caa18a751ab\"}", "{\"sha\": \"a39fabcd8659449430cf01a23113804c67689d0f\", \"live\": true, \"id\": \"x430b880b41093114\"}", "{\"sha\": \"e3d77b8c94572da0dd237d6e5ea1c84316e18bf6\", \"live\": true, \"id\": \"xf53b5509d2fe63db\"}", "{\"sha\": \"c01d8bd1c53a0c2661c1f21b600d0d3ff66b44e4\", \"live\": true, \"id\": \"x81a2de8606aed90e\"}", "{\"sha\": \"e098dc69f2af357fead6e31bef5e0910b7e3945d\", \"live\": true, \"id\": \"xee4e43f328fb98da\"}", "{\"sha\": \"cbf2c91a3be29aa52c26c26be1a38c671999b5f5\", \"live\": true, \"id\": \"x701831f1ddbc03ed\"}", "{\"sha\": \"214e95769fdb5d80f5778f0406cd828331acf568\", \"live\": true, \"id\": \"xf383debeadaa10bb\"}", "{\"sha\": \"d95c42af51fbdb04b25593ee8690a9272a740722\", \"live\": true, \"id\": \"x09a805e1a391921f\"}", "{\"sha\": \"e2e053af0bdc87e54c40444cc149dc25dafa6695\", \"live\": true, \"id\": \"xf7a537a510e5cdaa\"}", "{\"sha\": \"905c8a7b3474ce1022d8baf4864f383588b6c75f\", \"live\": true, \"id\": \"xc3a6cc1ba6920fbe\"}", "{\"sha\": \"327ae7ac9bad8516e05ed778df0049cb0eafce42\", \"live\": true, \"id\": \"x6ab9a960cc86122f\"}", "{\"sha\": \"ffa0904c7f83f3220240ad2f6e3c1de64b5267bb\", \"live\": true, \"id\": \"xb182130fdb1ab690\"}", "{\"sha\": \"075d1dd932eaa65a8d7e376d1c8dbf60cf405ae6\", \"live\": true, \"id\": \"x9aeec7bc25713248\"}", "{\"sha\": \"25bf53554967aa25a51efff005c676796447dd5c\", \"live\": true, \"id\": \"x2559f21c7ee4fb56\"}", "{\"sha\": \"dcf075016fe6c0e146a0d26f03c58a6ae2ccc1d6\", \"live\": true, \"id\": \"xf870d2e982fca9cf\"}", "{\"sha\": \"f74569e8b95ee03feb37bde104ff44e3f8061ad4\", \"live\": true, \"id\": \"xf582b60d09820928\"}", "{\"sha\": \"d9f7d0a189c606c196ba9929cd4c0050a7af90c9\", \"live\": true, \"id\": \"x0e4e0704da305692\"}", "{\"sha\": \"34007492c093ff489a5befb390b8260b423b2c4e\", \"live\": true, \"id\": \"x000cd99f6be1c042\"}", "{\"sha\": \"c90f12ff47bcae518f57c193d49606d7d15e1ad6\", \"live\": true, \"id\": \"x46c28a5575b6e847\"}"], "description": "", "basepoints": 27.0, "slug": "understanding-sequences", "kind": "Exercise", "name": "understanding-sequences", "seconds_per_fast_problem": 44.0, "prerequisites": ["recursive_explicit"], "exercise_id": "understanding-sequences"}, "identifying-factors-and-multiples": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/factors-multiples/divisibility_and_factors/identifying-factors-and-multiples/", "id": "identifying-factors-and-multiples", "display_name": "Identifying factors and multiples", "title": "Identifying factors and multiples", "all_assessment_items": ["{\"sha\": \"a458c8ab65bd6e7f9d245da092a5d2264299eea5\", \"live\": true, \"id\": \"xb77cba135c1fcafc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e348221e7d342000ee5601d42df474c752608d15\", \"live\": true, \"id\": \"xa0009075b6577d6e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"caf941c665bc69ec359142b6b3cd6ba05948efaf\", \"live\": true, \"id\": \"x735bbdd20f23435d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c36277bb2be3fdfdc5c4c8de78b41b551f40cf2b\", \"live\": true, \"id\": \"x5e7c8d0c2bba6ab5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8b7b437fa60428ea9cfc2bf481402ce3f1e568f8\", \"live\": true, \"id\": \"x9e2752cfeee456f1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"873f88059f5768f464f8d0ad85453b27eae2f653\", \"live\": true, \"id\": \"x98658e21906a377b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef626102c20633b5b079af2b92092fddb8e4fbf2\", \"live\": true, \"id\": \"x446c29d14ef6c804\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"24ad789f71adfbe08c7d6d1e23b7cffcc506a944\", \"live\": true, \"id\": \"xd37175f615718afa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"31c33f1cd2c0be88fbb4b2c0cc67cbb7c7ec507e\", \"live\": true, \"id\": \"x805e4f00056ec2b1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"93c4fd41846fe44774a87e7f1e6cfe13fac9262b\", \"live\": true, \"id\": \"xc30b839aa065c9ea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6f20e2ffc2d4eae29abda37d563df842d1e8c8c1\", \"live\": true, \"id\": \"x3d0e2155cd3a4cad\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea7a9cdfce4864a41df129dc969aa02d5b26e310\", \"live\": true, \"id\": \"xade34a7d4e4ab379\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c544f92bd033d44f905b52f2fab7aa272d85948b\", \"live\": true, \"id\": \"xa457a4dddb3c22ab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c23a9c56075c31b0291e54380e2a7521a63d9c3f\", \"live\": true, \"id\": \"x544b25dfb8a71cab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"117e8785327102216822035dfbf0697b21334ae5\", \"live\": true, \"id\": \"xa94406f5e2003600\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ecfbff96d6b4775c2fb160f089b57c01cf36024f\", \"live\": true, \"id\": \"xa235b877f51e9196\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b5bab373f684c6d7f8d1b53254b721484748a1ef\", \"live\": true, \"id\": \"x10df1ff039f4ae6b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8bac68f69fb756222f1e991624973d823116181\", \"live\": true, \"id\": \"x3c33035d92d0b039\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7ebd868e6e3629bd303a07b4b1110515ba18caa8\", \"live\": true, \"id\": \"x5b0b512f7c4f796c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf379294fd43c0c7242e7f4690aa02825543599a\", \"live\": true, \"id\": \"x5ff095b1ef169930\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e9aa6e2c2c2b54ed47636e6c0a968112ea21eb5\", \"live\": true, \"id\": \"xa424b566d4029269\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0e0f198ed41eb7275686d0644f123fc19c5a23c0\", \"live\": true, \"id\": \"xf737c670c845bb00\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8ad16e2ec86e9f12600b3279a4fd77d4833e239\", \"live\": true, \"id\": \"xc72b83527924bd28\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"66126a7f6e5d149090bf7d4d0476457c249524c9\", \"live\": true, \"id\": \"x892a5137b1c7b27c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6e08396d41dd98355fb49080c35701f6d5db1921\", \"live\": true, \"id\": \"xa0e6164ec08af28e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f87923c5e891574c1765208cc592d63015e73427\", \"live\": true, \"id\": \"x38b039bf08cc5315\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"631a6cf9da2d56c3da1aafcd1345a9e630781340\", \"live\": true, \"id\": \"xfb6b625c19107194\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7ebf1233723261fe9a738c43bd8df81aa7d4d5ae\", \"live\": true, \"id\": \"x12c540d4abf92d86\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4ee0ad590c2f14b98f223c43ae27db779d8c4d3c\", \"live\": true, \"id\": \"x142504075c434bb2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"301049f92cb1f146c6046810f8b7da56a59b3129\", \"live\": true, \"id\": \"x75ff8e3980f95e17\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Demonstrate understanding of factors and multiples.", "basepoints": 10.0, "slug": "identifying-factors-and-multiples", "kind": "Exercise", "name": "identifying-factors-and-multiples", "seconds_per_fast_problem": 4.0, "prerequisites": ["factor-pairs"], "exercise_id": "identifying-factors-and-multiples"}, "functions-defined-by-integrals": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/functions-defined-by-integrals/functions-defined-by-integrals/", "id": "functions-defined-by-integrals", "display_name": "Functions defined by integrals", "title": "Functions defined by integrals", "all_assessment_items": ["{\"sha\": \"bfbb40d302c9e3dac12aa6050302615586237021\", \"live\": true, \"id\": \"x7c02e8c19f613019\"}", "{\"sha\": \"cfa532304a2635d4310110d51df0174b8af38f3d\", \"live\": true, \"id\": \"xebee9ee1de18b834\"}", "{\"sha\": \"b00ec92abe50d9bbb309c5b0e176496c8f1530dd\", \"live\": true, \"id\": \"xc92b4835fae716b5\"}", "{\"sha\": \"a22645a8f9a2593351a34193c7b88bd51bdd6d4b\", \"live\": true, \"id\": \"xe860e1dccdc6d757\"}", "{\"sha\": \"2538c9d4b560fbdfab4dd481c37d4cb166f3c70c\", \"live\": true, \"id\": \"x8c3d504c1691ce68\"}", "{\"sha\": \"d9521489b70c928e572de127095a11db5c9c5d2a\", \"live\": true, \"id\": \"x8c33261daa136301\"}", "{\"sha\": \"19ab986a91e6146e71fbad57d417c98247666316\", \"live\": true, \"id\": \"x45405ae85bbfdc86\"}", "{\"sha\": \"bc6199a2447e4bd59b0ba7956d775169191e5e8b\", \"live\": true, \"id\": \"x097ef99fa221b776\"}", "{\"sha\": \"295a5a5551d2480ce13cf453ecbf52c2f6c375f0\", \"live\": true, \"id\": \"x6d39e587bbdad14a\"}", "{\"sha\": \"18b9d54f108fd66104c3b1aec642cc8947803264\", \"live\": true, \"id\": \"x074a143329016494\"}", "{\"sha\": \"80300917f2be7002fdc8ed969c4e67b85c26110b\", \"live\": true, \"id\": \"x292cf104faa58209\"}", "{\"sha\": \"8c687a4984943d6fc8a8256f9f7580cc085a7ef5\", \"live\": true, \"id\": \"xd8fc055e58a1e7ce\"}", "{\"sha\": \"40acec7458c0ed8432045935493c285d46e6fb4f\", \"live\": true, \"id\": \"x2856a01729c4440f\"}", "{\"sha\": \"0a28f079c40483e47d8dddde42ef985ba8b1a035\", \"live\": true, \"id\": \"x8f59aac440cbc76f\"}", "{\"sha\": \"8c426b84637775c7287a897803d5022f52a7ea84\", \"live\": true, \"id\": \"xf5c9ef2dc70b264e\"}", "{\"sha\": \"d31800291fccae279841d27c0716016034c66e90\", \"live\": true, \"id\": \"x2769fcdfc33a3b59\"}", "{\"sha\": \"a96fc75c0aebcbe1747bb137a2fa654d3e7c076a\", \"live\": true, \"id\": \"x949bad2cf1675867\"}", "{\"sha\": \"8a292ca11181c6f60b692a6400f241eef3e0f8c6\", \"live\": true, \"id\": \"xc567fbd775361500\"}", "{\"sha\": \"13e058331c7a7e16d37cdf996644e2239f8bac6a\", \"live\": true, \"id\": \"xf392e8f644d7ff1e\"}", "{\"sha\": \"c54493d966be410007f9547589ec944dfeb391b3\", \"live\": true, \"id\": \"xf829f5a96e4fc386\"}", "{\"sha\": \"781bd9038820bfb8296d882c8d1c122d187614f5\", \"live\": true, \"id\": \"x11d051ca9ce85af7\"}", "{\"sha\": \"50c2cc22c5f6d94721fa5538ce806ff0a0b1f9e6\", \"live\": true, \"id\": \"x893e2490a6bd9e28\"}", "{\"sha\": \"7eff265a7538a8c1ac9bc8d74b2a2c9851a35dce\", \"live\": true, \"id\": \"xf542c68c30c71a82\"}", "{\"sha\": \"c7a92baf9b04f008fcd06a574434de42d7f6cb41\", \"live\": true, \"id\": \"x47d7350213f57d04\"}", "{\"sha\": \"112f835623a46951dc30de42e7c33db050fca9a1\", \"live\": true, \"id\": \"x695f0ef736b9c72d\"}", "{\"sha\": \"3b689b2f3f8a7dd3aaa4b3d1f8a402a6dcf6cf57\", \"live\": true, \"id\": \"x8af6f641aafe8e7c\"}", "{\"sha\": \"6e2382b5e5d72c7fb7399f0814a370515ab5b440\", \"live\": true, \"id\": \"xe8e59d8d74554873\"}", "{\"sha\": \"2e34e7ce6315ec2ccd0e4f83697bf5f6fe7678c1\", \"live\": true, \"id\": \"x8de2a66252a3d31d\"}", "{\"sha\": \"18153b44227f2951f8b314cef5d18bd3ba4dd241\", \"live\": true, \"id\": \"xece4abe1e4fb8b36\"}", "{\"sha\": \"f6a894e54b0aeb9122c4afc3b701a5da6787811e\", \"live\": true, \"id\": \"x3e17f7278ed42fb3\"}", "{\"sha\": \"615829af015e0f9fd282eaea44365654d90465ec\", \"live\": true, \"id\": \"x251c04464cb6a001\"}"], "description": "", "basepoints": 10.0, "slug": "functions-defined-by-integrals", "kind": "Exercise", "name": "functions-defined-by-integrals", "seconds_per_fast_problem": 4.0, "prerequisites": ["evaluating-definite-integrals", "area-between-a-curve-and-an-axis"], "exercise_id": "functions-defined-by-integrals"}, "teen-numbers-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-teens/teen-numbers-1/", "id": "teen-numbers-1", "display_name": "Teen numbers", "title": "Teen numbers", "all_assessment_items": ["{\"sha\": \"c241b57c6b52e67410a7c290abaafb6a50ef7ceb\", \"live\": true, \"id\": \"xda9fc751b7861b0d\"}", "{\"sha\": \"81ff2315f7b38f93950940e37174da67fe3b8063\", \"live\": true, \"id\": \"x8ac4fc667bdff772\"}", "{\"sha\": \"ae0896b3cac6bfcb4de109308b74e9179f68a6d3\", \"live\": true, \"id\": \"x008dfd9fd8cdb340\"}", "{\"sha\": \"f8125a0866d2bfd3632dca88381a4b573f56f3f9\", \"live\": true, \"id\": \"x7d73c85d85512d69\"}", "{\"sha\": \"bba20a038b437236315ce365ec183b16308d19fb\", \"live\": true, \"id\": \"xbe7f75368b9c08cf\"}", "{\"sha\": \"71f8d795b3c5062852883aeb9f6b7ba0609a3257\", \"live\": true, \"id\": \"x85d5c40b2d6da0cd\"}", "{\"sha\": \"12b2442631e11e1b94de03e910f079b9f4377bdb\", \"live\": true, \"id\": \"xb64355ad574e6fb0\"}", "{\"sha\": \"617c4696ac10e44810e96e9774ba9ccfcd0a033e\", \"live\": true, \"id\": \"x90e8222f7978e668\"}", "{\"sha\": \"72895dcd5d88273036e0289eee5ab364f1f320eb\", \"live\": true, \"id\": \"x3ee102c8f4134179\"}", "{\"sha\": \"9933ed18b4bec6cd4767aa5be1feb5100e44e1d8\", \"live\": true, \"id\": \"xe26e4e4abf37b5c9\"}", "{\"sha\": \"617c96d36dab0830c6cec101281a47b444aea69a\", \"live\": true, \"id\": \"x7252a2cf41c268de\"}", "{\"sha\": \"a05159e4e24c5a1f1e2cee5813793f29dff8dfb0\", \"live\": true, \"id\": \"x306db079f6ea8ee6\"}", "{\"sha\": \"4ec9dfd88337b62076067a8fe29753dd065f6184\", \"live\": true, \"id\": \"xf706ce02b9216716\"}", "{\"sha\": \"cafa24157a1f16ec75ea560a1bfb3106d01594da\", \"live\": true, \"id\": \"xfd4558aedcaf5760\"}", "{\"sha\": \"ced0f31101a22c66a8dc674748e0095ec4280b1a\", \"live\": true, \"id\": \"xeae58795d3df808b\"}", "{\"sha\": \"59486913691a0581a128829cbf5f1e4f6d3c681b\", \"live\": true, \"id\": \"x035506bf8b951db6\"}", "{\"sha\": \"487f84c5f34ecb1f459df97f28e540480c49f273\", \"live\": true, \"id\": \"x088396f39074f9b8\"}", "{\"sha\": \"704f14af69b8579e30d072777c5113a7fff74071\", \"live\": true, \"id\": \"x760054b85024c012\"}", "{\"sha\": \"00b1028f4c909cadb3845ba3304cf5072bbabf3d\", \"live\": true, \"id\": \"x3d3a852e893c7bfa\"}", "{\"sha\": \"5717103391598e7352c6ac9ada8df9c9e47d3806\", \"live\": true, \"id\": \"x5b9c3a6c5f4de162\"}", "{\"sha\": \"b1e7d478a3d6ac2bb7270041f53200128fd9c973\", \"live\": true, \"id\": \"x240365f56bb24ffd\"}"], "description": "Practice thinking of teen numbers as a ten plus some ones.", "basepoints": 10.0, "slug": "teen-numbers-1", "kind": "Exercise", "name": "teen-numbers-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["put-together"], "exercise_id": "teen-numbers-1"}, "negative_number_word_problems": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-subtract-negatives-pre-alg/negative_number_word_problems/", "id": "negative_number_word_problems", "display_name": "Interpreting negative numbers", "title": "Interpreting negative numbers", "all_assessment_items": ["{\"sha\": \"652fd293d4fa8ff01774397934261ec2c100e21c\", \"live\": true, \"id\": \"xe2f9023f8445e171\", \"perseus_api_major_version\": null}", "{\"sha\": \"705e637a8a11d01fe36df74e71a93b90d526cf06\", \"live\": true, \"id\": \"x7528bc2e12e8a7ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"7e88e589d49f4ff80e2f1b06ad51442d1ee0b821\", \"live\": true, \"id\": \"xd047d8ec7e3eaa75\", \"perseus_api_major_version\": null}", "{\"sha\": \"abcb0abf7956886c70d968d7daa2a9d90bb7a991\", \"live\": true, \"id\": \"x1c9b16ba96f75cb6\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b36f9dee8c214f3024daff3c7ea6e9e659b934c\", \"live\": true, \"id\": \"xbb487d32473e2315\", \"perseus_api_major_version\": null}", "{\"sha\": \"a060a877e8ffde273fadc6b73470c9863f5101d4\", \"live\": true, \"id\": \"x2a17935fe9eccebf\", \"perseus_api_major_version\": null}", "{\"sha\": \"bd61bec83f007ddc4f05a04f26464ed7cd43c301\", \"live\": true, \"id\": \"x98e11c1c7454c750\", \"perseus_api_major_version\": null}", "{\"sha\": \"b42b97e757f8afc31dc9477811155b397a3bfc1e\", \"live\": true, \"id\": \"xb97528dde565f721\", \"perseus_api_major_version\": 3}", "{\"sha\": \"4c36750efd403c0e6aed2c8ceed4f2c3f156bbd9\", \"live\": true, \"id\": \"x5f51dcdf86f6075e\", \"perseus_api_major_version\": null}", "{\"sha\": \"06b14414423970f71e91b878dc27244dc86da4c2\", \"live\": true, \"id\": \"x3972e4d5249b8e8f\", \"perseus_api_major_version\": null}", "{\"sha\": \"a07551334fcf383a6045e9805408e5391cbd9fce\", \"live\": true, \"id\": \"x923cbee31762cda0\", \"perseus_api_major_version\": null}", "{\"sha\": \"27a86297ec9f93b63ddba981fcd85db656acc4f4\", \"live\": true, \"id\": \"xddff9c9df9d734c4\", \"perseus_api_major_version\": null}", "{\"sha\": \"6ac6629458e8d8bd5d6dc18becba2b4f871e5ba5\", \"live\": true, \"id\": \"x034c86611aeea107\", \"perseus_api_major_version\": null}", "{\"sha\": \"cc7ea4c40f23b7c0d262fa8742216e82319c49cf\", \"live\": true, \"id\": \"xd317d159d6c1e7ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"26cfe65e4c35b148e09422ba47e2e7d6d2333cff\", \"live\": true, \"id\": \"xcae6a736a81396e6\", \"perseus_api_major_version\": null}", "{\"sha\": \"878e2abac1e97bdf95998a059d7767573c27f9da\", \"live\": true, \"id\": \"x14610809780db12b\", \"perseus_api_major_version\": null}", "{\"sha\": \"67258cf65f11e8fe2e45eca6e5e1079fb11baf32\", \"live\": true, \"id\": \"xa6fc8125435aaab0\", \"perseus_api_major_version\": null}", "{\"sha\": \"b5de9e27db0f2ab75cd081eb299ccf8e431adc7c\", \"live\": true, \"id\": \"xa70582735da517c9\", \"perseus_api_major_version\": null}", "{\"sha\": \"607b456b91ee20e30273c75017fbb8f80448ea66\", \"live\": true, \"id\": \"x0360f7f7\", \"perseus_api_major_version\": null}", "{\"sha\": \"80079bd8c36e6dec7aa3d74d793bf1a02b204808\", \"live\": true, \"id\": \"xcfc2d6a823195981\", \"perseus_api_major_version\": null}", "{\"sha\": \"08e6a2daba8ab93550a82ba07f9e668f487c0ca4\", \"live\": true, \"id\": \"x623b272801476538\", \"perseus_api_major_version\": null}", "{\"sha\": \"56bf90788e81d075dbbb0a743e1aef6ccc286c11\", \"live\": true, \"id\": \"x2c77e2efa332dc50\", \"perseus_api_major_version\": null}", "{\"sha\": \"6c09ba712d3407295e81ea07b1878646d4f900a2\", \"live\": true, \"id\": \"x60eb54374edb6ad5\", \"perseus_api_major_version\": null}", "{\"sha\": \"bb9f7ae985bde31c2c576f97cd2f73ac80b3d5e7\", \"live\": true, \"id\": \"xb10e2549c6686462\", \"perseus_api_major_version\": null}", "{\"sha\": \"0007b220cf8d239cdc83acb880836d39766a3b8b\", \"live\": true, \"id\": \"xeed5875d4290a6bc\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab437e1d5017609a0cacf57ed4f744302b2c66f3\", \"live\": true, \"id\": \"x1a8884835e553297\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c4e21950f8440b5ec6ea7a149d3899d6084e2d8\", \"live\": true, \"id\": \"x3f9e733988e14aa8\", \"perseus_api_major_version\": null}", "{\"sha\": \"a94a05b67d6c913742415cbd84bb075b4479f82b\", \"live\": true, \"id\": \"x061880557eec1d21\", \"perseus_api_major_version\": null}"], "description": "Practice explaining the meaning of negative numbers in different scenarios.", "basepoints": 20.0, "slug": "negative_number_word_problems", "kind": "Exercise", "name": "negative_number_word_problems", "seconds_per_fast_problem": 17.0, "prerequisites": [], "exercise_id": "negative_number_word_problems"}, "advanced-lung-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/respiratory-system/respiratory-system-introduction/advanced-lung-quiz/", "id": "advanced-lung-quiz", "display_name": "Advanced respiratory system quiz", "title": "Advanced respiratory system quiz", "all_assessment_items": ["{\"sha\": \"78b62cce88d5772a99d4d911f66b6147277633b9\", \"live\": true, \"id\": \"x2e478e952e46dfb6\"}", "{\"sha\": \"b3f33aae0381a83e80ef438ce0866c040648e607\", \"live\": true, \"id\": \"x2b5b7aa73cf3c08f\"}", "{\"sha\": \"bb4439aea0e28bafaa1136f17595fb8923b5be80\", \"live\": true, \"id\": \"xa02fb5a73eb89f91\"}", "{\"sha\": \"04ee711e357061e3f95e41c4c9ff6adce51e0262\", \"live\": true, \"id\": \"x47788d91e384e606\"}", "{\"sha\": \"4364f6e6f831958dab611460f30bc943ebcafaee\", \"live\": true, \"id\": \"xc61d44e28d5b3140\"}", "{\"sha\": \"7a7b4e3ee7cc9a91bce1f7187e1d8c98072f2d4d\", \"live\": true, \"id\": \"xac86cdc1ee2383c2\"}", "{\"sha\": \"4d961a2e246f739b3b4030a9a330c5566a7ba104\", \"live\": true, \"id\": \"xa7f3b1aee2e0eb3c\"}", "{\"sha\": \"1d574e0595fe24b2cd24e431bc42f0b69108c445\", \"live\": true, \"id\": \"xd4056e0698eccffc\"}", "{\"sha\": \"85d52717514e54ff1b45fe50d397667e6031e922\", \"live\": true, \"id\": \"xc29fe98b6bcc840e\"}", "{\"sha\": \"7cf1383b4a0d6bc96b7add2d84048c7f173b4dca\", \"live\": true, \"id\": \"xf0170014bdae1a70\"}", "{\"sha\": \"433668999d44428a66b1d1184e76821d04aa8cf6\", \"live\": true, \"id\": \"x6f976759184cea34\"}", "{\"sha\": \"3fb817073cfd959c4e3ab29c93d3823f407b3412\", \"live\": true, \"id\": \"x7d961fde001b0405\"}"], "description": "Advanced Lung Quiz", "basepoints": 10.0, "slug": "advanced-lung-quiz", "kind": "Exercise", "name": "advanced-lung-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "advanced-lung-quiz"}, "symmetry-and-periodicity-of-trig-functions": {"uses_assessment_items": true, "path": "khan/math/trigonometry/less-basic-trigonometry/trig-symmetry-periodicity/symmetry-and-periodicity-of-trig-functions/", "id": "symmetry-and-periodicity-of-trig-functions", "display_name": "Symmetry and periodicity of trigonometric functions", "title": "Symmetry and periodicity of trigonometric functions", "all_assessment_items": ["{\"sha\": \"20a6dcf9e1f0941c26041cef5b3602489dfa4b89\", \"live\": true, \"id\": \"x93d065ccdb29948c\"}", "{\"sha\": \"9826135178c8ba16432a403f773ce5bf3e8b441b\", \"live\": true, \"id\": \"xb6399a38e1001fe6\"}", "{\"sha\": \"dbb9898be71c8d831ae2621616136254158b90c2\", \"live\": true, \"id\": \"x0e5227bad340e2f4\"}", "{\"sha\": \"56498ac5145e635d9e210b260d954b6e925d77bc\", \"live\": true, \"id\": \"xe914de8d7be365cd\"}", "{\"sha\": \"e3af4cbf2f97ef1b919fc33ec136bd49a49c752a\", \"live\": true, \"id\": \"x5b5a3dd27e4f6471\"}", "{\"sha\": \"56c658d8d06a149cc2dab5746b953d90e63904a2\", \"live\": true, \"id\": \"x150fc2615cfca9a6\"}", "{\"sha\": \"8ebcaf12c87442f69053e865b47a1ce9aefa1570\", \"live\": true, \"id\": \"x8f29642e4c758ec4\"}", "{\"sha\": \"1afcc673d78f7c068ffbc7a2b34430814b92de29\", \"live\": true, \"id\": \"x739f93987aa74194\"}", "{\"sha\": \"360866a22156c3840796cdd80cb94471e1fa9ea8\", \"live\": true, \"id\": \"x38a28e8d914c332c\"}", "{\"sha\": \"53840d3faa656439bb698c4321440499824e0e0c\", \"live\": true, \"id\": \"xf7dc51e583277ca8\"}", "{\"sha\": \"3e94778a0aa14f04ddb0f994203e68d1be0b8bb5\", \"live\": true, \"id\": \"x81ba67a7a7687f2a\"}", "{\"sha\": \"863f5d3a30e7b4c2cd3021c56be0327cb9d9e4d1\", \"live\": true, \"id\": \"x62f46322284d4c45\"}", "{\"sha\": \"f0d662c99c44f2e06ae6469438bb3759e6abeec2\", \"live\": true, \"id\": \"xb7e88a84d6846bce\"}", "{\"sha\": \"db45bf5b3e8f30ffdd668c0cae618dbf220d7c05\", \"live\": true, \"id\": \"xd51f039ee8e7c13e\"}", "{\"sha\": \"731f877495fbc826a3ace1c60e8870a842f6c7ee\", \"live\": true, \"id\": \"xd58f495b963bb1cb\"}", "{\"sha\": \"1632c2ad6aefef6f693201225f9eba87a1fa6e05\", \"live\": true, \"id\": \"x7cb318ece550a98f\"}", "{\"sha\": \"1329a4e3a8195c04e38e31280d0f7ef979a58adf\", \"live\": true, \"id\": \"x88663525da3fc8b7\"}", "{\"sha\": \"ec068e63e894f0955efa0ea50ebc70af0a525076\", \"live\": true, \"id\": \"xd7baa5fa9ce4a084\"}", "{\"sha\": \"d3de7ebdf79d8cbf4824e52a6e34205a4c19ba1c\", \"live\": true, \"id\": \"x1c2a9fffa8972eaf\"}", "{\"sha\": \"bddd7b6bf0c2447b1d795f538cc6e17d214d79b5\", \"live\": true, \"id\": \"x8151f36e27473814\"}", "{\"sha\": \"e571abeaf0caaa8711aff8d5b3bdb7bd5c67740a\", \"live\": true, \"id\": \"xcef918218ee3e2f5\"}", "{\"sha\": \"21a29c3e0477232e81c967cc0f8a2bdfdb8eb44a\", \"live\": true, \"id\": \"xd5610ba1856a62a8\"}", "{\"sha\": \"60f934032f3c7af098e84ed042600ce918764656\", \"live\": true, \"id\": \"x2e7ad1c81869ee6e\"}", "{\"sha\": \"c9ac32c55e68b54e671db8822749d5ae195e85f6\", \"live\": true, \"id\": \"xbc3d5ed95302c4ea\"}", "{\"sha\": \"c593e9f73e2ce0d395fa63b3fd13fe0340d46c69\", \"live\": true, \"id\": \"x851ce28e1a567f21\"}", "{\"sha\": \"97d37d6fe6bfa67cf91b1502a23fc8ee94e644fc\", \"live\": true, \"id\": \"xe1d54dcf6abd9545\"}", "{\"sha\": \"5dc2a56fb9bfa26dc834b44cdacf54cba630fdf1\", \"live\": true, \"id\": \"xb420aa678d040c63\"}", "{\"sha\": \"b8acbde98e1d45fd3b4eec710c93c68bdcbeeaf8\", \"live\": true, \"id\": \"xa38bc1b2e934c7c5\"}", "{\"sha\": \"c33c2c21a4fcc53db09592fd9642050c5b4ef6d7\", \"live\": true, \"id\": \"xba2d238d1e68e1d3\"}", "{\"sha\": \"434df9fd10278b5e6863f967000d0c451c9ed8f7\", \"live\": true, \"id\": \"x28555c4498e6f4c0\"}"], "description": "", "basepoints": 10.0, "slug": "symmetry-and-periodicity-of-trig-functions", "kind": "Exercise", "name": "symmetry-and-periodicity-of-trig-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["unit-circle-trigonometry"], "exercise_id": "symmetry-and-periodicity-of-trig-functions"}, "case-study-of-panic-disorder-in-an-adult-female": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/case-study-of-panic-disorder-in-an-adult-female/", "id": "case-study-of-panic-disorder-in-an-adult-female", "display_name": "Case study of panic disorder in an adult female", "title": "Case study of panic disorder in an adult female", "all_assessment_items": ["{\"sha\": \"b1fc94f17a51bffca39d69e3d2a11bf859e09601\", \"live\": true, \"id\": \"x7ed8549001cf9f02\"}", "{\"sha\": \"4b1ed78800d17a783ddbf9f8b4c16c327d1ff707\", \"live\": true, \"id\": \"x31391c469cf8104c\"}", "{\"sha\": \"49c63523ac357e26d879a7841b31d6541198b4c9\", \"live\": true, \"id\": \"x877773354a347938\"}", "{\"sha\": \"155af5d426d9d7d91b60d173c58608f90fc16f38\", \"live\": true, \"id\": \"x86f8481ee5ac4dd1\"}", "{\"sha\": \"30118a2c9a81fe045763c1ab04411523146e4b3e\", \"live\": true, \"id\": \"xbd00c2b541740ce3\"}"], "description": "Questions related to psychological disorders", "basepoints": 10.0, "slug": "case-study-of-panic-disorder-in-an-adult-female", "kind": "Exercise", "name": "case-study-of-panic-disorder-in-an-adult-female", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "case-study-of-panic-disorder-in-an-adult-female"}, "bruegel-s-hunters-in-the-snow-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern/antwerp-bruges/bruegel-s-hunters-in-the-snow-quiz/", "id": "bruegel-s-hunters-in-the-snow-quiz", "display_name": "Bruegel, Hunters in the Snow (quiz)", "title": "Bruegel, Hunters in the Snow (quiz)", "all_assessment_items": ["{\"sha\": \"60f338654eaa486db2eb20fedd78c01b81362bc5\", \"live\": true, \"id\": \"xaebfe2acc6afcfc5\"}", "{\"sha\": \"74303effe871650c550db21f637fe2f08116466c\", \"live\": true, \"id\": \"xe7cee388af358121\"}", "{\"sha\": \"ebdee57a0a4c252585d591c095d1d7346ea8a25e\", \"live\": true, \"id\": \"xedb0ef57f1626bdd\"}", "{\"sha\": \"7e5110e7a3c7124d7f486455cbc564ef41d55fb3\", \"live\": true, \"id\": \"xfc928d93dcca080b\"}"], "description": "This is a quiz for the video Pieter Bruegel the Elder, Hunters in the Snow (Winter).", "basepoints": 10.0, "slug": "bruegel-s-hunters-in-the-snow-quiz", "kind": "Exercise", "name": "bruegel-s-hunters-in-the-snow-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "bruegel-s-hunters-in-the-snow-quiz"}, "adding_and_subtracting_complex_numbers": {"uses_assessment_items": false, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/adding_and_subtracting_complex_numbers/", "id": "adding_and_subtracting_complex_numbers", "display_name": "Adding and subtracting complex numbers", "title": "Adding and subtracting complex numbers", "description": "", "basepoints": 18.0, "slug": "adding_and_subtracting_complex_numbers", "kind": "Exercise", "name": "adding_and_subtracting_complex_numbers", "seconds_per_fast_problem": 12.0, "prerequisites": ["adding_and_subtracting_polynomials", "the-imaginary-unit-and-complex-numbers"], "exercise_id": "adding_and_subtracting_complex_numbers"}, "reproductive-questions-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/mcat-reproductive-system/reproductive-questions-2/", "id": "reproductive-questions-2", "display_name": "Reproductive system questions 2", "title": "Reproductive system questions 2", "all_assessment_items": ["{\"sha\": \"09aeb38afda328bcea0bb0e4b3e5b965e1d49372\", \"live\": true, \"id\": \"x2245bc79c70a4717\", \"perseus_api_major_version\": 3}", "{\"sha\": \"cc2c2909d6aa415be1126ffbe44c1cd0ecec34d1\", \"live\": true, \"id\": \"x76ea7af8a74df066\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1f6cc99cedd3d2c431e1f98ec430922bce0c585b\", \"live\": true, \"id\": \"x50df681c448d4937\", \"perseus_api_major_version\": 3}", "{\"sha\": \"42e005db14b32b5361d14dde55a70d0088b5d3bf\", \"live\": true, \"id\": \"xfad4d5d1dec4730f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e3844a19c798399c9ee8334df2e0c0011f386c97\", \"live\": true, \"id\": \"x0762215cd1a3eb45\", \"perseus_api_major_version\": 3}", "{\"sha\": \"90e91d25537c627b974fa55b7667798b8254f9dd\", \"live\": true, \"id\": \"xc41ac25feaff7e69\", \"perseus_api_major_version\": 3}", "{\"sha\": \"544ed707b55e73489f60d6e2c4aa1c02204df3c9\", \"live\": true, \"id\": \"xc760bc8beadb211d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"3a0678d21d1936bc1e5fa8f80b3091ea12c94c7a\", \"live\": true, \"id\": \"xb0706531bd8029ba\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f3285e04db7ebec6e4835623fdff451054cee120\", \"live\": true, \"id\": \"xd993c1cd755a46ab\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2005f4480c61c2542aa2073a12585756952e7ec7\", \"live\": true, \"id\": \"x203ed01cd3ad0acc\", \"perseus_api_major_version\": 3}"], "description": "Reproductive system questions 2", "basepoints": 10.0, "slug": "reproductive-questions-2", "kind": "Exercise", "name": "reproductive-questions-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "reproductive-questions-2"}, "recursive_explicit": {"uses_assessment_items": true, "path": "khan/math/precalculus/seq_induction/precalc-geometric-sequences/recursive_explicit/", "id": "recursive_explicit", "display_name": "Modeling with sequences", "title": "Modeling with sequences", "all_assessment_items": ["{\"sha\": \"08d7a1505aa06942cce2bcb855f902777ed13f24\", \"live\": true, \"id\": \"xf3751a1a45c856d0\"}", "{\"sha\": \"b90ce835e9bc2af5c92e48e0dd70b487c0d416f4\", \"live\": true, \"id\": \"x0c96eb6aceff67de\"}", "{\"sha\": \"cac6e9300f49e0b2002ac19c05e8030310d4f33a\", \"live\": true, \"id\": \"x2611e6e4fdc79876\"}", "{\"sha\": \"879cda52ca7598328941798692aea52e520872ce\", \"live\": true, \"id\": \"x4c117c5d2094ebca\"}", "{\"sha\": \"f99bb8f28a3c5b6f49994672f98caeca12a0108b\", \"live\": true, \"id\": \"x87505f12d59dd66c\"}", "{\"sha\": \"cc847207ebe6bd9581084af88fc07ebd1cf58046\", \"live\": true, \"id\": \"xcfe4cef1fc1b7a99\"}", "{\"sha\": \"6ac251a6a4cd18d450501eaf88b3466be5929242\", \"live\": true, \"id\": \"x9f6183641ef6a62f\"}", "{\"sha\": \"b527d7462b15fad0cd1c658d381d9fa34074999a\", \"live\": true, \"id\": \"x05ee1d70cbead46b\"}", "{\"sha\": \"a940d4296161822eff278793eee425de866c0c09\", \"live\": true, \"id\": \"x52fffc1610a3735c\"}", "{\"sha\": \"dc5f1afadeb5b075e90058ef949e137aa2d91e4b\", \"live\": true, \"id\": \"x65a47a10b6252e95\"}", "{\"sha\": \"a676cde2ad1b90ed1c4a733583e3331fb5fcde61\", \"live\": true, \"id\": \"x9ed9aa2ffd886096\"}", "{\"sha\": \"145707de6ec228f92df88135f165dd26a41913ba\", \"live\": true, \"id\": \"xe4d0e5adee97705e\"}", "{\"sha\": \"406f42aab20d638e42c0f0b4a677d1890dd3519b\", \"live\": true, \"id\": \"x52db55b9b42d6443\"}", "{\"sha\": \"ec793782d7e3063ac2df52db88b969c90d2a93c7\", \"live\": true, \"id\": \"xc87da21ceffde28e\"}", "{\"sha\": \"c0cdcf0a7dd747fd00dad18e5f57d8a2a35258c1\", \"live\": true, \"id\": \"x9151da0811bee7f0\"}", "{\"sha\": \"21ee10ba0cedeaa3a68340501d0bd3e47b070ed2\", \"live\": true, \"id\": \"x9ddf8b389f02468c\"}", "{\"sha\": \"8bc8e1c177b280f69fb3d55c4e133dc549292ea1\", \"live\": true, \"id\": \"x91cc534c56442c72\"}", "{\"sha\": \"68b3323efb142d50d173e1a37f8cf77c2e4810af\", \"live\": true, \"id\": \"x93d9457efdd889e1\"}", "{\"sha\": \"c1bad4f7f5c785396d1d27e9ccf4ebd965b082c6\", \"live\": true, \"id\": \"x3f6e148ddc77db76\"}", "{\"sha\": \"fc9ae66395c1494fce51c99890f0da57115c1508\", \"live\": true, \"id\": \"xa0a9ed88375b88f2\"}"], "description": "", "basepoints": 19.0, "slug": "recursive_explicit", "kind": "Exercise", "name": "recursive_explicit", "seconds_per_fast_problem": 14.0, "prerequisites": ["recursive-formulas-for-arithmetic-sequences", "recursive-formulas-for-geometric-sequences"], "exercise_id": "recursive_explicit"}, "cognition---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/cognition-passage-2/", "id": "cognition---passage-2", "display_name": "Identifying intelligence types to increase student success", "title": "Identifying intelligence types to increase student success", "all_assessment_items": ["{\"sha\": \"6d11f6a18307ee37275febca1932217e219f817e\", \"live\": true, \"id\": \"x72370c5c9674f5f1\"}", "{\"sha\": \"0fb092fa04663c1f0d897328140e1f35fb385872\", \"live\": true, \"id\": \"xd637dbf420b221ac\"}", "{\"sha\": \"d2e399fe4048dd68f89b7b7580c3341737657abb\", \"live\": true, \"id\": \"x9968abe011e6c697\"}", "{\"sha\": \"1d36ef00f0aba81ed751088471b8f5ff53e62328\", \"live\": true, \"id\": \"xb6266a7da2e0ecd8\"}", "{\"sha\": \"5ef658f949f5d00d43f5f481e2ccbcbc5ce938fd\", \"live\": true, \"id\": \"x8435eed0257b2e96\"}"], "description": "", "basepoints": 10.0, "slug": "cognition-passage-2", "kind": "Exercise", "name": "cognition---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cognition---passage-2"}, "cognition---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/cognition-passage-1/", "id": "cognition---passage-1", "display_name": "Matchboxes and problem solving", "title": "Matchboxes and problem solving", "all_assessment_items": ["{\"sha\": \"8d830bd1b07c50791d6165754659a10616cf9471\", \"live\": true, \"id\": \"x26e843aa9272bc50\"}", "{\"sha\": \"811526c27eda4f533c16254d7f18718de771955c\", \"live\": true, \"id\": \"x9c795480c7048bf8\"}", "{\"sha\": \"02df933acb2b5ccbd39a0a42820f4095aac8a08b\", \"live\": true, \"id\": \"x53744949d751edf6\"}", "{\"sha\": \"12fd4b8501bcdd4c496321b6366a91b2f845b667\", \"live\": true, \"id\": \"x3853bb174b2df02d\"}", "{\"sha\": \"1d7c0de01afa42093f00516a2b5407db95bf7864\", \"live\": true, \"id\": \"x13680b88ca770b63\"}"], "description": "", "basepoints": 10.0, "slug": "cognition-passage-1", "kind": "Exercise", "name": "cognition---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cognition---passage-1"}, "multiplying_a_matrix_by_a_vector": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/matrix_multiplication/multiplying_a_matrix_by_a_vector/", "id": "multiplying_a_matrix_by_a_vector", "display_name": "Multiplying a matrix by a vector", "title": "Multiplying a matrix by a vector", "all_assessment_items": ["{\"sha\": \"d093d1b0ebbebf7ac41a0843e221445b609b089f\", \"live\": true, \"id\": \"xd4f82a4709150fa0\"}", "{\"sha\": \"90dc29a3d15a40b3027d722d814910eba36e6613\", \"live\": true, \"id\": \"xadd7a29b0f998367\"}", "{\"sha\": \"bb62c7e16673df81fee2622cd18efc2da3dee4bf\", \"live\": true, \"id\": \"x522369e163d38501\"}", "{\"sha\": \"5881b69f01306a550eb97da034835bdf7d8aee20\", \"live\": true, \"id\": \"x2eb1994c3a7f9c23\"}", "{\"sha\": \"099b0a1cf523afc192a97575b6bb85e6baa65ee1\", \"live\": true, \"id\": \"x9407eaaef01f65e3\"}", "{\"sha\": \"b6e25110424be9e2d64c534666173f2755937e66\", \"live\": true, \"id\": \"x4a399d78422791e4\"}", "{\"sha\": \"b77c4e66e91c672392c4fae750c2dd9eef7ff349\", \"live\": true, \"id\": \"x3f2a24f65559d2b1\"}", "{\"sha\": \"b39b2a01564da93e2e0efd25ee4e28439a0bbdb7\", \"live\": true, \"id\": \"x2252c7d6511989fb\"}", "{\"sha\": \"8d0650462ed1642d6b6b5e224fc90f6d7c99f2a9\", \"live\": true, \"id\": \"xce8d76f303ef4655\"}", "{\"sha\": \"434f8e50120d78dbd7c072d08c7aae8ef10731f0\", \"live\": true, \"id\": \"x13c023744fa051c9\"}", "{\"sha\": \"01526bf2e1ef266725aebbf61c4a61329a52ddab\", \"live\": true, \"id\": \"x95feffc912da1765\"}", "{\"sha\": \"e7dc48eae26e512e53a0ec80be8747adc2d3c443\", \"live\": true, \"id\": \"x7670a86ffa3cd8e0\"}", "{\"sha\": \"22ada50cdec5573f0d30d85d49719e4d76911ee7\", \"live\": true, \"id\": \"xbec2465f4fa705e7\"}", "{\"sha\": \"f78b8a0e291ead3b38978043ab16cc1249f0c0c5\", \"live\": true, \"id\": \"x4b60103102702db6\"}", "{\"sha\": \"78d67f4dec551a8c2956e0fb376e23baabc2e841\", \"live\": true, \"id\": \"xf9558b79b50636ed\"}", "{\"sha\": \"896e149b2da64dff59bba2854a21da6536ca8314\", \"live\": true, \"id\": \"xa90c1c740d1e8bf2\"}", "{\"sha\": \"4dec1c5030e9b72f5b5dd0a8c91da936ba96dffb\", \"live\": true, \"id\": \"x1ce8acbedc3c9a4e\"}", "{\"sha\": \"e95f681ff4a7a5d2f0bc9cbb739f87ce146ed763\", \"live\": true, \"id\": \"x21ac66c66ad4c758\"}", "{\"sha\": \"3fed132537d0bfa3b18d7d458e6f90e56bdd79b6\", \"live\": true, \"id\": \"x8b641185d3e48e27\"}", "{\"sha\": \"129145b29d1915f44d461e57465a62d55df36eee\", \"live\": true, \"id\": \"x7b7c0847045be249\"}", "{\"sha\": \"a1e0d3aac7435fe5bacf2fbe3ad9f7d6ce8a87f1\", \"live\": true, \"id\": \"x16869335040da06a\"}", "{\"sha\": \"397d5fa3210a3772e5e072ca94f988c6d35a42df\", \"live\": true, \"id\": \"xe0df6a480fa43edc\"}", "{\"sha\": \"7121cff6fbb85ec15ff9c5b776088cd2de353a96\", \"live\": true, \"id\": \"x3473fad1b913311d\"}", "{\"sha\": \"af8c117ed5d4b77333dec217730311864bd2f93c\", \"live\": true, \"id\": \"x4f3f1c2b2d3ff654\"}", "{\"sha\": \"c509e07a89bdcf9b0065d5773f49c9fb22a7c39f\", \"live\": true, \"id\": \"x9f55fdab3acd56a5\"}", "{\"sha\": \"cc6066c017959589197b61b016b26232f569fca9\", \"live\": true, \"id\": \"x0a3714caa9f76105\"}", "{\"sha\": \"4b34fced6a3135929ed2862671c5a4f2f0fb4b2e\", \"live\": true, \"id\": \"x20e8d2a2835dcd35\"}", "{\"sha\": \"e7b5bfbad1959b2916a8e4d3e09c88c64a1cab8f\", \"live\": true, \"id\": \"xa9be38da08308261\"}", "{\"sha\": \"1ddcf28a8cacd5b078f5c3f5b3d6c1846e50bee0\", \"live\": true, \"id\": \"xaf16655cec1f63ac\"}", "{\"sha\": \"b31f324aab85e9352f927eb532f601c2a39de4c0\", \"live\": true, \"id\": \"x01bd6f5a92288627\"}"], "description": "Multiply a matrix by a vector", "basepoints": 24.0, "slug": "multiplying_a_matrix_by_a_vector", "kind": "Exercise", "name": "multiplying_a_matrix_by_a_vector", "seconds_per_fast_problem": 28.0, "prerequisites": ["scalar_matrix_multiplication"], "exercise_id": "multiplying_a_matrix_by_a_vector"}, "math-patterns": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/number-patterns/math-patterns/", "id": "math-patterns", "display_name": "Math patterns 2", "title": "Math patterns 2", "all_assessment_items": ["{\"sha\": \"65fe7e96db9971e0ca4ed7967c2511249dbc539f\", \"live\": true, \"id\": \"x7860fe06\"}", "{\"sha\": \"2305563ab20e4d311d35a179d6e0d0695c2ed21d\", \"live\": true, \"id\": \"xc95d3b60\"}", "{\"sha\": \"d1e36b0c8a6e56019e87d860c2289b08a77ca866\", \"live\": true, \"id\": \"xbd1e1080\"}", "{\"sha\": \"530620aed6c8c49b86ee930c1fb497c74ead5fb7\", \"live\": true, \"id\": \"x237d34a9\"}", "{\"sha\": \"22314fe781b6ce9105333faa1df9d64e751afb54\", \"live\": true, \"id\": \"x58d97770\"}", "{\"sha\": \"68d101919572a7cae07fd409dadf7e2487700b6a\", \"live\": true, \"id\": \"x9d7356d4\"}", "{\"sha\": \"8025a0fd16fa9d74be1b9632a171c29e23beb824\", \"live\": true, \"id\": \"xd5fb9085\"}", "{\"sha\": \"7adefe9fbdf3473cccf419db9defc8cc87636aab\", \"live\": true, \"id\": \"x2fed29f0\"}", "{\"sha\": \"d9edd2e0a88cb273c99b937b8120f34513a92c89\", \"live\": true, \"id\": \"x8f674991\"}", "{\"sha\": \"3608dd02afb9dfb426e90b7109af8778e5aa0848\", \"live\": true, \"id\": \"x58340bf5\"}", "{\"sha\": \"6137fc5415858ede1c65a3bbca140631e87f3de8\", \"live\": true, \"id\": \"xe7e0c767\"}", "{\"sha\": \"669664ae14d88d7cf2fd81d4922cca16c55d1d38\", \"live\": true, \"id\": \"x08489e21\"}", "{\"sha\": \"865a08472ffeb035ec8f6cb9a65b4fca2b44443a\", \"live\": true, \"id\": \"x71a844bc\"}", "{\"sha\": \"31fcab13e3f67d0fc4d5784b761227532ed27217\", \"live\": true, \"id\": \"x095b6650\"}", "{\"sha\": \"5db112f98730540dfed7aad6c36244b78acb06e6\", \"live\": true, \"id\": \"x57ffe68c\"}", "{\"sha\": \"90a69486347c934c738541b8f2431af625e69aca\", \"live\": true, \"id\": \"xeb48eb97\"}", "{\"sha\": \"4a37b2d06c00efa15e31f29bd59d58fa87b30e84\", \"live\": true, \"id\": \"x0b746cf2\"}", "{\"sha\": \"ee4bb608895246cf6c7f6b4307252b6c60710716\", \"live\": true, \"id\": \"xb7600453\"}", "{\"sha\": \"f90824049505b106771c5ea7e107fdffaa3813eb\", \"live\": true, \"id\": \"xa4166968\"}", "{\"sha\": \"84e3b80a3a9aed57fc40f7b7dbe5a9711377c6ba\", \"live\": true, \"id\": \"x7393b692\"}", "{\"sha\": \"52484839b867122f9a1fcb24780371efe4f557da\", \"live\": true, \"id\": \"xb7c5dbfe\"}", "{\"sha\": \"e17de6f464fd098608adcd8b66556b9d77c2333f\", \"live\": true, \"id\": \"x5367485b\"}", "{\"sha\": \"36b0cb1682a3ad15578930b6c2205039440a62a5\", \"live\": true, \"id\": \"xe94d800b\"}", "{\"sha\": \"6613e31d93d905907fa91c73ccc141e1b024e0eb\", \"live\": true, \"id\": \"x4551ee1b\"}", "{\"sha\": \"502675f654b1afbc0524a93c3c51a5903e96ce08\", \"live\": true, \"id\": \"xf373f3c9\"}", "{\"sha\": \"0046fe96733a3b5330ccd12901f352564cc7ce06\", \"live\": true, \"id\": \"xda5f9eb4\"}", "{\"sha\": \"8d4582a8835409472b0f3ce38b7dfe3c72ea8f0f\", \"live\": true, \"id\": \"x292e1b4c\"}", "{\"sha\": \"acffa400247c1322161322c5ee443a140a0c9513\", \"live\": true, \"id\": \"x08fe724c\"}", "{\"sha\": \"b8a5132a554c5fba794ddad7a6c5258215b03ba0\", \"live\": true, \"id\": \"x4c96a6fb\"}", "{\"sha\": \"b72739109d68074f1d22f730a589b29f28c3d29a\", \"live\": true, \"id\": \"x07826ae5\"}", "{\"sha\": \"6b97bda9811d2574d0339c01d7f3bc4ef19294e0\", \"live\": true, \"id\": \"x4ee1387c4943b841\"}", "{\"sha\": \"0e535003cd17662a0cc3cac802a3cc700a851809\", \"live\": true, \"id\": \"xd3063e77124f4a08\"}", "{\"sha\": \"8cbdc5433569907dbf9e777b517eb2ac65443b77\", \"live\": true, \"id\": \"x8d1606921a4be35b\"}", "{\"sha\": \"06e5d13d542e27168271978980151071dd4aab8f\", \"live\": true, \"id\": \"xbbbf3612c9a9204e\"}", "{\"sha\": \"cc11b43c4c75a8143436f651b0a2a9346dadc120\", \"live\": true, \"id\": \"xa3214b5c5d367d0b\"}", "{\"sha\": \"f7ea1414950f5eb05417b3575a886bb8062016f8\", \"live\": true, \"id\": \"x2811c37dec8f65e4\"}", "{\"sha\": \"32170b808083f05576d4360aa6ac61119632090d\", \"live\": true, \"id\": \"x3362e3eea11e244d\"}"], "description": "Generate terms in a pattern when given a rule. \u00a0Identify features of a pattern that are not explicit to the rule itself.", "basepoints": 10.0, "slug": "math-patterns", "kind": "Exercise", "name": "math-patterns", "seconds_per_fast_problem": 4.0, "prerequisites": ["patterns", "division_2"], "exercise_id": "math-patterns"}, "fluids-in-motion---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/fluids-in-motion-passage-1/", "id": "fluids-in-motion---passage-1", "display_name": "A fluid flowing through a tube", "title": "A fluid flowing through a tube", "all_assessment_items": ["{\"sha\": \"d124afecdeb491da7ef297aafde30f824d142309\", \"live\": true, \"id\": \"x27af6ca3e3dd6586\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e71f206d4e3b0b4fc47d62a5b06244d4df34918b\", \"live\": true, \"id\": \"x503f312d62af87a3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"488f2b1dedb412b6a603b2434fcc4af9b4380481\", \"live\": true, \"id\": \"xa11ed08fb084c2fd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e246cb8cc6e4b79a645278d0d9d0646b295b73a7\", \"live\": true, \"id\": \"x861e7f6afd36266d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3bc3136183c1490e9b76a96121d2112dad36484a\", \"live\": true, \"id\": \"xf0f42f8dcea44fed\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Passages that test your knowledge on fluids in motion", "basepoints": 10.0, "slug": "fluids-in-motion-passage-1", "kind": "Exercise", "name": "fluids-in-motion---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fluids-in-motion---passage-1"}, "graphs-of-polynomials": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/polynomial-end-behavior/graphs-of-polynomials/", "id": "graphs-of-polynomials", "display_name": "Graphs of polynomials", "title": "Graphs of polynomials", "all_assessment_items": ["{\"sha\": \"f2e6840247a9bbc9a2a4a7f04bfae88f8071abec\", \"live\": true, \"id\": \"x17b77c854b0659f6\"}", "{\"sha\": \"2741341ab5f80342062e1764329925ee4d094ebf\", \"live\": true, \"id\": \"xd71ebffb9d5623ed\"}", "{\"sha\": \"f6e578f229f0ce0c2f5dfc077d4af47c33f59063\", \"live\": true, \"id\": \"xf2e025f4f650015b\"}", "{\"sha\": \"57e40fff70b7f72195b7d97ac7d5403716c032fc\", \"live\": true, \"id\": \"xee99af7f047158d8\"}", "{\"sha\": \"2c8d7a2f99f7ad74fd319ce4804da8d9f1fb2397\", \"live\": true, \"id\": \"xd08a21b0cd41d5cb\"}", "{\"sha\": \"aa2481d7b6bd002664a67b389db73eb958227971\", \"live\": true, \"id\": \"x8bef1df36e191470\"}", "{\"sha\": \"0529d1d2e35a72735e91febc8b001eddc8e346fc\", \"live\": true, \"id\": \"x2042cb1252a947db\"}", "{\"sha\": \"68b43b307c82bc427fc7ab0650929dd3e0489827\", \"live\": true, \"id\": \"x2f0948183a9ac9ea\"}", "{\"sha\": \"b784800d4e8a6b9f89494be16209c2c217151e14\", \"live\": true, \"id\": \"x80bbe8ad06dd99e9\"}", "{\"sha\": \"9c0ed7acfc9a72de24090c89253280bf84391b48\", \"live\": true, \"id\": \"x354d5f7ca6ca5c99\"}", "{\"sha\": \"14c8f70bd979f85225ad67cb2ce2111be1964db7\", \"live\": true, \"id\": \"xd1e986bba95fdc7a\"}", "{\"sha\": \"ca373a4dfcdf5d7d91de2828398717db8786eb49\", \"live\": true, \"id\": \"xd60dbf0932a94e1b\"}", "{\"sha\": \"6dff4f305f036289d5952fcc249caac7caf7b560\", \"live\": true, \"id\": \"xdae587f8487f5581\"}", "{\"sha\": \"7596dfb86ee39cf5b3dd611f45a0687a5825139e\", \"live\": true, \"id\": \"x1947fec7420465fa\"}", "{\"sha\": \"1cffd4a6f89da21ff329211eb93432e6b1c57366\", \"live\": true, \"id\": \"x76f88b447da19ce0\"}", "{\"sha\": \"5c923cf071a0a2a31cfef3d766705095914068eb\", \"live\": true, \"id\": \"xf5fea749ab08df38\"}", "{\"sha\": \"8c367da3a4797dd0706d000c2b350d495b4351fb\", \"live\": true, \"id\": \"x26c3adffccd90d24\"}", "{\"sha\": \"3578a1991257d084d80c82465ab50313549cd46e\", \"live\": true, \"id\": \"x34d911b64143cb65\"}", "{\"sha\": \"ee18822f8127a72dfd27d762be21976bef620e9e\", \"live\": true, \"id\": \"x5a442d94e8f9624a\"}", "{\"sha\": \"0296dd80091e82c99eddf3f3524e1eb361cae88b\", \"live\": true, \"id\": \"x1b2565243e4f7ac0\"}"], "description": "", "basepoints": 23.0, "slug": "graphs-of-polynomials", "kind": "Exercise", "name": "graphs-of-polynomials", "seconds_per_fast_problem": 26.0, "prerequisites": ["graphing_parabolas_2", "shifting_and_reflecting_functions"], "exercise_id": "graphs-of-polynomials"}, "introduction-to-critical-thinking": {"uses_assessment_items": true, "path": "khan/partner-content/wi-phi/critical-thinking/introduction-to-critical-thinking/", "id": "introduction-to-critical-thinking", "display_name": "Introduction to critical thinking, part 1", "title": "Introduction to critical thinking, part 1", "all_assessment_items": ["{\"sha\": \"364f13823419057e15bddb2f3dd08e08e5f81209\", \"live\": true, \"id\": \"x4533bc539bf4d862\"}", "{\"sha\": \"9c241655a9bde85d0d890395f31d5b91e3fbf8c2\", \"live\": true, \"id\": \"x614feb625356600f\"}", "{\"sha\": \"90413b19de711ddc974cacaada518802804045e1\", \"live\": true, \"id\": \"xb83f9c42ab33549d\"}", "{\"sha\": \"484385782dc1263d5baf55c0635e5dd8f3e4c176\", \"live\": true, \"id\": \"xd080e4b0083d15a7\"}", "{\"sha\": \"7e3f9f554f804f8ec25b71175ffb49dbd4e68a23\", \"live\": true, \"id\": \"x6bc237abf61efd25\"}", "{\"sha\": \"9b999e262983f61010d0045e08a7f5578ac25556\", \"live\": true, \"id\": \"x3331df63f90b570d\"}", "{\"sha\": \"9c9c6b5fbbfea43db5267fa17869839e18839469\", \"live\": true, \"id\": \"x95e0a240841af2d9\"}", "{\"sha\": \"1d2df91bfe525864680225d2f0908b4fb2d3bd2b\", \"live\": true, \"id\": \"x1adfe79fd5a0f0da\"}"], "description": "Test your knowledge of the fundamentals of critical thinking!", "basepoints": 10.0, "slug": "introduction-to-critical-thinking", "kind": "Exercise", "name": "introduction-to-critical-thinking", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "introduction-to-critical-thinking"}, "the-definite-integral-as-the-limit-of-a-riemann-sum": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/the-definite-integral-as-the-limit-of-a-riemann-sum/", "id": "the-definite-integral-as-the-limit-of-a-riemann-sum", "display_name": "The definite integral as the limit of a Riemann sum", "title": "The definite integral as the limit of a Riemann sum", "all_assessment_items": ["{\"sha\": \"58c74ba8b942604fcb845021b5b82dad3fb297c0\", \"live\": true, \"id\": \"xc0cfa09267337031\"}", "{\"sha\": \"3f1278d38528b343653fbe0910ed6ced4e737ddb\", \"live\": true, \"id\": \"x09f668d3cc91580b\"}", "{\"sha\": \"7f1e2920aec0bf32c40c3d41b7430e7bd9efa25d\", \"live\": true, \"id\": \"xca0cfe36deb752b9\"}", "{\"sha\": \"d0e43e7ac5fef8a700909a62d2f60681254fbfc5\", \"live\": true, \"id\": \"x03ac7b382bc2f932\"}", "{\"sha\": \"3fba6d4aea998076d485d5f07b52a40e9db81f26\", \"live\": true, \"id\": \"x2414c1b11e85fdd8\"}", "{\"sha\": \"9dc3ef55c44b9399d50e77e6136a5ba7cdfd1aab\", \"live\": true, \"id\": \"x32ce1152ab3e0bd0\"}", "{\"sha\": \"a523d41eec3c8338097302596b4cf675345a025f\", \"live\": true, \"id\": \"x9a8c408e135b9142\"}", "{\"sha\": \"94dc32a3a826c14b3baea0a9d82cd83f4f43bca9\", \"live\": true, \"id\": \"x832f9ab49a5a4130\"}", "{\"sha\": \"4f9a47028fcd1367f1e74797dbe3e686a27f694d\", \"live\": true, \"id\": \"x5fb39a0f75c1f34e\"}", "{\"sha\": \"738c9f438cb8e775d87fba4ad3fc7b8db4561186\", \"live\": true, \"id\": \"x58339dc4267f289f\"}", "{\"sha\": \"c2ad89577f0978e918eff68f2e71e24af1a25369\", \"live\": true, \"id\": \"xbabe5a60fccd56d7\"}", "{\"sha\": \"4d672467f9d464bb51e67d774b8098092868e043\", \"live\": true, \"id\": \"x3b668944865c1229\"}", "{\"sha\": \"26a17f249cee2af6577e4302910ae3262f215227\", \"live\": true, \"id\": \"x5770600a5b61147c\"}", "{\"sha\": \"876098fae90fe8930ec3b2abc8a7d7f2e6b01c91\", \"live\": true, \"id\": \"x39488109fb0775de\"}", "{\"sha\": \"40931ae3b40de707c45cfdde438c1e11544d3d3e\", \"live\": true, \"id\": \"x5b42a46b6675e3cf\"}", "{\"sha\": \"35da61c386d75283fbee0b425fe42fe626801cfa\", \"live\": true, \"id\": \"x9420fede8a014710\"}", "{\"sha\": \"93fc40b16a91b8be616910e90330eef69b119479\", \"live\": true, \"id\": \"x209d43975647603f\"}", "{\"sha\": \"5043cd351d83e70501950439d627f60ac21fdf01\", \"live\": true, \"id\": \"x118c5c61f1336469\"}"], "description": "", "basepoints": 10.0, "slug": "the-definite-integral-as-the-limit-of-a-riemann-sum", "kind": "Exercise", "name": "the-definite-integral-as-the-limit-of-a-riemann-sum", "seconds_per_fast_problem": 4.0, "prerequisites": ["riemann-sums-and-sigma-notation"], "exercise_id": "the-definite-integral-as-the-limit-of-a-riemann-sum"}, "segment_addition": {"uses_assessment_items": false, "id": "segment_addition", "display_name": "Equation practice with segment addition", "title": "Equation practice with segment addition", "description": "", "basepoints": 25.0, "path": "segment_addition/", "slug": "segment_addition", "kind": "Exercise", "name": "segment_addition", "seconds_per_fast_problem": 35.0, "prerequisites": ["linear_equations_3"], "exercise_id": "segment_addition"}, "the-structure--growth--physiology--and-genetics-of-prokaryotes-and-viruses-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-structure-growth-physiology-and-genetics-of-prokaryotes-and-viruses-2/", "id": "the-structure--growth--physiology--and-genetics-of-prokaryotes-and-viruses-2", "display_name": "Signaling in staphylococcal Toxic Shock Syndrome", "title": "Signaling in staphylococcal Toxic Shock Syndrome", "all_assessment_items": ["{\"sha\": \"40bde3675d295e4328e8c93314d8694dd57c3c4e\", \"live\": true, \"id\": \"x60dfb11bc0f566bf\"}", "{\"sha\": \"20911d50f1aaa332e865ebb0ddf5cdb25ca5d8d5\", \"live\": true, \"id\": \"x45b0435df8e57e6f\"}", "{\"sha\": \"c8546772d377a7c4930a448df172c605cc1ee2ff\", \"live\": true, \"id\": \"xd3f9a8464720e83e\"}", "{\"sha\": \"787297487b9bbcf152ef252c5ab60a6078719379\", \"live\": true, \"id\": \"xa3ae2f0c7daf1d95\"}", "{\"sha\": \"042053ca1201b16d3fe62958076433e3b176db30\", \"live\": true, \"id\": \"x8aa1f8a789269221\"}"], "description": "Signaling in staphylococcal Toxic Shock Syndrome", "basepoints": 10.0, "slug": "the-structure-growth-physiology-and-genetics-of-prokaryotes-and-viruses-2", "kind": "Exercise", "name": "the-structure--growth--physiology--and-genetics-of-prokaryotes-and-viruses-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-structure--growth--physiology--and-genetics-of-prokaryotes-and-viruses-2"}, "congruent_angles": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/congruent_angles/", "id": "congruent_angles", "display_name": "Congruent angles", "title": "Congruent angles", "description": "Determine which angles must be congruent when parallel lines are crossed by a transversal.", "basepoints": 12.0, "slug": "congruent_angles", "kind": "Exercise", "name": "congruent_angles", "seconds_per_fast_problem": 5.0, "prerequisites": ["vertical_angles"], "exercise_id": "congruent_angles"}, "helicobacter-pylori-and-the-gastrointestinal-system": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/helicobacter-pylori-and-the-gastrointestinal-system/", "id": "helicobacter-pylori-and-the-gastrointestinal-system", "display_name": "Helicobacter pylori and the gastrointestinal system", "title": "Helicobacter pylori and the gastrointestinal system", "all_assessment_items": ["{\"sha\": \"99a6e8c009c61ff4ae26013d2b10006b65be1bd4\", \"live\": true, \"id\": \"x90e0141c12ba37aa\"}", "{\"sha\": \"9845c148a0f12def80a1566c22be8c12dc672455\", \"live\": true, \"id\": \"x3ddb56c7ce7cc396\"}", "{\"sha\": \"0dc77d8270e2fe754c9432ac1200ac43c0707817\", \"live\": true, \"id\": \"x0126646a7b9040ba\"}", "{\"sha\": \"1cea3b2d45e0c3b96f6889d023e15452e8490eab\", \"live\": true, \"id\": \"x1bb87167ffe9cfcb\"}", "{\"sha\": \"4ddabee28e201db5ca2c38053b022d619b03aa45\", \"live\": true, \"id\": \"x236dabe7a5c9388f\"}"], "description": "Questions related to the gastrointestinal system", "basepoints": 10.0, "slug": "helicobacter-pylori-and-the-gastrointestinal-system", "kind": "Exercise", "name": "helicobacter-pylori-and-the-gastrointestinal-system", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "helicobacter-pylori-and-the-gastrointestinal-system"}, "lindisfarne-gospels-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/lindisfarne-gospels-quiz/", "id": "lindisfarne-gospels-quiz", "display_name": "Lindisfarne Gospels (quiz)", "title": "Lindisfarne Gospels (quiz)", "all_assessment_items": ["{\"sha\": \"2f0100f7c15aad6de9e9d88749cfb8f90cfc081d\", \"live\": true, \"id\": \"x50f29f14a37d0c2d\"}", "{\"sha\": \"e2a6ce0d9f53fd45f8d9909f5ba580ddfafd0400\", \"live\": true, \"id\": \"x58049b48978f2bf8\"}", "{\"sha\": \"d7cdafc5194f87858e7cad63dcfa6a40aea2ab9e\", \"live\": true, \"id\": \"x6e13adf5c4e1e779\"}", "{\"sha\": \"b944fa68f7c98dff3a11ff586502b317fd331c7e\", \"live\": true, \"id\": \"xe458f46390414e00\"}", "{\"sha\": \"7e4103c34e0bda95ff49cca281dbe15d3f8cbfab\", \"live\": true, \"id\": \"xff5eba5896993c0b\"}", "{\"sha\": \"d4e1475be791f3adbc567f429d095321875e3332\", \"live\": true, \"id\": \"xb5c6d23b64cd3aa9\"}", "{\"sha\": \"6d1430a8e68fb90c7a4284301d5542a5d985a77a\", \"live\": true, \"id\": \"x8a4aaa0c4c271002\"}"], "description": "Test your knowledge", "basepoints": 10.0, "slug": "lindisfarne-gospels-quiz", "kind": "Exercise", "name": "lindisfarne-gospels-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "lindisfarne-gospels-quiz"}, "zaha-hadid--maxii-national-museum-quiz": {"uses_assessment_items": true, "path": "khan/humanities/global-culture/global-art-architecture/zaha-hadid-maxii-national-museum-quiz/", "id": "zaha-hadid--maxii-national-museum-quiz", "display_name": "Zaha Hadid, MAXII National Museum (quiz)", "title": "Zaha Hadid, MAXII National Museum (quiz)", "all_assessment_items": ["{\"sha\": \"1946b124875de3c95ebf737a9c6a1f2f87d20598\", \"live\": true, \"id\": \"xa5fec69601f25a91\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4930e13bc3420358b3eb8e4f75fa1394f2f5a826\", \"live\": true, \"id\": \"xd28e490149a302e7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b80c2596cbbbc9017ec697288dc4386766e9478\", \"live\": true, \"id\": \"x0f3cf5504a0f0a14\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b24a7700962c86fc0060c51f6b084557f249a7b\", \"live\": true, \"id\": \"xf071982d4995057c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f48b23da1d4a153dac91f5a43a09c7ba3ffd26ae\", \"live\": true, \"id\": \"x80e0500b78d30fb5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "zaha-hadid-maxii-national-museum-quiz", "kind": "Exercise", "name": "zaha-hadid--maxii-national-museum-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "zaha-hadid--maxii-national-museum-quiz"}, "acceleration---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/acceleration-passage-2/", "id": "acceleration---passage-2", "display_name": "The world's fastest mammal", "title": "The world's fastest mammal", "all_assessment_items": ["{\"sha\": \"6faa2e676f6f6a9f249669174ae59dee82a35a89\", \"live\": true, \"id\": \"x75c2cdab72589883\"}", "{\"sha\": \"bb5973764e5c043564e6b65ba10795675350e20f\", \"live\": true, \"id\": \"xad80a7511936e5dc\"}", "{\"sha\": \"360c7d59ee32d97134e404c89777e9858470c0d5\", \"live\": true, \"id\": \"x30d12a700f5f7d98\"}", "{\"sha\": \"3a60b416e9ddf6645e489caf22d17d32159ab2f6\", \"live\": true, \"id\": \"x6ec8468b31e6cc07\"}", "{\"sha\": \"10ec932c249db67d28c5250720dac8ebb066fd09\", \"live\": true, \"id\": \"xbc7936aa7cb7d0b9\"}"], "description": "This passage will test your knowledge on acceleration", "basepoints": 10.0, "slug": "acceleration-passage-2", "kind": "Exercise", "name": "acceleration---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "acceleration---passage-2"}, "quiz-the-universe": {"uses_assessment_items": true, "id": "quiz-the-universe", "display_name": "Quiz: Universe", "title": "Quiz: Universe", "all_assessment_items": ["{\"sha\": \"b9b536857327161c608a42d310ec875ac7a4b543\", \"live\": true, \"id\": \"x8df1e1c132133a73\"}", "{\"sha\": \"1d1e3120c26a04544c0124a9304a9f13891260bf\", \"live\": true, \"id\": \"xf85705e7a96600d6\"}", "{\"sha\": \"48ff221f173f65a952949e0306a2d4cc092335c1\", \"live\": true, \"id\": \"xa2b4df96f0bf2660\"}", "{\"sha\": \"2c8026b6056893965b43eb5e08835adf4fb67300\", \"live\": true, \"id\": \"xe791049fd9979eaa\"}", "{\"sha\": \"a9497352c9ee565b660284fda3cc89e14169a86c\", \"live\": true, \"id\": \"x06bd44d60df4cafb\"}", "{\"sha\": \"cbee34e308488ee542016dae16a2652ca90c46aa\", \"live\": true, \"id\": \"xe9de7b304234bc0d\"}", "{\"sha\": \"864beba6ec2379400760df3a7b138b9e961bbeee\", \"live\": true, \"id\": \"xdf19bf3f599a0301\"}", "{\"sha\": \"069d401d5499e05628c71ee3eff4fb0d82312606\", \"live\": true, \"id\": \"x0b74999b05f71584\"}", "{\"sha\": \"140c207bafaa0d91211649a0b0512bad63c64528\", \"live\": true, \"id\": \"x1b743141844e6c7b\"}", "{\"sha\": \"a061e9d6357d08d04a1e967b075c365cae0065fd\", \"live\": true, \"id\": \"xddd0a3cde77718ce\"}"], "description": "", "basepoints": 10.0, "path": "quiz-the-universe/", "slug": "quiz-the-universe", "kind": "Exercise", "name": "quiz-the-universe", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-the-universe"}, "acceleration---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/acceleration-passage-1/", "id": "acceleration---passage-1", "display_name": "Concussions in professional athletes", "title": "Concussions in professional athletes", "all_assessment_items": ["{\"sha\": \"648703eed312df0f25db42b36fda82b6b72801a1\", \"live\": true, \"id\": \"xde9c8d58d5fa7a23\"}", "{\"sha\": \"45b0b1558fc046daf3efc1bdaa34b9153ff95929\", \"live\": true, \"id\": \"x450bd47954745aa0\"}", "{\"sha\": \"f0d6030d399c734d4849e78c32264d3d0c48eb1e\", \"live\": true, \"id\": \"x6fa2c8c8ee88176d\"}", "{\"sha\": \"36c4a0714e0d37608a722722d78b4d1a8d4b298f\", \"live\": true, \"id\": \"xd369a3db9c684e18\"}", "{\"sha\": \"de5b02410f5b269eded6f064a381b1e2cb1dd4da\", \"live\": true, \"id\": \"x0248bfd7e29d21f7\"}"], "description": "This passage will test your knowledge on acceleration", "basepoints": 10.0, "slug": "acceleration-passage-1", "kind": "Exercise", "name": "acceleration---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "acceleration---passage-1"}, "adding_and_subtracting_rational_expressions_1.5": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding_and_subtracting_rational_expressions_15/", "id": "adding_and_subtracting_rational_expressions_1.5", "display_name": "Adding and subtracting rational expressions 3", "title": "Adding and subtracting rational expressions 3", "description": "Adding and subtracting multiple variable expressions with the same denominators where each is an expression containing up to two terms and four variables.", "basepoints": 10.0, "slug": "adding_and_subtracting_rational_expressions_15", "kind": "Exercise", "name": "adding_and_subtracting_rational_expressions_1.5", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_rational_expressions"], "exercise_id": "adding_and_subtracting_rational_expressions_1.5"}, "gender-differences-in-symptoms-of-major-depressive-disorder-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/gender-differences-in-symptoms-of-major-depressive-disorder-/", "id": "gender-differences-in-symptoms-of-major-depressive-disorder-", "display_name": "Gender differences in symptoms of major depressive disorder", "title": "Gender differences in symptoms of major depressive disorder", "all_assessment_items": ["{\"sha\": \"745ae53b82b2961e0dde974dc5fe93d5a92a0433\", \"live\": true, \"id\": \"x8718ebec667d080c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7fde5343dbc47d52376f01be25b86f02c8d3c198\", \"live\": true, \"id\": \"x4a91a7221dba9358\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c7f2eaef9a8d98655d8a2d39c0709e162333f90e\", \"live\": true, \"id\": \"x40bb397be93f4206\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"025f2c080aa404a5f18ba66a385cbe7b23b75b01\", \"live\": true, \"id\": \"x1224d548ed162deb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dcba4d24b6c1e274503830b1a3e153f5ad6ed4e0\", \"live\": true, \"id\": \"xc8054ac64a052e49\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Questions related to psychological disorders", "basepoints": 10.0, "slug": "gender-differences-in-symptoms-of-major-depressive-disorder-", "kind": "Exercise", "name": "gender-differences-in-symptoms-of-major-depressive-disorder-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gender-differences-in-symptoms-of-major-depressive-disorder-"}, "arithmetic_sequences_2": {"uses_assessment_items": false, "path": "khan/math/precalculus/seq_induction/seq_and_series/arithmetic_sequences_2/", "id": "arithmetic_sequences_2", "display_name": "Evaluating arithmetic sequences 2", "title": "Evaluating arithmetic sequences 2", "description": "Find the nth term of an arithmetic sequence.", "basepoints": 20.0, "slug": "arithmetic_sequences_2", "kind": "Exercise", "name": "arithmetic_sequences_2", "seconds_per_fast_problem": 16.0, "prerequisites": ["arithmetic_sequences_1", "evaluating-sequences-in-recursive-form"], "exercise_id": "arithmetic_sequences_2"}, "adding-negative-numbers-on-the-number-line": {"uses_assessment_items": true, "id": "adding-negative-numbers-on-the-number-line", "display_name": "Adding negative numbers on the number line", "title": "Adding negative numbers on the number line", "all_assessment_items": ["{\"sha\": \"5345d9d28e4927379984ee67098bcef73cc29641\", \"live\": true, \"id\": \"x21aa7b20592b802a\"}", "{\"sha\": \"02335d554edf37b7e6ad973a2c29d4c210a88998\", \"live\": true, \"id\": \"x7362559be7b98f2d\"}", "{\"sha\": \"5377cfa46584a965c974dca836c60280d06e0ab4\", \"live\": true, \"id\": \"x5381f9d9641ca379\"}", "{\"sha\": \"33f38e32109392df1bbe9b6b68b32a91feb62850\", \"live\": true, \"id\": \"xd5c63f0c55b119ef\"}", "{\"sha\": \"47874b88d4fea6148a58f5df244fb7eea5c14b51\", \"live\": true, \"id\": \"x53fb22deb1bc7f3e\"}", "{\"sha\": \"baa06d4064f36f4fe629f061c65f75c754df1283\", \"live\": true, \"id\": \"x621482e0914d615c\"}", "{\"sha\": \"db57f23f62e9aa4bbb8e5641256aca1d612437d8\", \"live\": true, \"id\": \"xf6faf90e920bece0\"}", "{\"sha\": \"b3a7a04fd32c2cda2712b321cb24ffef39cdbdf0\", \"live\": true, \"id\": \"xb3accc11204a02de\"}", "{\"sha\": \"9e1b1ccce677e897afc6fa40673e5d5e4a9125d8\", \"live\": true, \"id\": \"x293c0f0461f4d484\"}", "{\"sha\": \"fc49dc5db69eebff1839ea07dbcf659d81c8151f\", \"live\": true, \"id\": \"x82261bcc5edaa00e\"}", "{\"sha\": \"13105eb15e06c8936e219e4fea7da2c02d66c757\", \"live\": true, \"id\": \"x0201659c2893f524\"}", "{\"sha\": \"6c3a22fa8bab999a1038b1ac30ef87a3efff527b\", \"live\": true, \"id\": \"x90c8983e96809916\"}", "{\"sha\": \"4bcb7e7e232840beb066510f0ffec0083baa3d50\", \"live\": true, \"id\": \"xd71c42100bcc7400\"}", "{\"sha\": \"d84feb14d6b89c1ed86b38dcf219b876cb626ec3\", \"live\": true, \"id\": \"xcabd43499582d390\"}", "{\"sha\": \"f5f3f39ad73324b0e9753381151cbdb289423b3e\", \"live\": true, \"id\": \"xc87663abd3f6b59d\"}", "{\"sha\": \"0310d075d18c9e8dafc4ab38ddf9dc8c34038c35\", \"live\": true, \"id\": \"xa5da05cd450e06fe\"}", "{\"sha\": \"c21ba2d9a473f026bafe86af395b8f8dfcde37e7\", \"live\": true, \"id\": \"x9f41a9112f828675\"}", "{\"sha\": \"340558019db5445a1f36c0cd4dddac90869b46ac\", \"live\": true, \"id\": \"x51dd8b7ef627dd5b\"}", "{\"sha\": \"9404a622d247c75e6ed21ba3502fdb1e1731700a\", \"live\": true, \"id\": \"x44abd870dc49e748\"}", "{\"sha\": \"37a5107462cafe6399d6a7f7d8a4e7c250ed71dc\", \"live\": true, \"id\": \"xced586698a4a059a\"}"], "description": "Practice matching number line diagrams to addition expressions involving negative numbers.", "basepoints": 10.0, "path": "adding-negative-numbers-on-the-number-line/", "slug": "adding-negative-numbers-on-the-number-line", "kind": "Exercise", "name": "adding-negative-numbers-on-the-number-line", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_negative_numbers"], "exercise_id": "adding-negative-numbers-on-the-number-line"}, "meaning-of-division": {"uses_assessment_items": true, "id": "meaning-of-division", "display_name": "Meaning of division", "title": "Meaning of division", "all_assessment_items": ["{\"sha\": \"4518fe3b7925213b6327da6a0ec94855f6304964\", \"live\": true, \"id\": \"xbd52cfe29ebeaa9b\"}", "{\"sha\": \"fc75aea24422cbd7b6e1d22f45e0e4ebdc21ef67\", \"live\": true, \"id\": \"x1d19b846d6225076\"}", "{\"sha\": \"a06d941a2c1977593cf47652a5b17797e83cf4ab\", \"live\": true, \"id\": \"x5bd7609f776401a8\"}", "{\"sha\": \"ddc29f28542c8861c8a6a14ebe11517c92eef05a\", \"live\": true, \"id\": \"x424eded63ee91fdf\"}", "{\"sha\": \"54a4cfdad35b95c731139dcb133a0225b7743253\", \"live\": true, \"id\": \"x4c0b583631f9629d\"}", "{\"sha\": \"5d56a7484ef36a7b45c99a762bef3d0ab28666e2\", \"live\": true, \"id\": \"xddd68343a5f30b5e\"}", "{\"sha\": \"4127c3f835c654390aa9ef02f4138320d03c621d\", \"live\": true, \"id\": \"xcf22173844b46605\"}", "{\"sha\": \"457a98f7ff8450f1b68a16f0bcb8ccdba7a82ca7\", \"live\": true, \"id\": \"x51d2761475b10707\"}", "{\"sha\": \"d631349ac1e060c750bab1d0d1bba5aab80ff2d0\", \"live\": true, \"id\": \"x21077dcb4b052fdb\"}", "{\"sha\": \"7ec3bc5467c534641719bc28222f1b7e911a540b\", \"live\": true, \"id\": \"x133a07d9f6359759\"}", "{\"sha\": \"dcda07641b565a9183fdde927072f6e99a16aab0\", \"live\": true, \"id\": \"x9520d01a79bdd639\"}", "{\"sha\": \"16b5896dd8c2382006387eaf378f511efd5eb8f7\", \"live\": true, \"id\": \"x453010febeb70fd5\"}", "{\"sha\": \"3e56f8bf1b6b1b1f6e907ceb92751720802f75ce\", \"live\": true, \"id\": \"x9be2a2ef47918d74\"}", "{\"sha\": \"a43e037565315a09ed61957df52fd50018609fdc\", \"live\": true, \"id\": \"x789cec372b2757cf\"}", "{\"sha\": \"d18524b6cb8b31ccfc074b9efe4c65a616eddea2\", \"live\": true, \"id\": \"x64e82ae751417f28\"}", "{\"sha\": \"8da84f0f99dc63d2975fc2f5664eec50e5c8cc84\", \"live\": true, \"id\": \"x0d9e5d46e8d21249\"}", "{\"sha\": \"f48db5dc415b97aefcbd7a1a6bf475e15364a708\", \"live\": true, \"id\": \"xad44b37cb2fdb02e\"}", "{\"sha\": \"4ef7a8a303adfc99620716a9305a265b69921d97\", \"live\": true, \"id\": \"x76e9442be77e5ddd\"}", "{\"sha\": \"c879a2a4d234909ada0f7b10c793d7ec49ad0df8\", \"live\": true, \"id\": \"x1ee1235052888601\"}", "{\"sha\": \"4684ef6e2dd0e4165ef7097ece04914266677efb\", \"live\": true, \"id\": \"x83de7c05a1fdf493\"}", "{\"sha\": \"3e59c97175008797011fb223e6870421e87086da\", \"live\": true, \"id\": \"xd6cf422fab6a82f5\"}"], "description": "Use visual models to understand division.", "basepoints": 10.0, "path": "meaning-of-division/", "slug": "meaning-of-division", "kind": "Exercise", "name": "meaning-of-division", "seconds_per_fast_problem": 4.0, "prerequisites": ["division_1", "meaning-of-multiplication"], "exercise_id": "meaning-of-division"}, "sample-spaces-for-compound-events": {"uses_assessment_items": true, "id": "sample-spaces-for-compound-events", "display_name": "Sample spaces for compound events", "title": "Sample spaces for compound events", "all_assessment_items": ["{\"sha\": \"86e07b9b945c0133062d31200563182b323122ce\", \"live\": true, \"id\": \"x6300c1b312fdad31\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8225e7af3bfe713fe130bf4b6f134f54375f8966\", \"live\": true, \"id\": \"x7a37822a1215c2b2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"badd4a8cf279a2d74c1daa7fc8aee66a1144f44a\", \"live\": true, \"id\": \"xb7d88ef29d465b00\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23f1d0297b04d3d1d0a4cdfed3bf33d186afed78\", \"live\": true, \"id\": \"x60d429c623aafce4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"033a153e5610a216117f63d859d63c828ddc7250\", \"live\": true, \"id\": \"xff1d7ad51c908b55\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"925644e9202f029883389cf96226e8275fbb573f\", \"live\": true, \"id\": \"xa26f24ccdf07b97c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cb1de98577a317a0ba940c178f07d0642350050b\", \"live\": true, \"id\": \"xcfc0bdb0990dfe10\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"159f27aab1a59dc9915a8c38b2cc3a3a6814b69c\", \"live\": true, \"id\": \"x150b1c6c6e15ce1f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d2a06c1ab2ccc4c26d728ddefb154f8dc60d9e4\", \"live\": true, \"id\": \"xa32758572502b4bd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"25f85feb4b1612dd055593c75c4e158a2eb3b0a4\", \"live\": true, \"id\": \"xde16321243257338\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"74ae88d2ace250b5f3b87929312a7fe47055c0eb\", \"live\": true, \"id\": \"x3e62815647fd99bc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e34137adc347aba73bf24d4465b6d5d9ee6a92f0\", \"live\": true, \"id\": \"x90957335f1d9f9dc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e004afa5e1a912ab48d4f239b6a662d50aad0d31\", \"live\": true, \"id\": \"xfd212b8f6e8f8ebf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d288eccbe6b4baf24039f5ff3dde1cb2ebcd992\", \"live\": true, \"id\": \"xba15989aa199a8fc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa66183c90d9aa5421b1379edfc28bcad13f1856\", \"live\": true, \"id\": \"x781e38803cedff8c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"faf8380d28ef98d90de043246983b14f6079a95a\", \"live\": true, \"id\": \"x8098a292aa874f61\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"669d9f9d638d09cb575e6f37321cf8a6a998004d\", \"live\": true, \"id\": \"xffe5660467b89a5c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4985baa63d22794ef71a7ad43633533f81d950dc\", \"live\": true, \"id\": \"x36d8dc83cd32125d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b0670b975b3c49d47645450ab30e3e03083a6f1\", \"live\": true, \"id\": \"xfced0271e1570dd0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"40752a7be553343015c63541d18f0a59c044c4c0\", \"live\": true, \"id\": \"xc17be1d52db777d5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice checking if sample space diagrams match a compound event.", "basepoints": 10.0, "path": "sample-spaces-for-compound-events/", "slug": "sample-spaces-for-compound-events", "kind": "Exercise", "name": "sample-spaces-for-compound-events", "seconds_per_fast_problem": 4.0, "prerequisites": ["probability_1"], "exercise_id": "sample-spaces-for-compound-events"}, "euler-s-method": {"uses_assessment_items": true, "path": "khan/math/differential-equations/first-order-differential-equations/eulers-method-tutorial/euler-s-method/", "id": "euler-s-method", "display_name": "Euler's method", "title": "Euler's method", "all_assessment_items": ["{\"sha\": \"37691cab453239d2611a697e74c1e4d0b3255c31\", \"live\": true, \"id\": \"x0e939b6bff40adf5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e5c9a1fbad0e2bdf87b16282053661f50fa83db5\", \"live\": true, \"id\": \"x5aaf525aca46ec47\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4b71d97752dfe5d582328aaf51f8e023928ef761\", \"live\": true, \"id\": \"x5181dce139175763\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d2c36ee04092ad210154929ebec47e62db7510c\", \"live\": true, \"id\": \"xf6db85671e49d118\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8c0bb78213f7aa042d751edf478fca3a144867ee\", \"live\": true, \"id\": \"x8e7decf21d869342\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f96722173850cb3198d1b57c4881dd95e4dfc781\", \"live\": true, \"id\": \"xa86368fbaa3ded5f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"621b2ee1cc0b765cc4f23f778b1d55a443562065\", \"live\": true, \"id\": \"xb76155be727767df\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0afd46375f25a9d322a6cebffa68c50b3808abfb\", \"live\": true, \"id\": \"xa6f6f10cf71074fc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dec7b874a2ed8e3588c90fcd8903ed08d3519fbd\", \"live\": true, \"id\": \"x65ed52b7650e7ca1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"724f0738b94e1141e521455f0579310f6982d2ea\", \"live\": true, \"id\": \"xf0b751de206367c1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"008146afa3d82c1a1bdf1795326b88d686fc3f93\", \"live\": true, \"id\": \"x96eefd8fa7eb42ef\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e680c72c19fbbff92eda93b04ac1f5b11f7c759\", \"live\": true, \"id\": \"xf239a750435ce563\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a239ea6edd5e804441389970a5f46cc04fd597c\", \"live\": true, \"id\": \"xe9c7b8331d155546\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c7e501e93318d115981aadc978f65191650d0f7\", \"live\": true, \"id\": \"x4b2281951dfde6d5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b43e7094e158cec64dd552a1957a9fc9bd8d0eac\", \"live\": true, \"id\": \"xc1398f4468fc963f\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"95a103c30439e2deefa347405d5cb35d9962d494\", \"live\": true, \"id\": \"x7908e61e2b170d8f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ed0093a792326647728981a635218a7bf5299cec\", \"live\": true, \"id\": \"x494d0c563a69c845\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8858c89e5022a3805fb0381ad4130b2f4c9fe2bd\", \"live\": true, \"id\": \"xebe91a7aca9f3432\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b3941b523a4cae06746426a04a086bf64cc16d43\", \"live\": true, \"id\": \"x9477ac3acd87492c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"81afaec67e1d5ed29fa9ff8e1ce7464af482848f\", \"live\": true, \"id\": \"x2f75e0503796bee1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a6ffbcf6c36914f74c57a8ff2992044fbf870e49\", \"live\": true, \"id\": \"x953a53bfc16793d6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"efffe8614491b0abaa198bd0505cbb53b571ac35\", \"live\": true, \"id\": \"xfb064cdd1727a6d5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d0a37646ce60f149c4bf57363d526708b8046085\", \"live\": true, \"id\": \"x11ff524f89bade89\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"636d66d0a41f00222fd24ceab704c83fcd602498\", \"live\": true, \"id\": \"x44d81f43cca4c88a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7cc71c31b17caf36a9fd31f052a5d0ae46f6cab1\", \"live\": true, \"id\": \"xc82aab24bdea77ed\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"02fabcbf6cc5611de77eb5033cd91d37014a2cc7\", \"live\": true, \"id\": \"x9742b11a31b05201\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"67c31aa521547a8293b503a8f401f9ba4bdf1eb5\", \"live\": true, \"id\": \"x0a965f949c1ab7aa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b530a7f40e789479476fbbe00557441e9a61f4cf\", \"live\": true, \"id\": \"x7fdb961a5f5cc154\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ba4aa094343dcb48c74e7e50180c117432142e7d\", \"live\": true, \"id\": \"xbe1a5b4b8521c1f6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f672d083bee13e17740a3daefa60f98d8431d326\", \"live\": true, \"id\": \"x024e44845e92c117\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "euler-s-method", "kind": "Exercise", "name": "euler-s-method", "seconds_per_fast_problem": 4.0, "prerequisites": ["separable-differential-equations"], "exercise_id": "euler-s-method"}, "constructing-scatter-plots": {"uses_assessment_items": true, "path": "khan/math/probability/regression/prob-stats-scatter-plots/constructing-scatter-plots/", "id": "constructing-scatter-plots", "display_name": "Constructing scatter plots", "title": "Constructing scatter plots", "all_assessment_items": ["{\"sha\": \"c9aff422374e76d1a908519e502e2f068dfb4dde\", \"live\": true, \"id\": \"x9ac1c2abe1fcb39f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a4b0afcf4c4cba22878a1487f8446b86e5cf5157\", \"live\": true, \"id\": \"x927757a473a28e1b\", \"perseus_api_major_version\": null}", "{\"sha\": \"4e6633f4ab1a0d32dbb1f6843f194807d020056d\", \"live\": true, \"id\": \"x5e9339fec2d2e3e1\", \"perseus_api_major_version\": null}", "{\"sha\": \"512c0b9abd11be2a86f23b59687990c74bc98ccb\", \"live\": true, \"id\": \"x84b39e129d60eec0\", \"perseus_api_major_version\": 0}", "{\"sha\": \"667c98807c2e99e78bd5453545c4680fc2067692\", \"live\": true, \"id\": \"xcb53b4aab316c629\", \"perseus_api_major_version\": null}", "{\"sha\": \"cd936c0ade0c321bea6c102b980d55b4a48c6d0d\", \"live\": true, \"id\": \"xca2cd29b1e2d1fcb\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2da711e9b43bdb5860a83c8a3814fea4e8d32b60\", \"live\": true, \"id\": \"xc75e2acd1bf6e272\", \"perseus_api_major_version\": 0}", "{\"sha\": \"cdb030fd29867fb102d196d4cf01cc3127ac785c\", \"live\": true, \"id\": \"x8a90f6b9504385d1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1b3d2b09b385191584845b7cac1bec0158767830\", \"live\": true, \"id\": \"x7aa9bd685c62b404\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b9012b7002f5937f92e92f898a29d2f2327b9142\", \"live\": true, \"id\": \"xc9c4343b77950752\", \"perseus_api_major_version\": null}", "{\"sha\": \"ff8edba7a0d05591103029ea0ee6ae19de85d8e0\", \"live\": true, \"id\": \"xaf349d9f84c28beb\", \"perseus_api_major_version\": null}", "{\"sha\": \"9e1a13e28caf8c9b3c3b238fd61d5a182a2420e5\", \"live\": true, \"id\": \"x2788103026890e7b\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a8efd9a52cdec17b1a9ac1b24febe6ab82b2033\", \"live\": true, \"id\": \"xb6f089fb6d82bc5a\", \"perseus_api_major_version\": null}", "{\"sha\": \"023e01d2da7f347afbcccbd8d4f844a1fce22676\", \"live\": true, \"id\": \"xa76288f08d9d6216\", \"perseus_api_major_version\": null}", "{\"sha\": \"d5f1dc6bce6979d7eac41b1b7e7d0eb3f6a5e573\", \"live\": true, \"id\": \"x5474574ec01b3838\", \"perseus_api_major_version\": null}", "{\"sha\": \"47f0a78379877cb418d95ff6b173296992628731\", \"live\": true, \"id\": \"xe3267e70af1499c7\", \"perseus_api_major_version\": null}", "{\"sha\": \"033bc5f4b3161db5067d3343f4502c451f75743a\", \"live\": true, \"id\": \"xc01d9894e4b343a6\", \"perseus_api_major_version\": null}", "{\"sha\": \"3fba922cae9a5292cce071bea7dfe4d56d923efc\", \"live\": true, \"id\": \"x638cbbccdb71cde8\", \"perseus_api_major_version\": null}", "{\"sha\": \"8d01af18d14489c2cf2230e6dfbdee23721cf35a\", \"live\": true, \"id\": \"x1ea33431d915ae68\", \"perseus_api_major_version\": null}", "{\"sha\": \"087980de93769aa99678744364d60930ab633f86\", \"live\": true, \"id\": \"x42723c24f0932b28\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "constructing-scatter-plots", "kind": "Exercise", "name": "constructing-scatter-plots", "seconds_per_fast_problem": 4.0, "prerequisites": ["frequencies-of-bivariate-data", "identifying_points_1"], "exercise_id": "constructing-scatter-plots"}, "powers-of-ten": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/powers-of-ten/", "id": "powers-of-ten", "display_name": "Powers of ten", "title": "Powers of ten", "all_assessment_items": ["{\"sha\": \"b068a1877f3ee692b2c68f694d114635a919092f\", \"live\": true, \"id\": \"x5ec41235\"}", "{\"sha\": \"2ee2890a5eb2cbb2f42b0e59af71d7d38ed3995f\", \"live\": true, \"id\": \"xf2ec2704\"}", "{\"sha\": \"4623da37ead729558bfeaa26ce286b5e697fbb16\", \"live\": true, \"id\": \"x365d0544\"}", "{\"sha\": \"46a68622f2b23e5635c9b36f412a4ef83b419dec\", \"live\": true, \"id\": \"xb0ceeee4\"}", "{\"sha\": \"2967459d21b4a5124aa19113c5b3e71df8673b33\", \"live\": true, \"id\": \"x9a24594b\"}", "{\"sha\": \"d4b64a182aafcc992d4738c0ffdf34d235056332\", \"live\": true, \"id\": \"xcb03fcd9\"}", "{\"sha\": \"2c01fc6c762796c224bc58a36f92ca8903cf6661\", \"live\": true, \"id\": \"x36758a4a\"}", "{\"sha\": \"70d4291c6642b715d4ebe0192644d56731697bc3\", \"live\": true, \"id\": \"x85bb3471\"}", "{\"sha\": \"4a092f94f4b23d3c7d778dcf43924e74846b7731\", \"live\": true, \"id\": \"x8eaea723\"}", "{\"sha\": \"4905d8ba15e4278384341a535ad743444bbf58fe\", \"live\": true, \"id\": \"x690e4a7f\"}", "{\"sha\": \"ccc0d2f23907eb85b6bda3413f2e62491cc4714f\", \"live\": true, \"id\": \"x9080237bdf0f519c\"}", "{\"sha\": \"4a81ffd9051d362cf31c648eb169144700c2e17a\", \"live\": true, \"id\": \"x4d8c28aaa803aa30\"}", "{\"sha\": \"ecfad8a08f5d90f601cb1a601d607e53577c1509\", \"live\": true, \"id\": \"x1579ac434397b9af\"}", "{\"sha\": \"fe3901a22dd4c4c663b4bf7f837a6f748bedc31f\", \"live\": true, \"id\": \"xdf46b3b6e34f4eec\"}", "{\"sha\": \"e5b4a657f1eb77259d4eeeedc4688e828ab880fb\", \"live\": true, \"id\": \"xef1dd1dd2133b7c1\"}", "{\"sha\": \"5f5b3ef4ed8e13e8470563bd7f465e4a4fd0a343\", \"live\": true, \"id\": \"x2d850bd9294299c5\"}", "{\"sha\": \"214b53a5958c4d2c0f05adc5c67fafc3d3f47aaf\", \"live\": true, \"id\": \"x614a38ccf2c3b5c0\"}", "{\"sha\": \"aa92d12191abe3978b554aff8893d47e45183a8f\", \"live\": true, \"id\": \"x6313989a0d3aeecd\"}", "{\"sha\": \"2917488d37f9200f2ab8edf1a3b963d6221030d1\", \"live\": true, \"id\": \"xf035a19dcb09e689\"}", "{\"sha\": \"b7815569bc66245ee2747ae5eb939244c3329b4d\", \"live\": true, \"id\": \"x308d9432f35ab8eb\"}", "{\"sha\": \"d9b2fa984960b73a73273ffc2149e2f37ce9db03\", \"live\": true, \"id\": \"xf1d9e2e4e4400ee4\"}", "{\"sha\": \"ad6fc30a4ee00037a16ed5132aeb42c59f424ad4\", \"live\": true, \"id\": \"x6e0663973b717cf7\"}", "{\"sha\": \"d72e9eeee424ecd064e2b4d4c9201e89850c355b\", \"live\": true, \"id\": \"xa9f69b84d3d8bb5d\"}", "{\"sha\": \"ce3f971d1762b7772c108483fc0dce3ae23e3e33\", \"live\": true, \"id\": \"x2bde1e82ff5ef7a9\"}", "{\"sha\": \"777fe6573fd262734af035cab55a49a59ec7d0e3\", \"live\": true, \"id\": \"x511acb58f90f0242\"}", "{\"sha\": \"b0eadab8f9f8281ab34f628b39c06bd48ec108ed\", \"live\": true, \"id\": \"xe765b167f939c93d\"}", "{\"sha\": \"d22a56c3a6f6ff4b9ce541631a7fca7014dcaa3d\", \"live\": true, \"id\": \"xc428cec1516f6289\"}", "{\"sha\": \"f347b2306017e5298c3ca4e5b5ecbc36df97c70d\", \"live\": true, \"id\": \"xbc8262fa267c3860\"}"], "description": "Use exponents to write powers of ten.", "basepoints": 10.0, "slug": "powers-of-ten", "kind": "Exercise", "name": "powers-of-ten", "seconds_per_fast_problem": 4.0, "prerequisites": ["fractions_as_division_by_a_multiple_of_10"], "exercise_id": "powers-of-ten"}, "art-in-burgundy--1400-1500": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/beginners-guide-northern-renaissance/art-in-burgundy-1400-1500/", "id": "art-in-burgundy--1400-1500", "display_name": "Northern Renaissance in the fifteenth century (quiz\u2014part 1)", "title": "Northern Renaissance in the fifteenth century (quiz\u2014part 1)", "all_assessment_items": ["{\"sha\": \"8fce68f3c7c62f53df7d82c5b0388c948d6dbae3\", \"live\": true, \"id\": \"x3b856391076d2dce\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f90044a45996dba089e5d194961a0c997d179730\", \"live\": true, \"id\": \"x4dcf768ca7b93a93\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e20797163ba0bb95fd6de689d545b779fce0978\", \"live\": true, \"id\": \"xa819eb08d84e7ca3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"685fee34aae1ee5ff16c8257d27c8ba53c185280\", \"live\": true, \"id\": \"xa329f740d0f01234\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d375cde17a25ebf73d4784b2f35799e87a7eef4d\", \"live\": true, \"id\": \"x0d5cfaf5c3499908\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8be4cb9ddee51ca238414c937691f3dc21ddb5d3\", \"live\": true, \"id\": \"x3e147ab9674935e1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f60ee49aa97e2dfc3fd51e7214fbbd74f3ce593a\", \"live\": true, \"id\": \"x5f97d31d22cbeb94\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eb6105f00a04d6fb469a67bc460e5e15bc598ca3\", \"live\": true, \"id\": \"x0ca8bc57f3a5f040\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "art-in-burgundy-1400-1500", "kind": "Exercise", "name": "art-in-burgundy--1400-1500", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "art-in-burgundy--1400-1500"}, "sat-math-level-5-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-5/sat-math-level-5-quiz-2/", "id": "sat-math-level-5-quiz-2", "display_name": "SAT Math: Level 5 - Quiz 2", "title": "SAT Math: Level 5 - Quiz 2", "all_assessment_items": ["{\"sha\": \"93c07849032e0e4b7b70cd7f9a4ffb81cfeb0dd4\", \"live\": true, \"id\": \"x9e392159716ba34a\"}", "{\"sha\": \"d156a332fa8b3ccd6f0537f8aeeff2e053c107b9\", \"live\": true, \"id\": \"xc6a45ec1f59af7b6\"}", "{\"sha\": \"1a527b46fc099caa7192dfa756a7a8f00253bb69\", \"live\": true, \"id\": \"x4301eb90296e4521\"}", "{\"sha\": \"95ee361d9052394e609e612a72c1ebbb5833a6db\", \"live\": true, \"id\": \"xbeedfe86fa9057bc\"}", "{\"sha\": \"25ed2ccd25d23fc12df7453f0af2c3915257a098\", \"live\": true, \"id\": \"xf7004e03bc0c2bbb\"}", "{\"sha\": \"3c940083cae9de3d126e3e0ecd708ccc5edaf4de\", \"live\": true, \"id\": \"x7a40f9af6ddc4dea\"}", "{\"sha\": \"0c6ae47d0c5815d9a6d50981f3996abe9e892ee8\", \"live\": true, \"id\": \"x3b93dbf6f8773b22\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-5-quiz-2", "kind": "Exercise", "name": "sat-math-level-5-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-5-quiz-2"}, "what-causes-red-blood-cells-to-sickle-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/what-causes-red-blood-cells-to-sickle-/", "id": "what-causes-red-blood-cells-to-sickle-", "display_name": "What causes red blood cells to sickle?", "title": "What causes red blood cells to sickle?", "all_assessment_items": ["{\"sha\": \"a85d01089654e18dce13eaddab63630b5f696f80\", \"live\": true, \"id\": \"x856a860f4a5383fe\", \"perseus_api_major_version\": null}", "{\"sha\": \"3c969784f7d7074ad2d938523eabae7c23d90e8b\", \"live\": true, \"id\": \"x993acb6eff96fe2b\", \"perseus_api_major_version\": null}", "{\"sha\": \"223685add48a84c1f9e65886c960ffad996c5a7d\", \"live\": true, \"id\": \"x3b36bff9b7e14184\", \"perseus_api_major_version\": null}", "{\"sha\": \"9c77ab6641873d8289bf79b610afe1377c66ada3\", \"live\": true, \"id\": \"xb9d749c3d25e7d05\", \"perseus_api_major_version\": null}", "{\"sha\": \"04432dc9446e0be9227f41bc790264fb2f53c8e3\", \"live\": true, \"id\": \"x76403f6829993a0a\", \"perseus_api_major_version\": 3}"], "description": "Questions related to the structure and characteristics of hemoglobin proteins", "basepoints": 10.0, "slug": "what-causes-red-blood-cells-to-sickle-", "kind": "Exercise", "name": "what-causes-red-blood-cells-to-sickle-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "what-causes-red-blood-cells-to-sickle-"}, "glass-making-quiz": {"uses_assessment_items": true, "id": "glass-making-quiz", "display_name": "Glassmaking quiz", "title": "Glassmaking quiz", "all_assessment_items": ["{\"sha\": \"3b48d5410afc1559723bd58820d9ff680d83e98d\", \"live\": true, \"id\": \"xae3f17036b4205bd\"}", "{\"sha\": \"2b86218d2a1761fb013e80f6c236a12eea759c15\", \"live\": true, \"id\": \"x6fede60b27b3c969\"}", "{\"sha\": \"6d1363b84d493c3945063f377e498a0b9a99db5f\", \"live\": true, \"id\": \"xff009e5fd71dc12e\"}", "{\"sha\": \"5409947a6628ae98407296f0cf445900433dc249\", \"live\": true, \"id\": \"xb9e60872d6a4273c\"}", "{\"sha\": \"40395092db7b73b1c40e77e3a48c206dd61e61f7\", \"live\": true, \"id\": \"xc0b2cf148c4f5f93\"}", "{\"sha\": \"68a3602076a03916a7d815896d4c85e864a107f6\", \"live\": true, \"id\": \"xb15a5ec5a4097c7f\"}", "{\"sha\": \"165f5258ea87345abf546e62d8bf1d0fbb2c1180\", \"live\": true, \"id\": \"x22fad00307794597\"}", "{\"sha\": \"648c75337194d21dca986b511e9b2a9f993fe98d\", \"live\": true, \"id\": \"x15518251d63044fd\"}", "{\"sha\": \"17bf30b6c2700602811d64117270a5a8d2fd552a\", \"live\": true, \"id\": \"x26a36a46ea95871d\"}", "{\"sha\": \"0a5b329b929b4b20456afebc10fa8b116f34eb64\", \"live\": true, \"id\": \"x39addd0751be7d29\"}", "{\"sha\": \"02a1c48eb76bd5615f001b40529e0a53f761c98a\", \"live\": true, \"id\": \"x1f3c7e93224137a3\"}", "{\"sha\": \"2c902b4b10c8afcf86b22236dcf951b5e200cbac\", \"live\": true, \"id\": \"x3a5f05a67c38a5f4\"}", "{\"sha\": \"299f30954855d3d349e1c0d9a504cf123f3ba91e\", \"live\": true, \"id\": \"xb9a9f2834196ee35\"}", "{\"sha\": \"0a5886afdf0732f4de552c11b830589807c442ff\", \"live\": true, \"id\": \"xb40e8b5ba34d545c\"}", "{\"sha\": \"4d801f5d3e141745dbbe0d8ef4aa71c05b823ed9\", \"live\": true, \"id\": \"x739a4af65dd40d59\"}", "{\"sha\": \"a64c06d05bd7b70bfab13e1fb12774f240f73754\", \"live\": true, \"id\": \"x7a73f92d8f8af99e\"}", "{\"sha\": \"68269c6669b984e3b8a1f6f26e0a7327ecdceef9\", \"live\": true, \"id\": \"xc733c1d4a2d64da0\"}"], "description": "Test your glassmaking knowledge", "basepoints": 12.0, "path": "glass-making-quiz/", "slug": "glass-making-quiz", "kind": "Exercise", "name": "glass-making-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "glass-making-quiz"}, "enzyme-kinetics-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/enzyme-kinetics/enzyme-kinetics-questions/", "id": "enzyme-kinetics-questions", "display_name": "Enzyme kinetics questions", "title": "Enzyme kinetics questions", "all_assessment_items": ["{\"sha\": \"0668983db03039e16fb34536b0ae0dd63a80dff0\", \"live\": true, \"id\": \"xbd742710c263a795\", \"perseus_api_major_version\": null}", "{\"sha\": \"68e12b4373cc455d3b41e53c4d776d17cc43b35a\", \"live\": true, \"id\": \"xa1d41179019e1a6e\", \"perseus_api_major_version\": null}", "{\"sha\": \"8e18bf8a74c0a888afddca4a5d0e6ebb996c768e\", \"live\": true, \"id\": \"x80338839fa643ead\", \"perseus_api_major_version\": 3}", "{\"sha\": \"594cadca2b7f7a2e23f97557152cefd19fb00a0a\", \"live\": true, \"id\": \"xc83499c7e56d0830\", \"perseus_api_major_version\": null}", "{\"sha\": \"7058227d263830bd3f9ec45a5352d9defe65fc12\", \"live\": true, \"id\": \"x2c1e9571890e75ee\", \"perseus_api_major_version\": null}", "{\"sha\": \"fdaa3e5139216f0dfd287f66617f51fb52464231\", \"live\": true, \"id\": \"x60fbaf902a1c236b\", \"perseus_api_major_version\": null}", "{\"sha\": \"f6f7f4a3596203b467671b311ebd0ce562379fb6\", \"live\": true, \"id\": \"xc902468a2874bd74\", \"perseus_api_major_version\": null}", "{\"sha\": \"bfec5fefa0a2bf241456db15862faeb12be614ac\", \"live\": true, \"id\": \"xaa2ae5f5d8791008\", \"perseus_api_major_version\": null}", "{\"sha\": \"f41cab19adcc525eb52e4c42586b1c714b639b49\", \"live\": true, \"id\": \"x4a651eeb2ccb8b2e\", \"perseus_api_major_version\": null}", "{\"sha\": \"574adbcd821639ba11f900c3c8a1146776cd03c4\", \"live\": true, \"id\": \"x41d0f5b15ce97066\", \"perseus_api_major_version\": null}"], "description": "Enzyme kinetics questions", "basepoints": 10.0, "slug": "enzyme-kinetics-questions", "kind": "Exercise", "name": "enzyme-kinetics-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "enzyme-kinetics-questions"}, "antibody-class-differences": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/antibody-class-differences/", "id": "antibody-class-differences", "display_name": "Antibody Class Differences", "title": "Antibody Class Differences", "all_assessment_items": ["{\"sha\": \"fa819c3846f91b187e5e32994146246742108b81\", \"live\": true, \"id\": \"x7af7c48732a2cc99\", \"perseus_api_major_version\": 3}", "{\"sha\": \"993ec1278ee9619fe11194e50ded84a0b2acea45\", \"live\": true, \"id\": \"x240c5447a914696a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f25043f4179430e0b1c075535c77a3341c4c2c20\", \"live\": true, \"id\": \"xa736fb28354daefc\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1015f05b51a347b929563ea3ee22f80540ed2846\", \"live\": true, \"id\": \"x0f3d6a508185b154\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6277105c0c53dac0588ea32b750fdb99f26e9775\", \"live\": true, \"id\": \"x7eda7bc4c7b2ad11\", \"perseus_api_major_version\": 3}"], "description": "Antibody Class Differences", "basepoints": 10.0, "slug": "antibody-class-differences", "kind": "Exercise", "name": "antibody-class-differences", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "antibody-class-differences"}, "defining-translations": {"uses_assessment_items": true, "path": "khan/math/geometry/transformations/hs-geo-translations/defining-translations/", "id": "defining-translations", "display_name": "Defining translations (interactive)", "title": "Defining translations (interactive)", "all_assessment_items": ["{\"sha\": \"03c44970aa407b02193f7a25fe587697319f58a5\", \"live\": true, \"id\": \"x927efda3a04a8436\"}", "{\"sha\": \"c59ddc3c2f46ad15ff884b1ab6973717b143854b\", \"live\": true, \"id\": \"xb642a1fe8b8b9fc2\"}", "{\"sha\": \"a8a5f432e0ea56a2bb177cfd00cc0dc30e3b54e2\", \"live\": true, \"id\": \"x6768c2493f4fa320\"}", "{\"sha\": \"783243499e49691928415f76ec2e7004dc4d9501\", \"live\": true, \"id\": \"x4dd3088012b06d25\"}", "{\"sha\": \"8bf94c51bdabca210cd2e66635ab23d911301dcd\", \"live\": true, \"id\": \"xa1074a59851faab6\"}", "{\"sha\": \"a5820ca847fa1ab32cb203d4260aaab3d65dfb13\", \"live\": true, \"id\": \"x6c19b6aae5e3fc25\"}", "{\"sha\": \"0104bda10a3a75d4a79da7a2bda1d80b2da2d7a5\", \"live\": true, \"id\": \"xda83810b7cf98784\"}", "{\"sha\": \"759d3f7602de5630b8e148f38e5d493126727cd6\", \"live\": true, \"id\": \"x7b826ec781f3e7ab\"}", "{\"sha\": \"5d4ef8af0feff4cc1c9cf438590e29f949aff450\", \"live\": true, \"id\": \"x2ce90bbca5ddcd5c\"}", "{\"sha\": \"99f9e9b4cdb11f8492c0d9ebeab961fe65b24695\", \"live\": true, \"id\": \"x0915b135358f59a3\"}", "{\"sha\": \"e35468ddce0366718d01986b5dfb5ff5cff14976\", \"live\": true, \"id\": \"x5545a140d284bd62\"}", "{\"sha\": \"a3b8f37378b9350fa01557d97f42cad3e0fcc4e1\", \"live\": true, \"id\": \"xd71a0f282f28ef41\"}", "{\"sha\": \"e476b73195167c5849c9280c90f91eccd7f35b27\", \"live\": true, \"id\": \"x45f56a31c2f5e015\"}", "{\"sha\": \"e550e5cff522ea8dde6a41eae2c76272e45c02bd\", \"live\": true, \"id\": \"x03159545e2d18ed6\"}", "{\"sha\": \"7d286beb61d91d8be9e676147551116d464e357d\", \"live\": true, \"id\": \"xaee510d5c16bcbf0\"}", "{\"sha\": \"fbeb5fc036833fa6d230aad00cb5dd6fc1bdc7f7\", \"live\": true, \"id\": \"x7bbf61abfb1ae7fc\"}", "{\"sha\": \"b44bf044dd33bd774fba5408c8647b99466c6430\", \"live\": true, \"id\": \"x17ac99a7c8047b65\"}", "{\"sha\": \"aed57fba965942f6b04c78134caa7dbd191b111d\", \"live\": true, \"id\": \"xdf5277a186f81b31\"}", "{\"sha\": \"5784d750b72d232a6a61eb9077dc354dacce66f7\", \"live\": true, \"id\": \"x36b09eb626063dfc\"}", "{\"sha\": \"7522c90a25ef1b7d494e097882d6fdba543a7619\", \"live\": true, \"id\": \"x7b5ec51105b57ac1\"}"], "description": "Define the translation that takes one figure to another", "basepoints": 10.0, "slug": "defining-translations", "kind": "Exercise", "name": "defining-translations", "seconds_per_fast_problem": 4.0, "prerequisites": ["performing-translations-on-the-coordinate-plane"], "exercise_id": "defining-translations"}, "similar_triangles_1": {"uses_assessment_items": false, "path": "khan/math/geometry/similarity/triangle_similarlity/similar_triangles_1/", "id": "similar_triangles_1", "display_name": "Similar triangles 1", "title": "Similar triangles 1", "description": "", "basepoints": 15.0, "slug": "similar_triangles_1", "kind": "Exercise", "name": "similar_triangles_1", "seconds_per_fast_problem": 8.0, "prerequisites": ["exploring-angle-preserving-transformations-and-similarity"], "exercise_id": "similar_triangles_1"}, "altar-at-pergamon-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome/altar-at-pergamon-quiz/", "id": "altar-at-pergamon-quiz", "display_name": "Altar at Pergamon (quiz)", "title": "Altar at Pergamon (quiz)", "all_assessment_items": ["{\"sha\": \"144abdfbd54b3e2da2a3b9f30b12a9f15a075718\", \"live\": true, \"id\": \"x709d5c7f29a7f9b3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0aa3909ff1da306a6d110ddc240f21f165badb92\", \"live\": true, \"id\": \"x7c729c70d8f15756\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"763e86d39c3a7591f06b7f1567104d5106e662c5\", \"live\": true, \"id\": \"xa3196a0bbb7ccb95\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6de857485bdb0c8b192fee74d0c2581636232c2e\", \"live\": true, \"id\": \"xd63040085d721397\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9becb87f2b0076b60074b1e37941051737728948\", \"live\": true, \"id\": \"x6e89e2b9712c4759\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2899cb42df99af6f575a5026e1f07799c5d4df35\", \"live\": true, \"id\": \"x58859462b2659757\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "altar-at-pergamon-quiz", "kind": "Exercise", "name": "altar-at-pergamon-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "altar-at-pergamon-quiz"}, "exploring-rigid-transformations-and-congruence": {"uses_assessment_items": true, "path": "khan/math/geometry/congruent-triangles/transformations-congruence/exploring-rigid-transformations-and-congruence/", "id": "exploring-rigid-transformations-and-congruence", "display_name": "Exploring rigid transformations and congruence", "title": "Exploring rigid transformations and congruence", "all_assessment_items": ["{\"sha\": \"37a8f9cd688c5d2e7f9ce560587f43454c626ad2\", \"live\": true, \"id\": \"x63070b941d4e36cf\"}", "{\"sha\": \"58f8b27ffeb50f16fdc7a10162473e551343128b\", \"live\": true, \"id\": \"xfc8c331e2f3471ab\"}", "{\"sha\": \"01e35769536f471777a54e8606ea0104ab9ed44f\", \"live\": true, \"id\": \"xc5fd1cd2ce5b9622\"}", "{\"sha\": \"44a89634f7207e38a34446484ca872b5b2e88db3\", \"live\": true, \"id\": \"x1c5d826271245dc6\"}", "{\"sha\": \"fba7620315b1ccdec6ddc812407e8c2939fb11ef\", \"live\": true, \"id\": \"x481d0d1d86e15d41\"}", "{\"sha\": \"0b8878853e286a57929dfe50cbfaeb8c7c6b7261\", \"live\": true, \"id\": \"x59a9f6823617ef01\"}", "{\"sha\": \"421f499a5bccefd5b2235c7c7d714a335587f826\", \"live\": true, \"id\": \"x4e5c01d59d8c66ca\"}", "{\"sha\": \"a850f10115ed2cc9eba73b1b7b05d698deafd79d\", \"live\": true, \"id\": \"xe12052525b1fe298\"}", "{\"sha\": \"6639d270bd491da2c375f7098cc061abec0f46ff\", \"live\": true, \"id\": \"x3da8b3738e67b338\"}", "{\"sha\": \"a0d1d3afd65c35a8cc2cf23b5dcf12408d610c9c\", \"live\": true, \"id\": \"x3a8afe95369d317e\"}", "{\"sha\": \"8ffc16ccbff9c18a3b8a841c1b8c38adb4edf4f1\", \"live\": true, \"id\": \"x62f48d3fae5cbf34\"}", "{\"sha\": \"8834bd8fb583558b1119ec1f18cb0b76ded29b39\", \"live\": true, \"id\": \"x9959535e329c5843\"}", "{\"sha\": \"e54043b2c0a7aba0f668994a1da4f5724252cb8b\", \"live\": true, \"id\": \"x0bd91715b119f4a9\"}", "{\"sha\": \"9264c00c7ffe8a25c1fc9c70881f61fcc5edce01\", \"live\": true, \"id\": \"xe52e5b26a672f28a\"}", "{\"sha\": \"337f2b884cec6cf8a77f10a6a7326b9c0f4b3e71\", \"live\": true, \"id\": \"x44fae54108c6829f\"}", "{\"sha\": \"18c349bf2dcea34474dbdf3b878401c7256a07c3\", \"live\": true, \"id\": \"xce3dcc2dc88d0563\"}", "{\"sha\": \"fcb3f6bb7230a1dffc62299e4a2a92a24e8b601c\", \"live\": true, \"id\": \"xa6a76e0d32fb1fa9\"}", "{\"sha\": \"da7c7e0595aeef34eb500175a20be97883d850fe\", \"live\": true, \"id\": \"x97ef42c18fe5d75c\"}", "{\"sha\": \"8e311a8919ef97e44313ec47374da2d5c31b78f0\", \"live\": true, \"id\": \"xccad6adb56ebf174\"}", "{\"sha\": \"462f9d5c9a90c6af8c7cd94de35a9a729c3e52df\", \"live\": true, \"id\": \"xb08c36c97c5de6fa\"}", "{\"sha\": \"2e3fa52d98d46fa9d28847c840376fd90cff0016\", \"live\": true, \"id\": \"x40e88108cdbce5cf\"}", "{\"sha\": \"e0812ac386edc60e96a1f29f35b6006147645498\", \"live\": true, \"id\": \"xf9948b5f1476a0d6\"}", "{\"sha\": \"004aa7bdb086ab9010d0483b31395cd23612346c\", \"live\": true, \"id\": \"x42dd278e3160ef22\"}", "{\"sha\": \"76fd4756cdd3b8841d38ec524db48a7b35fdc561\", \"live\": true, \"id\": \"x7da0506dfa28f9f5\"}", "{\"sha\": \"02e3d747a4323ebcb5ef8583643047476204d6e8\", \"live\": true, \"id\": \"x32c52fb6c0428bb6\"}", "{\"sha\": \"86ff66065b681e4612a85fdbdee087937c30a512\", \"live\": true, \"id\": \"xc4c5590e76387b5a\"}", "{\"sha\": \"25be2c0e74f938aa19a96728af5a9962e69b0767\", \"live\": true, \"id\": \"x2f41e517df362336\"}", "{\"sha\": \"5e70fb055e88cf4ba7d62ed8a9d61b85d9b31019\", \"live\": true, \"id\": \"x0518bb890a559828\"}", "{\"sha\": \"539204c6be00abed08d9446b661b532454a8d68a\", \"live\": true, \"id\": \"xb5b1d4e8e0731031\"}", "{\"sha\": \"675920e8ce58b572e91a383480c08085e4d18398\", \"live\": true, \"id\": \"x2e96732e7ca92433\"}"], "description": "", "basepoints": 22.0, "slug": "exploring-rigid-transformations-and-congruence", "kind": "Exercise", "name": "exploring-rigid-transformations-and-congruence", "seconds_per_fast_problem": 22.0, "prerequisites": ["performing-reflections-on-the-coordinate-plane", "performing-rotations-on-the-coordinate-plane", "performing-translations-on-the-coordinate-plane"], "exercise_id": "exploring-rigid-transformations-and-congruence"}, "calculating-the-mean-absolute-deviation--mad-": {"uses_assessment_items": true, "id": "calculating-the-mean-absolute-deviation--mad-", "display_name": "Calculating the mean absolute deviation (MAD)", "title": "Calculating the mean absolute deviation (MAD)", "all_assessment_items": ["{\"sha\": \"6d29329e3cb55f8e7919fc99cbb9dc06b07a9a2e\", \"live\": true, \"id\": \"xa63becd1d8b735aa\"}", "{\"sha\": \"c124c68fa5e69408763cb94b989f3f2451b81f7f\", \"live\": true, \"id\": \"x7a69e3e115bed3f0\"}", "{\"sha\": \"708b45f7e47a656f796619bd40e3cac2ca49033e\", \"live\": true, \"id\": \"x815a717f91be01c8\"}", "{\"sha\": \"73afd519fab8792800a9f0144b310a822b72f5e6\", \"live\": true, \"id\": \"xaf502a292366db14\"}", "{\"sha\": \"f86ff043eacc004040c38de154a40286b9aa5e01\", \"live\": true, \"id\": \"x539658bd3fced7a7\"}", "{\"sha\": \"48a1c944ebf15f058ad6b9e3624c9ad18977d3c8\", \"live\": true, \"id\": \"x3f6e9666ea782814\"}", "{\"sha\": \"4a927ba14b80641bd664d1111c5360897627506d\", \"live\": true, \"id\": \"xb628424e8a6baa63\"}", "{\"sha\": \"cae816908b57d35c02844343521b538a2817c816\", \"live\": true, \"id\": \"x56d779e3c14ce612\"}", "{\"sha\": \"56dad0b74f2aeb9dcb5401d5bb124c80bb9101a9\", \"live\": true, \"id\": \"xbde4e727020e8668\"}", "{\"sha\": \"8e0a4571bbe52bd2d1ed7d4edb108442b05dc878\", \"live\": true, \"id\": \"x3e5c2fc4a841085e\"}", "{\"sha\": \"30504e574b7ded5a38137f6b985d386a3401b6f9\", \"live\": true, \"id\": \"xa1c18be9db0e5dde\"}", "{\"sha\": \"a167cc1638de259c5a392196503f1c83d9492590\", \"live\": true, \"id\": \"xbce160d3d824e597\"}", "{\"sha\": \"964b12d602a4cd1bde810278866a19ef1a4ef7f9\", \"live\": true, \"id\": \"x83356aa410b472b3\"}", "{\"sha\": \"368e5bf97104790469b0d95c19f5810ff4d3aa6d\", \"live\": true, \"id\": \"xacf77736ceaa67f3\"}", "{\"sha\": \"d1b7b55602f46278a944c92ce15ddeb07ff21c05\", \"live\": true, \"id\": \"x372cda7c9b1a0c1d\"}", "{\"sha\": \"966bb46c46e5e5ee4d5b6fac0782a325d0010782\", \"live\": true, \"id\": \"x7e88d1f96e330c9f\"}", "{\"sha\": \"f94ee278e21925cd17b729c2713c109372d18554\", \"live\": true, \"id\": \"xcaba554c142d11f3\"}", "{\"sha\": \"00e475749a0e710f8bab0ea95e93ebe1e428ce46\", \"live\": true, \"id\": \"xc7d40c823d2aa499\"}", "{\"sha\": \"bbda1e495b748de54d4b8cdc39387f82dfc8d996\", \"live\": true, \"id\": \"xa6ac2285fb5d1ce1\"}", "{\"sha\": \"c300cd054e1f30494a10b6bb88f2b088064fecb9\", \"live\": true, \"id\": \"x001a52d916889012\"}", "{\"sha\": \"69d7e5927c7ccb8eed54ba7f171e26b1cd79cb4f\", \"live\": true, \"id\": \"x4cddb3b060f1c05e\"}", "{\"sha\": \"181206a1ec5a4cdb83dad9c17e748a33f386c0bb\", \"live\": true, \"id\": \"x37831c3f8c0f1dab\"}", "{\"sha\": \"66c017e0e25606318f4934e5973d02d65bf80c98\", \"live\": true, \"id\": \"x6f6997d1de52c08b\"}", "{\"sha\": \"3b5a759e3ce642f6bce65885557a80457c819073\", \"live\": true, \"id\": \"x014e5b2f8efff0f1\"}", "{\"sha\": \"241b979b16d5017ffe108079b42261f631b18e26\", \"live\": true, \"id\": \"xbfcd104371c3fbe4\"}", "{\"sha\": \"70cdbb929cba123579b8d040746be78adbdde7fb\", \"live\": true, \"id\": \"xbcdd3603e1a6349e\"}", "{\"sha\": \"6c3173470ce9ca7bfa276c6746d276cae5cc7c96\", \"live\": true, \"id\": \"x9d95025b4ca23435\"}", "{\"sha\": \"716fd631ddc3fd9d6030cf5cbcfcf4b5601363b8\", \"live\": true, \"id\": \"x1f878f239642c0a2\"}", "{\"sha\": \"770d9f5efd7b721383c1b8df4c9e468d8f01b886\", \"live\": true, \"id\": \"x6a594efc6ea1795f\"}", "{\"sha\": \"a16a6ab4786c3a6946ca823a694c2e46c7b6f2b7\", \"live\": true, \"id\": \"xb851f5deb5d67c42\"}", "{\"sha\": \"c3da5c74f37cdb4dfbeac2f7ceaf6675ff05a881\", \"live\": true, \"id\": \"xf7c5ab97ee58e7ab\"}"], "description": "Practice finding the mean absolute deviation (MAD) of a data set.", "basepoints": 10.0, "path": "calculating-the-mean-absolute-deviation-mad-/", "slug": "calculating-the-mean-absolute-deviation-mad-", "kind": "Exercise", "name": "calculating-the-mean-absolute-deviation--mad-", "seconds_per_fast_problem": 4.0, "prerequisites": ["analyzing-with-dot-plots", "calculating-the-mean"], "exercise_id": "calculating-the-mean-absolute-deviation--mad-"}, "the-early-renaissance-in-florence": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/the-early-renaissance-in-florence/", "id": "the-early-renaissance-in-florence", "display_name": "The Early Renaissance in Florence (including painting, sculpture and architecture) (quiz)", "title": "The Early Renaissance in Florence (including painting, sculpture and architecture) (quiz)", "all_assessment_items": ["{\"sha\": \"712816a62d59b7541c7c5510e613dd6fd07fa161\", \"live\": true, \"id\": \"xbf519a4722020699\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c4396f43b7a706b464116ce23d51046b1e6af770\", \"live\": true, \"id\": \"x58307a9f05e98c2a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bdbb0fc90970b03d370c7bded9dc7ecda9fa33f6\", \"live\": true, \"id\": \"x9131a6fb23d401d4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1decf968129faf32408c7c41f93b74b906994d39\", \"live\": true, \"id\": \"x59407d35ef174a55\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4ab04a80a2496f25c0019336802a4479538fd3d0\", \"live\": true, \"id\": \"x4e667c8d4255759c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4fc39703fcf2198add9facaa6b0c056789c84a55\", \"live\": true, \"id\": \"xdfa318afd1969cd6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bf68ba3c3d01ace2dc329960f9d846452f283355\", \"live\": true, \"id\": \"xcf4a8e2434534086\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b4a18ef7c0bdc20c551bfbe869e8833b04da14e\", \"live\": true, \"id\": \"x10488a090af3245b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "the-early-renaissance-in-florence", "kind": "Exercise", "name": "the-early-renaissance-in-florence", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-early-renaissance-in-florence"}, "categorize-quadrilaterals": {"uses_assessment_items": true, "id": "categorize-quadrilaterals", "display_name": "Categorize quadrilaterals", "title": "Categorize quadrilaterals", "all_assessment_items": ["{\"sha\": \"cdfd0c488a99cdc148ae7b35c97bdb0d68843145\", \"live\": true, \"id\": \"x25b86da3f05f10e7\", \"perseus_api_major_version\": null}", "{\"sha\": \"4a425165b34fa61a5c89a5c788fc02bb9a8356a6\", \"live\": true, \"id\": \"x2cecf9473c8e0c97\", \"perseus_api_major_version\": null}", "{\"sha\": \"7954cdb62c6d8bc9e6f00de99e3be035d0e70e48\", \"live\": true, \"id\": \"xb1dac6871e50cc15\", \"perseus_api_major_version\": null}", "{\"sha\": \"534034c7928babbd6b8b627efca10e4a08adc8d6\", \"live\": true, \"id\": \"xd4f13ea22aa9a25c\", \"perseus_api_major_version\": null}", "{\"sha\": \"552936f6e179856a7675f65ce0ed6b5d4d18e3ce\", \"live\": true, \"id\": \"x4b2f4a233dbbf243\", \"perseus_api_major_version\": null}", "{\"sha\": \"26b40bace2961a785002d382d582219d9b3a1444\", \"live\": true, \"id\": \"x9489025e83c055ed\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c549814f2065ff2452c9f6da28e36d704160cbf\", \"live\": true, \"id\": \"x752bde25061e77fa\", \"perseus_api_major_version\": null}", "{\"sha\": \"b9d8f846ac82a1ba72de730bd6702e066ebc642b\", \"live\": true, \"id\": \"xeef860c8a06280d3\", \"perseus_api_major_version\": null}", "{\"sha\": \"a3fbd30d59755295998714df82ca2e9989ec00d7\", \"live\": true, \"id\": \"x4ee2d1e706c52043\", \"perseus_api_major_version\": null}", "{\"sha\": \"64c188748d8872fb23860ba75e1c75d0ddd80c69\", \"live\": true, \"id\": \"xd4061afeeeb2dd3b\", \"perseus_api_major_version\": null}", "{\"sha\": \"5a290e4b1f610a569cf3628426fe16b64bd106c0\", \"live\": true, \"id\": \"xeedd63ae1c7317ed\", \"perseus_api_major_version\": null}", "{\"sha\": \"105b3e76188ff84170af1000b38ae2a90e8597d1\", \"live\": true, \"id\": \"xc818237c2ffe968a\", \"perseus_api_major_version\": null}", "{\"sha\": \"c80ae12b67bc11a911fcc379f6b7763bb2bd453a\", \"live\": true, \"id\": \"xb01ce2675e68df6c\", \"perseus_api_major_version\": null}", "{\"sha\": \"52f65dc2d4c5c1e4ee2d24c022c87ca44a351245\", \"live\": true, \"id\": \"x8eb25a03c2cfc2fb\", \"perseus_api_major_version\": null}", "{\"sha\": \"6f009ddcf9543169f06eb7c0060fec6787b4ab63\", \"live\": true, \"id\": \"x35372e15ebf117e2\", \"perseus_api_major_version\": null}", "{\"sha\": \"4662c54e5b57bae4f84a0d36608594f66408e1b7\", \"live\": true, \"id\": \"x2fa24ff140d790a8\", \"perseus_api_major_version\": null}", "{\"sha\": \"6abe2a1a25a0726ad266073d298bf467e3e41635\", \"live\": true, \"id\": \"xd961c0cdec10768d\", \"perseus_api_major_version\": null}", "{\"sha\": \"a8ce2a6df24a7e6855a8779ae87e7c7920ff9b44\", \"live\": true, \"id\": \"x6df8f920bd1c8314\", \"perseus_api_major_version\": null}", "{\"sha\": \"fe81d3343f01c17e796ccd50ae91412958b49714\", \"live\": true, \"id\": \"xf1e327581022d60c\", \"perseus_api_major_version\": null}", "{\"sha\": \"e305922f673348df8b41527a2de4e3ed7edf5d9e\", \"live\": true, \"id\": \"x14a6f4a2a1a0611c\", \"perseus_api_major_version\": null}"], "description": "Classify and compare rectangles, rhombuses, and squares.", "basepoints": 10.0, "path": "categorize-quadrilaterals/", "slug": "categorize-quadrilaterals", "kind": "Exercise", "name": "categorize-quadrilaterals", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "categorize-quadrilaterals"}, "the-formal-and-alternate-form-of-the-derivative": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/derivative_intro/the-formal-and-alternate-form-of-the-derivative/", "id": "the-formal-and-alternate-form-of-the-derivative", "display_name": "The formal and alternate form of the derivative", "title": "The formal and alternate form of the derivative", "all_assessment_items": ["{\"sha\": \"0026249f1327fa094c99899a42159df91f216947\", \"live\": true, \"id\": \"x338d7147\"}", "{\"sha\": \"5ceef1c0a7602fc987dafb3e9be8e1d5e75f57ff\", \"live\": true, \"id\": \"xbac9ded2\"}", "{\"sha\": \"89a0b598a109b3fb5a610c55dfad96a259f02654\", \"live\": true, \"id\": \"x035d1d2d\"}", "{\"sha\": \"6b43dca9905adda6b38fe5b85d3c89cae6a3c7ab\", \"live\": true, \"id\": \"xf367d9e4\"}", "{\"sha\": \"321b4cddfe92d73636c425a48ece4f1a6684305a\", \"live\": true, \"id\": \"x5c293ab2\"}", "{\"sha\": \"0c981a2990987852833b1dce850f058aa2f49857\", \"live\": true, \"id\": \"xd2f245ff\"}", "{\"sha\": \"e2c868ac836b0acc691d282b0d1382692042728a\", \"live\": true, \"id\": \"xe0be1241\"}", "{\"sha\": \"a66ec6bc94d7572389d056869eeb5a8a8993279f\", \"live\": true, \"id\": \"x38d37bfa\"}", "{\"sha\": \"a95eb652175111f1a3af816644fa1c63f81411c5\", \"live\": true, \"id\": \"x0db024bf\"}", "{\"sha\": \"cd9e94a12607d271f0bd84b3a92dfe6445a7ae6e\", \"live\": true, \"id\": \"xfe029c18\"}", "{\"sha\": \"296916d95d184a2764bb57a9aebcfdd3ed8c2a22\", \"live\": true, \"id\": \"x8db856d3\"}", "{\"sha\": \"55627d63e55a5f5973e32796d306b31a77a19faf\", \"live\": true, \"id\": \"x2c5ab89e\"}", "{\"sha\": \"77d4a4661b404a918f1bcf0abc8778da6b67b046\", \"live\": true, \"id\": \"x28e83540\"}", "{\"sha\": \"4cc4092f5d817cc980aa61b5e049bafde852fa1f\", \"live\": true, \"id\": \"x97677fc7\"}", "{\"sha\": \"321c648a87a6a78befb1be3bcb875c40a07974b5\", \"live\": true, \"id\": \"xb9e7a613\"}", "{\"sha\": \"d3e362e75432d8a5aff079146bd9d541edfdf916\", \"live\": true, \"id\": \"x590c14de\"}", "{\"sha\": \"95470588fa3456206077910fe5b288f965dcd2b2\", \"live\": true, \"id\": \"xf9941937\"}", "{\"sha\": \"ed4174a4a53b3df1d608fa2f4cfff19d3320565d\", \"live\": true, \"id\": \"xf1700522\"}", "{\"sha\": \"8f688a8d774733de4b6ef912f9c7738d1e6982e6\", \"live\": true, \"id\": \"xa81ee3a5\"}", "{\"sha\": \"05d3c11f72664370b60444ed4935c0a8df2ca1b0\", \"live\": true, \"id\": \"x12fc5e9f\"}", "{\"sha\": \"0df1410529bcdb4bc710fdd4761fd7efeefe0cf5\", \"live\": true, \"id\": \"x1f8252bc\"}", "{\"sha\": \"73a1cb32124515f45f30fe8b58ff3cffd9a5a40f\", \"live\": true, \"id\": \"x2b0bbd27\"}", "{\"sha\": \"d65177a564264cbd09941c93712301a44c298559\", \"live\": true, \"id\": \"x28e5a8c6\"}", "{\"sha\": \"528a7b9615f3e7790d7c586efd99eb585b1398cc\", \"live\": true, \"id\": \"x1f7483a7\"}", "{\"sha\": \"a3eea85ad4bef4d74711187581ca0352c6944f78\", \"live\": true, \"id\": \"xe70b42bb\"}", "{\"sha\": \"50c6fd143d13a7519fa2b14a8a0ff43f637be7e1\", \"live\": true, \"id\": \"xb9272788\"}", "{\"sha\": \"e3d61812e59de4b3eecf90d683cf556b230b35fd\", \"live\": true, \"id\": \"xb337cdb1\"}", "{\"sha\": \"406d44147fb7a0e89753cf77737d039061015916\", \"live\": true, \"id\": \"x7fa0f55e\"}", "{\"sha\": \"1dc2b39724a368f4d23944d84043a1443ec8f4d7\", \"live\": true, \"id\": \"xcfdcabe6\"}", "{\"sha\": \"02f1bbf870372196ba19e14d2e84cef1c297627d\", \"live\": true, \"id\": \"xa854eb93\"}"], "description": "", "basepoints": 19.0, "slug": "the-formal-and-alternate-form-of-the-derivative", "kind": "Exercise", "name": "the-formal-and-alternate-form-of-the-derivative", "seconds_per_fast_problem": 14.0, "prerequisites": ["tangent-slope-is-limiting-value-of-secant-slope"], "exercise_id": "the-formal-and-alternate-form-of-the-derivative"}, "area-and-circumference-of-circles": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/measuringuniverse/orbital-mechanics/area-and-circumference-of-circles/", "id": "area-and-circumference-of-circles", "display_name": "Area and circumference of circles", "title": "Area and circumference of circles", "all_assessment_items": ["{\"sha\": \"1cfb89ba81492c596ed944946bcd7b5e1ee55644\", \"live\": true, \"id\": \"xed9b14030db454cd\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a44282d0b35d2859fb893396f6c2ab9d95fb021\", \"live\": true, \"id\": \"xf0da61cdc2f37004\", \"perseus_api_major_version\": 2}", "{\"sha\": \"0d9e00c30f47ba81697dc8d944e8593b789d1066\", \"live\": true, \"id\": \"xe448997a086976be\", \"perseus_api_major_version\": null}", "{\"sha\": \"68c9e3961d83ec048360ec1593afd272c1c697ff\", \"live\": true, \"id\": \"xf793550bfea84e99\", \"perseus_api_major_version\": null}", "{\"sha\": \"dbcee0ff25702a51bd8931f931cbb1fbdb2df5eb\", \"live\": true, \"id\": \"x067a2ea8fceec945\", \"perseus_api_major_version\": null}", "{\"sha\": \"243c0e4accbb63f915da255333928808b94f013e\", \"live\": true, \"id\": \"x1cfcca1f7e21f454\", \"perseus_api_major_version\": null}", "{\"sha\": \"47ddb76f0a18c42528869ec7d210736df86993fc\", \"live\": true, \"id\": \"xc36d0fcab2738fb5\", \"perseus_api_major_version\": null}", "{\"sha\": \"8a0b25e3ef0dfaec402cf01b3323157700586fc4\", \"live\": true, \"id\": \"x3879b8b46e93651e\", \"perseus_api_major_version\": null}", "{\"sha\": \"c2187b7cfd8bbf70e6becceaae83a9c7edc5653d\", \"live\": true, \"id\": \"xf0fdfd7428fcd860\", \"perseus_api_major_version\": null}", "{\"sha\": \"ca430cc02b197e3c09c0b9cdb665443d5adf7cc2\", \"live\": true, \"id\": \"x790eb845d377100f\", \"perseus_api_major_version\": null}", "{\"sha\": \"d3240f656bf3666347b25be66a705543f8a4ed04\", \"live\": true, \"id\": \"x4d9ac4ed5246f99b\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed5cffcc05cfc80985506e6960db871b8752ae78\", \"live\": true, \"id\": \"xefc631c99946d20d\", \"perseus_api_major_version\": null}", "{\"sha\": \"2bfd2607c164cde0ef42e4b3d3add1263b422e23\", \"live\": true, \"id\": \"x96a8cbf4fb017d88\", \"perseus_api_major_version\": null}", "{\"sha\": \"1adfba492575a74f18af638e98d3885cfa48477e\", \"live\": true, \"id\": \"x207f8a7e9a127fad\", \"perseus_api_major_version\": null}", "{\"sha\": \"71d4bce4b48be9ea8f9efc31dc3e2e5a18d200ec\", \"live\": true, \"id\": \"xe76e25d5bcae424a\", \"perseus_api_major_version\": null}", "{\"sha\": \"319fb4133ca95e2486f6eb4c4a6cdfcc3ef067a8\", \"live\": true, \"id\": \"x88ec3227d14c19ce\", \"perseus_api_major_version\": null}", "{\"sha\": \"5e1e8687a33bdb433ddff24018214015a25483a0\", \"live\": true, \"id\": \"xae170cfcb857d9e1\", \"perseus_api_major_version\": null}", "{\"sha\": \"1b948f45d47a0a7f0365a746efcccc57039d14bc\", \"live\": true, \"id\": \"xade69580de9f3c4e\", \"perseus_api_major_version\": null}", "{\"sha\": \"dd57d71d8f4e28d19b0de02b27bac9858d8b322e\", \"live\": true, \"id\": \"xe55a1e1bf7230020\", \"perseus_api_major_version\": null}", "{\"sha\": \"096868fca089ccedd338713efa5e7a69de4a50e3\", \"live\": true, \"id\": \"xabe6ed366c0c0473\", \"perseus_api_major_version\": null}", "{\"sha\": \"59c9ad6a8ab7b0c58e13cb87efa7d7be6cd067b4\", \"live\": true, \"id\": \"xb9d0da8f1cff505a\", \"perseus_api_major_version\": null}", "{\"sha\": \"2bf5b9bfaeb192467986f727f986c336a2cf2dd6\", \"live\": true, \"id\": \"x9a3db47ccf936b4a\", \"perseus_api_major_version\": null}", "{\"sha\": \"55b864635dddf526ffd97862284aef909d32963f\", \"live\": true, \"id\": \"x1f4b934dfe143abf\", \"perseus_api_major_version\": null}", "{\"sha\": \"73cbb825c93be1e2a9b0d2ad42083775d5710d74\", \"live\": true, \"id\": \"x53718caed7c5f72f\", \"perseus_api_major_version\": null}", "{\"sha\": \"940d0f2e4133399f56235de9b3aab7b1590a6ecd\", \"live\": true, \"id\": \"xa9879653bc4a66ea\", \"perseus_api_major_version\": null}", "{\"sha\": \"b8635eb208fde3a87c64d9f55e2b967e8f038ea4\", \"live\": true, \"id\": \"x9e0a22b47bb05fc6\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5c1a7b2cfbb0e6d8767b1e3b6e19680e70c7e39\", \"live\": true, \"id\": \"xb4dd0f0616538444\", \"perseus_api_major_version\": null}", "{\"sha\": \"3061f337fdbeca55287615e6e40fda7b1f61682a\", \"live\": true, \"id\": \"x560d92c3a06b1431\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 21.0, "slug": "area-and-circumference-of-circles", "kind": "Exercise", "name": "area-and-circumference-of-circles", "seconds_per_fast_problem": 18.0, "prerequisites": ["radius_diameter_and_circumference", "area_of_a_circle"], "exercise_id": "area-and-circumference-of-circles"}, "graphs-of-trigonometric-functions": {"uses_assessment_items": true, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/graphs-of-trigonometric-functions/", "id": "graphs-of-trigonometric-functions", "display_name": "Graphs of trigonometric functions", "title": "Graphs of trigonometric functions", "all_assessment_items": ["{\"sha\": \"8064d0babb80452e31f30075628a594232516f4a\", \"live\": true, \"id\": \"x5e66e64d814d91d5\"}", "{\"sha\": \"f7b9624e2c631f550c891fc9d2323c243bbb4a90\", \"live\": true, \"id\": \"xdc4ad2ebd4b83614\"}", "{\"sha\": \"7d0c2f1ff0c4123ff1ae20c07d75d4924ff4f68d\", \"live\": true, \"id\": \"xe96446daf9433418\"}", "{\"sha\": \"cb0c7292166406cc0c74fda29716596c56f7393f\", \"live\": true, \"id\": \"x75c2d4bfae6fb802\"}", "{\"sha\": \"e43fe043672028aec0c5fa3c336387f32d841c35\", \"live\": true, \"id\": \"xf28b279ea13a816a\"}", "{\"sha\": \"5e4ab07de5fd6235695cd30e4b19a2a56edb53c7\", \"live\": true, \"id\": \"x5fb9b110260a89ed\"}", "{\"sha\": \"6f0d5dd9e337af4fe15d49f11e2b06c61d2527b8\", \"live\": true, \"id\": \"xcf934d7c29fa6689\"}", "{\"sha\": \"bd8bb07419ca241df9abeb39ef9f2ca88f4e4031\", \"live\": true, \"id\": \"xadc7a8a54a54c991\"}", "{\"sha\": \"510b4cd378a8a2bfbc310d366f40f76cd71c3a1b\", \"live\": true, \"id\": \"x04ad48219d4a4d7b\"}", "{\"sha\": \"f21951b937772504d25f7655929894a1b914e334\", \"live\": true, \"id\": \"x438c039513552765\"}", "{\"sha\": \"d7431e288f57ae544f1f6036203568964083a112\", \"live\": true, \"id\": \"x2c020e493f5a26f1\"}", "{\"sha\": \"2e8d94c03556e30df40de022bb70c84069f298aa\", \"live\": true, \"id\": \"xf764cbac8c92d5ea\"}", "{\"sha\": \"55020f503a0c61a75c9836d0d35763a5083ef507\", \"live\": true, \"id\": \"xd163196e67ce6eae\"}", "{\"sha\": \"9b2db150f83d75484219f4b10753311f72c7aed0\", \"live\": true, \"id\": \"x4c6f91e4d15cd696\"}", "{\"sha\": \"7dd0cfdb694ac0db48a65d287ea0aead54f129e5\", \"live\": true, \"id\": \"x87619b871d3638c9\"}", "{\"sha\": \"decf1fe42ef208e85f9ffa691605652e6b8fdd94\", \"live\": true, \"id\": \"x20df54e94ea554dc\"}", "{\"sha\": \"bbc4835897bb499844eeeedfa1dd8590b1621086\", \"live\": true, \"id\": \"x7fe1ec4dfae3811e\"}", "{\"sha\": \"dd8b5a537c2407711bddc39960323c4e179ec73c\", \"live\": true, \"id\": \"xebe3dec0980563f8\"}", "{\"sha\": \"bdf64d217897a0f39d03931e8b29664e491ea51c\", \"live\": true, \"id\": \"x75258c69b3a2ef5c\"}", "{\"sha\": \"53bd61cdbd9d6decc9a38e06661e27d2e227890f\", \"live\": true, \"id\": \"x09e5d2dfbcde1def\"}", "{\"sha\": \"a885524ab40f1d58a29fe0281a3c76fc47ce9507\", \"live\": true, \"id\": \"x8703f206436ba911\"}", "{\"sha\": \"d38cee877805bb91d192ffa3209c92fbdedce3b0\", \"live\": true, \"id\": \"x722f94a9a1bfe1c6\"}", "{\"sha\": \"2dfa7edd620fbcdb4080fa82063ee66065728b89\", \"live\": true, \"id\": \"x7a7ce2a2bfe8687f\"}", "{\"sha\": \"f1eae06e4d29b6e824733c472919b37363a7c9d3\", \"live\": true, \"id\": \"xfc6c8b64c72c9c04\"}", "{\"sha\": \"fef8c13e58bc5d78de2a2f4e4d2b6fe1285b7c99\", \"live\": true, \"id\": \"x4643512308bff599\"}", "{\"sha\": \"8a508efa7a9d5406414eaf384964629e77bae9f2\", \"live\": true, \"id\": \"xeeeea2f39410c1a7\"}", "{\"sha\": \"8d811bf00cdf8e4e863a62c63c6b47faada2303e\", \"live\": true, \"id\": \"x62dd3cfac8d0ae13\"}", "{\"sha\": \"2e455398fff10b6a8dc21cb1a1141f2dd258daa9\", \"live\": true, \"id\": \"x822efca920547346\"}", "{\"sha\": \"19d315b8415bd5715dc7d32d23740991473865ef\", \"live\": true, \"id\": \"x6800a5c077650a08\"}", "{\"sha\": \"fe5b7c110f8f5bf697e3e1ee43b690482756e5ff\", \"live\": true, \"id\": \"xec35d14f77bc3179\"}", "{\"sha\": \"5fe1544472edb0340fc21fe8658f6c9ef8c987cc\", \"live\": true, \"id\": \"x9b15432cbeae8b4b\"}", "{\"sha\": \"139763f2dea5d1ba56a0a201755efe5121c95975\", \"live\": true, \"id\": \"x5bd7a720f05613b8\"}", "{\"sha\": \"eb5b8a4aaff44b3fd6cbd157c0f06fd214ac6d0b\", \"live\": true, \"id\": \"x3339a3adb9ea1a8e\"}", "{\"sha\": \"83fc521fb3b92a5aa15e3021fc5df813bd13ac0b\", \"live\": true, \"id\": \"xd53c49055a8d7dc1\"}", "{\"sha\": \"73eb6ba219aceede697a0bf18e9d2c45ab72b538\", \"live\": true, \"id\": \"x02d4805009576140\"}", "{\"sha\": \"dbf486824deab6539087d7944eb58b64e6a8b31b\", \"live\": true, \"id\": \"x7ae1249f2dca4b89\"}", "{\"sha\": \"928e7d5d0b1c6fdf7d41a78e03268f3c04a1d2b9\", \"live\": true, \"id\": \"xe623434312373ef0\"}", "{\"sha\": \"0deafa733568b728dd75162588e6c1feb88be226\", \"live\": true, \"id\": \"x0366ca2f1cafaf9d\"}", "{\"sha\": \"ddca87f89829c769ceb90ba06b3308f99ab6f337\", \"live\": true, \"id\": \"xe304f7e8a413c6a7\"}", "{\"sha\": \"678d54298d1c2e8c831c572274f5e5ef3c73ee80\", \"live\": true, \"id\": \"x5d61a501cfc6eb96\"}"], "description": "", "basepoints": 29.0, "slug": "graphs-of-trigonometric-functions", "kind": "Exercise", "name": "graphs-of-trigonometric-functions", "seconds_per_fast_problem": 55.0, "prerequisites": ["amplitude-of-trig-functions", "midline-of-trig-functions", "period-of-trig-functions"], "exercise_id": "graphs-of-trigonometric-functions"}, "ashurbanipal-hunting-lions-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/assyrian/ashurbanipal-hunting-lions-quiz/", "id": "ashurbanipal-hunting-lions-quiz", "display_name": "Ashurbanipal hunting lions (quiz)", "title": "Ashurbanipal hunting lions (quiz)", "all_assessment_items": ["{\"sha\": \"62d232ad55a1a1256dc9cdbeeb900e34eb7baf4e\", \"live\": true, \"id\": \"x07f84ae08be9c6b3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b45e6550a99fcb9e502101c45bdfb295a4479018\", \"live\": true, \"id\": \"x12e14ec6b35bfcf1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aac9ef2d5803931c81ad3b8d9f45f7e116136d3c\", \"live\": true, \"id\": \"xf832b2ccbdd44854\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f910e8452a88dec24976b2c6ef63be28041c7ab4\", \"live\": true, \"id\": \"xb4dd0ff263e8809c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "ashurbanipal-hunting-lions-quiz", "kind": "Exercise", "name": "ashurbanipal-hunting-lions-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ashurbanipal-hunting-lions-quiz"}, "cc-4th-comparing-decimals-and-fractions": {"uses_assessment_items": true, "id": "cc-4th-comparing-decimals-and-fractions", "display_name": "Comparing decimals and fractions", "title": "Comparing decimals and fractions", "all_assessment_items": ["{\"sha\": \"c0988c4f574b15655f43ba567ce915f1531f0fda\", \"live\": true, \"id\": \"x0c70b8a94d620166\"}", "{\"sha\": \"e78238c69ebe83a993b201bef916fba162de612a\", \"live\": true, \"id\": \"x2be644a2cf7abe2b\"}", "{\"sha\": \"008615fcc897a377d3b770c45de70149795e61c6\", \"live\": true, \"id\": \"x8ae4ee0834b296bd\"}", "{\"sha\": \"3e8510dd231372a2c27cc7457f7d27153c851755\", \"live\": true, \"id\": \"x274013ce26d96234\"}", "{\"sha\": \"7fe3a4a5e1b9c04eb0d06444b9b8efef8bd06880\", \"live\": true, \"id\": \"x3a1954f23a44cfa1\"}", "{\"sha\": \"b8809e0643b3603e9c0cf97845499621b1b8fd3b\", \"live\": true, \"id\": \"xf59146d0d0717200\"}", "{\"sha\": \"e6633e95e6c6dae4ede8d8c2e429c11622f1645c\", \"live\": true, \"id\": \"xd02ebcaa4ed0e055\"}", "{\"sha\": \"44ee534728ac49520e09eb41a58bf3a04666b2b2\", \"live\": true, \"id\": \"x18af277684e1a9bf\"}", "{\"sha\": \"059b98e0e81eef185cc71e63b595e7537cf8e6af\", \"live\": true, \"id\": \"x2bbc13ffbfedb7d5\"}", "{\"sha\": \"4879a272dea826afd40621271e39037a85740cd6\", \"live\": true, \"id\": \"xdd6dfcbfe5994bc8\"}", "{\"sha\": \"d52d141699e6be973fc98a7f5174bfd254115125\", \"live\": true, \"id\": \"x5f45a6e6e3efaeea\"}", "{\"sha\": \"7faef27481a7f110300c89d1696058da92b8f506\", \"live\": true, \"id\": \"x720ba8750632e063\"}", "{\"sha\": \"54942e0787ebc2c2125a322aab4c60b94a10f4fb\", \"live\": true, \"id\": \"x0a31a87ca8b56d45\"}", "{\"sha\": \"0358cb08225dc53c3ab08fc43c1192b33a044973\", \"live\": true, \"id\": \"xd18a05477c962822\"}", "{\"sha\": \"56f91b2331a0a72c986d5ad2ab4e269c33185587\", \"live\": true, \"id\": \"xa2376b0cd2f3c380\"}", "{\"sha\": \"b69a063832f3472834fc4e7b37dd4158e7247ff7\", \"live\": true, \"id\": \"x366b9a36c206adb8\"}", "{\"sha\": \"900bce24366eb6a9e08d418ee92309ce0f5fc7e8\", \"live\": true, \"id\": \"x819a56dc86812ab8\"}", "{\"sha\": \"5d000e156b39459e6d01665ccb2b789d9aa13a5a\", \"live\": true, \"id\": \"x9f4d0577850f7c18\"}", "{\"sha\": \"5f2fb9e980be893134c3488bb3cfbbd8089b5b19\", \"live\": true, \"id\": \"x8c97e8096c88d60b\"}", "{\"sha\": \"e9fe7f5b7dc73a66a6dd58f58d6183849a2eed0c\", \"live\": true, \"id\": \"x87549a415fac6f38\"}", "{\"sha\": \"2d60888e89a84f9f11bf9f774c0ea2ecb10b8f8a\", \"live\": true, \"id\": \"x26e20973d65e409f\"}", "{\"sha\": \"99b194e4bd0331fb5c1ba2c3dd709c9aa11b0216\", \"live\": true, \"id\": \"xddeb8abcc351390e\"}"], "description": "Practice comparing decimals and fractions. Decimals and fractions in these problems are limited to tenths and hundredths for easier comparison.", "basepoints": 10.0, "path": "cc-4th-comparing-decimals-and-fractions/", "slug": "cc-4th-comparing-decimals-and-fractions", "kind": "Exercise", "name": "cc-4th-comparing-decimals-and-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["comparing_decimals_1"], "exercise_id": "cc-4th-comparing-decimals-and-fractions"}, "innate-vs-adaptive-immunity": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/innate-vs-adaptive-immunity/", "id": "innate-vs-adaptive-immunity", "display_name": "Innate vs Adaptive Immunity", "title": "Innate vs Adaptive Immunity", "all_assessment_items": ["{\"sha\": \"037facbd08f8d4333a25e75cd679673f16a47c28\", \"live\": true, \"id\": \"x7879926efd815bc6\"}", "{\"sha\": \"5b9dbc45cd03989746097a536c67b07eb651b298\", \"live\": true, \"id\": \"x86b8703d78679bdd\"}", "{\"sha\": \"e48deab330f774ef8a7a2b1ce69f68da71f8ef34\", \"live\": true, \"id\": \"x40da7f673f3705f8\"}", "{\"sha\": \"96375b28393910acc452958b07c7165dcba4b572\", \"live\": true, \"id\": \"x48149da098fd238c\"}", "{\"sha\": \"581e996994e7abc41b87a2cdbd0fe44b9d0281e6\", \"live\": true, \"id\": \"x47f7190db0b664e9\"}"], "description": "Innate vs Adaptive Immunity", "basepoints": 10.0, "slug": "innate-vs-adaptive-immunity", "kind": "Exercise", "name": "innate-vs-adaptive-immunity", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "innate-vs-adaptive-immunity"}, "carbohydrates-quiz-passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/carbohydrates-quiz-passage-2/", "id": "carbohydrates-quiz-passage-2", "display_name": "Hemiacetal formation of carbohydrates", "title": "Hemiacetal formation of carbohydrates", "all_assessment_items": ["{\"sha\": \"50d5aaf77b68c6f0ff199317998210ed711a6b1f\", \"live\": true, \"id\": \"x1309bd43603cfdf9\"}", "{\"sha\": \"66fc051557b9f7a7a9f3573d30382a0f2e12faa8\", \"live\": true, \"id\": \"xda31042d3befb161\"}", "{\"sha\": \"e2223a1d314c9dc5a4a74815e18af80e4a3cc583\", \"live\": true, \"id\": \"x54563b5392c80f87\"}", "{\"sha\": \"484e76e36c78b31eff0c7a8dbf97d7b210ee86f6\", \"live\": true, \"id\": \"xea7e6044c957b0e4\"}", "{\"sha\": \"dbb791f44281601d01af180bacb72946871f4425\", \"live\": true, \"id\": \"xe61ee249f8bb7905\"}"], "description": "Carbohydrates quiz passage 2", "basepoints": 10.0, "slug": "carbohydrates-quiz-passage-2", "kind": "Exercise", "name": "carbohydrates-quiz-passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "carbohydrates-quiz-passage-2"}, "carbohydrates-quiz-passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/carbohydrates-quiz-passage-1/", "id": "carbohydrates-quiz-passage-1", "display_name": "The structure of monosaccharides", "title": "The structure of monosaccharides", "all_assessment_items": ["{\"sha\": \"60f56f42883ba6a071d0baf86c8680e5073ea56e\", \"live\": true, \"id\": \"xd5204fadde321548\"}", "{\"sha\": \"eab33ca58f0d5bc10390ec33dd48abbd021f4672\", \"live\": true, \"id\": \"x6991e8e9d393bc94\"}", "{\"sha\": \"9311a6b3b5a4b4319dc860e155042edebe0f68eb\", \"live\": true, \"id\": \"x403e01cf0b96d790\"}", "{\"sha\": \"86e7acf78f8315122357dc2199f46d37144135f9\", \"live\": true, \"id\": \"x85a0e0a563f9e402\"}", "{\"sha\": \"baafb236808cce861c8ed1997ad7c7fb2de0b997\", \"live\": true, \"id\": \"x3b140cabf0417581\"}"], "description": "Carbohydrates quiz passage 1", "basepoints": 10.0, "slug": "carbohydrates-quiz-passage-1", "kind": "Exercise", "name": "carbohydrates-quiz-passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "carbohydrates-quiz-passage-1"}, "constructing-probability-distributions": {"uses_assessment_items": true, "path": "khan/math/probability/random-variables-topic/random_variables_prob_dist/constructing-probability-distributions/", "id": "constructing-probability-distributions", "display_name": "Constructing probability distributions", "title": "Constructing probability distributions", "all_assessment_items": ["{\"sha\": \"3514b2baa2e900d2e28a3abd34ac245af95a26a8\", \"live\": true, \"id\": \"x7d7d933d53f1604a\", \"perseus_api_major_version\": null}", "{\"sha\": \"e0ac28346ce1cb680d32b7d7ebd4e3364769c25c\", \"live\": true, \"id\": \"x6654effd91882c5d\", \"perseus_api_major_version\": null}", "{\"sha\": \"bfc7d516c568877277ddf631c0875d3f69408332\", \"live\": true, \"id\": \"x0250266d01c8a127\", \"perseus_api_major_version\": null}", "{\"sha\": \"4efabe15276576761c9c15543ffa410e7a26e91c\", \"live\": true, \"id\": \"x41fa2562e5fc8811\", \"perseus_api_major_version\": null}", "{\"sha\": \"2add503d760067a1899e44d547da1bd82e370a68\", \"live\": true, \"id\": \"xd3c75a49f5ac99c5\", \"perseus_api_major_version\": null}", "{\"sha\": \"f557db51ab76a4c9009877b057328f57f7020375\", \"live\": true, \"id\": \"xbdd9e7ee3b89b43e\", \"perseus_api_major_version\": null}", "{\"sha\": \"b7735d7f1b584d29c1b3d691e19a1f0f3ed595b3\", \"live\": true, \"id\": \"x292319e9d053cf14\", \"perseus_api_major_version\": null}", "{\"sha\": \"6b0442f23feb88d193d2142c87e274a5a41156ec\", \"live\": true, \"id\": \"xffc81152225c4200\", \"perseus_api_major_version\": null}", "{\"sha\": \"ff8c7e45122802c625d207a89179c8163b962f94\", \"live\": true, \"id\": \"x822a2de8e7203a09\", \"perseus_api_major_version\": null}", "{\"sha\": \"6d3668eeabca95a922836bfb0f42547738de8baa\", \"live\": true, \"id\": \"xd2ecca1dc9277bcd\", \"perseus_api_major_version\": null}", "{\"sha\": \"384300890467b79c9330a85951a0a8cd9a0038cc\", \"live\": true, \"id\": \"x05edfa3fca2681af\", \"perseus_api_major_version\": 0}", "{\"sha\": \"9c95001566a0630e8f79cad6d6d087ef2637453e\", \"live\": true, \"id\": \"xa2a9c7dc531be450\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f679ceea19bd599bf63ac2ef16c7054c95d540f5\", \"live\": true, \"id\": \"xa2ffbaf343309316\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7f489b402230c50f16303a12b68058c7310bad2b\", \"live\": true, \"id\": \"x02b124c16854a94c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"588eb8623bf7886c95db08fd5e6b2fc871996865\", \"live\": true, \"id\": \"x329acf85315cf02a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"885bfa7309627d1850b4fe5cb70584256397bb76\", \"live\": true, \"id\": \"x46e322973c41b065\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d8e32dcec4cde73fbe0629913a316ac3635efb56\", \"live\": true, \"id\": \"x091107b26091e67d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5d15685b859031137a4f356b70bedcf591d7a15e\", \"live\": true, \"id\": \"xb3e6d841a3ddd862\", \"perseus_api_major_version\": 0}", "{\"sha\": \"850884966b0679669d6363a15ddbdfe0733bf789\", \"live\": true, \"id\": \"xabf0fabe2c37ab24\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ac1ae7b1ed4ab4c3dad756bcfea91edd525a9202\", \"live\": true, \"id\": \"x010a5121d0b3c8bf\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4d51dc09883bdbd3c96cd330b9f3591681f85c20\", \"live\": true, \"id\": \"xa0eb24b10b654f84\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8ed54484168a808db864a1de1f71f789c9d5a3e6\", \"live\": true, \"id\": \"x33c604052f51cc09\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1ee097f152082727f164f8617dadc4f4a4ad8f51\", \"live\": true, \"id\": \"xc77889cd17c21d33\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8e86b887fecf4a1a37e9760cbb2b60a61b00262e\", \"live\": true, \"id\": \"x8aed6a6ba7035d34\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c97b2b1e1bb73d827df7dbae7de0bed4fae32b6f\", \"live\": true, \"id\": \"x9690a68343650d18\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 10.0, "slug": "constructing-probability-distributions", "kind": "Exercise", "name": "constructing-probability-distributions", "seconds_per_fast_problem": 4.0, "prerequisites": ["compound-events", "dice_probability"], "exercise_id": "constructing-probability-distributions"}, "writing_expressions_1": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/writing_expressions_1/", "id": "writing_expressions_1", "display_name": "Writing expressions with variables 2", "title": "Writing expressions with variables 2", "description": "Practice writing slightly more complicated algebraic expressions.", "basepoints": 14.0, "slug": "writing_expressions_1", "kind": "Exercise", "name": "writing_expressions_1", "seconds_per_fast_problem": 7.0, "prerequisites": ["writing-expressions-with-variables-1"], "exercise_id": "writing_expressions_1"}, "writing_expressions_2": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/writing_expressions_2/", "id": "writing_expressions_2", "display_name": "Writing expressions with variables 3", "title": "Writing expressions with variables 3", "description": "Practice writing even more complicated expressions involving quantities grouped by parentheses.", "basepoints": 21.0, "slug": "writing_expressions_2", "kind": "Exercise", "name": "writing_expressions_2", "seconds_per_fast_problem": 20.0, "prerequisites": ["creating-expressions-with-parenthesis", "writing_expressions_1"], "exercise_id": "writing_expressions_2"}, "vigenere_cipher_encryption": {"uses_assessment_items": false, "path": "khan/computing/computer-science/cryptography/ciphers/vigenere_cipher_encryption/", "id": "vigenere_cipher_encryption", "display_name": "Vigenere cipher encryption", "title": "Vigenere cipher encryption", "description": "", "basepoints": 10.0, "slug": "vigenere_cipher_encryption", "kind": "Exercise", "name": "vigenere_cipher_encryption", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "vigenere_cipher_encryption"}, "area-of-triangles-2": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/area-of-triangles-2/", "id": "area-of-triangles-2", "display_name": "Area of triangles 2", "title": "Area of triangles 2", "all_assessment_items": ["{\"sha\": \"0e2d39ba7a6aa1517dda10fe0a9ca56b2025056b\", \"live\": true, \"id\": \"x3a064bc1f39c1205\"}", "{\"sha\": \"08f304d4ef368d2cec81b5d811e0b37cc9e85817\", \"live\": true, \"id\": \"xb02941101413fb95\"}", "{\"sha\": \"d9756f0f89bd477df5274ec2bc992fedbdf38085\", \"live\": true, \"id\": \"xf1621db6016e934e\"}", "{\"sha\": \"32994329bfd835ceb43e901232c968afb26ae787\", \"live\": true, \"id\": \"x0bbbf10dc414fd89\"}", "{\"sha\": \"c9efcb23900b02b1f6d1ec01702042891b9f6695\", \"live\": true, \"id\": \"xa5fa561a4fc0204f\"}", "{\"sha\": \"232e3e70c5197679e82592bbbddc0df0019eff8f\", \"live\": true, \"id\": \"x8bfc92bfa317ab3b\"}", "{\"sha\": \"c7de7a20f85cef0213cd2aa9156e5dc6454c65ed\", \"live\": true, \"id\": \"xeaca12de2d23f1ac\"}", "{\"sha\": \"4cdcbac7f5c55973b2ff7f792e938d1e2f34b0c9\", \"live\": true, \"id\": \"xc8068db1a301c279\"}", "{\"sha\": \"5ee465b122bc06ecdf6e989230ebaf75f87e1c0b\", \"live\": true, \"id\": \"x803ed1155b746d3b\"}", "{\"sha\": \"220e4eb6366655b93060de501d03ed24d970d795\", \"live\": true, \"id\": \"x35d2a4283eab04c3\"}", "{\"sha\": \"4588adb66d5b168087532f956b56dd9545e8865c\", \"live\": true, \"id\": \"xae049f335aa2934b\"}", "{\"sha\": \"61f34b8405044a74d4dc13cea5c705bd998fb40b\", \"live\": true, \"id\": \"x10ae6a535164e8ee\"}", "{\"sha\": \"03c0086c20f3edf59bd4b7f6ee8dff9e635a5642\", \"live\": true, \"id\": \"x7720fa616a7c50ad\"}", "{\"sha\": \"ca17e7af59c797a8a125525b6df5799118fda3d0\", \"live\": true, \"id\": \"x599468861ee68b78\"}", "{\"sha\": \"10c480ed8d5b62e5afc1752c6c96a520003200b3\", \"live\": true, \"id\": \"x77adf2fae5d65eb7\"}", "{\"sha\": \"7b18f9ed39e19140af00b5071004323191498231\", \"live\": true, \"id\": \"x98290a8f0805fe87\"}", "{\"sha\": \"d738f8df0d45a79d6f8e055badceac7ae00dd7d6\", \"live\": true, \"id\": \"xdc9172796068c87c\"}", "{\"sha\": \"95bdc6e1f029172a67b63d9eec3c7a7669ff35f9\", \"live\": true, \"id\": \"xa171035eb92f1d61\"}", "{\"sha\": \"d524a845fd33327a249864e74ffee9b3fe4b74ec\", \"live\": true, \"id\": \"xf2f666ecec4b1cac\"}", "{\"sha\": \"f76230bd529d96f91035d3d522dc6578a23170ec\", \"live\": true, \"id\": \"xdf8aca7477e01663\"}"], "description": "", "basepoints": 10.0, "slug": "area-of-triangles-2", "kind": "Exercise", "name": "area-of-triangles-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["area_of_triangles_1", "composing-and-decomposing-shapes"], "exercise_id": "area-of-triangles-2"}, "defining-congruence-through-rigid-transformations": {"uses_assessment_items": true, "path": "khan/math/geometry/congruent-triangles/transformations-congruence/defining-congruence-through-rigid-transformations/", "id": "defining-congruence-through-rigid-transformations", "display_name": "Defining congruence through rigid transformations", "title": "Defining congruence through rigid transformations", "all_assessment_items": ["{\"sha\": \"cbd3933034c26bfdf7a44e22a52ffb21d2026354\", \"live\": true, \"id\": \"x985607033600770b\"}", "{\"sha\": \"f9799a424e80f72db226c11b3d41cf8f3f40524c\", \"live\": true, \"id\": \"x78046e830cfc4144\"}", "{\"sha\": \"0c77a65c0f573837264edc2bbc9203c471d79741\", \"live\": true, \"id\": \"xc105795fdd975638\"}", "{\"sha\": \"0fd3e209aa81e2dbf2bd1a9b64d60a55a0f95ee6\", \"live\": true, \"id\": \"xe6ce78c7d6ce2610\"}", "{\"sha\": \"ee59ba3f0b02088a41ab009b0b2f5be0bc42b509\", \"live\": true, \"id\": \"xa697d4f96816098b\"}", "{\"sha\": \"a5f522731b0c7353c3a82534c86c3f8afdaf77e7\", \"live\": true, \"id\": \"x7469ab3c3d50f20a\"}", "{\"sha\": \"c6e28d7257fe168325bff4024f9b3175eb4c114e\", \"live\": true, \"id\": \"x2be0ba6095c9f52f\"}", "{\"sha\": \"0223e8c89e460f63bf7b1a894beba943939efd8f\", \"live\": true, \"id\": \"x4dd2fabb9409ebc9\"}", "{\"sha\": \"d0fc3b9630d969fd150410116c286ba74011498e\", \"live\": true, \"id\": \"xfb492b7f3ae09eee\"}", "{\"sha\": \"c52ed8ed8d46e7bce8942f17b939dae63e5677f4\", \"live\": true, \"id\": \"xe9a8c25e2a51692d\"}", "{\"sha\": \"4a7541cce1f436d39228220b5a891f9280251b8d\", \"live\": true, \"id\": \"x0ee83895fc7c4085\"}", "{\"sha\": \"8caea4420c91045098c0d2b93e8f215bfdb65a4a\", \"live\": true, \"id\": \"x004c054c8bbcb7af\"}", "{\"sha\": \"8369e20bd24a48b680d92c9192208ea15275ceeb\", \"live\": true, \"id\": \"x1935ef4ac01ac163\"}", "{\"sha\": \"33a3f07ad0fea7540a4f609071fc99e468d524b0\", \"live\": true, \"id\": \"xafcf4a7b0d64c7a6\"}", "{\"sha\": \"94a788f2cbc9c02e5506ef4572f670a25452696e\", \"live\": true, \"id\": \"xcd63655fd377848c\"}", "{\"sha\": \"419bb77d39a0d3f55a90eec0f19a8536ecb32c3e\", \"live\": true, \"id\": \"x5a4b82af736706ff\"}", "{\"sha\": \"2d382cea40d64a4dd4ec297c09c5d00fcf6ac1a6\", \"live\": true, \"id\": \"x474f664aecb19d60\"}", "{\"sha\": \"21f650501fc7c5082be683bf05b2ba8601621ddf\", \"live\": true, \"id\": \"xf21b0f8ecd969c0d\"}", "{\"sha\": \"3a64854c6e2dd6ffce80a2e15e2b81512c960234\", \"live\": true, \"id\": \"xdad1021be6ffb864\"}", "{\"sha\": \"c22b9119ddd86757c8d4b717dc897714fb688bd8\", \"live\": true, \"id\": \"x7f5cd848b38721b5\"}", "{\"sha\": \"bf92624f297ac08a9b92cf16022b99ab0a87e6cb\", \"live\": true, \"id\": \"x9cfa34643d1ffaf1\"}", "{\"sha\": \"62b12c4216a13c89b7267ca9591b9bde602fce97\", \"live\": true, \"id\": \"x7416dad18a204b61\"}", "{\"sha\": \"558bc0a7161a2c9bf9e0df80f32215ba5039c591\", \"live\": true, \"id\": \"xe461e1dc54c9b15e\"}", "{\"sha\": \"95018b16f45b8ef2c82c3697a9b87cf445c5e7ff\", \"live\": true, \"id\": \"x56dfc324d140c3e1\"}", "{\"sha\": \"cf8adf575c1902e3c615343c86de4552bd4aa8f2\", \"live\": true, \"id\": \"x7d43984a84836684\"}", "{\"sha\": \"39149c335bc82d8c99784526838693a625a7d573\", \"live\": true, \"id\": \"x0d5b8bd4435d8355\"}", "{\"sha\": \"1530507d0eff683c94c604379fab5ab7c976e961\", \"live\": true, \"id\": \"x605dc3a063520c20\"}", "{\"sha\": \"a30a4463ab0128d4e91251b1ecdd7596563ce8bc\", \"live\": true, \"id\": \"xeeb053ad1fc96bda\"}", "{\"sha\": \"cdb0a253079198dfadd17c78d0195b999481f262\", \"live\": true, \"id\": \"x179583580b7fcfea\"}", "{\"sha\": \"c4b1901967a9d079b41807dedbe48d008b9133c3\", \"live\": true, \"id\": \"x74636c5ac1e3e4d6\"}"], "description": "", "basepoints": 27.0, "slug": "defining-congruence-through-rigid-transformations", "kind": "Exercise", "name": "defining-congruence-through-rigid-transformations", "seconds_per_fast_problem": 47.0, "prerequisites": ["exploring-rigid-transformations-and-congruence", "defining-reflections", "defining-rotations", "defining-translations"], "exercise_id": "defining-congruence-through-rigid-transformations"}, "transformation-puzzles": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/transformation-puzzles/transformation-puzzles/", "id": "transformation-puzzles", "display_name": "Transformation puzzles 1", "title": "Transformation puzzles 1", "all_assessment_items": ["{\"sha\": \"5eec251c6c9c0387e7db4797503f99f089bac28c\", \"live\": true, \"id\": \"xd4c996bc5dd06a40\"}", "{\"sha\": \"e5feca4f40681f10834ea0d104329349830c6557\", \"live\": true, \"id\": \"x7d8d3066a3729df5\"}", "{\"sha\": \"26195129447127639cc1f802638c246ca501174a\", \"live\": true, \"id\": \"xf92cff4a875a7818\"}", "{\"sha\": \"b917714d781da9b400a10b6bc8b645167fca4e85\", \"live\": true, \"id\": \"x3102dd65c67e3259\"}", "{\"sha\": \"0d5fafc8e07c235fc4c4e8fae3c39e512e1ab68c\", \"live\": true, \"id\": \"x2a20da0f4d23f3b4\"}"], "description": "", "basepoints": 10.0, "slug": "transformation-puzzles", "kind": "Exercise", "name": "transformation-puzzles", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "transformation-puzzles"}, "calculating-the-median-from-data-displays": {"uses_assessment_items": true, "id": "calculating-the-median-from-data-displays", "display_name": "Calculating the median from data displays", "title": "Calculating the median from data displays", "all_assessment_items": ["{\"sha\": \"eaca8a55648416d312e5279abe4f86e05116fdb8\", \"live\": true, \"id\": \"x67963794905b92a8\"}", "{\"sha\": \"1ba87c64bed3bb45015fd7c145a1ea22d3b3a292\", \"live\": true, \"id\": \"x4486a4f229cadf52\"}", "{\"sha\": \"799fe4d952d24b9ceccfce71a5164c57d5cdfbf4\", \"live\": true, \"id\": \"xfbca356d9a53123c\"}", "{\"sha\": \"5d16ee181087698f38eafea1e43b5b874cb40f32\", \"live\": true, \"id\": \"xab92c336986d5f26\"}", "{\"sha\": \"fc1402c00d0bf1d00952e2ffa6a0074045b29b51\", \"live\": true, \"id\": \"x4cd8f052f211e957\"}", "{\"sha\": \"2a03dd2acf18d9cdac8fb66c7b9733a118590f76\", \"live\": true, \"id\": \"xa8aad5a4aed044a8\"}", "{\"sha\": \"c56ed0e8e33b8ac86091367c5c90ba8f3bdfe54b\", \"live\": true, \"id\": \"xf54f36c0111ec5c3\"}", "{\"sha\": \"ae5cf8ccb9c86585cdc920980c6d57f27fafb7f5\", \"live\": true, \"id\": \"x04a4ab96db559c73\"}", "{\"sha\": \"5b4dcfc1be5e19a673b20b8ba4d2519a739ff593\", \"live\": true, \"id\": \"xe858ea390e18e3b8\"}", "{\"sha\": \"39082716c92357fb9164d9672d8e47b9970fc444\", \"live\": true, \"id\": \"x2e97ef57bbd1370f\"}", "{\"sha\": \"372037884ad9d9819fab17d3db1727c22244e300\", \"live\": true, \"id\": \"x57d36479b0b816a9\"}", "{\"sha\": \"7ec2d35593dab8dc46e3271cc79264f4f2282bbf\", \"live\": true, \"id\": \"xc531c6aa3edd3860\"}", "{\"sha\": \"3add2995566f5a6c043e2c23d8496161c6b4ed6c\", \"live\": true, \"id\": \"x5b973ab9f32c63c6\"}", "{\"sha\": \"f543c02433dd2f8c7a90a9a0b7e716cc0ef605c5\", \"live\": true, \"id\": \"xc1566a9e8b507b37\"}", "{\"sha\": \"33bcaf5cae8bb89e1a8ce680d7bdf9ee9cac481a\", \"live\": true, \"id\": \"x8bf546e594c31941\"}", "{\"sha\": \"f4d8d068b0b1947f74b7de85209a5fa1897fa335\", \"live\": true, \"id\": \"x1a1cddcc657a9191\"}", "{\"sha\": \"75e7a7b80cf3ce1149043a6fc54717573ecef10a\", \"live\": true, \"id\": \"x1d63d1c33c907e80\"}", "{\"sha\": \"d20e0f1a995cf1e32f690b1b9d1e0c74901198e3\", \"live\": true, \"id\": \"xaa68e900b678ff10\"}", "{\"sha\": \"471fa24ca933fd3946a5dd9c140b070ab1941696\", \"live\": true, \"id\": \"x1ba0c7c2400989ff\"}", "{\"sha\": \"8476da7371fc1fd569c4f38d04537551a4da5621\", \"live\": true, \"id\": \"x2ee471f75881792f\"}", "{\"sha\": \"9dbcc6c305a5846de61fddef59dea30abb587af7\", \"live\": true, \"id\": \"xae42210241aff996\"}", "{\"sha\": \"b6bf80b03490cd1bd29652554b5c10a5987dea55\", \"live\": true, \"id\": \"x6f53e2f05379c61b\"}", "{\"sha\": \"bddc0128e2d69294514905db776978e877fcca69\", \"live\": true, \"id\": \"x21c7a2205f1d6aca\"}", "{\"sha\": \"1c07d3a7c369ad35142af1174142a57f02847a35\", \"live\": true, \"id\": \"x62ccbdfadf8603ed\"}", "{\"sha\": \"066f27fc75ac8d8a7e6c6d59f3b922acad039917\", \"live\": true, \"id\": \"x776c0974d6265475\"}", "{\"sha\": \"c496ce923267e5e7cd8df505bec103633770172f\", \"live\": true, \"id\": \"x5ceac1adc2e9865c\"}", "{\"sha\": \"c31b930574f7e5b21119cc83f1a2f5a38306e777\", \"live\": true, \"id\": \"x3e10cd3c800d42c0\"}", "{\"sha\": \"bf24103e67d23f96cd6469b93816d728c61fec5c\", \"live\": true, \"id\": \"x6d1504a9bfc19ff8\"}", "{\"sha\": \"3911ffc5385f738bde50d1ba16b4dbb23c514520\", \"live\": true, \"id\": \"xb504cad914d6225a\"}", "{\"sha\": \"87ac4ac4a15cb977f1079e67d7333be5d60c1684\", \"live\": true, \"id\": \"x87bedd3469c7a628\"}", "{\"sha\": \"ed01a578db190926e5c3907869af24faa35d2b5a\", \"live\": true, \"id\": \"xac19df9d7d898258\"}", "{\"sha\": \"6c79d9f6a160e5ffca8d3e0324b762b8edabc98a\", \"live\": true, \"id\": \"xd8f0660cdc5c9812\"}", "{\"sha\": \"b8d9f3ac581cb726122ed450f5e27e79900b3fa3\", \"live\": true, \"id\": \"x4ba68c744fcfb672\"}", "{\"sha\": \"20498ed3866cc1a260f6f61c2959f3f46ed187b7\", \"live\": true, \"id\": \"xac467924cf357943\"}", "{\"sha\": \"43a2311d508ab7f8f264ac97330d395964e9416d\", \"live\": true, \"id\": \"xaf3097fb1e188185\"}", "{\"sha\": \"adb0cfd6a1d0fd9438801e3b26aeae4c2bd8e5fb\", \"live\": true, \"id\": \"x9fdfe5ee48376c1b\"}", "{\"sha\": \"7d5e5b3e589ede49043f90973488ed12d7276cae\", \"live\": true, \"id\": \"x16960176aaf050c3\"}", "{\"sha\": \"86fe0f27aa28217ea9d8175d56a3ae4dbc80e4ec\", \"live\": true, \"id\": \"x6b75e14e9230b26a\"}", "{\"sha\": \"ccb407d7ffb89be1cd7718d1810619ebf23aa75a\", \"live\": true, \"id\": \"x212e375df33c7c74\"}", "{\"sha\": \"7d07a390bcb89a6f5b030588fe9cf32c9d9e740c\", \"live\": true, \"id\": \"x0933ae6bbab4b015\"}", "{\"sha\": \"f783ef57637f8b8ccc2a60ecdd02774a109ea04a\", \"live\": true, \"id\": \"xa55c54dbc04c06f2\"}", "{\"sha\": \"0bfff4ee892bbd241cb4eb700c754fa76e731a08\", \"live\": true, \"id\": \"x1ec2d1097d96fb70\"}"], "description": "Practice computing the median of data sets presented in a variety of formats, such as frequency tables and dot plots.", "basepoints": 10.0, "path": "calculating-the-median-from-data-displays/", "slug": "calculating-the-median-from-data-displays", "kind": "Exercise", "name": "calculating-the-median-from-data-displays", "seconds_per_fast_problem": 4.0, "prerequisites": ["reading-histograms", "calculating-the-median", "analyzing-with-dot-plots", ""], "exercise_id": "calculating-the-median-from-data-displays"}, "palazzo-rucellai-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/palazzo-rucellai-quiz/", "id": "palazzo-rucellai-quiz", "display_name": "Alberti, Palazzo Rucellai (quiz)", "title": "Alberti, Palazzo Rucellai (quiz)", "all_assessment_items": ["{\"sha\": \"3de64f3a9b34e4dc921c1badebf812f15170847b\", \"live\": true, \"id\": \"xba864851e510c7e9\"}", "{\"sha\": \"b9b98594cf20cd390260d4735263b42efbf8d6df\", \"live\": true, \"id\": \"xb3902cea4c9bea28\"}", "{\"sha\": \"653704f90888b12ec8cb8c1c7bceaa73f1b012b5\", \"live\": true, \"id\": \"x984202874697315f\"}", "{\"sha\": \"3271b881f5e6dab2bda2b7d0b6cacb77d1437361\", \"live\": true, \"id\": \"x68ff3a9a774a7a33\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "palazzo-rucellai-quiz", "kind": "Exercise", "name": "palazzo-rucellai-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "palazzo-rucellai-quiz"}, "put-together": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-basics/cc-early-math-together-apart/put-together/", "id": "put-together", "display_name": "Put together", "title": "Put together", "all_assessment_items": ["{\"sha\": \"69fc7accf5269b5748431f8d6761f671ebb459ff\", \"live\": true, \"id\": \"x18d87bed31e97136\"}", "{\"sha\": \"a3b282482061117859d93881e3f7d84bd513fa8c\", \"live\": true, \"id\": \"x679e36fec0fcf35f\"}", "{\"sha\": \"8aa43279adbc5917b5074c5988a23f04795fc279\", \"live\": true, \"id\": \"xe569f15a42f30f7e\"}", "{\"sha\": \"120cfc0b9733073f4cb44f237415ded0aceabb75\", \"live\": true, \"id\": \"x95d129ee911aac5b\"}", "{\"sha\": \"b7deb0f642daed158875ebef6a83bbb8f8413092\", \"live\": true, \"id\": \"x4eda512d73023dad\"}", "{\"sha\": \"e06f96f298699008a356bac21294f88c7727b521\", \"live\": true, \"id\": \"xb384cce10b60a5f7\"}", "{\"sha\": \"5a647fc4064d38e4ecf53d7510d38b09cbbe23ec\", \"live\": true, \"id\": \"x0d043552eeda0058\"}", "{\"sha\": \"d03fa3252b65ac4dd5f3e4a247e77590f226fb60\", \"live\": true, \"id\": \"x81a185db1a3f7dbf\"}", "{\"sha\": \"947fa71b01d37f779627d16b442d8f45fe43f0d4\", \"live\": true, \"id\": \"x6a13ba0faccacc2d\"}", "{\"sha\": \"d1cc5586a869b4d5f2e440b3346d71180f4f2251\", \"live\": true, \"id\": \"x01e23817800c9d67\"}", "{\"sha\": \"b3de7977ffb5e2d49b9131c779afd8cc6399c26e\", \"live\": true, \"id\": \"xa40ef61fdbc36799\"}", "{\"sha\": \"b562d05ed401d27b99299a27d8b780537d7b94c3\", \"live\": true, \"id\": \"x9b63495516dc99c5\"}", "{\"sha\": \"321cf38b0d0e1af7c0adbd6607df45c2539dc7dc\", \"live\": true, \"id\": \"xcf57e66d7415addc\"}", "{\"sha\": \"18180fe37980f5ab7bba814e431f9e80ee612447\", \"live\": true, \"id\": \"x3da223cc6a8d72fb\"}", "{\"sha\": \"748e904efee983146bbed38e8e102436c88c2474\", \"live\": true, \"id\": \"x0f31cbeeb8ec5ec4\"}", "{\"sha\": \"08500658842f4e3410a7d4346e269e97f70df279\", \"live\": true, \"id\": \"x60cb9a8213d90595\"}", "{\"sha\": \"6e0efd2ed2e94c09f4bf0d393da4d67af000e58b\", \"live\": true, \"id\": \"x5907e1b6fbe08f98\"}", "{\"sha\": \"862cb803475bd22889008d3bfcdf63501985a971\", \"live\": true, \"id\": \"xb802324ac7d50fd4\"}", "{\"sha\": \"7c155aff6641104ed5eea16235dce34cd282735f\", \"live\": true, \"id\": \"x186885335f97c359\"}", "{\"sha\": \"74cf63882a5c71525a10739edbecaf83a7ab4baf\", \"live\": true, \"id\": \"x165116954f950c47\"}"], "description": "Practice adding by \"putting together\" (with numbers less than 10).", "basepoints": 10.0, "slug": "put-together", "kind": "Exercise", "name": "put-together", "seconds_per_fast_problem": 4.0, "prerequisites": ["how-many-objects-1"], "exercise_id": "put-together"}, "properties-of-integrals": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/properties-definite-integral/properties-of-integrals/", "id": "properties-of-integrals", "display_name": "Properties of integrals", "title": "Properties of integrals", "all_assessment_items": ["{\"sha\": \"6bafc937b42cb3b7ff89d6a0657853cf5f7e57f4\", \"live\": true, \"id\": \"x0fdec7c03da08ab5\"}", "{\"sha\": \"9bc6b5b7129c98315fbdf45bd67c5102289eed1b\", \"live\": true, \"id\": \"xdb5f1d34cf153366\"}", "{\"sha\": \"406cef192ac441d697bc1398ccff553fa513c336\", \"live\": true, \"id\": \"xc8bc8490fadaa6e8\"}", "{\"sha\": \"779aaa930a87ca92c725b92f79eb71f2e95c1d4d\", \"live\": true, \"id\": \"x7b385265be7efc03\"}", "{\"sha\": \"3146df2305eb3593b91a671f8e8aa2b433d653b6\", \"live\": true, \"id\": \"x5efc168a75d9f9fe\"}", "{\"sha\": \"083e3e737a0cb0a7cf59f538dd07c94374fa5b90\", \"live\": true, \"id\": \"x7db7d9ad09c8f174\"}", "{\"sha\": \"3fcc51db32443cf015516c407c4c0d1a8178f4e8\", \"live\": true, \"id\": \"x6f46571a2a2dfc17\"}", "{\"sha\": \"19f3ffa9d6f0612abe513aedc24434ba877c5bfd\", \"live\": true, \"id\": \"x072c3e94f01019fd\"}", "{\"sha\": \"08a3b570a5bfa7f70550cc78f443935cfa59a949\", \"live\": true, \"id\": \"x585a286eb15dada4\"}", "{\"sha\": \"a720b5437d6307fdb2097310e95a4b4c3d87b4a2\", \"live\": true, \"id\": \"x3bf9ef1da64754cb\"}", "{\"sha\": \"b31493ca386a208f9316f912363f903f0f2bd3f2\", \"live\": true, \"id\": \"x17420b39d3cfd134\"}", "{\"sha\": \"dcb385c6428384416bc257f04c3f34e4d1207e08\", \"live\": true, \"id\": \"x3c55a449c895d47b\"}", "{\"sha\": \"3fb5aae10686bb04305b1f9fe2a75065f7d84b5a\", \"live\": true, \"id\": \"x7f0d9fbf8e684083\"}", "{\"sha\": \"785353ac4dcdb861244549088dbb2a98d450ccab\", \"live\": true, \"id\": \"x767d25a766eb0846\"}", "{\"sha\": \"139d9b2c43da4a17b3321637c07a32939e01480a\", \"live\": true, \"id\": \"xee95af586ebcb6b7\"}", "{\"sha\": \"893d7984eff9d1c92040c3e3cc9a29e36317e08d\", \"live\": true, \"id\": \"xd2cb063c29eb9900\"}", "{\"sha\": \"8d6094f03cc27f4c333e06e0880ecdabd7d58f30\", \"live\": true, \"id\": \"x0d87c6543e31168c\"}", "{\"sha\": \"76f749ba19664756607c48dd2a60f3d0c797151d\", \"live\": true, \"id\": \"x9ad485d838587de9\"}", "{\"sha\": \"b2f8fcda97e096e33b8bf9475cb2855197e94051\", \"live\": true, \"id\": \"xc871674c4fdbcaf1\"}", "{\"sha\": \"7e50941ddfc87e3cb2cc0a9b9bfe95180522bf5f\", \"live\": true, \"id\": \"x28fe9ebad3dbab94\"}", "{\"sha\": \"5509c0fde02e5c30f223fb40b36868731368aa64\", \"live\": true, \"id\": \"x78e53c5ed3838c2e\"}", "{\"sha\": \"93d0171ef376d813ba89c9da2243b08a75a71e47\", \"live\": true, \"id\": \"x604ee103514c6ce4\"}", "{\"sha\": \"ecb364d8cb16ed571b50d83ab282d8a8e5729228\", \"live\": true, \"id\": \"xbfc4ca6fae8920ba\"}", "{\"sha\": \"e16fd9a677f6c1ecf417a8831823a073da88d213\", \"live\": true, \"id\": \"xa09f599fbef7c35a\"}", "{\"sha\": \"04605c9cab58b3258568f022c60878c27e6a8bc4\", \"live\": true, \"id\": \"x790bee9870f5c80f\"}", "{\"sha\": \"e7c0cfce77d51b8c06876c8cff6f32dfb15385ad\", \"live\": true, \"id\": \"x246166cf487631e0\"}", "{\"sha\": \"b8d34390dbeb877c0638dd19a9d6ed26633d4093\", \"live\": true, \"id\": \"xb21cde43ca043a4b\"}", "{\"sha\": \"7a4c670135b41d269bd3dd950006dec2ea39a882\", \"live\": true, \"id\": \"x48b73d11d939ef21\"}", "{\"sha\": \"ac8fd03c88ca2dddf7fd5ecf3186558c64446e47\", \"live\": true, \"id\": \"x3387bb159e389d17\"}", "{\"sha\": \"b80b4e129bf309d86b44e902b4bf7295846b4739\", \"live\": true, \"id\": \"x31a407289b2fe899\"}"], "description": "", "basepoints": 10.0, "slug": "properties-of-integrals", "kind": "Exercise", "name": "properties-of-integrals", "seconds_per_fast_problem": 4.0, "prerequisites": ["the-definite-integral-as-the-limit-of-a-riemann-sum"], "exercise_id": "properties-of-integrals"}, "quiz-evolution-and-human-health": {"uses_assessment_items": true, "id": "quiz-evolution-and-human-health", "display_name": "Quiz: Evolution and human health", "title": "Quiz: Evolution and human health", "all_assessment_items": ["{\"sha\": \"cd044cb21450ed829d8e38afaa72fd252033aebb\", \"live\": true, \"id\": \"x91e052b199d7387f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"35223cdeee37273662e9366c7fe9da9ae14e174d\", \"live\": true, \"id\": \"xf340578592584292\", \"perseus_api_major_version\": 3}", "{\"sha\": \"60da86967dfa058b03c674eea7148ac00c6b1cca\", \"live\": true, \"id\": \"x7c3da8f6c49c310f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e0a5120e004f945a67647e1d877d4c19d8df1f8a\", \"live\": true, \"id\": \"x687262a2d8f075fa\", \"perseus_api_major_version\": 3}", "{\"sha\": \"3af0bb2c18649638da28447decdf9b000bf94f6e\", \"live\": true, \"id\": \"xae8b575db42c347d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"587e1c089e2e0551746f30ad6344b6e0887bb335\", \"live\": true, \"id\": \"xba974ef686116fa6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"a49109cf0cc1013bfa5fe1ce9f01f8a6bba2d50e\", \"live\": true, \"id\": \"x4766a14286f29613\", \"perseus_api_major_version\": 0}", "{\"sha\": \"54bc08182e00b2e563a7484096849b8334574d68\", \"live\": true, \"id\": \"x8f2b148647739af7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5bd0e0ac5c3e663b80603fc31b6152917e70d2ff\", \"live\": true, \"id\": \"xb5aaeb8dfab99d30\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 10.0, "path": "quiz-evolution-and-human-health/", "slug": "quiz-evolution-and-human-health", "kind": "Exercise", "name": "quiz-evolution-and-human-health", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-evolution-and-human-health"}, "combining-like-terms-0.5": {"uses_assessment_items": true, "id": "combining-like-terms-0.5", "display_name": "Combining like terms", "title": "Combining like terms", "all_assessment_items": ["{\"sha\": \"7943587955e27e12010a47a4c72e0e3fbcd48cce\", \"live\": true, \"id\": \"x47609ecac14ce5b9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e5a667ad67a2a9b18072c78bb8a715527d7b4b4\", \"live\": true, \"id\": \"xf81f903c60f6da6a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bea178c56c6bb9e90563d2ae452f8c41d34bfa8c\", \"live\": true, \"id\": \"x7ea9816f053f7367\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5d59ab129cd896922a517eb8cfe28d8ecbbc4ebf\", \"live\": true, \"id\": \"x26fd8df0b3ee6c3b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a579ddc6734732c825b560432a57713dc7dd8f6b\", \"live\": true, \"id\": \"xd8b4c2918321bf2a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e45ca27e0d1c497d0f43e8e9a9253b7b06271900\", \"live\": true, \"id\": \"xba6ef7f75202d35a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41923ec4ddcff18ef54aef75a2072e6a72315a2a\", \"live\": true, \"id\": \"x233df485ca2e6525\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c09a78bd1c2011d77cea219562170bb4c2a3c654\", \"live\": true, \"id\": \"x361aa5b046f54ce4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0debc4d10ab240262e2318eff10a4be2a1ecd7af\", \"live\": true, \"id\": \"xbbe1a9d56a61c22e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cc570ca83eaf09aa4e5002e56ca9f102a4011736\", \"live\": true, \"id\": \"xa23a0a5aa108e1d3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1def7ded2c7f84e6643965cf54bc5a9ee8125c2b\", \"live\": true, \"id\": \"xa39d0c9f9cb87b81\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6736ce78c5333db60d83bff41d6f5e32a6ae0196\", \"live\": true, \"id\": \"xdcd0502893d399b7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9415c31d9a382c013389aa5a880b6e371c4d020\", \"live\": true, \"id\": \"x8241775518480867\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cde9906517a872073f6afa3c02521d9fac14032d\", \"live\": true, \"id\": \"x4bcb2775ee9f46e5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"599604e9a7ee15f4a8adea5d30d0641cd864c84e\", \"live\": true, \"id\": \"x5994365b26ff3a19\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"288e9815878ae06652395747c40d410039808299\", \"live\": true, \"id\": \"x2a3c87803dbb79e8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bb1cff4d1bcf84a7d4e1b5009a024e30c5f3a737\", \"live\": true, \"id\": \"xc4a6249919678704\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b5d2f05600a380ce0ea5dc3ac35d81c07c69b45f\", \"live\": true, \"id\": \"xc989a32936c5f7e6\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"de5c77c4ca00d2aeae006aaaef5097ea0200788a\", \"live\": true, \"id\": \"xb0a2e0e67630240d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71b14fb0845cf095e4940b0e28284c6c898bff11\", \"live\": true, \"id\": \"xd2d2937b98b929cd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7095b3c62d0a9f37bbf5771a115631110f2cf9a9\", \"live\": true, \"id\": \"x02bd4d3588410c25\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5659542e50742362ad35407960dcbff579dd1c06\", \"live\": true, \"id\": \"xc101afc12fdbb9a7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9db472be453570d6bbaaa39ba44776c9d8731d6c\", \"live\": true, \"id\": \"x4d241414fdf1a5d1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e37adc7966a962c4721aba8bb921244dd8a24ee\", \"live\": true, \"id\": \"x930621a90cfbd21e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bbf9cdb3eab39c56bbdb5f6d983a6528b5e6438f\", \"live\": true, \"id\": \"x9ba1ab3ffdfdcaef\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2537040a5c4229c66c9144012e4454ee3666d8a7\", \"live\": true, \"id\": \"x9868d0c3d00ff9fa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d2a39350356599d7563081f296444124f21f09f\", \"live\": true, \"id\": \"x23148d761f59a9da\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4058cb74ae81172a83df34ece47afd5f2b051b7c\", \"live\": true, \"id\": \"xb98ecbaafca5f807\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6daf7e67a37392dbc6f6d4612d1bc26037061004\", \"live\": true, \"id\": \"xe2980b1be5c58c80\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b3b4624030365b13347873eacd852a397a9408a\", \"live\": true, \"id\": \"x50e1511312b81497\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c678d9e72b62959e685e0f7c90fa48618dc44cb\", \"live\": true, \"id\": \"xff8117a98a8edc4d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6edb61e537eea681e7269932d432dd19872b55cd\", \"live\": true, \"id\": \"x6bbd9996dd467c0c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Simplify algebraic expressions by combining like terms.", "basepoints": 10.0, "path": "combining-like-terms-05/", "slug": "combining-like-terms-05", "kind": "Exercise", "name": "combining-like-terms-0.5", "seconds_per_fast_problem": 4.0, "prerequisites": ["identifying-parts-of-expressions"], "exercise_id": "combining-like-terms-0.5"}, "translations": {"uses_assessment_items": true, "path": "khan/math/geometry/transformations/hs-geo-translations/translations/", "id": "translations", "display_name": "Translations", "title": "Translations", "all_assessment_items": ["{\"sha\": \"bf9c82ca5209c2960667500e95a0dffe74ef8fc2\", \"live\": true, \"id\": \"x57134a323120d92f\"}", "{\"sha\": \"6dd2d0911c8e5bd4a1b78c6e104f61bfcce08580\", \"live\": true, \"id\": \"x3df0b27a8ad700a4\"}", "{\"sha\": \"c95f482046127c1e17cbbf0f1e6a02c4b3796450\", \"live\": true, \"id\": \"xa121beaf8249bf6d\"}", "{\"sha\": \"9f2800a32e88a3f67963be7234bedf3ce643a8a1\", \"live\": true, \"id\": \"x37a07ab2e9efa84f\"}", "{\"sha\": \"3d374c6c6b2cf355b367c057e36b892ddbf5873e\", \"live\": true, \"id\": \"x418bbc777db4ce11\"}", "{\"sha\": \"e15316033843bab7d4c191a0270add18e72a0994\", \"live\": true, \"id\": \"xfa4fb3c6bbe5bff1\"}", "{\"sha\": \"b36c4deb3e734baffd52ead56c39232b3fafea1a\", \"live\": true, \"id\": \"x14ec786165b1f0da\"}", "{\"sha\": \"45cc95d83ed846968c682794ddd125a4a38ef15d\", \"live\": true, \"id\": \"xe5349a9d7ff0ea36\"}", "{\"sha\": \"aac541852aa74132c178953e9971fd02d27bb3e0\", \"live\": true, \"id\": \"x7dbc5adcd299c85f\"}", "{\"sha\": \"777b8b4aea0b4c59b59bed4c30ed2b6170ec2dbd\", \"live\": true, \"id\": \"xc7a03989dff08956\"}", "{\"sha\": \"4696471bff147fb82253dd602e8f58f53dad9972\", \"live\": true, \"id\": \"xbe7ce6324bb845cb\"}", "{\"sha\": \"0d5b02d26ddecad2b1e8f3cc00b5bba134b789a9\", \"live\": true, \"id\": \"x59a72b3262330f44\"}", "{\"sha\": \"bf914644598981d6bbd9dc0e33d1e00d7bb85e41\", \"live\": true, \"id\": \"x508e2d2532825478\"}", "{\"sha\": \"f5bddfe6441cc6e9593d1c182fbb1e84c37b1d85\", \"live\": true, \"id\": \"x460ffca74f2a96c7\"}", "{\"sha\": \"dbcccacff300bd28588cf17378ed8914e4e672a0\", \"live\": true, \"id\": \"x0b763ae5b0c25eff\"}", "{\"sha\": \"169284934b4fa1a2a4fe3f68c3c45f086b463c38\", \"live\": true, \"id\": \"xe943b76acf1bec73\"}", "{\"sha\": \"4bd48dff61ebbb90a874146a66b01371e906c123\", \"live\": true, \"id\": \"x41db3c920e7faab6\"}", "{\"sha\": \"221b3bd8ca7feaa3a04094767fbc91ff0d6f5eb6\", \"live\": true, \"id\": \"x65b82ce5e91e8d52\"}", "{\"sha\": \"a90be4d429e7a9f37c4c11817232f14fd6febeba\", \"live\": true, \"id\": \"x353c140e0eee1314\"}", "{\"sha\": \"4edbeda8fdc7ffd3eca46e59f80d43d7f8bcf7f8\", \"live\": true, \"id\": \"xa755f68c9454fbb8\"}"], "description": "Perform and find translations without the help of an interactive tool", "basepoints": 10.0, "slug": "translations", "kind": "Exercise", "name": "translations", "seconds_per_fast_problem": 4.0, "prerequisites": ["defining-translations"], "exercise_id": "translations"}, "world-war-I-causes": {"uses_assessment_items": true, "path": "khan/humanities/history/euro-hist/world-war-i-tutorial/world-war-i-causes/", "id": "world-war-I-causes", "display_name": "Causes of World War I", "title": "Causes of World War I", "all_assessment_items": ["{\"sha\": \"8f1423a208dd2ad2437fb5aaad4e351d6fa0bd4f\", \"live\": true, \"id\": \"xa177eba5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88489d1c0761ccad1bffcdce591f1473ebf79512\", \"live\": true, \"id\": \"x228a2209\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"143620a4142ee74f031ab3030c68b4ff0a251bb9\", \"live\": true, \"id\": \"x33bb9d5f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"63c64a8e0bf986926789af88c439c09d90ed0bb2\", \"live\": true, \"id\": \"x3655e2fe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f100a591c5a6abf68a254d9e9c230fe528dafbc7\", \"live\": true, \"id\": \"x55902ded\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"265ca5e16a144f6df5d6886da28ce0a0014d46a9\", \"live\": true, \"id\": \"x80192e9b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"43b821fc3634c51f4a555ca88d8364357573fca2\", \"live\": true, \"id\": \"x9877e517\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cc67031688f7a827e845b55e76491f5b6ac08b0f\", \"live\": true, \"id\": \"xb9e2ec5e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db5d08b454028533bcb9f68117b6ba1c3bde230d\", \"live\": true, \"id\": \"xe1d23308\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "world-war-i-causes", "kind": "Exercise", "name": "world-war-I-causes", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "world-war-I-causes"}, "evaluating-expressions-in-two-variables-2": {"uses_assessment_items": true, "id": "evaluating-expressions-in-two-variables-2", "display_name": "Evaluating expressions in two variables 2", "title": "Evaluating expressions in two variables 2", "all_assessment_items": ["{\"sha\": \"c8c39d85919047189dfd05fdc5b72487ee24ab08\", \"live\": true, \"id\": \"x1f76c6461fdc130b\"}", "{\"sha\": \"1212d28aa0691ad6b336fe57a9c54591cbb3c498\", \"live\": true, \"id\": \"x1ed9c0df2bc207d6\"}", "{\"sha\": \"30bdbdda059c000595de237ab38b2e545305a791\", \"live\": true, \"id\": \"xf44210688bdcd39a\"}", "{\"sha\": \"6c7d7b869d18f6c85ca43902a6eaa6643123aa76\", \"live\": true, \"id\": \"x978a4cdfbd8e64cb\"}", "{\"sha\": \"e4fd45947f7c82b9a1459689f8409096bb5aa16d\", \"live\": true, \"id\": \"x143eda26e0995935\"}", "{\"sha\": \"8271de7191ac4410392e2e84d6545de160b0656d\", \"live\": true, \"id\": \"xe155c5a10ce89834\"}", "{\"sha\": \"c08d44e106ade7eaba1789cde537eab9df25b821\", \"live\": true, \"id\": \"x69df6c5f331e54ba\"}", "{\"sha\": \"bcff17cf3ff1bc1280c8b2915229bd1efcd3c990\", \"live\": true, \"id\": \"x7a688772c6c57d88\"}", "{\"sha\": \"d560749d0a1f4510d04e321183dcb8596bfbed4c\", \"live\": true, \"id\": \"x89e87d72de97e1ce\"}", "{\"sha\": \"f6a9f9779f1f7db7d0a9fb5428ba90ba00aa8c96\", \"live\": true, \"id\": \"x42611f5888afa626\"}", "{\"sha\": \"b4282f608d8f18772afc6e136f1d2cb944d4e608\", \"live\": true, \"id\": \"x735db29a0c8e1f64\"}", "{\"sha\": \"7cdca5cb125df826d6259101b4a0ec7946715394\", \"live\": true, \"id\": \"x7cd96fe4f7e6950a\"}", "{\"sha\": \"8c88139e9ad9c47c23314c5461f05612339b209a\", \"live\": true, \"id\": \"x7795510bd3b25810\"}", "{\"sha\": \"d89ac728df883649396dc7b57cdc21f33a05974b\", \"live\": true, \"id\": \"x4a35634166fed645\"}", "{\"sha\": \"1b8c173b57cedd7646068995ce83892953318ce9\", \"live\": true, \"id\": \"x2d87f2570d7da401\"}", "{\"sha\": \"faf974ebddf0caf294fadc65a42be350ad303df7\", \"live\": true, \"id\": \"xd4dfc13ba7bff602\"}", "{\"sha\": \"b88cadf3f582bcc0fe0d1e57d28d47d218c44bb5\", \"live\": true, \"id\": \"x11a9194668e154a5\"}", "{\"sha\": \"7bd005483bda2993a1919871b063d5cea2eabb29\", \"live\": true, \"id\": \"xc89519a6c959135c\"}", "{\"sha\": \"ad438fe467d343e95961240b5b8d51c852a920d2\", \"live\": true, \"id\": \"x8c5d8e63ff5124ba\"}", "{\"sha\": \"56507a8d0d9ed17e1ad553117751644122ed77ca\", \"live\": true, \"id\": \"xe5ffa1bb13dcbf59\"}"], "description": "Practice evaluating expressions in two variables by plugging in values for the variables. These problems include some fractions and decimals.", "basepoints": 10.0, "path": "evaluating-expressions-in-two-variables-2/", "slug": "evaluating-expressions-in-two-variables-2", "kind": "Exercise", "name": "evaluating-expressions-in-two-variables-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["evaluating_expressions_2"], "exercise_id": "evaluating-expressions-in-two-variables-2"}, "understanding-angle-addition-formulas": {"uses_assessment_items": true, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formula-proofs/understanding-angle-addition-formulas/", "id": "understanding-angle-addition-formulas", "display_name": "Understanding angle addition formulas", "title": "Understanding angle addition formulas", "all_assessment_items": ["{\"sha\": \"84ace9ec9c205ab5107fea507f7bf2de58722d61\", \"live\": true, \"id\": \"xe06fada6e8728f6b\"}", "{\"sha\": \"69d019d56b7d3b970e46c30a076fa778d4659258\", \"live\": true, \"id\": \"xc647175f5b7ea9ff\"}", "{\"sha\": \"36e7223d5be2d3b065f38299a2d85b5a48a1a9f6\", \"live\": true, \"id\": \"x679fa03c095965f3\"}", "{\"sha\": \"469213629101201ba0db023663ee1d76d2029cb3\", \"live\": true, \"id\": \"x93681cb14c460072\"}", "{\"sha\": \"58d5fc5e8c80bf5dda5ee1b77fc7f433f55e1322\", \"live\": true, \"id\": \"xd2b45088dc1eb533\"}", "{\"sha\": \"ab462bdbd68a5d97c6cee31e81823507fde5caca\", \"live\": true, \"id\": \"x50c83366d3bfeedd\"}", "{\"sha\": \"76a032379a4f586d42c0c32bd8a153512d4f22e2\", \"live\": true, \"id\": \"x14af21d8a61d8b1d\"}", "{\"sha\": \"3517652289d5b56b26cc235d4a0b6ac7936355bc\", \"live\": true, \"id\": \"xade1d3fca27aa4ab\"}", "{\"sha\": \"fbac2cfccc272361c6716885b99f573f38bf5e1c\", \"live\": true, \"id\": \"x70aea4d2ecdeb596\"}", "{\"sha\": \"59a074e6d765384e825e3550185a1a2bb17b3021\", \"live\": true, \"id\": \"xb950d86b24851684\"}", "{\"sha\": \"c60f148bec257bc514dc997535e59340d249fa33\", \"live\": true, \"id\": \"xeeec729eeb5731db\"}", "{\"sha\": \"d20b408d69de5bbe6ebccfaed644c782c8bd627b\", \"live\": true, \"id\": \"xa7a7445e1defa79f\"}"], "description": "", "basepoints": 10.0, "slug": "understanding-angle-addition-formulas", "kind": "Exercise", "name": "understanding-angle-addition-formulas", "seconds_per_fast_problem": 4.0, "prerequisites": ["trigonometric-functions-and-side-ratios-in-right-triangles"], "exercise_id": "understanding-angle-addition-formulas"}, "avg-rate-of-change": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/average_rate_of_change/avg-rate-of-change/", "id": "avg-rate-of-change", "display_name": "Finding average rate of change", "title": "Finding average rate of change", "all_assessment_items": ["{\"sha\": \"9346282d713bee0b67ff440931cb0a5db50f59b4\", \"live\": true, \"id\": \"x83640856ad05daf8\", \"perseus_api_major_version\": null}", "{\"sha\": \"fdf3bc78285eaab211e6112ae63928f94cd52fda\", \"live\": true, \"id\": \"xe944a7a4abd97909\", \"perseus_api_major_version\": null}", "{\"sha\": \"4a8332720f6cb11d8ae089673cba6475c978c320\", \"live\": true, \"id\": \"xcc7c0786747ffa15\", \"perseus_api_major_version\": null}", "{\"sha\": \"a0e8951541c5a705b5dd59de31826896548cd24c\", \"live\": true, \"id\": \"x9d02f46355f9eeec\", \"perseus_api_major_version\": null}", "{\"sha\": \"7000b3ddc412c1cb2aedbc454a3a23272e0a880d\", \"live\": true, \"id\": \"xd68a7c22947a5277\", \"perseus_api_major_version\": null}", "{\"sha\": \"2861ae3843af4ebdcc14517053a415b47c65a3b4\", \"live\": true, \"id\": \"xd34937ea6f47b7f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"6ef13e8bd87df6bee5e31666eae2f6448d799319\", \"live\": true, \"id\": \"xf0ac2cce0eddc591\", \"perseus_api_major_version\": null}", "{\"sha\": \"27c2d65fe2392586a9984b0cbf95bae7a52952cf\", \"live\": true, \"id\": \"x61f38fa1247b36d7\", \"perseus_api_major_version\": null}", "{\"sha\": \"0455aa0bd9cb6a26f474a426e0da4ac0d8bd5b63\", \"live\": true, \"id\": \"xaa0434bc0848e170\", \"perseus_api_major_version\": null}", "{\"sha\": \"19f890c563199b99ccc4798b484f020bbdea16c6\", \"live\": true, \"id\": \"xd96d1e35b6787a39\", \"perseus_api_major_version\": null}", "{\"sha\": \"ba469aec81ca19a6576e4d6c6e7102c597af61ea\", \"live\": true, \"id\": \"x920a0259\", \"perseus_api_major_version\": null}", "{\"sha\": \"b6abc8e808582a93788fff213bf7af9e31c9c552\", \"live\": true, \"id\": \"x8d1bf599f6d894ca\", \"perseus_api_major_version\": null}", "{\"sha\": \"25eefed43bed299eb339b402c77e9a684e251d96\", \"live\": true, \"id\": \"x0f31ee5d57c975f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"d77fe3fa4f153fe93d6f53ad4b969d791a8a2729\", \"live\": true, \"id\": \"xc9255e783931a77d\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b07e6d3003bd86447488044401603edb779519b\", \"live\": true, \"id\": \"x92f26d8b7c6e1b89\", \"perseus_api_major_version\": null}", "{\"sha\": \"3be66c7ea98f3a269e5561e0369292ef2c50af1d\", \"live\": true, \"id\": \"x59fe3ac94af7913f\", \"perseus_api_major_version\": null}", "{\"sha\": \"7b9dab978fa9f692c0f12855af59db9391469f56\", \"live\": true, \"id\": \"xab7127a5307e2cc0\", \"perseus_api_major_version\": null}", "{\"sha\": \"6150e06e54a8abc9a3e19f4203a4d1e28c5b8c2a\", \"live\": true, \"id\": \"x29eacf085a5d6bcf\", \"perseus_api_major_version\": null}", "{\"sha\": \"5844a3cd72fc52ccb53db5b6187490e3dc062fe2\", \"live\": true, \"id\": \"x57eb112d\", \"perseus_api_major_version\": null}", "{\"sha\": \"457b8e9c3dfeb52944f3d48c0a73d6fb2dfd9194\", \"live\": true, \"id\": \"x68afc8d227506117\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5bd5daf436d51c7a0b26d432392dfa6a2331451\", \"live\": true, \"id\": \"xea86d41240fb0815\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f7fab82132aa5803b254df7354f235f5e6d28fe8\", \"live\": true, \"id\": \"x9aace73167f9f5ee\", \"perseus_api_major_version\": null}", "{\"sha\": \"a3c15d38124306140c888a3e5f87ae6d96fd737f\", \"live\": true, \"id\": \"xff249a040daf7447\", \"perseus_api_major_version\": null}", "{\"sha\": \"486087da5b034ebc03819c94f4763fe74334d369\", \"live\": true, \"id\": \"x0f68cf439a16c333\", \"perseus_api_major_version\": null}", "{\"sha\": \"ef8be059a737ce16bf8d90deba19158ec82fa52a\", \"live\": true, \"id\": \"x650b834db58d4bba\", \"perseus_api_major_version\": null}", "{\"sha\": \"bf0eed64dd45b99754345f244b2c37546e10095d\", \"live\": true, \"id\": \"xbf9daad0a2b1331b\", \"perseus_api_major_version\": null}", "{\"sha\": \"701df12f137c6965bc3836e007c32a7f838c5eb2\", \"live\": true, \"id\": \"xd8c3689ed12ec8ec\", \"perseus_api_major_version\": null}", "{\"sha\": \"da71c9b2ec5ace3b721bdfe626c5d036968ce381\", \"live\": true, \"id\": \"x29da08468528b39f\", \"perseus_api_major_version\": null}", "{\"sha\": \"a7476e7db3916ac360161776c44731c95def2833\", \"live\": true, \"id\": \"x8765b75652d01379\", \"perseus_api_major_version\": null}", "{\"sha\": \"f44058118a75cdf9de5dd2c169137f66f2ea91e9\", \"live\": true, \"id\": \"xdd1f120421dfc173\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 21.0, "slug": "avg-rate-of-change", "kind": "Exercise", "name": "avg-rate-of-change", "seconds_per_fast_problem": 20.0, "prerequisites": ["slope-from-a-graph", "increasing-decreasing-intervals-of-functions"], "exercise_id": "avg-rate-of-change"}, "adding_vectors": {"uses_assessment_items": false, "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/adding_vectors/", "id": "adding_vectors", "display_name": "Adding and subtracting vectors in rectangular form", "title": "Adding and subtracting vectors in rectangular form", "description": "", "basepoints": 14.0, "slug": "adding_vectors", "kind": "Exercise", "name": "adding_vectors", "seconds_per_fast_problem": 7.0, "prerequisites": ["graphically-adding-and-subtracting-vectors"], "exercise_id": "adding_vectors"}, "ara-pacis-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/roman/early-empire/ara-pacis-quiz/", "id": "ara-pacis-quiz", "display_name": "Ara Pacis (quiz)", "title": "Ara Pacis (quiz)", "all_assessment_items": ["{\"sha\": \"ec54554bcd9e0145e8f31f844a5a733e7430d2e9\", \"live\": true, \"id\": \"x7300c5b269b452bd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83c519590e0ecea2e45fbdc11e2ce7e03b1da319\", \"live\": true, \"id\": \"x6955b94af91b282a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ac04d2653b4a1a01c502e3fd42d74b2dcdad3963\", \"live\": true, \"id\": \"x197fabd53cd4c899\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2c8677023843983c2fcd00a2944b00df2457284\", \"live\": true, \"id\": \"xcac3b0d369f707b5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d806491941be766f93ddb52c185497d301e7998d\", \"live\": true, \"id\": \"xb9dc3eae28741a69\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "ara-pacis-quiz", "kind": "Exercise", "name": "ara-pacis-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ara-pacis-quiz"}, "using-probability-to-make-fair-decisions": {"uses_assessment_items": true, "path": "khan/math/probability/probability-and-combinatorics-topic/decisions-with-probability/using-probability-to-make-fair-decisions/", "id": "using-probability-to-make-fair-decisions", "display_name": "Using probability to make fair decisions", "title": "Using probability to make fair decisions", "all_assessment_items": ["{\"sha\": \"cb7d6801d1feddba1979a5aebe035986e2e2eb6e\", \"live\": true, \"id\": \"x2e85f28a7ec40a92\"}", "{\"sha\": \"27eb073fe9167b1c57672483bdd47aafc3d14e17\", \"live\": true, \"id\": \"xa825d81fe81a1291\"}", "{\"sha\": \"cef08be2313074305583f10333c63b194933e5d1\", \"live\": true, \"id\": \"x2a1461ff68591fa1\"}", "{\"sha\": \"6da37324100b21deaeb5d09316d8be0a89918012\", \"live\": true, \"id\": \"x09bb9c128943071c\"}", "{\"sha\": \"08d4c7e7be4443680f04c639541edeaa22bc8894\", \"live\": true, \"id\": \"x6cebc942e3399dbd\"}", "{\"sha\": \"8911e1db5c1861066eb3d815bc20d4e7335d0910\", \"live\": true, \"id\": \"x008af32ef8189496\"}", "{\"sha\": \"72b40b30f6f231dec61222ee22b4368a3ff5f858\", \"live\": true, \"id\": \"x5510898406c526ab\"}", "{\"sha\": \"82eecf971afb39c3374664a06151fb4b354a634b\", \"live\": true, \"id\": \"x4809e7883b1a7cd6\"}", "{\"sha\": \"d255ed6054c1d2f0c9f300e638803826301a5324\", \"live\": true, \"id\": \"x872fd2e9054ff7a3\"}", "{\"sha\": \"50d4127ed565dfc7f77fdc66bc83e01a2bfbaf25\", \"live\": true, \"id\": \"x1af1f9ac3cb0bc9c\"}", "{\"sha\": \"ef4a4981f3bfd4c711454792f9f4cf045b6147c1\", \"live\": true, \"id\": \"x332384f721aebd5e\"}", "{\"sha\": \"2c0111bb4d41e7d1275cb7da794d2d728504c5fa\", \"live\": true, \"id\": \"xca8a0fbe71d2d6f3\"}", "{\"sha\": \"2223e98d756a4abb35e8e2ed32582204547b4193\", \"live\": true, \"id\": \"xb160bceaed7a5b2c\"}", "{\"sha\": \"a65cdbdc6b931313d502723d01cc9bce74ab9e12\", \"live\": true, \"id\": \"x296c0e64e9b8cd00\"}", "{\"sha\": \"df0dec5d8f10981cf0e981e23784b58b191e86b6\", \"live\": true, \"id\": \"x6c7c83a20767263f\"}", "{\"sha\": \"ce099897bb17d29e10ba2aed1d47cafdc3fa57d0\", \"live\": true, \"id\": \"xc96e89f3e73b88bf\"}", "{\"sha\": \"dd1655d087fd78433d271b1a818057b1e3a9ac4a\", \"live\": true, \"id\": \"x306b155316896fb6\"}"], "description": "", "basepoints": 10.0, "slug": "using-probability-to-make-fair-decisions", "kind": "Exercise", "name": "using-probability-to-make-fair-decisions", "seconds_per_fast_problem": 4.0, "prerequisites": ["probability_with_perm_comb", "multiplying-dependent-probabilities"], "exercise_id": "using-probability-to-make-fair-decisions"}, "area-between-a-curve-and-an-axis": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/definite_integrals/area-between-a-curve-and-an-axis/", "id": "area-between-a-curve-and-an-axis", "display_name": "Area between a curve and an axis", "title": "Area between a curve and an axis", "all_assessment_items": ["{\"sha\": \"21ac89a7c38e5ac84ad7899f9b30636dbe023a91\", \"live\": true, \"id\": \"x39ba76e6d081d9ed\"}", "{\"sha\": \"491c0e0ce9c7bdea4ca01fefeb0f4212ee58dda5\", \"live\": true, \"id\": \"xcba75d85205aef66\"}", "{\"sha\": \"73fb2e7a0f452544593ad33269f6071e58558ad5\", \"live\": true, \"id\": \"xf18ce5b7f5dbec63\"}", "{\"sha\": \"969e1e5e5215a819d9e9f990213bb95293c320c2\", \"live\": true, \"id\": \"xf3dc3e6e347683b1\"}", "{\"sha\": \"0ff4d22c25b6e2d1064c57534af4ae2ac76c4373\", \"live\": true, \"id\": \"xf0f24d3265f81b74\"}", "{\"sha\": \"5f210aec43e0643edd3cdefe46fa7c532080761f\", \"live\": true, \"id\": \"x019ea8d904621367\"}", "{\"sha\": \"37560e3d88321f90903bbf9d9933790609f92c89\", \"live\": true, \"id\": \"x23bc1c8a58f3d97a\"}", "{\"sha\": \"074f8677d3cf8381ca770d7ba21732c70f5332cc\", \"live\": true, \"id\": \"xedaeb4758732d9d5\"}", "{\"sha\": \"dcc365a1eb36b37ac610a46d7719716f22daae0b\", \"live\": true, \"id\": \"xf6314ab926c1a755\"}", "{\"sha\": \"9eeb7ea1b0fe831d9e61c08b9e79861c3b7ebf3f\", \"live\": true, \"id\": \"xf42327deeb5245ac\"}", "{\"sha\": \"47f9386f9650e7770b63640eacb8c34c51aaec3c\", \"live\": true, \"id\": \"xe5e1490c5afc9fc9\"}", "{\"sha\": \"f6f42d01268e5a9f56c101a3b41b416d53d07fa9\", \"live\": true, \"id\": \"x68d958c16cde4c21\"}", "{\"sha\": \"2f165f78d3557bfd8ea46de0145e27a7308fd698\", \"live\": true, \"id\": \"x43e62637c1c62970\"}", "{\"sha\": \"15a325fee86234d85c768c044c40d336995d55af\", \"live\": true, \"id\": \"x1ca292bcddf722e3\"}", "{\"sha\": \"cebb3b4899ffa4ec59cdddeca4c64e609055f3e1\", \"live\": true, \"id\": \"x5e9d578898e250b9\"}", "{\"sha\": \"42b4936e10f843f909b571db4812c6d83812f0ce\", \"live\": true, \"id\": \"x9d3e8f2d441deb48\"}", "{\"sha\": \"d62575b7ed617d7029e133e0c9ccedac7cecbbd1\", \"live\": true, \"id\": \"x7150c5205d329adb\"}", "{\"sha\": \"b61e3f244751eb4fa445179bbde44870a4600699\", \"live\": true, \"id\": \"xf18410ceb3d9cfd0\"}", "{\"sha\": \"c9a4e44d9ac86d444257c67dca3d7f6e6c9355a8\", \"live\": true, \"id\": \"x5fbb4ddf0b993d08\"}", "{\"sha\": \"c606ad58c3e16bae11de97dbf5d821bc8898a262\", \"live\": true, \"id\": \"x97f93d40c3c58d51\"}", "{\"sha\": \"9d32065b4a07189a55d18bc17da423c9d69e6763\", \"live\": true, \"id\": \"x9e66ad2c8a9caba9\"}", "{\"sha\": \"91df7f9607468cc3c72ed8cda6a211d0b7ac94c6\", \"live\": true, \"id\": \"x56cc113a3422087f\"}", "{\"sha\": \"0ce723f0cd3ecf673dad2c0255d4b941082952c6\", \"live\": true, \"id\": \"x5bdd2a975bc3d575\"}", "{\"sha\": \"8c50e97704bedc9e9f36d4e6ae9457d32d4dac39\", \"live\": true, \"id\": \"x77070667f675e225\"}", "{\"sha\": \"4a10f5d64ae08b06b2984204dda3f7d9537bd47a\", \"live\": true, \"id\": \"x2ed85c94d68f1b8f\"}", "{\"sha\": \"ad523bea21fa82badf8a426df2cbc43d317583d4\", \"live\": true, \"id\": \"x4b1a8226a812642a\"}", "{\"sha\": \"765519d0427f15ec6814249a024422ce2d93ef81\", \"live\": true, \"id\": \"x78c14593070b71e1\"}", "{\"sha\": \"e46ec0d3999e36afad34aad33d96bae34647e769\", \"live\": true, \"id\": \"xd6cf91bec6c0f37b\"}", "{\"sha\": \"d72b6e30b5e694610d495d8b98cf1812f2f60d0c\", \"live\": true, \"id\": \"x2a18b9016674e25b\"}", "{\"sha\": \"ba13dd233a1e28c2843edf96a3d973bf63840caf\", \"live\": true, \"id\": \"xe0096500ae20c46e\"}", "{\"sha\": \"31319830ccac248de23b8f93f5e80884190d0427\", \"live\": true, \"id\": \"x317efdacf8bc7a09\"}", "{\"sha\": \"696999444bc8b919f1dea7b39a35700b4e011863\", \"live\": true, \"id\": \"x5077c1b8d0a48ea4\"}", "{\"sha\": \"3f1aa60547e7098bf78c2c7d0be36f37018c0def\", \"live\": true, \"id\": \"x30c1bf0dc090ff22\"}", "{\"sha\": \"1e27bc2e48fb72608f0451db8224a868988575b4\", \"live\": true, \"id\": \"xee5b9d6cd91a5777\"}"], "description": "", "basepoints": 10.0, "slug": "area-between-a-curve-and-an-axis", "kind": "Exercise", "name": "area-between-a-curve-and-an-axis", "seconds_per_fast_problem": 4.0, "prerequisites": ["properties-of-integrals"], "exercise_id": "area-between-a-curve-and-an-axis"}, "integration-and-differentiation-of-power-series": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/integration-and-differentiation-of-power-series/", "id": "integration-and-differentiation-of-power-series", "display_name": "Integration and differentiation of power series", "title": "Integration and differentiation of power series", "all_assessment_items": ["{\"sha\": \"375f1f24db48710743d2a9be3b9f08dff70ccc48\", \"live\": true, \"id\": \"xc3539eceb6a45438\"}", "{\"sha\": \"6d875278242131eb3dfce55c6f5ab1d6ea72adb1\", \"live\": true, \"id\": \"x7b7c503e5d96744c\"}", "{\"sha\": \"b9f4afdabe3c8c281602b75cbdf9d579a2dacb28\", \"live\": true, \"id\": \"x76b7f99623235d64\"}", "{\"sha\": \"efd716304ae24b4d98b58add123b37ecd6663c63\", \"live\": true, \"id\": \"x6bc21010b90b2cad\"}", "{\"sha\": \"ad1d441486364dbc2ab699aa7d42294553c91b34\", \"live\": true, \"id\": \"xdaa763d8868be75e\"}", "{\"sha\": \"2cb5d07a0d556940f74bfe0ecdf4984c3205f42e\", \"live\": true, \"id\": \"x97ebbfb0b191b633\"}", "{\"sha\": \"f6e4be6eb9f9fb5f6c0e3bcb1cb162c721e18403\", \"live\": true, \"id\": \"xf831531d4ab5f448\"}", "{\"sha\": \"7606e5cb206fb07e5246ac78bf24d3664a779360\", \"live\": true, \"id\": \"x3f65a017f5c42d8c\"}", "{\"sha\": \"99e684f05efa2f1728c00b81cbf237d675f00f35\", \"live\": true, \"id\": \"x21a2fe445abf6d12\"}", "{\"sha\": \"d1aff8c780647a15b17289a257650f0a6c55e653\", \"live\": true, \"id\": \"xd573c86f824f2fd2\"}", "{\"sha\": \"b99ad2fdd1b8c1f49049eb08e65bbcb491122b32\", \"live\": true, \"id\": \"x6f0e2370a98e3fb6\"}", "{\"sha\": \"659eb34f87c4741420c0619368bc1f60b2f98d18\", \"live\": true, \"id\": \"xb1474a6cc2676d5b\"}", "{\"sha\": \"57ff0cb9565a48dc05b4e4c3873cd31d4b0761e6\", \"live\": true, \"id\": \"x9cc7514534e3c06c\"}", "{\"sha\": \"d2981d53e1dee15d31bf7454c0a3fec209e4b740\", \"live\": true, \"id\": \"x8b1013e6a62c5b66\"}", "{\"sha\": \"4f577287f01889d39f5682efb49b6030d9c90da0\", \"live\": true, \"id\": \"x2e10a3e9d3c88316\"}", "{\"sha\": \"951689479a36db79bd1f71a737946b028877f471\", \"live\": true, \"id\": \"x11ac61480b6c927e\"}", "{\"sha\": \"58fc98f546b890a6fbc0f32c9d445c3e813efb4b\", \"live\": true, \"id\": \"x4c4b11d46bdf04e5\"}", "{\"sha\": \"405b04efb33216f1fa1b5a2d00b1df2b5b58ee00\", \"live\": true, \"id\": \"x84a65f7096bad712\"}", "{\"sha\": \"5c25e6a27ac6dd3279bac36db017e11cc66d9f37\", \"live\": true, \"id\": \"x85b336598d988b56\"}"], "description": "Integration and differentiation of power series", "basepoints": 10.0, "slug": "integration-and-differentiation-of-power-series", "kind": "Exercise", "name": "integration-and-differentiation-of-power-series", "seconds_per_fast_problem": 4.0, "prerequisites": ["maclaurin-series-for-sin-x--cos-x--and-e-x"], "exercise_id": "integration-and-differentiation-of-power-series"}, "couture--romans-of-the-decadence": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/avant-garde-france/second-empire/couture-romans-of-the-decadence/", "id": "couture--romans-of-the-decadence", "display_name": "Couture, Romans of the Decadence", "title": "Couture, Romans of the Decadence", "all_assessment_items": ["{\"sha\": \"3de10b3801a73113decb6f50b259e97cc4f9ab08\", \"live\": true, \"id\": \"x7cf34b50cdcd864c\"}", "{\"sha\": \"4d9d843914190433300821af60767f2cb106393b\", \"live\": true, \"id\": \"xfc49f5c79fcb785c\"}", "{\"sha\": \"d5095839b466147e3a6a25372f80e89eee3ed558\", \"live\": true, \"id\": \"xe0577e3f783adc40\"}", "{\"sha\": \"3262007adb6bf26e432f2744707f5060fac6088d\", \"live\": true, \"id\": \"xdaf28e5e8540dead\"}", "{\"sha\": \"daa2434adb7c2cdbd934169f75a341737e505a72\", \"live\": true, \"id\": \"xddd0781a020e8f55\"}"], "description": "Test your knowledge on this painting.", "basepoints": 10.0, "slug": "couture-romans-of-the-decadence", "kind": "Exercise", "name": "couture--romans-of-the-decadence", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "couture--romans-of-the-decadence"}, "mitosis-questions": {"uses_assessment_items": true, "path": "khan/science/biology/cellular-molecular-biology/mitosis/mitosis-questions/", "id": "mitosis-questions", "display_name": "Mitosis Questions", "title": "Mitosis Questions", "all_assessment_items": ["{\"sha\": \"86b8a6edd5dd66aab194f63832ed260f20eae8eb\", \"live\": true, \"id\": \"xbfc64ae2fc33ba0b\"}", "{\"sha\": \"94b9440bad052a244c0cee1dab453907dcd164a6\", \"live\": true, \"id\": \"xefc54f70be7aa46a\"}", "{\"sha\": \"784c951eb62e06f972121e0af5786d686114e2bb\", \"live\": true, \"id\": \"xe718146357391471\"}", "{\"sha\": \"e22ccb6073c7ccaf64c3f639e875cd508ae9db79\", \"live\": true, \"id\": \"xd60fdead94dc1132\"}", "{\"sha\": \"285bde6e12f2673a4365463d09da86fc1d9d793f\", \"live\": true, \"id\": \"x924ae878bbfd385e\"}", "{\"sha\": \"daa6d3ea2ba1b33102b051536f1aa85aad6348f3\", \"live\": true, \"id\": \"x186ebdebee84cfc3\"}", "{\"sha\": \"5690583692b90392f2595950a797a350ead6203e\", \"live\": true, \"id\": \"xfd185ed2d08c9b2b\"}", "{\"sha\": \"b9aad9fe12461ef1cf3f84c54365c86b4d65ab5e\", \"live\": true, \"id\": \"x3acaeebdd2ea017e\"}", "{\"sha\": \"7c24b6c9af19f9feefe96e41de8c39decf6b6faa\", \"live\": true, \"id\": \"xea925e14ab8a8ab9\"}", "{\"sha\": \"437f5b02ca000ac178fd5491d162447a4d140366\", \"live\": true, \"id\": \"xe5d30e456487187e\"}", "{\"sha\": \"02da5c73fb10086cec2da2e54babbfdb6be83e2d\", \"live\": true, \"id\": \"xe56239131410a2dc\"}"], "description": "Use these questions to check your understanding of mitosis!", "basepoints": 10.0, "slug": "mitosis-questions", "kind": "Exercise", "name": "mitosis-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mitosis-questions"}, "creating_bar_charts_1": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/creating_bar_charts_1/", "id": "creating_bar_charts_1", "display_name": "Creating bar charts", "title": "Creating bar charts", "description": "Create a bar graph with the data given.", "basepoints": 24.0, "slug": "creating_bar_charts_1", "kind": "Exercise", "name": "creating_bar_charts_1", "seconds_per_fast_problem": 27.0, "prerequisites": [], "exercise_id": "creating_bar_charts_1"}, "friedrich--monk-by-the-sea": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-germany/friedrich-monk-by-the-sea/", "id": "friedrich--monk-by-the-sea", "display_name": "Friedrich, Monk By the Sea (quiz)", "title": "Friedrich, Monk By the Sea (quiz)", "all_assessment_items": ["{\"sha\": \"72a1e87d09cfc3d1da611df6f56f26df568b4654\", \"live\": true, \"id\": \"x1e5263a8570c94da\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"06b73e2884d6e98f85992d303f07441cb8ee81c9\", \"live\": true, \"id\": \"xd851adfbbdf3141f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c605bf5cd8e9366819b68ed57bf01a2a87c75bdd\", \"live\": true, \"id\": \"xaa356a13de40f177\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e4b83588e5fcf75464da866a5648660a7caa7603\", \"live\": true, \"id\": \"xa05e540192a1ad64\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3804c2469b744d11608d6071b778be7ad4bdbf07\", \"live\": true, \"id\": \"x22e11da326fa5564\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "friedrich-monk-by-the-sea", "kind": "Exercise", "name": "friedrich--monk-by-the-sea", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "friedrich--monk-by-the-sea"}, "creating-picture-and-bar-graphs-2": {"uses_assessment_items": true, "id": "creating-picture-and-bar-graphs-2", "display_name": "Creating picture and bar graphs 2", "title": "Creating picture and bar graphs 2", "all_assessment_items": ["{\"sha\": \"0abf774742a73d86e80c9107713f3f24bcd8b7d1\", \"live\": true, \"id\": \"x080ee262c8e8c704\"}", "{\"sha\": \"1be675f724bacc8d57eebd5ffb41cd208685f5b8\", \"live\": true, \"id\": \"xe77da5f7bde5b9db\"}", "{\"sha\": \"5f63560a78ad81365186092cbe56e6bb072587ba\", \"live\": true, \"id\": \"xf5870b368b159522\"}", "{\"sha\": \"19ab85938c9aae2059666d63a1b88e42c2130d48\", \"live\": true, \"id\": \"xe8162f8d9b1ef158\"}", "{\"sha\": \"333796b765e700d715b1e3145ff9195e35891572\", \"live\": true, \"id\": \"x71812dfabc49357f\"}", "{\"sha\": \"573ce852bce86a8d01a65abe2a06fead10acb2ec\", \"live\": true, \"id\": \"xf573dcc6d6fba8c1\"}", "{\"sha\": \"3c2f59085f29d9ff81e2badda0c147feda48d45e\", \"live\": true, \"id\": \"xc04e3a8f90f19231\"}", "{\"sha\": \"d56402e19d5537cce687bb1d87c72efafe1953b9\", \"live\": true, \"id\": \"x9151e64fe12ab926\"}", "{\"sha\": \"77256b0a695d88afd4dd133320dade27f8c17014\", \"live\": true, \"id\": \"xf5307aac0d6cfe69\"}", "{\"sha\": \"1b182d0b88fbb49cdc082cf6b1e33a779ecc40f7\", \"live\": true, \"id\": \"x7bed9e2d4287216d\"}", "{\"sha\": \"aefa942bdff082d59f764e25e0319c44cdef2aab\", \"live\": true, \"id\": \"x50ee5bb17636dbcc\"}", "{\"sha\": \"c4cc968b26072eb5f703c57cab03e248d1b6ec82\", \"live\": true, \"id\": \"x025f0b68afd8252d\"}", "{\"sha\": \"6a0c4613cc571d2fb7e1d7f1714d31597e3c3895\", \"live\": true, \"id\": \"xbe9a00ea7759ba75\"}", "{\"sha\": \"e95bb9a34935af2437b7a91a566f6af8c3e5d45d\", \"live\": true, \"id\": \"x6e93a156891e820c\"}", "{\"sha\": \"a4b625c5f0ffbd9d0284ab0927bed14807dee3f5\", \"live\": true, \"id\": \"x3618be18173bfbb0\"}", "{\"sha\": \"a77f2d05fd313a6fbf4c9be794e03391a3ec47b8\", \"live\": true, \"id\": \"x31a6db3e21c4181a\"}", "{\"sha\": \"3fca4628d9595fc608e5b395c2f774c90af2e59c\", \"live\": true, \"id\": \"x19b9508fae793083\"}", "{\"sha\": \"49b61e7252fbd90b3f237bdf257f02b1dbfecb81\", \"live\": true, \"id\": \"x481de6cb8e75e4cf\"}", "{\"sha\": \"7b06f8cebfb207a536c758574b0db18e13dd9c74\", \"live\": true, \"id\": \"xb9429d7b8b7c5806\"}", "{\"sha\": \"b88fb2c6f5f903b5285be75cf6c6d12752526d9a\", \"live\": true, \"id\": \"xc74e14d6dadc8f26\"}", "{\"sha\": \"279cba650a8e3a3add909c89a689d75daa9f0776\", \"live\": true, \"id\": \"x987fb053fd3b0bbd\"}", "{\"sha\": \"76993f3e95d4b8d7f5c40b733843d168e61a6922\", \"live\": true, \"id\": \"xd487b26e7cb9abc3\"}", "{\"sha\": \"b5e7175c8dcb7139d5111c9f7aefdd23a5f561ce\", \"live\": true, \"id\": \"x5d9c46633b832a66\"}", "{\"sha\": \"a8ee8f90c4f76ee4ff3190cc00a19daa027544ca\", \"live\": true, \"id\": \"xaf10e9f8171896a9\"}", "{\"sha\": \"653adb31d86d81bb37b4125df110960222e64a51\", \"live\": true, \"id\": \"x3c7a6e230f8cd942\"}", "{\"sha\": \"0c261f496a8c631b5017f7646c80c1469672c6b2\", \"live\": true, \"id\": \"xea20514057a23c51\"}", "{\"sha\": \"d6d2a54f93e9a3e69cea50235377bb02ea9a4f9b\", \"live\": true, \"id\": \"x290bb6a7f58e8f79\"}", "{\"sha\": \"4bb909b218bf4d81a4917756b96ce5b9897d9048\", \"live\": true, \"id\": \"x4f6cbea4f02a8007\"}", "{\"sha\": \"6acf64d64538e91b7e26daae90244bb286723119\", \"live\": true, \"id\": \"x704350f24814c6c7\"}", "{\"sha\": \"0be66bf297f2f81e1990611812f3aa5cb1bea097\", \"live\": true, \"id\": \"xa00cb23429336bf0\"}", "{\"sha\": \"3963a358f3767028e3c0a4755bbac7cd90dfa60c\", \"live\": true, \"id\": \"x339622cd5475842a\"}", "{\"sha\": \"329ebb5fedb3dcd8cd1157f4854160ba30e811df\", \"live\": true, \"id\": \"x14629a80050a908b\"}", "{\"sha\": \"0f7ea35a145c52f0114d97fc8e604bfe61771e14\", \"live\": true, \"id\": \"x9c236b2e1414d7d5\"}", "{\"sha\": \"db2e81290cdbd4d980fcefa7bbc08b373e0ce6de\", \"live\": true, \"id\": \"xeeff69e036155e8b\"}", "{\"sha\": \"0c5c3a00b09c761eecb0ee82a05bc163619335d1\", \"live\": true, \"id\": \"xfc5f46c2152a2fea\"}"], "description": "Create and interpret bar and picture graphs.", "basepoints": 10.0, "path": "creating-picture-and-bar-graphs-2/", "slug": "creating-picture-and-bar-graphs-2", "kind": "Exercise", "name": "creating-picture-and-bar-graphs-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["solving-problems-with-bar-graphs-3", "solving-problems-with-picture-graphs-2"], "exercise_id": "creating-picture-and-bar-graphs-2"}, "creating-expressions-with-parenthesis": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/constructing-numeric-expressions/creating-expressions-with-parenthesis/", "id": "creating-expressions-with-parenthesis", "display_name": "Creating expressions with parentheses", "title": "Creating expressions with parentheses", "all_assessment_items": ["{\"sha\": \"ed818d747744789a5e107a04bcb8ac5df8a4a18b\", \"live\": true, \"id\": \"x293fd616\"}", "{\"sha\": \"130eb447da17da4eaaa920d51005b1633a28c462\", \"live\": true, \"id\": \"xedc4446c\"}", "{\"sha\": \"a49a763f741d6fb3a02ea56d0881476224a09cea\", \"live\": true, \"id\": \"xb138f377\"}", "{\"sha\": \"d04c91ddedf92f4cfe025b4712807917ae0a43f0\", \"live\": true, \"id\": \"x610d74c9\"}", "{\"sha\": \"e544ce8a14959298d89e3aa2ff3c939d49f3b959\", \"live\": true, \"id\": \"x2f6091c9\"}", "{\"sha\": \"21a8feff63082d35853b10ad5a3c3a38815a64ac\", \"live\": true, \"id\": \"xc4e0a1d5\"}", "{\"sha\": \"96b02855a6a78e3b1959e23059bea622a3dc34ab\", \"live\": true, \"id\": \"x08cff617\"}", "{\"sha\": \"729d455373321ae0b42567eecabfa5b9dc6539e0\", \"live\": true, \"id\": \"x8688bb93\"}", "{\"sha\": \"6eccddbc94d3d86538e6d793c8967c3031474c73\", \"live\": true, \"id\": \"xe8fe5be8b44f33ad\"}", "{\"sha\": \"fd8d64c09f1f30108826991970dc551a8aa3c51c\", \"live\": true, \"id\": \"xfe92e98826d76c5e\"}", "{\"sha\": \"397160444aec1e25d7a8048340947a744abd6c4f\", \"live\": true, \"id\": \"x1ce1d367\"}", "{\"sha\": \"8d8c37dff9e7572f951bf39b6662844cf808afe8\", \"live\": true, \"id\": \"xfe1db4e8\"}", "{\"sha\": \"6e3bd21c63b7db2210c825710a5498d5ceeaaab4\", \"live\": true, \"id\": \"x4b08c1eb\"}", "{\"sha\": \"42a061672161529cb8c759fd1540b976c7af8987\", \"live\": true, \"id\": \"x132ddb6a\"}", "{\"sha\": \"aa6a87d6f63601e7d64b0c93576604cda429888f\", \"live\": true, \"id\": \"xfab5df5d\"}", "{\"sha\": \"6389001bdc7e7561682d2939cd0244ea4c5c3852\", \"live\": true, \"id\": \"x46c9d4fe\"}", "{\"sha\": \"9d00b41da0920716d23d3c8f229c2038a224194f\", \"live\": true, \"id\": \"x100de087\"}", "{\"sha\": \"266e2a8dc000fdf40a8a5705246ee040c5fab232\", \"live\": true, \"id\": \"x05fdc3c0\"}", "{\"sha\": \"03d6540b5d6a9c3050a64908b03e1f4b4bc73fdf\", \"live\": true, \"id\": \"x2190b6352ce79060\"}", "{\"sha\": \"11fbb3112b5536d422d8d576bb19e15b130b521b\", \"live\": true, \"id\": \"xd1df36753912f2d4\"}"], "description": "Practice creating expressions with parentheses from real-world contexts.", "basepoints": 10.0, "slug": "creating-expressions-with-parenthesis", "kind": "Exercise", "name": "creating-expressions-with-parenthesis", "seconds_per_fast_problem": 4.0, "prerequisites": ["expressions-with-parentheses"], "exercise_id": "creating-expressions-with-parenthesis"}, "one-more--one-less": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-counting/one-more-one-less/", "id": "one-more--one-less", "display_name": "One more, one less", "title": "One more, one less", "all_assessment_items": ["{\"sha\": \"650ce80286e5e1e683ccf1211a7b59c00ce06a7a\", \"live\": true, \"id\": \"x60d2c7d124552bb1\"}", "{\"sha\": \"113d01e104f3a4817d243f5958758a54fdfb58d1\", \"live\": true, \"id\": \"xa119340b20437621\"}", "{\"sha\": \"58119bdb939a5b0f9e33217f4823522cc838ebfd\", \"live\": true, \"id\": \"x4ecad084ba3a68c8\"}", "{\"sha\": \"4b29b4b0e66ec7b414edc06a004662125ad0d23e\", \"live\": true, \"id\": \"xdea939bc6be6747b\"}", "{\"sha\": \"409b6638464e65598029413d74439d49b6ab05b2\", \"live\": true, \"id\": \"xc0d92e0132bc9aa2\"}", "{\"sha\": \"3b2d97ca39bdd1369a5ae33670256b8198c9bf63\", \"live\": true, \"id\": \"x62cb3cf4dbbf46da\"}", "{\"sha\": \"0785a972c68d537dd63bfdcbf1f5b93e1a5eb1d5\", \"live\": true, \"id\": \"x50d769d97e52f10e\"}", "{\"sha\": \"279e9eb3efc937e62a59ca8fe1440bbfb3c0b7a2\", \"live\": true, \"id\": \"x90d236a5eb648d2f\"}", "{\"sha\": \"45bab7a378b243dd30941f88b78c96691b13cab8\", \"live\": true, \"id\": \"xe875bf86cc0ded21\"}", "{\"sha\": \"d9ce636db38bbb5a0d7d2e5ff847574473248e34\", \"live\": true, \"id\": \"xf165f1586ec22e16\"}", "{\"sha\": \"94f9231fc72c14a5c40dfc1b3749ca45ccd83bcf\", \"live\": true, \"id\": \"x7c4e27eb6d3b6348\"}", "{\"sha\": \"6705173c1475c3b8bb2d88df385f61e0c7984519\", \"live\": true, \"id\": \"x5fc41da282811161\"}", "{\"sha\": \"1de350d3a21976272b29307da9b87c1e2f7a9e48\", \"live\": true, \"id\": \"x48245352c0044050\"}", "{\"sha\": \"c36aa8227a5b1709f63ed811081b6319d7cb931b\", \"live\": true, \"id\": \"xad94154fc4461ae2\"}", "{\"sha\": \"62d64c1010c05147128db48adc40f07fac9bae87\", \"live\": true, \"id\": \"xd5badad195ab37c3\"}", "{\"sha\": \"7b6a98cd1848d35dd40d99cdc6678cbc45887f99\", \"live\": true, \"id\": \"xbd461dd1d4fe8a79\"}", "{\"sha\": \"4757361dd7b51041d617cf932686bf4e376d008f\", \"live\": true, \"id\": \"x9bda8712d35a3b5c\"}", "{\"sha\": \"9c7c9cb1bcd9823530f9a2b7869271b5507e83c5\", \"live\": true, \"id\": \"x97f92d0f1244e6aa\"}", "{\"sha\": \"586a1b01b092d6d8aad24191e1a605f1379fab9a\", \"live\": true, \"id\": \"x74b433184991a62c\"}", "{\"sha\": \"2ea55f0b2936545761a1b314d1d6a00c76d6e49c\", \"live\": true, \"id\": \"xe3043790fe0871a9\"}"], "description": "Practice finding one more or one less than a number.", "basepoints": 10.0, "slug": "one-more-one-less", "kind": "Exercise", "name": "one-more--one-less", "seconds_per_fast_problem": 4.0, "prerequisites": ["counting-out-1-20-objects"], "exercise_id": "one-more--one-less"}, "analyzing-data-with-box-plots": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/analyzing-data-with-box-plots/", "id": "analyzing-data-with-box-plots", "display_name": "Reading box plots", "title": "Reading box plots", "all_assessment_items": ["{\"sha\": \"4257b2450fe8df88be586afef22cce8645551eb5\", \"live\": true, \"id\": \"x6bbea25d66b9d77f\"}", "{\"sha\": \"cab9fce927dcbcedaaf7df33ff0852295086caa4\", \"live\": true, \"id\": \"xda7c31be677e89ea\"}", "{\"sha\": \"742552542e556528f0372c41ffac9b802b74f649\", \"live\": true, \"id\": \"x6e6c1c0144b4df84\"}", "{\"sha\": \"397aa95a3b7b9d4db5c3075b3794ada5af6a0aaf\", \"live\": true, \"id\": \"x7e6cb6aeca0d07b6\"}", "{\"sha\": \"a6c99b2a616d748fdf80a49523061d737ad81862\", \"live\": true, \"id\": \"x3540446d3ae05a6b\"}", "{\"sha\": \"3c21c0d6ab6a2740c4e7a6fc4c4e84e3be578c89\", \"live\": true, \"id\": \"x5b13385c76f66ece\"}", "{\"sha\": \"fd2ebb487a446d6dc1be3a66f5e115dbdf291d56\", \"live\": true, \"id\": \"x2a3012e13fb1100b\"}", "{\"sha\": \"8c5b48f40dbffc8429cf6f102e8e459ca8653b61\", \"live\": true, \"id\": \"x25127acd72096057\"}", "{\"sha\": \"238933f2201d2d1c2ad5a232b6b08a72c6ce85ec\", \"live\": true, \"id\": \"x16428a984fc19357\"}", "{\"sha\": \"2bc98de502749e17d035b3e0997bea3963d2dbcb\", \"live\": true, \"id\": \"xbb16095ab6a4e921\"}", "{\"sha\": \"c9cf279d3e6dcf92e7d9b166970377620cf9e8c4\", \"live\": true, \"id\": \"x7a6d3cf6dd24b7d9\"}", "{\"sha\": \"f48f284409f9796342f309d10124ddb3c2af5d25\", \"live\": true, \"id\": \"xa67303d2cf195fd2\"}", "{\"sha\": \"0e077f2f5da5d58fede98c85eaae84c8c4dd8586\", \"live\": true, \"id\": \"xbfb604e2f41ac8d9\"}", "{\"sha\": \"2dc166eb2e4c013e6c6e1ef3ff20c5011f077f01\", \"live\": true, \"id\": \"xc33995f4fcd9df55\"}", "{\"sha\": \"7c4a29d4ab1c1d46c48b641e644a22342325e6a1\", \"live\": true, \"id\": \"x3d511d4b6e957e6a\"}", "{\"sha\": \"a0d325f0d335349ea11e5e7da53403889b738956\", \"live\": true, \"id\": \"xd18e1b8950a9ef71\"}", "{\"sha\": \"1f98337869376ac5e9a1958c95ffe9b2bcce2aef\", \"live\": true, \"id\": \"x4c6935947ae9bd45\"}", "{\"sha\": \"380c974896811a06074027628dd154f41a64219c\", \"live\": true, \"id\": \"xa4bc5c6dba569bbf\"}", "{\"sha\": \"e9e99de6eb67b271c8c14a4ec22b8ccebb864795\", \"live\": true, \"id\": \"x06d0b076a4455869\"}", "{\"sha\": \"ae0101c7627721cd06bfb08f52c3f5b52017526b\", \"live\": true, \"id\": \"x8de1209e3f21a58a\"}", "{\"sha\": \"e94abc2151b925039b1607da3ecca3bb50336a64\", \"live\": true, \"id\": \"xce58358dadffc586\"}", "{\"sha\": \"f7f14593fb471d4c1d88df0262b545829fb11bc4\", \"live\": true, \"id\": \"xddbeb8303edacffe\"}", "{\"sha\": \"9820440bf0a052a72a5a525dd32d290ca451103c\", \"live\": true, \"id\": \"xaa77616ba358b3ae\"}", "{\"sha\": \"d354802cb19df9b0404ea36b6583b351cc2162fd\", \"live\": true, \"id\": \"x33750a6b3658a4d2\"}", "{\"sha\": \"4765df3081b2b48dfdcc77e11c6aa1827c96f16e\", \"live\": true, \"id\": \"xd4b8b38bc9251967\"}", "{\"sha\": \"3ce770899c5eaa76b827202e62cb195a036e362f\", \"live\": true, \"id\": \"x49a25192274b8861\"}", "{\"sha\": \"107d3367964bdba85b02b2a0c77166770feff19d\", \"live\": true, \"id\": \"x3488d1236e2222cf\"}", "{\"sha\": \"ebaf2bc93fccd4009c752f033b4e6444c7e07934\", \"live\": true, \"id\": \"xb5891fd0905a5f95\"}", "{\"sha\": \"6c73417a13d5f367a6391d6fb8b5789586cbefb1\", \"live\": true, \"id\": \"x7f405af117bec5c8\"}", "{\"sha\": \"ce5f7a5b37628031caa2987d21b8c441afee1838\", \"live\": true, \"id\": \"x415f5250b04e2209\"}"], "description": "Practice reading information presented in box plots.", "basepoints": 10.0, "slug": "analyzing-data-with-box-plots", "kind": "Exercise", "name": "analyzing-data-with-box-plots", "seconds_per_fast_problem": 4.0, "prerequisites": ["calculating-the-median"], "exercise_id": "analyzing-data-with-box-plots"}, "quiz--text-properties": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css/css-text-properties/quiz-text-properties/", "id": "quiz--text-properties", "display_name": "Quiz: text properties", "title": "Quiz: text properties", "all_assessment_items": ["{\"sha\": \"519af93dce632dc5efe6f59ec34b07b0e9053802\", \"live\": true, \"id\": \"xd32b6c3a72fa82b5\", \"perseus_api_major_version\": null}", "{\"sha\": \"cb87338336f6033ec45edf3994c6a2a09dee6d5e\", \"live\": true, \"id\": \"x0c15e60c5dc8c613\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e34563f5f9eaeac1b9de38d4f05142bede4fc2e9\", \"live\": true, \"id\": \"x55761eea9d10ca39\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b6bd889a8afbe9a2e30177200c07843736642415\", \"live\": true, \"id\": \"x745f4a40c3385ce5\", \"perseus_api_major_version\": null}", "{\"sha\": \"bd5d733c373fa7c36e0bf1b419d601d4742b3366\", \"live\": true, \"id\": \"xfe43021475aa006c\", \"perseus_api_major_version\": null}"], "description": "Practice your knowledge of CSS text properties.", "basepoints": 10.0, "slug": "quiz-text-properties", "kind": "Exercise", "name": "quiz--text-properties", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--text-properties"}, "unit-vector": {"uses_assessment_items": true, "path": "khan/math/linear-algebra/vectors_and_spaces/vectors/unit-vector/", "id": "unit-vector", "display_name": "Unit vectors", "title": "Unit vectors", "all_assessment_items": ["{\"sha\": \"c9f0ce4feff4f6ea0d397e3cc951310a8a0abf79\", \"live\": true, \"id\": \"xbdb0ca5d32b4038c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6aabb6c86c7bbb797204e1c4e13883c21d4617a5\", \"live\": true, \"id\": \"x85e61a8fe8af2c96\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"4ba6f155fb57a28d88d230fd1573d577a4be55d2\", \"live\": true, \"id\": \"x2427f50e0a9f8bd4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6416973aa7091473aea175250f266c0b4eea0e39\", \"live\": true, \"id\": \"x651b3a460628ea0d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cb7aac2b81140a99df8f929b3ed04ccc64d9fbff\", \"live\": true, \"id\": \"xd95cd3ca4ced03d7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"77c8ceb8b07318ee348480198dbb440370b28bb2\", \"live\": true, \"id\": \"xad0428f233386a8d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1b02e12d1ebe6b243dcba9696bd2d6077de7e563\", \"live\": true, \"id\": \"x52efb234ec84a844\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6a80e0a7de3587c773a72905c9132ad104384f1c\", \"live\": true, \"id\": \"xa05539d881b6c781\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"76e38848eda10f6f4a8d04143697a923953c3ecf\", \"live\": true, \"id\": \"xf181651a9ff9f0ef\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d757d5281cacff4b73aff3314c9812d361d6f390\", \"live\": true, \"id\": \"xbe796b0f61b199d3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a784b4b13019a8973266c0c2a9a1166463590cec\", \"live\": true, \"id\": \"x40a5cf2a9d96f251\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"58612ba9f583d912917dbe7c39d49d5c1485c3bb\", \"live\": true, \"id\": \"xfb37e32d67287300\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b130048eaac96291a150d6e619f2dd2e6b602376\", \"live\": true, \"id\": \"x4ae9c22056e0fda9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9fd7783153ce89832d35900b83589e94f83d7663\", \"live\": true, \"id\": \"x04b76872a7f1c45c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4578633e798cf2f298461aa25f93fb4d2cbf27b4\", \"live\": true, \"id\": \"x8ed620e9b0d3f981\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9ea7bddfe46a78dc4e689e1bb8202c5a6b126efc\", \"live\": true, \"id\": \"x00e66a03bf33faf2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"04a15470b03968b87cb0c450e03561e900a0986d\", \"live\": true, \"id\": \"x74d399dde748c7ad\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c3271a23a2914df4d412d60cc6c2c0deb27617eb\", \"live\": true, \"id\": \"x286d508e4a10a877\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c88540bc2032746189aa2a4769717870bc0d60c7\", \"live\": true, \"id\": \"x6f9fb58137506d94\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"918d9292814fbc373ece622aadde0031eff57aad\", \"live\": true, \"id\": \"xe739777d0c31bb3a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9007b28ab7930e7e15f67f1b91126818ef4cb550\", \"live\": true, \"id\": \"x535d5feb103441dc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca0d389f093c37225f71172eabef5ef91f0a3b69\", \"live\": true, \"id\": \"x6f6b5eeb758a6c78\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fbf3c30f5a2b11dcf4d19349568aec8d4b63409c\", \"live\": true, \"id\": \"xaa8bab306eab7360\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9842675af1b5d64a70423348ecf4feaffa433b5c\", \"live\": true, \"id\": \"x1a39b77319dc9503\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"322dc5a58e164da21b54fecc1c584fdcb1bd4127\", \"live\": true, \"id\": \"x517f62ea7a0d724a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8a1b6ef19cdeb365f6a4241436ab292bb8302948\", \"live\": true, \"id\": \"x62e3ec1840b0381f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ff9c4ee39d811f0c90e3b36e3ff08bacef019c1\", \"live\": true, \"id\": \"x8f15c09c0fc021eb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65a5c2974bbe2bd7cbde5a8619ace2a8a61cea44\", \"live\": true, \"id\": \"x876b143737f1257e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"22a085ff5dbcb76281a4ea417b48c140b7871785\", \"live\": true, \"id\": \"x13e84b4ac2c722a3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "unit-vector", "kind": "Exercise", "name": "unit-vector", "seconds_per_fast_problem": 4.0, "prerequisites": ["scaling_vectors", "unit_circle"], "exercise_id": "unit-vector"}, "converting_decimals_to_percents": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-ratios-rates-percentages/converting_decimals_to_percents/", "id": "converting_decimals_to_percents", "display_name": "Converting decimals to percents", "title": "Converting decimals to percents", "description": "", "basepoints": 14.0, "slug": "converting_decimals_to_percents", "kind": "Exercise", "name": "converting_decimals_to_percents", "seconds_per_fast_problem": 7.0, "prerequisites": ["understanding_moving_the_decimal", "converting-between-fractions-and-percents"], "exercise_id": "converting_decimals_to_percents"}, "cushing-s-syndrome-and-the-hypothalamic-pituitary-axis": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cushing-s-syndrome-and-the-hypothalamic-pituitary-axis/", "id": "cushing-s-syndrome-and-the-hypothalamic-pituitary-axis", "display_name": "Cushing's syndrome and the hypothalamic-pituitary axis", "title": "Cushing's syndrome and the hypothalamic-pituitary axis", "all_assessment_items": ["{\"sha\": \"d90cc510e679355d8f82e587d01b1ba5d3ef9bda\", \"live\": true, \"id\": \"xbe69fc3a60e71f44\", \"perseus_api_major_version\": 3}", "{\"sha\": \"4540d3b9152f85788d7c56187656f4c0250aa7ca\", \"live\": true, \"id\": \"x8dda3cb25f805877\", \"perseus_api_major_version\": 3}", "{\"sha\": \"602ad60fdea652f50cd4e9ba159a7ba48c5af34f\", \"live\": true, \"id\": \"x00ff5c3cfa02f221\", \"perseus_api_major_version\": 3}", "{\"sha\": \"a216fa8c9a0b10ef2371cdb100169e33d2378f3e\", \"live\": true, \"id\": \"x301464eda15a1efa\", \"perseus_api_major_version\": 3}", "{\"sha\": \"92224a83aa75d6fbd3c01d72ba3c84b0321d1d46\", \"live\": true, \"id\": \"xfe763bdb83620796\", \"perseus_api_major_version\": 3}"], "description": "Questions related to the functions of the endocrine systems and ways in which hormones coordinate the organ systems.", "basepoints": 10.0, "slug": "cushing-s-syndrome-and-the-hypothalamic-pituitary-axis", "kind": "Exercise", "name": "cushing-s-syndrome-and-the-hypothalamic-pituitary-axis", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cushing-s-syndrome-and-the-hypothalamic-pituitary-axis"}, "using-zeros-to-graph-polynomials": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/factoring-higher-deg-polynomials/using-zeros-to-graph-polynomials/", "id": "using-zeros-to-graph-polynomials", "display_name": "Using zeros to graph polynomials", "title": "Using zeros to graph polynomials", "all_assessment_items": ["{\"sha\": \"1e142e9c0821db5bcd4d927df83829ace1f6c9d9\", \"live\": true, \"id\": \"x1e3ec22a5c01179f\", \"perseus_api_major_version\": null}", "{\"sha\": \"c32a4afcdf84c2779438f396e94d5a3837292688\", \"live\": true, \"id\": \"x1a9cbb490564f213\", \"perseus_api_major_version\": null}", "{\"sha\": \"38265c7d3294091406843d2a99866114d9167c2b\", \"live\": true, \"id\": \"x41b62faf72e30dc4\", \"perseus_api_major_version\": null}", "{\"sha\": \"46628d1ec9769fe061515ffde784512a6a4fb725\", \"live\": true, \"id\": \"x5c6d54193b53b9a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"c4ddb4e219af816b8f26bf72aedc458f807d9207\", \"live\": true, \"id\": \"xbbc2525f208981d0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2d0797e13a4b6cfebf631de8eefaac043daacd3d\", \"live\": true, \"id\": \"xe03b87b6c4f5809e\", \"perseus_api_major_version\": null}", "{\"sha\": \"01dd65988477038da8ebe8e4c9b3e457f77b665b\", \"live\": true, \"id\": \"xfe86115d03b6e696\", \"perseus_api_major_version\": null}", "{\"sha\": \"18025a2c589fa2754919770c66a01a7aec314aa5\", \"live\": true, \"id\": \"xd6b7900d110ab6d3\", \"perseus_api_major_version\": null}", "{\"sha\": \"e79bf97bd31a74fb957779ed1df201f09a937389\", \"live\": true, \"id\": \"x608a1c6e1bb3f5da\", \"perseus_api_major_version\": null}", "{\"sha\": \"ad3e930498d25f6bdae04a448d63a2d85c432e52\", \"live\": true, \"id\": \"xb989e9a14b81eb69\", \"perseus_api_major_version\": null}", "{\"sha\": \"8acf0bb5b62404b93c6111cec2f575e86e097b09\", \"live\": true, \"id\": \"xde7932b31ab7d74e\", \"perseus_api_major_version\": null}", "{\"sha\": \"5ab646b7a16495516cd4154632d84cd30d792278\", \"live\": true, \"id\": \"x59cb51317f501150\", \"perseus_api_major_version\": null}", "{\"sha\": \"709fe6a7ba5d5da54c7b1e3858518eac2248ae0f\", \"live\": true, \"id\": \"x114756df88103cb3\", \"perseus_api_major_version\": null}", "{\"sha\": \"de061e76369474657c3c3a9fc6a6d410353a0b1d\", \"live\": true, \"id\": \"xc277f71fd074856b\", \"perseus_api_major_version\": null}", "{\"sha\": \"b99d8cd176e37818f50be26484dc36979b27f99f\", \"live\": true, \"id\": \"x484323da42d16379\", \"perseus_api_major_version\": null}", "{\"sha\": \"519603049ad538c3e0f603188029fc6cc65ec441\", \"live\": true, \"id\": \"x1729ccba9dc52ed1\", \"perseus_api_major_version\": null}", "{\"sha\": \"fdffe24d88191de5ec3564725bece66df0c93743\", \"live\": true, \"id\": \"x6e8b3b749b59863c\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a916319cc387836d62c8db9e639f1580b037960\", \"live\": true, \"id\": \"x65223b2c34850448\", \"perseus_api_major_version\": null}", "{\"sha\": \"b4c93814a420206246c75608efd2a452dfaefa90\", \"live\": true, \"id\": \"x21b5dd7dba6d335e\", \"perseus_api_major_version\": null}", "{\"sha\": \"729b0573b2ebc04d582c381797837317cfc4b786\", \"live\": true, \"id\": \"xa602bd8e14ab66c9\", \"perseus_api_major_version\": null}", "{\"sha\": \"7d0956ed9feb8c56eeac5505fb49ca2acf35045c\", \"live\": true, \"id\": \"xfebe67189ec269ba\", \"perseus_api_major_version\": null}", "{\"sha\": \"827107bc0aef8b4e63d9af30e30673306cc41627\", \"live\": true, \"id\": \"xea444646cb5844e0\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c352f52761ffd302a19f5b5f38b3c11de1b6eb4\", \"live\": true, \"id\": \"x371b114caf06d01f\", \"perseus_api_major_version\": null}", "{\"sha\": \"dbbb22858887f75db790229af490fec869c98794\", \"live\": true, \"id\": \"xe5b08f131217835a\", \"perseus_api_major_version\": null}", "{\"sha\": \"9fd29c7ff7a6b27f5d08273fb5c674664812f23c\", \"live\": true, \"id\": \"x039be6e27dec6fd7\", \"perseus_api_major_version\": null}", "{\"sha\": \"ca9f352a9a8f726d3f980bc2e4a14be0cf73cfdb\", \"live\": true, \"id\": \"x0331a979ab21044c\", \"perseus_api_major_version\": null}", "{\"sha\": \"8294cbcdad902da38e7f5e413eefe43b4ee231a3\", \"live\": true, \"id\": \"xa9fe369a2965def2\", \"perseus_api_major_version\": null}", "{\"sha\": \"23f5773d8f70314c20071bf76277e87c581829d9\", \"live\": true, \"id\": \"x003c407ebcb1d07a\", \"perseus_api_major_version\": null}", "{\"sha\": \"f86a9716182afe8fe3d04635e97b477f91923f87\", \"live\": true, \"id\": \"xe5d4ca556e1adbb0\", \"perseus_api_major_version\": null}", "{\"sha\": \"251449899aefa42145007060a5c334daa05c4e2a\", \"live\": true, \"id\": \"x609c213b75f77180\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "using-zeros-to-graph-polynomials", "kind": "Exercise", "name": "using-zeros-to-graph-polynomials", "seconds_per_fast_problem": 4.0, "prerequisites": ["factoring_polynomials_by_grouping_1"], "exercise_id": "using-zeros-to-graph-polynomials"}, "distance-and-midpoint-on-the-complex-plane": {"uses_assessment_items": true, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/distance-and-midpoint-on-the-complex-plane/", "id": "distance-and-midpoint-on-the-complex-plane", "display_name": "Distance and midpoint on the complex plane", "title": "Distance and midpoint on the complex plane", "all_assessment_items": ["{\"sha\": \"0cbf7d62e5b695f4449062df2dcb453701f475f4\", \"live\": true, \"id\": \"x56a525d45a049e04\"}", "{\"sha\": \"cdc8220f931885199ac2db5f8748067a12a4b4f0\", \"live\": true, \"id\": \"x33421c6e1801681c\"}", "{\"sha\": \"19befa6e9bc8f88e2d410e504b4c595bc674ba49\", \"live\": true, \"id\": \"x938ebfce82193d9e\"}", "{\"sha\": \"310d26d97e56f01d5318392cd05c667e5f082d70\", \"live\": true, \"id\": \"x1b5ff7b17f924d20\"}", "{\"sha\": \"39b2373cd67d4bb4f12e7243498d42c1cbf3b6d0\", \"live\": true, \"id\": \"x3ecda317278e6480\"}", "{\"sha\": \"0fa9ff506ad46f0291c973ab90d53c75047b1f27\", \"live\": true, \"id\": \"x098c33068b187407\"}", "{\"sha\": \"b1cc53d84ac7b2e2956e735a846d2e61a7f2cafe\", \"live\": true, \"id\": \"xdf3a4535d4ec6d1f\"}", "{\"sha\": \"fb396e5b2e178d14a876bf145275c61a86a9b033\", \"live\": true, \"id\": \"x8727f15195140602\"}", "{\"sha\": \"8dcc09b4ecb2ba98f0b1d6926adf48e12e5a5a4b\", \"live\": true, \"id\": \"x7babd3744ebad8c4\"}", "{\"sha\": \"e352ecf8f982566ee34f9073269948de361aeb76\", \"live\": true, \"id\": \"xe1537d11a54a1c3b\"}", "{\"sha\": \"631e1dab531c9cc490877270067a5c7dd549140f\", \"live\": true, \"id\": \"xb7a30114f35ce72d\"}", "{\"sha\": \"296548c2fac50c6a4de77f564fafc0a010390b54\", \"live\": true, \"id\": \"xec705d921b9b90bb\"}", "{\"sha\": \"c8fe4777c694007d35334c3e1ceda70682713935\", \"live\": true, \"id\": \"x9a6a548cb0f21357\"}", "{\"sha\": \"234b714d2c4ee4d09d2fe8178af609bb80092781\", \"live\": true, \"id\": \"xcc5b63bcf744e2de\"}", "{\"sha\": \"e9d8bf491d823a163e3411191aeaf23eed8e1994\", \"live\": true, \"id\": \"x3bbee55332ab7cf3\"}", "{\"sha\": \"cf98ee79168ee70cc149b1514d1adc5f60353d6a\", \"live\": true, \"id\": \"x83d68f5fe5335135\"}", "{\"sha\": \"0c9c3f59cdb8caa1715ac7adf766eb5235fe4fef\", \"live\": true, \"id\": \"xbd30dfd8b0a6e7b9\"}", "{\"sha\": \"3f328dbcea2e521437c86fb38d5fccb653b8345c\", \"live\": true, \"id\": \"xd6d0ea4dadde2050\"}", "{\"sha\": \"b5be7d84c4e9c6bbb4d7219eaff4ababef5b349d\", \"live\": true, \"id\": \"x52295fc9135fe2d4\"}", "{\"sha\": \"0345eccaf61b2172fe4e698e832f9406a67dfffb\", \"live\": true, \"id\": \"xfae93548bc2eddc2\"}", "{\"sha\": \"1257b9325c48ed8b3aaa6ce2c8467ff26683e815\", \"live\": true, \"id\": \"x387d52027d11b240\"}", "{\"sha\": \"9354b262d18d216b59bbc4f0d1f9dca90a853805\", \"live\": true, \"id\": \"xd0c18c840619748c\"}", "{\"sha\": \"2a6df80892c69ba7489367505798d584ccf8c06f\", \"live\": true, \"id\": \"xffe02f6c0a6e76c9\"}", "{\"sha\": \"ee832b052d7a63556081b3309f05b9ea3cb38772\", \"live\": true, \"id\": \"x15ebbee01063a3c0\"}", "{\"sha\": \"9e9cf7cf6c6c2ac28f9434310ada321470f66e32\", \"live\": true, \"id\": \"x1a5207b9957fdcc9\"}", "{\"sha\": \"7e7c7eccd723043cd11353cef3dc03b6b6b49264\", \"live\": true, \"id\": \"x6fb18cc7e779f45a\"}", "{\"sha\": \"ec811a0d291095778ef9b35d9726fb89c501b0c4\", \"live\": true, \"id\": \"xf3248bf8fb8f46fb\"}", "{\"sha\": \"52c66baa7835a9ce2b9c20fa040ddcc898125f06\", \"live\": true, \"id\": \"xcab4069863c16b79\"}", "{\"sha\": \"33c9c6a576b1028a01bd75549b257a190aa71262\", \"live\": true, \"id\": \"xcef0235c4a86dde6\"}", "{\"sha\": \"afb16d868d6388b841caee130e9d248891827436\", \"live\": true, \"id\": \"xaf2dd4404fe6eea1\"}"], "description": "", "basepoints": 10.0, "slug": "distance-and-midpoint-on-the-complex-plane", "kind": "Exercise", "name": "distance-and-midpoint-on-the-complex-plane", "seconds_per_fast_problem": 4.0, "prerequisites": ["complex_plane_operations"], "exercise_id": "distance-and-midpoint-on-the-complex-plane"}, "adding-and-subtracting-in-scientific-notation": {"uses_assessment_items": true, "id": "adding-and-subtracting-in-scientific-notation", "display_name": "Adding and subtracting in scientific notation", "title": "Adding and subtracting in scientific notation", "all_assessment_items": ["{\"sha\": \"dea5c30ccf10b37a4a50d526b9657678561fecbe\", \"live\": true, \"id\": \"x17212e2778252bcc\"}", "{\"sha\": \"1c291f5571d5c052f5153b39314c509e31d939b8\", \"live\": true, \"id\": \"x310ec37e140b7f94\"}", "{\"sha\": \"f4407400be77c44cb247ce7df4f11b248b5bc91a\", \"live\": true, \"id\": \"xef285f6271163028\"}", "{\"sha\": \"8548f0793348534c17050f71dda1fd794281c1e5\", \"live\": true, \"id\": \"xa9a458f9c80eda98\"}", "{\"sha\": \"f19439a2677a68b46d3ee24acce27ecc4778c10b\", \"live\": true, \"id\": \"xb57988ed9471c830\"}", "{\"sha\": \"87eb31ead06c13a3044b39bb3915a53ac59676a7\", \"live\": true, \"id\": \"xc58f95858e587018\"}", "{\"sha\": \"fcd1c6822496a094c0147e2cd12ddc4407fafeaa\", \"live\": true, \"id\": \"x369a2fa52fac7021\"}", "{\"sha\": \"33dc8dd92107e954c8cf047b20a2f439b7ff2050\", \"live\": true, \"id\": \"x337197da95785258\"}", "{\"sha\": \"95cd0abb27c44e82b62dae64f7c3ba0477698c41\", \"live\": true, \"id\": \"x845b7d7e78788012\"}", "{\"sha\": \"75766c8dc5fba196d0a3302857944cff0087b774\", \"live\": true, \"id\": \"x498c8b01dd75a761\"}", "{\"sha\": \"906d5fe36b52d3ed93ea29dc735536e1f8a88ed3\", \"live\": true, \"id\": \"x2455c8874fcb7a1b\"}", "{\"sha\": \"7a2400ae2fa7d7f797c9de75505a37d6e4101156\", \"live\": true, \"id\": \"xa9a019bef69a98c4\"}", "{\"sha\": \"146e8056f6d98b3eb05547ea1edf127b75816ab2\", \"live\": true, \"id\": \"x95c7462d2f72f7ba\"}", "{\"sha\": \"3161ebd6d8ee4666cfc9e0053fe4e9c8b101e99f\", \"live\": true, \"id\": \"x496e2460eb188723\"}", "{\"sha\": \"6e77c47fb53a9d27db2cd9a7ac41c7d71e119005\", \"live\": true, \"id\": \"xee87963dea9ac9a1\"}", "{\"sha\": \"4cf9d1c729e0a9d6cb6f8ed9777ed22fa514469d\", \"live\": true, \"id\": \"x98c42f0bcd5cc1fa\"}", "{\"sha\": \"d299672acd0cf7c4f6cecfc59a74659f6bcfb658\", \"live\": true, \"id\": \"x65d8edfa857cdd8e\"}", "{\"sha\": \"547e0f554f839e2f028aba5882fc21434447ae35\", \"live\": true, \"id\": \"x0298457423db98eb\"}", "{\"sha\": \"5ae4d9028c59313dd0ccb2852471724a2e11b576\", \"live\": true, \"id\": \"xf4ebeaf5d552bdf1\"}", "{\"sha\": \"7d40954e2cc49b21850a3fe8ec53f2fe848dfefc\", \"live\": true, \"id\": \"xb4f9de818ad908bc\"}", "{\"sha\": \"64e8dbde45fb19cde1793a94e3917a1fd90b7fdf\", \"live\": true, \"id\": \"x2308f943005b944c\"}", "{\"sha\": \"2c42b520eafc6ea2ecfb44afb0779caa4878a372\", \"live\": true, \"id\": \"x3fbebd4d996b7148\"}", "{\"sha\": \"0f072968a826b87aa2475c939a4134ad6151eb74\", \"live\": true, \"id\": \"x0438ca3a26c0f729\"}", "{\"sha\": \"174252ee16cc15fa749a1d1554c34fda69d47a05\", \"live\": true, \"id\": \"xf5a0a552a9b31489\"}"], "description": "Given two numbers in scientific notation, practice adding and subtracting them.", "basepoints": 10.0, "path": "adding-and-subtracting-in-scientific-notation/", "slug": "adding-and-subtracting-in-scientific-notation", "kind": "Exercise", "name": "adding-and-subtracting-in-scientific-notation", "seconds_per_fast_problem": 4.0, "prerequisites": ["scientific_notation"], "exercise_id": "adding-and-subtracting-in-scientific-notation"}, "test-your-knowledge--the-evolutionary-causes-of-biodiversity": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/biodiversity-origin/evolutionary-causes/test-your-knowledge-the-evolutionary-causes-of-biodiversity/", "id": "test-your-knowledge--the-evolutionary-causes-of-biodiversity", "display_name": "Test your knowledge: the evolutionary causes of biodiversity", "title": "Test your knowledge: the evolutionary causes of biodiversity", "all_assessment_items": ["{\"sha\": \"d7d8932a9404aaf6341f419307d27b24b2888288\", \"live\": true, \"id\": \"xb4fcb0ce741fb094\"}", "{\"sha\": \"d040a805f765774bbf13bb31b95eb92689790c79\", \"live\": true, \"id\": \"xcc71aa5cea1ae609\"}", "{\"sha\": \"f2bbb382796edc64aca765dd88d09bcd16339cea\", \"live\": true, \"id\": \"x966ed01e6bd57715\"}", "{\"sha\": \"d54c0e74c6323635f337c07f2226e9d63c6f97b9\", \"live\": true, \"id\": \"xe231390096480090\"}", "{\"sha\": \"5e8091df8fbc39669545666b8eb731788dca45bd\", \"live\": true, \"id\": \"x9ae97e7901fc6b10\"}", "{\"sha\": \"a56c5f10ee6e85f2446a7e03413143f1aed2edfb\", \"live\": true, \"id\": \"x4d0ff828de9b7532\"}", "{\"sha\": \"145b8ae58640168fd3eefc64c6b5585f5c4294bd\", \"live\": true, \"id\": \"xe3dea24f266fd573\"}", "{\"sha\": \"527964ac84b08deae35d29900348447128adab91\", \"live\": true, \"id\": \"x845c024f0e9e3940\"}", "{\"sha\": \"be0dbe33a684b15c726817f7dd51c6c7e7ea37ea\", \"live\": true, \"id\": \"x278e7ad23505f865\"}", "{\"sha\": \"529e6777e04461c06ed7ca83a815979357695f12\", \"live\": true, \"id\": \"x1af5a1907068119f\"}", "{\"sha\": \"939ee77d14fe39102bb67076af05c158f3b9a014\", \"live\": true, \"id\": \"x9c2ee968a565a477\"}", "{\"sha\": \"fc0a088f7c6238544a279201331f3378ea525521\", \"live\": true, \"id\": \"xa0a2d55c7b648ff8\"}", "{\"sha\": \"0c2acacb6d9951a58458bb604a60dc288aa07172\", \"live\": true, \"id\": \"xb8d7b57cb287b3ed\"}"], "description": "Test your knowledge: the evolutionary causes of biodiversity", "basepoints": 10.0, "slug": "test-your-knowledge-the-evolutionary-causes-of-biodiversity", "kind": "Exercise", "name": "test-your-knowledge--the-evolutionary-causes-of-biodiversity", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge--the-evolutionary-causes-of-biodiversity"}, "xu-bing--book-from-the-sky-quiz": {"uses_assessment_items": true, "path": "khan/humanities/global-culture/conceptual-performance/xu-bing-book-from-the-sky-quiz/", "id": "xu-bing--book-from-the-sky-quiz", "display_name": "Xu Bing, Book from the Sky (quiz)", "title": "Xu Bing, Book from the Sky (quiz)", "all_assessment_items": ["{\"sha\": \"eda14e23388749d4276574a7533fa25325ea6438\", \"live\": true, \"id\": \"xbb10c6103bf5b286\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8608f66655fcd2289dabf379d4992a951027696a\", \"live\": true, \"id\": \"x6b1e03cf60b8d5ea\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"badb8f42b8079bec032f9ed3fbb428944545f9ad\", \"live\": true, \"id\": \"x8e559b0d1e521a89\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83d219354d846df722c118bbe10d3a31875b12fa\", \"live\": true, \"id\": \"x65ecf8a95cee32de\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ee4e51c573c5389c6a23a933670f9204f812c022\", \"live\": true, \"id\": \"x94c3e393c6099152\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "xu-bing-book-from-the-sky-quiz", "kind": "Exercise", "name": "xu-bing--book-from-the-sky-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "xu-bing--book-from-the-sky-quiz"}, "volume_2": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-volume/volume_2/", "id": "volume_2", "display_name": "Volume word problems", "title": "Volume word problems", "all_assessment_items": ["{\"sha\": \"7ef5780410d804d7f45bd58db69876cad9b5cfb9\", \"live\": true, \"id\": \"x660af050e995318a\"}", "{\"sha\": \"7dd3ca4175fb86bd59f200defc131de102dec064\", \"live\": true, \"id\": \"xe33d9d803d3acf70\"}", "{\"sha\": \"63c3602fdb081446de7f19f74c4aa80301218f0f\", \"live\": true, \"id\": \"xf4f4eb1596206c7a\"}", "{\"sha\": \"c876edb3076d852373f4a380a3fcfbbd7bb571d6\", \"live\": true, \"id\": \"x6b1bbdafe58e7980\"}", "{\"sha\": \"5c88a653e6044f54802d8b9af22e3fab949bd238\", \"live\": true, \"id\": \"x5645d2fe43d5340d\"}", "{\"sha\": \"e3cd4ea4d0e27e175400db1f3bedd939d74fd57d\", \"live\": true, \"id\": \"x48365e94731a232b\"}", "{\"sha\": \"d8069d8537a62abfe41fc0fbbd1bd0022ccb0848\", \"live\": true, \"id\": \"x8224c35dd2618bd6\"}", "{\"sha\": \"cbf6bbc40ba5f2222276bc37358a509abc2ed429\", \"live\": true, \"id\": \"x0a499d32f750a4c3\"}", "{\"sha\": \"3e0d2c73997e97dda3733fe95ba384785653fe91\", \"live\": true, \"id\": \"x42ed3db5029770cd\"}", "{\"sha\": \"45252a5d0df75c7ceb421be29022f8bb8fd8d76d\", \"live\": true, \"id\": \"x80583c203fb28c57\"}", "{\"sha\": \"167c2e66028768647a713bd5410b15783eb95f3f\", \"live\": true, \"id\": \"x964cfde7ebc9c73c\"}", "{\"sha\": \"a756397fdfb748ae50de9af87d68a47e4a938e06\", \"live\": true, \"id\": \"x43060b7e740f6466\"}", "{\"sha\": \"f9285984f13c519608aac06bafcf86635bc5bf58\", \"live\": true, \"id\": \"xc29aa0723943e206\"}", "{\"sha\": \"9c6ccbd179078e64f5f14b6186caae2d34f9d542\", \"live\": true, \"id\": \"xaec49c653dec8945\"}", "{\"sha\": \"42435b6da12676a4fffbd6d038c895cff98945c4\", \"live\": true, \"id\": \"x181bf92d700ebfb3\"}", "{\"sha\": \"4a75b0dc10e1616799ab2fdbe9d0d8f9c754eb0d\", \"live\": true, \"id\": \"x97b5cb55fb71ad42\"}", "{\"sha\": \"a2e9cfbf5d4682db442ea66017da97bdb87d0d02\", \"live\": true, \"id\": \"x91b1d843654b7531\"}", "{\"sha\": \"b728a3e618073d40fdfdb449a85e2cbe1380a52e\", \"live\": true, \"id\": \"xb4191bbac164c869\"}", "{\"sha\": \"0c0ff2d814cc4e7f3cbe1e131a6f6cb349109932\", \"live\": true, \"id\": \"x7f5113615eaadefd\"}", "{\"sha\": \"5ffc5b951835c3029652ea749f463ebad9a4d308\", \"live\": true, \"id\": \"x63d2f18558aa9e98\"}"], "description": "Find volume of rectangular prisms to solve word problems.", "basepoints": 22.0, "slug": "volume_2", "kind": "Exercise", "name": "volume_2", "seconds_per_fast_problem": 21.0, "prerequisites": ["volume_1"], "exercise_id": "volume_2"}, "volume_1": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-measurement/on-volume/volume_1/", "id": "volume_1", "display_name": "Volume 1", "title": "Volume 1", "description": "Find volume of a rectangular prism with labeled sides. \u00a0Find a missing side length on a rectangular prism when given the volume.", "basepoints": 17.0, "slug": "volume_1", "kind": "Exercise", "name": "volume_1", "seconds_per_fast_problem": 10.0, "prerequisites": ["volumes-with-unit-cubes"], "exercise_id": "volume_1"}, "extreme-values-from-graphs": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/absolute-relative-maxima-minima/extreme-values-from-graphs/", "id": "extreme-values-from-graphs", "display_name": "Extreme values from graphs", "title": "Extreme values from graphs", "all_assessment_items": ["{\"sha\": \"8d8fd80f9dc82c01cf2c7a570178e9a6fe83fde1\", \"live\": true, \"id\": \"xdbc76e7cbaa28fac\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dc6c87eb8e923648939528393654581c24316a21\", \"live\": true, \"id\": \"xb4fd95ffc9110cbe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ba83f327cbb60ea8614925c93f23717c5e75063e\", \"live\": true, \"id\": \"x375da2f9887bb9d1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"35b79a50115bf38f0a12a90a0b07ff54ea3053cc\", \"live\": true, \"id\": \"x9920eea1a5876611\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"315583dc79ef20f86b9a6709d4a48aae1089f656\", \"live\": true, \"id\": \"x8f41b3ca2ec7d825\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d25a635a5317e9b272a8aaceb405470c3408c305\", \"live\": true, \"id\": \"x1790a28a7606eb8d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f04de99833a9726a2e09e02eb0530bb9e71de994\", \"live\": true, \"id\": \"x6af360e163139ed7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"77da65b15bb357f05105f1666f9fd8887bc9c76a\", \"live\": true, \"id\": \"xfb17891231c9423a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f46714037d6197cdbd8b39759e2717a10d3d2ceb\", \"live\": true, \"id\": \"x89947fa640b430f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"04f0dbe06f2ac2d85e72006f3241e35e344feec2\", \"live\": true, \"id\": \"xb04e90bf6663c9c7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d170194ba39772203f94804f6717c86f31f4f09\", \"live\": true, \"id\": \"x36d56c1378d2b83b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b743f3e047c80751b1035ab4b1b5f5d5068b11f3\", \"live\": true, \"id\": \"x28ca4956a66f5a65\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e6dfa9d5b3ac2c5def2eef51867fcdec64be3a90\", \"live\": true, \"id\": \"x7b83fa2507a3088d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a9379a6665fd6133651492c70030fea62f0f30c\", \"live\": true, \"id\": \"x90a1368ca92c4da8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"924aa0597b84d2e20f488efc001a14bdf22e2584\", \"live\": true, \"id\": \"x0944ed0671e303df\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"622659a71f3a64b05acaad9c05209a121d65ccfd\", \"live\": true, \"id\": \"xef7c3817dd4ddf1f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7367f715e433b85cea987d74b8addc43bfea289\", \"live\": true, \"id\": \"x19a2a500f612b35d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e31603687cea874364a72b6e2f09fc988cfcd9e\", \"live\": true, \"id\": \"x558b46926a39acf3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2fbc3e30b908dd93eaf526337ab8341982ceda4\", \"live\": true, \"id\": \"x463afbc01f8ee369\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1fd343d7da8c449a81ea598e9d0a92b9102e680a\", \"live\": true, \"id\": \"x4498ee224c465877\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"292bbb122dd46592861ad8f8fe4a65d246e63aff\", \"live\": true, \"id\": \"x4610daf24d5a1729\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3e08abe131eda72c69fa9a487c1bcf7f9b65d30d\", \"live\": true, \"id\": \"xb4fc4a356a2deec4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cb8070ec152acf12f0007393f5d47279375fe0ae\", \"live\": true, \"id\": \"x10f4ca4d35ca72b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fe828d668601abd7b070e13d4e8f6025b3ade66f\", \"live\": true, \"id\": \"x6e19a8cc8d68dc43\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5ec9f4feceeeacd87c2c8829b4ae6532adbdaad5\", \"live\": true, \"id\": \"x99e61347b5bc2b52\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1082bd601543c250dfaeb9b110da4fc2a56d314e\", \"live\": true, \"id\": \"xab32c54c0f81b81b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca66facdc5425792f4408f6f318fa70d6a45a935\", \"live\": true, \"id\": \"x9e0326ca3d36900e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 23.0, "slug": "extreme-values-from-graphs", "kind": "Exercise", "name": "extreme-values-from-graphs", "seconds_per_fast_problem": 25.0, "prerequisites": ["applications-of-derivatives--motion-along-a-line", "applications-of-derivatives--tangent-and-normal-lines", "applications-of-differentiation-in-biology--economics--physics--etc"], "exercise_id": "extreme-values-from-graphs"}, "division_4": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/division_4/", "id": "division_4", "display_name": "Multi-digit division", "title": "Multi-digit division", "description": "Practice dividing multi-digit whole numbers. These problems use remainders.", "basepoints": 27.0, "slug": "division_4", "kind": "Exercise", "name": "division_4", "seconds_per_fast_problem": 47.0, "prerequisites": ["division_3"], "exercise_id": "division_4"}, "division_2": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/division_2/", "id": "division_2", "display_name": "Division with remainders", "title": "Division with remainders", "description": "Divide 3-digit or 4-digits by 1 digit, with remainder.", "basepoints": 25.0, "slug": "division_2", "kind": "Exercise", "name": "division_2", "seconds_per_fast_problem": 31.0, "prerequisites": ["division_1.5"], "exercise_id": "division_2"}, "division_3": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/division_3/", "id": "division_3", "display_name": "Division by 2 digits", "title": "Division by 2 digits", "description": "Divide 3-digit and 4-digit numbers by a 2-digit number without remainders.", "basepoints": 21.0, "slug": "division_3", "kind": "Exercise", "name": "division_3", "seconds_per_fast_problem": 18.0, "prerequisites": ["division_2", "multiplication_4"], "exercise_id": "division_3"}, "division_1": {"uses_assessment_items": false, "path": "khan/math/arithmetic/multiplication-division/delightful_division/division_1/", "id": "division_1", "display_name": "1-digit division", "title": "1-digit division", "description": "Find the missing number in division equations with one-digit quotients.", "basepoints": 10.0, "slug": "division_1", "kind": "Exercise", "name": "division_1", "seconds_per_fast_problem": 4.0, "prerequisites": ["division_0.5"], "exercise_id": "division_1"}, "chronic-myelogenous-leukemia-and-the-philadelphia-chromosome-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/chronic-myelogenous-leukemia-and-the-philadelphia-chromosome-/", "id": "chronic-myelogenous-leukemia-and-the-philadelphia-chromosome-", "display_name": "Chronic myelogenous leukemia and the Philadelphia chromosome", "title": "Chronic myelogenous leukemia and the Philadelphia chromosome", "all_assessment_items": ["{\"sha\": \"15d4ede7d095750fa3f4eb3f8ec33be3312ff832\", \"live\": true, \"id\": \"xbeecb1d4134ba651\"}", "{\"sha\": \"cf9a5f1c2f845a807a8000469a576e5c8758f29f\", \"live\": true, \"id\": \"x88c9b274ae8ba128\"}", "{\"sha\": \"ad4717f1dd547995c54f40170a34f40aee6ebed3\", \"live\": true, \"id\": \"x78f357421f67e94b\"}", "{\"sha\": \"036c646d99ea37b7e7c8e93012be4f44f88ed818\", \"live\": true, \"id\": \"x538392557cf5adf8\"}", "{\"sha\": \"71d02570d59453af455ce36497dfb92031d87cef\", \"live\": true, \"id\": \"x849826fb1b7b4b3b\"}"], "description": "Questions related to the circulatory system", "basepoints": 10.0, "slug": "chronic-myelogenous-leukemia-and-the-philadelphia-chromosome-", "kind": "Exercise", "name": "chronic-myelogenous-leukemia-and-the-philadelphia-chromosome-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "chronic-myelogenous-leukemia-and-the-philadelphia-chromosome-"}, "performing-rotations-on-the-coordinate-plane": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-transformations/performing-rotations-on-the-coordinate-plane/", "id": "performing-rotations-on-the-coordinate-plane", "display_name": "Performing rotations", "title": "Performing rotations", "all_assessment_items": ["{\"sha\": \"fa5440a02ad5ace376074dfd9b5bef3cba67063e\", \"live\": true, \"id\": \"xeb9cf66d65232b88\"}", "{\"sha\": \"43541b18a181b0a08e5ff0f45bbe4411bcc0a304\", \"live\": true, \"id\": \"xca0f34e0ac3cc73e\"}", "{\"sha\": \"bb65d560bf787438bc546b28941e33bc083ad305\", \"live\": true, \"id\": \"x48dd049e1ad60ad4\"}", "{\"sha\": \"44636aad3e0e8bb35e00b9d863fd8128ee398cb1\", \"live\": true, \"id\": \"x7f912e1abd3c14af\"}", "{\"sha\": \"859a68fab583258c0c1dfa466713cd29ad097200\", \"live\": true, \"id\": \"x1dfa5d804b9cfcd0\"}", "{\"sha\": \"c08fb446dbe7565a177f0d11f8ba072a2c73b17d\", \"live\": true, \"id\": \"x4c79db0ac41ad6ee\"}", "{\"sha\": \"9d42c620cee776c09521b1710692efe980b9251b\", \"live\": true, \"id\": \"xb115bb2881c3434f\"}", "{\"sha\": \"635888cd18c015cbf1606434f5db34b72ccb5188\", \"live\": true, \"id\": \"x0c7569f04f588bc2\"}", "{\"sha\": \"5cbbcb043a052df675a1e33a06c8df911a3afba5\", \"live\": true, \"id\": \"xbe08f82b70dae7cf\"}", "{\"sha\": \"8e432749f60bb418b0a6c2dc35d62e3a4381d2bf\", \"live\": true, \"id\": \"x5022daf0c39ad652\"}", "{\"sha\": \"001e60034f5a43fb2d3cffbe3fc746cc754e6325\", \"live\": true, \"id\": \"xa38eb2234751cb7b\"}", "{\"sha\": \"31da90f21a3d8a1a30daae12848da1810211cd9f\", \"live\": true, \"id\": \"xb03b64f90dfb965e\"}", "{\"sha\": \"90f68a85bee2125a86394ca3c30490cea2ac367d\", \"live\": true, \"id\": \"x0449b6987091041d\"}", "{\"sha\": \"ee225f6e436f8638905731ad271298141fb722bd\", \"live\": true, \"id\": \"x7ea460761fe54761\"}", "{\"sha\": \"09ac86fc632b6576c279c694525f697d53e35b2d\", \"live\": true, \"id\": \"xec019b0d2c581b57\"}", "{\"sha\": \"5caff050440c7f17c5e990ed1f9199a253f987c6\", \"live\": true, \"id\": \"xcc24f526af4e8b8c\"}", "{\"sha\": \"619ddc8eb3a6112d17e9e78165ce464cf13dd33c\", \"live\": true, \"id\": \"x836da77c021b2620\"}", "{\"sha\": \"7d3cb94f606ba539231ab0725cf6bfe0a5d6eab0\", \"live\": true, \"id\": \"xeb6cef5fb6dc4f68\"}", "{\"sha\": \"dae07197b8a90e6f431dcc3c14119d0bfd4d9a88\", \"live\": true, \"id\": \"x6eeb0f28c3dd745f\"}", "{\"sha\": \"10dcda218997fadda1bc134c6cf02f7719593c9d\", \"live\": true, \"id\": \"xba6acc7f889ccc36\"}"], "description": "Use the interactive transformation tool to perform rotations.", "basepoints": 10.0, "slug": "performing-rotations-on-the-coordinate-plane", "kind": "Exercise", "name": "performing-rotations-on-the-coordinate-plane", "seconds_per_fast_problem": 4.0, "prerequisites": ["measuring_angles", "identifying_points_1"], "exercise_id": "performing-rotations-on-the-coordinate-plane"}, "cc-radians-and-arc-length": {"uses_assessment_items": true, "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/cc-radians-and-arc-length/", "id": "cc-radians-and-arc-length", "display_name": "Radians and arc length", "title": "Radians and arc length", "all_assessment_items": ["{\"sha\": \"d0ba823f48b7b7c345541753be7f570be4940198\", \"live\": true, \"id\": \"x28c44983d4a7df09\"}", "{\"sha\": \"a7a4cd3c67df9246b4b31b3e824a190437c12738\", \"live\": true, \"id\": \"x6b6c9d6d7205afc4\"}", "{\"sha\": \"bf296d89f6e848f4cb94b231a98ccab5aba4ff09\", \"live\": true, \"id\": \"x878135f4165a85ee\"}", "{\"sha\": \"36d7415eacf9ae9560794a36d23a5e49c2281483\", \"live\": true, \"id\": \"x4ba370dbcdcef494\"}", "{\"sha\": \"734241e487706f2fdc45ecec2fc3ba5db37c3721\", \"live\": true, \"id\": \"x41bd342fe49b6fc3\"}", "{\"sha\": \"7a78c08ed9198273fc46fec19ebddab1c8002269\", \"live\": true, \"id\": \"xfccb832eeb0b8f87\"}", "{\"sha\": \"0779997cb0208e21396fd2738e255951d0c40abe\", \"live\": true, \"id\": \"x780085588c54dcf8\"}", "{\"sha\": \"1b2fbb1ba22cf1b8a29ab0c7c1b66a8c43d71872\", \"live\": true, \"id\": \"xdab48a511d45b0e0\"}", "{\"sha\": \"ae292b572291406e4eb725b67600fbf2ea819f89\", \"live\": true, \"id\": \"xe19f376b51e728f2\"}", "{\"sha\": \"524f4c424a8435d73648c994e13cfd278ba65818\", \"live\": true, \"id\": \"xa84c2b7703a14c98\"}", "{\"sha\": \"98a1bf6fc6cd8a6e9f910088a17396c516ed1e3d\", \"live\": true, \"id\": \"x7311e4189076ebeb\"}", "{\"sha\": \"68ebbb3bb1fe1def2f98520e8679b3e15374cd7f\", \"live\": true, \"id\": \"x3c9accde13ca32bc\"}", "{\"sha\": \"1cf955d04cae9ad03fa182fc7f14f592c98006cd\", \"live\": true, \"id\": \"x9eda62930dc5b1c6\"}", "{\"sha\": \"d6a2751c44bce5676282b095cfeff16daa32f982\", \"live\": true, \"id\": \"x60448c21ecfd6193\"}", "{\"sha\": \"384ac1e2d46d7f6f8657f3f61e21ec08ae5fb3b3\", \"live\": true, \"id\": \"x73ff5b66a0e707fb\"}", "{\"sha\": \"b3b973d4203b5862ea05fc4e3cfde802d177c5d6\", \"live\": true, \"id\": \"xa305c59aff4731be\"}", "{\"sha\": \"8731de15f18e18017e99b35c0963c00c116abb91\", \"live\": true, \"id\": \"x10ec939caf841d5d\"}", "{\"sha\": \"efebf99163cdc4ee59048078dffece4f75261f5a\", \"live\": true, \"id\": \"x132e69517660529e\"}", "{\"sha\": \"764fa36f0ac59f9b84ccd2bcddaa7dce70bfc64e\", \"live\": true, \"id\": \"x5afd8fca0fb9d1a9\"}", "{\"sha\": \"cea4d2b7ea8af05c45cac8034652f7ef6172b5b5\", \"live\": true, \"id\": \"x1815a2da66009b7f\"}", "{\"sha\": \"921eb789fa5511b18c46c5b5065f3e160680909f\", \"live\": true, \"id\": \"x496cd74cf2f0a291\"}", "{\"sha\": \"12df57451e4d6f473183c4e9fbcb9f39da0f7ae5\", \"live\": true, \"id\": \"x9f7532cd2f58bd9e\"}", "{\"sha\": \"197091b46b9498a62ee3a3fb4fcd5d7f4e13fb50\", \"live\": true, \"id\": \"x9506ebd98208917a\"}", "{\"sha\": \"9ab52ebc4a707d936a8ef7ed94e4c325fbdbcdac\", \"live\": true, \"id\": \"xf1d342ef9f7d8c50\"}"], "description": "", "basepoints": 10.0, "slug": "cc-radians-and-arc-length", "kind": "Exercise", "name": "cc-radians-and-arc-length", "seconds_per_fast_problem": 4.0, "prerequisites": ["degrees_to_radians"], "exercise_id": "cc-radians-and-arc-length"}, "matrix_determinant": {"uses_assessment_items": false, "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/matrix_determinant/", "id": "matrix_determinant", "display_name": "Determinant of a 2x2 matrix", "title": "Determinant of a 2x2 matrix", "description": "Find the determinant of a 2x2 matrix", "basepoints": 13.0, "slug": "matrix_determinant", "kind": "Exercise", "name": "matrix_determinant", "seconds_per_fast_problem": 6.0, "prerequisites": ["multiplying_a_matrix_by_a_matrix"], "exercise_id": "matrix_determinant"}, "matrix_transpose": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/matrix_transpose/", "id": "matrix_transpose", "display_name": "Matrix transpose", "title": "Matrix transpose", "all_assessment_items": ["{\"sha\": \"7fe00c5bd47180dde2fb05c258a01ed1e6617cfe\", \"live\": true, \"id\": \"x781f951779e72b82\"}", "{\"sha\": \"9fb094fbbefc2e531e7bab7b78fa2252f2c6076f\", \"live\": true, \"id\": \"x449766217dbafad2\"}", "{\"sha\": \"3cec02df699dca955f9abdba6e7758afa25ab812\", \"live\": true, \"id\": \"xca8f98914ba5b9ab\"}", "{\"sha\": \"ddbafb101d6baccfc9092a706ff3addfd7f9b190\", \"live\": true, \"id\": \"x94d45c4efa265a83\"}", "{\"sha\": \"93b3bf5672d2dcdfe95c943667b5e75d66273a46\", \"live\": true, \"id\": \"x24fc98dae586c611\"}", "{\"sha\": \"546ce5ded1d2ac6677efa535cd8c45ed5c1ecaf6\", \"live\": true, \"id\": \"xd747bdb35f05fad0\"}", "{\"sha\": \"11af0edc46344098bc806bb59a22e29c7d17d3b6\", \"live\": true, \"id\": \"xb90520979f17b033\"}", "{\"sha\": \"d098c2f3118295a37e0cbb1fcaa5fd424610c53c\", \"live\": true, \"id\": \"x70ac74cfdc9a34b7\"}", "{\"sha\": \"12a50b20041fa2629f952bf521eb714eea01588b\", \"live\": true, \"id\": \"x8de4136be560435c\"}", "{\"sha\": \"85cd63779378bec433d46b0fb341d4a64cb2ae97\", \"live\": true, \"id\": \"xd7951a81246818fe\"}", "{\"sha\": \"11461790eaddc87b7ef86f80687f4a9e12988851\", \"live\": true, \"id\": \"xbfccdb2e7a8deedb\"}", "{\"sha\": \"c94e6ee4719cd34f518e6e8d1cfff8b6f62a090d\", \"live\": true, \"id\": \"x12ccfca8bf810f08\"}", "{\"sha\": \"a6e6b22e747e5755739c6ea2b33bc137a22da793\", \"live\": true, \"id\": \"xddabc2598e1b7804\"}", "{\"sha\": \"7ac66d458cf64ddcb301522389a60f378c570bec\", \"live\": true, \"id\": \"xdb31203098115556\"}", "{\"sha\": \"d45e3e4f6eeb9db73887836c2b66196d93f56fe2\", \"live\": true, \"id\": \"x6573557ea24422cd\"}", "{\"sha\": \"ae1766781e723d7454e4d6070fc7700f6221fa54\", \"live\": true, \"id\": \"x8349aaaba4fd736f\"}", "{\"sha\": \"c46cc3727b0e4089ab38b088d6f07c55d54fb063\", \"live\": true, \"id\": \"xdf98d99afa410535\"}", "{\"sha\": \"64716d7b8a858624fb276e426a80b02bd3095f05\", \"live\": true, \"id\": \"x2b4e012f354ef308\"}", "{\"sha\": \"7002840a55feefce59ccf5e8f567a516b1b09b14\", \"live\": true, \"id\": \"x85d71a2e91d20d28\"}", "{\"sha\": \"b79e86a249bd719558af61f8baec1b1a37c577ec\", \"live\": true, \"id\": \"x7b9aef1865ac5a89\"}", "{\"sha\": \"7646a7101b5db6a4d28f844a2eb2cddca3b0ce14\", \"live\": true, \"id\": \"xaf3f378d967cc6f7\"}", "{\"sha\": \"2db8d3cded2cb6b431fb4afc4fff0906017b4246\", \"live\": true, \"id\": \"xb73eade46eb5623b\"}", "{\"sha\": \"618f03134dcbb3c6faf3e89acb32962917fd3c50\", \"live\": true, \"id\": \"x88e97cb3837c287f\"}", "{\"sha\": \"a910008548933191520e31ff349c503c3302190a\", \"live\": true, \"id\": \"x6531f03de86a5065\"}", "{\"sha\": \"f937409ca1348e8d2a1bb3cb6fe22fe377084241\", \"live\": true, \"id\": \"x368ddb918554d4ca\"}", "{\"sha\": \"92aa3f1ae1c87c575c3493345f365bdae6d0faca\", \"live\": true, \"id\": \"xa2a6dd9041d5a809\"}", "{\"sha\": \"3b15271f9b83abe44bdbaf012e3400868f55d246\", \"live\": true, \"id\": \"x2c0b281f32b67344\"}", "{\"sha\": \"2ebf7ec74baaa1af1c8180979fa9e27b48f0adcf\", \"live\": true, \"id\": \"x3661ad25715d8bd7\"}", "{\"sha\": \"864b3e0de6c266ad542475733cacf849ca6b78b6\", \"live\": true, \"id\": \"x072131343cbbfc89\"}", "{\"sha\": \"26a3ddba984c1687f32e6425b52990b374cc7c57\", \"live\": true, \"id\": \"x23d1e7851833f10e\"}", "{\"sha\": \"5b1d0e51f42b80205f6fb053f6f001311eca3260\", \"live\": true, \"id\": \"xd255035ae834270b\"}", "{\"sha\": \"3abb8c12fb7ee2dd6a665f4aa27b42c617cef7b0\", \"live\": true, \"id\": \"x289edb4bfd834da8\"}", "{\"sha\": \"2c96534751496992349e2c68c4b84e09807ff49f\", \"live\": true, \"id\": \"xc31ee1d58901f459\"}", "{\"sha\": \"f76dc626054764650caf169a2b6eabd204c2a67f\", \"live\": true, \"id\": \"xe90e05088de1ebce\"}", "{\"sha\": \"4f1700ec7f2c6215e3b4dbcd6dfbae2ad08ecd3b\", \"live\": true, \"id\": \"xf2bd4a01e8fc8295\"}", "{\"sha\": \"9fa489cb3afc20132f785ef6fb00334dbbb37d08\", \"live\": true, \"id\": \"x9541747a9e446339\"}"], "description": "Transpose a matrix", "basepoints": 17.0, "slug": "matrix_transpose", "kind": "Exercise", "name": "matrix_transpose", "seconds_per_fast_problem": 10.0, "prerequisites": ["matrix_dimensions"], "exercise_id": "matrix_transpose"}, "shonibare--the-swing-quiz": {"uses_assessment_items": true, "path": "khan/humanities/global-culture/global-art-architecture/shonibare-the-swing-quiz/", "id": "shonibare--the-swing-quiz", "display_name": "Shonibare, The Swing Quiz", "title": "Shonibare, The Swing Quiz", "all_assessment_items": ["{\"sha\": \"fc398f32f26fa7465367f9cc0d1a6e400e363b3d\", \"live\": true, \"id\": \"xa76b2ef1d129d0c3\"}", "{\"sha\": \"d5d0746562fb0be9c4c43db3a8a78e5a95a64ff1\", \"live\": true, \"id\": \"x7fb27e231e750578\"}", "{\"sha\": \"b0b19cc8dcc012b83a6c43b05664fe329c2d6580\", \"live\": true, \"id\": \"x5847eff47ff9682c\"}", "{\"sha\": \"174e1e1bde45e4368c41f705d7f0a77365a16da6\", \"live\": true, \"id\": \"xb4e5428a62dce8c4\"}", "{\"sha\": \"101ecc7a19c19cbcbb586a7b95dfd0a339e384f3\", \"live\": true, \"id\": \"x0c4632373313eec4\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "shonibare-the-swing-quiz", "kind": "Exercise", "name": "shonibare--the-swing-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "shonibare--the-swing-quiz"}, "evaluating-a-definite-integral-from-a-graph": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/evaluating-a-definite-integral-from-a-graph/", "id": "evaluating-a-definite-integral-from-a-graph", "display_name": "Evaluating a definite integral from a graph", "title": "Evaluating a definite integral from a graph", "all_assessment_items": ["{\"sha\": \"12466f05b5ceb9d1f367500b7625df83bea6b732\", \"live\": true, \"id\": \"x14e20ffa371f7413\", \"perseus_api_major_version\": null}", "{\"sha\": \"60eacaa984e216a67919d1df1eea5d6dab21b3dd\", \"live\": true, \"id\": \"x2ed4d823165c7da3\", \"perseus_api_major_version\": null}", "{\"sha\": \"b1fba6f374e1ff21db89ead28b87d193c7aa2f16\", \"live\": true, \"id\": \"x3b3e609e0651976b\", \"perseus_api_major_version\": null}", "{\"sha\": \"e06b82058e28a4f256f02e4ef5ec9bdde0d89e75\", \"live\": true, \"id\": \"x94016aab60bbb27a\", \"perseus_api_major_version\": null}", "{\"sha\": \"5179a89e5214741e3ebdda2786dc0f3a57ef184a\", \"live\": true, \"id\": \"xd80791698fcc2091\", \"perseus_api_major_version\": null}", "{\"sha\": \"673f75ba873e1796007788227571b80d53e12405\", \"live\": true, \"id\": \"x101504e22f573697\", \"perseus_api_major_version\": null}", "{\"sha\": \"2a9824c8175c6815a8ec0571f747735f21b0d9bb\", \"live\": true, \"id\": \"x2c5171f24019d6ca\", \"perseus_api_major_version\": null}", "{\"sha\": \"0d741ae05c601c39e663037e9e46a74b8cd2e479\", \"live\": true, \"id\": \"x8b85efffa7b1739e\", \"perseus_api_major_version\": null}", "{\"sha\": \"f0792c6fd6952da1da35cbf9bcf687627979d406\", \"live\": true, \"id\": \"x055f53e65c771cb6\", \"perseus_api_major_version\": null}", "{\"sha\": \"c94b510579aff69013346a1e31e4cb171994bcf1\", \"live\": true, \"id\": \"x4b53bf9a932d8a00\", \"perseus_api_major_version\": null}", "{\"sha\": \"3eb934277d15a9604ee2537971a0fe48cb48675c\", \"live\": true, \"id\": \"x98854e85af369b9d\", \"perseus_api_major_version\": null}", "{\"sha\": \"d700820aa7c705c727eb512c597f0d77c26f3b30\", \"live\": true, \"id\": \"x87cf1e2bb5787bb0\", \"perseus_api_major_version\": null}", "{\"sha\": \"749e4f4d4b8a73bb70669ca3acb9d832f3025cdc\", \"live\": true, \"id\": \"xa58634aa42c3d11e\", \"perseus_api_major_version\": null}", "{\"sha\": \"200c2f1dd4d035c46e4b766b393ddaf247c9060e\", \"live\": true, \"id\": \"xdb18f5e5805243dc\", \"perseus_api_major_version\": null}", "{\"sha\": \"3bd9fb6739d3ce6554b141cdf8bb986ab2d17f2e\", \"live\": true, \"id\": \"xcff9101552f7b85b\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c45e9045cad5bd43aefa4bf74739c38b73667dd\", \"live\": true, \"id\": \"x6338e81023bb3f2a\", \"perseus_api_major_version\": null}", "{\"sha\": \"206340eae7d3ffc5a5e40739c42e4259097f905d\", \"live\": true, \"id\": \"xd38878a56d161577\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0af6298d8b19ea1c182d15114bb821d8b7da27aa\", \"live\": true, \"id\": \"x6d656e0700ebeaaf\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e2524ffc2c947bb70f5a9237fd2c0ce84083b136\", \"live\": true, \"id\": \"xa466b829b4793a5e\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a171bae864c00675b27d73b3d3a55e8d7fb3282\", \"live\": true, \"id\": \"x046a70fe138db69e\", \"perseus_api_major_version\": null}", "{\"sha\": \"e148af968af823f16c2eb03968cd3812ea48fa61\", \"live\": true, \"id\": \"x5bd5862a6447116d\", \"perseus_api_major_version\": null}", "{\"sha\": \"482469889f8227a874911061a4669c5bab781d44\", \"live\": true, \"id\": \"x2bc295f33694bb88\", \"perseus_api_major_version\": 0}", "{\"sha\": \"84d1bb4697a74e9dd7345cfa56fe57636afd80c9\", \"live\": true, \"id\": \"x011a740e2d8da60c\", \"perseus_api_major_version\": null}", "{\"sha\": \"b1486a26cc6d1705e8182c23b759af3b0b2221bb\", \"live\": true, \"id\": \"x7cf27aeb43b3becd\", \"perseus_api_major_version\": null}", "{\"sha\": \"3f6d28b3f213f07e25221d55544abf6451a20f2b\", \"live\": true, \"id\": \"x098a7f9aa06f6472\", \"perseus_api_major_version\": null}", "{\"sha\": \"e0d876c8cb66a04fb617381081ce2bddee924d4d\", \"live\": true, \"id\": \"x54038e1281781b78\", \"perseus_api_major_version\": null}", "{\"sha\": \"abce291181b0c8a3108e13968414b53dc93852f0\", \"live\": true, \"id\": \"xc0bf890c66d84f95\", \"perseus_api_major_version\": null}", "{\"sha\": \"ce1fa1f8f274e015b7a0c21563d500c32e7cb38d\", \"live\": true, \"id\": \"x5cebeef6ac24d946\", \"perseus_api_major_version\": null}", "{\"sha\": \"a24a3936f5bbe166cde99c2443b78515cc141f06\", \"live\": true, \"id\": \"x8eba361ba119964c\", \"perseus_api_major_version\": null}", "{\"sha\": \"525b26ac064c379263e0a90eece84d956ec13517\", \"live\": true, \"id\": \"x2fad7e020d118977\", \"perseus_api_major_version\": null}", "{\"sha\": \"297a858ceb984075431be7dd3cb76436f11f2b3b\", \"live\": true, \"id\": \"xe6871aa27ef4eae2\", \"perseus_api_major_version\": null}", "{\"sha\": \"f12ba64b5b98b1c3bf005b5aee180a026f995e0d\", \"live\": true, \"id\": \"x8cee07b18839ed3e\", \"perseus_api_major_version\": null}", "{\"sha\": \"f21daea6726e7185b4873f87b7ec84351596d1e3\", \"live\": true, \"id\": \"xe45cefcaf606fecb\", \"perseus_api_major_version\": null}", "{\"sha\": \"82a7a49efcf189327ff665b5294d4daa42ba910f\", \"live\": true, \"id\": \"x9e4debe39805c083\", \"perseus_api_major_version\": null}", "{\"sha\": \"ae657a08fcd987998fc70a08af13111b11b84c80\", \"live\": true, \"id\": \"xa5d9b5f3d2085ebc\", \"perseus_api_major_version\": null}", "{\"sha\": \"14da5e823b38569e077520c3329dc5d7866d6488\", \"live\": true, \"id\": \"xee67c93edcab0a8d\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5d59cfdece09fb28098f0e2fc2727ec86aa8b53\", \"live\": true, \"id\": \"x1186ad934e5e0609\", \"perseus_api_major_version\": null}", "{\"sha\": \"7e4f7ebba483269fba032b84e109ea20d917cef3\", \"live\": true, \"id\": \"x6016d782d08a2b25\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "evaluating-a-definite-integral-from-a-graph", "kind": "Exercise", "name": "evaluating-a-definite-integral-from-a-graph", "seconds_per_fast_problem": 4.0, "prerequisites": ["the-definite-integral-as-the-limit-of-a-riemann-sum"], "exercise_id": "evaluating-a-definite-integral-from-a-graph"}, "subtract-tens": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens/subtract-tens/", "id": "subtract-tens", "display_name": "Subtract tens", "title": "Subtract tens", "all_assessment_items": ["{\"sha\": \"2daf03de453b9550c9e1c3e9d64735793aa9672f\", \"live\": true, \"id\": \"x3ac7f805574b79b3\"}", "{\"sha\": \"9947dcdaa7d7546dc2089a063dff2bc797d48276\", \"live\": true, \"id\": \"xef977efcc7b46529\"}", "{\"sha\": \"74ca8438364ea25cd30c6fc0b071e5f74c93eedd\", \"live\": true, \"id\": \"x4d70f0638865ff5e\"}", "{\"sha\": \"b8acf3be09834a613b8660286781e1aed7c7d151\", \"live\": true, \"id\": \"x50f6208e84496067\"}", "{\"sha\": \"7253750e737f187ee0a3170e6f1cca3d94c4f3e1\", \"live\": true, \"id\": \"xe7eeb91b8291f876\"}", "{\"sha\": \"f11e1f060596c53c73c162606042aacda4d51e4d\", \"live\": true, \"id\": \"xce4851b3df3ae3c3\"}", "{\"sha\": \"94e25764e33dac1647914ef3183aa7f2e92a590d\", \"live\": true, \"id\": \"xa32029084760fbec\"}", "{\"sha\": \"ddd0ab6b515ccf3eff6e3fb82bbf9ce803a5d508\", \"live\": true, \"id\": \"xcf7d379bc5ff99f2\"}", "{\"sha\": \"8724a7b870f264ea0ccd4063bb65869722b46442\", \"live\": true, \"id\": \"x9ea4264a72ba9067\"}", "{\"sha\": \"50f3771be803dcd8ba38c8b1490fa7efbdd00b05\", \"live\": true, \"id\": \"x556da1505d40c948\"}", "{\"sha\": \"3946346b9342a5a8f8a3568db88644e3b8af83c4\", \"live\": true, \"id\": \"x60f016240b91b9b0\"}", "{\"sha\": \"0734beaaf9403462f1a6c3a2e8ff05dfbffbbe07\", \"live\": true, \"id\": \"x9445f8f2643d09b1\"}", "{\"sha\": \"98456523a802f0382b06ddf59df6a972602719f1\", \"live\": true, \"id\": \"x4ea4c84c1b3525e0\"}", "{\"sha\": \"073fec31aa991c0a60f029242a30d08277d0aac8\", \"live\": true, \"id\": \"x55059031733665ce\"}", "{\"sha\": \"3e4cc68f302c24f4285f4d33ad2d45b199cdb492\", \"live\": true, \"id\": \"x46aeb86dcb01c90c\"}", "{\"sha\": \"84c12022037288d45f94e41137a7e276b28c6310\", \"live\": true, \"id\": \"xa4f6245d60ab22fe\"}", "{\"sha\": \"0a8245eb9eef55bc1cf2d46a7775cdd827a74aff\", \"live\": true, \"id\": \"x963c24e91720d9f3\"}", "{\"sha\": \"f4db3c78aaa3cf0cf75c0b649bacfc4a481d0398\", \"live\": true, \"id\": \"xdd54a2f51e20b3fc\"}", "{\"sha\": \"808371313d0a794da5f1bb280b82bf269296ad50\", \"live\": true, \"id\": \"x130b368886784502\"}", "{\"sha\": \"a0d0f7c2f690763410c6cd4e45d98f42c6308d4e\", \"live\": true, \"id\": \"x7a5e00dc64ebb058\"}"], "description": "Practice subtracting tens.", "basepoints": 10.0, "slug": "subtract-tens", "kind": "Exercise", "name": "subtract-tens", "seconds_per_fast_problem": 4.0, "prerequisites": ["groups-of-tens", "addition-and-subtraction-within-10"], "exercise_id": "subtract-tens"}, "ancient-observations": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/searchingforlife/exploring_mars_ancient/ancient-observations/", "id": "ancient-observations", "display_name": "Ancient observations", "title": "Ancient observations", "all_assessment_items": ["{\"sha\": \"1aed92cf6be8e4a46362714c841efb338bc164dd\", \"live\": true, \"id\": \"xeaca15cf0f23736f\"}", "{\"sha\": \"e791df407576e5b682793d2be3eaeb7586eca2a2\", \"live\": true, \"id\": \"x6494f6d9f6314481\"}", "{\"sha\": \"b783e9b7905cb56b65b6e75f37d1aa9fa9347be7\", \"live\": true, \"id\": \"x5c69646c8d4ae8cc\"}", "{\"sha\": \"0a6cec3e1fe062d2281ed768cb0ecf0b4a880612\", \"live\": true, \"id\": \"x47fdc2c0712faa68\"}", "{\"sha\": \"666f3189e4379394300c9a06d5e55a8e283cd071\", \"live\": true, \"id\": \"x9df8bfcb36c54ea3\"}", "{\"sha\": \"45304bd24c9af599917eca66876d99d6f57df476\", \"live\": true, \"id\": \"xd57f4d97088d03e5\"}", "{\"sha\": \"e155234cbace8a626016b7fb6a3a19b19849eb8b\", \"live\": true, \"id\": \"xf3dbf8ab0b1b167e\"}", "{\"sha\": \"8b96889fe753ffbb5c5055e32042f6670d4304bb\", \"live\": true, \"id\": \"xfc46c74989a4e816\"}", "{\"sha\": \"6b6dab659e096fe786736a26bede4608b634610a\", \"live\": true, \"id\": \"x93d152cf911c2d39\"}"], "description": "", "basepoints": 10.0, "slug": "ancient-observations", "kind": "Exercise", "name": "ancient-observations", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ancient-observations"}, "special_derivatives": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/product_rule/special_derivatives/", "id": "special_derivatives", "display_name": "Special derivatives", "title": "Special derivatives", "all_assessment_items": ["{\"sha\": \"c74ada53e3b5cee5a73da3c49718472513b0a6a8\", \"live\": true, \"id\": \"x4e96065fd54f9b42\"}", "{\"sha\": \"6c7b46412808bd8f906756054970c848d87f02c5\", \"live\": true, \"id\": \"x56c02fd926cef71a\"}", "{\"sha\": \"892f880636a758a93fa804bd126c9718c9bdba45\", \"live\": true, \"id\": \"x3526ea6f51c89354\"}", "{\"sha\": \"1d220be352f7054951359de3741d49c7b535e495\", \"live\": true, \"id\": \"x9ff706b9eb1c3664\"}", "{\"sha\": \"b8cfe307b47c3d808b1357451ced03fd25f3ae3d\", \"live\": true, \"id\": \"xc7ee2d267c3b05d8\"}", "{\"sha\": \"1852131201fba5fa8edc6ce7cc5e6d395aa8de93\", \"live\": true, \"id\": \"x3e7ace2c0333dc0a\"}", "{\"sha\": \"3c634ecf18ab57dca8e93c83a6b476db2fb0f832\", \"live\": true, \"id\": \"xedbf722ba7ba922b\"}", "{\"sha\": \"e4802b082aaf8b745ece34fc31468d4d0a669530\", \"live\": true, \"id\": \"xc446e181f6146327\"}", "{\"sha\": \"500db291c3eb85459a5c0b5b8891ff0a1ac04cb9\", \"live\": true, \"id\": \"xd73c83376ad464c4\"}", "{\"sha\": \"2f0f0bfdba1a40e934e5f9b4955827453c2581b2\", \"live\": true, \"id\": \"x87d7a2d8054fa7f6\"}", "{\"sha\": \"f07b8ab3ef0af7d8a1161dec9f36ca9bccbc2017\", \"live\": true, \"id\": \"xa611119f2418b7bb\"}", "{\"sha\": \"e8ea4c5aa3c3213a696aacaeb4c71b060e399a17\", \"live\": true, \"id\": \"xa5be4da374ecdf81\"}", "{\"sha\": \"766d01bb4298e7bfae64c04883cd29a2ee28ebd7\", \"live\": true, \"id\": \"x3b7738f53d1a1133\"}", "{\"sha\": \"c7ca37566392449ec91634f71902b074ebc32f18\", \"live\": true, \"id\": \"x4131db79e92077ea\"}", "{\"sha\": \"86b4dfb32e691b08143e04bdad2e846e5659ac1d\", \"live\": true, \"id\": \"x2480ac360521dc7e\"}", "{\"sha\": \"3f21b957db4e3816057d5519c09253147ceaee97\", \"live\": true, \"id\": \"x5f56df5c8062c13c\"}", "{\"sha\": \"10ca28fcde8eaca08a7a2b3ec941b7eab1528ac4\", \"live\": true, \"id\": \"xb44a88c568ec0708\"}", "{\"sha\": \"bcd999566b01d8c686c4057991884539d39a3897\", \"live\": true, \"id\": \"x3926c9e17d9dca13\"}", "{\"sha\": \"952bbae2478e0913a73a6e33b5749e49a6593fc8\", \"live\": true, \"id\": \"xddaa2e327ade1522\"}", "{\"sha\": \"ad3de4271d2aea0f5f20419ea6fcfa595b8085b4\", \"live\": true, \"id\": \"x1c6b786c6c78872a\"}", "{\"sha\": \"a45e0369a5960478a8d2b508a9b8f258f74316ac\", \"live\": true, \"id\": \"xdb14fd75078c440d\"}", "{\"sha\": \"999f5eae7d5b7aab8e596db5a1108c446a8574c3\", \"live\": true, \"id\": \"xd89f4139b44fc65f\"}", "{\"sha\": \"2d2a092b0b6bcd56f31c37c8b63e0968549ba8ea\", \"live\": true, \"id\": \"x78b98bef4f58c5cb\"}", "{\"sha\": \"04e96ef3a914d83934f8ccd876643f77a302d031\", \"live\": true, \"id\": \"x1e52350e22457335\"}", "{\"sha\": \"4cbb7b95323631e00f732bb063a569a16fe97dff\", \"live\": true, \"id\": \"x5768ed00e9847863\"}", "{\"sha\": \"e843991bab375c25a21df9227097d1c0ebd664fe\", \"live\": true, \"id\": \"xe06fca725fd71890\"}", "{\"sha\": \"a7f9f30eef29dabdb75019aa9eb3953befe1a4c5\", \"live\": true, \"id\": \"xb1b88200597b6df3\"}", "{\"sha\": \"bcf9c92668811aea23d86ef923e0cf6a1db081cd\", \"live\": true, \"id\": \"xb7461099584d0911\"}", "{\"sha\": \"04225b4255d49e9935e7008eb7ed581a217c1ff6\", \"live\": true, \"id\": \"xd337dac59b3c4d77\"}", "{\"sha\": \"6bb87a537934dafeae25d50947254fabf2a3f4e1\", \"live\": true, \"id\": \"xbd5404902ebb0466\"}"], "description": "", "basepoints": 13.0, "slug": "special_derivatives", "kind": "Exercise", "name": "special_derivatives", "seconds_per_fast_problem": 6.0, "prerequisites": ["symbolic-differentiation"], "exercise_id": "special_derivatives"}, "test-your-knowledge-of-biodiversity-analyses-and-unknowns": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/how-is-biodiversity-studied/biodiversity-analyses-and-uncertainties/test-your-knowledge-of-biodiversity-analyses-and-unknowns/", "id": "test-your-knowledge-of-biodiversity-analyses-and-unknowns", "display_name": "Test your knowledge: biodiversity analyses and unknowns", "title": "Test your knowledge: biodiversity analyses and unknowns", "all_assessment_items": ["{\"sha\": \"eb0c3684125392a9fe37d4555d317c819b57f689\", \"live\": true, \"id\": \"xb90d6ed773105230\"}", "{\"sha\": \"793d2ba83156afd6a61f10b1f78518a7a495fb32\", \"live\": true, \"id\": \"x3888b53c643613a4\"}", "{\"sha\": \"e7720592a10f98abeb0841b3333ace917364b995\", \"live\": true, \"id\": \"x3b45c4853f4e2f32\"}", "{\"sha\": \"bd9aa4e930fc5d9b831310758f4d7711e1522591\", \"live\": true, \"id\": \"x0aa187ee4f4df708\"}", "{\"sha\": \"823aa7b25d1c164f0aea325acb7b4aed907f68ef\", \"live\": true, \"id\": \"x00789cfa97db9224\"}", "{\"sha\": \"96f3a17bc84a2de26043871a20a12840fdaddb2a\", \"live\": true, \"id\": \"x0f0a41a17f046f54\"}", "{\"sha\": \"00dbbd80e3aba2efdff5097f63db52dcd7e72654\", \"live\": true, \"id\": \"x0bec16568b078ea5\"}", "{\"sha\": \"ab879a6176b68e43e455c8b68ff152bf2c754a4f\", \"live\": true, \"id\": \"x279bbd35a16dd217\"}", "{\"sha\": \"59210a8126e68ab6ccc09a77c2f50e3f004dcbc2\", \"live\": true, \"id\": \"xdf15f690be96fb36\"}", "{\"sha\": \"7d590fca9ec537754a4836db9a1e5b120842704f\", \"live\": true, \"id\": \"x4c72daa5106edf1a\"}", "{\"sha\": \"0f2564069f0d8bc36bcb151c6379581a8b407fb8\", \"live\": true, \"id\": \"xb5a4d892fb05893c\"}", "{\"sha\": \"d3c187d025c4d98bea302191b07b988fcd41fed4\", \"live\": true, \"id\": \"x57d4c5ea3c4c6b84\"}", "{\"sha\": \"65c90065cd2655e7000d6eb302d82f5f5525d8b0\", \"live\": true, \"id\": \"x7c7e26262482a253\"}"], "description": "Test your knowledge of biodiversity analyses and unknowns", "basepoints": 10.0, "slug": "test-your-knowledge-of-biodiversity-analyses-and-unknowns", "kind": "Exercise", "name": "test-your-knowledge-of-biodiversity-analyses-and-unknowns", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge-of-biodiversity-analyses-and-unknowns"}, "add-within-1000--level-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens-hundreds/add-within-1000-level-2/", "id": "add-within-1000--level-2", "display_name": "Add within 1000: Level 2", "title": "Add within 1000: Level 2", "all_assessment_items": ["{\"sha\": \"30dee8ff21cef5e4460e3e4faaaeda75f78f6dad\", \"live\": true, \"id\": \"x4e23a0d45545bb24\"}", "{\"sha\": \"4e2dbdd5fc4c72693d8d5fdc41417f57da051e50\", \"live\": true, \"id\": \"x897168cd67dbf9f1\"}", "{\"sha\": \"aa830e782423f301b769868fe59e7c7670200427\", \"live\": true, \"id\": \"x157b01d45a83c6be\"}", "{\"sha\": \"d882f76e23e4b399b781cb231dba7a475ce09eaa\", \"live\": true, \"id\": \"xb8cb373956f9f12c\"}", "{\"sha\": \"207b8b385c3cc6e4803d4f7c55e63bd5b8f53a9a\", \"live\": true, \"id\": \"xf77bd34de26965db\"}", "{\"sha\": \"331bcb0dc01ecc0e1537c77b10e43e50a2324cd1\", \"live\": true, \"id\": \"xe49b102b76cf644f\"}", "{\"sha\": \"89286fe091d9c55ffd716cad61ba5acc12c65bc3\", \"live\": true, \"id\": \"xb2bdbe474309a3b0\"}", "{\"sha\": \"f7308729486aeb9215528e7be3965c2cca1871d9\", \"live\": true, \"id\": \"x02ef3d105f64d8cc\"}", "{\"sha\": \"01eaeffe4754966603a041b49fbd113dd7353f5f\", \"live\": true, \"id\": \"x2d47f6bd95cf39fc\"}", "{\"sha\": \"44c7118c4901174ccde3aee9dc98f01ee15046d1\", \"live\": true, \"id\": \"x3177b891818d13b5\"}", "{\"sha\": \"b1273c4ccaa0847fedb691b7deac5a6b26bb2995\", \"live\": true, \"id\": \"x8faf37f4a7ffe142\"}", "{\"sha\": \"54b3f1fa44a8ea6a0b91ba2e214d5e72f2092ab2\", \"live\": true, \"id\": \"xb5a14db42b330686\"}", "{\"sha\": \"1300b1d97b6a5af5859ae38492ff4fd276bd8d38\", \"live\": true, \"id\": \"x7ed081cc31840394\"}", "{\"sha\": \"58349a1049b1b4de3811dfbb8507f333d06864a7\", \"live\": true, \"id\": \"xd3baa4d27a5395bb\"}", "{\"sha\": \"87f3ddf10d8abcd7de19edb950b747db2e951730\", \"live\": true, \"id\": \"x14e752cccf3d3e28\"}", "{\"sha\": \"d314d476e0521aceffa0fc046f656b76bca2adb2\", \"live\": true, \"id\": \"xbc93e48e1520da5c\"}", "{\"sha\": \"c9f6be2a8da3be72d4c7cd6b88bde2efceb1499a\", \"live\": true, \"id\": \"xc9bdff9596c63007\"}", "{\"sha\": \"79ccc676cfd819b690cd6ae78c2ae47fbf8b1b5c\", \"live\": true, \"id\": \"xaa40c6a3a052b60e\"}", "{\"sha\": \"d7bf7a7e34988895e74ad5043ee97b662e8343a8\", \"live\": true, \"id\": \"x8a4d2dada2ff8f6d\"}", "{\"sha\": \"2ffc576097eb4fd7c15e4558c818e4159eb11208\", \"live\": true, \"id\": \"x08c7bac45c5d1caf\"}"], "description": "", "basepoints": 10.0, "slug": "add-within-1000-level-2", "kind": "Exercise", "name": "add-within-1000--level-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["add-within-1000--level-1"], "exercise_id": "add-within-1000--level-2"}, "forces-on-inclined-planes": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/forces-on-inclined-planes/", "id": "forces-on-inclined-planes", "display_name": "A ramp in an administrative office", "title": "A ramp in an administrative office", "all_assessment_items": ["{\"sha\": \"8959ef6bbe3ce24dd3409e1dbf9bd381d8024626\", \"live\": true, \"id\": \"xbd54be0299283951\"}", "{\"sha\": \"8dc263188990c576fc2ebced67e804b7b36efdbc\", \"live\": true, \"id\": \"x972a4a47e382c041\"}", "{\"sha\": \"6c98c375f686d9e52efac348315730d2f65d6003\", \"live\": true, \"id\": \"xebe756160ede05a9\"}", "{\"sha\": \"c7f360c1ba677faf47f167eca0b78d649813beda\", \"live\": true, \"id\": \"xfe8b7935397b73fe\"}", "{\"sha\": \"03d403d96f7ff52fb7fda9c8983dc55ec6e5c9b9\", \"live\": true, \"id\": \"x101f4efd2a92af40\"}"], "description": "This passage will test your knowledge on forces on inclined planes", "basepoints": 10.0, "slug": "forces-on-inclined-planes", "kind": "Exercise", "name": "forces-on-inclined-planes", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "forces-on-inclined-planes"}, "probability_with_perm_comb": {"uses_assessment_items": false, "path": "khan/math/precalculus/prob_comb/prob_combinatorics_precalc/probability_with_perm_comb/", "id": "probability_with_perm_comb", "display_name": "Probability with permutations and combinations", "title": "Probability with permutations and combinations", "description": "Probability questions using permutations and combinations of objects", "basepoints": 26.0, "slug": "probability_with_perm_comb", "kind": "Exercise", "name": "probability_with_perm_comb", "seconds_per_fast_problem": 41.0, "prerequisites": ["permutations_and_combinations_2"], "exercise_id": "probability_with_perm_comb"}, "adding_and_subtracting_rational_numbers": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/dec-perc-frac-pre-alg/adding_and_subtracting_rational_numbers/", "id": "adding_and_subtracting_rational_numbers", "display_name": "Adding and subtracting negative fractions, decimals, and percents", "title": "Adding and subtracting negative fractions, decimals, and percents", "description": "Practice adding and subtracting negative fractions, decimals, and percents.", "basepoints": 10.0, "slug": "adding_and_subtracting_rational_numbers", "kind": "Exercise", "name": "adding_and_subtracting_rational_numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_fractions"], "exercise_id": "adding_and_subtracting_rational_numbers"}, "caesar_cipher_frequency_analysis": {"uses_assessment_items": false, "path": "khan/computing/computer-science/cryptography/ciphers/caesar_cipher_frequency_analysis/", "id": "caesar_cipher_frequency_analysis", "display_name": "Caesar cipher frequency analysis", "title": "Caesar cipher frequency analysis", "description": "", "basepoints": 10.0, "slug": "caesar_cipher_frequency_analysis", "kind": "Exercise", "name": "caesar_cipher_frequency_analysis", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "caesar_cipher_frequency_analysis"}, "equestrian-sculpture-of-marcus-aurelius-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/roman/middle-empire/equestrian-sculpture-of-marcus-aurelius-quiz/", "id": "equestrian-sculpture-of-marcus-aurelius-quiz", "display_name": "Equestrian Sculpture of Marcus Aurelius (quiz)", "title": "Equestrian Sculpture of Marcus Aurelius (quiz)", "all_assessment_items": ["{\"sha\": \"b160526ff09b0f39dd0a86c200d7630ae997b503\", \"live\": true, \"id\": \"x4a35901db3860cc8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"407f297d15e58ca1efe48247b40c7160022092d0\", \"live\": true, \"id\": \"xd41312632bc7e596\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"27b20745c90dc0d6564428b123e195b27977b2eb\", \"live\": true, \"id\": \"x1eb4b38c07142392\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "equestrian-sculpture-of-marcus-aurelius-quiz", "kind": "Exercise", "name": "equestrian-sculpture-of-marcus-aurelius-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "equestrian-sculpture-of-marcus-aurelius-quiz"}, "division_0.5": {"uses_assessment_items": false, "path": "khan/math/arithmetic/multiplication-division/delightful_division/division_05/", "id": "division_0.5", "display_name": "Basic division", "title": "Basic division", "description": "Divide two numbers. \u00a0Quotients are equal to or less than 10.", "basepoints": 10.0, "slug": "division_05", "kind": "Exercise", "name": "division_0.5", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_0.5", "dividing-by-3", "dividing-by-4", "dividing-by-6", "dividing-by-7", "dividing-by-8", "dividing-by-9"], "exercise_id": "division_0.5"}, "multiplying-fractions-and-whole-numbers-intuition": {"uses_assessment_items": true, "id": "multiplying-fractions-and-whole-numbers-intuition", "display_name": "Multiplying fractions and whole numbers intuition", "title": "Multiplying fractions and whole numbers intuition", "all_assessment_items": ["{\"sha\": \"67ef06f4a84b8557a9fdc0dd887e6a033c3ce898\", \"live\": true, \"id\": \"x879cefc1754358ea\"}", "{\"sha\": \"7620f9806b0ef24e6c119ab3068f81d07672fe8b\", \"live\": true, \"id\": \"x046b13835a149311\"}", "{\"sha\": \"663a6fef585e514568bfb04398eec68032b0cff2\", \"live\": true, \"id\": \"xe950140c1e1b51f2\"}", "{\"sha\": \"af798e660b89c4f5157f74f6f17bf5ca5850ae35\", \"live\": true, \"id\": \"x9e9038e9a3db18f2\"}", "{\"sha\": \"60ca2d6414196e48a29f957b20cd28f31eda0203\", \"live\": true, \"id\": \"x45ba3de897f8e099\"}", "{\"sha\": \"11d70ead51438fceba7619619dfd929ed0b35f9c\", \"live\": true, \"id\": \"x5bb8926f363a51b0\"}", "{\"sha\": \"8bf60320f7019c6851a47c7279c40fff157a6488\", \"live\": true, \"id\": \"xea9050fe9260ac07\"}", "{\"sha\": \"b02fc56cccc3d13602cd01edba2485ad113c21e1\", \"live\": true, \"id\": \"x27dd323a215963b9\"}", "{\"sha\": \"93397487927d29996426053d164b1a28866c1ada\", \"live\": true, \"id\": \"x72c21c12dd7aa7a8\"}", "{\"sha\": \"a59b95411d17b8ea7bbaca6e1509cb02645cf619\", \"live\": true, \"id\": \"x0bdfa43517740e01\"}", "{\"sha\": \"7a182578d47346af9c5a508f88ffd5e132e84703\", \"live\": true, \"id\": \"xb24a54ed4c7c7873\"}", "{\"sha\": \"45da6e08193a1fb87bf1f6881a4b79bfe65f4905\", \"live\": true, \"id\": \"xf12df7ef1d312793\"}", "{\"sha\": \"c42c5f928d2fa1a2d30b6afaeb3467cde70b00aa\", \"live\": true, \"id\": \"x505677799f20bf22\"}", "{\"sha\": \"18a310a386938b7fb97a6afe1fd45d50bc43c880\", \"live\": true, \"id\": \"x63d8f16368238a2c\"}", "{\"sha\": \"57ee552367783dd960dcf9796a061190e733ff9e\", \"live\": true, \"id\": \"x8a95e72a6e26ff30\"}", "{\"sha\": \"1669cbdf53a7c9d324a7f04cc3517223f4622cd6\", \"live\": true, \"id\": \"x72c8e5e42f426ab7\"}", "{\"sha\": \"d2a88e78efa0ad19b7f45bb539d3de95b8820e7b\", \"live\": true, \"id\": \"xe2dd3a5b1825cae3\"}", "{\"sha\": \"f6b5ef02509c839b0d0201696f6d6892f0a82143\", \"live\": true, \"id\": \"x4e12c30a781ff127\"}", "{\"sha\": \"1db9b2045c334d6420463e341fc3711c069cded3\", \"live\": true, \"id\": \"x78620f437abb23a6\"}", "{\"sha\": \"0397b5c6156eb02818970634c516cce57f69711b\", \"live\": true, \"id\": \"xc7a9aac7aa3e7dcf\"}", "{\"sha\": \"c5e14c05d445664d9c42d0edef7a02fb8f779a76\", \"live\": true, \"id\": \"x38970652a40b8ce8\"}"], "description": "Practice matching fraction diagrams to multiplication expressions.", "basepoints": 10.0, "path": "multiplying-fractions-and-whole-numbers-intuition/", "slug": "multiplying-fractions-and-whole-numbers-intuition", "kind": "Exercise", "name": "multiplying-fractions-and-whole-numbers-intuition", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_fractions_with_common_denominators"], "exercise_id": "multiplying-fractions-and-whole-numbers-intuition"}, "domain-of-algebraic-functions": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/domain-and-range/domain-of-algebraic-functions/", "id": "domain-of-algebraic-functions", "display_name": "Domain of algebraic functions", "title": "Domain of algebraic functions", "all_assessment_items": ["{\"sha\": \"e2f81226f9a44d1fd4587144f53c8ec3ee746e36\", \"live\": true, \"id\": \"xfa2ebf8c6af8abfa\"}", "{\"sha\": \"5ecd7cb21e5617cd858455cd7a7c7b1d03d3b0fd\", \"live\": true, \"id\": \"x4eeef4461daacd44\"}", "{\"sha\": \"8a754e3020b8823565ebe482dc7e25b36bd6c9ba\", \"live\": true, \"id\": \"xb165bd009ab5976d\"}", "{\"sha\": \"e9ece8190dad53b4040746e0847e4497c73f412e\", \"live\": true, \"id\": \"x8de18f0e56108924\"}", "{\"sha\": \"c9799f86a74c290582bc27a2af966dbd2ebbe3da\", \"live\": true, \"id\": \"x48f59437e5aea2c9\"}", "{\"sha\": \"d5be527c5ec9d58e8f0f6d998959f1290d2684e5\", \"live\": true, \"id\": \"xfd8d36a5e30675e5\"}", "{\"sha\": \"790ea20a00674103be7268e5256d65af56cd2922\", \"live\": true, \"id\": \"x6329b3347248bc32\"}", "{\"sha\": \"75c903dbdbda6817d899809a0bbc545c083e8e8d\", \"live\": true, \"id\": \"x7f0a3b1802cbf023\"}", "{\"sha\": \"b17181cc7a1c5dc92753f649d84bf8e25a4cff70\", \"live\": true, \"id\": \"x3cafe3aed57253a0\"}", "{\"sha\": \"b6bc7dfb8c7b3304eaf9ba1028d635f542632596\", \"live\": true, \"id\": \"xb26c2f7ef645ef27\"}", "{\"sha\": \"e54ee6b072a15c06ece3f2ccbec87b8b144bced3\", \"live\": true, \"id\": \"x5bd65de8549c9025\"}", "{\"sha\": \"c78abb1ff2ba72dafe363351681a974e868cdfad\", \"live\": true, \"id\": \"x03361770208770f4\"}", "{\"sha\": \"5df2f33a1c6a8fc0a304b75e8042c7641d3de025\", \"live\": true, \"id\": \"xd53a2a9ab6e643d2\"}", "{\"sha\": \"860cbc97fbc372359826b1242a274d487a7c89a3\", \"live\": true, \"id\": \"x9ee3893d9a00b012\"}", "{\"sha\": \"5112e73666b093620c8877bb82fc1b51d5322c34\", \"live\": true, \"id\": \"x9b28fad74b25c8ba\"}", "{\"sha\": \"660d4a477536869cbf6b9829db0a489f44cd7e0c\", \"live\": true, \"id\": \"xe40c0fae230ed22e\"}", "{\"sha\": \"befb5d3de1891a4c201951ccf704bc0afd79e35b\", \"live\": true, \"id\": \"xc3faa3fc2ca71f61\"}", "{\"sha\": \"9870f8029bb560c999f6b5db923d2e7fd28710f1\", \"live\": true, \"id\": \"x90dd627e1486d7f7\"}", "{\"sha\": \"ad718ec68b7ca66870e4809ba693c22e1c9dc383\", \"live\": true, \"id\": \"xaa0d3bbe4b8fa54a\"}", "{\"sha\": \"16b0cb4cae5f118d80d798f6c69990c334fc82e5\", \"live\": true, \"id\": \"x2503e3784fb413e4\"}", "{\"sha\": \"a6ea564ff5608805f2439e754c6e5dab9dabb216\", \"live\": true, \"id\": \"x6115a71fd24bad14\"}", "{\"sha\": \"5b95e50b92d2a22e28769da69160f784468a6982\", \"live\": true, \"id\": \"x2070e447affb5150\"}", "{\"sha\": \"a8b5877fc3622070b65555a9e2f554c7a6f1684a\", \"live\": true, \"id\": \"xe81bfe1023a8ac82\"}", "{\"sha\": \"36629c38bdf92e5a59232312160afae670bb66f7\", \"live\": true, \"id\": \"xea6ceb1afd66d212\"}", "{\"sha\": \"ab4a04283e38cbd085fd54a062f7d7eb1f2e14a8\", \"live\": true, \"id\": \"xec563bf7a3197ac4\"}", "{\"sha\": \"491fe87de6577b4c9d391e53ac1e5f562cba2437\", \"live\": true, \"id\": \"xadc55c1f6d0cf8aa\"}", "{\"sha\": \"58821b2af14854cdd9b493272bda3fc5f5d5eee0\", \"live\": true, \"id\": \"xa8658989204e3a31\"}", "{\"sha\": \"7a7fc64f455f07b21f854e77f7441f9be8880f7a\", \"live\": true, \"id\": \"xa43ce774be45b755\"}", "{\"sha\": \"d37303f3f0587ee05018ecaf7491d3cd4802511b\", \"live\": true, \"id\": \"x861cabf5148d0708\"}", "{\"sha\": \"3f2c813ac27fce2cd9aa38f1ab53d7a18d128cbb\", \"live\": true, \"id\": \"x2ac43cc4d275d270\"}", "{\"sha\": \"943be63be0375048a802c38298ad3db3af589fae\", \"live\": true, \"id\": \"x7e68c7d11d365a9b\"}"], "description": "Domain of algebraic functions", "basepoints": 10.0, "slug": "domain-of-algebraic-functions", "kind": "Exercise", "name": "domain-of-algebraic-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["domain_and_range_0.5", "interpretting-solving-linear-inequalities"], "exercise_id": "domain-of-algebraic-functions"}, "capacitors---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/capacitors-passage-2/", "id": "capacitors---passage-2", "display_name": "Cardiac dysrhythmia and defibrillators", "title": "Cardiac dysrhythmia and defibrillators", "all_assessment_items": ["{\"sha\": \"8f5ae98e2720479b7715397eb06662f1ebde1fe6\", \"live\": true, \"id\": \"x48692dca7acabc8c\"}", "{\"sha\": \"b636887ba9b65e656991b85b78e42ecbd526163d\", \"live\": true, \"id\": \"x4e31ab7eacba8074\"}", "{\"sha\": \"05bb14b6d0d9c2a6247d2f882db44bfce4cbbaed\", \"live\": true, \"id\": \"xe6719b1f965ae903\"}", "{\"sha\": \"b79efb65acc0dd57d269deee6433102f3ca478a4\", \"live\": true, \"id\": \"x74544591c04c4892\"}", "{\"sha\": \"417807e57efb10a8e8acad7228cae4924fc56531\", \"live\": true, \"id\": \"xf99e8bde7c0ca8e8\"}"], "description": "This passage will test your knowledge on capacitors", "basepoints": 10.0, "slug": "capacitors-passage-2", "kind": "Exercise", "name": "capacitors---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "capacitors---passage-2"}, "capacitors---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/capacitors-passage-1/", "id": "capacitors---passage-1", "display_name": "Capacitors in electrocardiography monitors", "title": "Capacitors in electrocardiography monitors", "all_assessment_items": ["{\"sha\": \"c504c3602402c21ed576fa7a3cbb1f3335655094\", \"live\": true, \"id\": \"x7271d47328f46e94\"}", "{\"sha\": \"05aae98ae434a92586d1e9082ba2dffd3740e260\", \"live\": true, \"id\": \"x3c41321cf3fbd28b\"}", "{\"sha\": \"b6c3095bea4a5636a1083a937f091613272cdeb3\", \"live\": true, \"id\": \"xe714c16cfb0bd7cf\"}", "{\"sha\": \"8beac5a1b8ada5662ffea088dcd9860d02be6152\", \"live\": true, \"id\": \"x925c400460aa8c64\"}", "{\"sha\": \"75bf829931ebd17bad8bdc80c783be59b196f0a3\", \"live\": true, \"id\": \"x3022c1843a7dd087\"}"], "description": "This passage will test your knowledge on capacitors", "basepoints": 10.0, "slug": "capacitors-passage-1", "kind": "Exercise", "name": "capacitors---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "capacitors---passage-1"}, "aspen-us-declaration-of-independence-quiz": {"uses_assessment_items": true, "path": "khan/humanities/history/1600s-1800s/declaration-of-independence/aspen-us-declaration-of-independence-quiz/", "id": "aspen-us-declaration-of-independence-quiz", "display_name": "US Declaration of Independence Quiz", "title": "US Declaration of Independence Quiz", "all_assessment_items": ["{\"sha\": \"63dabafc491919012be37aa676d481a35c888f7b\", \"live\": true, \"id\": \"xc967f0abe4ddae78\"}", "{\"sha\": \"5ace05badc30e695c959c5e2274d2f8c43cffa2f\", \"live\": true, \"id\": \"xd78588e4efae240d\"}", "{\"sha\": \"3fcd884d496595bd5873efad4954314036e8fafb\", \"live\": true, \"id\": \"xf679ddcc07ad68e5\"}", "{\"sha\": \"2162e5b56a7ae443099e43f44840cf72c955d080\", \"live\": true, \"id\": \"x9066648a666a787c\"}", "{\"sha\": \"0b58a73932930fd83c7aba061c25347d8b866500\", \"live\": true, \"id\": \"x7bb1ef97ed458adb\"}", "{\"sha\": \"1537c8cab9b15944c1c1f566b2f87ba8c3279911\", \"live\": true, \"id\": \"xc084f9dcfef1fd81\"}", "{\"sha\": \"1f4337c8f88338140bf785bb6cc66d1293ec51ba\", \"live\": true, \"id\": \"x34115b4966248531\"}", "{\"sha\": \"7d4053d641bc3e69c607c2dfeb3b0ae7e177ac6e\", \"live\": true, \"id\": \"x420e5884f0b35034\"}", "{\"sha\": \"57c53694a31da4c0ab8e132bb50b018f680c8c0f\", \"live\": true, \"id\": \"x8df9033c6adcf53d\"}", "{\"sha\": \"2633b3075142ca475b7969e99b1f3f3630ca073d\", \"live\": true, \"id\": \"xe1b2a96969f1b7e0\"}", "{\"sha\": \"c98b3c0d0d0192cede80b037a0849cd8fc63595c\", \"live\": true, \"id\": \"x5cea7a853e9aa640\"}", "{\"sha\": \"fde25d00cf86a763de2f8c8ed32460eb7cbc2fe1\", \"live\": true, \"id\": \"x699f189dd5bcc110\"}", "{\"sha\": \"0ff457541224e61b4cf0cc9c1ff3ff75d9768c87\", \"live\": true, \"id\": \"x980d6aff0cce6b46\"}", "{\"sha\": \"02b8fe3032ef7d1ad04385f4912c83253a50a298\", \"live\": true, \"id\": \"xd2aa60eec44e9e81\"}", "{\"sha\": \"1bca90e8e8dc9658d54ea150fbe49a1fb5294ee8\", \"live\": true, \"id\": \"x4d814d56e3027e99\"}", "{\"sha\": \"455a83f00a78b16716da74f21704100e73767590\", \"live\": true, \"id\": \"xdc0e5058cb029cbf\"}", "{\"sha\": \"1669e1d0b02d66c510cd794f37c3fc1b45e03251\", \"live\": true, \"id\": \"x78e7a399eb814c7f\"}", "{\"sha\": \"a0f576e42c761c04632e0970de83aaf588045d21\", \"live\": true, \"id\": \"x70406aee8ea48ab3\"}", "{\"sha\": \"091918bd33e045bf0a1e5d1c213cb9a7b3c84f69\", \"live\": true, \"id\": \"x93ed806a8fe0e13b\"}", "{\"sha\": \"9ca6cddb92e73b144d75510af1be1c56ba11b200\", \"live\": true, \"id\": \"xda4b478575e81bf1\"}", "{\"sha\": \"48db448afd8805a48bffeb184ef0331435075b1f\", \"live\": true, \"id\": \"x500735ae5a042c68\"}", "{\"sha\": \"6258774031285ae60b804dccdbdea16d4a848dd9\", \"live\": true, \"id\": \"x1664729cec7cd0d6\"}", "{\"sha\": \"dde9fdd579437514b11a1f0aae852f8aef07a584\", \"live\": true, \"id\": \"xc88b93166a43ee24\"}", "{\"sha\": \"cbee9acf727c31627184f3b8c253ec7a36ccd69a\", \"live\": true, \"id\": \"x11b16cdfa43dfc0c\"}", "{\"sha\": \"c48be4e8181499e4c29f5ac2402227421a6119eb\", \"live\": true, \"id\": \"x533ce3250727c7db\"}", "{\"sha\": \"ce03df11a152b811b8c13a660eb261faff162397\", \"live\": true, \"id\": \"x9c302a9174accc49\"}", "{\"sha\": \"bd59ccd1211628998079bf36be5a919be2a00b0c\", \"live\": true, \"id\": \"x1cb8028283702833\"}", "{\"sha\": \"a809a04c96a9e1b71614f48983416ca534d2c164\", \"live\": true, \"id\": \"xeca2cb7761f4dde5\"}", "{\"sha\": \"41fedbd1b35ca421c4e690ba9c2a366165413bec\", \"live\": true, \"id\": \"x473af2b17e610ff3\"}", "{\"sha\": \"4f4ee2fc8af284b7838f87b45c149421cc5d98dd\", \"live\": true, \"id\": \"x4282cdce1acd651a\"}", "{\"sha\": \"ec6c9ebc8740b8205a66f77420eb05147e70b881\", \"live\": true, \"id\": \"x98bac8363437ebce\"}"], "description": "Questions on the US Declaration of Independence", "basepoints": 10.0, "slug": "aspen-us-declaration-of-independence-quiz", "kind": "Exercise", "name": "aspen-us-declaration-of-independence-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "aspen-us-declaration-of-independence-quiz"}, "mausoleum-of-galla-placidia-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/early-christian1/mausoleum-of-galla-placidia-quiz/", "id": "mausoleum-of-galla-placidia-quiz", "display_name": "Mausoleum of Galla Placidia (quiz)", "title": "Mausoleum of Galla Placidia (quiz)", "all_assessment_items": ["{\"sha\": \"78a691aaad3e89e67f6053b021bbba050c4e0ef1\", \"live\": true, \"id\": \"x9aea81a93c91a62b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6cbef39ff42d9cbb7eeeb01d71877fb2b68b637e\", \"live\": true, \"id\": \"xb1b258ac03294d99\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"947b639e9bcbb1881970ba2d3ed63ae54861ad23\", \"live\": true, \"id\": \"x7bf8b386d9e3bf6f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"369b020a38b817532f09036e06daf920b748ba2c\", \"live\": true, \"id\": \"x3d8592ec918b76bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "mausoleum-of-galla-placidia-quiz", "kind": "Exercise", "name": "mausoleum-of-galla-placidia-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mausoleum-of-galla-placidia-quiz"}, "synthesis-of-anti-tumor-drug-combretastatin-and-its-derivatives": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/synthesis-of-anti-tumor-drug-combretastatin-and-its-derivatives/", "id": "synthesis-of-anti-tumor-drug-combretastatin-and-its-derivatives", "display_name": "Synthesis of anti-tumor drug Combretastatin and its derivatives", "title": "Synthesis of anti-tumor drug Combretastatin and its derivatives", "all_assessment_items": ["{\"sha\": \"17bc706be94766236c00865a17d1b535d50ae313\", \"live\": true, \"id\": \"x17c445322d15b08f\"}", "{\"sha\": \"206412a72131ef4fdd53e59cae3f16d7098f69b8\", \"live\": true, \"id\": \"xe404f9ca3810d2a4\"}", "{\"sha\": \"2b809d7aa671a3f324369dd8c643b84f284a6bb5\", \"live\": true, \"id\": \"x28d74834ab41fd7d\"}", "{\"sha\": \"a98c496dcbb0c2dab525b3830026c9f81a484f46\", \"live\": true, \"id\": \"x3e4409e93bc07399\"}", "{\"sha\": \"e383b03d0cd93886c19e651d747df59c000c95a6\", \"live\": true, \"id\": \"x4a825d097d56a5ff\"}"], "description": "Questions related to organic synthesis of Combretastatin", "basepoints": 10.0, "slug": "synthesis-of-anti-tumor-drug-combretastatin-and-its-derivatives", "kind": "Exercise", "name": "synthesis-of-anti-tumor-drug-combretastatin-and-its-derivatives", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "synthesis-of-anti-tumor-drug-combretastatin-and-its-derivatives"}, "writing-the-equation-of-a-line-in-any-form": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/standard-form/writing-the-equation-of-a-line-in-any-form/", "id": "writing-the-equation-of-a-line-in-any-form", "display_name": "Writing the equation of a line in any form", "title": "Writing the equation of a line in any form", "all_assessment_items": ["{\"sha\": \"4cce0664165b3a716bccc992d3fa065f253d9da9\", \"live\": true, \"id\": \"x4a958629e8dccbc6\", \"perseus_api_major_version\": null}", "{\"sha\": \"162970aa741d43e5da3f7bcf549e575e9d8b51ff\", \"live\": true, \"id\": \"x1c62b5a02458c0a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"ac93d03656f2ff43387fbcc2b7e0bebe1c6a885e\", \"live\": true, \"id\": \"x40f21e9aff54d574\", \"perseus_api_major_version\": null}", "{\"sha\": \"3922e3a18b8cae596ddd1d22c76027178c6035e8\", \"live\": true, \"id\": \"x324c5f3972388009\", \"perseus_api_major_version\": null}", "{\"sha\": \"9853073ef63857f5268f02cfbbafd05b2336dd58\", \"live\": true, \"id\": \"xd9f22fa65ea16884\", \"perseus_api_major_version\": null}", "{\"sha\": \"b86d57b9334eb02b29d438d45e9d9028a02935a1\", \"live\": true, \"id\": \"x08ca5084a688956a\", \"perseus_api_major_version\": null}", "{\"sha\": \"10acdfef90e2d6a613ae903b0248dc7f44d55323\", \"live\": true, \"id\": \"xdec27394747a44f1\", \"perseus_api_major_version\": null}", "{\"sha\": \"d512b669d8a659d88bbed7e0f4de589e156050c0\", \"live\": true, \"id\": \"x53619ca908eff047\", \"perseus_api_major_version\": null}", "{\"sha\": \"69957033d474da208332ad371b8a9207c6a67344\", \"live\": true, \"id\": \"x1d938bfcafc3f61c\", \"perseus_api_major_version\": null}", "{\"sha\": \"7dabee634f80c920bb2151f860715b64c75ae60d\", \"live\": true, \"id\": \"x1623404b0e95aae8\", \"perseus_api_major_version\": null}", "{\"sha\": \"b56d5ac73b9873695a3997ad35666051fc36bed4\", \"live\": true, \"id\": \"x3a208df526f2494e\", \"perseus_api_major_version\": null}", "{\"sha\": \"1f682917f1fa64f6f9a1447850b8566896ecb462\", \"live\": true, \"id\": \"xd9b3ccd9cef7fd76\", \"perseus_api_major_version\": null}", "{\"sha\": \"3813f2c70637e01b99be475357806909378c0f04\", \"live\": true, \"id\": \"xaeb398135aaf3bc9\", \"perseus_api_major_version\": null}", "{\"sha\": \"2b60f260aeb46f663573600e278be75954f1317b\", \"live\": true, \"id\": \"x8f0d2c8650a6d1c7\", \"perseus_api_major_version\": null}", "{\"sha\": \"740f8a0bb5237fd9c4e250a7c9be15015265e317\", \"live\": true, \"id\": \"xc265a1d167b702ec\", \"perseus_api_major_version\": null}", "{\"sha\": \"b141a6592e15e4ce655a40cd03ae404f532e108f\", \"live\": true, \"id\": \"x4c8db37cb2957fb8\", \"perseus_api_major_version\": 2}", "{\"sha\": \"94cea409bff507ac93657bde30fd11f93fec1762\", \"live\": true, \"id\": \"x543b8c1280742029\", \"perseus_api_major_version\": null}", "{\"sha\": \"05212a6db6c038f728ba29213f697bf06278eff3\", \"live\": true, \"id\": \"x02e27c06cd1a332e\", \"perseus_api_major_version\": null}", "{\"sha\": \"c074fa39911b8d778ba91b15dfa5caaf13e828da\", \"live\": true, \"id\": \"xaa01ad79a70e2041\", \"perseus_api_major_version\": null}", "{\"sha\": \"9d9b61cd6721d085497d2208c5b620949fcbb4c8\", \"live\": true, \"id\": \"xdad8ab0e404751c0\", \"perseus_api_major_version\": null}", "{\"sha\": \"dede2301d6ed0d14ce1c2a37fa19271c4130b5d4\", \"live\": true, \"id\": \"x5a5d078838e5b793\", \"perseus_api_major_version\": null}", "{\"sha\": \"566f2564cd37243d1d631d750649b015d7b0e7f7\", \"live\": true, \"id\": \"xe88e27bf0842d030\", \"perseus_api_major_version\": null}", "{\"sha\": \"172c71d9d51a3a1b1ef40469fd9aef9a7ec71e8c\", \"live\": true, \"id\": \"x3e380874e3a52e64\", \"perseus_api_major_version\": null}", "{\"sha\": \"d1e83161d04e6e2bdb36f8c48410ce6be9a08c48\", \"live\": true, \"id\": \"xdcb17183f64c5d76\", \"perseus_api_major_version\": null}", "{\"sha\": \"fb8fda9c62dd10ecfddbe390874789b54a33da78\", \"live\": true, \"id\": \"xdfee285d1f05c92e\", \"perseus_api_major_version\": null}", "{\"sha\": \"af5541b55089ec4079d524ea53a39041d49c2209\", \"live\": true, \"id\": \"x64b2f8b3a82f1cdb\", \"perseus_api_major_version\": null}", "{\"sha\": \"3896b0b0171422d729eb19ed2a7a43fddacc6748\", \"live\": true, \"id\": \"x13ff96d4644ff95d\", \"perseus_api_major_version\": null}", "{\"sha\": \"15975a839d388a1b19ba0c48a92d4b87fef8b567\", \"live\": true, \"id\": \"x3d5f1b1bc9cf5c8c\", \"perseus_api_major_version\": null}", "{\"sha\": \"09a81b61b8556b99aef8e67f70c4ca770bff798a\", \"live\": true, \"id\": \"x54936b9f1f7be580\", \"perseus_api_major_version\": null}", "{\"sha\": \"3492c7c53bc25d6c59d7200a26a3201ae5fc7090\", \"live\": true, \"id\": \"x3bfeb523ef6d60e7\", \"perseus_api_major_version\": null}", "{\"sha\": \"fdbe221a5548f74778e4b92a2168a3bded802e41\", \"live\": true, \"id\": \"x7a1436b015c3efbe\", \"perseus_api_major_version\": null}", "{\"sha\": \"e780612c51ce38f827c9ed30d37c7665faafcb91\", \"live\": true, \"id\": \"xb65946d132de3e3c\", \"perseus_api_major_version\": null}", "{\"sha\": \"8059c3903e049f670f9057b04a05fa21c869d8e9\", \"live\": true, \"id\": \"xab156b1a35bd4344\", \"perseus_api_major_version\": null}", "{\"sha\": \"c0e4852341d3c784b01b41e470d595860614ef44\", \"live\": true, \"id\": \"xb318f11f7ec18888\", \"perseus_api_major_version\": null}", "{\"sha\": \"9018d218764747d02703217b64bd945fff920a7f\", \"live\": true, \"id\": \"x43d76b0f7fbe8387\", \"perseus_api_major_version\": null}", "{\"sha\": \"f28c64f5cfd4596e4029aaea27387a180d664e04\", \"live\": true, \"id\": \"x07c07405d4a0457b\", \"perseus_api_major_version\": null}", "{\"sha\": \"2174c1bf16e083c5d5566d903892dcf4452216bd\", \"live\": true, \"id\": \"x67c43fa46779c126\", \"perseus_api_major_version\": null}", "{\"sha\": \"537ac5336fda624425d76d35ba65ba4590215ad2\", \"live\": true, \"id\": \"xc6615eb17ac3a298\", \"perseus_api_major_version\": null}", "{\"sha\": \"ef8a4cb0f72ad523f4f438c35628751f64c7414f\", \"live\": true, \"id\": \"x290350cc65f5347e\", \"perseus_api_major_version\": null}", "{\"sha\": \"5898c400f6b48ef8f1fc7dcd97e38770af4b00bb\", \"live\": true, \"id\": \"xf4a1a531a35aa4a9\", \"perseus_api_major_version\": null}"], "description": "You've had practice with a few different forms of linear equations. Now use your skills.", "basepoints": 10.0, "slug": "writing-the-equation-of-a-line-in-any-form", "kind": "Exercise", "name": "writing-the-equation-of-a-line-in-any-form", "seconds_per_fast_problem": 4.0, "prerequisites": ["converting_between_point_slope_and_slope_intercept", "converting_between_slope_intercept_and_standard_form"], "exercise_id": "writing-the-equation-of-a-line-in-any-form"}, "normative-and-nonnormative-behavior-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/behavior/normative-and-non-normative-behavior/normative-and-nonnormative-behavior-questions/", "id": "normative-and-nonnormative-behavior-questions", "display_name": "Normative and nonnormative behavior questions", "title": "Normative and nonnormative behavior questions", "all_assessment_items": ["{\"sha\": \"ea0e87fc26d0b831e01b9b99eb383c333a4ad093\", \"live\": true, \"id\": \"x1c0777d2b79cf319\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41f81bfafec8d74a86c9b5a701606e1037f5f560\", \"live\": true, \"id\": \"xb21fc63295979c7c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"94a78a56da4ccbbf7423eefb879bba352e7df89b\", \"live\": true, \"id\": \"x1ae500656840f15c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"670c047d7001b70e52b870798033fe3b6f6a6083\", \"live\": true, \"id\": \"xdcdc60a4459915cc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c8441801e554cbf41e9e830813d4ba7f6dcf0193\", \"live\": true, \"id\": \"xefc1653168d76a3f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4a982e8c4e2fc6fed5226d1bc84d486c95f8f899\", \"live\": true, \"id\": \"x8e8e0571a1c0f7e8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"810c83d4b4923e07dccd4e4feb16ca0cf2bd275b\", \"live\": true, \"id\": \"x9cd4aa64f2ac92f0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16bac51a2b3746a409f0e4407ba7a3c9b79e77a9\", \"live\": true, \"id\": \"xa30230fee701048b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"00c630ca17b3a52e5c0421a5feb1ce8e81385131\", \"live\": true, \"id\": \"x1172fe8f49067c08\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c40e1ccc53bd46125d6f88cc0be8498090c747e\", \"live\": true, \"id\": \"x2044528b6f8e5589\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Normative and nonnormative behavior questions", "basepoints": 10.0, "slug": "normative-and-nonnormative-behavior-questions", "kind": "Exercise", "name": "normative-and-nonnormative-behavior-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "normative-and-nonnormative-behavior-questions"}, "powers-of-fractions": {"uses_assessment_items": true, "id": "powers-of-fractions", "display_name": "Powers of fractions", "title": "Powers of fractions", "all_assessment_items": ["{\"sha\": \"207411e56af4c45c72e4e960ef96291900226ee9\", \"live\": true, \"id\": \"xbbc097fb32c8ca46\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2bacc1469f740e32f8ed5cdf37c43510bb69d3e5\", \"live\": true, \"id\": \"x7965899fd20da802\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3608099ce1216df908224615355ad1d2903a03a7\", \"live\": true, \"id\": \"xb9de375e20150ac6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"688c7d27555549563410014b2539361ad9c6dc4c\", \"live\": true, \"id\": \"x019565e0cab587d2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"82ed21be41341516ccd6eab281452c4e5eba3013\", \"live\": true, \"id\": \"x667f118fc02831a8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"99fac6a4f4e5cbb176467313f7e9af9a63ce2893\", \"live\": true, \"id\": \"xfb0792f3131c37e6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8124ecdfa8c9c68cb7ad70a6cb30ac93023ad51b\", \"live\": true, \"id\": \"xe49a1972d2dae8c2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"75709fb744fd939a4fa0ebdc176352004e54a015\", \"live\": true, \"id\": \"x763efb3071b489ca\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d4cb39187171968000ad771327426871505c24a\", \"live\": true, \"id\": \"xade10bc384c6d5cc\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0c611a41a7f1107066b34e4542139aeb67050b1c\", \"live\": true, \"id\": \"x9a05ceb1d352f423\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"01fa3161b7d795d80d199a4032b9f036a5f01d09\", \"live\": true, \"id\": \"xfd6d3e102c6a984a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c0260a0a59f8ec14267c89f4251aacc43ad5b48\", \"live\": true, \"id\": \"xff02383e36c740dc\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"863135c899589cfbe0ba24ba2ee75c7c3dbc8e67\", \"live\": true, \"id\": \"x3a1cda491f231d90\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f92fb18a751ee6d934f4f8a841fbeacf7584b717\", \"live\": true, \"id\": \"x7b5d496b02118b11\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"75dbbe30e1f65daf4f45889e6e67317790f6fef5\", \"live\": true, \"id\": \"xe8c14f176da05c5b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"05e7dedd85acdcd023e761b046b859590e9f0fd3\", \"live\": true, \"id\": \"x5e6e246c4a986514\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8858e23953a033c05b335552ef301bd782fa5a0\", \"live\": true, \"id\": \"xc25e75aeabb941a3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23cf557f0de9ea68efc4f5fd1673361abf07cabb\", \"live\": true, \"id\": \"x95e858f6182db30f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cdd9a70b650e9f776d96101c8180ae9ceb31aef5\", \"live\": true, \"id\": \"xe51b90ae98279f8b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c9f11303654916a7f83f8f6ec0bba43ca2beff3\", \"live\": true, \"id\": \"xd1257e27efc93a56\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"22ecc88f4f790918a428af7b8c41aa4af3192c4f\", \"live\": true, \"id\": \"xa0bc80d0eb4e9e36\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c5ea95eb76f05d66d479745236bcb87e0fff228\", \"live\": true, \"id\": \"x43949f6edee95d95\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5d92c12810986062454b80604f52645c462c80b1\", \"live\": true, \"id\": \"xd34404d089a48318\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0c42201b1a57d87e63d594dd779738aa50e56e6c\", \"live\": true, \"id\": \"x2eaf4e8637ca9b69\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2f9104998b5f0e3357c8b38ed9835bcf6d8dab80\", \"live\": true, \"id\": \"xb556fdac7e7b2740\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"37618174c2e3bca843361f4232b447ad6d88d302\", \"live\": true, \"id\": \"x2dfd3ba84e4e74dd\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3fa2844cb64f9c9cabbbbdcabb76b54f4717a6f9\", \"live\": true, \"id\": \"xf2b381efbc60fe05\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4554f69af17f8068809247fb26047fe3df88b916\", \"live\": true, \"id\": \"xc3639fa92c9483ec\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"efc6ab2084c134e39debc54daf2ea63c839a6c9a\", \"live\": true, \"id\": \"xfe2f41cea3fff3c6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"166bb67da24d8871d0284dc1b5cf812ce579f0ff\", \"live\": true, \"id\": \"x780f561c4bd7b614\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Practice evaluating exponents that have fractional bases.", "basepoints": 10.0, "path": "powers-of-fractions/", "slug": "powers-of-fractions", "kind": "Exercise", "name": "powers-of-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["positive_and_zero_exponents", "multiplying_fractions_0.5"], "exercise_id": "powers-of-fractions"}, "sound--passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/sound-passage-2/", "id": "sound--passage-2", "display_name": "Resonance in a tube", "title": "Resonance in a tube", "all_assessment_items": ["{\"sha\": \"d28291a7466fa4383cc4a697ff178b0fbb859c83\", \"live\": true, \"id\": \"x149829ba5ed433b0\"}", "{\"sha\": \"0bd2b76303f1e6d3a155ab40e8811e03d535ec62\", \"live\": true, \"id\": \"x9ec2bdc8d1d0c3cf\"}", "{\"sha\": \"0ffbf7d41b3a47d882b8d869584740e966cd091d\", \"live\": true, \"id\": \"x594a6f93fda74b4f\"}", "{\"sha\": \"5a56874160710c3d72031d445be59aea9c215732\", \"live\": true, \"id\": \"x0e42b4a8056050b5\"}", "{\"sha\": \"a9bf77e61e020e69db30679d7e99f7678d7bc667\", \"live\": true, \"id\": \"x677d12ec6952090b\"}"], "description": "This passage will test your knowledge on sound.", "basepoints": 10.0, "slug": "sound-passage-2", "kind": "Exercise", "name": "sound--passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sound--passage-2"}, "period-of-trig-functions": {"uses_assessment_items": true, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/period-of-trig-functions/", "id": "period-of-trig-functions", "display_name": "Period of trigonometric functions", "title": "Period of trigonometric functions", "all_assessment_items": ["{\"sha\": \"f0f5194d725d6a3382abaa5440f26a259a4626b7\", \"live\": true, \"id\": \"x0df7c209f4149e37\"}", "{\"sha\": \"87f783e82d5a02db1787fef3ed91dc74a18ef909\", \"live\": true, \"id\": \"x6600b31ee8c57346\"}", "{\"sha\": \"f97bd183de4cbf8f308ae6a7cd8625131c4216a0\", \"live\": true, \"id\": \"x84a4174f5c4decd3\"}", "{\"sha\": \"b351406734297d58e6d1f3a47b2266d5e5f4d492\", \"live\": true, \"id\": \"xbc6945717371cad6\"}", "{\"sha\": \"0085ba23ccbefa9ff260490e74f9619c0bb7340c\", \"live\": true, \"id\": \"xfdef720e3f52f666\"}", "{\"sha\": \"78094b81a5fe0b3b907bbea894ffd0f5c58b65c8\", \"live\": true, \"id\": \"x4522b7f6ce7ba55e\"}", "{\"sha\": \"160fa158fef0b01c37e13fc0f8d7af39e335c89e\", \"live\": true, \"id\": \"xe3ebaee4c22dbeaf\"}", "{\"sha\": \"6989d3f8b8e323de896808fa85e2e5b1a4562e69\", \"live\": true, \"id\": \"x377d81522a7bb1fd\"}", "{\"sha\": \"428ec2d4a888a51b5e49765a9d33ce24d91c2b90\", \"live\": true, \"id\": \"xb5af0b1959583440\"}", "{\"sha\": \"7274828384b5863497e7af9aa2464a2f7b212fef\", \"live\": true, \"id\": \"xe906a6e9904a2f66\"}", "{\"sha\": \"8a74ae918c6253e9390ecc7da27b560ba73da336\", \"live\": true, \"id\": \"xff8944809f278840\"}", "{\"sha\": \"9d781a65caa0d4cfc2d93a9a14db5f654d7d76e8\", \"live\": true, \"id\": \"xb8bc0efb3df7732e\"}", "{\"sha\": \"54d907224688b8866ba70e36c3525bf3ec12a216\", \"live\": true, \"id\": \"x76549e4e75389079\"}", "{\"sha\": \"c60790458caaa9cc4a14c11bc6e9bd086873db4e\", \"live\": true, \"id\": \"xc3fc83041d42135e\"}", "{\"sha\": \"810dfe23561a7d3a58ad1fa7614daf81515da212\", \"live\": true, \"id\": \"xc0f5b1f46fbe54a5\"}", "{\"sha\": \"06934b583df7b60e7d3926aa16495dd832150319\", \"live\": true, \"id\": \"x023d1ea7c18b08c1\"}", "{\"sha\": \"bd8e3d5b26d51da9251d8629675913d8cd29cbd2\", \"live\": true, \"id\": \"x714e3895d6906a15\"}", "{\"sha\": \"d9319ba224c02f0c125ff7c1157694be2a8fae53\", \"live\": true, \"id\": \"xca56441dfc946f35\"}", "{\"sha\": \"1cd854b838b4dbb0ae2071e49b55c34de2df577c\", \"live\": true, \"id\": \"x5b5f67548c9c127a\"}", "{\"sha\": \"409adad6302fc7cb1b1735e7ff6b02bbdaef304f\", \"live\": true, \"id\": \"xabb7cd7099da0058\"}", "{\"sha\": \"30a2cf50b9f17fecc3fe76e5ae568dbbd8b9b69d\", \"live\": true, \"id\": \"x821772fe76b6bd25\"}", "{\"sha\": \"fbaad12461965fe7c355db8de624e579e30ec582\", \"live\": true, \"id\": \"x272253727cb06baa\"}", "{\"sha\": \"1cfb9f121a6ca29a6156413f1cbb3b50c73bdc85\", \"live\": true, \"id\": \"x11f2adbbd148973d\"}", "{\"sha\": \"2d8cba99e66bc6b8b8dd40ecbf214913922456dc\", \"live\": true, \"id\": \"xa62ae0056350c480\"}", "{\"sha\": \"fbc0682794a522c4d1d109bb846faf432ad5e20f\", \"live\": true, \"id\": \"x3c9f70e6ce02f47d\"}", "{\"sha\": \"9562f00a598f3bc936e3e56bc2a9308e8ede61eb\", \"live\": true, \"id\": \"x8db78261629b1994\"}", "{\"sha\": \"ade220e74e888849054a86b5b7d523eaf036cdab\", \"live\": true, \"id\": \"xb07fafc11aa6a1b5\"}", "{\"sha\": \"ec44cd21775006f132bf45a78735b09cfe4dd926\", \"live\": true, \"id\": \"xa788d18fcad2be1d\"}", "{\"sha\": \"6a800f5cf38d46b2ed6b2f9fa26dd861534ae221\", \"live\": true, \"id\": \"x356d55f34c84bec9\"}", "{\"sha\": \"f69ee40406e7f6d7e7c7c2fd21cd08c342190439\", \"live\": true, \"id\": \"x468b70c51408a094\"}", "{\"sha\": \"5a6cb2a95e0554af5222d371a21643abd8052d3a\", \"live\": true, \"id\": \"x3593a9fac105e158\"}", "{\"sha\": \"82f176851ed48c09ac34297dbe77dfa3a01039b7\", \"live\": true, \"id\": \"xa45e6a1704cf776f\"}", "{\"sha\": \"00965e9cb98e0d5713f582f5846a82005f04ff2f\", \"live\": true, \"id\": \"x105350a539cc7b7c\"}", "{\"sha\": \"837d18fed281c2ea03b128606fd31fa53c154e75\", \"live\": true, \"id\": \"xc0d05d01808c9500\"}", "{\"sha\": \"fe2f1d24fa3a6fc4867039c63ec9d12518e77bde\", \"live\": true, \"id\": \"xdb0a101b54c03088\"}", "{\"sha\": \"cf492ae9c599622fc3a8978e80c2930b172bc406\", \"live\": true, \"id\": \"xb6f9c2acd4db75c0\"}", "{\"sha\": \"5f8eb5d9abd5f43d5355496be78e8bd9f891ab4f\", \"live\": true, \"id\": \"xe5db23b37a5deed9\"}", "{\"sha\": \"ab21b2e161d54112004a2b19f29a6de397b8dfe8\", \"live\": true, \"id\": \"x1db5e3bef856f43f\"}", "{\"sha\": \"fb7a789115d99a3c17c9ae33f488011fc088d908\", \"live\": true, \"id\": \"x6b4bbd2fde272ee1\"}", "{\"sha\": \"f60de12bd8f2e1122a9dbd3b992208987888230c\", \"live\": true, \"id\": \"x5a97fc2d5aa65eb5\"}"], "description": "Find the period of trigonometric functions.", "basepoints": 10.0, "slug": "period-of-trig-functions", "kind": "Exercise", "name": "period-of-trig-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["symmetry-and-periodicity-of-trig-functions"], "exercise_id": "period-of-trig-functions"}, "quiz-how-were-stars-formed-": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/stars-and-elements/how-were-stars-formed/quiz-how-were-stars-formed-/", "id": "quiz-how-were-stars-formed-", "display_name": "Quiz: How Were Stars Formed?", "title": "Quiz: How Were Stars Formed?", "all_assessment_items": ["{\"sha\": \"4c14ea4089d7861e9ae0397d9ccac2dccb105dd2\", \"live\": true, \"id\": \"x02d6f7432968f05f\"}", "{\"sha\": \"93a20c9aafd2c72cd641980d4f3ffb311473a0f0\", \"live\": true, \"id\": \"x52dada90e682d1ca\"}", "{\"sha\": \"ef854e90200c780f8ad18bafaa08c5bc7398c307\", \"live\": true, \"id\": \"x2c9495b6e22d845f\"}", "{\"sha\": \"0937071811823392b40700caf8ce3308f0be5394\", \"live\": true, \"id\": \"x618cd40607e17434\"}", "{\"sha\": \"168ab1c97955db7d6835a6c20375faacb3dd5f0d\", \"live\": true, \"id\": \"xcf9d8fb69b658d89\"}"], "description": "Quiz 3.0", "basepoints": 10.0, "slug": "quiz-how-were-stars-formed-", "kind": "Exercise", "name": "quiz-how-were-stars-formed-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-how-were-stars-formed-"}, "exercise--intro-to-variables": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/programming/variables/exercise-intro-to-variables/", "id": "exercise--intro-to-variables", "display_name": "Quiz: Variables", "title": "Quiz: Variables", "all_assessment_items": ["{\"sha\": \"432ea0a7b24132f0ac5274632ee005dfee3fadb1\", \"live\": true, \"id\": \"x3cc2bf119b885bdd\"}", "{\"sha\": \"45041eb37a45494d39794d8c665467616ffaf943\", \"live\": true, \"id\": \"x8e5e11aa50c5f7a7\"}", "{\"sha\": \"7dd5a4315b4296f11ac33ad99f7eb7d1911bdc20\", \"live\": true, \"id\": \"xfbe87ff9e2672846\"}", "{\"sha\": \"4410c31367c8b894183400a2fe85dee2f4dbc34c\", \"live\": true, \"id\": \"x5f0da7116b61382e\"}", "{\"sha\": \"b49b48cf7c3355806a02653b320ed0b9707d8dc8\", \"live\": true, \"id\": \"x09cc94fd5dfa9093\"}"], "description": "", "basepoints": 10.0, "slug": "exercise-intro-to-variables", "kind": "Exercise", "name": "exercise--intro-to-variables", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "exercise--intro-to-variables"}, "transforming-polygons": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-transformations/transforming-polygons/", "id": "transforming-polygons", "display_name": "Transforming polygons", "title": "Transforming polygons", "all_assessment_items": ["{\"sha\": \"53e7643ba89ab99b2b240cb806263672badfb35f\", \"live\": true, \"id\": \"xbde4fe1a8548b2ec\"}", "{\"sha\": \"9b2145b54a11811944a7b52d688a562c5779df5b\", \"live\": true, \"id\": \"x80b568000e5f8d01\"}", "{\"sha\": \"fd3a2fc5e701f79f3131711c64abfc24023c1357\", \"live\": true, \"id\": \"xe71c28e53bff4186\"}", "{\"sha\": \"6ecdc825585588ae264b8fce81109a6621669347\", \"live\": true, \"id\": \"x5ae22a0476e52dcf\"}", "{\"sha\": \"86588a0d3feaddc4368fda763fb385afa966859d\", \"live\": true, \"id\": \"x30598aa50ad62153\"}", "{\"sha\": \"bd0c0652ef4cd02eed4564642880e6578acd4273\", \"live\": true, \"id\": \"xab77839597e32a6c\"}", "{\"sha\": \"71f76302aae1383c2df202b392c4993e641f67f9\", \"live\": true, \"id\": \"x4e546b49b0c4529c\"}", "{\"sha\": \"11c20227fd2177337a353ce5bc4e144cd6654261\", \"live\": true, \"id\": \"x9dcaa83bbcb3da27\"}", "{\"sha\": \"4049b96e38ab2e92c505094784fd4e07926c0776\", \"live\": true, \"id\": \"x6597d888dcbf65fd\"}", "{\"sha\": \"acd81bcb38fc7540d69e8d875786056772d79f29\", \"live\": true, \"id\": \"x21050610a6214989\"}", "{\"sha\": \"f8c9dd6ad5e513ccc6da3a710c61093b57f235d5\", \"live\": true, \"id\": \"xd2fdd5883908f628\"}", "{\"sha\": \"976c2e8e3ae389f5d56f20882c0a5998792d4f19\", \"live\": true, \"id\": \"x0b8e283ca6531a86\"}", "{\"sha\": \"dec6ff944ca64e569d3a0f899c9340a4f9f217ab\", \"live\": true, \"id\": \"x747c6928fc9c5ea2\"}", "{\"sha\": \"01a66dff11e29eea3f6895d4c0d31dcf10f50397\", \"live\": true, \"id\": \"xb32ee9fe673f3ffd\"}", "{\"sha\": \"2f2426f116d556f765b14a6500694af6b8ff3235\", \"live\": true, \"id\": \"x00fbe2f90dd0f9a8\"}", "{\"sha\": \"bda577238b47eecdeaef1fcf717fc2b0e9858df8\", \"live\": true, \"id\": \"xcc0aa556de081458\"}", "{\"sha\": \"e73b835bd807ccc299889899e07cff234ac35828\", \"live\": true, \"id\": \"x90118050280c5da9\"}", "{\"sha\": \"7f09ed58105af0fbb75fbb66e13207b27ba7865d\", \"live\": true, \"id\": \"xadaeef6c710d952e\"}", "{\"sha\": \"cb45049e6df0a2af8d4133d39ef2baced93cc81e\", \"live\": true, \"id\": \"x56bc655d3405e2d3\"}", "{\"sha\": \"bebb384d396123c9402ae34304952ff13a221a12\", \"live\": true, \"id\": \"x5fecb93bfda4b5ae\"}", "{\"sha\": \"d03d57d73dde21e75822123639958648fa4cbbf2\", \"live\": true, \"id\": \"x7db0d439223a9ca2\"}", "{\"sha\": \"545a635a37b442d471b6d02fa6396c16a0e1e828\", \"live\": true, \"id\": \"xe5893e54b7990037\"}", "{\"sha\": \"f577651fbca7e6ffa42fadd6813bdbcc357215a4\", \"live\": true, \"id\": \"x544ee52a7ec5803c\"}", "{\"sha\": \"04405a6b3f66f7e26ff72fe841a5a1f733cf474c\", \"live\": true, \"id\": \"xf086e06009d19c5a\"}", "{\"sha\": \"2531ade9d5247f5897deabaa7d460e85502c920a\", \"live\": true, \"id\": \"x1ae4774b6c160390\"}", "{\"sha\": \"7194b242c240a125ca3ff010aaa7170b8ca39315\", \"live\": true, \"id\": \"x0f07547308279ccd\"}", "{\"sha\": \"dd4b84699eb73abf75b675b3e86d7cf26a1772ee\", \"live\": true, \"id\": \"x15d66580d470a20b\"}", "{\"sha\": \"727c8695350a448aaa453207956cf4fc8e8c4ba9\", \"live\": true, \"id\": \"x288336ac138423e5\"}", "{\"sha\": \"290bbf4f9de009442646db4c72cfe91b82922abd\", \"live\": true, \"id\": \"xf092e44b6a655ebe\"}", "{\"sha\": \"9c7aa05d52f964eb48edcec2b1d6a9b0b582fec4\", \"live\": true, \"id\": \"x944231b78ac717c6\"}"], "description": "", "basepoints": 27.0, "slug": "transforming-polygons", "kind": "Exercise", "name": "transforming-polygons", "seconds_per_fast_problem": 45.0, "prerequisites": [], "exercise_id": "transforming-polygons"}, "local-linearization": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/local-linearization/local-linearization/", "id": "local-linearization", "display_name": "Local linearization", "title": "Local linearization", "all_assessment_items": ["{\"sha\": \"d24944a5c904fd7df577baaa149f884d77bbdd3c\", \"live\": true, \"id\": \"xd967666d5ce143fa\"}", "{\"sha\": \"7717c06e9e17360c1c0668a6867b6d71ff92f2c4\", \"live\": true, \"id\": \"x43508c6904ab1e61\"}", "{\"sha\": \"9a8e9235c33fa06a107771c36040029892ddba9d\", \"live\": true, \"id\": \"xcb8606689840bb82\"}", "{\"sha\": \"84e111967a0a3154b6fbc40014865195bfb2d22b\", \"live\": true, \"id\": \"xb257c0f6cf6380e1\"}", "{\"sha\": \"6a1eadfb68f7191437b08084e94303e529539790\", \"live\": true, \"id\": \"x10d912d124f6c2a9\"}", "{\"sha\": \"6fcb5aeea0f54f4c252524425954b965103e211b\", \"live\": true, \"id\": \"x76fe3d9cedb2c6eb\"}", "{\"sha\": \"118e6373992b104ace04fa77a6dd172a2f89d7db\", \"live\": true, \"id\": \"xc23883468f5d2ef1\"}", "{\"sha\": \"2d1e8a5d49564d015363fd8d2934ae77cdceab8c\", \"live\": true, \"id\": \"x7333424f97531ef4\"}", "{\"sha\": \"66815f6d2872547226c5aee127eca4a5aded5aff\", \"live\": true, \"id\": \"x79da409932f1c526\"}", "{\"sha\": \"3ac9b10addfd2baf9f1380ee5d482b5a32c23e80\", \"live\": true, \"id\": \"xa2830a1a88027769\"}", "{\"sha\": \"543471c0c10aca6acd2d71a4c0e3460e819dd518\", \"live\": true, \"id\": \"xe2e9baadcde324cd\"}", "{\"sha\": \"7d9e5f72db7e05e4d73fb8be0cbe08124530a9ec\", \"live\": true, \"id\": \"x2aca2d335330afbc\"}", "{\"sha\": \"147748018c3eb5e34a373fd23a1e1c6fce49f27b\", \"live\": true, \"id\": \"x03950bf8e9f9c7a8\"}", "{\"sha\": \"b35226c8472fdfaa0666c3f414c8ceb62bf2bd58\", \"live\": true, \"id\": \"x42569c7ab947d696\"}", "{\"sha\": \"b9c9ef1f3a64540c5e658997d5164ce90c898d90\", \"live\": true, \"id\": \"xe16412a2d1f61733\"}", "{\"sha\": \"36a0cdaa825ae2cb7f3239c1a839b947bab6d2cb\", \"live\": true, \"id\": \"x490c3829577bb356\"}", "{\"sha\": \"c8ddb6884e4b83f2ea259d92c462c4e1a9a8bea1\", \"live\": true, \"id\": \"xb3f84b066c5822d0\"}", "{\"sha\": \"469b08acaff2423144db38161b00cd89f1978bba\", \"live\": true, \"id\": \"xb324306cdc179eda\"}", "{\"sha\": \"d12230bfaa4b7639225171e398b685293b5e3141\", \"live\": true, \"id\": \"xa86553faf210e2c1\"}", "{\"sha\": \"2033a6e3a52744b18394de150d59dcf646a7dfe2\", \"live\": true, \"id\": \"xc03f174b55ae8c80\"}", "{\"sha\": \"dc0d4f8d422a8a500b6acf5a419f9e9f7a2998fe\", \"live\": true, \"id\": \"xdc2426e1e1c79d0d\"}", "{\"sha\": \"56e0bf4a763bd277b9dade5339fd2681726c194e\", \"live\": true, \"id\": \"xf90a2cbcd59ab048\"}", "{\"sha\": \"8394d4edaf6fa6630befaa770b9aa609d90af3e6\", \"live\": true, \"id\": \"xa278d8ef9d79605d\"}", "{\"sha\": \"9f6cb4f74b3266e8fa3625a49e54c9f00b80eafa\", \"live\": true, \"id\": \"x736e2b3d197730ff\"}", "{\"sha\": \"03f651bb7e83eb6a65c2353b411bd1f69c91176d\", \"live\": true, \"id\": \"x30c233af04e18039\"}"], "description": "", "basepoints": 10.0, "slug": "local-linearization", "kind": "Exercise", "name": "local-linearization", "seconds_per_fast_problem": 4.0, "prerequisites": ["combining-the-product-rule-and-chain-rule"], "exercise_id": "local-linearization"}, "nclex-rn-questions-on-heart-valve-disease-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-heart-valve-disease-2/", "id": "nclex-rn-questions-on-heart-valve-disease-2", "display_name": "NCLEX-RN questions on heart-valve disease 2", "title": "NCLEX-RN questions on heart-valve disease 2", "all_assessment_items": ["{\"sha\": \"2f2b9fc3a0d6db6c815ed195151d2bf716979f0e\", \"live\": true, \"id\": \"xf1fd4fb9a36f6e6f\"}", "{\"sha\": \"76e429096a806742baa78044e04ea5b2c3ae7861\", \"live\": true, \"id\": \"x33c7cca1a36aa793\"}", "{\"sha\": \"c92d54d059f8ad4522bc1808ebaeaaeb8a861384\", \"live\": true, \"id\": \"x7771ceeac289a843\"}", "{\"sha\": \"112bade82389fb63c3954a0cb846cfc396b28f9c\", \"live\": true, \"id\": \"x48d0cfa1a2d37697\"}", "{\"sha\": \"c11122b6dce43381174636bcd4d4b0bde1908e29\", \"live\": true, \"id\": \"x479230dc664614e6\"}", "{\"sha\": \"77cefa6b34f9a46b47b30ddb8c81cdb7530030b9\", \"live\": true, \"id\": \"xf7a1b0467a7e1aab\"}"], "description": "More questions related to heart valve disease", "basepoints": 10.0, "slug": "nclex-rn-questions-on-heart-valve-disease-2", "kind": "Exercise", "name": "nclex-rn-questions-on-heart-valve-disease-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-heart-valve-disease-2"}, "nclex-rn-questions-on-heart-valve-disease-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-heart-valve-disease-1/", "id": "nclex-rn-questions-on-heart-valve-disease-1", "display_name": "NCLEX-RN questions on heart-valve disease 1", "title": "NCLEX-RN questions on heart-valve disease 1", "all_assessment_items": ["{\"sha\": \"47ac206976609efe1aab8f6f9ac3992c0cdf46f1\", \"live\": true, \"id\": \"x1a7a862e6fabd453\", \"perseus_api_major_version\": null}", "{\"sha\": \"9122a028c5b1961f072a81b77dbbaf2186860d46\", \"live\": true, \"id\": \"xed3265a5d0da2feb\", \"perseus_api_major_version\": null}", "{\"sha\": \"0393729d3528604549a1a98eae339622fffafa67\", \"live\": true, \"id\": \"xa7dbf041ea1029b3\", \"perseus_api_major_version\": null}", "{\"sha\": \"42171ae6173f3d2288e96e98aa908b7947646a21\", \"live\": true, \"id\": \"xd2cd5ddc3ddaa17f\", \"perseus_api_major_version\": null}", "{\"sha\": \"d359836e4d5de8193e8533d88f2920b523a17822\", \"live\": true, \"id\": \"x933d2c1ba77e5b2c\", \"perseus_api_major_version\": null}", "{\"sha\": \"4008650a2e2cefcdc1425de1fc80fa49b74a5813\", \"live\": true, \"id\": \"xa9f1ed16e039ef21\", \"perseus_api_major_version\": null}", "{\"sha\": \"6348a244c97ed5c4c751e25f592c3390cdd2a6b1\", \"live\": true, \"id\": \"x30b48e5bd8d2d1b2\", \"perseus_api_major_version\": null}", "{\"sha\": \"efc6d6edcddecc129bb257c789eeaf96af91342e\", \"live\": true, \"id\": \"x327e6c891b55b761\", \"perseus_api_major_version\": null}", "{\"sha\": \"d1b3c0d127cb2fb35bd4d4e2186c034afc58cbaa\", \"live\": true, \"id\": \"xd2cb8c8737e453dd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"581e0a31c3884c48e98bc9a214ad73b741636c51\", \"live\": true, \"id\": \"xded740c82bd8ec62\", \"perseus_api_major_version\": null}"], "description": "Questions related to heart valve disease", "basepoints": 10.0, "slug": "nclex-rn-questions-on-heart-valve-disease-1", "kind": "Exercise", "name": "nclex-rn-questions-on-heart-valve-disease-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-heart-valve-disease-1"}, "cocaine-addiction-in-mice": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/cocaine-addiction-in-mice/", "id": "cocaine-addiction-in-mice", "display_name": "Cocaine addiction in mice", "title": "Cocaine addiction in mice", "all_assessment_items": ["{\"sha\": \"8794cc3cd46134568ffd0641f0d712a936855af9\", \"live\": true, \"id\": \"x247991b595ee102a\"}", "{\"sha\": \"2b900f14aa8b3465150de7aaa9fbfbb15691a3b9\", \"live\": true, \"id\": \"xf2c24db5b8beb481\"}", "{\"sha\": \"538ba1e4a66d25b7e9c616a8ee30a058749d0a19\", \"live\": true, \"id\": \"x8697714bdfdf8b7f\"}", "{\"sha\": \"dd4c81d1c934f1c791e84bce2b7d0503d684ced3\", \"live\": true, \"id\": \"x74c0279848ab6e7c\"}", "{\"sha\": \"ddf1e414f2ed935b9564e454678e4a0f19b5d087\", \"live\": true, \"id\": \"x18e4224d1ba7d36f\"}"], "description": "This passage tests your knowledge on drug addiction treatments", "basepoints": 10.0, "slug": "cocaine-addiction-in-mice", "kind": "Exercise", "name": "cocaine-addiction-in-mice", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cocaine-addiction-in-mice"}, "-age-related-memory-loss----rbap48-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/-age-related-memory-loss-rbap48-/", "id": "-age-related-memory-loss----rbap48-", "display_name": "Age-Related Memory Loss -- RbAp48", "title": "Age-Related Memory Loss -- RbAp48", "all_assessment_items": ["{\"sha\": \"1e6956a01bfadfddad87c0bda14d01957e3226b7\", \"live\": true, \"id\": \"x8ffd6bdadeca429d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"847c601e6010b2a0ece06a5449e0b09b0293fc4a\", \"live\": true, \"id\": \"xbc06898d14ae45a6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"12cb8e97710f80d1d32e5c6c684019808534a3aa\", \"live\": true, \"id\": \"x646fab15e1b919ec\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aa6aeed42b8435de9ccc664490c0e34e532941a0\", \"live\": true, \"id\": \"x63303f1bd9e9566a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"483a46476ba48e6803843b48fb946c3b8c11d35e\", \"live\": true, \"id\": \"xb4b205ab3c4207a1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Age-Related Memory Loss -- RbAp48", "basepoints": 10.0, "slug": "-age-related-memory-loss-rbap48-", "kind": "Exercise", "name": "-age-related-memory-loss----rbap48-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "-age-related-memory-loss----rbap48-"}, "linear-function-intercepts": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/x-and-y-intercepts/linear-function-intercepts/", "id": "linear-function-intercepts", "display_name": "Intercepts from a graph", "title": "Intercepts from a graph", "all_assessment_items": ["{\"sha\": \"7de9040ed91d87fabe15c2b3868102044513ea31\", \"live\": true, \"id\": \"x5b8df885\"}", "{\"sha\": \"f7a5d2f89cc305a19e9861d9e9c077eb486af914\", \"live\": true, \"id\": \"xf39be922f6f5ac11\"}", "{\"sha\": \"07b9e86aad10c31ac133108ecfe8ca8c5039d8ca\", \"live\": true, \"id\": \"x4ec62f1a1bd50dc0\"}", "{\"sha\": \"16d665774bf383ec1b70390df5e00e974253f5bd\", \"live\": true, \"id\": \"x53b7f8fe834ed159\"}", "{\"sha\": \"d095c77664b25e1524fec68d94561ba79c54d055\", \"live\": true, \"id\": \"xc28c6fb5a5af714d\"}", "{\"sha\": \"aa88b7aac06014a9758464f1b94682944b163d40\", \"live\": true, \"id\": \"x70945b8cffd33a2c\"}", "{\"sha\": \"64d0c52e9c804694e846ba27fcaa2f18f89d1a1c\", \"live\": true, \"id\": \"x1f6d234ef300b065\"}", "{\"sha\": \"7fcf1aeca3240cab5c5eb46680022f9c5bd122af\", \"live\": true, \"id\": \"xd136a87df56932cc\"}", "{\"sha\": \"666bff3f530d6cf9a41880f98272cbde20f85423\", \"live\": true, \"id\": \"x65d8c35516eed0c3\"}", "{\"sha\": \"3d28bbb6aff0a2e96bc082bc10bb2a0eaf08c99f\", \"live\": true, \"id\": \"x6add2c7b865e84df\"}", "{\"sha\": \"aa5ef4cbdd50b03e8988f2f03caabbb7666e49a9\", \"live\": true, \"id\": \"x0ea287eb56c6079c\"}", "{\"sha\": \"3f827d150288625f36c99d1c758dfb733d930f5e\", \"live\": true, \"id\": \"xdd13bb45d9545349\"}", "{\"sha\": \"737bcf0ea9ffedf7e266343b6cfbdde9fa62b769\", \"live\": true, \"id\": \"xa669f3aaff84ec32\"}", "{\"sha\": \"fb6dd8ca88d3e8c21f3228316f1b703a784e23d3\", \"live\": true, \"id\": \"x31f4902a8486741f\"}", "{\"sha\": \"d9a307de8f49144a29244c5fc8bd941f7e7884ea\", \"live\": true, \"id\": \"x36c65f024d29a88c\"}", "{\"sha\": \"8a6a18e19d46c1e3d14f2c4adf8ec7f52fbf6711\", \"live\": true, \"id\": \"x75ad01d3e1aec7d3\"}", "{\"sha\": \"39371508e49ae9877277cd4bfecaa5f7ecdc594d\", \"live\": true, \"id\": \"xb2d16828a525ae7b\"}", "{\"sha\": \"c168873bab5ba05127ce14d83c3176cc965f9a1f\", \"live\": true, \"id\": \"x79d7ddf6541c9a89\"}", "{\"sha\": \"7191ffd00d232e881c2ef4ae7d3fe2f80cde0e49\", \"live\": true, \"id\": \"x76e706439765334f\"}", "{\"sha\": \"6e8b2effe98e8835442e46d5e4f3abe87a2e597a\", \"live\": true, \"id\": \"x105b114eb6a2db8d\"}"], "description": "Look at the graph of an equation to find x-intercepts and y-intercepts", "basepoints": 16.0, "slug": "linear-function-intercepts", "kind": "Exercise", "name": "linear-function-intercepts", "seconds_per_fast_problem": 9.0, "prerequisites": ["graphing-solutions-to-two-variable-linear-equations"], "exercise_id": "linear-function-intercepts"}, "box-plots": {"uses_assessment_items": true, "id": "box-plots", "display_name": "Creating box plots 2", "title": "Creating box plots 2", "all_assessment_items": ["{\"sha\": \"c27a72df853695486bb66ad0049eb3b1670463b7\", \"live\": true, \"id\": \"xfe503d0cac995e40\"}", "{\"sha\": \"f7aff17453728ee226a16879d8dd444998d97fd3\", \"live\": true, \"id\": \"x6b28d85b5e059275\"}", "{\"sha\": \"dac2244a0d7e2420ba8998e462ee83a2ba18e7d6\", \"live\": true, \"id\": \"x2e85bc372d183601\"}", "{\"sha\": \"22e222ce0df7e45382da85bae68992fadc1318b0\", \"live\": true, \"id\": \"xac20c7a42fb7aa60\"}", "{\"sha\": \"2ea22e9660835b0bf0b1e4b8ddee26c808fb0952\", \"live\": true, \"id\": \"xf577e4a86d145f1a\"}", "{\"sha\": \"73dc7c9a5ed4447fd3ae645d7077cf2f104ce293\", \"live\": true, \"id\": \"x25261540063da485\"}", "{\"sha\": \"7b6567e90396b3534512e31291306e23a06a0526\", \"live\": true, \"id\": \"x64fb303508ab0ba1\"}", "{\"sha\": \"2cb2b799765f40a49d63805ea4f84189f9abe742\", \"live\": true, \"id\": \"x9062f3a170fabe89\"}", "{\"sha\": \"36f9cc807efdb56041e1ae57256d25f00c6447aa\", \"live\": true, \"id\": \"xa6b91700a81dcb4e\"}", "{\"sha\": \"5171268d300d4d0d6755c54a7caf7c61a1dc9e7e\", \"live\": true, \"id\": \"x7f70dd43106640db\"}", "{\"sha\": \"27dc09dd12c0e04de9ae9d7ec659fdaf9b4abcc8\", \"live\": true, \"id\": \"xf7b916a6587a17c7\"}", "{\"sha\": \"5d581a265ec8e3dc4d19af23da34371b3525971e\", \"live\": true, \"id\": \"x893b21d145d7ce37\"}", "{\"sha\": \"1620ab6a45b01c446289b76b3b704da9d6ec3e04\", \"live\": true, \"id\": \"x06a66c487c2898e6\"}", "{\"sha\": \"401b0ea596b3857afe5c18d86f3b988e1cb455d9\", \"live\": true, \"id\": \"xbb62b0ad03abb7e7\"}", "{\"sha\": \"096e3f73e2171c0eac20b2309ccb1d7a7faa973b\", \"live\": true, \"id\": \"x9ee75db91aabc34e\"}", "{\"sha\": \"d6f43537061ae64b8b47abb2fd88fe358b36a253\", \"live\": true, \"id\": \"x229995e23eaa3f47\"}", "{\"sha\": \"b449c393561f407dbbb17d87c4fd5d576e1cc450\", \"live\": true, \"id\": \"xb23fe5ed4f58f34e\"}", "{\"sha\": \"4d69043bbad84fdc127c8e1d0f5d879cc9c9c3ef\", \"live\": true, \"id\": \"x1e00424ce8c664b1\"}", "{\"sha\": \"4810e51479cdda250076ace270d8b0fcbfdfc40b\", \"live\": true, \"id\": \"x84fc32d0352d1cd6\"}", "{\"sha\": \"f74e91ca2991e5ab68baefca20b6e12c6e1eaf71\", \"live\": true, \"id\": \"x8b5988cbdd137604\"}"], "description": "More practice making box plots\u00a0to summarize data sets.", "basepoints": 10.0, "path": "box-plots/", "slug": "box-plots", "kind": "Exercise", "name": "box-plots", "seconds_per_fast_problem": 4.0, "prerequisites": ["calculating-the-median"], "exercise_id": "box-plots"}, "quiz--the-rise-of-agriculture": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/agriculture-civilization/rise-of-agriculture/quiz-the-rise-of-agriculture/", "id": "quiz--the-rise-of-agriculture", "display_name": "Quiz: The Rise of Agriculture", "title": "Quiz: The Rise of Agriculture", "all_assessment_items": ["{\"sha\": \"a1cfb7b2acbe9895a3d0518a045ddbd55f7c7cb8\", \"live\": true, \"id\": \"x3db452f84d158c69\"}", "{\"sha\": \"8c90c03edfac063723736044a3d68bab3986687b\", \"live\": true, \"id\": \"xf0d74dfd98b5329d\"}", "{\"sha\": \"8dcd589ee2dc2c8b077941456e0b1df643ecb8c0\", \"live\": true, \"id\": \"xbd35529745662186\"}", "{\"sha\": \"3135b5161abf2c243381e0e10b9f961769d868ae\", \"live\": true, \"id\": \"x7d048f74317cce4e\"}", "{\"sha\": \"637299edd8915fbd3409dd290816c74668456a87\", \"live\": true, \"id\": \"x4ec523bf1f55fab5\"}"], "description": "Quiz 7.0", "basepoints": 10.0, "slug": "quiz-the-rise-of-agriculture", "kind": "Exercise", "name": "quiz--the-rise-of-agriculture", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--the-rise-of-agriculture"}, "marriage-a-la-mode-quiz": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/britain-18c/britain-ageof-revolution/marriage-a-la-mode-quiz/", "id": "marriage-a-la-mode-quiz", "display_name": "Marriage a la Mode Quiz", "title": "Marriage a la Mode Quiz", "all_assessment_items": ["{\"sha\": \"fe657d42bca787bef4099dbc1b833b38b5591cea\", \"live\": true, \"id\": \"xac72931f0aacc5a0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90603b28d379a669684aae643d766f7cf34f480a\", \"live\": true, \"id\": \"x8326bf35f7b5b792\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"608e606daa8b8873874ab532dfbc1ab4e8f67d90\", \"live\": true, \"id\": \"xd4b9228110e9081e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"069979bff4a17243f588ac3c245ea5753783e66a\", \"live\": true, \"id\": \"x531522fddd4af1c0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d9c614c8b293be5f3d73e35d1788aa75f4c133c\", \"live\": true, \"id\": \"xb8ba729f63f5fde4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1524b2f7c5abc18c845134f63cba21db97a3c696\", \"live\": true, \"id\": \"xab1fd51a742bd9b1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge on this object.", "basepoints": 10.0, "slug": "marriage-a-la-mode-quiz", "kind": "Exercise", "name": "marriage-a-la-mode-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "marriage-a-la-mode-quiz"}, "eukaryotic-cell-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/cells/eukaryotic-cells/eukaryotic-cell-questions/", "id": "eukaryotic-cell-questions", "display_name": "Eukaryotic cell questions", "title": "Eukaryotic cell questions", "all_assessment_items": ["{\"sha\": \"cc3771755b629defe0fe0bea63c1a863e28b139a\", \"live\": true, \"id\": \"x9d663def7d87507a\"}", "{\"sha\": \"175cd41de7581ab901a0dc48f8589f598fce5d0d\", \"live\": true, \"id\": \"xb7302fafe598fc48\"}", "{\"sha\": \"03e5adf51dcf3dbbdc49853cee9940b0370e5c75\", \"live\": true, \"id\": \"x752936ecab1d5524\"}", "{\"sha\": \"64d21d7318e7037b95e4cf5ca1cb0db76b0cfc03\", \"live\": true, \"id\": \"x3a4d0f2fa34f0730\"}", "{\"sha\": \"c78481f8c5fc96bba8d8c33fcd1f349446ea8463\", \"live\": true, \"id\": \"x1b6d892ab27dded9\"}", "{\"sha\": \"b994975166d86a6613cb82b81d9ed870ac9a5a73\", \"live\": true, \"id\": \"x41d553f1fdcaa345\"}", "{\"sha\": \"13608861d1e24bac47498b7b4d660ebb55e93e31\", \"live\": true, \"id\": \"xff5a9656b8d175a3\"}", "{\"sha\": \"d001cf97a5758e2bee4a94bd5c878d4525f14553\", \"live\": true, \"id\": \"xe15c567652990a8e\"}", "{\"sha\": \"be98404d354a51f460c044711448738702a06119\", \"live\": true, \"id\": \"x2bcd97c6fe18fda7\"}", "{\"sha\": \"67e46302dbc14ae3d0b62e389fd52ff40ad8bf26\", \"live\": true, \"id\": \"x946649c4b63bf7fe\"}"], "description": "Eukaryotic cell questions", "basepoints": 10.0, "slug": "eukaryotic-cell-questions", "kind": "Exercise", "name": "eukaryotic-cell-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "eukaryotic-cell-questions"}, "comparing_fractions_with_the_same_numerator": {"uses_assessment_items": false, "id": "comparing_fractions_with_the_same_numerator", "display_name": "Comparing fractions with the same numerator", "title": "Comparing fractions with the same numerator", "description": "Compare two fractions that have the same numerator using greater and less than symbols.", "basepoints": 5.0, "path": "comparing_fractions_with_the_same_numerator/", "slug": "comparing_fractions_with_the_same_numerator", "kind": "Exercise", "name": "comparing_fractions_with_the_same_numerator", "seconds_per_fast_problem": 0.0, "prerequisites": ["fractions_on_the_number_line_2", "recognizing_fractions", "comparing-fractions-with-the-same-numerator-or-denominator"], "exercise_id": "comparing_fractions_with_the_same_numerator"}, "circles_and_arcs": {"uses_assessment_items": false, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/circles_and_arcs/", "id": "circles_and_arcs", "display_name": "Circles and arcs", "title": "Circles and arcs", "description": "Relate the length of an arc to the circumference of a whole circle.", "basepoints": 28.0, "slug": "circles_and_arcs", "kind": "Exercise", "name": "circles_and_arcs", "seconds_per_fast_problem": 52.0, "prerequisites": ["radius_diameter_and_circumference", "proportions_1", "measuring_angles"], "exercise_id": "circles_and_arcs"}, "the-role-of-glycolysis-and-the-pentose-phosphate-pathway-in-fatty-acid-synthesis-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-role-of-glycolysis-and-the-pentose-phosphate-pathway-in-fatty-acid-synthesis-1/", "id": "the-role-of-glycolysis-and-the-pentose-phosphate-pathway-in-fatty-acid-synthesis-1", "display_name": "The role of glycolysis and the pentose-phosphate pathway in fatty acid synthesis", "title": "The role of glycolysis and the pentose-phosphate pathway in fatty acid synthesis", "all_assessment_items": ["{\"sha\": \"513ff0101f961f73b191b11ae9de270ee93098d2\", \"live\": true, \"id\": \"xf5aa7e7df61f4449\"}", "{\"sha\": \"c29592d42481f5b3b339a28ef28943c127ed8e6d\", \"live\": true, \"id\": \"x487919e68a5c7fa6\"}", "{\"sha\": \"97be90872c1d902bd800518acda1c6503ce1b331\", \"live\": true, \"id\": \"x79b41bcd39aadb27\"}", "{\"sha\": \"840fb21120c6f6ce8e5bf2253f178f5784f7d321\", \"live\": true, \"id\": \"xd998f85cd5dca4e3\"}", "{\"sha\": \"eb4123b88d6dc1bd8fcdc19134dcebdaf8b130aa\", \"live\": true, \"id\": \"xbdfa431533f22fe8\"}"], "description": "The role of glycolysis and the pentose-phosphate pathway in fatty acid synthesis", "basepoints": 10.0, "slug": "the-role-of-glycolysis-and-the-pentose-phosphate-pathway-in-fatty-acid-synthesis-1", "kind": "Exercise", "name": "the-role-of-glycolysis-and-the-pentose-phosphate-pathway-in-fatty-acid-synthesis-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-role-of-glycolysis-and-the-pentose-phosphate-pathway-in-fatty-acid-synthesis-1"}, "devotional-and-secular-manuscripts-quiz": {"uses_assessment_items": true, "id": "devotional-and-secular-manuscripts-quiz", "display_name": "Devotional and secular manuscripts quiz", "title": "Devotional and secular manuscripts quiz", "all_assessment_items": ["{\"sha\": \"83b27cbe98e98d68ddf37c2d7b2e1b7a342cc5f1\", \"live\": true, \"id\": \"x9a5908384e85f267\"}", "{\"sha\": \"13f454db6d14fb1b1272538b6742abc434574bea\", \"live\": true, \"id\": \"x18c85a5b737be75a\"}", "{\"sha\": \"e4f35c00e94435fd9da92f159a791eeb3a657db4\", \"live\": true, \"id\": \"xd283f451c111347b\"}", "{\"sha\": \"88bf86b0085d4c5a97b900bf502499c64bddca44\", \"live\": true, \"id\": \"xc4afaccc1dc0851f\"}", "{\"sha\": \"f933560051aac29918316617fec1ae85f0eca5f5\", \"live\": true, \"id\": \"x6dcadf707f144741\"}", "{\"sha\": \"f7da0c54e5678191deabb2f87ce3c1419fb03b82\", \"live\": true, \"id\": \"x177ebefa16b056d9\"}", "{\"sha\": \"3b6a32b36506195a10991afad8f9661c47fbd2e6\", \"live\": true, \"id\": \"x81625bb701ce949b\"}", "{\"sha\": \"bcea142985cf3447b6559bf12df017934e33f77a\", \"live\": true, \"id\": \"xc0611c2210f03591\"}", "{\"sha\": \"a1f375a27ad367e6e1aeea7e0c7e538b40bfe8d7\", \"live\": true, \"id\": \"x3b270313049bb78c\"}", "{\"sha\": \"44cd0d5a561c7958320012da700a3989b5ece576\", \"live\": true, \"id\": \"x52ad62cd9b4df039\"}"], "description": "A quiz on devotional and secular illuminated manuscripts\u00a0", "basepoints": 12.0, "path": "devotional-and-secular-manuscripts-quiz/", "slug": "devotional-and-secular-manuscripts-quiz", "kind": "Exercise", "name": "devotional-and-secular-manuscripts-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "devotional-and-secular-manuscripts-quiz"}, "botticelli-s-birth-of-venus-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/botticelli-s-birth-of-venus-quiz/", "id": "botticelli-s-birth-of-venus-quiz", "display_name": "Botticelli, Birth of Venus (quiz)", "title": "Botticelli, Birth of Venus (quiz)", "all_assessment_items": ["{\"sha\": \"726bc66a65b49c750fb5c5ec6ca48e2de26f10b4\", \"live\": true, \"id\": \"xe60f2a136b2de7bb\"}", "{\"sha\": \"3641d1ce54f469451a88a1397ce0c371d11e23e8\", \"live\": true, \"id\": \"x18d066eeadc39c5e\"}", "{\"sha\": \"e5a8ec6c7691dc6169635d5514ee2ba4be6c6229\", \"live\": true, \"id\": \"x1b5a762ac8327fbd\"}", "{\"sha\": \"88052acb4f4ed3ff7f5f229f0a8270b87fcb0d1e\", \"live\": true, \"id\": \"x87a346a7d49685b6\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "botticelli-s-birth-of-venus-quiz", "kind": "Exercise", "name": "botticelli-s-birth-of-venus-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "botticelli-s-birth-of-venus-quiz"}, "sleep-and-consciousness---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sleep-and-consciousness-passage-1/", "id": "sleep-and-consciousness---passage-1", "display_name": "Effects of sleep deprivation on memory", "title": "Effects of sleep deprivation on memory", "all_assessment_items": ["{\"sha\": \"3d5a6cd5786e3ba6233f35d507098755909e90a8\", \"live\": true, \"id\": \"x1dcb58ec6104a6d8\"}", "{\"sha\": \"ba41f5d132a54115a6dcf3167eb476a8a716de19\", \"live\": true, \"id\": \"xf64bd1f8707c1521\"}", "{\"sha\": \"d00532855f60969961bcb7d959f0c7f2e3ef5012\", \"live\": true, \"id\": \"xc803a55f748bbe5c\"}", "{\"sha\": \"a140c9a4af94b0f793d6c6776e9211ba88cfc1b1\", \"live\": true, \"id\": \"x7ef7efebe1ad38ae\"}", "{\"sha\": \"fb31f2ea57633944532dbe584fc4a1ee18683ba9\", \"live\": true, \"id\": \"xb27153b1ca462cec\"}"], "description": "", "basepoints": 10.0, "slug": "sleep-and-consciousness-passage-1", "kind": "Exercise", "name": "sleep-and-consciousness---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sleep-and-consciousness---passage-1"}, "sleep-and-consciousness---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sleep-and-consciousness-passage-2/", "id": "sleep-and-consciousness---passage-2", "display_name": "Observing patients in a sleep clinic", "title": "Observing patients in a sleep clinic", "all_assessment_items": ["{\"sha\": \"c237b21321524138178eca233458550e1a7fa533\", \"live\": true, \"id\": \"xf98f4b8f60923677\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"78c1a8c6d96d83421e3e120fb4a9d1159d329669\", \"live\": true, \"id\": \"x14ef73b325e784c5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"faef6ad6c6db6921bf25e95c5a6e1c4914691ce8\", \"live\": true, \"id\": \"xc5e3ba474d82ad2a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2593a498a8cb82a69c7565c4f0986ac94d5fcaf8\", \"live\": true, \"id\": \"xfbd91c7f7f345afd\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aea9e9f9b27c61be5744cca072755f14eb152047\", \"live\": true, \"id\": \"x9e64c50f2630ba6a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "sleep-and-consciousness-passage-2", "kind": "Exercise", "name": "sleep-and-consciousness---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sleep-and-consciousness---passage-2"}, "quiz--changing-economies": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/acceleration/changing-economies/quiz-changing-economies/", "id": "quiz--changing-economies", "display_name": "Quiz: Changing Economies", "title": "Quiz: Changing Economies", "all_assessment_items": ["{\"sha\": \"fc2dd7880db3751609cc44878021dcafd8be0c21\", \"live\": true, \"id\": \"x9b43b3ddc9d4119a\"}", "{\"sha\": \"64f3dc0b74d7740d8600508865d68c2f277378d2\", \"live\": true, \"id\": \"xc4f56e17286cd5fa\"}", "{\"sha\": \"761277fcf4a57fdc7c5a6f8924427bfe02afb200\", \"live\": true, \"id\": \"xaa8286002d4c574c\"}", "{\"sha\": \"8b683593283dc8f54b24c9e791ec6dc421fa7e04\", \"live\": true, \"id\": \"xde46fbe11b4c2ba2\"}", "{\"sha\": \"2a055dd77336c87c6e8354e9fcf4c0f8d8f655fd\", \"live\": true, \"id\": \"x0ff6a9177852c360\"}"], "description": "Quiz 9.2", "basepoints": 10.0, "slug": "quiz-changing-economies", "kind": "Exercise", "name": "quiz--changing-economies", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--changing-economies"}, "immune-system---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/immune-system-passage-1/", "id": "immune-system---passage-1", "display_name": "Fighting infection with adaptive immunity", "title": "Fighting infection with adaptive immunity", "all_assessment_items": ["{\"sha\": \"aef16f10df4a47892b935d456573e43517a25aed\", \"live\": true, \"id\": \"x79f1bdf9d414bbf9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"327d7ef97084dbf59f21d83cf0dd6c85e8c72f71\", \"live\": true, \"id\": \"x85934cbdb19637b0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"21b01b17826324b42937b3bbdbf11c13c5c3602e\", \"live\": true, \"id\": \"xfbeaaebfe5378313\", \"perseus_api_major_version\": 0}", "{\"sha\": \"843be7d76f7b25df4d68c8d6d604f7b9a983c7f4\", \"live\": true, \"id\": \"x2d3e11f72b982beb\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ce072252c41916c4290fe372ee3877ef24df5959\", \"live\": true, \"id\": \"xe7eec9561821141a\", \"perseus_api_major_version\": 0}"], "description": "Immune System - Passage 1", "basepoints": 10.0, "slug": "immune-system-passage-1", "kind": "Exercise", "name": "immune-system---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "immune-system---passage-1"}, "immune-system---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/immune-system-passage-2/", "id": "immune-system---passage-2", "display_name": "Neutrophil proliferation and disease", "title": "Neutrophil proliferation and disease", "all_assessment_items": ["{\"sha\": \"0cee547c3b99ff8e1b36f965a51ad38fe8b73734\", \"live\": true, \"id\": \"x2b391a683c4fa243\"}", "{\"sha\": \"686b1c68618fc6b82a9376a5e5d7d5667c01510e\", \"live\": true, \"id\": \"xd49a6910dd4c8f44\"}", "{\"sha\": \"e8f8256fe93189b51b89270a5484c854eaf5611f\", \"live\": true, \"id\": \"x1b478aa82fad81c8\"}", "{\"sha\": \"f8f41590626084845dd83a890cba58668902b0aa\", \"live\": true, \"id\": \"x10d20ad1d7741c93\"}", "{\"sha\": \"1e7d0281e13fc1ffb353ac91032697d34e6243e8\", \"live\": true, \"id\": \"xdb4de6b1943b4c88\"}"], "description": "Immune System - Passage 2", "basepoints": 10.0, "slug": "immune-system-passage-2", "kind": "Exercise", "name": "immune-system---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "immune-system---passage-2"}, "two-sided-limits-using-algebra": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/limits_topic/algebraic-limits/two-sided-limits-using-algebra/", "id": "two-sided-limits-using-algebra", "display_name": "Two-sided limits using algebra", "title": "Two-sided limits using algebra", "all_assessment_items": ["{\"sha\": \"6d23280fab877147e3aed6fa786ed370d73b8e73\", \"live\": true, \"id\": \"xac734d75247fcd19\"}", "{\"sha\": \"8ce56825440d1b92d7d9eef6e813367f8af5ee26\", \"live\": true, \"id\": \"xac28e39e985fdd29\"}", "{\"sha\": \"3a4ba6c839be69491d035ecd239ee003863b1518\", \"live\": true, \"id\": \"x646ebc2601bd93d1\"}", "{\"sha\": \"c62543cabb506f631730c8a4216c74e2c5aad680\", \"live\": true, \"id\": \"x449224195d6f6586\"}", "{\"sha\": \"0ceef38cab7109f76e4d0a1ad3c0a52a2e95aac8\", \"live\": true, \"id\": \"xa29c00eac84ad955\"}", "{\"sha\": \"c9058c7759b1e4164f6429a45e2cfcc459d93258\", \"live\": true, \"id\": \"x4564039becd17f9f\"}", "{\"sha\": \"c9059dd0c13900ffb63becfa89e3c3f5a83420ce\", \"live\": true, \"id\": \"x199bea29da393642\"}", "{\"sha\": \"1dadb51262dd3e12eb91bfe001e9499371b17d04\", \"live\": true, \"id\": \"x0980c5a105e971f3\"}", "{\"sha\": \"a1bd1ea8f58f7f90235d0effb488a533fac4614b\", \"live\": true, \"id\": \"x423aa98b4051ec30\"}", "{\"sha\": \"58a99ae6d18c8b7ea25a58e00c3389e121cc4ee1\", \"live\": true, \"id\": \"xeb0ad559ba29fd14\"}", "{\"sha\": \"c0ebd225643134a03d2c4fe1508ca14e1ffa3e45\", \"live\": true, \"id\": \"x0f538c3303531d50\"}", "{\"sha\": \"5c6a32b5014e34173d67b094451dbfc7cde88aa1\", \"live\": true, \"id\": \"xb89030b7428701d9\"}", "{\"sha\": \"0414b8d66f474f789dde366afeedbfaa3b1066fb\", \"live\": true, \"id\": \"xeff127da29ff940b\"}", "{\"sha\": \"8a766749e996b9c82b84eddec65b1cbfaf8ad515\", \"live\": true, \"id\": \"xa25be09a66fd6d7e\"}", "{\"sha\": \"23292af351356ab33784e1b944179dbd83bc3f2b\", \"live\": true, \"id\": \"x0894b4c55a2f8fc8\"}", "{\"sha\": \"b989eb9510718f5226a4dec0acc7e06c35025010\", \"live\": true, \"id\": \"x601f7aa4da3736b5\"}", "{\"sha\": \"d74d4d18f4cbe756c43100558ec5011637f265f3\", \"live\": true, \"id\": \"x0520a30af257447e\"}", "{\"sha\": \"08b1a05c7cc8153b39bb99331c9f56cd4af63fe5\", \"live\": true, \"id\": \"x3e241115bc5d706f\"}", "{\"sha\": \"69a7d6f1afe1b9f769e42c878c88b31f2dc8f268\", \"live\": true, \"id\": \"xe2b06f218a7574ca\"}", "{\"sha\": \"151a590aec268d8f10a32a519fdd764bcf2da28b\", \"live\": true, \"id\": \"x7f371fe4288cc9c3\"}", "{\"sha\": \"d06a9a295a5514dc587b3ebcb8024f04f850ebe6\", \"live\": true, \"id\": \"x03803135324ccd41\"}", "{\"sha\": \"ea63a88422a983a74df5bf53487b8aa683202d15\", \"live\": true, \"id\": \"x215fc6dd4b975ef5\"}", "{\"sha\": \"bc7fabf00c87e3e899aa40aaab6da44e7dd71cab\", \"live\": true, \"id\": \"x87f8d169fa5a4f66\"}", "{\"sha\": \"d58d53bd628cd5509f0ca12b8971c11d7527f97d\", \"live\": true, \"id\": \"x2f0ce3c10d26d191\"}", "{\"sha\": \"283da18d23a5059dc0a752a92e77f2ad8eb2655f\", \"live\": true, \"id\": \"x19084476474dabf6\"}", "{\"sha\": \"79428bbd033d49a75ac8494795b5a6907a47ee54\", \"live\": true, \"id\": \"x4e459584417e47aa\"}", "{\"sha\": \"55dc3e5551ceb6b6d969e8f470aa857a01f16b85\", \"live\": true, \"id\": \"x036d67828eafced3\"}", "{\"sha\": \"1ab1c47f8d109cc4e76fc5c85d650107120e2856\", \"live\": true, \"id\": \"x1f3621976001cb8b\"}", "{\"sha\": \"43a49b95afaf73a03d9217b6c658a9ba0f5e6130\", \"live\": true, \"id\": \"x0e1afddee00ad69a\"}", "{\"sha\": \"e7287112b1cadd8d8a4770a3d214f97e880c85cb\", \"live\": true, \"id\": \"x0b284755978dd50c\"}"], "description": "", "basepoints": 26.0, "slug": "two-sided-limits-using-algebra", "kind": "Exercise", "name": "two-sided-limits-using-algebra", "seconds_per_fast_problem": 37.0, "prerequisites": ["finding-limits-numerically"], "exercise_id": "two-sided-limits-using-algebra"}, "lights-puzzles-1": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/lights-puzzles/lights-puzzles-1/", "id": "lights-puzzles-1", "display_name": "Lights Puzzles 1", "title": "Lights Puzzles 1", "all_assessment_items": ["{\"sha\": \"f705894ef43013e738eea22b61693adb1ab93f07\", \"live\": true, \"id\": \"x38c6cd4a3aecaf92\"}", "{\"sha\": \"280e5389340739c1743537adbf25d1497622bc1e\", \"live\": true, \"id\": \"x43d3b269dbfb9c51\"}", "{\"sha\": \"31e6f8488cda8d177e6eb97b210ad1802bbd2d20\", \"live\": true, \"id\": \"xf22611cab4585692\"}", "{\"sha\": \"4aa8ba6ca35ed23a2be50db497a84335346938fd\", \"live\": true, \"id\": \"x7a3f3f035197288c\"}", "{\"sha\": \"566f665de876fbbcfb7a6e6c142e07eac8b300cb\", \"live\": true, \"id\": \"xdb6b708cfa5195cb\"}"], "description": "Intro lights puzzles!", "basepoints": 24.0, "slug": "lights-puzzles-1", "kind": "Exercise", "name": "lights-puzzles-1", "seconds_per_fast_problem": 30.0, "prerequisites": [], "exercise_id": "lights-puzzles-1"}, "lights-puzzles-2": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/lights-puzzles/lights-puzzles-2/", "id": "lights-puzzles-2", "display_name": "Lights Puzzles 2", "title": "Lights Puzzles 2", "all_assessment_items": ["{\"sha\": \"f13bd2cfefbbf667ebe6f81a41850fe408a8306c\", \"live\": true, \"id\": \"x90ce405ea7e88981\"}", "{\"sha\": \"e7f84edc5947f71bdb2d151586f1c70cf30c8f18\", \"live\": true, \"id\": \"xd2c13310daaf76df\"}", "{\"sha\": \"c00b0e501f22d43ec19c5fa3370e2626c24a0bc3\", \"live\": true, \"id\": \"xfd19086126f54960\"}", "{\"sha\": \"9f79ddc7c1c1fee70485b801c9cdf170f071173b\", \"live\": true, \"id\": \"x5da5db9c5fa0dc9b\"}", "{\"sha\": \"f0126bd0868cdebac2a4c6be5f2a175cf74311d5\", \"live\": true, \"id\": \"xde6402cd31bd26b3\"}"], "description": "More lights puzzles!", "basepoints": 29.0, "slug": "lights-puzzles-2", "kind": "Exercise", "name": "lights-puzzles-2", "seconds_per_fast_problem": 60.0, "prerequisites": [], "exercise_id": "lights-puzzles-2"}, "lights-puzzles-3": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/lights-puzzles/lights-puzzles-3/", "id": "lights-puzzles-3", "display_name": "Lights Puzzles 3", "title": "Lights Puzzles 3", "all_assessment_items": ["{\"sha\": \"f5cd676469f89ed77d5a95d20993f0ae1d7623c4\", \"live\": true, \"id\": \"xf1abd0cb433e77ce\"}", "{\"sha\": \"d1d27502d89a2ca59a64321e6c67cb6a6a877384\", \"live\": true, \"id\": \"xc3a548e73d7d099f\"}", "{\"sha\": \"0251e44a47438e694bec0120a05381e742cbc273\", \"live\": true, \"id\": \"x37a5d2b8829a6192\"}", "{\"sha\": \"71f739d9cb541d1e836a6e86103c5115f580b455\", \"live\": true, \"id\": \"x977b989943578040\"}", "{\"sha\": \"f560ef4bdf846e62d42da622c295acf245451b30\", \"live\": true, \"id\": \"x5c2834b8d43e7219\"}"], "description": "Harder lights puzzles!", "basepoints": 29.0, "slug": "lights-puzzles-3", "kind": "Exercise", "name": "lights-puzzles-3", "seconds_per_fast_problem": 60.0, "prerequisites": [], "exercise_id": "lights-puzzles-3"}, "prehistoric-art-quiz": {"uses_assessment_items": true, "path": "khan/humanities/prehistoric-art/quiz-prehistoric/prehistoric-art-quiz/", "id": "prehistoric-art-quiz", "display_name": "Quiz: Prehistoric art ", "title": "Quiz: Prehistoric art", "all_assessment_items": ["{\"sha\": \"6f8efecd65c5a2c050eae421da5077d61e764e60\", \"live\": true, \"id\": \"x0498c369\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6344fb19aba394e9a2081b0c27fa35b99913ad2\", \"live\": true, \"id\": \"x47fc6258\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c25e1bee96c1c0ca2027de072a040da934930622\", \"live\": true, \"id\": \"x36829d2a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7af9a54082d1cebe426b00affe3e984b177c3938\", \"live\": true, \"id\": \"x005e0983\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"80591066f4f6ff2425154ee5c95969283fefe6ca\", \"live\": true, \"id\": \"x3262cb35\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"942fc8a35d915d1ce182bff7f50e8cfa1e25b334\", \"live\": true, \"id\": \"x6f484a3d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "prehistoric-art-quiz", "kind": "Exercise", "name": "prehistoric-art-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "prehistoric-art-quiz"}, "arithmetic_sequences_1": {"uses_assessment_items": true, "path": "khan/math/precalculus/seq_induction/seq_and_series/arithmetic_sequences_1/", "id": "arithmetic_sequences_1", "display_name": "Evaluating arithmetic sequences 1", "title": "Evaluating arithmetic sequences 1", "all_assessment_items": ["{\"sha\": \"f8953093eb8c700020df7846f26e7a6b911fcc06\", \"live\": true, \"id\": \"x063a07d13b29a950\"}", "{\"sha\": \"192ce518e3f21fbfd84b6e5971b529a9983932e0\", \"live\": true, \"id\": \"x428c10844568a9e9\"}", "{\"sha\": \"3f5b4d1689bc796a96f8b700bb6ebc3a29ceb1d2\", \"live\": true, \"id\": \"xb4d907e2e6db5697\"}", "{\"sha\": \"6eb975b1dd0bd5a2273d6c27c00a83372848087b\", \"live\": true, \"id\": \"xeeb5101746ec04b9\"}", "{\"sha\": \"458403935230203768ec12aea4678bf844e2f2a5\", \"live\": true, \"id\": \"xaf22350e6e84f4cc\"}", "{\"sha\": \"edc4d2309619ec427d20eb136dc09ca9d55fabcf\", \"live\": true, \"id\": \"xc3051c34b690f704\"}", "{\"sha\": \"9a017f5b5c0eb909b5103be7982fcf7a7d82aa82\", \"live\": true, \"id\": \"x143b5235f37abfb6\"}", "{\"sha\": \"8ed0d71a7c1bbaf9aea48a7ae469d3931d570cb3\", \"live\": true, \"id\": \"x60e6c20396d81f52\"}", "{\"sha\": \"7846193eb55f4503d2c672bb699a9d8b1ec71b31\", \"live\": true, \"id\": \"xa0aa0877bc30b321\"}", "{\"sha\": \"6d09194a38a95cfe8bdcd502b0d3e84c36fd31a7\", \"live\": true, \"id\": \"x09ec3b368d768299\"}", "{\"sha\": \"ad01416b7048925527cc6bb33a4d7766ce4fe877\", \"live\": true, \"id\": \"xd3906301217d783f\"}", "{\"sha\": \"4a9edae5743e3a994d4d24597b2b5b5e32180894\", \"live\": true, \"id\": \"x3a261c75b8ad5eda\"}", "{\"sha\": \"537b1e181553bc8a167e7dbc8beda90edb3cad9b\", \"live\": true, \"id\": \"x6ddde660eaaa068c\"}", "{\"sha\": \"a4ffeb849e7f98a7921ffd3aa15895079e0e4167\", \"live\": true, \"id\": \"xe1cec41eb6591545\"}", "{\"sha\": \"a1069895487159ff78db490cbb11e9a21c274ef9\", \"live\": true, \"id\": \"xb64634d92f13c738\"}", "{\"sha\": \"4886fec270a8c2003bd1f68033ca3d6b46b5c455\", \"live\": true, \"id\": \"x9fb0bfb596149aee\"}", "{\"sha\": \"8b7177e2354d44331d8f60546af82906fdde12e1\", \"live\": true, \"id\": \"xa8a507799bd445a4\"}", "{\"sha\": \"06419f616a829b10631c9238ef613c00874805a7\", \"live\": true, \"id\": \"x214b8e0b9dd02883\"}", "{\"sha\": \"0c11ceda84e055969f622c21d20f1c84d1a4ed6b\", \"live\": true, \"id\": \"x71fae20ed2094bef\"}", "{\"sha\": \"ac6223ce59f40058ecae2d76e4dae36607d7fb7e\", \"live\": true, \"id\": \"x7d47656f3826875d\"}", "{\"sha\": \"40cad8eb84a6d4f0de0fc4740133b6ef6b04926a\", \"live\": true, \"id\": \"x86a8f49069d90aa2\"}", "{\"sha\": \"1bfea2514daa454c5bb639e50c0bc1e81121371c\", \"live\": true, \"id\": \"x1f31b6d229c33171\"}", "{\"sha\": \"d32d715d395278d9426224d78de88abb338e38dc\", \"live\": true, \"id\": \"x608d7f15535ffce9\"}", "{\"sha\": \"b95e0262d1808d0a254a6686d388b98bea7e5c73\", \"live\": true, \"id\": \"x8e73b81f79937f79\"}", "{\"sha\": \"336b869e8409092485bb478e78faa532ea80fc76\", \"live\": true, \"id\": \"x748a7132741f7a99\"}", "{\"sha\": \"c71b7a4d9dbec278d0d2307dfd41db6370a8b32f\", \"live\": true, \"id\": \"x9a4a953e10fe2f27\"}", "{\"sha\": \"9553a0e1a4f8dcc0b76c34c65c7df781ea83d31e\", \"live\": true, \"id\": \"x2aae73ab866240e9\"}", "{\"sha\": \"f8d6d9666170d229aaeba28862b8b757c44c6496\", \"live\": true, \"id\": \"x56991eb709f813a3\"}", "{\"sha\": \"40ef6e7a1ef4ee8defe5d4d96864eb10f13d8074\", \"live\": true, \"id\": \"xf4fa41364eadd796\"}", "{\"sha\": \"4f40872b95a15aad3efa351dc104e0a9de553fc7\", \"live\": true, \"id\": \"xf6b8d4c68651231c\"}"], "description": "Write the next term in an arithmetic sequence.", "basepoints": 14.0, "slug": "arithmetic_sequences_1", "kind": "Exercise", "name": "arithmetic_sequences_1", "seconds_per_fast_problem": 7.0, "prerequisites": ["comparing-features-of-functions-0-5"], "exercise_id": "arithmetic_sequences_1"}, "early-20th-century": {"uses_assessment_items": true, "id": "early-20th-century", "display_name": "Quiz: Early 20th century", "title": "Quiz: Early 20th century", "all_assessment_items": ["{\"sha\": \"4e3c7a36043466176b3de8906005c03b2c19d341\", \"live\": true, \"id\": \"x0cecab9522a7c734\"}", "{\"sha\": \"65e20dbb2766b505f400eae7d6436c8f022082e6\", \"live\": true, \"id\": \"x05da92acf61f86ea\"}", "{\"sha\": \"9d815512865f4ac3fad29354b5bb4283860ce9fb\", \"live\": true, \"id\": \"xfbed4f88fe028a08\"}", "{\"sha\": \"8abd619cde2e954d4d01c6a26123f17c333f210d\", \"live\": true, \"id\": \"xff1b6736afb3cc38\"}", "{\"sha\": \"1e159097b9241ae492bf3bdb8393b7e007af426b\", \"live\": true, \"id\": \"xd6df5fde91c256f7\"}"], "description": "Test your knowledge on British art in the early 20th century.", "basepoints": 10.0, "path": "early-20th-century/", "slug": "early-20th-century", "kind": "Exercise", "name": "early-20th-century", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "early-20th-century"}, "radius_diameter_and_circumference": {"uses_assessment_items": false, "path": "khan/math/geometry/basic-geometry/circum_area_circles/radius_diameter_and_circumference/", "id": "radius_diameter_and_circumference", "display_name": "Radius, diameter, and circumference", "title": "Radius, diameter, and circumference", "description": "", "basepoints": 13.0, "slug": "radius_diameter_and_circumference", "kind": "Exercise", "name": "radius_diameter_and_circumference", "seconds_per_fast_problem": 6.0, "prerequisites": ["division_0.5"], "exercise_id": "radius_diameter_and_circumference"}, "cd40-receptor-expression-in-hyper-igm-syndrome": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cd40-receptor-expression-in-hyper-igm-syndrome/", "id": "cd40-receptor-expression-in-hyper-igm-syndrome", "display_name": "CD40 Receptor Expression in Hyper IgM Syndrome", "title": "CD40 Receptor Expression in Hyper IgM Syndrome", "all_assessment_items": ["{\"sha\": \"7180c50a6dc5802bca5033bbfaa331dd2e25d092\", \"live\": true, \"id\": \"xfcdb7f0e9063bd2d\", \"perseus_api_major_version\": null}", "{\"sha\": \"639a35107238770d37e6b8088c6083511936101a\", \"live\": true, \"id\": \"x8680f1e53f73e518\", \"perseus_api_major_version\": 3}", "{\"sha\": \"df55f8864c9228fb7f64e1b097bea0476ebc0904\", \"live\": true, \"id\": \"x4efdf9964c01d712\", \"perseus_api_major_version\": null}", "{\"sha\": \"82ba78c14a39d30ea031875c0bc08538204aa4b9\", \"live\": true, \"id\": \"x7e2ffdc08514b999\", \"perseus_api_major_version\": null}", "{\"sha\": \"c18cd4b22b421a08ea906a630a642c8f82411914\", \"live\": true, \"id\": \"x6197757a01df2c45\", \"perseus_api_major_version\": null}"], "description": "Questions related to nonenzymatic protein function.", "basepoints": 10.0, "slug": "cd40-receptor-expression-in-hyper-igm-syndrome", "kind": "Exercise", "name": "cd40-receptor-expression-in-hyper-igm-syndrome", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cd40-receptor-expression-in-hyper-igm-syndrome"}, "sat-math-level-2-quiz-3": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-2/sat-math-level-2-quiz-3/", "id": "sat-math-level-2-quiz-3", "display_name": "SAT Math: Level 2 - Quiz 3", "title": "SAT Math: Level 2 - Quiz 3", "all_assessment_items": ["{\"sha\": \"6c7afd2838b8dae196eab20952785c92eb3bd67c\", \"live\": true, \"id\": \"xd16656b646307449\"}", "{\"sha\": \"b6ebffc10046e289de66d0d983a64b979b7e5436\", \"live\": true, \"id\": \"xedbb9693b9b4f8a4\"}", "{\"sha\": \"cf2f22508becf0cb505972d9f6892b21ba1b700a\", \"live\": true, \"id\": \"x40433090ad91c3f5\"}", "{\"sha\": \"14b39bd5a91a1080b61d1a748ab6425336e8b4a2\", \"live\": true, \"id\": \"x9bfd23c7f8e7010a\"}", "{\"sha\": \"efc7df0f208206b84e5145cce2ee063e040400ed\", \"live\": true, \"id\": \"xfde48242a302c4fd\"}", "{\"sha\": \"0611c1cf8eef50f90f6838418d5a71cfcccfb7ff\", \"live\": true, \"id\": \"x5da3b95b1d3df737\"}", "{\"sha\": \"b7117383083d994fafed44ec544f1da6894e84d2\", \"live\": true, \"id\": \"x721bc5964177a08d\"}", "{\"sha\": \"a4912814dd3d905931c0e7e07fc1179a5d300b15\", \"live\": true, \"id\": \"x9cd96443274308d4\"}", "{\"sha\": \"c23a4c0f6ffb727e0a6e48d327d2e8298401883a\", \"live\": true, \"id\": \"xa46a4c2446af9cfd\"}", "{\"sha\": \"cc70166f440d94d0158b53a4598464118bb03d61\", \"live\": true, \"id\": \"x5ebf50f51b4e3555\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-2-quiz-3", "kind": "Exercise", "name": "sat-math-level-2-quiz-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-2-quiz-3"}, "evaluating_expressions_1": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/evaluating_expressions_1/", "id": "evaluating_expressions_1", "display_name": "Evaluating expressions in one variable", "title": "Evaluating expressions in one variable", "all_assessment_items": ["{\"sha\": \"223a9a87f263039ef1fd98159cbb0cf34b7dedee\", \"live\": true, \"id\": \"xf536eb63390a6371\"}", "{\"sha\": \"d82569aaec5eea9f56c5e0d10b82c439c19441a0\", \"live\": true, \"id\": \"x41a29c69fe7d549c\"}", "{\"sha\": \"ff89a40c2b371b6adc15b8815558aaaeb1841af8\", \"live\": true, \"id\": \"x8ea8a1b2a1fc5426\"}", "{\"sha\": \"da5110d76d291e1a5b78887c8f890bd9f5a45afc\", \"live\": true, \"id\": \"xa0cef02e3fe1bb48\"}", "{\"sha\": \"49beb91e9165af6c1a232f93378df946e73c56d0\", \"live\": true, \"id\": \"x49767ca43e848a28\"}", "{\"sha\": \"a96e02c638e986248c03828d4719ef711584c817\", \"live\": true, \"id\": \"x63df74dcd5497c94\"}", "{\"sha\": \"966c6ae824bc080e58a3be013c51d1b58a170225\", \"live\": true, \"id\": \"x4d460877851ed410\"}", "{\"sha\": \"222b1a0ff3f0a93d14fb5ff66cb082f4d8a04c36\", \"live\": true, \"id\": \"x563a9fea57242cd4\"}", "{\"sha\": \"16ec1b3b6b9f03da5aba815542ba6be51d5cddb2\", \"live\": true, \"id\": \"x441796d4c728a5b4\"}", "{\"sha\": \"fbfcc36389fd9abb033430bce32d9543e24e02d9\", \"live\": true, \"id\": \"x8657065914f96311\"}", "{\"sha\": \"97b21dbd0373be0449badc8ec552b4dd401dc7e8\", \"live\": true, \"id\": \"xeabcb1e38db17201\"}", "{\"sha\": \"c75f295327af6b44d5ef65516a0eda4cda40c8d3\", \"live\": true, \"id\": \"x224ab8ce1b2cf460\"}", "{\"sha\": \"59659a19170d151d47f9d7e365a7a17a5bfac220\", \"live\": true, \"id\": \"xc8bdcd62affe5630\"}", "{\"sha\": \"9aa44998b78d7f6a90e4993d2ac446a0199de972\", \"live\": true, \"id\": \"xe859d44a28fe045d\"}", "{\"sha\": \"fad29f4c0600ac07f024d64971b1924ab818795c\", \"live\": true, \"id\": \"xc1a7af72522ca342\"}", "{\"sha\": \"f08acf4a8c3a4f52005b3324be1ce44b59e94b6e\", \"live\": true, \"id\": \"xf4a316c84086d5f9\"}", "{\"sha\": \"96a74c26929166e8a28d501f54fad16bc98353e9\", \"live\": true, \"id\": \"xc3dd7a4ab2961b5b\"}", "{\"sha\": \"04c8d58361e01c51682910217b9a3bf44d17d03d\", \"live\": true, \"id\": \"x227ac7ae316c7f93\"}", "{\"sha\": \"e78e93e137b39c365752adb04339de19d4056ef8\", \"live\": true, \"id\": \"xed68d98796756450\"}", "{\"sha\": \"b3f50c1a4ecb7aa1e9975f761461cdb150f1bd3d\", \"live\": true, \"id\": \"x3fe8f37ea1f36783\"}"], "description": "Practice plugging in a value for the variable in an equation. These are introductory problems, so the expressions aren't too complicated.", "basepoints": 14.0, "slug": "evaluating_expressions_1", "kind": "Exercise", "name": "evaluating_expressions_1", "seconds_per_fast_problem": 7.0, "prerequisites": ["order_of_operations_2"], "exercise_id": "evaluating_expressions_1"}, "evaluating_expressions_2": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/evaluating_expressions_2/", "id": "evaluating_expressions_2", "display_name": "Evaluating expressions in two variables", "title": "Evaluating expressions in two variables", "all_assessment_items": ["{\"sha\": \"0881b6e5bced1b25200d75b3500476fce614c282\", \"live\": true, \"id\": \"x412f8c3e8bfccc29\"}", "{\"sha\": \"1d76ce3628047e9fa143928577162dd264fa1f0c\", \"live\": true, \"id\": \"x6a21124c6da35373\"}", "{\"sha\": \"9e55efd963533889119c13c18d436bff36dac37e\", \"live\": true, \"id\": \"x2286e794ab7c68ed\"}", "{\"sha\": \"49dfdd14b5ae870e03986a31807e2342af1134e5\", \"live\": true, \"id\": \"x93b0501b4e91a4c9\"}", "{\"sha\": \"a5e0ba89e792578256db1c278b787de0ceb383d6\", \"live\": true, \"id\": \"x40b485a9d41a0009\"}", "{\"sha\": \"144a0271ecb0d2a1b36b8bcd9fa5e09e72d74f50\", \"live\": true, \"id\": \"x5b468c65a47a8e1e\"}", "{\"sha\": \"877f812f39224cadb68224f4b95b2d2dce93b79b\", \"live\": true, \"id\": \"x75683f51f7824068\"}", "{\"sha\": \"fcd863bd36aa1a213fad5dcf8dcf4b9495117acd\", \"live\": true, \"id\": \"x62d6d87e3f903191\"}", "{\"sha\": \"bf71355ab727dbbf1b400c865c48041d2fc52dd0\", \"live\": true, \"id\": \"x268a5c8d3954a224\"}", "{\"sha\": \"e74ce328597b3b2937ff35edd20c6ba686dd9e5d\", \"live\": true, \"id\": \"xef13a1612b62172f\"}", "{\"sha\": \"7731a0c0639dd49995bf3c7dd572c8a5fc3c6664\", \"live\": true, \"id\": \"xb50e62a123ee432f\"}", "{\"sha\": \"7126bf7bb1f12b1b540810d59f582cbe2937bde1\", \"live\": true, \"id\": \"x2b05c325286686af\"}", "{\"sha\": \"d39d07737df51340f316fe51b0206121c377791d\", \"live\": true, \"id\": \"x66852c0636ad699d\"}", "{\"sha\": \"432381f52b0bbc7fdf701fe664613a7a00465d95\", \"live\": true, \"id\": \"x4cb2c8022d6f3506\"}", "{\"sha\": \"52858b2f02fc06c0d4b8382a6c476765aa74c278\", \"live\": true, \"id\": \"xd4c4618008d247a0\"}", "{\"sha\": \"20aaa69ceca0d6e8e1d0bfba3c977cd74133f869\", \"live\": true, \"id\": \"xfa2fa32b7cbe9e01\"}", "{\"sha\": \"8386a171596c41be8cdb0ea4abc6ad207024e413\", \"live\": true, \"id\": \"xb3efc5189f0a9c55\"}", "{\"sha\": \"a5e94c1e5dc63e2e6aadd33ea340763f20e38f27\", \"live\": true, \"id\": \"xbac57bf79191d612\"}", "{\"sha\": \"54cbff246f7753e90510d6356cc6d7f27769512f\", \"live\": true, \"id\": \"xa7c8388c60db2ae2\"}", "{\"sha\": \"3851ae735eabed902c92b4aa3ac792489432c8ec\", \"live\": true, \"id\": \"x3f13525902ca2f80\"}"], "description": "Practice evaluating expressions in two variables by plugging in values for the variables.\u00a0", "basepoints": 20.0, "slug": "evaluating_expressions_2", "kind": "Exercise", "name": "evaluating_expressions_2", "seconds_per_fast_problem": 17.0, "prerequisites": ["evaluating_expressions_1"], "exercise_id": "evaluating_expressions_2"}, "chromosomal-inheritance-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/chromosomal-inheritance/chromosomal-inheritance-questions/", "id": "chromosomal-inheritance-questions", "display_name": "Chromosomal inheritance questions", "title": "Chromosomal inheritance questions", "all_assessment_items": ["{\"sha\": \"99c631bb773b1f39af56a0e74d3bca712942bf5a\", \"live\": true, \"id\": \"x5b2fab513ff59f40\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0365481965288d22c5fe85707a66b0a379d05967\", \"live\": true, \"id\": \"xfa6d34dad03a8e26\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eeab234c7e74e51816b363400dc395b6189056b8\", \"live\": true, \"id\": \"x344a6441b61466c5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ceccb379806c3be4592551c9130e138989afe8f3\", \"live\": true, \"id\": \"x397c12305613e9d6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"366ac5b6402e11588bbcfbaef2a0484c04c8f7ac\", \"live\": true, \"id\": \"x818d8cab82f4ce85\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa765aa5faa818b613d4b58fbad9b4da3037adc1\", \"live\": true, \"id\": \"x846f4d936496e44a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"269c6d7a0ba1091a04952988f2c7ac07ec2309b5\", \"live\": true, \"id\": \"x55775990ace47e6d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"99e1590f7c18a6b15a20dd8cafc2aa2268834625\", \"live\": true, \"id\": \"x9b775d38950fa6d3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca4dd39a0506f338c0c1898bcc588f90906dead2\", \"live\": true, \"id\": \"x305f7c0a7f116a33\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f16694c871c142162e87fd5871735b06b89d6cf1\", \"live\": true, \"id\": \"xe4386985018cdef7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions pertaining to chromosomal inheritance", "basepoints": 10.0, "slug": "chromosomal-inheritance-questions", "kind": "Exercise", "name": "chromosomal-inheritance-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "chromosomal-inheritance-questions"}, "tachycardias-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/tachycardias-quiz-2/", "id": "tachycardias-quiz-2", "display_name": "NCLEX-RN questions on tachycardias 2", "title": "NCLEX-RN questions on tachycardias 2", "all_assessment_items": ["{\"sha\": \"24a041e23a967a14883c4f0fb95f6f9f43de9c8c\", \"live\": true, \"id\": \"x34d8207341c8cec3\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9c84bc16ef93d4be5d61604a595f2179891c2168\", \"live\": true, \"id\": \"x40f34d4efdab6cb2\", \"perseus_api_major_version\": null}", "{\"sha\": \"b122ef3ece70ce3021304364cece2bbcf85e9de6\", \"live\": true, \"id\": \"xec62376b1ff84ed7\", \"perseus_api_major_version\": null}", "{\"sha\": \"50cb19a73b34425de6a37db4133c592b514405aa\", \"live\": true, \"id\": \"xb27783e4153f6776\", \"perseus_api_major_version\": null}", "{\"sha\": \"93c471cc00519cae9cfed224f6e0263a6ae364b8\", \"live\": true, \"id\": \"x40712ccc6be66d09\", \"perseus_api_major_version\": null}"], "description": "More tachycardia questions", "basepoints": 10.0, "slug": "tachycardias-quiz-2", "kind": "Exercise", "name": "tachycardias-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "tachycardias-quiz-2"}, "interpretting-solving-linear-inequalities": {"uses_assessment_items": true, "path": "khan/math/algebra/linear_inequalities/inequalities/interpretting-solving-linear-inequalities/", "id": "interpretting-solving-linear-inequalities", "display_name": "Interpreting and solving linear inequalities", "title": "Interpreting and solving linear inequalities", "all_assessment_items": ["{\"sha\": \"17cd150f3de0acd34b9dd231937db6b230dc77ee\", \"live\": true, \"id\": \"xfb82bf6c\"}", "{\"sha\": \"0058f7cc95ceb69b987807c600796b66b6c50c97\", \"live\": true, \"id\": \"x07f574e0\"}", "{\"sha\": \"8be589a29a7a6f41024aef649b485ac5f88714db\", \"live\": true, \"id\": \"x0961391e\"}", "{\"sha\": \"fb336568a8583dd10eaa1af0e866d691d6d5cf59\", \"live\": true, \"id\": \"xe5fbbd16\"}", "{\"sha\": \"78a5b6c13d2e02da207dbccf952fbf888e6bb040\", \"live\": true, \"id\": \"xe4c0c45d\"}", "{\"sha\": \"4191fd1b3eb15e142189c83754ef3250d294ed53\", \"live\": true, \"id\": \"x4749e574\"}", "{\"sha\": \"e4cec0c0d34759d39cae36a0af901fc1f706165a\", \"live\": true, \"id\": \"xde731a0e\"}", "{\"sha\": \"25d85f276be37485a76f0e3a7b01573d5cd233c9\", \"live\": true, \"id\": \"x86d3bad2e8f47f73\"}", "{\"sha\": \"a8cf461a3fc8dbde92845d8ef44ff80f9e55381f\", \"live\": true, \"id\": \"x8eb79520\"}", "{\"sha\": \"edaa1af555af95cf3beb975cf1c940dfacbf30a7\", \"live\": true, \"id\": \"xb89e4bb7\"}", "{\"sha\": \"cd8bb3826e6b7312905af3a5e8a48a6dcf700880\", \"live\": true, \"id\": \"x0dd83d5e\"}", "{\"sha\": \"62831b92de39c036c325f744af763329be4b3cfa\", \"live\": true, \"id\": \"xac4efdbb\"}", "{\"sha\": \"fa8efe46fd0bd8d04aa282b509733310f0c7f2a7\", \"live\": true, \"id\": \"x3075095b\"}", "{\"sha\": \"955e877396ad335c331c6bb241bd188843154f2d\", \"live\": true, \"id\": \"x500b6911\"}", "{\"sha\": \"a568a678078b18d755a509e86c0cbb5bb0a5c1b2\", \"live\": true, \"id\": \"x2a982b72\"}", "{\"sha\": \"4c3e4b07e5d6ad1f428f5bcaeb7abe48aa3f4da3\", \"live\": true, \"id\": \"x27b9b699\"}", "{\"sha\": \"3188b9b4f1e1cfe20240135099e7b07498ee0b05\", \"live\": true, \"id\": \"x41dc17c5\"}", "{\"sha\": \"f16625f93cd18f617982660fdc81949a554e56f8\", \"live\": true, \"id\": \"x4be54724d7880b77\"}"], "description": "Practice constructing, interpreting, and solving linear inequalities that model real-world situations.", "basepoints": 10.0, "slug": "interpretting-solving-linear-inequalities", "kind": "Exercise", "name": "interpretting-solving-linear-inequalities", "seconds_per_fast_problem": 4.0, "prerequisites": ["solving-2-step-inequalities"], "exercise_id": "interpretting-solving-linear-inequalities"}, "tachycardias-quiz-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/rn-cardiovascular-diseases/rn-dysrhythmia-and-tachycardia/tachycardias-quiz-1/", "id": "tachycardias-quiz-1", "display_name": "NCLEX-RN questions on tachycardias 1", "title": "NCLEX-RN questions on tachycardias 1", "all_assessment_items": ["{\"sha\": \"36b93dcd8c529f8b8f02710f4901dc9b2e6fe6d3\", \"live\": true, \"id\": \"xecd1d03646878488\"}", "{\"sha\": \"08f3691f2b60915f90dc1ee3c176289966d3501b\", \"live\": true, \"id\": \"xd8beb1e65fe778d5\"}", "{\"sha\": \"c8f4afa249c149bf58845bb4956ab2d74e07f2ff\", \"live\": true, \"id\": \"xfc807a132ba446a3\"}", "{\"sha\": \"438ff7f7758c97a5f7bd5874a5228dd9fd73864a\", \"live\": true, \"id\": \"x2db08167f2af4b56\"}", "{\"sha\": \"0bd5d2ece4828705e8d56626eb1b64c95a6f2486\", \"live\": true, \"id\": \"xbd9cfed603f02f5a\"}", "{\"sha\": \"905ed619e778ae65418ff50eaad733794814872d\", \"live\": true, \"id\": \"x0f7a101dd759e598\"}", "{\"sha\": \"6f5235b48c60b48e523dd7dde8d91db9eb2de6d1\", \"live\": true, \"id\": \"x27d3924a137fc1b0\"}", "{\"sha\": \"8c134a2d2263cf6a97d0624f1c1da10ad1ddec74\", \"live\": true, \"id\": \"x43b80cfeb4242963\"}", "{\"sha\": \"e5ce242a9ef6b371d6252da30c04799c48ec1eda\", \"live\": true, \"id\": \"x5b4c264cd79ae324\"}", "{\"sha\": \"c8014fb5d931188e02c5cf7c166968c46dfe79bd\", \"live\": true, \"id\": \"x21c68d0a020db565\"}"], "description": "Questions related to tachycardias", "basepoints": 10.0, "slug": "tachycardias-quiz-1", "kind": "Exercise", "name": "tachycardias-quiz-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "tachycardias-quiz-1"}, "rectangular-and-polar-forms-of-complex-numbers": {"uses_assessment_items": true, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_analysis/rectangular-and-polar-forms-of-complex-numbers/", "id": "rectangular-and-polar-forms-of-complex-numbers", "display_name": "Rectangular and polar forms of complex numbers", "title": "Rectangular and polar forms of complex numbers", "all_assessment_items": ["{\"sha\": \"c6be88d53e5d21eb5146bb01dc45174dc74c93ab\", \"live\": true, \"id\": \"x7d24b0ca72cbee9c\"}", "{\"sha\": \"98b5d35da5dc76c40f2a5e246d64380fcbed345d\", \"live\": true, \"id\": \"x08bb23f6f8f87c78\"}", "{\"sha\": \"81f8090616b9bbbe3d6ade786223332e6d9d885e\", \"live\": true, \"id\": \"x04045c69c4994e23\"}", "{\"sha\": \"0ac9d7bcdf33d7d096cfa661fc8e4c66ffb4501a\", \"live\": true, \"id\": \"xf70b56a90eb79899\"}", "{\"sha\": \"40dca003aeaed7d92911f072fc3e4a48855e88e8\", \"live\": true, \"id\": \"x15be1fca9c88571f\"}", "{\"sha\": \"34e5138bbf085cc200575043ecde47f3270a4e6d\", \"live\": true, \"id\": \"x8ee185d12cb58244\"}", "{\"sha\": \"183d7bcbea2c4678182e823a0bd47b42de2e808f\", \"live\": true, \"id\": \"xc1a4de6fa97d9612\"}", "{\"sha\": \"231af270e40af33b62461d6aa99062d83067e611\", \"live\": true, \"id\": \"x741303a4dc7ff261\"}", "{\"sha\": \"e1c8802b2ef0c64213e32a4fae94e104765c3127\", \"live\": true, \"id\": \"x93403eaf539e76ee\"}", "{\"sha\": \"3b4f29c3bc8153e0f53c85c5f7079523708d8ac4\", \"live\": true, \"id\": \"x4b2e6fbd582e3fdb\"}", "{\"sha\": \"7de50a2af890f675d4dfbfd33b74ff929104064e\", \"live\": true, \"id\": \"x7c5df4970365f95a\"}", "{\"sha\": \"3a21e86000b6d73f2e1a42369eaf0c913499f043\", \"live\": true, \"id\": \"xe4b564314fe7b338\"}", "{\"sha\": \"f825e32f84db889380be3f3a6639fbbf5bcb1080\", \"live\": true, \"id\": \"xf41d32c6eb37c9a0\"}", "{\"sha\": \"8dd7c6b063898ed503b406b12d3d42efcf8f5544\", \"live\": true, \"id\": \"xc181112aaeed94d4\"}", "{\"sha\": \"5291edee599e5422b0972f7def177f31229c175d\", \"live\": true, \"id\": \"x904122121089bf37\"}", "{\"sha\": \"c8c054c73675d7aa418d7083dc1bb859c12fada6\", \"live\": true, \"id\": \"x665dd99774f21fb5\"}", "{\"sha\": \"9f9bc8a94c1e70679435c4f0e450b34d89a205ba\", \"live\": true, \"id\": \"xa3f85ecb8dd6e2f5\"}", "{\"sha\": \"472460013ad43f0cdc0cb8a529b5fed48db05453\", \"live\": true, \"id\": \"x95f3b32e37831354\"}", "{\"sha\": \"fa7f9f25c6d374cecb16f6e4777c5e0e1e37adb1\", \"live\": true, \"id\": \"x0d73ed2440b1338f\"}", "{\"sha\": \"b4aa81c0b619aca2c659fc1a4ba1851edfc8577a\", \"live\": true, \"id\": \"x3680eb3bf168e1dc\"}", "{\"sha\": \"c1304556a38a62a8b4cece13a2690b3c25d3095f\", \"live\": true, \"id\": \"xe7a05a89a083c357\"}", "{\"sha\": \"1780805783de91fdba6a187f53e6b4d1d685720d\", \"live\": true, \"id\": \"x48e7dfe151771ef6\"}", "{\"sha\": \"2e58a0df8f880b83dad6f0640befdd800dabec35\", \"live\": true, \"id\": \"xd51a25793209463c\"}", "{\"sha\": \"802d1f46735beb17574a27cddfa6e5916aac37e5\", \"live\": true, \"id\": \"xf5637ce51f9e72f2\"}", "{\"sha\": \"9a723c1768232acad4925591baa2379678a3feaa\", \"live\": true, \"id\": \"x5a590952fb615828\"}", "{\"sha\": \"e1c009a5494d25ae69383a5923c9e57e8e644929\", \"live\": true, \"id\": \"xcd902abe9866f41a\"}", "{\"sha\": \"96dc5d3384692eda092e5ad8e126a3fd3f899cb4\", \"live\": true, \"id\": \"x6d1206ebacb7df36\"}", "{\"sha\": \"176dfa73f05c1a0db7ae42bb5beb23a763426f91\", \"live\": true, \"id\": \"x7aba7d0a274f3c13\"}", "{\"sha\": \"7edbbb464c8b769e0f8c42cf37714f65ec68033f\", \"live\": true, \"id\": \"x314f0a78f5f2724a\"}", "{\"sha\": \"a2be4faaef72200e91d05e0228fc3ff026d9b3ca\", \"live\": true, \"id\": \"xd26a63fd09ac13bf\"}"], "description": "", "basepoints": 10.0, "slug": "rectangular-and-polar-forms-of-complex-numbers", "kind": "Exercise", "name": "rectangular-and-polar-forms-of-complex-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["complex_number_polar_form_intuition"], "exercise_id": "rectangular-and-polar-forms-of-complex-numbers"}, "compare-shapes": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-properties-shapes/compare-shapes/", "id": "compare-shapes", "display_name": "Comparing shapes", "title": "Comparing shapes", "all_assessment_items": ["{\"sha\": \"00685dc6cf6572467e07275302ef7890cf0a6e99\", \"live\": true, \"id\": \"x2be97771c52209ef\"}", "{\"sha\": \"e14477975053698c47a76f63467f091c58f6f2f0\", \"live\": true, \"id\": \"x71d8effb303272c2\"}", "{\"sha\": \"2d876704881d9e91c1e00736e37b77bfecef11b6\", \"live\": true, \"id\": \"xedf7178292e64426\"}", "{\"sha\": \"8bdf06fffb36177c75d7ffc7bb3cf11f92ba4612\", \"live\": true, \"id\": \"x8fdd05df8a96162f\"}", "{\"sha\": \"5b6451aea30f8551a249a25f5d6bed8bb10c78b5\", \"live\": true, \"id\": \"xe4ff269c325ae1c9\"}", "{\"sha\": \"60ba089c3d1d1614d36247715bb3736d9cc70915\", \"live\": true, \"id\": \"x407820234c6a7805\"}", "{\"sha\": \"0b3bcd2f1891a0f99126b78c6da0951ff872fb08\", \"live\": true, \"id\": \"xf1777ffd1225f36c\"}", "{\"sha\": \"6f75f783d8f454e302ae7f213c747c80193b5501\", \"live\": true, \"id\": \"xf018990125b87b60\"}", "{\"sha\": \"71075ef180db33a0c44cad6f4ffaa1c2363b44f6\", \"live\": true, \"id\": \"xc6e583c913551385\"}", "{\"sha\": \"62cc7dee5412ee757748936df6d4ee9d161c8a61\", \"live\": true, \"id\": \"x47d4b9be576fabee\"}", "{\"sha\": \"2f6d1149e6f8078382ce287718c8b8cbb2f52534\", \"live\": true, \"id\": \"x7f159112fd21507c\"}", "{\"sha\": \"34a7546d2ec4ac2ec9b8339237f23f4ed2eb1768\", \"live\": true, \"id\": \"xb42d79da5454c0f4\"}", "{\"sha\": \"609d2882f5402aec3c02e49b5adc9180af1e4f51\", \"live\": true, \"id\": \"x9e96a39e790bc5fa\"}", "{\"sha\": \"49cd4bc8446711460e1a0f82431f02d01bca1b39\", \"live\": true, \"id\": \"x827130f3d29ab460\"}", "{\"sha\": \"f5d88e877906502200a00509433578b27cba99fc\", \"live\": true, \"id\": \"xf63fef4b3952c81e\"}", "{\"sha\": \"2c473f229b04d0b4c4a7ea2912de2f4b663f4751\", \"live\": true, \"id\": \"xf133afb8ec23f371\"}", "{\"sha\": \"632152037bb220bd402c09ec7755593c4fb9c4fd\", \"live\": true, \"id\": \"x325e57bd9d070288\"}", "{\"sha\": \"046f46adee684b97ba49f97a3351173d4dd5a3b9\", \"live\": true, \"id\": \"x908e335cd8bf4c75\"}", "{\"sha\": \"b980abdd484e5b72aaf0627c0c79ced80bef20cd\", \"live\": true, \"id\": \"xdca45355073c9bae\"}", "{\"sha\": \"3a68eea861184a0a579a5a11c996017d93ad442e\", \"live\": true, \"id\": \"xc1142da9126de31a\"}", "{\"sha\": \"8948f9462513b4b0dca46577e9498891ede10210\", \"live\": true, \"id\": \"xf692f6911af0b5e6\"}", "{\"sha\": \"df11bf8638f7182df4a6a71b47b2d5dfcf0165ba\", \"live\": true, \"id\": \"x8f49e936e082e7f7\"}"], "description": "Practice comparing shapes based on their number of sides, number of corners, and side-lengths.", "basepoints": 10.0, "slug": "compare-shapes", "kind": "Exercise", "name": "compare-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": ["naming-shapes-2"], "exercise_id": "compare-shapes"}, "patterns-in-the-addition-table-and-multiplication-table": {"uses_assessment_items": true, "id": "patterns-in-the-addition-table-and-multiplication-table", "display_name": "Patterns in multiplication tables", "title": "Patterns in multiplication tables", "all_assessment_items": ["{\"sha\": \"8ca9a452e2728e7b60d50a5d5bbae67ff22902ad\", \"live\": true, \"id\": \"xac007ca79efa1b92\"}", "{\"sha\": \"9414ce57df18a68c174297b34b9ada22aeded7d5\", \"live\": true, \"id\": \"x6e89cba2d85070a7\"}", "{\"sha\": \"e324110e394bff00791d87ef820e5704f08838ff\", \"live\": true, \"id\": \"x7886866afed08e67\"}", "{\"sha\": \"440c56b5ac4082a170adaff708b10b2d5d3623e9\", \"live\": true, \"id\": \"x86640c864b9adc6c\"}", "{\"sha\": \"9f561931c200c59cc58b43303518dfdd3dbdafa8\", \"live\": true, \"id\": \"x39d728bc086ae0aa\"}", "{\"sha\": \"f7eaf50b80c6ec4af49169fcbc4d57c37dc820ec\", \"live\": true, \"id\": \"x8788d2ddfaae263b\"}", "{\"sha\": \"d0a63793489f5fec48d9f11a143d568a35ac6d42\", \"live\": true, \"id\": \"xf8b4b38cc85ae2e6\"}", "{\"sha\": \"ae4073574ef4b4c64b951bf313a52982cc633410\", \"live\": true, \"id\": \"xf8d5b93672a47bbc\"}", "{\"sha\": \"c57f030af6ecb516556c2b7864816f97f684fa78\", \"live\": true, \"id\": \"x91e6109c007e0402\"}", "{\"sha\": \"fa3765bdb0717d09170ba7d6e003584349009433\", \"live\": true, \"id\": \"x0da8a505d0808f08\"}", "{\"sha\": \"b1b0fb1f7bc85ebd5a7f7b049feccb69ee866cf0\", \"live\": true, \"id\": \"xc3e220eb27fb9d2d\"}", "{\"sha\": \"51f741ec188462a00558d2ecd7ccc0fa142269bc\", \"live\": true, \"id\": \"x97ffbdb9121fe9a0\"}", "{\"sha\": \"edb6429d29c26a16c9ec355eab25802d6858e7c9\", \"live\": true, \"id\": \"xdc1b18393a78f397\"}", "{\"sha\": \"4edc5e12735363e4aa13f1019941a75c6771f0b1\", \"live\": true, \"id\": \"x6b2c15afaf2500d8\"}", "{\"sha\": \"7423123f133a45af87c5f191d69c619c96ff3cf4\", \"live\": true, \"id\": \"x8e55b45f8154dd50\"}", "{\"sha\": \"ad07bffe6b69588f19ab028ab30b2c5a9b7b3640\", \"live\": true, \"id\": \"x15ebab43a721c530\"}", "{\"sha\": \"51f948cf8f838a3b19ab92360f306264d1a4f322\", \"live\": true, \"id\": \"xb2d688962eeae6bc\"}", "{\"sha\": \"cbde389e428f6d0f2334710224ca77e7f53e39d6\", \"live\": true, \"id\": \"x4a28151679154d71\"}", "{\"sha\": \"cd49d005d46522539543b45cb6f178f8559ccf6d\", \"live\": true, \"id\": \"x71c6cd3fbab780a9\"}", "{\"sha\": \"45c69fc6c0adf9bebf593ac96288a422bdf53bf4\", \"live\": true, \"id\": \"x85042aafa32cf2eb\"}"], "description": "Practice discovering and explaining patterns in multiplication tables.", "basepoints": 10.0, "path": "patterns-in-the-addition-table-and-multiplication-table/", "slug": "patterns-in-the-addition-table-and-multiplication-table", "kind": "Exercise", "name": "patterns-in-the-addition-table-and-multiplication-table", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_0.5"], "exercise_id": "patterns-in-the-addition-table-and-multiplication-table"}, "converting_fractions_to_decimals_0.5": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/converting_fractions_to_decimals_05/", "id": "converting_fractions_to_decimals_0.5", "display_name": "Rewriting fractions as decimals", "title": "Rewriting fractions as decimals", "description": "Practice rewriting fractions as decimals. Fractions in these problems have denominators of 10 and 100.", "basepoints": 10.0, "slug": "converting_fractions_to_decimals_05", "kind": "Exercise", "name": "converting_fractions_to_decimals_0.5", "seconds_per_fast_problem": 4.0, "prerequisites": ["fraction-decimal-intuition"], "exercise_id": "converting_fractions_to_decimals_0.5"}, "cathedral-of-notre-dame-de-chartres-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/cathedral-of-notre-dame-de-chartres-quiz/", "id": "cathedral-of-notre-dame-de-chartres-quiz", "display_name": "Cathedral of Notre Dame de Chartres (quiz)", "title": "Cathedral of Notre Dame de Chartres (quiz)", "all_assessment_items": ["{\"sha\": \"fddb8ac95e93183e3bc9b952f3ec81569f82d984\", \"live\": true, \"id\": \"x0a76223fddfaa877\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"07a6c5d342788edc52b30a01a0ea1a6189015f6b\", \"live\": true, \"id\": \"xe1fdc8beb6114d0d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"39ef14121dd2d340e83377bf72acc0056631ed55\", \"live\": true, \"id\": \"x795ad7464381398b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4124c55cb8291f19b9e28ea7dd3dc6b055d77e7e\", \"live\": true, \"id\": \"x9cbfa28f200b45ee\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"337b99da951ea320e09ceb736454eee99cae8a82\", \"live\": true, \"id\": \"xc38e472a3afe20a4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "cathedral-of-notre-dame-de-chartres-quiz", "kind": "Exercise", "name": "cathedral-of-notre-dame-de-chartres-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cathedral-of-notre-dame-de-chartres-quiz"}, "piecewise-graphs-linear": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/piecewise-functions-tutorial/piecewise-graphs-linear/", "id": "piecewise-graphs-linear", "display_name": "Graphs of piecewise linear functions", "title": "Graphs of piecewise linear functions", "all_assessment_items": ["{\"sha\": \"33527998f59c06a9e4d1a4c117945daf116bc15f\", \"live\": true, \"id\": \"xfc4f3b7e301d8b77\"}", "{\"sha\": \"1c722a6e9b5c830de233489aa21ebd17f818d349\", \"live\": true, \"id\": \"xfb8eb23bf5beed6b\"}", "{\"sha\": \"8b4f0577fc329f1ed869bc02de3b503cca9372a8\", \"live\": true, \"id\": \"xecd53c3901b30e6d\"}", "{\"sha\": \"0a2311ef48c0322eae89abe04f34eed8b971b0c0\", \"live\": true, \"id\": \"x4075ea63dd5d0e67\"}", "{\"sha\": \"e6f12b0ee3b81569fe1d0a0605efe8ba38c95a32\", \"live\": true, \"id\": \"x655fff98c5ac0190\"}", "{\"sha\": \"14c718bf87fce406431049b6e1b79262f7565a86\", \"live\": true, \"id\": \"xb29c8d55774bc1fa\"}", "{\"sha\": \"66e357705f8a43829c1d51a6856f22b1e4795014\", \"live\": true, \"id\": \"xddea23911ad6fb9f\"}", "{\"sha\": \"5c26bde89ed48a7d8747efbba5348fbed293ab96\", \"live\": true, \"id\": \"xfb1b49c3b4268362\"}", "{\"sha\": \"83ea529913347d954f39fbe5c4fd0ac7ddb8777b\", \"live\": true, \"id\": \"xce6701cf7bf759c0\"}", "{\"sha\": \"044c2ea6b89c6fafc52303dc27a6f3a2c764a7d6\", \"live\": true, \"id\": \"x866b7dc36e238980\"}", "{\"sha\": \"cd25488c7bdd02554149afe0ced66fd7be5a9fed\", \"live\": true, \"id\": \"x6b5c711566ec27f0\"}", "{\"sha\": \"e3f9340bbb892768d0679be54d61a8385b92c983\", \"live\": true, \"id\": \"x31e1bc269d758927\"}", "{\"sha\": \"05d6efd27967dc7e89da5df79a0494ec88c454d3\", \"live\": true, \"id\": \"xc0576cd72d4677a5\"}", "{\"sha\": \"e32de68d0b048dd2d5982e31173ae0ec4e0c30ef\", \"live\": true, \"id\": \"x046060600c7308a5\"}", "{\"sha\": \"5eb307d68c68360fea49402eb7aac487ab9703b7\", \"live\": true, \"id\": \"xc5e7faf3f137c319\"}", "{\"sha\": \"3baa8638ddceba8dddd6f27b7925b8aab6581c5f\", \"live\": true, \"id\": \"xcaf53feba1ade050\"}", "{\"sha\": \"b131e0472bfc7f8f79ced4640ebe8d885262eed9\", \"live\": true, \"id\": \"x926e4777adfe04f1\"}", "{\"sha\": \"91074870fb1709bc3ca34f8d7859a20fc9baf808\", \"live\": true, \"id\": \"xea65991bc0099f5f\"}", "{\"sha\": \"775d9db036e1104490f62453d57145f76f70f4a2\", \"live\": true, \"id\": \"x2feb7806d26bf12e\"}", "{\"sha\": \"22419d3b5197360ebe1cd404d2e256d879e5b281\", \"live\": true, \"id\": \"xa35068cbf749f779\"}"], "description": "", "basepoints": 10.0, "slug": "piecewise-graphs-linear", "kind": "Exercise", "name": "piecewise-graphs-linear", "seconds_per_fast_problem": 4.0, "prerequisites": ["evaluating-piecewise-functions"], "exercise_id": "piecewise-graphs-linear"}, "quiz--comparing-function-growth": {"uses_assessment_items": true, "path": "khan/computing/computer-science/algorithms/asymptotic-notation/quiz-comparing-function-growth/", "id": "quiz--comparing-function-growth", "display_name": "Quiz: Comparing function growth", "title": "Quiz: Comparing function growth", "all_assessment_items": ["{\"sha\": \"c845bbd9cdee194538c8e7068cc71761feed5706\", \"live\": true, \"id\": \"x544adc77e43f09e6\"}", "{\"sha\": \"5ff6b4168144abdd428d585aa135c86cdb3c5a78\", \"live\": true, \"id\": \"x3026cf1fe6544bb0\"}", "{\"sha\": \"7e9af2f80328f2df64adbe8bb98f88e0c4cef793\", \"live\": true, \"id\": \"x5076cc78260f844e\"}", "{\"sha\": \"458728844d0a82f69c14df630450f61999e84881\", \"live\": true, \"id\": \"x7facf8e10f06c58f\"}"], "description": "Rank functions according to how fast they grow.", "basepoints": 10.0, "slug": "quiz-comparing-function-growth", "kind": "Exercise", "name": "quiz--comparing-function-growth", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--comparing-function-growth"}, "multiplying_decimals_1": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/multiplying-decimals-pre-alg/multiplying_decimals_1/", "id": "multiplying_decimals_1", "display_name": "Multiplying decimals 2", "title": "Multiplying decimals 2", "description": "Multiply two numbers. \u00a0Factors are written to the ones, tenths, or hundredths place. \u00a0", "basepoints": 10.0, "slug": "multiplying_decimals_1", "kind": "Exercise", "name": "multiplying_decimals_1", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_decimals_0.5", "multiplication_1.5"], "exercise_id": "multiplying_decimals_1"}, "multiplication-with-place-value-understanding": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/multiplication-with-place-value-understanding/", "id": "multiplication-with-place-value-understanding", "display_name": "Multiplication using place value understanding", "title": "Multiplication using place value understanding", "all_assessment_items": ["{\"sha\": \"3b08928785f4f453c9e4286bee0e56852abdc03d\", \"live\": true, \"id\": \"xc57348c2cef1282f\"}", "{\"sha\": \"056a258389f32622870a2640a53eddc8175ac6af\", \"live\": true, \"id\": \"x48d310020bf57dc6\"}", "{\"sha\": \"b5eabb0320700d2a7d5fb3d0371cfc40bdf66ec1\", \"live\": true, \"id\": \"xc82e0955f78eebd3\"}", "{\"sha\": \"09b04cf922888de4edf2633b9b7ce79217311e9c\", \"live\": true, \"id\": \"xd68b1f4757ddad11\"}", "{\"sha\": \"914fa2328d4c91855424ab191feea44d3aede8a7\", \"live\": true, \"id\": \"x33b8b4b7a444ac09\"}", "{\"sha\": \"9cbeebdc2f2cd0c064ac5a4557feeb46f92d63c5\", \"live\": true, \"id\": \"xbb9ee512d0cd2675\"}", "{\"sha\": \"6e59a5c5cb7f03b95dd818e8ba60425757306ebe\", \"live\": true, \"id\": \"x856f54499be192ab\"}", "{\"sha\": \"db209e7201c03f3d58882558b91a21937600362e\", \"live\": true, \"id\": \"xbc79ff4879dcf773\"}", "{\"sha\": \"2f8133ebd2e30a2bf53402cbee78731daf9a77ee\", \"live\": true, \"id\": \"xaf71514f73cdeb9c\"}", "{\"sha\": \"c96869e9741d422ec04b4d8fb409caf3adb26fe7\", \"live\": true, \"id\": \"x31255d412a3b1d90\"}", "{\"sha\": \"e05869eb2adc599a831f9899c620b16b03c5d13a\", \"live\": true, \"id\": \"x60dffe76931ecda0\"}", "{\"sha\": \"a49ea64a5ebd76492106eb3bbe3fd754a32233ae\", \"live\": true, \"id\": \"xcb425db2c017e994\"}", "{\"sha\": \"4dcdfe110873a5379040fc194a79f24ecdc78e48\", \"live\": true, \"id\": \"x04172c06bf0a2686\"}", "{\"sha\": \"29e30ce1af4218a60fd41b5ba64ac277de1b1165\", \"live\": true, \"id\": \"xd275ff4f259b2cb9\"}", "{\"sha\": \"929c556adfa6be1f79fd08f3cc56b49ba901f278\", \"live\": true, \"id\": \"xffb3357ea0715167\"}", "{\"sha\": \"3fd8aa47e5edbfc5493d6c1ebc9022890702d5fd\", \"live\": true, \"id\": \"xf1d4895e92eba93f\"}", "{\"sha\": \"5124ac9c5490bc488519202c2cfc727af690af8e\", \"live\": true, \"id\": \"x31d1370a1e4356b5\"}", "{\"sha\": \"843d7c8cee4f5ec9e903d490bbcdeb3f0efc497c\", \"live\": true, \"id\": \"x9d8c43ae415eb48b\"}", "{\"sha\": \"00ea373b488d587e76630c4d089f86e336126134\", \"live\": true, \"id\": \"x6c51b695acb6bef8\"}", "{\"sha\": \"b1f34bcc90507b99808f7ac5e66d6cb48b08f782\", \"live\": true, \"id\": \"xc078aaf804e9a005\"}"], "description": "Multiply a one-digit number by up to a four-digit number by decomposing the larger number.", "basepoints": 10.0, "slug": "multiplication-with-place-value-understanding", "kind": "Exercise", "name": "multiplication-with-place-value-understanding", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-place-value-1"], "exercise_id": "multiplication-with-place-value-understanding"}, "angular-measure-2": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/angular-measure-2/", "id": "angular-measure-2", "display_name": "Angular Measure 2", "title": "Angular Measure 2", "all_assessment_items": ["{\"sha\": \"106a0c53baed538565411c41df9b05441903425d\", \"live\": true, \"id\": \"x546b4c5d09273c76\"}", "{\"sha\": \"a94246f33f5005ef3c804341db5025b14aa6a13e\", \"live\": true, \"id\": \"x83bfcc6a74b6c11c\"}", "{\"sha\": \"52bcb828e1da18dd7dfd5660a2fc96ffddb50071\", \"live\": true, \"id\": \"x273d5d7128c1b463\"}", "{\"sha\": \"bd0509217dc07ea4c50c22c010c40e09f5a63882\", \"live\": true, \"id\": \"x73c8bff54e77b9d7\"}", "{\"sha\": \"e8e9c80e0eeec7b8bc3815dd44a2e934ac775d26\", \"live\": true, \"id\": \"x3f2ae09a0d020105\"}", "{\"sha\": \"97836d5a473d2c61f6efe73eecc389ef081be8b8\", \"live\": true, \"id\": \"xfb5239f07af9efe6\"}"], "description": "", "basepoints": 10.0, "slug": "angular-measure-2", "kind": "Exercise", "name": "angular-measure-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "angular-measure-2"}, "angular-measure-1": {"uses_assessment_items": true, "path": "khan/partner-content/nasa/measuringuniverse/measure_the_solarsystem/angular-measure-1/", "id": "angular-measure-1", "display_name": "Angular measure 1", "title": "Angular measure 1", "all_assessment_items": ["{\"sha\": \"2e6db8ec85232ac0f39440b233663653919a28f7\", \"live\": true, \"id\": \"x6e4d1973012ccca0\"}", "{\"sha\": \"106a0c53baed538565411c41df9b05441903425d\", \"live\": true, \"id\": \"x546b4c5d09273c76\"}", "{\"sha\": \"ab638ed7a0e889d402b6cc8077e32d1e8946f6c6\", \"live\": true, \"id\": \"x8e8a482d83091ac7\"}", "{\"sha\": \"208e7af532b919fb60a61a4c718e8ff568de2c51\", \"live\": true, \"id\": \"xeade50a1a47f5884\"}", "{\"sha\": \"6ed6693def9f743387dea46b7fb2938cc20f2fcb\", \"live\": true, \"id\": \"x1a7b866435bfe1d3\"}"], "description": "warm up questions on angular measure\u00a0", "basepoints": 10.0, "slug": "angular-measure-1", "kind": "Exercise", "name": "angular-measure-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "angular-measure-1"}, "pre-raphaelites": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites/pre-raphaelites/", "id": "pre-raphaelites", "display_name": "Pre-Raphaelites", "title": "Pre-Raphaelites", "all_assessment_items": ["{\"sha\": \"de7e4ab06fdbcac47759882c3aab680a5a6ae592\", \"live\": true, \"id\": \"x4e815c8f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b503e634d6e83145742ff8f5eb1e36d19ffd55d\", \"live\": true, \"id\": \"xa96327b1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cad9e55be0e23ac20f8c92e94f8bc381306be345\", \"live\": true, \"id\": \"xf96d84d1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90c96e400bed33c7d33a76aeff39a0db4b7e023d\", \"live\": true, \"id\": \"x1344ce92\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d620123cf1b10fda8c315782ec0d10de453a1162\", \"live\": true, \"id\": \"x4e4eccdb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"34c1abd52452b85d64a1bcd0b60ab9a2a20290b8\", \"live\": true, \"id\": \"xdc1b16a8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b0f721903371ff7d5a048ce048b6a4563f1d6b4b\", \"live\": true, \"id\": \"xab394851\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"055599c5e968a232cc66b518206559b66f0c25af\", \"live\": true, \"id\": \"xf4f2bf37\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bd60dd5569863c17a6586f33443a8d8a8878827b\", \"live\": true, \"id\": \"x93bebbbc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"21a40fa646ce20f8afb2c4fcafeb9a3b7dc3670b\", \"live\": true, \"id\": \"xc7f78fd3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b2c3c5c4aa45e47bb8bfb1feb443b8ca24168919\", \"live\": true, \"id\": \"xfe3779e4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4a902b0b1f10fd0f0589f3307d8493c2b5b66738\", \"live\": true, \"id\": \"xe806456b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge of Pre-Raphaelite Art!", "basepoints": 10.0, "slug": "pre-raphaelites", "kind": "Exercise", "name": "pre-raphaelites", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pre-raphaelites"}, "manipulating-fractional-exponents": {"uses_assessment_items": true, "path": "khan/math/algebra/exponent-equations/fractional-exponents-tut/manipulating-fractional-exponents/", "id": "manipulating-fractional-exponents", "display_name": "Manipulating fractional exponents", "title": "Manipulating fractional exponents", "all_assessment_items": ["{\"sha\": \"62feb7fd2de1142268a9d1fa6726cde8ce196a47\", \"live\": true, \"id\": \"x8a22ed3778f9d787\"}", "{\"sha\": \"3b32190a570e6aa2ce84e68acc4371c437534d16\", \"live\": true, \"id\": \"xe49e1e994e085628\"}", "{\"sha\": \"dc071a627da83a581767f5ff9cc2eb00bc8173fc\", \"live\": true, \"id\": \"x09ec514e61515ade\"}", "{\"sha\": \"3a4e4f3298c4e2b2cb03d1d428687f1e89cd00e0\", \"live\": true, \"id\": \"x24800088da62f499\"}", "{\"sha\": \"3c9aa358f66036c5545d05bbe29cea5888806018\", \"live\": true, \"id\": \"x375d91d8bf8b9b9b\"}", "{\"sha\": \"2d04995b389ab2347fe8a1200ae2051c15a38ef8\", \"live\": true, \"id\": \"xe234852a57c77590\"}", "{\"sha\": \"16c301b29bec567ab34a1d480ba2d701f017c034\", \"live\": true, \"id\": \"x8ff6f5d292628838\"}", "{\"sha\": \"99dec48abaee00f2556f8dab7c5938ef9dd9a5cb\", \"live\": true, \"id\": \"x1ba18badf22dcb01\"}", "{\"sha\": \"b1c9da16b2991cfcf656403159631a80d97cc6a2\", \"live\": true, \"id\": \"x28beab6508cc11f9\"}", "{\"sha\": \"874797fdb121bfd2b563799f8ce3d9a7c09f9c75\", \"live\": true, \"id\": \"xe23d68f9b6177bba\"}", "{\"sha\": \"54969f18bb9f99acd289240180106efb128efdfb\", \"live\": true, \"id\": \"xf6d24bb84523d8b8\"}", "{\"sha\": \"6e6efc88199c7aaa9d1dec9a721736ac2bb1f02b\", \"live\": true, \"id\": \"xe907ee05f687ea35\"}", "{\"sha\": \"852e5f820514fab612fd2cb2a833ed21b58f233b\", \"live\": true, \"id\": \"xd51e896b4477e022\"}", "{\"sha\": \"58f8380e93739e0b603662957d2266f603e717d8\", \"live\": true, \"id\": \"xc00cde4b95258210\"}", "{\"sha\": \"8a0283226243b408ab31952761d6b2ec207c5a91\", \"live\": true, \"id\": \"xf4f7192ef36dde7a\"}", "{\"sha\": \"98222dce7d5830f59bb631ab7dd8ceaa0fc8e305\", \"live\": true, \"id\": \"x1b8ab619cb3df58b\"}", "{\"sha\": \"88c46523d5cc53f90371e9230c0615f6d3b1243d\", \"live\": true, \"id\": \"xa77a07b8fcb380a0\"}", "{\"sha\": \"f31fc0fc2afa268cdf478adf897e43ce3201488d\", \"live\": true, \"id\": \"x1e47632537bed230\"}", "{\"sha\": \"9ff09816a094e27bbd7e7e49af3be58ba1809278\", \"live\": true, \"id\": \"xab6eb82d41b97554\"}", "{\"sha\": \"92c987a6ebbb14160f38867623aed924f4c7de13\", \"live\": true, \"id\": \"x57429a6ae246d2b2\"}", "{\"sha\": \"62334557b82bb97c71e3f3dd2a303f71aac878d0\", \"live\": true, \"id\": \"xcffe88aea45f3c6c\"}", "{\"sha\": \"bea85c7fe64f3af5a3455b54ffc690df356267e3\", \"live\": true, \"id\": \"x81893bbc001aee2f\"}", "{\"sha\": \"18c42ac27a879cb41ead3e2004f197514fa4a75a\", \"live\": true, \"id\": \"xce9bdf1127fcbd42\"}", "{\"sha\": \"34e08f3b96ba32eb32addfe0820d0c4ec3722d75\", \"live\": true, \"id\": \"x0fdd44695b6f9f5c\"}", "{\"sha\": \"7b3fba1d2b4510d48bd6dd07a21c17c7929a8dc5\", \"live\": true, \"id\": \"x3807796c2ed6bc08\"}", "{\"sha\": \"28c4de889a0857d23d903a364d5f952d89ed5c5b\", \"live\": true, \"id\": \"x3727767bb729ead4\"}", "{\"sha\": \"27de47a204fb40b086fe82cdc8a1c96441dc38bc\", \"live\": true, \"id\": \"x15dcc1664e7277b5\"}", "{\"sha\": \"17459c06849af216a081e0793cbe6952aadb3986\", \"live\": true, \"id\": \"x32e10198380217c4\"}", "{\"sha\": \"f92e4aa5e057bb7b887e6c60af86c3828280e31b\", \"live\": true, \"id\": \"x60bdb5838e4df713\"}", "{\"sha\": \"ac0a4f623ea4231bd914f7f663455840f5871c51\", \"live\": true, \"id\": \"xf7681ff60f6e1fe3\"}"], "description": "", "basepoints": 22.0, "slug": "manipulating-fractional-exponents", "kind": "Exercise", "name": "manipulating-fractional-exponents", "seconds_per_fast_problem": 23.0, "prerequisites": ["understanding-fractional-exponents"], "exercise_id": "manipulating-fractional-exponents"}, "understanding-linear-and-exponential-models": {"uses_assessment_items": true, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/understanding-linear-and-exponential-models/", "id": "understanding-linear-and-exponential-models", "display_name": "Understanding linear and exponential models", "title": "Understanding linear and exponential models", "all_assessment_items": ["{\"sha\": \"a4c3b8e3f71a087fdbb4305f0749b40d5483f28b\", \"live\": true, \"id\": \"x18640a86550e4e8d\"}", "{\"sha\": \"4926f5e283a57c672339e5a200f317645650f0cc\", \"live\": true, \"id\": \"xe8ea322c1d8c9ee8\"}", "{\"sha\": \"71192282766f01f6bbdf86cfebd40cddf796d38e\", \"live\": true, \"id\": \"x40b545601019a507\"}", "{\"sha\": \"beeba95589bb15d3c47e979a50d5c3070888511e\", \"live\": true, \"id\": \"xce4123e1294517bf\"}", "{\"sha\": \"8db0dc4d897109b500e0f40cd2cf846b98828d96\", \"live\": true, \"id\": \"xead384e800897a71\"}", "{\"sha\": \"6df0b5780c3c73ce7148d05050a4890efc07902b\", \"live\": true, \"id\": \"x2c17720931127a94\"}", "{\"sha\": \"60899f23c759d7c7253318e7a0780afa356312ce\", \"live\": true, \"id\": \"x46bf13ff01446081\"}", "{\"sha\": \"319e43195548226e152bba7d47657e4e7210e60a\", \"live\": true, \"id\": \"x46725e8b0e715830\"}", "{\"sha\": \"f3138034e9e563e6b3fd5d04ec17b11d7b306dcb\", \"live\": true, \"id\": \"x1509f76688321a05\"}", "{\"sha\": \"6d063adcded7f1a68cb3e3dcd21160dbdceb7118\", \"live\": true, \"id\": \"xc9a42fa2942748e8\"}", "{\"sha\": \"ebfcc1f1f513177bd04e65dd33eaaf615a733624\", \"live\": true, \"id\": \"x9f12b728ae94e946\"}", "{\"sha\": \"7372281dda3c131d35a2c7cc9c7a88a6c4e6a2c9\", \"live\": true, \"id\": \"xae64d6935db53195\"}", "{\"sha\": \"790920ded4847697295f9c58d8d390b0513af759\", \"live\": true, \"id\": \"x1fb4b8f2a2b9358b\"}", "{\"sha\": \"7bb44b7c80ecae4b5d1775ea352202b598a3ca20\", \"live\": true, \"id\": \"x9e96c9f67dbffd99\"}", "{\"sha\": \"773de836a29b23a95cb88671d496979d9b95931a\", \"live\": true, \"id\": \"x294237781265db71\"}", "{\"sha\": \"16857e7ed6933e834c0ee9d9d9c524cb6624d4a3\", \"live\": true, \"id\": \"x8a12f30e8c139ec4\"}", "{\"sha\": \"0f83644c38983191fc38976b918d09591b0c9ce3\", \"live\": true, \"id\": \"x4a2ba0da0ca9bed0\"}", "{\"sha\": \"c5065c0da4af1dfb7bf60fb7b8436a54b1cd5456\", \"live\": true, \"id\": \"x3f9343e1b215bc05\"}", "{\"sha\": \"231c2a41377d7b0e3866c4d94b69db384f1c016b\", \"live\": true, \"id\": \"xec7a863dbf0d3423\"}", "{\"sha\": \"467de1cc7dd9673ce43746f2020ce96bedbbca51\", \"live\": true, \"id\": \"x5778828a9ddcd094\"}", "{\"sha\": \"b0bf60eb6ffb6608b66b24690602b86dc981c3f4\", \"live\": true, \"id\": \"x4ecc0fad2e7034ed\"}"], "description": "", "basepoints": 10.0, "slug": "understanding-linear-and-exponential-models", "kind": "Exercise", "name": "understanding-linear-and-exponential-models", "seconds_per_fast_problem": 4.0, "prerequisites": ["interpreting-features-of-linear-functions", "exponents_4"], "exercise_id": "understanding-linear-and-exponential-models"}, "interpreting-graphs-of-linear-and-nonlinear-functions": {"uses_assessment_items": true, "id": "interpreting-graphs-of-linear-and-nonlinear-functions", "display_name": "Interpreting graphs of linear and nonlinear functions", "title": "Interpreting graphs of linear and nonlinear functions", "all_assessment_items": ["{\"sha\": \"b6749382ea4b038c0449d798cb6e9add0765d914\", \"live\": true, \"id\": \"xc78ba6a5\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a0bb90d24ad829cbc82c23bcf83054cd9757ca9\", \"live\": true, \"id\": \"xb754f5a4\", \"perseus_api_major_version\": null}", "{\"sha\": \"c2adf915482759297f2b05099ea416d232ae0886\", \"live\": true, \"id\": \"x85e40c41\", \"perseus_api_major_version\": null}", "{\"sha\": \"700d8d59c0538aed72401754ffe1a3604dc2e8a2\", \"live\": true, \"id\": \"xd764f378\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b9783944bf23794f63708889339870c327239408\", \"live\": true, \"id\": \"x59b75739\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6cc8bea31fa78bc2936eaaad82c3fb73d20efae6\", \"live\": true, \"id\": \"x572138ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"2264abbc4aeb523ac620706b058ce6ca0883decb\", \"live\": true, \"id\": \"x337386a259aea1b2\", \"perseus_api_major_version\": null}", "{\"sha\": \"9d03ee0ce361b7599cb98465430c94f44d545529\", \"live\": true, \"id\": \"x9cb5db3c6eb53987\", \"perseus_api_major_version\": null}", "{\"sha\": \"e50bb0b5a486163a766cb2f1fdc40424eaaeaec3\", \"live\": true, \"id\": \"x4c67fe6b0628aca8\", \"perseus_api_major_version\": null}", "{\"sha\": \"7ad46979bbeace2f8ce9d9f5cd8b90554d605584\", \"live\": true, \"id\": \"x150506e4\", \"perseus_api_major_version\": null}", "{\"sha\": \"0a852903e49377a22b8cc70b2feec61e5730eb57\", \"live\": true, \"id\": \"xccd47986\", \"perseus_api_major_version\": null}", "{\"sha\": \"b568212146ed1ea2a3224b307a8c960bf2df332a\", \"live\": true, \"id\": \"x1019b658\", \"perseus_api_major_version\": null}", "{\"sha\": \"73ec987d9ccd37aeccd5be70a545c99b4ba03bd0\", \"live\": true, \"id\": \"x16750bc5\", \"perseus_api_major_version\": null}", "{\"sha\": \"d4b59169c933859026aa4c2131ac4fd749952dd6\", \"live\": true, \"id\": \"x906998f8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f9af7a0e9debaa56ad123990b8e11f6b7c7db816\", \"live\": true, \"id\": \"x93a49507\", \"perseus_api_major_version\": null}", "{\"sha\": \"536f6d23388a7f902a4e647bed7dc59958b560f4\", \"live\": true, \"id\": \"xf16c46c4\", \"perseus_api_major_version\": null}", "{\"sha\": \"db4ab6f6c6caffd5850a98170d16b4b2a2dc62c0\", \"live\": true, \"id\": \"xf4f6c84c\", \"perseus_api_major_version\": null}", "{\"sha\": \"646a0615f003f088d5b5b0ea8a002ebf1f0d551a\", \"live\": true, \"id\": \"x7810d006ad2d5403\", \"perseus_api_major_version\": null}", "{\"sha\": \"46b6784af0c4fce28187fae071e6bcdbf2b88478\", \"live\": true, \"id\": \"x0e30a39ed41cfa4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed63f8ef560346ffc9a4d86a78e508cb5231ef3f\", \"live\": true, \"id\": \"xc72be93336750776\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 26.0, "path": "interpreting-graphs-of-linear-and-nonlinear-functions/", "slug": "interpreting-graphs-of-linear-and-nonlinear-functions", "kind": "Exercise", "name": "interpreting-graphs-of-linear-and-nonlinear-functions", "seconds_per_fast_problem": 41.0, "prerequisites": ["linear-non-linear-functions"], "exercise_id": "interpreting-graphs-of-linear-and-nonlinear-functions"}, "myelogenous-leukemia-and-two-chemotherapeutic-agents": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/myelogenous-leukemia-and-two-chemotherapeutic-agents/", "id": "myelogenous-leukemia-and-two-chemotherapeutic-agents", "display_name": "Myelogenous leukemia and two chemotherapeutic agents", "title": "Myelogenous leukemia and two chemotherapeutic agents", "all_assessment_items": ["{\"sha\": \"1c23bc81c21029d57bacf3d99e08e4a7f615f1dd\", \"live\": true, \"id\": \"xe4975754e92e9594\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2a3f91595e803ff3c75cef18163a299e7f0fd8f0\", \"live\": true, \"id\": \"xcb1cf31d7d82c9d2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e119b6de94215c5691de6442176f8d060e5c8881\", \"live\": true, \"id\": \"xc150aac22d4bb890\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1ca50f4a955fcb09a27e84bc9fc8ffd2a3945889\", \"live\": true, \"id\": \"xd2c45aff2bbd68af\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cff2915c067599fb1954a05019aacdf494fc6bc2\", \"live\": true, \"id\": \"x55b5b81e47e9d7d8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to genetics and control of enzyme activity", "basepoints": 10.0, "slug": "myelogenous-leukemia-and-two-chemotherapeutic-agents", "kind": "Exercise", "name": "myelogenous-leukemia-and-two-chemotherapeutic-agents", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "myelogenous-leukemia-and-two-chemotherapeutic-agents"}, "creating-fuel-from-algae": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/creating-fuel-from-algae/", "id": "creating-fuel-from-algae", "display_name": "Creating Fuel from Algae", "title": "Creating Fuel from Algae", "all_assessment_items": ["{\"sha\": \"f7e6ae2e3bd0b0044e49b0ec8ef4c340f3f4d12b\", \"live\": true, \"id\": \"x52917d96c86dd7cf\"}", "{\"sha\": \"1814ba09f9046f93b0085884092c06f32085fb46\", \"live\": true, \"id\": \"xe22e538610d413c3\"}", "{\"sha\": \"5987439d2e320b208eacd66b4a8675771958acbc\", \"live\": true, \"id\": \"x3c1aff9e0f1f28cf\"}", "{\"sha\": \"1dee71745e5e0f84b273198f1a49c7041bfb8a0d\", \"live\": true, \"id\": \"xa526f1d53709bd2d\"}", "{\"sha\": \"94e7cc2b1cfd1c32ba62df4e86c63715b22a3077\", \"live\": true, \"id\": \"x09229a82eea2a6ee\"}"], "description": "Questions related to organic chemistry", "basepoints": 10.0, "slug": "creating-fuel-from-algae", "kind": "Exercise", "name": "creating-fuel-from-algae", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "creating-fuel-from-algae"}, "comparing_decimals_2": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/comparing_decimals_2/", "id": "comparing_decimals_2", "display_name": "Comparing decimals 2", "title": "Comparing decimals 2", "description": "Compare two decimals with digits up to the thousandths using >, <, and = symbols.", "basepoints": 12.0, "slug": "comparing_decimals_2", "kind": "Exercise", "name": "comparing_decimals_2", "seconds_per_fast_problem": 5.0, "prerequisites": ["writing-and-interpreting-decimals", "comparing-decimal-place-value"], "exercise_id": "comparing_decimals_2"}, "comparing_decimals_1": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/comparing-decimals-pre-alg/comparing_decimals_1/", "id": "comparing_decimals_1", "display_name": "Comparing decimals 1", "title": "Comparing decimals 1", "description": "Practice comparing decimals. Decimals in these problems are limited to tenths and hundredths.", "basepoints": 10.0, "slug": "comparing_decimals_1", "kind": "Exercise", "name": "comparing_decimals_1", "seconds_per_fast_problem": 4.0, "prerequisites": ["comparing-decimals-visually"], "exercise_id": "comparing_decimals_1"}, "angle_addition_postulate": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/complementary-supplementary-angl/angle_addition_postulate/", "id": "angle_addition_postulate", "display_name": "Equation practice with angle addition", "title": "Equation practice with angle addition", "description": "", "basepoints": 27.0, "slug": "angle_addition_postulate", "kind": "Exercise", "name": "angle_addition_postulate", "seconds_per_fast_problem": 47.0, "prerequisites": ["linear_equations_3", "complementary_and_supplementary_angles"], "exercise_id": "angle_addition_postulate"}, "approximating-irrational-numbers": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/order-of-operations/rational-irrational-numbers/approximating-irrational-numbers/", "id": "approximating-irrational-numbers", "display_name": "Comparing irrational numbers with a calculator", "title": "Comparing irrational numbers with a calculator", "all_assessment_items": ["{\"sha\": \"fe91298d998f0402c11278c9eb3133b597d9eaaa\", \"live\": true, \"id\": \"xb4d73b970f65e743\"}", "{\"sha\": \"1ad94b7b765bd76b7ccccdbf77e4d0568761f4de\", \"live\": true, \"id\": \"xe68a8a5bd20f4608\"}", "{\"sha\": \"e473ca89ab73905194d18847ee66be6846ecd10f\", \"live\": true, \"id\": \"x8cd259559b964eb1\"}", "{\"sha\": \"a432eb84544c0d10e86fcaa3c369370bf9bc1d56\", \"live\": true, \"id\": \"x2479d94c336b7e14\"}", "{\"sha\": \"ee1d99a3233e17aa6dc30aa6e421bf66b20ab9fc\", \"live\": true, \"id\": \"x7a29e6d2fb398fa4\"}", "{\"sha\": \"5af08830873fc68b892c01691fde74196af8a7f4\", \"live\": true, \"id\": \"x6114c9f989526b4a\"}", "{\"sha\": \"8f37b90af2cf62988b9509a73d44763aea6c25f3\", \"live\": true, \"id\": \"x54de55d40c7c93c9\"}", "{\"sha\": \"d81f0d366cc25e7bacc8b21647d7f0689d7d2041\", \"live\": true, \"id\": \"x0f408f2467c19801\"}", "{\"sha\": \"8fca95118ff22b1467ee11ef2ade5028887c521b\", \"live\": true, \"id\": \"x24e028404bd65940\"}", "{\"sha\": \"7b8d8ce5db6b0aba313ff9c4ffbac0fe0ab3a081\", \"live\": true, \"id\": \"x5bd4a84b7981c793\"}", "{\"sha\": \"a075da3989833a53687b987925cd189674fb5f4d\", \"live\": true, \"id\": \"x0f7895f9f975491f\"}", "{\"sha\": \"883c00ccbeefe93023377bd9fc1fc582bf5b7c75\", \"live\": true, \"id\": \"xe52b521cd6694f25\"}", "{\"sha\": \"8c6dcae0dbb67a8d07e1fabac2d002c3f16ebbfd\", \"live\": true, \"id\": \"xeebc4ffe4fe2a958\"}", "{\"sha\": \"7654318b7c9d39ec83553fb9408aae2bf34116b6\", \"live\": true, \"id\": \"x8c95dc031be8e330\"}", "{\"sha\": \"f4e7d197a768660ce5fb9e5df6f1ceb3cd4853b7\", \"live\": true, \"id\": \"x487debc99986d848\"}", "{\"sha\": \"46922ddbe5bfc1e1edea9fb9595568d2372b27fd\", \"live\": true, \"id\": \"x8f58026b4c114ffd\"}", "{\"sha\": \"5b77b366d577fb3997614cb69163bf206b8fe6d0\", \"live\": true, \"id\": \"x8801e1b9a9c6f18a\"}", "{\"sha\": \"05bc5218bb0886d47b0cfd3e892f5f54e5a1e32e\", \"live\": true, \"id\": \"xdf9b279db19b86d3\"}", "{\"sha\": \"10cd8609bdc26e36bf32508ecbcb27c1173f8ace\", \"live\": true, \"id\": \"x654e1ffb45d6f82c\"}", "{\"sha\": \"a5834d47cee77a2800a24953b6b9255e7d0051cf\", \"live\": true, \"id\": \"x2793302cc08c9d81\"}", "{\"sha\": \"3e54a639a21134df03fe02e315a7c804f6a133dc\", \"live\": true, \"id\": \"x4d8dbe91bd4466f1\"}", "{\"sha\": \"4a224b55f08faa278cfac74044499f306c77a3ca\", \"live\": true, \"id\": \"x69935621f216bc8c\"}", "{\"sha\": \"350d9b85f89b40ef0562bd5b2ea6f98c5a5e0b74\", \"live\": true, \"id\": \"x414b8220aec34836\"}", "{\"sha\": \"34703dbeede4b81f300ab90cb765ba433d80a9d4\", \"live\": true, \"id\": \"x75206aad4d824373\"}"], "description": "Practice using a calculator to find the approximate decimal values of irrational numbers.", "basepoints": 10.0, "slug": "approximating-irrational-numbers", "kind": "Exercise", "name": "approximating-irrational-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing-rational-and-irrational-numbers"], "exercise_id": "approximating-irrational-numbers"}, "views_of_a_function": {"uses_assessment_items": false, "path": "khan/math/algebra/algebra-functions/functions-and-function-notation/views_of_a_function/", "id": "views_of_a_function", "display_name": "Views of a function", "title": "Views of a function", "description": "Representing functions in multiple ways", "basepoints": 26.0, "slug": "views_of_a_function", "kind": "Exercise", "name": "views_of_a_function", "seconds_per_fast_problem": 41.0, "prerequisites": ["functions_matching_inputs_outputs"], "exercise_id": "views_of_a_function"}, "defining-reflections": {"uses_assessment_items": true, "path": "khan/math/geometry/transformations/hs-geo-reflections/defining-reflections/", "id": "defining-reflections", "display_name": "Defining reflections (interactive)", "title": "Defining reflections (interactive)", "all_assessment_items": ["{\"sha\": \"879e4f789d861a2cb3136a8c07694738ef2102c5\", \"live\": true, \"id\": \"x153f9237acd6489a\"}", "{\"sha\": \"613b08094c15bff821f6daa34b3d92c924bc4b85\", \"live\": true, \"id\": \"xefda6656c899fe7c\"}", "{\"sha\": \"6e7bf157842a66a028ad799de67e2d5a0b9e8478\", \"live\": true, \"id\": \"x63fb4e4b2c9b2cd1\"}", "{\"sha\": \"114e9782375dc0714b637af90282a5befb23c304\", \"live\": true, \"id\": \"x6b20a60b3962cac8\"}", "{\"sha\": \"28ed6a7fd770227312ad7d4a18455a7808843aa6\", \"live\": true, \"id\": \"xdf48fc56c1bbb250\"}", "{\"sha\": \"af246ba1ae3de94594e49ac6d45c7db7f3db5f4a\", \"live\": true, \"id\": \"x03f1613af9f3fddd\"}", "{\"sha\": \"dbd1eaa90dc59da7c1d484159ae6b7cf72f1b236\", \"live\": true, \"id\": \"x54d5b9c62cfa5435\"}", "{\"sha\": \"1c6a85459733a18335f98afe230975dd5670f49d\", \"live\": true, \"id\": \"x3a6d9529663227c4\"}", "{\"sha\": \"b813cffd8caeb295d829864dfa4167b4a726cda5\", \"live\": true, \"id\": \"x1edc37bbe83165bb\"}", "{\"sha\": \"f9e6fe425bc6b07e43abd2284cb721b4856d92a6\", \"live\": true, \"id\": \"x3701cbd920624a42\"}", "{\"sha\": \"e6791dcd70d6bac25a67fd61f0e68c4cb3bf067d\", \"live\": true, \"id\": \"x16396760f80fb933\"}", "{\"sha\": \"291a5acdcd84028eb1fba0100ddab38453670b88\", \"live\": true, \"id\": \"x35d594d6ee01892a\"}", "{\"sha\": \"96127e3f55af0881479cc5aa477bc7de25928f73\", \"live\": true, \"id\": \"x30905870d35f01d4\"}", "{\"sha\": \"2162102e38a15495dc4f8fa104f6a60554810739\", \"live\": true, \"id\": \"x4341435b65e80dfb\"}", "{\"sha\": \"7191824d8b528d9b6c9f3b2ce9696fae41f77741\", \"live\": true, \"id\": \"xc14b4ae42d2526c0\"}", "{\"sha\": \"746d78c68c9142aaa810ff6f96b5ea9b438b38de\", \"live\": true, \"id\": \"xb1243cac11aa05a7\"}", "{\"sha\": \"7bc134a105cd3bd8d4dc630ed40ecdc0462dd2e2\", \"live\": true, \"id\": \"xd6b841543e2aae44\"}", "{\"sha\": \"515ed3be315d6481e3f5ed71719097b0ba18c18f\", \"live\": true, \"id\": \"x63b0f11039668395\"}", "{\"sha\": \"a019738df30d66c8dc05481ed1b9974d82338ab9\", \"live\": true, \"id\": \"xc5921f388bd6156a\"}", "{\"sha\": \"8cb0840a81a5d96432d19f1eb04289d4acfdabba\", \"live\": true, \"id\": \"x1b9c4d4683f7d015\"}", "{\"sha\": \"e56d2db90a4388b71a7ee12a8e9ab83652213378\", \"live\": true, \"id\": \"x5b99e176d431aa00\"}", "{\"sha\": \"8187e1b58988667b3d0650c24097f06ddbeaae0a\", \"live\": true, \"id\": \"x65eb7a450672b585\"}", "{\"sha\": \"809f670bc6844a5c7f40173bf17dfdf95b393f49\", \"live\": true, \"id\": \"x04ee95264001344b\"}", "{\"sha\": \"c36138855a01234046dc01d9b4c22b17ac585dc1\", \"live\": true, \"id\": \"x1a96dfb637fd6447\"}", "{\"sha\": \"1bc4e9023ffb7664aac58df9d05f9c29e5c3dbd2\", \"live\": true, \"id\": \"x681a7c95bff3be07\"}", "{\"sha\": \"60a43884459eef8dc47998462f902eadd9006c07\", \"live\": true, \"id\": \"x7ad35ccbb6a51119\"}", "{\"sha\": \"c3f7ba71eb30326db3858676ea0da99f6dec68c7\", \"live\": true, \"id\": \"xf43ff9fb9624ba96\"}", "{\"sha\": \"766eb6dbbb2e9876f03cdfa017e7e116621fe522\", \"live\": true, \"id\": \"xfbe9f9be7d9ec1ce\"}", "{\"sha\": \"4b533231ba8b1a20f71211685598ac0158c720ba\", \"live\": true, \"id\": \"xb19b44ccdaa039a0\"}", "{\"sha\": \"bd7bffd8351979224f1e2e31e7b226f7171351d2\", \"live\": true, \"id\": \"x2a46d111f481f2f8\"}"], "description": "Find the line of reflection", "basepoints": 10.0, "slug": "defining-reflections", "kind": "Exercise", "name": "defining-reflections", "seconds_per_fast_problem": 4.0, "prerequisites": ["performing-reflections-on-the-coordinate-plane"], "exercise_id": "defining-reflections"}, "ebola-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/current-issues-in-health-and-medicine/ebola-outbreak/ebola-quiz/", "id": "ebola-quiz", "display_name": "Ebola quiz", "title": "Ebola quiz", "all_assessment_items": ["{\"sha\": \"dc139de796ccc9b7bada6ce934c490aff3789474\", \"live\": true, \"id\": \"x739e7e3e5f5486ec\"}", "{\"sha\": \"2190a956dcf1dc04f47806d28a03427e5fb6b1db\", \"live\": true, \"id\": \"x03e1c8ac1ecd2205\"}", "{\"sha\": \"88e78a6c5a3092a20b433e5b21045bbda4ff604d\", \"live\": true, \"id\": \"x5e59ae4d97fbedaf\"}", "{\"sha\": \"04f3ad37fa0bcd9eceac3d4d1d3a7d847d9fa117\", \"live\": true, \"id\": \"xd290a993cf2de158\"}", "{\"sha\": \"a9d5610c30d6c6a93a917cff13dbb233301f40eb\", \"live\": true, \"id\": \"x8573f4c3d73377a1\"}", "{\"sha\": \"e33d140b7d6bf2f691b56f7473a02039cedbd393\", \"live\": true, \"id\": \"x5e78342c5a1b6586\"}", "{\"sha\": \"f2797a9ec0aefa32f407f3f75d5860d7891763cc\", \"live\": true, \"id\": \"xc34af49cf5226916\"}", "{\"sha\": \"d5582188767672ce7a334aefded963fb58e1c7c6\", \"live\": true, \"id\": \"x148a6e8a70d4344a\"}", "{\"sha\": \"f71ebd74e683f6fdff5c97e65680470ec989ac16\", \"live\": true, \"id\": \"x60d88031c4b77ebb\"}"], "description": "Test how much you know about Ebola!", "basepoints": 10.0, "slug": "ebola-quiz", "kind": "Exercise", "name": "ebola-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ebola-quiz"}, "volumes-of-solids-of-revolution-by-shells": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/solid_revolution_topic/shell-method/volumes-of-solids-of-revolution-by-shells/", "id": "volumes-of-solids-of-revolution-by-shells", "display_name": "Volumes of solids of revolution by shells", "title": "Volumes of solids of revolution by shells", "all_assessment_items": ["{\"sha\": \"66c060cb560fdfac60e3c5efc8e7746c6b39e516\", \"live\": true, \"id\": \"x08ac4494070aa4da\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a9bb500adaedd14921a454ca20190eeaea08c7c5\", \"live\": true, \"id\": \"x26b3d3c1aed0ffd1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3838af2d6ca367792fc774b0a14bd360ee5e3493\", \"live\": true, \"id\": \"x2bdcba6505f5a00a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"37ddddbcdacc31557845c7831dede54ba45b84a5\", \"live\": true, \"id\": \"xc0cebe45db308648\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"471a4badec19d59f518ca35c5174ca9f5e84db0a\", \"live\": true, \"id\": \"x53a86fd6c6990be9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d860a233be6cbd532417bfe81a26876492e51dc4\", \"live\": true, \"id\": \"xad4ec4d81ce7b608\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7e81779b95dbfc76d47d7866417a5e5584557ea\", \"live\": true, \"id\": \"x56a1a5f235f3cafc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2fef92f6958f1b7843c53a9a4ba8af7fab3de4e9\", \"live\": true, \"id\": \"xeff2aee133f81a70\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e28df47d9fa67ea506845ece401fe869f345703\", \"live\": true, \"id\": \"x750bef4fa9b554ee\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9dfe28cac8fe2eee89012cceb639515abcf8481c\", \"live\": true, \"id\": \"x135cd9bff5f140af\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"643815a98816a31e9a017d2e89e2b5696f022db6\", \"live\": true, \"id\": \"x0da1a5b1b19d4747\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d351d9f7fd40ca5d145bbd0071cbb19ac08394de\", \"live\": true, \"id\": \"x03db680cd574a96a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"549d35be4bc6e585488bdfe54b2bf219bfe1be96\", \"live\": true, \"id\": \"x86d9cf831376ef5a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c60b9b559b83969b24f26d41331fb03ca9dc2451\", \"live\": true, \"id\": \"xec4041f31c173662\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"efb81d1ad160b8df2c70cde36451f05fe7ed296b\", \"live\": true, \"id\": \"x939b0ab1adc1b613\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9044a292a489553520dd3b0a72b7cb8854dc284a\", \"live\": true, \"id\": \"x2055fcbfd4823af5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4eb9fa66469d5004c5a847d01dbb8516645b1608\", \"live\": true, \"id\": \"xe513b4d53ba402a5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c0fa9a606e92c1df979bc1b9d5028097f2a160f7\", \"live\": true, \"id\": \"x7e072a05502ceeed\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bd5ec5d05c2bcbc5b495d83c5781e11d14181240\", \"live\": true, \"id\": \"x826c93073b77006c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d4f9c2e4809df02deea129e451692853e311a713\", \"live\": true, \"id\": \"x47f01884dc021b32\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e66a698ff0e248482efde32e23d077160f2560df\", \"live\": true, \"id\": \"x09aa05e081f5bebc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"85362bf2ed6bb339a84d2e4487b91c26bcfb2d55\", \"live\": true, \"id\": \"x5776088a424590f4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7a32f9b858d4f733b6d7f009da9d607f46ed6587\", \"live\": true, \"id\": \"xa8cfdfb5a9e9a980\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e89f8b2c9b9f32990e634026531b1217851e3e71\", \"live\": true, \"id\": \"x7b8623c0d4ed689e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f0546fc30f36e344eec3c9ccca059daa611ae915\", \"live\": true, \"id\": \"xca2ba4256133cac0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d7cadb8bac0c11ef7483361b6294b7a185551ed8\", \"live\": true, \"id\": \"x049e803b371cf13a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e98ec4552800897590fd9292c9cdc1b9f5961ebf\", \"live\": true, \"id\": \"xeb893ecd405c7406\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e009009d53b01a07b1d2b055f9775b8dad4ccde8\", \"live\": true, \"id\": \"x0778855569693773\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"217c1e7b583c3152f5d1972c987f5c9c1987898b\", \"live\": true, \"id\": \"x8cfc38c9a81ced52\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"829480d105050d37f9840818f11c0a7986cc446e\", \"live\": true, \"id\": \"xae82146732bbc56f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}"], "description": "Volumes of solids of revolution, shell method", "basepoints": 10.0, "slug": "volumes-of-solids-of-revolution-by-shells", "kind": "Exercise", "name": "volumes-of-solids-of-revolution-by-shells", "seconds_per_fast_problem": 4.0, "prerequisites": ["volumes-of-solids-of-revolution--discs-and-washers"], "exercise_id": "volumes-of-solids-of-revolution-by-shells"}, "law_of_cosines": {"uses_assessment_items": false, "path": "khan/math/trigonometry/less-basic-trigonometry/law-sines-cosines/law_of_cosines/", "id": "law_of_cosines", "display_name": "Law of cosines", "title": "Law of cosines", "description": "Solve missing triangle measures using the law of cosines", "basepoints": 29.0, "slug": "law_of_cosines", "kind": "Exercise", "name": "law_of_cosines", "seconds_per_fast_problem": 60.0, "prerequisites": ["trigonometric-functions-and-side-ratios-in-right-triangles"], "exercise_id": "law_of_cosines"}, "separations-and-purifications---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/separations-and-purifications-passage-1/", "id": "separations-and-purifications---passage-1", "display_name": "Creating and separating acetone", "title": "Creating and separating acetone", "all_assessment_items": ["{\"sha\": \"9b30ee38e3f2c911b4781431bc1a1f6b37dab59e\", \"live\": true, \"id\": \"x1753445d4dfda7cf\"}", "{\"sha\": \"fb7f646c828d30219e7595de3bfe7dbe3ef423f2\", \"live\": true, \"id\": \"x3f26cb38c12d6071\"}", "{\"sha\": \"5403b139e4af62090ed2d4f737f5f54c71ef9dbb\", \"live\": true, \"id\": \"x0ba28a9608cab7e3\"}", "{\"sha\": \"3d7d8a87c5ff92d0528fac34b62c0a1340ee2147\", \"live\": true, \"id\": \"xd43e89a210753fa2\"}", "{\"sha\": \"cfda41799ff64e46a14cb89602ce98177f3fac60\", \"live\": true, \"id\": \"x11e074903a2ede06\"}"], "description": "", "basepoints": 10.0, "slug": "separations-and-purifications-passage-1", "kind": "Exercise", "name": "separations-and-purifications---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "separations-and-purifications---passage-1"}, "separations-and-purifications---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/separations-and-purifications-passage-2/", "id": "separations-and-purifications---passage-2", "display_name": "Separations and purifications - Passage 2", "title": "Separations and purifications - Passage 2", "all_assessment_items": ["{\"sha\": \"dba29b472c0415dcc2e3c6e3d726fa634242c7bd\", \"live\": true, \"id\": \"xf5d056ed921e67a5\"}", "{\"sha\": \"0fa79f0ee4ba3d21120d9c2a1d1e7eb68177bf56\", \"live\": true, \"id\": \"x2accd02d6bee6f5f\"}", "{\"sha\": \"cd5a4ecb8e46e7e0fc6530496390af77abc3709b\", \"live\": true, \"id\": \"x0c36d53596f5300b\"}", "{\"sha\": \"7bb0b0acfcbe9a6f8c96bc9520621208c4656c84\", \"live\": true, \"id\": \"x95f5f3679b7edec7\"}"], "description": "", "basepoints": 10.0, "slug": "separations-and-purifications-passage-2", "kind": "Exercise", "name": "separations-and-purifications---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "separations-and-purifications---passage-2"}, "ardabil-carpet-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/west-and-central-asia/ardabil-carpet-quiz/", "id": "ardabil-carpet-quiz", "display_name": "Ardabil Carpet (quiz)", "title": "Ardabil Carpet (quiz)", "all_assessment_items": ["{\"sha\": \"668e9005c0b916351a27087f2afe36d7e22f4bb4\", \"live\": true, \"id\": \"x2090940ea0b4a577\"}", "{\"sha\": \"f3630323f7b6ace8955bed46c8aeaa1b5a351356\", \"live\": true, \"id\": \"x056e1fd9f0a5596d\"}", "{\"sha\": \"445b4b67775605d07875ef42972e1eb210e9f58e\", \"live\": true, \"id\": \"x25f7c846246ff66e\"}", "{\"sha\": \"febf4aac3cff6e6c1fb95a7f492974dcf8dd8947\", \"live\": true, \"id\": \"x3b3d896b31c0b3a0\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "ardabil-carpet-quiz", "kind": "Exercise", "name": "ardabil-carpet-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ardabil-carpet-quiz"}, "division-using-place-value-understanding": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/division-using-place-value-understanding/", "id": "division-using-place-value-understanding", "display_name": "Division using place value understanding", "title": "Division using place value understanding", "all_assessment_items": ["{\"sha\": \"be8e61920592a35223baf34209db00943ab5ffd5\", \"live\": true, \"id\": \"xc96439b35911d8fa\"}", "{\"sha\": \"373bbb5d9c770f79888bb6a560994ebdfb351488\", \"live\": true, \"id\": \"xe21899e9ceb1a5ac\"}", "{\"sha\": \"ac9a6bba2d41dc1abd8ff0506bc71f224d3aa859\", \"live\": true, \"id\": \"xe0034fca73a28941\"}", "{\"sha\": \"1023bb05e683ab99c6eb38896801fd8efb2555a3\", \"live\": true, \"id\": \"x05d54c578e52a3bd\"}", "{\"sha\": \"cf18c52444c58ac3cd92b2d503b9aaee89d34f64\", \"live\": true, \"id\": \"x1c7043fabc68eada\"}", "{\"sha\": \"8efcb1450b879b98bdae09d8d0127c9d0d57345f\", \"live\": true, \"id\": \"xb7ba21e7cb3c7d51\"}", "{\"sha\": \"ee4c6481bf452403949e38bdee3ed1827dda2834\", \"live\": true, \"id\": \"x2147459b9b667469\"}", "{\"sha\": \"dde8620b6810b7a5020ca20bd87eb7181514f2cd\", \"live\": true, \"id\": \"x09aff7654acc3ca6\"}", "{\"sha\": \"07147d33c3e9be1f345c0cfcc50867e4eb813cc5\", \"live\": true, \"id\": \"x4ba08e53a75dae8a\"}", "{\"sha\": \"a4046e19156effafbac6269770a098e3f1f1dc42\", \"live\": true, \"id\": \"x3ae31e678d32c107\"}", "{\"sha\": \"f3dae42ddaade9c7e7429888f7c09bf186c22a6e\", \"live\": true, \"id\": \"x51c820f8bcb85e41\"}", "{\"sha\": \"f7d5e474a0c737baea33d85a2d77bbac66bb4535\", \"live\": true, \"id\": \"xc439df0624e0d74f\"}", "{\"sha\": \"345b99080f4b99b0e27e414efda23ddc77d124fa\", \"live\": true, \"id\": \"x3805ad935fbc2e83\"}", "{\"sha\": \"93938f274ee1f324cfb3aa895d405d3c366c353f\", \"live\": true, \"id\": \"x3db82d4fad87d0ef\"}", "{\"sha\": \"8255531504c7f8b563df2f4bc4eb2ec53045d4a3\", \"live\": true, \"id\": \"x0e958a99becc17e6\"}", "{\"sha\": \"1788e012621d685f2c2171a879d4da6132bed5c8\", \"live\": true, \"id\": \"x0dc6188fd90f0760\"}", "{\"sha\": \"4f19584afb80d1c6ffd71c46127224711b881308\", \"live\": true, \"id\": \"xcd324ef1183cc18f\"}", "{\"sha\": \"eca44c8e4aff12d3060af44920012054d4db32d3\", \"live\": true, \"id\": \"xea861bf2398428c8\"}", "{\"sha\": \"548fa90e37133ce705084fbf212fdd1cf3603b24\", \"live\": true, \"id\": \"x6b99706ee6adceff\"}", "{\"sha\": \"eb167db6d09f98e30bc3892d66a14fa5ff1e10a0\", \"live\": true, \"id\": \"x325afbe621b5e680\"}"], "description": "Decompose three and four-digit dividends to divide them by a one-digit divisor. \u00a0", "basepoints": 10.0, "slug": "division-using-place-value-understanding", "kind": "Exercise", "name": "division-using-place-value-understanding", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-place-value-1", "division_1.5"], "exercise_id": "division-using-place-value-understanding"}, "factoring_polynomials_with_two_variables": {"uses_assessment_items": false, "path": "khan/math/algebra/multiplying-factoring-expression/factoring-quadratics-in-two-vari/factoring_polynomials_with_two_variables/", "id": "factoring_polynomials_with_two_variables", "display_name": "Factoring quadratics with two variables", "title": "Factoring quadratics with two variables", "description": "Factor a polynomial with two variables into expressions", "basepoints": 22.0, "slug": "factoring_polynomials_with_two_variables", "kind": "Exercise", "name": "factoring_polynomials_with_two_variables", "seconds_per_fast_problem": 22.0, "prerequisites": ["factoring_polynomials_2"], "exercise_id": "factoring_polynomials_with_two_variables"}, "the-great-mosque-of-isfahan-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/west-and-central-asia/the-great-mosque-of-isfahan-quiz/", "id": "the-great-mosque-of-isfahan-quiz", "display_name": "The Great Mosque of Isfahan (quiz)", "title": "The Great Mosque of Isfahan (quiz)", "all_assessment_items": ["{\"sha\": \"b0ec586f368b09d735f322443ece8e2c2085537c\", \"live\": true, \"id\": \"x6ce93eb40f9f1bcd\"}", "{\"sha\": \"e91a4f7065a4466dd3baa725633e8f88a59390d4\", \"live\": true, \"id\": \"x2eaf92a955846d62\"}", "{\"sha\": \"981c5f7a6b6bce269ed9cacce298454985af46c3\", \"live\": true, \"id\": \"x86e77a55fa298eb9\"}", "{\"sha\": \"cd4776342d33d92e148f546015fc78dadaa72f0d\", \"live\": true, \"id\": \"x60d510c223133c28\"}"], "description": "Test your knowledge", "basepoints": 10.0, "slug": "the-great-mosque-of-isfahan-quiz", "kind": "Exercise", "name": "the-great-mosque-of-isfahan-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-great-mosque-of-isfahan-quiz"}, "do-beliefs-about-healthy-food-inform-consumer-choices--": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/do-beliefs-about-healthy-food-inform-consumer-choices-/", "id": "do-beliefs-about-healthy-food-inform-consumer-choices--", "display_name": "Do beliefs about healthy food inform consumer choices?", "title": "Do beliefs about healthy food inform consumer choices?", "all_assessment_items": ["{\"sha\": \"775f64734e9eea396b115f389139c42dd9829dd3\", \"live\": true, \"id\": \"x1eaa580e890fb78e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"84827a216c5578c08c3af6050c53ae71b84d389c\", \"live\": true, \"id\": \"xb383af44b5720a6c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"47168252996a44a5186685c22634f967e05ae592\", \"live\": true, \"id\": \"x9b3c95ef8a5dff8c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6a5902673e94c5d4e8009b13786696878367c477\", \"live\": true, \"id\": \"xcebc41892898ff87\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"223b91d47b7a571f0799902f1d42a6c8e72c2c32\", \"live\": true, \"id\": \"xc028e40d587f2ce0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Questions related to attitudes", "basepoints": 10.0, "slug": "do-beliefs-about-healthy-food-inform-consumer-choices-", "kind": "Exercise", "name": "do-beliefs-about-healthy-food-inform-consumer-choices--", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "do-beliefs-about-healthy-food-inform-consumer-choices--"}, "comparing-fractions-with-the-same-numerator-or-denominator": {"uses_assessment_items": true, "id": "comparing-fractions-with-the-same-numerator-or-denominator", "display_name": "Visually comparing fractions 1", "title": "Visually comparing fractions 1", "all_assessment_items": ["{\"sha\": \"01ebdb4cc24c375bf451ce9e0ef88284f2c347a2\", \"live\": true, \"id\": \"xf7016c7e4a0cdde9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"738dd543fa3f00835d00fb6b5c52ae07ca573e69\", \"live\": true, \"id\": \"xca76ec909fd1acbd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7fe01b4270f894c029c5e07d0b0e0854c2635d2f\", \"live\": true, \"id\": \"x4e5a5eda440555d2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"9923f2dfb57df1faa21ee5aeced8641f7903e759\", \"live\": true, \"id\": \"x7f683e06b2f32dac\", \"perseus_api_major_version\": 0}", "{\"sha\": \"44dd3f507b090215da43998a3ea5d0309e2b4157\", \"live\": true, \"id\": \"xe9b782ca62bcdbc8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7346258a4391cdab23731e2e89ee0556ba652a81\", \"live\": true, \"id\": \"x6c9457edd2513ac5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"741705698e4b3c608b1839f3d0fccad0395cf56d\", \"live\": true, \"id\": \"x91815a34876a8803\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c051e442083e320ac15a4bdd7930c068d0a7788d\", \"live\": true, \"id\": \"xac1310149e6d1dca\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0bd634e8a2450a0736548211a634eac6c96d4bab\", \"live\": true, \"id\": \"xaaf78610af877ec1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"451448894d03e3b667806a029df1becf4fcd6a5e\", \"live\": true, \"id\": \"x0f849f5531db84f6\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e09056017bf10cb767940f0b69691da13c15d257\", \"live\": true, \"id\": \"x2d503f2c11c8030c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1ab1bddbb5dbc96a1147da5893e25428b1ca9a42\", \"live\": true, \"id\": \"x7a64b62282ceabc0\", \"perseus_api_major_version\": 0}", "{\"sha\": \"042aabea8b23f472de79c30da466517291b82c7a\", \"live\": true, \"id\": \"x4111f746223ca29a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0255f6b6819125015c39750ab75a65f0f27e70b3\", \"live\": true, \"id\": \"xfec139552988f2d4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"422c95750cf9320ce97a97868760abdbc9de3e24\", \"live\": true, \"id\": \"x749bc4de338a3c68\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fdc2eb246b783d435739aa666612a34ed33eda4b\", \"live\": true, \"id\": \"xb007509567a35628\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c7464f9fa2f0352496d63d5d1c8fe8efbadb2d4f\", \"live\": true, \"id\": \"x4c3041b8742ac32b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3e9d316c60159766cf1bdffcc3c96312dcb0bec1\", \"live\": true, \"id\": \"x498e2260285c22e1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"43075a4d01195407bbf73a6a4803ff7260fe40c8\", \"live\": true, \"id\": \"x0a5bef688d5c0a14\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b7af7f35d5775a13013fd93b42ec28730b5e0b13\", \"live\": true, \"id\": \"x0954d2d3038c1a84\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 10.0, "path": "comparing-fractions-with-the-same-numerator-or-denominator/", "slug": "comparing-fractions-with-the-same-numerator-or-denominator", "kind": "Exercise", "name": "comparing-fractions-with-the-same-numerator-or-denominator", "seconds_per_fast_problem": 4.0, "prerequisites": ["fractions-greater-than-one"], "exercise_id": "comparing-fractions-with-the-same-numerator-or-denominator"}, "taste--gustation--and-smell--olfaction----passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/taste-gustation-and-smell-olfaction-passage-2/", "id": "taste--gustation--and-smell--olfaction----passage-2", "display_name": "Taste disorders and their causes", "title": "Taste disorders and their causes", "all_assessment_items": ["{\"sha\": \"3c75c3f42a9613ca06cd28377e62a9dc271c7e76\", \"live\": true, \"id\": \"xcc93499a58ace98b\"}", "{\"sha\": \"466184ce0b58c02ea37c0d9a9372dc0032ea7cea\", \"live\": true, \"id\": \"x17c69e3078218b8d\"}", "{\"sha\": \"0fb8bd98ec8b1a56c714aadb9726f3510a17edfc\", \"live\": true, \"id\": \"x160978ece870d830\"}", "{\"sha\": \"654676a1223eb555c64be5083361014abebd36df\", \"live\": true, \"id\": \"x641e96e0a267fc88\"}", "{\"sha\": \"71b6382c5aa2a30307fcc099eb044d759476475d\", \"live\": true, \"id\": \"x4aa5aaa90e7c5049\"}"], "description": "Questions related to gustation and olfaction", "basepoints": 10.0, "slug": "taste-gustation-and-smell-olfaction-passage-2", "kind": "Exercise", "name": "taste--gustation--and-smell--olfaction----passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "taste--gustation--and-smell--olfaction----passage-2"}, "taste--gustation--and-smell--olfaction----passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/taste-gustation-and-smell-olfaction-passage-1/", "id": "taste--gustation--and-smell--olfaction----passage-1", "display_name": "Diminished sensory input and the enjoyment of food", "title": "Diminished sensory input and the enjoyment of food", "all_assessment_items": ["{\"sha\": \"44637744d6e51b4d9ea375f7fbaef786981ccb0e\", \"live\": true, \"id\": \"x5925ed49dc98c94d\"}", "{\"sha\": \"b3ac9b03cd5de14deed71c7f00f449e1de18bea1\", \"live\": true, \"id\": \"x61ad692c4f15e012\"}", "{\"sha\": \"412f08e1b9f6f312521643a2988343b0ea45a116\", \"live\": true, \"id\": \"x81c15af222926905\"}", "{\"sha\": \"357b04f50b00d844a07cb88f270a0a52941a383d\", \"live\": true, \"id\": \"x2c60d1663622ab7e\"}", "{\"sha\": \"c009a78dfe6ee46c30cad8ec9f63eecf5499f9c0\", \"live\": true, \"id\": \"xf810e97a7de24b35\"}"], "description": "", "basepoints": 10.0, "slug": "taste-gustation-and-smell-olfaction-passage-1", "kind": "Exercise", "name": "taste--gustation--and-smell--olfaction----passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "taste--gustation--and-smell--olfaction----passage-1"}, "speed-and-velocity---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/speed-and-velocity-passage-2/", "id": "speed-and-velocity---passage-2", "display_name": "Blood flow in the arteries", "title": "Blood flow in the arteries", "all_assessment_items": ["{\"sha\": \"e18fddfe981da3f31f45d22153d1bb206dc35125\", \"live\": true, \"id\": \"x0ec2e49a98ef6ac2\"}", "{\"sha\": \"51d019c40ff426256a549ccbcbd6ec1bb7099c75\", \"live\": true, \"id\": \"xa8a9a00f4a0b1d38\"}", "{\"sha\": \"f270ebc725006255b709c769740f3b3eaf22dc8e\", \"live\": true, \"id\": \"x5e425b190321266b\"}", "{\"sha\": \"cab05c75a96c0b4b5d488a5c791b3ed3d54c68f2\", \"live\": true, \"id\": \"xa3271e9cfcb3aa77\"}", "{\"sha\": \"71bd7a79b3a9c3b797b0177de14015fc6493928e\", \"live\": true, \"id\": \"x23d8789ecd3a558a\"}"], "description": "This passage will test your knowledge on speed and velocity", "basepoints": 10.0, "slug": "speed-and-velocity-passage-2", "kind": "Exercise", "name": "speed-and-velocity---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "speed-and-velocity---passage-2"}, "speed-and-velocity---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/speed-and-velocity-passage-1/", "id": "speed-and-velocity---passage-1", "display_name": "The speed of a neural impulse", "title": "The speed of a neural impulse", "all_assessment_items": ["{\"sha\": \"c8fcdd87672fc9bd3508a04ba275d5a47273ea0d\", \"live\": true, \"id\": \"x497bfdc74b9e8f86\"}", "{\"sha\": \"625ff6b37614dabcef319ea492bf11973937c8a9\", \"live\": true, \"id\": \"x102424ed3963a221\"}", "{\"sha\": \"3e4b25cbbde0f356417e84455abccb69164fc60f\", \"live\": true, \"id\": \"x409eeeeafaa74375\"}", "{\"sha\": \"8e68f90f1b44f2ff8b01d051c3a4ca6b058f87c0\", \"live\": true, \"id\": \"x48b154f48d5577da\"}", "{\"sha\": \"15e7b0efccc37548ad142d02b0107dde606cc97e\", \"live\": true, \"id\": \"x37a313f27ce7f284\"}"], "description": "This passage will test your knowledge on speed and velocity", "basepoints": 10.0, "slug": "speed-and-velocity-passage-1", "kind": "Exercise", "name": "speed-and-velocity---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "speed-and-velocity---passage-1"}, "solving_quadratics_by_factoring_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/solving_quadratics_by_factoring_2/", "id": "solving_quadratics_by_factoring_2", "display_name": "Solving quadratics by factoring 2", "title": "Solving quadratics by factoring 2", "description": "Solve quadratics by factoring, where the leading coefficient\u00a0is not 1", "basepoints": 24.0, "slug": "solving_quadratics_by_factoring_2", "kind": "Exercise", "name": "solving_quadratics_by_factoring_2", "seconds_per_fast_problem": 30.0, "prerequisites": ["solving_quadratics_by_factoring"], "exercise_id": "solving_quadratics_by_factoring_2"}, "duccio-s-rucellai-madonna-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/duccio-s-rucellai-madonna-quiz/", "id": "duccio-s-rucellai-madonna-quiz", "display_name": "Duccio, Rucellai Madonna (quiz)", "title": "Duccio, Rucellai Madonna (quiz)", "all_assessment_items": ["{\"sha\": \"27da333d677b6f8ca7453bad1ba83c4821e61397\", \"live\": true, \"id\": \"x7ef89c87c5438e34\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f74a0649ad3fc7db891576cb62459d51fcd7b827\", \"live\": true, \"id\": \"xe9287b0724da0a58\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0909d000edb36cbb2d63d595fdb727f8b013c66c\", \"live\": true, \"id\": \"x337e0fa178217c53\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "duccio-s-rucellai-madonna-quiz", "kind": "Exercise", "name": "duccio-s-rucellai-madonna-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "duccio-s-rucellai-madonna-quiz"}, "turner-s-slave-ship-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/england-constable-turner/turner-s-slave-ship-quiz/", "id": "turner-s-slave-ship-quiz", "display_name": "Turner's Slave Ship (quiz)", "title": "Turner's Slave Ship (quiz)", "all_assessment_items": ["{\"sha\": \"7f79ae830020357cdb93caffa875c9ac7877b25d\", \"live\": true, \"id\": \"x19688879b44ac984\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e7e76c255454b5452967b6a110c7456236205a6\", \"live\": true, \"id\": \"x9820a7dd6e92c004\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fecd46561b0b53bf617159d37b23899a7e66a415\", \"live\": true, \"id\": \"x91e2dc7ca1b889ad\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f3cd206d3d8f95b2bcd0b74ec182f94a45130d99\", \"live\": true, \"id\": \"x88b44710f16cad94\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "turner-s-slave-ship-quiz", "kind": "Exercise", "name": "turner-s-slave-ship-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "turner-s-slave-ship-quiz"}, "is-obesity-contagious-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/is-obesity-contagious-/", "id": "is-obesity-contagious-", "display_name": "Is obesity \"contagious\"?", "title": "Is obesity \"contagious\"?", "all_assessment_items": ["{\"sha\": \"286354088eca0d1c26d586b23027a3bb7fbc7a9d\", \"live\": true, \"id\": \"x726830d0fa5b778b\"}", "{\"sha\": \"a3678cfa318ab7d0c6002116e3c0a61115eb06a8\", \"live\": true, \"id\": \"x56ab48e77d136850\"}", "{\"sha\": \"a9bfb8914f34451cb7fc384be484383d0684aa1d\", \"live\": true, \"id\": \"x417fd6d152255d6a\"}", "{\"sha\": \"bf4e6f475dfba1bb76b956c2a91bf4283e84d655\", \"live\": true, \"id\": \"x4598654a42c00a1c\"}", "{\"sha\": \"26e39c324b4d6fe0cffa9b838eb7b0a43f8070fa\", \"live\": true, \"id\": \"x093f0c9a6346a7bc\"}"], "description": "Questions related to social interactions and health outcomes.", "basepoints": 10.0, "slug": "is-obesity-contagious-", "kind": "Exercise", "name": "is-obesity-contagious-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "is-obesity-contagious-"}, "recognizing-shapes": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-properties-shapes/recognizing-shapes/", "id": "recognizing-shapes", "display_name": "Naming shapes 4", "title": "Naming shapes 4", "all_assessment_items": ["{\"sha\": \"c9d29bc8685fcd2de4ba5736cf2bbe4b1cefc718\", \"live\": true, \"id\": \"x41d7ca1a2fe14238\"}", "{\"sha\": \"64a81c1c4673f4d8736398b79424ae51e402c4f9\", \"live\": true, \"id\": \"xf305e7b44ff99545\"}", "{\"sha\": \"4efa389fcb90cbe7fbbedc1c359f5d106b124b7c\", \"live\": true, \"id\": \"x479b53750e669de8\"}", "{\"sha\": \"88ab1a571361e6520116df06b78cfb20ee503460\", \"live\": true, \"id\": \"xa059518bdbda2282\"}", "{\"sha\": \"d0a05c9df61b8afa668f23e34e1678a93b6a22b1\", \"live\": true, \"id\": \"x8863821c8a6f0236\"}", "{\"sha\": \"9c2b98c5d79ef9ce822317788c281fc4fa056e67\", \"live\": true, \"id\": \"x13af584a92844db1\"}", "{\"sha\": \"2db46be6f62b43e37dbb67cfc22cf95dab3b8d4c\", \"live\": true, \"id\": \"xc4f3ae919773e3c5\"}", "{\"sha\": \"6de042fa018e5d8d40e1b75f21b8d7d3b3531362\", \"live\": true, \"id\": \"xc8f288fec326ab3a\"}", "{\"sha\": \"90a875e1896bc8e37cd1150a62f032828a41bcc7\", \"live\": true, \"id\": \"x4e2d085853db01e1\"}", "{\"sha\": \"117e36cb3b880afdff39c26ead74466419829a8d\", \"live\": true, \"id\": \"x4e6e999270790617\"}", "{\"sha\": \"e55fab72889c701f9cdba52b79801f42744834b9\", \"live\": true, \"id\": \"x68340780e7a96f56\"}", "{\"sha\": \"dcc24a5f7a139dadf96164b2f74071491f0296a8\", \"live\": true, \"id\": \"x235b1e58944ed046\"}", "{\"sha\": \"5fc3beb14ba9f643b341572db357fbd7dbd15206\", \"live\": true, \"id\": \"x60fcbc311879b422\"}", "{\"sha\": \"8e2feb950b9d64de692b9c678eb6ded6bcf41adc\", \"live\": true, \"id\": \"x5f4fd8ffcc11c02f\"}", "{\"sha\": \"ee59db1ae89414471ab788fd74d39921d5a6f027\", \"live\": true, \"id\": \"xef3ac0f9999360ca\"}", "{\"sha\": \"44da422b9ed94143091d71a9562bc07c9eb31d91\", \"live\": true, \"id\": \"x9f9e44a5a83bb557\"}", "{\"sha\": \"70a0641212d07b97aec8957222a8fbbbeac54aa6\", \"live\": true, \"id\": \"x4946cdce1ea9e084\"}", "{\"sha\": \"f44116af83e30d5b3c0a448802700e43cbfeec9f\", \"live\": true, \"id\": \"x17a30788b8201431\"}", "{\"sha\": \"d4be02bb7cf707cdb0a805f32ad4e1457fab37dc\", \"live\": true, \"id\": \"x4bf5649bc80b6973\"}", "{\"sha\": \"c035bc7a0398b40c249e55ff0310315b1d237eda\", \"live\": true, \"id\": \"xf94e96c814a226c9\"}"], "description": "Practice identifying quadrilaterals, pentagons, hexagons, and octagons.", "basepoints": 10.0, "slug": "recognizing-shapes", "kind": "Exercise", "name": "recognizing-shapes", "seconds_per_fast_problem": 4.0, "prerequisites": ["attributes-of-shapes"], "exercise_id": "recognizing-shapes"}, "fraction_word_problems_1": {"uses_assessment_items": false, "path": "khan/math/arithmetic/fractions/understanding_fractions/fraction_word_problems_1/", "id": "fraction_word_problems_1", "display_name": "Adding and subtracting fractions of pizzas, pies, and cakes", "title": "Adding and subtracting fractions of pizzas, pies, and cakes", "description": "Practice solving word problems by adding and subtracting fractions with like denominators.", "basepoints": 15.0, "slug": "fraction_word_problems_1", "kind": "Exercise", "name": "fraction_word_problems_1", "seconds_per_fast_problem": 8.0, "prerequisites": ["subtracting_fractions_with_common_denominators"], "exercise_id": "fraction_word_problems_1"}, "carbohydrate-metabolism-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/carbohydrate-metabolism/carbohydrate-metabolism-questions/", "id": "carbohydrate-metabolism-questions", "display_name": "Carbohydrate metabolism questions", "title": "Carbohydrate metabolism questions", "all_assessment_items": ["{\"sha\": \"a9e86fb6b17b4de4a252b404b7397759c7296aea\", \"live\": true, \"id\": \"xc6ae29d8f804a468\"}", "{\"sha\": \"58e064d2b4d755e65b0062dde03172db697148b2\", \"live\": true, \"id\": \"x21e5ceaca0274718\"}", "{\"sha\": \"9e25f63cce617fd9bce7759b02ab2b26ee8e0e01\", \"live\": true, \"id\": \"xb8e66fd61515fabe\"}", "{\"sha\": \"b8515e2a219fc77df803c3203ca36dd22943249b\", \"live\": true, \"id\": \"x57d872aa61793ef6\"}", "{\"sha\": \"d27fd26208be1a664645e66470d7fa9f6725fb71\", \"live\": true, \"id\": \"x633b86eef2ae2d7d\"}", "{\"sha\": \"964862c2c0b2e9923bec982bf0d74741ca4a3255\", \"live\": true, \"id\": \"x6dc3661414a4e1c7\"}", "{\"sha\": \"c0e8b36c442c4672572de0653db32402b0b72f96\", \"live\": true, \"id\": \"x3a307fe400b27ec0\"}", "{\"sha\": \"ff5e396f2f6ab60864bcb71f79def606814ec721\", \"live\": true, \"id\": \"xc00b9c1d5f3a0cb2\"}", "{\"sha\": \"ef46af6cc6069b2852217fb113d7c619a41fd144\", \"live\": true, \"id\": \"x2642d54722d9451a\"}", "{\"sha\": \"b88126dd04391fd1fbdefc7dbc117006a62b8eaf\", \"live\": true, \"id\": \"x2d2c5a42a73eb6bd\"}"], "description": "Carbohydrate metabolism questions", "basepoints": 10.0, "slug": "carbohydrate-metabolism-questions", "kind": "Exercise", "name": "carbohydrate-metabolism-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "carbohydrate-metabolism-questions"}, "understanding-area": {"uses_assessment_items": true, "id": "understanding-area", "display_name": "Understanding area", "title": "Understanding area", "all_assessment_items": ["{\"sha\": \"f8eaf8c72b189efcb6692b506385b094a503d5c0\", \"live\": true, \"id\": \"xf4ba38f5b5d582bd\"}", "{\"sha\": \"e766f848f7e02ae892ffc80786724781e35e569e\", \"live\": true, \"id\": \"xa0fc62589e145fde\"}", "{\"sha\": \"a10c41022ceb716b3c4170d6c2a7c3f3659d3f3e\", \"live\": true, \"id\": \"x1830f1844913e08f\"}", "{\"sha\": \"1cb4e23d17d93b62a0bf6057bec83e2ca8332870\", \"live\": true, \"id\": \"x2716050fc881aab4\"}", "{\"sha\": \"4c74d24e181f9b272904c02e3ef55ee894f23662\", \"live\": true, \"id\": \"x0cc834cdca006794\"}", "{\"sha\": \"900ece7d39390416d8330f9bc5ed4b57518e53e3\", \"live\": true, \"id\": \"x3381690ee548f57e\"}", "{\"sha\": \"fe422a8aa7486070dd08ff1deb880cea5a1f2876\", \"live\": true, \"id\": \"xf63fb4eb15544da5\"}", "{\"sha\": \"965a1747ac7dfaecfc37fab9848414cae70a7903\", \"live\": true, \"id\": \"x765098d233bac308\"}", "{\"sha\": \"e3c1acd60e04d5104d8cb153dcaf2ebeb5cade99\", \"live\": true, \"id\": \"xe26785ed9a4b9f62\"}", "{\"sha\": \"7871cb77d3f51d79bb9e7043eb009be474cedd51\", \"live\": true, \"id\": \"xa09fe649b475c0fa\"}", "{\"sha\": \"3335e5fa2f5a1541b2b6f4c20f3b302f5729a47f\", \"live\": true, \"id\": \"x791ef359e9522adb\"}", "{\"sha\": \"f40d956b5f446adae5cdac5817cd50528f94df74\", \"live\": true, \"id\": \"xd0eb041b3f1eadb4\"}", "{\"sha\": \"bb0f7c222314c8103233e3fe32be0898a4dc1576\", \"live\": true, \"id\": \"x03df13957e082f29\"}", "{\"sha\": \"399ca0d75d8e05b829a0fe7e8f0de3691dccbacc\", \"live\": true, \"id\": \"x41a2b24664baa707\"}", "{\"sha\": \"8e83d539a298a651bc8f022b6af173c48460ddb5\", \"live\": true, \"id\": \"x81e90f052497e7b6\"}", "{\"sha\": \"a8dec73297183ae36bbcb87efd101eacb5364fd0\", \"live\": true, \"id\": \"x919a246312fa8ffe\"}", "{\"sha\": \"420cdd680493166aab94b36181d2ae7ff568f74e\", \"live\": true, \"id\": \"xa8e523d66348ee81\"}", "{\"sha\": \"ada0f0fa08f7882e84112726d391e7fbebc98b0b\", \"live\": true, \"id\": \"xb7d4067d56f5ee65\"}", "{\"sha\": \"e82c629a47dadb3eee498eb10faf18d8a53a2768\", \"live\": true, \"id\": \"x76ccadd9511b8a34\"}", "{\"sha\": \"03d9cc7c6339ac6b09a2538361d215f983adcaf8\", \"live\": true, \"id\": \"xf5908abe95e9fb2d\"}"], "description": "Use square units to cover figures without gaps or overlaps. \u00a0Compare the amount of unit squares that cover two figures.", "basepoints": 10.0, "path": "understanding-area/", "slug": "understanding-area", "kind": "Exercise", "name": "understanding-area", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "understanding-area"}, "multiplying_decimals": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/multiplying_decimals/", "id": "multiplying_decimals", "display_name": "Multiplying decimals 3", "title": "Multiplying decimals 3", "description": "Practice multiplying two numbers that are written to the tenths, hundredths, or thousandths place.", "basepoints": 23.0, "slug": "multiplying_decimals", "kind": "Exercise", "name": "multiplying_decimals", "seconds_per_fast_problem": 24.0, "prerequisites": ["multiplication_4", "multiplying_decimals_1"], "exercise_id": "multiplying_decimals"}, "second-derivative-test": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/concavity-inflection-points/second-derivative-test/", "id": "second-derivative-test", "display_name": "Second derivative test", "title": "Second derivative test", "all_assessment_items": ["{\"sha\": \"266f4c490419d4424141bd9d4e4df5c92af09a72\", \"live\": true, \"id\": \"xf4575e2a21304bc7\"}", "{\"sha\": \"24b706369b43544e0707defadc56b41db96beb08\", \"live\": true, \"id\": \"xa69af410b1f23898\"}", "{\"sha\": \"d5b3b31fd8899a67c5bbbe3cdbae1ece906d2676\", \"live\": true, \"id\": \"x551ec450786b2319\"}", "{\"sha\": \"0fdf7648c8ea429c1d8d2d7a08d26eefa8ee3422\", \"live\": true, \"id\": \"xb14a48aa6ab24e30\"}", "{\"sha\": \"9a3896693427b3580a7abba3fed01d686f1d4a83\", \"live\": true, \"id\": \"x64efc88634763ee8\"}", "{\"sha\": \"a913c5c12b0e661e46e50fc5c22aaa093fc8fcfe\", \"live\": true, \"id\": \"x94d6638afbb9cb1d\"}", "{\"sha\": \"6b2df8d7d522f539e92dfdb2c89f929a551158fc\", \"live\": true, \"id\": \"x504eeb93083c5b51\"}", "{\"sha\": \"97c4d24b5552aa1970feb4ed4ded099a71e1f8f9\", \"live\": true, \"id\": \"xf6acf14c29141770\"}", "{\"sha\": \"2e670bd7d352f1d2118f8e6d6d05bdcc48f68d75\", \"live\": true, \"id\": \"x5bcd1714a4fd7aee\"}", "{\"sha\": \"44aabed640b217c5fc3540b93097119f62aadf86\", \"live\": true, \"id\": \"xcf1cd1239726cad5\"}", "{\"sha\": \"c7dc9b50992f07feebd25e10820420d81e805af8\", \"live\": true, \"id\": \"x1fe61709e4dd2e00\"}", "{\"sha\": \"854100577e20409dd5b15c4342bd549cdd447221\", \"live\": true, \"id\": \"x3de070bd673bcb8f\"}", "{\"sha\": \"2fc435749b6e3bc7b17a9b11d7257db0d1616b44\", \"live\": true, \"id\": \"xb40ad916810abdcb\"}", "{\"sha\": \"a1025d318e235e23afbb41219c95715a40c4946f\", \"live\": true, \"id\": \"x23a5e13e532bd321\"}", "{\"sha\": \"ad7f37aa8156a594c42ab7a5d8d1b8fc5f93925d\", \"live\": true, \"id\": \"xf7fe0d1311b7c789\"}", "{\"sha\": \"8de528c91841ae785579deaaccabb376db660b52\", \"live\": true, \"id\": \"x4bd202c9ceed0a16\"}", "{\"sha\": \"32d979c5c9899a6913d98f360a9e9be6b98ba435\", \"live\": true, \"id\": \"x7b2c8b84459e3583\"}", "{\"sha\": \"a58966b6fca02bc03fd64344fdce462a8b55e1dd\", \"live\": true, \"id\": \"x22d9bf905c2f754f\"}", "{\"sha\": \"035dbec1e4d3484d357a2ba05043f72ada26eae2\", \"live\": true, \"id\": \"x0d4bc4094afe1016\"}", "{\"sha\": \"24ec512df8afb98ff33056b189a54c48e1482353\", \"live\": true, \"id\": \"xd6618a8a3a956d2d\"}", "{\"sha\": \"9e0f2e372202b4cb5a9fbd8df5198708435e254a\", \"live\": true, \"id\": \"xa55ec24370366547\"}", "{\"sha\": \"30b581dbdccf9df9fe5643c226b62af534941e5a\", \"live\": true, \"id\": \"x0c3a76c2fd52b3d2\"}", "{\"sha\": \"07958e3aa4b09e4a99f3b874c779534e0c5b5e82\", \"live\": true, \"id\": \"xd4201a78f801ebd6\"}", "{\"sha\": \"6724325273aa65760d3d87d31ce4e929ddbf7108\", \"live\": true, \"id\": \"x09bdf3b9be873666\"}", "{\"sha\": \"48a7762d62b127c461b4b345fd1f90ff3312b543\", \"live\": true, \"id\": \"x4ac66397e1d5ad35\"}", "{\"sha\": \"a83f2a33a717761edf350f8623fc7f9ce08f91af\", \"live\": true, \"id\": \"x511f2d43cb6efc7b\"}", "{\"sha\": \"b7d6e6bacbe6d501830bd75e0765fca07d37cf26\", \"live\": true, \"id\": \"xf57cb46c9fb1514c\"}", "{\"sha\": \"9529cc31be7bcf29fa4a8eb3f51d96d74c73826f\", \"live\": true, \"id\": \"x1aa9dbf66925382b\"}", "{\"sha\": \"f0fe7fbf539cb06921300c2db32c770239c46246\", \"live\": true, \"id\": \"xcd4ce91a62cb660f\"}", "{\"sha\": \"131acc2b096765493edbc3c142df0ce540d55657\", \"live\": true, \"id\": \"x4bad6fc822c273a9\"}"], "description": "The second derivative test for extrema", "basepoints": 10.0, "slug": "second-derivative-test", "kind": "Exercise", "name": "second-derivative-test", "seconds_per_fast_problem": 4.0, "prerequisites": ["concavity-and-the-second-derivative", "extreme-values-from-graphs"], "exercise_id": "second-derivative-test"}, "vertical_angles_2": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/ang_intro/vertical_angles_2/", "id": "vertical_angles_2", "display_name": "Equation practice with vertical angles", "title": "Equation practice with vertical angles", "description": "", "basepoints": 23.0, "slug": "vertical_angles_2", "kind": "Exercise", "name": "vertical_angles_2", "seconds_per_fast_problem": 25.0, "prerequisites": ["linear_equations_3", "vertical_angles"], "exercise_id": "vertical_angles_2"}, "caesar_cipher_encryption": {"uses_assessment_items": false, "path": "khan/computing/computer-science/cryptography/ciphers/caesar_cipher_encryption/", "id": "caesar_cipher_encryption", "display_name": "Caesar cipher encryption", "title": "Caesar cipher encryption", "description": "", "basepoints": 10.0, "slug": "caesar_cipher_encryption", "kind": "Exercise", "name": "caesar_cipher_encryption", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "caesar_cipher_encryption"}, "matrix_determinant_3x3": {"uses_assessment_items": false, "path": "khan/math/precalculus/precalc-matrices/inverting_matrices/matrix_determinant_3x3/", "id": "matrix_determinant_3x3", "display_name": "Determinant of a 3x3 matrix", "title": "Determinant of a 3x3 matrix", "description": "Find the determinant of a 3x3 matrix", "basepoints": 27.0, "slug": "matrix_determinant_3x3", "kind": "Exercise", "name": "matrix_determinant_3x3", "seconds_per_fast_problem": 44.0, "prerequisites": ["matrix_determinant"], "exercise_id": "matrix_determinant_3x3"}, "surface-and-volume-density-word-problems": {"uses_assessment_items": true, "path": "khan/math/geometry/basic-geometry/volume_tutorial/surface-and-volume-density-word-problems/", "id": "surface-and-volume-density-word-problems", "display_name": "Surface and volume density word problems", "title": "Surface and volume density word problems", "all_assessment_items": ["{\"sha\": \"2fc8ef1f94001be5c2a4f7a094d9ab8d55de66b6\", \"live\": true, \"id\": \"xe6315af95e4b03e0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9a95d6c0820e78f879d88150735a00e45706650f\", \"live\": true, \"id\": \"x77d43f6601fee1a7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4faa9c99ea83ea6dc38ebedbe9c0625447ddf8c1\", \"live\": true, \"id\": \"x944969dba3f0b1f0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fd0f07f49913c44cb201c7938fa8c6cd7b84885e\", \"live\": true, \"id\": \"x10c64e8e690568d0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"04f17d5a39ae5651d606301430db976aecaa7f3f\", \"live\": true, \"id\": \"x346968284812e157\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"74235e6c44d356b166b851575c5e657266c30193\", \"live\": true, \"id\": \"xaa845888315248a8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ed3a1f3b8726bfbe826e40666a83fc074602b122\", \"live\": true, \"id\": \"xcaabd9a4a96b2775\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"028c19d4a7aa3807de4e3760b0f40087cbac8800\", \"live\": true, \"id\": \"x1c935a461c242682\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9486e1f1b64799bd85b875bfaf80b34bae436034\", \"live\": true, \"id\": \"x69394e3b857360e3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"78ee0949871dc3b0a1d5a5759e3202b1021fcb26\", \"live\": true, \"id\": \"x4bc5b0066be57f5b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d037cd949a89d37b8ef7a9f5a182ceb4c375dbd\", \"live\": true, \"id\": \"x85025a1c1d056c11\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"81089cdfb0b9e6550079924a246f96a917a8e96c\", \"live\": true, \"id\": \"xbb91259c2ff3e252\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"633f31a93debcce6c722d5fc9967b3d423b2b809\", \"live\": true, \"id\": \"x239ce741449ba6cb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d50e194c08003b244cd86195b72279949d438310\", \"live\": true, \"id\": \"x7c2853553dc137b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"066f6571f8d054302dc48e586e77ea8ad08cc95e\", \"live\": true, \"id\": \"x2f925ff8a6f57a21\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1955751bd8e8b72073482072ded84506f33d4f40\", \"live\": true, \"id\": \"xcc15803adf19ded8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be94d7a45c98e5302ad8b307bb8943cd28df22a1\", \"live\": true, \"id\": \"xc50f813fd56c22b2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e95de368ee2864271e5aa04ed2bf2c9158788a1\", \"live\": true, \"id\": \"xd568078748709238\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"ef948ef52aa6e54a820eb1b822bb94a155c5e85b\", \"live\": true, \"id\": \"x9dedf8cc317513ab\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d331156d37d41408635dc1e0b3d5ba81b3a0925a\", \"live\": true, \"id\": \"x05f1555925c8256e\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"80aa162f683645f706e88956a0f75fa4895d3d59\", \"live\": true, \"id\": \"x70ad86b163e1ec88\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4a9fa88f7d2f9a3da417e2f109c5bbc7d59dbcd3\", \"live\": true, \"id\": \"x15e99ef887131f34\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5b09f1240a8fde11e3024f3ea89acabedcd434b0\", \"live\": true, \"id\": \"x90a808d6341f4862\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"908bed8e14988f8804ea50e1536948fb8fd56c1c\", \"live\": true, \"id\": \"x0a8937b4e372142a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2bd50d64573e2183c749899d50f2d2608fadeec0\", \"live\": true, \"id\": \"xc6af2938fb80350a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8c04d299ff9abcfff9c0f9288071afe5bf1c54c4\", \"live\": true, \"id\": \"xac98ddcf57a701b7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f4aa8fe4fb492bd2e2258d5854806ccba885d5e6\", \"live\": true, \"id\": \"xbc6ccac3dd5727d9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a7508ac5d604209489808128304379f2ab5196f5\", \"live\": true, \"id\": \"xb1f4e6590a4981b6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bcb0377b3272cc300914e00384da662282bbf899\", \"live\": true, \"id\": \"x840431febea9b822\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8ff6f445af41c4f34073cb12b9859ea0ed3400b3\", \"live\": true, \"id\": \"x96c480d87584c052\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "surface-and-volume-density-word-problems", "kind": "Exercise", "name": "surface-and-volume-density-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["area--volume--and-surface-area", "volume-word-problems-with-cones--cylinders--and-spheres", "comparing-proportional-relationships"], "exercise_id": "surface-and-volume-density-word-problems"}, "circles-and-pythagorean-identities": {"uses_assessment_items": true, "path": "khan/math/trigonometry/less-basic-trigonometry/pythagorean-identity/circles-and-pythagorean-identities/", "id": "circles-and-pythagorean-identities", "display_name": "Circles and Pythagorean identities", "title": "Circles and Pythagorean identities", "all_assessment_items": ["{\"sha\": \"bf5301735cf4d6eb8368d22981d097443bff19e0\", \"live\": true, \"id\": \"x5278b06c7a9a6ecc\"}", "{\"sha\": \"f534d9065ad3faae6a8ba816477d4a0546d54f60\", \"live\": true, \"id\": \"x86a61047a74ec279\"}", "{\"sha\": \"15840cb8091781c31be164f25e6a2618cb59cf07\", \"live\": true, \"id\": \"x587e924c77cc8af2\"}", "{\"sha\": \"a73cf0c6d967aeef6fe7c2b1a6c81d472ef60551\", \"live\": true, \"id\": \"x44c6bc55be976fe5\"}", "{\"sha\": \"dbf02248352452a693c4bb58a7558679bcc2d7b5\", \"live\": true, \"id\": \"x1cae42f099cdb770\"}", "{\"sha\": \"bae5bb5e1cd6b9093ed6607306081f42c60be86e\", \"live\": true, \"id\": \"x45b3cc68b8c4e807\"}", "{\"sha\": \"ad45cd653bf4b912ca9ea43947bbbbeceb302642\", \"live\": true, \"id\": \"x40e2a0b7aced0f2a\"}", "{\"sha\": \"8280632ed3798cc58204a68594a2b044686abf2a\", \"live\": true, \"id\": \"x7377f365426f4c7d\"}", "{\"sha\": \"056531e9bf741db6e40cf4ece0fa4150f7cf5997\", \"live\": true, \"id\": \"x8e1115b00099bc3e\"}", "{\"sha\": \"ec30a958cae3f362d74171be21850e7fed7bfcbc\", \"live\": true, \"id\": \"x9f3670db44ad324b\"}", "{\"sha\": \"df05f68b33d54b56960e86036ab8a8fafc5ba559\", \"live\": true, \"id\": \"x6a02c9974235ac52\"}", "{\"sha\": \"2c96ee02d092d0a5c2eef93d57daf019d39723dd\", \"live\": true, \"id\": \"xe777efaf152f9f83\"}", "{\"sha\": \"f637ef50e844fd78596f697bd3e5fd317dfb152a\", \"live\": true, \"id\": \"x85cb164a9da1d56e\"}", "{\"sha\": \"88ed916fc53359ea7a4bca0109b710508961830a\", \"live\": true, \"id\": \"x51487573174be20a\"}", "{\"sha\": \"5a7c43a09cf55f57daed60f821aa52222e0bf550\", \"live\": true, \"id\": \"xf2aeab2efc493005\"}", "{\"sha\": \"40b0cf8967cc55ca91dd63248e2644665da0146a\", \"live\": true, \"id\": \"xf598242fc8aab552\"}", "{\"sha\": \"4eaf94662eb94825dbd5740af4038304a7837a0b\", \"live\": true, \"id\": \"x1a3991b03159e0b0\"}", "{\"sha\": \"9806281bc63dcbfbcc41bdc51e8cb97a87ce7fb7\", \"live\": true, \"id\": \"xed44197c86f04e76\"}", "{\"sha\": \"1a7d3a72e1ffc886372ad2a78c739279d3ddfb06\", \"live\": true, \"id\": \"x16a515e728cfdde6\"}", "{\"sha\": \"4ba6bde1b8ae4d34506b94eb7e3327686829bb65\", \"live\": true, \"id\": \"x87841a3768088f7a\"}", "{\"sha\": \"ad0852f47809d3599762a598c178ab294b2a2f8a\", \"live\": true, \"id\": \"xde097d9eaa2b2c12\"}", "{\"sha\": \"ec0d7114a88fb001044ba7037e40700dd8ef62bb\", \"live\": true, \"id\": \"xf298efd8bfe9adf1\"}", "{\"sha\": \"42ab4cf568d6f92ad4e93c0189275e37b601f604\", \"live\": true, \"id\": \"x24e45825564a09e3\"}", "{\"sha\": \"84d7bebc39bb414c0390d2c83f42a31538cf1597\", \"live\": true, \"id\": \"xf7b3126283688808\"}", "{\"sha\": \"273ea3d0e42f32236ca91c94439fa7ea3a4ef165\", \"live\": true, \"id\": \"xb16a79569618780b\"}", "{\"sha\": \"cde984ba2370d1338bb232f9ed9e6c20f9b4b468\", \"live\": true, \"id\": \"x9cc679e858c93341\"}", "{\"sha\": \"825dfa9e8932a6492c9f69dd67c3bba0de9fa456\", \"live\": true, \"id\": \"x643d2498a71eb25e\"}"], "description": "", "basepoints": 10.0, "slug": "circles-and-pythagorean-identities", "kind": "Exercise", "name": "circles-and-pythagorean-identities", "seconds_per_fast_problem": 4.0, "prerequisites": ["trigonometric-functions-and-side-ratios-in-right-triangles", "equation_of_a_circle_1", "pythagorean-theorem-and-the-equation-of-a-circle"], "exercise_id": "circles-and-pythagorean-identities"}, "quiz--how-did-life-begin-and-change": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/life/what-is-life/quiz-how-did-life-begin-and-change/", "id": "quiz--how-did-life-begin-and-change", "display_name": "Quiz: How Did Life Begin and Change", "title": "Quiz: How Did Life Begin and Change", "all_assessment_items": ["{\"sha\": \"3f7abc932db5c8bf7bb54a9b004eeb5a319a5b78\", \"live\": true, \"id\": \"xdbad5b6514b1a455\"}", "{\"sha\": \"6c76854844ecfc9f77015b5c8034f626cd582c56\", \"live\": true, \"id\": \"x57e444ae8f910ed2\"}", "{\"sha\": \"ce8ae907fd45756a6bb6018193f9dc8450b65e66\", \"live\": true, \"id\": \"x53def744746022e6\"}", "{\"sha\": \"12bdb7083eb6172c090e92cb167b91c9e7985fd9\", \"live\": true, \"id\": \"x2310aa14e4cc6250\"}", "{\"sha\": \"c207058ab3af02e600d91a574c2691cacc0260aa\", \"live\": true, \"id\": \"x6a4a5187747b8fbc\"}"], "description": "Quiz 5.1", "basepoints": 10.0, "slug": "quiz-how-did-life-begin-and-change", "kind": "Exercise", "name": "quiz--how-did-life-begin-and-change", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--how-did-life-begin-and-change"}, "measuring-lengths-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-measuring-length/measuring-lengths-1/", "id": "measuring-lengths-1", "display_name": "Measuring lengths 1", "title": "Measuring lengths 1", "all_assessment_items": ["{\"sha\": \"6702ecfd4f3f6b36cda419421a125e170a1ad1ee\", \"live\": true, \"id\": \"xe0963f645827bf31\"}", "{\"sha\": \"390718145fad78c5f706ec506939b409b9beac45\", \"live\": true, \"id\": \"x328cfd6e63d0e547\"}", "{\"sha\": \"97acb161113addf05ae2ed0b81dfe9bf3e2d95db\", \"live\": true, \"id\": \"x1c2a36e98b904e45\"}", "{\"sha\": \"36695bae51bc04ab5d40c3ac1d947cdf3e5d8b37\", \"live\": true, \"id\": \"x8021324176dce806\"}", "{\"sha\": \"94053425add9ab10c4e5b8b1099053acfbac03ef\", \"live\": true, \"id\": \"x1821e9f66bd52e8e\"}", "{\"sha\": \"e2c569a66a9f2cc7f5ecbd58c379d39f41066366\", \"live\": true, \"id\": \"x987351f3b68bdd9e\"}", "{\"sha\": \"d7457ea5552640c02c38613dcf6fc8fbafe6a919\", \"live\": true, \"id\": \"x68d00f59a9c3f5ad\"}", "{\"sha\": \"081244f380ff078317473a8425dcecfacb8bbf66\", \"live\": true, \"id\": \"xcfc30a143939b6c3\"}", "{\"sha\": \"e2fb0e7085166ee8f10c5b492075d63c72d33e29\", \"live\": true, \"id\": \"x8f3690f12a10aecf\"}", "{\"sha\": \"44dd2b3fbde35578418d69d7e5c8c30176808f66\", \"live\": true, \"id\": \"xccda37d244089043\"}", "{\"sha\": \"c26c271e9b1c812cf46db700492318e89d92004a\", \"live\": true, \"id\": \"x1f46c88e89d4bce1\"}", "{\"sha\": \"86f06e22598384b3f911e486b4137c455fd9b18e\", \"live\": true, \"id\": \"x5208dc75c755b08d\"}", "{\"sha\": \"c6dedf3a61eb7b9d7b79e38a949ff210c141c3ce\", \"live\": true, \"id\": \"x464bc7b7b0dc9264\"}", "{\"sha\": \"6ae2064fdf6909feaa58acd67100c8b860da79cf\", \"live\": true, \"id\": \"x6ac7f5d36836a014\"}", "{\"sha\": \"89458bfe946ab3e8fa6d12ebf995ac658a90fbe1\", \"live\": true, \"id\": \"x5cc47be2abd80d91\"}", "{\"sha\": \"e9a3ae48d2bcc90a832861baa69e21a96db805af\", \"live\": true, \"id\": \"xf8da997c6694fd36\"}", "{\"sha\": \"d1c08a9a2e3ba648fb42b4e657cbdcea89f789a3\", \"live\": true, \"id\": \"xcd454a4c12640e98\"}", "{\"sha\": \"e8012c01286722835e43dd3002170e39997fd4be\", \"live\": true, \"id\": \"x0f93baee4f3b3877\"}", "{\"sha\": \"00a4f1745cf39a45e66d3e77f232d45b86002a9c\", \"live\": true, \"id\": \"x54efe55e6a1d2103\"}", "{\"sha\": \"043d8eb5bd22ba24f2c4945dc36a49abd9e1b7bd\", \"live\": true, \"id\": \"xffa1eebeb6dc0135\"}"], "description": "Measure objects with same-size length units without gaps or overlaps.", "basepoints": 10.0, "slug": "measuring-lengths-1", "kind": "Exercise", "name": "measuring-lengths-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["order-by-length"], "exercise_id": "measuring-lengths-1"}, "quiz-galaxies": {"uses_assessment_items": true, "id": "quiz-galaxies", "display_name": "Quiz: Galaxies", "title": "Quiz: Galaxies", "all_assessment_items": ["{\"sha\": \"920b78175de35933ba6135df1df01a8a14499b83\", \"live\": true, \"id\": \"x04e142bfe137c247\"}", "{\"sha\": \"eb7bef79cdb2b3f8ad40e8ef91b0537a12e23702\", \"live\": true, \"id\": \"x75751da28dc28ef6\"}", "{\"sha\": \"6341c11fc2352b61ba53bebe79f0b1e52880cddf\", \"live\": true, \"id\": \"xebab2f87905162ba\"}", "{\"sha\": \"339a03f78a061a3f9e0a1e316712fd2dfe5ce959\", \"live\": true, \"id\": \"x5c35b3db60fe5ca3\"}", "{\"sha\": \"0acb1f20c10559904087c52035219bd9fee94a43\", \"live\": true, \"id\": \"x61de3e3aa0d5d862\"}", "{\"sha\": \"e902001c31157e65786b63822c61de54ee2adbb4\", \"live\": true, \"id\": \"x9654bccee713d9ba\"}", "{\"sha\": \"83e15c3e23b6ae55870ef86f52e24c109a2e6dc8\", \"live\": true, \"id\": \"x6abfcde2fd568e96\"}", "{\"sha\": \"26409337a2da78431d6ef0afd9ac22e71012c752\", \"live\": true, \"id\": \"x792924c0a4a698dd\"}", "{\"sha\": \"9d9b91d55f4c915b733edebb05e6e2ae66845cdf\", \"live\": true, \"id\": \"x1875e7245282d03d\"}"], "description": "", "basepoints": 10.0, "path": "quiz-galaxies/", "slug": "quiz-galaxies", "kind": "Exercise", "name": "quiz-galaxies", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-galaxies"}, "calculating-the-mean": {"uses_assessment_items": true, "id": "calculating-the-mean", "display_name": "Calculating the mean", "title": "Calculating the mean", "all_assessment_items": ["{\"sha\": \"eedabe1ebfce1c2284150b4d50cb88dd2d4882b1\", \"live\": true, \"id\": \"x70ce5cc5da1aacd5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f1304aeab56032bc720979438d79f8cd1149aece\", \"live\": true, \"id\": \"xa9e3433e96411cbe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bde0e33e0775aca32b2dd70a24c8f9910f90ecae\", \"live\": true, \"id\": \"x6b7523fe550b90f3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6e6eb14f4f876c005080246bdd53d8373bd160af\", \"live\": true, \"id\": \"xc031ddaa330ff31a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"86392724a4912b8998d616993bcaed9a818e50de\", \"live\": true, \"id\": \"xf99cbec8639f7f13\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"79581bb0e42131196c94e630e5d2527e1f78f9bc\", \"live\": true, \"id\": \"xedf313e72a1bad64\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1273916c3415d8b71c7c8a7358e6bb04b3037e3c\", \"live\": true, \"id\": \"x3f3228fdc1cdcaef\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b8f192894712a9118d652ba20f5cc333cf0ce01f\", \"live\": true, \"id\": \"x84f9950885b34c89\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8dba36fb273556128beb621a4d114ae3f57403c5\", \"live\": true, \"id\": \"xe54cd4000d38fbea\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8351c66f8c1400ffa401a6ad291712ef8442b4e8\", \"live\": true, \"id\": \"x622d330c5a598e7a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a416c792f5100066fcdaf782994287b084666606\", \"live\": true, \"id\": \"xb446f3a762e8c0ed\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3aae8708f26ae3bf9bcd3daf2e99b39a4ec82591\", \"live\": true, \"id\": \"xc35409ed16bd974a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"29403edf0722ad36b075f8630ea596e023a2aeb6\", \"live\": true, \"id\": \"xd60cf8e58072461b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1eeee6e7bad9ffbf2aed99f152f13353e597b885\", \"live\": true, \"id\": \"x8416a27d45b50d3e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d1592213d7a9e79f27ab75ff64def6bdac2aaefc\", \"live\": true, \"id\": \"xeb28d04fb065acce\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71feb3795c6a99a0ee18e6e5872db6b9f6d2ce72\", \"live\": true, \"id\": \"xaf679351630f77de\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65039e0cda2b361b28df8a99567967501127cdcf\", \"live\": true, \"id\": \"x3fcf607ab655194b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"142f9af9fc97be7f59fc0d06e09a8c840199512a\", \"live\": true, \"id\": \"x007a9e7269b4451c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1c0115642b0036416d4e149f75c9e6e7396b6ba6\", \"live\": true, \"id\": \"xb496373e084793ba\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"25d4c6fcc0421f203ba453f82df30e9ac95d7204\", \"live\": true, \"id\": \"x0496e22bdd80ceab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"521c7c085488af2478068c2bfb3ec17f03cde1e3\", \"live\": true, \"id\": \"xd2d9a51e12903c5e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1ab7734a2cfd408b4e30b46834f3afc0b20b779f\", \"live\": true, \"id\": \"x3f47a2b3c0c0500f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8873dd189d73fb7dbf6c7d7eaf03125d50dfde77\", \"live\": true, \"id\": \"x95e209d4c7f19f65\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b360316451eaa70bc83d0cb1d71aad6d5dca027\", \"live\": true, \"id\": \"x6c3e0372cc0b8c8c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"922007a7c5033b0123d696d23253ac1baea62011\", \"live\": true, \"id\": \"x36f21f7e27e1b3a9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7cd8dd5a8c57a52d67a6a6cfe15c19f0809b460a\", \"live\": true, \"id\": \"xfa4bbcf908835f7d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5ca8f13f653705a8e701c4f210c068903a7bb106\", \"live\": true, \"id\": \"xd3e9e6cd7efddbf2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"17187b417627233ba2e7390aa6fc8dca0599ac93\", \"live\": true, \"id\": \"x757e47116fd4b514\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"64b6d5dc8f9968fcff7d351714db5680577c420f\", \"live\": true, \"id\": \"xf71bd3b6b8a80244\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d325e06334ed780551c1540e3f921ff3dde16b6d\", \"live\": true, \"id\": \"x99e59826b21c8027\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8d958cea5a34cddc58b921b578b57e344fb4ac3\", \"live\": true, \"id\": \"x289de511b60d672b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e91230385462ca980c884c09e4fc1b5542a720a\", \"live\": true, \"id\": \"x62b411358acdb27f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice calculating the mean (average) of a data set. The mean gives us a sense of the middle, or center, of the data.", "basepoints": 10.0, "path": "calculating-the-mean/", "slug": "calculating-the-mean", "kind": "Exercise", "name": "calculating-the-mean", "seconds_per_fast_problem": 4.0, "prerequisites": ["intro-to-simple-data"], "exercise_id": "calculating-the-mean"}, "equation_of_an_ellipse": {"uses_assessment_items": false, "path": "khan/partner-content/nasa/measuringuniverse/orbital-mechanics/equation_of_an_ellipse/", "id": "equation_of_an_ellipse", "display_name": "Equation of an ellipse", "title": "Equation of an ellipse", "description": "Find the center and major and minor radius of an ellipse given its equation.", "basepoints": 17.0, "slug": "equation_of_an_ellipse", "kind": "Exercise", "name": "equation_of_an_ellipse", "seconds_per_fast_problem": 11.0, "prerequisites": ["equation_of_a_circle_1"], "exercise_id": "equation_of_an_ellipse"}, "comparing-numbers-within-1000": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-three-digit-compare/comparing-numbers-within-1000/", "id": "comparing-numbers-within-1000", "display_name": "Comparing three-digit numbers", "title": "Comparing three-digit numbers", "all_assessment_items": ["{\"sha\": \"efdef55c5d012858f3f8cb1ec17bc9e5c38bcf60\", \"live\": true, \"id\": \"xd4ef86b57587a7f1\"}", "{\"sha\": \"8e158f989a4a2f29173a68413402c78c7f2ef617\", \"live\": true, \"id\": \"xbaa920b87765da9a\"}", "{\"sha\": \"f6fba8627624b0d8abef29e941fb5131bb1d0e46\", \"live\": true, \"id\": \"x55fd6c440ebc6231\"}", "{\"sha\": \"47c198138ba96bb2c5b1b64ead73b3ccc75df24b\", \"live\": true, \"id\": \"xaa040710dc042c86\"}", "{\"sha\": \"26b6f578135c3ff7725e4ef5216d53483610b897\", \"live\": true, \"id\": \"x416b0d7b835f5a07\"}", "{\"sha\": \"26568f4b1124923f515695e9c49d82f4b39de803\", \"live\": true, \"id\": \"xc795f0966cb07e5b\"}", "{\"sha\": \"c8d6185a154c82d876078c754671eff8acf03541\", \"live\": true, \"id\": \"x08a14e4eac962c94\"}", "{\"sha\": \"51d3a65b1dc6a6fa95a53bd86491327caeb375f3\", \"live\": true, \"id\": \"x5e3086028c17f811\"}", "{\"sha\": \"df012bc994076e5e7ccd2249d5f8aa22f2574d3c\", \"live\": true, \"id\": \"x39a4fd96fe8cbcbb\"}", "{\"sha\": \"dad930b53b93f854967e5f50de544f2ffa73f154\", \"live\": true, \"id\": \"xe4311638f1a876f2\"}", "{\"sha\": \"98a470e126034356a9cc427e33f7ee42f88772b8\", \"live\": true, \"id\": \"xe31728cbdfc1e6fd\"}", "{\"sha\": \"0b2dd7817649d781123be9e3f05320d53ba787f4\", \"live\": true, \"id\": \"x7ec5f799c855fa37\"}", "{\"sha\": \"22a96aff4c250161b2ac4c80587ffa6fe1355b4b\", \"live\": true, \"id\": \"xf652d037f32f056c\"}", "{\"sha\": \"82880435a96d1d1eca1319611aad1aa69f88988d\", \"live\": true, \"id\": \"x56137b1e6b9c9692\"}", "{\"sha\": \"74d1430f4c38163af0fc5f294aa0a3a4b7503cc2\", \"live\": true, \"id\": \"x988b44387d1acfdf\"}", "{\"sha\": \"7f836059d33774ad16ef4a3f4b7f436f01574a1e\", \"live\": true, \"id\": \"x41e261d2e6269673\"}", "{\"sha\": \"45e4285e961ef674e48cb8ab3f5f9320a399a3e2\", \"live\": true, \"id\": \"xb438f245aa7a47bf\"}", "{\"sha\": \"029f3ae3657d0dc45e7c1811a121d31e0c268d43\", \"live\": true, \"id\": \"xe79db9dfa623cc3a\"}", "{\"sha\": \"1bb7e31f4d03729e22261b6d3bf87abd9a05dd4c\", \"live\": true, \"id\": \"x966c9a3c0fbe98f5\"}", "{\"sha\": \"9d575b870d7777db8e8be705fca64a5ca9410422\", \"live\": true, \"id\": \"x4cdc73a526ec4898\"}"], "description": "Practice more challenging problems comparing numbers within 1000.", "basepoints": 10.0, "slug": "comparing-numbers-within-1000", "kind": "Exercise", "name": "comparing-numbers-within-1000", "seconds_per_fast_problem": 4.0, "prerequisites": ["writing-numbers-to-1000"], "exercise_id": "comparing-numbers-within-1000"}, "wilton-diptych-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/gothic1/wilton-diptych-quiz/", "id": "wilton-diptych-quiz", "display_name": "Wilton Diptych (quiz)", "title": "Wilton Diptych (quiz)", "all_assessment_items": ["{\"sha\": \"36265cc2dca72a7c662e2cf7e57c9d8d6c235176\", \"live\": true, \"id\": \"x319721b5b924e2b4\"}", "{\"sha\": \"4ff673d76ca52ded1ee86c5f0bf80aa58512467a\", \"live\": true, \"id\": \"x66d6717de43bdc6b\"}", "{\"sha\": \"cf372207cce70e47373f678f1488a5ac49ff4035\", \"live\": true, \"id\": \"x2286347dc4162e35\"}", "{\"sha\": \"fcdd8501fe71ecae14b9e08707828cc71dd985f3\", \"live\": true, \"id\": \"x4ca157fc9066db7a\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "wilton-diptych-quiz", "kind": "Exercise", "name": "wilton-diptych-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "wilton-diptych-quiz"}, "quiz--what-is-dom": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css-js/js-and-the-dom/quiz-what-is-dom/", "id": "quiz--what-is-dom", "display_name": "Quiz: What is DOM?", "title": "Quiz: What is DOM?", "all_assessment_items": ["{\"sha\": \"ca6dcf663e506d94a3d6581c995c149e5904738c\", \"live\": true, \"id\": \"x240cc72ac4d4d153\", \"perseus_api_major_version\": 0}", "{\"sha\": \"129275b3c52962cdeb5f90800f36f3014c570b9a\", \"live\": true, \"id\": \"x91fd27ea6a000e13\", \"perseus_api_major_version\": 0}", "{\"sha\": \"50e8a350bc14e8867d0a8d2932f73c70f60eb5b2\", \"live\": true, \"id\": \"x6b94fad3f21670ab\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a3a0effb4645ddcd1e45a7f104eb775f3ad97443\", \"live\": true, \"id\": \"x7977a7d89daf0069\", \"perseus_api_major_version\": null}"], "description": "Check if you understood our quick intro to the DOM.", "basepoints": 10.0, "slug": "quiz-what-is-dom", "kind": "Exercise", "name": "quiz--what-is-dom", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--what-is-dom"}, "reading_bar_charts_3": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/reading_bar_charts_3/", "id": "reading_bar_charts_3", "display_name": "Reading bar charts 3", "title": "Reading bar charts 3", "description": "", "basepoints": 20.0, "slug": "reading_bar_charts_3", "kind": "Exercise", "name": "reading_bar_charts_3", "seconds_per_fast_problem": 16.0, "prerequisites": ["reading_bar_charts_2", "mean_median_and_mode"], "exercise_id": "reading_bar_charts_3"}, "reading_bar_charts_2": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/reading_bar_charts_2/", "id": "reading_bar_charts_2", "display_name": "Reading bar charts 2", "title": "Reading bar charts 2", "description": "Read and interpret a double bar graphs.", "basepoints": 18.0, "slug": "reading_bar_charts_2", "kind": "Exercise", "name": "reading_bar_charts_2", "seconds_per_fast_problem": 13.0, "prerequisites": ["reading_bar_charts_1"], "exercise_id": "reading_bar_charts_2"}, "reading_bar_charts_1": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/reading_bar_charts_1/", "id": "reading_bar_charts_1", "display_name": "Reading bar charts 1", "title": "Reading bar charts 1", "description": "Read and interpret a bar graph.", "basepoints": 13.0, "slug": "reading_bar_charts_1", "kind": "Exercise", "name": "reading_bar_charts_1", "seconds_per_fast_problem": 6.0, "prerequisites": ["creating_bar_charts_1"], "exercise_id": "reading_bar_charts_1"}, "intercepts-from-table": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/x-and-y-intercepts/intercepts-from-table/", "id": "intercepts-from-table", "display_name": "Intercepts from a table", "title": "Intercepts from a table", "all_assessment_items": ["{\"sha\": \"36ae585c8f21039f61c30618239f86ff81106f14\", \"live\": true, \"id\": \"xfb0d251607d51e9e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f06644d26f80d4d28d1759fec1db0e1f0c57b85d\", \"live\": true, \"id\": \"x7fd45b4f88df882f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"14aab66980a0a644d4646f6eaf438a5ee868097d\", \"live\": true, \"id\": \"x1fd2b85cfe4a6bc7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e1a74cb9a3eebc8e60aa676699be8022836924d2\", \"live\": true, \"id\": \"x1627060df9aee676\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4561c9a06ed2d2804202a75207a0becaf41c83f7\", \"live\": true, \"id\": \"x29f97fdb630659da\", \"perseus_api_major_version\": 0}", "{\"sha\": \"de1a82f576ad386dbec6013b77df80aefa0de6e4\", \"live\": true, \"id\": \"x924d52abb4234dfd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3c9f4e9b657d3724fa282feafb218dbc2f6a57c6\", \"live\": true, \"id\": \"xa92a5a1b3fd2b988\", \"perseus_api_major_version\": 0}", "{\"sha\": \"429fd37b2c9b23d3891ef808a099f3d59e591f14\", \"live\": true, \"id\": \"x6a555340c5ff6327\", \"perseus_api_major_version\": 0}", "{\"sha\": \"709939eaef617c1b4fea5aa5819914e757806d8d\", \"live\": true, \"id\": \"x7f662a45401269f9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"be183f005d888b9a0c0b1fd217ebdaf8c6166cf6\", \"live\": true, \"id\": \"x9455874764fb333d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a4433d6e630ce363efeb152c21a6511ea81d8a67\", \"live\": true, \"id\": \"xae6808903d22a898\", \"perseus_api_major_version\": 0}", "{\"sha\": \"cabcfe23a93333a6d4ea11ab7f8364c66f7fbf0f\", \"live\": true, \"id\": \"x6d3f6805ef6845ca\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1683cdd7a6de875707f01ed32fdabfe0ca2c8b56\", \"live\": true, \"id\": \"x5e60587d37b6e0dd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f8487986b7d88758e12cdeef3ee95ba8fc3c4771\", \"live\": true, \"id\": \"xcf4d5d4bf37ab70c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"681c2dd58f65552b4f686d37173a40420279471b\", \"live\": true, \"id\": \"x0e1afadd16921f52\", \"perseus_api_major_version\": 0}", "{\"sha\": \"33c21c10f652e9a687bed8e35e5026cbab3c5ff9\", \"live\": true, \"id\": \"xeb368d08e2b405be\", \"perseus_api_major_version\": 0}", "{\"sha\": \"47d199c8d3cfd67374110102773aa466485c310f\", \"live\": true, \"id\": \"xea6903c77679785a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1f3c68afd5d36f87a44121d5e3f19ef716b4f2bd\", \"live\": true, \"id\": \"x13ac56d582c2fa1f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e9ba8e14ffff4baf3bff4cde47e70fedf69f8b6f\", \"live\": true, \"id\": \"x957d75a74f658fea\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e46b3a56a3bfc6792f08f56593142f363fc2a5b0\", \"live\": true, \"id\": \"x2d9e5274c0f237a4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"af2055b5d262aeb2e9661d2cce677fa5a1b2a43d\", \"live\": true, \"id\": \"x3d339e4149fe263d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7d27a4cc89fa6584f2fd84c3542525347b8c6710\", \"live\": true, \"id\": \"xab4b164e2c0d3825\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a01218c974ca23730f75b4b37a3c74fe454b7453\", \"live\": true, \"id\": \"x845af34ef8dc4984\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3cca0fd033dddf8136f4c2329c128c411a2d5f43\", \"live\": true, \"id\": \"xf650c3dc65aa9f7b\", \"perseus_api_major_version\": 0}"], "description": "Find the intercepts of a line given a table of values.", "basepoints": 10.0, "slug": "intercepts-from-table", "kind": "Exercise", "name": "intercepts-from-table", "seconds_per_fast_problem": 4.0, "prerequisites": ["linear-function-intercepts", "analyzing-and-identifying-proportional-relationships"], "exercise_id": "intercepts-from-table"}, "test-your-knowledge-of-local-threats-to-biodiversity": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-threatened/local-threats-to-biodiversity/test-your-knowledge-of-local-threats-to-biodiversity/", "id": "test-your-knowledge-of-local-threats-to-biodiversity", "display_name": "Test your knowledge: local threats to biodiversity", "title": "Test your knowledge: local threats to biodiversity", "all_assessment_items": ["{\"sha\": \"3dab10c58a5aeb078f0dea481e5a0de802b4f31b\", \"live\": true, \"id\": \"xc4a7c601f336bb42\"}", "{\"sha\": \"f6679b69b5406f0e63ccd46fa31044fd659b5b83\", \"live\": true, \"id\": \"xc6e09281f14b9d9a\"}", "{\"sha\": \"3a7d9d16e7103b941419c15c25a0937fc0242eec\", \"live\": true, \"id\": \"x9f1c7a5bf93c8c3d\"}", "{\"sha\": \"efd6cb11b5c15daee6aaafc85324160be78fde0d\", \"live\": true, \"id\": \"x8b9de3af206dd7ac\"}", "{\"sha\": \"e90be4dc706e2e1789bf2d711b436fcb018ef8a1\", \"live\": true, \"id\": \"xf61dd2359a25f8bd\"}", "{\"sha\": \"e9fb1928c5726edf61bd1fc0fbddb97cb502766f\", \"live\": true, \"id\": \"xa5db1236b090626e\"}", "{\"sha\": \"743ac61dc0cf9a8bf8eeb2e4445f62f089a31130\", \"live\": true, \"id\": \"xcb0602e0f8af7e9f\"}", "{\"sha\": \"e4e90c085c94c22ad036dced101d36b12ae1e6da\", \"live\": true, \"id\": \"xf676f06f3b3cceb1\"}", "{\"sha\": \"5ed690b1ff2db36a9da72648d1621271a7ac1c06\", \"live\": true, \"id\": \"x767c1d79ad7b5546\"}", "{\"sha\": \"8f1db0ee73df65fdeafaf80300ba243ddee35661\", \"live\": true, \"id\": \"x91a8c1522f12f39c\"}", "{\"sha\": \"6d48eb72ca6485ad71c12f8dcda74cf41bbb5803\", \"live\": true, \"id\": \"x4de2016c38acc735\"}", "{\"sha\": \"b2d98e95fae1886e5731f3ee31160d4041dc139f\", \"live\": true, \"id\": \"x4c0445b96df9f70c\"}", "{\"sha\": \"f2263199270fc87216a38988216e2043e5c9396c\", \"live\": true, \"id\": \"xc5d92c7b08fc2b1a\"}"], "description": "Test your knowledge of local threats to biodiversity", "basepoints": 10.0, "slug": "test-your-knowledge-of-local-threats-to-biodiversity", "kind": "Exercise", "name": "test-your-knowledge-of-local-threats-to-biodiversity", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge-of-local-threats-to-biodiversity"}, "linear-equation-world-problems-2": {"uses_assessment_items": true, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/linear-equation-word-problems-tu/linear-equation-world-problems-2/", "id": "linear-equation-world-problems-2", "display_name": "Linear equation word problems", "title": "Linear equation word problems", "all_assessment_items": ["{\"sha\": \"3ae0c2bde414ffaeb56adc16c59a4bdbd3a2ac85\", \"live\": true, \"id\": \"x00b8ed76232e2dd6\"}", "{\"sha\": \"c8aeb624806684abdb7a89e70b551ffb0af94f17\", \"live\": true, \"id\": \"xfc238869\"}", "{\"sha\": \"84d71c2178d71f9a61eb07f87e0d1e1c4f7c4aa7\", \"live\": true, \"id\": \"x050b1dd8\"}", "{\"sha\": \"581d15866c319a94491c5c6bfa916bf0478a406d\", \"live\": true, \"id\": \"xa0548748\"}", "{\"sha\": \"7661d04461d8fecb5313e8bc7660e67dd628f957\", \"live\": true, \"id\": \"x2fe10991\"}", "{\"sha\": \"a090da046cc0ef53fbe649c4ca1045adc7ad46cc\", \"live\": true, \"id\": \"xe1392d64\"}", "{\"sha\": \"4cf71eaa8d2f2618ebe1c9bc80e507a53fd1e327\", \"live\": true, \"id\": \"x193cfc04\"}", "{\"sha\": \"74ac6711dc0e1519db5f82997c550679a41d8fa6\", \"live\": true, \"id\": \"x9f32a1fc\"}", "{\"sha\": \"e2174fdfd6863e8a1531a8fae63e1c35c06b49d3\", \"live\": true, \"id\": \"xe3d45a2f\"}", "{\"sha\": \"63d2a1b6143716bf34efb964eb42cfdabd7d3d29\", \"live\": true, \"id\": \"x6f5aabed\"}", "{\"sha\": \"bf42269def27a160e1a841b2237e81a27645b90f\", \"live\": true, \"id\": \"x92484a90\"}", "{\"sha\": \"f2bce098ebd05f175fe46f1ed5f38609ea3a772c\", \"live\": true, \"id\": \"xbee5e5c1039842f5\"}", "{\"sha\": \"5f6d304fe42b3aa170bf40c908f4aaa804fb37f1\", \"live\": true, \"id\": \"x186520bdddfb111c\"}", "{\"sha\": \"54155730e39eb86b7c673d2c17a1a1f183da536a\", \"live\": true, \"id\": \"x32a1aa7dccc42ca1\"}", "{\"sha\": \"ec9be55305f6e6f63a9484f59252034717f58d1f\", \"live\": true, \"id\": \"x64bc96fd74031b07\"}", "{\"sha\": \"0d4952edd5d1be603e1b90dd7c467e45fc9d6317\", \"live\": true, \"id\": \"xe5dbdbf63fe3b927\"}", "{\"sha\": \"478c6250db0432a6302fddc662f8ae753a7d45d0\", \"live\": true, \"id\": \"xf602a46bfcbc55c8\"}", "{\"sha\": \"636c96402534a3a9e83fa6b24702ec2ce8b33c3e\", \"live\": true, \"id\": \"x0a3d4a95c8c9a604\"}"], "description": "Practice writing equations to model real-world situations, then solve the equations to answer interesting questions about the situations.", "basepoints": 26.0, "slug": "linear-equation-world-problems-2", "kind": "Exercise", "name": "linear-equation-world-problems-2", "seconds_per_fast_problem": 39.0, "prerequisites": ["linear_equations_2"], "exercise_id": "linear-equation-world-problems-2"}, "romanticism-in-the-united-states": {"uses_assessment_items": true, "path": "khan/humanities/art-americas/us-art-19c/romanticism-us/romanticism-in-the-united-states/", "id": "romanticism-in-the-united-states", "display_name": "Romanticism in the United States", "title": "Romanticism in the United States", "all_assessment_items": ["{\"sha\": \"b62a1f0fdecd7461f1700f7e4a322cb7bdc28012\", \"live\": true, \"id\": \"x166e344c0ef56caf\"}", "{\"sha\": \"0520ba4ee6057cd4c1607c5388ebd25bca984105\", \"live\": true, \"id\": \"x3fa5457aeae4e91b\"}", "{\"sha\": \"62ebf787ea7e29462d6c5c01fa33be32e037c2c9\", \"live\": true, \"id\": \"x10b8b06a0d72c297\"}", "{\"sha\": \"886bc5e79907907a6b0a1de67974a943d6ee240f\", \"live\": true, \"id\": \"xd20bbed940baf8a6\"}", "{\"sha\": \"439d8231594eb740c5dfbd451965ac9fb189e382\", \"live\": true, \"id\": \"xeae8640cd306fd29\"}", "{\"sha\": \"3d6e2288c81f538d91a48c10839dd5baf50a25f9\", \"live\": true, \"id\": \"x6a329bc03c79848f\"}", "{\"sha\": \"93609b942f494162b3b698be74c1fb9a0a37d64d\", \"live\": true, \"id\": \"xb4219d59a9378f33\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "romanticism-in-the-united-states", "kind": "Exercise", "name": "romanticism-in-the-united-states", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "romanticism-in-the-united-states"}, "recognize-maxima-and-minima": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/analyzing_function_graphs/recognize-maxima-and-minima/", "id": "recognize-maxima-and-minima", "display_name": "Recognizing maxima and minima", "title": "Recognizing maxima and minima", "all_assessment_items": ["{\"sha\": \"f94c6c7286def002dccf4cd13d5be5c10978f379\", \"live\": true, \"id\": \"xaae5d2a019f5e542\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db5ff75f42dc5e4a8e1e77a8e19e20870dcb5d1e\", \"live\": true, \"id\": \"xb0463bcda82abed9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d0a4473e3473218575fbbcc029cdd3798fa38d4\", \"live\": true, \"id\": \"xe0453e344197397d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e985fb35354bd2e4013ff9950c08534ff3b3846c\", \"live\": true, \"id\": \"xfdc3747b5a3241f8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"beadaf44a817f0d5b57142f91b5e52720f58ed0a\", \"live\": true, \"id\": \"xf56532dc89303e09\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a41633de9a3e318a8825b96bae8ca136e541c229\", \"live\": true, \"id\": \"x562b99f2d920da45\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0b9feb202453a2868b009e4b6da290f83b3e56a7\", \"live\": true, \"id\": \"xe8cae57b2fa555dc\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a78b3f0699344a285dbec245298a05b205c59e64\", \"live\": true, \"id\": \"xfb44dde1e0c0f6dc\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eff6c50c3d5c9d1aeffa6f8079931baa4d35df0d\", \"live\": true, \"id\": \"x4d3a7ca008a0b3c9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"139591733bad30ad82c7e2b2c272be0b7063a208\", \"live\": true, \"id\": \"x18a4d326af9a58bd\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6cd42d09f6686b1372767fb3f62a947230e5e123\", \"live\": true, \"id\": \"x4096c388464bbc28\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e3eb8b9bf83123ff9f9ec74ffa51330025056b4\", \"live\": true, \"id\": \"x01ac573237e922c2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ab9749147551c5aa2f8b577e3703dac96e2e4336\", \"live\": true, \"id\": \"xf4aa05978a3c789a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"852c0a8184a88d9620ca64db0c760bf2cd3d36dc\", \"live\": true, \"id\": \"xde3d0c3d0fb4d69d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b29badc8e72a1ee9c7e1b0e2a8341ca39c4e2536\", \"live\": true, \"id\": \"xb4250d2d559e0e2c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f9bc88fd52b476f1998653aed5084dc9b2dc9a73\", \"live\": true, \"id\": \"x7b9f1684ba26f091\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0f2a3d50538b2a83a880d59f6ebd1702bc3d69c0\", \"live\": true, \"id\": \"x96430921ac69b51f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bc2fb8a46a432dd6c96a472498ca39fb08f086c2\", \"live\": true, \"id\": \"x11a38679c70eae11\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"93db57592cc58240cb931e262498607e6e3a7952\", \"live\": true, \"id\": \"xf43a938860959fcd\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fd575111e3400e2669a76a74107522307fce8395\", \"live\": true, \"id\": \"x83069ab0be58e411\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4928f1ef0519ad706fe9ca867d3ad25077e2f7b1\", \"live\": true, \"id\": \"x7c746b4b04fc4512\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9eb3ac00dffa299ca8d3b8c69b683927f483c724\", \"live\": true, \"id\": \"xfcf64fb2cee1e90e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b52442bc8ab24d0c4525d2e66d89c0402681c571\", \"live\": true, \"id\": \"x661dfcdd3e8aa273\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d60bab15b0ac1487a8d16baafa84bb19499fdab\", \"live\": true, \"id\": \"x5edd15c031d2a1d1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d37764d80d80eb0fdd33914aff056df5c8fe381a\", \"live\": true, \"id\": \"xa04ba062d61bd746\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"72241866f17f5facd2f781d4c3508d9534381996\", \"live\": true, \"id\": \"xe72cd5d4de48e43b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"885fdf4a771afc25f5951e4b68672f62f44e39c2\", \"live\": true, \"id\": \"xfac1d105bef7bd07\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e7613acec09098101d2ddf835bfe33c30fd151d\", \"live\": true, \"id\": \"xa7ada1188594c3da\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3ca2b032ed392e879f3b8723bf21eb60337286d0\", \"live\": true, \"id\": \"x13d1453465fe8f36\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b7652d2b27fd35f69234f8157aca2214513d0ba4\", \"live\": true, \"id\": \"x9d612b20ce642561\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Recognizing maximum and minimum points in graphs of functions", "basepoints": 10.0, "slug": "recognize-maxima-and-minima", "kind": "Exercise", "name": "recognize-maxima-and-minima", "seconds_per_fast_problem": 4.0, "prerequisites": ["domain_and_range_0.5"], "exercise_id": "recognize-maxima-and-minima"}, "surrealism--quiz": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/art-between-wars/surrealism1/surrealism-quiz/", "id": "surrealism--quiz", "display_name": "Surrealism (quiz)", "title": "Surrealism (quiz)", "all_assessment_items": ["{\"sha\": \"9540ce60d22c65445c41e9ecdcc6744d95df6222\", \"live\": true, \"id\": \"x1b67d6a3283f14e6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2dbb003a5d6ef9485385a0e0e0248a962b44c3d3\", \"live\": true, \"id\": \"x1bf3c4b1062e3371\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8c53223b92dea1908335e62967e1aa40e131f46\", \"live\": true, \"id\": \"x872070df9a99e6f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c521f83f920599100e04b04d28decaa81b1869c5\", \"live\": true, \"id\": \"x499997713bcccd49\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"699f64afe88daf8a19293ee6044e25054a3cb6c6\", \"live\": true, \"id\": \"xc3d5ed554a6f2efa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "surrealism-quiz", "kind": "Exercise", "name": "surrealism--quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "surrealism--quiz"}, "expected-value-with-calculated-probabilities": {"uses_assessment_items": true, "path": "khan/math/probability/random-variables-topic/expected-value/expected-value-with-calculated-probabilities/", "id": "expected-value-with-calculated-probabilities", "display_name": "Expected value with calculated probabilities", "title": "Expected value with calculated probabilities", "all_assessment_items": ["{\"sha\": \"ac10a86de1ecc2c2f130265221f8d104fbe9e39b\", \"live\": true, \"id\": \"xf2fe96a395474084\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"ee5296e592ab488a61ffdf1f8670974dc47899dd\", \"live\": true, \"id\": \"x2bccb70562aec11f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2dc371769cba734903427656c184a6626a5bddc2\", \"live\": true, \"id\": \"xefc66fc575e588dc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"113ef4fdcfff4013030d3c62d95b3e129231d6d3\", \"live\": true, \"id\": \"xcff7d627be78d6ca\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"50cf0be613dae6055151e24cf5539ab0c3181b8b\", \"live\": true, \"id\": \"x32885ebcc5d0f4cc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"987db1fb1cbd15d3db42e82807969b84493a5d2d\", \"live\": true, \"id\": \"x3d06c7a14f1d09e1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be38b920c0b8db8b2786b70a85eb1796feef7559\", \"live\": true, \"id\": \"x1dd296e8cdbb17ab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"27d60e227fa11842febc2ee5a070eea52d28f367\", \"live\": true, \"id\": \"x78200efa7d31cb0e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f61676c84c62ad65548fe1237cb0c18406a8179d\", \"live\": true, \"id\": \"x8a1b9a3e349ea3fd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7fc944a200e9ea0fbd3a06b742e437e822d39e52\", \"live\": true, \"id\": \"x53b2fe5043b5ddb4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"973af4d97e7730b6097165da4d7174d90e64cdcd\", \"live\": true, \"id\": \"xd3531ee09e6329b4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0cc6187e18c2c5442c419b5a52c6c7b05bf6e66e\", \"live\": true, \"id\": \"xc598766a133e2ddd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a4cc81c4ec0af8682a7cf0f3921172fb62dc0eec\", \"live\": true, \"id\": \"xf10024ccda27c588\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0584932239781c63dd775572b1e037c47b35f3a9\", \"live\": true, \"id\": \"x6227818e8d07b9be\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"534b665bb316db14b0a631af600b93f0ab354ed0\", \"live\": true, \"id\": \"x9ce18c9e3049001c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db7298fbca1b7d01d602cc9bd2d2f1dbf413cc47\", \"live\": true, \"id\": \"x7cf3e059db169377\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"77c8ed88a20513944646b5f984492e8ac2c68393\", \"live\": true, \"id\": \"xf0795d3205e13afc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bb2d6c0fbd48c9b3b78c56532665169a75dc5e76\", \"live\": true, \"id\": \"x639050be813b0610\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"940d9e4953ac42bd1b4ab4106a445d54f3d1835c\", \"live\": true, \"id\": \"x87a41ec42daea46f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"24edb614fbfe054967c16f1ea04a07445892e660\", \"live\": true, \"id\": \"x3fd1b652f33f2369\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"26861cf44abef6a8c5eac8185b3a9aef3f5fde97\", \"live\": true, \"id\": \"x0b4ea6cd536ff8bd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"25a6577a8f5ef78c412ad1ab22f4889de84386bc\", \"live\": true, \"id\": \"x6fb68f2c7d8de699\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0e3c76b68708aaf9ea3d18b453b5e1e064a8b2ae\", \"live\": true, \"id\": \"xf30ddcc39e1aba17\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0af1fd1848ffe41c50d957edc0d05a8dcf461307\", \"live\": true, \"id\": \"x947edee6cee9c700\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d0c97369255370b85a12a5eba17d7292243a33b8\", \"live\": true, \"id\": \"xbf47c285eae5cfa9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"708d3b35d316c7eda5b4b971735aab84d3d08f58\", \"live\": true, \"id\": \"x94398b48aed6f0bf\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b4d00ed2ccdb4e5d18930bd5310712759fce58a\", \"live\": true, \"id\": \"x5f6e0da635790481\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b8858c4c0b7c9d17d0f4e6ca52e1ba43f3cd860\", \"live\": true, \"id\": \"x02d3d51cd4d21796\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "expected-value-with-calculated-probabilities", "kind": "Exercise", "name": "expected-value-with-calculated-probabilities", "seconds_per_fast_problem": 4.0, "prerequisites": ["expected-value-with-empirical-probabilities", "probability_with_perm_comb"], "exercise_id": "expected-value-with-calculated-probabilities"}, "rate_problems_0.5": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-ratios-rates-percentages/rate_problems_05/", "id": "rate_problems_0.5", "display_name": "Basic rate problems", "title": "Basic rate problems", "all_assessment_items": ["{\"sha\": \"ddfa242f4e6d95c01357f2c702c10e7e453a1385\", \"live\": true, \"id\": \"x6476bf48\"}", "{\"sha\": \"41d4fee2f8a5671c3b330fb915014d7e7a79bbda\", \"live\": true, \"id\": \"x0911fa6f\"}", "{\"sha\": \"c862154adaff23588b5df7eda0a3ddf727d9930c\", \"live\": true, \"id\": \"x2412757d\"}", "{\"sha\": \"a1d020f5fb02d0e929cf019417a386d411ca7567\", \"live\": true, \"id\": \"xa00f9f91\"}", "{\"sha\": \"3f71c130f5136b175eee210588571e3c1406b320\", \"live\": true, \"id\": \"xa90f2f56\"}", "{\"sha\": \"3bef95750109f44f9cfbb84536b128789cfc86e0\", \"live\": true, \"id\": \"x97e0d919\"}", "{\"sha\": \"3e8addbc27a051dcc1790236b39fc906b0f81040\", \"live\": true, \"id\": \"x383e83bd2d5a9d1c\"}", "{\"sha\": \"17a46275405537b4d2b68d62ad8f5a46bd459809\", \"live\": true, \"id\": \"x9657505a0bd1bc0a\"}", "{\"sha\": \"a07fa1889733680f02eac04b7a8cc94fb054730b\", \"live\": true, \"id\": \"x949c986cbd1554aa\"}", "{\"sha\": \"28349a8afdefa3d5bf8a581fe4a1cf79cae00aae\", \"live\": true, \"id\": \"xf63503b6ccca84ec\"}", "{\"sha\": \"1f981d388652bb6fc527f605b3d102cf32af8d60\", \"live\": true, \"id\": \"x3fb60ece\"}", "{\"sha\": \"c4d18e46739ae882ae793ca17450e4c79c1d8f38\", \"live\": true, \"id\": \"xbed0a2bf\"}", "{\"sha\": \"82b18f737c3fdeeb849eccd133140963e8b4d15e\", \"live\": true, \"id\": \"x76cfaf21\"}", "{\"sha\": \"89140789e88d0d16b82bfac6e14f2f487227dcd1\", \"live\": true, \"id\": \"xcb214f97\"}", "{\"sha\": \"3afff8ca5f8f00a96110e534ff7a64702dd13bbd\", \"live\": true, \"id\": \"x301fbd2c\"}", "{\"sha\": \"5c04c953a9d1fff580b26fe1ba905aae49a7ef93\", \"live\": true, \"id\": \"x4764a71a\"}", "{\"sha\": \"9a7dda6e490cfbef5dbe9bd92031fa314d04a157\", \"live\": true, \"id\": \"x31052e7b\"}", "{\"sha\": \"807eb549b96ed0781ca18f1cbf0bf8adc3d010ae\", \"live\": true, \"id\": \"xca6a9994\"}", "{\"sha\": \"897d07572cee63c9d8fedecca2547ebce525bff3\", \"live\": true, \"id\": \"x457843be\"}"], "description": "Practice solving rate problems.", "basepoints": 19.0, "slug": "rate_problems_05", "kind": "Exercise", "name": "rate_problems_0.5", "seconds_per_fast_problem": 15.0, "prerequisites": ["ratio_word_problems"], "exercise_id": "rate_problems_0.5"}, "domain-and-range-piecewise": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/piecewise_functions/domain-and-range-piecewise/", "id": "domain-and-range-piecewise", "display_name": "Domain and range of piecewise functions", "title": "Domain and range of piecewise functions", "all_assessment_items": ["{\"sha\": \"8d379bd55558ad7a42e54fa5ccbfa8e826b2b4f0\", \"live\": true, \"id\": \"xb97a6febeddf7f22\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f87d35f8612a275a955fc78969ba10ac753f490a\", \"live\": true, \"id\": \"xd270f64e5acff849\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76fb919f28742e0be0ef3dcc00e393ee77ec4699\", \"live\": true, \"id\": \"x3c70d7906812a5ec\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"678ff29d05ff5af20e89f2a3cb0fd141ba81dbd1\", \"live\": true, \"id\": \"xec833e976f6d0206\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4044b57b35bb1ddad774577083a6f0879f640fca\", \"live\": true, \"id\": \"xbf57528a0b5f034a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3a2c9bafb55f4cb70761ea293e6339c068146686\", \"live\": true, \"id\": \"xd07d9ba51e5d9357\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bf84fa0ae839b177a65fcc05717de2f3bc38ccbd\", \"live\": true, \"id\": \"xa742833048640135\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e7bacbe97361f74b7fb5d893b14055f6910347b4\", \"live\": true, \"id\": \"xf05cf03df1978e8a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"36cf8c72317d84128bda17ed8efb1f6da3e2d853\", \"live\": true, \"id\": \"x4742a10e9c5a5aee\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23c6946a8569ff3d0cdc0fd81d6188df78f19c70\", \"live\": true, \"id\": \"x0cd09c3a7dfa3463\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"890740a0d983ace974dfb9b07512b83ab186e0a6\", \"live\": true, \"id\": \"xf7f4cbde7f333f60\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0fe6e72020b1f1baf903a9a84c0dbee59e3be2fc\", \"live\": true, \"id\": \"x6884b8d229de15b9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a0acdfc55a707d5bbf2e79706064e695b0b65c41\", \"live\": true, \"id\": \"x1e9685b7d7fda9fd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9ad046469f23577dd12f0c2c9fb44442db516b1\", \"live\": true, \"id\": \"x7c184ccfc3f03ba4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cc6ce0a9e5513defc27e99e1da25e288c4309116\", \"live\": true, \"id\": \"x610dcdc0e4f1e2ff\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8d4b98ac732ff849cfd80fcdbe62f4e04ae05d53\", \"live\": true, \"id\": \"xfd0f7c10b996d418\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b6b53c777c00d157ddfe6fd827e4901e0d02915a\", \"live\": true, \"id\": \"x2d958e57893001fa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41c6b2341b38692e48d8dd4a54fec0591b998318\", \"live\": true, \"id\": \"x31cbf5f82b40a3c8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca9a206984549c8dd8edd6ae72cf64a66c55f80e\", \"live\": true, \"id\": \"x3da5b12845161f53\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"807a03e9acf6e6537ff0c81ecb0546c94dcc75bc\", \"live\": true, \"id\": \"xde0f13719b4b6586\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Find the domain and range of a piecewise function given its formula.", "basepoints": 10.0, "slug": "domain-and-range-piecewise", "kind": "Exercise", "name": "domain-and-range-piecewise", "seconds_per_fast_problem": 4.0, "prerequisites": ["piecewise-graphs-linear"], "exercise_id": "domain-and-range-piecewise"}, "quiz-stars-and-elements": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/stars-and-elements/knowing-stars-elements/quiz-stars-and-elements/", "id": "quiz-stars-and-elements", "display_name": "Quiz: Stars and Elements", "title": "Quiz: Stars and Elements", "all_assessment_items": ["{\"sha\": \"15519ba3271cf6723496dca1efb2f5d84fae1a32\", \"live\": true, \"id\": \"x68c0be455c20502a\"}", "{\"sha\": \"0a3c189b12971e3dc4aa61a9426bf427db05392b\", \"live\": true, \"id\": \"x9188b28f0d583252\"}", "{\"sha\": \"8df5d46599575ae1a2d6e1073bff9ad04ee4026a\", \"live\": true, \"id\": \"xe5a636739a84f020\"}", "{\"sha\": \"de38c87be6d358ba5507fc75e9d305ae82052215\", \"live\": true, \"id\": \"x8eb46eebd848dee2\"}", "{\"sha\": \"03e56e543f78f6066aee31d02c16b0dbe85376a1\", \"live\": true, \"id\": \"x47d3e856148cb6cf\"}"], "description": "Quiz 3.3", "basepoints": 10.0, "slug": "quiz-stars-and-elements", "kind": "Exercise", "name": "quiz-stars-and-elements", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-stars-and-elements"}, "cranach-s-adam-and-eve-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern/cranach-altdorfer/cranach-s-adam-and-eve-quiz/", "id": "cranach-s-adam-and-eve-quiz", "display_name": "Cranach's Adam and Eve (quiz)", "title": "Cranach's Adam and Eve (quiz)", "all_assessment_items": ["{\"sha\": \"539ad6858c34443162d2b0ea02fc78809ec0bf83\", \"live\": true, \"id\": \"x3f15f72e37db8f3f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c606fcf20ed799bce6245dd2f2cda6ed71de4d2\", \"live\": true, \"id\": \"x1ecee56da1b74bf2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"49a1f13117e755653334c46d37ffa2974a3c8eb4\", \"live\": true, \"id\": \"xd42422977ea804ad\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dec66996ac747a7dabbe412958ed44c951caac6c\", \"live\": true, \"id\": \"x3e2753f9e5a026e7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "cranach-s-adam-and-eve-quiz", "kind": "Exercise", "name": "cranach-s-adam-and-eve-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cranach-s-adam-and-eve-quiz"}, "move-three-disks-in-towers-of-hanoi": {"uses_assessment_items": true, "id": "move-three-disks-in-towers-of-hanoi", "display_name": "Move three disks in Towers of Hanoi", "title": "Move three disks in Towers of Hanoi", "all_assessment_items": ["{\"sha\": \"1ec4fb7d91fc4c6de0cad6ffc84353a18ad0f47c\", \"live\": true, \"id\": \"xec98d2ed2cd14576\"}", "{\"sha\": \"7dc8bc4404830b3e96639e220d434757dea17dbf\", \"live\": true, \"id\": \"xe002c8fe120287ea\"}", "{\"sha\": \"79a31eadcdcee3a3b99e53c8a02b2b8308a7a7df\", \"live\": true, \"id\": \"xbd660c3cb4144f13\"}"], "description": "Move three disks in Towers of Hanoi, following the steps we learned.", "basepoints": 10.0, "path": "move-three-disks-in-towers-of-hanoi/", "slug": "move-three-disks-in-towers-of-hanoi", "kind": "Exercise", "name": "move-three-disks-in-towers-of-hanoi", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "move-three-disks-in-towers-of-hanoi"}, "multiplying-by-4": {"uses_assessment_items": true, "id": "multiplying-by-4", "display_name": "Multiplying by 4", "title": "Multiplying by 4", "all_assessment_items": ["{\"sha\": \"cc5d39e9b7213030d63215cfcdab1769f3620547\", \"live\": true, \"id\": \"xdf264414b3193aca\"}", "{\"sha\": \"52669332451176378bbe50dfc214cce06e552bcd\", \"live\": true, \"id\": \"x8b892a5d000ccf13\"}", "{\"sha\": \"9d2f68ba9fa2017ec3502fafcba40aa186200f04\", \"live\": true, \"id\": \"xfeee15d759068555\"}", "{\"sha\": \"d2f307d325cbb8b37dda18f690fcb726065c4a6e\", \"live\": true, \"id\": \"xd5694f75fcfb5e45\"}", "{\"sha\": \"2662530b0f7b43f5e30b2d44d4fefc1718f0d945\", \"live\": true, \"id\": \"xa8e00a4774d9d4f9\"}", "{\"sha\": \"32663304cd71a301c7a2a025b69e48baf72d8456\", \"live\": true, \"id\": \"xf7bd6d2e77975551\"}", "{\"sha\": \"0f0788e9234534a5bffea66cd66e7c248dac8664\", \"live\": true, \"id\": \"x4be9ae0a72d2baf3\"}", "{\"sha\": \"a2e7600e11f481cd99d71af12cef4e974f63e45c\", \"live\": true, \"id\": \"xa82a6a87797a44c2\"}", "{\"sha\": \"3a0bfb17209ec5fdbb1adb63116278ebeb128995\", \"live\": true, \"id\": \"xb5a68203c04bd3f5\"}", "{\"sha\": \"14d5f80bb41949367a9049d343e3996875906213\", \"live\": true, \"id\": \"x4f872507d92158c2\"}"], "description": "Multiply 4 times a number less than or equal to 10.", "basepoints": 10.0, "path": "multiplying-by-4/", "slug": "multiplying-by-4", "kind": "Exercise", "name": "multiplying-by-4", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-5"], "exercise_id": "multiplying-by-4"}, "measuring-lengths-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-measuring-length/measuring-lengths-2/", "id": "measuring-lengths-2", "display_name": "Measuring lengths 2", "title": "Measuring lengths 2", "all_assessment_items": ["{\"sha\": \"9fdca87a242fab4f367aad34d14ba28e0e964b1a\", \"live\": true, \"id\": \"x9584fb7aebc7ee38\"}", "{\"sha\": \"63a6892bd2890e733108f294d5b0b741045b4c3a\", \"live\": true, \"id\": \"x7a632dbc94d34591\"}", "{\"sha\": \"ca7d91315eeca76f9f8ad6acb7700fb9c6ed00b5\", \"live\": true, \"id\": \"xe052c5f52afbf026\"}", "{\"sha\": \"71ebb35eda699d2fd23a4e0b7c296706dc32b0d1\", \"live\": true, \"id\": \"xf13d8bcb285ae025\"}", "{\"sha\": \"f3d9a0777e9aafe61ab83f954b4fdda514038708\", \"live\": true, \"id\": \"x6d51ce91390491e3\"}", "{\"sha\": \"40c89be57cb5560b321e325ff3090d1ae4a4f6a1\", \"live\": true, \"id\": \"xc2586e9cc13cbf84\"}", "{\"sha\": \"72aec4b2c099ce9c477077e6d7361545621364fd\", \"live\": true, \"id\": \"xc5bd47776aace4b9\"}", "{\"sha\": \"d140a08700860d610c62cf31f2ca98c5688d902b\", \"live\": true, \"id\": \"xb65f325e148cc743\"}", "{\"sha\": \"e0d8aca6651b2cc8f6de4c2d1edfdef650740bc0\", \"live\": true, \"id\": \"xf5d2c65de579a302\"}", "{\"sha\": \"c872baf4a4786222be1c44e077b05e484d061aef\", \"live\": true, \"id\": \"x467c279127cc94eb\"}", "{\"sha\": \"26441fd5501f1e7f862f94433e70697ee52e0bd3\", \"live\": true, \"id\": \"x7300ea6915e1245c\"}", "{\"sha\": \"86c99cfa40e36a148c83770c46c013617be6e6de\", \"live\": true, \"id\": \"x88cc893555262add\"}", "{\"sha\": \"f491bbda6e421e7ee37fb886b7e4dddbf0c8d3e3\", \"live\": true, \"id\": \"xf17b9812493908e6\"}", "{\"sha\": \"27f8f1ebcfa67acb85c8cb69aa7e1ef578af6199\", \"live\": true, \"id\": \"x04bf5c2058605c19\"}", "{\"sha\": \"0adc3af443d00dea2b97bcd06cf39015ab88c43d\", \"live\": true, \"id\": \"x4137605021bcc004\"}", "{\"sha\": \"68e4128aab6197378b4add7c3ce6fb5395e5a449\", \"live\": true, \"id\": \"xa7beb9bda60e761a\"}", "{\"sha\": \"d5b6855885646a48ba14f3cf1c5225b6e66ef236\", \"live\": true, \"id\": \"xf7c877f8ae0a4de4\"}", "{\"sha\": \"c196443a4104a670280d6a03949b24717eef55a6\", \"live\": true, \"id\": \"xb818538888e3204d\"}", "{\"sha\": \"6737d65d5ed600b6a3edf49f88460ee23faf62b7\", \"live\": true, \"id\": \"x577f496a0caae785\"}", "{\"sha\": \"372c501dcf784a58aae2627631a24c561101ce60\", \"live\": true, \"id\": \"x3b8b58b06c88ea09\"}"], "description": "Measure objects using a ruler.", "basepoints": 10.0, "slug": "measuring-lengths-2", "kind": "Exercise", "name": "measuring-lengths-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["measuring-lengths-1"], "exercise_id": "measuring-lengths-2"}, "decimal-intuition-with-grids": {"uses_assessment_items": true, "id": "decimal-intuition-with-grids", "display_name": "Decimal intuition with grids", "title": "Decimal intuition with grids", "all_assessment_items": ["{\"sha\": \"fdcdd7f2f797ce226c07efd4a287c0c964ac2e25\", \"live\": true, \"id\": \"x2e1ade4ee785e148\"}", "{\"sha\": \"61d9f12bab63d7b1b70561b8ade3f203a8ab12ab\", \"live\": true, \"id\": \"xe31d1a3fcd4bd48b\"}", "{\"sha\": \"917723f7ed8c00f4a1a02c808f40458ef9fdd551\", \"live\": true, \"id\": \"x9ee915d1f7acba65\"}", "{\"sha\": \"7cd98ba6a8504dfddd1e7e3ec86d309bcf54b49d\", \"live\": true, \"id\": \"xa5ce4f2a59a7b812\"}", "{\"sha\": \"73b71a9ccb4a0f49093d1d163efee4d57771659d\", \"live\": true, \"id\": \"x1f2ee612e001b596\"}", "{\"sha\": \"5e86fa97a11ff0942a785eedc11449cabc49155f\", \"live\": true, \"id\": \"xa2eae992518337a4\"}", "{\"sha\": \"b7b6812221994586c0795bec49f491a9d5f3f8b7\", \"live\": true, \"id\": \"xe5e443e5180dc436\"}", "{\"sha\": \"d01afea01c89aeb139a96e9a5c0eb42cc596ca31\", \"live\": true, \"id\": \"x1b547ac1813e19e7\"}", "{\"sha\": \"f1363913704beaa1f8435bb2c5311dd9137b223d\", \"live\": true, \"id\": \"x76e1af48708a4ce2\"}", "{\"sha\": \"aa1475a5baa2ace97a51941d0f6e9dce0ce75360\", \"live\": true, \"id\": \"xd1a062641d2b6ee0\"}", "{\"sha\": \"6be97c62a8af191b34bad957c263de7771f03a2d\", \"live\": true, \"id\": \"x716e2f049636d01d\"}", "{\"sha\": \"82fa4e52fc675ee286183b79b21f7c877ace9570\", \"live\": true, \"id\": \"xdc3ab0bc955e36f3\"}", "{\"sha\": \"cb73141f73950769076ef3391e056b8c4d2798b6\", \"live\": true, \"id\": \"x9dccaa605c0605c6\"}", "{\"sha\": \"4e550a498b24604a8cc17bd9af0dc27127b76b68\", \"live\": true, \"id\": \"x0d82f47913893533\"}", "{\"sha\": \"de4387fc45254a5d1ac0da84b4bc7cb1809e4048\", \"live\": true, \"id\": \"x649d10f15a016fad\"}", "{\"sha\": \"9d03a85b899009eb55d324e293edfdbd65d73ce7\", \"live\": true, \"id\": \"x2fe2d60c6628c1e4\"}", "{\"sha\": \"d8eea1ecfa385c232c11ba32bd3f3ae84a34c352\", \"live\": true, \"id\": \"xc7cac65f155f5ef3\"}", "{\"sha\": \"899c85b3a220385f1a044d54fce61df0de56c08a\", \"live\": true, \"id\": \"x2f41ba154c4d8cc3\"}", "{\"sha\": \"13cecfdebbf5ce2f143f2f9d748cd629dce4227d\", \"live\": true, \"id\": \"x892a75a65d42ddff\"}", "{\"sha\": \"7297624b20eb7b738cbe15549dc7d99d6ebb4099\", \"live\": true, \"id\": \"x0390fe743870e41d\"}", "{\"sha\": \"6015bdbd950c1e89057d7bfb73569235359be92a\", \"live\": true, \"id\": \"x45b12c41d1b6cd0d\"}", "{\"sha\": \"4f9c26379b18019dc249793ee2f2da31121e228a\", \"live\": true, \"id\": \"x569e22e931540813\"}", "{\"sha\": \"844575dcf0d87641266f0193386097ae6c01168a\", \"live\": true, \"id\": \"x0fb2e8e7615dd7f9\"}", "{\"sha\": \"4e23ba3e69f9f8d63778d59b678828dba5a16829\", \"live\": true, \"id\": \"xb6deed39d5e27f4f\"}", "{\"sha\": \"5912f41cbd28fc336e70bb46ffb9ded162d420b7\", \"live\": true, \"id\": \"x974301761b09e942\"}", "{\"sha\": \"f2193c21be1b0bc9ebc78f7697911505657694f0\", \"live\": true, \"id\": \"x8aba8567cbe03104\"}"], "description": "Practice writing decimal numbers shown in grid diagrams.", "basepoints": 10.0, "path": "decimal-intuition-with-grids/", "slug": "decimal-intuition-with-grids", "kind": "Exercise", "name": "decimal-intuition-with-grids", "seconds_per_fast_problem": 4.0, "prerequisites": ["equivalent-fractions-with-denominators-of-10-and-100-intuition"], "exercise_id": "decimal-intuition-with-grids"}, "writing-expressions-with-variables-1": {"uses_assessment_items": true, "id": "writing-expressions-with-variables-1", "display_name": "Writing expressions with variables", "title": "Writing expressions with variables", "all_assessment_items": ["{\"sha\": \"a4551ec4bf95476f4e9e246210048565c4afae34\", \"live\": true, \"id\": \"x34aea7b3988d3acd\"}", "{\"sha\": \"219bd26d278ffbc52ac33c2e7afd47e0f142bf6c\", \"live\": true, \"id\": \"xa0f3354b4cd872c3\"}", "{\"sha\": \"cf201e2ec08f1a2789ebfe913b08e5e0370ba9f1\", \"live\": true, \"id\": \"xf880828ebbdb0ded\"}", "{\"sha\": \"75cb39337c4a205c5221e5ecdd97ab055292fd9b\", \"live\": true, \"id\": \"x7ea29b3194633418\"}", "{\"sha\": \"7137b07ce3ee1a23a38cf6ac7c28a0b08dec767e\", \"live\": true, \"id\": \"x200b9154acb6aa16\"}", "{\"sha\": \"323ae4c753e8034f4d4eab7e051b34276548bae7\", \"live\": true, \"id\": \"xc96a18c9edc2f1e2\"}", "{\"sha\": \"1e37e23b7d5a18f0533ebf8bbfa864253e383bfa\", \"live\": true, \"id\": \"xa7b02e1eb56322eb\"}", "{\"sha\": \"ef7df1e448fadbddb1bc6c519dcb6c72bf281d13\", \"live\": true, \"id\": \"x51896ea32368f56a\"}", "{\"sha\": \"6fcb1f990e75db629b157ac269f8b76e674588b5\", \"live\": true, \"id\": \"x7552bbcbc06782dd\"}", "{\"sha\": \"b4ba79094c63215f9358a62752fe15ec3721096d\", \"live\": true, \"id\": \"x3d4a3321aff8b34c\"}", "{\"sha\": \"99f63415a8437518f3dd893d376b0dd093cd7b0c\", \"live\": true, \"id\": \"x07930fd181f58363\"}", "{\"sha\": \"6728a01902aa6c3571d59573ae38cb8e682528e9\", \"live\": true, \"id\": \"x1654d822e1ab10ab\"}", "{\"sha\": \"1f8cb5d4570d9686bdf1a3da07f11ed1715fe09e\", \"live\": true, \"id\": \"x5d9a0bb324457560\"}", "{\"sha\": \"d5843d4dcaae87992ee011325bc65fb920e0f3e1\", \"live\": true, \"id\": \"x7f20af33752434fa\"}", "{\"sha\": \"c25afefa61f75ab8be6af17e07aaa66c5638865c\", \"live\": true, \"id\": \"x705eaff4c7f7524c\"}", "{\"sha\": \"32dcd619929831c3cb339b15a8c09ee44280d72f\", \"live\": true, \"id\": \"x545725be7010f1a5\"}", "{\"sha\": \"238ad21bae643f08e8474cb22198dc93b47978dd\", \"live\": true, \"id\": \"x00c0a4e1d93e1dec\"}", "{\"sha\": \"850605b9b4a1ecc7083b4d246de651649e23aab6\", \"live\": true, \"id\": \"xc4ad0628ded09376\"}", "{\"sha\": \"e95596715f2829ad7bab09afe2dc299e74b33079\", \"live\": true, \"id\": \"x767bb16f814962ac\"}", "{\"sha\": \"ae5cb5dd96ed74deef193d835eeaa05cc687f787\", \"live\": true, \"id\": \"xb58ba99fbd597b88\"}", "{\"sha\": \"117cc25450ebd4724839e3ab08f27ae0ed8f24f6\", \"live\": true, \"id\": \"xb8283e46a1c95797\"}", "{\"sha\": \"73ef11fc8e2c19af84fd0dcd580010bd2c32977b\", \"live\": true, \"id\": \"xa687446d2076d4c0\"}", "{\"sha\": \"803c29dffae727c912549869f95c524404e765cd\", \"live\": true, \"id\": \"x0c7492c4d6e66312\"}", "{\"sha\": \"6c066812a521eddfcd3ec6607c0f38c36f701da9\", \"live\": true, \"id\": \"x519b9c7740919eb7\"}", "{\"sha\": \"716b545a50b198801e470cd94f8efccbb4db9cee\", \"live\": true, \"id\": \"x6a9cfa164e6a24bd\"}", "{\"sha\": \"a4a86d9851beb4fc5d9a95b076bdcd106e88b96f\", \"live\": true, \"id\": \"xf3d458731bb0c8b3\"}", "{\"sha\": \"f0767baa042a0937cc5eba03717409c37fbaa783\", \"live\": true, \"id\": \"xed4a25bb3b209105\"}", "{\"sha\": \"8f6db35692262ba688b363b1386a151ac6418902\", \"live\": true, \"id\": \"x4839b37aad92e97f\"}"], "description": "Practice writing basic algebraic expressions.", "basepoints": 10.0, "path": "writing-expressions-with-variables-1/", "slug": "writing-expressions-with-variables-1", "kind": "Exercise", "name": "writing-expressions-with-variables-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["creating-expressions-with-parenthesis"], "exercise_id": "writing-expressions-with-variables-1"}, "multiplying_and_dividing_rational_expressions_4": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying_and_dividing_rational_expressions_4/", "id": "multiplying_and_dividing_rational_expressions_4", "display_name": "Multiplying and dividing rational expressions 4", "title": "Multiplying and dividing rational expressions 4", "description": "", "basepoints": 10.0, "slug": "multiplying_and_dividing_rational_expressions_4", "kind": "Exercise", "name": "multiplying_and_dividing_rational_expressions_4", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_and_dividing_rational_expressions_3"], "exercise_id": "multiplying_and_dividing_rational_expressions_4"}, "multiplying_and_dividing_rational_expressions_5": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying_and_dividing_rational_expressions_5/", "id": "multiplying_and_dividing_rational_expressions_5", "display_name": "Multiplying and dividing rational expressions 5", "title": "Multiplying and dividing rational expressions 5", "description": "", "basepoints": 10.0, "slug": "multiplying_and_dividing_rational_expressions_5", "kind": "Exercise", "name": "multiplying_and_dividing_rational_expressions_5", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_and_dividing_rational_expressions_4", "simplifying_rational_expressions_4"], "exercise_id": "multiplying_and_dividing_rational_expressions_5"}, "multiplying_and_dividing_rational_expressions_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying_and_dividing_rational_expressions_2/", "id": "multiplying_and_dividing_rational_expressions_2", "display_name": "Multiplying and dividing rational expressions 2", "title": "Multiplying and dividing rational expressions 2", "description": "Multiplying or dividing a rational expression in the form (Ax+B)/C by a variable Dx/E.", "basepoints": 10.0, "slug": "multiplying_and_dividing_rational_expressions_2", "kind": "Exercise", "name": "multiplying_and_dividing_rational_expressions_2", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_and_dividing_rational_expressions_1"], "exercise_id": "multiplying_and_dividing_rational_expressions_2"}, "multiplying_and_dividing_rational_expressions_3": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying_and_dividing_rational_expressions_3/", "id": "multiplying_and_dividing_rational_expressions_3", "display_name": "Multiplying and dividing rational expressions 3", "title": "Multiplying and dividing rational expressions 3", "description": "", "basepoints": 10.0, "slug": "multiplying_and_dividing_rational_expressions_3", "kind": "Exercise", "name": "multiplying_and_dividing_rational_expressions_3", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying_and_dividing_rational_expressions_2"], "exercise_id": "multiplying_and_dividing_rational_expressions_3"}, "multiplying_and_dividing_rational_expressions_1": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/multi-div-rational-exp/multiplying_and_dividing_rational_expressions_1/", "id": "multiplying_and_dividing_rational_expressions_1", "display_name": "Multiplying and dividing rational expressions 1", "title": "Multiplying and dividing rational expressions 1", "description": "Multiplying a rational expression in the form (Ax+B)/(Cx+D) by a constant.", "basepoints": 10.0, "slug": "multiplying_and_dividing_rational_expressions_1", "kind": "Exercise", "name": "multiplying_and_dividing_rational_expressions_1", "seconds_per_fast_problem": 4.0, "prerequisites": ["factoring_polynomials_by_grouping_1", "factoring_polynomials_with_two_variables"], "exercise_id": "multiplying_and_dividing_rational_expressions_1"}, "understanding-multiplying-fractions-and-whole-numbers": {"uses_assessment_items": true, "id": "understanding-multiplying-fractions-and-whole-numbers", "display_name": "Multiplying Fractions and Whole Numbers: Equivalent Expressions", "title": "Multiplying Fractions and Whole Numbers: Equivalent Expressions", "all_assessment_items": ["{\"sha\": \"b1381b347f0fede86e2370573905346590a42765\", \"live\": true, \"id\": \"x7fdd4e58a8fd0c64\"}", "{\"sha\": \"925667053a51bc2ecbf1a8cfdbc64e28c3711515\", \"live\": true, \"id\": \"x5d12c3d838eb1641\"}", "{\"sha\": \"954f146319079b11836834012fee46215bcec7a4\", \"live\": true, \"id\": \"xbcba55b32b449db3\"}", "{\"sha\": \"a19145c67e44dab47a6cf4986679be1f4d76b31a\", \"live\": true, \"id\": \"x347df1ac5a155a38\"}", "{\"sha\": \"e74e84d2be5f4bc4cbf3160f08dfe61612b9c729\", \"live\": true, \"id\": \"x6b10fd686a00a4d7\"}", "{\"sha\": \"afb9fa6817d6a2482ed871bb38e9f4738aff4abb\", \"live\": true, \"id\": \"x03921fb230dd7263\"}", "{\"sha\": \"f1492c505b1e9469c548f2736ff7d6b03a46965e\", \"live\": true, \"id\": \"x733e288f50f3b9eb\"}", "{\"sha\": \"58bd66f2e760e047f1a1d6c9f072590149a2eacc\", \"live\": true, \"id\": \"x70168b6457ecbb12\"}", "{\"sha\": \"f805551f6698d727638655bad38e8d4dd97556a5\", \"live\": true, \"id\": \"xcf57eaef20fedf6c\"}", "{\"sha\": \"0aac02e2463e1c5dd55cb5fbcd78697668488581\", \"live\": true, \"id\": \"x78b1eff688989b28\"}", "{\"sha\": \"45b7ebf187cc5f0b96fb8027a1f5c9e4907dd810\", \"live\": true, \"id\": \"xaa9492e0bb25d26b\"}", "{\"sha\": \"f46eb4bfa5ea59c1109832393f0ed801843bf349\", \"live\": true, \"id\": \"x69bee70a69c44f3f\"}", "{\"sha\": \"92703d5a91e4257bb3c12906005bfad544a40a66\", \"live\": true, \"id\": \"xc57c0a1c48da736e\"}", "{\"sha\": \"ca08fa74452ceaa8019bfefea8e9be5992d5c462\", \"live\": true, \"id\": \"x43b7cf61d7a7d3ef\"}", "{\"sha\": \"ebd9254f1e917b8c17792374685ab6cd7cb5a9b9\", \"live\": true, \"id\": \"x617e2b9406f44b26\"}", "{\"sha\": \"246daa8c0574c993b23d0106b68573561ffb73a3\", \"live\": true, \"id\": \"x11a52ae04bf04377\"}", "{\"sha\": \"4867b61e8b256640639a5604b178127374fb207f\", \"live\": true, \"id\": \"x41a7acc20a2ade5b\"}", "{\"sha\": \"4d4bc60685d6a6be5efb3c1f502814e30cf4a6e7\", \"live\": true, \"id\": \"x116cc09e18ef0205\"}", "{\"sha\": \"a1309702b41175126d311ebcacf0a4d255d04f2d\", \"live\": true, \"id\": \"x126c830a7f2a8b79\"}", "{\"sha\": \"fdf176cf94cf57a4dafb9123ef4977643eb0daaa\", \"live\": true, \"id\": \"x138127dba3c52b7a\"}", "{\"sha\": \"2b8e8bc6ef8214587fff2cc779c9d7efe078ea83\", \"live\": true, \"id\": \"x075c420b48a09805\"}", "{\"sha\": \"48d373474cd519895bf80d5b05cb87df3b671761\", \"live\": true, \"id\": \"x6d2838b867424cb8\"}", "{\"sha\": \"196c1af1fc48aa06081ba4fd01d66dc13aea27c8\", \"live\": true, \"id\": \"xe7b86a60635ecd3a\"}"], "description": "Practice seeing how one whole-number-times-fraction problem is the same as another.", "basepoints": 10.0, "path": "understanding-multiplying-fractions-and-whole-numbers/", "slug": "understanding-multiplying-fractions-and-whole-numbers", "kind": "Exercise", "name": "understanding-multiplying-fractions-and-whole-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-unit-fractions-and-whole-numbers"], "exercise_id": "understanding-multiplying-fractions-and-whole-numbers"}, "applying-angle-addition-formulas": {"uses_assessment_items": true, "path": "khan/math/trigonometry/less-basic-trigonometry/angle-addition-formulas-trig/applying-angle-addition-formulas/", "id": "applying-angle-addition-formulas", "display_name": "Applying angle addition formulas", "title": "Applying angle addition formulas", "all_assessment_items": ["{\"sha\": \"ccb374508cb83c1e3e9d8d9b99fecd553bbb4bab\", \"live\": true, \"id\": \"xe33422b9569cd13a\"}", "{\"sha\": \"62aaa4457525711390559e422275558905c37c57\", \"live\": true, \"id\": \"x1eb342feeb786a77\"}", "{\"sha\": \"5873cf341fc38b4a77d84fd35bcaa343194bf64b\", \"live\": true, \"id\": \"x727a5e9fb5fe2d99\"}", "{\"sha\": \"492be3b57cd530e0116f69603487f049b7a8855d\", \"live\": true, \"id\": \"x56c07cfbae40cdae\"}", "{\"sha\": \"70c416c822ddea5f1b12b989b1c11d5fe914528a\", \"live\": true, \"id\": \"xc56a0ecb57bf444a\"}", "{\"sha\": \"82486d080e25f09c3676e6be7b41e38e288efada\", \"live\": true, \"id\": \"x1d3251bc2bf5a69f\"}", "{\"sha\": \"d6cfc9d10bb0afdfb9a2b0ad4e30a2541337ad2e\", \"live\": true, \"id\": \"x1561d88549526a87\"}", "{\"sha\": \"51a403cd9f50715f539aecbe1ceeaa7228d37c22\", \"live\": true, \"id\": \"xd5ee4c1013d1ff74\"}", "{\"sha\": \"58d4d1f335212fcc43f85b71a41f010e954ec5ad\", \"live\": true, \"id\": \"xaa1af05b41b36267\"}", "{\"sha\": \"120c7d074d41d4ac14c3d5208ad54c913761312c\", \"live\": true, \"id\": \"x1026d018d575eb3d\"}", "{\"sha\": \"3c8a59c8e250e44f75748ed38c0077f5f0d6f280\", \"live\": true, \"id\": \"x9ef2f034f4ec4377\"}", "{\"sha\": \"b45cae879becb41099742c85d937559bc136ab97\", \"live\": true, \"id\": \"x6a55fd1295f40673\"}", "{\"sha\": \"23a2b180c526f82f659b609953fde6e632671dc9\", \"live\": true, \"id\": \"x3d7a4f6ec82d7c37\"}", "{\"sha\": \"df1ed99c58a36eb15d99c685d8c7f5882d52b146\", \"live\": true, \"id\": \"xff75971cf316acfc\"}", "{\"sha\": \"65ef662c683134cbd6c782d636cfa2642ac9399f\", \"live\": true, \"id\": \"x7463b487d1f795b0\"}", "{\"sha\": \"4139670d70d8d4da246d6d32e33cd78e671e85a3\", \"live\": true, \"id\": \"xf0c6d079c3d7a55c\"}", "{\"sha\": \"08fae012f9a9e88e296f500b7439e172e1df3687\", \"live\": true, \"id\": \"x3439bcccb0c16067\"}", "{\"sha\": \"814a7513f51951050275fba47483e00d34781c3f\", \"live\": true, \"id\": \"x219fc1c13a011bdc\"}", "{\"sha\": \"67a0fe0fcec44cffd1a6d7a8013e24396dd38937\", \"live\": true, \"id\": \"x95d1ec4f549c9688\"}", "{\"sha\": \"afa8bb2164c146af579507da28f93591055e7825\", \"live\": true, \"id\": \"x1e20375453719230\"}", "{\"sha\": \"889d14ef40faa8bf1d39ca9df041bff48db1e9b5\", \"live\": true, \"id\": \"xd4c8275a535e08f2\"}", "{\"sha\": \"63cc66501135705c336830a5f52ae987a3167d43\", \"live\": true, \"id\": \"x03119fb9f2f3cd6a\"}", "{\"sha\": \"bfcca8e65e00e4b5cb2f5ea133411d976065a928\", \"live\": true, \"id\": \"x5b2014b3ac3c3c52\"}", "{\"sha\": \"f1771d9679ff2105a9133c2432bb0045148a84d6\", \"live\": true, \"id\": \"x0a1c35b28b5eeede\"}", "{\"sha\": \"9bfaf6ad16c26bd6bf94d24560528881ec024323\", \"live\": true, \"id\": \"xc74459ee3e44f8f1\"}", "{\"sha\": \"3051b2b4188e9e0b9dd337222ca25e5711942e8b\", \"live\": true, \"id\": \"x7825ecba297b9ab2\"}", "{\"sha\": \"141e31e430fc4f5025c32d0c2ab56e3f2d0f69ee\", \"live\": true, \"id\": \"x6b0404b61ca8ee41\"}", "{\"sha\": \"b3ef97704e42ee63254545be9b6e4b66118f082c\", \"live\": true, \"id\": \"xbfd456aa70863f7f\"}", "{\"sha\": \"cff0385480b96a8f281d5e9f1c99f6138917a709\", \"live\": true, \"id\": \"x6057ca8acefc2ce8\"}", "{\"sha\": \"9e5ecc53d12c08ee9770c5a70b1ce95bf8870675\", \"live\": true, \"id\": \"xaff048481528d8d9\"}"], "description": "", "basepoints": 10.0, "slug": "applying-angle-addition-formulas", "kind": "Exercise", "name": "applying-angle-addition-formulas", "seconds_per_fast_problem": 4.0, "prerequisites": ["trig_addition_identities"], "exercise_id": "applying-angle-addition-formulas"}, "beyond-battle": {"uses_assessment_items": true, "id": "beyond-battle", "display_name": "Beyond Battle", "title": "Beyond Battle", "all_assessment_items": ["{\"sha\": \"a554c496ea7f50bb7ee1cb6b1e0f9275d71dcd8b\", \"live\": true, \"id\": \"x23962b4c6d82e6ba\"}", "{\"sha\": \"8527f39b573b525bd1b6a7b1fa181729b2c98d25\", \"live\": true, \"id\": \"x04a18d8018b1b669\"}", "{\"sha\": \"9b8154a668f8ece3dc38ab14d1ebb354efc05199\", \"live\": true, \"id\": \"x9f3f15a67a580b8f\"}", "{\"sha\": \"45ad7adc34640ce096a9485af3b7e451e732f7d0\", \"live\": true, \"id\": \"x7b980cad71c11b0b\"}", "{\"sha\": \"03060c1776fd549fe3008386dadcf2defee3d51b\", \"live\": true, \"id\": \"x8c8cb5e3d517fabf\"}", "{\"sha\": \"48b2d65ce6964d7a108c8d5fa819471618a6196c\", \"live\": true, \"id\": \"xa8292e733a32c9fd\"}", "{\"sha\": \"7a1aee88871daf48e40a0d5dcc2e6909f9c4e5e2\", \"live\": true, \"id\": \"x045efb1a3cb71b8a\"}", "{\"sha\": \"a24192779841c0f6804eace16de23fe31a76c39d\", \"live\": true, \"id\": \"xa5de44247c8704da\"}", "{\"sha\": \"a32b3c758cf5f976b9cb9751ce959255fb0ab2a6\", \"live\": true, \"id\": \"xe2764f6e2b917957\"}", "{\"sha\": \"7c9494e96979cdac397c6936cbd817d06c9b5344\", \"live\": true, \"id\": \"xced25f8ef9fcd08f\"}", "{\"sha\": \"4e82e0a6512a61277dbb9eea14d8accad69804e6\", \"live\": true, \"id\": \"x9def2cf4644721c6\"}", "{\"sha\": \"0bd1e436a0634122e634fc8381fae36bf348d1b2\", \"live\": true, \"id\": \"x49b10a5f3f667ae7\"}", "{\"sha\": \"6f9f62863bb8739e280f667f6441a9fb23a4e8fd\", \"live\": true, \"id\": \"x7ffb5df81996ceac\"}", "{\"sha\": \"c89b72d4f686864363fcda4cabd322f33b6f6eb4\", \"live\": true, \"id\": \"xa40860852647406a\"}", "{\"sha\": \"9263c879ff2be133e4f7a265fe064c135a0de95f\", \"live\": true, \"id\": \"xf55660e31210ee58\"}", "{\"sha\": \"d4b01fd60382480806144865a225b92dd782fa23\", \"live\": true, \"id\": \"x076b838a10ecf007\"}", "{\"sha\": \"9a60ce21e266db6b299d484f19f379d2ea720399\", \"live\": true, \"id\": \"x076f10210c560488\"}", "{\"sha\": \"d3563eba43fb2cce21001b648afc659ecc327ed8\", \"live\": true, \"id\": \"x4eaf48c1c98d5547\"}", "{\"sha\": \"7ef345e6838bd73efb23662dd6dbb079d92d38e4\", \"live\": true, \"id\": \"xeff1a53b927c3879\"}", "{\"sha\": \"ae6c884b0f1dab380bed6bb06866c4dd38770117\", \"live\": true, \"id\": \"x894507c541026b12\"}", "{\"sha\": \"b93da02dd91132aa730556b28a262c06c63d5919\", \"live\": true, \"id\": \"x1eaa2c99f81bb15b\"}"], "description": "From tournaments to triumphs, \"Beyond Battle\" explores much more than war. Ready to challenge common myths and misconceptions? Need a fighting chance? Tap the Hint button for a helpful clue.", "basepoints": 10.0, "path": "beyond-battle/", "slug": "beyond-battle", "kind": "Exercise", "name": "beyond-battle", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "beyond-battle"}, "applications-of-differentiation-in-biology--economics--physics--etc": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/differentiation-application/applications-of-differentiation-in-biology-economics-physics-etc/", "id": "applications-of-differentiation-in-biology--economics--physics--etc", "display_name": "Applications of differentiation in biology, economics, physics, etc.", "title": "Applications of differentiation in biology, economics, physics, etc.", "all_assessment_items": ["{\"sha\": \"c65339738fba1296de65c8898e6f6d0497814c71\", \"live\": true, \"id\": \"x333150d30a77e8ee\", \"perseus_api_major_version\": null}", "{\"sha\": \"ac31578dbd2e225407edeaba0210219204a86d48\", \"live\": true, \"id\": \"x9693a42871c61fd5\", \"perseus_api_major_version\": null}", "{\"sha\": \"a0748d6e336680190e0035cfbfd09af3f09d7ae2\", \"live\": true, \"id\": \"x829e5cfccda30af7\", \"perseus_api_major_version\": null}", "{\"sha\": \"0662e9c47b7ace189cea15a17a03c2a2ac04970b\", \"live\": true, \"id\": \"x8489514ac853ba25\", \"perseus_api_major_version\": null}", "{\"sha\": \"841db35cc331b8048788c769d8836b1f22fcbfce\", \"live\": true, \"id\": \"x1a92b2f5a5d2829c\", \"perseus_api_major_version\": null}", "{\"sha\": \"d44ef24e6c0b43ea8cca572799de183cd71cece7\", \"live\": true, \"id\": \"xe737ccdd4e4b0047\", \"perseus_api_major_version\": null}", "{\"sha\": \"2df23339c2d4baaefe393ff7f5f0f25bc634fcb2\", \"live\": true, \"id\": \"x6bcb74a765fc6245\", \"perseus_api_major_version\": null}", "{\"sha\": \"3acbdc3cd1d805759a6947b636b46fd53b97771f\", \"live\": true, \"id\": \"x5ae60b8d1afe5f63\", \"perseus_api_major_version\": null}", "{\"sha\": \"08421ef7cd8202a9f1d4b270336b6f919510d07b\", \"live\": true, \"id\": \"x8fea531ad74876eb\", \"perseus_api_major_version\": null}", "{\"sha\": \"264fe4ea6b231a2ba037200605984c2086084391\", \"live\": true, \"id\": \"xea7e53ed37c93e14\", \"perseus_api_major_version\": null}", "{\"sha\": \"c7584810e2bd9832384beaaa0e5847e4e87b858d\", \"live\": true, \"id\": \"xa1b6b8dc34112535\", \"perseus_api_major_version\": null}", "{\"sha\": \"4af2729f1cc820453082a3a4d995a31863bc5634\", \"live\": true, \"id\": \"xbed7bbeaf1d338af\", \"perseus_api_major_version\": null}", "{\"sha\": \"4e9a560fcac4bc1f8d88fd44e21956cb941f3fed\", \"live\": true, \"id\": \"x74dbe59579c85308\", \"perseus_api_major_version\": null}", "{\"sha\": \"eddc095fe277ef5166a219048ae63093fd228908\", \"live\": true, \"id\": \"xa05a2e53eebe6884\", \"perseus_api_major_version\": 0}", "{\"sha\": \"792577efdbefb20e7e7ca86f4d07dfceaf200f0e\", \"live\": true, \"id\": \"x24b90ae0db65705c\", \"perseus_api_major_version\": null}", "{\"sha\": \"7e9096e29f1c50478b0b87918c03e85768bb162c\", \"live\": true, \"id\": \"x6beb60a25f5275a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"01021594b5818939fb5c505ec016005595cfe61d\", \"live\": true, \"id\": \"x3e0b71af7500185a\", \"perseus_api_major_version\": null}", "{\"sha\": \"ef5924d249c4758655a528f7bf766a23664e76da\", \"live\": true, \"id\": \"x94d67c60fdd66624\", \"perseus_api_major_version\": null}", "{\"sha\": \"647a59eb4d271057d4aee375447f7497781d3988\", \"live\": true, \"id\": \"xda4f5665679ba0ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"4954a18382415d891b3a2d84a0bd66a7ab0612c4\", \"live\": true, \"id\": \"x2125798d7c05660f\", \"perseus_api_major_version\": null}", "{\"sha\": \"676301abce190a00cac65b21a87d0432ce9d79da\", \"live\": true, \"id\": \"xf2343c995fcaaf46\", \"perseus_api_major_version\": null}", "{\"sha\": \"04e0933d74e960a694ce232d094087fbd68de997\", \"live\": true, \"id\": \"x5de0b768559f3137\", \"perseus_api_major_version\": null}", "{\"sha\": \"8d102f3eddb06446c584bee77cc1023034e1dc8d\", \"live\": true, \"id\": \"x3e96a90add7d1034\", \"perseus_api_major_version\": null}", "{\"sha\": \"58c5440e120fa19fb61788f9f04ad72857a0345d\", \"live\": true, \"id\": \"xc521a3ac739703ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"3effc5310b66c8a468e8c3f7bc42a9cc71cd623f\", \"live\": true, \"id\": \"xfeb01c3326645f16\", \"perseus_api_major_version\": null}", "{\"sha\": \"3560f742b319f6a58337a0537496b809b178715f\", \"live\": true, \"id\": \"xab004164e810a7bb\", \"perseus_api_major_version\": null}", "{\"sha\": \"2166af240f4b4510cf53a211babde537b4cecc48\", \"live\": true, \"id\": \"xff109c50c26317d9\", \"perseus_api_major_version\": null}", "{\"sha\": \"d8ffe03982d361084995333f365b069465b45dd1\", \"live\": true, \"id\": \"xff4f2769874b6345\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 29.0, "slug": "applications-of-differentiation-in-biology-economics-physics-etc", "kind": "Exercise", "name": "applications-of-differentiation-in-biology--economics--physics--etc", "seconds_per_fast_problem": 60.0, "prerequisites": ["combining-the-product-rule-and-chain-rule"], "exercise_id": "applications-of-differentiation-in-biology--economics--physics--etc"}, "creating-dot-plots": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/creating-dot-plots/", "id": "creating-dot-plots", "display_name": "Creating dot plots", "title": "Creating dot plots", "all_assessment_items": ["{\"sha\": \"d8452d91ff2dbc4dac1f9d1b7fd521dac8e234ad\", \"live\": true, \"id\": \"xf3f9cc7c1aaab1e4\"}", "{\"sha\": \"10ff122eb416bea9e976e479c6b4857219151346\", \"live\": true, \"id\": \"x73b6e8dea6d3749f\"}", "{\"sha\": \"8f518a9e430eda7fe7964734833ca5ca430ab764\", \"live\": true, \"id\": \"xc0162a3e66d877ff\"}", "{\"sha\": \"c479642cf17c80b2a0daa59b6f8ef2336b8e6243\", \"live\": true, \"id\": \"x302032550461b32f\"}", "{\"sha\": \"97f68e4dba8fd5f131c09fef03f466a9ece46b59\", \"live\": true, \"id\": \"x9e2319dcf55903fe\"}", "{\"sha\": \"0516dbbed24a43ed126c852daaba080dbf586b5d\", \"live\": true, \"id\": \"x7065ae3d53fbb43b\"}", "{\"sha\": \"eeab8bb223783c2cef36bd545a6624cfcfe37193\", \"live\": true, \"id\": \"x22e93a12ac3e2872\"}", "{\"sha\": \"3036aa0fdb4b434aa6fea766b08a7352f811af31\", \"live\": true, \"id\": \"xbaa89dd13d73c64b\"}", "{\"sha\": \"0d523d6a6d4472fe1a7601f72dec964240385e84\", \"live\": true, \"id\": \"xaceefb9b9e15bd89\"}", "{\"sha\": \"5cdc6a2169b9188b3e6fe0605145bc1d0d8a62b9\", \"live\": true, \"id\": \"xeba0d7798e54f4ca\"}", "{\"sha\": \"06e2fe853300cac5b38c72db9b60786f82581d13\", \"live\": true, \"id\": \"xf3a6aff295aa2018\"}", "{\"sha\": \"35f93e44840a695df6926c741750380cf5413582\", \"live\": true, \"id\": \"x59752094d780c40c\"}", "{\"sha\": \"58aba6209fc6a98d5e0cea1441b9baf5d7e01000\", \"live\": true, \"id\": \"xce50411d3ccce4b0\"}", "{\"sha\": \"be3a471d3ecc33b24b1fef07bdef410939aa4d33\", \"live\": true, \"id\": \"x1b4bcd98cce06119\"}", "{\"sha\": \"74740e172aae803fa220ed1462fb4ade753eab5a\", \"live\": true, \"id\": \"xad94c69805ed3988\"}", "{\"sha\": \"798bdae27ce60fba644cccc858b0d4b97d0141ed\", \"live\": true, \"id\": \"x9507515fdb68d251\"}", "{\"sha\": \"c0049fd4e04f78331e148bd9c049d1155137d09f\", \"live\": true, \"id\": \"xa9b4c6825366d0ee\"}", "{\"sha\": \"3f9955efac0c98fc359c1e8c998f3545344a262b\", \"live\": true, \"id\": \"x77d656c3a8743895\"}", "{\"sha\": \"c12695924dbc409029311f90521bf847285c253b\", \"live\": true, \"id\": \"x718a3a6b130ad13b\"}", "{\"sha\": \"3e06af8e8e800aefd5793630e1e7a2644373a150\", \"live\": true, \"id\": \"x140f48bf340cd9dd\"}", "{\"sha\": \"92660f6f335de9f4fa8915124de0cb231923c475\", \"live\": true, \"id\": \"x85007afbf818ea16\"}", "{\"sha\": \"5f3b99ab590f94a6daa905dc4f99d49357caa903\", \"live\": true, \"id\": \"x79f2f9643cac9410\"}", "{\"sha\": \"e5b549f26140c3f63c715a579db79c1f9d503f98\", \"live\": true, \"id\": \"xb59adab0667ff8a2\"}", "{\"sha\": \"a56ce866fbd10ad9bb4cab94d826b26ca0543739\", \"live\": true, \"id\": \"x701d661d852a9bd5\"}", "{\"sha\": \"b1ff36b74791083025c6c87ac461984f734ee8df\", \"live\": true, \"id\": \"x338486becc58243a\"}", "{\"sha\": \"bcf13e43ba2ecd442e129f911d675b8e895b0cad\", \"live\": true, \"id\": \"x16fac5322ff846a1\"}", "{\"sha\": \"7331a33d65abcfef122bacdefaf3f5104caec5cd\", \"live\": true, \"id\": \"xb7ecb818fd1d656e\"}", "{\"sha\": \"952d186b925f86e5d0ae962f5fabf9b8875b64c0\", \"live\": true, \"id\": \"x4e8d5d25ce99a7bc\"}", "{\"sha\": \"b35dcbaf8df9db1fe614e1c8c8b68903f188ef02\", \"live\": true, \"id\": \"xf09d4ca1863978a2\"}", "{\"sha\": \"2864d791d7fe7a03f1c109d93c6b4300e926406b\", \"live\": true, \"id\": \"x4f827859becd63f9\"}"], "description": "Practice creating dot plots. Dot plots are very similar to frequency tables, but they make it easier to\u00a0see\u00a0the data.", "basepoints": 10.0, "slug": "creating-dot-plots", "kind": "Exercise", "name": "creating-dot-plots", "seconds_per_fast_problem": 4.0, "prerequisites": ["intro-to-simple-data"], "exercise_id": "creating-dot-plots"}, "areas_of_trapezoids_rhombi_and_kites": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/areas_of_trapezoids_rhombi_and_kites/", "id": "areas_of_trapezoids_rhombi_and_kites", "display_name": "Area of trapezoids, rhombi, and kites", "title": "Area of trapezoids, rhombi, and kites", "description": "Find areas of trapezoids, rhombi, and kites given important lengths.", "basepoints": 16.0, "slug": "areas_of_trapezoids_rhombi_and_kites", "kind": "Exercise", "name": "areas_of_trapezoids_rhombi_and_kites", "seconds_per_fast_problem": 9.0, "prerequisites": ["area_of_parallelograms", "area-of-triangles-2"], "exercise_id": "areas_of_trapezoids_rhombi_and_kites"}, "converting-between-fractions-and-percents": {"uses_assessment_items": true, "id": "converting-between-fractions-and-percents", "display_name": "Converting between fractions and percents", "title": "Converting between fractions and percents", "all_assessment_items": ["{\"sha\": \"ececc06df03f6dd2b48b4603541513159b56ce07\", \"live\": true, \"id\": \"x3b07de26f7a0be74\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b778d6e21aa7b8650ba41c27b3fd5ad87900d7e1\", \"live\": true, \"id\": \"xd1edbcae1c8ddaf1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"52ad6c7413d06cc8997e4859431c5983372868a9\", \"live\": true, \"id\": \"xe135a51438f66f81\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"08d82dd7dbeed7081bde37a0203fa51780182691\", \"live\": true, \"id\": \"xd7d71d416676682a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"97b4ada922443be9b3bc2d38a07699ac29c0e751\", \"live\": true, \"id\": \"xce728b3396382a5e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ed23b9b62b3255624577e11f3768b5e80368411b\", \"live\": true, \"id\": \"x08548adba9a0cd4b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d5ea7811c75387cf6bcc79e7f4ff5e7a3e03310\", \"live\": true, \"id\": \"xa9d5fa8c948e9f80\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48c69ab73d337f5fe59b42c509f574fbbb9b520e\", \"live\": true, \"id\": \"x523818e3683b8024\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"160d27de752c3c9e50083216e3752116a2398d16\", \"live\": true, \"id\": \"x498ff41e8210fd84\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c1ae562fbcc070b190bba8bbc7567483a65d8e14\", \"live\": true, \"id\": \"xaa97626b40f83eea\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f222ee18cdfaa73dbc65571cd32ce02112c9b59e\", \"live\": true, \"id\": \"x067ecbbe628cd6d5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fdf0f7f19170722f335067921b98abd1d6e207cb\", \"live\": true, \"id\": \"xc0f6685e4c274770\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f689adc99599f4e5ca3449695d53d1fc39710291\", \"live\": true, \"id\": \"xa047c41e4a4149f7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3e909d3e34bc19ffa1f862736076a575daa59e79\", \"live\": true, \"id\": \"x35ac50400193ddd7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2a909ad5470c165034a3f3c530983d76b2e4b781\", \"live\": true, \"id\": \"xbefd141d45f24916\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e1a387dc385bf5165045461b3d052e6fd57b92d0\", \"live\": true, \"id\": \"x6c7d9062fbb6e4ed\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"07443122ef1deb5aee5384cce7e6316b679f967e\", \"live\": true, \"id\": \"x6d5642659441956c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"49c75f9c39156c9e6bc540de3e297ff8abd5e5ec\", \"live\": true, \"id\": \"xdf27b9a322ace039\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6f119d573f16003ce9d31ca368143d759651ef53\", \"live\": true, \"id\": \"x079d735b3822b607\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7cc38be4dcd42a223ef2481fa3c22066b897f7ca\", \"live\": true, \"id\": \"xfe51f9481d772e21\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Practice writing percents as fractions and fractions as percents.", "basepoints": 10.0, "path": "converting-between-fractions-and-percents/", "slug": "converting-between-fractions-and-percents", "kind": "Exercise", "name": "converting-between-fractions-and-percents", "seconds_per_fast_problem": 4.0, "prerequisites": ["equivalent_fractions"], "exercise_id": "converting-between-fractions-and-percents"}, "the-fundamental-theorem-of-algebra": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/fundamental-theorem-of-algebra/the-fundamental-theorem-of-algebra/", "id": "the-fundamental-theorem-of-algebra", "display_name": "The fundamental theorem of algebra", "title": "The fundamental theorem of algebra", "all_assessment_items": ["{\"sha\": \"1b30b38ad834ab12b4f6d83a89a173bbcc27783e\", \"live\": true, \"id\": \"x5b503367aa47a72a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"12e6d1c5323a8ae651f02803f18564194a4b3341\", \"live\": true, \"id\": \"x65c727bb951832bb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16909f5582291988524930b5e26ac4f438715763\", \"live\": true, \"id\": \"xd9afeef1aba88adf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a0afcad7f9cdff388b1ef756ed559a4e96a90fa\", \"live\": true, \"id\": \"xa5207bfb567b1f8b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f971df1e09bd64f85512b49cf752a3c4117fd2f\", \"live\": true, \"id\": \"xb4663494c0402b67\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"01ec12eb48e30f6823d95fd373867c3918d8296a\", \"live\": true, \"id\": \"x6d44eb0d5388548d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b88bf3f6f7f13e3e2309b95120e38fad523f1d74\", \"live\": true, \"id\": \"xb2e86480a1ae04c0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f22233f4c2e0d85662f00828decb612130a70c18\", \"live\": true, \"id\": \"xbb1b0e4befedc8fa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d2caaadca51f0f32efbe88bbe8ce75b9aa853ab\", \"live\": true, \"id\": \"x0b8832071aab7a72\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"42c4ccd9728509ea8534c8dc0fe48b6f65e167ea\", \"live\": true, \"id\": \"xb0d6d02eb459cb8e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c02ad540d6d400d537e8ce3eb355bb806c83d205\", \"live\": true, \"id\": \"xc18d97551dfaf59c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4e7c52acc9c146dfadd5e8d943fde4e8e7306c16\", \"live\": true, \"id\": \"xac06bc426fcdf5d6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de61e25c98e2a02eaf6de8c60140b5527789eb83\", \"live\": true, \"id\": \"xfcc51af76ee86ffe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4aa9753028559c46e09f60dcd8db6007d38ecbad\", \"live\": true, \"id\": \"x83cbad7ea6c90f64\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"10d62065c9d2a0e22efa37972aca606282bcadf0\", \"live\": true, \"id\": \"x7ac8f8b400e2d181\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6033453572994a7646852648a6f92f06ae712c19\", \"live\": true, \"id\": \"xda58710c2b364e65\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e05f0c1331182663326678017ff7fe14a23daa5c\", \"live\": true, \"id\": \"x95e7360dcd58c20a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e97ea2464669a5fe0a0491c2f5920bf680a6769d\", \"live\": true, \"id\": \"xb5be3e8e0986da0c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d7342185169565ccf44bb6ae91e84aa4695cff9\", \"live\": true, \"id\": \"x792a286bcc2922a5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fed6c63c36ac20d15cb52f960f8173bf104a0039\", \"live\": true, \"id\": \"x52505a835a4308ab\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bd68cb17827d35bf66382c381ff3527d538d9405\", \"live\": true, \"id\": \"x70244549771911d4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"89296e5b6207155923205ad1dc4fc1f3abdf2624\", \"live\": true, \"id\": \"x3ad853ddf75ee5db\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"190ee4ee1c469233ad32a64d6572a22b06f7c052\", \"live\": true, \"id\": \"xbe2778c98b7b7514\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2db41041616a4bc21f432aa837e3a98e170bf4ba\", \"live\": true, \"id\": \"x0d5c63ff2d489fb9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"36226c37506ebc1fd646f6c86c82de303f37cc6a\", \"live\": true, \"id\": \"x2587397c868e659c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0a7a9492c2bb5547ebe200493e101900388a786d\", \"live\": true, \"id\": \"x9cac5f8a827cb683\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"62652e99753c8efaa24ec8c039eb782bfcdda024\", \"live\": true, \"id\": \"x7e0df4ce375eaa11\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4ba7d8d9fae3396e34abd64e0c1fe27332c643e6\", \"live\": true, \"id\": \"x3d65292e96227d74\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"376346ba7fd32e0ff8de0bb742fffa680affa827\", \"live\": true, \"id\": \"xeff880e29faf41b8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "the-fundamental-theorem-of-algebra", "kind": "Exercise", "name": "the-fundamental-theorem-of-algebra", "seconds_per_fast_problem": 4.0, "prerequisites": ["using-zeros-to-graph-polynomials", "remainder-theorem-of-polynomials"], "exercise_id": "the-fundamental-theorem-of-algebra"}, "understanding-place-value-1": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/order-of-operations/place_value/understanding-place-value-1/", "id": "understanding-place-value-1", "display_name": "Understanding place value", "title": "Understanding place value", "all_assessment_items": ["{\"sha\": \"2cab2d5c62f1bb6bb5067ea8ea80e51acd262c48\", \"live\": true, \"id\": \"x6f2a3e16\"}", "{\"sha\": \"9db1ff23f4752d558b1d4f4b849887f2e7df29f1\", \"live\": true, \"id\": \"x6deab38b\"}", "{\"sha\": \"931cee2ba49db0db2fd44dbaaf2493129890f65c\", \"live\": true, \"id\": \"x856918db\"}", "{\"sha\": \"72cd92f51b6f8fc88c0ae620339aa4bde73dbee2\", \"live\": true, \"id\": \"xdc8dc786\"}", "{\"sha\": \"13384ea2220ec406421a7a7dee738562928e05ea\", \"live\": true, \"id\": \"xb06bf7d4\"}", "{\"sha\": \"d88814f13daf556b21afcac9330d6a01fb963205\", \"live\": true, \"id\": \"xf2c3ad92\"}", "{\"sha\": \"0a03f7121467d43c3c1939c9ad3df16d4221c7aa\", \"live\": true, \"id\": \"xfd230e1b\"}", "{\"sha\": \"e61868d875f5f187c7b74f7eb75103c53b6f0cfd\", \"live\": true, \"id\": \"x138e9d67\"}", "{\"sha\": \"61947e5fa9f6fe5f1e214493d0f2ee2e5281b95a\", \"live\": true, \"id\": \"x0dcd385c\"}", "{\"sha\": \"58904b278f9280467a77bb5f78ae174d2b8993ee\", \"live\": true, \"id\": \"xca71bd2e\"}", "{\"sha\": \"6e996ac5347da8f7486fe4581765b691f074b855\", \"live\": true, \"id\": \"x9944c70b\"}", "{\"sha\": \"cb84f8930ad002994ba441cdf24cc0343c9d3644\", \"live\": true, \"id\": \"x0d3c7638\"}", "{\"sha\": \"2deb5fec358f52397c13ed1fc214ffb13fa74617\", \"live\": true, \"id\": \"x4fcbeb35\"}", "{\"sha\": \"56131469846c8943bb6f66c39595b8cb00d2d0db\", \"live\": true, \"id\": \"x27b7d6f7\"}", "{\"sha\": \"7d8499080c466dfdb345b36d2c569cd9eb288fbc\", \"live\": true, \"id\": \"xf84a571d\"}", "{\"sha\": \"8697a06f14a07608c1a5a50221f416cc30059436\", \"live\": true, \"id\": \"xe9b8bd30\"}", "{\"sha\": \"a73bf602de6c5eeffea1a04d8f72227f061bd0f2\", \"live\": true, \"id\": \"x545b49fa\"}", "{\"sha\": \"155aa83560b9a4a2e3fdb8e18bf09fbc9b9b9af6\", \"live\": true, \"id\": \"xc00970f0\"}", "{\"sha\": \"0fbbc1bb88469acac69e57d6b0c885e78fa4b5a2\", \"live\": true, \"id\": \"x879adf0e\"}", "{\"sha\": \"1ca9e179e2bcd74e83ba2d5ae9d9b63837ee6215\", \"live\": true, \"id\": \"x312d1975\"}", "{\"sha\": \"60bebc5d1f16f1c26355662f1b6c1c79deaeb214\", \"live\": true, \"id\": \"x0486433e\"}", "{\"sha\": \"c9d4a0c3cae8e73b33f5b726cf2db131939c9b7e\", \"live\": true, \"id\": \"x45b11737\"}", "{\"sha\": \"1933f3c109a9a20dcecf7560fb50e5eccd8f81e2\", \"live\": true, \"id\": \"x3fbc3e26\"}", "{\"sha\": \"d7db7bb692e460b802e0be623272b8d982132ea6\", \"live\": true, \"id\": \"x4be6d04b\"}"], "description": "Recognize that in a multi-digit whole number, a digit in one place represents ten times what it represents in the place to its right.", "basepoints": 17.0, "slug": "understanding-place-value-1", "kind": "Exercise", "name": "understanding-place-value-1", "seconds_per_fast_problem": 10.0, "prerequisites": ["place_value"], "exercise_id": "understanding-place-value-1"}, "decompose-fractions-with-denominators-of-100": {"uses_assessment_items": true, "id": "decompose-fractions-with-denominators-of-100", "display_name": "Decompose fractions with denominators of 100", "title": "Decompose fractions with denominators of 100", "all_assessment_items": ["{\"sha\": \"9a2877798ff177dd7940431acd4ea227a3df650f\", \"live\": true, \"id\": \"x36d4c239d861454a\"}", "{\"sha\": \"34248e64ecbba26aec472ffa652cd44c905be2cf\", \"live\": true, \"id\": \"xbbc32dd176593323\"}", "{\"sha\": \"0628593b45a384350d7f714d49f739cded0ed069\", \"live\": true, \"id\": \"xf18b90aac62f3cb5\"}", "{\"sha\": \"6acecf637fa7eb17ddd7e72d68a893b01707f861\", \"live\": true, \"id\": \"x199a80f2005ab099\"}", "{\"sha\": \"6048054beeb653d100d800d88dfbe1bebc1b96e9\", \"live\": true, \"id\": \"x78c2236a39fe72ed\"}", "{\"sha\": \"dd6fbd11f0b0e94b731d9bddce955adaf4407f01\", \"live\": true, \"id\": \"xea34de19f8c07049\"}", "{\"sha\": \"dafec888e84097a7089949008ccb97e9ba8ea107\", \"live\": true, \"id\": \"x3ba17737417629c2\"}", "{\"sha\": \"ecf96143b18dd8edabd36922ff7f1c1a2392f83a\", \"live\": true, \"id\": \"x63b79dab10cd5d7c\"}", "{\"sha\": \"6808d557d8b481f8c24c8aed42b79d973ac70df3\", \"live\": true, \"id\": \"x894fd97b9d67f808\"}", "{\"sha\": \"0ccf062e86af6db7f783d9b923d00c3583914767\", \"live\": true, \"id\": \"x927ecfbf4bc4b292\"}", "{\"sha\": \"a13639742f02bd2f0248c2459bcf7e86bf267cee\", \"live\": true, \"id\": \"x95d6e2926ff8109b\"}", "{\"sha\": \"a236bb196b8c8f441421e3dd1fcb7bed7347b3b9\", \"live\": true, \"id\": \"x46bb8701b92506b7\"}", "{\"sha\": \"bda5e19e70ab62f6750c9443445109b63103e585\", \"live\": true, \"id\": \"xc527faad9bd90b5d\"}", "{\"sha\": \"c6c8fc880d601a882c6cd75d724a25bc3e6970d7\", \"live\": true, \"id\": \"x3835b02ded7735fc\"}", "{\"sha\": \"9a2877798ff177dd7940431acd4ea227a3df650f\", \"live\": true, \"id\": \"x36d4c239d861454a\"}", "{\"sha\": \"6048054beeb653d100d800d88dfbe1bebc1b96e9\", \"live\": true, \"id\": \"x78c2236a39fe72ed\"}", "{\"sha\": \"ecf96143b18dd8edabd36922ff7f1c1a2392f83a\", \"live\": true, \"id\": \"x63b79dab10cd5d7c\"}", "{\"sha\": \"a13639742f02bd2f0248c2459bcf7e86bf267cee\", \"live\": true, \"id\": \"x95d6e2926ff8109b\"}", "{\"sha\": \"c6c8fc880d601a882c6cd75d724a25bc3e6970d7\", \"live\": true, \"id\": \"x3835b02ded7735fc\"}", "{\"sha\": \"470cdea6cb28124850db1ed66f9bdbf4303e370b\", \"live\": true, \"id\": \"x91beb2d5534a72fd\"}", "{\"sha\": \"219016c03d1c28d22da884d79388c51bf14cf7f8\", \"live\": true, \"id\": \"x6fa79866bab5997a\"}", "{\"sha\": \"ebbde31829d815b05d66a961faa058f2ce06c2f3\", \"live\": true, \"id\": \"x13ea069f824edf98\"}", "{\"sha\": \"1c4cd0d63f2b008e15c58c1413b5a4ab3654a0c0\", \"live\": true, \"id\": \"x5e78edbd50cdbeb0\"}", "{\"sha\": \"33f286964701569f2e84171015f6d55d1e40c32c\", \"live\": true, \"id\": \"x855d4c4fd54d3498\"}", "{\"sha\": \"651f7acd3d1d9b2ad973ecd579650123ade359eb\", \"live\": true, \"id\": \"x310492a1446a938d\"}"], "description": "Practice breaking apart (decomposing) some number of hundredths into tenths and hundredths.", "basepoints": 10.0, "path": "decompose-fractions-with-denominators-of-100/", "slug": "decompose-fractions-with-denominators-of-100", "kind": "Exercise", "name": "decompose-fractions-with-denominators-of-100", "seconds_per_fast_problem": 4.0, "prerequisites": ["equivalent-fractions-with-denominators-of-10-and-100"], "exercise_id": "decompose-fractions-with-denominators-of-100"}, "graphing_parabolas_2": {"uses_assessment_items": false, "path": "khan/math/algebra/quadratics/solving_graphing_quadratics/graphing_parabolas_2/", "id": "graphing_parabolas_2", "display_name": "Graphing parabolas in all forms", "title": "Graphing parabolas in all forms", "description": "Graph a parabola in vertex or standard form.", "basepoints": 29.0, "slug": "graphing_parabolas_2", "kind": "Exercise", "name": "graphing_parabolas_2", "seconds_per_fast_problem": 60.0, "prerequisites": ["graphing_parabolas_1", "vertex_of_a_parabola"], "exercise_id": "graphing_parabolas_2"}, "empirical_rule": {"uses_assessment_items": false, "path": "khan/math/probability/statistics-inferential/normal_distribution/empirical_rule/", "id": "empirical_rule", "display_name": "Empirical rule", "title": "Empirical rule", "description": "", "basepoints": 24.0, "slug": "empirical_rule", "kind": "Exercise", "name": "empirical_rule", "seconds_per_fast_problem": 28.0, "prerequisites": ["exploring_standard_deviation_1", "standard_deviation"], "exercise_id": "empirical_rule"}, "baroque-art-in-france": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/baroque-art1/france/baroque-art-in-france/", "id": "baroque-art-in-france", "display_name": "Baroque art in France (quiz)", "title": "Baroque art in France (quiz)", "all_assessment_items": ["{\"sha\": \"b94745757842adb1cda5f852d750d6ea9c55b51e\", \"live\": true, \"id\": \"x61e6414785e1261f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7f0a6edd7386f4d088048437f36a415e41308b01\", \"live\": true, \"id\": \"x7ee1f53fe6a78ce9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b776ae678310f56cfee89089fe24c5999adffb2f\", \"live\": true, \"id\": \"xae4a536defc69caf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0a76caa5564598d799e7da0dd57ddd5e2ce4456a\", \"live\": true, \"id\": \"xdf81532872329c1e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1f2515badb80cd9706f70b9b7c75996981dba6a4\", \"live\": true, \"id\": \"xea5f617fab8169cf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4bed0e90dad88e72b2c989a75ab64a79c2439682\", \"live\": true, \"id\": \"x9230da37c89239d8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"df821a516d1062e5c5dbc26aa42759d290a38826\", \"live\": true, \"id\": \"x5a3df56bcdab473f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8a7df2580af4825030febbd2fb5167307be900b8\", \"live\": true, \"id\": \"x56e69b3c5438177f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "baroque-art-in-france", "kind": "Exercise", "name": "baroque-art-in-france", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "baroque-art-in-france"}, "dividing-whole-numbers-by-unit-fractions-introduction": {"uses_assessment_items": true, "id": "dividing-whole-numbers-by-unit-fractions-introduction", "display_name": "Dividing whole numbers by unit fractions introduction", "title": "Dividing whole numbers by unit fractions introduction", "all_assessment_items": ["{\"sha\": \"fdea2f5b22128303c5925932360d9024fe75e278\", \"live\": true, \"id\": \"x1bc6c1972fb3292b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a13c9934991f5e8aa5d6859c5eddbccc739454db\", \"live\": true, \"id\": \"xba2ad89f061cb58a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cee09f43103bf039cc52b156cd07a8d42212262b\", \"live\": true, \"id\": \"x6045996b46f71170\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f0f29d5c99967f68f7a33abdb4aa65f75b8e5135\", \"live\": true, \"id\": \"xd526a9210f5ff8b2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea7074e05b0fcfb627d94e47bb402d2acff3636c\", \"live\": true, \"id\": \"x8628e5fde14b890d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dbedfe9bea5fc4be836bd66079d36e95a812e4f8\", \"live\": true, \"id\": \"x5daf3b1b41e09e17\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7497e86510b471c8c2e4f33265d8fb180d7973b1\", \"live\": true, \"id\": \"xcbf262d09d926e50\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c32a684ed5aedd3958301a54a1f583493934441a\", \"live\": true, \"id\": \"xbe13fd081089a99f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d6a388fb06dd7a1c5bd1646e761d933d6f97ed16\", \"live\": true, \"id\": \"x2a999c6ff7021e00\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c1904e3a07a0f6380db056e043154d343f81853\", \"live\": true, \"id\": \"x5fb930f1e45e3769\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9ea64b0be5ded40d78c71bf247255d6acc861921\", \"live\": true, \"id\": \"x1a1ef9038d894701\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"77a60a2f09e4145c31077056cf011b12778f8ad8\", \"live\": true, \"id\": \"x52b19b1ddb98194a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"989a25644bc8f0c742ee0a223e05549470d798b8\", \"live\": true, \"id\": \"x08013a4407e394c9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"291d1c600d9ab1ad0e68786e41cd8c1c31308cd9\", \"live\": true, \"id\": \"x48add2b074baa6ab\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d57cc0f1b80be733d951afdc31b7076be5b82b78\", \"live\": true, \"id\": \"x98aecf5879f29379\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87510c2476897b32311aba1d8e08905a6a87d086\", \"live\": true, \"id\": \"x425b0203a0422106\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"226ded52f19b2b351bb0ba35791aaef1b949e26b\", \"live\": true, \"id\": \"x86cdcc1d0655672c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6e552300d0b8a7bb49c1b5b25edb4629dae35e76\", \"live\": true, \"id\": \"xa96bac3965345831\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a73d9d59e2171a98f336dd50fc90f7a60227f027\", \"live\": true, \"id\": \"x8a37265f383fd97d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b0b4317e74887365cb2d491ae070eef04ce78b1a\", \"live\": true, \"id\": \"x108d25364ca5574d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"744a95d59966d22d9e31d3d72b2dd8672b6290ef\", \"live\": true, \"id\": \"x1fb8aaa8aa9f6aa2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Learn how to divide whole number by unit fractions with visual models.", "basepoints": 10.0, "path": "dividing-whole-numbers-by-unit-fractions-introduction/", "slug": "dividing-whole-numbers-by-unit-fractions-introduction", "kind": "Exercise", "name": "dividing-whole-numbers-by-unit-fractions-introduction", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-unit-fractions-and-whole-numbers"], "exercise_id": "dividing-whole-numbers-by-unit-fractions-introduction"}, "signs-of-sums": {"uses_assessment_items": true, "id": "signs-of-sums", "display_name": "Signs of sums", "title": "Signs of sums", "all_assessment_items": ["{\"sha\": \"4a6daaf2acc3f6c98fab3c79fe86610e51cdcd5d\", \"live\": true, \"id\": \"x2cfb19e1f429d72a\"}", "{\"sha\": \"e3b9239a60f6db85b75f256bc37d8a0f480795cc\", \"live\": true, \"id\": \"x52008ad4d73b9d7e\"}", "{\"sha\": \"a94a2253b66b9b9d4d3449436ba200476741db07\", \"live\": true, \"id\": \"xbf79a0add48b0409\"}", "{\"sha\": \"2431065a3d1eb615f5adaf547cf841f514e13b5d\", \"live\": true, \"id\": \"x542f7dfcb37ef891\"}", "{\"sha\": \"a308a0f26a4cae17bbe50608b9b0d53fbfd7907b\", \"live\": true, \"id\": \"x1ed248d2b4f14faf\"}", "{\"sha\": \"324805774d412ff8629770f33e2aab73ccd16471\", \"live\": true, \"id\": \"x2a21cc51e5afb7b3\"}", "{\"sha\": \"9919a301f72948ef9ff24d577b294154516fcac0\", \"live\": true, \"id\": \"xb34bd9efe7f7b167\"}", "{\"sha\": \"d87e4bb2d94644e1b8c07d7a6f09dab0128806ca\", \"live\": true, \"id\": \"xc93e9640551e6051\"}", "{\"sha\": \"c1fc3900f97ec0cdb23d89c1213ff1fe116d8615\", \"live\": true, \"id\": \"x30c9f05a2583d34c\"}", "{\"sha\": \"6f6e699a1211cde466bf25729c0e941da95fb948\", \"live\": true, \"id\": \"x228e4537fdb83e3d\"}", "{\"sha\": \"528cb4899346e2bfb036abcfe28770abcc106fd7\", \"live\": true, \"id\": \"xb7449dbda7ecc1b5\"}", "{\"sha\": \"4cb52351fd5fc569ef3e01f5caa711b63e935d2c\", \"live\": true, \"id\": \"x90b915cabcb0b093\"}", "{\"sha\": \"f523c591f69f66f4c574543e71e2e105f58e6303\", \"live\": true, \"id\": \"xd52bf71ae9367c1d\"}", "{\"sha\": \"e4daa32accb23cc4c5a497b862612c418e42559c\", \"live\": true, \"id\": \"xbcbbec3438c1bb2f\"}", "{\"sha\": \"6e051ca24222348ba0d4baf352c3731ae1d5ee9a\", \"live\": true, \"id\": \"x2de5af5d5a471f37\"}", "{\"sha\": \"0e7f65d8ec501a9aedc0fde0a793c3fe1317867a\", \"live\": true, \"id\": \"xa17526c1388ca227\"}", "{\"sha\": \"bad85b823092f3636f3c9b1c8ebf1f339f9abf57\", \"live\": true, \"id\": \"xad43b3277f4a4c13\"}", "{\"sha\": \"990c2fa720ed408a6811d934cbb554efd707eb25\", \"live\": true, \"id\": \"xa2d63caf8b0024eb\"}", "{\"sha\": \"7826c98c39858065d46cbf7dd70b7ea4643daebf\", \"live\": true, \"id\": \"x6c3fca6f50a7886e\"}", "{\"sha\": \"fefc0738bec977903bb251b26cb4b22c530d41c9\", \"live\": true, \"id\": \"xb68760aaf6f3ffeb\"}", "{\"sha\": \"6c3f04ab9b831ae1cba61935166cf12b1ad46925\", \"live\": true, \"id\": \"x6c7a2ee072d2ac94\"}", "{\"sha\": \"32974e7f0f57ef035040de261188dc7b263b7914\", \"live\": true, \"id\": \"x288dbfd732c8e65a\"}", "{\"sha\": \"24803d06bf193123edf1e735e69d3ebc6d8ccc09\", \"live\": true, \"id\": \"x702395873786121d\"}", "{\"sha\": \"d9a0ff44e606ac4dbc27672d62a2e254f290a75d\", \"live\": true, \"id\": \"x4b34b1186bfac3eb\"}", "{\"sha\": \"38dc227fa50dd4e48262b7cb77ad881e143118d5\", \"live\": true, \"id\": \"x4c6fec5e2617a3b9\"}", "{\"sha\": \"711f569013e968a568a18cc572c418b5e5389e3c\", \"live\": true, \"id\": \"xb2f973735c48cca9\"}", "{\"sha\": \"a9300a595d3c13365c433804fe855817ff9fbd59\", \"live\": true, \"id\": \"x56288d6c854e8a79\"}", "{\"sha\": \"9fe9ca937c97cf044c802e86a7f38c8cf5561ab2\", \"live\": true, \"id\": \"x1e06c2553e415806\"}", "{\"sha\": \"5d40b67770ff8f1869c65b7785e1883efb3ac661\", \"live\": true, \"id\": \"x19732d1c166297e7\"}", "{\"sha\": \"2d5aa27b8949ceb4543da8fdbd86743905c0ef6c\", \"live\": true, \"id\": \"x3b4b5d18352b913c\"}"], "description": "Practice determining whether the sum of two numbers is positive, negative, or zero.\u00a0", "basepoints": 10.0, "path": "signs-of-sums/", "slug": "signs-of-sums", "kind": "Exercise", "name": "signs-of-sums", "seconds_per_fast_problem": 4.0, "prerequisites": ["fractions_on_the_number_line_3"], "exercise_id": "signs-of-sums"}, "mehretu--stadia-ii-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/global-contemporary/mehretu-stadia-ii-quiz/", "id": "mehretu--stadia-ii-quiz", "display_name": "Mehretu, Stadia II (quiz)", "title": "Mehretu, Stadia II (quiz)", "all_assessment_items": ["{\"sha\": \"41efab840087e9d02db461aa9c3b009c9587f737\", \"live\": true, \"id\": \"xf9f4e190168bb175\"}", "{\"sha\": \"e2d4bd56050bf32652bf68986c3deef22d9f6550\", \"live\": true, \"id\": \"x9300e1bd0adcdc65\"}", "{\"sha\": \"bb79d84415c1645797dd1fe5569a4b6f418a84d6\", \"live\": true, \"id\": \"xb85b79186a694eb3\"}", "{\"sha\": \"61362d47e9b53069bc21f45cc58fa7b10a799339\", \"live\": true, \"id\": \"x19745edbe640ed52\"}", "{\"sha\": \"04150c08b7df4ef9826c963d8744abf00b923e0c\", \"live\": true, \"id\": \"x12af89e19d105b74\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "mehretu-stadia-ii-quiz", "kind": "Exercise", "name": "mehretu--stadia-ii-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mehretu--stadia-ii-quiz"}, "necessary-vs-sufficient-conditions": {"uses_assessment_items": true, "path": "khan/partner-content/wi-phi/critical-thinking/necessary-vs-sufficient-conditions/", "id": "necessary-vs-sufficient-conditions", "display_name": "Necessary vs sufficient conditions", "title": "Necessary vs sufficient conditions", "all_assessment_items": ["{\"sha\": \"4d8ac058f371bf9af0e1862db4e2ff662d055265\", \"live\": true, \"id\": \"xca1f7ae5e6c179bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b4bb582c07d3d25cf2a7845ce3b32be9f0bd22f\", \"live\": true, \"id\": \"x622b10afc7cbf256\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9c603a04dc7a7d1df9d7aacb781de0326ca09a43\", \"live\": true, \"id\": \"xa3473d593ce8e7ba\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e97799b5050aab9f4e5db9d9b06fbb50fbb74a81\", \"live\": true, \"id\": \"x5ec26aa2d9b7c437\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"966830b77ba1b6e66a57cde2abd81b513d6f88e1\", \"live\": true, \"id\": \"xd19b450df6e3da1a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0d5e287febc4b3627f81bf8a72b74850a9aa7464\", \"live\": true, \"id\": \"x5d77a3b97b7163e5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16643ecff8f89a27a268a196c72a5a78a5bad259\", \"live\": true, \"id\": \"xff0a445c641d7032\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6f7530d22fe8edf6795b3c844ba480901f3aca49\", \"live\": true, \"id\": \"x4afbe1f91e773526\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cd3b720290a14254e2e378dee8a9ee4abf46d88a\", \"live\": true, \"id\": \"xf11643f6c3cf6ceb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"dcec2566c03ce45017b60c9af9ee9e2e2603fc6a\", \"live\": true, \"id\": \"xfb2470c91f62f7f9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"adce86966daed52477ebda7345435a6f29efd46a\", \"live\": true, \"id\": \"x6c3c0b3583cfb3f1\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"4815ef48afb5962c5445718c239dcd71080c6f19\", \"live\": true, \"id\": \"xa22472e768a8f6e8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"99a1c6284e0ec5e21d2b650984b21cb5579c2ed8\", \"live\": true, \"id\": \"x616e5e5fc440f61d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"de5a8c0200f184a2df7336ebdb8274456bcf34b1\", \"live\": true, \"id\": \"x8e385c4d127cf916\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"be28182cf64d5ee3cdbfd869664ccc8cf083fd23\", \"live\": true, \"id\": \"xa3c3fb9ec7b1b031\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a33b2e6f8450d3228b1fd93062a5991bf6c30990\", \"live\": true, \"id\": \"xfa4b5a00e64d31e6\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}"], "description": "Test your knowledge of the distinction between necessary and sufficient conditions!", "basepoints": 10.0, "slug": "necessary-vs-sufficient-conditions", "kind": "Exercise", "name": "necessary-vs-sufficient-conditions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "necessary-vs-sufficient-conditions"}, "telling-time-word-problems-with-the-number-line": {"uses_assessment_items": true, "id": "telling-time-word-problems-with-the-number-line", "display_name": "Telling time word problems with the number line", "title": "Telling time word problems with the number line", "all_assessment_items": ["{\"sha\": \"c6b36a19dbc0ebd967cb7d25c9ef3d53b5516375\", \"live\": true, \"id\": \"x02fa5afdff8409bb\"}", "{\"sha\": \"5623b1019dbd04c8d82080f55dd2a07aa624d57c\", \"live\": true, \"id\": \"x4b349f292aecbe91\"}", "{\"sha\": \"20a94b5ae6ea92603823524c7acc158d2b0431d4\", \"live\": true, \"id\": \"x74c1f7046e025632\"}", "{\"sha\": \"c1376fd9636480d0c4fee7fad58bbc47f8f60e9d\", \"live\": true, \"id\": \"x5e5eaf84a0337016\"}", "{\"sha\": \"80c5b048aafec23852177e256d41b79da6588f47\", \"live\": true, \"id\": \"x08ac51c02ccc7ffd\"}", "{\"sha\": \"2ec04f769575a06101123e37c9b70aeb4c1bfb73\", \"live\": true, \"id\": \"x5232a2d7c193f8cb\"}", "{\"sha\": \"f0606342316362a4e2ffd0cca80ca5b96fd621a9\", \"live\": true, \"id\": \"x874af41163c40b5f\"}", "{\"sha\": \"01d0486086070899ef2eec95c9ce395890b11a6a\", \"live\": true, \"id\": \"x03f9a91b20c98c28\"}", "{\"sha\": \"e014aa6a8cb2f1525a3f890c458d4d4550c8fced\", \"live\": true, \"id\": \"x15aa8b5079b0e878\"}", "{\"sha\": \"032fbf7c4c098dab8dedfc131cfafd91cd897b3c\", \"live\": true, \"id\": \"x94fdaa9a37435be9\"}", "{\"sha\": \"f6445f88aef1ebdeaef2ca046e1b5592276bef07\", \"live\": true, \"id\": \"x523eb9e68548b8aa\"}", "{\"sha\": \"a7e753317c032adf246f90eb9827a302c22d1dce\", \"live\": true, \"id\": \"x5013c0d5df8e2a06\"}", "{\"sha\": \"4772d12dd1f53337fbef371edac289060966dac0\", \"live\": true, \"id\": \"x8faa841fb0d9a2a3\"}", "{\"sha\": \"937e04bbcc33ed584f7a6738397ffef85f0b1ab2\", \"live\": true, \"id\": \"x4c55fb4de0ece9b0\"}", "{\"sha\": \"7304b3beee879cba700980e397dfcc05831b9c75\", \"live\": true, \"id\": \"xc16e438de2ff9731\"}", "{\"sha\": \"09496b770c31b0b660a027116ea69da328cc973f\", \"live\": true, \"id\": \"x3ca724458151cfb9\"}", "{\"sha\": \"99cc7503334ec0150348621cea45914e17f107af\", \"live\": true, \"id\": \"x76c148299acd5c1f\"}", "{\"sha\": \"19d4e4dbb33f3ba889ce0a8a63f8aa7418857634\", \"live\": true, \"id\": \"x8f5feb9196898c73\"}", "{\"sha\": \"8ceb33dfb72393b4244ff24835dec9cf1ebdc560\", \"live\": true, \"id\": \"xefe54ba7e239e018\"}", "{\"sha\": \"272611e36faefc0857fe29257594d660119e9e6b\", \"live\": true, \"id\": \"xe40e84953b1728e3\"}", "{\"sha\": \"ad8d33855d8faec563de08ef417c4d4147659be5\", \"live\": true, \"id\": \"xa1edd14fd4a39fec\"}", "{\"sha\": \"eff8175d44da5e1db1b61a5678197e2eed4f3391\", \"live\": true, \"id\": \"xd87280e088b2eb0e\"}", "{\"sha\": \"f88d176247dc11b0521b3f00bc39775fb902c420\", \"live\": true, \"id\": \"xf5f1434c71a43762\"}", "{\"sha\": \"5ffddd81941eb4bf73dd01b7260430aad182b1db\", \"live\": true, \"id\": \"x7bf8c5d2dfdbe970\"}", "{\"sha\": \"d30841003aab9893a74a271bc371c9a5168e3aad\", \"live\": true, \"id\": \"x6f8a5afac7302236\"}", "{\"sha\": \"12ee1d423475583757db78a333d89ea585718af2\", \"live\": true, \"id\": \"xe93a69daf6e20df7\"}", "{\"sha\": \"3bfc4ec7503b73d81eb40a0b7ba67c561c630b2a\", \"live\": true, \"id\": \"xb44b304064a5e985\"}", "{\"sha\": \"2efe9a2da306665467ff3d335d38af896b047fd7\", \"live\": true, \"id\": \"x0ba9b3c6c7cfa613\"}", "{\"sha\": \"9f9c1917fd25572a2c02cd36b32a374c45906134\", \"live\": true, \"id\": \"x7e798b5c312cc487\"}", "{\"sha\": \"b3a9375d21f60eb7575f3dd8d7b4cdfef1083a1c\", \"live\": true, \"id\": \"x10c010398b92caf6\"}"], "description": "Use a number line to tell time and find the duration of an event.", "basepoints": 10.0, "path": "telling-time-word-problems-with-the-number-line/", "slug": "telling-time-word-problems-with-the-number-line", "kind": "Exercise", "name": "telling-time-word-problems-with-the-number-line", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "telling-time-word-problems-with-the-number-line"}, "divisibility_intuition": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/factors-multiples/divisibility_and_factors/divisibility_intuition/", "id": "divisibility_intuition", "display_name": "Divisibility intuition", "title": "Divisibility intuition", "description": "Identify all positive factors of a one or two-digit number.", "basepoints": 15.0, "slug": "divisibility_intuition", "kind": "Exercise", "name": "divisibility_intuition", "seconds_per_fast_problem": 8.0, "prerequisites": ["division_1"], "exercise_id": "divisibility_intuition"}, "square_roots_2": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/exponents-radicals/radical-radicals/square_roots_2/", "id": "square_roots_2", "display_name": "Approximating square roots", "title": "Approximating square roots", "all_assessment_items": ["{\"sha\": \"61ca384a944192ed4b1487eecd6e335f7d755486\", \"live\": true, \"id\": \"xed73a11c23a0ecf2\"}", "{\"sha\": \"d3339851208602d729b8c91019ca7dc9f58e2d7e\", \"live\": true, \"id\": \"x97f789fac00dc41f\"}", "{\"sha\": \"71242f3e7ebc027b355d62fa5e5f42b4dd5c56d5\", \"live\": true, \"id\": \"xad92e31f7d5a8711\"}", "{\"sha\": \"c275f360eff13aca6656e44d4c681279325fa6b3\", \"live\": true, \"id\": \"x276373e86498aa87\"}", "{\"sha\": \"5efe810b428b212c20550d11b303a0e99b515407\", \"live\": true, \"id\": \"x818f7b304baef8e3\"}", "{\"sha\": \"90b683497616cd028f6f42a48cbc403920fe403c\", \"live\": true, \"id\": \"x7635905b92880200\"}", "{\"sha\": \"11fff044566faa1e2e20ecc23b9f8f1ad36d388a\", \"live\": true, \"id\": \"x60cd51423f7d2397\"}", "{\"sha\": \"4c9ed0d3d778668aeec128297d52d7d92f5e6a05\", \"live\": true, \"id\": \"xca7678655fc6fcb1\"}", "{\"sha\": \"d9a32c0729c59a74b11bebcd9ec5d63ec71be62a\", \"live\": true, \"id\": \"xe20f0948c485c8a4\"}", "{\"sha\": \"424da9e1d8f764dc18973a2e9ef0634903b83a6f\", \"live\": true, \"id\": \"x7dae63292a716b32\"}", "{\"sha\": \"e5c7326d0e3ca27b1f0fbd820ce49fbdb5efc844\", \"live\": true, \"id\": \"x3bcba1cfe55582aa\"}", "{\"sha\": \"efba2c79a0356da015080742f2d65d94481aacf6\", \"live\": true, \"id\": \"xdb7fc7292a921740\"}", "{\"sha\": \"3a71e1c3991e9d1263285a865a63a54adb30e00a\", \"live\": true, \"id\": \"x001ec9fb67f04066\"}", "{\"sha\": \"811253f00d990671eb8d4e0450a9d1c5cded152f\", \"live\": true, \"id\": \"x6d336ca47a37f290\"}", "{\"sha\": \"409430becb68cd80f41b41de90aeb910c0034fac\", \"live\": true, \"id\": \"x9c626df6704f9b1b\"}", "{\"sha\": \"d015edc2bc594c9d0bcf30957b48e1b020fdb7a1\", \"live\": true, \"id\": \"xdb5f9079dd7d52cb\"}", "{\"sha\": \"cc2cbfda904e446d692af35f3bd4d1fc2239ee65\", \"live\": true, \"id\": \"x4fccd52eac6f3a79\"}", "{\"sha\": \"9208223b22297e6a4513b4d5757f4cd694851d42\", \"live\": true, \"id\": \"x3c8ac05af24310d2\"}", "{\"sha\": \"e5a2c4f88bd31e632c44fef464c991cc3649bc30\", \"live\": true, \"id\": \"xc1a453811dfecc89\"}", "{\"sha\": \"65ca721669a06020358db3990be4f2261f910729\", \"live\": true, \"id\": \"x4e4a771ae5198dd9\"}", "{\"sha\": \"e182fdbb2ee385efacf1ecbc6a1dd04daf764b6f\", \"live\": true, \"id\": \"x87a4def5debe1484\"}", "{\"sha\": \"c9a76894d4158e285b9618783849ab14c0944001\", \"live\": true, \"id\": \"xea77a1c42e3bedfc\"}", "{\"sha\": \"5ea731052a36fad2ce61b4ca523fec4c71e11a3e\", \"live\": true, \"id\": \"xd3c986cde61e7766\"}", "{\"sha\": \"b158752512fea6296c3fe51f2dae6e599fff9637\", \"live\": true, \"id\": \"xb4ec8e8e23142c03\"}"], "description": "Practice finding the approximate value of square roots by thinking about perfect squares.", "basepoints": 15.0, "slug": "square_roots_2", "kind": "Exercise", "name": "square_roots_2", "seconds_per_fast_problem": 8.0, "prerequisites": ["square_roots"], "exercise_id": "square_roots_2"}, "watteau--pilgrimage-to-cythera": {"uses_assessment_items": true, "path": "khan/humanities/monarchy-enlightenment/rococo/watteau-pilgrimage-to-cythera/", "id": "watteau--pilgrimage-to-cythera", "display_name": "Watteau, Pilgrimage to Cythera", "title": "Watteau, Pilgrimage to Cythera", "all_assessment_items": ["{\"sha\": \"59b4d5f6f32554ca53aa3332d036cef09bd2188c\", \"live\": true, \"id\": \"x8d3d28c44d4f662e\"}", "{\"sha\": \"46248fca4325909182570e03720deb0c73b1ecd1\", \"live\": true, \"id\": \"x0e4f8840bbbff16d\"}", "{\"sha\": \"1daf083b49edb84f569d6805719b369ed1ac679c\", \"live\": true, \"id\": \"x4450273179136948\"}", "{\"sha\": \"86abe2e99466bd497c637a90095e7c9ec12475c5\", \"live\": true, \"id\": \"x1be983b28ad36596\"}", "{\"sha\": \"43f7cb547bced4c85d009d0ab0ff74ef872da345\", \"live\": true, \"id\": \"x8e0a4a67b7a032ac\"}", "{\"sha\": \"7c15a1e61ba1c8e1d805ee8a474e0ea082996174\", \"live\": true, \"id\": \"xe6b0dac826cc0799\"}"], "description": "Test your knowledge on this object.", "basepoints": 10.0, "slug": "watteau-pilgrimage-to-cythera", "kind": "Exercise", "name": "watteau--pilgrimage-to-cythera", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "watteau--pilgrimage-to-cythera"}, "dada--quiz": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/wwi-dada/dada1/dada-quiz/", "id": "dada--quiz", "display_name": "Dada (quiz)", "title": "Dada (quiz)", "all_assessment_items": ["{\"sha\": \"66638028aca4f45be61ad5d54f5d34318731de29\", \"live\": true, \"id\": \"xf1e248af9248a354\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"933e3e413c3c1c2caedba0fb0e466625748b1e66\", \"live\": true, \"id\": \"xb6b26b94c05b1415\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90c12af83145237be4d171993f51561e1c36bf27\", \"live\": true, \"id\": \"x849c972f1c82341f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5fdead974214aef85167e785ad3b97f93ab30bee\", \"live\": true, \"id\": \"xc3a5e993e4317396\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c88da0afac256c3b61497faf8cea2974e15a0f6d\", \"live\": true, \"id\": \"xe47fd0d904285384\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ccad11c2cb82e5ee470961d31132e998bdca66c0\", \"live\": true, \"id\": \"xe86512f04ddb1f1a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "dada-quiz", "kind": "Exercise", "name": "dada--quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "dada--quiz"}, "dividing_fractions_0.5": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-fractions/dividing_fractions_05/", "id": "dividing_fractions_0.5", "display_name": "Dividing unit fractions by whole numbers", "title": "Dividing unit fractions by whole numbers", "description": "Divide a unit fraction by a whole number.", "basepoints": 13.0, "slug": "dividing_fractions_05", "kind": "Exercise", "name": "dividing_fractions_0.5", "seconds_per_fast_problem": 6.0, "prerequisites": ["dividing-fractions-by-whole-numbers-introduction"], "exercise_id": "dividing_fractions_0.5"}, "solving-problems-with-picture-graphs-2": {"uses_assessment_items": true, "id": "solving-problems-with-picture-graphs-2", "display_name": "Solving problems with picture graphs 2", "title": "Solving problems with picture graphs 2", "all_assessment_items": ["{\"sha\": \"59beaede6b53d8bb191e54dcbeba61fe01a664cb\", \"live\": true, \"id\": \"xecf3fb981161545f\", \"perseus_api_major_version\": null}", "{\"sha\": \"e2c348e4012ca9602de75330b2cf859ee2c340ea\", \"live\": true, \"id\": \"x22603b5061246c8b\", \"perseus_api_major_version\": null}", "{\"sha\": \"2f90473e51936723499baab7fd3352b74ec681cd\", \"live\": true, \"id\": \"xf81617d7197ad08e\", \"perseus_api_major_version\": null}", "{\"sha\": \"56a187331f4c5e66dadf3e42375b33c5cfbe1256\", \"live\": true, \"id\": \"x26848f1a5e7dc6cc\", \"perseus_api_major_version\": null}", "{\"sha\": \"d40c33a5984ad7bb286247a2d26ab0bcb8062da4\", \"live\": true, \"id\": \"x3013377f1a66d454\", \"perseus_api_major_version\": null}", "{\"sha\": \"ff20cbf38c49893c8761f1db48d73734320aa364\", \"live\": true, \"id\": \"x0384526661bc87ec\", \"perseus_api_major_version\": null}", "{\"sha\": \"9e7f82830c85f42e3d1986fdb7add2dcfee99917\", \"live\": true, \"id\": \"xa5ef9bc02c72b9cb\", \"perseus_api_major_version\": null}", "{\"sha\": \"6b321e80d2529677a6431d98c3d92cd36b6613df\", \"live\": true, \"id\": \"xe2f7201afb3a887d\", \"perseus_api_major_version\": null}", "{\"sha\": \"14100909361c039cb6b65eddfe3a24ebbb1ca171\", \"live\": true, \"id\": \"xf5a5e9e9d69dff68\", \"perseus_api_major_version\": null}", "{\"sha\": \"82b954261391b051dc4cb3751a9eeb06011db2d2\", \"live\": true, \"id\": \"x9144dbd185e038ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"b3ffba45c112e82a361e16f4b8f5a5471effe1c5\", \"live\": true, \"id\": \"x71fd6dbfdfb1487c\", \"perseus_api_major_version\": null}", "{\"sha\": \"21e3df0b2d2177ae94da068849f4ea131fc9fe6c\", \"live\": true, \"id\": \"xee1e6b0f1afe3368\", \"perseus_api_major_version\": null}", "{\"sha\": \"5c22d9c32a6511dc35cbd4fd3ea5e478cebe6bee\", \"live\": true, \"id\": \"x254e530d48695dde\", \"perseus_api_major_version\": null}", "{\"sha\": \"acf7cbff6408f3e595a2fc79c63b195265643fc2\", \"live\": true, \"id\": \"x7c607c24e9ddcdab\", \"perseus_api_major_version\": null}", "{\"sha\": \"baaf78f86d5a20c03be6b5e13740cc30f922e098\", \"live\": true, \"id\": \"x0d9f118fad7a9562\", \"perseus_api_major_version\": null}", "{\"sha\": \"2a02a71d62a066cd68ff2d43648532c6a1ee3441\", \"live\": true, \"id\": \"x4a06d3a9f68dcb8b\", \"perseus_api_major_version\": null}", "{\"sha\": \"c49df3243cbc22896ce5a01aac86f0ade6652c3c\", \"live\": true, \"id\": \"x9d55e27f2b38a5c6\", \"perseus_api_major_version\": null}", "{\"sha\": \"4a70b7a441b69cd1964c4e3627c53d2ce949f047\", \"live\": true, \"id\": \"xb2bbf2c085eb12af\", \"perseus_api_major_version\": null}", "{\"sha\": \"ad003a0398a9a5704d0ca8e4c77fbe4424088654\", \"live\": true, \"id\": \"x2b761c0d7b5079f3\", \"perseus_api_major_version\": null}", "{\"sha\": \"03481faf0d4f10e5c1e81177401f61d827d593d7\", \"live\": true, \"id\": \"x78fadb2656fee69d\", \"perseus_api_major_version\": null}"], "description": "Use picture graphs to solve word problems.", "basepoints": 10.0, "path": "solving-problems-with-picture-graphs-2/", "slug": "solving-problems-with-picture-graphs-2", "kind": "Exercise", "name": "solving-problems-with-picture-graphs-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_0.5"], "exercise_id": "solving-problems-with-picture-graphs-2"}, "types-of-statistical-studies": {"uses_assessment_items": true, "path": "khan/math/probability/statistical-studies/types-of-studies/types-of-statistical-studies/", "id": "types-of-statistical-studies", "display_name": "Types of statistical studies", "title": "Types of statistical studies", "all_assessment_items": ["{\"sha\": \"e7dd64829fbd29270dc7964f4a728b5fc137bb92\", \"live\": true, \"id\": \"x369f08940d7fefa8\"}", "{\"sha\": \"33bb49ff98a6a00d63078dfef0dda94c5b2825f7\", \"live\": true, \"id\": \"xf662365304a0342e\"}", "{\"sha\": \"3180ec8e8b2e1dbece3c5ae3ffcb371d3aac7cc3\", \"live\": true, \"id\": \"x964fa1a5b0a867e5\"}", "{\"sha\": \"43156d385598bd2fbb380edde1e1deb29b042d99\", \"live\": true, \"id\": \"x9df68b97ea147915\"}", "{\"sha\": \"401241784eb6e68110b8e7f6a964839dc890de92\", \"live\": true, \"id\": \"xdb8bec2b7351d2f2\"}", "{\"sha\": \"9d915cae2e3f893e19abc36f9b15aed86159853f\", \"live\": true, \"id\": \"xa2f3bec2b1e0fead\"}", "{\"sha\": \"a6e7046fa4a7283910bdf122e93695999ab7ffa9\", \"live\": true, \"id\": \"x284858950baba83a\"}", "{\"sha\": \"bd77c96a105294f8cfb2f8dac96ba77b01edaf3e\", \"live\": true, \"id\": \"x7289d1b160093568\"}", "{\"sha\": \"22e15db29a1e304962039228186d25b8bad946ef\", \"live\": true, \"id\": \"x879377283df9a86f\"}", "{\"sha\": \"a01350265fc150ec0509fcd258566f2f36cdc445\", \"live\": true, \"id\": \"x71febdf5a4673bfc\"}", "{\"sha\": \"ca93ba5ec9efd8cf3615418495008f9cc8cc9764\", \"live\": true, \"id\": \"xaac72c2183aba97d\"}", "{\"sha\": \"e885ba88f85ad49c5e0df670209c9d13542e3a5a\", \"live\": true, \"id\": \"xb2e9dd2fd2fbcb12\"}", "{\"sha\": \"8ce9d8559bff41caeaab5cafaa4694e6d4b11aac\", \"live\": true, \"id\": \"xd69db897d46a9c74\"}", "{\"sha\": \"413e43a0f502a923e046c3e73c2c2c96a4ef872e\", \"live\": true, \"id\": \"xf2cbb33c0bc3c803\"}", "{\"sha\": \"4a268f8eba899a38c888130e5923804ad9479fd8\", \"live\": true, \"id\": \"x5730506aaaf10ba3\"}", "{\"sha\": \"d3604d55b53fae0177ad89f25d77ba0879c8c07d\", \"live\": true, \"id\": \"xaeeae9dd2a3b7c1a\"}", "{\"sha\": \"d66c91a96def06cdb9e683ec747579f99ee0ef09\", \"live\": true, \"id\": \"x0dac5127e0471cfc\"}", "{\"sha\": \"d3062a2dc5cb17e59928a4452f3ba5e95e4ea1bc\", \"live\": true, \"id\": \"xbdea0015797809e4\"}", "{\"sha\": \"95c704606732072195ddda491cf67b07611310d2\", \"live\": true, \"id\": \"x605910362ac108a9\"}", "{\"sha\": \"b3ba4fff07882cbf691e78ce2d3f110b0a239745\", \"live\": true, \"id\": \"x564cb3a4b2a15583\"}", "{\"sha\": \"c621f0739fac2c096b9f007b4da15b85a99756c0\", \"live\": true, \"id\": \"x1d64ffbc13afe632\"}", "{\"sha\": \"6fce0abf569037248101aac6f7402d93790ed2c3\", \"live\": true, \"id\": \"x6ca9d07053c8ba6f\"}", "{\"sha\": \"caf00049a22d3f16b022d9fa06219ba9b48780ed\", \"live\": true, \"id\": \"x5a5607546669dd97\"}", "{\"sha\": \"8074d31afa3778554add03963c892954c1dcff27\", \"live\": true, \"id\": \"x1033cb0e76e6670d\"}", "{\"sha\": \"ce7ae70b9a15a24c21c3a6e502a1be4ebd334db4\", \"live\": true, \"id\": \"xadfc27135811299a\"}", "{\"sha\": \"5eba8dd74cb75a013195e3881ebd52768bbe03c1\", \"live\": true, \"id\": \"x50444f443304d171\"}", "{\"sha\": \"0603fba193db9ee89da81c37374f9adf97beb47a\", \"live\": true, \"id\": \"x59d82507b3e14595\"}", "{\"sha\": \"ebaa9becb4c7aa80db552b1a2f2a3cfe6a6fcd42\", \"live\": true, \"id\": \"xed846a1effed1484\"}", "{\"sha\": \"f4737f8846962bb94c8f1227d7da447e1949ae66\", \"live\": true, \"id\": \"xf46d3f9cc4347a82\"}", "{\"sha\": \"b163e44eef6a63e5d78b6071b9565d8913bb9d5b\", \"live\": true, \"id\": \"x8a95c4f8e6b09ad9\"}"], "description": "", "basepoints": 10.0, "slug": "types-of-statistical-studies", "kind": "Exercise", "name": "types-of-statistical-studies", "seconds_per_fast_problem": 4.0, "prerequisites": ["mean_median_and_mode"], "exercise_id": "types-of-statistical-studies"}, "solving-problems-with-picture-graphs-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-picture-graphs/solving-problems-with-picture-graphs-1/", "id": "solving-problems-with-picture-graphs-1", "display_name": "Solving problems with picture graphs 1", "title": "Solving problems with picture graphs 1", "all_assessment_items": ["{\"sha\": \"034f95f0a349bfbbdd82e76d29834e3a98ede9f8\", \"live\": true, \"id\": \"x6d028d0b5bd3d86f\"}", "{\"sha\": \"3941d1d061aeb1f806d32a26b2d137d10c3c255c\", \"live\": true, \"id\": \"x7c73439ab6dabde1\"}", "{\"sha\": \"10d92dc5558daaea4cecbc25790a4ef20194a7c8\", \"live\": true, \"id\": \"x803b6bbd79e87808\"}", "{\"sha\": \"fa9c7fe3aba7292fd96ed4c43a071cdc3fc38fdf\", \"live\": true, \"id\": \"x12f67935880a1587\"}", "{\"sha\": \"5ebc9c3fb7ce3b17f0debfe0fe0959f8ec163344\", \"live\": true, \"id\": \"x30bd9b518d95f343\"}", "{\"sha\": \"9e546dca2f4bd38ea798df1cae8b4fb085593f91\", \"live\": true, \"id\": \"x7b62f0f2bfac989c\"}", "{\"sha\": \"ee0f123ce435eec460719c719b7d469ab1530bd4\", \"live\": true, \"id\": \"xd370d20fba412ed7\"}", "{\"sha\": \"e397963577cec2c3141d07a65160b4d20d8bdabf\", \"live\": true, \"id\": \"xce418da045da08ea\"}", "{\"sha\": \"cedbb254a965fe4b17c9c56eed50e131d8839ab9\", \"live\": true, \"id\": \"x00ea8753f5478e04\"}", "{\"sha\": \"ed5806567585aa78dfe8ef7949a90a04ecfa89e6\", \"live\": true, \"id\": \"xd008169c9302b410\"}", "{\"sha\": \"5f641d672457f3901f94d1da921ad5bd8eedcf6c\", \"live\": true, \"id\": \"x216ba4c1a60ea443\"}", "{\"sha\": \"2d74ad850e7b7435eea21620ef569ff32486cf57\", \"live\": true, \"id\": \"x47e49cd1f4c58df7\"}", "{\"sha\": \"2018f8127b9ef14ed8983cad823c122560b78672\", \"live\": true, \"id\": \"x1c84c1fa56ecd795\"}", "{\"sha\": \"18b4d5c94ef11be943802effb9a60250867794be\", \"live\": true, \"id\": \"xcd99a819d022fa64\"}", "{\"sha\": \"e257e913d3153fe5b0d887a55ada625670d354ce\", \"live\": true, \"id\": \"x0de5a529de99fb34\"}", "{\"sha\": \"dbb9c6d0f236a266c92741d3c4f42434132014ba\", \"live\": true, \"id\": \"x9a72c4f74d2ecd69\"}", "{\"sha\": \"902e58751d88e3179d0a8dab6dc4ac57c6a57ded\", \"live\": true, \"id\": \"x7bfcb0976b690fb9\"}", "{\"sha\": \"469c16810ff20cc91f05f6be1029bc8922f8f031\", \"live\": true, \"id\": \"xd906e6a8e22ea7c3\"}", "{\"sha\": \"f6a8e7f146241c3b2ce82a06c71deaaa7e438519\", \"live\": true, \"id\": \"x952746f45655627a\"}", "{\"sha\": \"daf003e45b12d95f237fe892d821c391e3e9ad93\", \"live\": true, \"id\": \"xac11c865340da221\"}"], "description": "Read and interpret picture graphs.", "basepoints": 10.0, "slug": "solving-problems-with-picture-graphs-1", "kind": "Exercise", "name": "solving-problems-with-picture-graphs-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_2"], "exercise_id": "solving-problems-with-picture-graphs-1"}, "brown-adipose-tissue-and-metabolism-passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/brown-adipose-tissue-and-metabolism-passage-2/", "id": "brown-adipose-tissue-and-metabolism-passage-2", "display_name": "Pancreatitis and pancreatic cells", "title": "Pancreatitis and pancreatic cells", "all_assessment_items": ["{\"sha\": \"b5624cfb1aeda54f43c780a475d0990bed27404b\", \"live\": true, \"id\": \"x6ce9acc3b6004271\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"740d79d562c4313ccc9f90faf6f2c232bfc00510\", \"live\": true, \"id\": \"x3e151cecf1733903\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f04d6053285f05583cd1011ce2c26e7d654f6107\", \"live\": true, \"id\": \"x7b4c15e1aceed953\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e8ed54be8b4dcae393c3ca76bfa0d896dc031705\", \"live\": true, \"id\": \"xa974865987ea9cc8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e8cae4bab255ed25eda71735c1a7bbdd25704ce2\", \"live\": true, \"id\": \"x426e33f7655d62cc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Brown adipose tissue and metabolism passage 1", "basepoints": 10.0, "slug": "brown-adipose-tissue-and-metabolism-passage-2", "kind": "Exercise", "name": "brown-adipose-tissue-and-metabolism-passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "brown-adipose-tissue-and-metabolism-passage-2"}, "arc-length-of-functions-in-one-variable": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/solid_revolution_topic/arc-length/arc-length-of-functions-in-one-variable/", "id": "arc-length-of-functions-in-one-variable", "display_name": "Arc length of functions in one variable", "title": "Arc length of functions in one variable", "all_assessment_items": ["{\"sha\": \"b254382478e9e82800cad8828d6fcb29eaafffa2\", \"live\": true, \"id\": \"x4c3ac3be64e46581\"}", "{\"sha\": \"4642d6afe8b6151f60a47a18ec18e2aa2f5c2ef1\", \"live\": true, \"id\": \"xc50982eaf1ceb27f\"}", "{\"sha\": \"58082cf412c245a81215759644172185c9254ac0\", \"live\": true, \"id\": \"xc18b049d0f765c76\"}", "{\"sha\": \"733688465af4de277dad5324da492f259d70df87\", \"live\": true, \"id\": \"x108bff73dd0864c5\"}", "{\"sha\": \"a25d82ade9bd7b8e0e5b31445b5159742c5e928e\", \"live\": true, \"id\": \"x0c3fba243f8a851b\"}", "{\"sha\": \"bd108c9e6fe6f50296d199b103c39d42407fb9e5\", \"live\": true, \"id\": \"xc7005408adf5438a\"}", "{\"sha\": \"ece33b2e57d27b181f1aaca5f349c4e32486d75f\", \"live\": true, \"id\": \"xc826c6478cac31c3\"}", "{\"sha\": \"22705b2c479abf9d609c5728904069861a6ac08b\", \"live\": true, \"id\": \"x036604d409424e13\"}", "{\"sha\": \"1f0f431ef89d60454f58317659cfc9f33cafc8d3\", \"live\": true, \"id\": \"x31c05406f04b40c9\"}", "{\"sha\": \"27756ee8670db53144457d4e2916742cfee9325e\", \"live\": true, \"id\": \"x3221081c5d7b028e\"}", "{\"sha\": \"862204139c041ee5b41917181bec25536dff869e\", \"live\": true, \"id\": \"x16ec83ed0fc0da91\"}", "{\"sha\": \"7a258108b8ddddad652eb97b3504d83cbea568e2\", \"live\": true, \"id\": \"x1a23eafe20a95b93\"}", "{\"sha\": \"9bdf6b7c9ef85fc522a172ac4b92febcf358b8bb\", \"live\": true, \"id\": \"x26685f23616f2448\"}", "{\"sha\": \"6611887d226f2b0e33762226356b43bb063731d7\", \"live\": true, \"id\": \"x795229b721c64830\"}", "{\"sha\": \"2c0c42045d196db0cf6aa71cdb0f76d9f17eb66c\", \"live\": true, \"id\": \"x5c4ffd889eee7e5c\"}"], "description": "", "basepoints": 10.0, "slug": "arc-length-of-functions-in-one-variable", "kind": "Exercise", "name": "arc-length-of-functions-in-one-variable", "seconds_per_fast_problem": 4.0, "prerequisites": ["integration-using-trigonometric-substitution"], "exercise_id": "arc-length-of-functions-in-one-variable"}, "volume-word-problems-1": {"uses_assessment_items": true, "id": "volume-word-problems-1", "display_name": "Arithmetic word problems with volume", "title": "Arithmetic word problems with volume", "all_assessment_items": ["{\"sha\": \"cb18e2a6a2a080473a636e02c0302b9e761cb78c\", \"live\": true, \"id\": \"x51344ea4511430cd\"}", "{\"sha\": \"d04e5a79dfb824118891a22febafecafc5bf3183\", \"live\": true, \"id\": \"x0776ae5120ff0228\"}", "{\"sha\": \"27e4a1e2e72f70eaa6d04d5fb797a82ffcec9deb\", \"live\": true, \"id\": \"xda7092c90b01f53f\"}", "{\"sha\": \"7f4cb977025728ddecaa38fee3d6ea0f97a211d3\", \"live\": true, \"id\": \"xd101e698e93ea428\"}", "{\"sha\": \"4981ddce082f17ce4ebd1c7dc9ea953d8479168f\", \"live\": true, \"id\": \"x3dc8951573fb583a\"}", "{\"sha\": \"1df23d6e29b72bf7d854d72cd4ff1b3bc13f93fb\", \"live\": true, \"id\": \"x72eacad26cb907f3\"}", "{\"sha\": \"ee466a0c04a0f2f66ba81b13478bc6ecf0d7674e\", \"live\": true, \"id\": \"x9ab1d5978ca47b16\"}", "{\"sha\": \"fc8cdee096fe741a89f54e9c9eb1bc3d96a10476\", \"live\": true, \"id\": \"x58a64d8018228395\"}", "{\"sha\": \"b7d7287e2546ede738ecbed6f96ebe1fcda862a0\", \"live\": true, \"id\": \"x89e2c192beb54253\"}", "{\"sha\": \"a1dc61538ab7d4b43a8f62ca35fb22b129507348\", \"live\": true, \"id\": \"xd7b32ad43e1ef425\"}", "{\"sha\": \"ffebb788807b542604a447ee996122dd6c1f4b09\", \"live\": true, \"id\": \"x1de08ce1b77575b6\"}", "{\"sha\": \"70cb7218aa318589e52ee0e386df4b8fd46d500d\", \"live\": true, \"id\": \"x57799b24dbb207b7\"}", "{\"sha\": \"d03dda2d753287bc40f4f317ec838167939b4c8e\", \"live\": true, \"id\": \"x68d6c060c8ca3319\"}", "{\"sha\": \"08d1c4ae2cca418a24fae425afdc26c6b6396d71\", \"live\": true, \"id\": \"x8f4760c9c1a43156\"}", "{\"sha\": \"e588cbae9957d7f82313b43eef9a3028a1b9cb37\", \"live\": true, \"id\": \"xe9e7dd39046306d3\"}", "{\"sha\": \"5b93d4725f8cf79d0b038e9dddedc5aeec2b9bb9\", \"live\": true, \"id\": \"xcd72673e0137ef27\"}", "{\"sha\": \"7a9773d1d0851f0e5fca45cbcbecf64b4ea90a74\", \"live\": true, \"id\": \"x1ae0b711d8a055df\"}", "{\"sha\": \"635a64993705347702d7fe2ad962b5b46e707a61\", \"live\": true, \"id\": \"xc677bd2680a1023a\"}", "{\"sha\": \"c212698ac35f405eba9bfa582fdd278176d764db\", \"live\": true, \"id\": \"x6efe17ed6456d105\"}", "{\"sha\": \"477d969546fae057324af72c0c3ab25f4ec394ad\", \"live\": true, \"id\": \"x4eafb96dae2cfcf3\"}", "{\"sha\": \"ada59dd387ec97b55a6d74b875204b8ed981be75\", \"live\": true, \"id\": \"xf05a8a0441fb8e51\"}", "{\"sha\": \"a6ec5a66c45200a5235a294a084802cd7bef36ab\", \"live\": true, \"id\": \"xd26b96d8cdbe03be\"}", "{\"sha\": \"9ae1576aacc208a33641963ff1655a513d11af69\", \"live\": true, \"id\": \"xdb41d098dbe974e3\"}", "{\"sha\": \"11c407c10089c004142463bbd208e1ed9c0912ef\", \"live\": true, \"id\": \"x71d817971511268c\"}", "{\"sha\": \"b2fb2c5a86b43a02ad4d22e4b0271680143d4852\", \"live\": true, \"id\": \"x38406d2f7d5e82ec\"}", "{\"sha\": \"251975ff9796f8395cce9ddc3f79a5d37a2bbc76\", \"live\": true, \"id\": \"x783be3b268dd6442\"}", "{\"sha\": \"18adccfe4cebd039e1c669a56b457f68d2fac7b7\", \"live\": true, \"id\": \"x1ed7a283015cd80d\"}", "{\"sha\": \"6acee766231177b3530a072b35a40485b64c50c7\", \"live\": true, \"id\": \"xd1678d68ce93913a\"}", "{\"sha\": \"61e0d02dc4f0a35c98cf8dd96f0f19f0cdd8d3ef\", \"live\": true, \"id\": \"x99edc491a4151dda\"}", "{\"sha\": \"d3812d7ed80e93a538d382cc599375f5795b0344\", \"live\": true, \"id\": \"x27e4a9bb549eed34\"}"], "description": "Solve word problems involving volume. \u00a0Estimate the volume of items.", "basepoints": 10.0, "path": "volume-word-problems-1/", "slug": "volume-word-problems-1", "kind": "Exercise", "name": "volume-word-problems-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplication_0.5", "addition_4", "division_1"], "exercise_id": "volume-word-problems-1"}, "normative-and-non-normative-behavior---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/normative-and-non-normative-behavior-passage-2/", "id": "normative-and-non-normative-behavior---passage-2", "display_name": "Marriage and family", "title": "Marriage and family", "all_assessment_items": ["{\"sha\": \"81a258d9b10354e68f40393d6d97b2b267edc3fc\", \"live\": true, \"id\": \"x9b08cf24a71ad15a\"}", "{\"sha\": \"1aaea4024b74925756569703c8a39578d39b3f37\", \"live\": true, \"id\": \"x0d5efa76c366fc3b\"}", "{\"sha\": \"5528e4efac41fdb50b4ec6c144e4f50752976a7d\", \"live\": true, \"id\": \"xec907da924d76a60\"}", "{\"sha\": \"3f0ad5053e9aabd91a8ef4e3e9da1e3c200927bf\", \"live\": true, \"id\": \"x85d24de94b2dd2c4\"}", "{\"sha\": \"d109c4c897bf50c205684186bf94ac19753d83ed\", \"live\": true, \"id\": \"x062d86f3ba1f0e37\"}"], "description": "Questions related to marriage and family", "basepoints": 10.0, "slug": "normative-and-non-normative-behavior-passage-2", "kind": "Exercise", "name": "normative-and-non-normative-behavior---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "normative-and-non-normative-behavior---passage-2"}, "recognizing-vector-quantities": {"uses_assessment_items": true, "path": "khan/math/precalculus/vectors-precalc/vector-basic/recognizing-vector-quantities/", "id": "recognizing-vector-quantities", "display_name": "Recognizing vector quantities", "title": "Recognizing vector quantities", "all_assessment_items": ["{\"sha\": \"00a165d12058f17757a73d12cd6228be4d4d0686\", \"live\": true, \"id\": \"xb2274d70cb43b760\"}", "{\"sha\": \"36c24cf6b51c5d147b301706c8865e42d740dcac\", \"live\": true, \"id\": \"xec50b0b4c5182e56\"}", "{\"sha\": \"65690dbbeedd3e311c0c0d17e8d8d21a9f35f97a\", \"live\": true, \"id\": \"x30051585a097d346\"}", "{\"sha\": \"124fdea78aad1a898426bfa42e0021520dc69c8b\", \"live\": true, \"id\": \"x8ecf961732ff2729\"}", "{\"sha\": \"1c0dd51bf64bf75a62cdc8590e7064bd1b71a7e3\", \"live\": true, \"id\": \"x8c3596baa2f7fc5a\"}", "{\"sha\": \"b8172fb25d222bcbe4d891275817661ea84f71d1\", \"live\": true, \"id\": \"xdd36dd099668268d\"}", "{\"sha\": \"05e1c6ff2248861d499ae7c5222dfb44596130b7\", \"live\": true, \"id\": \"xd8447e1033b6f70c\"}", "{\"sha\": \"e4787b0b7d51fb328b53b85e841d3c7122e1bc28\", \"live\": true, \"id\": \"x6914d11072ee6e90\"}", "{\"sha\": \"5d6faa130bf99cc90bf28e477f3de98fa1b6ecf3\", \"live\": true, \"id\": \"xd10d81a6955e5fc7\"}", "{\"sha\": \"6799c04a4b212cb912002fdb953811d0eac22e78\", \"live\": true, \"id\": \"x743483d7e73ec07e\"}", "{\"sha\": \"4c2bcda04816c3e0bcf422fc2266c35409c4f23e\", \"live\": true, \"id\": \"x657f3f0013ddb385\"}", "{\"sha\": \"79d1ff7a9d2b1f53009e1754780520b8619abe04\", \"live\": true, \"id\": \"x7f8133d7a79330d5\"}", "{\"sha\": \"1c37b0967d070316005696a2987df592ae08293a\", \"live\": true, \"id\": \"x39144151c74dd9fa\"}", "{\"sha\": \"3fea23fcba2d94b20d747b3681c62a3724b64f93\", \"live\": true, \"id\": \"xb0167a6dc2faba4e\"}", "{\"sha\": \"e03ab0ec2b1da04c37a5cf1f9840b75d95c572d5\", \"live\": true, \"id\": \"xc1a4b2a55ea0a09e\"}", "{\"sha\": \"7ce18cd15259e2f78b8a45857baa9a647bd920eb\", \"live\": true, \"id\": \"xfb21605f4a3945d8\"}", "{\"sha\": \"bef4679ba56359918973a7869560e252dd33c242\", \"live\": true, \"id\": \"xdf4ed83fc0dd7f00\"}"], "description": "", "basepoints": 10.0, "slug": "recognizing-vector-quantities", "kind": "Exercise", "name": "recognizing-vector-quantities", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_negative_numbers", "identifying_points_1"], "exercise_id": "recognizing-vector-quantities"}, "normative-and-non-normative-behavior---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/normative-and-non-normative-behavior-passage-1/", "id": "normative-and-non-normative-behavior---passage-1", "display_name": "Marriage and family preferences", "title": "Marriage and family preferences", "all_assessment_items": ["{\"sha\": \"a4b0f129ee86115ce82e67f0ea52ac2f6dac2460\", \"live\": true, \"id\": \"x0b82443395bc1862\"}", "{\"sha\": \"c13c27d2e4b42d6c8c4a7f8d58d4962862484429\", \"live\": true, \"id\": \"x347158885d8017a7\"}", "{\"sha\": \"3b2b4d02b9d73f17e96756384948b7a634863349\", \"live\": true, \"id\": \"x457fe1c6cbc65913\"}", "{\"sha\": \"924a15ee9d9ebee6a81ece2a8b1cc7ad937ee255\", \"live\": true, \"id\": \"xa1f94f744b8b7c96\"}", "{\"sha\": \"7716ac4d80438ecf45a3c570c88768f6feef90f2\", \"live\": true, \"id\": \"x486c021206d06c6d\"}"], "description": "Questions related to marriage and family preferences", "basepoints": 10.0, "slug": "normative-and-non-normative-behavior-passage-1", "kind": "Exercise", "name": "normative-and-non-normative-behavior---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "normative-and-non-normative-behavior---passage-1"}, "recursive-formulas-for-geometric-sequences": {"uses_assessment_items": true, "path": "khan/math/precalculus/seq_induction/precalc-geometric-sequences/recursive-formulas-for-geometric-sequences/", "id": "recursive-formulas-for-geometric-sequences", "display_name": "Recursive formulas for geometric sequences", "title": "Recursive formulas for geometric sequences", "all_assessment_items": ["{\"sha\": \"e01d46b5aca5fc06017691b2f6714e0624c95262\", \"live\": true, \"id\": \"xa591ffeb53a30914\"}", "{\"sha\": \"9ac8b2bb252ffe08e58dca68072494c4bb6776f2\", \"live\": true, \"id\": \"x31c5bbcde3218e6c\"}", "{\"sha\": \"f210275783f5e73d971a6fa632237a9f02e4a001\", \"live\": true, \"id\": \"x594455d6b5994b23\"}", "{\"sha\": \"0b005fe2ac78af961fc90b18baa34265fb979695\", \"live\": true, \"id\": \"x352d04321566a89e\"}", "{\"sha\": \"c113ff4966df22dce9a18b6ee2823fd671a2fe18\", \"live\": true, \"id\": \"x88122bb7a55809f7\"}", "{\"sha\": \"32f2588922a070a15b6402ac13d3d775842cc1d5\", \"live\": true, \"id\": \"xaaad5509b3ab1842\"}", "{\"sha\": \"935e76509d2b2405387fa23d68e855a8fede8c3b\", \"live\": true, \"id\": \"xb1289e04f920f780\"}", "{\"sha\": \"e1556a6faf141411df7343370c46fd29a740466f\", \"live\": true, \"id\": \"xb97762a4879aa586\"}", "{\"sha\": \"dcbc16126b68640f7c5815cf20ccf00fc5418f70\", \"live\": true, \"id\": \"x8b49a54697651312\"}", "{\"sha\": \"4efae5b176ee05109976e7b253d29f423c924388\", \"live\": true, \"id\": \"x132af18e29db9e5e\"}", "{\"sha\": \"7a986443f50e20291b3ea44f1a0b27fb60304689\", \"live\": true, \"id\": \"x2fbd9ebeac874f23\"}", "{\"sha\": \"6a11022e58d9e7077c300468e08930886b97beba\", \"live\": true, \"id\": \"xb69c3c3556f98a41\"}", "{\"sha\": \"93c314a5e34e9d86ff5c14786c82b125967c2a82\", \"live\": true, \"id\": \"x8763a8940c87e9a0\"}", "{\"sha\": \"4b198cf6d6d6973ef5f4216827c592838a5b7ad7\", \"live\": true, \"id\": \"xd3229da9aa47a21d\"}", "{\"sha\": \"9cfe9c05f16d7c4c9532436657713b903f18fe3c\", \"live\": true, \"id\": \"x3d2b497d624c5eaa\"}", "{\"sha\": \"1a71802f50b5e576db9e595a54638fafaaca1eb2\", \"live\": true, \"id\": \"x9632737c6b0f432d\"}", "{\"sha\": \"6fb874675fd122bcec2b08b657a1beb59efdee83\", \"live\": true, \"id\": \"xd1326353cdbd5a6a\"}", "{\"sha\": \"0c3bacf64b0f37e0d72772c06034d85b2e65124f\", \"live\": true, \"id\": \"xf225c26589a457b2\"}", "{\"sha\": \"12f3df4442beac0fb2c6348f789912c1cda16715\", \"live\": true, \"id\": \"x2b953ec6c06300c1\"}", "{\"sha\": \"0ed6ea0007b8b159197583a30a513ffbbf8f2556\", \"live\": true, \"id\": \"x6ce889c51a18ae5f\"}", "{\"sha\": \"9a6c01f8a6eb068fe3b1a1b92a5963469fecbb04\", \"live\": true, \"id\": \"x04fba42d50e88f84\"}", "{\"sha\": \"b7e213a0399b786ba744a9279ebe9f12c3aa9d7c\", \"live\": true, \"id\": \"xd1706e8de9ada1ac\"}", "{\"sha\": \"439b588e1435a72ec4f3e6dc4abf6441acd649ba\", \"live\": true, \"id\": \"xed161d639b3246ba\"}", "{\"sha\": \"f1890bcfd2f9a9436a5d70cc763637f8df271d72\", \"live\": true, \"id\": \"x33d860f904e1f91e\"}", "{\"sha\": \"637699cfa0aeac9cfcc0ea6661e3d67f70d9e503\", \"live\": true, \"id\": \"xecda107680922c3a\"}", "{\"sha\": \"572d772969acc80f89af3790bf5dd48ec8ed0c2a\", \"live\": true, \"id\": \"x7d199a6730d19f2c\"}", "{\"sha\": \"c91a0ad75d0a761418da8122bc81928eab10499e\", \"live\": true, \"id\": \"x8f75b3150cfbdb0a\"}", "{\"sha\": \"df7949101583e649a7d307b2f2d68c677e06c33e\", \"live\": true, \"id\": \"x06f66a09ba06f21a\"}", "{\"sha\": \"3da645e835c0457ca8e43b481921dd31e4c3f65e\", \"live\": true, \"id\": \"x44dcd97e263b71ba\"}", "{\"sha\": \"1404819c2d7dcaf6b68481b46f94c4669e0f8352\", \"live\": true, \"id\": \"x4cebb29a03cf277f\"}"], "description": "Define geometric sequences recursively, given a few terms or an explicit formula. Convert a recursive formula into an explicit formula.", "basepoints": 10.0, "slug": "recursive-formulas-for-geometric-sequences", "kind": "Exercise", "name": "recursive-formulas-for-geometric-sequences", "seconds_per_fast_problem": 4.0, "prerequisites": ["sequences-as-functions"], "exercise_id": "recursive-formulas-for-geometric-sequences"}, "geometry-problems-on-the-coordinate-plane": {"uses_assessment_items": true, "path": "khan/math/geometry/analytic-geometry-topic/geometry-problems-coordinate-pla/geometry-problems-on-the-coordinate-plane/", "id": "geometry-problems-on-the-coordinate-plane", "display_name": "Geometry problems on the coordinate plane", "title": "Geometry problems on the coordinate plane", "all_assessment_items": ["{\"sha\": \"dd29055ab32af04effa7eaf3135f359c2adc5e8f\", \"live\": true, \"id\": \"x892dc9559c05ebd9\"}", "{\"sha\": \"a3905fbac7d3320620384df98d45c9677aeaac54\", \"live\": true, \"id\": \"xdcf4a45a0162a702\"}", "{\"sha\": \"a267d70e434752d89185ffa142cfb89b4b92abb2\", \"live\": true, \"id\": \"x672643c318d03dda\"}", "{\"sha\": \"d715eb6be82d866a33f1899912d37e4276d24330\", \"live\": true, \"id\": \"xdeac3b4707f14600\"}", "{\"sha\": \"12c3f0fdef81d20fecc458770266ff5f609f31e2\", \"live\": true, \"id\": \"xfcbe19cfd73fc3e9\"}", "{\"sha\": \"9f9705e23a45d17d8fa6f045f343d0f48e6f41d5\", \"live\": true, \"id\": \"x6ffee82262ea2505\"}", "{\"sha\": \"474dffc3896f7c77349a115479dad321dcdfdddc\", \"live\": true, \"id\": \"x80d4896208b06fc0\"}", "{\"sha\": \"c626db5f3828770b72beea5b8c4e08f21e8b0461\", \"live\": true, \"id\": \"x9073b66b8b1dda80\"}", "{\"sha\": \"93be983c5734429aabbf3e19edbd3418b343fc28\", \"live\": true, \"id\": \"x0e7548b9e9346c43\"}", "{\"sha\": \"7176ceb7b0b7c37aaa2227a8122ac4c2a1417b92\", \"live\": true, \"id\": \"x0f098b3ed8e5cfc8\"}", "{\"sha\": \"9f92e8745192e152b0032514d6b85c45c91719b8\", \"live\": true, \"id\": \"x24be456ad31ead5e\"}", "{\"sha\": \"5c9900c1193291378538d1f2508c43b0704ac93f\", \"live\": true, \"id\": \"xac6172732fc50428\"}", "{\"sha\": \"d3c76da43d43492f7b89d329922590a86fd6b221\", \"live\": true, \"id\": \"x23cbbfbf6994a3b3\"}", "{\"sha\": \"3b95016f4ec957b551432d96d5cd75fd3a881261\", \"live\": true, \"id\": \"xdb243e17de6d21c6\"}", "{\"sha\": \"c5f02ff3d0bc5421dad50fa24c6123e6588b5bd4\", \"live\": true, \"id\": \"x36b425a10b4d45e0\"}", "{\"sha\": \"62d5fab628b4c50b53d2227ef100547473facb59\", \"live\": true, \"id\": \"x8e713ad960b39675\"}", "{\"sha\": \"13cd00cb173ca7cd84281da23ea9248fe208e254\", \"live\": true, \"id\": \"x16340f756ff4eec3\"}", "{\"sha\": \"f463b4a917787aeca0d6454e5b9b1c6d7cb96385\", \"live\": true, \"id\": \"xc91241d10a0266fe\"}", "{\"sha\": \"06542c128e279132b78c94a0a377c53711a5342e\", \"live\": true, \"id\": \"x83e1b9eb5804abb4\"}", "{\"sha\": \"6b22240dc6eeaef1278b2c64e2cf8d63743687ba\", \"live\": true, \"id\": \"xc02c22d1573a68ba\"}", "{\"sha\": \"c553c209f396cb936a885daa09704cfe49905788\", \"live\": true, \"id\": \"xc8e60a8d6399ac05\"}", "{\"sha\": \"de93d73e02365dcb08854bf96095b9e3479b9442\", \"live\": true, \"id\": \"x02f448b7665538f1\"}", "{\"sha\": \"7a627c10b6ff0f2c21f1755904a19286b1992124\", \"live\": true, \"id\": \"xe675ac6c20176fec\"}", "{\"sha\": \"8068e55183ac43c8b79ec53eddcc1d181a180133\", \"live\": true, \"id\": \"x530065bc77525ebd\"}", "{\"sha\": \"568894c85ff2765f4ea93965985cb1c69b54fffa\", \"live\": true, \"id\": \"x60df4bc18c241fd2\"}", "{\"sha\": \"4055717a2e27ee54affe5a909b089e2d66502a9e\", \"live\": true, \"id\": \"xb7cffbdd4745f234\"}", "{\"sha\": \"6bd1f9e1c0d26c5a7c28f4519d48b9623bf901dd\", \"live\": true, \"id\": \"x0c0bd501477cbe41\"}", "{\"sha\": \"900283475bddbf55fd0a5b776d010ce6a84e3fa5\", \"live\": true, \"id\": \"x9fac3ccec46809a1\"}", "{\"sha\": \"6ddb88f8f1caa44cd999b73d7a1593e1e7d5a881\", \"live\": true, \"id\": \"x961efa3c7aafc8a9\"}", "{\"sha\": \"7b0df4b4f0e294606bb756de22ee5e3b62532aec\", \"live\": true, \"id\": \"x686e9c083115be2e\"}", "{\"sha\": \"55c62124ef295f3473b00f597aa8ee2f56c80ccd\", \"live\": true, \"id\": \"x47bc1203a73a5d07\"}"], "description": "", "basepoints": 29.0, "slug": "geometry-problems-on-the-coordinate-plane", "kind": "Exercise", "name": "geometry-problems-on-the-coordinate-plane", "seconds_per_fast_problem": 60.0, "prerequisites": ["pythagorean_theorem_1", "identifying_points_1", "multiplying_radicals", "geometric-definitions"], "exercise_id": "geometry-problems-on-the-coordinate-plane"}, "exploring-clinical-applications-of-classical-conditioning": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/exploring-clinical-applications-of-classical-conditioning/", "id": "exploring-clinical-applications-of-classical-conditioning", "display_name": "Exploring clinical applications of classical conditioning", "title": "Exploring clinical applications of classical conditioning", "all_assessment_items": ["{\"sha\": \"67d2da105bb8b14984388d30f611fec9675c5aac\", \"live\": true, \"id\": \"x70ba8143e3850ad7\"}", "{\"sha\": \"c883e1d31ac1fffc41b922dfd5ae115392061b40\", \"live\": true, \"id\": \"xa8b5dd80857f5a6b\"}", "{\"sha\": \"7076395bd978f56ab452e15b57d16b9091e5dc10\", \"live\": true, \"id\": \"xb28608293e37ba40\"}", "{\"sha\": \"cd11e7ebe950553ad849f95022e0ea615d5b935c\", \"live\": true, \"id\": \"x004cbed3ea47e684\"}", "{\"sha\": \"493716bd29fb919b9bac0b617f58fb7170db801e\", \"live\": true, \"id\": \"x55f62152e569f4fa\"}"], "description": "Questions related to classical conditioning", "basepoints": 10.0, "slug": "exploring-clinical-applications-of-classical-conditioning", "kind": "Exercise", "name": "exploring-clinical-applications-of-classical-conditioning", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "exploring-clinical-applications-of-classical-conditioning"}, "adding-and-subtracting-fractions-with-unlike-denominators-word-problems": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/add-subtract-fracs-wp-pre-alg/adding-and-subtracting-fractions-with-unlike-denominators-word-problems/", "id": "adding-and-subtracting-fractions-with-unlike-denominators-word-problems", "display_name": "Adding and subtracting fractions with unlike denominators word problems", "title": "Adding and subtracting fractions with unlike denominators word problems", "all_assessment_items": ["{\"sha\": \"b1413a8de7fbba7e0326a1f888b75dff8c0a61e3\", \"live\": true, \"id\": \"x9b1b5f36\", \"perseus_api_major_version\": null}", "{\"sha\": \"f02414ff6ef847b0b83065f4707db2939e19d820\", \"live\": true, \"id\": \"xc4d6c995\", \"perseus_api_major_version\": null}", "{\"sha\": \"8b3e2fa95e61e64a54fc82bb52e1eec91dc5ce38\", \"live\": true, \"id\": \"x4210ac55\", \"perseus_api_major_version\": null}", "{\"sha\": \"edcb86bdef57e194ed43ff9bd52dca6cad1f9f75\", \"live\": true, \"id\": \"x00d32894\", \"perseus_api_major_version\": null}", "{\"sha\": \"524e1c6731eacc566dbe54b940c189a95eba17d4\", \"live\": true, \"id\": \"x2e88278b\", \"perseus_api_major_version\": null}", "{\"sha\": \"36fafeb1fd11e055263e35afa74a9935f5816974\", \"live\": true, \"id\": \"x602d2d50\", \"perseus_api_major_version\": 0}", "{\"sha\": \"db02889f38f42e7d05e20b9e05f91d1f4ba1bcac\", \"live\": true, \"id\": \"xa7e4bcf2\", \"perseus_api_major_version\": null}", "{\"sha\": \"b6b52508a19f6119f5061b727b1711613be33362\", \"live\": true, \"id\": \"x40499ac1\", \"perseus_api_major_version\": null}", "{\"sha\": \"d55335f028bdd919e9b99053096200920ec4087a\", \"live\": true, \"id\": \"x82b25992\", \"perseus_api_major_version\": null}", "{\"sha\": \"b9130d94c5bac7c05911a184d778cf794927f615\", \"live\": true, \"id\": \"x45ad3cb3\", \"perseus_api_major_version\": null}", "{\"sha\": \"10bda5c962e302a4d96cd770fa4a988c5ef0ca8e\", \"live\": true, \"id\": \"x0b5b3f87\", \"perseus_api_major_version\": null}", "{\"sha\": \"626f6a0af1d795561aa4b68e3da95f85ce17387b\", \"live\": true, \"id\": \"x898fc485\", \"perseus_api_major_version\": null}", "{\"sha\": \"7fea1992a6baf4c117af80517b093353ecd36132\", \"live\": true, \"id\": \"x91a27ece\", \"perseus_api_major_version\": null}", "{\"sha\": \"2924e6382e0175c4ab9499eafb46a8a117bb908f\", \"live\": true, \"id\": \"xa9a59066\", \"perseus_api_major_version\": null}", "{\"sha\": \"9f7dcd9cd7bbd5c23ca82a21705d70f48f2626a7\", \"live\": true, \"id\": \"x5b78bfa9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c1c68135a04e42da3593befcec3a9989692db53d\", \"live\": true, \"id\": \"xf5990c39\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a1985b3fe1a73a00382c1148a45ce4f786de6c2\", \"live\": true, \"id\": \"x079dde08\", \"perseus_api_major_version\": null}", "{\"sha\": \"bcbb756f8cfa964387492373236c006bf1da4469\", \"live\": true, \"id\": \"x571e4e2d\", \"perseus_api_major_version\": null}", "{\"sha\": \"a86ce18a989c8c0fbd5394d337adc6ba67dbc786\", \"live\": true, \"id\": \"xf4b13bfa\", \"perseus_api_major_version\": null}", "{\"sha\": \"28f0bd8e96f397478ddc8f575ef9c7c28b1ccef2\", \"live\": true, \"id\": \"x550c8feb\", \"perseus_api_major_version\": null}", "{\"sha\": \"9277b2bd679e2d2f5828667dda16c95d787b4956\", \"live\": true, \"id\": \"x3f096e8c\", \"perseus_api_major_version\": null}", "{\"sha\": \"87957221d263cb458cb97c6a418454e7ddf732ed\", \"live\": true, \"id\": \"x302be646\", \"perseus_api_major_version\": 0}", "{\"sha\": \"9980c569c96856460746a007bab469b18e9dc5ac\", \"live\": true, \"id\": \"x569ec9a5\", \"perseus_api_major_version\": null}", "{\"sha\": \"19813642a68f36d40f3a342f48681c2523811f38\", \"live\": true, \"id\": \"x9e856f17\", \"perseus_api_major_version\": null}", "{\"sha\": \"e24607d3c36cc0f9b2516c0d5ec0eee69fadaeb5\", \"live\": true, \"id\": \"xcf113d3f\", \"perseus_api_major_version\": null}", "{\"sha\": \"4913c40a8a5aba4c32fbc564c0934b6a46d75ee8\", \"live\": true, \"id\": \"x849e9978\", \"perseus_api_major_version\": null}", "{\"sha\": \"ae101bc4e20c89816d59ca03f8229bd7389c3142\", \"live\": true, \"id\": \"xf17755c0\", \"perseus_api_major_version\": null}"], "description": "Solve and interpret addition and subtraction word problems with fractions. \u00a0", "basepoints": 23.0, "slug": "adding-and-subtracting-fractions-with-unlike-denominators-word-problems", "kind": "Exercise", "name": "adding-and-subtracting-fractions-with-unlike-denominators-word-problems", "seconds_per_fast_problem": 26.0, "prerequisites": ["adding_fractions", "subtracting_fractions"], "exercise_id": "adding-and-subtracting-fractions-with-unlike-denominators-word-problems"}, "nets-of-3d-figures": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/nets-of-3d-figures/", "id": "nets-of-3d-figures", "display_name": "Nets of 3D figures", "title": "Nets of 3D figures", "all_assessment_items": ["{\"sha\": \"4ecb58328b150eda9cd13d92db9fb31fafbc002a\", \"live\": true, \"id\": \"x4434040c275cad18\"}", "{\"sha\": \"aa82c486555e43a6ab294a745fb1bf143ef22d55\", \"live\": true, \"id\": \"x2d009ffa46ca3820\"}", "{\"sha\": \"c50bb6bf5e6f6912e7410f0fa41579f0423419a4\", \"live\": true, \"id\": \"x81677ce01e6fdaad\"}", "{\"sha\": \"bc4d7631d9e1c407b3e0e1c8d3867523095b0e38\", \"live\": true, \"id\": \"x1b2d522be1ad518c\"}", "{\"sha\": \"b27e7ec3f1687676f469babb757d9dad5eb9b016\", \"live\": true, \"id\": \"x2b03516c0180b352\"}", "{\"sha\": \"52ebdf9c6d24788e26c14539b484e1f7471cf8f2\", \"live\": true, \"id\": \"xc02491695ca51567\"}", "{\"sha\": \"d2bc5b26c97a271f6c03bc156bb0f4962cd5339f\", \"live\": true, \"id\": \"x29a33987cc70cc98\"}", "{\"sha\": \"f93f4f22fe70e526c728186695f75d34e67ac658\", \"live\": true, \"id\": \"x6a3fb181fd601eab\"}", "{\"sha\": \"5a71ffc34cf9f4ad9bc33f3146b9709e478858d5\", \"live\": true, \"id\": \"x48e04bd47959538d\"}", "{\"sha\": \"231adbaf3a71ae8659fac3b86bfcfa8bd649438c\", \"live\": true, \"id\": \"x086f122f1f57f437\"}", "{\"sha\": \"e58d5362d77b8c5255ef64c0a61998e035238d55\", \"live\": true, \"id\": \"x033d85774a48004c\"}", "{\"sha\": \"e06c18dd917bdaf087af5d03a818c00ab554900f\", \"live\": true, \"id\": \"x7b3cc9da2395d5f7\"}", "{\"sha\": \"0b02af54a6a1bc273cf87bb87f586c119d834647\", \"live\": true, \"id\": \"xad911af252ca42bf\"}", "{\"sha\": \"7a90df37286a0ad7d6076da163bd71c6bfd32877\", \"live\": true, \"id\": \"xe8a5aa515c090a6d\"}", "{\"sha\": \"d781d689352c5cbd1b1462424b6ec4b7861eb8d0\", \"live\": true, \"id\": \"x8cd9cfce22606e6e\"}", "{\"sha\": \"775f35ec316cc8ea04d5abb80038b974676905e3\", \"live\": true, \"id\": \"x821446306d5d3745\"}", "{\"sha\": \"f6e90124130cc708d8223427060ec5965a0b84c1\", \"live\": true, \"id\": \"x1267d7f8869081ee\"}", "{\"sha\": \"54cd1a31e0c18f5b5c0b8db6448214eb20090055\", \"live\": true, \"id\": \"xb8111de5396058b2\"}", "{\"sha\": \"47caff074479bfa6d5c970773d147bf9220bee5b\", \"live\": true, \"id\": \"xa013bc8f73d6bf23\"}", "{\"sha\": \"3d109a4d1aeb82d1e0a6f2c314587bed608a57af\", \"live\": true, \"id\": \"x2aa7cbb873cb1a43\"}"], "description": "", "basepoints": 12.0, "slug": "nets-of-3d-figures", "kind": "Exercise", "name": "nets-of-3d-figures", "seconds_per_fast_problem": 5.0, "prerequisites": ["area-and-perimeter-of-rectangles-word-problems"], "exercise_id": "nets-of-3d-figures"}, "nervous-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/biological-basis-of-behavior-the-nervous-system/nervous-system-questions/", "id": "nervous-system-questions", "display_name": "Nervous system questions", "title": "Nervous system questions", "all_assessment_items": ["{\"sha\": \"6e934a1b3e99d0d4336a8e5e3d954ff92db6d285\", \"live\": true, \"id\": \"xafafdaf273deac0d\", \"perseus_api_major_version\": null}", "{\"sha\": \"d7285c73dc435579ea62b8d62cbed5d394642e9e\", \"live\": true, \"id\": \"x68bd3165a30b0d81\", \"perseus_api_major_version\": null}", "{\"sha\": \"6eddf575b073cf1c1446457f5eb8bfd956c36678\", \"live\": true, \"id\": \"x73051abbc35ab801\", \"perseus_api_major_version\": null}", "{\"sha\": \"d1061b98aa0712dbe4077f96291539e7268a84eb\", \"live\": true, \"id\": \"xcd36a8fb0199e21d\", \"perseus_api_major_version\": null}", "{\"sha\": \"64e1ae1ec04f6e4a72db98f88e3b94858de25411\", \"live\": true, \"id\": \"x1fb9614fabb58149\", \"perseus_api_major_version\": null}", "{\"sha\": \"2647a743418e30091b3170ae34b545572d95d4c4\", \"live\": true, \"id\": \"x655a8882517deadf\", \"perseus_api_major_version\": null}", "{\"sha\": \"2af07bae20af08836dc186555800a2d0394708e2\", \"live\": true, \"id\": \"x605cb4a7bbbecc31\", \"perseus_api_major_version\": null}", "{\"sha\": \"a22f3838b79fce34945b6dd82e99a0c17bc00cf5\", \"live\": true, \"id\": \"xd53ba743e6acdfe1\", \"perseus_api_major_version\": null}", "{\"sha\": \"81436648d54d16c047f91214e26f02f3301ea12d\", \"live\": true, \"id\": \"xc2ee703728333aac\", \"perseus_api_major_version\": null}", "{\"sha\": \"280fd8cf17c474958dacf7a55327c8d83c50aa4e\", \"live\": true, \"id\": \"x5863aeaec8f053ea\", \"perseus_api_major_version\": 3}", "{\"sha\": \"563fbd42d80345967b0174a0c33d4a33f184a9d0\", \"live\": true, \"id\": \"x8aa24c8d19f64b52\", \"perseus_api_major_version\": null}", "{\"sha\": \"18f7504b8afbd7e5b09cb44ec9ceed5fddd6f911\", \"live\": true, \"id\": \"x8d77f5285cf55ae3\", \"perseus_api_major_version\": null}"], "description": "Nervous system questions", "basepoints": 10.0, "slug": "nervous-system-questions", "kind": "Exercise", "name": "nervous-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nervous-system-questions"}, "cell-cell-interactions-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/cells/cell-cell-interactions/cell-cell-interactions-questions/", "id": "cell-cell-interactions-questions", "display_name": "Cell-cell interactions questions", "title": "Cell-cell interactions questions", "all_assessment_items": ["{\"sha\": \"3667591e5e13c7dffda434fad508191f91adccea\", \"live\": true, \"id\": \"xd143cc49d5e1f447\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cdf5b3ceca72b05ab8e6ebb1b7bda05a7339ef88\", \"live\": true, \"id\": \"x34f634b7989fac16\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9259f305cdae0ff979a3157826a7f1eb7454a536\", \"live\": true, \"id\": \"xf907ef1ae58999ed\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9895b11274a3fdae909667fc5d4f6408eb060829\", \"live\": true, \"id\": \"x6d7c90a3415b2ff3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0c6513c88155d49734fb1b47d453ba30f0530f72\", \"live\": true, \"id\": \"xa43d453ba3c6d5da\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fca78e244748c69d84f8e08f3740e2fc40d22cc2\", \"live\": true, \"id\": \"x653e6d5301ea4924\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0d1fe0b3c084485e90236caa514557298c67c775\", \"live\": true, \"id\": \"x142d0cc5f732d153\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ac6252a519cd9b76ffe31a6da1ac9eaf28136a6f\", \"live\": true, \"id\": \"x7ac98a4cf1d2d62a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"41e4def7beea6582ab21a4116cb912266d465655\", \"live\": true, \"id\": \"x1ffd5cd10e111d61\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf33b88704bf3e067fef7cf89faa1cf63b1c3405\", \"live\": true, \"id\": \"x7eb5f19143730ecc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Cell-cell interactions questions", "basepoints": 10.0, "slug": "cell-cell-interactions-questions", "kind": "Exercise", "name": "cell-cell-interactions-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cell-cell-interactions-questions"}, "equivalent-forms-of-expressions-1": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/equivalent-forms-of-expressions-1/", "id": "equivalent-forms-of-expressions-1", "display_name": "Equivalent algebraic expressions", "title": "Equivalent algebraic expressions", "all_assessment_items": ["{\"sha\": \"83ec35f029808fe317bbf5d73c88ae631829c4dd\", \"live\": true, \"id\": \"x4e190b70\"}", "{\"sha\": \"604af39281f2175e3a65cb387ebb62f980cc0b62\", \"live\": true, \"id\": \"xae71f80f\"}", "{\"sha\": \"b2cafc5db82c53953b3eb6a9330cdb6208c53f8e\", \"live\": true, \"id\": \"x3d4f7f84\"}", "{\"sha\": \"54690fb118c16fc7c7c3f267aad184eb56f1d83e\", \"live\": true, \"id\": \"xb14e0e7db4826869\"}", "{\"sha\": \"96a2e35c8d74a22f1f3e42f4bca8ad7da81a9400\", \"live\": true, \"id\": \"xc72ed67f\"}", "{\"sha\": \"5ac96edd25caf90b647fde7d0466280e0a38e0dd\", \"live\": true, \"id\": \"x8255724a\"}", "{\"sha\": \"d765f4bcba628d72ba2b7b5c48ac9442e97fbe82\", \"live\": true, \"id\": \"x93b02954\"}", "{\"sha\": \"4c66bd1d16924b16b89282a80b8dfe2ec714f32a\", \"live\": true, \"id\": \"x6af2adee\"}", "{\"sha\": \"54580312664eb044aa99ca6d3216450e6a462560\", \"live\": true, \"id\": \"xe762a90d\"}", "{\"sha\": \"164480862ae1008ec3fd4a9c7f3350661e71c971\", \"live\": true, \"id\": \"x777d450e\"}", "{\"sha\": \"ec42af11586dab9b5458d6de91af9f150c1a9011\", \"live\": true, \"id\": \"x3ca370ab9142f146\"}", "{\"sha\": \"7c0a37a466b1436a5c86805b7e05e495e9fd78ca\", \"live\": true, \"id\": \"x192e6f82478394db\"}", "{\"sha\": \"5303f36ca61bd979dfc7cdf358a45eb216f58416\", \"live\": true, \"id\": \"x28e2d8982814e9e5\"}", "{\"sha\": \"d019f4231718719a713b05455f7101aafcb12bf5\", \"live\": true, \"id\": \"xa7433e15b0e896aa\"}", "{\"sha\": \"2c55c9fbcd4543d58c8a7aa11f45243491ff18bf\", \"live\": true, \"id\": \"x88f120b7d909552a\"}", "{\"sha\": \"83ad4ff45f542d30d724219b08f4ddfad9975274\", \"live\": true, \"id\": \"xef6bbd376fb17768\"}", "{\"sha\": \"1f84c65d6d7a683d8c9a4b085efba22934840e35\", \"live\": true, \"id\": \"x8a2838e972cc2a9b\"}", "{\"sha\": \"8a5ff17da7fa0351b64f845ca66a82d276e6e46d\", \"live\": true, \"id\": \"x0e0f952fc66060f9\"}", "{\"sha\": \"97aeed53016ad38e09ca63bad1f16f14eaa02c12\", \"live\": true, \"id\": \"x8f9beaaee191b0fc\"}", "{\"sha\": \"0790ad1095d2118a7aae4eb21e63b828fa7db6d2\", \"live\": true, \"id\": \"x200f85367fdfc49b\"}"], "description": "Practice determining whether or not two algebraic expressions are equivalent.", "basepoints": 17.0, "slug": "equivalent-forms-of-expressions-1", "kind": "Exercise", "name": "equivalent-forms-of-expressions-1", "seconds_per_fast_problem": 10.0, "prerequisites": ["distributive_property", "combining-like-terms-0.5"], "exercise_id": "equivalent-forms-of-expressions-1"}, "integration-by-the-reverse-chain-rule": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/integration-techniques/reverse-chain-rule/integration-by-the-reverse-chain-rule/", "id": "integration-by-the-reverse-chain-rule", "display_name": "Integration by the reverse chain rule", "title": "Integration by the reverse chain rule", "all_assessment_items": ["{\"sha\": \"109fd00bfceaa494b38965ff0cc1317e67994869\", \"live\": true, \"id\": \"x6b3ff0fb9f3e439b\"}", "{\"sha\": \"233d2f79de855b39eb75a6097377c5a3042fec05\", \"live\": true, \"id\": \"x2501bb8e8f47ddd3\"}", "{\"sha\": \"b27e3fd2359c9f57d1acfc426a4e600cbf36c697\", \"live\": true, \"id\": \"x27c011b98bf6725d\"}", "{\"sha\": \"e15a211f71186d6e31670371815243a71170cca7\", \"live\": true, \"id\": \"xeb30f1f386479f32\"}", "{\"sha\": \"06d3211d744ac1bef2ef1281115f66d8c2d52dfc\", \"live\": true, \"id\": \"xd7dbd49afda9735e\"}", "{\"sha\": \"3350e81370812f2c2d722ceabef676713ef9448b\", \"live\": true, \"id\": \"x39d52a0358795023\"}", "{\"sha\": \"5ce921a1969847962fe9c4169d5fd881a35169d1\", \"live\": true, \"id\": \"xc9169e612fdf5e64\"}", "{\"sha\": \"a4f31fbf648265fe3aeb9c5e78e76d4c79d62c29\", \"live\": true, \"id\": \"xc9533c79c04a0df9\"}", "{\"sha\": \"848aa325cdbbe268819d93e8a4076d1abdb6dd10\", \"live\": true, \"id\": \"xd302097870b39430\"}", "{\"sha\": \"55899aa7e4c5f0894cd2a44772835cc44a6ce24b\", \"live\": true, \"id\": \"x4b870e5b31e6a76c\"}", "{\"sha\": \"ca075d03adf0acbda22048a5efde5c46790a225a\", \"live\": true, \"id\": \"x28c54188f7070e60\"}", "{\"sha\": \"71e47937d1f6a9a883986f72be6d5c70bd0bb7c1\", \"live\": true, \"id\": \"x0b3cb8e1222447fa\"}", "{\"sha\": \"2d1f47bfad8bd946875596d7acb08f11bd90a81e\", \"live\": true, \"id\": \"xabba17f9000f61b3\"}", "{\"sha\": \"a820f9da4a38ea02dbb069c31b4e74f8da189d09\", \"live\": true, \"id\": \"x3111dbe07e45d48d\"}", "{\"sha\": \"e37e41565d481b628e015e5722541bdbb25fda37\", \"live\": true, \"id\": \"x59640c4a943815fd\"}", "{\"sha\": \"75453d5b638dd46ae14d42bf2f05973516cd11d1\", \"live\": true, \"id\": \"xc9f3a46d89f13e4c\"}", "{\"sha\": \"38e2a834318b8743df99662699255f5b31e96517\", \"live\": true, \"id\": \"x5e61d87fdd3a61f7\"}", "{\"sha\": \"700dda7608e9b745116c5b7825d1f973a79bf747\", \"live\": true, \"id\": \"x592b2062935295be\"}", "{\"sha\": \"b1d41e0b497263a40bf0f93f587513fd8ee207a7\", \"live\": true, \"id\": \"x2d9cff840d74148e\"}", "{\"sha\": \"95f87c08659422cd7cf7a9084f99c621bca5bfc0\", \"live\": true, \"id\": \"xa1b39be7d101bee5\"}", "{\"sha\": \"39cdb1042d5e8b8b56e468614cab279ba57f2eea\", \"live\": true, \"id\": \"x0c7c7702c5abc7d0\"}", "{\"sha\": \"e7dce6e7102656bf0ad4aa8ce9c7421bb6df3b3b\", \"live\": true, \"id\": \"x5f01333da2a10b00\"}", "{\"sha\": \"2753e5a760e352dbe8e8dab81c01330897fc1bf5\", \"live\": true, \"id\": \"x414782791b125e95\"}", "{\"sha\": \"660ae565478fdde78e0bec61c689c0f2ce4dbacb\", \"live\": true, \"id\": \"xc4427ba8f852c707\"}", "{\"sha\": \"6e9b0d9ab44bfe36d7b0bd6fe736e61bb502828a\", \"live\": true, \"id\": \"x837ddde6a575730d\"}", "{\"sha\": \"2c1efcb1520816a99c3ad8089e090f2302575992\", \"live\": true, \"id\": \"x8d3dd7dd06a6d08f\"}", "{\"sha\": \"df54328c8a5ae89f7cd2bb3cedf40871f5a1f3a1\", \"live\": true, \"id\": \"xca5a233b35e55aa9\"}", "{\"sha\": \"c8581c2e55d82a03989e4c8ed191a301105232de\", \"live\": true, \"id\": \"x3da4a8dd05993ebf\"}", "{\"sha\": \"e47b9f14b2f4fc82ceafeaefb261027139995523\", \"live\": true, \"id\": \"xf8d148d7fad69076\"}", "{\"sha\": \"3194783989dd7611133753a119be1f780de9fcd8\", \"live\": true, \"id\": \"x85703969abe1339d\"}"], "description": "", "basepoints": 10.0, "slug": "integration-by-the-reverse-chain-rule", "kind": "Exercise", "name": "integration-by-the-reverse-chain-rule", "seconds_per_fast_problem": 4.0, "prerequisites": ["evaluating-definite-integrals", "area-between-a-curve-and-an-axis"], "exercise_id": "integration-by-the-reverse-chain-rule"}, "quadratic-formula-with-complex-solutions": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/quadratic-formula-with-complex-solutions/", "id": "quadratic-formula-with-complex-solutions", "display_name": "Quadratic formula with complex solutions", "title": "Quadratic formula with complex solutions", "all_assessment_items": ["{\"sha\": \"a2f59a56b4b4f4e626aef93d11552cba954ecac5\", \"live\": true, \"id\": \"x4838173e\"}", "{\"sha\": \"79c6fa8fff897eee7002ec1112ac844c70a124a6\", \"live\": true, \"id\": \"x0a3974ae\"}", "{\"sha\": \"658e95410341ff5c29d03e285c0c1447dcc00c9e\", \"live\": true, \"id\": \"xa7851c69\"}", "{\"sha\": \"bb355dfc7dc51470696a831976ed171515b04e0e\", \"live\": true, \"id\": \"xb3535bfc\"}", "{\"sha\": \"0a149d212d099914772b32531a1eed49628a942d\", \"live\": true, \"id\": \"x54c9e452\"}", "{\"sha\": \"cead30feabdd21d5a072fbe215aab5baf63228dc\", \"live\": true, \"id\": \"x609f34f8\"}", "{\"sha\": \"fa0d19d4896f35a9c17c23f0eac1fceb8ed8ed2f\", \"live\": true, \"id\": \"x7b2e9637\"}", "{\"sha\": \"dc3eceb374d71fd160925c7412d6b422aa4209c4\", \"live\": true, \"id\": \"x876d05e5\"}", "{\"sha\": \"841fc816c7a3335325b1a25917fd92c55c4d28df\", \"live\": true, \"id\": \"x9c2a4a1c\"}", "{\"sha\": \"54dc7bdeed4438358ca119474e147b793b496243\", \"live\": true, \"id\": \"x15bc58e3\"}", "{\"sha\": \"9b1512f31f5a3c5946a97302dd98d2dd6a89de11\", \"live\": true, \"id\": \"x299bf5bc\"}", "{\"sha\": \"170b0f47a45cb5945f4b1da83854d25ffa4ae849\", \"live\": true, \"id\": \"xea66a3f5\"}", "{\"sha\": \"573fe9ff086da1bf9073be80cfb484106970a8e8\", \"live\": true, \"id\": \"x3b16a11c\"}", "{\"sha\": \"8853ea961e36dc226c667b30139f3ebceef9a922\", \"live\": true, \"id\": \"x7e9f304c\"}", "{\"sha\": \"ace8dd7fff0170d45111a3e52ee4abf84a652280\", \"live\": true, \"id\": \"xcce15bb1\"}", "{\"sha\": \"c2bace6fc3246e02971a7d9fb69288c8acce7dde\", \"live\": true, \"id\": \"x7a2c4e8c\"}", "{\"sha\": \"da88a507c4b4b2257c108502f568edd14290ce6e\", \"live\": true, \"id\": \"x9ef957e0\"}", "{\"sha\": \"6ce1c07190dd03aa736f9999c767a7260508aac7\", \"live\": true, \"id\": \"x355f4084\"}", "{\"sha\": \"1b954c4c14cbed819d2ee53a5f8510f62b10c8a4\", \"live\": true, \"id\": \"x6551f6ca\"}", "{\"sha\": \"01afeaf3edba5706ca33445cdeb5706f6097b05f\", \"live\": true, \"id\": \"x05603cfc\"}", "{\"sha\": \"c76843b06e70b4724e145ef2d8ad5c36540b46a9\", \"live\": true, \"id\": \"x7c1fd55f\"}", "{\"sha\": \"f7d8046d74141cabbaa6ff30fc4e26ee4c9f6663\", \"live\": true, \"id\": \"xb69c3153\"}", "{\"sha\": \"1d39d8151ae6251bb5a8ac1ba26a0cace8f49e56\", \"live\": true, \"id\": \"x9bd49f8f\"}", "{\"sha\": \"b40e3bab6d233dc28e1f8a1ac6ab882c4c3bf01e\", \"live\": true, \"id\": \"xf04897df\"}", "{\"sha\": \"ca5fb1c5e6d9a7c174a2da654d5c125e1369b356\", \"live\": true, \"id\": \"x3b93b63d\"}", "{\"sha\": \"0af411efbd610d2818f826b65bb23ba7c0a66e18\", \"live\": true, \"id\": \"xda23f1c6\"}", "{\"sha\": \"5236113c2d3c0eb04df4cd6b2018b39b259541bf\", \"live\": true, \"id\": \"x25863f7a\"}", "{\"sha\": \"24581115cc0da8b8c1d0c8701e17308f54b74a7c\", \"live\": true, \"id\": \"x8d864b55\"}", "{\"sha\": \"7a1ad52880dcf1f8c2f180295047c58098eade29\", \"live\": true, \"id\": \"xd30f4398\"}", "{\"sha\": \"e7e77c785528a25c0121179fd53a7e6a2d1a44cc\", \"live\": true, \"id\": \"x5a8dca58\"}", "{\"sha\": \"9a959de143fd066f6de809c4ac06f9c899504f26\", \"live\": true, \"id\": \"x9995cc99\"}", "{\"sha\": \"4021d07fb8c609474b90c00072e8ee93ae2703a1\", \"live\": true, \"id\": \"xd1670f20\"}", "{\"sha\": \"efd2c3098313f82025f711a7c7cc6249ab9bcded\", \"live\": true, \"id\": \"x01c50358\"}", "{\"sha\": \"ee3d69e2a9a0854a07d50bb03b6891cd535a121e\", \"live\": true, \"id\": \"xd92d41d4\"}", "{\"sha\": \"489c4ab36cb5491734daff56d1f8cdfd8060c2b5\", \"live\": true, \"id\": \"xf6516dd1\"}", "{\"sha\": \"6d65177e0174ef6182b0cef68cbeba4b884bc922\", \"live\": true, \"id\": \"xee731c5c\"}", "{\"sha\": \"4f4240c28c76c6374b6ab504f1a25c111dbef71a\", \"live\": true, \"id\": \"xc9d3f9a6\"}", "{\"sha\": \"50447e106517907c443b13ae4601bd31e7563de8\", \"live\": true, \"id\": \"x398b6b35\"}", "{\"sha\": \"919f5ab49dc8cd590d67f81179b48d923c297724\", \"live\": true, \"id\": \"x61fcc358\"}", "{\"sha\": \"864c451ea2e15d229dd112064b7deeb0177e217d\", \"live\": true, \"id\": \"x8fc440f4\"}", "{\"sha\": \"0e2ae52f5d8d4d9c0bd3bf0e0e1810a1fb4b014e\", \"live\": true, \"id\": \"x93adb645\"}", "{\"sha\": \"38b8c9da844e86b58544b85c477a118be679f624\", \"live\": true, \"id\": \"x37e94b86\"}", "{\"sha\": \"a617111ef52ecce06ffc5abd82739b59bfcb31ca\", \"live\": true, \"id\": \"x0bf1378a\"}", "{\"sha\": \"30b3f56026927786ff0ef06eba8bc09417087bab\", \"live\": true, \"id\": \"x1c238a8d\"}", "{\"sha\": \"84ea0a5d491114069c75ed68ba76e7ba6dd4ec20\", \"live\": true, \"id\": \"xd357c62f\"}", "{\"sha\": \"8a5cd2357dcaa55b548bd77c5ae645ae08a34cba\", \"live\": true, \"id\": \"x799e9985\"}"], "description": "", "basepoints": 27.0, "slug": "quadratic-formula-with-complex-solutions", "kind": "Exercise", "name": "quadratic-formula-with-complex-solutions", "seconds_per_fast_problem": 43.0, "prerequisites": ["quadratic_equation"], "exercise_id": "quadratic-formula-with-complex-solutions"}, "drawing-angles": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/drawing-angles/", "id": "drawing-angles", "display_name": "Drawing angles", "title": "Drawing angles", "all_assessment_items": ["{\"sha\": \"ff707064e490a99554c7c9aa6a3f65dcd09db969\", \"live\": true, \"id\": \"xb6ea5ef69895fc07\"}", "{\"sha\": \"761289fc173d34cd12905ce995481e13b86794f6\", \"live\": true, \"id\": \"xb49ee30fe85b0ac7\"}", "{\"sha\": \"ed4b53da75ea0e8c57e8997dac8230df6482889e\", \"live\": true, \"id\": \"x2f175350a23ba9a4\"}", "{\"sha\": \"220b5e3109e6f201b66a4e041e98a63b9fc38632\", \"live\": true, \"id\": \"x9ee90443c9820d4d\"}", "{\"sha\": \"4b6dd508d798338d239b78ffbfed6fe70c236727\", \"live\": true, \"id\": \"x85a8579064c91a67\"}", "{\"sha\": \"0e6c17cd7abca7bbda92f7933650bbedb7baec29\", \"live\": true, \"id\": \"x0d85a69081d3a205\"}", "{\"sha\": \"be6e2bc02d64d4ddebd4d93dbcb5019571389a27\", \"live\": true, \"id\": \"xc91237344629cc70\"}", "{\"sha\": \"29ab89e34d0c511fdec8db1e11b2f1425a13da5f\", \"live\": true, \"id\": \"xf9e1cd72cc8f0746\"}", "{\"sha\": \"3a394f16f22a5b9b45dced46b832b5084b9cd89e\", \"live\": true, \"id\": \"x9ac5d5dd5e36ae22\"}", "{\"sha\": \"985a75ba51ec80f978d7d97724d6e0750826d1d3\", \"live\": true, \"id\": \"xe9aed263f2600af7\"}", "{\"sha\": \"689315b6e6b04861bc2e22b23acb280b100d3257\", \"live\": true, \"id\": \"xff0e27b506cae745\"}", "{\"sha\": \"d6c0dac6e6341ba137b85fb6627bc6cae353a240\", \"live\": true, \"id\": \"xebb5f9f16b84f1d6\"}", "{\"sha\": \"171bc6934b5d58741b7ccd43925345ecccb80d5a\", \"live\": true, \"id\": \"xd96922c4dd95a409\"}", "{\"sha\": \"a60cc94ded5ea9bd566a174e2018e687e1a84b48\", \"live\": true, \"id\": \"x356cc93f03e1797a\"}", "{\"sha\": \"b1de65d6004c1dbadaf0494e4cb5a5be5e892838\", \"live\": true, \"id\": \"x59caf90ad55e0e50\"}", "{\"sha\": \"2a9b33824c42d96ebee570d81b0471f9828ee180\", \"live\": true, \"id\": \"xb654348736116a41\"}", "{\"sha\": \"66bcd1ec1cbeb790b1dbee3a9881b42911f56a0f\", \"live\": true, \"id\": \"x8c5eb70b98190dd2\"}", "{\"sha\": \"2382bf5e3bd14c489afba920f9e38f9ef63feae5\", \"live\": true, \"id\": \"xcbeb6db1524aff7b\"}", "{\"sha\": \"3ed101adc9c743244908501763f9a135994c546f\", \"live\": true, \"id\": \"x0b62c73fddc8c9df\"}", "{\"sha\": \"8df53a18185215cb97c347cb771dc93f74442a85\", \"live\": true, \"id\": \"xdb5672d25dad2ee6\"}", "{\"sha\": \"0c7697010b38df43c5b25212542cea54a3d2aeb3\", \"live\": true, \"id\": \"x1f01b08f18cb32e0\"}", "{\"sha\": \"5e676a7b1c06feac9749ad442f2b82747de0f196\", \"live\": true, \"id\": \"xb578d093d6bad78b\"}", "{\"sha\": \"6a381176ef53502299e2898abfa5525f7827f6be\", \"live\": true, \"id\": \"xcea256411488d0f5\"}", "{\"sha\": \"849d2be4abf27493ceef711ad8e0d064fa877fc1\", \"live\": true, \"id\": \"xf84e586c451db414\"}", "{\"sha\": \"14b155d7a1e84a08e31aa970ea4d6b57b55f92a7\", \"live\": true, \"id\": \"x4948e1e7fce95438\"}", "{\"sha\": \"1fbb55105cd964a6a097f8fe5a106751f90944be\", \"live\": true, \"id\": \"xe21deef7caca144d\"}", "{\"sha\": \"55dbab70379aec375190b397d6f14178c88becb5\", \"live\": true, \"id\": \"x6c43cc2a4fe84ddd\"}", "{\"sha\": \"2aa744bbb30657758a8f075c775b08c16d571568\", \"live\": true, \"id\": \"x43ef82123a801406\"}", "{\"sha\": \"b924d07a36a9c74fda5056ea38b2a3c23330c575\", \"live\": true, \"id\": \"x504424124da64ce2\"}"], "description": "Use a protractor to construct angles.", "basepoints": 10.0, "slug": "drawing-angles", "kind": "Exercise", "name": "drawing-angles", "seconds_per_fast_problem": 4.0, "prerequisites": ["measuring_angles"], "exercise_id": "drawing-angles"}, "your-heart-does-work--a-relationship-of-pressure-and-volume": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/your-heart-does-work-a-relationship-of-pressure-and-volume/", "id": "your-heart-does-work--a-relationship-of-pressure-and-volume", "display_name": "Your heart does work: A relationship of pressure and volume", "title": "Your heart does work: A relationship of pressure and volume", "all_assessment_items": ["{\"sha\": \"99730de7d52ed7279f79b0c5e9b5364756c0d7b7\", \"live\": true, \"id\": \"xbf6ef840ca0c8f7d\"}", "{\"sha\": \"be777a46f35d72380bf6f957a161726271edc170\", \"live\": true, \"id\": \"xfc17e8dbff7cc49e\"}", "{\"sha\": \"67c8395212e9350573fa1249b09e61e8d1aad2ad\", \"live\": true, \"id\": \"x59788f091562a032\"}", "{\"sha\": \"609c4a8db6f7123ce86d2f6659b4687f3a1a99ba\", \"live\": true, \"id\": \"x8efd25d5ca886716\"}", "{\"sha\": \"c358b1dadf3c1481460149165d206a7d069e47c0\", \"live\": true, \"id\": \"x2edd990ec57fe172\"}"], "description": "Questions related to PV diagrams", "basepoints": 10.0, "slug": "your-heart-does-work-a-relationship-of-pressure-and-volume", "kind": "Exercise", "name": "your-heart-does-work--a-relationship-of-pressure-and-volume", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "your-heart-does-work--a-relationship-of-pressure-and-volume"}, "constructing-linear-and-exponential-functions": {"uses_assessment_items": true, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/constructing-linear-and-exponential-functions/", "id": "constructing-linear-and-exponential-functions", "display_name": "Constructing linear and exponential functions", "title": "Constructing linear and exponential functions", "all_assessment_items": ["{\"sha\": \"4078f6c69722e60c2f34c831124eef6ba253d59e\", \"live\": true, \"id\": \"x28676c177cbf0506\"}", "{\"sha\": \"53c8eec3a9d9b919e5ac6154ad93ac557ed86db9\", \"live\": true, \"id\": \"xe0172609ffe1a1fc\"}", "{\"sha\": \"6faac88bef366f440eb2a4342fc5a1d608e952ed\", \"live\": true, \"id\": \"x2754f5bc40bcc161\"}", "{\"sha\": \"d12436e56e8a2b17c0afe96664e014b174e5d057\", \"live\": true, \"id\": \"x1a5d1de99bfc3fcc\"}", "{\"sha\": \"4c80cb3055804e3ca371965537bb54d82ae1fbf5\", \"live\": true, \"id\": \"x4c0ca95a03141957\"}", "{\"sha\": \"d9984426b97b0b7c4286986a1f8707b406b3d018\", \"live\": true, \"id\": \"x9d650270437ce588\"}", "{\"sha\": \"d85b81e3e85ada960adcfd6b395430141f531f4a\", \"live\": true, \"id\": \"xdcbec7f7de619885\"}", "{\"sha\": \"c43528ead6f04b68ffba8ad5ee5e397284f0b4b1\", \"live\": true, \"id\": \"xf9cfcbf2fc76d0ea\"}", "{\"sha\": \"1c1974ce6d48967ac364f817533afc639a5c6abb\", \"live\": true, \"id\": \"x194ccc5d47a48229\"}", "{\"sha\": \"991e85d7dfde6a90f8ea4b55b7217fb17c8cc589\", \"live\": true, \"id\": \"xb28ceaecbd665423\"}", "{\"sha\": \"9de82d83c2e9cf6a6fe2a2369c3e46c8699f8b4e\", \"live\": true, \"id\": \"x0b92dfbba7bb027c\"}", "{\"sha\": \"007f5faee223826ae0b021b4559adbfcf816e663\", \"live\": true, \"id\": \"x1c878cae258a3cfd\"}", "{\"sha\": \"9230cf09e9c3c5d2f40b295cafe2be1434250acb\", \"live\": true, \"id\": \"x1c92cb67f990d7be\"}", "{\"sha\": \"d4e8a092dc3dc5d8aa33231880799e7d7707fcf9\", \"live\": true, \"id\": \"xcade42b5eec89ab3\"}", "{\"sha\": \"2d440d1ee157f4814e75391f3846fa85d0e875e2\", \"live\": true, \"id\": \"x92e6940ced9d08f5\"}", "{\"sha\": \"3e9e91da99946101990a0a711ee5ef33c1f9df58\", \"live\": true, \"id\": \"x6639a1d0a2112a56\"}", "{\"sha\": \"e7ef973aa7d7cd8f02d031105415608620c32ab5\", \"live\": true, \"id\": \"x41c2d04bf759cdac\"}", "{\"sha\": \"4bde9c0bffdab8f915258b9f4f6b3515a27a59f1\", \"live\": true, \"id\": \"xe0d031d84613d393\"}", "{\"sha\": \"376d5bb0c3c52735d2235b217162c3aab9c6e234\", \"live\": true, \"id\": \"xff306b2a9b5fc466\"}", "{\"sha\": \"bbae2022b268691b9b74af910953c1842f12e5dd\", \"live\": true, \"id\": \"x42dd52ddf3c275df\"}", "{\"sha\": \"c808d6acbb59f54336df4994a67ac9fd822d8994\", \"live\": true, \"id\": \"x7b3a4af9d6e33d39\"}", "{\"sha\": \"c98218bc25455689b72e0c1dcee02dc733eacd79\", \"live\": true, \"id\": \"xd6ff8cf1a80a68d4\"}", "{\"sha\": \"6a7726a66155b8e292235fa39abd22ef08fd7853\", \"live\": true, \"id\": \"x96a81a39db97e992\"}", "{\"sha\": \"13b8bd3e95d87a005360cd04b2d08f253081af97\", \"live\": true, \"id\": \"x91d732a121e7cda0\"}", "{\"sha\": \"1044bd5d136e503926be0ea8d2c4d995aae6b2c1\", \"live\": true, \"id\": \"x4b6910d7bc020946\"}", "{\"sha\": \"4d99d927a6b936d90fc78d71d6e09d20e8d6b6bb\", \"live\": true, \"id\": \"x161e5876cf273f12\"}", "{\"sha\": \"c60d9167479e644079c3850d3ad76c86bc789e22\", \"live\": true, \"id\": \"xac23dfdc1221ec90\"}", "{\"sha\": \"a07cb6419e067ce1506a53f7143ccad43b36b7cf\", \"live\": true, \"id\": \"x9a5eb7edb552f684\"}"], "description": "", "basepoints": 10.0, "slug": "constructing-linear-and-exponential-functions", "kind": "Exercise", "name": "constructing-linear-and-exponential-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-linear-and-exponential-models", "graphing_linear_equations"], "exercise_id": "constructing-linear-and-exponential-functions"}, "quiz--commerce---collective-learning": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/expansion-interconnection/commerce-collective-learning/quiz-commerce-collective-learning/", "id": "quiz--commerce---collective-learning", "display_name": "Quiz: Commerce & Collective Learning", "title": "Quiz: Commerce & Collective Learning", "all_assessment_items": ["{\"sha\": \"9ef431a84c3bc6b061f046af4a4067c98550ff3d\", \"live\": true, \"id\": \"x42bd01d5f3a58ed5\"}", "{\"sha\": \"6386bcfc7ff9d8026bfb03eaab56f1d8af13b581\", \"live\": true, \"id\": \"xc0263b3fbf6810d9\"}", "{\"sha\": \"112b1acf41adbbd0eb377f38373446b26c4541a9\", \"live\": true, \"id\": \"x8037fb68f22c1563\"}", "{\"sha\": \"5960699390ed313a0a407b360cc6414a38f39f98\", \"live\": true, \"id\": \"xead4952b6f21322f\"}", "{\"sha\": \"317150a2fd95e45cca18671790da6c4ddf25d571\", \"live\": true, \"id\": \"xd4c7c2a9d4c3d6b6\"}"], "description": "Quiz 8.2", "basepoints": 10.0, "slug": "quiz-commerce-collective-learning", "kind": "Exercise", "name": "quiz--commerce---collective-learning", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--commerce---collective-learning"}, "sat-math-level-1-quiz-3": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-1/sat-math-level-1-quiz-3/", "id": "sat-math-level-1-quiz-3", "display_name": "SAT Math: Level 1 - Quiz 3", "title": "SAT Math: Level 1 - Quiz 3", "all_assessment_items": ["{\"sha\": \"e22f0e31b719a51d0f4c6d44cb5013ce6de94549\", \"live\": true, \"id\": \"x5cf4702d7f0c47c0\"}", "{\"sha\": \"873b909c61d5b7c0741bd8e294d042272deeea2c\", \"live\": true, \"id\": \"x1fb49bc7e8de8932\"}", "{\"sha\": \"e54980e66d72dc8b6f1d0b6fab52f2247a44e048\", \"live\": true, \"id\": \"x5eb3568bdee17e66\"}", "{\"sha\": \"735d8c3ff2fc09ada35af806281cf978c7602792\", \"live\": true, \"id\": \"x942cc5948f9bcfc3\"}", "{\"sha\": \"7f0f3bab20f171caa0384a4b66d3118dc549fdbd\", \"live\": true, \"id\": \"x48b18ee6514b1415\"}", "{\"sha\": \"aa0e6f00fbabe989250c7e2040242a4d5baa0d0d\", \"live\": true, \"id\": \"x2782ae8b9967e736\"}", "{\"sha\": \"ec55a08a2793af1960ff1da7c92a9cc5ce10e5d9\", \"live\": true, \"id\": \"x8affebcb66c51bbc\"}", "{\"sha\": \"7d54d29c75ab8268159896c5cf733aff4b696cc5\", \"live\": true, \"id\": \"x03309904cd66c958\"}", "{\"sha\": \"bf5a3d71a4dadba68546df5fb712c5aaf8a6b579\", \"live\": true, \"id\": \"x8fdaf161f8295d31\"}", "{\"sha\": \"539367cb188a9c0c235c8badc91dffb0be0cac01\", \"live\": true, \"id\": \"x0e46818c7b1b5969\"}", "{\"sha\": \"e48983f23c491e96de11991e79b2be8352020815\", \"live\": true, \"id\": \"xf8be20fd3ec22eaf\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-1-quiz-3", "kind": "Exercise", "name": "sat-math-level-1-quiz-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-1-quiz-3"}, "systems_of_equations_word_problems": {"uses_assessment_items": false, "path": "khan/math/algebra2/systems_eq_ineq/systems_tutorial_precalc/systems_of_equations_word_problems/", "id": "systems_of_equations_word_problems", "display_name": "Systems of equations word problems", "title": "Systems of equations word problems", "description": "Word problems with systems of equations.", "basepoints": 29.0, "slug": "systems_of_equations_word_problems", "kind": "Exercise", "name": "systems_of_equations_word_problems", "seconds_per_fast_problem": 60.0, "prerequisites": ["systems_of_equations", "graphing_systems_of_equations"], "exercise_id": "systems_of_equations_word_problems"}, "the-mechanics-of-standing-balance": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-mechanics-of-standing-balance/", "id": "the-mechanics-of-standing-balance", "display_name": "The mechanics of standing balance", "title": "The mechanics of standing balance", "all_assessment_items": ["{\"sha\": \"45a2eab0976871efaf0b858b67cbc45bed5222ba\", \"live\": true, \"id\": \"x6daf616b1a97451d\"}", "{\"sha\": \"35df437179cb8c1afb017a50f8fa95b9cbfb36aa\", \"live\": true, \"id\": \"x91c73b74ff484ec0\"}", "{\"sha\": \"7911059451a0b1c99867a52b5664ebec6cd2d758\", \"live\": true, \"id\": \"x6ed49e2b96f1e05a\"}", "{\"sha\": \"c469a76873d754cd563d6236c9687a3debdf6821\", \"live\": true, \"id\": \"x933bb5699db10b2a\"}", "{\"sha\": \"a20b31e036b00479d128d7f47ff79c783f5d76b5\", \"live\": true, \"id\": \"x3614f0e765a4a38d\"}"], "description": "Questions related to phase changes", "basepoints": 10.0, "slug": "the-mechanics-of-standing-balance", "kind": "Exercise", "name": "the-mechanics-of-standing-balance", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-mechanics-of-standing-balance"}, "polynomial-identities": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/polynomial_tutorial/polynomial-identities/", "id": "polynomial-identities", "display_name": "Polynomial identities", "title": "Polynomial identities", "all_assessment_items": ["{\"sha\": \"0fffd84f57a9d74fce4f82ce804d928e768ddafd\", \"live\": true, \"id\": \"x4a22f09a1f3868b9\"}", "{\"sha\": \"9e0a285f4ce958572863780021e159f42d49e86b\", \"live\": true, \"id\": \"x4ca71ef3a027bde2\"}", "{\"sha\": \"853dd352ef1a1fc76797b53b8ca18428a10bc9ca\", \"live\": true, \"id\": \"x905de0385a1dedd4\"}", "{\"sha\": \"f1e819774e116a30a2cd1b4c75cae806ed86b4c7\", \"live\": true, \"id\": \"x92eb7f871d460224\"}", "{\"sha\": \"944bc812eb859cb01ca472df0d2ea28350531fa7\", \"live\": true, \"id\": \"x5965c501eccbd0e7\"}", "{\"sha\": \"842e28963bca723bf9902d8c47e78fac321a86df\", \"live\": true, \"id\": \"xbc3bf338e711c60b\"}", "{\"sha\": \"aac9c95f1cc20ca98c5a9725821c4d59c380e282\", \"live\": true, \"id\": \"xc7c1c1ee95170a1c\"}", "{\"sha\": \"27bebebae8a75807f53738ac5bce74046f3689f9\", \"live\": true, \"id\": \"x545d80c593635cc1\"}", "{\"sha\": \"f8535143475137957e545078c9bebaf98a7d2f88\", \"live\": true, \"id\": \"x85ff9847b290edf2\"}", "{\"sha\": \"b85bc5834ef2385c6019b2006059fc0c5adbf494\", \"live\": true, \"id\": \"xbbfef3812e96d41b\"}", "{\"sha\": \"2c96f9635286ad74fb9d21423193cba87d545a55\", \"live\": true, \"id\": \"x64d3132a0b3d12cf\"}", "{\"sha\": \"9af2210095374f93a80b4debc802369f105a933a\", \"live\": true, \"id\": \"xa1522c66279073be\"}", "{\"sha\": \"90720ae988a258b360261417e96e2d1392064af1\", \"live\": true, \"id\": \"x40aa19f18bb478b8\"}", "{\"sha\": \"e2e6c122b97fb8385cc5423b96c9d7c135676686\", \"live\": true, \"id\": \"x77081d48a5b0af2d\"}", "{\"sha\": \"92426356751dfd5cb36cc212fd70fad7f162ba9b\", \"live\": true, \"id\": \"x91b8ef8d56df54c6\"}", "{\"sha\": \"cbe8fd8b4bf0ffa93262f157f6d5252843deb5be\", \"live\": true, \"id\": \"x02ee62b2bcdc5bec\"}", "{\"sha\": \"a8c13a86f8a806b1890966c5b2c339344c471e57\", \"live\": true, \"id\": \"x73354f231fe1e5d3\"}", "{\"sha\": \"3e684c0fcec09e9da2325b354814f2406ef4bc04\", \"live\": true, \"id\": \"xe4249f3457b6511a\"}", "{\"sha\": \"60013641efb33d8752cd42c7a977632e94197b25\", \"live\": true, \"id\": \"xed2b1be2ee9909cd\"}", "{\"sha\": \"2ad68b16840f9b8a379a4caa9bea79d5ac5e100b\", \"live\": true, \"id\": \"x78d7420adf2bd758\"}"], "description": "", "basepoints": 10.0, "slug": "polynomial-identities", "kind": "Exercise", "name": "polynomial-identities", "seconds_per_fast_problem": 4.0, "prerequisites": ["factoring_polynomials_2", "factoring_difference_of_squares_3", "factoring_polynomials_with_two_variables"], "exercise_id": "polynomial-identities"}, "testing-new-suture-material": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/testing-new-suture-material/", "id": "testing-new-suture-material", "display_name": "Testing new suture material", "title": "Testing new suture material", "all_assessment_items": ["{\"sha\": \"b5529e068f7dfeff752c04847a5d3d3877748746\", \"live\": true, \"id\": \"x228091c39669f94c\"}", "{\"sha\": \"b518a2f453899fab0ebb73472f29925169b08198\", \"live\": true, \"id\": \"xd3585de1838a4859\"}", "{\"sha\": \"5b2620b6ea1dddd8220f1ea36cca830d256987f1\", \"live\": true, \"id\": \"x57b7acb800d94979\"}", "{\"sha\": \"6fcd318386a0885613fe2b861c439872a7ac9d5e\", \"live\": true, \"id\": \"xed2a433cb0e73d17\"}", "{\"sha\": \"56a6a99ccc9c1d5b0f38c67de34b7095a1bb53bb\", \"live\": true, \"id\": \"xb0b8e704aa57d542\"}"], "description": "This passage will test your knowledge on the force of tension", "basepoints": 10.0, "slug": "testing-new-suture-material", "kind": "Exercise", "name": "testing-new-suture-material", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "testing-new-suture-material"}, "distance_formula": {"uses_assessment_items": false, "path": "khan/math/geometry/analytic-geometry-topic/cc-distances-between-points/distance_formula/", "id": "distance_formula", "display_name": "Distance formula", "title": "Distance formula", "description": "Use the Pythagorean theorem to find the distance between two points on the coordinate plane.", "basepoints": 25.0, "slug": "distance_formula", "kind": "Exercise", "name": "distance_formula", "seconds_per_fast_problem": 33.0, "prerequisites": ["pythagorean_theorem_1"], "exercise_id": "distance_formula"}, "gas-phase---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/gas-phase-passage-2/", "id": "gas-phase---passage-2", "display_name": "Charles' law and gas in a piston", "title": "Charles' law and gas in a piston", "all_assessment_items": ["{\"sha\": \"821057b6e6de433e6f4c809384f0785da846abe8\", \"live\": true, \"id\": \"x3c6161eb52f598d4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"06d11ba3607154b7ffd38f23850c27ca7400ee62\", \"live\": true, \"id\": \"x97679b00d8ec56b3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de3132ede06957d44ca497ed34bd3a11fd0c9812\", \"live\": true, \"id\": \"x3bc49391a6efef80\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6bbb7d4276dd145ef454b16aef454fd5d01729fa\", \"live\": true, \"id\": \"x930ab4f6bccbcc70\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"604023487863ebc1c4636c36066262aba746551b\", \"live\": true, \"id\": \"x103b7952223ff80c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "This passage will test your knowledge on the gas phase", "basepoints": 10.0, "slug": "gas-phase-passage-2", "kind": "Exercise", "name": "gas-phase---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gas-phase---passage-2"}, "gas-phase---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/gas-phase-passage-1/", "id": "gas-phase---passage-1", "display_name": "Chlorofluorocarbons and the environment", "title": "Chlorofluorocarbons and the environment", "all_assessment_items": ["{\"sha\": \"b43445e9d5246ef8e63bd084f12be02704aec7f9\", \"live\": true, \"id\": \"xc53188f8f6eac7fb\"}", "{\"sha\": \"90f36d2e0668dc7b290655a2243d32aeb7d26e29\", \"live\": true, \"id\": \"x95fbad46ddda5bff\"}", "{\"sha\": \"72ad57d87e05e3a8d9d68b9d0c2fbb69128c5325\", \"live\": true, \"id\": \"x57e86482c13b4924\"}", "{\"sha\": \"9b8365ed0742ec87b48293408d4253f13978fb50\", \"live\": true, \"id\": \"x37eb5d5e1319a024\"}", "{\"sha\": \"9665fc68736410e3ee9b24e540156ee19dc9bff9\", \"live\": true, \"id\": \"xd8cb452877948719\"}"], "description": "This passage will test your knowledge on the gas phase of molecules", "basepoints": 10.0, "slug": "gas-phase-passage-1", "kind": "Exercise", "name": "gas-phase---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gas-phase---passage-1"}, "sat-math-level-4-quiz-3": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-math-level-4-quiz-3/", "id": "sat-math-level-4-quiz-3", "display_name": "SAT Math: Level 4 - Quiz 3", "title": "SAT Math: Level 4 - Quiz 3", "all_assessment_items": ["{\"sha\": \"3e45818120432bcdac98af93f2735d9cedd6be4c\", \"live\": true, \"id\": \"xaffeb569997ae2eb\"}", "{\"sha\": \"aaae8425271b87a29cb785619f122ca34b0535e2\", \"live\": true, \"id\": \"xa40ad7a6efcdabc7\"}", "{\"sha\": \"e5057a98a50ec130067dd0e78154db2552aa61ac\", \"live\": true, \"id\": \"xf644e61bbfca6cac\"}", "{\"sha\": \"4a2cfb739cd9d0faf5b770753ca7273869493e01\", \"live\": true, \"id\": \"x3eabeaaa8a4a4997\"}", "{\"sha\": \"878fec3d59c99f6be991b08157cc0b1d164114a8\", \"live\": true, \"id\": \"xc82fd576704e2c13\"}", "{\"sha\": \"a61c15ca531f1b2dd8d6b2f58254a256896a2a8b\", \"live\": true, \"id\": \"xcdbf896bfa5573e9\"}", "{\"sha\": \"ab31c50516a8e0a4f99ea2d44bd9da536b14fa49\", \"live\": true, \"id\": \"x6d73c85de1a615cc\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-4-quiz-3", "kind": "Exercise", "name": "sat-math-level-4-quiz-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-4-quiz-3"}, "sat-math-level-4-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-4/sat-math-level-4-quiz-2/", "id": "sat-math-level-4-quiz-2", "display_name": "SAT Math: Level 4 - Quiz 2", "title": "SAT Math: Level 4 - Quiz 2", "all_assessment_items": ["{\"sha\": \"8b4a2bbda47af6a70c5c28da3c0603bb9653af54\", \"live\": true, \"id\": \"x57f697a0849f8715\"}", "{\"sha\": \"67dd62c12768df1ee566249c9de930836d142c7e\", \"live\": true, \"id\": \"xa41062310fdd28ec\"}", "{\"sha\": \"54a577bb1024ce55063ded0e141d98373eebe425\", \"live\": true, \"id\": \"xcd9ffb6c99dde33d\"}", "{\"sha\": \"04076194302faad9e3a79c16b0ffd49553b3eb31\", \"live\": true, \"id\": \"xf1d302f7916ba6fd\"}", "{\"sha\": \"63ed14cf1a9644a5b9b0bfe972c9bf258e8662b5\", \"live\": true, \"id\": \"xd6b81d7b6b09796c\"}", "{\"sha\": \"5d80e05b6b477ae8e90cce8c3cb0540887f1841d\", \"live\": true, \"id\": \"xbf17a18b1d96fe64\"}", "{\"sha\": \"ad8bbcdc3ae4a8873c23c9faf686ca6f82aff42f\", \"live\": true, \"id\": \"x2528f724b57ac8e6\"}", "{\"sha\": \"d939c833cb25bf5bba841e10153da0d56479a2c5\", \"live\": true, \"id\": \"xec1a3705d5ed9a45\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-4-quiz-2", "kind": "Exercise", "name": "sat-math-level-4-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-4-quiz-2"}, "writing-basic-algebraic-expressions-word-problems-2": {"uses_assessment_items": true, "id": "writing-basic-algebraic-expressions-word-problems-2", "display_name": "Writing basic algebraic expressions word problems 2", "title": "Writing basic algebraic expressions word problems 2", "all_assessment_items": ["{\"sha\": \"04ad8a650be2f6c7f0cb8851d535914124367a24\", \"live\": true, \"id\": \"x5760f8f2\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2c50d8d5998b43e6071b936c98df1a143c597ec5\", \"live\": true, \"id\": \"xc68c0d15d8b0888b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"e9bfcd07528574d1c1448c318257813e0ec1f84d\", \"live\": true, \"id\": \"x9eb0436ae935d2df\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"687b62100d5b0f386797873589844bc58713f730\", \"live\": true, \"id\": \"xa6968e1f436588a0\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2a76a3721f9c385213676a25abac7011ecb85e6b\", \"live\": true, \"id\": \"xb8e28d162bd81ffe\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d0f985c9bd403a22aae4478e468d509364056f67\", \"live\": true, \"id\": \"xd33cc6cb935cac56\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"7cedba4005996f1b7fccc9f01715e0bb40f37be7\", \"live\": true, \"id\": \"x0f87e3b8d4c3a2b8\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"5d1dd666d03fe8422487402b77b8196db11e02ab\", \"live\": true, \"id\": \"x82272f5d627d70bf\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f32447c119fcad74bc33b3d5eff2c1d5b011a3ac\", \"live\": true, \"id\": \"xa98e66f32fbf0b5e\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"323c684930d270687acdc3c433a9b881b0389955\", \"live\": true, \"id\": \"x0b606da402dc23fd\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"24ec0fe9813cc9b14c12fcb2f22e9189c3d1cfc7\", \"live\": true, \"id\": \"x23485d5d213f9111\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9b889c17c1ad7786e81d70bc367c69346aa26fa0\", \"live\": true, \"id\": \"x665e5cff5a6bc15c\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"12fb92c3bd087aebcd2c27581be6264396a49110\", \"live\": true, \"id\": \"x7af83de27f7909f7\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b3f14456e60fc346887048eb33b272c01e694b30\", \"live\": true, \"id\": \"x29db090c13ef3382\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"918f9000ed7ed03dc9680b13ce11221672d39e36\", \"live\": true, \"id\": \"xf1aed4e7ac3b8d6a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"39a67c6ee1cdddd23b659e1f483c3ca869835627\", \"live\": true, \"id\": \"x6dec22118d96a757\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cee3a2363206802273a2d920c7f2b46c8ffa87aa\", \"live\": true, \"id\": \"x85193448963715e7\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9164d7835e3a3f86c77d88f1e52b1b83d275f666\", \"live\": true, \"id\": \"x6d564f8dd32b8391\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"23273ccaf71ec0e249532b8aca32db3a6b0acb05\", \"live\": true, \"id\": \"xd7f9450b8b1b1e44\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"80e86b144570c212e58b1d39ccedd684aa772e3b\", \"live\": true, \"id\": \"x82806063fcf03c49\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}"], "description": "Practice writing slightly more complex algebraic expressions to model real-world situations.", "basepoints": 10.0, "path": "writing-basic-algebraic-expressions-word-problems-2/", "slug": "writing-basic-algebraic-expressions-word-problems-2", "kind": "Exercise", "name": "writing-basic-algebraic-expressions-word-problems-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["writing-expressions-with-variables-word-problems", "calculating-the-mean"], "exercise_id": "writing-basic-algebraic-expressions-word-problems-2"}, "constructing-and-comparing-proportional-relationships": {"uses_assessment_items": true, "id": "constructing-and-comparing-proportional-relationships", "display_name": "Constructing and comparing proportional relationships", "title": "Constructing and comparing proportional relationships", "all_assessment_items": ["{\"sha\": \"6954f944fda2ae9845fc296048194db63dc99ccf\", \"live\": true, \"id\": \"xda35e76f\", \"perseus_api_major_version\": null}", "{\"sha\": \"41aef8ef769508f99c3afb6a2a1ca1a7303daa78\", \"live\": true, \"id\": \"x5f21e250\", \"perseus_api_major_version\": null}", "{\"sha\": \"de892c47d47f0f51e9a06a17c9785961b9a50ce9\", \"live\": true, \"id\": \"x97c0c741\", \"perseus_api_major_version\": null}", "{\"sha\": \"f6260c7270b48ec87b077f4b8550b9323fa9cb2d\", \"live\": true, \"id\": \"x48bb1b69\", \"perseus_api_major_version\": null}", "{\"sha\": \"774e9e077235bd0b8101289335d645ac3486431e\", \"live\": true, \"id\": \"xf7a1abf1\", \"perseus_api_major_version\": null}", "{\"sha\": \"f7961a0bc9905cf7d44aacf5f40ab66747863964\", \"live\": true, \"id\": \"x9b924966\", \"perseus_api_major_version\": null}", "{\"sha\": \"f21935debef3cb2d8d53f50e480f39ee813724cc\", \"live\": true, \"id\": \"xc60a73c9\", \"perseus_api_major_version\": null}", "{\"sha\": \"6741722326dd18cadd0ac1f376efef938f591937\", \"live\": true, \"id\": \"x78526085\", \"perseus_api_major_version\": null}", "{\"sha\": \"1ee3600554ebac7755f70887d504123da4a69a36\", \"live\": true, \"id\": \"x4bf910cd\", \"perseus_api_major_version\": null}", "{\"sha\": \"a9dfd52a3f5c3877649c6253f5199d5169a3a671\", \"live\": true, \"id\": \"xe040c12d\", \"perseus_api_major_version\": null}", "{\"sha\": \"383488a39568ea9d0684e975887112a86377b0c6\", \"live\": true, \"id\": \"x4b65bacc\", \"perseus_api_major_version\": null}", "{\"sha\": \"8f37fbe86634dc3f7c20bec657fd761b25314dac\", \"live\": true, \"id\": \"xfeff55fd\", \"perseus_api_major_version\": null}", "{\"sha\": \"1205e9df5e6a54a786053a8319d6281413154573\", \"live\": true, \"id\": \"xb6564867\", \"perseus_api_major_version\": null}", "{\"sha\": \"8257168239260e3cf3342ff9290cb2a35459fb89\", \"live\": true, \"id\": \"x9f377d4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"4b1d34e0ea6ef98aa0893c7214ec04f6231d5566\", \"live\": true, \"id\": \"x4386e5d3\", \"perseus_api_major_version\": null}", "{\"sha\": \"838d2e23a9a046905b75f468c8c6127ce068344e\", \"live\": true, \"id\": \"xf4ef2f4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"998f6bd135cb35dcb310da45886e95c8f7ea5bdf\", \"live\": true, \"id\": \"xb58e2f88\", \"perseus_api_major_version\": null}", "{\"sha\": \"0fde2b1394e5305fe4bde69d727ee411c08f8150\", \"live\": true, \"id\": \"xe53892d2\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a14454a743935decc1de5c8664cd8b950d39671\", \"live\": true, \"id\": \"x85c1d911\", \"perseus_api_major_version\": null}", "{\"sha\": \"14c99f40ade856d80cd44d91b38e913696ce8fa9\", \"live\": true, \"id\": \"x6820dae7\", \"perseus_api_major_version\": null}", "{\"sha\": \"363d20434e30e7000e19ef8f55f8a12bde7646f5\", \"live\": true, \"id\": \"x9f615826\", \"perseus_api_major_version\": null}", "{\"sha\": \"7ef3a115c3c77c52f19de017744ec1a67fb275be\", \"live\": true, \"id\": \"x12616564\", \"perseus_api_major_version\": null}", "{\"sha\": \"e99449c798427bcc3135bf89b560f996128d70da\", \"live\": true, \"id\": \"x4ec2cc56\", \"perseus_api_major_version\": null}", "{\"sha\": \"85481c65773baa68a2b0eedf6a0061dd4f71af3f\", \"live\": true, \"id\": \"x21a5052e\", \"perseus_api_major_version\": null}", "{\"sha\": \"58a1e97592c4d5e0a21b7a7a12d12afb3955de06\", \"live\": true, \"id\": \"xfb5ea5d1\", \"perseus_api_major_version\": null}", "{\"sha\": \"4046779981a62a12789e81e6e96e924bb40d3a95\", \"live\": true, \"id\": \"x30d39850\", \"perseus_api_major_version\": null}", "{\"sha\": \"beed9c467c02625a102c2340747750d83e8aa93f\", \"live\": true, \"id\": \"xa9cbbd51\", \"perseus_api_major_version\": null}", "{\"sha\": \"3ab032e660fce3f5078c6891d0dccd15631431c7\", \"live\": true, \"id\": \"xc57576dc\", \"perseus_api_major_version\": null}", "{\"sha\": \"e55d9d4b648e2577aa10fbdf04bda05e2630800e\", \"live\": true, \"id\": \"x2569977f\", \"perseus_api_major_version\": null}", "{\"sha\": \"419a0e2c267a12e7790c4570a87a01e3168a14cc\", \"live\": true, \"id\": \"x5b5f185b\", \"perseus_api_major_version\": null}", "{\"sha\": \"0ae7170b8ce2033f72fb31d02e3ca7299c8b0170\", \"live\": true, \"id\": \"x23ac60a6\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed7c1534e4910679f332d724078b5c0bf7b6daba\", \"live\": true, \"id\": \"xdbbf427c\", \"perseus_api_major_version\": null}", "{\"sha\": \"34d31661223ab3e8a716aa792c7d3c4a85b37625\", \"live\": true, \"id\": \"xe0ee0c4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"618c2b2cce4eed2dd1bb316e4b8e6fbdd71148bc\", \"live\": true, \"id\": \"x96473391\", \"perseus_api_major_version\": null}", "{\"sha\": \"8cfe419ca035d95d17a8c6d28cf8ae0cb2e9e80e\", \"live\": true, \"id\": \"x32a1e8ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"ced7cd717e624d00d41cb05b8663f4af1651c248\", \"live\": true, \"id\": \"x857b99ff\", \"perseus_api_major_version\": 3}"], "description": "", "basepoints": 24.0, "path": "constructing-and-comparing-proportional-relationships/", "slug": "constructing-and-comparing-proportional-relationships", "kind": "Exercise", "name": "constructing-and-comparing-proportional-relationships", "seconds_per_fast_problem": 30.0, "prerequisites": ["analyzing-and-identifying-proportional-relationships"], "exercise_id": "constructing-and-comparing-proportional-relationships"}, "palette-of-narmer-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap/palette-of-narmer-quiz/", "id": "palette-of-narmer-quiz", "display_name": "Palette of Narmer (quiz)", "title": "Palette of Narmer (quiz)", "all_assessment_items": ["{\"sha\": \"b1b8b2c6153e18f1ab0aaa09f78a46ef28ed422b\", \"live\": true, \"id\": \"x439b4c63f8d0b1b7\"}", "{\"sha\": \"8141019f8b23fbec0bca6d82e6e59d4251da0fcd\", \"live\": true, \"id\": \"xca974af67617542c\"}", "{\"sha\": \"d8a9c88a74eb5552d34077c287d1b0708052dc08\", \"live\": true, \"id\": \"xd7334d3542005a2e\"}", "{\"sha\": \"c05b9bc36507c710d46a2ded9d7f96dd6a4130c4\", \"live\": true, \"id\": \"x0208862fdb5327b1\"}", "{\"sha\": \"89e38a4a9ce2d44275a4ef8688e8c4ff22164e63\", \"live\": true, \"id\": \"x1361c0d2cc8eb936\"}", "{\"sha\": \"41fc2b5604d92060ace21f0df777d3c446f5add2\", \"live\": true, \"id\": \"xb32d68282e40feb7\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "palette-of-narmer-quiz", "kind": "Exercise", "name": "palette-of-narmer-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "palette-of-narmer-quiz"}, "the-radioactivity-of-iodine-131": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-radioactivity-of-iodine-131/", "id": "the-radioactivity-of-iodine-131", "display_name": "The Radioactivity of Iodine-131", "title": "The Radioactivity of Iodine-131", "all_assessment_items": ["{\"sha\": \"2abc94eaa5c86eb71a9a24c97947c15ca72f0ace\", \"live\": true, \"id\": \"x0a2b4c5cd22f22e2\"}", "{\"sha\": \"3e68e50b662c9f9601167ed93b08b68b1969fe0e\", \"live\": true, \"id\": \"x71ce80d0754c8890\"}", "{\"sha\": \"937514efc776655dd1704552057b51358467e03c\", \"live\": true, \"id\": \"xcdfb2e8e736f4733\"}", "{\"sha\": \"32edae703d0c760bd0a1aa8f13809697f6623312\", \"live\": true, \"id\": \"x145ce93dfc80db1f\"}", "{\"sha\": \"3b12596157cd7b290f5c4e0b300f8bef2cadfce2\", \"live\": true, \"id\": \"xe137d9755ded7f2a\"}"], "description": "The Radioactivity of Iodine-131", "basepoints": 10.0, "slug": "the-radioactivity-of-iodine-131", "kind": "Exercise", "name": "the-radioactivity-of-iodine-131", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-radioactivity-of-iodine-131"}, "visually-comparing-fractions": {"uses_assessment_items": true, "id": "visually-comparing-fractions", "display_name": "Visually comparing fractions with unlike denominators", "title": "Visually comparing fractions with unlike denominators", "all_assessment_items": ["{\"sha\": \"9a2e75c63efecc3cfefefd703cf95347c11d1706\", \"live\": true, \"id\": \"x2f3247eb3e1fb73b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48dfbd8351742d259d3bcf40ea398e36e9a60970\", \"live\": true, \"id\": \"x7dcb1dd64efda12b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"38bac3e670285de42c2148e5446408e3fd0fb032\", \"live\": true, \"id\": \"x371a9685e6aafa06\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6260a7b4495390ab2d8ee9a401501c1f440653c3\", \"live\": true, \"id\": \"x8f5020a3c2f0627d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"da94f095fb1990b83304dbbb834879fe7a67e86b\", \"live\": true, \"id\": \"xd3920da19d8290fd\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a39a72cba82580a44d6cb587d1f88f22df59956a\", \"live\": true, \"id\": \"x0eb97fc92ad700f0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e4aac14d5bca9401f8351051c788c68aaa1525b8\", \"live\": true, \"id\": \"x52aeb0a791d9e78f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23d92de33d6a86244c39eaddc409ea1ab66c72a8\", \"live\": true, \"id\": \"x7e9c59b3739aa07f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7033f224f2e0eb72802e50ebe1fa14ef019cea90\", \"live\": true, \"id\": \"x0d0c31f88fd28e7e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"907c6040c29cc4758bb426e67a343c1a08d26066\", \"live\": true, \"id\": \"x073b5cccfb447bf9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"99d858ab84a9b6080a99fea6634e1234b962648c\", \"live\": true, \"id\": \"xcc1a3683db05e9f0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4327e7fb2e5faf3e889bc46681c3da364f94014d\", \"live\": true, \"id\": \"xe79084793a8c538d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4472cf0f745eb3073ab4ef494985c3a07b8ad16b\", \"live\": true, \"id\": \"xf1cb486d049bef4a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1de505de63063d3d9fe4d5a89a2d79db937ebc13\", \"live\": true, \"id\": \"x93185f59ad733404\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d5fcd1a3df24affbbe41d81961a8fa2b126a4383\", \"live\": true, \"id\": \"x7feb27e6fa23b4bd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0fda875cd628f553a0597d11f38be0cb04a2db7e\", \"live\": true, \"id\": \"xfe2111e691cd26b6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"52f7a773710977985ea8607ae15deac6fbe4a264\", \"live\": true, \"id\": \"x5ae624474ff4f986\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"5678783b7c6b37ae3e29cd6874ae51c3f0835c17\", \"live\": true, \"id\": \"x8f3b96d17a1095f2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"3b495121bde5ba4598bce5fbb9ef7fc8c3aee1ef\", \"live\": true, \"id\": \"x505ac5ce943d1045\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"38fa2a71ac5bcc89b29fc913af8ae42cf343bd70\", \"live\": true, \"id\": \"xa848df01c35b4d02\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cc22898bc7858baf77434966a5775d79d782915c\", \"live\": true, \"id\": \"x05bcf21bc3b0ed43\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Practice comparing fractions by looking at pictures. Fractions in these problems do not have common denominators.", "basepoints": 10.0, "path": "visually-comparing-fractions/", "slug": "visually-comparing-fractions", "kind": "Exercise", "name": "visually-comparing-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["equivalent_fractions", "comparing-fractions-with-the-same-numerator-or-denominator"], "exercise_id": "visually-comparing-fractions"}, "combining-functions-with-arithmetic-operations": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/function_expressions/combining-functions-with-arithmetic-operations/", "id": "combining-functions-with-arithmetic-operations", "display_name": "Modeling with combined functions", "title": "Modeling with combined functions", "all_assessment_items": ["{\"sha\": \"a6de58c95f7563c6b551beb03732d2fdee13007b\", \"live\": true, \"id\": \"x4b355ff5b5e9650f\"}", "{\"sha\": \"4d6177c4ea03cf22ff24e37189647bbda4f9a985\", \"live\": true, \"id\": \"x15ec5d509a6e6be3\"}", "{\"sha\": \"eb7a96aee62dc0a766e8145424cc45ce7fa5971d\", \"live\": true, \"id\": \"xbd0d6289971ef443\"}", "{\"sha\": \"28fea3b3efd3c62966c9e0bd9933799c6786b004\", \"live\": true, \"id\": \"xa33100bf5b63b25b\"}", "{\"sha\": \"c444188bf33c6098bd8b0817ae181415be60ed1b\", \"live\": true, \"id\": \"xc2e4fa12b384adbc\"}", "{\"sha\": \"337ae8e140e2a519062a3c239447f48f12fa68a8\", \"live\": true, \"id\": \"x2a89383521dfb8dc\"}", "{\"sha\": \"ebe350e18e47bf090f20907dd957079770929747\", \"live\": true, \"id\": \"x3a0fe62c5ab56625\"}", "{\"sha\": \"b3e17780ffb3a5b5860aa70285e6162c824b48d6\", \"live\": true, \"id\": \"x6e397010fae8e255\"}", "{\"sha\": \"afa062a32754524bc554f62753e37ae452aa14dc\", \"live\": true, \"id\": \"x171c90980f87f5eb\"}", "{\"sha\": \"5a77262d5362c2bcb024bc7297e2b0886547f182\", \"live\": true, \"id\": \"x3ee8aa69e25ef1a3\"}", "{\"sha\": \"82d39fd26f8f5bbcfdf692af5af8649a7c2b3cd1\", \"live\": true, \"id\": \"x531de9ebe15b02e3\"}", "{\"sha\": \"7bbc366905b0259d5dae59d8479b93edb98d7d7e\", \"live\": true, \"id\": \"x090fbd905fcdd410\"}", "{\"sha\": \"e57e3099a73dcadde69a0043bf57b7bf43f38a40\", \"live\": true, \"id\": \"xc8d4e53ede97d235\"}", "{\"sha\": \"f0f63d06acc048541c1ca9e3d1383de6a48a7468\", \"live\": true, \"id\": \"xd6f5b3ff0aaeb338\"}", "{\"sha\": \"31f07c83927d746ad9b2fec9732a9c9ec5c238ee\", \"live\": true, \"id\": \"xac6678f62174e630\"}", "{\"sha\": \"8eb817e355bc084e10b7ea93258215b799fcbc72\", \"live\": true, \"id\": \"xf59c451ef09d6769\"}"], "description": "", "basepoints": 10.0, "slug": "combining-functions-with-arithmetic-operations", "kind": "Exercise", "name": "combining-functions-with-arithmetic-operations", "seconds_per_fast_problem": 4.0, "prerequisites": ["modeling-with-exponential-functions"], "exercise_id": "combining-functions-with-arithmetic-operations"}, "behavior-and-genetics-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/behavior/behavior-and-genetics/behavior-and-genetics-questions/", "id": "behavior-and-genetics-questions", "display_name": "Behavior and genetics questions", "title": "Behavior and genetics questions", "all_assessment_items": ["{\"sha\": \"f5daafeda65186d8a7d04786d1a62f5db62a417e\", \"live\": true, \"id\": \"xde7d6a86393aad8c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"76519424c662debdb1a369bece1542c0c23b41ca\", \"live\": true, \"id\": \"x9a0fd73a8ff87b06\", \"perseus_api_major_version\": null}", "{\"sha\": \"7fb7fc070a71e0132d28cb39fb06fd88720a45cb\", \"live\": true, \"id\": \"x8fca2781d326c88c\", \"perseus_api_major_version\": null}", "{\"sha\": \"727a8cacecb23f2de0ee641244332de4c1012ab2\", \"live\": true, \"id\": \"x537c058dfabd8ac8\", \"perseus_api_major_version\": null}", "{\"sha\": \"6168681b1933a678c3600d5dbf4c7ac06b880c7d\", \"live\": true, \"id\": \"xe5fae15b781dae3d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"85b4b48cade503cec551d649b4795c2f6f1371cc\", \"live\": true, \"id\": \"x2ae1f42877f7d59d\", \"perseus_api_major_version\": null}", "{\"sha\": \"afe0a3e1f41d06fc88924a213e38df28b7a4c3c1\", \"live\": true, \"id\": \"xc18c81d64d956bb4\", \"perseus_api_major_version\": null}", "{\"sha\": \"0157916090c027a7cb7ad074f5c8ceab41ea0c2c\", \"live\": true, \"id\": \"x7396296d67feff11\", \"perseus_api_major_version\": null}", "{\"sha\": \"704efbc7005de0d54f7b143085eb230cfccd0776\", \"live\": true, \"id\": \"x4df7e2ffd3cea99b\", \"perseus_api_major_version\": null}", "{\"sha\": \"0ef2e40e250348b9ac5df1f331acd1499d944595\", \"live\": true, \"id\": \"xb24419ce30a131bc\", \"perseus_api_major_version\": null}", "{\"sha\": \"616f3db33725ea63d583d8f56c884e2b7c167fe3\", \"live\": true, \"id\": \"x2e4365aa70444e4d\", \"perseus_api_major_version\": null}", "{\"sha\": \"0aaf7db072ca95bf2cbe3d999d84f5d79f021a48\", \"live\": true, \"id\": \"x0b6de22f1e7169fb\", \"perseus_api_major_version\": null}"], "description": "Behavior and genetics questions", "basepoints": 10.0, "slug": "behavior-and-genetics-questions", "kind": "Exercise", "name": "behavior-and-genetics-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "behavior-and-genetics-questions"}, "prime_factorization": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/factors-multiples/prime_factorization/prime_factorization/", "id": "prime_factorization", "display_name": "Prime factorization", "title": "Prime factorization", "description": "", "basepoints": 16.0, "slug": "prime_factorization", "kind": "Exercise", "name": "prime_factorization", "seconds_per_fast_problem": 9.0, "prerequisites": ["prime_numbers", "composite_numbers"], "exercise_id": "prime_factorization"}, "angles_of_a_polygon": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/triang_prop_tut/angles_of_a_polygon/", "id": "angles_of_a_polygon", "display_name": "Angles of a polygon", "title": "Angles of a polygon", "description": "", "basepoints": 14.0, "slug": "angles_of_a_polygon", "kind": "Exercise", "name": "angles_of_a_polygon", "seconds_per_fast_problem": 7.0, "prerequisites": ["triangle_angles_1"], "exercise_id": "angles_of_a_polygon"}, "van-der-weyden-s-deposition-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/weyden/van-der-weyden-s-deposition-quiz/", "id": "van-der-weyden-s-deposition-quiz", "display_name": "Van der Weyden's Deposition Quiz", "title": "Van der Weyden's Deposition Quiz", "all_assessment_items": ["{\"sha\": \"f1492dac120fdf89aef80d457693babdd0420e33\", \"live\": true, \"id\": \"x063d7fdd75bce1c7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"222ae192931ea56864d13f9fd5dabf29c4ed5b3e\", \"live\": true, \"id\": \"x2b5d378e6b57e957\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"682656c7814137cb12e09b616416b30bf8f1d3ce\", \"live\": true, \"id\": \"x8c953abf5c2a8b53\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d4f0c42a35a10ffe799ab2e2bb569085bada09c5\", \"live\": true, \"id\": \"x250388847e3dc1b7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "This quiz is for the video Van der Weyden, Deposition.", "basepoints": 10.0, "slug": "van-der-weyden-s-deposition-quiz", "kind": "Exercise", "name": "van-der-weyden-s-deposition-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "van-der-weyden-s-deposition-quiz"}, "fluids-in-motion--passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/fluids-in-motion-passage-2/", "id": "fluids-in-motion--passage-2", "display_name": "Hydrotherapy and full body immersion", "title": "Hydrotherapy and full body immersion", "all_assessment_items": ["{\"sha\": \"6c3156be62934653f6281a39da713993254685c1\", \"live\": true, \"id\": \"x6ff6ecbde0c763a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"3a6976c2f387925969574d4c4d4d8d53acb4eb8d\", \"live\": true, \"id\": \"xda8f57162aebc0f6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"dccd2b555627c55f29a7ffbb24a15dbf91be2f74\", \"live\": true, \"id\": \"x5723e0aab86fdacb\", \"perseus_api_major_version\": null}", "{\"sha\": \"5eb640017fb1fcdeb94fd6b123d379bfb571fedb\", \"live\": true, \"id\": \"xc11c1de9a532aef8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d1a95e618414c7d31e36ddbc4846174079e748fc\", \"live\": true, \"id\": \"x036fecec8e9f5c48\", \"perseus_api_major_version\": null}"], "description": "This passage will test your knowledge on fluids in motion", "basepoints": 10.0, "slug": "fluids-in-motion-passage-2", "kind": "Exercise", "name": "fluids-in-motion--passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fluids-in-motion--passage-2"}, "early-medieval-art": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/early-medieval/early-medieval-art/", "id": "early-medieval-art", "display_name": "Early Medieval art (quiz)", "title": "Early Medieval art (quiz)", "all_assessment_items": ["{\"sha\": \"6feb9976ae6dfc437c117cb8f2e034c0c8594508\", \"live\": true, \"id\": \"xb95eddbd440e0cbc\"}", "{\"sha\": \"0339987d9712a8d3617dd83d514fff058594fea0\", \"live\": true, \"id\": \"x5efc5feda407b11b\"}", "{\"sha\": \"4501308c647a54d099e62f7f6d1b0dd972047fad\", \"live\": true, \"id\": \"x1c86017e1581b462\"}", "{\"sha\": \"e62a937f87a9cbc9741a8af520e988f909707603\", \"live\": true, \"id\": \"x884d18f6dbfe9fc3\"}", "{\"sha\": \"003de597e0882429420151a8d1b25294f29aed96\", \"live\": true, \"id\": \"x511552f4ceb84d5a\"}", "{\"sha\": \"419d9a3b7938632de768556304b6018388f2e2fc\", \"live\": true, \"id\": \"x015bc64b89623925\"}", "{\"sha\": \"35d3d14eeaf7cacfd111a3528b6ef21538f43f7c\", \"live\": true, \"id\": \"xc7727c3eb15f7884\"}", "{\"sha\": \"771ae8b659b9282e6220017e2354fd65dc63e601\", \"live\": true, \"id\": \"xca8c5b0eacc66291\"}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "early-medieval-art", "kind": "Exercise", "name": "early-medieval-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "early-medieval-art"}, "fluids-in-motion--passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/fluids-in-motion-passage-1/", "id": "fluids-in-motion--passage-1", "display_name": "The tubular system in an aquarium", "title": "The tubular system in an aquarium", "all_assessment_items": ["{\"sha\": \"11e79a919a2dd45b896dcf94ac816bfc8ad1d242\", \"live\": true, \"id\": \"xf62865128a3d3ae7\"}", "{\"sha\": \"3e72694621a9ef28df0f3ea8cfaa03d761fd8733\", \"live\": true, \"id\": \"x122f1a1565828399\"}", "{\"sha\": \"693f2c8e84ea4f571915d86d620872c40f8dcad0\", \"live\": true, \"id\": \"xfcf8ba8dee680e66\"}", "{\"sha\": \"cbca1e2fb3b5f5ca254b2e49d4a88aa098cc763c\", \"live\": true, \"id\": \"x2826ef9efce4d735\"}", "{\"sha\": \"4c51b93a5b11f1bf97d16ec419a971bd3dea4ea6\", \"live\": true, \"id\": \"x3b3892b3d539ad2c\"}"], "description": "This passage will test your knowledge on fluids in motion\u00a0", "basepoints": 10.0, "slug": "fluids-in-motion-passage-1", "kind": "Exercise", "name": "fluids-in-motion--passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fluids-in-motion--passage-1"}, "the-role-of-alcohol-abuse-in-pancreatitis": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-role-of-alcohol-abuse-in-pancreatitis/", "id": "the-role-of-alcohol-abuse-in-pancreatitis", "display_name": "The role of alcohol abuse in pancreatitis", "title": "The role of alcohol abuse in pancreatitis", "all_assessment_items": ["{\"sha\": \"ea48af0c4f040be00347f60b2e4b7b3b6e8f3fb4\", \"live\": true, \"id\": \"xa2316c4a574d5e4e\", \"perseus_api_major_version\": null}", "{\"sha\": \"2c96fe0833fb54170caca6e98b2efca737b3a86f\", \"live\": true, \"id\": \"xb6c3f03962831414\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b130c7acb7cbe2ed5a9918a37b15aacf99e7233\", \"live\": true, \"id\": \"x708b1f50d6d8335e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"036d0fa46cb5927616bd9cc7e93979a997375453\", \"live\": true, \"id\": \"xa807d684e19f4e1a\", \"perseus_api_major_version\": null}", "{\"sha\": \"e286cdbfe43ad97de8e013b59298e9b5b00f7bf7\", \"live\": true, \"id\": \"xcd9d3f3c907a1618\", \"perseus_api_major_version\": 3}"], "description": "Questions related to pancreatitis", "basepoints": 10.0, "slug": "the-role-of-alcohol-abuse-in-pancreatitis", "kind": "Exercise", "name": "the-role-of-alcohol-abuse-in-pancreatitis", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-role-of-alcohol-abuse-in-pancreatitis"}, "dice_probability": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-probability/dice_probability/", "id": "dice_probability", "display_name": "Probability of rolling dice", "title": "Probability of rolling dice", "description": "Practice calculating probabilities in dice rolling scenarios.", "basepoints": 20.0, "slug": "dice_probability", "kind": "Exercise", "name": "dice_probability", "seconds_per_fast_problem": 16.0, "prerequisites": ["probability_1"], "exercise_id": "dice_probability"}, "compound-events": {"uses_assessment_items": true, "path": "khan/math/precalculus/prob_comb/independent_events_precalc/compound-events/", "id": "compound-events", "display_name": "Probabilities of compound events", "title": "Probabilities of compound events", "all_assessment_items": ["{\"sha\": \"f1bb54e8704594539607680209f9c5c66dfa477c\", \"live\": true, \"id\": \"x8a16265ffa9cedcb\"}", "{\"sha\": \"2f93122a6f2884952021132384f255518c878505\", \"live\": true, \"id\": \"x43f9bb282867c5f5\"}", "{\"sha\": \"614c35513d4d56b5106b54094105dceec50c9529\", \"live\": true, \"id\": \"xafa4ef49ea1cc293\"}", "{\"sha\": \"d163fd3e221c775feae652599525447442b0d9ef\", \"live\": true, \"id\": \"x8a2b1849eee82862\"}", "{\"sha\": \"4cb0c031d227899a6ca5cde868bca237fdc350dc\", \"live\": true, \"id\": \"xfc8ae119b3695730\"}", "{\"sha\": \"a83870410a3c53d24ad55ce68ec2d930bbb0332d\", \"live\": true, \"id\": \"x31fe2386e26fdddd\"}", "{\"sha\": \"53dfecda33f0e4d4614fbe015ee79bb219d225f9\", \"live\": true, \"id\": \"x0d4122e0934b9965\"}", "{\"sha\": \"d3d667d84914ea40b7086259071ddfdffd01b063\", \"live\": true, \"id\": \"x6270e92f63d517a4\"}", "{\"sha\": \"283fce187f495508958c226e998766b2139f9855\", \"live\": true, \"id\": \"xea41efe383ad15a3\"}", "{\"sha\": \"01c8ebe0bf2076bdffbaaa4379956661608b8070\", \"live\": true, \"id\": \"x9be695fe87b735f1\"}", "{\"sha\": \"4901bb1c35d978bc195bef4ffc7ab6361560013d\", \"live\": true, \"id\": \"xbc8e5de1f7e075fd\"}", "{\"sha\": \"4d46acf8d4922d6ca1a81912126082d17f69128d\", \"live\": true, \"id\": \"x76c565340e53648d\"}", "{\"sha\": \"0697caf97c1f37891ff2d5dd8e8daa3428fb4eb8\", \"live\": true, \"id\": \"xdf671611211335fc\"}", "{\"sha\": \"291dc31e4369d9328e3333cc7328f0dcea2ed692\", \"live\": true, \"id\": \"x437a9aeeaae6da4b\"}", "{\"sha\": \"a53ce1f3aeb710c3055ebe2347341a8f8f21212d\", \"live\": true, \"id\": \"xc7b4d19357f02e8e\"}", "{\"sha\": \"d7c7bed745bf6dc6e1dd8618ed3c1d67d7edc323\", \"live\": true, \"id\": \"xf5b9fefcaf0b6423\"}", "{\"sha\": \"69e05260136bc24ba08d7343efd20bcea5f71252\", \"live\": true, \"id\": \"xbfc8617ffc407bf0\"}", "{\"sha\": \"848cf3e1fe7930895a9ecbe1ecef75e04b782abd\", \"live\": true, \"id\": \"x88ffb0c28fcb6cf8\"}", "{\"sha\": \"3f33271b1a55702bfffca3a246f4efefe4a5b206\", \"live\": true, \"id\": \"xdfea7f5de2023a1e\"}", "{\"sha\": \"889d0eac764532a9ee37725e091db95cf9f6b115\", \"live\": true, \"id\": \"xdef48e51afbc7755\"}", "{\"sha\": \"cf1d9a4839cf8e648763789384ee54275ea4f51f\", \"live\": true, \"id\": \"x0fc94312bb38aab3\"}", "{\"sha\": \"314a6b62233ea497bc1ac798bc375188cead808d\", \"live\": true, \"id\": \"x76890b9f7c6f438d\"}", "{\"sha\": \"bc5ccb441225d0b8e642ae021447d8a9d5af7322\", \"live\": true, \"id\": \"xac28fad63a9b3027\"}", "{\"sha\": \"ad6a69b64fc158e583cc3cbbe6afdb0ccf01c248\", \"live\": true, \"id\": \"x3f2a78232b58d066\"}", "{\"sha\": \"e25580407788ec0cc385630571dd836061646872\", \"live\": true, \"id\": \"xfa171dd57c792068\"}", "{\"sha\": \"10e04c14d7067c9fb92761f9417c3d00b8503fe5\", \"live\": true, \"id\": \"xea85235ecb240ed0\"}", "{\"sha\": \"7cd0e6a7ce48af5a424dd101a6d36a1590b00a46\", \"live\": true, \"id\": \"x097b3c2eb25c514a\"}", "{\"sha\": \"415b45f3d51ea862cb7ad4d51574ea122d489be7\", \"live\": true, \"id\": \"x2fd12bd7a1fed1a8\"}", "{\"sha\": \"d5c078d538cdf3bf9288af2f99663d607605e782\", \"live\": true, \"id\": \"x2989b35f0c6bccbf\"}", "{\"sha\": \"6ba1f391c14bf46d3415c2552b505b6f76184994\", \"live\": true, \"id\": \"x44525350681137e3\"}"], "description": "Practice using sample space diagrams to find probabilities.", "basepoints": 10.0, "slug": "compound-events", "kind": "Exercise", "name": "compound-events", "seconds_per_fast_problem": 4.0, "prerequisites": ["sample-spaces-for-compound-events", "multiplying-fractions-by-fractions-word-problems", "dice_probability"], "exercise_id": "compound-events"}, "factoring_linear_binomials": {"uses_assessment_items": true, "path": "khan/math/algebra/multiplying-factoring-expression/factoring-simple-expressions/factoring_linear_binomials/", "id": "factoring_linear_binomials", "display_name": "Factoring with the distributive property", "title": "Factoring with the distributive property", "all_assessment_items": ["{\"sha\": \"7c0b5e6f4801e8c375d4e152b5a0798396ed1353\", \"live\": true, \"id\": \"xb23fb526e3462e46\"}", "{\"sha\": \"73af642e4f436957e1e6457a48a7c9e827963afd\", \"live\": true, \"id\": \"x24746ae221f6b127\"}", "{\"sha\": \"5f4e04b1390b477803117b55b23ad7f27a1bb0e4\", \"live\": true, \"id\": \"x615bc3b37e023769\"}", "{\"sha\": \"206e00f3d832daf002fbe265d8bbf10abba7711f\", \"live\": true, \"id\": \"xf07a7a8a8100e585\"}", "{\"sha\": \"047a26c134227fac1e487f82a3c64e2d4e98632a\", \"live\": true, \"id\": \"x489eca2d84f218e2\"}", "{\"sha\": \"0e4ac23e191a9f431c9762ad408a3c16579ed3ca\", \"live\": true, \"id\": \"x70f9a00dc36c967b\"}", "{\"sha\": \"286ae2469b0767c77166fcc286c833d1d518c2e4\", \"live\": true, \"id\": \"xb80e8dd41f806535\"}", "{\"sha\": \"8f5d784c5e45b6d5e6eeaca3ebe3541ea49136c5\", \"live\": true, \"id\": \"xe73e224d57240c58\"}", "{\"sha\": \"440f2159f4e0e469e61465b576acbc4ed188a94e\", \"live\": true, \"id\": \"xfc28412ca12a0f30\"}", "{\"sha\": \"ad8d1b35fff2b1421000371ef8a9be92a89d0b2d\", \"live\": true, \"id\": \"x0a1837664f7e5c5c\"}", "{\"sha\": \"3fb8304dc80166434cda5035f4bf2515b188a481\", \"live\": true, \"id\": \"x534600ce136efb2c\"}", "{\"sha\": \"05025e3d6a625f9341128960aea1d0af8319ffc0\", \"live\": true, \"id\": \"x04f61ebf0cb6d2dd\"}", "{\"sha\": \"6854213dd9f57ab6089dac0634a9cd4fb05de368\", \"live\": true, \"id\": \"x5256b507c79b998a\"}", "{\"sha\": \"b0fbe69319a5abf09301b7947999f4259986a732\", \"live\": true, \"id\": \"x40c9919dd486aa56\"}", "{\"sha\": \"4059a4c90d5935464d10b86a84a3e8f99ab6639d\", \"live\": true, \"id\": \"xf1f178018fb1d086\"}", "{\"sha\": \"2080333c20c170cf9e59ab9bcea0cac21ae79b6c\", \"live\": true, \"id\": \"xa7b8572bd7a5a500\"}", "{\"sha\": \"892a675241ec76c3ea6605ed3da2c9a4aa57b161\", \"live\": true, \"id\": \"x63e32666b5bdc245\"}", "{\"sha\": \"2dd1a5e253cc24df98ae2651270151a9eae84ad2\", \"live\": true, \"id\": \"x86b870538b2e65c2\"}", "{\"sha\": \"e263f4a7af01473187361bde12aac8f34a740ec1\", \"live\": true, \"id\": \"x748b329c86d8262a\"}", "{\"sha\": \"594683f9dbab40bcf6e79af03b6953a76ab18166\", \"live\": true, \"id\": \"xec26f1d06125ae52\"}"], "description": "Factor expressions like 3x-9 by applying the distributive property. (All expressions in this exercise are linear binomials.)", "basepoints": 16.0, "slug": "factoring_linear_binomials", "kind": "Exercise", "name": "factoring_linear_binomials", "seconds_per_fast_problem": 9.0, "prerequisites": ["combining_like_terms_2"], "exercise_id": "factoring_linear_binomials"}, "kahlo--the-two-fridas-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/kahlo-the-two-fridas-quiz/", "id": "kahlo--the-two-fridas-quiz", "display_name": "Kahlo, The Two Fridas (quiz)", "title": "Kahlo, The Two Fridas (quiz)", "all_assessment_items": ["{\"sha\": \"91b393ab3ab496d0955b3126d5b28d7871b91baf\", \"live\": true, \"id\": \"x9d204bcf83a72801\"}", "{\"sha\": \"5be24872e966a80ebf38168665c85beb269109aa\", \"live\": true, \"id\": \"x9ad2521eeaa69bcd\"}", "{\"sha\": \"277c340836cc8340f6d3bb9f31f281bdd4ecc180\", \"live\": true, \"id\": \"x31d8d69bca85c2bb\"}", "{\"sha\": \"d69880dc853e171f43faec50bba5d3f5d6c7d27e\", \"live\": true, \"id\": \"x19da3a7298e01c2c\"}", "{\"sha\": \"0c533faf5f7d4d683e32122f79aba7afef45bd08\", \"live\": true, \"id\": \"x3d7598c334d64ed5\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "kahlo-the-two-fridas-quiz", "kind": "Exercise", "name": "kahlo--the-two-fridas-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "kahlo--the-two-fridas-quiz"}, "comparing-absolute-values-2": {"uses_assessment_items": true, "id": "comparing-absolute-values-2", "display_name": "Comparing absolute values 2", "title": "Comparing absolute values 2", "all_assessment_items": ["{\"sha\": \"3a1dbf046e69a08d9624e99fa2372abec2b59c70\", \"live\": true, \"id\": \"x6bb69769443808c2\"}", "{\"sha\": \"2985359d8016fb24811e53fbee4dc7e37211d905\", \"live\": true, \"id\": \"x28492bdcfc20f8f4\"}", "{\"sha\": \"4bf71c713eafe87fbf19d1d62aa2f3cf75e63c29\", \"live\": true, \"id\": \"x292c14cb00031336\"}", "{\"sha\": \"f3e6c61c6e6c84fcd576a109f12cb6ed3e4af52d\", \"live\": true, \"id\": \"x0cf6c9da67d72994\"}", "{\"sha\": \"c389140c3c81d2fa24aaf2f0a54d65791a0b2d91\", \"live\": true, \"id\": \"x4ab7ba9fd06d9624\"}", "{\"sha\": \"658f715940b0ca43ba3c3dea7462e1ed295ccd39\", \"live\": true, \"id\": \"xbfca83b8973101f3\"}", "{\"sha\": \"423c08a08a56702809dcd6a709fa0be9a8bb52ed\", \"live\": true, \"id\": \"x42f09f61f0ce6381\"}", "{\"sha\": \"770c8fbab882e1d38cb42659c2acbec0714e9e00\", \"live\": true, \"id\": \"x527ab562b4c57ff5\"}", "{\"sha\": \"6d5ca1e58c3af31f9609d09823f317e3be3fc355\", \"live\": true, \"id\": \"x089a4f0a8b2040ce\"}", "{\"sha\": \"35c98de929e626dd7f3b30a2343e8505e9278270\", \"live\": true, \"id\": \"xefd9b9156491a4fa\"}", "{\"sha\": \"3a73ebe32d7fa6f85069977fb2ac6bb2a2080f7b\", \"live\": true, \"id\": \"xad56e1ee6f2d38db\"}", "{\"sha\": \"b08f0d2a075937ff3cadc986b2c30815afd7a7e3\", \"live\": true, \"id\": \"xc66c297db9110ac2\"}", "{\"sha\": \"26e6a2f87e788c02a6202a7b470b1defbbf76cff\", \"live\": true, \"id\": \"x8e87fe951d093335\"}", "{\"sha\": \"60ed872b5153e9c6dd12613f0fbd05951c9be3a4\", \"live\": true, \"id\": \"x67bae3afb4e07b89\"}", "{\"sha\": \"2b3f8f836e4204a94ba647852d2350320aca59f7\", \"live\": true, \"id\": \"x843497a4f244d2cd\"}", "{\"sha\": \"0234c1330eb10a5fd7cf69a4066c3162a05db2f9\", \"live\": true, \"id\": \"xb800a4b74fc3dfd0\"}", "{\"sha\": \"7ccab0d28e4c1f8a5c37c08284adba821ec9bbfe\", \"live\": true, \"id\": \"xae6948559d2e715a\"}", "{\"sha\": \"cbcffb7e6bf7caadd1e343a64a604a1965e69adf\", \"live\": true, \"id\": \"x2aae4d38ad8d2dbe\"}", "{\"sha\": \"38270a1f2d3768cf0ccbabeda292f1a8dffc80c7\", \"live\": true, \"id\": \"x636f37bf65e0828f\"}", "{\"sha\": \"8db7d209dc30ec77680ff2db44b4a35fcaff8c1e\", \"live\": true, \"id\": \"x8f41931631583083\"}", "{\"sha\": \"6b23f316c5d8f5eb81c021925a4e2b6f77dfd4e5\", \"live\": true, \"id\": \"x35b43eb598f6ea1e\"}", "{\"sha\": \"c127b3acb7507a729170164528d11ba0626c50ab\", \"live\": true, \"id\": \"xce18fb28a2279af3\"}"], "description": "Practice more challenging comparison problems with absolute value.", "basepoints": 10.0, "path": "comparing-absolute-values-2/", "slug": "comparing-absolute-values-2", "kind": "Exercise", "name": "comparing-absolute-values-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["comparing_absolute_values"], "exercise_id": "comparing-absolute-values-2"}, "symbolism-art-nouveau": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/symbolism/symbolism-art-nouveau/", "id": "symbolism-art-nouveau", "display_name": "Symbolism and Art Nouveau", "title": "Symbolism and Art Nouveau", "all_assessment_items": ["{\"sha\": \"1bd2d144b7facb0cc20ea744dbc6198e89725f1b\", \"live\": true, \"id\": \"xc4842406cf2ffc73\"}", "{\"sha\": \"f29b4b7144f583b66b9bc42e64faead88d78e2e6\", \"live\": true, \"id\": \"x99e0f11676246f34\"}", "{\"sha\": \"d140619bfc278691e9f1c52c242345e68a8d8a08\", \"live\": true, \"id\": \"xf35c96fa63b55b2c\"}", "{\"sha\": \"c43709efff7024ac12baf2c60472c782c52beea2\", \"live\": true, \"id\": \"x496e46af104e613a\"}", "{\"sha\": \"c38bcae4f49df760414773b4761c02e0fa3400d2\", \"live\": true, \"id\": \"xe1eb9058a0f6d265\"}", "{\"sha\": \"a5235baabe302fcdeed55009305cb9c42fad9de2\", \"live\": true, \"id\": \"xf6bcee00bbfebc6c\"}", "{\"sha\": \"bf7481af6e55789925c76f8c05ab354fcae62746\", \"live\": true, \"id\": \"x67967c94d3526ae8\"}", "{\"sha\": \"21b52c2639b9734183c1c08b3cd66a547158a867\", \"live\": true, \"id\": \"xc4d3a76d658d7835\"}", "{\"sha\": \"1480b498a39795441a82842f4eda85b25fbbc8da\", \"live\": true, \"id\": \"xd3641c949b3e03bc\"}", "{\"sha\": \"3d68a7dafc0a7dbd6520f54be2ae446f8bb9cb7c\", \"live\": true, \"id\": \"x0df9ac7418c1fb8b\"}", "{\"sha\": \"9388bebfeb3c7fb1f128901ffacdc0ec6a14aaac\", \"live\": true, \"id\": \"xdb5a19d5fbb75755\"}", "{\"sha\": \"d4b41cfe3b2eeebc0453a6b9e129917c3bc78236\", \"live\": true, \"id\": \"x830b3baab5087fb1\"}", "{\"sha\": \"63850b4767ec6d04ae9ea8d1e75de8075b46e791\", \"live\": true, \"id\": \"x2b5193a0669f53a6\"}", "{\"sha\": \"0810ada3e5f3d45aaed61a7c63ff79132efabdcd\", \"live\": true, \"id\": \"x4e11c7a4e1742747\"}", "{\"sha\": \"dbb8fd0bec4ff30c2e1f3397b865dbea6e2b5eaf\", \"live\": true, \"id\": \"xe9244e57cec352d8\"}", "{\"sha\": \"62cd5c3c0b576d5e785875dcb4bbd46ae78ee798\", \"live\": true, \"id\": \"x67c5d5e77b53bec5\"}", "{\"sha\": \"785093c4b8758479788e2987074ffbc192ba339a\", \"live\": true, \"id\": \"x313b38497fe63168\"}"], "description": "", "basepoints": 10.0, "slug": "symbolism-art-nouveau", "kind": "Exercise", "name": "symbolism-art-nouveau", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "symbolism-art-nouveau"}, "adding-and-subtracting-mixed-numbers-with-like-denominators-2": {"uses_assessment_items": true, "id": "adding-and-subtracting-mixed-numbers-with-like-denominators-2", "display_name": "Adding and subtracting mixed numbers with\u00a0like denominators 2", "title": "Adding and subtracting mixed numbers with\u00a0like denominators 2", "all_assessment_items": ["{\"sha\": \"72bbf2ceb37bcaac576f781dbb7ef86614760a09\", \"live\": true, \"id\": \"xa972001813d9444e\"}", "{\"sha\": \"09c60d98f6407b37a05838817e956989070e9047\", \"live\": true, \"id\": \"x65186319af664c2e\"}", "{\"sha\": \"9bc39c27adbd63fde4dede703a37c323b28c56f4\", \"live\": true, \"id\": \"x886fca3e845e3be4\"}", "{\"sha\": \"c082402f0d7d8e733d52a7e8386ef8f499369105\", \"live\": true, \"id\": \"x770836d825df2041\"}", "{\"sha\": \"0881717dfe4a0b21c12bb90ac3b70f8a24fab4d7\", \"live\": true, \"id\": \"xe5d5add25fbb259f\"}", "{\"sha\": \"e788ae83a8b5e33baea711f12698dc1655eeb3c2\", \"live\": true, \"id\": \"xf2c06da551531139\"}", "{\"sha\": \"5bd8c764ab0bf34a843e51a17003299aab745f01\", \"live\": true, \"id\": \"x4c914f7749416178\"}", "{\"sha\": \"9e85ae8a1fdd771bce3ee6a3da7ce9ee0eb5e4df\", \"live\": true, \"id\": \"x5a30328c82ab223f\"}", "{\"sha\": \"71e77db240e728e054b3200093fa66c97ad85c4f\", \"live\": true, \"id\": \"xe9a8f5268710a565\"}", "{\"sha\": \"4e244b8451310f5c7541e4c54cf8c6431a3f5cd6\", \"live\": true, \"id\": \"x489273304b5d647f\"}", "{\"sha\": \"b9843997a35ee8474a778e913fa6ce9427f68ebc\", \"live\": true, \"id\": \"xf746c67099cc3a35\"}", "{\"sha\": \"ac9e0efcf9252d97b96671315692690abec9d6bd\", \"live\": true, \"id\": \"xe6ec414353b6db7e\"}", "{\"sha\": \"618eb5bee4d4376873bd4413c71f5dbf6b9cc5b2\", \"live\": true, \"id\": \"x76c8d04137bbf925\"}", "{\"sha\": \"302d2946b2c564eaeac5a8ce1cae0c7be3761eba\", \"live\": true, \"id\": \"x6289b3f005b726e7\"}", "{\"sha\": \"98136793ab0f1a36085d6494dfaabf9a72ebe332\", \"live\": true, \"id\": \"x6c90217f3ba1e26a\"}", "{\"sha\": \"758e6476d9cbcf8d3437ded57a55fa53f6e7e54c\", \"live\": true, \"id\": \"x87d821e9f042b5cd\"}", "{\"sha\": \"4d1207e7708d1c90e1484bbe8e6076b78563a8fe\", \"live\": true, \"id\": \"xb7d58df0113d5723\"}", "{\"sha\": \"93f3cb33d2f0c2d1732d0202590e69dfd4c2a20a\", \"live\": true, \"id\": \"x0597e95948f99580\"}", "{\"sha\": \"52b2e5819fc01a599fe7a46eac1cbac3b48b2b1c\", \"live\": true, \"id\": \"xc00cdfdc1dad386e\"}", "{\"sha\": \"9fd011dcbee389e81f0c90ff092efc2cb698dacc\", \"live\": true, \"id\": \"x8f3c05c0ce63eced\"}"], "description": "Practice adding and subtracting mixed numbers with like denominators. The extra difficulty in these problems comes in needing to regroup.", "basepoints": 10.0, "path": "adding-and-subtracting-mixed-numbers-with-like-denominators-2/", "slug": "adding-and-subtracting-mixed-numbers-with-like-denominators-2", "kind": "Exercise", "name": "adding-and-subtracting-mixed-numbers-with-like-denominators-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_subtracting_mixed_numbers_0.5"], "exercise_id": "adding-and-subtracting-mixed-numbers-with-like-denominators-2"}, "dependent-and-independent-variables": {"uses_assessment_items": true, "path": "khan/math/algebra/introduction-to-algebra/feel-for-equations-and-inequalit/dependent-and-independent-variables/", "id": "dependent-and-independent-variables", "display_name": "Dependent and independent variables", "title": "Dependent and independent variables", "all_assessment_items": ["{\"sha\": \"53a377746b170b61be165d5354ab7cb70f84979a\", \"live\": true, \"id\": \"x9fe2c376\", \"perseus_api_major_version\": null}", "{\"sha\": \"87696c0813c34021afb4bd21eb887fec752ea791\", \"live\": true, \"id\": \"x23fd6b25\", \"perseus_api_major_version\": null}", "{\"sha\": \"8eac9d119fb271bc6f875e02c2648d3cc6cbf32f\", \"live\": true, \"id\": \"xc352f5fc\", \"perseus_api_major_version\": null}", "{\"sha\": \"3298599e6b1d23c07e405671094191e63e933790\", \"live\": true, \"id\": \"x03cd2263\", \"perseus_api_major_version\": null}", "{\"sha\": \"a1b1c8c841abe4d980afafad1bccba28f05f19c8\", \"live\": true, \"id\": \"xd8f94be5\", \"perseus_api_major_version\": null}", "{\"sha\": \"7befa3d76d875efafc169658616d0aa0a6cdc14d\", \"live\": true, \"id\": \"x5cf0863b\", \"perseus_api_major_version\": null}", "{\"sha\": \"4e010d5eff58c9e72fb68e373d56604d613c0865\", \"live\": true, \"id\": \"xbbe5a7dd\", \"perseus_api_major_version\": null}", "{\"sha\": \"08e0851c82d6fb88e9da99e106c654bce8ac606a\", \"live\": true, \"id\": \"xbba229bc\", \"perseus_api_major_version\": null}", "{\"sha\": \"f8f230f2f026ab24ff10725c00ba4f498493cf34\", \"live\": true, \"id\": \"x4f333d1d\", \"perseus_api_major_version\": null}", "{\"sha\": \"285b7982ed6584cc9369aa24a78dab35f6e6690e\", \"live\": true, \"id\": \"xa1821cc6\", \"perseus_api_major_version\": null}", "{\"sha\": \"0a39fce3e3f03c6080f7b391300202dd0ae0bbed\", \"live\": true, \"id\": \"x6f91dfed\", \"perseus_api_major_version\": null}", "{\"sha\": \"52db27d72dd54c9135597263cf9aa53df57ded83\", \"live\": true, \"id\": \"x92156973\", \"perseus_api_major_version\": null}", "{\"sha\": \"a3645dbdfac2b36cad0d8a743fc4a7cc756a44f1\", \"live\": true, \"id\": \"x4c887d83\", \"perseus_api_major_version\": null}", "{\"sha\": \"811f2a755b701bd623674d6cf79d33ee6970c335\", \"live\": true, \"id\": \"x5c19c56b\", \"perseus_api_major_version\": null}", "{\"sha\": \"678e83c594094753c11f5eac1eb2a5982871d555\", \"live\": true, \"id\": \"x205a6411\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee09d6359d9ea8efbfbdbce173b464b162467148\", \"live\": true, \"id\": \"xecb8b2af\", \"perseus_api_major_version\": null}", "{\"sha\": \"37998d7042d7b5c81fe5ba163a8518e25d151173\", \"live\": true, \"id\": \"x23e7a119\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f9a91db7fc149812b0ef918ad797caaf7f875551\", \"live\": true, \"id\": \"x60aafcac\", \"perseus_api_major_version\": null}", "{\"sha\": \"c4a770231ac437c1a15ad5e81023c795a761a772\", \"live\": true, \"id\": \"x2e498548\", \"perseus_api_major_version\": null}", "{\"sha\": \"c6a772f2a4b38f7839e35be284b2f57bb9b8325a\", \"live\": true, \"id\": \"x33085f2f\", \"perseus_api_major_version\": null}", "{\"sha\": \"6ed2efbd00f7b6b2070e48b98777036a6475b2d5\", \"live\": true, \"id\": \"x95791e19\", \"perseus_api_major_version\": null}", "{\"sha\": \"ef98eed7962e2c70a66b3792a1d9ddba4ea8f2d1\", \"live\": true, \"id\": \"xd683b2c3\", \"perseus_api_major_version\": null}", "{\"sha\": \"f3ca91f00a0b702997703aca5a49c610d996417f\", \"live\": true, \"id\": \"x7e0b8d0a\", \"perseus_api_major_version\": null}", "{\"sha\": \"e2f6422a1fd7b81e34bbe8a3b1f38b64cf76cdc5\", \"live\": true, \"id\": \"x5e9dd182\", \"perseus_api_major_version\": null}", "{\"sha\": \"c614524af2ceaabb798ace123b655de4ccbd534d\", \"live\": true, \"id\": \"xb45a927c\", \"perseus_api_major_version\": null}", "{\"sha\": \"171bd18dba65fb71f9bfaf2f0d3f5e324fc72df0\", \"live\": true, \"id\": \"xbadcc1d2\", \"perseus_api_major_version\": null}", "{\"sha\": \"30470dc513e7a11dff540f558348d5d82e9ed3df\", \"live\": true, \"id\": \"x45bec4f1\", \"perseus_api_major_version\": null}", "{\"sha\": \"322d5c9c7d7589d0d66faaf09951a55996031959\", \"live\": true, \"id\": \"x528671be\", \"perseus_api_major_version\": null}", "{\"sha\": \"efffe36c4b174816b37ec90fe0e8d930bc34f8e2\", \"live\": true, \"id\": \"xdfbbee4c\", \"perseus_api_major_version\": null}", "{\"sha\": \"933dcf06e4c2fa7e2d8db011871f4e9dc7abb25f\", \"live\": true, \"id\": \"xbcf48b51\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 22.0, "slug": "dependent-and-independent-variables", "kind": "Exercise", "name": "dependent-and-independent-variables", "seconds_per_fast_problem": 23.0, "prerequisites": ["testing-solutions-of-equations-inequalities"], "exercise_id": "dependent-and-independent-variables"}, "pythagorean-theorem-in-3d": {"uses_assessment_items": true, "id": "pythagorean-theorem-in-3d", "display_name": "Pythagorean theorem in 3D", "title": "Pythagorean theorem in 3D", "all_assessment_items": ["{\"sha\": \"10379e3e41a8582fea67e8dfc15286a47cedc6d7\", \"live\": true, \"id\": \"xede6e4fe79ab0bc9\", \"perseus_api_major_version\": null}", "{\"sha\": \"9108b2b92395def79cedb40f7e53680abc726351\", \"live\": true, \"id\": \"xdb6bec5b9538ba6d\", \"perseus_api_major_version\": null}", "{\"sha\": \"2adc7419c4041c4709b7cfa88f356782d981308b\", \"live\": true, \"id\": \"xe2a613efaa42a4f1\", \"perseus_api_major_version\": null}", "{\"sha\": \"3eee29a20aeeebe795a4552a2a1756e7559e3d77\", \"live\": true, \"id\": \"x64d9d0a14a0c1a72\", \"perseus_api_major_version\": null}", "{\"sha\": \"06f54da46550471f615938d5941677c37043d70e\", \"live\": true, \"id\": \"xad0b5b946e11014f\", \"perseus_api_major_version\": null}", "{\"sha\": \"d0a888ea2c786b36cdd0d9aa01ee911778d41a63\", \"live\": true, \"id\": \"xba4f8042c87f0c5b\", \"perseus_api_major_version\": null}", "{\"sha\": \"fb852477202406ba1cd9df57a28dba42a83f309c\", \"live\": true, \"id\": \"xd10e7a38ac171f8b\", \"perseus_api_major_version\": null}", "{\"sha\": \"4a54f81fc06110472685810f04b4d7542a7d6bae\", \"live\": true, \"id\": \"xaf49e2024263ca6d\", \"perseus_api_major_version\": null}", "{\"sha\": \"720c51506f5c43edef2618ce423a42fe72841e9a\", \"live\": true, \"id\": \"x5ce73fb3d8372ba3\", \"perseus_api_major_version\": null}", "{\"sha\": \"1187f38b8c8a3c67736d06db2dd11f6acf72e798\", \"live\": true, \"id\": \"xe7a343275c4f02a5\", \"perseus_api_major_version\": null}", "{\"sha\": \"5a8a74d99dda2c3144cf655ffc758c12113ea3af\", \"live\": true, \"id\": \"x37df370dc9e2be0a\", \"perseus_api_major_version\": null}", "{\"sha\": \"16cc587dfa97659a2cf040c7bed85ef6f33e97c3\", \"live\": true, \"id\": \"x9012e67b3bd3b1d8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"62365c25aa53d09e6910d9e9e55514bf3b9b149a\", \"live\": true, \"id\": \"x98d310c2acf1564c\", \"perseus_api_major_version\": null}", "{\"sha\": \"2f913367059bb6e7d50eff7bb6d2082883d60cd2\", \"live\": true, \"id\": \"x698401cda29f722a\", \"perseus_api_major_version\": null}", "{\"sha\": \"2fd34a8c48b718c3420d58e306c318eb31dbc877\", \"live\": true, \"id\": \"xe75ac07363717e63\", \"perseus_api_major_version\": null}", "{\"sha\": \"9f1351f55927d6f41eff92ff594f44594ebf7f1b\", \"live\": true, \"id\": \"xb60bd02cb08b5e31\", \"perseus_api_major_version\": null}", "{\"sha\": \"93a6d97f8423908cf19e0af1bb8710efb1cc451c\", \"live\": true, \"id\": \"xfd1718d728faee8a\", \"perseus_api_major_version\": null}", "{\"sha\": \"43b28a0dff8a67730b0df03de7cef23562bbf685\", \"live\": true, \"id\": \"xd81937732404c6c3\", \"perseus_api_major_version\": null}", "{\"sha\": \"f756b81a8c5b91dbf5a5c8d438245c2aa80ce516\", \"live\": true, \"id\": \"xd16fc5e27f97b226\", \"perseus_api_major_version\": null}", "{\"sha\": \"d1feffd74b7c0e814ea67a5c80038f80b816ae83\", \"live\": true, \"id\": \"x32d399dd25f6d50a\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "path": "pythagorean-theorem-in-3d/", "slug": "pythagorean-theorem-in-3d", "kind": "Exercise", "name": "pythagorean-theorem-in-3d", "seconds_per_fast_problem": 4.0, "prerequisites": ["pythagorean_theorem_1"], "exercise_id": "pythagorean-theorem-in-3d"}, "clue-1-test": {"uses_assessment_items": true, "path": "khan/computing/computer-science/cryptography/cryptochallenge/clue-1-test/", "id": "clue-1-test", "display_name": "Crypto checkpoint 1", "title": "Crypto checkpoint 1", "all_assessment_items": ["{\"sha\": \"a7c163038df695dc45e879611a78f9e9c9d0e724\", \"live\": true, \"id\": \"x897f402c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5d882d9ccb0316549323cfb061b5680b4e4ee055\", \"live\": true, \"id\": \"x636c8020\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a101a80fab07f5c325a3f8bcddd9f5f3af75a14e\", \"live\": true, \"id\": \"x1baa0f7c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ded75f16b861c4f0dad1cc716a11bc30d88da2f2\", \"live\": true, \"id\": \"xd380ce45\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2803de3e873dfe059a634854fa0c85963946717a\", \"live\": true, \"id\": \"xcdd1aca1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4302678017763d584d1ddc8b7f727f1fc37b26a6\", \"live\": true, \"id\": \"xb6865f54\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dfa476c1c610dbb4d3cc57ed88e4e0e1a544080f\", \"live\": true, \"id\": \"xb23f8f56\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4d59f419ca8608f48c12fb1f08b5a26f8fa4e8de\", \"live\": true, \"id\": \"xa0b73a6d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1e4602fd5aa4493ef18fed1493a57c79c9257bdf\", \"live\": true, \"id\": \"x910c81be\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4dea3dc1c20e6202635d9b0359511b70c1ee47f3\", \"live\": true, \"id\": \"x85074787\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23de4d2255b545805b7795986e418499435a10c7\", \"live\": true, \"id\": \"x7074a710\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"68698fab7aafcebcd72c6b74dfbd6072f8421c4f\", \"live\": true, \"id\": \"x64dbef90\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d530c3e286dc0d6181732671e67b941ac41df071\", \"live\": true, \"id\": \"x5ede3598\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7aef8f6545c9030fac2c40e2521556d95bb252d0\", \"live\": true, \"id\": \"x5a9a1433\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3308ddd06af4d346825ef6cc2b28320619332351\", \"live\": true, \"id\": \"x3c024640\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test if you successfully decrypted clue 1, 2 & 3", "basepoints": 10.0, "slug": "clue-1-test", "kind": "Exercise", "name": "clue-1-test", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "clue-1-test"}, "completing_the_square_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/completing_the_square_2/", "id": "completing_the_square_2", "display_name": "Solving quadratics by completing the square 2", "title": "Solving quadratics by completing the square 2", "description": "Find the roots of a quadratic by completing the square. The numbers are a bit less convenient than they are in level 1.", "basepoints": 29.0, "slug": "completing_the_square_2", "kind": "Exercise", "name": "completing_the_square_2", "seconds_per_fast_problem": 60.0, "prerequisites": ["solving_quadratics_by_factoring_2", "completing_the_square_1"], "exercise_id": "completing_the_square_2"}, "quiz--agriculture-and-civilization": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/agriculture-civilization/first-cities-appear/quiz-agriculture-and-civilization/", "id": "quiz--agriculture-and-civilization", "display_name": "Quiz: Agriculture and Civilization", "title": "Quiz: Agriculture and Civilization", "all_assessment_items": ["{\"sha\": \"6c33e389abb1e632937e1f5338b06def9c5ab558\", \"live\": true, \"id\": \"xde6be2304a4170c4\"}", "{\"sha\": \"41d1c259bcb9c584d062625a0fc33247ed1bdf6e\", \"live\": true, \"id\": \"x2fb58fe4f1a02c23\"}", "{\"sha\": \"952f71ddf5f18c4909320e259b203a74260ae573\", \"live\": true, \"id\": \"x69e772939ccdcf68\"}", "{\"sha\": \"8b42bdf8d5a6868e47028056917f1ca6fd5a5674\", \"live\": true, \"id\": \"xa8c8b6400f96bffb\"}", "{\"sha\": \"21024967a5f5e8bdfccfff12768c7acba9a48c0a\", \"live\": true, \"id\": \"xb2cbf69a3d0713f6\"}"], "description": "Quiz 7.2", "basepoints": 10.0, "slug": "quiz-agriculture-and-civilization", "kind": "Exercise", "name": "quiz--agriculture-and-civilization", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--agriculture-and-civilization"}, "maclaurin-series-for-sin-x--cos-x--and-e-x": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/maclaurin_taylor/maclaurin-series-for-sin-x-cos-x-and-e-x/", "id": "maclaurin-series-for-sin-x--cos-x--and-e-x", "display_name": "Maclaurin series for sin x, cos x, and e\u02e3", "title": "Maclaurin series for sin x, cos x, and e\u02e3", "all_assessment_items": ["{\"sha\": \"b299f8073c3761c8e8a98ebe2c4f1ca95377874d\", \"live\": true, \"id\": \"x47cb41ff9f92f520\"}", "{\"sha\": \"b062a932391376700c23b0ebdb978d788bc45181\", \"live\": true, \"id\": \"xfafc82219919f548\"}", "{\"sha\": \"f8c5130922e93333792b9eafb06684f8a87d5649\", \"live\": true, \"id\": \"xdcb59a6454358787\"}", "{\"sha\": \"fab5397411c695a86d7db0cb96b407abb95dd2ea\", \"live\": true, \"id\": \"x646d850fe3e65c68\"}", "{\"sha\": \"2bbcd37bdc6037d32e8e7a74be8f4689d35b8a85\", \"live\": true, \"id\": \"x5804d0c038820cfb\"}", "{\"sha\": \"bd956a34283ccad1af47931e0ac106763b3360c3\", \"live\": true, \"id\": \"xe1a76213b2fa6907\"}", "{\"sha\": \"2ae2d287901b5ee0f53bfdcbd54b8f02b5acdba3\", \"live\": true, \"id\": \"x2e7136622ef62f89\"}", "{\"sha\": \"307cb7f4f4be6d46ca92c4c751c5e2c72ac5b68e\", \"live\": true, \"id\": \"x4bab3a69be2f9ec8\"}", "{\"sha\": \"504fbbada7bf59a9b41de2409fef87db36ecc5c0\", \"live\": true, \"id\": \"x36eb0fa148c4feb4\"}", "{\"sha\": \"22c9d85977b1e04ee4247abff381cc432855dd18\", \"live\": true, \"id\": \"x23aa1b6a9e59d60f\"}", "{\"sha\": \"eb2b866d2416499d2fc3e7c203d49abcabf4bc2f\", \"live\": true, \"id\": \"x60455914a09928c8\"}", "{\"sha\": \"0374d7c44dd55bb08e830f4cf431eda2afa8fcab\", \"live\": true, \"id\": \"x8008ab3055b5b44f\"}", "{\"sha\": \"121853306c842535e569eefa4da03b5f7852f0f1\", \"live\": true, \"id\": \"xb032c9ca8713bee8\"}", "{\"sha\": \"8925cafaaace5e1b56a63bf8e5e3e4eb20afcb0d\", \"live\": true, \"id\": \"x29bf4275d7cc72f4\"}", "{\"sha\": \"eb06c76b64a7decad61c70b31af32c2d6a93b502\", \"live\": true, \"id\": \"x98db916247d9e0f2\"}", "{\"sha\": \"bfa7734ef5f908fc9e25dd3ed8980d3f0bd77b1e\", \"live\": true, \"id\": \"x62a35f7ae562d203\"}", "{\"sha\": \"ebfe7f7364764b113dc4d7304e98c50fc2ebef96\", \"live\": true, \"id\": \"x2bbf28a4d2c6119e\"}", "{\"sha\": \"625a872af814f30ab2f859d01e47224a95ee4eab\", \"live\": true, \"id\": \"x9d02386bc8e6d71a\"}", "{\"sha\": \"8568aa2c4eaab219f4e3f348a9cf134e37f59e2f\", \"live\": true, \"id\": \"x07d9675db369a517\"}", "{\"sha\": \"4624df99e9ccb8a184b6e64d0b1784311108969f\", \"live\": true, \"id\": \"xa76b7455d3fec867\"}", "{\"sha\": \"50ba592171f2d838b5405f83dd961df9cb87b68c\", \"live\": true, \"id\": \"x6ff8dcb1b4796637\"}", "{\"sha\": \"d24bf675447ea4ac0cbc57352568e67fd7d4d272\", \"live\": true, \"id\": \"xe3342680a384d299\"}", "{\"sha\": \"02f3da9d25be509fffceca681d8ab8b45c47a661\", \"live\": true, \"id\": \"xa0c77bc7889ef9e2\"}", "{\"sha\": \"75122deecbfc96382e8c46d2b825c7f94667c4ed\", \"live\": true, \"id\": \"x8a473cb2abd98bd6\"}", "{\"sha\": \"931d7c46e23f1fc5927320e7adf5fb012a8329d8\", \"live\": true, \"id\": \"x03e00380f3892499\"}", "{\"sha\": \"82f7b55b6ade22cc70402a6922a39bc6781a1ef3\", \"live\": true, \"id\": \"x02e84c4a981df19c\"}", "{\"sha\": \"d74d981680fdcd89656087904e291fa36623f47d\", \"live\": true, \"id\": \"xf9027636ae83d143\"}", "{\"sha\": \"64106c80fbfedc230a7adca22a3bfff217c539f4\", \"live\": true, \"id\": \"x9c0a2c4b5ad27c62\"}", "{\"sha\": \"72b196295dc5e7b343b50ba816137765aa8341b2\", \"live\": true, \"id\": \"x89a07db93a4724af\"}"], "description": "", "basepoints": 23.0, "slug": "maclaurin-series-for-sin-x-cos-x-and-e-x", "kind": "Exercise", "name": "maclaurin-series-for-sin-x--cos-x--and-e-x", "seconds_per_fast_problem": 24.0, "prerequisites": ["creating-power-series-from-geometric-series-using-algebra", "quotient_rule", "product_rule", "chain_rule_1"], "exercise_id": "maclaurin-series-for-sin-x--cos-x--and-e-x"}, "balancing-chemical-equations-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/copy-of-balancing-chemical-equations/balancing-chemical-equations-questions/", "id": "balancing-chemical-equations-questions", "display_name": "Balancing chemical equations 2", "title": "Balancing chemical equations 2", "all_assessment_items": ["{\"sha\": \"f54a4c158aedf37aad8ac32aa9da47300dd98d96\", \"live\": true, \"id\": \"xc1f7ca6326d12936\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76bac5e348a7b30228260df005f042581f65d5c0\", \"live\": true, \"id\": \"xfc6d784b766a14a4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"56f40f3c4d59bde9c44fd9b5a80845d910dd20e7\", \"live\": true, \"id\": \"xd43b9868e16e7423\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b23ecd05819a419fbe986f14d51661d3114d4666\", \"live\": true, \"id\": \"x463c109908127045\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"78011b1e3bd8cfd01ff9f23dcb0bceedf359467d\", \"live\": true, \"id\": \"xaf91979925212a4b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"570b022f39907d3cd700e298aa41eb97b1082318\", \"live\": true, \"id\": \"x00b99868a5cf6b2c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e9eabf12dc3bcf3c4def260c9cdc5c125567439\", \"live\": true, \"id\": \"x2c6336fd2b159f74\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83fcf274ed6ac4387450495bad157bdf254eec98\", \"live\": true, \"id\": \"x936293557b0568d8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"da1979f6e02505efb9885dbf42c0340fd6ae98aa\", \"live\": true, \"id\": \"xcf4ba9f10c1b4581\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d3dd3d1733de74ee675374da2d6b8baa24857b3\", \"live\": true, \"id\": \"xf857ef710e391844\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Balancing chemical equations questions", "basepoints": 10.0, "slug": "balancing-chemical-equations-questions", "kind": "Exercise", "name": "balancing-chemical-equations-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "balancing-chemical-equations-questions"}, "identifying-dependent-and-independent-events": {"uses_assessment_items": true, "path": "khan/math/probability/independent-dependent-probability/dependent_probability/identifying-dependent-and-independent-events/", "id": "identifying-dependent-and-independent-events", "display_name": "Identifying dependent and independent events", "title": "Identifying dependent and independent events", "all_assessment_items": ["{\"sha\": \"d6f77acc031057f4a1b1dd22632ff128b786c20d\", \"live\": true, \"id\": \"x6b6359eea0a75251\"}", "{\"sha\": \"b0b8fe8799ecb5ec8c137cf0105c819dafad6110\", \"live\": true, \"id\": \"xfa4e973fcd9cf28d\"}", "{\"sha\": \"bdd6c770aa315807a4e0a7f04660caf00b0a11f5\", \"live\": true, \"id\": \"xce40d65e40017930\"}", "{\"sha\": \"fcac21b3246a692dc811e7be93f4f39a769a5053\", \"live\": true, \"id\": \"xe4e498fb40f034dd\"}", "{\"sha\": \"831891de503deb9a5c4760880b0d8d6cdcfc352d\", \"live\": true, \"id\": \"xdeb9ef95a1f071eb\"}", "{\"sha\": \"24b0fe434aa9ade01e4c94f39610c7de59d2457e\", \"live\": true, \"id\": \"x1d4977c8f4221218\"}", "{\"sha\": \"e854c267ba65bdc5e5a9b7ced739bc8c0e5ecf4f\", \"live\": true, \"id\": \"x5a773239f40f75c0\"}", "{\"sha\": \"e5fccd53e22085af25bbb8ddec37e210bb4f3f68\", \"live\": true, \"id\": \"xfbaa778f6f2b5589\"}", "{\"sha\": \"44d805c77835fca9332f0a351b50c2d8c87459be\", \"live\": true, \"id\": \"x4ea6eaa271603998\"}", "{\"sha\": \"49d817cf349c983e519213d5adcff001a14f4603\", \"live\": true, \"id\": \"x52f3c488d4e929c7\"}", "{\"sha\": \"9c178c015d67d14b7d53e86a88b8f3aefbd5b385\", \"live\": true, \"id\": \"x42171b4a7967721a\"}", "{\"sha\": \"ed57e32acd56446c4a73b94add35bf7e9c1c7c65\", \"live\": true, \"id\": \"x15e6cb133a295c53\"}", "{\"sha\": \"44dab775856a784743b84b882676c9e6c9021b2a\", \"live\": true, \"id\": \"x6c4b73c64d848724\"}", "{\"sha\": \"bbeeed48da71687a64ec40aba6546c29d0567de6\", \"live\": true, \"id\": \"x0fa60c76ea244356\"}", "{\"sha\": \"2dc1464844dd0e23d18724bdb14e2858dfe19f9b\", \"live\": true, \"id\": \"xd58c9dd12a9a539d\"}", "{\"sha\": \"b48521dbe33fb9984aca0a365a677fc234d4d4a5\", \"live\": true, \"id\": \"xfdc3f0fd62164014\"}", "{\"sha\": \"2f5fd84c1715b20dd0b8ce6f876d171a757dd855\", \"live\": true, \"id\": \"xdd5368a6ef3fc9e7\"}", "{\"sha\": \"1df3f3b9f39539d3d8cfb065c7db6631207bd073\", \"live\": true, \"id\": \"x3960201cac76f0c9\"}", "{\"sha\": \"ae801394c355c9f289ecb2c79235438d4c475260\", \"live\": true, \"id\": \"x91680df3dbcb28e6\"}", "{\"sha\": \"a24cd51ccd2294943e2d479f9d9ac7e08c49b0f3\", \"live\": true, \"id\": \"xb4a4212fcc2154e4\"}", "{\"sha\": \"cbc7208fe1d224f5c1ccbfb87c8ac1157bf3b885\", \"live\": true, \"id\": \"x9223aa4a6ceeb503\"}", "{\"sha\": \"3cd451a5e49a938ba6627c45689e38945b00004c\", \"live\": true, \"id\": \"xe9ed7014452ddda4\"}", "{\"sha\": \"0608145deda295776e5783fce153ebd0bffa0c40\", \"live\": true, \"id\": \"xea41b01522128c3a\"}", "{\"sha\": \"94cc8ec2939255eba1d3a8244850d6ff7b4b2279\", \"live\": true, \"id\": \"xf0d74c9ec8f5d60f\"}", "{\"sha\": \"b7743a7d993b0a9ca0ba2a5d6b0184681ecd1792\", \"live\": true, \"id\": \"xf0e779660378f86f\"}", "{\"sha\": \"9ce3e11bb61fbaaaeb5f7b5e12f2a4b87b63ae94\", \"live\": true, \"id\": \"x0073196a3fd149e7\"}", "{\"sha\": \"6e69516d858e3b8d5caff60e4b02b5726ad2ad50\", \"live\": true, \"id\": \"x43874d0ad31bd57f\"}", "{\"sha\": \"2d234775c811b1366f791b980f54c663af6808dd\", \"live\": true, \"id\": \"x12de282009979db7\"}", "{\"sha\": \"fe4ceb1ad94e47a42decadf64fd3970e9cea6014\", \"live\": true, \"id\": \"x1edbb8e8aae015f1\"}", "{\"sha\": \"68ad06d6c42cb0304798a4b6c3c70eec559dc0b5\", \"live\": true, \"id\": \"x9c4cd7a49560a9e2\"}"], "description": "", "basepoints": 10.0, "slug": "identifying-dependent-and-independent-events", "kind": "Exercise", "name": "identifying-dependent-and-independent-events", "seconds_per_fast_problem": 4.0, "prerequisites": ["independent_probability", "describing-subsets-of-sample-spaces"], "exercise_id": "identifying-dependent-and-independent-events"}, "newton-s-laws-and-equilibrium---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/newton-s-laws-and-equilibrium-passage-2/", "id": "newton-s-laws-and-equilibrium---passage-2", "display_name": "Knee injuries in athletes", "title": "Knee injuries in athletes", "all_assessment_items": ["{\"sha\": \"5cff2739cf80fbc60284f3d254c477b33e692c65\", \"live\": true, \"id\": \"x351568102de49279\"}", "{\"sha\": \"df6a8ed2de944dc34aa4d4a9ef3e79679c32f18a\", \"live\": true, \"id\": \"x1f339921ca2b3f65\"}", "{\"sha\": \"f29d00d399a9cde382a47e6bd57a0642d7b16c66\", \"live\": true, \"id\": \"x208a198e16fbce70\"}", "{\"sha\": \"5b99becb9990204f8c81b11e8ffcd1291dc3b61f\", \"live\": true, \"id\": \"x239a53e918793079\"}", "{\"sha\": \"8dd14c41cd2bab9b0bdaa5fea1d1fd155ec62ebf\", \"live\": true, \"id\": \"x0b94b98421a8d242\"}"], "description": "This passage will test your knowledge on Newton's laws and equilibrium", "basepoints": 10.0, "slug": "newton-s-laws-and-equilibrium-passage-2", "kind": "Exercise", "name": "newton-s-laws-and-equilibrium---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "newton-s-laws-and-equilibrium---passage-2"}, "crypto-checkpoint-2": {"uses_assessment_items": true, "path": "khan/computing/computer-science/cryptography/cryptochallenge/crypto-checkpoint-2/", "id": "crypto-checkpoint-2", "display_name": "Crypto checkpoint 2", "title": "Crypto checkpoint 2", "all_assessment_items": ["{\"sha\": \"26a043dec7fa82bd82b43c29fdc4db729c5c13f6\", \"live\": true, \"id\": \"x0754e16b\"}", "{\"sha\": \"f705a9e492e12f1c6182cde191e46539ebcefec8\", \"live\": true, \"id\": \"x8fb439ed\"}", "{\"sha\": \"009b663b8e7659f31b5beb15d6db30dcb1310fc8\", \"live\": true, \"id\": \"x1da112a8\"}", "{\"sha\": \"894b2059e41707104c74532b5942c70dbb8c18d3\", \"live\": true, \"id\": \"x191dba05\"}", "{\"sha\": \"5e906feab3acab9c5e9567bc7a936df5e39a45bb\", \"live\": true, \"id\": \"xdb5177e5\"}", "{\"sha\": \"e85123cae4acf5b88f9973d6e14c6e45948eb585\", \"live\": true, \"id\": \"x3f080dd6\"}", "{\"sha\": \"601bf2cffe0c6d925ec6f1a74cedd8f1800440a2\", \"live\": true, \"id\": \"xc576fec7\"}", "{\"sha\": \"271909eeec1d79949b6de8bab662bafbd6a336ba\", \"live\": true, \"id\": \"x09a1b493\"}", "{\"sha\": \"3543f53f090ac7275d2bf8b5be63f1933a8276cb\", \"live\": true, \"id\": \"x919c72ea\"}", "{\"sha\": \"21767fb24e4f6f44c623296c6824f50c3cdefd13\", \"live\": true, \"id\": \"x4787ef03\"}", "{\"sha\": \"c345ec309b11de2af7b932661360700fc4458e5a\", \"live\": true, \"id\": \"xc31e91e4\"}", "{\"sha\": \"28f23626ffde260ed0862bfe1dda608315b3f089\", \"live\": true, \"id\": \"x6b736622\"}", "{\"sha\": \"b88b85c5a528a28dec864feb5c2d4cd733939022\", \"live\": true, \"id\": \"x105bbfb1\"}"], "description": "Test if you decrypted the secret code", "basepoints": 10.0, "slug": "crypto-checkpoint-2", "kind": "Exercise", "name": "crypto-checkpoint-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "crypto-checkpoint-2"}, "crypto-checkpoint-3": {"uses_assessment_items": true, "path": "khan/computing/computer-science/cryptography/cryptochallenge/crypto-checkpoint-3/", "id": "crypto-checkpoint-3", "display_name": "Crypto checkpoint 3", "title": "Crypto checkpoint 3", "all_assessment_items": ["{\"sha\": \"70a32f122b8a4ec2b388d73db28e69ab09946aed\", \"live\": true, \"id\": \"x050da1eb\"}", "{\"sha\": \"0a2fe219774cd6a4f441e0428d7f3b68da4c1ca0\", \"live\": true, \"id\": \"xf7142063\"}", "{\"sha\": \"04f1a460397c16bbd2d8643c99ea5e657a57bcdd\", \"live\": true, \"id\": \"x38333e9e\"}", "{\"sha\": \"0f7ffda2ac971941a4fae79119c3e2a4cb14d58a\", \"live\": true, \"id\": \"xa93d9ec5\"}", "{\"sha\": \"1e8cd0ac46b47794b5557d6805401a7ec7b1d83c\", \"live\": true, \"id\": \"xdee059eb\"}", "{\"sha\": \"e1a9378b1376b179400cbf50c8fb91cac314dcb9\", \"live\": true, \"id\": \"x9818ffc4\"}", "{\"sha\": \"12cc2535b9e1ca712c7d3a5d6d07de21151071b9\", \"live\": true, \"id\": \"x359d322f\"}", "{\"sha\": \"816d9d6038bce8f267cd90d0478c86a37f0e95a8\", \"live\": true, \"id\": \"xee6a985b\"}", "{\"sha\": \"e85123cae4acf5b88f9973d6e14c6e45948eb585\", \"live\": true, \"id\": \"x3f080dd6\"}", "{\"sha\": \"8baf2d1a90aaba08020e1f807caa96aa22111d0e\", \"live\": true, \"id\": \"x47665e74\"}"], "description": "", "basepoints": 10.0, "slug": "crypto-checkpoint-3", "kind": "Exercise", "name": "crypto-checkpoint-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "crypto-checkpoint-3"}, "last-judgement-of-hu-nefer-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap/last-judgement-of-hu-nefer-quiz/", "id": "last-judgement-of-hu-nefer-quiz", "display_name": "Last Judgement of Hunefer (quiz)", "title": "Last Judgement of Hunefer (quiz)", "all_assessment_items": ["{\"sha\": \"a0ed04fdd2054ec91c00479d8e14bf3f3137f87e\", \"live\": true, \"id\": \"x66200c2c12d821bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b7777792be24fd04639be4f4e85f8d2eebffc7aa\", \"live\": true, \"id\": \"x9d134a319a01a1a4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c166c2f3758b567188f4785b57624beef22ce6da\", \"live\": true, \"id\": \"x2e284d50735e28db\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7bef54b787c384ae2ed94e4bdf58a9f2bc3bcb6c\", \"live\": true, \"id\": \"xdda60b571f7a997d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"08fcaca4890600a890d385eb1ca4ee8542e20cf2\", \"live\": true, \"id\": \"x4219c2f76f32a959\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cababb1f10e672bab01f96c682624b0126e974fd\", \"live\": true, \"id\": \"xef97ffabd117c11d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "last-judgement-of-hu-nefer-quiz", "kind": "Exercise", "name": "last-judgement-of-hu-nefer-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "last-judgement-of-hu-nefer-quiz"}, "quiz--exploration---interconnection": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/expansion-interconnection/exploration-interconnection/quiz-exploration-interconnection/", "id": "quiz--exploration---interconnection", "display_name": "Quiz: Exploration & Interconnection", "title": "Quiz: Exploration & Interconnection", "all_assessment_items": ["{\"sha\": \"af2d66417d4485c86ccf932036dad6144ad39f53\", \"live\": true, \"id\": \"xfb230964acdd3efe\"}", "{\"sha\": \"3e41c983d8ba46bd3c52b6568a4ba1e2446a339e\", \"live\": true, \"id\": \"x711812d89349e99b\"}", "{\"sha\": \"bb4483d1da4ccf87116246d13ea4c7918801424f\", \"live\": true, \"id\": \"xc164df01ad342626\"}", "{\"sha\": \"1681fb9dca1922feb8bc46f489bbfcfc9ee7a506\", \"live\": true, \"id\": \"x734c4eaff0e92757\"}", "{\"sha\": \"0f6459b764efe3c279fccd7134dc4e181d304e3c\", \"live\": true, \"id\": \"x59ff17a57863c285\"}"], "description": "Quiz 8.1", "basepoints": 10.0, "slug": "quiz-exploration-interconnection", "kind": "Exercise", "name": "quiz--exploration---interconnection", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--exploration---interconnection"}, "benjamin-franklin-quiz": {"uses_assessment_items": true, "path": "khan/humanities/history/1600s-1800s/benjamin-franklin/benjamin-franklin-quiz/", "id": "benjamin-franklin-quiz", "display_name": "Benjamin Franklin Quiz", "title": "Benjamin Franklin Quiz", "all_assessment_items": ["{\"sha\": \"a7e9411745e48d4aeb6285bceedde61f9aca2fa9\", \"live\": true, \"id\": \"x7160bc89db88c929\"}", "{\"sha\": \"47e7cf5dfd0834a4ee3eda54639cd161fdf6bacd\", \"live\": true, \"id\": \"x8a64885fe56fe043\"}", "{\"sha\": \"0e823d9dbfc2f1141283b04b5846dcb1e678932a\", \"live\": true, \"id\": \"x9c6f56b70271d1aa\"}", "{\"sha\": \"dba17d68a8db9c70207f1aba70bdee17f1c8bc7f\", \"live\": true, \"id\": \"xa3c63f87849a15af\"}", "{\"sha\": \"a93208c3aa70c0f1c54080ddf4863151a6a363e3\", \"live\": true, \"id\": \"xed055e2689598f50\"}", "{\"sha\": \"95deff5faff0aa3e4638b3a7a6e1086797a153d9\", \"live\": true, \"id\": \"x8292bd1e64b91a5f\"}", "{\"sha\": \"249664e54f32fe8c1256943713ac134563077b86\", \"live\": true, \"id\": \"xa9666c1a9045ce75\"}", "{\"sha\": \"3928021d6204249d5ef62671e071d24eef10d6a0\", \"live\": true, \"id\": \"x4a1b8f29f238d1bf\"}", "{\"sha\": \"f0a00a8c7d56b206fd942cbd1f6bf40dede8ecb6\", \"live\": true, \"id\": \"xfaae53986f934908\"}", "{\"sha\": \"bd49e15356132f975176861807bb725183485cce\", \"live\": true, \"id\": \"xcfc95719a8b7d74e\"}", "{\"sha\": \"c632875a5c86483f0df85cb5e7faf9ca8a0fa6f9\", \"live\": true, \"id\": \"x3d46df8777a79250\"}", "{\"sha\": \"49dbb9307081f44254c1d3c80389a931a1771b05\", \"live\": true, \"id\": \"x74aed2973a3ac2a0\"}", "{\"sha\": \"dfa8aa5e34f1fa27cce29136d7802f5b689d7c4a\", \"live\": true, \"id\": \"xe383231dc4b7b28c\"}", "{\"sha\": \"4d695f5c297244c93d560f80c4ba2acb13ac7916\", \"live\": true, \"id\": \"x79ed44c1f6fa1ff9\"}"], "description": "Students can test their knowledge of Benjamin Franklin's life with this quiz.", "basepoints": 10.0, "slug": "benjamin-franklin-quiz", "kind": "Exercise", "name": "benjamin-franklin-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "benjamin-franklin-quiz"}, "linear_equations_1": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/linear_equations_1/", "id": "linear_equations_1", "display_name": "One-step equations with multiplication", "title": "One-step equations with multiplication", "all_assessment_items": ["{\"sha\": \"641385793cec0d48c5e66d10ea9041fed85f30cb\", \"live\": true, \"id\": \"xcb40b55d698a0f44\"}", "{\"sha\": \"ff2c9442ac27c4fc21026ee8fc152dc003627f28\", \"live\": true, \"id\": \"x308220a304630748\"}", "{\"sha\": \"e1c44c1b011329dffba794684dcc57c2a87141c2\", \"live\": true, \"id\": \"xaf68a0b5723d5098\"}", "{\"sha\": \"af54a2060c0335ffe1248e21bb42fc07f0b85640\", \"live\": true, \"id\": \"xc4eec25d32c55081\"}", "{\"sha\": \"52617b3ace28142a0de4ee00fe5b94268f3f6493\", \"live\": true, \"id\": \"x493e1a0173447291\"}", "{\"sha\": \"d28400bff9a9f39d939ab1fd0cc46bbd10e7d6a7\", \"live\": true, \"id\": \"xa226ae0d69f595ed\"}", "{\"sha\": \"4979988c3370d7a9a55a4210c8ccc76ed90cd747\", \"live\": true, \"id\": \"x36bbc7ee3101ab33\"}", "{\"sha\": \"5a6aefbbdd0bf2de9c503b6722d15ae9fc481806\", \"live\": true, \"id\": \"x0d5e5e7d7705b2df\"}", "{\"sha\": \"6919a1a7203238c27edc5442e86f20942657ff43\", \"live\": true, \"id\": \"xb8de15bc6ab5cee0\"}", "{\"sha\": \"18030a58d8ca6f73aa251a966d71954f63fcf605\", \"live\": true, \"id\": \"x2afc6f136a93995b\"}", "{\"sha\": \"9d056d598166eb60f135604507a825a308e35ca4\", \"live\": true, \"id\": \"x2efcac12e81d22b0\"}", "{\"sha\": \"53243e1fefd9d6a246c7e1de76baad2c0f6e6ebc\", \"live\": true, \"id\": \"xd1eb2036ea69a1fb\"}", "{\"sha\": \"43a9ae819a1c3f3bb2b7506ab5827e5bb81d3636\", \"live\": true, \"id\": \"x9066d7ca2bd665dc\"}", "{\"sha\": \"f126f71f4d6ab27d7b10b7062bc9edbb279674f1\", \"live\": true, \"id\": \"x7db8e20259ef9bd1\"}", "{\"sha\": \"558948677936086d4a754954e23b8bbbd1beac8e\", \"live\": true, \"id\": \"x1a9c91c929ac113d\"}", "{\"sha\": \"b2222865dc2bd1b5cac41f9943846477b53ea9ef\", \"live\": true, \"id\": \"xabf843705994e483\"}", "{\"sha\": \"ca40da143ddfe29a0e8b08872a454f7f96c42758\", \"live\": true, \"id\": \"x357bc6dcf09caaeb\"}", "{\"sha\": \"3a06a95bd6ae50246e92e0a4869188ef3c8f15a0\", \"live\": true, \"id\": \"xc4854b8e909ba795\"}", "{\"sha\": \"ac2aeaba1e27e94294ca9c12005ddc04640921e7\", \"live\": true, \"id\": \"x973933d72a63b821\"}", "{\"sha\": \"0475075b202d8a5f4322e32ec49337ab848efe27\", \"live\": true, \"id\": \"xe00c3e3d7dc31667\"}", "{\"sha\": \"e169c3cee52686d3f277bf3c51607ddf577dac57\", \"live\": true, \"id\": \"x707dad3701de85a4\"}", "{\"sha\": \"b8ad3761941d744704e3d2a6085f49f1229f81e0\", \"live\": true, \"id\": \"x58946435e292a8c8\"}", "{\"sha\": \"784f6f574c09aeccce62ae45bb13c4642475a773\", \"live\": true, \"id\": \"x15a8455db9630450\"}", "{\"sha\": \"f0a84136f50dbda903de02b453e5c3c51a5c450d\", \"live\": true, \"id\": \"x2a73db830987495e\"}", "{\"sha\": \"2d6e7f9e3516ac0eaf61eddbbf1789c7df56c1d1\", \"live\": true, \"id\": \"x7827f24294551b10\"}", "{\"sha\": \"e8961f1b8fa4a72e99fbd0a1f6d2d07fa3f6e9f4\", \"live\": true, \"id\": \"xc35d03fc19d45587\"}", "{\"sha\": \"fb72511cedb8588ff000d3a4b15d526689f4ae63\", \"live\": true, \"id\": \"xf37c4005436c5ce9\"}", "{\"sha\": \"b7b2e39a1512bc307e7355c57cb50ac0d9740839\", \"live\": true, \"id\": \"x849383c076a2eb79\"}", "{\"sha\": \"e8848c9a89c845872bf36371ff32807504e7ea36\", \"live\": true, \"id\": \"x9e034645e47be8ed\"}", "{\"sha\": \"1234cec19644d6b107ea8a34325c3ae44210bce0\", \"live\": true, \"id\": \"xaba50353356458fd\"}", "{\"sha\": \"949ac93d766fd2effb7f5342d5821fdb6b32155e\", \"live\": true, \"id\": \"x5828f7381d516a26\"}", "{\"sha\": \"8483145d1b4a42e5dffdf1a8dfe7015040d9f191\", \"live\": true, \"id\": \"xf16eb1479e7e92a1\"}"], "description": "Practice solving equations in one step by multiplying or dividing a value from both sides.", "basepoints": 13.0, "slug": "linear_equations_1", "kind": "Exercise", "name": "linear_equations_1", "seconds_per_fast_problem": 6.0, "prerequisites": ["one_step_equation_intuition"], "exercise_id": "linear_equations_1"}, "linear_equations_2": {"uses_assessment_items": true, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/equations_beginner/linear_equations_2/", "id": "linear_equations_2", "display_name": "Two-step equations", "title": "Two-step equations", "all_assessment_items": ["{\"sha\": \"bd5e2b421dee5ddb6fbc702895b6236ccc6fec64\", \"live\": true, \"id\": \"x4a8f5e28ff5681cb\"}", "{\"sha\": \"9ce32a348a39797bdae8e57cba386798f3fd941b\", \"live\": true, \"id\": \"xf6d12595455d9c31\"}", "{\"sha\": \"9ffed929fa1df57d402597b4c75dbba272811c43\", \"live\": true, \"id\": \"xa8273ef93027be7d\"}", "{\"sha\": \"c162ac6eadc69b42b8eb8760c36065de9ed28ea2\", \"live\": true, \"id\": \"x3d857fb61e3f047a\"}", "{\"sha\": \"dd443c0181b03286276ffac0443bed8833d3cb8c\", \"live\": true, \"id\": \"x214ed0916e1c78f5\"}", "{\"sha\": \"f76fedb3b2bfb0736f90a9e08c8ed1115ce1544f\", \"live\": true, \"id\": \"xc7f220b51befb64a\"}", "{\"sha\": \"e5c52502e0cdd5b9a4209e83da0d2a3a0a8ed42f\", \"live\": true, \"id\": \"xc5706a996317b39f\"}", "{\"sha\": \"dabf681d9180a4ec3c954027f5538a84d499a983\", \"live\": true, \"id\": \"x42d8e71d2390ae10\"}", "{\"sha\": \"a6dd092ae2b5ff22b2aa2128f70a58bee84670b4\", \"live\": true, \"id\": \"x7b1c140bdace2a91\"}", "{\"sha\": \"ff9e41d1c0b2d851df8b3cce1ac359b8ab4c744d\", \"live\": true, \"id\": \"x317cb363282b9a6e\"}", "{\"sha\": \"70d82bcbf71262981460f2a8eb7f54e996cc0dc3\", \"live\": true, \"id\": \"x673432b1ec398763\"}", "{\"sha\": \"09055b8a8f0f8c60ae743a704ff4067f41add24d\", \"live\": true, \"id\": \"x3dd56eb092036897\"}", "{\"sha\": \"5f6e6863a0acc6fef3181a76654389ab09106e2c\", \"live\": true, \"id\": \"xa088fdaf8da0ca03\"}", "{\"sha\": \"10e6bf8ff03486e6a7890fa1fa9ea99479de8149\", \"live\": true, \"id\": \"xd683ba6892ac56b3\"}", "{\"sha\": \"1a1667b7648a26bc5a96c0e071c5806a2fb2615e\", \"live\": true, \"id\": \"x81d411cf84b63935\"}", "{\"sha\": \"fd93d9b13772dfc4e6da1279b9b5c2d979dd0933\", \"live\": true, \"id\": \"x868f339aaea46c7f\"}", "{\"sha\": \"29fdcf26bd930b7c91a15759c64449838ffddb19\", \"live\": true, \"id\": \"xe62c023d7d223259\"}", "{\"sha\": \"8cf7f7a59e09e2b5db701f28b47d34f294931d91\", \"live\": true, \"id\": \"x896bbe52d71bc31b\"}", "{\"sha\": \"911ff4ed2aa1e4a902df3b3667f6f313c2f303d0\", \"live\": true, \"id\": \"xf345697c70f67be1\"}", "{\"sha\": \"ca1e29a1f73e65bd4ce7407525bb6ffa02b2053a\", \"live\": true, \"id\": \"x76f083ea50bbe991\"}"], "description": "Practice solving equations that take two steps to solve.", "basepoints": 17.0, "slug": "linear_equations_2", "kind": "Exercise", "name": "linear_equations_2", "seconds_per_fast_problem": 10.0, "prerequisites": ["find-the-mistake-in-solving-one-step-equations"], "exercise_id": "linear_equations_2"}, "linear_equations_3": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/basic-equation-practice/linear_equations_3/", "id": "linear_equations_3", "display_name": "Equations with variables on both sides", "title": "Equations with variables on both sides", "description": "Solve equations with a variable on both sides.", "basepoints": 23.0, "slug": "linear_equations_3", "kind": "Exercise", "name": "linear_equations_3", "seconds_per_fast_problem": 26.0, "prerequisites": ["linear_equations_2"], "exercise_id": "linear_equations_3"}, "linear_equations_4": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/solving-rational-equations/linear_equations_4/", "id": "linear_equations_4", "display_name": "Solving rational equations 1", "title": "Solving rational equations 1", "description": "Solve equations with variables in numerator and denominator. Solutions can be fractions.", "basepoints": 25.0, "slug": "linear_equations_4", "kind": "Exercise", "name": "linear_equations_4", "seconds_per_fast_problem": 34.0, "prerequisites": ["solving_for_a_variable", "proportions_2"], "exercise_id": "linear_equations_4"}, "distributive-property-with-variables": {"uses_assessment_items": true, "id": "distributive-property-with-variables", "display_name": "Distributive property with variables", "title": "Distributive property with variables", "all_assessment_items": ["{\"sha\": \"1fcede63e66607edddf9ed6527f4f0b2072d190b\", \"live\": true, \"id\": \"xac1b5f6fb3dc5734\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"84afceb29cc970eca68e10cafdee05fb8b505c6e\", \"live\": true, \"id\": \"x53a0b594040a1b06\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2dff376f086154497513636d9c2bda94cfda3dd7\", \"live\": true, \"id\": \"x73b11681d64bd8f7\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c47b10de1c01b1681594eb525f8ee98fd86d9520\", \"live\": true, \"id\": \"x5dbcb035d6392cc3\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"02ac02a908067dc10e192dc7852bfad251c6be85\", \"live\": true, \"id\": \"x4357e1c5e8e735cc\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef50374f8fef5d4fb6d0183ce2472512b6673848\", \"live\": true, \"id\": \"xae46d6bda914d601\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5d2804adde7cdd1cf3ae7ba028cbef9e5dd60497\", \"live\": true, \"id\": \"x6a0059d92ee1596f\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"48ec042097a4e8fa11c8471e129564a3acfbd7c6\", \"live\": true, \"id\": \"xc8ab256189a2a15e\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"75d7250f3e3a8099b4bc6207f2bc5ca2f04d67c6\", \"live\": true, \"id\": \"x5da97214b2389f4f\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b21fb88eb11cf674e8996cf2c233b998264b32e1\", \"live\": true, \"id\": \"x63ed29925614b3f3\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d2c0b25dbcd0e3b19fe49d2775fc2ed17e8a66b0\", \"live\": true, \"id\": \"x6613effec41ad342\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8aba8dfbcc1fc8b1e1f7d896f7bcf44b58ca29d1\", \"live\": true, \"id\": \"x2470ed6eaa28bfdc\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d2fe0c96b6abfb0f426efbe812f76b31625a57f\", \"live\": true, \"id\": \"x2d0d6374acca94ff\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9b4122de34c5b16ef7d43b287b11eadf037efb34\", \"live\": true, \"id\": \"x60356715efba7f11\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8b20784249892bce1eeb0ad94d4b83e1b2f4175a\", \"live\": true, \"id\": \"x1e84037173434821\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aec64f1877bc205bb5dc1812f9c9fcbd22d5704b\", \"live\": true, \"id\": \"xd026f4285698ccdb\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6664e80030eeb87d81fca83ea42090f383267ba\", \"live\": true, \"id\": \"x2b43ba233be01752\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"638123eb12e3f8d11dfb3b8c216027548350ee22\", \"live\": true, \"id\": \"x8039008d7d7a9d6f\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"952a1d1123dbb55162f611b2ab2c55154518dac4\", \"live\": true, \"id\": \"x6171f434c2d47023\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"84e01730bf4df2bc554227020260f030b13811e4\", \"live\": true, \"id\": \"x11ee4e6a11770f38\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e0ba17e3114af6456e1080377e8e74489003df24\", \"live\": true, \"id\": \"x61a02f831325d932\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"31fbf57e89f104dd17ce1365dcbfb72dd03c6eee\", \"live\": true, \"id\": \"x5755933f2dbf8527\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d4094f84161a639279aba6abf3aad2dba0ae9d9e\", \"live\": true, \"id\": \"xee4d86e690262701\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ad0c758ff61579b6403294504ac2c6a8fb31c516\", \"live\": true, \"id\": \"x0f75dbd594242164\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"81f405701cd8e92c15684fb842d653cf4731402c\", \"live\": true, \"id\": \"x02f0e64653fc8a13\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8945397de1b6124ce07561b509078cf05c820faa\", \"live\": true, \"id\": \"xc49ba687aeeb0867\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b0fd2d3a98a39479020b49032fff3be35eaca40d\", \"live\": true, \"id\": \"xdd20d3c00247914f\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"032ed5a85a72bfb219a4c2546fce16944fa1a8cb\", \"live\": true, \"id\": \"xf5f50924e62ccf8b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"10cb467a45682160339d406de900eca77760bd7f\", \"live\": true, \"id\": \"x12d9b94257bc6377\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6a9dba2fc9a190ca8d28944ac7fd051fe9389f3a\", \"live\": true, \"id\": \"x1754a16a16acf3a5\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}"], "description": "Practice applying the distributive property to expressions that have variables. Negative numbers are not used in these problems.", "basepoints": 10.0, "path": "distributive-property-with-variables/", "slug": "distributive-property-with-variables", "kind": "Exercise", "name": "distributive-property-with-variables", "seconds_per_fast_problem": 4.0, "prerequisites": ["distributive_property"], "exercise_id": "distributive-property-with-variables"}, "quiz-literature-meets-art": {"uses_assessment_items": true, "id": "quiz-literature-meets-art", "display_name": "Quiz: Literature meets art", "title": "Quiz: Literature meets art", "all_assessment_items": ["{\"sha\": \"d56fc2ca82efd78c796f390b904be23ad726c408\", \"live\": true, \"id\": \"x80fb76206e86a243\"}"], "description": "Test your knowledge of terms and materials in the \"Literature meets art\" tutorial.", "basepoints": 10.0, "path": "quiz-literature-meets-art/", "slug": "quiz-literature-meets-art", "kind": "Exercise", "name": "quiz-literature-meets-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-literature-meets-art"}, "optimization": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/calc_optimization/optimization/", "id": "optimization", "display_name": "Optimization", "title": "Optimization", "all_assessment_items": ["{\"sha\": \"b019d6f3642dc62581287e6d7db548528a90188f\", \"live\": true, \"id\": \"x839c501098cb713b\"}", "{\"sha\": \"773b1a0f646bd906d95ea3e4e744d0af569ba957\", \"live\": true, \"id\": \"x97dbb936aaa49076\"}", "{\"sha\": \"b6c86ed4284ea766e5ca806507f1a0ecd5df9145\", \"live\": true, \"id\": \"x41ca1d3e55208172\"}", "{\"sha\": \"d20e72bed4f1ce2f80406491b67336680fd00f57\", \"live\": true, \"id\": \"x1dee6155fd4f25d6\"}", "{\"sha\": \"c0a34fcd3ed59f33b487e0456d99eca6ee6a2ee9\", \"live\": true, \"id\": \"xca37513f55adbb3c\"}", "{\"sha\": \"70a296c255b0b6588e27c7f85f12e691b2b92cb1\", \"live\": true, \"id\": \"x3ba0f51f32e8436b\"}", "{\"sha\": \"8f94fcf8999fd10f36127a25d5ebb93cde38bdae\", \"live\": true, \"id\": \"x0559bb015b11b917\"}", "{\"sha\": \"18811d2eb451892ed41d655679bd735fa1449e99\", \"live\": true, \"id\": \"xe62bec13a2f1a25b\"}", "{\"sha\": \"1ab4afe3a9c3963450a54d2938206d467fd02bca\", \"live\": true, \"id\": \"x70c9d367422a0b2b\"}", "{\"sha\": \"c2a6eee937b36393d4a16323c492f336f4dd76f5\", \"live\": true, \"id\": \"x04cf793f229eb1fd\"}", "{\"sha\": \"9cbe661c80c8d1b360b1b8ede73b5bde32725eef\", \"live\": true, \"id\": \"xabf58b478e702b34\"}", "{\"sha\": \"23869c901d3722ade047b983727fac0ee9a25e72\", \"live\": true, \"id\": \"x3c28801ca2ac54f6\"}", "{\"sha\": \"26131aa0e58ac2043d06582c7b12cafbe3afc46b\", \"live\": true, \"id\": \"x7d3b661576c44311\"}", "{\"sha\": \"6d911b3080acc2aadee005f925b2f107751f64d2\", \"live\": true, \"id\": \"x829d716d569312a9\"}", "{\"sha\": \"acb11f6c0aeace50b8a04e1af565607504124f57\", \"live\": true, \"id\": \"xdf07b4d352141cf2\"}", "{\"sha\": \"d55b9dcb9ce49f51f6de498a5f78aecfc1ac87bf\", \"live\": true, \"id\": \"xec19ee5c450fe2ef\"}", "{\"sha\": \"a637b5aac22cc1614dcc63786d0ba31bb3fa1bc9\", \"live\": true, \"id\": \"x6641dc4b10a9ad2a\"}", "{\"sha\": \"d1bf9e951bca147f5bfb1a4576bb91de054c1f66\", \"live\": true, \"id\": \"x8895201d85e29f6b\"}", "{\"sha\": \"7ba35a586ee3bd7ae903f06139644ee735b7eba9\", \"live\": true, \"id\": \"x36af6831728c0015\"}", "{\"sha\": \"74fefa82600b1483f4116721306c299e1376f0c3\", \"live\": true, \"id\": \"xa426bf26d15b727b\"}", "{\"sha\": \"3cc681a878462be2541aeaddfb90357b27c14eed\", \"live\": true, \"id\": \"x5a48b296f70ba361\"}", "{\"sha\": \"817c3ef284de64d1df5bdd1afbc99e75147925d2\", \"live\": true, \"id\": \"x584a0275dd32b324\"}", "{\"sha\": \"f32c0386514fba257187486f90d24a4bacc22e06\", \"live\": true, \"id\": \"xb3b05ad80352f714\"}", "{\"sha\": \"1f8a938c8ed660918cc2ee28680a53868791ae13\", \"live\": true, \"id\": \"x4a44005edd86d0be\"}", "{\"sha\": \"2b70e15c08fb32b0224b58f389f991e218a7a2f7\", \"live\": true, \"id\": \"x0d032ff2b5d1ba96\"}", "{\"sha\": \"9c9904acb57c82b3c47f4f0284df1320f152cd3c\", \"live\": true, \"id\": \"x8bd7efd68c006471\"}", "{\"sha\": \"5463cf8a9617faa9f5332a75657d98fc7ec7729b\", \"live\": true, \"id\": \"x426251085f5d885d\"}", "{\"sha\": \"b31c1a9af841de31776b7a41671c4ab61f4e8c6e\", \"live\": true, \"id\": \"xedd844cfa2e0fdd3\"}", "{\"sha\": \"ebf22c7c4c175d3c334dea34fce7b2a86850cf66\", \"live\": true, \"id\": \"xb2dd9f75d46f5de2\"}", "{\"sha\": \"1baac1f2f7905ca4a24fe4b730be9f0d24fa7528\", \"live\": true, \"id\": \"xdd92a801067972ff\"}", "{\"sha\": \"9851c134a26d254a51897c3d581df17286b3bae4\", \"live\": true, \"id\": \"xb328a665d703d4e7\"}"], "description": "", "basepoints": 10.0, "slug": "optimization", "kind": "Exercise", "name": "optimization", "seconds_per_fast_problem": 4.0, "prerequisites": ["extreme-value-theorem", "second-derivative-test"], "exercise_id": "optimization"}, "complementary_and_supplementary_angles": {"uses_assessment_items": false, "path": "khan/math/geometry/parallel-and-perpendicular-lines/complementary-supplementary-angl/complementary_and_supplementary_angles/", "id": "complementary_and_supplementary_angles", "display_name": "Complementary and supplementary angles", "title": "Complementary and supplementary angles", "description": "", "basepoints": 18.0, "slug": "complementary_and_supplementary_angles", "kind": "Exercise", "name": "complementary_and_supplementary_angles", "seconds_per_fast_problem": 12.0, "prerequisites": ["naming-angles", "measuring_angles"], "exercise_id": "complementary_and_supplementary_angles"}, "graphically-adding-and-subtracting-vectors": {"uses_assessment_items": true, "path": "khan/math/precalculus/vectors-precalc/vector-basic/graphically-adding-and-subtracting-vectors/", "id": "graphically-adding-and-subtracting-vectors", "display_name": "Graphically adding and subtracting vectors", "title": "Graphically adding and subtracting vectors", "all_assessment_items": ["{\"sha\": \"87588ac6fa5258f45b43a3b9b146fd1a7d44399e\", \"live\": true, \"id\": \"xe05982c4bf62045a\"}", "{\"sha\": \"9323b66e003c6694abe821922f5a52663cf9facf\", \"live\": true, \"id\": \"xb3ae89fa9f66a027\"}", "{\"sha\": \"f6db9eaff6d654e3ac4eb012bb31e9978e9be630\", \"live\": true, \"id\": \"x193a3d8e484a38a9\"}", "{\"sha\": \"a4ee529f7bb9926d2c72fb2c2e7b686c830108fb\", \"live\": true, \"id\": \"x024f6983647c8f31\"}", "{\"sha\": \"2391fb3d8bff56b3dde6ccad6df8dca1238ffcb4\", \"live\": true, \"id\": \"x6e15a8bee735e01a\"}", "{\"sha\": \"f1ed2aae28185881677d5fc52b42b4242604ff04\", \"live\": true, \"id\": \"x9ff6658614da9f68\"}", "{\"sha\": \"4ffc447ab52bc3078d8952dc0c4d5f7e4a878964\", \"live\": true, \"id\": \"x34a6336ec21e31a7\"}", "{\"sha\": \"d51f7a8c1c308f0ac0bf137b7f66853860fe71b0\", \"live\": true, \"id\": \"x9fe1d1653399a7be\"}", "{\"sha\": \"74ac9aff71890d917dc331a0477417124a80810c\", \"live\": true, \"id\": \"x7c8701d29f5ed0cb\"}", "{\"sha\": \"04174a3efe1d0ef04be5b9ea30ee23b768447393\", \"live\": true, \"id\": \"x23aed8afc8baa880\"}", "{\"sha\": \"a7be6beb1394a1236acd962471ab032dd525814d\", \"live\": true, \"id\": \"x85890d4232db475e\"}", "{\"sha\": \"24042d4d75cf161f0437162bc5e27849f763c971\", \"live\": true, \"id\": \"x4e44de316a7e1a29\"}", "{\"sha\": \"67751aa291f64cbd5ef3f3e79f0961b9daf54865\", \"live\": true, \"id\": \"xba9632784a868dcb\"}", "{\"sha\": \"326e0b9977115d5d67b21ea71da678c4f769a955\", \"live\": true, \"id\": \"x6b48c76a7cae5d05\"}", "{\"sha\": \"003b5ee06d06c4ec545d89e55bcc8e646d279f7e\", \"live\": true, \"id\": \"xb4a77c4ef1391481\"}", "{\"sha\": \"8cde9c428ddf45139c435b2b64003e584fb244cf\", \"live\": true, \"id\": \"x8886c66d3467ef98\"}", "{\"sha\": \"ab26c8366d7e241eeb2681cebeff0a671f56e06f\", \"live\": true, \"id\": \"x643cffe29724144f\"}", "{\"sha\": \"807f1f9c151d33188e313566cc8282d46175cc4d\", \"live\": true, \"id\": \"x4f94fa2ca97f5993\"}", "{\"sha\": \"d4e0bcb215240e2f9b522de5a1ee2e885313337f\", \"live\": true, \"id\": \"xf5ba687ac5bf8852\"}", "{\"sha\": \"0ea63ec5428107f4d95c1c15ce3b45d6057fff45\", \"live\": true, \"id\": \"xb85191907897a48f\"}", "{\"sha\": \"f806e822c62c9d5e97532e4f4d787d1230605a0e\", \"live\": true, \"id\": \"xab9e8bda174c1a4a\"}", "{\"sha\": \"65e4c34e32289ab9ea4366eb26a281c340a96fd5\", \"live\": true, \"id\": \"x6d134551bd0a2ee8\"}", "{\"sha\": \"23b52c9182a2ff6eb3160c994319e5fbe7a919a6\", \"live\": true, \"id\": \"x9ef492fd74c429d9\"}", "{\"sha\": \"9bdd25a69dbe53452985e37b172381a439be4062\", \"live\": true, \"id\": \"xc8cf91da7abfc837\"}", "{\"sha\": \"6d1d48643f9688aad25120841635696e4e44b887\", \"live\": true, \"id\": \"x44ca144e7ae9a7dd\"}", "{\"sha\": \"190c0d4c78cbfb970dafe895b4b7b625205378ac\", \"live\": true, \"id\": \"x278d5095b542508a\"}", "{\"sha\": \"e4e40083cc148af1e698052e3e12bc53be7d5b5d\", \"live\": true, \"id\": \"xa2b1011628eafd60\"}", "{\"sha\": \"8d73426b6f48266c885908f75f566a5c9c1c393e\", \"live\": true, \"id\": \"x83f30cd7ee712f7f\"}", "{\"sha\": \"c8a23b2fc8ab275ae89ec39202698540dd999996\", \"live\": true, \"id\": \"x6dfe9eea635b00e5\"}", "{\"sha\": \"112ccdb5b82c1352bdbfd1c8321c42cf1e87da72\", \"live\": true, \"id\": \"x6323160a1403f631\"}", "{\"sha\": \"0cba423b90d41d0b4a8eaf55b02827fbba5e322e\", \"live\": true, \"id\": \"xb9c9e7a2f48d3e2b\"}", "{\"sha\": \"5ff240e4d95223e09eb412f1845cbcbedf8b9d49\", \"live\": true, \"id\": \"x195ff8aabd07ecc5\"}", "{\"sha\": \"7253fcd3c8a0a54f14ca2c8dc232e50d3e4f272e\", \"live\": true, \"id\": \"xb8b98ead7d057bdb\"}", "{\"sha\": \"cbd3f7d68dee482e7a8fdc1aaef71130fb66d2b9\", \"live\": true, \"id\": \"xe856c1a36d76400b\"}", "{\"sha\": \"f394999106eb572eb64c8887dbf47f1ee4da2ff1\", \"live\": true, \"id\": \"xba6d1f9b6a6d968a\"}", "{\"sha\": \"dbfd6e004953ac67ffb2c516ed4fb7bbb57ba44a\", \"live\": true, \"id\": \"xa669097f39eb94a3\"}", "{\"sha\": \"b33d8f66fb86fc8daf7074832320dc7a0ec518fd\", \"live\": true, \"id\": \"x4cae25ceed66bc77\"}", "{\"sha\": \"a24486a75cb959367b8abfb4047ab779402b4cd4\", \"live\": true, \"id\": \"x318514d7e46b92ac\"}", "{\"sha\": \"ea752980264db570674eba30fd76ff0a3a343c40\", \"live\": true, \"id\": \"x3d267033bf4099dc\"}", "{\"sha\": \"2dc3245f5c217aa504f341c17c3624c4b86d549d\", \"live\": true, \"id\": \"x88f8e72fb28ce13e\"}"], "description": "", "basepoints": 10.0, "slug": "graphically-adding-and-subtracting-vectors", "kind": "Exercise", "name": "graphically-adding-and-subtracting-vectors", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing-vector-quantities"], "exercise_id": "graphically-adding-and-subtracting-vectors"}, "multiply-and-divide-rational-numbers": {"uses_assessment_items": true, "id": "multiply-and-divide-rational-numbers", "display_name": "Signs of products and quotients", "title": "Signs of products and quotients", "all_assessment_items": ["{\"sha\": \"e28454b99579c7f323f583c2b744a8abcaa4d4ef\", \"live\": true, \"id\": \"x3f642fe94c6ea006\"}", "{\"sha\": \"7e1062db570eb963a44e96d7f249d47fe4cfbdf4\", \"live\": true, \"id\": \"xca0c2b791c64390d\"}", "{\"sha\": \"12783f9074fc6b158d5c296818f3bedc1d6fa058\", \"live\": true, \"id\": \"xfb62603526466fe4\"}", "{\"sha\": \"052f611765fbf9f81d2260d0c17b57d7187e15f9\", \"live\": true, \"id\": \"x09b76a800d82390c\"}", "{\"sha\": \"94ab63321160e0fe21a60a81a2afdaf0f2a85b43\", \"live\": true, \"id\": \"x946d1c1b5794c5d0\"}", "{\"sha\": \"b250e865729f68b323571886c807bcf79f898546\", \"live\": true, \"id\": \"xd6c119b1546133b6\"}", "{\"sha\": \"d0d9dc0357e130321e04cf8f067f03be01387298\", \"live\": true, \"id\": \"xf8bc1a0bfb897536\"}", "{\"sha\": \"9f4bbaa940c61eeb58b7f90486bc6968d027753b\", \"live\": true, \"id\": \"x75cafd75fa74d015\"}", "{\"sha\": \"cde1e8addfe4a830347573d5a17bd03bb64a777a\", \"live\": true, \"id\": \"xf54f81de4ff9785a\"}", "{\"sha\": \"55fd70cf611a62c0108866dbd4a98bdd2ceb62f9\", \"live\": true, \"id\": \"x2e34be5b64ebc648\"}", "{\"sha\": \"8e606eccd8837137478217e52ce850e6e1c7bc12\", \"live\": true, \"id\": \"x4ee007e01d94e6d2\"}", "{\"sha\": \"4defd78d99444c2e68bca8df65979eabc0ecb023\", \"live\": true, \"id\": \"x9a6764c225164258\"}", "{\"sha\": \"f2265e934b0a4e95780b4db4aadee958a535def0\", \"live\": true, \"id\": \"x18d8a36dc05bc413\"}", "{\"sha\": \"14295b2a476b8f5979cdd3783beab4ba9cf160d6\", \"live\": true, \"id\": \"x9ed54989cf2d075f\"}", "{\"sha\": \"9dbcacd91b7c6a35546694095d281eeeded14d50\", \"live\": true, \"id\": \"x1ae313a3b0fcc415\"}", "{\"sha\": \"187573a12c67baa2cd77923310b3e74ddc441543\", \"live\": true, \"id\": \"x62213d4706228dab\"}", "{\"sha\": \"4fcfa66cf8d7ca5ce82008e668130a735f7138ee\", \"live\": true, \"id\": \"x2ac97a878f373aac\"}", "{\"sha\": \"938b92c4f4442609392ada0f50972f5cbc3e42cc\", \"live\": true, \"id\": \"xb9bbfa423d3fcc97\"}", "{\"sha\": \"c827024de96671c9d1b90e9bfad854e1157fa625\", \"live\": true, \"id\": \"xf83cb4cfbb6d98c8\"}", "{\"sha\": \"f506de94482dc745bbf37d817b4cf28fff301be9\", \"live\": true, \"id\": \"xeb384be42b878cb0\"}", "{\"sha\": \"7ac30c8dfa35cd230f149b0c7c1aa486eb941be3\", \"live\": true, \"id\": \"x06c9ebc30b95bc5c\"}", "{\"sha\": \"7e694511880c1decd0c52e7a234bd812b868c3a8\", \"live\": true, \"id\": \"x14283a167a550768\"}", "{\"sha\": \"d06e3ec2b5884381b40686b443d14f004aebb5fe\", \"live\": true, \"id\": \"x8a0ecc755b63a59c\"}", "{\"sha\": \"3c226afcd6bc0503bc5971929a445da724885b49\", \"live\": true, \"id\": \"x700b43d322ba1a57\"}"], "description": "Practice finding the signs of the answers to complex multiplication and division problems.", "basepoints": 10.0, "path": "multiply-and-divide-rational-numbers/", "slug": "multiply-and-divide-rational-numbers", "kind": "Exercise", "name": "multiply-and-divide-rational-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["sign-rules-for-multiplication-and-division", "multiplying_and_dividing_negative_numbers"], "exercise_id": "multiply-and-divide-rational-numbers"}, "multiplying_expressions_1": {"uses_assessment_items": false, "path": "khan/math/algebra/multiplying-factoring-expression/multiplying-binomials/multiplying_expressions_1/", "id": "multiplying_expressions_1", "display_name": "Multiplying binomials 2", "title": "Multiplying binomials 2", "description": "Multiply two binomials of the form ax+b", "basepoints": 17.0, "slug": "multiplying_expressions_1", "kind": "Exercise", "name": "multiplying_expressions_1", "seconds_per_fast_problem": 10.0, "prerequisites": ["multiplying_expressions_0.5"], "exercise_id": "multiplying_expressions_1"}, "reflection-and-refraction": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/reflection-and-refraction/reflection-and-refraction/", "id": "reflection-and-refraction", "display_name": "Reflection and refraction questions", "title": "Reflection and refraction questions", "all_assessment_items": ["{\"sha\": \"bf86f681a7f369841c3e8aa2f1b2624dba9ed43d\", \"live\": true, \"id\": \"x7c15d1268b6a6a65\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f764dda97ee2e4dbe00d6a7e7396f71f694c00b4\", \"live\": true, \"id\": \"xb8ef7daf5a50a3e4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e1486f59fd990f038f0bef5afc349c468978d4f4\", \"live\": true, \"id\": \"xb5546e716026c349\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e48f55a58ebc20dcc1b7a7b7c9dc34bf0fdc83b\", \"live\": true, \"id\": \"x20f6f4e803bd788f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a50e00f3e76ad5c465f7d392094e153f5f1e1eb\", \"live\": true, \"id\": \"xfe75b1d005e775be\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8b7e2dd7f86da808a6adb336a0c3a5acaf41990\", \"live\": true, \"id\": \"xc1a0b962584ed361\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"03631b4d937eb73bb16b4297eb1689f179a6d24e\", \"live\": true, \"id\": \"x4e146d84c0445a40\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2643ab8fa286c49f7b32f639aa338a3a3d626780\", \"live\": true, \"id\": \"x93d9e8b149ef9ce4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"012376f762d9f1da9b1340c967af1bbf2c4cfe89\", \"live\": true, \"id\": \"xcd089217abaa67af\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fb318160106e1286f2265ce751bb665ce7465be2\", \"live\": true, \"id\": \"x6302451f9ee22abf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions pertaining to reflection and refraction", "basepoints": 10.0, "slug": "reflection-and-refraction", "kind": "Exercise", "name": "reflection-and-refraction", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "reflection-and-refraction"}, "concavity-and-the-second-derivative": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/concavity-inflection-points/concavity-and-the-second-derivative/", "id": "concavity-and-the-second-derivative", "display_name": "Concavity and the second derivative", "title": "Concavity and the second derivative", "all_assessment_items": ["{\"sha\": \"338e2e1b5ae7e80cb6dc350a0bd5bb459669ef48\", \"live\": true, \"id\": \"x1c7ae8f38f0e257a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5336210ec98030dfd35a7899484c31cfc523ebde\", \"live\": true, \"id\": \"xe1ef4b2a32434f38\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dc85934320efb549dcd67015f0401a926c21f62d\", \"live\": true, \"id\": \"xfe22ac22833dfdc1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"02dcae20c268a54506130a0d6092d993d9da95d9\", \"live\": true, \"id\": \"x115f97b69cae1f39\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0dd365a328e94168fd57e0d06176fd642e431f73\", \"live\": true, \"id\": \"xcb4bfa6434742aba\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"967ba556439fe392b69e8c9c0c345c743377ec40\", \"live\": true, \"id\": \"xd03e0f89d2c12830\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aaa4be1d5915344b1595c4fa31380b00542e50ac\", \"live\": true, \"id\": \"x2b73102d04333968\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"85101216a0eaf3f832339193f2b3810d43cb9d5f\", \"live\": true, \"id\": \"x529719c45aeb68fe\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"74aeb60cfa36c95ed8e6ea97f331ca2784067d61\", \"live\": true, \"id\": \"x2ed47595a1b56f0f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b7a0d3c280cda5f89d76d28616a5e8458a0f2bab\", \"live\": true, \"id\": \"xefd622d419e86d9f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bbd9caeab904099ebd0fccb3640466f291d4e228\", \"live\": true, \"id\": \"x26a4b5cb884471de\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2371858d627d445179ebd02dc4ea15b03c606e1\", \"live\": true, \"id\": \"xb98038deefb104a7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76dc649557fd967f745881a6cf7d0d9ef265d7c5\", \"live\": true, \"id\": \"x46b913c7e3878415\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"21d9b0e69d4a497e365345a671805f8f221237b0\", \"live\": true, \"id\": \"x81cd4d09cfab4cbd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a6a4ea1bec3e6c28534ee684ef973cbe8a61fd05\", \"live\": true, \"id\": \"x57aa7c45fe38d463\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf9b43073bbeb91f94c03eb8e6c36cd696b30b05\", \"live\": true, \"id\": \"x6f178457540dfc22\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"648e581287b1382c7b9b0e78c5152c0231b4d985\", \"live\": true, \"id\": \"x452c9b9ab580e1b2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"797ddaab9a7b050a871b6810d4d46d93cbbcd5f2\", \"live\": true, \"id\": \"xcc3d1b452359c90e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd68db61183294cf5eede7dfbb242600000c408a\", \"live\": true, \"id\": \"x96240f2922e77661\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c45c89d1bc9f50d08e3828986a9105e00ae9d92b\", \"live\": true, \"id\": \"x1935299ac61f62c7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f48bd8c290c50155945bbe6c3da67b6bd5fa3f39\", \"live\": true, \"id\": \"x91814b8b958adad8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"870abf55f48cee7830cc9bc9edf00ff542b11b69\", \"live\": true, \"id\": \"xfb2be3f5a8f157dd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf27de954d848f179362ecc484967a659eefaac6\", \"live\": true, \"id\": \"x244ff383d632e186\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fef87e1a5a65148b17e55f4b48aed3be98fdb73f\", \"live\": true, \"id\": \"xc6d0199cbd3cf64f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f404fbc2819d6817fce3dd440740efac6486333b\", \"live\": true, \"id\": \"x6d5ec060f20a09cc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "concavity-and-the-second-derivative", "kind": "Exercise", "name": "concavity-and-the-second-derivative", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing_concavity"], "exercise_id": "concavity-and-the-second-derivative"}, "simultaneous-hermaphroditism--egg-trading--and-the-prisoner-s-dilemma": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/simultaneous-hermaphroditism-egg-trading-and-the-prisoner-s-dilemma/", "id": "simultaneous-hermaphroditism--egg-trading--and-the-prisoner-s-dilemma", "display_name": "Simultaneous hermaphroditism, egg trading, and the Prisoner\u2019s Dilemma", "title": "Simultaneous hermaphroditism, egg trading, and the Prisoner\u2019s Dilemma", "all_assessment_items": ["{\"sha\": \"6d5ec3571849bf01c1661d0a5ac650e5f6b69c25\", \"live\": true, \"id\": \"x08ced5aee86ea0b7\"}", "{\"sha\": \"7b1321f7e191164079d6594a041afb8f4bef69f0\", \"live\": true, \"id\": \"x8872f4023e043656\"}", "{\"sha\": \"cb5a35763f1461a009177a7f409e71d868385230\", \"live\": true, \"id\": \"xd6b30a65f6e7f80f\"}", "{\"sha\": \"60ad475ecd5a8a005545b7b5a430c7d545fbcaa9\", \"live\": true, \"id\": \"x801805dc52f75c15\"}", "{\"sha\": \"ec19d0fe79558b7250671d3e2ac077b10189cd90\", \"live\": true, \"id\": \"xfd9ae254b43b6e51\"}"], "description": "Simultaneous hermaphroditism, egg trading, and the Prisoner\u2019s Dilemma", "basepoints": 10.0, "slug": "simultaneous-hermaphroditism-egg-trading-and-the-prisoner-s-dilemma", "kind": "Exercise", "name": "simultaneous-hermaphroditism--egg-trading--and-the-prisoner-s-dilemma", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "simultaneous-hermaphroditism--egg-trading--and-the-prisoner-s-dilemma"}, "world_war_i": {"uses_assessment_items": true, "path": "khan/humanities/history/euro-hist/world-war-i-quiz/world_war_i/", "id": "world_war_i", "display_name": "World War I", "title": "World War I", "all_assessment_items": ["{\"sha\": \"451fa2c2c33787cba7645b993b512755258d88cf\", \"live\": true, \"id\": \"x162943dc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8663c3be3c6082cd2c37970866199f2e0e0b8625\", \"live\": true, \"id\": \"xb511ff30\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d39a0c1aedc3453526c1912eef6c0dc539bae471\", \"live\": true, \"id\": \"x26968821\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9725be70450c9fc297fbf374662fc933e3d5c17d\", \"live\": true, \"id\": \"x3e390f44\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e362a4942ed05c935854fb2925989ba3bf47ad98\", \"live\": true, \"id\": \"x72a2519d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b20c6072f7448358edacc89838279820ed64649e\", \"live\": true, \"id\": \"x057b1df8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca1fa326b89e27f03bb194e0cf9c266b27f7ea0e\", \"live\": true, \"id\": \"x43fe69b2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c08b620db073a29f3f0c64cb441651aaaf10922e\", \"live\": true, \"id\": \"xb5f2788c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d87a827b3e116a5b3b6038e709708db19853ed5\", \"live\": true, \"id\": \"x2bda5d61\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5614366112f94fa9d8220277506220d458ce32af\", \"live\": true, \"id\": \"xe1d23308\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1f94e3c734b9698c29d70bfe4a1141ee38088cae\", \"live\": true, \"id\": \"x81260231\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c45d8cca942c2bf0ad3bc04427ff50faadefe450\", \"live\": true, \"id\": \"xc0f93465\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a064457dde94992c7bcb92305640f7a976f87b97\", \"live\": true, \"id\": \"xe69b34bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a093c4d6f04b34e0cf871bfeeefbaa4c7d163fb9\", \"live\": true, \"id\": \"xed8eaaff\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d90d6e2ce4195078b353501e2f7bcaec5f01fd7a\", \"live\": true, \"id\": \"x018290a2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"366435258514577a35a42eb4d5390771a8e2061f\", \"live\": true, \"id\": \"x431cfbde\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b4dc5f590cd34c7cca5198a2d30ca55b3bed2429\", \"live\": true, \"id\": \"xba26c243\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76b9098454baa6b65feabd0d02e95d5b878899c8\", \"live\": true, \"id\": \"x0bd14d97\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc33ab48f0f5f5b785fb89a05eb9c17936ff82c6\", \"live\": true, \"id\": \"x573310fb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e8149d2504b0d49c72e85ba5e60235d28d2ad1f5\", \"live\": true, \"id\": \"xca8caeaa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e70e7e7daf212c7c1377bab5c8522e94b703117b\", \"live\": true, \"id\": \"x1edd6026\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a945436d4e97c345d601d05c12561e4143c1b8d6\", \"live\": true, \"id\": \"x77408a72\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16897b1f090d5f1109ea859660e51353340d43bd\", \"live\": true, \"id\": \"x8dc67cbd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ff5cc4cbdb70fc93cfeed0bd1d59ba51b787d87d\", \"live\": true, \"id\": \"xc00a72ee\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9ae592e84a936718f012de73779430518b8fb0e6\", \"live\": true, \"id\": \"xcf3a5e46\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d9a8099dfaf700910f72c66a07637ea5b477aefc\", \"live\": true, \"id\": \"x1a723367\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f68581afb9a5607fd0dd2c5da860ab0523bad7aa\", \"live\": true, \"id\": \"x48d7a627\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a792874557becff9bfbc3ba7e406b2a6651bdbe9\", \"live\": true, \"id\": \"x228a2209\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"89987cc399b07616cc9798b64dfa626540c4c6f0\", \"live\": true, \"id\": \"x33bb9d5f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1712d8ec248cd76ae0bc8a089c311a380e4df0e6\", \"live\": true, \"id\": \"x3655e2fe\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f31398dbf29e0fd88f5ce4ec001bfaf9fdb8083\", \"live\": true, \"id\": \"x80192e9b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"22591aab7c8c0c2e6facd0fb30c17a3b18035c15\", \"live\": true, \"id\": \"xa177eba5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"69ee0ea3fe469250e13a20c6e700592815ed4a8d\", \"live\": true, \"id\": \"x36ae2066\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2f00f49595bbd8bf40e29581ead984820feaec8\", \"live\": true, \"id\": \"xde98ca4d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5059cda539efb161b5260453408a5a7eb62df226\", \"live\": true, \"id\": \"x405c1e43\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"55917dc42faabef9adde3795f266e98fca94877b\", \"live\": true, \"id\": \"x4b36b031\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c53237f89ce244d349186d4078339b029d340c3f\", \"live\": true, \"id\": \"xc4145b8f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"ba3427af66f67f4f899e8b52485eeb9d2903f696\", \"live\": true, \"id\": \"x55902ded\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ab1e32e63f5f8897d851f0f973cd2afef0cbabc\", \"live\": true, \"id\": \"x9877e517\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7318736fd6ccf3d4ca468d77f964babc43e161fe\", \"live\": true, \"id\": \"x6527f1fa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a91dafd49dc15c9d3c26a459bedd53b95f4b108b\", \"live\": true, \"id\": \"x66bcfc70\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cafbcc407f8c65f8c2c30a5f34a2c54e889285cd\", \"live\": true, \"id\": \"xb4eee937\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7c91d7a7f4d6125ee69c5416ab009af429ca4488\", \"live\": true, \"id\": \"x7d4648dd\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"412b6e3b8796c950d57ca18104733ca92fa3ab41\", \"live\": true, \"id\": \"x855030aa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"93124bc5a163531e93f1c56efd90fd5c2c30c399\", \"live\": true, \"id\": \"xfe173042\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4c9c76c68bacf56167a52ed0ee40bfdc1b42ca7a\", \"live\": true, \"id\": \"xa0a73a58\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c2ffc44bf04108450d30af07e4c7995433cd52cf\", \"live\": true, \"id\": \"xc5fe167d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"729e3c87d189782a5987a22fa9a1bfa1707783b9\", \"live\": true, \"id\": \"xb9e2ec5e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bf9b5e0f053b179c6c054cb38c4eb68d8bb4a4f4\", \"live\": true, \"id\": \"xc97b6f62\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "world_war_i", "kind": "Exercise", "name": "world_war_i", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "world_war_i"}, "adding_fractions_with_common_denominators": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/add-and-subtract-fracs-pre-alg/adding_fractions_with_common_denominators/", "id": "adding_fractions_with_common_denominators", "display_name": "Adding fractions with common denominators", "title": "Adding fractions with common denominators", "description": "Add two fractions with the like denominators. \u00a0", "basepoints": 14.0, "slug": "adding_fractions_with_common_denominators", "kind": "Exercise", "name": "adding_fractions_with_common_denominators", "seconds_per_fast_problem": 7.0, "prerequisites": ["equivalent_fractions"], "exercise_id": "adding_fractions_with_common_denominators"}, "bleeding-and-impaired-hemostasis-quiz-3": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/bleeding-and-impaired-hemostasis-quiz-3/", "id": "bleeding-and-impaired-hemostasis-quiz-3", "display_name": "Bleeding and impaired hemostasis quiz 3", "title": "Bleeding and impaired hemostasis quiz 3", "all_assessment_items": ["{\"sha\": \"58624238cd4936ac49639a452f84187aa13eb3c3\", \"live\": true, \"id\": \"xd33fcdd149976b89\"}", "{\"sha\": \"56d6229c47947f1e9087f1212ada705fa45ad37e\", \"live\": true, \"id\": \"x69ea0e0936823b7b\"}", "{\"sha\": \"b532293a5f3fe9b62599ca884c10b94982829452\", \"live\": true, \"id\": \"x6a7ad46a67340013\"}", "{\"sha\": \"25d5e9704644681b8eedfc062166ce22bfd6f8cd\", \"live\": true, \"id\": \"xa803df3dcef43048\"}", "{\"sha\": \"f6b061c1b96430f8e5497ec0519e53d3e40573e7\", \"live\": true, \"id\": \"x400edd2e99904815\"}", "{\"sha\": \"76b95afbf9434ec535c3a933382af67954da55e1\", \"live\": true, \"id\": \"x84b2b285b74f147d\"}", "{\"sha\": \"866bd4506fb9a09dafa1c2d31dace338b6d652cf\", \"live\": true, \"id\": \"x64996c254874dd0a\"}", "{\"sha\": \"1de5038629dababf22cd04af55b00c6fe43c2480\", \"live\": true, \"id\": \"xca4b69494244844a\"}", "{\"sha\": \"05c3f55c88812db9821e2f0af99930195a4492a3\", \"live\": true, \"id\": \"x7b5350ae256aae8c\"}", "{\"sha\": \"5f370d06cadd8e0724c5cbb61762084173ff04b5\", \"live\": true, \"id\": \"x4053287c4d0b9ff0\"}"], "description": "Yet another bleeding and impaired hemostasis quiz.", "basepoints": 10.0, "slug": "bleeding-and-impaired-hemostasis-quiz-3", "kind": "Exercise", "name": "bleeding-and-impaired-hemostasis-quiz-3", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "bleeding-and-impaired-hemostasis-quiz-3"}, "bleeding-and-impaired-hemostasis-quiz-2": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/bleeding-and-impaired-hemostasis-quiz-2/", "id": "bleeding-and-impaired-hemostasis-quiz-2", "display_name": "Bleeding and impaired hemostasis quiz 2", "title": "Bleeding and impaired hemostasis quiz 2", "all_assessment_items": ["{\"sha\": \"3f97a049a21f234cae958ef1c99581ca7e1999a0\", \"live\": true, \"id\": \"xbf2375864ac455b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"efd033f34e689948fff1ed7718ebf95fda72b324\", \"live\": true, \"id\": \"xc309c437c2dde47f\", \"perseus_api_major_version\": null}", "{\"sha\": \"f0b89a32b44557b409d95d8a85b893b09bd33510\", \"live\": true, \"id\": \"x443c09d713e0defe\", \"perseus_api_major_version\": null}", "{\"sha\": \"1dc7bd1bd62e98e0cb471ae6e0b5bae267b6a355\", \"live\": true, \"id\": \"x44db8fee70505fb2\", \"perseus_api_major_version\": null}", "{\"sha\": \"6f29d7140e270d78b82792bdded30f512af37f73\", \"live\": true, \"id\": \"x2daf2b0f9037233f\", \"perseus_api_major_version\": null}", "{\"sha\": \"9af46217cbf1e4adc3bfc8d4e43b61adc4ae85ff\", \"live\": true, \"id\": \"xe55fb94eae8b1cfd\", \"perseus_api_major_version\": null}", "{\"sha\": \"a3f018b373d06f61876cadad86a0d96c09b30f04\", \"live\": true, \"id\": \"x7e8b7debbf97258b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"079a4bf752f0a95eaa2578940167fe45dd205cfd\", \"live\": true, \"id\": \"x96dcc13ae1584e47\", \"perseus_api_major_version\": null}", "{\"sha\": \"5cc0cfebb5e4f8acac7466dfd6dc324a9b2034da\", \"live\": true, \"id\": \"x530ecfe89603019d\", \"perseus_api_major_version\": null}", "{\"sha\": \"d3b9dd33ab51a487573b1e54ebcbc1d4c9926794\", \"live\": true, \"id\": \"x0a82154bc24468de\", \"perseus_api_major_version\": null}"], "description": "More questions for bleeding and impaired hemostasis.", "basepoints": 10.0, "slug": "bleeding-and-impaired-hemostasis-quiz-2", "kind": "Exercise", "name": "bleeding-and-impaired-hemostasis-quiz-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "bleeding-and-impaired-hemostasis-quiz-2"}, "sound-quiz-passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/sound-quiz-passage-1/", "id": "sound-quiz-passage-1", "display_name": "How movements influence an ultrasound", "title": "How movements influence an ultrasound", "all_assessment_items": ["{\"sha\": \"a2169c55457776a15068c8d33f58687772244c6c\", \"live\": true, \"id\": \"x638951065a0f7daa\"}", "{\"sha\": \"c30e9d92dc2111fa1c16649c5e743505e950c9e5\", \"live\": true, \"id\": \"x5efb8aa428a61bcb\"}", "{\"sha\": \"60a39f82e76a05f6996ce989a42f71e5ecdbc87b\", \"live\": true, \"id\": \"x987bf9573d7b38b5\"}", "{\"sha\": \"3a7f723b2793032d03e67924f8698595da89627d\", \"live\": true, \"id\": \"x55fdefa9ebfe9581\"}", "{\"sha\": \"6c28821dce9e6d4616ab868e2d90314a4c58ee53\", \"live\": true, \"id\": \"x8796697719893e07\"}"], "description": "This passage will test your knowledge on sound and audition", "basepoints": 10.0, "slug": "sound-quiz-passage-1", "kind": "Exercise", "name": "sound-quiz-passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sound-quiz-passage-1"}, "transformation-puzzles-1-5": {"uses_assessment_items": true, "path": "khan/math/recreational-math/puzzles/transformation-puzzles/transformation-puzzles-1-5/", "id": "transformation-puzzles-1-5", "display_name": "Transformation puzzles 2", "title": "Transformation puzzles 2", "all_assessment_items": ["{\"sha\": \"c879b78bc20043cea4b99e31feed35c3dcf78779\", \"live\": true, \"id\": \"x1e23836ab1f2abe3\"}", "{\"sha\": \"a69f3354ca8da0e59f239ad111cacccd44d00a3c\", \"live\": true, \"id\": \"x14515b703e90f22c\"}", "{\"sha\": \"46efdeabd179f22b3fe85a249cd191ba9d52f4af\", \"live\": true, \"id\": \"xd7284dada0f46750\"}", "{\"sha\": \"95d73216aa30d39b05f910244ea625d15819d193\", \"live\": true, \"id\": \"x59366cb08bb3f309\"}", "{\"sha\": \"f04678b60a7cd2ed1d993f6be699371b3c2e2ab5\", \"live\": true, \"id\": \"x12aa8bbf03ed02d3\"}", "{\"sha\": \"379d0312650e5f77bbb2cbdd4907fc9ae908d04b\", \"live\": true, \"id\": \"xfe03aa8fef8ebbb5\"}"], "description": "", "basepoints": 10.0, "slug": "transformation-puzzles-1-5", "kind": "Exercise", "name": "transformation-puzzles-1-5", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "transformation-puzzles-1-5"}, "creating-histograms": {"uses_assessment_items": true, "id": "creating-histograms", "display_name": "Creating histograms", "title": "Creating histograms", "all_assessment_items": ["{\"sha\": \"57069100a98745a74dfb6de436f65864a5244588\", \"live\": true, \"id\": \"x1a8cfa4b0621544f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"31279500d82c7af963c06f42921f12ab5ab2e39b\", \"live\": true, \"id\": \"x627968a38574864b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2642bc6f4c660a45924a91a1ff49a81c82437fd7\", \"live\": true, \"id\": \"x0c56be56347f785d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"918c2b4931b0771f63afe4d3d2a39cfea12375b3\", \"live\": true, \"id\": \"x15eb63eb76deaacd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"682d42380cb8df09e20e9790598328a3ac2d4520\", \"live\": true, \"id\": \"x257e4643be322e69\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dcd4dfc8fdc96b4085625046a45b1ebf0b200c9d\", \"live\": true, \"id\": \"x60164cc8b85d6b79\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c502ea50978c5008960629f5390a2d6fc8ea5bf1\", \"live\": true, \"id\": \"xe50e15f87735738d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2357446ac367f8454feb282b0b8879e06fcebaaf\", \"live\": true, \"id\": \"xf001c8849ed0b843\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9f5373e711139b165620c94ded8704c7cf2e8407\", \"live\": true, \"id\": \"x84be252657a64280\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"71877d9b7e87f6aaf90803bbad3dfa5c23cb1301\", \"live\": true, \"id\": \"x3c94643c20b9353f\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9a11ca34d30969f92d2ae4d7d8dcfcae6e6431ac\", \"live\": true, \"id\": \"x1819b6374eb18c83\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b464705084c145a19893ff36338632f2f2a948e6\", \"live\": true, \"id\": \"xb6f930bfdc23f3a9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16f5db89c4a882ce407b4f9ac0a9966517430626\", \"live\": true, \"id\": \"xcab89b1b0d92d84d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4515a430c64c2e2a113fa6c58daed393fe00689d\", \"live\": true, \"id\": \"x405815a36da41687\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"24c6654fd8892db1b2c0de2516e817a002b452c2\", \"live\": true, \"id\": \"x952663e279b9d074\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b0dad65cdb7de9840f1a65f7dd17b16f89dca2ca\", \"live\": true, \"id\": \"x52c68601d95bbb4e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1189e95ffea6ebd13997d2cdd0021e1e309b8745\", \"live\": true, \"id\": \"xf94519ea4105471c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ba8a75cff802dfbab07813872997599d6f103cdc\", \"live\": true, \"id\": \"x4fb58988c7772d2f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c233d16adeb20b149ba00d2f3aeb4f75abf46d4c\", \"live\": true, \"id\": \"x932188f15f1efde7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7c56a911c1aba41e139e7da845a0ae9a2cdc9ae\", \"live\": true, \"id\": \"x39ec8da9db3af5b4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"05c2d9b28b271ec9d11294c7ee1fde3b1749ce83\", \"live\": true, \"id\": \"x6a650fdccd3f32c5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice creating historgrams.", "basepoints": 10.0, "path": "creating-histograms/", "slug": "creating-histograms", "kind": "Exercise", "name": "creating-histograms", "seconds_per_fast_problem": 4.0, "prerequisites": ["creating-dot-plots"], "exercise_id": "creating-histograms"}, "the-gates-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/global-contemporary/the-gates-quiz/", "id": "the-gates-quiz", "display_name": "Christo and Jeanne-Claude, The Gates (quiz)", "title": "Christo and Jeanne-Claude, The Gates (quiz)", "all_assessment_items": ["{\"sha\": \"0df1d6696abef8a6948b0f2f2bb59cbe42f390ba\", \"live\": true, \"id\": \"x36e96385307e4527\"}", "{\"sha\": \"c5b811ae0a54a54b07f87d2fc8c751c483ca83d2\", \"live\": true, \"id\": \"x0b51a0a67eef0a2f\"}", "{\"sha\": \"d5ac00df4e1b299ef28e903b9f1f5e076b3ee842\", \"live\": true, \"id\": \"x096390b13a4c9349\"}", "{\"sha\": \"cdbe528b8fb00517b308ab4209f5a9aadf7b9f5b\", \"live\": true, \"id\": \"xec351b42ec77d9ef\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "the-gates-quiz", "kind": "Exercise", "name": "the-gates-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-gates-quiz"}, "reproductive-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/mcat-reproductive-system/reproductive-system-questions/", "id": "reproductive-system-questions", "display_name": "Reproductive system questions", "title": "Reproductive system questions", "all_assessment_items": ["{\"sha\": \"ae05619c995f246e07750d8c6a6b20b783d908e4\", \"live\": true, \"id\": \"xa84178e6ac5710d5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"caa3a57f62633f25400c7819e95d6ad49bc02612\", \"live\": true, \"id\": \"x6e860327bc4f04c6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a1cfc3e57835a618d18e3b4257c0389158753f03\", \"live\": true, \"id\": \"x028896be85642f3c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aaf7cb80cc58838ccb5d027e5579e057a3fc8b25\", \"live\": true, \"id\": \"x5c169b43f2db2671\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e8b67c83ce5ad876b8f94d0f548b8c7eda1cc14\", \"live\": true, \"id\": \"xcb275b97576b5a64\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"eeaf59b2b4433af23ca54525841fdd34aad19e6e\", \"live\": true, \"id\": \"x7e6553d52a2389aa\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9f7a76e9f435b763c10d1e4adc109196ccbbbbca\", \"live\": true, \"id\": \"xda2e054fe0191155\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c0426e4cd7f799d1b6373b08007c50c995c61821\", \"live\": true, \"id\": \"xc56d7e1493e4e5c8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ec8edc5bdc64b5157b07147d32d074d26964084a\", \"live\": true, \"id\": \"x9fbdefdc5e01fe52\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bca910e2798da965350e49954094192fb9c017a4\", \"live\": true, \"id\": \"x0bca1581ff78cb8d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Reproductive system questions", "basepoints": 10.0, "slug": "reproductive-system-questions", "kind": "Exercise", "name": "reproductive-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "reproductive-system-questions"}, "modulo-operator": {"uses_assessment_items": true, "path": "khan/computing/computer-science/cryptography/modarithmetic/modulo-operator/", "id": "modulo-operator", "display_name": "Modulo operator", "title": "Modulo operator", "all_assessment_items": ["{\"sha\": \"32dbbba459c01b902fbf3c819b5f066a77f40643\", \"live\": true, \"id\": \"x77c83e10\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8706d01078f8b2cfbb20eafb175028e8eec42d88\", \"live\": true, \"id\": \"xa86e91c0\", \"perseus_api_major_version\": 0}", "{\"sha\": \"42e577b4b4fb602faac0f496ed78fe263444cd5a\", \"live\": true, \"id\": \"x50257a1a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"9f2e9f9e07e0c53b628874cda8ef1da3f7418910\", \"live\": true, \"id\": \"x9c8cfe1d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"6f635a06746c997ce1705e62781bd0fe9d33bb28\", \"live\": true, \"id\": \"x4c82e96a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5f9cf258f36a9cbb89718c01caadd255691ca422\", \"live\": true, \"id\": \"x96b3dcd0\", \"perseus_api_major_version\": 0}", "{\"sha\": \"073f2ca46dd4f01afd9925c4c1a4e1afeaf30a70\", \"live\": true, \"id\": \"xc82d5d3b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d40750967fe84d31dd1a9a5948cca11405ce0881\", \"live\": true, \"id\": \"xcbe395a2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"db3d3a7c920cffedbf0b57a4d5731680bbe05458\", \"live\": true, \"id\": \"x46d39824\", \"perseus_api_major_version\": 0}", "{\"sha\": \"eb8decac2f8f8f2a0c2b0678ed5f1cc44db9bfbf\", \"live\": true, \"id\": \"xdf996fa8\", \"perseus_api_major_version\": 0}", "{\"sha\": \"efd50cd492af8e506e35ea17d80b2621b4be25ec\", \"live\": true, \"id\": \"x35692395\", \"perseus_api_major_version\": 0}", "{\"sha\": \"070951b7ac79fc903e82e75fc2cfcdc7551ec99e\", \"live\": true, \"id\": \"x38ee824f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"be82b2e332ba6f9f7a9ce33e58d9e2f6ffee433d\", \"live\": true, \"id\": \"xae10187a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"f19f59ae9c4a9e202505de30b7b6b30556ba1360\", \"live\": true, \"id\": \"x4008964c\", \"perseus_api_major_version\": 0}", "{\"sha\": \"adff5c233819bbfb0e88f679ec6d56da7358315c\", \"live\": true, \"id\": \"x61c88dd5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5319c514aa5734257f35bb93c4671434fa43b858\", \"live\": true, \"id\": \"xd1e8dc3f\", \"perseus_api_major_version\": 0}", "{\"sha\": \"3886b54ccf259912fcbde17d6775efa2f13b22fb\", \"live\": true, \"id\": \"x8b5e7665\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d8aa5b5564b903616d3b09067314c69739e891fb\", \"live\": true, \"id\": \"x26fdd9ec\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b9928334c5ce9871b8972586d6e16b19fe91a90e\", \"live\": true, \"id\": \"x077fe6f9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c8596a63ddbdb351a2591bf6525182f39ce3fd13\", \"live\": true, \"id\": \"xcf5a8cfd\", \"perseus_api_major_version\": 0}"], "description": "Practice using the modulo operator", "basepoints": 10.0, "slug": "modulo-operator", "kind": "Exercise", "name": "modulo-operator", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "modulo-operator"}, "equivalent-forms-of-expressions-with-complex-numbers": {"uses_assessment_items": true, "path": "khan/math/precalculus/imaginary_complex_precalc/factoring-with-complex-numbers/equivalent-forms-of-expressions-with-complex-numbers/", "id": "equivalent-forms-of-expressions-with-complex-numbers", "display_name": "Equivalent forms of expressions with complex numbers", "title": "Equivalent forms of expressions with complex numbers", "all_assessment_items": ["{\"sha\": \"f45e4d2e84046598460bdb6c1d0e43f98656b3f3\", \"live\": true, \"id\": \"x2a13317e628c2efe\", \"perseus_api_major_version\": null}", "{\"sha\": \"75de2af3ec7b8493b50c38f60dfeb48daed019eb\", \"live\": true, \"id\": \"xf7f813a50e858adf\", \"perseus_api_major_version\": null}", "{\"sha\": \"654cb785b2c0adbc2d468f56a6394a205b61d7dc\", \"live\": true, \"id\": \"x2ff749af75bf905b\", \"perseus_api_major_version\": null}", "{\"sha\": \"a4910686e8676596c2c254a713b829142ab5ddba\", \"live\": true, \"id\": \"x154cc14d4e372605\", \"perseus_api_major_version\": null}", "{\"sha\": \"c45a20d22114587aabb78c8b3974ccad0dbdd6d1\", \"live\": true, \"id\": \"x0e743ba3725c732e\", \"perseus_api_major_version\": null}", "{\"sha\": \"93942bfb71ad8568cae8d0747caafd42a7b5d861\", \"live\": true, \"id\": \"xa9121b693892a4a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"61d3af12918db52ac03d2b50da557f1f8791121b\", \"live\": true, \"id\": \"xe35b29604192c5be\", \"perseus_api_major_version\": null}", "{\"sha\": \"c22a88949c1e1dd0aee9c1356fcaa40417e712fb\", \"live\": true, \"id\": \"x755b168cb66f79e3\", \"perseus_api_major_version\": null}", "{\"sha\": \"cd70f11b121d4daa97c7affade815f6e77d60d4f\", \"live\": true, \"id\": \"xcd55973a16c90f8b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"97982efc2b1e4a2bc561404418e714e78a7e7dad\", \"live\": true, \"id\": \"x7812c4dd2afa17ed\", \"perseus_api_major_version\": null}", "{\"sha\": \"93dd852ab94c64605adaca2f8a9e89e11085172e\", \"live\": true, \"id\": \"x0e651362608ab088\", \"perseus_api_major_version\": null}", "{\"sha\": \"e6e4b19e8c1aa4e722ac2447529333f3ae694f4e\", \"live\": true, \"id\": \"xe5ddf1b41f74424c\", \"perseus_api_major_version\": null}", "{\"sha\": \"883060c60c8a6a5fb80d0b3222c316a327595323\", \"live\": true, \"id\": \"xace13bed29a02798\", \"perseus_api_major_version\": null}", "{\"sha\": \"393d1c32ced505cab514e229c70ba4df05258ed0\", \"live\": true, \"id\": \"x717d1e83eb403b81\", \"perseus_api_major_version\": null}", "{\"sha\": \"dc1db4231d6e66663ade4f584996a4a1ba5524b4\", \"live\": true, \"id\": \"xe9bc03dc7bf985be\", \"perseus_api_major_version\": null}", "{\"sha\": \"013f1cd8873039c83732ca65a327b120db7c1818\", \"live\": true, \"id\": \"xe55be882694eae52\", \"perseus_api_major_version\": null}", "{\"sha\": \"b16f745e0848cfc88a4b347df373e2097defddb4\", \"live\": true, \"id\": \"xb3aeafb3498ae7eb\", \"perseus_api_major_version\": null}", "{\"sha\": \"7f12246d72ab963f9176dd6cf966da222ce5e483\", \"live\": true, \"id\": \"xb30283487d2830d2\", \"perseus_api_major_version\": null}", "{\"sha\": \"f3c40b2a721242ee59851b5cebec874e1d2fd6d1\", \"live\": true, \"id\": \"x7641126e06451826\", \"perseus_api_major_version\": null}", "{\"sha\": \"b2e06d2aab50d5a6f128a6541bb2f52bdabf6334\", \"live\": true, \"id\": \"xc31b753220a57ecb\", \"perseus_api_major_version\": null}", "{\"sha\": \"07dd2d0b90ba3b02a04e1eccbaee256e8c828705\", \"live\": true, \"id\": \"x94de9194e79bed1d\", \"perseus_api_major_version\": null}", "{\"sha\": \"b74b29b1186111cd971c1366f5abc5ecb93a00ff\", \"live\": true, \"id\": \"x56e163e52851573f\", \"perseus_api_major_version\": null}", "{\"sha\": \"164032826cb36685db099c7350dd2c1596bdb73d\", \"live\": true, \"id\": \"x435effe0af87cfa7\", \"perseus_api_major_version\": null}", "{\"sha\": \"558968d664116fe04bf5c5daa21706d29b262af3\", \"live\": true, \"id\": \"xda0096a48bf7280c\", \"perseus_api_major_version\": null}", "{\"sha\": \"7ca8bbcc5ad7a3336c3193eaad0be0eeb2227baa\", \"live\": true, \"id\": \"xe92a389b816c92e7\", \"perseus_api_major_version\": null}", "{\"sha\": \"2fd4c094da8e4f64f802c67176e7b566d3cb5090\", \"live\": true, \"id\": \"x1ea748a2e76107dc\", \"perseus_api_major_version\": null}", "{\"sha\": \"90a8f453ea3afb6c55911ad0a1c418266652c162\", \"live\": true, \"id\": \"x80073bda48bda641\", \"perseus_api_major_version\": null}", "{\"sha\": \"3201eded2ec7f97433ee749895519625c7a2dc24\", \"live\": true, \"id\": \"x218ae34c8de5403a\", \"perseus_api_major_version\": null}", "{\"sha\": \"aff1c6ec4e8a58bdea9339bc7e9eb30e9b700209\", \"live\": true, \"id\": \"x730e15552263205d\", \"perseus_api_major_version\": null}", "{\"sha\": \"244e30dfa5309686a73a8e2e181d70dc13fa4659\", \"live\": true, \"id\": \"xcec0b47532f9ecc5\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "equivalent-forms-of-expressions-with-complex-numbers", "kind": "Exercise", "name": "equivalent-forms-of-expressions-with-complex-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["dividing_complex_numbers"], "exercise_id": "equivalent-forms-of-expressions-with-complex-numbers"}, "tickle-me-nim--do-primates-speak-language-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/tickle-me-nim-do-primates-speak-language-/", "id": "tickle-me-nim--do-primates-speak-language-", "display_name": "Tickle me Nim. Do primates speak language?", "title": "Tickle me Nim. Do primates speak language?", "all_assessment_items": ["{\"sha\": \"b52099b75244e7f7823ddc198986de1e4b9dd2f5\", \"live\": true, \"id\": \"x388920f4f00a135e\"}", "{\"sha\": \"ae2640c1a84a45063a2ca5d19fc26e1b4df61e98\", \"live\": true, \"id\": \"x866a3bfadb15fa4c\"}", "{\"sha\": \"f642a5c8abfc7efaf12007440ad7eb4bb0cf2114\", \"live\": true, \"id\": \"x042d739081fd2f14\"}", "{\"sha\": \"5a783e2dcf4ceb48484e2ff921c879e5e1a6cac8\", \"live\": true, \"id\": \"x4ccd490e6eb9c2fc\"}", "{\"sha\": \"7941cde7e928a1f7998d3a6c0761cd7285794e98\", \"live\": true, \"id\": \"x8c289663f62c7e35\"}"], "description": "Tickle me Nim. Do primates speak language?", "basepoints": 10.0, "slug": "tickle-me-nim-do-primates-speak-language-", "kind": "Exercise", "name": "tickle-me-nim--do-primates-speak-language-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "tickle-me-nim--do-primates-speak-language-"}, "algebraically-finding-inverses": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/function_inverses_2/algebraically-finding-inverses/", "id": "algebraically-finding-inverses", "display_name": "Algebraically finding inverses", "title": "Algebraically finding inverses", "all_assessment_items": ["{\"sha\": \"bd86490d07f926145c6b920e5e1242e291f6825b\", \"live\": true, \"id\": \"x2611ef550d256408\"}", "{\"sha\": \"ad0cf9470229e301ac00d6da5fc917c2040251c3\", \"live\": true, \"id\": \"x8aacc60e0e15a29b\"}", "{\"sha\": \"669de5c270db1c75a2049b84ddb72d7e351c7d6e\", \"live\": true, \"id\": \"xca464b5335dfe746\"}", "{\"sha\": \"298b6dda48b4a47d95dd56fa82dcee316a57fba9\", \"live\": true, \"id\": \"x69a62346515d5a7e\"}", "{\"sha\": \"6b240f83ee1f6a99d7ad48b9b97986c357b1441a\", \"live\": true, \"id\": \"x30438c09478e42f2\"}", "{\"sha\": \"067af9c93ab31cf52abf5217157c59a92ca824bc\", \"live\": true, \"id\": \"x40b3f8ea0076b17f\"}", "{\"sha\": \"16a81dd86c48c8d1d5ba5883ef3e66b3cab11e36\", \"live\": true, \"id\": \"xae2a2bcfe689e3c2\"}", "{\"sha\": \"5cdf34efbf48355688fe87835d41cb80ddc33125\", \"live\": true, \"id\": \"x734cb8fa25f35863\"}", "{\"sha\": \"94f81d7fd019b7fcd943d5bcda54c102e15574fc\", \"live\": true, \"id\": \"xcc593daf3f1ddf3d\"}", "{\"sha\": \"1f12158adedb994b917a691532402eff864d1048\", \"live\": true, \"id\": \"x3ed2bfb0abf5f8ac\"}", "{\"sha\": \"3eb985af8ff8ab80033477e5e75a920f87b66d62\", \"live\": true, \"id\": \"x42868c3c83ee4886\"}", "{\"sha\": \"324863f190a9af751d94a15e7d90a84973e1592a\", \"live\": true, \"id\": \"xb10e6f965115c13b\"}", "{\"sha\": \"a73dfcbd931a41608b70468ff31033ce1ac2ad14\", \"live\": true, \"id\": \"xc4bcb390b1b82f6b\"}", "{\"sha\": \"54a44c27d432328111daf98d1527ba31457faf0e\", \"live\": true, \"id\": \"xaac5d9e59db3dea3\"}", "{\"sha\": \"f80e92a48e0d31c0578073a79ccb2d6e17c87dce\", \"live\": true, \"id\": \"xb71007284c7d2875\"}", "{\"sha\": \"2d9cbb766b423b216fce2a2c718f673ef1aff330\", \"live\": true, \"id\": \"xed9d63cdd4cf7af3\"}", "{\"sha\": \"af9d058866bd5c10cc0720fd4288b8a1d1ff004c\", \"live\": true, \"id\": \"x7f6c42955d6a3478\"}", "{\"sha\": \"fced294920b07b17498301a9dabe733e0e1708ea\", \"live\": true, \"id\": \"x10f7a4d40f8c5b5c\"}", "{\"sha\": \"17c00eba375c722386986db6e820ed961912f22c\", \"live\": true, \"id\": \"x0ad6048feb664ad5\"}", "{\"sha\": \"393545806a24363b124a51e63cea3faac5aa30e9\", \"live\": true, \"id\": \"x8b0942ba0d683266\"}", "{\"sha\": \"75943dae19c5e64d115795fa0e6a8351a272dd10\", \"live\": true, \"id\": \"x6ec1980fa8c15297\"}", "{\"sha\": \"aad414c2e61a17bea63c09ce1b620f3bd2ad7b02\", \"live\": true, \"id\": \"x22d662375ddbd3f7\"}", "{\"sha\": \"1c208296fdba03ff7296b950f2465e79095b1ea3\", \"live\": true, \"id\": \"xd01d939944aa8e11\"}", "{\"sha\": \"3ff1508627a951a333a146a23b865573ff26efa4\", \"live\": true, \"id\": \"x31983e82c5e73f97\"}", "{\"sha\": \"89c6b52b1530796b1a2cf630c99c1b3d655c5bc1\", \"live\": true, \"id\": \"xeaee4be77ac0cf1c\"}", "{\"sha\": \"e78f56ecbb68ce099ed428e43543fef8f82297ee\", \"live\": true, \"id\": \"x775cea4833101cfb\"}", "{\"sha\": \"4f4a10f622c478feba8bf9093edc80830257003a\", \"live\": true, \"id\": \"x6415e8d39e6dfb56\"}", "{\"sha\": \"8ce447ac253d64efba310c05f0185de61f30d0ac\", \"live\": true, \"id\": \"x2379434dc79a993b\"}", "{\"sha\": \"8cdf5fe3ebf64ed76d04fc3a746a686fcd4b94e0\", \"live\": true, \"id\": \"xdfad75c11f4c802f\"}", "{\"sha\": \"e7a661b13788786729b704d51b52bf754bee5f21\", \"live\": true, \"id\": \"x86c3df96bdf34aed\"}"], "description": "Use algebra to find the inverse of a given function", "basepoints": 10.0, "slug": "algebraically-finding-inverses", "kind": "Exercise", "name": "algebraically-finding-inverses", "seconds_per_fast_problem": 4.0, "prerequisites": ["inverses_of_functions"], "exercise_id": "algebraically-finding-inverses"}, "midpoint_of_a_segment": {"uses_assessment_items": false, "id": "midpoint_of_a_segment", "display_name": "Equation practice with midpoints", "title": "Equation practice with midpoints", "description": "", "basepoints": 26.0, "path": "midpoint_of_a_segment/", "slug": "midpoint_of_a_segment", "kind": "Exercise", "name": "midpoint_of_a_segment", "seconds_per_fast_problem": 38.0, "prerequisites": ["segment_addition"], "exercise_id": "midpoint_of_a_segment"}, "titian-s-venus-of-urbino-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/titian-s-venus-of-urbino-quiz/", "id": "titian-s-venus-of-urbino-quiz", "display_name": "Titian's Venus of Urbino Quiz", "title": "Titian's Venus of Urbino Quiz", "all_assessment_items": ["{\"sha\": \"67669c6d459213533f8b99f626ef25af421d6ad7\", \"live\": true, \"id\": \"x7771b977b9920638\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a06e3ced92d38d5052019a79e272e54796053207\", \"live\": true, \"id\": \"x4f640ae2794cc331\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d48c53f647137b1fe99ebc099d55309d4fa761b0\", \"live\": true, \"id\": \"x8b5d8c42643c3c1b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "titian-s-venus-of-urbino-quiz", "kind": "Exercise", "name": "titian-s-venus-of-urbino-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "titian-s-venus-of-urbino-quiz"}, "congruent_segments": {"uses_assessment_items": false, "path": "khan/math/basic-geo/basic-geo-lines/basic-geo-measuring-segments/congruent_segments/", "id": "congruent_segments", "display_name": "Congruent segments", "title": "Congruent segments", "description": "", "basepoints": 12.0, "slug": "congruent_segments", "kind": "Exercise", "name": "congruent_segments", "seconds_per_fast_problem": 5.0, "prerequisites": ["measuring_segments"], "exercise_id": "congruent_segments"}, "behavior-and-genetics---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/behavior-and-genetics-passage-1/", "id": "behavior-and-genetics---passage-1", "display_name": "How similar are the personalities of twins?", "title": "How similar are the personalities of twins?", "all_assessment_items": ["{\"sha\": \"8d4596ec2a30a6e59c1422a7631125d85725e0fa\", \"live\": true, \"id\": \"x3be3ec0ecef99502\"}", "{\"sha\": \"af3a21d46e15d6c6fb1eb41ed43890241232f878\", \"live\": true, \"id\": \"xf8d00abba9c7e56e\"}", "{\"sha\": \"9b265d6b171196b61feb6139ea81ccbfa9269d3e\", \"live\": true, \"id\": \"x1eae46e7b9ff7aaa\"}", "{\"sha\": \"c7ea301b2a958aeb308d227f6cdc9a21ef489f35\", \"live\": true, \"id\": \"xc30f087da1fb3d17\"}", "{\"sha\": \"7cfea1662d7036315968f4b95ae3f9d420e99796\", \"live\": true, \"id\": \"xc99ba9e509adae12\"}"], "description": "", "basepoints": 10.0, "slug": "behavior-and-genetics-passage-1", "kind": "Exercise", "name": "behavior-and-genetics---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "behavior-and-genetics---passage-1"}, "behavior-and-genetics---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/behavior-and-genetics-passage-2/", "id": "behavior-and-genetics---passage-2", "display_name": "Exploring an individual's temperament ", "title": "Exploring an individual's temperament", "all_assessment_items": ["{\"sha\": \"9df53c8fc01585d7ffd0812e41dbc00a2af0899a\", \"live\": true, \"id\": \"x52619a70d92df047\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6fc49baf0de77c9a178455620254ca0005bbadf1\", \"live\": true, \"id\": \"x46c8b166cb41ffd0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d7e39cc73013b59efb08928bf301c38377d1bef\", \"live\": true, \"id\": \"xcf8af95d2d47365f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef81071aaa47d3ba33dffb73e72d1ca59157fdb4\", \"live\": true, \"id\": \"x8880a00f7c768124\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a6d953bf61a2f80b6ec5db82b990b9c111532c06\", \"live\": true, \"id\": \"x16f8eb51d88ea252\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "behavior-and-genetics-passage-2", "kind": "Exercise", "name": "behavior-and-genetics---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "behavior-and-genetics---passage-2"}, "interpreting-the-balance-sheet": {"uses_assessment_items": true, "path": "khan/economics-finance-domain/core-finance/accounting-and-financial-stateme/financial-statements-tutorial/interpreting-the-balance-sheet/", "id": "interpreting-the-balance-sheet", "display_name": "Interpreting the Balance Sheet", "title": "Interpreting the Balance Sheet", "all_assessment_items": ["{\"sha\": \"7ea0e41be8d52526cc96a7c3ac9cfa7f6737db03\", \"live\": true, \"id\": \"xd698fd734e4125ff\"}", "{\"sha\": \"f2384d7ac6f0f68ebe92d1c71da238495b2d849d\", \"live\": true, \"id\": \"x98c49e168ed7848a\"}", "{\"sha\": \"5b8581b49ec9ff26d6a0d130911b380803e969f9\", \"live\": true, \"id\": \"x11884f536a3a54be\"}", "{\"sha\": \"7717475ef00d2d5bd8dd71a4ad9867ca6d13f12d\", \"live\": true, \"id\": \"x3461291c27deeb4f\"}", "{\"sha\": \"1696e8245952c5514129eefe0e8aa3cc83748b16\", \"live\": true, \"id\": \"xfb317baaa4a45a6b\"}", "{\"sha\": \"db5b8d15a4b6e6b3672b4acffffa30e4035b50b5\", \"live\": true, \"id\": \"x0825a296be2085a8\"}", "{\"sha\": \"3f36d014ce1254e08745d7137ea367c45f59ca61\", \"live\": true, \"id\": \"x49cb6e3b3f5c69c1\"}", "{\"sha\": \"40628fe6ba3418b76f68a36b336d71e8eb6e46fa\", \"live\": true, \"id\": \"x697bbddb68f1dbe6\"}", "{\"sha\": \"998e308b7d5e6a8662a52a8bdceeae130eff0837\", \"live\": true, \"id\": \"x0a075dcbf9f9bbb1\"}", "{\"sha\": \"cc0abae9695bb7636665694ba639758475b3a9e5\", \"live\": true, \"id\": \"xe70ef35344736bd0\"}", "{\"sha\": \"b2dc650c8fed99dd1f0e125947593a8d9bb56e89\", \"live\": true, \"id\": \"xef0ce76cb0171b98\"}", "{\"sha\": \"e8965dd2002aa9d24531275daba9c63a83edf123\", \"live\": true, \"id\": \"x60526e34c7f7a19a\"}", "{\"sha\": \"3e0d95017a802c59d70f7fb71f50d39ea51842b2\", \"live\": true, \"id\": \"xd96f1dad90910e2a\"}", "{\"sha\": \"839b6e53fd8ae05ce10468ee4d041a3e136c955e\", \"live\": true, \"id\": \"xe94bfb7658744a54\"}", "{\"sha\": \"10fe62c3bdccd1c876f5a74fcb3a21a198f724cc\", \"live\": true, \"id\": \"x2aedbc19a8e2318d\"}", "{\"sha\": \"8db71a8864cc47e7dde3f20b8e6c639efab64190\", \"live\": true, \"id\": \"x6c64c85bdb87b8b0\"}", "{\"sha\": \"2fbfded2210c36dd40021749987c9ca3548ea66a\", \"live\": true, \"id\": \"x562f7126778df381\"}", "{\"sha\": \"3dd0d947678a91deefb9a1292dba508bb2dcb4b0\", \"live\": true, \"id\": \"x5f5c261cf94f4b3f\"}", "{\"sha\": \"9a21fcdac397203628fd966c76c4c7ea00b0b038\", \"live\": true, \"id\": \"xf6088d4b15e40c5b\"}", "{\"sha\": \"e8540c7de1c29f4be775c9e462de5c8c23fc8768\", \"live\": true, \"id\": \"x0980cdb6e02d0eff\"}", "{\"sha\": \"9fc4e817fcf10b3c3191266dacc0c1d9e30eceff\", \"live\": true, \"id\": \"xd6271dbb4a77624f\"}", "{\"sha\": \"ec1b23b1c86c38b85b7a167745acbd1af9307e67\", \"live\": true, \"id\": \"xe00f1d9e338f4a70\"}", "{\"sha\": \"0fde3cfd816ec9f26e6343c90082165449488659\", \"live\": true, \"id\": \"xe5d1efe25f3bed04\"}", "{\"sha\": \"3690818d2ec493ad8452a19d04a5cf1063b4eb93\", \"live\": true, \"id\": \"x087bc7557601b3f4\"}", "{\"sha\": \"fd03d25e66cb348865330bc72cb9fdbc859afe6a\", \"live\": true, \"id\": \"x1e2aa43275fcf60e\"}", "{\"sha\": \"938e9e74424d4d47f77b8e5aeb77e0d6c448c8ba\", \"live\": true, \"id\": \"xb8408ba75dbf520f\"}", "{\"sha\": \"8dd499cadb13860420ba856a14004741eb052a83\", \"live\": true, \"id\": \"x1cec7b533d0efce2\"}", "{\"sha\": \"41a26ae6dd9d582047ae837d8b1a95311d677002\", \"live\": true, \"id\": \"xdf65a7404f85d65b\"}", "{\"sha\": \"e062f6356679efaa47c76744f1c83ef43997f3b9\", \"live\": true, \"id\": \"xb9fcb737fbffe46e\"}", "{\"sha\": \"cb29717c45d7d28d1ca2f6a807cf49f19651cfac\", \"live\": true, \"id\": \"xeed270695673b0d1\"}"], "description": "Learn the differences between Assets and Liabilities, and how to calculate Total Equity. Understand Balance Sheet items like Cash, Accounts Receivable, and Deferred Revenue.", "basepoints": 10.0, "slug": "interpreting-the-balance-sheet", "kind": "Exercise", "name": "interpreting-the-balance-sheet", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "interpreting-the-balance-sheet"}, "comparing_fractions_1": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/comparing-fractions-pre-alg/comparing_fractions_1/", "id": "comparing_fractions_1", "display_name": "Comparing fractions with the same numerator or denominator", "title": "Comparing fractions with the same numerator or denominator", "description": "Compare two fractions that have either the same numerator or denominator. \u00a0", "basepoints": 13.0, "slug": "comparing_fractions_1", "kind": "Exercise", "name": "comparing_fractions_1", "seconds_per_fast_problem": 6.0, "prerequisites": ["comparing_fractions_with_the_same_denominator", "comparing_fractions_with_the_same_numerator"], "exercise_id": "comparing_fractions_1"}, "nclex-rn-questions-on-stroke-1-1": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/nclex-rn-questions-on-stroke-1-1/", "id": "nclex-rn-questions-on-stroke-1-1", "display_name": "NCLEX-RN questions on stroke 1", "title": "NCLEX-RN questions on stroke 1", "all_assessment_items": ["{\"sha\": \"e5af5fd7f96cc49c6625eb60575e0302feb45af6\", \"live\": true, \"id\": \"x099d5f7c693ee2b7\"}", "{\"sha\": \"b115374dae0a088c9f4d67b8f542fb637d21ce21\", \"live\": true, \"id\": \"xaba2a5e460468d0c\"}", "{\"sha\": \"61295aacfe0cdedf4ac87ef4babb8ad2c4d3e8ca\", \"live\": true, \"id\": \"xfd44bd06512ced95\"}", "{\"sha\": \"22262b39ad5a895bda4eb9b263d6306c92bc0df1\", \"live\": true, \"id\": \"x2ea31ba25810079f\"}", "{\"sha\": \"f663d6924cecad6918acb10723a6ba4201f2ad28\", \"live\": true, \"id\": \"x2533427363eb3ded\"}", "{\"sha\": \"8f48e4b3f447827e3d4132211ca444aa054d5e37\", \"live\": true, \"id\": \"xe8aafa602cb1bdd2\"}", "{\"sha\": \"7a3732d880c92b53c06da8d6b1c72a70cead9ce9\", \"live\": true, \"id\": \"x529ca69a86346b96\"}", "{\"sha\": \"a373af453106f67d5db53ca0809df3555d92ff71\", \"live\": true, \"id\": \"x149a2a0985388a40\"}", "{\"sha\": \"41dd455449bae8468532b4fce6c2c634c9d17afc\", \"live\": true, \"id\": \"xde8905424c8da05e\"}", "{\"sha\": \"f5965806d0501806a8d37b90905e94365be3f6b0\", \"live\": true, \"id\": \"x9b350dca26a55ab9\"}"], "description": "Questions related to stroke", "basepoints": 10.0, "slug": "nclex-rn-questions-on-stroke-1-1", "kind": "Exercise", "name": "nclex-rn-questions-on-stroke-1-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nclex-rn-questions-on-stroke-1-1"}, "how-do-geckoes-stick-to-surfaces-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/how-do-geckoes-stick-to-surfaces-/", "id": "how-do-geckoes-stick-to-surfaces-", "display_name": "How do geckoes stick to surfaces?", "title": "How do geckoes stick to surfaces?", "all_assessment_items": ["{\"sha\": \"31447243241643d75ecceb053e5bb66528b4caf9\", \"live\": true, \"id\": \"xf715909c8ff80959\"}", "{\"sha\": \"82ef1de3755a83e8dab02c73cdcc1bed103a68e1\", \"live\": true, \"id\": \"xe1661e509d32163c\"}", "{\"sha\": \"b324ae2723c863394bbf11df3178f3ee632eed79\", \"live\": true, \"id\": \"x54295863581ef059\"}", "{\"sha\": \"bd15589571ffc138003fd2ee4552e5a3d6399bd4\", \"live\": true, \"id\": \"xdacce50496efbab4\"}", "{\"sha\": \"780507a118f2d6ca0d78b82358b9e42c0e0270c2\", \"live\": true, \"id\": \"x9f3f07d2bd468cc2\"}"], "description": "Questions related to forces", "basepoints": 10.0, "slug": "how-do-geckoes-stick-to-surfaces-", "kind": "Exercise", "name": "how-do-geckoes-stick-to-surfaces-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "how-do-geckoes-stick-to-surfaces-"}, "gene-expression-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/gene-control/gene-expression-questions/", "id": "gene-expression-questions", "display_name": "Gene control questions", "title": "Gene control questions", "all_assessment_items": ["{\"sha\": \"660d4d64830fdb6bd5e19d451994b6979492f674\", \"live\": true, \"id\": \"xdb5762442dbcbcc8\", \"perseus_api_major_version\": null}", "{\"sha\": \"d6da5ce17bbbff7f5dc88712ea43cdb247a2858f\", \"live\": true, \"id\": \"xc228842ab36cb400\", \"perseus_api_major_version\": null}", "{\"sha\": \"ceaa1ce590082e5f0548fe9d44c246fb3aa06622\", \"live\": true, \"id\": \"x345d55a668b6907a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"86e5006ec0a1a84f89e3e44e73389588225aca19\", \"live\": true, \"id\": \"x660bc88ac3a62385\", \"perseus_api_major_version\": null}", "{\"sha\": \"cd0a1e15b6f7ae9e41c72c8f0c17581211fcd1b2\", \"live\": true, \"id\": \"xf67efec21762a52d\", \"perseus_api_major_version\": null}", "{\"sha\": \"2feb881cc737873faeed1acbce71b1ceadb9b698\", \"live\": true, \"id\": \"x909b0b5fa1036728\", \"perseus_api_major_version\": null}", "{\"sha\": \"9b7dc6e048087e835336525a03286059d4d3c6f8\", \"live\": true, \"id\": \"x08fe639e49a9aeec\", \"perseus_api_major_version\": null}", "{\"sha\": \"a529ae3ad0009ff11000fc0d7531abc872423b08\", \"live\": true, \"id\": \"x689f6830c01b8d81\", \"perseus_api_major_version\": null}", "{\"sha\": \"ece9287f4216a5f1989499f3b240ee318dcedd8f\", \"live\": true, \"id\": \"xeba19141a48a8ec8\", \"perseus_api_major_version\": null}", "{\"sha\": \"164df094c0eb2ce9a4978401b06dd6a451c03dad\", \"live\": true, \"id\": \"x33fb22ae969195f8\", \"perseus_api_major_version\": null}"], "description": "Gene Expression questions", "basepoints": 10.0, "slug": "gene-expression-questions", "kind": "Exercise", "name": "gene-expression-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gene-expression-questions"}, "identifying_points_1": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-coordinate-plane/identifying_points_1/", "id": "identifying_points_1", "display_name": "Points on the coordinate plane", "title": "Points on the coordinate plane", "all_assessment_items": ["{\"sha\": \"7ae8650acc8c95ab706c3a5f8adc9e41c48ad655\", \"live\": true, \"id\": \"x7c1d5424df43fca2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c8ee4d21ebe2e01508524da29d0ae1010bcbc69c\", \"live\": true, \"id\": \"xa188c4b795c40132\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"341d9abd7cfaf5ec10f652a19ab7943dc3f505ba\", \"live\": true, \"id\": \"x039b973d1c033226\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"85d605a6a330849f43cf8e24f69e333331e9dbab\", \"live\": true, \"id\": \"x7f214585e099b503\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"108c14d773a6f6bca76e5863a4b31117b88a644c\", \"live\": true, \"id\": \"x94365f60ef5b46c4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c8feebea84e735d85cc0647ae2c40ef042bec452\", \"live\": true, \"id\": \"x5b4fc3908b0ecef8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"78c71f2bf7df1047478656f9182aac4fcaafbbd5\", \"live\": true, \"id\": \"x9b6d3305711c21f7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c96fc26d326fcf068d5792f590f992cc6ffa03f0\", \"live\": true, \"id\": \"x4d3d6ccfead22cf8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"75f0f2e3b547fd4200d390ceb58e4da8ca15daf1\", \"live\": true, \"id\": \"x46ee0c1aa70d6166\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a34654148c1701db827ee1b171c492c6827d4932\", \"live\": true, \"id\": \"xe57071295228227a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dd1e59007da581d05461a3cc7cb737933e4847a9\", \"live\": true, \"id\": \"xd40c8a6f9ee4fb3d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bb500eedc8e8ae67abb8181ad5c360fc7cae8632\", \"live\": true, \"id\": \"x3520a05f4de70ad8\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"52e83c5d920fe23ecb9784706578e14e09074ce9\", \"live\": true, \"id\": \"xf5574673a5f18bff\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"901ed3198525fcfd669e5768c1515dbd8d9be2c6\", \"live\": true, \"id\": \"x03cbbcaa98408f40\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8bd0cc9cf49a5cfd011721487f46454919e69ef6\", \"live\": true, \"id\": \"xa8e876eaf4623947\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5976c65d794345666843ce9a541acfb6948bf834\", \"live\": true, \"id\": \"x3cccf51cb28a8ff7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6481bdf1426de369d6e1c9d6ba70d9086e97048b\", \"live\": true, \"id\": \"x45bd0675961c2c50\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ee543ca1f3dcd8725123e2b6cf1789dcefa7bfaf\", \"live\": true, \"id\": \"x9c77fa95a9993d67\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5ae46322c8f1083d460772df7ab59b3e74eb4373\", \"live\": true, \"id\": \"x8852084b09933e6c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3a340b67631bec80b1e128935e1c54e85bfd5567\", \"live\": true, \"id\": \"x82e009e845f4287a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"51f74189d3a97f4204d5e126f927df8f2a764970\", \"live\": true, \"id\": \"xb3c7046e76ff0a75\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice plotting points using an xy coordinate system. The cooridnates of the points in these problems may be negative.", "basepoints": 21.0, "slug": "identifying_points_1", "kind": "Exercise", "name": "identifying_points_1", "seconds_per_fast_problem": 19.0, "prerequisites": ["number_line_2", "graphing_points"], "exercise_id": "identifying_points_1"}, "adding_negative_numbers": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/negatives-absolute-value-pre-alg/add-subtract-negatives-pre-alg/adding_negative_numbers/", "id": "adding_negative_numbers", "display_name": "Adding negative numbers", "title": "Adding negative numbers", "all_assessment_items": ["{\"sha\": \"5fd90536e30ce7db09ee81b4fd2ba4cd94152585\", \"live\": true, \"id\": \"xecaa0469ae5cc4ce\"}", "{\"sha\": \"a1521e79e73502cf7bc2642fb45702b894c6103a\", \"live\": true, \"id\": \"x792b9567fbb616e4\"}", "{\"sha\": \"d134deb61f225eea406c4bf9cf5e07932deff5a6\", \"live\": true, \"id\": \"x26c40376265cc1e6\"}", "{\"sha\": \"b1f16c9cb37fe88930a2bcf058b3f46a9fcf039b\", \"live\": true, \"id\": \"x6b212e506dddb7eb\"}", "{\"sha\": \"09997f088849a69db507f4f91842c49555fe3e62\", \"live\": true, \"id\": \"x0ae56611d00a16ec\"}", "{\"sha\": \"f8bbed8195d24c5b534104b94e68dd94becf2b01\", \"live\": true, \"id\": \"xcc9f630982690b71\"}", "{\"sha\": \"0fa78829f75376a1095bc3b3fb15aaf244425f6a\", \"live\": true, \"id\": \"x55372eb473fce26c\"}", "{\"sha\": \"4d3dbe2c46633bb6912f6baf9fb573302e5a301e\", \"live\": true, \"id\": \"xb47b71fa10fce4cf\"}", "{\"sha\": \"5884a6d3adfcfe0696030d148e79699fc3a5c7dd\", \"live\": true, \"id\": \"xcb04d37d869b053a\"}", "{\"sha\": \"c5870f904df5786f105cc1df1922d8ae09bfccd8\", \"live\": true, \"id\": \"x722f9885ab463777\"}", "{\"sha\": \"ff07e2d8c2e4201616f57a694a02714edb30c2bd\", \"live\": true, \"id\": \"x637408f70121d311\"}", "{\"sha\": \"8ccab85bc48acb79d38568a2c0b00529e5f373e3\", \"live\": true, \"id\": \"x72893fe5424c3683\"}", "{\"sha\": \"c0cc314851a9ca337a2795ce7df8b17b6a5fce61\", \"live\": true, \"id\": \"xb0c4abff6a5bd602\"}", "{\"sha\": \"b674e209d91a6af82ec646dace172e97b7a7040d\", \"live\": true, \"id\": \"x1de19de3a9eadd3a\"}", "{\"sha\": \"2662245def4611e2e5b5191897b48c538f807211\", \"live\": true, \"id\": \"x34cb33c4041de346\"}", "{\"sha\": \"55acc20a71766b2c83f62698c3db6c9eee7bcc1b\", \"live\": true, \"id\": \"xca65736209bca049\"}", "{\"sha\": \"0341217e28beb660672cf510007bda8153b76a71\", \"live\": true, \"id\": \"x0e4f0754689d765a\"}", "{\"sha\": \"e08455f425cbb102f7b67048732b251ab7a38133\", \"live\": true, \"id\": \"x48f323f9cc68d554\"}", "{\"sha\": \"400699b4752edbf816df94588473bc436a9ff06c\", \"live\": true, \"id\": \"x1be9998bee078ab6\"}", "{\"sha\": \"c52c77513b1def0d559b6d9d67fa7c1c99acf29c\", \"live\": true, \"id\": \"xc9bab4d7f7a580f8\"}", "{\"sha\": \"aaca8df3ebe851d789ae835b1fbd9b8dbb62138c\", \"live\": true, \"id\": \"x769304fff77b3210\"}", "{\"sha\": \"75b0cb5cf2f188e6b4e5aa42044dfcc022c31393\", \"live\": true, \"id\": \"x538a2f3a710cf9ec\"}", "{\"sha\": \"c843fa2018a2ead3b798bf0f65c3c2f8851d94f9\", \"live\": true, \"id\": \"xc75b79f7a23ae2af\"}", "{\"sha\": \"4026d3a55d5764b50cef958ea56f93082777e853\", \"live\": true, \"id\": \"x45458132c04b8049\"}", "{\"sha\": \"7ea358d7f1ab0dc6568b78ec3825579d11c0af3c\", \"live\": true, \"id\": \"xbdda00f17193ca55\"}"], "description": "Practice adding positive and negative single-digit numbers.", "basepoints": 13.0, "slug": "adding_negative_numbers", "kind": "Exercise", "name": "adding_negative_numbers", "seconds_per_fast_problem": 6.0, "prerequisites": ["fractions_on_the_number_line_3"], "exercise_id": "adding_negative_numbers"}, "order_of_operations_2": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/order-of-operations/order_of_operations/order_of_operations_2/", "id": "order_of_operations_2", "display_name": "Order of operations", "title": "Order of operations", "description": "Practice evaluating expressions using the order of operations.", "basepoints": 10.0, "slug": "order_of_operations_2", "kind": "Exercise", "name": "order_of_operations_2", "seconds_per_fast_problem": 4.0, "prerequisites": ["expressions-with-parentheses"], "exercise_id": "order_of_operations_2"}, "social-conflict-theory-in-an-historical-context": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/social-conflict-theory-in-an-historical-context/", "id": "social-conflict-theory-in-an-historical-context", "display_name": "Social conflict theory in an historical context", "title": "Social conflict theory in an historical context", "all_assessment_items": ["{\"sha\": \"62e6068e87fc700328f80be1b01229698d80cfe4\", \"live\": true, \"id\": \"x95c9a050744f8e12\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9479c3e5e389a1a72c93ddae919f2fd5ad674919\", \"live\": true, \"id\": \"x31b528595f4491de\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1e8a5b3ef5813eb46a8ce53bcda4f577cad98728\", \"live\": true, \"id\": \"xdebc5d2bcffbfd05\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d112ad580c0905f5184b2624a9aaa374af1f471d\", \"live\": true, \"id\": \"x189afe1aafd44e2e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8149f5adb6953ed299ca53049580a062c4652305\", \"live\": true, \"id\": \"xe97cc9b0ac1067ac\", \"perseus_api_major_version\": 0}"], "description": "Questions related to social theories", "basepoints": 10.0, "slug": "social-conflict-theory-in-an-historical-context", "kind": "Exercise", "name": "social-conflict-theory-in-an-historical-context", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "social-conflict-theory-in-an-historical-context"}, "evolution-and-population-dynamics-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/evolution-population-dynmaics/evolution-and-population-dynamics-questions/", "id": "evolution-and-population-dynamics-questions", "display_name": "Evolution and population dynamics questions", "title": "Evolution and population dynamics questions", "all_assessment_items": ["{\"sha\": \"fa3d0c817b3049f23bc48369c8808ada8955e09c\", \"live\": true, \"id\": \"xc579dd19f07aea13\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3873d86f8052f4867359b198bb74c386614835d0\", \"live\": true, \"id\": \"xe03ec174a71f88b9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bf54492513846924caf9a797a4f025e261d91d24\", \"live\": true, \"id\": \"x07735fc6af3119e2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"70fa445e70646f3412f487a78c6e5fd3f8c1ccee\", \"live\": true, \"id\": \"xdb8c1e50c4c6277e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"434161ea4ee859b215d5d25343221f519a4ccf85\", \"live\": true, \"id\": \"xd0deb3efd27c2d01\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd2e1de54eb6c2978970b52deaf77fc89469c26b\", \"live\": true, \"id\": \"xa37c99f077665c1d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"79c935bcefd9741e2fd4d6815a5d828d64df536f\", \"live\": true, \"id\": \"xb9e0e93cc2598e69\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d26b009ee40849a258680be61493b114efec3c9\", \"live\": true, \"id\": \"x259497aca10c7e96\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c6fc0fdfc5411a6b78edd6f11671161965415349\", \"live\": true, \"id\": \"xeac570ca5b606b2c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92e8f172fb5916a0bee61ceab3867d1ca2f65492\", \"live\": true, \"id\": \"xaa61ba3fec31c28f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Evolution and population dynamics questions", "basepoints": 10.0, "slug": "evolution-and-population-dynamics-questions", "kind": "Exercise", "name": "evolution-and-population-dynamics-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "evolution-and-population-dynamics-questions"}, "cancer-and-hexokinase": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/cancer-and-hexokinase/", "id": "cancer-and-hexokinase", "display_name": "Cancer and Hexokinase", "title": "Cancer and Hexokinase", "all_assessment_items": ["{\"sha\": \"af510e94f29467c82e381b96376cb493be7af9fa\", \"live\": true, \"id\": \"xe61a68b8800bcb78\", \"perseus_api_major_version\": null}", "{\"sha\": \"2b0353e8c43373b1515d1444117dd76b3b0befc3\", \"live\": true, \"id\": \"xa0300e31da3ff081\", \"perseus_api_major_version\": null}", "{\"sha\": \"d319b686d6e54a99af2d4ac7f847b7a370d595c4\", \"live\": true, \"id\": \"x916a1111270cebc0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"53df966429b43ddc58ad56244eccccb449fe2f4d\", \"live\": true, \"id\": \"xaf45b21b3936a4a0\", \"perseus_api_major_version\": null}", "{\"sha\": \"b1dde46265281b2279c0006d7994ef459924a85e\", \"live\": true, \"id\": \"x8753fe3446cdb9d9\", \"perseus_api_major_version\": null}"], "description": "Cancer and Hexokinase", "basepoints": 10.0, "slug": "cancer-and-hexokinase", "kind": "Exercise", "name": "cancer-and-hexokinase", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cancer-and-hexokinase"}, "estimating-lengths": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-compare-estimate-length/estimating-lengths/", "id": "estimating-lengths", "display_name": "Estimating lengths", "title": "Estimating lengths", "all_assessment_items": ["{\"sha\": \"2d221ee17ef04d9915349dac4cca967c551dedc7\", \"live\": true, \"id\": \"x9f522198207d9233\"}", "{\"sha\": \"c4ecd4f86d02b12b8364f77facaa0f4e14fcc284\", \"live\": true, \"id\": \"x503aedf7937758eb\"}", "{\"sha\": \"60fc26289ecd8f97c96d1ce2a456d0d902b3d676\", \"live\": true, \"id\": \"x09aa59f35f7739c6\"}", "{\"sha\": \"1f360d422cafdc31d7325a17036ee5642f3c8295\", \"live\": true, \"id\": \"x8b1eb6304fa1f46f\"}", "{\"sha\": \"7313a2af141e888f1afed9a84c69123f2b4dd0fe\", \"live\": true, \"id\": \"x1dbca00af2323dd1\"}", "{\"sha\": \"ee6762fd15a5eb9c3f37ab742215e0ab64f59159\", \"live\": true, \"id\": \"x305e7b26112e0024\"}", "{\"sha\": \"fb83d9dc2dab2a812e92d8f949c91112d159a129\", \"live\": true, \"id\": \"x970a9150e8bf3ed9\"}", "{\"sha\": \"fcf7c95838d6dbe92f311dab919b71c3d4112055\", \"live\": true, \"id\": \"xa69287ca31afa07a\"}", "{\"sha\": \"60398dfa7c2cbdd2d06ac44d2889257c171fef6f\", \"live\": true, \"id\": \"x0067f3a7b61e76ee\"}", "{\"sha\": \"5b22ff1e7568cbf2a1521113c91cc6afdad93128\", \"live\": true, \"id\": \"xe64efd93f723c577\"}", "{\"sha\": \"05eafd46469a394f6be4aa8d194613b585d36fec\", \"live\": true, \"id\": \"x2045f803fa0e4459\"}", "{\"sha\": \"03d564d781c8ac0f986abe7e8827d3626499329c\", \"live\": true, \"id\": \"xdd27e01b167645ee\"}", "{\"sha\": \"c782964a6f26ab394415b11d029fbf8de25e9b59\", \"live\": true, \"id\": \"x1666e380f8674eed\"}", "{\"sha\": \"d63dba0d53f7501942d865618c35a9b2406beea5\", \"live\": true, \"id\": \"x366b378b44757979\"}", "{\"sha\": \"c5c971d2bca4e584734d4d99406f60440145ba75\", \"live\": true, \"id\": \"xba76d5623d128959\"}", "{\"sha\": \"353560c3edd772443a793c88ac95a25252b63034\", \"live\": true, \"id\": \"x25c3025d3c4c896e\"}", "{\"sha\": \"fa2580f14206c60a418d5b1604f5b511b745ccee\", \"live\": true, \"id\": \"x89a6cadc697e9bfb\"}", "{\"sha\": \"971ddb5b84cb090b92abf96294a56ab719356072\", \"live\": true, \"id\": \"x3f5a3ec6d6b1c401\"}", "{\"sha\": \"0c0d28d0ffc408e4da68c1255533e1ed8b1752d5\", \"live\": true, \"id\": \"xc78348a2fd5d747c\"}"], "description": "Estimate lengths using units of inches, feet, centimeters, and meters.", "basepoints": 10.0, "slug": "estimating-lengths", "kind": "Exercise", "name": "estimating-lengths", "seconds_per_fast_problem": 4.0, "prerequisites": ["measuring-lengths-2"], "exercise_id": "estimating-lengths"}, "dividing-by-6": {"uses_assessment_items": true, "id": "dividing-by-6", "display_name": "Dividing by 6", "title": "Dividing by 6", "all_assessment_items": ["{\"sha\": \"5e7bbc4dd8bf56acd26700666b54209ce31964bb\", \"live\": true, \"id\": \"x5a9bb0795f06817a\"}", "{\"sha\": \"6d5495fc24461715cf7ab62f4cf83ecf7286a033\", \"live\": true, \"id\": \"x844f31671bc0a519\"}", "{\"sha\": \"4f15e610919987ffb79f3519e5dc214a395b02a9\", \"live\": true, \"id\": \"x8e9c2f4663e4129b\"}", "{\"sha\": \"a51bc9d5fb69ed502a9382e9ff92b6c7318283d3\", \"live\": true, \"id\": \"x2171bc7d1d3bcc13\"}", "{\"sha\": \"6c78447ad7b92a56ca813024b86348807ae1771e\", \"live\": true, \"id\": \"x04e22655eb528b0b\"}", "{\"sha\": \"ff7b28592c5d2e7cca6a0ace2d2bbfec2ed53dde\", \"live\": true, \"id\": \"xc4e068e1952bc198\"}", "{\"sha\": \"2ad55094e8ecada70488544389c52669650f9246\", \"live\": true, \"id\": \"x0c14551e1826b22b\"}", "{\"sha\": \"0874586fd449ed331d2dfcfa7686c3b88e989675\", \"live\": true, \"id\": \"xce6ef5ec17a3485e\"}", "{\"sha\": \"e62d19cc6cace8141ced811b99ea218b30b40f20\", \"live\": true, \"id\": \"xa71ab86bfe006e0a\"}", "{\"sha\": \"5cc1b3f964da04194c6dcc3e7d765844ea7f00b3\", \"live\": true, \"id\": \"x1c070862bb011f47\"}"], "description": "Divide by 6. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-6/", "slug": "dividing-by-6", "kind": "Exercise", "name": "dividing-by-6", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-6", "dividing-by-10", "dividing-by-5"], "exercise_id": "dividing-by-6"}, "piero-della-francesca-s-baptism-of-christ-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/central-italy1/piero-della-francesca-s-baptism-of-christ-quiz/", "id": "piero-della-francesca-s-baptism-of-christ-quiz", "display_name": "Piero della Francesca, Baptism of Christ (quiz)", "title": "Piero della Francesca, Baptism of Christ (quiz)", "all_assessment_items": ["{\"sha\": \"69f14f8c056ba8487cd9f20e262b15fc9c8c0dca\", \"live\": true, \"id\": \"xef5988004701d1f2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6ad041f2dbb4923f559ea9727bb7e405ae4161c2\", \"live\": true, \"id\": \"x750f25d8c840f9eb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c9ac357fe23c5f4a3b9e7294764b863deeeb38af\", \"live\": true, \"id\": \"xdcc4f2caab7beb28\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23b0a0d835e87ea51ee8fc1fcbce811ba6625fdb\", \"live\": true, \"id\": \"x21eb24ec799054a5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "piero-della-francesca-s-baptism-of-christ-quiz", "kind": "Exercise", "name": "piero-della-francesca-s-baptism-of-christ-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "piero-della-francesca-s-baptism-of-christ-quiz"}, "functions_matching_inputs_outputs": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/functions-and-function-notation/functions_matching_inputs_outputs/", "id": "functions_matching_inputs_outputs", "display_name": "Matching inputs to function outputs", "title": "Matching inputs to function outputs", "all_assessment_items": ["{\"sha\": \"2d53c7aad0f26bcd7c2ab0699cef44dd4e89cbbf\", \"live\": true, \"id\": \"xfff9f77a6be89f4d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cc58cf113ed9163b59e218d5c8557215675f24ca\", \"live\": true, \"id\": \"xca63b201397702a7\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5bfaa5428508a35d2240187d8c472edf99e2d308\", \"live\": true, \"id\": \"xcec70f46432d25dc\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c6e0d40c884310a7959d7a1b18952d4e404c9aae\", \"live\": true, \"id\": \"xa9be7aa07972bbb8\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a264620804162a1121db37198f682a9da10fb6d7\", \"live\": true, \"id\": \"x298488e908266583\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bc438ab7f6a6616b37edc0646c60721192219372\", \"live\": true, \"id\": \"x8e79706c88c707f2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a4b54bdb6bdebd8226fb673d3f959f31227ebf02\", \"live\": true, \"id\": \"xa7bc8a78393bfcc0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e8e9992b1aaab2b40be1014e5feb1ab253cd58c\", \"live\": true, \"id\": \"xcb4f0cf43fd39167\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b0fe486b82281549f72869ca9d281ba12a4268bc\", \"live\": true, \"id\": \"x8e2e9df39ed6b65a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ad449d3833a446098477656acf2ab759571863c9\", \"live\": true, \"id\": \"xbfd5725efddf617e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2cb9dc6c35fb3528e5bd9fa9467b253007c50874\", \"live\": true, \"id\": \"xab3068581067c118\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"28c21878188e2c9b08bc86c5e43e538a13a4be1c\", \"live\": true, \"id\": \"xa28e5c302a82ccf1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6496cda50cc34050b599f0bc9c97973b6d8b2881\", \"live\": true, \"id\": \"x5e69dda54e5cdb8f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"51444b70fccb59ada40503aed79429b610af70c9\", \"live\": true, \"id\": \"x9ef862fd14c8081a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"38d6a3a270bd1a3e6086958cb9ecd1ffe70135e3\", \"live\": true, \"id\": \"xdbca44d92b37d029\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6618095d65e94cb38d195fbe091009f29706fcbc\", \"live\": true, \"id\": \"x2f74cff8aeb26542\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9b72185e420cb55fb2a3bb9533606a40626d28b\", \"live\": true, \"id\": \"x96720ebf7d5dd95f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5ed59d00a9d3a34c655b02f14195b630419ed53c\", \"live\": true, \"id\": \"x1e54ec03dc25c01a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fc38fc2c5ad007281109fde5f52b314e8ab00e25\", \"live\": true, \"id\": \"x499d0cab5dbb93f4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"13efd9d6b98a4437d23cc601158e1026960cabfc\", \"live\": true, \"id\": \"xcba08131647d87b0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a95c37a3b9415af58b84f7665c8bfd79b17a7e68\", \"live\": true, \"id\": \"x231c4ab5a2be1c3a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b30e8211eebfa63383de939534a5e7c5e9c84b37\", \"live\": true, \"id\": \"x36ff44c93993c611\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8f423f67de95df6cac33be6a75ef1fffd177fe95\", \"live\": true, \"id\": \"xf83be1a4a1ebf16e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9f1c07c1ae309c93f225d07504e334f90101baf6\", \"live\": true, \"id\": \"x40cfdcc509786e19\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"05c9b41d74a8039db03b69945d8ea6269f8cb115\", \"live\": true, \"id\": \"x2a061521df8876b4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9146eb62b2c31f2b3887af7f1532618fdddb1cbf\", \"live\": true, \"id\": \"x06b910f248389dc3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"76efe7570867080ae2f6642e3353024b579e2b3a\", \"live\": true, \"id\": \"x0fec9590e7016d22\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0918375e2014a1e8a5e3a2679846ee613d2159de\", \"live\": true, \"id\": \"xc8a330808677e1d2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"73345bb4f961518f91df131cab93be15f7f9e550\", \"live\": true, \"id\": \"x0e0193791964d42c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1bc72cecf8c96d247b8bb03b2345896a077ce5ac\", \"live\": true, \"id\": \"x0b1dd64bec39ff9c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "We already know how to evaluate a function's output given an input value. Now let's try it the other way around.", "basepoints": 10.0, "slug": "functions_matching_inputs_outputs", "kind": "Exercise", "name": "functions_matching_inputs_outputs", "seconds_per_fast_problem": 4.0, "prerequisites": ["functions_1"], "exercise_id": "functions_matching_inputs_outputs"}, "subtraction_3": {"uses_assessment_items": false, "path": "khan/math/arithmetic/addition-subtraction/sub_borrowing/subtraction_3/", "id": "subtraction_3", "display_name": "Subtraction within 100", "title": "Subtraction within 100", "description": "Practice subtracting two-digit numbers.", "basepoints": 19.0, "slug": "subtraction_3", "kind": "Exercise", "name": "subtraction_3", "seconds_per_fast_problem": 15.0, "prerequisites": ["subtraction_2", "addition_3", "subtract-within-100-level-2"], "exercise_id": "subtraction_3"}, "factoring_polynomials_by_grouping_1": {"uses_assessment_items": false, "path": "khan/math/algebra2/polynomial_and_rational/quad_factoring/factoring_polynomials_by_grouping_1/", "id": "factoring_polynomials_by_grouping_1", "display_name": "Factoring polynomials by grouping", "title": "Factoring polynomials by grouping", "description": "Factor polynomials by grouping", "basepoints": 27.0, "slug": "factoring_polynomials_by_grouping_1", "kind": "Exercise", "name": "factoring_polynomials_by_grouping_1", "seconds_per_fast_problem": 46.0, "prerequisites": ["factoring_polynomials_2"], "exercise_id": "factoring_polynomials_by_grouping_1"}, "the-effects-of-ear-canal-acoustics-on-hearing-ability": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-effects-of-ear-canal-acoustics-on-hearing-ability/", "id": "the-effects-of-ear-canal-acoustics-on-hearing-ability", "display_name": "The effects of ear canal acoustics on hearing ability", "title": "The effects of ear canal acoustics on hearing ability", "all_assessment_items": ["{\"sha\": \"4c4225b5f45bd26be6a478a50ee2d7f6038976e0\", \"live\": true, \"id\": \"x8f17698cfd94d376\"}", "{\"sha\": \"6e6646d0b0a884c1dc48191f4c21dd3e888a42b4\", \"live\": true, \"id\": \"xa26f0ac5db3becb0\"}", "{\"sha\": \"8b5e3450d2017f098fd4231cdce57e8f9991dafa\", \"live\": true, \"id\": \"x2a2f8599bffda7a3\"}", "{\"sha\": \"cd1c9e33a3cab2a375ec1a00b8037327a94fb7cd\", \"live\": true, \"id\": \"x5f88b3e494eb6aac\"}", "{\"sha\": \"254410086c32885a8e3cc6bbe192d7b1b390981e\", \"live\": true, \"id\": \"xc5bac8364fdbede7\"}"], "description": "Questions related to the acoustics of human hearing.", "basepoints": 10.0, "slug": "the-effects-of-ear-canal-acoustics-on-hearing-ability", "kind": "Exercise", "name": "the-effects-of-ear-canal-acoustics-on-hearing-ability", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-effects-of-ear-canal-acoustics-on-hearing-ability"}, "dividing-by-5": {"uses_assessment_items": true, "id": "dividing-by-5", "display_name": "Dividing by 5", "title": "Dividing by 5", "all_assessment_items": ["{\"sha\": \"953e0b6e2e501016268301d29c2104d6e524477a\", \"live\": true, \"id\": \"x4d5a8aa66b9ae30b\"}", "{\"sha\": \"622d8185b62c3ccf12aa97a24f737ca180b6bb2d\", \"live\": true, \"id\": \"x83f9e2103f2d20d1\"}", "{\"sha\": \"c43e35c6bbbd4cad6be9ffcddbe212c71c83952b\", \"live\": true, \"id\": \"x1e0e8d24ed15e848\"}", "{\"sha\": \"2d3746de90c6484b3bbcee0653925477566fc7b6\", \"live\": true, \"id\": \"xfb69c80871dbe34f\"}", "{\"sha\": \"0ca2d0edc6078b273645f0d90f91761957f5fe4b\", \"live\": true, \"id\": \"xb88f194868ea8dee\"}", "{\"sha\": \"00f4cbeb6d0b1f7f3712c3384cd01d98531f0365\", \"live\": true, \"id\": \"xdb68a9cdc3f8bd04\"}", "{\"sha\": \"f892290e3f00de2903cd6d41b4df7bf5273ad777\", \"live\": true, \"id\": \"x4091cbc68d45e0cd\"}", "{\"sha\": \"1a6ca32a05fdb5b8d545a1fbd819773c8f154439\", \"live\": true, \"id\": \"x989f18fb3081d3dc\"}", "{\"sha\": \"f30aa43f0fd06c89e015290a6139dc046219aa4b\", \"live\": true, \"id\": \"x6331d41ba3e7c5e8\"}", "{\"sha\": \"f71b67a8aa4c62fb1796ec0c80e94651380ffd1f\", \"live\": true, \"id\": \"xe5a52f784a72f7ef\"}"], "description": "Divide by 5. \u00a0Quotients are less than or equal to 10.", "basepoints": 10.0, "path": "dividing-by-5/", "slug": "dividing-by-5", "kind": "Exercise", "name": "dividing-by-5", "seconds_per_fast_problem": 4.0, "prerequisites": ["dividing-by-2", "multiplying-by-5"], "exercise_id": "dividing-by-5"}, "to-cohabit-or-not-to-cohabit-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/to-cohabit-or-not-to-cohabit-/", "id": "to-cohabit-or-not-to-cohabit-", "display_name": "To cohabit or not to cohabit?", "title": "To cohabit or not to cohabit?", "all_assessment_items": ["{\"sha\": \"576bcf8196d904320f9bfd96e7f7808468673420\", \"live\": true, \"id\": \"x67a7d92a57bb1444\"}", "{\"sha\": \"839a9348355f9b57bb4b41443475ad7691135b86\", \"live\": true, \"id\": \"x04c47843362b2faa\"}", "{\"sha\": \"2db7a76b046c60d8895b3638758af8d1c24eb761\", \"live\": true, \"id\": \"x6f81f4131918543c\"}", "{\"sha\": \"e45381d9fc724541747d3f4ea07cd30a5c955f0e\", \"live\": true, \"id\": \"xa1e64cd9434baaf7\"}", "{\"sha\": \"0caa3399321ce99f05af2b2d6ce8479f19770bbf\", \"live\": true, \"id\": \"x3b092c5ca19c09a7\"}"], "description": "To cohabit or not to cohabit?", "basepoints": 10.0, "slug": "to-cohabit-or-not-to-cohabit-", "kind": "Exercise", "name": "to-cohabit-or-not-to-cohabit-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "to-cohabit-or-not-to-cohabit-"}, "the-circuit-elements-of-a-simple-defibrillator": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-circuit-elements-of-a-simple-defibrillator/", "id": "the-circuit-elements-of-a-simple-defibrillator", "display_name": "The circuit elements of a simple defibrillator", "title": "The circuit elements of a simple defibrillator", "all_assessment_items": ["{\"sha\": \"0f527fde956a4721541e0a56443f4523d8d7de24\", \"live\": true, \"id\": \"x189aac72490c8b90\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6a20e003b807631b7c28713ea4539387e5de9d4d\", \"live\": true, \"id\": \"x3fb725c4b6193381\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6a4e97ba40fa3eb7322bfac9955b1133b49b8a77\", \"live\": true, \"id\": \"x4143258d3e30a8ae\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"56675332e90c3087660b967bae332bb4c41e50a2\", \"live\": true, \"id\": \"xe7d7b3238470c0cf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0ba30961cecef3724a1dad533bcb1f500813234e\", \"live\": true, \"id\": \"x55b98633325ea4f5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Questions related to circuit elements", "basepoints": 10.0, "slug": "the-circuit-elements-of-a-simple-defibrillator", "kind": "Exercise", "name": "the-circuit-elements-of-a-simple-defibrillator", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-circuit-elements-of-a-simple-defibrillator"}, "lhopitals_rule": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/lhopital_rule/lhopitals_rule/", "id": "lhopitals_rule", "display_name": "L'H\u00f4pital's rule", "title": "L'H\u00f4pital's rule", "all_assessment_items": ["{\"sha\": \"a3fa5c5025fd2472d8740cf761b6a2531ad380bb\", \"live\": true, \"id\": \"x3ac0c87584e6fe2a\", \"perseus_api_major_version\": null}", "{\"sha\": \"40084993c2e3f80765c9fda7d2359c1286060374\", \"live\": true, \"id\": \"x6b97d3b4022ff1e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"f3bfac68893cae3323ba177e153000be19554fa7\", \"live\": true, \"id\": \"x5b697def00610d0f\", \"perseus_api_major_version\": null}", "{\"sha\": \"54daec01e23eda20fdd8276e110b7ed961250bf7\", \"live\": true, \"id\": \"x182d25d53f44b73c\", \"perseus_api_major_version\": null}", "{\"sha\": \"ea5ab250bc2b5d66131ffbe36a87844c469bebe0\", \"live\": true, \"id\": \"x5eab03a9b617af07\", \"perseus_api_major_version\": null}", "{\"sha\": \"e0f203b3a98c6110cbd590f023ac1141c98b4a31\", \"live\": true, \"id\": \"x02d47f6150adde53\", \"perseus_api_major_version\": null}", "{\"sha\": \"9eb142506ce5069291ea8da18c12b9c5b9f0a001\", \"live\": true, \"id\": \"xbcc4f5c7cd73e174\", \"perseus_api_major_version\": null}", "{\"sha\": \"04815db749e064acc1c347c2eb99377261eafe87\", \"live\": true, \"id\": \"xef8db1f3ddf4dd68\", \"perseus_api_major_version\": null}", "{\"sha\": \"ac83d1330bcefc3e5d69e3334a05f76a4db077f7\", \"live\": true, \"id\": \"xe1dcaeab731bf0e8\", \"perseus_api_major_version\": null}", "{\"sha\": \"e244fb9ade1d86f8955f65083d535deaf6463414\", \"live\": true, \"id\": \"x952ddcbf949531be\", \"perseus_api_major_version\": null}", "{\"sha\": \"aeaafeb8a06f1fae692fc7b3f3e21cda3a708663\", \"live\": true, \"id\": \"x8a337952037756d5\", \"perseus_api_major_version\": null}", "{\"sha\": \"115ef4140c5650dad644ffb1a358e6039e22c4dd\", \"live\": true, \"id\": \"x54cd4c646aa9cff1\", \"perseus_api_major_version\": null}", "{\"sha\": \"b9bc54e1cb471006a69de2f7eb96a5930cbea189\", \"live\": true, \"id\": \"x3a1fa19184e31275\", \"perseus_api_major_version\": null}", "{\"sha\": \"a662180d1abc3ee23aff65cd92f5baea8a9e429d\", \"live\": true, \"id\": \"xfa949093f66041dd\", \"perseus_api_major_version\": null}", "{\"sha\": \"f6ab6bcd084dceb625ddcd363bbfb94ed76a7913\", \"live\": true, \"id\": \"x3eaac8dc926f2416\", \"perseus_api_major_version\": null}", "{\"sha\": \"6338c7a514c8d0b4f446015980ef69b12fd0d296\", \"live\": true, \"id\": \"x39318c370e7ef004\", \"perseus_api_major_version\": null}", "{\"sha\": \"ef1985e73cc742ed50943d740680021169c9c6f1\", \"live\": true, \"id\": \"x7b204a64d5b5f415\", \"perseus_api_major_version\": null}", "{\"sha\": \"ace842a13237d8378812295ed8acba1e9dfb5a77\", \"live\": true, \"id\": \"x8707263c15591ca0\", \"perseus_api_major_version\": null}", "{\"sha\": \"efb416b4a99e357de3616892381f3902c71b681b\", \"live\": true, \"id\": \"xcced7d681912b7b8\", \"perseus_api_major_version\": null}", "{\"sha\": \"62994f1f53844a0884e232c2b232551b702c8f79\", \"live\": true, \"id\": \"xc1dd07d2c5ddde06\", \"perseus_api_major_version\": null}", "{\"sha\": \"3ded08bf58107e226aad5d5d4af31242dc3cb193\", \"live\": true, \"id\": \"x266ebe79b0ae1ef0\", \"perseus_api_major_version\": null}", "{\"sha\": \"11f4b532eac303ab80fe8315cf1ce5130c4621b5\", \"live\": true, \"id\": \"x17c46790d6c44dfe\", \"perseus_api_major_version\": null}", "{\"sha\": \"dd053e87a500ffea02ff80e3fd9bcbed37cac656\", \"live\": true, \"id\": \"x34e8913006a156fe\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2604fa5328dbc289e0a22313067cd3698e3f7b70\", \"live\": true, \"id\": \"x8ec7447aa6e49778\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d1e3a18d33870190aa79469c3fd0b6faed3e6783\", \"live\": true, \"id\": \"xf865ff7f6841077e\", \"perseus_api_major_version\": null}", "{\"sha\": \"8cea4fde2842eef4ae0be6648c72be4661dae631\", \"live\": true, \"id\": \"x71c4547f82df2d07\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab4f15ea233d46582421af592f21f34ee10d4cea\", \"live\": true, \"id\": \"xe419ca5006dd12d7\", \"perseus_api_major_version\": null}", "{\"sha\": \"7473530f74cbe83a48531dea114991fa49f19845\", \"live\": true, \"id\": \"xe93a559289a50a71\", \"perseus_api_major_version\": null}", "{\"sha\": \"3cb14f824c1bffd2d375f17d018beb5efa631f72\", \"live\": true, \"id\": \"x42b0ba717271c472\", \"perseus_api_major_version\": null}", "{\"sha\": \"512a1c4f42a25bbc7eefb110e593bcfba041a825\", \"live\": true, \"id\": \"x3387aefc3d757851\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 16.0, "slug": "lhopitals_rule", "kind": "Exercise", "name": "lhopitals_rule", "seconds_per_fast_problem": 9.0, "prerequisites": ["applications-of-derivatives--motion-along-a-line", "applications-of-derivatives--tangent-and-normal-lines", "applications-of-differentiation-in-biology--economics--physics--etc"], "exercise_id": "lhopitals_rule"}, "combining_like_terms_2": {"uses_assessment_items": true, "path": "khan/math/algebra/introduction-to-algebra/manipulating-expressions/combining_like_terms_2/", "id": "combining_like_terms_2", "display_name": "Combining like terms with distribution and negative numbers", "title": "Combining like terms with distribution and negative numbers", "all_assessment_items": ["{\"sha\": \"5ebc2ec7c0b0400ca5347cfe0a6329840ff041e4\", \"live\": true, \"id\": \"xba4b1e7520a57b97\"}", "{\"sha\": \"44a99f2dd55f62f1bbd785912ead76121b7995df\", \"live\": true, \"id\": \"xe13ea07cb67d7f5e\"}", "{\"sha\": \"558e79a36092bca89844d22560a44a34735ea34c\", \"live\": true, \"id\": \"x7ea6cf4d46380463\"}", "{\"sha\": \"31f9f3f261d31b756617c004233dfc2cddf197f4\", \"live\": true, \"id\": \"xba3444318de0824f\"}", "{\"sha\": \"70a996068b5842e2a9ce3255172efb09dbb075de\", \"live\": true, \"id\": \"x1594104bdab58653\"}", "{\"sha\": \"eeb2a999c3a7096fb681cf27da2fec92cfefb114\", \"live\": true, \"id\": \"x26725cf86524233e\"}", "{\"sha\": \"97d0573aa303fabf278a1c919fc95b944b43667a\", \"live\": true, \"id\": \"x3886dd37b6a2704d\"}", "{\"sha\": \"5b37670f7439a142d3da04293e8401febefaa118\", \"live\": true, \"id\": \"x06a255d6e33ee099\"}", "{\"sha\": \"b067178b11a0fbad82621ec8ac11928290093fca\", \"live\": true, \"id\": \"x5622b643d7319fc1\"}", "{\"sha\": \"3ee2e9eedf3d8ea37a75429a7412b0446ddf9dc3\", \"live\": true, \"id\": \"x29fb6a68ab01d487\"}", "{\"sha\": \"5913ed77b149fb0669c8ad4f01198c308867d915\", \"live\": true, \"id\": \"x7f37a69677a9010f\"}", "{\"sha\": \"fbed6084d8992ee7827b8b926c7270ec7da3ba57\", \"live\": true, \"id\": \"x217d35b4188ad8e9\"}", "{\"sha\": \"bcbce7e1343c814653f60ce3c9c2d1f787e6211e\", \"live\": true, \"id\": \"xc1cbc4712269ace6\"}", "{\"sha\": \"314b9ce536a48d49f30eb0089e89ed61476b7f72\", \"live\": true, \"id\": \"x67063d212b956598\"}", "{\"sha\": \"7f4193240fffb38bd21d7263fedb334dab5bb36c\", \"live\": true, \"id\": \"x403b597634a4ac35\"}", "{\"sha\": \"335fbe9be5b811eb9ac27f4774fb435ebf88ca17\", \"live\": true, \"id\": \"xb9d535a241edacbd\"}", "{\"sha\": \"9c1ba6c7dc64488c5071ff80564215dd53567dca\", \"live\": true, \"id\": \"x815eb695ef702ea1\"}", "{\"sha\": \"a40ed027c1880546004e8c80950dd078b92b5bf7\", \"live\": true, \"id\": \"xcc66aa6c74c08702\"}", "{\"sha\": \"0dcbf1a404cb78a7d044809aa274b3f14104565f\", \"live\": true, \"id\": \"x34261773d122f7b3\"}", "{\"sha\": \"c4647af0b308a5d8fd8d93068f11204a2b01480b\", \"live\": true, \"id\": \"xdfe3fc29aee6d966\"}", "{\"sha\": \"b47aec17ed222046d7ce60b512a8a58961d9cf92\", \"live\": true, \"id\": \"xe22ee9e007ccfcf2\"}", "{\"sha\": \"ab4cf2eb979633be1068e1dd6134ca3f7f98503e\", \"live\": true, \"id\": \"x4d2b45ac637ecced\"}", "{\"sha\": \"b7d79e233376ce80a6425abfe82b89745f18a045\", \"live\": true, \"id\": \"xeda71a527ce82c92\"}", "{\"sha\": \"10a49ea014fa0646fa8c9fe8553619998f21cdd4\", \"live\": true, \"id\": \"x20a8800f5edd7981\"}", "{\"sha\": \"d17c2a65750f2237dda61b071faebf46fdd380b3\", \"live\": true, \"id\": \"x1cb0e49973ca567f\"}", "{\"sha\": \"230d33d40be5d47c99f730db1e75dba85a84ebff\", \"live\": true, \"id\": \"x0af7c707f0c6bdf6\"}", "{\"sha\": \"353fc1483c65f4d16ee42f6e48c80af0559c3c75\", \"live\": true, \"id\": \"xf26bce3b9df69d90\"}", "{\"sha\": \"d930b8ac290ba272143c93e90346c0444cd8f40c\", \"live\": true, \"id\": \"xc26353b7f20042ab\"}", "{\"sha\": \"5e96cfcf666339e2b087f9839fd47c5856dcd453\", \"live\": true, \"id\": \"x31f48051886fb818\"}", "{\"sha\": \"328407f83aae69896ceb217671e9f8092dcd5f53\", \"live\": true, \"id\": \"x74f19701feccf18b\"}", "{\"sha\": \"ee292105a9e2797ab8e83df8e541b8b83b39176b\", \"live\": true, \"id\": \"x0c3246924abe2a3b\"}", "{\"sha\": \"ac1ba7634557ddde6a0a754da06cef1b22ecddd0\", \"live\": true, \"id\": \"xa2b446e5453e4d74\"}"], "description": "Practice combining like terms using the distributive property. These problems involve adding and subtracting negative numbers.", "basepoints": 18.0, "slug": "combining_like_terms_2", "kind": "Exercise", "name": "combining_like_terms_2", "seconds_per_fast_problem": 12.0, "prerequisites": ["combining-like-terms-with-distribution", "combining_like_terms_1"], "exercise_id": "combining_like_terms_2"}, "combining_like_terms_1": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/combining_like_terms_1/", "id": "combining_like_terms_1", "display_name": "Combining like terms with negative coefficients", "title": "Combining like terms with negative coefficients", "all_assessment_items": ["{\"sha\": \"3b167200fc2199611d5e57bfa63a90729a85a8c6\", \"live\": true, \"id\": \"xa0a93fb8a9a47d23\"}", "{\"sha\": \"df8bab4ae078f66fcb25c4c0d2e169dbafd89583\", \"live\": true, \"id\": \"xb9bbdff8c832a708\"}", "{\"sha\": \"415738aa676398ba60faa42df211dbb834e4217b\", \"live\": true, \"id\": \"x2a83a5a5ffd6a891\"}", "{\"sha\": \"e4a559bd6c50e268047aeb6003884cdc8c1a4f57\", \"live\": true, \"id\": \"xd7a9c0781e81001d\"}", "{\"sha\": \"c5d5597814109b202f9c7d604cf09a5a8ea87e83\", \"live\": true, \"id\": \"x63dc149d378fc0e9\"}", "{\"sha\": \"dec3cfc9a125aae90b0f9c18b0d83b07bfdca938\", \"live\": true, \"id\": \"x7664cc01ae067bd9\"}", "{\"sha\": \"794573c4a99e5f5ded4486c7696ede8f86efab7a\", \"live\": true, \"id\": \"xe9b2c9218c303ff9\"}", "{\"sha\": \"d264b03c3a3a295eea00a1dc539002b9417aa5b1\", \"live\": true, \"id\": \"x4fa3b6a310cf25d8\"}", "{\"sha\": \"c3b17771412c78198f22beb1f26d995fba2395bd\", \"live\": true, \"id\": \"x3ac18d76de4cca2e\"}", "{\"sha\": \"911b8f8fa34151f6f2daeb9cbc3ea689ef87c7c7\", \"live\": true, \"id\": \"x79f29543de9a6e60\"}", "{\"sha\": \"1cd24573b9c472c17af7a22bf32292577bfa6d98\", \"live\": true, \"id\": \"xe767bcf3b8f3b1d9\"}", "{\"sha\": \"2bb728253b5efdca3cfb7ae5049dc8e4c2b40681\", \"live\": true, \"id\": \"x9e42892ced614d33\"}", "{\"sha\": \"c9e7b4b8c1a5990224de2505fd69c58bf1bc8991\", \"live\": true, \"id\": \"x185ccc3760602e09\"}", "{\"sha\": \"ecedaa89ec724c817c616cdeb945601d199ae057\", \"live\": true, \"id\": \"xdd15698fb239caf5\"}", "{\"sha\": \"04b0f16a46b5d5a438b47d5f504a32a862be6fee\", \"live\": true, \"id\": \"xeff33a6e3da716be\"}", "{\"sha\": \"79a1bb20a0218854f4c51bff9d5ada968968a9b0\", \"live\": true, \"id\": \"xdfccfb10e1ecead2\"}", "{\"sha\": \"521c75515c201a73b658c14a561f1add2e445bf3\", \"live\": true, \"id\": \"x6cc7ac70e4e01df4\"}", "{\"sha\": \"f5624a76cff437e4d7be0e7249a32d7c6e12ea86\", \"live\": true, \"id\": \"xa22e01b77afcdc26\"}", "{\"sha\": \"daf3d6e4cc83d6014175c7d125318557b4a2e37d\", \"live\": true, \"id\": \"x436f18a12b2e1777\"}", "{\"sha\": \"22b9f1170b26f26b801c4c268df0b8aec99cc65c\", \"live\": true, \"id\": \"x9d255cfb2d805fdb\"}", "{\"sha\": \"5130b62ff5b3ff86cfe8c965a4ee9c9058cb4a32\", \"live\": true, \"id\": \"xd483ad80f8b62243\"}", "{\"sha\": \"0afd27ed0e1c2cc945cf5dd664f0c99edb27dacc\", \"live\": true, \"id\": \"xaec10cc6afd43fde\"}", "{\"sha\": \"3d6a26da6da81a382c316190eb8f0442a0a45d19\", \"live\": true, \"id\": \"x30f99a470c1897e2\"}", "{\"sha\": \"1c9f7091a20328f70d63f9cbba1617408e79aea4\", \"live\": true, \"id\": \"x0fc12dc34c7d9f5a\"}", "{\"sha\": \"1bc285dfa7015bfa0c6fade4bccb984802e4e385\", \"live\": true, \"id\": \"x31fb84e9fab3181a\"}", "{\"sha\": \"fd7bffb5fb3166df32544d0246cf7cdc05a53634\", \"live\": true, \"id\": \"x45f18042f6e57463\"}", "{\"sha\": \"ffe46554f6e4cde1c6b71ad283b55d406f709b4c\", \"live\": true, \"id\": \"x0a6cf99072b80827\"}", "{\"sha\": \"0822def35ec0fb88402d238ea72c2e2253e35eec\", \"live\": true, \"id\": \"x3a0537f3246d1ad5\"}", "{\"sha\": \"70b8271dbf6edfa6b658eb7b7f620ebb251ad5b9\", \"live\": true, \"id\": \"xacea5f3aa0a0345a\"}", "{\"sha\": \"3de2a7ca32b3e55d1804692938ce01e7fe9187ce\", \"live\": true, \"id\": \"xbb9c2e7775e8a77c\"}", "{\"sha\": \"755d75fa08da1f839c66651df980d05c9186fe26\", \"live\": true, \"id\": \"x3e868dcb9a2c1a83\"}", "{\"sha\": \"fa2c4492263a90c89b0712d4086e08a9ee078c16\", \"live\": true, \"id\": \"xc88f45350a29d249\"}"], "description": "Simplify algebraic expressions by combining like terms. Coefficients on some terms are negative.", "basepoints": 16.0, "slug": "combining_like_terms_1", "kind": "Exercise", "name": "combining_like_terms_1", "seconds_per_fast_problem": 9.0, "prerequisites": ["combining-like-terms-0.5", "adding_and_subtracting_negative_numbers"], "exercise_id": "combining_like_terms_1"}, "exploring_standard_deviation_1": {"uses_assessment_items": false, "path": "khan/math/probability/descriptive-statistics/variance_std_deviation/exploring_standard_deviation_1/", "id": "exploring_standard_deviation_1", "display_name": "Exploring standard deviation", "title": "Exploring standard deviation", "description": "", "basepoints": 18.0, "slug": "exploring_standard_deviation_1", "kind": "Exercise", "name": "exploring_standard_deviation_1", "seconds_per_fast_problem": 13.0, "prerequisites": ["variance", "standard_deviation_of_a_population"], "exercise_id": "exploring_standard_deviation_1"}, "german-art-between-the-wars": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/art-between-wars/neue-sachlichkeit/german-art-between-the-wars/", "id": "german-art-between-the-wars", "display_name": "German art between the wars (quiz)", "title": "German art between the wars (quiz)", "all_assessment_items": ["{\"sha\": \"9a7daad070ecfe12ba276fbfc4d9e46fc34a4a28\", \"live\": true, \"id\": \"xffea7cb18d0bff77\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f573a7cea6378aeffd12eba04b367c2cf8d5938\", \"live\": true, \"id\": \"xf1cb5f5fadcc004c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b0a4c3aa1cd088946146f23d3ba1812006faa6f6\", \"live\": true, \"id\": \"x2f119b1130f04229\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"812ac0a8bdcfc124e243c6c77c191eb037de1bd3\", \"live\": true, \"id\": \"xdc1c7f309a9a8f78\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9261e732150379c64e1b06fc7e2568b686c6435b\", \"live\": true, \"id\": \"xdf7ad6b09e608711\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3f2df5de0a52f5bf6dd81cad7970fde5ecd73158\", \"live\": true, \"id\": \"x6d0ca4a9e47c8e1e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0d813ce72a3383f1235be3f65e0e31e319395cc3\", \"live\": true, \"id\": \"x6b64ab79124bca3c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6e73b8337c306d74ada85ad80b020b1454a8e80a\", \"live\": true, \"id\": \"xade97a40c334024e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3d7ffb71e9e57a4e45c0f2fa463d17e0bb35a6dd\", \"live\": true, \"id\": \"x636cf7f0f9714703\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2eb9a44552f5c80ae19719ca0f38e6196a101894\", \"live\": true, \"id\": \"x91e7f42f6b1bfe25\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e1502b16114a824d21e42416800ef8240b9c32e2\", \"live\": true, \"id\": \"xd0a92f4aab74642d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5a884085797af5bf14ba10d4f5a4d048805d9dca\", \"live\": true, \"id\": \"x56011f33e39a4c9b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "german-art-between-the-wars", "kind": "Exercise", "name": "german-art-between-the-wars", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "german-art-between-the-wars"}, "quiz--html-css-recap": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css-js/html-css-js-intro/quiz-html-css-recap/", "id": "quiz--html-css-recap", "display_name": "Quiz: HTML/CSS recap", "title": "Quiz: HTML/CSS recap", "all_assessment_items": ["{\"sha\": \"bd384a1a04fd515546fee190e2258e35530712f2\", \"live\": true, \"id\": \"x5859a2fecdba06dd\"}", "{\"sha\": \"8b5f6758f27a889a67548513f523b3d4d10a2822\", \"live\": true, \"id\": \"x7a8b27c71cd195f0\"}", "{\"sha\": \"6e5e66e4a762332cf7e15930f618ca7587d2db9a\", \"live\": true, \"id\": \"x900c3028c7d0be56\"}", "{\"sha\": \"3423ae341efdd65b2c6ba67331792729a4301c7e\", \"live\": true, \"id\": \"x7f6d0a0565fcbaf7\"}", "{\"sha\": \"c8cbcaf72bfdb667a9d14b16cb41c3d9acb366fe\", \"live\": true, \"id\": \"x4f671714807eaa25\"}"], "description": "Make sure you remember enough about HTML/CSS before you keep going.", "basepoints": 10.0, "slug": "quiz-html-css-recap", "kind": "Exercise", "name": "quiz--html-css-recap", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--html-css-recap"}, "clinical-vignette-of-persistent-depressive-disorder": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/clinical-vignette-of-persistent-depressive-disorder/", "id": "clinical-vignette-of-persistent-depressive-disorder", "display_name": "Clinical vignette of persistent depressive disorder", "title": "Clinical vignette of persistent depressive disorder", "all_assessment_items": ["{\"sha\": \"982fc15414aaf5bed2872d5523e8aab8e094fbff\", \"live\": true, \"id\": \"x9a35bbdda723635c\"}", "{\"sha\": \"e02428b4762564b08e3f82559c603b8f56702767\", \"live\": true, \"id\": \"x92b5431d01585bd4\"}", "{\"sha\": \"8ab4d745bc2de943c6ac78521917c4f31ab9d1b5\", \"live\": true, \"id\": \"xb31a06850569b765\"}", "{\"sha\": \"df84549749c033dafe703bceaec4051edd6136df\", \"live\": true, \"id\": \"x2cfcc05a0514d144\"}", "{\"sha\": \"750dc59129ae661d5e1f3f8b89801123828e2d23\", \"live\": true, \"id\": \"x4fb4811a4e962d26\"}"], "description": "Questions related to psychological disorders", "basepoints": 10.0, "slug": "clinical-vignette-of-persistent-depressive-disorder", "kind": "Exercise", "name": "clinical-vignette-of-persistent-depressive-disorder", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "clinical-vignette-of-persistent-depressive-disorder"}, "the-only-known-case-of-an-hiv-cure": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/the-only-known-case-of-an-hiv-cure/", "id": "the-only-known-case-of-an-hiv-cure", "display_name": "The only known case of an HIV cure", "title": "The only known case of an HIV cure", "all_assessment_items": ["{\"sha\": \"80426c751bb8dec873c258bfc9d08c2c38b3a191\", \"live\": true, \"id\": \"x9da0de11c11f8ec8\"}", "{\"sha\": \"c66de681b1f677c80b62f749d71ca6ffe2fc0ed7\", \"live\": true, \"id\": \"x435dfcb61cf97442\"}", "{\"sha\": \"ea21c5a297b0020f41f874ef06fc24b309601319\", \"live\": true, \"id\": \"x4d6840377dd1d9b4\"}", "{\"sha\": \"f8e361ae76454a82fd86dcebab54fd566eae3625\", \"live\": true, \"id\": \"xfb5d78d94761f179\"}", "{\"sha\": \"becd2ade0f1899b43f4923f88afad4aa9b463f76\", \"live\": true, \"id\": \"x0162a7e4cfa3bc54\"}"], "description": "Questions related to viral life cycle", "basepoints": 10.0, "slug": "the-only-known-case-of-an-hiv-cure", "kind": "Exercise", "name": "the-only-known-case-of-an-hiv-cure", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-only-known-case-of-an-hiv-cure"}, "respiratory-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/the-respiratory-system/respiratory-system-questions/", "id": "respiratory-system-questions", "display_name": "Respiratory system questions", "title": "Respiratory system questions", "all_assessment_items": ["{\"sha\": \"7ce4b30a3e6b6724fc6789c2797510f15a59c8d8\", \"live\": true, \"id\": \"xfc1ca91ff2fe131e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c2d0624aab690755acbb4e4f3242e10b82bdc55b\", \"live\": true, \"id\": \"xb0d2896ff5f24031\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7d0f4332c771620a35a6128bb31c819a9e19cbba\", \"live\": true, \"id\": \"x1e0325affdb7b354\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"55399a5589e38d7a2fe91450a65a6c997328a82f\", \"live\": true, \"id\": \"xe11ae6aa54d52426\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7740af84615ed40886ce0d51a1c3049f4bc45758\", \"live\": true, \"id\": \"x20b9107c44185769\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6088c2db5a99b7b4f79542883ea8646967111ea0\", \"live\": true, \"id\": \"x6df428f3d0ec0351\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de1e8746ae0834354198b9d1e9c7f1e676f5b09b\", \"live\": true, \"id\": \"xc196c64c6a0a57a3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b634704af83feef8d1f8ce32f936ce3c75376184\", \"live\": true, \"id\": \"xfedbdb02d54401d8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"692808c44bf72254de667c07297e57b77e22b723\", \"live\": true, \"id\": \"x7f9562325c3c8138\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ccd86482b8bc46f8d8b667f65bbbcae9929b4e34\", \"live\": true, \"id\": \"x7154303b074c4b7d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Respiratory system questions", "basepoints": 10.0, "slug": "respiratory-system-questions", "kind": "Exercise", "name": "respiratory-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "respiratory-system-questions"}, "intermediate-circulatory-system-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/circulatory-system/circulatory-system-introduction/intermediate-circulatory-system-quiz/", "id": "intermediate-circulatory-system-quiz", "display_name": "Intermediate Circulatory System Quiz", "title": "Intermediate Circulatory System Quiz", "all_assessment_items": ["{\"sha\": \"20c389e5f1afdfe8e17fb96ceab3e8dc91f485e3\", \"live\": true, \"id\": \"x344c1ade1961cb2b\"}", "{\"sha\": \"cd22e0d55b6ef97aa0c0486bb313f50db0f3a227\", \"live\": true, \"id\": \"xce477e82298b073c\"}", "{\"sha\": \"097ff10d03080fca9248a85a0d29f7054f279b0e\", \"live\": true, \"id\": \"xd54de390ed7cbf98\"}", "{\"sha\": \"f80fe9ad045cf9fd6be1b72c81f66e2f6af10e9d\", \"live\": true, \"id\": \"xec4e3a4e2829f625\"}", "{\"sha\": \"dcdbf00843bb775402477b4057a9bf996056d155\", \"live\": true, \"id\": \"xafca284cef472dac\"}", "{\"sha\": \"0e3a4a62855067bc4dba93910bbe74ade4dda53a\", \"live\": true, \"id\": \"x7a3bc5bb72052ba7\"}", "{\"sha\": \"be261148ebbb62b3e6254dc373a0cb7333a4ad7d\", \"live\": true, \"id\": \"x474b2f3cf14ac91a\"}", "{\"sha\": \"cce4e12791d500662b226a4624311ea9fcc58f17\", \"live\": true, \"id\": \"x4d2920376feb792f\"}", "{\"sha\": \"1982555d216ce65373379dbb1ba03d258099cdc1\", \"live\": true, \"id\": \"x73bae6aafbefe491\"}", "{\"sha\": \"ade53cca4b3b7db58dffc5fa5405c93df50a1fb0\", \"live\": true, \"id\": \"x8a43d7db30c791c3\"}", "{\"sha\": \"7fa16e5bd20de469ea1b4d2d71b95327057d9215\", \"live\": true, \"id\": \"x7fa074e4f42b5768\"}", "{\"sha\": \"55c09713602bc599287be80beb0fd45c00e453eb\", \"live\": true, \"id\": \"x90a1c997a52a9925\"}"], "description": "Intermediate Circulatory System Quiz", "basepoints": 10.0, "slug": "intermediate-circulatory-system-quiz", "kind": "Exercise", "name": "intermediate-circulatory-system-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "intermediate-circulatory-system-quiz"}, "linear-models-of-bivariate-data": {"uses_assessment_items": true, "path": "khan/math/probability/regression/regression-correlation/linear-models-of-bivariate-data/", "id": "linear-models-of-bivariate-data", "display_name": "Linear models of bivariate data", "title": "Linear models of bivariate data", "all_assessment_items": ["{\"sha\": \"5771cd07be65e3016b6e2c8e7220e99e8618db0a\", \"live\": true, \"id\": \"x07408520b10b71bc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ca8619224ed42ba4c5fecd9ff15afaedf14a7a7a\", \"live\": true, \"id\": \"x40a43bac5e2ccf89\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"adeaa830530cecaa848d63db947cba49cf442148\", \"live\": true, \"id\": \"x76ad418eb51e3ab4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"413a25e9adfa3d5a41aa0d77fac9b4a48c8e9f08\", \"live\": true, \"id\": \"x774a2cf80a312780\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dae591d8b004afa91a406263dd9c240263919dce\", \"live\": true, \"id\": \"x8a5d7f4654f9f8ca\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"59148abf9405d1b8de9b5dffa69bc12e9b151b55\", \"live\": true, \"id\": \"xa543a1b5f3652216\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"18cd93e79e59311c62a3db32e951f3ca74ab48f3\", \"live\": true, \"id\": \"xb8f4eff7edb73c5e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c91005661514edd6a987ea10e7440641d6b40901\", \"live\": true, \"id\": \"x7c7bcf51e0047e51\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a7fd689fa18508c793c46ae283711c373d5b52ff\", \"live\": true, \"id\": \"x61b8d758f5441a0e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0b9cb4d5999627ca5365089cd5b6b7756f4d6baf\", \"live\": true, \"id\": \"x441c783df4e62790\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa00a69cf2b5cb6bcba84b4ba7d8e5a7fe736f96\", \"live\": true, \"id\": \"x1b23076ce401c5ea\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d88da003bd1ac10ce0b1534f36bc13b5202c5d9\", \"live\": true, \"id\": \"x1472942ce303f481\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e1d9706457aa8fab997798e8f35a723993478a1c\", \"live\": true, \"id\": \"x08fe98bcf6a2cb2a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b4af884f3b1596910afc073446ed1ff4426173a2\", \"live\": true, \"id\": \"x69d869428c53f433\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a4ffe5fc89dc3ccc7239e5bfe3dbeeec6c566b5d\", \"live\": true, \"id\": \"x6a541830a147f0e2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c0719942f291034de1a989e7cc1d3300aa030597\", \"live\": true, \"id\": \"x33a038cbbbeec585\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8c4807899c42055072ffe5b83d9827f71d0f225e\", \"live\": true, \"id\": \"x2fe7e409a25da2ec\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"eb3378af79523301b2c0f01a3aaca2caf86c7d9b\", \"live\": true, \"id\": \"xd64e951c9a30372f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7d1e2785f584c16f0db8852a0abccd146792188e\", \"live\": true, \"id\": \"xe88994fa9eb8132e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1aa04cee2a272f822469103484e984e6910d7c49\", \"live\": true, \"id\": \"xc3c316003af63586\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f77315d56b67650a59a39b1189a055db635f87ee\", \"live\": true, \"id\": \"xdf1ef5cc1e82d961\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90d42fa5b31c2d6f422dcc95d280e0573148cb5e\", \"live\": true, \"id\": \"x107fd489a29d814b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ebbe72f71cc56b233e65c03b18c57dddebaae268\", \"live\": true, \"id\": \"x1479ee2c1659ba86\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"0886a9f6419cdfb0bc0950590395fbe6dd08f7e6\", \"live\": true, \"id\": \"xff07ca730cd01006\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3375e433987233fc1a40d31f4e60196847219d0f\", \"live\": true, \"id\": \"x54e4bd3cc8c67f81\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4ebb337235b76e9217632e4fce2c04c0dbc03cf2\", \"live\": true, \"id\": \"xa58dd4991d30ffcc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6bb9a801efb24b8b21191e69d48004ee23469c6f\", \"live\": true, \"id\": \"xd990b7135b2526b6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ae5776d7df70ce669b7cd2ec1bc4ebfd6ded37ea\", \"live\": true, \"id\": \"x08380364855badb7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 24.0, "slug": "linear-models-of-bivariate-data", "kind": "Exercise", "name": "linear-models-of-bivariate-data", "seconds_per_fast_problem": 27.0, "prerequisites": ["graphing_linear_equations", "interpreting-scatter-plots", "plotting_the_line_of_best_fit", "slope_intercept_form"], "exercise_id": "linear-models-of-bivariate-data"}, "describing-subsets-of-sample-spaces": {"uses_assessment_items": true, "path": "khan/math/probability/independent-dependent-probability/basic_probability/describing-subsets-of-sample-spaces/", "id": "describing-subsets-of-sample-spaces", "display_name": "Describing subsets of sample spaces", "title": "Describing subsets of sample spaces", "all_assessment_items": ["{\"sha\": \"942cb8dea57a2af1f0ea2abbf4d496cd3c655753\", \"live\": true, \"id\": \"xf2876437c598dc75\"}", "{\"sha\": \"3c1cdefe7c28862aec4cc7d81cd941a633c86dd6\", \"live\": true, \"id\": \"x01519acfc1dc68ef\"}", "{\"sha\": \"bc9edefff9904b35f22614840fec7d097b6f5a03\", \"live\": true, \"id\": \"x8e9dee9cb025b952\"}", "{\"sha\": \"9527b9d6cb4c2373f8e50ce051782a7f14746748\", \"live\": true, \"id\": \"x4edfbebda7b36195\"}", "{\"sha\": \"3996ea659bbd70edd0000dff50073d79e459f613\", \"live\": true, \"id\": \"x41fd261cc8760ad4\"}", "{\"sha\": \"9b694d2c41e889bbfea9cbde8f8496b19a752d05\", \"live\": true, \"id\": \"x51e59c536e126e19\"}", "{\"sha\": \"70b6cebc1d456638ecc83bddcecd85cfc7f5b1e0\", \"live\": true, \"id\": \"xdd269be45e470ce1\"}", "{\"sha\": \"291984097604759cff0e7c49487b7f8b8d19c99f\", \"live\": true, \"id\": \"x3efd105a23a7a716\"}", "{\"sha\": \"3e06147f1a918855003c56a4f5611c54d8f8be1e\", \"live\": true, \"id\": \"xebde4d3c44d3c655\"}", "{\"sha\": \"b5b2c4c7d04f5827f888e17e1d9f11581c8f58b3\", \"live\": true, \"id\": \"x600caa3c51cb582a\"}", "{\"sha\": \"b3450422287bd9a61fac687bce2398cde70a9497\", \"live\": true, \"id\": \"xfa5c2437d086d873\"}", "{\"sha\": \"b6057b7098c7d997cc2f879b1facb1664b1e7b34\", \"live\": true, \"id\": \"x85f4603ac0265eb9\"}", "{\"sha\": \"9c5b9be592a5089cf78af845acc360921e7d5eac\", \"live\": true, \"id\": \"x2b0769332c76fda8\"}", "{\"sha\": \"ddf4d144e56cf136b1d7905ba8f73dc99faa71e4\", \"live\": true, \"id\": \"x14bbc5990f67c56c\"}", "{\"sha\": \"178d7ee024b0d8c93da054b3fb9975741e15923d\", \"live\": true, \"id\": \"xce0fea0d24bbad39\"}", "{\"sha\": \"824a98157227603d6242746e43fbae8c54c15359\", \"live\": true, \"id\": \"xded56b538419d2b8\"}", "{\"sha\": \"106c87cb15d56805c1bbd0666829bd55d73f035c\", \"live\": true, \"id\": \"x54bd2cce0007a018\"}", "{\"sha\": \"4253ea556f43c4cf6951379ac24456fb11f4b138\", \"live\": true, \"id\": \"x3279c257ee424eda\"}", "{\"sha\": \"3f97e95377f2280318bd4d63ea0f89ea6d2d364c\", \"live\": true, \"id\": \"xac2695757d8ae36b\"}", "{\"sha\": \"d7212b74ee4d3e51a6b9dcba45d64446ddd03781\", \"live\": true, \"id\": \"x13ba7e599cd40f36\"}", "{\"sha\": \"77be9867555c9a94c0bac275c4d74efe150b2cb0\", \"live\": true, \"id\": \"x6e6bc5ac5ee8008b\"}", "{\"sha\": \"71a7266fb9c55070212e8a4b13006f7c4bc19700\", \"live\": true, \"id\": \"xd6bc05c80228c71e\"}", "{\"sha\": \"b6ec37dc107a5023a909451776186686db492a63\", \"live\": true, \"id\": \"xb2b5bc0faf3fb753\"}", "{\"sha\": \"9c2a151ba9126109a01c239ecd3170f64d296e9e\", \"live\": true, \"id\": \"x90f1f7836f75226b\"}", "{\"sha\": \"17948fabf6438d3160d91c5629c9c20d4eb06293\", \"live\": true, \"id\": \"x091ec441cddbb0e4\"}", "{\"sha\": \"02815e0dd1f43d674dd92708c9a93255839e6e8e\", \"live\": true, \"id\": \"x3c309d8bbca9db0d\"}", "{\"sha\": \"5e3aa87876c87868c7cb7ce030eb8b6b7a0157be\", \"live\": true, \"id\": \"x48cfbd621f2e3cf2\"}", "{\"sha\": \"e0ecf03006a2726b8ac1fc238110ee0e6b114fa4\", \"live\": true, \"id\": \"x3cafccc12df54590\"}", "{\"sha\": \"b9b257c14c813e26350170b21cf1f9eb8906dd89\", \"live\": true, \"id\": \"x3f150c6a57d56fbd\"}", "{\"sha\": \"6be1d5f4c03e78ff132375dfaae730cfbae9a960\", \"live\": true, \"id\": \"x8a9d8e8537e3f280\"}"], "description": "", "basepoints": 10.0, "slug": "describing-subsets-of-sample-spaces", "kind": "Exercise", "name": "describing-subsets-of-sample-spaces", "seconds_per_fast_problem": 4.0, "prerequisites": ["compound-events"], "exercise_id": "describing-subsets-of-sample-spaces"}, "socioeconomic-gradients-in-health": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/socioeconomic-gradients-in-health/", "id": "socioeconomic-gradients-in-health", "display_name": "Socioeconomic gradients in health", "title": "Socioeconomic gradients in health", "all_assessment_items": ["{\"sha\": \"926984c3fc11408449a3e9c1d08d59ad49eb7562\", \"live\": true, \"id\": \"x47f95a6b2e17e632\"}", "{\"sha\": \"3f445f1fb9642afb5624fc9cf07412b62fb97200\", \"live\": true, \"id\": \"x18623c1bad564dec\"}", "{\"sha\": \"07567fa33ee16689bdcda6872ce1d2fae4258bc6\", \"live\": true, \"id\": \"xcc5910e2854530ab\"}", "{\"sha\": \"226b5ccaa723503418769ad06f6c85647420089a\", \"live\": true, \"id\": \"x996345c7da7ffc92\"}", "{\"sha\": \"87813afc7d5b771ab0421cc5f5fbfa6969753484\", \"live\": true, \"id\": \"xa7f379b913d015ec\"}"], "description": "Socioeconomic gradients in health", "basepoints": 10.0, "slug": "socioeconomic-gradients-in-health", "kind": "Exercise", "name": "socioeconomic-gradients-in-health", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "socioeconomic-gradients-in-health"}, "arithmetic_series": {"uses_assessment_items": false, "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/arithmetic_series/", "id": "arithmetic_series", "display_name": "Arithmetic series", "title": "Arithmetic series", "description": "Find the sum of the first n terms of an arithmetic sequence.", "basepoints": 27.0, "slug": "arithmetic_series", "kind": "Exercise", "name": "arithmetic_series", "seconds_per_fast_problem": 43.0, "prerequisites": ["arithmetic_sequences_2"], "exercise_id": "arithmetic_series"}, "matrix_addition_and_subtraction": {"uses_assessment_items": true, "path": "khan/math/precalculus/precalc-matrices/basic_matrix_operations/matrix_addition_and_subtraction/", "id": "matrix_addition_and_subtraction", "display_name": "Matrix addition and subtraction", "title": "Matrix addition and subtraction", "all_assessment_items": ["{\"sha\": \"9e105f2a613e30b0ef66af48262f02345f2be1e6\", \"live\": true, \"id\": \"xf4e3bc8f86c91e71\"}", "{\"sha\": \"90f5946919cb334f5d45e4652a9bf61c4b258f98\", \"live\": true, \"id\": \"x2cc9ec25a52c31ad\"}", "{\"sha\": \"181dd5663027e49e8f3b9b8521e482605d2c746b\", \"live\": true, \"id\": \"xcf30ce1ab6b99393\"}", "{\"sha\": \"4c39c409bd91fa04879051abe714b7dd63476da1\", \"live\": true, \"id\": \"xc5a391a9c31f07e8\"}", "{\"sha\": \"5b0582a792296bf96240523aecb3b98d0f21bad1\", \"live\": true, \"id\": \"x0eb90359a8457340\"}", "{\"sha\": \"848b70224ef68e105a6d154d664d44a19ffe7b1c\", \"live\": true, \"id\": \"x9d5ec1ffa892dadf\"}", "{\"sha\": \"ec3ff7c1303d748024799dadd346c5b02b02a1f1\", \"live\": true, \"id\": \"x1daacf1f23270a49\"}", "{\"sha\": \"fefa93e21494c774cf49f4c06b2e81041673858a\", \"live\": true, \"id\": \"x5b0525026a7b454e\"}", "{\"sha\": \"0e663f8c85040042438b5312db212cec2a9b688e\", \"live\": true, \"id\": \"xfc88e2480ab3cf16\"}", "{\"sha\": \"57d82a068da3d886656dfdafbfa7e3ea53d21306\", \"live\": true, \"id\": \"x1a273f96a1ad6ae8\"}", "{\"sha\": \"a560916d82a86c7cf8edcf360e1af80a74bf0d03\", \"live\": true, \"id\": \"xeab41525fd59d26d\"}", "{\"sha\": \"b8dd0fa939f9dc3066906c36caa33669771f902d\", \"live\": true, \"id\": \"x8e58cedc23997f8e\"}", "{\"sha\": \"5d650a5bed40c6a6dddd601ed678ebbc08104e86\", \"live\": true, \"id\": \"xdd7565abab569a0d\"}", "{\"sha\": \"2b73de5d72cee8c8866c9d64422dda77a0b7d5dc\", \"live\": true, \"id\": \"x2d53fa297dd40de3\"}", "{\"sha\": \"2901beb507613e17948bc61fdabf785d41817407\", \"live\": true, \"id\": \"x220d027004a44a1d\"}", "{\"sha\": \"6849a56143f6f18993d1c6876dd086d9b3d8a8e9\", \"live\": true, \"id\": \"x2ce8f4659a72a923\"}", "{\"sha\": \"6b18be3ce5c479588dd6aff2e3cdec97a4422e93\", \"live\": true, \"id\": \"x134e84eb9045db8f\"}", "{\"sha\": \"6ac15331fe3d10d93fa6fa60d2e945eee7e2f45c\", \"live\": true, \"id\": \"x0b9ad574e6e17c09\"}", "{\"sha\": \"b9d536f8fbcd29c960019664187c21cc3161e525\", \"live\": true, \"id\": \"xe610795677db7d1d\"}", "{\"sha\": \"d391a212efc985bc9b588b05a6e607ddd0e8dbec\", \"live\": true, \"id\": \"x76a4333188bed078\"}", "{\"sha\": \"c788adb2ade1c19a80af19053dc856b1fa87a74f\", \"live\": true, \"id\": \"x8a5acbec1ed3398d\"}", "{\"sha\": \"1e4bea4e4ce0447ea2a8c0056db2da9d3ea1a9d8\", \"live\": true, \"id\": \"xa6af1a96eaacab71\"}", "{\"sha\": \"d102ceab8224041f3f95622d4511b8fe56c58189\", \"live\": true, \"id\": \"x009964382a31ae59\"}", "{\"sha\": \"4b102f89110775ce519d7c8b1bacdd6d23e10ea6\", \"live\": true, \"id\": \"x4e70a08199338dcf\"}", "{\"sha\": \"2875a2505698455ce083db71f83e03d4910547ee\", \"live\": true, \"id\": \"xb212c6d4e3cf3a19\"}", "{\"sha\": \"c9bfc0c4b88b391d207c157138ece90a145ed3d9\", \"live\": true, \"id\": \"x5f59e650b2904415\"}", "{\"sha\": \"1bfbd13edf562af825c35347cafd7bad271bd86b\", \"live\": true, \"id\": \"x6ba8f1ec7ab545a6\"}", "{\"sha\": \"7a4d6962e646fe543100cb0e8f74c53294ced2b0\", \"live\": true, \"id\": \"x70cc72eef7e69b5a\"}", "{\"sha\": \"a5dcd77b63129cace2f2ec31a9e550f74c7114c2\", \"live\": true, \"id\": \"x4bc081d5ee4d9122\"}", "{\"sha\": \"28bccdb8eaeffbb43e961f1a33304c7f12013695\", \"live\": true, \"id\": \"x635becaf1de32fb8\"}", "{\"sha\": \"ed23d96ee0353ca64aa32abd7eb21b136be092cc\", \"live\": true, \"id\": \"xd01e9296eade9ab7\"}", "{\"sha\": \"27a4115c2df5c4f9a546d7a3fe426a55881683a6\", \"live\": true, \"id\": \"x36420592605092e7\"}"], "description": "Add and subtract matrices", "basepoints": 20.0, "slug": "matrix_addition_and_subtraction", "kind": "Exercise", "name": "matrix_addition_and_subtraction", "seconds_per_fast_problem": 17.0, "prerequisites": ["matrix_dimensions"], "exercise_id": "matrix_addition_and_subtraction"}, "multistep_equations_with_distribution": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/complicated_equations/multistep_equations_with_distribution/", "id": "multistep_equations_with_distribution", "display_name": "Multi-step equations with distribution", "title": "Multi-step equations with distribution", "description": "Solve linear equations like -(5x+1)=9x-5", "basepoints": 28.0, "slug": "multistep_equations_with_distribution", "kind": "Exercise", "name": "multistep_equations_with_distribution", "seconds_per_fast_problem": 54.0, "prerequisites": ["linear_equations_3"], "exercise_id": "multistep_equations_with_distribution"}, "complex_number_polar_form_intuition": {"uses_assessment_items": false, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_analysis/complex_number_polar_form_intuition/", "id": "complex_number_polar_form_intuition", "display_name": "Complex number polar form intuition", "title": "Complex number polar form intuition", "description": "Adjust the angle and radius to plot a complex number in polar form.", "basepoints": 15.0, "slug": "complex_number_polar_form_intuition", "kind": "Exercise", "name": "complex_number_polar_form_intuition", "seconds_per_fast_problem": 8.0, "prerequisites": ["the_complex_plane", "unit_circle"], "exercise_id": "complex_number_polar_form_intuition"}, "inverse_trig_functions": {"uses_assessment_items": false, "path": "khan/math/trigonometry/unit-circle-trig-func/inverse_trig_functions/inverse_trig_functions/", "id": "inverse_trig_functions", "display_name": "Evaluating inverse trig functions", "title": "Evaluating inverse trig functions", "description": "", "basepoints": 18.0, "slug": "inverse_trig_functions", "kind": "Exercise", "name": "inverse_trig_functions", "seconds_per_fast_problem": 12.0, "prerequisites": ["trigonometric-functions-and-side-ratios-in-right-triangles"], "exercise_id": "inverse_trig_functions"}, "shifting_and_reflecting_functions": {"uses_assessment_items": false, "path": "khan/math/algebra2/functions_and_graphs/shifting-reflecting-functions/shifting_and_reflecting_functions/", "id": "shifting_and_reflecting_functions", "display_name": "Shifting and reflecting functions", "title": "Shifting and reflecting functions", "description": "Determine the equation for one graphed function in terms of another.", "basepoints": 15.0, "slug": "shifting_and_reflecting_functions", "kind": "Exercise", "name": "shifting_and_reflecting_functions", "seconds_per_fast_problem": 8.0, "prerequisites": ["domain_of_a_function", "functions_3", "range_of_a_function"], "exercise_id": "shifting_and_reflecting_functions"}, "amplitude-of-trig-functions": {"uses_assessment_items": true, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/amplitude-of-trig-functions/", "id": "amplitude-of-trig-functions", "display_name": "Amplitude of trigonometric functions", "title": "Amplitude of trigonometric functions", "all_assessment_items": ["{\"sha\": \"3f7245479777e16e694edf1bb0838ebac7d979a8\", \"live\": true, \"id\": \"xd2511399de0ce8aa\"}", "{\"sha\": \"0ccd76195047de6a0c5762d06f5660471798730c\", \"live\": true, \"id\": \"x0dccd321fde0eb9f\"}", "{\"sha\": \"bf59600efb38d630d4aba51e734bdb3b4c1e86cd\", \"live\": true, \"id\": \"x2d6b7dbcac51fb46\"}", "{\"sha\": \"3e19dd2c178c9d5c82c577a0e0a6bec019457a85\", \"live\": true, \"id\": \"x93f2b4a50d9e2a99\"}", "{\"sha\": \"0c454a1f20fdd5a3df384aea1b61bb4b2d8a300a\", \"live\": true, \"id\": \"x992d1bca9404062c\"}", "{\"sha\": \"4de8d1c0a0caeaa58adba313cffc48ecb9f4aee7\", \"live\": true, \"id\": \"xd98afefa2af5c633\"}", "{\"sha\": \"d357ef783aab3203ac66d61738a984312f47ad2e\", \"live\": true, \"id\": \"xa5b5252dbb106141\"}", "{\"sha\": \"abebe7cd0118ec3eb17530fde169dc1323f4e602\", \"live\": true, \"id\": \"x1629c9a1fbd76522\"}", "{\"sha\": \"3a4886527188beba554eb881fbf05ba122f83924\", \"live\": true, \"id\": \"x09c95e05a560ac82\"}", "{\"sha\": \"eeeaeb22a61f7e0d6401e01c64fae8ce8fef0b58\", \"live\": true, \"id\": \"x80c1950311a79114\"}", "{\"sha\": \"6e67cd94cf872e3967c623c3bf34e31935d4720c\", \"live\": true, \"id\": \"x722f3710f0578e80\"}", "{\"sha\": \"d9a99e1f41fde7e464a6b9e4a4dab26c6ec36972\", \"live\": true, \"id\": \"xb94c1b8f98d2a097\"}", "{\"sha\": \"e7dac47be9376df156177757e292a08e8a048761\", \"live\": true, \"id\": \"x8abb6784381f955b\"}", "{\"sha\": \"ea2e3febe14d3010af62d3a18e606c78813ea1f5\", \"live\": true, \"id\": \"x443833d81033b9d4\"}", "{\"sha\": \"4a9acb83fc0b22ad795e60b82fae90e660bbb2bf\", \"live\": true, \"id\": \"x26d65e1e4525179b\"}", "{\"sha\": \"85ca8c2cf3840526775e3b9b50c540d90a68b4fc\", \"live\": true, \"id\": \"x9f3c4829c3733dcc\"}", "{\"sha\": \"648fbee6583dd04a4c63fd5ee2ffed83d761f992\", \"live\": true, \"id\": \"xdfd5b91af48fbec7\"}", "{\"sha\": \"080d4b5b3f086570deeba515c41ce014613cf014\", \"live\": true, \"id\": \"x00fdb7e8e862d0af\"}", "{\"sha\": \"b65ee87f6976b5903783e2a5ab47a7ae6355cb93\", \"live\": true, \"id\": \"x3d03628f932f3cdb\"}", "{\"sha\": \"ac4977288c8f30e451023e043d1a801a6d678f47\", \"live\": true, \"id\": \"xbc7139f63b7cb8b5\"}", "{\"sha\": \"e0e6e4983529c8f6f58bb528d7bce45d714b40a0\", \"live\": true, \"id\": \"x7b1c8a897e37aa40\"}", "{\"sha\": \"e1a967e723ac2cb9ddedc2553a9fa85fd00a4dcd\", \"live\": true, \"id\": \"x6207f0b2abcd65bc\"}", "{\"sha\": \"f725c794a02ac4ad2441fd80fcd6826ac17cacd7\", \"live\": true, \"id\": \"x7c1cea1c093535cc\"}", "{\"sha\": \"7bc8625eb131b88b882f7cecafb9b52719767f94\", \"live\": true, \"id\": \"xd62d4c91397bd476\"}", "{\"sha\": \"f9f1282ea8dd63e5ab7ff38a160838a2b17c1ea0\", \"live\": true, \"id\": \"xa7c701cf168f6c15\"}", "{\"sha\": \"8a7b2086a44b89cffc6200d88e70947e54b019ea\", \"live\": true, \"id\": \"xd9965b42c63697df\"}", "{\"sha\": \"d0a4e1aa1e8ec7c46ae759aa744720092dafcd80\", \"live\": true, \"id\": \"x1f41b856db515e60\"}", "{\"sha\": \"faf049c23cf435c71262ed64ec58ba91d3d8f176\", \"live\": true, \"id\": \"xddac77de2e53d519\"}", "{\"sha\": \"db3b0cfcc5bf3a2172472999d4930c71117b143e\", \"live\": true, \"id\": \"x54a93be1f0075d40\"}", "{\"sha\": \"9dbe3db9ae1ccb52ce179e9f635c245cf67f3560\", \"live\": true, \"id\": \"x10adb87c83258494\"}"], "description": "Find the amplitude of trigonometric functions.", "basepoints": 10.0, "slug": "amplitude-of-trig-functions", "kind": "Exercise", "name": "amplitude-of-trig-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["symmetry-and-periodicity-of-trig-functions"], "exercise_id": "amplitude-of-trig-functions"}, "addition-and-subtraction-word-problems-within-100--level-4": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-more-fewer-100/addition-and-subtraction-word-problems-within-100-level-4/", "id": "addition-and-subtraction-word-problems-within-100--level-4", "display_name": "Word problems within 100 with \"more\" and \"fewer\" 2", "title": "Word problems within 100 with \"more\" and \"fewer\" 2", "all_assessment_items": ["{\"sha\": \"3b63cd981bffc029d3c8920dcbdbbe6e6b27ce1a\", \"live\": true, \"id\": \"x2b7dcccc5d77b62c\"}", "{\"sha\": \"dbfedb9182d36c6f5951a420387789adcfdecf28\", \"live\": true, \"id\": \"x3627ae1c80fdef12\"}", "{\"sha\": \"9c5a99332646e6e6e5378b2999f8bdc68e56e5f2\", \"live\": true, \"id\": \"xed7cc881f35ad6a0\"}", "{\"sha\": \"ed4db9d1815443c8795bb1ac6b98cd7ee5c64880\", \"live\": true, \"id\": \"xdd353a9f67d9e721\"}", "{\"sha\": \"6e0d4d67179b191c364675a87a5ba8e919a4eb33\", \"live\": true, \"id\": \"xe62e26b8b66bfa50\"}", "{\"sha\": \"825eb42686e18c1c810afd0b079533c3f3cdef0a\", \"live\": true, \"id\": \"xdc291368b7fa48fa\"}", "{\"sha\": \"5a63d370351955c440b8e5a14ee8b5c9051e092e\", \"live\": true, \"id\": \"x9551eccc675a1956\"}", "{\"sha\": \"9b567d43040b500c046d88e92cc1f10d0df923d2\", \"live\": true, \"id\": \"xe1360e3bfe0b927e\"}", "{\"sha\": \"ed42737a4366e608209ef4ac9b1f834ff4bb0582\", \"live\": true, \"id\": \"x85ecd7f4403d19d4\"}", "{\"sha\": \"abe3adf7152896f91dda4bad6eef3f8f3da784f1\", \"live\": true, \"id\": \"xb4faa3baa70617b1\"}", "{\"sha\": \"543edab9e6aaa9a7bf43dc44fa54476a13cf5628\", \"live\": true, \"id\": \"x3213e4802076a6a7\"}", "{\"sha\": \"99b8036fee849065327fa50c84c2c3a07f6a3c8c\", \"live\": true, \"id\": \"x4275250206324add\"}", "{\"sha\": \"8556ec3f8f89eac5d8eb0fec0b0663eb7d2b5dfe\", \"live\": true, \"id\": \"x4246f9221315dc11\"}", "{\"sha\": \"bed59be7c61e3ba1efa9e66f9b1470ab3bb5ff77\", \"live\": true, \"id\": \"x50ffcab9c227ac96\"}", "{\"sha\": \"c8c0d5e95af866e80fbe048fa03844c02580b72d\", \"live\": true, \"id\": \"x9efb8fdc1e004f4b\"}", "{\"sha\": \"9a746be0cd15948027e91c52539bcf165a020552\", \"live\": true, \"id\": \"xb46950b5ef991684\"}", "{\"sha\": \"f4a24cd914d27fa89b3bb88c966d8d1f24644345\", \"live\": true, \"id\": \"xf8d3571b2d1c5653\"}", "{\"sha\": \"e041e3912eb08fc5df956c8df8dcd42b7d1054e4\", \"live\": true, \"id\": \"x548ae7bcb6b6703f\"}", "{\"sha\": \"e3ff36a05e0ee0ad8dabe72c40c9c37c63116757\", \"live\": true, \"id\": \"x3837b232079529ac\"}", "{\"sha\": \"7347c1d0ac0a0969e8300fa363f09e248af2f2da\", \"live\": true, \"id\": \"x33d716a32a4849a0\"}", "{\"sha\": \"dee22d336a1a0633b6080e20ab7b8a2cf957e2ba\", \"live\": true, \"id\": \"x369cea6fa6d8d84a\"}", "{\"sha\": \"8534e36ada370c5b6baaaeb0509c485cda9879b6\", \"live\": true, \"id\": \"x46479449501fefe8\"}", "{\"sha\": \"746af9c52a667058da9f7d22e4c250e0b86bcf17\", \"live\": true, \"id\": \"x4f716e2dd0f9442d\"}", "{\"sha\": \"a5e4a55156349dc8546d67e35c8e6cbea428b9cc\", \"live\": true, \"id\": \"x279b51bd869604e2\"}", "{\"sha\": \"4d926edaa15dec2135cfe39418e8bccc847fa62d\", \"live\": true, \"id\": \"xb2c6168c15191748\"}", "{\"sha\": \"904635c4fd7e4ee43cfa09c9542b6ea193afcf82\", \"live\": true, \"id\": \"xe0d503e1f50ce9c5\"}", "{\"sha\": \"85d43b578d8857a553418121b2bac057d982530d\", \"live\": true, \"id\": \"xbb94b8326bae388e\"}", "{\"sha\": \"bd70557f512fba8215131ff180a83dfb0ad8a713\", \"live\": true, \"id\": \"xe18acf6a0b6f22bb\"}", "{\"sha\": \"7e32e49e93553efe7ff8628fb929d0795b26c035\", \"live\": true, \"id\": \"xde6c49bc206df1c4\"}", "{\"sha\": \"0ade086ad9b63f0155df854167a38253bd5bcbd7\", \"live\": true, \"id\": \"xf0ae7491bc88b815\"}", "{\"sha\": \"4b82f542156469414b91abf4c93be404d8e25904\", \"live\": true, \"id\": \"x4ff6f5bc0358fa16\"}", "{\"sha\": \"c91ad09753104d31d9220b429a48e4b69f58283b\", \"live\": true, \"id\": \"x717bcdd518c57efa\"}", "{\"sha\": \"554647b00684b8110df2c4df46934abe4cb9ea9a\", \"live\": true, \"id\": \"xe9766e814594979c\"}", "{\"sha\": \"75e36f6a2c25f391ccecbd87a0091f27fb55a958\", \"live\": true, \"id\": \"x86d29d67a945bb5d\"}", "{\"sha\": \"b441b2ff8a2f86a77fdf1f8307b2819bc483b8d4\", \"live\": true, \"id\": \"xf1f6b467ed18c879\"}", "{\"sha\": \"c70ce98320f9cabce7432dfbbd9c2eea53fbdd56\", \"live\": true, \"id\": \"xe1abea1adb20755a\"}", "{\"sha\": \"83eff434633da4ff96e1076875abff4905fe0469\", \"live\": true, \"id\": \"xdbd38c761f189109\"}", "{\"sha\": \"30a13093e80a9bddec8ab3a414904c3181203e7c\", \"live\": true, \"id\": \"x8f105312fe3631b0\"}", "{\"sha\": \"6381532056ffd8d875b62cb5bfb6257c6cda34f6\", \"live\": true, \"id\": \"x93b1f5971018a96a\"}", "{\"sha\": \"fb72df7e2519e2d6b44b16554f048864d0e20259\", \"live\": true, \"id\": \"xeb6fe29437cdeade\"}", "{\"sha\": \"b68d565bf91e42ae40a49ee03124329c3031fe4e\", \"live\": true, \"id\": \"xa22613130fd83101\"}", "{\"sha\": \"534f1674be5597513ffbe13fd4ee548b6fab8ba2\", \"live\": true, \"id\": \"xf7b3b510b49ff06c\"}", "{\"sha\": \"1bbb595c6ffa114c293021fa814d118fbfdddbb1\", \"live\": true, \"id\": \"xdb0e700ae32b2cfc\"}", "{\"sha\": \"64bd01d46a437f93e58f132062b5f0f463566548\", \"live\": true, \"id\": \"xa84ddbabad6480a7\"}", "{\"sha\": \"f75bccd6c204c2be0225e9791efef8389c12c491\", \"live\": true, \"id\": \"x7f95f82070f49b2d\"}", "{\"sha\": \"a15f96d2898c386d75cea5eb2a39f78843ac10b2\", \"live\": true, \"id\": \"x01cedbd1143722a8\"}", "{\"sha\": \"b410fd0a3317dc843c217d809669a69f5186a62d\", \"live\": true, \"id\": \"x2665446f121ac89a\"}", "{\"sha\": \"e927ee1b06bed26af84d2a601319f444be9e82fb\", \"live\": true, \"id\": \"xbefa85e29f747a01\"}", "{\"sha\": \"7c2c761bd496a4e9f666516ff389e0ef2361ff83\", \"live\": true, \"id\": \"x52e46aa25e4db746\"}", "{\"sha\": \"ca077ce9496c81adf9a03dcbc37982836667acd8\", \"live\": true, \"id\": \"x1134705451d50a35\"}", "{\"sha\": \"c0ac1e172b72e1b4adea9e01cdd233bce0423c7f\", \"live\": true, \"id\": \"xbb82eb1cfcca622b\"}", "{\"sha\": \"e9a616c453982347d51d7bbe5e5dbd5468970a77\", \"live\": true, \"id\": \"x8728ee2bc688b59a\"}", "{\"sha\": \"79c88ef597500db9e7617db217c75fe7527c1954\", \"live\": true, \"id\": \"xc25f4fd0e249a66a\"}", "{\"sha\": \"66b4704c28415034139e3eac67fdaa68fc69bd81\", \"live\": true, \"id\": \"x4b832fbbe1bec0ea\"}", "{\"sha\": \"59fb9355c1047e040028331f87069ac9767b3e75\", \"live\": true, \"id\": \"xc21312010ee75562\"}", "{\"sha\": \"082365bf2fb38e4942ae21e0e423f42b1bfc83ad\", \"live\": true, \"id\": \"x5e8a3a1a194e950a\"}", "{\"sha\": \"1f2c5ea3bbf9288abf9c8d93ddbfdc7cd7922f33\", \"live\": true, \"id\": \"x38c6d01189473031\"}", "{\"sha\": \"a9c1b3f91fad70ea1ece1523f9e90ee377c6e1a6\", \"live\": true, \"id\": \"xaaf0ba0229fe6828\"}", "{\"sha\": \"36f842f44c0b65343a712b762750bc1b29cdcc0a\", \"live\": true, \"id\": \"x0894a2e87ab59b58\"}", "{\"sha\": \"a87e11f1b5539ee1a7d501dcce562b110919b6a6\", \"live\": true, \"id\": \"x3ea1ada55610960c\"}", "{\"sha\": \"315d02741566936b8572eb70fadf0780d8dbc996\", \"live\": true, \"id\": \"xe3586c22c502314a\"}", "{\"sha\": \"2259a1f292b5b23a2d2f0b3e9f3c233bff283d04\", \"live\": true, \"id\": \"xa294370ed2a6e98c\"}", "{\"sha\": \"b649f1c5507db2f148261a520f08bca43e21f2e0\", \"live\": true, \"id\": \"xd8e12d72996dd6c1\"}", "{\"sha\": \"a1242fd062c14a14c8b051195c217f0a82de6a9c\", \"live\": true, \"id\": \"xe5b85e1c74ff9955\"}", "{\"sha\": \"712e4a353e184e4c8abbba68c6712da1e2e6c8ed\", \"live\": true, \"id\": \"x9b2e52e10b232929\"}", "{\"sha\": \"c049c6a6a91fb67a77f0e65c5582dbd02def6064\", \"live\": true, \"id\": \"x3edbb9be7df5b4a0\"}", "{\"sha\": \"42f951edca9785f3365788b159daff2914e58c77\", \"live\": true, \"id\": \"x013482c49336a86a\"}", "{\"sha\": \"f23c8254377db314eca1d5ff16e598da18306023\", \"live\": true, \"id\": \"xa5bdbb6f8c839bc6\"}", "{\"sha\": \"b0f85f0e3ef581eb80140dcb4a3585e09c7536c8\", \"live\": true, \"id\": \"x543ef9b837f660be\"}", "{\"sha\": \"0777335a511cbea4ee35bc675d146870d2cce85c\", \"live\": true, \"id\": \"x1ce8642aa07ece3b\"}", "{\"sha\": \"2caf02b5198ab0c4b697a54b2b56ba3d8a0ed645\", \"live\": true, \"id\": \"xbff01c88dd625202\"}", "{\"sha\": \"ab2978c39aac298e631b8c4dc97319eed13eadd4\", \"live\": true, \"id\": \"x178153c17501d607\"}", "{\"sha\": \"0ee3ef7f9dc428f5a0c00be12f622b0bf91daf27\", \"live\": true, \"id\": \"x699a6989ad23315f\"}", "{\"sha\": \"0e2b55ab516ead30a85745bedac84d253ea65829\", \"live\": true, \"id\": \"x3eda7729c49dbfe6\"}", "{\"sha\": \"0ba89bd9f5e1d76bc4d380a2e56ae8e8f3fd5392\", \"live\": true, \"id\": \"x57f7356354ce64ab\"}", "{\"sha\": \"28e8cfa7ed74cd2216361fff3420fd3e0969a6ee\", \"live\": true, \"id\": \"x7f826c6ee1ed3ef0\"}", "{\"sha\": \"802e7042b7a0c2f528adf35d515b71eeb38d8bbb\", \"live\": true, \"id\": \"x01059cc9d70ce276\"}", "{\"sha\": \"fe92fcc4a50c21744db65f19aa219c15809dcf9f\", \"live\": true, \"id\": \"xf9a752250b9cbc82\"}", "{\"sha\": \"6285de890cdbecc474f62205a38f925846368808\", \"live\": true, \"id\": \"xfecc41970a377faa\"}", "{\"sha\": \"57c6f3b75a0702856aec26cb6879a61258aac417\", \"live\": true, \"id\": \"xae0f64622a8711fd\"}"], "description": "Practice solving more word problems by finding how many more (or fewer) objects there are.\u200b\u00a0Numbers used are 100 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-100-level-4", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-100--level-4", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-and-subtraction-word-problems-within-100--level-3"], "exercise_id": "addition-and-subtraction-word-problems-within-100--level-4"}, "-using-a-freezing-point-depression-osmometer-to-measure-serum-osmolality": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/-using-a-freezing-point-depression-osmometer-to-measure-serum-osmolality/", "id": "-using-a-freezing-point-depression-osmometer-to-measure-serum-osmolality", "display_name": "Using a Freezing Point Depression Osmometer to Measure Serum Osmolality", "title": "Using a Freezing Point Depression Osmometer to Measure Serum Osmolality", "all_assessment_items": ["{\"sha\": \"bc0fbc5764655cc7440235773abd12c2ff94227e\", \"live\": true, \"id\": \"x47dd2b1cb6dd6af7\"}", "{\"sha\": \"49fe0b3aa1cc8f87ea796db4c08b44814208f136\", \"live\": true, \"id\": \"x552eca18c34f9478\"}", "{\"sha\": \"3c31f6d5deb99ee39b8acfaead7a7efb73fac5cb\", \"live\": true, \"id\": \"xbf6cd0acde3e008c\"}", "{\"sha\": \"17dcc627a4ca65a6838a529bdcb5430b5688f5a7\", \"live\": true, \"id\": \"xe5758ea21962eb96\"}", "{\"sha\": \"6ba08b1a76bdf18dfda0ad66bf6f4d77e4772376\", \"live\": true, \"id\": \"x3ba48b33321bef55\"}"], "description": "Questions related to osmolality and colligative properties", "basepoints": 10.0, "slug": "-using-a-freezing-point-depression-osmometer-to-measure-serum-osmolality", "kind": "Exercise", "name": "-using-a-freezing-point-depression-osmometer-to-measure-serum-osmolality", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "-using-a-freezing-point-depression-osmometer-to-measure-serum-osmolality"}, "principles-of-bioenergetics-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/principles-of-bioenergetics/principles-of-bioenergetics-questions/", "id": "principles-of-bioenergetics-questions", "display_name": "Bioenergetics questions", "title": "Bioenergetics questions", "all_assessment_items": ["{\"sha\": \"f0b6d447d5cc476ea5fc3ecf8ca1ef95a361181b\", \"live\": true, \"id\": \"x8673df75417d4cf1\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"63db9f65babff9c45d84c61784d30b4ad036c0b7\", \"live\": true, \"id\": \"x5f44da6925416a0e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"255ce9a43b9658599349d15dc700840093156958\", \"live\": true, \"id\": \"x8a0c0d1a8c08ecac\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7d59b63910469ddbeec4b45ef1cc4c193c481fee\", \"live\": true, \"id\": \"x92521bb4d155483b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6208fe55958f18d64baccb17b9833a438951551f\", \"live\": true, \"id\": \"x39fe2c4835d02e68\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8978cf11fd59d48fd4395a657d154d1f82a76093\", \"live\": true, \"id\": \"x5e363fbc0efd055b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bfdcd5ef2cf488e426dbef65bfa0ee62d7f2cbab\", \"live\": true, \"id\": \"x647a1459df6aa07d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"468dc7054857d4e671162da36f5a20255c6c3f1f\", \"live\": true, \"id\": \"x9a53da38c33d63e6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"265b9b63040e6c367a40ba3d4b16b7d943b2272c\", \"live\": true, \"id\": \"x2d1243c6da3b28be\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"017621d57869c0dcdd846645693bfabd70e7e6b4\", \"live\": true, \"id\": \"x249aabbbb756a7db\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ee564383c016411542be671ead4d5d89c454102c\", \"live\": true, \"id\": \"xd20ed7da919357e4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6624f64f8281fd1afe6732339f0338ecf4a78717\", \"live\": true, \"id\": \"x710b63fd20149ac5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e1e3f60a74de5dcb844885ae4c226e796a67ffa0\", \"live\": true, \"id\": \"x1c642d68e6508ac8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"752f7094899f43d08ff84c7641f401860d6b6ed8\", \"live\": true, \"id\": \"x61f8ee6d4c88f5be\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f755dc60fe7d76b373f06f7f57aa33024e0cabd3\", \"live\": true, \"id\": \"xd1cd7777f81fffb4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f391bff631075b12a780b6a2844c90ab8b3f1906\", \"live\": true, \"id\": \"x45d44ccb3d598fad\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8b6231fa198c52f057b3bd330894093e23914782\", \"live\": true, \"id\": \"xe17dcf948e998d51\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f548a8032f302e4c2cb25a9a0885daa40acdd21c\", \"live\": true, \"id\": \"xe13a646b1b02b242\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e0273ab37e93a4467fe8196cc1ebf057a26afd64\", \"live\": true, \"id\": \"xe96afa37baff67d0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c0a5d4bd79da6aca3d7efd0cb87cca3a971ec3d\", \"live\": true, \"id\": \"x2846cd5dc7f7bb5c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Questions related to bioenergetics", "basepoints": 10.0, "slug": "principles-of-bioenergetics-questions", "kind": "Exercise", "name": "principles-of-bioenergetics-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "principles-of-bioenergetics-questions"}, "addition-and-subtraction-word-problems-within-100--level-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/addition-and-subtraction-word-problems-within-100-level-1/", "id": "addition-and-subtraction-word-problems-within-100--level-1", "display_name": "Addition and subtraction within 100 word problems 1", "title": "Addition and subtraction within 100 word problems 1", "all_assessment_items": ["{\"sha\": \"ec5c98af4d8240cb67a3689e41ec50eb0a2c65aa\", \"live\": true, \"id\": \"xaf252be2af8f5442\"}", "{\"sha\": \"327b4b0592a4a7824ab58262fbd9435b3294c552\", \"live\": true, \"id\": \"x6d516100aa3874f1\"}", "{\"sha\": \"06d3ad8dbdc321bad6861d0d18ecacd68ce7eeb9\", \"live\": true, \"id\": \"x7fc1458712b868af\"}", "{\"sha\": \"4524c308f7e61e27a64269f16488c567e7ed0398\", \"live\": true, \"id\": \"x33625f128135564a\"}", "{\"sha\": \"6cf2f6321330f67bb0b31b8bca3b6f3fb01d4159\", \"live\": true, \"id\": \"xaa715274506ce583\"}", "{\"sha\": \"3b981583c84ffc1c0e6254b2b29477d09aef06ff\", \"live\": true, \"id\": \"xf4e7fbc2e32c016f\"}", "{\"sha\": \"d699095a75b9a2960cbd95dd06dd4867fb95d985\", \"live\": true, \"id\": \"xaad7ab4fb7d44e95\"}", "{\"sha\": \"f4a9cd31a47808f560b98d9119e2f27dbfce60f0\", \"live\": true, \"id\": \"xa284781539c193bc\"}", "{\"sha\": \"0fa18b4caed188e65a51b336b539ca924a60f115\", \"live\": true, \"id\": \"x1d92e1d94f9ed1db\"}", "{\"sha\": \"2f0cfdff777fce1902afb2c35b711b18323f170e\", \"live\": true, \"id\": \"x3384d23f8522e02e\"}", "{\"sha\": \"37ca38d6872341549f189adbbad9a03016d3e0fc\", \"live\": true, \"id\": \"x8c2d4b09eb576ad6\"}", "{\"sha\": \"7974d26bf09b8d7f378903dbbcf9ac58fbf9b66f\", \"live\": true, \"id\": \"xf5cfa8a3cec147e7\"}", "{\"sha\": \"6b4745620d80a1ada2a308a6d5045fcdbcf2c0d5\", \"live\": true, \"id\": \"x13a2084eaac051db\"}", "{\"sha\": \"2857cda3fdc76d187ffa779d6a47d45039dbfe5c\", \"live\": true, \"id\": \"x7f856b00d1f5608c\"}", "{\"sha\": \"dac139a11a47c3541dbe129955e0aefe3caa877f\", \"live\": true, \"id\": \"x7ae32e40278cfbe7\"}", "{\"sha\": \"0a6cd732436ef9807efffe2cff3759677e08d2bf\", \"live\": true, \"id\": \"xc958c8f53e1d22d2\"}", "{\"sha\": \"caa595a2cd7130ec09fb22c41dfd9f2164b34c05\", \"live\": true, \"id\": \"xb8f3cbb4ee633ebb\"}", "{\"sha\": \"3e4b262ead6d8c107a050da451d97f96e9d7d38a\", \"live\": true, \"id\": \"x700b832526734ca2\"}", "{\"sha\": \"809e26638b5978f5c1402017bbb0a32a86f89486\", \"live\": true, \"id\": \"x6c83455b233c4e95\"}", "{\"sha\": \"2af38449f7e84cd9f9984dcbf1c5a920634d8da8\", \"live\": true, \"id\": \"x00eafbfc33c8e159\"}", "{\"sha\": \"5c1e0341915e6d6f13835bcddeea105fa35a178f\", \"live\": true, \"id\": \"x6aabde0dfaf71f4b\"}", "{\"sha\": \"013df4bd5451f6b1f0a59d3e4f73b15e81cb6cd6\", \"live\": true, \"id\": \"x57be69ee688ab239\"}", "{\"sha\": \"d9701f36c77d2318f21220660420f2d9ff77d353\", \"live\": true, \"id\": \"x9814b8c8855cb1dd\"}", "{\"sha\": \"3cf3a4d0f105e469c2d705827d1871015a979276\", \"live\": true, \"id\": \"xcfea8e705632f09f\"}", "{\"sha\": \"f620d15879880ef7d3d791971070c4fef300535f\", \"live\": true, \"id\": \"xc7cf5ecf4569b1ec\"}", "{\"sha\": \"a21c736b2cf52a1f5bf407da0229bd7b91ccdf25\", \"live\": true, \"id\": \"x596c4dc5e7a19cc5\"}", "{\"sha\": \"8f2cf394cfbbe7238f8be9fa297b4fe60d90c760\", \"live\": true, \"id\": \"xa36e64a0e1f715a8\"}", "{\"sha\": \"ac3c97606273e632ace9a339159c9042eb80066a\", \"live\": true, \"id\": \"xde5a63f96f392baf\"}", "{\"sha\": \"ba8c3d985cc3e6c983a70e97c101a4145df4e72f\", \"live\": true, \"id\": \"xb3b68674d6024de1\"}", "{\"sha\": \"a4f0b7fb61c2199a4e068c1dfb7a9ca25bf10bac\", \"live\": true, \"id\": \"x184eb901fa3284fd\"}", "{\"sha\": \"ecbd98dc9b0a5060c4b008bc2e18eacddb6efd6f\", \"live\": true, \"id\": \"x59a08a6450161e3b\"}", "{\"sha\": \"14078b2f298a43a7904f5867541ed9a3c12848fd\", \"live\": true, \"id\": \"x1f77a6bafbc62c96\"}", "{\"sha\": \"7bbbfbdb3bc24ae82270b119b3c71d16eb897fdd\", \"live\": true, \"id\": \"xb15c9f22ddf4183b\"}", "{\"sha\": \"5990e11577b475c2e7e327a7094a0424924e436c\", \"live\": true, \"id\": \"xc4ad7a5fc9a8cf04\"}", "{\"sha\": \"80aca98af4a5349bc5b822c89ae17a172a0aae53\", \"live\": true, \"id\": \"x4b974813d02113d5\"}", "{\"sha\": \"79b40fa3f61bbb6827fb904f3cdbaf9d199ddaf9\", \"live\": true, \"id\": \"x3deeefdcf491131d\"}", "{\"sha\": \"9a9f1d7189983bd97c898641330b26fba4591260\", \"live\": true, \"id\": \"x4cb36804ef0fd56a\"}", "{\"sha\": \"7a97f627d03a7277d6d297fd75499fb918f49fe5\", \"live\": true, \"id\": \"x1b70e5b92f5f0018\"}", "{\"sha\": \"341985d493be0a5f2653a4e9a0c89521db22de26\", \"live\": true, \"id\": \"x1ac7a4da6ba95221\"}", "{\"sha\": \"eece205d8fc91a58460d096956ef889a08e9381f\", \"live\": true, \"id\": \"xa193a353c35a6c0b\"}", "{\"sha\": \"2f04655e96a5bf202929d0f53e5d79a7bc3d3d38\", \"live\": true, \"id\": \"x7f71a7321d46640b\"}", "{\"sha\": \"575d84563f5503b3b0e905e306b667616957d1ea\", \"live\": true, \"id\": \"xedda62e0d2b228b5\"}", "{\"sha\": \"0cdc30cdec6ec2c90a71c67ed0d290b93762f9df\", \"live\": true, \"id\": \"x35cb97b40be9fddd\"}", "{\"sha\": \"59eb06457ec5841777f34861c0f0765ac7855965\", \"live\": true, \"id\": \"xf22fe2338e5876e9\"}", "{\"sha\": \"e93830a4e94c6a292a7c0b762918353f105c724c\", \"live\": true, \"id\": \"x785fbc3d9b1dd2b4\"}", "{\"sha\": \"7be554b1899f7e2a1913414420197556e8319ac0\", \"live\": true, \"id\": \"x15e628c7e6681b41\"}", "{\"sha\": \"093a07c88bb7db1b30fc079510953f14207c8a11\", \"live\": true, \"id\": \"x938b7bb248757fc6\"}", "{\"sha\": \"6b9496702c894d7923b312230c5ade52cb18c34c\", \"live\": true, \"id\": \"x3a57f1004c584d8d\"}", "{\"sha\": \"780a57ad10d94e6ee01278a87ab98f9bb02891d9\", \"live\": true, \"id\": \"x866d70de274d142a\"}", "{\"sha\": \"74d5eaaa54d7edfa7edfcedb83f007fa8833253a\", \"live\": true, \"id\": \"x4d28e454282432c0\"}", "{\"sha\": \"c4cc71b2d02b0cb802d4d58219825aceea2c8a36\", \"live\": true, \"id\": \"x5d441e3ab3646fda\"}", "{\"sha\": \"4ed5c6b27718c3720bc47a7a31e7321b8025a4e6\", \"live\": true, \"id\": \"x1c50ea01299eed4b\"}", "{\"sha\": \"fc97c1f26a0c6ebe81f3b992b6ead52fcdfdb07c\", \"live\": true, \"id\": \"x3c9695b08becde28\"}", "{\"sha\": \"ad4384d5e2845efbf23f577abe1226aa25c14bda\", \"live\": true, \"id\": \"x11b6876ca6106516\"}", "{\"sha\": \"3f0b6efb91758506ac1d03cd5071555e84e54688\", \"live\": true, \"id\": \"x5a7dfaf6ae9fd6aa\"}", "{\"sha\": \"d06ee083db8efb3c9d798241d77dbc44a74aef8b\", \"live\": true, \"id\": \"x4e44845ff15175c1\"}", "{\"sha\": \"7fa16b3c15b5ed9acf2195ffeaaa78a53adcf3ab\", \"live\": true, \"id\": \"xa9a0411262f94fd4\"}", "{\"sha\": \"58407c6ab722220b387082a6efb4c243d1bf197b\", \"live\": true, \"id\": \"xedfcb4c2d51faef7\"}", "{\"sha\": \"21effb0357dd8f30c203b32899fb0eabffbf1c7b\", \"live\": true, \"id\": \"xbe8c45869e132d76\"}", "{\"sha\": \"2e0686fbcc5d4b1216086c9f91952d839a3b224b\", \"live\": true, \"id\": \"xba8ef7063bfad2cb\"}"], "description": "Practice adding and subtracting to solve word problems. Numbers used are 100 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-100-level-1", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-100--level-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_3", "addition-and-subtraction-word-problems-within-20--level-1"], "exercise_id": "addition-and-subtraction-word-problems-within-100--level-1"}, "addition-and-subtraction-word-problems-within-100--level-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems/addition-and-subtraction-word-problems-within-100-level-2/", "id": "addition-and-subtraction-word-problems-within-100--level-2", "display_name": "Addition and subtraction within 100 word problems 2", "title": "Addition and subtraction within 100 word problems 2", "all_assessment_items": ["{\"sha\": \"2e825b87d8f701ddd66c42342263994910f2d1b7\", \"live\": true, \"id\": \"xc375753a5df4692c\"}", "{\"sha\": \"8bc8b3aaf6d0e5db131f80f1616f56dc403b2abe\", \"live\": true, \"id\": \"x2fd43e8fad5673b4\"}", "{\"sha\": \"b42e5cf101516080fb5c1294a2a3133c4f8b8ad3\", \"live\": true, \"id\": \"xb68e9bfec59dcd76\"}", "{\"sha\": \"6af2a04e881f8642981bfaba5f328fcef75bd7e6\", \"live\": true, \"id\": \"xd4e9626e1b8fa8a4\"}", "{\"sha\": \"29960beb2a7ff1fad96803959ef6bfd8c9c4323a\", \"live\": true, \"id\": \"xd281aee469f17ca6\"}", "{\"sha\": \"c4344a15455a610069b133742fd301debb41beb1\", \"live\": true, \"id\": \"xada77495a3ff8c4b\"}", "{\"sha\": \"a5bb2859b9f53a92686373d85b779bbd5085eb67\", \"live\": true, \"id\": \"xb13063bff8c61ab9\"}", "{\"sha\": \"9b591650f13c3b52991b174629428038515da8a7\", \"live\": true, \"id\": \"xcf55a3894d20af84\"}", "{\"sha\": \"cd0644a35e6115e551ce734aeb004e60085dafe6\", \"live\": true, \"id\": \"x5b765976c1149c28\"}", "{\"sha\": \"808eb6cf9521845f8223621da0b6465150781dc9\", \"live\": true, \"id\": \"x285e33033e2878ae\"}", "{\"sha\": \"9619e51cdcc9fb024ab98b514d549dbdb36ae7f0\", \"live\": true, \"id\": \"x4ef665215e5e8252\"}", "{\"sha\": \"8c83c4d95a480395cd2afa291da934d8fdc5c5dc\", \"live\": true, \"id\": \"xe9b5cbc973504f25\"}", "{\"sha\": \"50e4a751bd4f28cc051f6998b930dd7668a8acf1\", \"live\": true, \"id\": \"x0a8c73c33bfdccc5\"}", "{\"sha\": \"61d6d95f46d534046577abdf4de8606c33121d02\", \"live\": true, \"id\": \"x20a9e68297080983\"}", "{\"sha\": \"d60ba851eed572f65e51e9d10bedba2798e7ae5e\", \"live\": true, \"id\": \"xc39f9ea12fdb923d\"}", "{\"sha\": \"d117ceee8b010dfbaaf853ec1270f6a6d15dcaba\", \"live\": true, \"id\": \"xe356435ba7ffc2ca\"}", "{\"sha\": \"2eddadb9cc3c3ac7ee901803f26ed1027eda332c\", \"live\": true, \"id\": \"xe55f61c918e8e9df\"}", "{\"sha\": \"978420e93a63a92d0497141a90f55e6d24719d39\", \"live\": true, \"id\": \"x9580e072a0cfcd89\"}", "{\"sha\": \"8d5b15da92a5b81fff322e927c5ae3ce05627069\", \"live\": true, \"id\": \"x816d828816dba8d9\"}", "{\"sha\": \"abae9d330e6962684eba453c490fbb34d8a5a861\", \"live\": true, \"id\": \"x98305f5a2af9d585\"}", "{\"sha\": \"805a376451748097a3cff77d01987b2f515b62fc\", \"live\": true, \"id\": \"x5d383b589da5bdfa\"}", "{\"sha\": \"6332a4f7627f9da1f5e8ba36aa732e51ca8bc837\", \"live\": true, \"id\": \"x2052b8b0c44288be\"}", "{\"sha\": \"1ee60e4c0071e026fcf2dedd93cb7a575f942475\", \"live\": true, \"id\": \"x4d17250121da1717\"}", "{\"sha\": \"0d820fb3d3b36daf97c987c876ad9f9c314671d0\", \"live\": true, \"id\": \"x6c2f093bebd26ad5\"}", "{\"sha\": \"a11cf46c0daf232dab81e752c96264e15be02ede\", \"live\": true, \"id\": \"x84f684853ce03425\"}", "{\"sha\": \"8f3f4d77918afacc670a5eb26bf0158b23df8dcf\", \"live\": true, \"id\": \"x05de997c4e26d635\"}", "{\"sha\": \"1b15c3961d43e05f98865909e02c7c6646008aaf\", \"live\": true, \"id\": \"x7865b7b4345127d8\"}", "{\"sha\": \"d39a0439c53badc49cbab8d793b4dd4b345aabac\", \"live\": true, \"id\": \"xd591e162fe3b8b43\"}", "{\"sha\": \"7ebb4f9c79790ee5fc0f480f2ab5d6195456b8ec\", \"live\": true, \"id\": \"xf6b7ef5a59db61dd\"}", "{\"sha\": \"e62a5779ea6430c5ad473be539d32210282fd5c3\", \"live\": true, \"id\": \"x85da37bc0e7000ba\"}", "{\"sha\": \"5607a31f838c4f32b0e332eb5b6d5e8442527f7e\", \"live\": true, \"id\": \"xf989c47b905b3cfe\"}", "{\"sha\": \"525c2c8f6a4c2a6f62b0409978cc5e7024e5ebeb\", \"live\": true, \"id\": \"xb421cbbdfa4bdbad\"}", "{\"sha\": \"b188fadf7bc966105c3f75ee648c350727002d2b\", \"live\": true, \"id\": \"x9fd7ad77c21b08b0\"}", "{\"sha\": \"d2f55d5b5d7d5141e95ec0d03cdc2e43869ccb82\", \"live\": true, \"id\": \"x9a6d1bb77009d873\"}", "{\"sha\": \"ede42bc6c4a59212cb0ca29bbaf4101dc1743889\", \"live\": true, \"id\": \"xc6d766cca67ece83\"}", "{\"sha\": \"42da37e5f66e9b8276677f901814b6aa7184f825\", \"live\": true, \"id\": \"x848fd17ccbfa8c03\"}", "{\"sha\": \"ec5723391f1994c2d4824f8fbe63fc917708fa68\", \"live\": true, \"id\": \"x0477d2f1719820fc\"}", "{\"sha\": \"b970ad8fa266b4803550d006c18fceb859430352\", \"live\": true, \"id\": \"x6dbf5e0b011cdffb\"}", "{\"sha\": \"7bd9c8d328b990e832e798a89cca370d73beda33\", \"live\": true, \"id\": \"x9b10a3863115bcd2\"}", "{\"sha\": \"6880b8453a1a182d309e2966a986288a1084fc37\", \"live\": true, \"id\": \"xf0aa99e304a7a1b0\"}", "{\"sha\": \"b6af5cc8460f6966f7294fc3397dffa6ffea4c8c\", \"live\": true, \"id\": \"x0a55ceab3fafc5e0\"}", "{\"sha\": \"537353a6fd2fcdf7681485281b81d197c76fc04f\", \"live\": true, \"id\": \"x38132d6e8602be6a\"}", "{\"sha\": \"bd4c18c0b8b824189255b8cb2ad65da4c1b0e018\", \"live\": true, \"id\": \"xbc085cfaa0083fa6\"}", "{\"sha\": \"121fab4dd856cb93d6551e3d0780bcd493602188\", \"live\": true, \"id\": \"x466b63db34de6e2c\"}", "{\"sha\": \"dcedbeea1225f1f096f25ffd5c0df13443697e13\", \"live\": true, \"id\": \"x60189c52f0065e70\"}", "{\"sha\": \"d7784057f69c0775bfd91488db07d8a840da6fa5\", \"live\": true, \"id\": \"x17057dafc17a6756\"}", "{\"sha\": \"1190fb769d862f94023f6b966e6d3958251cf103\", \"live\": true, \"id\": \"xf8544e4b1df75521\"}", "{\"sha\": \"3044fcc7c00ccdd0c1a20c497d379d942da8ace5\", \"live\": true, \"id\": \"xe3b931193b30d365\"}", "{\"sha\": \"c48742490932a1651dd73faf51968ed1a7f9f8d7\", \"live\": true, \"id\": \"x5740232b2d86bc25\"}", "{\"sha\": \"b76e6e6ee7e2a835c22092e76b50e5454cb84ce3\", \"live\": true, \"id\": \"x575653eee6d1f8f5\"}", "{\"sha\": \"8196bbc3046f6187958589815ec8d72829f3df50\", \"live\": true, \"id\": \"xa61abcd5319b4db6\"}", "{\"sha\": \"f1de2db271e3078fb06363951b8b18573fcc251a\", \"live\": true, \"id\": \"x7e2665f13387e086\"}", "{\"sha\": \"9565f0cbd1d5bac9e315b8423e7d98e42daacb79\", \"live\": true, \"id\": \"x1daf014c252ac87c\"}", "{\"sha\": \"6c9c51e99e5ca7b151bfb444b67d0696b0c293b4\", \"live\": true, \"id\": \"x748794350594da86\"}", "{\"sha\": \"4b3520d7f681a795e27ae56c2cd1c33b348569f5\", \"live\": true, \"id\": \"xe03bba170fbbd402\"}", "{\"sha\": \"62d49dd859c42980285abc533e582df6cec01ca2\", \"live\": true, \"id\": \"x33963e2c1a9d4da0\"}", "{\"sha\": \"0c4407d3851223ed8f8b7f4050ec90665df77dd7\", \"live\": true, \"id\": \"x67a8a454c387deb5\"}", "{\"sha\": \"f938025789c5b133390a254c2e2427ca558e5932\", \"live\": true, \"id\": \"x95c1b361669f4a7d\"}", "{\"sha\": \"308bdd5ab6b20f7bbe4a8281a22e986b1fec0664\", \"live\": true, \"id\": \"x4d7d13bbe3862ad7\"}", "{\"sha\": \"c3d9788c49f253454105024237c5c4658de7071e\", \"live\": true, \"id\": \"x7e72041222b3231a\"}"], "description": "Practice solving more challenging word problems with addition and subtraction. The problems are more challenging because you have to think about a missing number in an addition or subtraction problem. Numbers used are 100 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-100-level-2", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-100--level-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-and-subtraction-word-problems-within-100--level-1"], "exercise_id": "addition-and-subtraction-word-problems-within-100--level-2"}, "addition-and-subtraction-word-problems-within-100--level-3": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-100/cc-early-math-more-fewer-100/addition-and-subtraction-word-problems-within-100-level-3/", "id": "addition-and-subtraction-word-problems-within-100--level-3", "display_name": "Word problems within 100 with \"more\" and \"fewer\" 1", "title": "Word problems within 100 with \"more\" and \"fewer\" 1", "all_assessment_items": ["{\"sha\": \"7c7bfc00c61832f98b50cf7245146c0dcf3f6ffd\", \"live\": true, \"id\": \"x1907d12bf1c0ed9e\"}", "{\"sha\": \"d09abb7a081dfab2591df001e928ebd85f50882f\", \"live\": true, \"id\": \"x5e7082a5d41ac5d3\"}", "{\"sha\": \"ada6b7c51f4b037662dacf84c6b2061e4cdf1a1b\", \"live\": true, \"id\": \"x7e670f4d0f4ac840\"}", "{\"sha\": \"33160066de5fa46a8f15394eb133d766c43665da\", \"live\": true, \"id\": \"xe41f4a0d88ceae81\"}", "{\"sha\": \"ad0cb050fb3f3533782806eee4f773cdb8c90ff3\", \"live\": true, \"id\": \"x5f561277520b83d4\"}", "{\"sha\": \"1912424d57aebdc27fee7e471a48ade0fbacb972\", \"live\": true, \"id\": \"xb12a9ef0569056ef\"}", "{\"sha\": \"b59de7b22e2a404a179d94b3c0fb36c36dd595fa\", \"live\": true, \"id\": \"x004a8f3faf0adc8f\"}", "{\"sha\": \"66193a1feb7028fe93af2245a9fab0842583de8d\", \"live\": true, \"id\": \"xa3b6aff51416e2e5\"}", "{\"sha\": \"6a7a0d0f199babe4e2f224af17408a56ba156a4a\", \"live\": true, \"id\": \"x60f721d3e7deb440\"}", "{\"sha\": \"e9f44da31012b255bad6b0d7bb0b1fecdafeb45d\", \"live\": true, \"id\": \"x9cc73d02fa3754f7\"}", "{\"sha\": \"86fcd36d7f34e85b4a9ef20f70d946afb2c6d90c\", \"live\": true, \"id\": \"x55b95f550f9d01d7\"}", "{\"sha\": \"65a071fd5e56cc91defff6868021bd59b2cdbc37\", \"live\": true, \"id\": \"xe480957d79446636\"}", "{\"sha\": \"f9c74441b1670524b885c7f260cf9bb7cc2aad6a\", \"live\": true, \"id\": \"x2e22adafd71dadac\"}", "{\"sha\": \"0e377e9c982d30bc17293c74c231e5bf5f5f497d\", \"live\": true, \"id\": \"x636a056505f93fe7\"}", "{\"sha\": \"c190c5a55fe19382855b9dac5f0478d401aa3ea5\", \"live\": true, \"id\": \"xb60e20f53aa49ff8\"}", "{\"sha\": \"5e0d1865ba8363decdae299c861ae57792f58284\", \"live\": true, \"id\": \"x12f839210bea8b47\"}", "{\"sha\": \"4ed9dca912d48593ecaacef0e35637a10e1ca061\", \"live\": true, \"id\": \"x5235ea818b205f65\"}", "{\"sha\": \"853294a5ada0d4202cc30805c5f3ad6941eb581a\", \"live\": true, \"id\": \"x9507562f9e55c885\"}", "{\"sha\": \"bdd2f1ac948b951260f259524b063eccf46fc773\", \"live\": true, \"id\": \"xee4f9b9c432ee4b5\"}", "{\"sha\": \"504ed98785850596f1f0ccf6c36a35c4fe4532bd\", \"live\": true, \"id\": \"x832aebb671517545\"}", "{\"sha\": \"d1d45f9bdfe9affb3e3b5372473221f07e9b9bd3\", \"live\": true, \"id\": \"x22b3275ed9776d5a\"}", "{\"sha\": \"f83bf4e8c2b113df93769403106a42f122c91fb6\", \"live\": true, \"id\": \"xe60de544ec4702e0\"}", "{\"sha\": \"68544fe181e133c81382b4223677b8dc4e01f64e\", \"live\": true, \"id\": \"xea2926933e70a36e\"}", "{\"sha\": \"4c385b8e4cde177c1ff67ae5b0d53cf02f4d2d9e\", \"live\": true, \"id\": \"x77299126a7963e28\"}", "{\"sha\": \"4edf01196f481cfa2e3e634b27a4478abfd1165f\", \"live\": true, \"id\": \"xf119d15a6a695bfb\"}", "{\"sha\": \"fe9e60de603923396c6bbf93f3b2be6d77955a32\", \"live\": true, \"id\": \"xb854c7abc0ea9299\"}", "{\"sha\": \"48ea46b5ab7069e1720b53203a224d591d449530\", \"live\": true, \"id\": \"xf66b445363079fd6\"}", "{\"sha\": \"03405cc9616cb37e88e8d5b142ca54fd20a1516a\", \"live\": true, \"id\": \"x98e987e5c74fe72d\"}", "{\"sha\": \"87dc704614a8f380e6985eb02ceea7d5f6eec413\", \"live\": true, \"id\": \"x7d86d8ec168b6261\"}", "{\"sha\": \"0e7abbaef18d044c22e9ec1edf9fa0ce437270b0\", \"live\": true, \"id\": \"x8f9875da1c0c76c8\"}", "{\"sha\": \"3189b6e2f6723e039d1674c09fb5b5054891740e\", \"live\": true, \"id\": \"x1e101ee6ac9b0c75\"}", "{\"sha\": \"363eead77bb490c6a724ed5afe86a27ba7a8e81e\", \"live\": true, \"id\": \"xd0d3f04528a34c2c\"}", "{\"sha\": \"b10bcc70c264456496e739e330dd975304c4d0d6\", \"live\": true, \"id\": \"x6e2171892046b095\"}", "{\"sha\": \"4c919ac633bd89ad9e88dc5148eb711acf00e50c\", \"live\": true, \"id\": \"xa08d2c8fb5f51342\"}", "{\"sha\": \"f1a8b22f6150434517e4406d53a441bf4bd501f5\", \"live\": true, \"id\": \"x96f3e1cf2291de1f\"}", "{\"sha\": \"a7fdf1a615e97b53f971c4291b2037bfe7ebb12a\", \"live\": true, \"id\": \"x723cf01e95ef688b\"}", "{\"sha\": \"0fb1f59b3508efecf329ac73bf5ed25cc3c03375\", \"live\": true, \"id\": \"xe64d830333f8a72d\"}", "{\"sha\": \"9a6464c733ff96cf13c28d7a66a1dfe532aa25c4\", \"live\": true, \"id\": \"xe5c5863261aed73c\"}", "{\"sha\": \"2e2a8c03cdef395cc0457e727286d03f8b4d5a52\", \"live\": true, \"id\": \"x352864e072c8a9f1\"}", "{\"sha\": \"8e13eff1ddc6ef4a726d05ddd6edf1939c184dd6\", \"live\": true, \"id\": \"xa6e76f21adb59cf1\"}", "{\"sha\": \"e7b7c59c967086871884ecc8646ee35cc654cb78\", \"live\": true, \"id\": \"x738ec28be9b21860\"}", "{\"sha\": \"88ec0bff4463c7f7134e934246934350fba0e8fc\", \"live\": true, \"id\": \"xb80ad0c20a3700ce\"}", "{\"sha\": \"4bfd890d639f08ef092dbc4bb0cbd2a4ebe52923\", \"live\": true, \"id\": \"xc41e6ec433505329\"}", "{\"sha\": \"285434dff2bef0948f9b4193b846ea1b5d5fff5b\", \"live\": true, \"id\": \"x069ab1d7f55b90b2\"}", "{\"sha\": \"bbf1e278c97e256572898f80c9be828097f4353a\", \"live\": true, \"id\": \"xc088890dbdf86edd\"}", "{\"sha\": \"e116bd7856ee28187e0b2413fac9157df35baa0f\", \"live\": true, \"id\": \"x5f16741803746c72\"}", "{\"sha\": \"6de10cb6b744d379e20ab135012ab44064c25fc3\", \"live\": true, \"id\": \"x4fad60d0f1fe4b17\"}", "{\"sha\": \"08e942052d7e9aa3dba3f7120656323aa6f10b62\", \"live\": true, \"id\": \"x1842d3c8638acdd5\"}", "{\"sha\": \"e71b2b843c8e4b3be1c6afc7d838577defaf5f28\", \"live\": true, \"id\": \"x3936f1cd4bed50cf\"}", "{\"sha\": \"f3d9e8096178a42aab86d13cedbe34cc6882d915\", \"live\": true, \"id\": \"x41ba5a72bc603b6d\"}", "{\"sha\": \"3d54e04866709a390813f213d41573ca8b514e29\", \"live\": true, \"id\": \"x925224daba2c8e81\"}", "{\"sha\": \"bf28717ce2afb2f0358a207783d48728445acd4a\", \"live\": true, \"id\": \"xdf097917c69b4f11\"}", "{\"sha\": \"1d1b553da6413a8788e45995ca7f5ce2074e9b6c\", \"live\": true, \"id\": \"xd40a77b7b65d5906\"}", "{\"sha\": \"a4f62966e9262027a942e35ba8cf47c048223cbe\", \"live\": true, \"id\": \"xf40759083a76533e\"}", "{\"sha\": \"f2d655e7cc3875a3d4c37a741ac3f1b9cdacc896\", \"live\": true, \"id\": \"xff2451ac4637e295\"}", "{\"sha\": \"b88c2f0cab2dd06ffd063f223170e14b86ade420\", \"live\": true, \"id\": \"x4e849b27dc83d4b9\"}", "{\"sha\": \"8c926a1610e6d8c7d4ee416e785a8335fe56f1cc\", \"live\": true, \"id\": \"x089e9f5ddbd7ee7d\"}", "{\"sha\": \"90b80431c5fc44872014d6d42281367d0770cef1\", \"live\": true, \"id\": \"xb6cac89b458f6288\"}", "{\"sha\": \"5b6bcd765bbb07f9d99da611d888e226eabe070c\", \"live\": true, \"id\": \"xff4d546886608861\"}", "{\"sha\": \"bf4183c3ff997163cedd8c0bbeb52a57fe12d7a6\", \"live\": true, \"id\": \"xb732b21281d60518\"}", "{\"sha\": \"aea43f2b88b0b5fb90f0632d04fd4f6e9b22b630\", \"live\": true, \"id\": \"x480eb32b6e63d59b\"}", "{\"sha\": \"6394c7508014e780a9497e093d103939fdf48772\", \"live\": true, \"id\": \"x793f379abd5b65e8\"}", "{\"sha\": \"c0ecc7d59557cd9f167cecba8fa7f324792f9007\", \"live\": true, \"id\": \"xc1193d10c52489c8\"}", "{\"sha\": \"2d77dddc1eea6d83376c72764b77954f14b0369e\", \"live\": true, \"id\": \"x456acee3017390c4\"}", "{\"sha\": \"349982fc974fe20f14c4f54bc3538c0d97e548a4\", \"live\": true, \"id\": \"xfdf32a896af5fb58\"}", "{\"sha\": \"4629d25fdfdc227a86b550c835f752cc5c12da84\", \"live\": true, \"id\": \"x9246ad98ae2acb2f\"}", "{\"sha\": \"57ff09a6fe0c5074273ccb26ab0525bf58bc681c\", \"live\": true, \"id\": \"x119cc39076a8801b\"}", "{\"sha\": \"63fde172b265561d2ebbe35f84f075929d566303\", \"live\": true, \"id\": \"x93e33abc96bbb1cd\"}", "{\"sha\": \"e9ec3a2c908a2890da7c228c7927ad5f2955fd7a\", \"live\": true, \"id\": \"x9dcffd28db7207d9\"}", "{\"sha\": \"c7ad88039e881a68750ed61246dd8ffc145af321\", \"live\": true, \"id\": \"xef6175cbdffa28c1\"}", "{\"sha\": \"c9fd4759e66d8a2f1f7c2fea2e9344de61e8fc18\", \"live\": true, \"id\": \"x0afb07e07b0796d8\"}", "{\"sha\": \"89bd191e0678c30a0dd933a012327766cfc3fcd1\", \"live\": true, \"id\": \"x3fd4ba617487a579\"}", "{\"sha\": \"2fbf8eb8a28e668a27fd0d56d5d50eba32620322\", \"live\": true, \"id\": \"x3e8c771e9b7fed14\"}", "{\"sha\": \"f2e7e8f69218128ba74fb0cdb7d43ee42bedb502\", \"live\": true, \"id\": \"x66430a8139d1d0e9\"}", "{\"sha\": \"f50da2121b4a2a861fc57be79456e8d7dbdf53b6\", \"live\": true, \"id\": \"x323e4d85470ac73b\"}", "{\"sha\": \"912bbee50fc0468bd4e215109a37e41cf88d91a4\", \"live\": true, \"id\": \"xab3d87ec8373b76e\"}", "{\"sha\": \"5f959ec6cac5e0049a0b8e28dbd36c15ae9530cd\", \"live\": true, \"id\": \"x028a4009a9575b54\"}", "{\"sha\": \"46c80e7005485318978b3b9378c9e84a1dcada75\", \"live\": true, \"id\": \"x3922a4cc32926175\"}"], "description": "Practice solving word problems by finding how many more (or fewer) objects there are. Numbers used are 100 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-100-level-3", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-100--level-3", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-and-subtraction-word-problems-within-100--level-2"], "exercise_id": "addition-and-subtraction-word-problems-within-100--level-3"}, "lam--the-jungle-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/lam-the-jungle-quiz/", "id": "lam--the-jungle-quiz", "display_name": "Lam, The Jungle (quiz)", "title": "Lam, The Jungle (quiz)", "all_assessment_items": ["{\"sha\": \"c6eba1b49387890389665574030ab7f2b90b1df3\", \"live\": true, \"id\": \"xba40be68a2e16baa\"}", "{\"sha\": \"7e2588dcd3559667840b02dccd0cc8ca0b0f7e7d\", \"live\": true, \"id\": \"x62f474f8d0841fef\"}", "{\"sha\": \"d57fb902671d4242e9a94cd30cc7863babf76c19\", \"live\": true, \"id\": \"xc94f4318de4ae6aa\"}", "{\"sha\": \"22ffa2d114c1dff0ac355977cadef9cf5d48406d\", \"live\": true, \"id\": \"xc231738483b08735\"}", "{\"sha\": \"4492544fbac5003271216a74d44805377d05349b\", \"live\": true, \"id\": \"xe29dd516c0a16fdd\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "lam-the-jungle-quiz", "kind": "Exercise", "name": "lam--the-jungle-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "lam--the-jungle-quiz"}, "two-step-word-problems-with-addition--subtraction--multiplication--and-division": {"uses_assessment_items": true, "id": "two-step-word-problems-with-addition--subtraction--multiplication--and-division", "display_name": "Two-step word problems with addition, subtraction, multiplication, and division", "title": "Two-step word problems with addition, subtraction, multiplication, and division", "all_assessment_items": ["{\"sha\": \"ddbc47c5b6de0e939a001337dcdf20a67c945b90\", \"live\": true, \"id\": \"x49f207935a8e9229\"}", "{\"sha\": \"b82c4c34a62aa2276e9484ffbc390316e00de89c\", \"live\": true, \"id\": \"x1e34515a3b6eee7b\"}", "{\"sha\": \"28aac0c7ce0460051b8bd57b41cc41c7df7694b9\", \"live\": true, \"id\": \"xebb0c36094c17879\"}", "{\"sha\": \"26c87c4e63f45ac0348d9db3f901173fd94f065c\", \"live\": true, \"id\": \"xdcac7d163ccba8f8\"}", "{\"sha\": \"9d65eee989b9c86c7a158975ff274ea4d0195851\", \"live\": true, \"id\": \"x9c238d63e54caa46\"}", "{\"sha\": \"eb8d20b76832b50fffc3d5d502e496d94547277d\", \"live\": true, \"id\": \"x886e3da7a71e2fe7\"}", "{\"sha\": \"fd5fce87609683c880e2a53b451e742c7effd3ef\", \"live\": true, \"id\": \"x47c6e871940e25be\"}", "{\"sha\": \"a412e4a15d3e122801b8da0b587e7febafa676cb\", \"live\": true, \"id\": \"x830a29436209616d\"}", "{\"sha\": \"d8d28aea883b6a3ce2e2210826ab95d56984f40b\", \"live\": true, \"id\": \"x09bd5ab76eb85776\"}", "{\"sha\": \"bb6f8133c0569d960fcdacf49e1a1eb8802f1e23\", \"live\": true, \"id\": \"x2c765c40a0b6d9b2\"}", "{\"sha\": \"c9b8676b11ba43a10a0034e9c75e95a6a6ca8456\", \"live\": true, \"id\": \"xfb4d14cdb0fa4c97\"}", "{\"sha\": \"08da8c86ef283137b52d1388156f50d842b8737b\", \"live\": true, \"id\": \"x516d5f997ea93a76\"}", "{\"sha\": \"0c470dff1c891e26ca6f3f128d70cddb7d7515c9\", \"live\": true, \"id\": \"x6475c068b6ce80ef\"}", "{\"sha\": \"8063c13c92bdde52174e58e6fba345ce41860bc0\", \"live\": true, \"id\": \"xe4e99c14eb0b5486\"}", "{\"sha\": \"44fb81b98b790e5562cff4d086a446fc0300bd4a\", \"live\": true, \"id\": \"x852d027ea4e55e0b\"}", "{\"sha\": \"2648fad3b8c3b02c59d59c39410fbbc645d51553\", \"live\": true, \"id\": \"x3458ccdb694c559e\"}", "{\"sha\": \"a983435371affb5cb75b64edb1758e443c27a72b\", \"live\": true, \"id\": \"xaa543af5cdc24a67\"}", "{\"sha\": \"5ae4b0f9d02d9a695b3fc7fddb51c6f26ce91b77\", \"live\": true, \"id\": \"x4641d4267dd3ecfb\"}", "{\"sha\": \"8acec4bfbfe8afaa39330703f57216a5bbf0d2cf\", \"live\": true, \"id\": \"x65111d458aae1230\"}", "{\"sha\": \"e2f144143c025d3f59bf7f3ae9165426637bc6a7\", \"live\": true, \"id\": \"x044e88986ff3ce7e\"}", "{\"sha\": \"18f9719cea001f012c40736ac306d49952a986f4\", \"live\": true, \"id\": \"xd19df2dad341b436\"}", "{\"sha\": \"95e2745cf123cea2c8e1899d2461cd4fd866aa1a\", \"live\": true, \"id\": \"x5d1345bb61c0c508\"}", "{\"sha\": \"dbcb30cc01bdcdec8d0fb55316bca1d80ff77ee7\", \"live\": true, \"id\": \"xfedb43c24d6a8814\"}", "{\"sha\": \"cf21f1b050637ed296a06e5c2e512e058c0876e1\", \"live\": true, \"id\": \"x91785685a73758ab\"}", "{\"sha\": \"a3bce58fda963991387e5025554a25f0b92dfcd4\", \"live\": true, \"id\": \"x67b532da558db57d\"}", "{\"sha\": \"79bc39b0241f205bde8bed60e591f5bc045a2b2a\", \"live\": true, \"id\": \"xbc12a805438dbe37\"}"], "description": "Solve two-step word problems. \u00a0Some questions include estimation. \u00a0", "basepoints": 10.0, "path": "two-step-word-problems-with-addition-subtraction-multiplication-and-division/", "slug": "two-step-word-problems-with-addition-subtraction-multiplication-and-division", "kind": "Exercise", "name": "two-step-word-problems-with-addition--subtraction--multiplication--and-division", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_4", "multiplication_1", "division_1"], "exercise_id": "two-step-word-problems-with-addition--subtraction--multiplication--and-division"}, "the-refraction-of-light-through-the-human-eye": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-refraction-of-light-through-the-human-eye/", "id": "the-refraction-of-light-through-the-human-eye", "display_name": "The Refraction of Light Through The Human Eye", "title": "The Refraction of Light Through The Human Eye", "all_assessment_items": ["{\"sha\": \"531cb45f1b09de31cedf511587680f0fae2ddc34\", \"live\": true, \"id\": \"x89c5562b987971c8\"}", "{\"sha\": \"3eb60165ea23ba893a5f07b829dd9dd873f0c77c\", \"live\": true, \"id\": \"x89a7635ac34d31be\"}", "{\"sha\": \"54ad72ad3f4059392ff037bed5834d472d86fbd0\", \"live\": true, \"id\": \"xb8e6bfa913e0e91f\"}", "{\"sha\": \"82c4adf361c87c6bf709e9b75a9704bccce3405c\", \"live\": true, \"id\": \"x2c6292e2adf2642b\"}", "{\"sha\": \"700e775423f5474951c3a14186a3a2547007a8b0\", \"live\": true, \"id\": \"x2f6dcd09641f00b0\"}"], "description": "Questions reflated to refractions of light", "basepoints": 10.0, "slug": "the-refraction-of-light-through-the-human-eye", "kind": "Exercise", "name": "the-refraction-of-light-through-the-human-eye", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-refraction-of-light-through-the-human-eye"}, "social-psychology-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/behavior/social-psychology/social-psychology-questions/", "id": "social-psychology-questions", "display_name": "Social psychology questions", "title": "Social psychology questions", "all_assessment_items": ["{\"sha\": \"a9da9753b15a5db39dba243cc7d64b9eb62b22ba\", \"live\": true, \"id\": \"x6346339458ed020e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88d608e29f9467bd13cf6ac602c992a2af45c87f\", \"live\": true, \"id\": \"xd13148565e26bb7e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be26dfb113a05b01714a39e515bdd7891452badd\", \"live\": true, \"id\": \"xaf68f9858c6522ee\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e7ec3d9daedf9938a04dfcea33bb139f1639733\", \"live\": true, \"id\": \"xf760de66868fa3e9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2ef224373a8a9653dfde861182f50c5af272d7e2\", \"live\": true, \"id\": \"xe5b99232399e5414\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"27817ff2e5490abec57e2e91a097ec9acd9381a0\", \"live\": true, \"id\": \"xd97fed4009ad73ca\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e8f251427e1c3e2f0f2528e33dfeecabdc23ec6e\", \"live\": true, \"id\": \"xac3dcf396444a4bc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c90f1a6a55f9f24e25c1030ebedcc28b6466d06c\", \"live\": true, \"id\": \"xeafc6e2118dfb3c2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ce5250c6ef21bee0448acbe12ed745da3981ba0c\", \"live\": true, \"id\": \"x27c4137979608d70\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b577499db0f80db21b5880f56ed8243c504d1aa6\", \"live\": true, \"id\": \"xc81e3bf6377a26d4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Social psychology questions", "basepoints": 10.0, "slug": "social-psychology-questions", "kind": "Exercise", "name": "social-psychology-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "social-psychology-questions"}, "comparing-proportional-relationships": {"uses_assessment_items": true, "id": "comparing-proportional-relationships", "display_name": "Rates and proportional relationships", "title": "Rates and proportional relationships", "all_assessment_items": ["{\"sha\": \"3eb4d99aa0c7bdfb13e264a59e06414d93d6faa8\", \"live\": true, \"id\": \"xd29be1cd\", \"perseus_api_major_version\": null}", "{\"sha\": \"01aa7ae74b43e7b645a28d5a6a7527914cb4094f\", \"live\": true, \"id\": \"x5fca68fa\", \"perseus_api_major_version\": null}", "{\"sha\": \"3ce98955a073dc1b61f13633e2535b802c9f557c\", \"live\": true, \"id\": \"x08fb2998\", \"perseus_api_major_version\": null}", "{\"sha\": \"3e7752ddbf3f5d0273ee5a61471c5287428efeb2\", \"live\": true, \"id\": \"xef1fe9b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"f685adf13ab317c76bbc2c3440d341f182c45a86\", \"live\": true, \"id\": \"x3ffd6f4d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5e8ba66255be004c5e7333f1ffdfd2575165db98\", \"live\": true, \"id\": \"x60220bc7\", \"perseus_api_major_version\": null}", "{\"sha\": \"7395c062c1d390b0fe298af11cb1dd304d2dbf6f\", \"live\": true, \"id\": \"x8a49329a\", \"perseus_api_major_version\": null}", "{\"sha\": \"b11b7bfb30939d0a357160a06d5f8dcdf041c6b3\", \"live\": true, \"id\": \"x2e2cec42\", \"perseus_api_major_version\": null}", "{\"sha\": \"e8cdc8921c0f3bafa0fc04d095bd587060a696ff\", \"live\": true, \"id\": \"x1b5b5f30\", \"perseus_api_major_version\": null}", "{\"sha\": \"16007a4c238290c5d3efcac4fe4ec5ac77d345ab\", \"live\": true, \"id\": \"x330d6987\", \"perseus_api_major_version\": null}", "{\"sha\": \"e87b49f760d7fc04074d333a2ff3f1369e24e949\", \"live\": true, \"id\": \"x51960408\", \"perseus_api_major_version\": null}", "{\"sha\": \"a585cda254bb42e5c1b807c545f0407f22fbf05a\", \"live\": true, \"id\": \"x08afffcf\", \"perseus_api_major_version\": null}", "{\"sha\": \"0c31cdef833b4dc0cdefe48003461e0bff1ddc1b\", \"live\": true, \"id\": \"xa43fd538\", \"perseus_api_major_version\": null}", "{\"sha\": \"e21b216d2ade2cdaa428fa9d72aa9670ae765c7a\", \"live\": true, \"id\": \"x54abf868\", \"perseus_api_major_version\": null}", "{\"sha\": \"e23d268fe280f35f9625cea1c542a290436a6f72\", \"live\": true, \"id\": \"x64bf6720\", \"perseus_api_major_version\": null}", "{\"sha\": \"1b7e5e36cee071255b12812ec61266c4f2543629\", \"live\": true, \"id\": \"x56675826\", \"perseus_api_major_version\": null}", "{\"sha\": \"51f437a0b5d82b8c850a8d27ee09e604a0ced368\", \"live\": true, \"id\": \"x775646bf\", \"perseus_api_major_version\": null}", "{\"sha\": \"1cc1964a3a51031b36f07ab444d89a3e4f2a99ba\", \"live\": true, \"id\": \"x76f197aa\", \"perseus_api_major_version\": null}", "{\"sha\": \"bf340b1ad9804646d86588bfa60611f724a12736\", \"live\": true, \"id\": \"x312fbe05\", \"perseus_api_major_version\": null}", "{\"sha\": \"77f3a7335bc3ee5b8617253f0161743ef7ddb42b\", \"live\": true, \"id\": \"x21fa4ac2\", \"perseus_api_major_version\": null}", "{\"sha\": \"e75dcbba938f663edb9bb14fe034b20e5c7ecd2f\", \"live\": true, \"id\": \"x687905fe\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b7cbc909bec891c2212ef8da12440f1d6238b0f\", \"live\": true, \"id\": \"xff38a084\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c0690a7db8c1f10434600a57704aaf82e973250\", \"live\": true, \"id\": \"xbade191b\", \"perseus_api_major_version\": null}", "{\"sha\": \"c68a52d824e370d32d5cbc8413533b0f1620b1e0\", \"live\": true, \"id\": \"x55fa5600\", \"perseus_api_major_version\": null}", "{\"sha\": \"09a015a26e1b5ba51f8d07313f76a22b3b988e30\", \"live\": true, \"id\": \"x49a93624\", \"perseus_api_major_version\": null}", "{\"sha\": \"6a76226dfb1944b650642031f2d5c8c86727c72a\", \"live\": true, \"id\": \"x02ecc45c\", \"perseus_api_major_version\": null}", "{\"sha\": \"eb1a49bb6274935968ef38deb6cd4e8e6ba2cdab\", \"live\": true, \"id\": \"x329428b9\", \"perseus_api_major_version\": null}", "{\"sha\": \"1f5c8b20f2557f3ffc0573c4faede28a796888fb\", \"live\": true, \"id\": \"x034d7676\", \"perseus_api_major_version\": null}", "{\"sha\": \"703abe83c65564d168ed36cb367df850b8889153\", \"live\": true, \"id\": \"x6513feb6\", \"perseus_api_major_version\": null}", "{\"sha\": \"279eeb9d74bfbb254ca2956c801eef4318ebb5f8\", \"live\": true, \"id\": \"x03918fd1\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 23.0, "path": "comparing-proportional-relationships/", "slug": "comparing-proportional-relationships", "kind": "Exercise", "name": "comparing-proportional-relationships", "seconds_per_fast_problem": 26.0, "prerequisites": ["constructing-and-comparing-proportional-relationships"], "exercise_id": "comparing-proportional-relationships"}, "genetic-mutations---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/genetic-mutations-passage-1/", "id": "genetic-mutations---passage-1", "display_name": "Mutations that cause Crohn\u2019s Disease", "title": "Mutations that cause Crohn\u2019s Disease", "all_assessment_items": ["{\"sha\": \"743f632b1717ca3acb3cbd59e7e93c39a3ad27bd\", \"live\": true, \"id\": \"x614eb819a30a1e05\"}", "{\"sha\": \"0e525dd193b0fbd5380aa8da841b0214ed058192\", \"live\": true, \"id\": \"x873eede7768b107b\"}", "{\"sha\": \"909ce628af8b96e74c64cc93e88f8fed1390c9d8\", \"live\": true, \"id\": \"x1aa0a542204e378e\"}", "{\"sha\": \"475061205bb3b418f992111372abc3976ff9413b\", \"live\": true, \"id\": \"x4765378fd1c9e6dd\"}", "{\"sha\": \"72096a6b9cdca210a39dcd9ee80428f81bf3cf4e\", \"live\": true, \"id\": \"xdb9e07160b4d8c96\"}"], "description": "Genetic mutations - Passage 1", "basepoints": 10.0, "slug": "genetic-mutations-passage-1", "kind": "Exercise", "name": "genetic-mutations---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "genetic-mutations---passage-1"}, "genetic-mutations---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/genetic-mutations-passage-2/", "id": "genetic-mutations---passage-2", "display_name": "Genetics of Myotonic dystrophy", "title": "Genetics of Myotonic dystrophy", "all_assessment_items": ["{\"sha\": \"8da0de137ecde8511a5ea4ebe65321f31855eaab\", \"live\": true, \"id\": \"x21dc543cd65598f8\"}", "{\"sha\": \"7922a9ca06e943ab5eb881bcc07bec8f92a7b269\", \"live\": true, \"id\": \"xbdbc27cd927a6b82\"}", "{\"sha\": \"f572cfa059034d4b582af22b7a4a6fefacad5d6d\", \"live\": true, \"id\": \"x1f8ee96ae72a8f1b\"}", "{\"sha\": \"0ca7819afb2d161b37fc06f3267b3b5f587c1814\", \"live\": true, \"id\": \"xcaf37dbf0b665e77\"}", "{\"sha\": \"1a13b0b4f0f89a5e4a7e6888e8c87c8c27ea3cbc\", \"live\": true, \"id\": \"xf40a6e8553a5cea9\"}"], "description": "Genetic mutations - Passage 2", "basepoints": 10.0, "slug": "genetic-mutations-passage-2", "kind": "Exercise", "name": "genetic-mutations---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "genetic-mutations---passage-2"}, "constructing-and-interpreting-linear-functions": {"uses_assessment_items": true, "path": "khan/math/algebra/two-var-linear-equations-and-intro-to-functions/linear-functions-modeling/constructing-and-interpreting-linear-functions/", "id": "constructing-and-interpreting-linear-functions", "display_name": "Linear models word problems", "title": "Linear models word problems", "all_assessment_items": ["{\"sha\": \"aab819fcf895a1db2ed658442e1bbc62282da222\", \"live\": true, \"id\": \"xcd27afea135ab4e7\"}", "{\"sha\": \"c1bd366b4032804eeafd92891cb23939bb94ab06\", \"live\": true, \"id\": \"x475eec95cde3a3f9\"}", "{\"sha\": \"e11802aecdd183411f62e1524ed3c2b74553aa75\", \"live\": true, \"id\": \"x48e57509eab39b52\"}", "{\"sha\": \"1eae63b43460b1e9d714c69fc9aae5e44b975ceb\", \"live\": true, \"id\": \"x3912077ca6c3c0de\"}", "{\"sha\": \"f9b5b6d3cb3022e015b9839d7e35f81f0e80df5c\", \"live\": true, \"id\": \"x41795fac67bfb2aa\"}", "{\"sha\": \"d7a13a0983f7a4b58e758b9442580f6d78facaf2\", \"live\": true, \"id\": \"x84d9e353f91c0464\"}", "{\"sha\": \"13bfe51629637456148d4a5d1f28b951ff5937f8\", \"live\": true, \"id\": \"x39a58325551ada6d\"}", "{\"sha\": \"38a0f824409e884968867513c0e81dbec4a86b3c\", \"live\": true, \"id\": \"xb33c1fd54cc11aef\"}", "{\"sha\": \"4149d2a73d69c0ac5cd3abacf03bb09e1b8b68f3\", \"live\": true, \"id\": \"x4eadb8d62e0f06b1\"}", "{\"sha\": \"bf0bb64ed9929c4babeec996c6d24caa34cb4c76\", \"live\": true, \"id\": \"xf5fe2dfbe0984b3e\"}", "{\"sha\": \"70b7a59df8bda73ca5bee3096832075bd386ad69\", \"live\": true, \"id\": \"x5881d44b4513f0e1\"}", "{\"sha\": \"589a91c810967b003dedca58e546541d23333009\", \"live\": true, \"id\": \"x8873aefdd95b4aa0\"}", "{\"sha\": \"cdb6433c075d91cbc2bb31594717f13c00b33a60\", \"live\": true, \"id\": \"x5d14ed5da87f959c\"}", "{\"sha\": \"170ba0438037f900a995cdb2bbe2bc0ea983280c\", \"live\": true, \"id\": \"xc01760ae6722f479\"}", "{\"sha\": \"c13ec2957907515dd72ebe25f1ef53858a4fa693\", \"live\": true, \"id\": \"xf882909ebc7eb729\"}", "{\"sha\": \"f4bdb6dfb9584e5703729d23086717ddda04f5db\", \"live\": true, \"id\": \"xd66f73c1fbc63c69\"}", "{\"sha\": \"3e8be5b64bfb4b912677fa49d7847349d056f21a\", \"live\": true, \"id\": \"x3b6d3abae4d69dac\"}", "{\"sha\": \"8a8bc37c5663874068d1a9dfa8621faf23905b1f\", \"live\": true, \"id\": \"xdc22f8d3ee6efc16\"}", "{\"sha\": \"ebdabe0db81512f6db6bc4c97e52f36779729591\", \"live\": true, \"id\": \"xfcec4c89d6dfdf9c\"}", "{\"sha\": \"88ae15d58e3b29965e2abeb6eb759ec832883b7d\", \"live\": true, \"id\": \"x2d7d443d5f145674\"}"], "description": "", "basepoints": 24.0, "slug": "constructing-and-interpreting-linear-functions", "kind": "Exercise", "name": "constructing-and-interpreting-linear-functions", "seconds_per_fast_problem": 28.0, "prerequisites": ["constructing-linear-functions-word-problems"], "exercise_id": "constructing-and-interpreting-linear-functions"}, "neuron-membrane-potentials---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/neuron-membrane-potentials-passage-2/", "id": "neuron-membrane-potentials---passage-2", "display_name": "Demyelinating disease and aging ", "title": "Demyelinating disease and aging", "all_assessment_items": ["{\"sha\": \"dff4f4900dae4b9f90ffd95880c6115e7a6fe996\", \"live\": true, \"id\": \"x67618d87be2ef4ed\"}", "{\"sha\": \"f5cdc2de2d1a91a78a94b3c0ff869949e571fcba\", \"live\": true, \"id\": \"x15cca1bbd75a7277\"}", "{\"sha\": \"02aebc84def0a5e174109f99debde4d0060fe14e\", \"live\": true, \"id\": \"xdbc576101cd33698\"}", "{\"sha\": \"dd92263ea393ef20649ffa3a0d690a86bb511138\", \"live\": true, \"id\": \"x90db16924f6e553f\"}", "{\"sha\": \"f38503a89f3309845776a856bb90cb15ec339aa7\", \"live\": true, \"id\": \"xc469136391e75247\"}"], "description": "", "basepoints": 10.0, "slug": "neuron-membrane-potentials-passage-2", "kind": "Exercise", "name": "neuron-membrane-potentials---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neuron-membrane-potentials---passage-2"}, "neuron-membrane-potentials---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/neuron-membrane-potentials-passage-1/", "id": "neuron-membrane-potentials---passage-1", "display_name": "Ion channel effects on neuron membrane potentials", "title": "Ion channel effects on neuron membrane potentials", "all_assessment_items": ["{\"sha\": \"e2ba0d7657cda692dfe917adac5f4f27a72c9d8a\", \"live\": true, \"id\": \"x21bb1e3463fc59e0\"}", "{\"sha\": \"1b7d5894c3aa4a49bbb776e01c648cba20e34cfd\", \"live\": true, \"id\": \"x21cd5f1b346a5a02\"}", "{\"sha\": \"61cbdc4542d9b7b61719554e2a49b46c1095b45c\", \"live\": true, \"id\": \"x288d4f176cbc3891\"}", "{\"sha\": \"9df1275b7a474d57c700e6a2ec878ebaba0a4983\", \"live\": true, \"id\": \"x8ba8a1ba6ee984da\"}", "{\"sha\": \"d2571b19119cb21bfe497ef33d54a39d8e5b5f84\", \"live\": true, \"id\": \"x8e112837536bb084\"}"], "description": "", "basepoints": 10.0, "slug": "neuron-membrane-potentials-passage-1", "kind": "Exercise", "name": "neuron-membrane-potentials---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neuron-membrane-potentials---passage-1"}, "understanding-inequalities-and-the-number-line": {"uses_assessment_items": true, "id": "understanding-inequalities-and-the-number-line", "display_name": "Comparing positive and negative numbers on the number line", "title": "Comparing positive and negative numbers on the number line", "all_assessment_items": ["{\"sha\": \"609ce1640dc0376380ea4f53c9364b653086284d\", \"live\": true, \"id\": \"xba56d4cd69295e9e\"}", "{\"sha\": \"14f71c65ab99877be0d22f18d2980efe0acb2dab\", \"live\": true, \"id\": \"x5aba438d00a24ec0\"}", "{\"sha\": \"2319d3a5c909ddc49638d399f2be2a9995ede6ba\", \"live\": true, \"id\": \"xbf379595a60b3c5f\"}", "{\"sha\": \"588194883e255f4cbf6a7ac19d3261c200fccc0d\", \"live\": true, \"id\": \"x97cf30925eaf0805\"}", "{\"sha\": \"0c8d4a7d0436afa31d6ed5ceda98afc11743eed2\", \"live\": true, \"id\": \"x6335b21b41ad398a\"}", "{\"sha\": \"b56c36b91bb7fff94c2b8d13424d188b6cf70f78\", \"live\": true, \"id\": \"xc1b784582a0f5e05\"}", "{\"sha\": \"58fdd60db6aa7f28898e79c0908cbb4815165c81\", \"live\": true, \"id\": \"x3e6b52f6f29176ea\"}", "{\"sha\": \"3cdc9c04645c9b7f645bd7a0a40957cb11e6b634\", \"live\": true, \"id\": \"x8584e891d0414dd9\"}", "{\"sha\": \"4f40da3737db3900d353d7e68db956f95ad22171\", \"live\": true, \"id\": \"x8ad573279602e0c2\"}", "{\"sha\": \"7ee2c5f20d8173b55af2f1d5c491dbba6cc88f4a\", \"live\": true, \"id\": \"xf5a79bea594b70c3\"}", "{\"sha\": \"2509f26ca848b9028684d96cc3ee8f95321d0636\", \"live\": true, \"id\": \"xc77e3f6784670cc4\"}", "{\"sha\": \"022099f7de5f2bddcf4806be380e7fa62c01f2a5\", \"live\": true, \"id\": \"x186686581a696c40\"}", "{\"sha\": \"74627979b90bf6dfb7c816ffb289f29c3fe436fa\", \"live\": true, \"id\": \"xea2c50951cab7cb3\"}", "{\"sha\": \"b9af3747afdacc92c37c311a1c138799bd57d076\", \"live\": true, \"id\": \"x5a5d4c899200d98b\"}", "{\"sha\": \"89e43742134fb7e4fe3830e3555761f0078b1e4f\", \"live\": true, \"id\": \"x0707991e0a8f5f7d\"}", "{\"sha\": \"d72301cccf24430d4442f680be6d8b1cc63890ab\", \"live\": true, \"id\": \"x52fd757934b5cb24\"}", "{\"sha\": \"8e728e1779cd177eba87b4f29791799e7923c2b0\", \"live\": true, \"id\": \"x88bbecef48b1395a\"}", "{\"sha\": \"bccbd54624d984dc3b0b9584caa990124c7516ee\", \"live\": true, \"id\": \"x8adf28d34cfa03fb\"}", "{\"sha\": \"29345d8b74040975c9e6bcaaf2c67a25b40ccc52\", \"live\": true, \"id\": \"x61783134e6426546\"}", "{\"sha\": \"4fecd6b79e6a5e210d390bb11eb6ef29f9b2409f\", \"live\": true, \"id\": \"xadc5fbecb828bbf2\"}", "{\"sha\": \"0f7bf2c83e5cc685764e51066307c65136b97a8e\", \"live\": true, \"id\": \"x44bd2f29a3153673\"}", "{\"sha\": \"9ed82662a4771778ad24a204368a4381d4b5876b\", \"live\": true, \"id\": \"x96407c71318ac40a\"}", "{\"sha\": \"63520015cd5feee5ade678b406b4aae472ccb53d\", \"live\": true, \"id\": \"x1e5e3a463a7fe1eb\"}", "{\"sha\": \"ea8236e566407e3bf7009dce481ce66c297184a3\", \"live\": true, \"id\": \"x5db05ceda936c5d0\"}", "{\"sha\": \"f513e77d22fa2ee983346cf7a3d91f10858bc7ed\", \"live\": true, \"id\": \"x7b49e10b83d18dbc\"}", "{\"sha\": \"279e7ac52b20ce63b41ce11a01dc0165da5c58fa\", \"live\": true, \"id\": \"x63be039102b62a98\"}", "{\"sha\": \"291511295f7a5b767b3d53079d3adf01142fb2a9\", \"live\": true, \"id\": \"x97fa696c66e0b11e\"}", "{\"sha\": \"806089159b6091db38fb8d854cd2894ae796d422\", \"live\": true, \"id\": \"x7c61e7280f77ac6a\"}"], "description": "Practice comparing positive and negative numbers by thinking about their positions on the number line. Numbers to the right are greater than numbers to the left.", "basepoints": 10.0, "path": "understanding-inequalities-and-the-number-line/", "slug": "understanding-inequalities-and-the-number-line", "kind": "Exercise", "name": "understanding-inequalities-and-the-number-line", "seconds_per_fast_problem": 4.0, "prerequisites": ["fractions_on_the_number_line_3", "opposites-on-the-number-line"], "exercise_id": "understanding-inequalities-and-the-number-line"}, "understanding-the-process-for-solving-linear-equations": {"uses_assessment_items": true, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/basic-equation-practice/understanding-the-process-for-solving-linear-equations/", "id": "understanding-the-process-for-solving-linear-equations", "display_name": "Understanding the process for solving linear equations", "title": "Understanding the process for solving linear equations", "all_assessment_items": ["{\"sha\": \"7614c17f82297cc7a1e105d525c68c8a57a75669\", \"live\": true, \"id\": \"xd8c62e5a4433eabd\", \"perseus_api_major_version\": null}", "{\"sha\": \"73c00712a5db9524cc021dafafbfdbb3ae887a37\", \"live\": true, \"id\": \"xec1688b4e7444620\", \"perseus_api_major_version\": null}", "{\"sha\": \"e824f13a349c03ec10fdd31241f56403fc0b2802\", \"live\": true, \"id\": \"xb6b1d3d578dbd432\", \"perseus_api_major_version\": null}", "{\"sha\": \"378f1ca44dec1bf20b847f6622251cfc0ae27c98\", \"live\": true, \"id\": \"x280327c5236fbbe0\", \"perseus_api_major_version\": null}", "{\"sha\": \"cbf1118b13c78ae06a58280073df49e023147bc9\", \"live\": true, \"id\": \"x753e42d9f079f58b\", \"perseus_api_major_version\": null}", "{\"sha\": \"dfde95de6a21209b187fe315fcc24aa6d128cbdf\", \"live\": true, \"id\": \"x7af7b8c6a902de58\", \"perseus_api_major_version\": null}", "{\"sha\": \"fa0d9fc6b00816c67e1eddeac5c0759aba8dd5a6\", \"live\": true, \"id\": \"xa1ae105716d84f49\", \"perseus_api_major_version\": null}", "{\"sha\": \"6dfc4e89bbfc2e3fd6c36f530bc5d2c63fa1636f\", \"live\": true, \"id\": \"x4f93d5deca66201a\", \"perseus_api_major_version\": null}", "{\"sha\": \"c1deb50ef461ebdd1813f358b0798f0cd1241b5f\", \"live\": true, \"id\": \"xae41b6b9b789cc05\", \"perseus_api_major_version\": null}", "{\"sha\": \"c6e58c2b24a541eeead125d0c2c8e2d46289a248\", \"live\": true, \"id\": \"xdb460d7e7e5d51b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"7754f8672735f462320f6790c712824ed83e597b\", \"live\": true, \"id\": \"x2f3bdde9774ed539\", \"perseus_api_major_version\": 3}", "{\"sha\": \"40db4a4c79490a686faa1d4fd9f8b9650bf6beab\", \"live\": true, \"id\": \"xd02c0a10d88efdd7\", \"perseus_api_major_version\": null}", "{\"sha\": \"1919d00aae39b04a2984753a4cab1b4f0b9b9424\", \"live\": true, \"id\": \"xbe69a6790f5b638e\", \"perseus_api_major_version\": null}", "{\"sha\": \"c3ef90664e83acb388c9f9aa2202b5267c4724f7\", \"live\": true, \"id\": \"x2b1148d8a9942818\", \"perseus_api_major_version\": null}", "{\"sha\": \"b3095a2057b09cab9a2f73ddfd2325e86b70b726\", \"live\": true, \"id\": \"x75df02e7df02e837\", \"perseus_api_major_version\": null}", "{\"sha\": \"757dc50f486e5f55a91f020d3f3e7da26b0d2133\", \"live\": true, \"id\": \"xe5fe78165d4bb967\", \"perseus_api_major_version\": null}", "{\"sha\": \"217243cc2c594b1da9c220417c65f69664e4fc57\", \"live\": true, \"id\": \"x135efd029a918620\", \"perseus_api_major_version\": null}", "{\"sha\": \"11ac7054b9999071eeb267bddef17e3e7138d297\", \"live\": true, \"id\": \"x3e21f4726d47dce8\", \"perseus_api_major_version\": null}", "{\"sha\": \"989bd3af8e56a940fb4303874e349906d1b35f0f\", \"live\": true, \"id\": \"xd72a4d8c514e9858\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "understanding-the-process-for-solving-linear-equations", "kind": "Exercise", "name": "understanding-the-process-for-solving-linear-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["linear_equations_3"], "exercise_id": "understanding-the-process-for-solving-linear-equations"}, "understanding-2-digit-numbers": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-place-value-topic/cc-early-math-tens/understanding-2-digit-numbers/", "id": "understanding-2-digit-numbers", "display_name": "Two-digit place value challenge", "title": "Two-digit place value challenge", "all_assessment_items": ["{\"sha\": \"6b5bd28aed8a0e75bb7966b38768fc1005de066e\", \"live\": true, \"id\": \"xb6ab1e44d650e2ca\"}", "{\"sha\": \"02c77003356ff3a1b1bfbf4d9723c856f15375c3\", \"live\": true, \"id\": \"x68a6f0c4c40ccc8a\"}", "{\"sha\": \"a93fcfb1d6ee5e2b3640d55b9953048ffc774352\", \"live\": true, \"id\": \"xbb1baa4ace451cc5\"}", "{\"sha\": \"89c3632e88c1a8286c66395a473878d73459dc25\", \"live\": true, \"id\": \"x770aa3b4f33564c6\"}", "{\"sha\": \"0e511320e63970203dea6a14daf7eb30d4d92461\", \"live\": true, \"id\": \"x0852c3787373cf3a\"}", "{\"sha\": \"c5b351b6a84ee040dfbff319c5de0382dfb2ce7a\", \"live\": true, \"id\": \"xb89495156d5c2528\"}", "{\"sha\": \"213816e2bbb2f616d3ad5457eadc4581b52a03c0\", \"live\": true, \"id\": \"x35e1d5c37982a3b9\"}", "{\"sha\": \"39c57057efc346249316e26d03715255b2fe0c9e\", \"live\": true, \"id\": \"xbdba8f498431e983\"}", "{\"sha\": \"d928a7d0562e3ca0d53cc1a63f462e072150072f\", \"live\": true, \"id\": \"x456f45bfb7718e2c\"}", "{\"sha\": \"f7b246141a1aa8165fad7bba668e3837b5fbe7ec\", \"live\": true, \"id\": \"x10b148c4911aae89\"}", "{\"sha\": \"309d64f6bd718495be046d604a419a004e10c966\", \"live\": true, \"id\": \"x9c41b9b4ae955c9d\"}", "{\"sha\": \"4f38130a65e714562b57ba09023eb648d2cdf9aa\", \"live\": true, \"id\": \"x9bfc448bb5452430\"}", "{\"sha\": \"c5ce6eb45f8efb52dd09e14ad8cbaded2c50517a\", \"live\": true, \"id\": \"x9e33a836db97aee4\"}", "{\"sha\": \"9698a84777f2e3bb44dd9ed05d9efc85b181112b\", \"live\": true, \"id\": \"x24ba639bde1b7fa9\"}", "{\"sha\": \"786426dab8257210f3c8275475d540d49221c3a9\", \"live\": true, \"id\": \"x0a72f3bd6f82e668\"}", "{\"sha\": \"73dca14f1d2adab5c94e84627b7bdf8376b9e09c\", \"live\": true, \"id\": \"xc7eb239ee616eecc\"}", "{\"sha\": \"9df16ba75af1dceed311b9fd7fc6eb101365a782\", \"live\": true, \"id\": \"x31f0f50e68eaf53a\"}", "{\"sha\": \"5064dc58e590331aa3960401b23868eeea348479\", \"live\": true, \"id\": \"xa4155d881ddf7b2a\"}", "{\"sha\": \"c3e309a9bb5cb4a7f1bd0a428c2d83ed732e3c4e\", \"live\": true, \"id\": \"xcd1b08b2be92748c\"}", "{\"sha\": \"ec943638a5fabef8619f391daa9eb9501b93692f\", \"live\": true, \"id\": \"x1acd9f78a080ad66\"}", "{\"sha\": \"5810b46690902449d80661df315e6a12d62eb6c0\", \"live\": true, \"id\": \"xafbe9197e85356f3\"}"], "description": "Practice breaking numbers apart into tens and ones.", "basepoints": 10.0, "slug": "understanding-2-digit-numbers", "kind": "Exercise", "name": "understanding-2-digit-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["teen-numbers-1", "addition_1"], "exercise_id": "understanding-2-digit-numbers"}, "basic-concepts-in-bioenergetics--phosphoryl-group-transfers-and-atp-hydrolysis": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/basic-concepts-in-bioenergetics-phosphoryl-group-transfers-and-atp-hydrolysis/", "id": "basic-concepts-in-bioenergetics--phosphoryl-group-transfers-and-atp-hydrolysis", "display_name": "Basic concepts in bioenergetics: phosphoryl group transfers and ATP hydrolysis", "title": "Basic concepts in bioenergetics: phosphoryl group transfers and ATP hydrolysis", "all_assessment_items": ["{\"sha\": \"6c03edd3e0feb456b0f5c401b760bcc67da3defb\", \"live\": true, \"id\": \"x1644995d447ab48b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ad72e284262ca7690c2687f2f41be933890e0a81\", \"live\": true, \"id\": \"x24999d56d7b528ef\", \"perseus_api_major_version\": 3}", "{\"sha\": \"208782a1e07d344d64680703cb976c34b3d0f950\", \"live\": true, \"id\": \"x4892fee2537f3379\", \"perseus_api_major_version\": 3}", "{\"sha\": \"73328023fb5e9405dc7da90bca8435e4a3c5a27d\", \"live\": true, \"id\": \"x22df1fe80c6c45c8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2601ec75621b2debeef03138cd44ed7812c73f31\", \"live\": true, \"id\": \"x793d8b5926784d76\", \"perseus_api_major_version\": 3}"], "description": "Questions related to the principles of bioenergetics and fuel molecule metabolism", "basepoints": 10.0, "slug": "basic-concepts-in-bioenergetics-phosphoryl-group-transfers-and-atp-hydrolysis", "kind": "Exercise", "name": "basic-concepts-in-bioenergetics--phosphoryl-group-transfers-and-atp-hydrolysis", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "basic-concepts-in-bioenergetics--phosphoryl-group-transfers-and-atp-hydrolysis"}, "vietnam-veterans-memorial-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/global-contemporary/vietnam-veterans-memorial-quiz/", "id": "vietnam-veterans-memorial-quiz", "display_name": "Lin, Vietnam Veterans Memorial (quiz)", "title": "Lin, Vietnam Veterans Memorial (quiz)", "all_assessment_items": ["{\"sha\": \"68192a8154ae75e851293617be8c1ff38cae6da2\", \"live\": true, \"id\": \"xf99f92dedff1fb6c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3210f2568305a6229ac0914ed99fd2335cd0c63b\", \"live\": true, \"id\": \"x87178fd9bc521622\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"761d4e2e08656dab0906a01e3f4a3fe0c55e61eb\", \"live\": true, \"id\": \"x176cd17c2ca1c684\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5a45e9732baf8787ac97d8a37e53c26b5acb9dbe\", \"live\": true, \"id\": \"xe08eb91407270925\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "vietnam-veterans-memorial-quiz", "kind": "Exercise", "name": "vietnam-veterans-memorial-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "vietnam-veterans-memorial-quiz"}, "pyxis-of-al-mughira-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/ap-art-islamic-world-medieval/pyxis-of-al-mughira-quiz/", "id": "pyxis-of-al-mughira-quiz", "display_name": "Pyxis of al-Mughira (quiz)", "title": "Pyxis of al-Mughira (quiz)", "all_assessment_items": ["{\"sha\": \"f395733ba6b44645c78c72b5429a5ccaa8de3b84\", \"live\": true, \"id\": \"xc88e6bcb82147604\"}", "{\"sha\": \"a3ed488a12fa6a3235527a67f6ba75947bc0b3d9\", \"live\": true, \"id\": \"xebd157362d4513e4\"}", "{\"sha\": \"593ab4c34edddc61ec4bc75a219919836ddd4fee\", \"live\": true, \"id\": \"x3fbfcc9a5c50fcfc\"}", "{\"sha\": \"ee3754258ccb1dc12dd55ab9a63a0fc822022349\", \"live\": true, \"id\": \"x96cf3025cfa7a229\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "pyxis-of-al-mughira-quiz", "kind": "Exercise", "name": "pyxis-of-al-mughira-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pyxis-of-al-mughira-quiz"}, "ancient-near-eastern-art": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/ancient-near-east1/quiz-ancient-near-eastern-art/ancient-near-eastern-art/", "id": "ancient-near-eastern-art", "display_name": "Ancient Near Eastern art (quiz)", "title": "Ancient Near Eastern art (quiz)", "all_assessment_items": ["{\"sha\": \"faf4cb5c7455f318490419c08f96048093ab3d38\", \"live\": true, \"id\": \"x3865bed7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4621c5fa4d219a0a67b2ce9ff7382dbb769c3977\", \"live\": true, \"id\": \"x09fa78ea\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fef6b568c6bafa474e34b1676d8ec7d37330cd7e\", \"live\": true, \"id\": \"xea54073f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d5328be9c7cada84246c70a4ddf5abf3baddfd2\", \"live\": true, \"id\": \"xcd221550\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f7ab45abfff9a7f86db2ed7d82e7e7d76dfd50ac\", \"live\": true, \"id\": \"x63ca0766\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"93370023021032d061a9f91c81128030e527ef2e\", \"live\": true, \"id\": \"x565c8ec1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2d0fa72f76c3ab962d86920605844a34897ded82\", \"live\": true, \"id\": \"xb7a9874b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "ancient-near-eastern-art", "kind": "Exercise", "name": "ancient-near-eastern-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ancient-near-eastern-art"}, "gas-phase-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/kinetic-molecular-theory-of-gas/gas-phase-quiz/", "id": "gas-phase-quiz", "display_name": "Gas phase quiz", "title": "Gas phase quiz", "all_assessment_items": ["{\"sha\": \"2930f1802796bb67608b2bb387992b0599b1cacd\", \"live\": true, \"id\": \"xdd8a87e9a6a3afa8\"}", "{\"sha\": \"daf513711814e74800c271e5a93605f1e1d8dd11\", \"live\": true, \"id\": \"x2a9240083cbc3727\"}", "{\"sha\": \"670d855a98cbf71cc93a1ac16d59d8edd19a7c97\", \"live\": true, \"id\": \"x072db94b15b2dd33\"}", "{\"sha\": \"1c7f5139fa7f46e1864e969fdaf5e056672729f2\", \"live\": true, \"id\": \"x35c645672c573cad\"}", "{\"sha\": \"cffdf2da64dd13f36bd29146f049489361866cf3\", \"live\": true, \"id\": \"xea6903a38d52d9b7\"}", "{\"sha\": \"cb203432c9b9086a0f0da20507ad4d95747c8a9d\", \"live\": true, \"id\": \"x8d907a1d2a455667\"}", "{\"sha\": \"54b2c32ac5279c13f2c1e9fe301e1c15172c9ea7\", \"live\": true, \"id\": \"x95822888b5697d25\"}", "{\"sha\": \"9fbcafcf9e38e434dad193572bdf72a40d78d861\", \"live\": true, \"id\": \"x10f345855a3b1d5d\"}", "{\"sha\": \"955a56b86865542e4b52c40f8bada06201d74ebe\", \"live\": true, \"id\": \"x727f1ca45c14c106\"}", "{\"sha\": \"582710ba8ab2cc7f53657069a9c684f0a5d7a034\", \"live\": true, \"id\": \"xa46bea8fdd54b4a1\"}"], "description": "Gas phase quiz", "basepoints": 10.0, "slug": "gas-phase-quiz", "kind": "Exercise", "name": "gas-phase-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "gas-phase-quiz"}, "radians-on-the-unit-circle": {"uses_assessment_items": true, "path": "khan/math/trigonometry/unit-circle-trig-func/radians_tutorial/radians-on-the-unit-circle/", "id": "radians-on-the-unit-circle", "display_name": "Radians on the unit circle", "title": "Radians on the unit circle", "all_assessment_items": ["{\"sha\": \"87ac9fc1926e6d398e54241fda4d357c53378b69\", \"live\": true, \"id\": \"x7c791ebe1eaea2a6\"}", "{\"sha\": \"7cf7ed432ae3c95869b4827cf13001ab9f8aa973\", \"live\": true, \"id\": \"xbf449a86b5b96486\"}", "{\"sha\": \"5b9b5103147629ec1d2701fa723d0ddd954dac87\", \"live\": true, \"id\": \"x9d81812a98363afa\"}", "{\"sha\": \"1119f727168087c06dbb4ad16ecd03e4beccdc7a\", \"live\": true, \"id\": \"x420c7383587bd3c6\"}", "{\"sha\": \"20c54bdc15c11ab9310c182fb39b1763df576bf6\", \"live\": true, \"id\": \"x62a3f861a2075904\"}", "{\"sha\": \"721e3886e513fc620a2a296d973193d611d5d0ae\", \"live\": true, \"id\": \"x5d0fbdf74d6709ed\"}", "{\"sha\": \"96336f51fe9dc1d0c384c74b9ac60a0e183a0754\", \"live\": true, \"id\": \"x1a50d7aabc30ef44\"}", "{\"sha\": \"f1c0e3b7f45d015458a9ec5df042ebdf818ea72b\", \"live\": true, \"id\": \"xae50df11ad9ea6d8\"}", "{\"sha\": \"5e4f132fdf185d3ed0e26cead015b8b0312844fb\", \"live\": true, \"id\": \"xac176d01a1e36d88\"}", "{\"sha\": \"6dedc8ca72e028a895810a6f9b58da969039070d\", \"live\": true, \"id\": \"xec33b140b56d4e4c\"}", "{\"sha\": \"665bfa302d7d0fac29df0c78cd999b4258ab4a01\", \"live\": true, \"id\": \"xdbdaf3b14d68d4e1\"}", "{\"sha\": \"19280ce8b8247f3f106aa34344ea01ef17608530\", \"live\": true, \"id\": \"x4d61264776bb30e0\"}", "{\"sha\": \"2f553f809ab69dd6f137de62a5b5c46a7d00fc83\", \"live\": true, \"id\": \"x42245fe187e465c6\"}", "{\"sha\": \"c9c776222627a09cc5c1bae7670c6832b1ee8696\", \"live\": true, \"id\": \"x31a483be52c3f0f6\"}", "{\"sha\": \"90d8317dbcfa16f85b1458a43dc2b401bfe73cd5\", \"live\": true, \"id\": \"x37a5e0d35d546abf\"}", "{\"sha\": \"eae4e69d454601f48893ffc94786d696cf1bb8af\", \"live\": true, \"id\": \"x9ba8019ac740b046\"}", "{\"sha\": \"4cf18294fbb84034de938f825f6c1deec6a0a571\", \"live\": true, \"id\": \"xd05bf65a03374fbc\"}", "{\"sha\": \"e719b25282b1b2cbdc865c90a9743b872a25b506\", \"live\": true, \"id\": \"x6c525e0c9fcd2301\"}", "{\"sha\": \"261acbfc953aaa4ec373a3912600bea7649b33f8\", \"live\": true, \"id\": \"x9cbc355402dbf056\"}", "{\"sha\": \"28fca988e4bc76fe69796a9491577bee57187ae3\", \"live\": true, \"id\": \"x245032ebb5b292c3\"}", "{\"sha\": \"0338d196a283f7d5ac5e83c42ecc37b5a08afdda\", \"live\": true, \"id\": \"x35543027840ec8bc\"}", "{\"sha\": \"ef2e2e54768bfd3a87c008ade6de7577b8fee3bb\", \"live\": true, \"id\": \"xd2c9fe46f8c562b1\"}", "{\"sha\": \"34ec51772fecd0f7db3900c91fc69611ad8cfeb7\", \"live\": true, \"id\": \"x4c7754f61411a91e\"}", "{\"sha\": \"641132f6557d0970299fd267e47e77673f3c0d1c\", \"live\": true, \"id\": \"x9a5ba824f3acec6d\"}", "{\"sha\": \"b266a259472e44c7645b31b52f5efd069ce5de14\", \"live\": true, \"id\": \"x3358c2edd22405b5\"}", "{\"sha\": \"df652a6c58e804dd487770e9c136f91f252f7f69\", \"live\": true, \"id\": \"xc36c4ab1acc16fac\"}", "{\"sha\": \"2e2e766b22fe9210cbfeef6053eac9d9aa067de4\", \"live\": true, \"id\": \"x59802150be19bf68\"}", "{\"sha\": \"247d14e2f8b96ebb8aeb9f3c60968ca8c1c52629\", \"live\": true, \"id\": \"x202ef604b4d2e19d\"}", "{\"sha\": \"1595d7684fce8800a4427af4f1951634f5307fd7\", \"live\": true, \"id\": \"x89b97f3ac38f2d75\"}", "{\"sha\": \"0307be8413f4a4cc131f7c85dc5f320347096563\", \"live\": true, \"id\": \"xee02e66daaae20a6\"}"], "description": "A radian is a unit of angle measure, and it has a special relationship with arc length.", "basepoints": 10.0, "slug": "radians-on-the-unit-circle", "kind": "Exercise", "name": "radians-on-the-unit-circle", "seconds_per_fast_problem": 4.0, "prerequisites": ["unit_circle"], "exercise_id": "radians-on-the-unit-circle"}, "inherited-disorders--marfan-syndrome": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/inherited-disorders-marfan-syndrome/", "id": "inherited-disorders--marfan-syndrome", "display_name": "Inherited disorders: Marfan syndrome", "title": "Inherited disorders: Marfan syndrome", "all_assessment_items": ["{\"sha\": \"ee6e961da0f3f491569ce912e7ac83061a84a108\", \"live\": true, \"id\": \"xd162fd4a120d4b93\"}", "{\"sha\": \"fa8f0d65db4f7d29e48d551432440d8e9df29854\", \"live\": true, \"id\": \"xe2c798e7c6172ae1\"}", "{\"sha\": \"ea5e0dcc456a6d877e82f2b8750a5bf56616a3dd\", \"live\": true, \"id\": \"x8d963496f153e4c0\"}", "{\"sha\": \"9ac34bf6035fdc456db7800fdd3495eaff62daea\", \"live\": true, \"id\": \"xc35adbbf12efd1a1\"}", "{\"sha\": \"2a268afb134eeb673528428eb2ad7672ea13d986\", \"live\": true, \"id\": \"x2789a7e7a26de582\"}"], "description": "Inherited disorders: Marfan syndrome", "basepoints": 10.0, "slug": "inherited-disorders-marfan-syndrome", "kind": "Exercise", "name": "inherited-disorders--marfan-syndrome", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "inherited-disorders--marfan-syndrome"}, "unit-sense": {"uses_assessment_items": true, "id": "unit-sense", "display_name": "Unit sense", "title": "Unit sense", "all_assessment_items": ["{\"sha\": \"ad650f0ebc5ca707af12ff14ad464d383fbcc605\", \"live\": true, \"id\": \"x9c8ecbe143588591\"}", "{\"sha\": \"20e134699dee6ff1b2bbbd32a18534afff71e578\", \"live\": true, \"id\": \"xe514fa4719bbb97f\"}", "{\"sha\": \"475758f132f1fac852b2a7494ee3838f81a5fa4c\", \"live\": true, \"id\": \"x1fb8473d6b23274d\"}", "{\"sha\": \"c185125aadcaeeee67c86227861ad9204f7058ae\", \"live\": true, \"id\": \"x54f61e4912abb37e\"}", "{\"sha\": \"03e9d53279212ee2576d2adb554b20ea8501ece1\", \"live\": true, \"id\": \"x86b4d39099b92947\"}", "{\"sha\": \"397427ac5b7be9706635a7e2c346ff5fbff6fa01\", \"live\": true, \"id\": \"x073fe485692572de\"}", "{\"sha\": \"5582b47516e9b9ceb53e34253b8aa8f72441f2c6\", \"live\": true, \"id\": \"xf3de059c31b91d01\"}", "{\"sha\": \"2253076c12953ee9962966e0da247d08a5d6d2f3\", \"live\": true, \"id\": \"xffe18681ef68ad8f\"}", "{\"sha\": \"341ddd5ccb763a20835ef5d1691dfd10e5d190d4\", \"live\": true, \"id\": \"xb651f93948fd2b7b\"}", "{\"sha\": \"1e74aa5ea1c5815e004cf2bd2bfbbfb51def4fab\", \"live\": true, \"id\": \"xb7de9a2d442a04e6\"}", "{\"sha\": \"67a9816ef1d6a8213ef7c501a42813fdda3c075e\", \"live\": true, \"id\": \"x6df0925ae3402d1a\"}", "{\"sha\": \"ed54b9cc399817c6618f268a390c0522d70e8137\", \"live\": true, \"id\": \"x1a059155546a3d74\"}", "{\"sha\": \"0dbc6951c4599088d467935be9d11ea06dc0218e\", \"live\": true, \"id\": \"x34916d30ccd6b0f9\"}", "{\"sha\": \"69fd390077f96c24df711b76fd3f2e9d55a97d96\", \"live\": true, \"id\": \"x5d5282b18ddaa08e\"}"], "description": "Identify the most reasonable units to measure an item. \u00a0Units are metric measures of distance, volume, and mass and units of time.", "basepoints": 10.0, "path": "unit-sense/", "slug": "unit-sense", "kind": "Exercise", "name": "unit-sense", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "unit-sense"}, "converting-units--us-customary-": {"uses_assessment_items": true, "id": "converting-units--us-customary-", "display_name": "Converting units (US customary)", "title": "Converting units (US customary)", "all_assessment_items": ["{\"sha\": \"7c73bcadac323b3df5a0de20d2080fc0b1d997db\", \"live\": true, \"id\": \"xdb7b4c6edec381b0\"}", "{\"sha\": \"48289e705fbc30c1c600f2f73aaa09ac71c4a8b9\", \"live\": true, \"id\": \"x68f33f6b2502d4bb\"}", "{\"sha\": \"302382395542015bdd534ca1022b8578a8774abf\", \"live\": true, \"id\": \"x3bff8d7ff94eb08b\"}", "{\"sha\": \"71bae342d3cba5014e3f0a6f221562c2cefebb40\", \"live\": true, \"id\": \"x716a59263b9398d0\"}", "{\"sha\": \"7efcf9085d57636ba7e82cd5bf6fc8fb0173ae64\", \"live\": true, \"id\": \"xd88e868aeee9954f\"}", "{\"sha\": \"64ddc4092daa92b0ccf082c02fefc4849f326ead\", \"live\": true, \"id\": \"x2708f8f1e4314357\"}", "{\"sha\": \"ee56a13305149cb7219ee1dd95c70e72402680b5\", \"live\": true, \"id\": \"x15d40e8ed8efad93\"}", "{\"sha\": \"9985d16de0e4126eb7586e9fd681e4f0e6a112ec\", \"live\": true, \"id\": \"xd168c4192fc6f872\"}", "{\"sha\": \"d1a475d83a432661c4ddd5c9d11b054d0d815947\", \"live\": true, \"id\": \"xa2f5457a433c6b19\"}", "{\"sha\": \"904c939502a8dd854854cf5f6a6e26ab180d21b4\", \"live\": true, \"id\": \"xee3d7f5bdd9890b7\"}", "{\"sha\": \"15d7000a67bc25c60a9c2e51d5ebd0c176ec3751\", \"live\": true, \"id\": \"x093be4d64bc9f0e8\"}", "{\"sha\": \"a189d2d06ddbed659effa3b54d4c338a747ea7e8\", \"live\": true, \"id\": \"xed67d558e38807d4\"}", "{\"sha\": \"fdee5e19fe7d84a663f453a10fde61edd341dd17\", \"live\": true, \"id\": \"x0584954eec9b62bf\"}", "{\"sha\": \"7871a882e8dd68faad06cafc786dd2a01d968b18\", \"live\": true, \"id\": \"x7da72817ad816db7\"}", "{\"sha\": \"ce57ae520e09115255d0c26c123a301cb3689b3e\", \"live\": true, \"id\": \"x4157aca0a442c570\"}", "{\"sha\": \"f83fed58f86437bffe6438b3e2b74bfa99a04264\", \"live\": true, \"id\": \"x82693f7b62591e56\"}", "{\"sha\": \"9a4272bbd49df3f36a385dbdd4cad5a18965e27b\", \"live\": true, \"id\": \"x77ffb37057912118\"}", "{\"sha\": \"0e978c5c7b128803f142911853b5749cd85f3fe2\", \"live\": true, \"id\": \"x42b86187eaa71f13\"}", "{\"sha\": \"5e30295bca1b18ff0631b6cae15417f8e936fc7a\", \"live\": true, \"id\": \"xee36142a017754b7\"}", "{\"sha\": \"4249ba1d41dbdd36a29bbf04a1612fd610a70e85\", \"live\": true, \"id\": \"xd24c94ec1018b991\"}", "{\"sha\": \"6079356427ccd35055030aaf16e6db69fb9f6ecc\", \"live\": true, \"id\": \"x6e9805cbf53f25f3\"}", "{\"sha\": \"fd6a95926e386f360064c2165deed813260c2589\", \"live\": true, \"id\": \"xf2c480307198b233\"}", "{\"sha\": \"9f894238c4b01f5ad6a4069a95ff7c32436bec68\", \"live\": true, \"id\": \"xa6f7f0c42a805cb9\"}"], "description": "Convert between US customary measures of distance, volume, and mass.", "basepoints": 10.0, "path": "converting-units-us-customary-/", "slug": "converting-units-us-customary-", "kind": "Exercise", "name": "converting-units--us-customary-", "seconds_per_fast_problem": 4.0, "prerequisites": ["converting-units"], "exercise_id": "converting-units--us-customary-"}, "pythagorean-theorem-and-the-equation-of-a-circle": {"uses_assessment_items": true, "path": "khan/math/algebra2/conics_precalc/circles-tutorial-precalc/pythagorean-theorem-and-the-equation-of-a-circle/", "id": "pythagorean-theorem-and-the-equation-of-a-circle", "display_name": "Pythagorean theorem and the equation of a circle", "title": "Pythagorean theorem and the equation of a circle", "all_assessment_items": ["{\"sha\": \"642bdc18bc64e76543326202f70a5bf2d01dcc74\", \"live\": true, \"id\": \"x550b5e8644cf4b8e\"}", "{\"sha\": \"a7790fcea887f5e96cf36d0511421ead7b75c84e\", \"live\": true, \"id\": \"x7b1a3ceb0d0b5de1\"}", "{\"sha\": \"5de7eb0364f9f8b058833cb7bb612337865d47f0\", \"live\": true, \"id\": \"x2d72cea28baca983\"}", "{\"sha\": \"a6f8184acbaf84aae471ffb402e67c889aa8958c\", \"live\": true, \"id\": \"xca65683c543743cf\"}", "{\"sha\": \"4ca7a88b1acf9c3f1de3d5fb7ebad6f7b34ce37a\", \"live\": true, \"id\": \"x312a5e1a3d5d91b6\"}", "{\"sha\": \"abd4cd13e5babed389a0b016774689bf1c7428d7\", \"live\": true, \"id\": \"x9bfbe2a8b830f9eb\"}", "{\"sha\": \"e4ae8c9d42ddf80571213d48d01fb788ae24fbe6\", \"live\": true, \"id\": \"x5293e8ed7b7c4a1b\"}", "{\"sha\": \"e4eab53dcff834eaf8d993314e7a6560cf6596f4\", \"live\": true, \"id\": \"x82c5be8ea5ffa5b0\"}", "{\"sha\": \"d1511dc78fe09e75cb023ccd429f173aaafd8857\", \"live\": true, \"id\": \"x99a885bc150e60fb\"}", "{\"sha\": \"43e435e4be941cfc48cf64d57b0a80867249ca3f\", \"live\": true, \"id\": \"xbf268696e8023397\"}", "{\"sha\": \"a6a192fed558c91952a4dd42e0b2c8c9e2063a88\", \"live\": true, \"id\": \"x50c923fceda7016a\"}", "{\"sha\": \"dec363990c24d9407c40df229e040d7c03d03dbf\", \"live\": true, \"id\": \"x421259ee82001bd1\"}", "{\"sha\": \"9cb4f0c66e625fbf8760b4814ab6909f54ced57e\", \"live\": true, \"id\": \"x60857f2171f3e54f\"}", "{\"sha\": \"5a490dda02e5605f592479689321ec4ca77008dd\", \"live\": true, \"id\": \"xafc9306db168d010\"}", "{\"sha\": \"63ee647e77f357ec26a8ef18628ac0bf753ad739\", \"live\": true, \"id\": \"x10b259d9b1ff9eb3\"}", "{\"sha\": \"9a03206f2fee930697bb863d455ffeffd12ae305\", \"live\": true, \"id\": \"xc9a09b660685dd6b\"}", "{\"sha\": \"c5d5443291d99cc17c01a803df003e299cab7199\", \"live\": true, \"id\": \"x59a1e7b40dd7349c\"}", "{\"sha\": \"70c085cd7f5dcfe47985809405bef8045f4500ed\", \"live\": true, \"id\": \"x6ffcc514b8ab49cc\"}", "{\"sha\": \"e20a1debad346dff639aafadb9392269e6edbd70\", \"live\": true, \"id\": \"x287e38231dc2e4f8\"}", "{\"sha\": \"a3054292e5ab7095f1518a4b52809f05766834d1\", \"live\": true, \"id\": \"xdc355183f9a507fd\"}", "{\"sha\": \"51ef7fa6f859ac48b390f70a14b88572b9c8f1c5\", \"live\": true, \"id\": \"x9ba5610016432def\"}", "{\"sha\": \"5d6f7a25ce50b9677cd1f4cdeb392bc72a09bc4e\", \"live\": true, \"id\": \"xca456a0da0ecd172\"}", "{\"sha\": \"7ff91a6f239d6e26950181465672ea3c0dadf275\", \"live\": true, \"id\": \"x62863eb2c262740d\"}", "{\"sha\": \"db8ab2f2f8896c37c800916efd64e0b4a4a9a898\", \"live\": true, \"id\": \"xf3f4ef46911a0e6a\"}", "{\"sha\": \"d77be3e1dc4b0582f9bfb25f66ea5d58509153f1\", \"live\": true, \"id\": \"xc5ef8e58ea63e4b6\"}", "{\"sha\": \"deea2f1af5d143d1b8d6009af4bdeba3201bda4a\", \"live\": true, \"id\": \"xa7f760140076a1c9\"}", "{\"sha\": \"46553aa35da4276e80a4df2f779f2ad67bc3a270\", \"live\": true, \"id\": \"x61d44af2eb6a0f27\"}", "{\"sha\": \"a2a6bd3da65a1c32775b8beb88f6a297e4494a2d\", \"live\": true, \"id\": \"x43eadf34b38b20c9\"}", "{\"sha\": \"ecd98b393b42479eceb61ccb6c71b979295f78dc\", \"live\": true, \"id\": \"x1b14f0259bb87837\"}", "{\"sha\": \"306086eff3961a2c988e5fb3f9dbd9e8bdf2f6c2\", \"live\": true, \"id\": \"xf438857bae714c93\"}"], "description": "", "basepoints": 10.0, "slug": "pythagorean-theorem-and-the-equation-of-a-circle", "kind": "Exercise", "name": "pythagorean-theorem-and-the-equation-of-a-circle", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing_conic_sections", "pythagorean_theorem_1"], "exercise_id": "pythagorean-theorem-and-the-equation-of-a-circle"}, "proteins---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/proteins-passage-2/", "id": "proteins---passage-2", "display_name": "Investigating families with hormone deficiencies ", "title": "Investigating families with hormone deficiencies", "all_assessment_items": ["{\"sha\": \"28a853ffa8e9d000d4b4c7cd3e2be29f61a89bbb\", \"live\": true, \"id\": \"x5b14e29f1cf0a8a6\"}", "{\"sha\": \"59d2f28e0c9e3a75b2524477b4d43901b03c3d95\", \"live\": true, \"id\": \"x4e0b7430c926d050\"}", "{\"sha\": \"d7144597392b20e9a48ada9a45e46e7735926564\", \"live\": true, \"id\": \"x323475c7df471340\"}", "{\"sha\": \"3ca5cbb450a28dea34bb43b0c6534825bace518b\", \"live\": true, \"id\": \"x4f6d3a6e19dafc4d\"}", "{\"sha\": \"04e5424ba86e9ff0d61eaad1d0719564fd2c690e\", \"live\": true, \"id\": \"x23cd2e1c91a32d72\"}"], "description": "", "basepoints": 10.0, "slug": "proteins-passage-2", "kind": "Exercise", "name": "proteins---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "proteins---passage-2"}, "proteins---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/proteins-passage-1/", "id": "proteins---passage-1", "display_name": "Homocystinuria and its associate treatments", "title": "Homocystinuria and its associate treatments", "all_assessment_items": ["{\"sha\": \"ca43234b0d2ffedc062ed3d99be06911f9597be4\", \"live\": true, \"id\": \"x485ebcf405d073f1\"}", "{\"sha\": \"46406aa13f27d220960a217a9dfd484e757d3cf7\", \"live\": true, \"id\": \"x6a24cf0e1cd120c1\"}", "{\"sha\": \"1f0abc3c8cde97a3fdea8c2636b11cb91ddf98f2\", \"live\": true, \"id\": \"x6b401af7e7c9ee54\"}", "{\"sha\": \"d1e70ce8e55a2e5fa48aab980a8bf448e6625f1b\", \"live\": true, \"id\": \"x317a0bed00487022\"}", "{\"sha\": \"4ebcaa5e5fb58ff2ac7980b1886cea1c7bc5b3ca\", \"live\": true, \"id\": \"x9d15d3b728cd8f1c\"}"], "description": "This passage will test your knowledge on proteins", "basepoints": 10.0, "slug": "proteins-passage-1", "kind": "Exercise", "name": "proteins---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "proteins---passage-1"}, "krebs--citric-acid--cycle-and-oxidative-phosphorylation-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biomolecules/krebs-citric-acid-cycle-and-oxidative-phosphorylation/krebs-citric-acid-cycle-and-oxidative-phosphorylation-questions/", "id": "krebs--citric-acid--cycle-and-oxidative-phosphorylation-questions", "display_name": "Krebs (citric acid) cycle and oxidative phosphorylation questions", "title": "Krebs (citric acid) cycle and oxidative phosphorylation questions", "all_assessment_items": ["{\"sha\": \"2c7bcb07778c488a915aa630dc6000cb955b1314\", \"live\": true, \"id\": \"x1d9aff23e7098b68\"}", "{\"sha\": \"835f38d790b4493e921cfd268253cd5eac9a7ba0\", \"live\": true, \"id\": \"x77ae303c1ca064d3\"}", "{\"sha\": \"a42eb73a88df0a8b4d6437c708ac8308c4390805\", \"live\": true, \"id\": \"xfa0db922258ae1d6\"}", "{\"sha\": \"775afa9ed03f2fd57e06d4bca3ad1fec5161f1f2\", \"live\": true, \"id\": \"x17a7a9995da8d789\"}", "{\"sha\": \"d6e4fc8e7cf92e13c074a2df4f74200cd3c4de38\", \"live\": true, \"id\": \"x6fe69302a7432532\"}", "{\"sha\": \"7463a66bdd5ed618c4b6be687bfdf836dbd67668\", \"live\": true, \"id\": \"x4779048b4482df7a\"}", "{\"sha\": \"e8c83764b6591fc387997f2079f3503309cf0e2c\", \"live\": true, \"id\": \"xdf6bb77b8321b53a\"}", "{\"sha\": \"a6cc2ce1aec087e23cfa02738f134267dcb7f4b7\", \"live\": true, \"id\": \"x17f11fa784c38ea5\"}", "{\"sha\": \"a2ecd50148c7436f719cbf0604adbb1b88f60d23\", \"live\": true, \"id\": \"x93b2b277edf3da98\"}", "{\"sha\": \"0b9463176aaf2c631299364cdeffc1bdaa616e18\", \"live\": true, \"id\": \"x9dcf50e7940452cb\"}"], "description": "Krebs (citric acid) cycle and oxidative phosphorylation questions", "basepoints": 10.0, "slug": "krebs-citric-acid-cycle-and-oxidative-phosphorylation-questions", "kind": "Exercise", "name": "krebs--citric-acid--cycle-and-oxidative-phosphorylation-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "krebs--citric-acid--cycle-and-oxidative-phosphorylation-questions"}, "manet-s-olympia-quiz": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/avant-garde-france/realism/manet-s-olympia-quiz/", "id": "manet-s-olympia-quiz", "display_name": "Manet's Olympia Quiz", "title": "Manet's Olympia Quiz", "all_assessment_items": ["{\"sha\": \"5f880c52f3d61dba94d42b356d1abca975d24598\", \"live\": true, \"id\": \"xc9ededad61f2c3f9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9cec2c2a8202ded7eb90d00215082c5839ac3e58\", \"live\": true, \"id\": \"x1059dfa70dc0f2d6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e5f62eb23a9aca3b02d56b15ed76974ccf0927d\", \"live\": true, \"id\": \"x8ece9c51f771f008\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d183c449d9b9e33c98415b3dda5bb529d9030e11\", \"live\": true, \"id\": \"x8562c3d32fea069c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "This quiz is for the video Manet, Olympia.", "basepoints": 10.0, "slug": "manet-s-olympia-quiz", "kind": "Exercise", "name": "manet-s-olympia-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "manet-s-olympia-quiz"}, "quiz--use-variable-expressions": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/programming/resizing-with-variables/quiz-use-variable-expressions/", "id": "quiz--use-variable-expressions", "display_name": "Quiz: Variable Expressions", "title": "Quiz: Variable Expressions", "all_assessment_items": ["{\"sha\": \"5df36c9de6a0c236eca16398bda937a19fe8ecd6\", \"live\": true, \"id\": \"x61bfaf5d6ad1cd60\"}", "{\"sha\": \"5050523efbfa2db9f8b44137b7220cd34ed0d068\", \"live\": true, \"id\": \"x01dc94fefa8ac2b8\"}", "{\"sha\": \"3ea56fa2e01dae6ba4b8e2141a2a5088ba77ee7d\", \"live\": true, \"id\": \"xba054cbd0ec1dfdf\"}", "{\"sha\": \"e647889e495ebc4fc12692a11d4905059718a21b\", \"live\": true, \"id\": \"x98d7f75bad48ab55\"}", "{\"sha\": \"1a1fd6c4c35395f4714d1f6d7b85e4062a41aec2\", \"live\": true, \"id\": \"x2d4eae0587338208\"}", "{\"sha\": \"dcb4bc8a6094400890fc47ffa028e04daf4000ad\", \"live\": true, \"id\": \"x6f1464e7eb40a9b4\"}"], "description": "", "basepoints": 10.0, "slug": "quiz-use-variable-expressions", "kind": "Exercise", "name": "quiz--use-variable-expressions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--use-variable-expressions"}, "neural-cells-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/neural-cells/neural-cells-questions/", "id": "neural-cells-questions", "display_name": "Neural cells questions", "title": "Neural cells questions", "all_assessment_items": ["{\"sha\": \"53d5a4729f8666da20850fbcba04f76c9cced89b\", \"live\": true, \"id\": \"x27aadade21d7a0bf\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a3da1f6c06c0d3d7776746b78d4ca4a693544db8\", \"live\": true, \"id\": \"x11900977897cf7d5\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"265b1f4d20151c36e9f39601f173f9b4805870ec\", \"live\": true, \"id\": \"x6bf64283e4a2f61c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6996315c9296c3643b973e12cda89525200a4870\", \"live\": true, \"id\": \"xcada1d5c7ae8475d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4bfcaf9474026309fe95fe9607676363489ae9e0\", \"live\": true, \"id\": \"x19428467c670eb2e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"57c23ef9f5931c67ae27dd07b9f55e33faeef3ec\", \"live\": true, \"id\": \"x4cd9368bb7797819\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c348112926b0de9252374c69359d5666e5e8adca\", \"live\": true, \"id\": \"x98a0cf6f18a75782\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"45174bdca4160c1239a4fc11b9e3c127d462d3b3\", \"live\": true, \"id\": \"x2483dba8ed3c4d85\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d3d65b22c1a22545b705b69910eb23088f5054d\", \"live\": true, \"id\": \"x213b574a5131e524\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"99f7bdf3ebe87c47c079edbf95462619a6ce409e\", \"live\": true, \"id\": \"xceb26a38311fcada\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Neural cells questions", "basepoints": 10.0, "slug": "neural-cells-questions", "kind": "Exercise", "name": "neural-cells-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "neural-cells-questions"}, "jade-cong-ap": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/global-prehistory-ap/paleolithic-mesolithic-neolithic/jade-cong-ap/", "id": "jade-cong-ap", "display_name": "Jade Cong (AP)", "title": "Jade Cong (AP)", "all_assessment_items": ["{\"sha\": \"d4d50a5f1c9b5f4807713f9353bd141804e60600\", \"live\": true, \"id\": \"xa0e2f769c9ec593b\"}", "{\"sha\": \"494f234dc47ef1a1c48babf2deb085979d84ba26\", \"live\": true, \"id\": \"x0e7052317f2f4084\"}", "{\"sha\": \"b3975832673eb841d3573db28a97931385a8b4f4\", \"live\": true, \"id\": \"x44b0d3fdc82ca55d\"}", "{\"sha\": \"c4ec1ab679fb6bfbadad63615db9651612ce6faa\", \"live\": true, \"id\": \"x75b7b505d79286ec\"}", "{\"sha\": \"ab226678a4ddedbe87b75af9ce1435bbc70c27ac\", \"live\": true, \"id\": \"xc4d634a637c65669\"}", "{\"sha\": \"92b3a4ec97a93e91eb309b4e17ae285fe70c613c\", \"live\": true, \"id\": \"x7e7087361d5e3d58\"}", "{\"sha\": \"4206005774b89e36a57ecd4387c06c74c3f7bbeb\", \"live\": true, \"id\": \"x3539df1ea51825be\"}", "{\"sha\": \"dd8931047387a4c81f8f659e46cdf4709220d502\", \"live\": true, \"id\": \"x20f19de9671d0ebf\"}", "{\"sha\": \"3873ea2aa9fac06829f4151e6f6311f54f768856\", \"live\": true, \"id\": \"x1434066371213230\"}", "{\"sha\": \"fc2907de6faa18e93746f01193df43b603dbdeb9\", \"live\": true, \"id\": \"xe747eb469d8f1de1\"}", "{\"sha\": \"677179ff5fb391ca4f6adcf111769afa3f8e6057\", \"live\": true, \"id\": \"xeb8096f999a8ea32\"}", "{\"sha\": \"0ea354e19712c4b526a7d9fd667bf23f81392f77\", \"live\": true, \"id\": \"x377f7bbdd3c3ef2c\"}"], "description": "Test your knowledge of this AP work of art.", "basepoints": 10.0, "slug": "jade-cong-ap", "kind": "Exercise", "name": "jade-cong-ap", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "jade-cong-ap"}, "creating-line-plots-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-line-plots/creating-line-plots-1/", "id": "creating-line-plots-1", "display_name": "Making line plots, bar graphs, and picture graphs", "title": "Making line plots, bar graphs, and picture graphs", "all_assessment_items": ["{\"sha\": \"cbb90554c3ba5ca91f16b455a74a93092d6642de\", \"live\": true, \"id\": \"xac674e28331d8b92\"}", "{\"sha\": \"e6c0c86e69a954b04814cb87adb906ddd9a28cf5\", \"live\": true, \"id\": \"xa67fea6e7226c92b\"}", "{\"sha\": \"499b52cb724e4e4099ba5a48b2b148aced8fc3df\", \"live\": true, \"id\": \"x87fb7a15ce0a455c\"}", "{\"sha\": \"af734572e2fae1de220d77dde5fed455a83285d6\", \"live\": true, \"id\": \"x474c94dff682ab67\"}", "{\"sha\": \"84b935539f95364407ee82908a7b7fd3d6afbe54\", \"live\": true, \"id\": \"xd64989fb67687cad\"}", "{\"sha\": \"ce6018d6615b1e6fec8aa0a7567e006602d470ed\", \"live\": true, \"id\": \"x83cbaea216dc8a87\"}", "{\"sha\": \"2468995c55fbd84d0facda2b0587a3edc1523932\", \"live\": true, \"id\": \"x6daac53af6d2db28\"}", "{\"sha\": \"59522d625f6acc1b81351df4473380f8cf7d00b4\", \"live\": true, \"id\": \"x88a851c48d94ed81\"}", "{\"sha\": \"28392bb6d5081cf627dab321005c30d9877b859c\", \"live\": true, \"id\": \"xf7e3dd1bce376407\"}", "{\"sha\": \"21215618413809d092702b2b6a8db558026dabe1\", \"live\": true, \"id\": \"x72160c86a827cc0a\"}", "{\"sha\": \"60f3774f050dee1d50ccafec44c40f4ae8892431\", \"live\": true, \"id\": \"x23984c8abfb83833\"}", "{\"sha\": \"29d0160b2822f4f1e1ecc216d9f301f68aaf1ce7\", \"live\": true, \"id\": \"x72cdefbaf864fcb1\"}", "{\"sha\": \"15e55d5af7811d5a7da04209acf589d4bc5b5393\", \"live\": true, \"id\": \"x2b70b1a85329ef77\"}", "{\"sha\": \"86802ff420292adc57616cf5803c3c8cbbd655cb\", \"live\": true, \"id\": \"x37d3f4e85055d952\"}", "{\"sha\": \"01c45daa5f5feac34c6c78065a62babb8964d296\", \"live\": true, \"id\": \"x5e9e419bfa372c22\"}", "{\"sha\": \"3c7ac4965120e45f92b797faf4dc1b0c53bc8bc3\", \"live\": true, \"id\": \"x5d22660e517c8f46\"}", "{\"sha\": \"1cf8b67a8e54cd3cd26e7a56c46cc3f4d6772456\", \"live\": true, \"id\": \"xa0e51c11c02b10df\"}", "{\"sha\": \"36dc30c6ae3da7a1ccdc3fc44a88b02cdc592d16\", \"live\": true, \"id\": \"xc840606c8c6e1cd7\"}", "{\"sha\": \"f27a7016ccce608b30b544ade3ab00029336b0d1\", \"live\": true, \"id\": \"x6be04b74b3cc72d5\"}", "{\"sha\": \"499de47d12b161e2d1df55e76ffc74f13f87b616\", \"live\": true, \"id\": \"x9971863c3a2ccb28\"}", "{\"sha\": \"6e02f7e9db16410b1c0e88139744bf15006ba7e1\", \"live\": true, \"id\": \"xf485c5d51def8702\"}", "{\"sha\": \"7cf1ae21f8cd5f015a76bf85ee71f38ab11bf7bb\", \"live\": true, \"id\": \"x356ea0f53e7f283f\"}", "{\"sha\": \"d6372d65f5c6cbcefb3c43a65b8408b87cf7718f\", \"live\": true, \"id\": \"x9e335fab04ef9c78\"}", "{\"sha\": \"72aa11b5b39d5900f3fee3998a74bd27eeb3ca59\", \"live\": true, \"id\": \"xb0a6ac3f152e87d9\"}", "{\"sha\": \"6ec5a8b293cfa9ff3b3f7181322eb33faeeda71c\", \"live\": true, \"id\": \"x7fa1e78abad12f96\"}", "{\"sha\": \"65d77b52a77c1d4b27e54070941287533ac094cf\", \"live\": true, \"id\": \"x1d5aa7103f529cc9\"}", "{\"sha\": \"f51b5ecf83bf6a6fee3c1e0b25b6a9ea734ccdd3\", \"live\": true, \"id\": \"x9fee6de3afe0fb6d\"}", "{\"sha\": \"63f2d0273e6e0bd2665fab30fcd9fea0e5838f79\", \"live\": true, \"id\": \"x8f64d142fde4db89\"}", "{\"sha\": \"0bc17bccf487dd40699f3663b87da557df69d6b1\", \"live\": true, \"id\": \"x7554ed94c1a2e43d\"}", "{\"sha\": \"eabf10737d477e48ed015a20a62024fa1dda487c\", \"live\": true, \"id\": \"x3bf67409b2d2116a\"}"], "description": "Create line plots, bar graphs, and picture graphs from data sets.", "basepoints": 10.0, "slug": "creating-line-plots-1", "kind": "Exercise", "name": "creating-line-plots-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["solving-problems-with-line-plots-1", "measuring-lengths-2", "solving-problems-with-picture-graphs-1", "solving-problems-with-bar-graphs-1"], "exercise_id": "creating-line-plots-1"}, "creating-line-plots-2": {"uses_assessment_items": true, "id": "creating-line-plots-2", "display_name": "Marking data on line plots", "title": "Marking data on line plots", "all_assessment_items": ["{\"sha\": \"3b6dbbaccfebcc3953e2a9294808c3673e4f1629\", \"live\": true, \"id\": \"x7644f6a440a0dfe4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9e983fc41bfe10c1998daa36df85bca37c5d6d16\", \"live\": true, \"id\": \"x0d57c4d84cd91940\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7a42877afe3855aaa74949d036f5ff54b7992338\", \"live\": true, \"id\": \"x2edaffe8bbc0cc7c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23e9d7f1fd58d2ff416e9a1adcb79d912f6b9ccb\", \"live\": true, \"id\": \"x4a3cbc87b915860c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9fec13eb72d4b6493f05ee9c86546238c618adf0\", \"live\": true, \"id\": \"x2b1918f95d2bb1d9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b599940925905db40979a1bd5f689875a6f2da0a\", \"live\": true, \"id\": \"x8882d391e21be565\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5c2f9dfdad32d85638b91a690b7abbc9e1a2885a\", \"live\": true, \"id\": \"x6ce87dab8603e0c2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9a1f1010aa413f0d25febacce12891834180730\", \"live\": true, \"id\": \"xf20e74448047e541\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"874910ec015796c3fe3750ebd0e4bb13b5630886\", \"live\": true, \"id\": \"x5a8c7d4d05b6bd40\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e5fdd3757d547f6b7abcbcf434d60d16b5d3055\", \"live\": true, \"id\": \"x1e4bf55ffd8d0b79\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ecbf0517e85b45512459d229829fc649a3a7a44e\", \"live\": true, \"id\": \"xbaaa4eca6a589f93\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"67342e90077d164d2cb39b2007cc5549ef03b2ac\", \"live\": true, \"id\": \"x761111aab9d624ff\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cece85da63d020e9441548b7c13ad40e2a66fd27\", \"live\": true, \"id\": \"xd35c97dd91183b00\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92dac7a1254d4811aa1185f0715c441d39841fd9\", \"live\": true, \"id\": \"xca52ed90a7ee4d97\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fcf666a93b6ae7283fb7daca88782a175d20bbe4\", \"live\": true, \"id\": \"xadafad816f1e22cf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5b7e1e4b3a815f693fabd319b98de2f7b9883358\", \"live\": true, \"id\": \"xce7a93d354cf6a2a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e234565b202eb629611f65699691f23f7d8ae17c\", \"live\": true, \"id\": \"x23900958742bd4bc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e3e7d0e6d9570a3f4866158a97cc3dc613bf3906\", \"live\": true, \"id\": \"x63fdf12c10fa55b7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c697e6fd183afb2cb10cc93ae8197cf030be0c4\", \"live\": true, \"id\": \"x49ea2d28385e1713\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ef7d126638c8f1a7c7b495914eff4d88d3513c30\", \"live\": true, \"id\": \"x27aeed21ebb65f99\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Record measurements on line plots (also called dot plots).", "basepoints": 10.0, "path": "creating-line-plots-2/", "slug": "creating-line-plots-2", "kind": "Exercise", "name": "creating-line-plots-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["creating-picture-and-bar-graphs-2"], "exercise_id": "creating-line-plots-2"}, "area_of_parallelograms": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-measurement/on-area/area_of_parallelograms/", "id": "area_of_parallelograms", "display_name": "Area of parallelograms", "title": "Area of parallelograms", "description": "Find the area of parallelograms given base and height.", "basepoints": 13.0, "slug": "area_of_parallelograms", "kind": "Exercise", "name": "area_of_parallelograms", "seconds_per_fast_problem": 6.0, "prerequisites": ["area_of_squares_and_rectangles", "properties-of-shapes"], "exercise_id": "area_of_parallelograms"}, "dream-of-a-sunday-afternoon-in-alameda-central-park-quiz": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/art-between-wars/latin-american-modernism1/dream-of-a-sunday-afternoon-in-alameda-central-park-quiz/", "id": "dream-of-a-sunday-afternoon-in-alameda-central-park-quiz", "display_name": "Rivera, Dream of a Sunday Afternoon in Alameda Central Park (quiz)", "title": "Rivera, Dream of a Sunday Afternoon in Alameda Central Park (quiz)", "all_assessment_items": ["{\"sha\": \"e2466dccf8df207d6acec2dd6f561aec2c549c5a\", \"live\": true, \"id\": \"xcc203f07b98dfa4b\"}", "{\"sha\": \"cc2e9c5cb600eab3d3c6d724aa4e0b6977086447\", \"live\": true, \"id\": \"x38f15f2a8952fa0b\"}", "{\"sha\": \"3bcb821ace82c4e43c492a35c7300043dfbc1a72\", \"live\": true, \"id\": \"x40ded8d8d710330f\"}", "{\"sha\": \"de9771e167a25786978e14636a77f283b9c5db76\", \"live\": true, \"id\": \"xb52cfe9faeec55af\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "dream-of-a-sunday-afternoon-in-alameda-central-park-quiz", "kind": "Exercise", "name": "dream-of-a-sunday-afternoon-in-alameda-central-park-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "dream-of-a-sunday-afternoon-in-alameda-central-park-quiz"}, "brown-adipose-tissue-and-metabolism-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/brown-adipose-tissue-and-metabolism-1/", "id": "brown-adipose-tissue-and-metabolism-1", "display_name": "Brown adipose tissue and metabolism", "title": "Brown adipose tissue and metabolism", "all_assessment_items": ["{\"sha\": \"473c6564652d2d0d5b79e2a89c1c92f20af2dfe2\", \"live\": true, \"id\": \"x0291b397a783e998\"}", "{\"sha\": \"a8179fe6ab00e9862b5d817b6a2e70eb2a51da6d\", \"live\": true, \"id\": \"x053d4f70222d1003\"}", "{\"sha\": \"a5f3f2403ac13f1008be3f5f83e1d7c65670bd5c\", \"live\": true, \"id\": \"x755f54a807c2c74c\"}", "{\"sha\": \"08b01233c230e7e9617f82bc2889aae0ed340ef6\", \"live\": true, \"id\": \"x6a8654eab2593a66\"}", "{\"sha\": \"e5ca7befd9e1cdd62edc55c546bbee609324339b\", \"live\": true, \"id\": \"xa4e1c3cb6bd31ef0\"}"], "description": "Questions pertaining to adipose tissue and metabolism", "basepoints": 10.0, "slug": "brown-adipose-tissue-and-metabolism-1", "kind": "Exercise", "name": "brown-adipose-tissue-and-metabolism-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "brown-adipose-tissue-and-metabolism-1"}, "post-impressionism": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/avant-garde-france/post-impressionism/post-impressionism/", "id": "post-impressionism", "display_name": "Post-Impressionism", "title": "Post-Impressionism", "all_assessment_items": ["{\"sha\": \"b072d1819965c12be2abd0ab5b4d4bd6a919542a\", \"live\": true, \"id\": \"x56a310356277b5b5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b32e4f160d89074178778fcf140ab056ed64310\", \"live\": true, \"id\": \"xdd3ddb70cd0e8929\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"49b2fd6b909fefcab36255fd535492f681901704\", \"live\": true, \"id\": \"xaeba13bc67fd0b72\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ea46af2702d7747d6001efca34c5ad4d71264e76\", \"live\": true, \"id\": \"x06db464be8679267\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b8f191fa6dfe0092882e10eab4f4b040974b771\", \"live\": true, \"id\": \"x47ad5ad5f0c8c2f1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1cecc1a15854a7001ccfa0eee5021ca039037848\", \"live\": true, \"id\": \"x356976f7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0be990c4ad6d7d42c8a0b2884b3a50aaf1268a98\", \"live\": true, \"id\": \"x59d94328c9753404\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fbf157bba48218a97952971a5783f71bcab733d4\", \"live\": true, \"id\": \"x291f8e02dc5be35f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"38e656391e25411b31fa19b2561fb08a64df7520\", \"live\": true, \"id\": \"x835eb529c0c5d9dc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87590c8767e848ce9364f3df3864547a6a9e2447\", \"live\": true, \"id\": \"x3033c40851537904\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"907f230b969e16ccdd91ad1e20ff60ca43ad7286\", \"live\": true, \"id\": \"x45b6e67b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7e4d35f091b927452b5e68466a61b57e0e58f407\", \"live\": true, \"id\": \"x285b2803d04a6dc2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b90400d3ba38b3186900e4e6fe03a85349a5b949\", \"live\": true, \"id\": \"x5f21e939c821fef2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d5bb92717b91ced96aca41ef61520d49998c67d4\", \"live\": true, \"id\": \"x060eb0c8b658bcc3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9f57db794fcabae28ffcbefec47f851f04ccb54a\", \"live\": true, \"id\": \"xf2bc53538d1ac96c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6117bc68491126997064488053843170c3f6bdeb\", \"live\": true, \"id\": \"xa270be2a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b26bb8bd8da8692066d58c73466afc9e91d9c71d\", \"live\": true, \"id\": \"xe6dbccd6399f2f3d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"28b9037a62edd94bf72823f8c39a0f35f13ab57e\", \"live\": true, \"id\": \"x2e461cd4e57be0e5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be0bf44b4f3ede825ee8e272df609f6f137b9579\", \"live\": true, \"id\": \"x76011c39096e4ff7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e3e50a6e21da6dd36e0eaffcb85b09fee6b6fc14\", \"live\": true, \"id\": \"x5015c017d2910066\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3e04299badcd3a96e982dd77040fb4d17093e045\", \"live\": true, \"id\": \"xcd57157ae5e1a486\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4b5a0d156e35c087fa7d6795abd0cf4057b145d6\", \"live\": true, \"id\": \"x343fcd225ef085dc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d01b9c9f376ca2db1df7781a9b7fa306326addff\", \"live\": true, \"id\": \"x72dd89c7caecff2d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d4630538366f161d4b5035406045c4236c5dc10e\", \"live\": true, \"id\": \"x48764eb08f2094ce\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "post-impressionism", "kind": "Exercise", "name": "post-impressionism", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "post-impressionism"}, "performing-reflections-on-the-coordinate-plane": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-transformations/performing-reflections-on-the-coordinate-plane/", "id": "performing-reflections-on-the-coordinate-plane", "display_name": "Performing reflections", "title": "Performing reflections", "all_assessment_items": ["{\"sha\": \"0353c38409b24579bc1b56dad6e9d98cad168d86\", \"live\": true, \"id\": \"x20bf14237b66f5ff\"}", "{\"sha\": \"e72845ef3ca2598caeda8b7739e999db0e2bcdd0\", \"live\": true, \"id\": \"xb89edfd9f438d237\"}", "{\"sha\": \"be4e1a03da83bfb620cbecc58d50036960a6bed6\", \"live\": true, \"id\": \"x09a816c8eb86d47a\"}", "{\"sha\": \"58bb6ba62311efa84865c31b51856614cef231e2\", \"live\": true, \"id\": \"xcff581904e627cf0\"}", "{\"sha\": \"57f505b669f1f6c65c7f31749a08b1be24f84876\", \"live\": true, \"id\": \"x74fe2eb168cd7ba2\"}", "{\"sha\": \"a8a8ec9330f324e2e545fab21c69309804c31617\", \"live\": true, \"id\": \"x7e2ba9b9e54b9232\"}", "{\"sha\": \"1f94255764cd831f3007e6a690780e9defa83f68\", \"live\": true, \"id\": \"x64429ed140de2904\"}", "{\"sha\": \"1490bb3604636289f259e85ef3a5885231e9d9d7\", \"live\": true, \"id\": \"x2057f1cab591a5e3\"}", "{\"sha\": \"106dac9d21e5016a0abb12f2c6eea0b623b1e413\", \"live\": true, \"id\": \"x16bb6eed0bea4822\"}", "{\"sha\": \"2ca40bc870f11a22c82e79fd9591e434deb67250\", \"live\": true, \"id\": \"xfcfac6665cfb0929\"}", "{\"sha\": \"4ec865e85bfe8424c4e8501cb1e5b46f91b52f50\", \"live\": true, \"id\": \"xf7f954d55b1f4970\"}", "{\"sha\": \"a8dedc507e6736fd078f2a1b6985e9c48b6dbd6f\", \"live\": true, \"id\": \"x2fdb36b6fddb33c1\"}", "{\"sha\": \"34a8ce1b2414080fb1d413ff36edc9cea5f13f18\", \"live\": true, \"id\": \"x2a71a1ee09f44311\"}", "{\"sha\": \"d0e9fd815a3580beff10a79148ecf6f0ed77cc21\", \"live\": true, \"id\": \"xe28f344945e9ce49\"}", "{\"sha\": \"1604ff351d814aa897127939a3755a270c38b747\", \"live\": true, \"id\": \"x64aec8135aecbac5\"}", "{\"sha\": \"27d1da216d300bd5953417dc1e2584bbadf683d6\", \"live\": true, \"id\": \"x2fa582c4d44b777b\"}", "{\"sha\": \"e7a59298c578956aa06444e0797651ebafe47819\", \"live\": true, \"id\": \"x0ddc547613d5cb45\"}", "{\"sha\": \"fc734fc3504443f45dda101a34fd9dcec692fbc7\", \"live\": true, \"id\": \"xc2e75637ec13e601\"}", "{\"sha\": \"5d0e3e195d3ed894696dd9cb4eabd2ea754607c8\", \"live\": true, \"id\": \"x9bcef4d499896980\"}", "{\"sha\": \"156d64dcf616426d43f07ce6484daf94f157f7a1\", \"live\": true, \"id\": \"x7b4443e9448f0e30\"}"], "description": "Use the interactive transformation tool to perform reflections.", "basepoints": 10.0, "slug": "performing-reflections-on-the-coordinate-plane", "kind": "Exercise", "name": "performing-reflections-on-the-coordinate-plane", "seconds_per_fast_problem": 4.0, "prerequisites": ["line_graph_intuition"], "exercise_id": "performing-reflections-on-the-coordinate-plane"}, "northern-renaissance-in-the-16th-century": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern/northern-renaissance-1500s/northern-renaissance-in-the-16th-century/", "id": "northern-renaissance-in-the-16th-century", "display_name": "Northern Renaissance in the 16th Century", "title": "Northern Renaissance in the 16th Century", "all_assessment_items": ["{\"sha\": \"f6756626b396c512968eda464acd588e0f277cd2\", \"live\": true, \"id\": \"x7d51326e3d4292d3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9f2c4cf903f8cab60e3089889a9564aeba190707\", \"live\": true, \"id\": \"x1cb8c0acd010e0b3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7f2a08586d1d75135bc38f3ed9ce5bfe443b89b1\", \"live\": true, \"id\": \"x4754152161426d35\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"25b79fb1c67c37cbe6ef9e046ec682415ddbde97\", \"live\": true, \"id\": \"xe64e7d520b613907\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"baee70343c7ffd1384cac233ff4e22ed076e6eda\", \"live\": true, \"id\": \"x1d4abb3a7fa7b292\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"efb30b775497a0fb85399d2c1501a7d790930508\", \"live\": true, \"id\": \"xeb71289cce80281d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"faa7adae4730bd4d784595241c78e315f0d45ddc\", \"live\": true, \"id\": \"x6742a8e170f7a450\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4f87c165173ea388cefd12e5f7d9147c97507780\", \"live\": true, \"id\": \"xd11c2ddaa5e693f2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "northern-renaissance-in-the-16th-century", "kind": "Exercise", "name": "northern-renaissance-in-the-16th-century", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "northern-renaissance-in-the-16th-century"}, "visualizing-and-interpreting-relationships-between-patterns": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/number-patterns/visualizing-and-interpreting-relationships-between-patterns/", "id": "visualizing-and-interpreting-relationships-between-patterns", "display_name": "Visualizing and interpreting relationships between patterns", "title": "Visualizing and interpreting relationships between patterns", "all_assessment_items": ["{\"sha\": \"3cdd876bad3c1dd2c175ef26992ac68b0d00a09d\", \"live\": true, \"id\": \"xae7578b4ca323cee\", \"perseus_api_major_version\": null}", "{\"sha\": \"ae8038926573807a42c7a3e2b7a08936b3310fba\", \"live\": true, \"id\": \"xc770304bfdb25f07\", \"perseus_api_major_version\": null}", "{\"sha\": \"50f510c0163ada4b3a72240be5ce23aeebf5dc04\", \"live\": true, \"id\": \"xa1aea4fffaa01a11\", \"perseus_api_major_version\": null}", "{\"sha\": \"6c234b1c3d54aebd926a0518679e58fbaf792c1a\", \"live\": true, \"id\": \"x345471a70f644b68\", \"perseus_api_major_version\": null}", "{\"sha\": \"835721769ecf2e8793967d376315c2ea3da2cfbe\", \"live\": true, \"id\": \"xf05079b699150e23\", \"perseus_api_major_version\": null}", "{\"sha\": \"22a65fbf347811caebbd5edc9dd701a275251e6e\", \"live\": true, \"id\": \"xe66f08329d16eaa5\", \"perseus_api_major_version\": null}", "{\"sha\": \"c9c763172750140bc816fba505bb320520b903d7\", \"live\": true, \"id\": \"xe22ed6e693ec2aea\", \"perseus_api_major_version\": null}", "{\"sha\": \"f5473f9dd45e7e18c2f2c4a4aed1ce785880b443\", \"live\": true, \"id\": \"xa51fa02fafc9cc84\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b41f09ab343bfec2c7a090a3bf3d87db1e8c345\", \"live\": true, \"id\": \"x76f884a7\", \"perseus_api_major_version\": null}", "{\"sha\": \"acbaf30887ad91543bda009e9d83778969eb5cd9\", \"live\": true, \"id\": \"x5c917567d0bcf265\", \"perseus_api_major_version\": null}", "{\"sha\": \"c31e18ed9f3323d518fc2a17e99e7ae36cedbbcb\", \"live\": true, \"id\": \"x6c2b86fd86ffc34e\", \"perseus_api_major_version\": null}", "{\"sha\": \"55fb8bde559bb5a08234042660f7edab84d875e1\", \"live\": true, \"id\": \"xdd18e52f2af82f88\", \"perseus_api_major_version\": null}", "{\"sha\": \"6749dacee4a12fc7a5a2add6a9b4ceb7407e7b4c\", \"live\": true, \"id\": \"xb2819e4ad8e8c5f0\", \"perseus_api_major_version\": null}", "{\"sha\": \"614fecefc8a7785c23597588fcbbdf1ce8d89763\", \"live\": true, \"id\": \"xb1754b34d7879065\", \"perseus_api_major_version\": null}", "{\"sha\": \"84a7e35ea5c2a5bacea5816b0b7aacabdaceea63\", \"live\": true, \"id\": \"xe40c29cc44282a60\", \"perseus_api_major_version\": null}", "{\"sha\": \"3ff7464e72fe8bd9990fe4f561725bc0c0f30b09\", \"live\": true, \"id\": \"x5d672f19789543a6\", \"perseus_api_major_version\": null}", "{\"sha\": \"01f099efa57d356049d2fea5cdeea95bb5a8b280\", \"live\": true, \"id\": \"xf57507e7e641a89d\", \"perseus_api_major_version\": 0}", "{\"sha\": \"20ed3f7d2c9bd8abf9f137c77900aabe2c7cec3a\", \"live\": true, \"id\": \"x23ecea4f7e3f1504\", \"perseus_api_major_version\": null}", "{\"sha\": \"fb0a812d3b685bda157b7617bdc8023fc8a91507\", \"live\": true, \"id\": \"xbe9a2561e16f2256\", \"perseus_api_major_version\": null}", "{\"sha\": \"a827cc0abcdfa018527b48b31a2d29d84ad4d37e\", \"live\": true, \"id\": \"x187807e13e0d3da0\", \"perseus_api_major_version\": null}"], "description": "Generate patterns using given rules. Identify relationships between terms. Graph ordered pairs consisting of corresponding terms from the patterns.", "basepoints": 28.0, "slug": "visualizing-and-interpreting-relationships-between-patterns", "kind": "Exercise", "name": "visualizing-and-interpreting-relationships-between-patterns", "seconds_per_fast_problem": 52.0, "prerequisites": ["patterns", "math-patterns", "graphing_points"], "exercise_id": "visualizing-and-interpreting-relationships-between-patterns"}, "drawing-polygons": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/drawing-polygons/", "id": "drawing-polygons", "display_name": "Drawing polygons", "title": "Drawing polygons", "all_assessment_items": ["{\"sha\": \"493f1bfd5181fcbe01ed76dc0379ae6782657cc3\", \"live\": true, \"id\": \"xd77f24f920e2355f\"}", "{\"sha\": \"a11b22b9be4e1b8a0e51976475f7817ad1f1db1d\", \"live\": true, \"id\": \"x153dcbdb24bf96bf\"}", "{\"sha\": \"4612ecfe00c732cc83a3fe5dd1b920c8ea70361c\", \"live\": true, \"id\": \"x444d0678bef5498e\"}", "{\"sha\": \"03857efb2078f2082735dadd7f21b5846b7ea547\", \"live\": true, \"id\": \"x464316abed728ee9\"}", "{\"sha\": \"4d592d4b5c9ba69e59db7521502a68db748ed0b8\", \"live\": true, \"id\": \"xc9187daacca72603\"}", "{\"sha\": \"0425f9476a2203c1d96c9bc672067771ea8fb264\", \"live\": true, \"id\": \"x2e255b756911f229\"}", "{\"sha\": \"7e9c0a867085fab58c8c3505020167f547316ebd\", \"live\": true, \"id\": \"x53ce41b82e264d27\"}", "{\"sha\": \"2bc47fb9966df129bc5d73cee650e52f6f396b94\", \"live\": true, \"id\": \"xc27c078f05d13381\"}", "{\"sha\": \"2dd6bda40800bbb63ad17ea64a4e8430e5d44885\", \"live\": true, \"id\": \"xadec2871d7802990\"}", "{\"sha\": \"3a158a296a8cf97f9c2e601bfbb90bfe227f1413\", \"live\": true, \"id\": \"x1929d7a73e468881\"}", "{\"sha\": \"b07c46b238b5a5cbcd8faafc5c47f654e03a05f5\", \"live\": true, \"id\": \"x0bd727c39829602d\"}", "{\"sha\": \"4552a271d1645dce36c020287a4ae19de33bf639\", \"live\": true, \"id\": \"xef0b2578b7e39d15\"}", "{\"sha\": \"e2aea9a95e322eff1f0226ce5c065e85dcd6ee64\", \"live\": true, \"id\": \"x0c9e74efe84ad405\"}", "{\"sha\": \"52a0b8d50a1f8836d0c02eece9156291ab0f7caa\", \"live\": true, \"id\": \"xd9845767aff89866\"}", "{\"sha\": \"8052155ea5d0ef664b47eba20d1afa6c93aecd8d\", \"live\": true, \"id\": \"x45c4affa57e34228\"}", "{\"sha\": \"4acd90da63f29fc597990ab56834698e0b4c6ed3\", \"live\": true, \"id\": \"x4c47b992d2ac1f97\"}", "{\"sha\": \"8f227bb1d6a555f3c031230ba2998390bee00fde\", \"live\": true, \"id\": \"x96bfe9c27a8d0efc\"}", "{\"sha\": \"3facaa53f61ea8da07d90a17f750a34bc5ab5231\", \"live\": true, \"id\": \"x30436c65066dc899\"}", "{\"sha\": \"eb5b884664908152395d0f61fbd1bd11ff34948e\", \"live\": true, \"id\": \"x4c0004ce198d00fc\"}", "{\"sha\": \"2b5a2b7593ad13150dc194c51d5029dcac5d0902\", \"live\": true, \"id\": \"x592211bc43846aaf\"}"], "description": "", "basepoints": 26.0, "slug": "drawing-polygons", "kind": "Exercise", "name": "drawing-polygons", "seconds_per_fast_problem": 41.0, "prerequisites": ["polygons-in-the-coordinate-plane"], "exercise_id": "drawing-polygons"}, "improper-integrals": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/improper-integrals-tutorial/improper-integrals/", "id": "improper-integrals", "display_name": "Improper integrals", "title": "Improper integrals", "all_assessment_items": ["{\"sha\": \"2076698895f3994a5b794d318e53031f7cd51926\", \"live\": true, \"id\": \"xfbe93ab1df86338d\", \"perseus_api_major_version\": null}", "{\"sha\": \"5804aed6a4c10415122fb06e0c7c2da1219845df\", \"live\": true, \"id\": \"xa652c0cb6ef12c40\", \"perseus_api_major_version\": null}", "{\"sha\": \"782e02d7e7abed4ef6ff84125c739ad4e86779b9\", \"live\": true, \"id\": \"x593d99db76462fd8\", \"perseus_api_major_version\": null}", "{\"sha\": \"dac0198a4d3ee2f3312dc5ee8a3ec32e0d0260f0\", \"live\": true, \"id\": \"x4ddf45c2364bd9f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"92970be69146877bddbb935c02e7d55378775c73\", \"live\": true, \"id\": \"x576af54718523a15\", \"perseus_api_major_version\": null}", "{\"sha\": \"4db902b7dfc9be17239b57283b1f81723d9906dc\", \"live\": true, \"id\": \"xa218fc5b72f8e995\", \"perseus_api_major_version\": null}", "{\"sha\": \"07440be04e7c754931aa723c553c40193f1e4b46\", \"live\": true, \"id\": \"x5edaacd37ef15920\", \"perseus_api_major_version\": 2}", "{\"sha\": \"e4dc06d2006851320b9e83c74732d208dfc10627\", \"live\": true, \"id\": \"x459b28fc7a966ace\", \"perseus_api_major_version\": null}", "{\"sha\": \"3fee5ccdf13c482594e03a7daed5016bfc30d0a5\", \"live\": true, \"id\": \"x34c949b892f68e43\", \"perseus_api_major_version\": null}", "{\"sha\": \"0c10804454f4b63eb3d1a013ad36a6e367a44daf\", \"live\": true, \"id\": \"xab5b7090397c7d82\", \"perseus_api_major_version\": null}", "{\"sha\": \"04512dcd0a8d06380be46661abdfb2d9190b5fc4\", \"live\": true, \"id\": \"xa6439fbb320ef0d6\", \"perseus_api_major_version\": null}", "{\"sha\": \"b79029301f051d48db586185dfde9b99e53d8801\", \"live\": true, \"id\": \"xfa034a3b320269dc\", \"perseus_api_major_version\": null}", "{\"sha\": \"9eebc80d15e83f2d9409b0b6191d09152ab7322f\", \"live\": true, \"id\": \"x7960430b8cf04305\", \"perseus_api_major_version\": null}", "{\"sha\": \"803c6d165c6e1f22912e1a81554b7e8db163ae0c\", \"live\": true, \"id\": \"x7511321023205dfc\", \"perseus_api_major_version\": null}", "{\"sha\": \"d9ed3a7e837082153fc7bbec62aaade7d14b1b9d\", \"live\": true, \"id\": \"x7f744ad949b0e57f\", \"perseus_api_major_version\": null}", "{\"sha\": \"cd938948777000061d999dbf8a67c30fe3b48522\", \"live\": true, \"id\": \"x3b27742886a38f2f\", \"perseus_api_major_version\": null}", "{\"sha\": \"38bedcf849fa881bcf51f70907b50061277a489d\", \"live\": true, \"id\": \"x6aeaef29a054cf7a\", \"perseus_api_major_version\": null}", "{\"sha\": \"4f349c950775de426548a2fb0e51aeaf2e80f156\", \"live\": true, \"id\": \"xe1b6843872e2d82e\", \"perseus_api_major_version\": null}", "{\"sha\": \"6447167f79cf964637709a03ef55c53ecfd6a741\", \"live\": true, \"id\": \"xbfd8f3fc75ec681c\", \"perseus_api_major_version\": null}", "{\"sha\": \"70443e8a68bcf61d4f7ce5809e26d3b0d88dde9b\", \"live\": true, \"id\": \"x8d44b176385fea71\", \"perseus_api_major_version\": null}", "{\"sha\": \"535d25c5c6045a392ab89ffd27bd4f2777baa96a\", \"live\": true, \"id\": \"xfe4bc0113c79473a\", \"perseus_api_major_version\": null}", "{\"sha\": \"b937b2e69cab13e061f1462327c617780360fd9b\", \"live\": true, \"id\": \"xb792745a90256f68\", \"perseus_api_major_version\": null}", "{\"sha\": \"cc957e46412a9e3020258cb784a9dbaa52e9ad18\", \"live\": true, \"id\": \"xe45f7fe18b8a39ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"3a7943b09acb2bd2f86984820f62f7b8bf37f8ec\", \"live\": true, \"id\": \"xaefe40f2be271c1f\", \"perseus_api_major_version\": null}", "{\"sha\": \"f9dff2300554c249c53c6d301e7d06bd465bad90\", \"live\": true, \"id\": \"x6ba8fa3868d1b16b\", \"perseus_api_major_version\": null}", "{\"sha\": \"618ebc0bb6b786963471eb19269b863df45aaac0\", \"live\": true, \"id\": \"x00eff23cd002e996\", \"perseus_api_major_version\": null}", "{\"sha\": \"a135a58aa56347fe393512474d1b28525983435c\", \"live\": true, \"id\": \"xca3ea97f390c121b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"519e1b165b9e4a398c2f8a556a8aa60ea9fba35c\", \"live\": true, \"id\": \"x188e133770fd84ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"2c0362f7adc9605444f37b466166087d04a82f73\", \"live\": true, \"id\": \"x896f88eacce757e7\", \"perseus_api_major_version\": null}", "{\"sha\": \"6e0a2059623be2ce7e49226f816452719ef10c31\", \"live\": true, \"id\": \"x85e902dc355bb123\", \"perseus_api_major_version\": null}", "{\"sha\": \"aaa1f600f2b88ad2e8a15c5fd86985702cef665e\", \"live\": true, \"id\": \"x73aa3cf19b35e911\", \"perseus_api_major_version\": null}", "{\"sha\": \"77cb85e06687e0125c61a7a92971a4929d58b590\", \"live\": true, \"id\": \"x116f7df6f95db78b\", \"perseus_api_major_version\": null}", "{\"sha\": \"87b8968b53217866d2102fdc68d00998d0fe4ed9\", \"live\": true, \"id\": \"xf645505f826624a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"24415fab9e8bddeb225ebc57d2a13c1aa5287124\", \"live\": true, \"id\": \"x3e335bc4525b2075\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "improper-integrals", "kind": "Exercise", "name": "improper-integrals", "seconds_per_fast_problem": 4.0, "prerequisites": ["functions-defined-by-integrals"], "exercise_id": "improper-integrals"}, "bleeding-and-impaired-hemostasis-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/bleeding-and-impaired-hemostasis-quiz/", "id": "bleeding-and-impaired-hemostasis-quiz", "display_name": "Bleeding and impaired hemostasis quiz 1", "title": "Bleeding and impaired hemostasis quiz 1", "all_assessment_items": ["{\"sha\": \"5ab14943fa5d1cc2e8a0520927c977f535dc2d93\", \"live\": true, \"id\": \"x2ac4ff335d845945\", \"perseus_api_major_version\": null}", "{\"sha\": \"f1a482396475b1bb77102c033eebe9e66c371391\", \"live\": true, \"id\": \"x36d0eaee82744ee7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"24121fea276a9a5cc3c9843a273c8412d7263ed7\", \"live\": true, \"id\": \"xd06ad4c94558cb25\", \"perseus_api_major_version\": null}", "{\"sha\": \"0a8c340e4cd58236eeaace015e8beb79c04ed444\", \"live\": true, \"id\": \"x81756e35279ecf3c\", \"perseus_api_major_version\": null}", "{\"sha\": \"b443582ba1d335367c6b6145604d5847420d164a\", \"live\": true, \"id\": \"x236753a09856e247\", \"perseus_api_major_version\": null}", "{\"sha\": \"fbda7e908611ffe221e2c50739f899374fd5d621\", \"live\": true, \"id\": \"xb171dd177b15b7ab\", \"perseus_api_major_version\": null}", "{\"sha\": \"f7ba33ee9a6411d588cff938595f5fe2271d139e\", \"live\": true, \"id\": \"x0f4584ce09abc472\", \"perseus_api_major_version\": null}", "{\"sha\": \"5bd9bcaa46a45669dedb8d0521588a0016ebe336\", \"live\": true, \"id\": \"x364ae216e0fa6555\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c52ececbff5ea11cc9fa243c77437001eae468d\", \"live\": true, \"id\": \"xc1172785d9248258\", \"perseus_api_major_version\": null}", "{\"sha\": \"d3a471e5b8ad07e21e5e39776947b2eefe2ddd61\", \"live\": true, \"id\": \"xd90204604df3d7db\", \"perseus_api_major_version\": null}"], "description": "NCLEX-RN style questions related to bleeding and impaired hemostasis.", "basepoints": 10.0, "slug": "bleeding-and-impaired-hemostasis-quiz", "kind": "Exercise", "name": "bleeding-and-impaired-hemostasis-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "bleeding-and-impaired-hemostasis-quiz"}, "riemann-sums-and-sigma-notation": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/riemann-sums/riemann-sums-and-sigma-notation/", "id": "riemann-sums-and-sigma-notation", "display_name": "Riemann sums and sigma notation", "title": "Riemann sums and sigma notation", "all_assessment_items": ["{\"sha\": \"a4e136ce869f21506d6ad9f512cdc42c3e986e42\", \"live\": true, \"id\": \"xe637a0e97a9b96f4\", \"perseus_api_major_version\": null}", "{\"sha\": \"114b556e794be5ebca0e5eb3c87c7efa46e8504d\", \"live\": true, \"id\": \"xc4893754152b35ea\", \"perseus_api_major_version\": null}", "{\"sha\": \"df027e299314b4d379d26efbbd4dfd2a9b9b4e95\", \"live\": true, \"id\": \"x46fcd97d6e949611\", \"perseus_api_major_version\": null}", "{\"sha\": \"d4ec78c218e057cc30f87afdfb7ce25aadc9e2aa\", \"live\": true, \"id\": \"x0901462f6fdccc93\", \"perseus_api_major_version\": null}", "{\"sha\": \"86b0710561a7b5abfcc94b5147a530a51492ad72\", \"live\": true, \"id\": \"x9dacbc21b1201d80\", \"perseus_api_major_version\": null}", "{\"sha\": \"c593ba529923a1d90648b9d7ad494fb6d4cb3b92\", \"live\": true, \"id\": \"x8ba1e780c7a2db27\", \"perseus_api_major_version\": null}", "{\"sha\": \"6f900f64a313702fdda499c2db101376ae0b53c8\", \"live\": true, \"id\": \"x6aff7f9159c26d78\", \"perseus_api_major_version\": null}", "{\"sha\": \"4ac608e7ae517e19afd3435cbd48714d2f697c2f\", \"live\": true, \"id\": \"xb91d8e572764cde1\", \"perseus_api_major_version\": null}", "{\"sha\": \"5abd0f5edf2ab43c298d081d1135ed507f485da1\", \"live\": true, \"id\": \"xbdde895481e4bbe3\", \"perseus_api_major_version\": null}", "{\"sha\": \"73b9ee4d0f9f1833fe0f9442e592fe5cf5e4d638\", \"live\": true, \"id\": \"xf2dd2aec8ff9d0d5\", \"perseus_api_major_version\": null}", "{\"sha\": \"b4a977978800a20a44366581707a90b5422ca2b1\", \"live\": true, \"id\": \"xd753a6b0384dd171\", \"perseus_api_major_version\": null}", "{\"sha\": \"cd4b1aa9c3d92616222b8d14a0f6486f73ffcb93\", \"live\": true, \"id\": \"xd5ac217a4964e2ca\", \"perseus_api_major_version\": null}", "{\"sha\": \"77e603b2375e733e2843517cefc093be5aa6d731\", \"live\": true, \"id\": \"xb44261c7b51c9a0e\", \"perseus_api_major_version\": null}", "{\"sha\": \"f7dfc56cf5348d7cc31afe72735173a8a6b1022b\", \"live\": true, \"id\": \"xccf7eb8d82d7f817\", \"perseus_api_major_version\": null}", "{\"sha\": \"4dcde3be5675406019b77f2c027d9558e68e1240\", \"live\": true, \"id\": \"xc9bb00a4c837f93e\", \"perseus_api_major_version\": null}", "{\"sha\": \"566d56b688adf1854e6e8d2cb4bcbe1569886901\", \"live\": true, \"id\": \"xf666e7029d219613\", \"perseus_api_major_version\": null}", "{\"sha\": \"b301bf2d8b391bb649e39f9f048fbd0eb3907795\", \"live\": true, \"id\": \"xa4b27f56e3f0795a\", \"perseus_api_major_version\": null}", "{\"sha\": \"16af7714df2e9a502ff76894aab540781ee7172d\", \"live\": true, \"id\": \"x8c1c56002caf1da1\", \"perseus_api_major_version\": null}", "{\"sha\": \"8df856e2c7d2c51da5b59f2bd7dffd0e8d2a7747\", \"live\": true, \"id\": \"xfcbf0b4945e401fb\", \"perseus_api_major_version\": null}", "{\"sha\": \"646e05facbc0e15c2016e2e846d17855a510b1db\", \"live\": true, \"id\": \"xea009b8de0657ff7\", \"perseus_api_major_version\": null}", "{\"sha\": \"ed6063c27b528c2639f2b1190b4be36cb8415d2b\", \"live\": true, \"id\": \"x786a857aadb3f7ff\", \"perseus_api_major_version\": null}", "{\"sha\": \"71ac3a19348d5d9e49f79f5118e81d183d52d653\", \"live\": true, \"id\": \"x06cf1d756373eb61\", \"perseus_api_major_version\": null}", "{\"sha\": \"fd91de43c9ba4735d0948533b9087349cde774f4\", \"live\": true, \"id\": \"x3ace900486456343\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a5f24a267006083176e971a7c94f0dd92f92681\", \"live\": true, \"id\": \"x974de79c628c9ff3\", \"perseus_api_major_version\": null}", "{\"sha\": \"043ed1b3b6cad90a5b129bc7e1318fca0d01d4d8\", \"live\": true, \"id\": \"x700c1fe92201e5f8\", \"perseus_api_major_version\": null}", "{\"sha\": \"0b68bcdf1f5aef1cb3eff0fbcd0c550d7ea34720\", \"live\": true, \"id\": \"xacc9ce5a380c8408\", \"perseus_api_major_version\": 3}", "{\"sha\": \"2378b2776e7a5faa102ac833a9cb15c40ea306e3\", \"live\": true, \"id\": \"x5b3783dafda73517\", \"perseus_api_major_version\": null}", "{\"sha\": \"3732a0f338a16635fef0d5d52ac9860434e82e58\", \"live\": true, \"id\": \"x4ad202135769aaea\", \"perseus_api_major_version\": null}", "{\"sha\": \"83cc32dcd5e63a5c71b04c493a5da18ff5d38dfa\", \"live\": true, \"id\": \"x239e206714a22ef0\", \"perseus_api_major_version\": null}", "{\"sha\": \"ca13d15195d5522474bd560ebc8bc255a5914f78\", \"live\": true, \"id\": \"xd20b30997b6a8fee\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "riemann-sums-and-sigma-notation", "kind": "Exercise", "name": "riemann-sums-and-sigma-notation", "seconds_per_fast_problem": 4.0, "prerequisites": ["using-rectangles-to-approximate-area-under-a-curve"], "exercise_id": "riemann-sums-and-sigma-notation"}, "analyzing-with-dot-plots": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-data-management/analyzing-with-dot-plots/", "id": "analyzing-with-dot-plots", "display_name": "Reading dot plots and frequency tables", "title": "Reading dot plots and frequency tables", "all_assessment_items": ["{\"sha\": \"80b7bc5efcd4dbf0124aba8e16534a72ae0e76e6\", \"live\": true, \"id\": \"x82da33a6dcf82cbc\"}", "{\"sha\": \"9680cf57cdf7b71f04074d417d5d1102cf13c237\", \"live\": true, \"id\": \"x9e6aaf924cc83310\"}", "{\"sha\": \"01c383b12f175cd0e7b13d6bcfecafea3e5f7d23\", \"live\": true, \"id\": \"x602538c7c0371638\"}", "{\"sha\": \"017df9c2cfde1a03ea644be4f6e653f41e6cc1b6\", \"live\": true, \"id\": \"x821d9dbd028c36eb\"}", "{\"sha\": \"066aec5f0fde1c8a999d64d8912ea336be76f510\", \"live\": true, \"id\": \"xe957e60cb708d462\"}", "{\"sha\": \"6162e342d4c94f0bc87f672221215009325e0c39\", \"live\": true, \"id\": \"x830b3892700deead\"}", "{\"sha\": \"bb422cfde4a5f8ea7cb1c73fef8a18d11f29efe2\", \"live\": true, \"id\": \"xd5b44b00bbb88b1f\"}", "{\"sha\": \"6ba6de30458bbfb229db73cee9298b678b0e1452\", \"live\": true, \"id\": \"xfebb380ec8b4a901\"}", "{\"sha\": \"740fa250cff74ae75abdea6b5969d29b3adc098d\", \"live\": true, \"id\": \"x91b262b609b6e110\"}", "{\"sha\": \"404c528bd3442eed41d381bd8511ed93236e9377\", \"live\": true, \"id\": \"x46e4b8de85f04154\"}", "{\"sha\": \"24e228b6f409348300c994f3385cddd9f06cdf20\", \"live\": true, \"id\": \"x54d337b47c5e3ba2\"}", "{\"sha\": \"c2e6d8e5c96edb4eabe1126418f4c4ce09b90df1\", \"live\": true, \"id\": \"xe943d92ea5c02017\"}", "{\"sha\": \"e9f53ca1a232a20cedecaba7271ec045e561642e\", \"live\": true, \"id\": \"x6d7808bb750350cd\"}", "{\"sha\": \"5aeaf5c6cbe93a9d4c10fb0d6202b0bebb7f6c6f\", \"live\": true, \"id\": \"xc21e3f6d6c0bad55\"}", "{\"sha\": \"66e360f772da8d30a4a5dfc85dd479315f228991\", \"live\": true, \"id\": \"x323b2f355d680fc0\"}", "{\"sha\": \"5a4883af10a4b533f0fbfd3dc068f01e6f0b8e99\", \"live\": true, \"id\": \"xc2282b2e2fd6a8a1\"}", "{\"sha\": \"5d1cae5e631e639c54a874df28005c827e422d4b\", \"live\": true, \"id\": \"xa3d6354f9086baf0\"}", "{\"sha\": \"bb494c54d86abdb4b541789a9fd1a629011975db\", \"live\": true, \"id\": \"x43b0dccf2dfea459\"}", "{\"sha\": \"87d1a5e8f2ce87f0f0774b8525b9e28a1c01cd78\", \"live\": true, \"id\": \"xe996deabb5ec5eee\"}", "{\"sha\": \"7580ac5ba47ae0490d5536685689cb94086f907d\", \"live\": true, \"id\": \"xc1c2dc43fb9a024e\"}", "{\"sha\": \"96f747ed2cdcc298574c89024c6f3592c989238f\", \"live\": true, \"id\": \"x45859454297c6b8b\"}", "{\"sha\": \"5161af12b237ef88050743747f6ddebf76ec4680\", \"live\": true, \"id\": \"x0823de00f93952c9\"}", "{\"sha\": \"1bec3f78ad1c01cfc846429daeab730c17d2dc13\", \"live\": true, \"id\": \"xbe5fd92e6b183227\"}", "{\"sha\": \"549c373281253b4b31a79fda72dd5e427e5fb056\", \"live\": true, \"id\": \"xc75b8c2f80f81715\"}", "{\"sha\": \"ed4b50de1b8b574b175d92920e8f28ac7eda259f\", \"live\": true, \"id\": \"xb694799911f7cf5a\"}", "{\"sha\": \"8e7fcda800b18677368c87ba8554560a794d2938\", \"live\": true, \"id\": \"x57d33c7a69bc6992\"}", "{\"sha\": \"01a8be9062a21d4f89320f0eb144c3472153f088\", \"live\": true, \"id\": \"xb9e49ef9e9e419b4\"}", "{\"sha\": \"31f940e031d480a0d42bb34a0a5a5612f8816d56\", \"live\": true, \"id\": \"xa7b41c3ba076d2bd\"}", "{\"sha\": \"68ecd4ffe2b1c3d7e33dfb87866b4e00cf2a8324\", \"live\": true, \"id\": \"x1a0ada539bc67b3e\"}", "{\"sha\": \"fffbde908a4312c5efb5a6712b77c98fad1917bd\", \"live\": true, \"id\": \"x4e399f25107cd4b3\"}", "{\"sha\": \"980e59542baeb2bf4784ebee862651671c69c3e1\", \"live\": true, \"id\": \"x13d12c77538f8ecf\"}", "{\"sha\": \"106b4e426f52650f7c9a3196e19b14aee34bb857\", \"live\": true, \"id\": \"x03514fa67cd246a6\"}", "{\"sha\": \"d5d232dfcec8c10f539f578ab1e5f0090321340f\", \"live\": true, \"id\": \"x44e8bc32cce223cb\"}", "{\"sha\": \"b47b81956f8ba11a292ba80c25fb4947aecedc96\", \"live\": true, \"id\": \"x66be20279761bd68\"}", "{\"sha\": \"36065e4ce49941b01f053abea74a38e48ad622b1\", \"live\": true, \"id\": \"xa33d31c50093da1f\"}", "{\"sha\": \"49eb160f08956432dc10918892f48dab87f255d0\", \"live\": true, \"id\": \"x95d4e93439a0e010\"}", "{\"sha\": \"619e8ead893b063d25a55f33297281976bf4eb34\", \"live\": true, \"id\": \"x4bf477c735d3d5b8\"}", "{\"sha\": \"5e3fd26bd9c132e68da792ccf4487a7ae5a851c2\", \"live\": true, \"id\": \"x80387eb1d0ef8238\"}", "{\"sha\": \"fd2157d2dd47e89fb8808c79ffd1f93f5928c794\", \"live\": true, \"id\": \"x3319fba6a3d0311d\"}", "{\"sha\": \"58e7bb5aabb3dad6be7368a8a0f08f67380d47f1\", \"live\": true, \"id\": \"x37024d9d249232e7\"}", "{\"sha\": \"116c4b02a13e07a812370a146f980699e7dcec8e\", \"live\": true, \"id\": \"x70ac99f6d9c0b410\"}", "{\"sha\": \"5e18d68469d9400c91454e449f1db5fca5c37883\", \"live\": true, \"id\": \"xbdad08d97e5549f6\"}", "{\"sha\": \"4794bf5b9f2d6976ef2a59910dd0ec1252959ef0\", \"live\": true, \"id\": \"x93ed3629db50ae1c\"}", "{\"sha\": \"3ced9615b4d75d29dff2bbd248c1200c666076c8\", \"live\": true, \"id\": \"x345a14f71efc3c32\"}", "{\"sha\": \"a2245b71756ddf447f132650a142f027784fe39f\", \"live\": true, \"id\": \"xc9ed6fb4318f30be\"}", "{\"sha\": \"9b7f1e9b23bd52300c4761f2ed7c576186614caf\", \"live\": true, \"id\": \"x6f0809d64f83aa17\"}", "{\"sha\": \"218c538a7c0e0873576ec9fd6ba79a018d5b8dc3\", \"live\": true, \"id\": \"x6e28acaea7ad4a57\"}", "{\"sha\": \"9be70f1579ec3065c926ca5ef28c316a09a05b55\", \"live\": true, \"id\": \"x5a45a0b2fcd414c9\"}", "{\"sha\": \"a8de0401f078dd65f9baee490f824b450bbb422c\", \"live\": true, \"id\": \"xa1d1276da4e552a9\"}", "{\"sha\": \"9df64fdbac88f4be582c81af2aa099cfc96a8dc5\", \"live\": true, \"id\": \"xb443cd61beb8a74b\"}", "{\"sha\": \"f4d206f2c925b8c7d8021fd731a41ddd7befe9ef\", \"live\": true, \"id\": \"x6bbed9d97f23a207\"}", "{\"sha\": \"dd323b5fe275ba4991460fc5c193463b38bb1790\", \"live\": true, \"id\": \"x45124f1be3a5f471\"}", "{\"sha\": \"868edbbd0afa497c6d5b4eb9fa9ede481686a5b6\", \"live\": true, \"id\": \"xc01bf5ac05973f04\"}", "{\"sha\": \"7cc19cea043ad0e59c6009156efc1e710b618111\", \"live\": true, \"id\": \"xe6ce505c1b5ab259\"}", "{\"sha\": \"20727ba6e439280b52adc07478355f8cee88e650\", \"live\": true, \"id\": \"x337ea109eff3bd37\"}", "{\"sha\": \"4132005d44de36bf3d37fb64762d1c0c0073a593\", \"live\": true, \"id\": \"x0835bb0552998507\"}", "{\"sha\": \"206de1b15951af45b8099c26d5a5322c2c9477aa\", \"live\": true, \"id\": \"xfa839cea47a53b9f\"}", "{\"sha\": \"4cb91fa00a843d30fc18b08f02f55edaf6629f7b\", \"live\": true, \"id\": \"xe91e9addb32f95f7\"}", "{\"sha\": \"bc99f546c2e63c3a118a82f1734dc6a6ce561f79\", \"live\": true, \"id\": \"x58bb9dcbed5ac1d1\"}", "{\"sha\": \"c0fde686c66be15c325c0e9a89b1cf281b33bf1a\", \"live\": true, \"id\": \"x1459851fe4cf14a7\"}", "{\"sha\": \"7e5b150a18d7f4b6877243191841c97ce00dbe61\", \"live\": true, \"id\": \"x615a2c42a5861d7c\"}", "{\"sha\": \"7764103702ad64aa68ad2c9d3e1e2a45879e21f2\", \"live\": true, \"id\": \"xf716689418f370fa\"}", "{\"sha\": \"424b2e591346cafe8bc18d74873dcabf554dc884\", \"live\": true, \"id\": \"xaaf6dd6ee6dbad41\"}", "{\"sha\": \"e4f6665176dcfd71ccb439e0493cff5b03b7d089\", \"live\": true, \"id\": \"xf64a66e3d2df01c3\"}", "{\"sha\": \"d705576fcbc0d1bf743dc405bc383ccffd027868\", \"live\": true, \"id\": \"xc224ee37b3b52bfd\"}", "{\"sha\": \"5e37c46f850f0f6488f445680cd08f8b1fc783b1\", \"live\": true, \"id\": \"xf999888e0479ed3c\"}", "{\"sha\": \"8a08f8b1883d795beefdeccf583bd623881860f1\", \"live\": true, \"id\": \"xd516d738eff373e3\"}", "{\"sha\": \"864b2b3e34dce5b35312cf438dcd1a9387db1c71\", \"live\": true, \"id\": \"xd0a9ac143f2abc8a\"}", "{\"sha\": \"cb3e224882d94ae2bdba99805b50a6eb059f4437\", \"live\": true, \"id\": \"x5aab842df6a670c8\"}", "{\"sha\": \"fd4506aca115d32eb5a0fdd8b51434b1cd9a9989\", \"live\": true, \"id\": \"xfde0cf9587a70ab6\"}", "{\"sha\": \"07ecda25feb8cd47c05f8190a26d706b0f8f0058\", \"live\": true, \"id\": \"x7fa862929fbd2ba1\"}", "{\"sha\": \"4a656b310903c8592f0e224e5fd209ffe7836933\", \"live\": true, \"id\": \"x19be76fe07e04fd8\"}", "{\"sha\": \"8b8869ccf987984e98d480f719ec133f882a885d\", \"live\": true, \"id\": \"x18937fd73ffe3d15\"}", "{\"sha\": \"0bc1b154e95c8114f1cf85581f627a614f70b720\", \"live\": true, \"id\": \"xea23e03330bb0a9c\"}", "{\"sha\": \"e85983c4253ef898dc0bada6fa82fa39fc4febd8\", \"live\": true, \"id\": \"x978fcab647f77f93\"}"], "description": "Practice reading basic dot plots and frequency tables.", "basepoints": 10.0, "slug": "analyzing-with-dot-plots", "kind": "Exercise", "name": "analyzing-with-dot-plots", "seconds_per_fast_problem": 4.0, "prerequisites": ["creating-dot-plots", "creating-frequency-tables"], "exercise_id": "analyzing-with-dot-plots"}, "new-york-kouros-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/greek-art/daedalic-archaic/new-york-kouros-quiz/", "id": "new-york-kouros-quiz", "display_name": "New York Kouros (quiz)", "title": "New York Kouros (quiz)", "all_assessment_items": ["{\"sha\": \"68a6e2bca470a2340765b9970fdbc58f17108fd4\", \"live\": true, \"id\": \"xad8bcbc1492929b7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"543ee2de32511c7d30c4b9c29e024e258b65a407\", \"live\": true, \"id\": \"xd0b0bd7d09a8a532\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"33e982621aa6242fa2888c282192affb9dfda39e\", \"live\": true, \"id\": \"x23e130259ebcae1c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "new-york-kouros-quiz", "kind": "Exercise", "name": "new-york-kouros-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "new-york-kouros-quiz"}, "trigonometry_1.5": {"uses_assessment_items": false, "path": "khan/math/trigonometry/basic-trigonometry/basic_trig_ratios/trigonometry_15/", "id": "trigonometry_1.5", "display_name": "Trigonometry 1.5", "title": "Trigonometry 1.5", "description": "", "basepoints": 21.0, "slug": "trigonometry_15", "kind": "Exercise", "name": "trigonometry_1.5", "seconds_per_fast_problem": 19.0, "prerequisites": ["trigonometry_1"], "exercise_id": "trigonometry_1.5"}, "graphing-proportional-relationships": {"uses_assessment_items": true, "id": "graphing-proportional-relationships", "display_name": "Graphing proportional relationships", "title": "Graphing proportional relationships", "all_assessment_items": ["{\"sha\": \"03e2d6fcf1b8ccbecd75ff94893feddfe5b0b6f6\", \"live\": true, \"id\": \"xaae82f5e\"}", "{\"sha\": \"03d9aca7cf9da8dc459ee4f5ea7cead42381a894\", \"live\": true, \"id\": \"xc74fd0cd\"}", "{\"sha\": \"cde2663a8edf893f2a326673a974a7fb8a2bba82\", \"live\": true, \"id\": \"xb5bcdb04\"}", "{\"sha\": \"111d2b8c548f8d123e654a0cbc559cfa9a5542c6\", \"live\": true, \"id\": \"x9bf41aad\"}", "{\"sha\": \"62d380747cf99304414e67eb8373005b1a74ea94\", \"live\": true, \"id\": \"x5a1bbcdc\"}", "{\"sha\": \"646ec4366666d9a6e3ec247b77edb62159d32e96\", \"live\": true, \"id\": \"x8828345c\"}", "{\"sha\": \"2e9324bee96fce151054a7bb02d23abdf36b4582\", \"live\": true, \"id\": \"x153f73c1\"}", "{\"sha\": \"fbf7928e093ad289881ba40bf80e1eb59b066d3f\", \"live\": true, \"id\": \"xcccb2293\"}", "{\"sha\": \"466a3171c3388cf5b453e50b6d84816ad23be90f\", \"live\": true, \"id\": \"xd4107869\"}", "{\"sha\": \"79fe748734765d4aec780d58ff4f928c5df76e89\", \"live\": true, \"id\": \"xeee76667\"}", "{\"sha\": \"e02c0781cb4214c5ae9d32686f16a9528f5a9cbe\", \"live\": true, \"id\": \"x199977df\"}", "{\"sha\": \"5e6af170c8d59bd2605bf49e3892fe3dce126af1\", \"live\": true, \"id\": \"x30b0fdf3\"}", "{\"sha\": \"9cbb04d2dc8526a99935592b3b08ff271528a242\", \"live\": true, \"id\": \"xcb19c8d0\"}", "{\"sha\": \"553bbf38630ff6755c627e318c357d941084071f\", \"live\": true, \"id\": \"x618f7065\"}", "{\"sha\": \"aefbe9a216a59120e3d860d9be51b8d423c0d6d3\", \"live\": true, \"id\": \"xbd05a232\"}", "{\"sha\": \"c9aab52a744dbe40b1ee61e40909e02ffd12582e\", \"live\": true, \"id\": \"x5becdef5\"}", "{\"sha\": \"992f43de400a961ddca4963f8c26662ea4c63686\", \"live\": true, \"id\": \"xebf38548\"}", "{\"sha\": \"f63884bfc8a4a97ec4475349a29161ecab686d3e\", \"live\": true, \"id\": \"xcdb1d41b\"}", "{\"sha\": \"3ca001caeb8305a545891352785efa492a636bd3\", \"live\": true, \"id\": \"xe68c495f\"}", "{\"sha\": \"6fdc1daa9fc402b6a8a7334962a91a13b4c81707\", \"live\": true, \"id\": \"x4e40d9b4\"}", "{\"sha\": \"3c0649dd8bad1b9779520212ca7d84a42c91e104\", \"live\": true, \"id\": \"x30084d6f\"}", "{\"sha\": \"6de172ab5fd16adb64585a3971547a3034824d18\", \"live\": true, \"id\": \"x03ff0c0e\"}", "{\"sha\": \"adcf82e4a2d917472e34abb220031b22582beae1\", \"live\": true, \"id\": \"x1d1aa0d0\"}", "{\"sha\": \"0685199cf82592959b85582b3e674033af6ae1a9\", \"live\": true, \"id\": \"x02a21c4b\"}", "{\"sha\": \"af850f32e8115bc6c78a9f8c1a98e99c5963cc9b\", \"live\": true, \"id\": \"x533fdef2\"}", "{\"sha\": \"3d51269090fde3372b842bdc025fe1576f5c2989\", \"live\": true, \"id\": \"x05c8fae7\"}", "{\"sha\": \"9be16fe1b55a7b4a84ff00302b719d4d0f58cd07\", \"live\": true, \"id\": \"x722dad66\"}", "{\"sha\": \"bd09156930bef43cc769be09fe23206590ed12bb\", \"live\": true, \"id\": \"x7c5f8a51\"}", "{\"sha\": \"35b2dd1487385f2cde5b235126f11bb94a808ab4\", \"live\": true, \"id\": \"x97f9a47d\"}", "{\"sha\": \"f142e93ca0e73e825e478fdbd9690e42886acad7\", \"live\": true, \"id\": \"x078d72cc\"}"], "description": "", "basepoints": 25.0, "path": "graphing-proportional-relationships/", "slug": "graphing-proportional-relationships", "kind": "Exercise", "name": "graphing-proportional-relationships", "seconds_per_fast_problem": 34.0, "prerequisites": ["graphing_points_2", "comparing-proportional-relationships"], "exercise_id": "graphing-proportional-relationships"}, "converting-units": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-measurement/on-unit-conversion/converting-units/", "id": "converting-units", "display_name": "Converting units (metrics)", "title": "Converting units (metrics)", "all_assessment_items": ["{\"sha\": \"36e53bbb78e8bb3a6cd88ccb8501f9986241cab1\", \"live\": true, \"id\": \"x5c8cf62acc8f5b46\", \"perseus_api_major_version\": null}", "{\"sha\": \"3b7904f481f8de1695bc93e5e9d1e18c718d4c4a\", \"live\": true, \"id\": \"x8a5bf42330e697fa\", \"perseus_api_major_version\": null}", "{\"sha\": \"46fa98d59361149d16007a57f79a3fa7ae51cabe\", \"live\": true, \"id\": \"xbf4cc52950e43824\", \"perseus_api_major_version\": null}", "{\"sha\": \"280caa040e105840ba312a8993bb44f211d83b03\", \"live\": true, \"id\": \"xbf25169b7035e3f9\", \"perseus_api_major_version\": null}", "{\"sha\": \"f08a0a8727e22ca6d236bdac7436b0770d4ecb25\", \"live\": true, \"id\": \"xe74e6e5e64e3bc98\", \"perseus_api_major_version\": null}", "{\"sha\": \"965d3da42006511fa6dd8c4eb346f7368e79a9bd\", \"live\": true, \"id\": \"x164830768d3d7db8\", \"perseus_api_major_version\": null}", "{\"sha\": \"bb6ec9a73307388a764ec0bfb284bfe8b53c57ee\", \"live\": true, \"id\": \"x162eb110233dcc09\", \"perseus_api_major_version\": null}", "{\"sha\": \"677cf9263207aae575d7b904a72e144a1ceec7f8\", \"live\": true, \"id\": \"x63df2dcba1b9b6ef\", \"perseus_api_major_version\": null}", "{\"sha\": \"8ac64f4c0315524485c91e1f7329158b7dac7375\", \"live\": true, \"id\": \"xa74b56c848803eb4\", \"perseus_api_major_version\": null}", "{\"sha\": \"f00bf79c74bf32dd4c26c8260907d3047306003b\", \"live\": true, \"id\": \"x5b2d10fefeb1849b\", \"perseus_api_major_version\": null}", "{\"sha\": \"7ca0c8c0d08acf9273aa29db8f30b20a270725bc\", \"live\": true, \"id\": \"x469b0fec0df155ee\", \"perseus_api_major_version\": null}", "{\"sha\": \"59cb8240872e7f0f1b235ce0702214b0a6414154\", \"live\": true, \"id\": \"xf0304800198a200d\", \"perseus_api_major_version\": null}", "{\"sha\": \"0ed6f6dc0d8bdd3e74a48e61c5148e0917512665\", \"live\": true, \"id\": \"x284cc56e3186848a\", \"perseus_api_major_version\": null}", "{\"sha\": \"d1655a6060b00a4af5f0beffe2f3e19066820584\", \"live\": true, \"id\": \"x540da117cf62fc72\", \"perseus_api_major_version\": null}", "{\"sha\": \"76fb225f272157225d13df477d11b0017aba6a14\", \"live\": true, \"id\": \"x3c778704950df3be\", \"perseus_api_major_version\": null}", "{\"sha\": \"a2c938489d4d9988c2a138edec283b03f7770d17\", \"live\": true, \"id\": \"x82bc18e3942ca2fd\", \"perseus_api_major_version\": null}", "{\"sha\": \"a9b2ee659e110de94f4d52b350d4e357a5e02a63\", \"live\": true, \"id\": \"x07264a070baa7650\", \"perseus_api_major_version\": null}", "{\"sha\": \"a0f2b3580807ee2fc4f5341b7a212eb2acdcbaf5\", \"live\": true, \"id\": \"x14d2ba2e47e74d1e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c5c2ee2fff04514327e4759aaa2f333406790800\", \"live\": true, \"id\": \"x8bad336698f4f015\", \"perseus_api_major_version\": 0}", "{\"sha\": \"1802984682095cdc8310852da18859a64e0d9c46\", \"live\": true, \"id\": \"x871b2baa607144c1\", \"perseus_api_major_version\": 0}", "{\"sha\": \"7e40d81e832c4a66579115486431326aa14ab699\", \"live\": true, \"id\": \"xe696c93f8d702c3a\", \"perseus_api_major_version\": null}", "{\"sha\": \"c9e3ed58108e22a698d28794464c66df3df0b78c\", \"live\": true, \"id\": \"x497ef6cfd7a56b58\", \"perseus_api_major_version\": null}", "{\"sha\": \"ee5dd583cfa37dd121fec658dc8792893e2d4356\", \"live\": true, \"id\": \"x42453eb74ab47977\", \"perseus_api_major_version\": null}", "{\"sha\": \"2788d7e294bc942731e9abc0dfb0ed2bd484d9cd\", \"live\": true, \"id\": \"x1c8caf78bf9896e5\", \"perseus_api_major_version\": null}", "{\"sha\": \"2fbbd1ffee907f712dd28cbaed7a3d29c27e7307\", \"live\": true, \"id\": \"xda8e7b2f0cdd0c81\", \"perseus_api_major_version\": null}"], "description": "Convert between metric measures of distance, volume, and mass.", "basepoints": 18.0, "slug": "converting-units", "kind": "Exercise", "name": "converting-units", "seconds_per_fast_problem": 12.0, "prerequisites": ["measurement-units", "understanding_moving_the_decimal", "fraction-multiplication-as-scaling"], "exercise_id": "converting-units"}, "slope-fields": {"uses_assessment_items": true, "path": "khan/math/differential-equations/first-order-differential-equations/differential-equations-intro/slope-fields/", "id": "slope-fields", "display_name": "Slope fields", "title": "Slope fields", "all_assessment_items": ["{\"sha\": \"04308601789a06e9c4fc4d89f78136c818df550a\", \"live\": true, \"id\": \"x7625588a5416e6da\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3b003deb4078dd7fabc71d2ce78a330fc0badf18\", \"live\": true, \"id\": \"x19c657c33a1e9d3c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6b685be09da970a914f553b1aa08843858ed9900\", \"live\": true, \"id\": \"x267fbb6a572dc219\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f2dad3e5f951f010619cf959145f2f9f1475614d\", \"live\": true, \"id\": \"x6fbb4764ebf9d126\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"166010cb3e7d73d7cc702f90b544cfc47cb5f229\", \"live\": true, \"id\": \"x3c94610b3c5f82c3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e659d444b672a94e20425cd2529e52a98f6fce94\", \"live\": true, \"id\": \"xae0d2cea74c81668\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5a06a0f36bf01a2bba7c1aaf4e4d18322a4801e7\", \"live\": true, \"id\": \"x36d00fda0dd5ec97\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"30ae42c4cc104b9fa50a9ffc46eea7c739b60f82\", \"live\": true, \"id\": \"x4dfa7d560d6fea86\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2547c2d852b0a862e179d4ba8adfbecc1662d1ce\", \"live\": true, \"id\": \"xf2d6e979ab74fe8e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0225ca7f719dd288475feae306e49da7933821ec\", \"live\": true, \"id\": \"xe34a7052a9220127\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f53f997fcf8eed2a0b8de566463130753e23c9ee\", \"live\": true, \"id\": \"xb17b30fbc095f891\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4b92f8177615ce078b75029befb00fb7236bcc51\", \"live\": true, \"id\": \"x74eca6b201f66afa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e1112fb86c3802aab307f6272091845b20546d9\", \"live\": true, \"id\": \"x544f2de55a356c0d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"228618e606257d49b13b6520b91af88b785bb13a\", \"live\": true, \"id\": \"x0aa3f20d3eb325e2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a3088667f9dddb6e29385ac32ca4548070d9fe33\", \"live\": true, \"id\": \"x8a971dc57f6c231d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cfc55b8673dc17ce2bf306eca8fce660bbe35f61\", \"live\": true, \"id\": \"x9f9648d1a4070cee\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"928d1c34d49ea75c0d94a60cc4e994ec69e217cc\", \"live\": true, \"id\": \"x77b29ff83b706b9c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"466729350971ad3459b6b684b6ce1dac9c097412\", \"live\": true, \"id\": \"x9cd332d32a00d4df\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3c55b5be1c3e0479392e2753d4f0fdb978fbb2e1\", \"live\": true, \"id\": \"x5e00fb4d213d3bb9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5d122054d1f43f43b0adadba67421abd85b35d3e\", \"live\": true, \"id\": \"x601ce33453f45001\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0b8695be5c0eb00169e97a049706a3909162c0f3\", \"live\": true, \"id\": \"x35228ee511e583a3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"13af10e5dfaa4e42519844c612330bb144ca6c8e\", \"live\": true, \"id\": \"x1fbcbf702d3b22e5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e6bdc70e3d54c82556af4a49f8979fb446ce7edb\", \"live\": true, \"id\": \"x8abe26b75a2e5f1d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"42b105975afab08c3c4556872e177533c516e8fa\", \"live\": true, \"id\": \"xe38007776eea539a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2b394c67a3e4f9f3f8e69fe023fb45a92d2c193f\", \"live\": true, \"id\": \"xebe0b6d40cc28672\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bacc521769bc9a635e9ccd99e5cbf25681feb346\", \"live\": true, \"id\": \"xbc67a7d917e1c2da\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"27bc5e977127b06b0510714dd611659261f5a055\", \"live\": true, \"id\": \"x83c4e6105dc2443a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a7797719bee37c7e70de6ed1e2c27f212b79c266\", \"live\": true, \"id\": \"xfbc361c6c3ff8f7b\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8643efe57db72071911e9d5bdd9c83b9a52baaa5\", \"live\": true, \"id\": \"xc27c6aa6f8545395\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"706a5a1d6668feeb2b116b0210a90af41ff71cd2\", \"live\": true, \"id\": \"x5020f94ea94a870c\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}"], "description": "", "basepoints": 10.0, "slug": "slope-fields", "kind": "Exercise", "name": "slope-fields", "seconds_per_fast_problem": 4.0, "prerequisites": ["introduction-to-differential-equations-and-initial-value-problems"], "exercise_id": "slope-fields"}, "multiplying-and-dividing-whole-numbers-by-powers-of-10": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/multiplying-and-dividing-whole-numbers-by-powers-of-10/", "id": "multiplying-and-dividing-whole-numbers-by-powers-of-10", "display_name": "Multiplying and dividing whole numbers by powers of 10", "title": "Multiplying and dividing whole numbers by powers of 10", "all_assessment_items": ["{\"sha\": \"e38b37e8f32e18d0dc20f7a614473b587d702c9f\", \"live\": true, \"id\": \"xc10c2cd4e67f1942\"}", "{\"sha\": \"f121a34b4d2a59939892484223e28440d8dfd691\", \"live\": true, \"id\": \"xfdb82a1a9bda92d0\"}", "{\"sha\": \"e4b051cf8aff954ae7aa1953e3e3cf1d31796e83\", \"live\": true, \"id\": \"xbbff096362daa840\"}", "{\"sha\": \"ba9a3e35061f93dc3529a464ff559e9a83dcc7a8\", \"live\": true, \"id\": \"xd894da25d05c261c\"}", "{\"sha\": \"75676309f60a44f69227a005b609c55559a3e2a2\", \"live\": true, \"id\": \"xd4aa966eda51b0d4\"}", "{\"sha\": \"85728e5f5f1caf9c20d285ffa3484733290431ad\", \"live\": true, \"id\": \"x9a9cabfba12ca8e1\"}", "{\"sha\": \"532a46db7babda7336e78a2edc105f025e9b907e\", \"live\": true, \"id\": \"x7e412ff157bee23b\"}", "{\"sha\": \"8865ceb7b013cd85ab91110db942da74595eb0e7\", \"live\": true, \"id\": \"x5dacc1a53f2f58a8\"}", "{\"sha\": \"6f6577b8d6077084fb0e67d6a304729bb1a7e07f\", \"live\": true, \"id\": \"x29996339e4ff8c12\"}", "{\"sha\": \"7aba2b56cd5bbb0882a1259e3796ef2d84beeb6c\", \"live\": true, \"id\": \"xcfcd2ad25eefd872\"}", "{\"sha\": \"83daa61dba35ee31df2bda857514377573495ad2\", \"live\": true, \"id\": \"x4b3120c38966b113\"}", "{\"sha\": \"6c0b822b5470032f8424770be8036d4fef37950e\", \"live\": true, \"id\": \"xbe4bf8653ce2ddce\"}", "{\"sha\": \"4e9709a2d4e40d9af4d941dad07cb33de54a2771\", \"live\": true, \"id\": \"x3d72a6b020b2329b\"}", "{\"sha\": \"69cdd65575cd254b6e480b3c986b7bd01db8be2b\", \"live\": true, \"id\": \"xcdbb14395bf27610\"}", "{\"sha\": \"9cfbcd38326c58b95e44850d3a589a6a224861b3\", \"live\": true, \"id\": \"x5db919f2e32ec616\"}", "{\"sha\": \"4ad7181c9f743ecb5434e87a6e46432d330a6382\", \"live\": true, \"id\": \"x9ee1c6738156b697\"}", "{\"sha\": \"4db08a455ef78ea2c42222a678e86c8bda48aaa7\", \"live\": true, \"id\": \"xc031168948ad7f11\"}", "{\"sha\": \"9dc5ad3472f560a17f318009fcb6aa5bacc13238\", \"live\": true, \"id\": \"x64466d1b5a8ccf6d\"}", "{\"sha\": \"389b081eb3ba54985c4190817d1e1c444a7e8ec6\", \"live\": true, \"id\": \"xe55fd1f57add760a\"}", "{\"sha\": \"f54c7dfe07779b3230ab9b02f92d4e2853956661\", \"live\": true, \"id\": \"x05efc40fb03aac31\"}", "{\"sha\": \"ab31f5cf25b172a5a303f5a4847815edd6e5b5bd\", \"live\": true, \"id\": \"x1404a395cece9cdf\"}", "{\"sha\": \"4777d9d60a4ac798f125b730de1cf95fb70ee2cc\", \"live\": true, \"id\": \"x18a253924f3fb94d\"}", "{\"sha\": \"5ed119654d4fffeb02e90af74430d68a74ef2b5a\", \"live\": true, \"id\": \"x8fa31e9212e03219\"}", "{\"sha\": \"723801e08dc27c80c677f5eab2ef8e20070b6705\", \"live\": true, \"id\": \"x5c774bc0b96e8388\"}", "{\"sha\": \"6a6d73bd7d11bab45d15e0842caa6fa5efa9e1e7\", \"live\": true, \"id\": \"xa1878e0005b5811a\"}", "{\"sha\": \"3b5aaabf4493c5f9068318098ba5c4c179aa0edf\", \"live\": true, \"id\": \"xd80a2e993ae3e476\"}", "{\"sha\": \"11d400783846c8dbfc1b06dc9efbc3dce60de79f\", \"live\": true, \"id\": \"xcee15e749b98aaea\"}", "{\"sha\": \"c75fb81fcadbf2a6d357807afa9e9bc9322c72fc\", \"live\": true, \"id\": \"x726d19cb671673da\"}"], "description": "Multiply and divide whole numbers by powers of ten", "basepoints": 10.0, "slug": "multiplying-and-dividing-whole-numbers-by-powers-of-10", "kind": "Exercise", "name": "multiplying-and-dividing-whole-numbers-by-powers-of-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["patterns-in-zeros", "powers-of-ten"], "exercise_id": "multiplying-and-dividing-whole-numbers-by-powers-of-10"}, "graphing_systems_of_inequalities_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/systems_eq_ineq/systems_inequalities_precalc/graphing_systems_of_inequalities_2/", "id": "graphing_systems_of_inequalities_2", "display_name": "Graphing and solving systems of inequalities", "title": "Graphing and solving systems of inequalities", "description": "Graph a system of inequalities, and determine whether ordered pairs are solutions.", "basepoints": 29.0, "slug": "graphing_systems_of_inequalities_2", "kind": "Exercise", "name": "graphing_systems_of_inequalities_2", "seconds_per_fast_problem": 58.0, "prerequisites": ["graphing_systems_of_inequalities"], "exercise_id": "graphing_systems_of_inequalities_2"}, "fractions-greater-than-one": {"uses_assessment_items": true, "id": "fractions-greater-than-one", "display_name": "Recognizing fractions 2", "title": "Recognizing fractions 2", "all_assessment_items": ["{\"sha\": \"cd71fb51abec260d75b5594838f224f217246125\", \"live\": true, \"id\": \"xc786c65bfccd8b47\"}", "{\"sha\": \"a38ceeba3b7c6b976b5db63b7d047c6f5c789928\", \"live\": true, \"id\": \"xafd7c8cd180c15d7\"}", "{\"sha\": \"02f936d3d8e3ae1f2d0012840f4d6b5a543dcdfb\", \"live\": true, \"id\": \"xf98c06d1453ebd2e\"}", "{\"sha\": \"15b09ed3369c1c24ee60031032ecae536c981955\", \"live\": true, \"id\": \"x17d5ef4dbb01eac8\"}", "{\"sha\": \"2b28ba819f0813a093408a7d6cb13f106d1e1fb2\", \"live\": true, \"id\": \"x2efed891ddc7c88e\"}", "{\"sha\": \"c555e991461a3978bb7fbebd58d0ddbd60db66c0\", \"live\": true, \"id\": \"x23dbc4c0c8d2d45c\"}", "{\"sha\": \"bfb913e9233c5df5f3b64692ae2807de55325ce6\", \"live\": true, \"id\": \"xb4f76027e975489b\"}", "{\"sha\": \"b8f3f980c074864f0aa54a404fb86a20c3a9fd1b\", \"live\": true, \"id\": \"x15605f3c0b920c9a\"}", "{\"sha\": \"4e3aa2126a95d18396775c72bbe865d52b9e62ae\", \"live\": true, \"id\": \"x459648daa96fa026\"}", "{\"sha\": \"db8ae7338b076c947fcc2495a0c7e4d3f71f9a4d\", \"live\": true, \"id\": \"xbec586c8dcd1944e\"}", "{\"sha\": \"ce1e3318a47cc0e736a8e37a7e3a484965f62af5\", \"live\": true, \"id\": \"x682d2d80e00011d0\"}", "{\"sha\": \"7df14845be397561967d1178acb9e4001cf759c8\", \"live\": true, \"id\": \"x291dc6f516527a52\"}", "{\"sha\": \"744f0bc8cf4de56ac9b3dbd7e0df85f7fa66e519\", \"live\": true, \"id\": \"x0127935f51d6c54b\"}", "{\"sha\": \"7b2c596fbb1bfa998ae48cae6bfaf84f9684e49b\", \"live\": true, \"id\": \"x154ee10698078542\"}", "{\"sha\": \"f331959acdd4233c8576c557efdcf89e4a97ce6c\", \"live\": true, \"id\": \"x0f78fca63357f75a\"}", "{\"sha\": \"ee12370d4175a8fce0c21e857df28ba17e8e98ca\", \"live\": true, \"id\": \"x98ed864731873d50\"}", "{\"sha\": \"b5243b24b1c8b5df899188a2fe6213f53d443d04\", \"live\": true, \"id\": \"x1ceac66023bce6c4\"}", "{\"sha\": \"71613750e7da29dbc7fe1c75a415051d2a7d7961\", \"live\": true, \"id\": \"x851484ba50369443\"}", "{\"sha\": \"07fc60eb1549cf50447801fdc9a8ec7a741960b5\", \"live\": true, \"id\": \"xb780321588faf6ed\"}", "{\"sha\": \"c69d6d2bd047d98f6e6d5fc045c821ab7cb3b0bf\", \"live\": true, \"id\": \"xa564a7772b045c0e\"}"], "description": "Identify the fraction of a whole that is shaded. \u00a0", "basepoints": 10.0, "path": "fractions-greater-than-one/", "slug": "fractions-greater-than-one", "kind": "Exercise", "name": "fractions-greater-than-one", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing_fractions_0.5"], "exercise_id": "fractions-greater-than-one"}, "quiz--life": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/life/knowing-life/quiz-life/", "id": "quiz--life", "display_name": "Quiz: Life", "title": "Quiz: Life", "all_assessment_items": ["{\"sha\": \"b17627f1ddf5720ddf8383eeab8cf4c6ec95250d\", \"live\": true, \"id\": \"x39a011ec07d234fb\"}", "{\"sha\": \"63d7a54a627c3b71bf8ff237dc8fd8c39be5c693\", \"live\": true, \"id\": \"x625e9affd1e37c2c\"}", "{\"sha\": \"a2e37b86da29a3a76a1948cea86ec1bec5cf11bb\", \"live\": true, \"id\": \"x9fc693cd99c87c30\"}", "{\"sha\": \"0c74c49904cf5eab64e7659129cd5d1cd4fd5a51\", \"live\": true, \"id\": \"x10a658e999a9e464\"}", "{\"sha\": \"fa6571fac19c7979ccd83d9be78a100c0dac7c48\", \"live\": true, \"id\": \"x770e8a2f3c4faba2\"}"], "description": "Quiz 5.3", "basepoints": 10.0, "slug": "quiz-life", "kind": "Exercise", "name": "quiz--life", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--life"}, "reciprocal_trig_funcs": {"uses_assessment_items": false, "path": "khan/math/trigonometry/basic-trigonometry/reciprocal-trig-functions/reciprocal_trig_funcs/", "id": "reciprocal_trig_funcs", "display_name": "Reciprocal trig functions", "title": "Reciprocal trig functions", "description": "Understand the right triangle definition of sec, csc, and cot functions", "basepoints": 18.0, "slug": "reciprocal_trig_funcs", "kind": "Exercise", "name": "reciprocal_trig_funcs", "seconds_per_fast_problem": 12.0, "prerequisites": ["trigonometry_1"], "exercise_id": "reciprocal_trig_funcs"}, "masters-of-marquetry-quiz": {"uses_assessment_items": true, "id": "masters-of-marquetry-quiz", "display_name": "Masters of marquetry quiz", "title": "Masters of marquetry quiz", "all_assessment_items": ["{\"sha\": \"510b57294c071ff11dfa63e5575b64bef4c1c3f2\", \"live\": true, \"id\": \"xbe878632a2d7fe64\"}", "{\"sha\": \"295c29d7a17332ee4ba0d7d4a39caa83de8fb47d\", \"live\": true, \"id\": \"x379fd61f7bb97376\"}", "{\"sha\": \"62195524a2daf2100b6fd210582bc0f9c2e61e06\", \"live\": true, \"id\": \"x9ea0e2e814e7516a\"}", "{\"sha\": \"c5cc152cc3639e5ef95c92623845254e731976bf\", \"live\": true, \"id\": \"xc8c8c77dcbde7fb4\"}", "{\"sha\": \"391e4583451e28c7c30bbd868da6899e20db3750\", \"live\": true, \"id\": \"x1ce29ab0d2ba22df\"}", "{\"sha\": \"0eb646338b1d7ba4b0c637104bd6462683bf2a5a\", \"live\": true, \"id\": \"x6a774f0292ae4710\"}", "{\"sha\": \"b38a525853511035612839462e84fcc1171b5513\", \"live\": true, \"id\": \"xd0ec8635fd272e50\"}", "{\"sha\": \"19f3e6ac289cc017abaeb9f9ef8e6ccd48f551bd\", \"live\": true, \"id\": \"xc9cc681b3155d02b\"}", "{\"sha\": \"8bcd37575e2ffce25c39bb026d7a9040223303b6\", \"live\": true, \"id\": \"x9aa4e3f9bcc8e60a\"}", "{\"sha\": \"f930b2fc1cc883f3ce6eb154e2b4fabd761f7e45\", \"live\": true, \"id\": \"x14715f8cf2935d3b\"}"], "description": "Test your knowledge of marquetry and its masters in the 17th and 18th centuries.", "basepoints": 12.0, "path": "masters-of-marquetry-quiz/", "slug": "masters-of-marquetry-quiz", "kind": "Exercise", "name": "masters-of-marquetry-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "masters-of-marquetry-quiz"}, "evaluating-definite-integrals": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/definite_integrals/evaluating-definite-integrals/", "id": "evaluating-definite-integrals", "display_name": "Evaluating definite integrals", "title": "Evaluating definite integrals", "all_assessment_items": ["{\"sha\": \"1679169f862491b0c2f791a76ef13628cf04e814\", \"live\": true, \"id\": \"x0bbf536f9e9aeeaf\"}", "{\"sha\": \"2c1ab1622d323a3824e1b89bcdf7bebf172a8e27\", \"live\": true, \"id\": \"x5ddce9dce8c3c838\"}", "{\"sha\": \"18b66e69d035472365f66946c98a16fab987c5e7\", \"live\": true, \"id\": \"x5a026887b1c7958e\"}", "{\"sha\": \"f4fb12638c52fe2f5d2ca4b685b8f5e2069dee8f\", \"live\": true, \"id\": \"x830c15dc146b3028\"}", "{\"sha\": \"d3317da7d4ded05050d4cae1d72bf1d1c9d365b0\", \"live\": true, \"id\": \"x51f4b19001108ad0\"}", "{\"sha\": \"ab3d7d4359d32fb9553fad2245568f5627cb83d0\", \"live\": true, \"id\": \"x742f01d15845a6d8\"}", "{\"sha\": \"9938cdd6653ed7c603527d64601cb6acd8201106\", \"live\": true, \"id\": \"x1d6f9cadeb896d83\"}", "{\"sha\": \"3f097f187dfaedc4d5fdeab98cabdd547816659d\", \"live\": true, \"id\": \"xc77961bfbe8ff5d6\"}", "{\"sha\": \"e35e6b412819e54527f10e56e7e42591b3c11c5d\", \"live\": true, \"id\": \"xd6fba6f584b8c4d8\"}", "{\"sha\": \"84c2d79c78787b946b48cd50ebeb987734416b48\", \"live\": true, \"id\": \"x37dbdf373b24d98b\"}", "{\"sha\": \"f9ef208c14341c692ddde35c74bd9d608ae7b9fd\", \"live\": true, \"id\": \"x8bc0021eb79b57e9\"}", "{\"sha\": \"07d847224b3f1707b7c9eeb2f59fa4e8d14dbb7d\", \"live\": true, \"id\": \"xc7ad89cf25767427\"}", "{\"sha\": \"bd7a5d21c04f78e8e44da59827ecee8ec3100ee2\", \"live\": true, \"id\": \"x14443392fce4e8ab\"}", "{\"sha\": \"88b292e57f22478b2c2627064a5e34919573d19a\", \"live\": true, \"id\": \"xb2f7e559bb9b34ce\"}", "{\"sha\": \"55c97bcfcafe2390ece51bf04a0ad3a4be1734c2\", \"live\": true, \"id\": \"xaece2e7fb08b435b\"}", "{\"sha\": \"a25974812638809dff12a7ee4ce6870e184194ca\", \"live\": true, \"id\": \"x04abe2237fd9f83f\"}", "{\"sha\": \"a407083aa0711cbfd97ec5f4c50aafe778ed84a3\", \"live\": true, \"id\": \"x90ca30cca58b8bd7\"}", "{\"sha\": \"e5d07769fcfd3aff57d6ccb4497a4b64585be9ec\", \"live\": true, \"id\": \"x845e73c34d4d88d8\"}", "{\"sha\": \"3aacfbb96e180b18f58b39df25227dbc2af03af9\", \"live\": true, \"id\": \"x4a2476911bceafbe\"}", "{\"sha\": \"0cd461769672d4f8424255dcf900b6d01373f1cf\", \"live\": true, \"id\": \"xf2169a6ff45a0447\"}", "{\"sha\": \"10b0c2ce482bf33870b23d12792b9cd26408f658\", \"live\": true, \"id\": \"x285594c636e6de20\"}", "{\"sha\": \"961ee830215ac1ee005e202aa0a884bfb72ee3d9\", \"live\": true, \"id\": \"xf098fef67f472d04\"}", "{\"sha\": \"944b5c431937021c1df2c12cd3eda72061e3906a\", \"live\": true, \"id\": \"xa521180172bf00ef\"}", "{\"sha\": \"59e9b095b2625f20eaacb5ee443a5c4e1fef86c9\", \"live\": true, \"id\": \"x5da1b00eb68260b7\"}", "{\"sha\": \"4e5b0c15e6a3666562716288509bca5b6967abc3\", \"live\": true, \"id\": \"x15f672f13ee05b65\"}", "{\"sha\": \"0351fba2f7115439dbb0e1ec07480116a5f8988a\", \"live\": true, \"id\": \"x3f5bbca50528be15\"}", "{\"sha\": \"1b8987388aad873c7bab96bd5449ca9d7ba35594\", \"live\": true, \"id\": \"x8e805f6145b7981e\"}", "{\"sha\": \"ae1d44b0a517e8bc9b096b61f94f775b7a6d38fb\", \"live\": true, \"id\": \"xef7d0dbcf7b8fbac\"}", "{\"sha\": \"0c301d7a6a461c0b573744dbb15b32e0d45920fa\", \"live\": true, \"id\": \"xc5e1213f8ef34dde\"}", "{\"sha\": \"a287a388967d96826b89efd26d72edf6e37e1150\", \"live\": true, \"id\": \"x43a19d1e9a999013\"}"], "description": "Evaluating definite integrals using the fundamental theorem of calculus", "basepoints": 10.0, "slug": "evaluating-definite-integrals", "kind": "Exercise", "name": "evaluating-definite-integrals", "seconds_per_fast_problem": 4.0, "prerequisites": ["properties-of-integrals"], "exercise_id": "evaluating-definite-integrals"}, "berlinghieri-s-st--francis-altarpiece-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/latin-western-europe/gothic1/berlinghieri-s-st-francis-altarpiece-quiz/", "id": "berlinghieri-s-st--francis-altarpiece-quiz", "display_name": "Berlinghieri, St. Francis Altarpiece (quiz)", "title": "Berlinghieri, St. Francis Altarpiece (quiz)", "all_assessment_items": ["{\"sha\": \"0b55e1def5fafa6eeff4c926332536d8be328bd9\", \"live\": true, \"id\": \"x753988f7336f56b4\", \"perseus_api_major_version\": 0}", "{\"sha\": \"35d6f432da361895fc3eeee24aba2a4554caecc9\", \"live\": true, \"id\": \"x0911135aec83e335\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0a39cf7cd45e0b8ca2178765d64b53ba375f36fa\", \"live\": true, \"id\": \"x4f0c103ae1d4beba\", \"perseus_api_major_version\": 0}", "{\"sha\": \"715ff16353cda8af4edab22ce6963f04e8a5a761\", \"live\": true, \"id\": \"x6e353c582193a92f\", \"perseus_api_major_version\": 0}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "berlinghieri-s-st-francis-altarpiece-quiz", "kind": "Exercise", "name": "berlinghieri-s-st--francis-altarpiece-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "berlinghieri-s-st--francis-altarpiece-quiz"}, "sensory-perception---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sensory-perception-passage-1/", "id": "sensory-perception---passage-1", "display_name": "Gestalt principles and ratings of physical attractiveness", "title": "Gestalt principles and ratings of physical attractiveness", "all_assessment_items": ["{\"sha\": \"974e4beca4a08965f9ff06929217e5134df900e8\", \"live\": true, \"id\": \"xbc55e256c97c88e4\"}", "{\"sha\": \"995f31d9502d96174fb5409ee0164dffe92f9c86\", \"live\": true, \"id\": \"x677233bb46134fea\"}", "{\"sha\": \"9607cedd48e410733e1a64dba942b28c4aaaecd9\", \"live\": true, \"id\": \"x3bf4808acd066583\"}", "{\"sha\": \"c669ede07f399dabcb69fbe320115750b31f691c\", \"live\": true, \"id\": \"x20a6429b6e143cff\"}", "{\"sha\": \"01d46b49afd920464c37ba613a041328c0f0450d\", \"live\": true, \"id\": \"x48edcbe31ea788cf\"}"], "description": "Questions related to perception", "basepoints": 10.0, "slug": "sensory-perception-passage-1", "kind": "Exercise", "name": "sensory-perception---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sensory-perception---passage-1"}, "self-identity---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/self-identity-passage-2/", "id": "self-identity---passage-2", "display_name": "Increasing Sarah's self-efficacy: A case study", "title": "Increasing Sarah's self-efficacy: A case study", "all_assessment_items": ["{\"sha\": \"1111bedee33054f727c908a4c35c1d1e6f375647\", \"live\": true, \"id\": \"xb4a5c08fe6347643\"}", "{\"sha\": \"acdae3354b2309389cc3ba59ce26c7fb644b2d5a\", \"live\": true, \"id\": \"x69075f812d0d7e79\"}", "{\"sha\": \"e30895d64248102357778416cb59efab16d6f167\", \"live\": true, \"id\": \"x8b1d1bb6a375d711\"}", "{\"sha\": \"11e7fc95792c3c7ef05e70ee41017f5d8f8555e0\", \"live\": true, \"id\": \"xf37c0a39f873d4d5\"}", "{\"sha\": \"248201472453b24d1403d2d2d5a5881e79802fe4\", \"live\": true, \"id\": \"x0dc64a030afcffe0\"}"], "description": "", "basepoints": 10.0, "slug": "self-identity-passage-2", "kind": "Exercise", "name": "self-identity---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "self-identity---passage-2"}, "multiplying-unit-fractions-and-whole-numbers": {"uses_assessment_items": true, "id": "multiplying-unit-fractions-and-whole-numbers", "display_name": "Multiplying unit fractions and whole numbers", "title": "Multiplying unit fractions and whole numbers", "all_assessment_items": ["{\"sha\": \"e2428c35adf25efb44a086404dcd52d57aa2cb09\", \"live\": true, \"id\": \"x109d95873f5bb919\"}", "{\"sha\": \"ec27ae4b29752bbd625210e7eca32725792f6de9\", \"live\": true, \"id\": \"xedf33a554c6ab577\"}", "{\"sha\": \"f6d3d0f252833497788658bb5941cc19458f55f7\", \"live\": true, \"id\": \"xaf9617be25a5dfff\"}", "{\"sha\": \"3aa06a4565e938bfb42c9d3460ee6912e8f7490c\", \"live\": true, \"id\": \"x354dfc38dcd8d546\"}", "{\"sha\": \"4e3bce62f3dd77e70f94caa2dada567bc8f8fc60\", \"live\": true, \"id\": \"x36666a724834c5a6\"}", "{\"sha\": \"aa36817c28586902cda6ced3077b84ed82cd1252\", \"live\": true, \"id\": \"x74da7088237216f7\"}", "{\"sha\": \"404103827cfc503b7b80c4bcfe5572638336aad9\", \"live\": true, \"id\": \"xad7c9d643c7c3fc5\"}", "{\"sha\": \"2ee05f27a325e64fbe5afb1fe4886634702464fe\", \"live\": true, \"id\": \"xe0af081d2c8a2621\"}", "{\"sha\": \"20b4a118805cfb8725ba9c7be8acd1d830217a8f\", \"live\": true, \"id\": \"xa44f7bc3e9bff030\"}", "{\"sha\": \"a1118e2e063a3158b82a51aad1d73e566372d735\", \"live\": true, \"id\": \"x6ebfc0987dfaf028\"}", "{\"sha\": \"42f16dafa29afe3dbe3f37e9f3bc22a4b1302484\", \"live\": true, \"id\": \"xe29d6ce8acbcc688\"}", "{\"sha\": \"aa40d6514dedd4243cf131b14d221dd302d93d31\", \"live\": true, \"id\": \"x0ac68cd06ed51fc6\"}", "{\"sha\": \"6739c797e56ba0dc783487f4f526c1f1094f07a8\", \"live\": true, \"id\": \"x373535666ca5c457\"}", "{\"sha\": \"0066bd3e3517553614afac7cc492fe6b6f653826\", \"live\": true, \"id\": \"xf85b0ef3580d1f91\"}", "{\"sha\": \"a8ab3b8aaf38a76d9f8a65bf49c0ea3b4763f122\", \"live\": true, \"id\": \"x3c62af102c419c25\"}", "{\"sha\": \"4a650112ff2cabf09ee1836f8f8f10f862213263\", \"live\": true, \"id\": \"x4a4475863bdcb695\"}", "{\"sha\": \"042657bd272eadf4d8c0ca41dab48503db9a8907\", \"live\": true, \"id\": \"xeabfcb8e2c4247c0\"}", "{\"sha\": \"d467a2dd190e27584c5a8fbbe7349971a26d54d4\", \"live\": true, \"id\": \"x7eca7d0aa0869937\"}", "{\"sha\": \"c39533ea82789101d36db689c02bdbaa6f3bb2b8\", \"live\": true, \"id\": \"x8f97f4acac225755\"}", "{\"sha\": \"5d37e431542cab53404c3c7d33b85cd0d58ebf47\", \"live\": true, \"id\": \"x3f10fca965656d09\"}"], "description": "Practice multiplying unit fractions (fractions with a one in the numerator) and whole numbers.", "basepoints": 10.0, "path": "multiplying-unit-fractions-and-whole-numbers/", "slug": "multiplying-unit-fractions-and-whole-numbers", "kind": "Exercise", "name": "multiplying-unit-fractions-and-whole-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-fractions-and-whole-numbers-intuition"], "exercise_id": "multiplying-unit-fractions-and-whole-numbers"}, "sensory-perception---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/sensory-perception-passage-2/", "id": "sensory-perception---passage-2", "display_name": "Sensory adaptation and Weber's Law", "title": "Sensory adaptation and Weber's Law", "all_assessment_items": ["{\"sha\": \"995c15e8f1f2b89e302fecd25b17148b545c5efa\", \"live\": true, \"id\": \"x5955e7d27c887e7b\"}", "{\"sha\": \"7b71cfaae9cb88b2bb415273476e989e120f4a96\", \"live\": true, \"id\": \"x71866f19678e0a30\"}", "{\"sha\": \"ca01637e8461a5359c6237a58a0bd70e207d3e08\", \"live\": true, \"id\": \"x664ea786717e7098\"}", "{\"sha\": \"967cadce93b5658362739d43c0e1a059ea4a3a88\", \"live\": true, \"id\": \"x9474701a57a42dc4\"}", "{\"sha\": \"865400a521b89d010bede52e0699b6c14eb7166e\", \"live\": true, \"id\": \"x7b0803e22401cc1d\"}", "{\"sha\": \"871b7b028161b1cef79bf0fc025617ebcb2813f9\", \"live\": true, \"id\": \"xbd6ef69ecc6f2aa4\"}"], "description": "Questions related to perception", "basepoints": 10.0, "slug": "sensory-perception-passage-2", "kind": "Exercise", "name": "sensory-perception---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sensory-perception---passage-2"}, "graphs_of_sine_and_cosine": {"uses_assessment_items": false, "path": "khan/math/trigonometry/trig-function-graphs/trig_graphs_tutorial/graphs_of_sine_and_cosine/", "id": "graphs_of_sine_and_cosine", "display_name": "Graphs of sine and cosine", "title": "Graphs of sine and cosine", "description": "", "basepoints": 19.0, "slug": "graphs_of_sine_and_cosine", "kind": "Exercise", "name": "graphs_of_sine_and_cosine", "seconds_per_fast_problem": 14.0, "prerequisites": ["graphs-of-trigonometric-functions"], "exercise_id": "graphs_of_sine_and_cosine"}, "understanding-series": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/calculus-series/understanding-series/", "id": "understanding-series", "display_name": "Understanding series", "title": "Understanding series", "all_assessment_items": ["{\"sha\": \"8de3143dc8c4d8d4ce7a768b1339de7dafd4fee7\", \"live\": true, \"id\": \"x9698d59fb27d1581\"}", "{\"sha\": \"019b777a73e1c97116f1b9e2bc6390805e97f258\", \"live\": true, \"id\": \"x71a50c7f30729bc7\"}", "{\"sha\": \"ddc2a3ee0b1160419e9b2d256c4f2ad9695307c2\", \"live\": true, \"id\": \"x6f3ea8679c509cc1\"}", "{\"sha\": \"06b29d17064782e35549334e166a19514c26ee4d\", \"live\": true, \"id\": \"x49079d30334751bc\"}", "{\"sha\": \"0b3aba8675509867972b6f4151e0c89ad3a620ca\", \"live\": true, \"id\": \"x9f458bd0137d8f5a\"}", "{\"sha\": \"f937c9e0f6e32539d043ed2c584837dca0143f0f\", \"live\": true, \"id\": \"x3373b1721185b809\"}", "{\"sha\": \"3277303efa62f3f541f4f38733a1d33dfff7d872\", \"live\": true, \"id\": \"x920ccb8836562b09\"}", "{\"sha\": \"c9021620e5f2e3988230692ea6aae83fdd3056d0\", \"live\": true, \"id\": \"x1353206b30e5310f\"}", "{\"sha\": \"fafb15e7ec508368dbfc19e197af2c895ce1712f\", \"live\": true, \"id\": \"xacfb70d4549d709a\"}", "{\"sha\": \"84a3806f0993d1599c3f4a6102a4300ddf00683d\", \"live\": true, \"id\": \"x302feeb7956c8104\"}", "{\"sha\": \"1086e3c516875b83a6e14cb0f066c3982be5a23b\", \"live\": true, \"id\": \"x80c0e45096e5193a\"}", "{\"sha\": \"2375dffd8a545daf6276583d58a058e63525013f\", \"live\": true, \"id\": \"x2322b8aa4a999bcb\"}", "{\"sha\": \"57ce401690b3dcd22fd2bec9496b59a62760bce8\", \"live\": true, \"id\": \"x610c43914a1aaa81\"}", "{\"sha\": \"ee69f8e556896ef86260483fd5339c9ddebb12e8\", \"live\": true, \"id\": \"x8fc9968c35935aaf\"}", "{\"sha\": \"ecd59863d1d39be5c44c0d17717c0a6da0099ed3\", \"live\": true, \"id\": \"xfe25db51bbc9e663\"}", "{\"sha\": \"88c4316be9142f47eb9badd955b49a5e5ed29f5a\", \"live\": true, \"id\": \"x061d1f0b944b3c4e\"}", "{\"sha\": \"4369ec7e1fc6f95a0d0446d9a5dda09203827324\", \"live\": true, \"id\": \"x8e6dd67878921986\"}", "{\"sha\": \"32f2c9fdc2c17d2c55131977331f1acc9d95b3fb\", \"live\": true, \"id\": \"xaab3bb197a3ca14a\"}", "{\"sha\": \"d01bfc6782efb66c367fd2950fe097065c2e0d71\", \"live\": true, \"id\": \"x5ab304ec174565d0\"}", "{\"sha\": \"df7b97765ab8a1ae4428fa6bfc549b900b3437ed\", \"live\": true, \"id\": \"x1210ca874edefdcf\"}", "{\"sha\": \"b276552f8268d31167e0def09bf18bdfffa506af\", \"live\": true, \"id\": \"x29f39e6a77e7b9e3\"}", "{\"sha\": \"7ad5b034a174f67feac889dcbdfda990a2362741\", \"live\": true, \"id\": \"xdd9f3f63d8d3a93e\"}", "{\"sha\": \"abad6eb6a52c40006a1df14ef3c7fb0311e0d96e\", \"live\": true, \"id\": \"x531b8c65c456504b\"}", "{\"sha\": \"32e61d58b26de38a1d5dcd3800a07f4186c401f3\", \"live\": true, \"id\": \"x3ece7e273b8617c7\"}", "{\"sha\": \"04b0f83b0398ef14da30b42138846436de5c0024\", \"live\": true, \"id\": \"xd8cd6863a57fe294\"}", "{\"sha\": \"037f91d742b60d82ead08ea414651e2c48c81ede\", \"live\": true, \"id\": \"xdd8b4cedf6c6a133\"}", "{\"sha\": \"17130064ec0117e8427385553840e5914c386ed3\", \"live\": true, \"id\": \"x7e58c100ede3c0be\"}", "{\"sha\": \"11189e77a6d30408fd278daa650f6ae64a22e043\", \"live\": true, \"id\": \"x98729243500368c5\"}", "{\"sha\": \"0a0a3c0d677fd19bf6da217cd0bc8a326a6022bd\", \"live\": true, \"id\": \"x46e764a224567ac6\"}", "{\"sha\": \"1727bb96feec29bdc87c4524e6f6ee1b3037ebd7\", \"live\": true, \"id\": \"x4c0ee26f90c8c63b\"}", "{\"sha\": \"efb3269a9568e91cf4f7c8f7f41eccacf044976a\", \"live\": true, \"id\": \"xd1d1103fec17eab5\"}", "{\"sha\": \"ac473cca48dbfa45201263226c46718a729046fc\", \"live\": true, \"id\": \"xd2cc35ce68310121\"}", "{\"sha\": \"a39a73f7f13b8c1e62f9d593526b06620ad3a547\", \"live\": true, \"id\": \"x0cea362852789592\"}", "{\"sha\": \"6545e931405b6c99650468e710ecce9db999bac1\", \"live\": true, \"id\": \"xcfad664af1bda5fe\"}", "{\"sha\": \"2bcb4cda3ddd12a62371fe7b5d93b1f1a52ae1e5\", \"live\": true, \"id\": \"x800f5f3da7540296\"}", "{\"sha\": \"41b2866c127e3ebc5bfb0b5e20d972da1d1cba8d\", \"live\": true, \"id\": \"x89a9129bd79be4b0\"}", "{\"sha\": \"a6391b8c321a42576bb5873f3c7acdedf0edf614\", \"live\": true, \"id\": \"x6e8a8e9529ad8f0d\"}", "{\"sha\": \"aa6eb2d8f0a4359cbacd6f02ef7b20bcd4b6fea8\", \"live\": true, \"id\": \"x88c16d653879cb45\"}", "{\"sha\": \"18c24c6828c4053a292b645aa5118e780a19bef5\", \"live\": true, \"id\": \"x4f31d25995b3bf4a\"}", "{\"sha\": \"d5b8d6aadef3aa70afc6ceb3a9f1e9c6b75d85ed\", \"live\": true, \"id\": \"x21818405a8366cda\"}"], "description": "", "basepoints": 23.0, "slug": "understanding-series", "kind": "Exercise", "name": "understanding-series", "seconds_per_fast_problem": 26.0, "prerequisites": ["arithmetic_series", "partial_fraction_expansion_1", "geometric-series--1", "convergence-and-divergence-of-sequences"], "exercise_id": "understanding-series"}, "quiz-human-evolution-the-evidence": {"uses_assessment_items": true, "id": "quiz-human-evolution-the-evidence", "display_name": "Quiz: Human evolution", "title": "Quiz: Human evolution", "all_assessment_items": ["{\"sha\": \"bb9d5a705a7688216c9ea9bd6e1bf963ac8adcd8\", \"live\": true, \"id\": \"x93cfb409e83661ef\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a979852d17d5612e2c59099d710f7b053e4359c1\", \"live\": true, \"id\": \"x6f2214674b85f596\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0607e51ba8f003b4f55860af3e4774ca5454ffee\", \"live\": true, \"id\": \"x67464625adee135e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"14b520a84e0b7f9423da6eb3d8e832a2af6540e1\", \"live\": true, \"id\": \"x400d91966e2a07df\", \"perseus_api_major_version\": 0}", "{\"sha\": \"767fccb9e0ed29febc65c3eeebf5c249895fe5a1\", \"live\": true, \"id\": \"x6ad0e8a8240a7480\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fe783f535861734d56bbb7c74107278d00b74ba5\", \"live\": true, \"id\": \"xde14a25435c361dd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d8307de2caf7d305143045b527259228cbb3fa60\", \"live\": true, \"id\": \"xe158fc336b991f0c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"29996544d0456e55c213d2659a3fc5134abdbb7e\", \"live\": true, \"id\": \"x69f7d2e9e0bf5501\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6bdf57aa0ebb8092a9986de2bdb82f79d672642a\", \"live\": true, \"id\": \"x7a27423f66d57c78\", \"perseus_api_major_version\": 0}"], "description": "", "basepoints": 10.0, "path": "quiz-human-evolution-the-evidence/", "slug": "quiz-human-evolution-the-evidence", "kind": "Exercise", "name": "quiz-human-evolution-the-evidence", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-human-evolution-the-evidence"}, "measurement-word-problems-with-us-customary-units": {"uses_assessment_items": true, "id": "measurement-word-problems-with-us-customary-units", "display_name": "Converting to smaller units word problems (US customary)", "title": "Converting to smaller units word problems (US customary)", "all_assessment_items": ["{\"sha\": \"46d0730fa5bb578585b8113b6f871dd2021298c4\", \"live\": true, \"id\": \"xe7cbbd2a38523021\"}", "{\"sha\": \"6844ea469760603e686ae660275c6aa53ab492d2\", \"live\": true, \"id\": \"xa1fc535ec89f2c0e\"}", "{\"sha\": \"1cce02363b1c7631d0be0fd3cf076a3eaf2fcdd5\", \"live\": true, \"id\": \"x3caeaced1d9466a3\"}", "{\"sha\": \"0918e60ef124a0580c4b713194209801a6fb9841\", \"live\": true, \"id\": \"x91ced0e1a421d161\"}", "{\"sha\": \"dbb71d07223558d7356380a895141040feb79378\", \"live\": true, \"id\": \"x89fca7e1654be2ff\"}", "{\"sha\": \"f315f87c9c662df238442f7f5d84bea80dd52d12\", \"live\": true, \"id\": \"x0c15cc5a85b6ae45\"}", "{\"sha\": \"e57ee69d5218f36996ef92570f61dbae7210df6a\", \"live\": true, \"id\": \"x4f7f1ef722780da1\"}", "{\"sha\": \"95d5911020b42aaf135d6e6a831460ea41aa2eb7\", \"live\": true, \"id\": \"x66ac05638c9ba411\"}", "{\"sha\": \"e20c36f13a4922337382028a80e092488b7bf04e\", \"live\": true, \"id\": \"x45e591248d67cfc5\"}", "{\"sha\": \"2cef8a4440f775bae102448151ecb22a2968d93f\", \"live\": true, \"id\": \"x9540e3ca7a598f18\"}", "{\"sha\": \"d2cf5085265772c2a5994c14351ae5289c55c07b\", \"live\": true, \"id\": \"xe0643efc982e794c\"}", "{\"sha\": \"4d66228622c5717d9f836cfe3a97436bc0b77bfb\", \"live\": true, \"id\": \"xf7378d97b3bd2e79\"}", "{\"sha\": \"36cebf2a31e5af85e388c4b9f291ea4c49b89d47\", \"live\": true, \"id\": \"x9ed79858c79bd225\"}", "{\"sha\": \"8372964d4496d9000d22baf0b86dbd002fe72786\", \"live\": true, \"id\": \"x0ce14927d87fe484\"}", "{\"sha\": \"0fe062f9310ca67e32245ea62a65292ee4d84fb0\", \"live\": true, \"id\": \"xf03752133d6c0c21\"}", "{\"sha\": \"82805ef83fc4f0fc70462957a4191e9bbcbc8a8b\", \"live\": true, \"id\": \"x0e2d7a65ed0091f8\"}"], "description": "Convert a measure to a smaller unit to solve a word problem. \u00a0Units include U.S. customary measures of distance, volume, and mass.", "basepoints": 10.0, "path": "measurement-word-problems-with-us-customary-units/", "slug": "measurement-word-problems-with-us-customary-units", "kind": "Exercise", "name": "measurement-word-problems-with-us-customary-units", "seconds_per_fast_problem": 4.0, "prerequisites": ["measurement-units"], "exercise_id": "measurement-word-problems-with-us-customary-units"}, "renal-regulation-of-blood-pressure---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/renal-regulation-of-blood-pressure-passage-1/", "id": "renal-regulation-of-blood-pressure---passage-1", "display_name": "Blood pressure regulation in the kidney ", "title": "Blood pressure regulation in the kidney", "all_assessment_items": ["{\"sha\": \"ebc5dc8f0323b3e8f30012ce0f34b62be6f2ac7c\", \"live\": true, \"id\": \"xca92804e2b02a56c\"}", "{\"sha\": \"e2c130be546f1a43b49030da2403de7e94d833b9\", \"live\": true, \"id\": \"xc7774524c86b9685\"}", "{\"sha\": \"955d646d298524892f54ac9343923d83946c1368\", \"live\": true, \"id\": \"xe7a1fe759ccfa641\"}", "{\"sha\": \"8b05ce1da12dd9cb5e00478a5f0da0f6e72f8be5\", \"live\": true, \"id\": \"x16311520a9f5f02e\"}", "{\"sha\": \"51791cd2867304c1aaec922ae0aa8370ad7b7aaf\", \"live\": true, \"id\": \"x1cb5851e677034ab\"}"], "description": "questions", "basepoints": 10.0, "slug": "renal-regulation-of-blood-pressure-passage-1", "kind": "Exercise", "name": "renal-regulation-of-blood-pressure---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "renal-regulation-of-blood-pressure---passage-1"}, "test-your-knowledge-of-global-threats-to-biodiversity": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-threatened/biodiversity-global/test-your-knowledge-of-global-threats-to-biodiversity/", "id": "test-your-knowledge-of-global-threats-to-biodiversity", "display_name": "Test your knowledge: global threats to biodiversity", "title": "Test your knowledge: global threats to biodiversity", "all_assessment_items": ["{\"sha\": \"3e868c2051699ebe976d6b450c7db839821e9a00\", \"live\": true, \"id\": \"xa3bee4af6cac4941\"}", "{\"sha\": \"f65c954964808ceb26d3eb7534685cba6cbe7609\", \"live\": true, \"id\": \"x55a95d39052b443d\"}", "{\"sha\": \"8bfd6d3b5cb870751226de314bcd6acfaa2e7547\", \"live\": true, \"id\": \"xc1657c0ba3c32c40\"}", "{\"sha\": \"4a3233a07e4bd722d59811cf9573e4f93593af04\", \"live\": true, \"id\": \"xe4acae9cf33e9c9f\"}", "{\"sha\": \"17eafbf57827f184b50d3866208c553d9f541460\", \"live\": true, \"id\": \"x7c67a43f80335b5e\"}", "{\"sha\": \"4750849c5ce7ce04cd4e970ed622e6cc0d108850\", \"live\": true, \"id\": \"x85f9acf737975bdb\"}", "{\"sha\": \"5d85fe72559016925e052734efee643c4596e543\", \"live\": true, \"id\": \"xa5ba5e36e0ee1a51\"}", "{\"sha\": \"1cf6fba80452ef47782844b3fe6cd963bdb982c0\", \"live\": true, \"id\": \"x1508339e39cc4d55\"}", "{\"sha\": \"ad0781052e9bf5bb1f2efe0092ed655b97b0cf42\", \"live\": true, \"id\": \"xdc606ce3ccb65ea4\"}", "{\"sha\": \"95270c5241a51516b8406789f22fcc3d65c789fd\", \"live\": true, \"id\": \"xbf819cfd4810a9fb\"}", "{\"sha\": \"411a1fcb01812843a860804b04c172b1d4d589f6\", \"live\": true, \"id\": \"x4385762337f573ef\"}", "{\"sha\": \"0d5113d5826aea2b17b4bdb76da96cdf0b8f1cf2\", \"live\": true, \"id\": \"x4b426ac65275ca90\"}", "{\"sha\": \"3f99145b8d82c75cc56e4cc30a45999a0dd764ea\", \"live\": true, \"id\": \"x8f11156dd825e612\"}"], "description": "Test your knowledge of global threats to biodiversity", "basepoints": 10.0, "slug": "test-your-knowledge-of-global-threats-to-biodiversity", "kind": "Exercise", "name": "test-your-knowledge-of-global-threats-to-biodiversity", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "test-your-knowledge-of-global-threats-to-biodiversity"}, "cas-ecosystem-services": {"uses_assessment_items": true, "path": "khan/partner-content/cas-biodiversity/why-is-biodiversity-important-ca/biodiversity-and-ecosystem-servi/cas-ecosystem-services/", "id": "cas-ecosystem-services", "display_name": "Test your knowledge: biodiversity and ecosystem services", "title": "Test your knowledge: biodiversity and ecosystem services", "all_assessment_items": ["{\"sha\": \"b838236b6ba5ed39e88c285788e72f661bd54119\", \"live\": true, \"id\": \"x640c1309874620e0\"}", "{\"sha\": \"0dd8daa28359e13b2d63b5b5eda3ec4096cdafd5\", \"live\": true, \"id\": \"xeff63502cf21abd9\"}", "{\"sha\": \"55b02fa564cfa658a7ccb962576b174149eddfbc\", \"live\": true, \"id\": \"xbd18121c3020bd4a\"}", "{\"sha\": \"d7a12c5684535ee5b74f807c7d5683acfdc47506\", \"live\": true, \"id\": \"xf4f885c67f14d5d0\"}", "{\"sha\": \"b6969e1ddd6ce22a3cae4057111b19c65ba75d0d\", \"live\": true, \"id\": \"x7bddc7133d49d487\"}", "{\"sha\": \"0cdb7af0e6f880ede4eeb43532af721d83bf4778\", \"live\": true, \"id\": \"xb52e784f93958a40\"}", "{\"sha\": \"33785aaaaeb75b161ee91ea0b30fada0db86ec6e\", \"live\": true, \"id\": \"x403ec8be3c0cd8a9\"}", "{\"sha\": \"69c960edb5e831c3c5d3631b18ebdb722132c5ec\", \"live\": true, \"id\": \"xb105959f854a3fbc\"}", "{\"sha\": \"fe60c6b2e1f51c0565c6cadc8233739dc0d2fe67\", \"live\": true, \"id\": \"x0160e03942e40cc7\"}", "{\"sha\": \"84327862fdb286e31848cb0f6bf2c3f53c616bb5\", \"live\": true, \"id\": \"x248fba29743dc928\"}", "{\"sha\": \"3b4ec2be7cfae7fd0325e340c64f9e15c66f8f0c\", \"live\": true, \"id\": \"xa941dadd82d70141\"}"], "description": "", "basepoints": 10.0, "slug": "cas-ecosystem-services", "kind": "Exercise", "name": "cas-ecosystem-services", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "cas-ecosystem-services"}, "acceleration-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-processes/acceleration-mcat/acceleration-questions/", "id": "acceleration-questions", "display_name": "Acceleration questions", "title": "Acceleration questions", "all_assessment_items": ["{\"sha\": \"2c4b9b43c1738e4eb9f3ca52b317cb936a213c56\", \"live\": true, \"id\": \"xf01e0e1c500164ea\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a8e11cd227a44753b4d1aa417c3cf5c8e3f37f44\", \"live\": true, \"id\": \"x7c8d20ccc4f15912\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4b6d07f48f4c20f0588a9665af929afe14ee99c5\", \"live\": true, \"id\": \"x4d4cf5e20d146c06\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"38ebddbd9b2f3139ad05c180f45fbb5876f3becb\", \"live\": true, \"id\": \"x06aab9f0cecc0226\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"73b9c9b018f459390030f8545398e13405599b72\", \"live\": true, \"id\": \"x46e315105e3c759f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"822a0c8f8c45f929b0c3b4eed0704d685c8ad521\", \"live\": true, \"id\": \"x44e27d80805db896\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c302b744d2f68df3149aceb4272c89b238bdc28d\", \"live\": true, \"id\": \"x82802cc21a91190e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3a363d2bf3eb2c81be8051b1f16e22a05404be85\", \"live\": true, \"id\": \"x536529fe7b28821d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9c5c8056cd0920faf7d08d5ba6b3653c15bc9ee\", \"live\": true, \"id\": \"xcccc1baf24312d1c\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ad8191cd0d531ebb2f4680ebe7efef0e22a7b1a3\", \"live\": true, \"id\": \"x51461db931fd466e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Acceleration questions", "basepoints": 10.0, "slug": "acceleration-questions", "kind": "Exercise", "name": "acceleration-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "acceleration-questions"}, "adding_and_subtracting_rational_expressions_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding_and_subtracting_rational_expressions_2/", "id": "adding_and_subtracting_rational_expressions_2", "display_name": "Adding and subtracting rational expressions 4", "title": "Adding and subtracting rational expressions 4", "description": "Adding and subtracting two expressions with different denominators, where each is of the form Ax/B or A/Bx.", "basepoints": 10.0, "slug": "adding_and_subtracting_rational_expressions_2", "kind": "Exercise", "name": "adding_and_subtracting_rational_expressions_2", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_rational_expressions_1.5"], "exercise_id": "adding_and_subtracting_rational_expressions_2"}, "adding_and_subtracting_rational_expressions_5": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding_and_subtracting_rational_expressions_5/", "id": "adding_and_subtracting_rational_expressions_5", "display_name": "Adding and subtracting rational expressions 6", "title": "Adding and subtracting rational expressions 6", "description": "", "basepoints": 10.0, "slug": "adding_and_subtracting_rational_expressions_5", "kind": "Exercise", "name": "adding_and_subtracting_rational_expressions_5", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_rational_expressions_3"], "exercise_id": "adding_and_subtracting_rational_expressions_5"}, "sat-math-level-3-quiz-5": {"uses_assessment_items": true, "path": "khan/test-prep/sat/sat-math-practice/sat-math-level-3/sat-math-level-3-quiz-5/", "id": "sat-math-level-3-quiz-5", "display_name": "SAT Math: Level 3 - Quiz 5", "title": "SAT Math: Level 3 - Quiz 5", "all_assessment_items": ["{\"sha\": \"5ed358a266668baa5b05bd9ba1dd3276485345e6\", \"live\": true, \"id\": \"x627fc0a04c5c192d\"}", "{\"sha\": \"44f01d2794683f386444e34ea793daba2d103c4d\", \"live\": true, \"id\": \"x3eefb0149fa365dd\"}", "{\"sha\": \"f9da17900e4b8fd09bc65ed9323845907223cf07\", \"live\": true, \"id\": \"x5d4763d0d5409368\"}", "{\"sha\": \"6ac70d723e2732389e229ad3297df25ba7d7ea3d\", \"live\": true, \"id\": \"x2a8e7b96961fe65e\"}", "{\"sha\": \"ab2ccba37bfb99f525c7da95368d8ace9c03773b\", \"live\": true, \"id\": \"x2dc5bb6768ebc1f6\"}", "{\"sha\": \"e6145c9a575a24492df51d939deac9e155e6683f\", \"live\": true, \"id\": \"xd544762382372bd4\"}", "{\"sha\": \"0acf8a8b4c38f4e00d22641f9432c26fd2ba1a45\", \"live\": true, \"id\": \"xb333f044d0f5a11a\"}", "{\"sha\": \"7794a7240deafd3d9d1698e15a0981de769f5f05\", \"live\": true, \"id\": \"x50027477db8e4641\"}", "{\"sha\": \"639522d2b1fd03cc04985772b5a942c5a3a93244\", \"live\": true, \"id\": \"xa25cc654f315d9bf\"}", "{\"sha\": \"6a4a7d9d4f4bef755540534400bc67fe9b7b28a3\", \"live\": true, \"id\": \"xac93ea71982e0cce\"}", "{\"sha\": \"3d7b8faf3943b1f11337850b5844005824adc4b3\", \"live\": true, \"id\": \"xe97697acb4e68390\"}"], "description": "", "basepoints": 10.0, "slug": "sat-math-level-3-quiz-5", "kind": "Exercise", "name": "sat-math-level-3-quiz-5", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "sat-math-level-3-quiz-5"}, "adding_and_subtracting_rational_expressions_6": {"uses_assessment_items": false, "path": "khan/math/algebra2/rational-expressions/rational_expressions/adding_and_subtracting_rational_expressions_6/", "id": "adding_and_subtracting_rational_expressions_6", "display_name": "Adding and subtracting rational expressions 7", "title": "Adding and subtracting rational expressions 7", "description": "", "basepoints": 10.0, "slug": "adding_and_subtracting_rational_expressions_6", "kind": "Exercise", "name": "adding_and_subtracting_rational_expressions_6", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_and_subtracting_rational_expressions_5"], "exercise_id": "adding_and_subtracting_rational_expressions_6"}, "area-enclosed-by-polar-graphs": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/solid_revolution_topic/area-polar-graphs/area-enclosed-by-polar-graphs/", "id": "area-enclosed-by-polar-graphs", "display_name": "Area enclosed by polar graphs", "title": "Area enclosed by polar graphs", "all_assessment_items": ["{\"sha\": \"40433b31eb7816736705964c4f8d1976c1056d4a\", \"live\": true, \"id\": \"x64b83bef06b9cc03\"}", "{\"sha\": \"a5f41293cf61a2661dca915fcbe4e9fd0ce58d03\", \"live\": true, \"id\": \"xf67a11c5ace2fdd8\"}", "{\"sha\": \"36d461167d41a41434c52bfe6bf7581d59623b3e\", \"live\": true, \"id\": \"xb0c527da5a5d5c43\"}", "{\"sha\": \"908f361b115e88b29c54e3d26e96af5b8443b202\", \"live\": true, \"id\": \"x37daa91acab1dc91\"}", "{\"sha\": \"e39e75778bb8dac9a50f6b7943b5a7399096ce28\", \"live\": true, \"id\": \"x269725b3026ffffa\"}", "{\"sha\": \"c7082eba82401386dff2f48f22ccf4d6c4d1915c\", \"live\": true, \"id\": \"x8e067ad4d68d0671\"}", "{\"sha\": \"1a153b9e48e1aa6a2e86dae7952b7aba304ffd64\", \"live\": true, \"id\": \"x184e1bc538b073a8\"}", "{\"sha\": \"349a297732fbe795651b48a5a3fcd78186f41b64\", \"live\": true, \"id\": \"xe171f6ad9cba672e\"}", "{\"sha\": \"bb6bd63d7e51e1114585c7c3205af0359e4674fa\", \"live\": true, \"id\": \"xa51833e5122ebbd6\"}", "{\"sha\": \"218f4c69e4fe70d5de472eb645adb787b4fa0db1\", \"live\": true, \"id\": \"x74bca41b6a2128d8\"}", "{\"sha\": \"8e93a3aea9dcc0b55a457087785c150a9df7a2b7\", \"live\": true, \"id\": \"x25b425002e22255c\"}", "{\"sha\": \"8b9b8564e95a030368ea91714601be630b2674eb\", \"live\": true, \"id\": \"x3b042164a0c126c6\"}"], "description": "", "basepoints": 10.0, "slug": "area-enclosed-by-polar-graphs", "kind": "Exercise", "name": "area-enclosed-by-polar-graphs", "seconds_per_fast_problem": 4.0, "prerequisites": ["arc-length-of-polar-curves"], "exercise_id": "area-enclosed-by-polar-graphs"}, "halves-and-fourths": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-geometry-topic/cc-early-math-fractions-of-shapes/halves-and-fourths/", "id": "halves-and-fourths", "display_name": "Halves and fourths", "title": "Halves and fourths", "all_assessment_items": ["{\"sha\": \"c2ff42b4b0bdea0a85677fa314b039e7d032f59c\", \"live\": true, \"id\": \"x9dac0352fd5fb169\"}", "{\"sha\": \"43aca1c4c9c1dc91b62f7c41c2ab0312cf56078d\", \"live\": true, \"id\": \"x0b5c61c9c87056b7\"}", "{\"sha\": \"e8499c8c6dcbc2be1502ac2e50e4d250c9b928dc\", \"live\": true, \"id\": \"x63ac4d54d5ce052c\"}", "{\"sha\": \"7216b938c079a69a8b2a1da1472b974327b58ba9\", \"live\": true, \"id\": \"x7f21516d43cb9fa1\"}", "{\"sha\": \"285f431ac563b78acd8a9f9f74aa48d7df390d4c\", \"live\": true, \"id\": \"xc66f08ab1d98af44\"}", "{\"sha\": \"5d98e6e996701ba74abb335dcdcd164f079250ad\", \"live\": true, \"id\": \"x312713f65eb9190f\"}", "{\"sha\": \"72c8c838504f571e85b36dda222a2b3035a3a1a4\", \"live\": true, \"id\": \"xbf4e0538a288a6d0\"}", "{\"sha\": \"f2a2d7862743877403485fd7a7c91bba59bd2662\", \"live\": true, \"id\": \"x48357d8361771e61\"}", "{\"sha\": \"64f302c6bbb166ffcf271fce1778bf9d0f15439d\", \"live\": true, \"id\": \"x7922c388f5accd3d\"}", "{\"sha\": \"2afe19e73a48955b379de207cc10a688cf83d425\", \"live\": true, \"id\": \"x0d290c278460160e\"}"], "description": "Practice dividing shapes into two or four equal sections.", "basepoints": 10.0, "slug": "halves-and-fourths", "kind": "Exercise", "name": "halves-and-fourths", "seconds_per_fast_problem": 4.0, "prerequisites": ["attributes-of-shapes", "compose-shapes"], "exercise_id": "halves-and-fourths"}, "disparities-in-healthcare-access": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/disparities-in-healthcare-access/", "id": "disparities-in-healthcare-access", "display_name": "Disparities in healthcare access", "title": "Disparities in healthcare access", "all_assessment_items": ["{\"sha\": \"a4824028e7d377fa1f657e660ca59f7fcc6c297b\", \"live\": true, \"id\": \"xde88b53d9ee5ff88\"}", "{\"sha\": \"bcf54f7b57db5532c04892e0cfecb7a838ad4dca\", \"live\": true, \"id\": \"xae1265c3e7f228ef\"}", "{\"sha\": \"28147de59e0ae698fd5f1a0fb92b57c4527a583e\", \"live\": true, \"id\": \"x382593f5431cdfbe\"}", "{\"sha\": \"8a5569b5225a3631c9c977cdcfc28e721b4d376d\", \"live\": true, \"id\": \"x502df7e8c30f99a7\"}", "{\"sha\": \"f5b28c7c6f1cba5c8cd515aa96eb09c601d43920\", \"live\": true, \"id\": \"x66dae171930740fe\"}"], "description": "Questions related to healthcare disparities.", "basepoints": 10.0, "slug": "disparities-in-healthcare-access", "kind": "Exercise", "name": "disparities-in-healthcare-access", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "disparities-in-healthcare-access"}, "random-sample-warmup": {"uses_assessment_items": true, "path": "khan/math/recreational-math/math-warmup/random-sample-warmup/random-sample-warmup/", "id": "random-sample-warmup", "display_name": "Random sample warmup", "title": "Random sample warmup", "all_assessment_items": ["{\"sha\": \"864e44c98578ace513eca2f7f55cd25b2324892c\", \"live\": true, \"id\": \"x9227b3a071a13cdd\"}", "{\"sha\": \"20d3e0020ec50f631883529af48467fb5f3b2c61\", \"live\": true, \"id\": \"xb5465f88c197260b\"}", "{\"sha\": \"6cd92436d0ed72d1adcda206a7ef0b4fd919559a\", \"live\": true, \"id\": \"x52277c08e8664709\"}", "{\"sha\": \"2da73c9c26b0b0bcf23d421f93b639cc14ca8f32\", \"live\": true, \"id\": \"x8199a07db01fbd5a\"}", "{\"sha\": \"98fb6a793ed36110e6ffd117dac40767bab4751d\", \"live\": true, \"id\": \"x3abf6f3186e52487\"}"], "description": "Test your understanding of random sampling (7.SP.A.2)", "basepoints": 10.0, "slug": "random-sample-warmup", "kind": "Exercise", "name": "random-sample-warmup", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "random-sample-warmup"}, "polygons-in-the-coordinate-plane": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/polygons-in-the-coordinate-plane/", "id": "polygons-in-the-coordinate-plane", "display_name": "Rectangles on the coordinate plane", "title": "Rectangles on the coordinate plane", "all_assessment_items": ["{\"sha\": \"4a34ee10d27ae7bb46ecad4dd411fd9ad4707823\", \"live\": true, \"id\": \"x2bf72cee433851cc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"96cdd04f19e39f8319f1bb5bd66486921c2f7636\", \"live\": true, \"id\": \"x1a7819792294fcc2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"49a31c064942aa4703e83d41494a6de2cee86993\", \"live\": true, \"id\": \"xbf1cc072e328b0fa\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88a6463e946ea0862d5f8aa5f1ddbdc5c6445106\", \"live\": true, \"id\": \"x28a145ded0ee0724\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88c18643a7cbe38cb3605150aedf040df9138045\", \"live\": true, \"id\": \"x83408c4f08622f20\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"915ab8f7f06c6317dc2277af22bce7cbe04e2640\", \"live\": true, \"id\": \"x3b65be518faaf12c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"93e1c807d706992b905f82e013594aea7f016657\", \"live\": true, \"id\": \"xdd136626ca8fcb29\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c542e092c7c3b92279ac422e2b24629e3f8cb32\", \"live\": true, \"id\": \"x279ee4b02f62bd70\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7268b8690290045487aaaf96d28a3d691513908b\", \"live\": true, \"id\": \"x4af16d0abec7eb7b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1d3f609a75f27c2028ffbd936ddc98cfbed5c55c\", \"live\": true, \"id\": \"x72b815e285e55032\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5607f1188b1e53130c16e91d4615535ae2b18d34\", \"live\": true, \"id\": \"xa253bd53a0b340af\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1903cccbe12d11651c8e4d77e5ddde9aacef089f\", \"live\": true, \"id\": \"xccb6734ba5c92647\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cb23f904fcd313e5766b5ae8bc922bdf07003a98\", \"live\": true, \"id\": \"xe994e9f0fb1e7510\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"78ab392f96724879dcd06418eea3a9299b45b102\", \"live\": true, \"id\": \"x447d886ba5307911\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"66f25d95b359e9b312c72be3b99321156664a0ae\", \"live\": true, \"id\": \"xc31f7be44e1375b6\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d752c66c903f3e686794b0e747df3b2867c06d36\", \"live\": true, \"id\": \"x619ad6a6b648d1a0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8388cfe1478cbe6afa0946f7ab346b5318df0276\", \"live\": true, \"id\": \"xa11a95816719e7f0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"04fc9795512d2d66c561ae684b02edaf4bf50d9f\", \"live\": true, \"id\": \"xd1bea4707433b067\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fbd61870715a5e421f00e35d98027a8750abbe96\", \"live\": true, \"id\": \"xb355f1ea57b486c7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"92f33c075da8f7570a917363075baca172b91b59\", \"live\": true, \"id\": \"x696ea4f1a286113a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3596fd25a5783296e3e46d2f05b1ca4b6ba7a065\", \"live\": true, \"id\": \"x0f3ce52d7d8f5c6d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"af260abcf6d7ab2278af579a47dc9cfa57767684\", \"live\": true, \"id\": \"x4eafcf6ddab34a2e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"19baf64b9997af23bcff07d451b834b02facfd3d\", \"live\": true, \"id\": \"x9855d569a21a9d9e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e3640a9269bf947e91ee9008b4d1867bb6e265b\", \"live\": true, \"id\": \"xfe3458c20cb8dbac\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"864372cd76a6b810c0714f1766d0cb0518cacc40\", \"live\": true, \"id\": \"x9dddaded1b566c74\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f6c6992012a2694477c74890e2b08d6875640fea\", \"live\": true, \"id\": \"xdbe1ed0ae723ea04\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"65f9c402b3ad27d03895a092874427df001d3235\", \"live\": true, \"id\": \"xf8379bfb0cff7119\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d7a0585062d75555f1497689710d976852293ce\", \"live\": true, \"id\": \"xe5c5bdbd1eca1cc7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ff6f47754df9a586542952a50ab0dc8e76f4d764\", \"live\": true, \"id\": \"xcff3ad46a52a0e07\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 17.0, "slug": "polygons-in-the-coordinate-plane", "kind": "Exercise", "name": "polygons-in-the-coordinate-plane", "seconds_per_fast_problem": 11.0, "prerequisites": ["coordinate-plane-word-problems"], "exercise_id": "polygons-in-the-coordinate-plane"}, "hematologic-system-questions": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/organ-systems/hematologic-system/hematologic-system-questions/", "id": "hematologic-system-questions", "display_name": "Hematologic system questions", "title": "Hematologic system questions", "all_assessment_items": ["{\"sha\": \"e893caeea66365cdfc171402d95484288a9072a3\", \"live\": true, \"id\": \"x9e27f6e2349585ba\", \"perseus_api_major_version\": null}", "{\"sha\": \"4588c19ba7d8147ab2baf6563f7855ddd80ca4f0\", \"live\": true, \"id\": \"xac788980e80ea9ca\", \"perseus_api_major_version\": null}", "{\"sha\": \"77327b55d385a42070904c58d1a76dd0ece4e1e7\", \"live\": true, \"id\": \"xa43d5142628dad9d\", \"perseus_api_major_version\": null}", "{\"sha\": \"185b6deee7ccf93b471a8a0dd97308d336344073\", \"live\": true, \"id\": \"x8b9b90bfbbd2f1f4\", \"perseus_api_major_version\": null}", "{\"sha\": \"86d6335f5d9e6c97bbb2ddda49bf488b6b64b00e\", \"live\": true, \"id\": \"x25387cbce51c4f70\", \"perseus_api_major_version\": null}", "{\"sha\": \"4c67e132ef477c8942928fca0023c3345f93968e\", \"live\": true, \"id\": \"xf85d1b8a5ab1b5e0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ad1150f8d5672b6968d244bcb57599b955b3e93d\", \"live\": true, \"id\": \"xad2abaf67429519d\", \"perseus_api_major_version\": null}", "{\"sha\": \"075e6e11923d448b5fb302a69101975d1f1f4671\", \"live\": true, \"id\": \"x48f1c4d587e95bc5\", \"perseus_api_major_version\": null}", "{\"sha\": \"e1defc6e8e9b337bda7bf773a8136863fa0c31ef\", \"live\": true, \"id\": \"xe9dcb299fb8c92de\", \"perseus_api_major_version\": null}", "{\"sha\": \"3d40d08a6a0ad53d701d98d0807f0f8dfeed5a3a\", \"live\": true, \"id\": \"x2985842aefaab695\", \"perseus_api_major_version\": null}"], "description": "Hematologic system questions", "basepoints": 10.0, "slug": "hematologic-system-questions", "kind": "Exercise", "name": "hematologic-system-questions", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "hematologic-system-questions"}, "understanding-dividing-fractions-by-fractions": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-fractions/understanding-dividing-fractions-by-fractions/", "id": "understanding-dividing-fractions-by-fractions", "display_name": "Understanding dividing fractions by fractions", "title": "Understanding dividing fractions by fractions", "all_assessment_items": ["{\"sha\": \"e8ed06f5ca14bf819b28cae1f5e62b076e3a19b7\", \"live\": true, \"id\": \"x48684ece1ab26bca\"}", "{\"sha\": \"e97e2bbf355de4287f18ba3c8b7cc2097fae7d9b\", \"live\": true, \"id\": \"xbc01525116e2f799\"}", "{\"sha\": \"7490d7b5b26f536d25d395cc4d028dbad2f77d5f\", \"live\": true, \"id\": \"x6787e2834e93acb0\"}", "{\"sha\": \"e1c148927c5579f1f14f597e38da7ab34f7ecda6\", \"live\": true, \"id\": \"x0255dfb06306ac32\"}", "{\"sha\": \"9a84a6d9a778c49c3edb5d081ffe78a169c4a62d\", \"live\": true, \"id\": \"x075b5ec499a5532d\"}", "{\"sha\": \"b3d457aa314cf5db698809b285f62f32d54e3d11\", \"live\": true, \"id\": \"x560c0f75f446673f\"}", "{\"sha\": \"e31673655b9566af5f63a1324563e7899013e0c0\", \"live\": true, \"id\": \"x88762ca4f9b79e2e\"}", "{\"sha\": \"e7ea723e56ea2c98d801ba5344485574f46492f0\", \"live\": true, \"id\": \"xe6f0cecd9c3076ca\"}", "{\"sha\": \"1fbff830c24335aba3f23a22dc428d29ead5f65f\", \"live\": true, \"id\": \"xe0b9142cb9525caa\"}", "{\"sha\": \"0f89d695bed1539509211ad11db8b3a87b0576c0\", \"live\": true, \"id\": \"xff75c4f8043bf179\"}", "{\"sha\": \"710a03f3ce27ff2074fa4e7c7d759cba4ef26a7c\", \"live\": true, \"id\": \"x2440a7d43060243c\"}", "{\"sha\": \"ea05e510491db1005eda07341bf9d6cdee3e06fa\", \"live\": true, \"id\": \"x3d4b5370dd61e86b\"}", "{\"sha\": \"2c10f752e0d1ec5731449d75183854a754b0f7a8\", \"live\": true, \"id\": \"x1cd849155e2a86b4\"}", "{\"sha\": \"6b7bba53e4b635327af0aa427c3e91d8edc0d9bd\", \"live\": true, \"id\": \"xf828a58b1a49500a\"}", "{\"sha\": \"c9951bcf808f944d4d076356c2f209b1fc18a5e1\", \"live\": true, \"id\": \"x5e462749569865b2\"}", "{\"sha\": \"0c6661f80de1063d8efb975077d9cfc858102448\", \"live\": true, \"id\": \"x30f8822e65a0d5e9\"}", "{\"sha\": \"9f2b4aba3e4bb1f102f60c4dfc983c8694bee71e\", \"live\": true, \"id\": \"x6afb207c15ee4f95\"}", "{\"sha\": \"2aa04a32b959e3aa5260302ddcb66b1271e03dca\", \"live\": true, \"id\": \"xe26d9cb48c2a855e\"}", "{\"sha\": \"91a1388c2c013f76cb37f29b36bd37ac6f153cac\", \"live\": true, \"id\": \"xce1a15f415948048\"}", "{\"sha\": \"e5d3d590b73b0f10392916f0f83d1399cf123eeb\", \"live\": true, \"id\": \"xa2ac311a2a22d426\"}", "{\"sha\": \"aa6ea652f8991c8b105e79a9df04ed208b743f69\", \"live\": true, \"id\": \"xf7c751dc744314f6\"}", "{\"sha\": \"47bdb6367a8eb845b2f2ca6c3e3c09206ea8fb24\", \"live\": true, \"id\": \"x8a0e752c0c7d8f41\"}", "{\"sha\": \"6e9ddbe4759c17be15f79f191e92f70569e803ab\", \"live\": true, \"id\": \"xa12c8b2ba4d28e76\"}", "{\"sha\": \"74e8a347e44a8e33e7f31da8be1513587929bbe3\", \"live\": true, \"id\": \"x675339b53f4e20a4\"}", "{\"sha\": \"acd1f2c41af5b48bdae41355bb8ccf7baa5a9cd9\", \"live\": true, \"id\": \"x2a16532b7de915a6\"}", "{\"sha\": \"82603a6cb11e42cf6607b3dd95f2beaaa76ee795\", \"live\": true, \"id\": \"x4d8a1a20214c62c4\"}", "{\"sha\": \"f30ebc321e80fdd60fb3f8e39bc19a23742f31d2\", \"live\": true, \"id\": \"x1955c9c49e92da52\"}", "{\"sha\": \"186b619e421b50855c1a023bb9a1500d7108a0ce\", \"live\": true, \"id\": \"x5ab5616a586242f1\"}"], "description": "", "basepoints": 18.0, "slug": "understanding-dividing-fractions-by-fractions", "kind": "Exercise", "name": "understanding-dividing-fractions-by-fractions", "seconds_per_fast_problem": 12.0, "prerequisites": ["division-with-fractions-and-whole-numbers"], "exercise_id": "understanding-dividing-fractions-by-fractions"}, "similar_triangles_2": {"uses_assessment_items": false, "path": "khan/math/geometry/similarity/triangle_similarlity/similar_triangles_2/", "id": "similar_triangles_2", "display_name": "Similar triangles 2", "title": "Similar triangles 2", "description": "", "basepoints": 16.0, "slug": "similar_triangles_2", "kind": "Exercise", "name": "similar_triangles_2", "seconds_per_fast_problem": 9.0, "prerequisites": ["similar_triangles_1"], "exercise_id": "similar_triangles_2"}, "comparing-populations": {"uses_assessment_items": true, "id": "comparing-populations", "display_name": "Comparing populations", "title": "Comparing populations", "all_assessment_items": ["{\"sha\": \"83693467f3a4255c173bf3ddcb3096bb351882b8\", \"live\": true, \"id\": \"xb4c87d0336d95875\"}", "{\"sha\": \"69ed43ca8e68db3da5af9a28265f58e5e451cc68\", \"live\": true, \"id\": \"xbe48971d2ecc1035\"}", "{\"sha\": \"35c8a15f996e17072b57a718ed3ae13ba473f76d\", \"live\": true, \"id\": \"x4fe9ade3df7f4548\"}", "{\"sha\": \"a6c2bed6fb401c5dd52618a4279122ebd2e74f9f\", \"live\": true, \"id\": \"x9bc38056cb943e6a\"}", "{\"sha\": \"a21f371e3b3585caf3194155a22aecc8e320d86f\", \"live\": true, \"id\": \"x4e11b25265a8fcc7\"}", "{\"sha\": \"b1cbc3a68e9cdef149de659ca8bbe44f25d5fdd1\", \"live\": true, \"id\": \"x959cf458128e118e\"}", "{\"sha\": \"e9f66b2c85a57f57cc459824d2044182dc5a2359\", \"live\": true, \"id\": \"x5d96241ca14e2d2c\"}", "{\"sha\": \"61b31a431c1b6dd1ee9bf10f63729b76c973529a\", \"live\": true, \"id\": \"xd3a5d3642e1039aa\"}", "{\"sha\": \"a745034eaf2ab495f895172977f45855989f4e9e\", \"live\": true, \"id\": \"xb90c81cf82d3db48\"}", "{\"sha\": \"d8db44be3bce6d9dcfb6ed706a4e8dfc5be63331\", \"live\": true, \"id\": \"x46a50475157c6410\"}", "{\"sha\": \"5a50ca8ca4f637129f4be4960dcecb1bdff32ee5\", \"live\": true, \"id\": \"x37e5c49a5b6b5c60\"}", "{\"sha\": \"b8bcf6dd5df93c141c5685679b09363a60c91264\", \"live\": true, \"id\": \"xf73a64bf52d2e6ea\"}", "{\"sha\": \"96f1b4b59b3ff09951506b14d3a1478c20fefe12\", \"live\": true, \"id\": \"x76a36d6ae206b9ab\"}", "{\"sha\": \"cd0c5986c25a6a505f74392e9ca0a5b979f22694\", \"live\": true, \"id\": \"x0ac7907fbaeac5a1\"}", "{\"sha\": \"85e614d783a7033b25750ec10f82762cc8ab603c\", \"live\": true, \"id\": \"xf96c12633923f484\"}", "{\"sha\": \"504e954e6cf8433b7e11a5ca31797ff62fb1e27e\", \"live\": true, \"id\": \"xee40a33a18f166ac\"}", "{\"sha\": \"780ce0535bb4bdb479721fa8aa6a1464a0b9a393\", \"live\": true, \"id\": \"x8ef38cbcc3a75795\"}", "{\"sha\": \"9013f368aa4e86cfd5a1fed683d6fd2828a210be\", \"live\": true, \"id\": \"x901c2ca655e2638e\"}", "{\"sha\": \"63d14a3d7843625406fe3bb00d95be626d6777d5\", \"live\": true, \"id\": \"xc2997b652d03411c\"}", "{\"sha\": \"7a9323a1bc367e7957a25f6da55856380f56c76f\", \"live\": true, \"id\": \"x47d2d453bb366b1e\"}", "{\"sha\": \"682ef22d53e15d36ea93a1a9864589ce4e09b9cb\", \"live\": true, \"id\": \"x490bc3117c754353\"}", "{\"sha\": \"a19d682df161a50a2287fbe555dc77b9f5ad4e2b\", \"live\": true, \"id\": \"xb67300fd4e655161\"}", "{\"sha\": \"fb1a8c617d51c86870558c17435d7a4637d81936\", \"live\": true, \"id\": \"x3f78b6fbd8db0be3\"}", "{\"sha\": \"f0f5c477ada4138afdbc9d27bef4c655bc52ce90\", \"live\": true, \"id\": \"x6c180985c80951b3\"}", "{\"sha\": \"72539215e9d7931b35559dd71a6f2bd4a8c719a7\", \"live\": true, \"id\": \"x30616e28f3d272c3\"}", "{\"sha\": \"a4000c9e54f4e9000a395ebe761c57d6876166e3\", \"live\": true, \"id\": \"x0c74ded40886513a\"}", "{\"sha\": \"c09ea0302af363213f841eb3c7facb5319c5a0ce\", \"live\": true, \"id\": \"xa750fa148b92079e\"}", "{\"sha\": \"5393143df7a0e5c5d76634d4d382e7de151a2cf5\", \"live\": true, \"id\": \"x8b6fae2937df007d\"}", "{\"sha\": \"30735d2972e57abcc74f6023426c8bee324b8168\", \"live\": true, \"id\": \"x230062fc2be4e617\"}", "{\"sha\": \"ac9960140596960372000f17c6d20956c7a7e7e0\", \"live\": true, \"id\": \"xa05df1b671139062\"}", "{\"sha\": \"fec8fda47c5463da3829f0430e155e2ff122ea09\", \"live\": true, \"id\": \"x301ac7197f22b0c3\"}", "{\"sha\": \"ee2ee0adbe363ac578b24debd460712fbbec960a\", \"live\": true, \"id\": \"x35c87ec188b6a780\"}", "{\"sha\": \"b3dcf8cad54b2f1ea5c63c9cc8666be72e16eb89\", \"live\": true, \"id\": \"xc6437285e5a562e6\"}", "{\"sha\": \"b2ac0ae651a380a8c3596bf29161502b12b5bdd5\", \"live\": true, \"id\": \"xc64a36e5298713c4\"}", "{\"sha\": \"fc060827bd0e93ed65dffd036af845f183086113\", \"live\": true, \"id\": \"x4c7eaf2181381564\"}", "{\"sha\": \"72a0109c2e10b65c85864c945cad57e1e97feb9c\", \"live\": true, \"id\": \"xb20e3d474ebc70cd\"}", "{\"sha\": \"5bf22667dc05e3a71e71019a47cb913b74858ac6\", \"live\": true, \"id\": \"x057466d2b3e3a16d\"}", "{\"sha\": \"75646f9a0d5a7da5b9095d6dfbddbe4157f6cdee\", \"live\": true, \"id\": \"xf4586ef73e554286\"}", "{\"sha\": \"16ff97dceb39a789ff0d5fb8f4532254a6e1544c\", \"live\": true, \"id\": \"xd66c1f5d3ec44dd1\"}", "{\"sha\": \"ef56ac3d987a56afbf6683cc97f014560a961d28\", \"live\": true, \"id\": \"x6d5c45cf65296e55\"}"], "description": "Practice comparing centers of distributions in terms of their spread.", "basepoints": 10.0, "path": "comparing-populations/", "slug": "comparing-populations", "kind": "Exercise", "name": "comparing-populations", "seconds_per_fast_problem": 4.0, "prerequisites": ["valid-claims"], "exercise_id": "comparing-populations"}, "drawing-right--acute--and-obtuse-angles": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/drawing-right-acute-and-obtuse-angles/", "id": "drawing-right--acute--and-obtuse-angles", "display_name": "Drawing right, acute, and obtuse angles", "title": "Drawing right, acute, and obtuse angles", "all_assessment_items": ["{\"sha\": \"f2126964da39b3d997ba2bc581e5db0e92da2eb8\", \"live\": true, \"id\": \"x865fffe698fb3074\"}", "{\"sha\": \"952b4e97818299cae296afbcb27e3cfead37c40d\", \"live\": true, \"id\": \"x5389ac506e1a1c0c\"}", "{\"sha\": \"38e719ddc7d39babad03b151d32757faf2d49841\", \"live\": true, \"id\": \"xe6256829995438e2\"}", "{\"sha\": \"4a1e45dc0fa06104a21639a2264208643b286b45\", \"live\": true, \"id\": \"x0d8850871554399d\"}", "{\"sha\": \"4d26ce329d7da1a00d44d2b0fab3ba20816e0c27\", \"live\": true, \"id\": \"x2c980850cae405ad\"}", "{\"sha\": \"7d941aa7735e7dc63bc641975f9ae574707563ff\", \"live\": true, \"id\": \"xb689700783f6672c\"}", "{\"sha\": \"976c2221b13c7b6d30b5398eedd25c07dd18314a\", \"live\": true, \"id\": \"xbdb85b161c3b04c3\"}", "{\"sha\": \"5c08ec8ac30601aba75ea22eddc7603c4b64d4b7\", \"live\": true, \"id\": \"xab9236c18e19e3bb\"}", "{\"sha\": \"d45278cbecf6fdbd6f27dd5e5f4104157feaa1e8\", \"live\": true, \"id\": \"x7e5ef38a7b1be27e\"}", "{\"sha\": \"ad7fd16ed61bdebac5ca380aa81cbef26d3c336c\", \"live\": true, \"id\": \"x94a667e226cecce7\"}", "{\"sha\": \"ea47a59a479c2cffacb0895e9d0b614c172f7d05\", \"live\": true, \"id\": \"x2f7ebd9b1893d8a9\"}", "{\"sha\": \"97c50d90a328a58b35f3360d2cf4b45ce2d1df99\", \"live\": true, \"id\": \"xe4576342d55c8541\"}", "{\"sha\": \"7eb873d2a65f3444017cc5d894eed800c9d9d5d1\", \"live\": true, \"id\": \"x1e45f4dd5e7fca33\"}", "{\"sha\": \"7ac6d44189e22987d2c9045cce8f1ddc46c37529\", \"live\": true, \"id\": \"x9bfe19c18144499b\"}", "{\"sha\": \"3fa2f1ba888f454a4718649ee70929955f110d9a\", \"live\": true, \"id\": \"x8c439e4f29118424\"}", "{\"sha\": \"21f9a2828cdf313014d899eff4d7edae6257c082\", \"live\": true, \"id\": \"x77673413b078502b\"}", "{\"sha\": \"b365506367bbe654c7937b8108fcde07e20fa07b\", \"live\": true, \"id\": \"xc7e41fb4debd8899\"}", "{\"sha\": \"8f8061c00219e0eb4e46878ffbaee8d96b6de916\", \"live\": true, \"id\": \"x3dea934acaf21a1f\"}", "{\"sha\": \"f716b1e4bf703fc9c975a95b1fece183baa21b01\", \"live\": true, \"id\": \"x0b26ba5ce429cddc\"}", "{\"sha\": \"4419e79d662497566056b5379249734ba9dfb489\", \"live\": true, \"id\": \"x36c24b7fcc210094\"}", "{\"sha\": \"2abc6d992ea4944a9a9dd57eb03801163244f0b3\", \"live\": true, \"id\": \"x173d99cffc0a6dbd\"}", "{\"sha\": \"b4cabf35510e9e71b6c2e3ada953c26e26f50483\", \"live\": true, \"id\": \"xc02af3fbadecb501\"}", "{\"sha\": \"f5cdfba3e0760c30fe226de0087f96f1a9656799\", \"live\": true, \"id\": \"x8b0be18b6d81d0d1\"}", "{\"sha\": \"490cb0f4b573fe3a8cb015813828e8d09b7004e2\", \"live\": true, \"id\": \"xbfcdba313c3067cb\"}", "{\"sha\": \"bee627dfa7ecb76ee974cf8aa02e872ecd4e598c\", \"live\": true, \"id\": \"xaa5a81b9008eab77\"}", "{\"sha\": \"eea9f7b74bb129e059aa1d952205d705a8d61cdf\", \"live\": true, \"id\": \"x5dc301974425a367\"}", "{\"sha\": \"ab7b7c7062e72f15bca190e8a2efc9159ec992f1\", \"live\": true, \"id\": \"x691ac6a494d366d0\"}", "{\"sha\": \"4ea4c62d6fda227af1de091e8699c7d2cae3d13c\", \"live\": true, \"id\": \"x1779af573f3a03a6\"}", "{\"sha\": \"5b76e670212a9f7c416ec420488cb9624da5b79a\", \"live\": true, \"id\": \"xceaea0585e916006\"}", "{\"sha\": \"28a173417c6f3df8ce40d6537fb55d5b0c214406\", \"live\": true, \"id\": \"x260e80b7c24596ba\"}"], "description": "Create an acute, right, or obtuse angle using a given vertex.", "basepoints": 10.0, "slug": "drawing-right-acute-and-obtuse-angles", "kind": "Exercise", "name": "drawing-right--acute--and-obtuse-angles", "seconds_per_fast_problem": 4.0, "prerequisites": ["angle_types", "drawing-angles", "drawing-lines", "recognizing-angles"], "exercise_id": "drawing-right--acute--and-obtuse-angles"}, "multiplying-2-digit-numbers-with-area-models": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-multiplication-division/multiplying-2-digit-numbers-with-area-models/", "id": "multiplying-2-digit-numbers-with-area-models", "display_name": "Multiplying 2 digits by 2 digits with area models", "title": "Multiplying 2 digits by 2 digits with area models", "all_assessment_items": ["{\"sha\": \"5e70dab87615694c323ad31b059e6d08a5f8e505\", \"live\": true, \"id\": \"x6fa0f0baf060c71b\"}", "{\"sha\": \"2e4cdc4a5b75c646ff01aba2b92c04657df2a2e0\", \"live\": true, \"id\": \"x418a8d11c5729b56\"}", "{\"sha\": \"113bc837a5aa6421ce6096bfcb87ed5ff5de9e1b\", \"live\": true, \"id\": \"xd8e8a828fe4416ce\"}", "{\"sha\": \"410a1ce5ae384fac643c653e137e45573750e137\", \"live\": true, \"id\": \"x59ddae70d0b5ada0\"}", "{\"sha\": \"245abe4e07e37cc2fe2cadfd3436f21f45f5220d\", \"live\": true, \"id\": \"xab7198ed\"}", "{\"sha\": \"5de446466fec9d2246d268763f9e1db7f0f2cec8\", \"live\": true, \"id\": \"x20c217b10d3b4e76\"}", "{\"sha\": \"8270d0e5be73f4c7898fad411d8876ac9e54917a\", \"live\": true, \"id\": \"xfb691f7024a4d850\"}", "{\"sha\": \"f44617c93628d4ca5a400c5fd12b34c958fd21e9\", \"live\": true, \"id\": \"x0ebd1cc784ca0d60\"}", "{\"sha\": \"b6f9b7541dc634af4bb3cc41095f805720450bd0\", \"live\": true, \"id\": \"x9865585fd578bda8\"}", "{\"sha\": \"5d8394695fd2bc9d875be113cc5cbd6766b8ffb8\", \"live\": true, \"id\": \"x8525233f3bdfbb59\"}", "{\"sha\": \"6b7326b637abf78e53a058c1746c0d7653c1da11\", \"live\": true, \"id\": \"x1db1d7a8eb4f1da7\"}", "{\"sha\": \"c1a8267263b8522bd4f5d4502533035c6bf6d220\", \"live\": true, \"id\": \"x0f743a05f9c5dc35\"}", "{\"sha\": \"7d0e723ad7f768a34ba277143fe817b1f8a1b039\", \"live\": true, \"id\": \"x70c9c605aa54e64c\"}", "{\"sha\": \"9363f55f63bae54335292bcb9761c271da1c4ee5\", \"live\": true, \"id\": \"x02e313721c47c597\"}"], "description": "Use an area model to decompose factors and multiply. \u00a0 \u00a0", "basepoints": 10.0, "slug": "multiplying-2-digit-numbers-with-area-models", "kind": "Exercise", "name": "multiplying-2-digit-numbers-with-area-models", "seconds_per_fast_problem": 4.0, "prerequisites": ["multiplying-by-4-digit-numbers-with-visual-models"], "exercise_id": "multiplying-2-digit-numbers-with-area-models"}, "angle_bisector_theorem": {"uses_assessment_items": false, "path": "khan/math/geometry/triangle-properties/angle_bisectors/angle_bisector_theorem/", "id": "angle_bisector_theorem", "display_name": "Angle bisector theorem", "title": "Angle bisector theorem", "description": "", "basepoints": 23.0, "slug": "angle_bisector_theorem", "kind": "Exercise", "name": "angle_bisector_theorem", "seconds_per_fast_problem": 26.5, "prerequisites": ["triangle_angles_1"], "exercise_id": "angle_bisector_theorem"}, "related-rates": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/derivative_applications/rates_of_change/related-rates/", "id": "related-rates", "display_name": "Related rates", "title": "Related rates", "all_assessment_items": ["{\"sha\": \"f8bce8fae89f496e5327ce42f65a12fd3e8b523a\", \"live\": true, \"id\": \"xf5f5c79dd4a39cdc\"}", "{\"sha\": \"58f0944ad01130118b9ac6bb516da8cfca3bf965\", \"live\": true, \"id\": \"xeb5850a288bd0ba7\"}", "{\"sha\": \"8a5dc8028aadefa02e3b6dc50198a7e2d2e87087\", \"live\": true, \"id\": \"xf9fd9a2f\"}", "{\"sha\": \"92269ace0bfb4bf031a467a81fc3a65fa0917455\", \"live\": true, \"id\": \"xf6498ed7be4cc735\"}", "{\"sha\": \"52e2d1782c6379e116ff76b75ff087a105c0788b\", \"live\": true, \"id\": \"xcd9c8642\"}", "{\"sha\": \"7621a1ef29f12fb6db8e00ae994d10dab313ea90\", \"live\": true, \"id\": \"xf70dc9fd\"}", "{\"sha\": \"cfd2d053659c2240739aadd5e78d417bba4e2c5a\", \"live\": true, \"id\": \"xfacfcf3e7efbd568\"}", "{\"sha\": \"18687e6fc0e7f338ef9d26cc2e83afadbf4093ae\", \"live\": true, \"id\": \"xa80ad99f\"}", "{\"sha\": \"c34e6a8bd6c06df225819366d4cfeec3ebc688a9\", \"live\": true, \"id\": \"x6eabaf3e\"}", "{\"sha\": \"1346feae43bd8c56d1f337614487e695e2e5a88e\", \"live\": true, \"id\": \"x3eff3335\"}", "{\"sha\": \"aead5b7b9b116824c62e240e3afddfbcd34c3926\", \"live\": true, \"id\": \"x06c5168c\"}", "{\"sha\": \"d893d83611592c13bc493abd365d29c3ade45a6e\", \"live\": true, \"id\": \"x15205dde0e6b26a4\"}", "{\"sha\": \"d3c544195d32e0af54f8989db7f35911dcf073da\", \"live\": true, \"id\": \"xa44d04e5\"}", "{\"sha\": \"a0edabbbe443e7343a85db7a1b05a6274d1dcab8\", \"live\": true, \"id\": \"x1d394073\"}", "{\"sha\": \"3aceef510d7c24189c921cb603538eda49768ee9\", \"live\": true, \"id\": \"x2625938c\"}", "{\"sha\": \"54db63302021710c1454a87e728c198eb2e75a63\", \"live\": true, \"id\": \"x0b8c1b74\"}", "{\"sha\": \"bd05a3b605ffb5b76eda599b40462309e7753c77\", \"live\": true, \"id\": \"xc3407e7713385a6e\"}", "{\"sha\": \"d4e06ef796796e24620f4c0491cde47b62884a6f\", \"live\": true, \"id\": \"x56b572ac\"}", "{\"sha\": \"162f36fe1f4e0f70ae75564aacedf35c5f61f8ba\", \"live\": true, \"id\": \"x01bfacc6c5408f4d\"}", "{\"sha\": \"62c050117064e1274b733cd5ad6a979f169fbed4\", \"live\": true, \"id\": \"x003a7c45\"}"], "description": "", "basepoints": 10.0, "slug": "related-rates", "kind": "Exercise", "name": "related-rates", "seconds_per_fast_problem": 4.0, "prerequisites": ["extreme-value-theorem", "second-derivative-test"], "exercise_id": "related-rates"}, "reverse-transcriptase-polymerase-chain-reaction--rt-pcr--of-a-uv-dependent-gene": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/reverse-transcriptase-polymerase-chain-reaction-rt-pcr-of-a-uv-dependent-gene/", "id": "reverse-transcriptase-polymerase-chain-reaction--rt-pcr--of-a-uv-dependent-gene", "display_name": "Reverse Transcriptase Polymerase Chain Reaction (RT-PCR) of a UV-dependent gene", "title": "Reverse Transcriptase Polymerase Chain Reaction (RT-PCR) of a UV-dependent gene", "all_assessment_items": ["{\"sha\": \"ac18fda67baab359fb8d8e84ae9029a9e9d09514\", \"live\": true, \"id\": \"x56e09b08e0046611\"}", "{\"sha\": \"661b72e0595817287cb960d4dfafa5533cee409e\", \"live\": true, \"id\": \"x198c7972e51ec13b\"}", "{\"sha\": \"52b6daba413227989dffba0f5b9040dbc476017f\", \"live\": true, \"id\": \"x1a35446bc3b09ea4\"}", "{\"sha\": \"827e08c02b4e0f480703b05c7314ae63eaa321f0\", \"live\": true, \"id\": \"x200ebae51d7d0ae0\"}", "{\"sha\": \"04a7683c96536d31e46989e74a451012b07e1232\", \"live\": true, \"id\": \"x2d00eebe42ba60d6\"}"], "description": "Questions related to recombinant DNA and biotechnology", "basepoints": 10.0, "slug": "reverse-transcriptase-polymerase-chain-reaction-rt-pcr-of-a-uv-dependent-gene", "kind": "Exercise", "name": "reverse-transcriptase-polymerase-chain-reaction--rt-pcr--of-a-uv-dependent-gene", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "reverse-transcriptase-polymerase-chain-reaction--rt-pcr--of-a-uv-dependent-gene"}, "midpoint_formula": {"uses_assessment_items": false, "path": "khan/math/geometry/analytic-geometry-topic/cc-distances-between-points/midpoint_formula/", "id": "midpoint_formula", "display_name": "Midpoint formula", "title": "Midpoint formula", "description": "Find the midpoint of a segment on the coordinate plane, or find the endpoint of a segment given one point and the midpoint.", "basepoints": 23.0, "slug": "midpoint_formula", "kind": "Exercise", "name": "midpoint_formula", "seconds_per_fast_problem": 26.0, "prerequisites": ["coordinate-plane-word-problems"], "exercise_id": "midpoint_formula"}, "defining-appropriate-units": {"uses_assessment_items": true, "path": "khan/math/algebra/introduction-to-algebra/units-algebra/defining-appropriate-units/", "id": "defining-appropriate-units", "display_name": "Defining appropriate units", "title": "Defining appropriate units", "all_assessment_items": ["{\"sha\": \"1840b2b07f235879f7ca874277c8b1c67616ee51\", \"live\": true, \"id\": \"xffa0f0484afbf714\", \"perseus_api_major_version\": 3}", "{\"sha\": \"4c2ad8ad514cfa75435f95d2e607a705b8a02863\", \"live\": true, \"id\": \"x550713abc009de2a\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0db905ad39566c2ace4fc0a27f45edfdbc2a9f14\", \"live\": true, \"id\": \"xb4c2dd73196f4651\", \"perseus_api_major_version\": 3}", "{\"sha\": \"857a9753a6c355228be97d36b3821880e1f869d1\", \"live\": true, \"id\": \"x02078d64d268c333\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9089e63503e90ac4e519e5770eeba3462f6a51c8\", \"live\": true, \"id\": \"xd6181557fee8f11f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"bb96049d7f826dcbff576c1dceb32a404d537c89\", \"live\": true, \"id\": \"x2a4160f7c82ca9c5\", \"perseus_api_major_version\": 3}", "{\"sha\": \"715884ea1f84b9d63e740ec210c57d6d19beff02\", \"live\": true, \"id\": \"x92cc4070b46077bb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e908c88b7cdb9e382dbf538492381cd1bc9974ce\", \"live\": true, \"id\": \"x432cc9db40cfb87d\", \"perseus_api_major_version\": null}", "{\"sha\": \"3a23383a54d8542053a91f05f1b87ea82a49b60e\", \"live\": true, \"id\": \"x315c46f06e0f1f7c\", \"perseus_api_major_version\": null}", "{\"sha\": \"511290089efb7e3ce0da407153896f81652dde72\", \"live\": true, \"id\": \"xd5b67d23b2bc1982\", \"perseus_api_major_version\": null}", "{\"sha\": \"c4dba4176dda3f53dff42bb9d072126089107203\", \"live\": true, \"id\": \"x1e4f1d931fbcc531\", \"perseus_api_major_version\": null}", "{\"sha\": \"08749d9eeaae2bd46e3d924a486d4815eeed8077\", \"live\": true, \"id\": \"x4bd3940cf05936ea\", \"perseus_api_major_version\": null}", "{\"sha\": \"641c74aa8b399699eeeca71c60b5524985e2fc6a\", \"live\": true, \"id\": \"xf9db659c64100541\", \"perseus_api_major_version\": null}", "{\"sha\": \"cf59b4fc90b1cfb7f59dc3285ebb2c56c59b0c25\", \"live\": true, \"id\": \"x8ab9dd83dd4933f4\", \"perseus_api_major_version\": null}", "{\"sha\": \"1b3aa5051ce1cd09ad896b2d650b8f979f467b16\", \"live\": true, \"id\": \"x99fd59bb19f2de69\", \"perseus_api_major_version\": null}", "{\"sha\": \"be24b6f567de076a382f6ac88fed70a77b4513c7\", \"live\": true, \"id\": \"x5916c5794600c90f\", \"perseus_api_major_version\": null}", "{\"sha\": \"6546788c6448abffa962df019e1bf35dbe2a149a\", \"live\": true, \"id\": \"x76366345618d10bc\", \"perseus_api_major_version\": null}", "{\"sha\": \"860e01129f2818557c529a69db5b2b79f0f9d007\", \"live\": true, \"id\": \"x178ad87a4884fd1b\", \"perseus_api_major_version\": null}", "{\"sha\": \"e84b299f7e2dbb58f2a3d7e738f8ccc9e607d938\", \"live\": true, \"id\": \"x2aea894c1a0b7bab\", \"perseus_api_major_version\": null}", "{\"sha\": \"97c01fa872dc11bfddf1bbcdc245f6db24b55069\", \"live\": true, \"id\": \"x6b46d2d930077abf\", \"perseus_api_major_version\": null}", "{\"sha\": \"49a047d1cb508374de4904a0358bc42f07a1efbe\", \"live\": true, \"id\": \"x3b81ea493b1218f7\", \"perseus_api_major_version\": null}", "{\"sha\": \"f66b82972ef856be270df293a08291aee9f92b2a\", \"live\": true, \"id\": \"xe5f25492be07caaa\", \"perseus_api_major_version\": null}", "{\"sha\": \"ad252545047d589f49b3e59c40fa073d1533f511\", \"live\": true, \"id\": \"x0aa341f65788808d\", \"perseus_api_major_version\": null}", "{\"sha\": \"116ca212c925cf207b28c755525ea0a74b35912f\", \"live\": true, \"id\": \"x894e73c0a458244d\", \"perseus_api_major_version\": null}", "{\"sha\": \"206a2608263eb456655a5e78637a43766e166287\", \"live\": true, \"id\": \"xa4e454b986d99b20\", \"perseus_api_major_version\": null}", "{\"sha\": \"3f53d4879128d63288cf54831fe68ec2e4dbc6c9\", \"live\": true, \"id\": \"xea32c9c3eb0eab4e\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 10.0, "slug": "defining-appropriate-units", "kind": "Exercise", "name": "defining-appropriate-units", "seconds_per_fast_problem": 4.0, "prerequisites": ["working-with-units"], "exercise_id": "defining-appropriate-units"}, "nervous-system-disorders-i--als": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/nervous-system-disorders-i-als/", "id": "nervous-system-disorders-i--als", "display_name": "Nervous system disorders I: ALS", "title": "Nervous system disorders I: ALS", "all_assessment_items": ["{\"sha\": \"d1140c5a99d157e763b5b5b67803a9e956d1941c\", \"live\": true, \"id\": \"xefbbed86c4b32fa2\"}", "{\"sha\": \"597ecf0dba6b698de8a007c05fea95273d53a61a\", \"live\": true, \"id\": \"x2ec643eecbb6afa3\"}", "{\"sha\": \"bf55e95ada0c536a5f478ff72183706b904a9bee\", \"live\": true, \"id\": \"x8f208a7c324a10c0\"}", "{\"sha\": \"7dafd3f9e8ddcc59e3fb6636c8c5b39da1c8a987\", \"live\": true, \"id\": \"x9e84136fb2314810\"}", "{\"sha\": \"19852061b574e6c20dfa313c6bf685009ee4eebb\", \"live\": true, \"id\": \"x2f813e6a90a7f286\"}"], "description": "Questions related to the nervous system", "basepoints": 10.0, "slug": "nervous-system-disorders-i-als", "kind": "Exercise", "name": "nervous-system-disorders-i--als", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nervous-system-disorders-i--als"}, "solving_quadratics_by_taking_the_square_root": {"uses_assessment_items": true, "path": "khan/math/algebra2/polynomial_and_rational/quad_formula_tutorial/solving_quadratics_by_taking_the_square_root/", "id": "solving_quadratics_by_taking_the_square_root", "display_name": "Solving quadratics by taking the square root", "title": "Solving quadratics by taking the square root", "all_assessment_items": ["{\"sha\": \"0bb971b7e07bf879e521f3131f77467a6aeefa7a\", \"live\": true, \"id\": \"x841dde174a1c4736\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c5515299cbff905bdfd334b09d4834d4216a1ff7\", \"live\": true, \"id\": \"xa579732a2c6ec020\", \"perseus_api_major_version\": 3}", "{\"sha\": \"661cb61d59067190de6705ebe67cbce732d5fd70\", \"live\": true, \"id\": \"x0f5d1f71f17a6fa0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e51328cac92a6e76a01fb7e8babfb0645bc43759\", \"live\": true, \"id\": \"x38c483f933679d7d\", \"perseus_api_major_version\": 3}", "{\"sha\": \"774b4bdca4a5ceab1f135596a3dfb4bf803ebdda\", \"live\": true, \"id\": \"x42a6e14e31f44f49\", \"perseus_api_major_version\": 3}", "{\"sha\": \"3cfefcc1287a3f7dad1f0a67c8f24edadaadf480\", \"live\": true, \"id\": \"xed19fef9d4cae1dd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0d5091874cde98f6afe9ec7c4d19a1e385294e3c\", \"live\": true, \"id\": \"xefd337f642411d04\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0c1466c86a0af915e79a6439b80077b93856012d\", \"live\": true, \"id\": \"x6a0ca3b281284010\", \"perseus_api_major_version\": 3}", "{\"sha\": \"25ca594d3f0bbfa010c98d775ca1d619184b732d\", \"live\": true, \"id\": \"xf9da3f7708db1227\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e29a9a82f95a22ee882f0eb271fe8873620d4e9c\", \"live\": true, \"id\": \"x8f8f4ef3fa6447ab\", \"perseus_api_major_version\": 3}", "{\"sha\": \"36f7dfc15dde1596878fed037cbfab5ef1d91c9e\", \"live\": true, \"id\": \"x7d9ca444d168a10b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"93abf17819232066a2895bf4dcc96067f26556d4\", \"live\": true, \"id\": \"xba7623012a60440f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"833b9a31e86e10d7d1595b70cf52d7d99840a79c\", \"live\": true, \"id\": \"x67b0f3a132b380c1\", \"perseus_api_major_version\": 3}", "{\"sha\": \"5a58d28a46a1bc2046e6677a21a5f7456ddc2886\", \"live\": true, \"id\": \"x6ebdb227a9cba040\", \"perseus_api_major_version\": 3}", "{\"sha\": \"bdb5542dbbe303c7351d8b4c2fb8cf5c074702d9\", \"live\": true, \"id\": \"xf383526824b49d26\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ac0c459a4be92a547fe25c4ed348cce7785794c4\", \"live\": true, \"id\": \"x80263c1ac1e37dc4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"aa2dcc4b5d78422f538c0125af9276f65fc5b43a\", \"live\": true, \"id\": \"x33ef2a2c9e0b0559\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8810f17ceb1deb1dc3baee4bc70592555ec70611\", \"live\": true, \"id\": \"xfbccf2ee38120054\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9742d00c4b6b81bd9aac8d85246ab9e971c18de8\", \"live\": true, \"id\": \"xf26fca69faf742d9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9db835ebf056334eb683946076ec0b52dcb7a0fc\", \"live\": true, \"id\": \"xbeedb8ad2c4768b7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c1cc63fa41fa6ce23fbd7f46ee24c21bb3f8527a\", \"live\": true, \"id\": \"x1d0da2c471331c0b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e71248577d496485874cbd84c6f787eecf696869\", \"live\": true, \"id\": \"x40b516668969fe00\", \"perseus_api_major_version\": 3}", "{\"sha\": \"df1f0f87fe09fba6d1dfe8fa0d06855a2ad846d3\", \"live\": true, \"id\": \"x093b2cf53f2cce1f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"7d67916a471c8412ef56a3dd26042683a2f2ba60\", \"live\": true, \"id\": \"x206c925c5b442c6e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"13a6127f3a2b97ff04702b0d83ab890b494fd69b\", \"live\": true, \"id\": \"x53f26840a78c4eea\", \"perseus_api_major_version\": 3}", "{\"sha\": \"4ee3aa8a0a7474592feb7772730f7ca1cdf1f62f\", \"live\": true, \"id\": \"x8d7701097397d97c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ead3162700cc9ec7f880fd1ad49640f2ff939603\", \"live\": true, \"id\": \"x5be21b5c8f9ef7bf\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ac3a6f3da7374f808d64ad25c357f786a7640e2d\", \"live\": true, \"id\": \"x3f18c8647f758abd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"07640190942b4e9a4764f91979558e4ed837d5e7\", \"live\": true, \"id\": \"x7221311ce25bc0ba\", \"perseus_api_major_version\": 3}", "{\"sha\": \"af4d14287adc987ce8cb36b11560d1554da132f2\", \"live\": true, \"id\": \"xa6318b23bfa7295f\", \"perseus_api_major_version\": 3}"], "description": "Solve quadratics by taking the square root.", "basepoints": 23.0, "slug": "solving_quadratics_by_taking_the_square_root", "kind": "Exercise", "name": "solving_quadratics_by_taking_the_square_root", "seconds_per_fast_problem": 26.0, "prerequisites": ["understanding-the-equation-solving-process"], "exercise_id": "solving_quadratics_by_taking_the_square_root"}, "equivalent-forms-of-expressions-with-variable-exponents": {"uses_assessment_items": true, "path": "khan/math/algebra2/exponential_and_logarithmic_func/exp_growth_decay/equivalent-forms-of-expressions-with-variable-exponents/", "id": "equivalent-forms-of-expressions-with-variable-exponents", "display_name": "Equivalent forms of exponential expressions", "title": "Equivalent forms of exponential expressions", "all_assessment_items": ["{\"sha\": \"31708112eadccddfc4dd74eeea976bc092a998fb\", \"live\": true, \"id\": \"xea1771e6456c7851\"}", "{\"sha\": \"82fcfbfc4b25cfbca0b84d31005662425e195246\", \"live\": true, \"id\": \"xb31378c249555543\"}", "{\"sha\": \"dafacacaff4cee2352c3c1b50ed9adddede0117a\", \"live\": true, \"id\": \"x0d6d43e419d29761\"}", "{\"sha\": \"b7d3a9c3e686f36a2c786d6130d41ae61ff2387b\", \"live\": true, \"id\": \"xd148cf444d5a2b97\"}", "{\"sha\": \"33fddf11ca92b5dab5518e9c44c8080c6dfa7ac4\", \"live\": true, \"id\": \"xaa5c926e7af42c7c\"}", "{\"sha\": \"cb5d276d43bd7ab8c4d9b417a7a36265fa5b9325\", \"live\": true, \"id\": \"x75573d303b71d9ad\"}", "{\"sha\": \"0ff2831167cd87c6fd8881c6db97ecbbcfbe500c\", \"live\": true, \"id\": \"xbfa138e329c44106\"}", "{\"sha\": \"c48b020d2d9e45f1d4ad2d2df87b0a6ac502d352\", \"live\": true, \"id\": \"x824fddb0dcc969f3\"}", "{\"sha\": \"84cbea3945106c478c4677a1fe5093b4b198c4be\", \"live\": true, \"id\": \"x553b5705a5d6ad74\"}", "{\"sha\": \"f8a07d26f7f5c1ec4016d3a47aaeb70c14c2d42c\", \"live\": true, \"id\": \"x6903f24efca4d188\"}", "{\"sha\": \"07a2d161e4197420689d5bd3718f38698b27a753\", \"live\": true, \"id\": \"x39c10b9d42c9f79a\"}", "{\"sha\": \"41ecabca6ebb97d2b33061f9516b9fd48473ec41\", \"live\": true, \"id\": \"x23f5a43d197a85a6\"}", "{\"sha\": \"8ad6997d3ce460c11d8722709e975fffeed8e9fb\", \"live\": true, \"id\": \"x10518070c8b7538b\"}", "{\"sha\": \"8d955c949753a2fa11110c3f8d9790b7a98e2835\", \"live\": true, \"id\": \"x324dd7990deb35e3\"}", "{\"sha\": \"2a4489eb488617549be53b3c21313f0726e044c3\", \"live\": true, \"id\": \"x4c93def3b8c1d445\"}", "{\"sha\": \"6f9fa36fc40f16b24cbd0f83b0a7f84aeede4cdd\", \"live\": true, \"id\": \"xe203c295c667e5f4\"}", "{\"sha\": \"b835961d137267d65d064df31a2aa4bdd55f74b3\", \"live\": true, \"id\": \"x7b3e50c41954b4bd\"}", "{\"sha\": \"027860acdebb52b9b46fd23358cd9a954d80c4ba\", \"live\": true, \"id\": \"xfe3dc0581f4d6ae3\"}", "{\"sha\": \"2d18ce97b25b7421fd0605c59af291f4d524e5d3\", \"live\": true, \"id\": \"xfd64abc0a78df15c\"}", "{\"sha\": \"17a2566a29bbe39b6b2a2fd63ca687eb33e4795a\", \"live\": true, \"id\": \"xddbf1f1f637f12c1\"}"], "description": "", "basepoints": 10.0, "slug": "equivalent-forms-of-expressions-with-variable-exponents", "kind": "Exercise", "name": "equivalent-forms-of-expressions-with-variable-exponents", "seconds_per_fast_problem": 4.0, "prerequisites": ["properties-of-integer-exponents", "manipulating-fractional-exponents"], "exercise_id": "equivalent-forms-of-expressions-with-variable-exponents"}, "systems-of-nonlinear-equations": {"uses_assessment_items": true, "path": "khan/math/algebra2/systems_eq_ineq/non-linear-systems-tutorial/systems-of-nonlinear-equations/", "id": "systems-of-nonlinear-equations", "display_name": "Systems of nonlinear equations", "title": "Systems of nonlinear equations", "all_assessment_items": ["{\"sha\": \"c76c2d9503daf56707a6c005198d4d38c6cf1a6b\", \"live\": true, \"id\": \"xdc50f349\", \"perseus_api_major_version\": null}", "{\"sha\": \"4bab6f0ae1af362b8e444ed9ea176eebd3ff3e43\", \"live\": true, \"id\": \"x194a03ce\", \"perseus_api_major_version\": null}", "{\"sha\": \"45b16dc4f11f383fa3d3224257122a17451cac36\", \"live\": true, \"id\": \"xd263cfb6\", \"perseus_api_major_version\": null}", "{\"sha\": \"b21c662103d7c5f359ed730e9dce7fc51b56074c\", \"live\": true, \"id\": \"xd11ee7a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"3222f697ad6d3d85ca467a9e6c7efe9b8327cdd5\", \"live\": true, \"id\": \"x5dda0817\", \"perseus_api_major_version\": null}", "{\"sha\": \"0d20996d4d05a02a5bf8f11334d452a2a9fe9528\", \"live\": true, \"id\": \"x836eb33d\", \"perseus_api_major_version\": null}", "{\"sha\": \"84d5012c1c3d6681505bac238073ae56452012ad\", \"live\": true, \"id\": \"xa16ef05c\", \"perseus_api_major_version\": null}", "{\"sha\": \"9d9bcf3a943378cc83c7baaef348e78dd21bd3a2\", \"live\": true, \"id\": \"x48c9bf5f\", \"perseus_api_major_version\": null}", "{\"sha\": \"5ff0f9789910436e69c31b8a9889e3fc0a4dd240\", \"live\": true, \"id\": \"x7590df0f\", \"perseus_api_major_version\": null}", "{\"sha\": \"cc937e2962e63567b8f983fcd51550740f49682d\", \"live\": true, \"id\": \"x488946fa\", \"perseus_api_major_version\": null}", "{\"sha\": \"09245781c8856b3cfcb995a69109eede7081832d\", \"live\": true, \"id\": \"x1c527efd\", \"perseus_api_major_version\": null}", "{\"sha\": \"3db5f84c026bd7ab544feef971960c07f0b842a2\", \"live\": true, \"id\": \"xc198184f\", \"perseus_api_major_version\": null}", "{\"sha\": \"231b4123a38d10d8e1e50261ab491a7eb1ee3395\", \"live\": true, \"id\": \"x760ea6aa\", \"perseus_api_major_version\": null}", "{\"sha\": \"2aca011242aecf2d15dab7dd79c2c39fdf814e9e\", \"live\": true, \"id\": \"x8ae04b41\", \"perseus_api_major_version\": null}", "{\"sha\": \"0ef9880d96f6c96cd5aca60587169ef6da1c5507\", \"live\": true, \"id\": \"x428e9cbe\", \"perseus_api_major_version\": null}", "{\"sha\": \"229413bf8225e930652f100deabe4373de280081\", \"live\": true, \"id\": \"x42eecd7b\", \"perseus_api_major_version\": null}", "{\"sha\": \"6493f435f4ab3b558196ac82191cd0f3b01fe96a\", \"live\": true, \"id\": \"x33e2d584\", \"perseus_api_major_version\": null}", "{\"sha\": \"3b5590423dd067b21c32a1906be9ea7ee5261dd6\", \"live\": true, \"id\": \"x900a335c\", \"perseus_api_major_version\": null}", "{\"sha\": \"97405d734acc4c9dd6f3caa87ada40b1e049d044\", \"live\": true, \"id\": \"x4e28188e\", \"perseus_api_major_version\": null}", "{\"sha\": \"c7522bbd30190cafa25570eeb65e5efecb046437\", \"live\": true, \"id\": \"xc7cc8ea1\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab7c86ce808a542ae8c6576d757fa64597b7df9e\", \"live\": true, \"id\": \"x257f1ab1\", \"perseus_api_major_version\": null}", "{\"sha\": \"59ef4923636bb2f287f9087c3a97d1ab28e072a2\", \"live\": true, \"id\": \"xbf1c41a2\", \"perseus_api_major_version\": null}", "{\"sha\": \"45c1f06b62fe2859b8ddbd105f90e36defc173a6\", \"live\": true, \"id\": \"x70657a26\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8ed8026108562d80ccca1373afdf8e10f90c3fca\", \"live\": true, \"id\": \"xc6a4fea2\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c3fbd388239bb35719e337fc9445bfa9c74b601b\", \"live\": true, \"id\": \"x73c64771\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d776eaba7135ca0b25cb37fa9eff6b422527cc63\", \"live\": true, \"id\": \"xde322413\", \"perseus_api_major_version\": 3}", "{\"sha\": \"91c43affa349f057b08b6080edceecbd15e27776\", \"live\": true, \"id\": \"x7af5ae0f\", \"perseus_api_major_version\": null}", "{\"sha\": \"0dd5394dfbb4ba85b6dcd8483251373ed02abd8f\", \"live\": true, \"id\": \"x6cc24327\", \"perseus_api_major_version\": 3}", "{\"sha\": \"19caa489a3539d9c8286abd1181de274d56f8c72\", \"live\": true, \"id\": \"xfe8ce816\", \"perseus_api_major_version\": 3}", "{\"sha\": \"9dfefa703b5c10524be2d4b29408b4b4e663b865\", \"live\": true, \"id\": \"x4cc4d3e6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e9a58b56e1ea46b01ddf7b072fc56264282c4bc0\", \"live\": true, \"id\": \"x12ea8634\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c898141a89496410372f79836f978bbdff081e97\", \"live\": true, \"id\": \"x1410a3fe\", \"perseus_api_major_version\": 3}", "{\"sha\": \"7e0b61037a0a08d1fd2b589318c5da6202f33c48\", \"live\": true, \"id\": \"x685bfdfb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"54438d8b4a0d18cd5d4339d97f0989e03d1bd6bd\", \"live\": true, \"id\": \"x77d124af\", \"perseus_api_major_version\": null}", "{\"sha\": \"449b0ad02f2882c1b4349d31e8f916025340ddc8\", \"live\": true, \"id\": \"x16eedd36\", \"perseus_api_major_version\": 3}", "{\"sha\": \"af4a73ea59a65c23b0784e8bc216d8285f5af74a\", \"live\": true, \"id\": \"xb7241971\", \"perseus_api_major_version\": null}", "{\"sha\": \"d95ab7c17044b3925fba3d6fa7f702279876b226\", \"live\": true, \"id\": \"x7bf62c0c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b1eccba5e31d20ca4971fcf2fe76cc7f6b7a3f41\", \"live\": true, \"id\": \"x962d02bd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"568357f75151890429243f3379eddc31fef9dfea\", \"live\": true, \"id\": \"x79ed4667\", \"perseus_api_major_version\": 3}", "{\"sha\": \"085f7efc4e4aa840282e5de41d62e8d10ec3871d\", \"live\": true, \"id\": \"xfac7d301\", \"perseus_api_major_version\": 3}", "{\"sha\": \"84ff4c1c4b99fd708d8dc494b14adba77952fb5e\", \"live\": true, \"id\": \"x54fcc3b9\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0876c51a9416137b87c35d9b1f6e53624ecc62b5\", \"live\": true, \"id\": \"x63ef5cb1\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d8efff6a6347c6f4b75b844d5dd3b4331a4725c5\", \"live\": true, \"id\": \"xd6bc5227\", \"perseus_api_major_version\": null}", "{\"sha\": \"e055158d3137e102dfddfe53964ebfb80900ee75\", \"live\": true, \"id\": \"x84b39a5e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"0a316731b1dd7141be505e2c860c624951d26ec3\", \"live\": true, \"id\": \"xfc48390c\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6635fa316ac855834fd57f96f3d6f961f0cfd831\", \"live\": true, \"id\": \"x8b3f4b46\", \"perseus_api_major_version\": null}"], "description": "", "basepoints": 26.0, "slug": "systems-of-nonlinear-equations", "kind": "Exercise", "name": "systems-of-nonlinear-equations", "seconds_per_fast_problem": 37.0, "prerequisites": ["graphing_parabolas_2", "equation_of_an_ellipse", "graphing_circles_2"], "exercise_id": "systems-of-nonlinear-equations"}, "compound_inequalities": {"uses_assessment_items": false, "path": "khan/math/algebra/linear_inequalities/compound_absolute_value_inequali/compound_inequalities/", "id": "compound_inequalities", "display_name": "Compound inequalities", "title": "Compound inequalities", "description": "Solve compound inequalities.", "basepoints": 23.0, "slug": "compound_inequalities", "kind": "Exercise", "name": "compound_inequalities", "seconds_per_fast_problem": 24.0, "prerequisites": ["linear_inequalities"], "exercise_id": "compound_inequalities"}, "negative-signs-in-numerators-and-denominators": {"uses_assessment_items": true, "id": "negative-signs-in-numerators-and-denominators", "display_name": "Negative signs in numerators and denominators", "title": "Negative signs in numerators and denominators", "all_assessment_items": ["{\"sha\": \"bd8691ca04b1122b01578ce6faa73bde0da40d21\", \"live\": true, \"id\": \"xdd1d527a627d3297\", \"perseus_api_major_version\": null}", "{\"sha\": \"847ddfee4fab97910f1ccef1a9b884e4d2a24512\", \"live\": true, \"id\": \"x8c1ab64c2e9fed37\", \"perseus_api_major_version\": 3}", "{\"sha\": \"afb211c4770a421cf1dced6da3aa13012e498c75\", \"live\": true, \"id\": \"x2b64fa934ea04bc4\", \"perseus_api_major_version\": 3}", "{\"sha\": \"730c98a3e0c18e34d47f07aa2cfffd0b38077795\", \"live\": true, \"id\": \"xf11afb506f8f35f6\", \"perseus_api_major_version\": null}", "{\"sha\": \"b8ce79e00b7ccb35617905a903b5b2c552ab49f9\", \"live\": true, \"id\": \"xd7f608f08cf2e4b8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"266cb97ed7c265ce7bdb84d2a7a4f49ad9933292\", \"live\": true, \"id\": \"x6807dd51a6991eeb\", \"perseus_api_major_version\": 3}", "{\"sha\": \"56e62ee48be2a8b86daa52f2370cc9b2ef2ab889\", \"live\": true, \"id\": \"x27b629ac7402ac41\", \"perseus_api_major_version\": null}", "{\"sha\": \"9632b78e8b7a84f1863d41e300d8e297c1ab9715\", \"live\": true, \"id\": \"xc2a63bca9f5e2ad1\", \"perseus_api_major_version\": null}", "{\"sha\": \"ac062d8a380daf698e8df3b22c14402cee9b6267\", \"live\": true, \"id\": \"x3d8f1f696832bbf6\", \"perseus_api_major_version\": 3}", "{\"sha\": \"8d79bc24326a4ee74e72beb63680020b0305b42b\", \"live\": true, \"id\": \"x93a8d91516f32eb7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"e4ed991a230c0f171193efeef8b72427d2b0bf15\", \"live\": true, \"id\": \"x7fd77a2f957dfd10\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ee691e9c39c8b96ade0b8b3eaa287cc50633be2b\", \"live\": true, \"id\": \"x52cd4d9fe2b9253b\", \"perseus_api_major_version\": 3}", "{\"sha\": \"fe219f8636715f30989ed7f75955def5f5059e2d\", \"live\": true, \"id\": \"xfb70eb9ba35e80d7\", \"perseus_api_major_version\": null}", "{\"sha\": \"3cd983e5ca289affc436338508e120c52c704a07\", \"live\": true, \"id\": \"xf63e120b179d038d\", \"perseus_api_major_version\": null}", "{\"sha\": \"37ab2d7fdd6c32c4019c81ebf7e504a807deec30\", \"live\": true, \"id\": \"xe393732fc565b440\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c7c1be0ab4f7507d82e1961fb3186dda4068c93e\", \"live\": true, \"id\": \"xb5796b4f1476d7d5\", \"perseus_api_major_version\": null}", "{\"sha\": \"bc8264c91b52ee363e569af07b3eb5c8042e3c1e\", \"live\": true, \"id\": \"x1631717842b0b842\", \"perseus_api_major_version\": 3}", "{\"sha\": \"725b59300d366fffe6a76d6934ec93a39209d928\", \"live\": true, \"id\": \"xa2f5e235c2d6208c\", \"perseus_api_major_version\": null}", "{\"sha\": \"12b60dab261ab53650b67e81455f525fca0c9c6d\", \"live\": true, \"id\": \"xc03b86b1a17b8430\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d3b46e9a44852b338b9eab514af653687ecf71a3\", \"live\": true, \"id\": \"xd721763cab4ed6fc\", \"perseus_api_major_version\": 3}", "{\"sha\": \"df675dcc04baec73a33213868275dc95971fc0f7\", \"live\": true, \"id\": \"xbd488509b570c94e\", \"perseus_api_major_version\": 3}", "{\"sha\": \"b672c19394c0acd5f54ae3a093cbf6a791de6192\", \"live\": true, \"id\": \"x15c47431860e0aa8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"3f35620c1970a6f32a96ac9be31ba4550c0ece8b\", \"live\": true, \"id\": \"x45a33532fa3778d8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"df934a08a7d546c8d6b99cb157560a65f914bcc3\", \"live\": true, \"id\": \"xd3f6b82959d46fbd\", \"perseus_api_major_version\": null}", "{\"sha\": \"5e055a297f526db524ace827787d65fc0765efee\", \"live\": true, \"id\": \"x1023b83923e73862\", \"perseus_api_major_version\": 3}", "{\"sha\": \"ad663b3b3c9df13f10e65265e87d8e5fb0b64b95\", \"live\": true, \"id\": \"xd95a2ad0b2bdcd77\", \"perseus_api_major_version\": null}", "{\"sha\": \"a1ed2d82da5eb2f9948f264267ae85f9ea2b1e42\", \"live\": true, \"id\": \"x48acfd9994a1b8d8\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1e81f11e5c818ba9a57a7e5138d24aca6e4ced11\", \"live\": true, \"id\": \"xd062eb97a9312277\", \"perseus_api_major_version\": null}", "{\"sha\": \"90fb15d88295f89bd9d2e4e2d0e9e8b631acab7c\", \"live\": true, \"id\": \"xaa364e4f9b30ec8f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"35f8e368957f2f767fd8431ad647a381a1396454\", \"live\": true, \"id\": \"x046a59a62e7dc02b\", \"perseus_api_major_version\": 3}"], "description": "Practice rewriting fractions with positive and negative denominators.", "basepoints": 10.0, "path": "negative-signs-in-numerators-and-denominators/", "slug": "negative-signs-in-numerators-and-denominators", "kind": "Exercise", "name": "negative-signs-in-numerators-and-denominators", "seconds_per_fast_problem": 4.0, "prerequisites": ["dividing_fractions_2"], "exercise_id": "negative-signs-in-numerators-and-denominators"}, "area-under-a-rate-function-equals-net-change": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/area-under-rate-function/area-under-a-rate-function-equals-net-change/", "id": "area-under-a-rate-function-equals-net-change", "display_name": "Area under a rate function equals net change", "title": "Area under a rate function equals net change", "all_assessment_items": ["{\"sha\": \"63c2229aeb3100d00ed6f12219b1fda0011c3f40\", \"live\": true, \"id\": \"x72a366887830514a\"}", "{\"sha\": \"e160ce5432d901574bea88a7209c62a1c5e251df\", \"live\": true, \"id\": \"x973c3fbc083d7a1a\"}", "{\"sha\": \"c38edcb86ceeff3ad11e612f509cde7bf5708104\", \"live\": true, \"id\": \"x99145f80eed547cb\"}", "{\"sha\": \"9dbc3efdf80f765671929338d46568206dce6e7e\", \"live\": true, \"id\": \"x10cb05edf1974b67\"}", "{\"sha\": \"c823001bc330f8e4c2d35d41d821be0b1a145851\", \"live\": true, \"id\": \"xc15887122311f66b\"}", "{\"sha\": \"9ca90964d2678a0253e9721ab9b9d20b01cb1e8d\", \"live\": true, \"id\": \"x1e82f4b7655ca064\"}", "{\"sha\": \"070665d9a7a2baaaea76785c256f19ed8b69b917\", \"live\": true, \"id\": \"x33716d27732963b0\"}", "{\"sha\": \"7fbbe86dc1bcd714e66e1aae6b1e512bd4c1f9ae\", \"live\": true, \"id\": \"x85b0931a25d515f0\"}", "{\"sha\": \"ae596bc011ba7e9b10b5e53cfaa2b79c7405b0ec\", \"live\": true, \"id\": \"x4569e0ac19dfc2da\"}", "{\"sha\": \"0bbabbeb472e6b91e758e069d734ea4d78e3d5cb\", \"live\": true, \"id\": \"x346a4134509f9c5a\"}", "{\"sha\": \"9b280120b7323f0dea53586b3052c9e041db4cad\", \"live\": true, \"id\": \"xc79b96ac32931158\"}", "{\"sha\": \"da218e9f5374ed291a096b792bd08f493947ddf8\", \"live\": true, \"id\": \"x9b4d432aa320378b\"}", "{\"sha\": \"00568e14de4895ab80817968824fdd742e503d03\", \"live\": true, \"id\": \"xb5bcfc65505997eb\"}", "{\"sha\": \"50f5daa15f6e4ddad21a301118469a6320ce38f9\", \"live\": true, \"id\": \"x593940f14bb0a0fb\"}", "{\"sha\": \"7059a7a24701c72895715a8d0fe5f19fe0b43c86\", \"live\": true, \"id\": \"x1f42220c900bb005\"}", "{\"sha\": \"c71f03121e52aa7c8274a7c070c03a82271609b9\", \"live\": true, \"id\": \"x62bb7bd78494a986\"}", "{\"sha\": \"094fa32b5110a856a9557d59a05040d1bd9e8f76\", \"live\": true, \"id\": \"xe61b8f912ee23e1a\"}", "{\"sha\": \"7f57cf85eba30fd733299333e0c368b38bb411e6\", \"live\": true, \"id\": \"x668f97d97ed9f748\"}", "{\"sha\": \"073bcfa9649a05729fc4f768499e57eaa9a357ac\", \"live\": true, \"id\": \"xe541b522c667fe9f\"}", "{\"sha\": \"fa43e439af8689e2975e459db48a5ada8819c5e1\", \"live\": true, \"id\": \"x663b78843d89bee1\"}", "{\"sha\": \"6facb253e43573f195e551330fbd311cb2287bc3\", \"live\": true, \"id\": \"x0cd57cf96725ec85\"}", "{\"sha\": \"9067ca090b46b15833a89bf3c493e48f82826a42\", \"live\": true, \"id\": \"xa86eef1093985365\"}", "{\"sha\": \"919408654c1388de13e4061cac41b7658f30063a\", \"live\": true, \"id\": \"x8d61855261608187\"}", "{\"sha\": \"334465754bca784e395ecb7daa595937fe71a116\", \"live\": true, \"id\": \"x7dfce1d558d7c26d\"}", "{\"sha\": \"72ae1326c8ca3c36ac062eaa5a70d040a581ea9b\", \"live\": true, \"id\": \"xb1b4f2a039afaebe\"}", "{\"sha\": \"a5c617c40cbb96f55b55172c644f005d5a8c953c\", \"live\": true, \"id\": \"x58d52c8d5654baec\"}", "{\"sha\": \"a4d48e108511a62265970fde74ce41cd881f8914\", \"live\": true, \"id\": \"x26bd3d14f3ca82c7\"}", "{\"sha\": \"676f086e88fbaef334a9d9bc8a66e11cbc97d1f9\", \"live\": true, \"id\": \"xec63bdbf0bbdba76\"}", "{\"sha\": \"4bc71529cd5bb4172a7d8d3915330751a5bd4791\", \"live\": true, \"id\": \"x0f7b7327e517794f\"}", "{\"sha\": \"d5b9ab0086b35691c29893b85a89006f40d7a761\", \"live\": true, \"id\": \"x87227eebf4969b11\"}"], "description": "Area under the graph of a rate of change function interpreted as net change", "basepoints": 10.0, "slug": "area-under-a-rate-function-equals-net-change", "kind": "Exercise", "name": "area-under-a-rate-function-equals-net-change", "seconds_per_fast_problem": 4.0, "prerequisites": ["using-rectangles-to-approximate-area-under-a-curve"], "exercise_id": "area-under-a-rate-function-equals-net-change"}, "the-chemical-structure-consequences-of-beta-lactams": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-chemical-structure-consequences-of-beta-lactams/", "id": "the-chemical-structure-consequences-of-beta-lactams", "display_name": "The Chemical Structure Consequences of Beta-lactams", "title": "The Chemical Structure Consequences of Beta-lactams", "all_assessment_items": ["{\"sha\": \"aec301b65ca70c940b40815f1a9a8e8d50fe3f35\", \"live\": true, \"id\": \"xf67d2991dcbe23fc\"}", "{\"sha\": \"1c8c19024a140788bbe40895db7f65799ddce956\", \"live\": true, \"id\": \"xa9dc2e24f05c8b6e\"}", "{\"sha\": \"a87ce41acdad2ef9244a8f27962ced4978094a45\", \"live\": true, \"id\": \"x356af2c21f413f20\"}", "{\"sha\": \"74a2f58b02ad041d6a63c4cc3db8b9be3a378eb6\", \"live\": true, \"id\": \"x788fe95d10dbb9af\"}", "{\"sha\": \"65a0ac63e8abecdf3bd9cb8fbe1da88e6df614fd\", \"live\": true, \"id\": \"x61fdaa6b5ce65119\"}"], "description": "The Chemical Structure Consequences of Beta-lactams", "basepoints": 10.0, "slug": "the-chemical-structure-consequences-of-beta-lactams", "kind": "Exercise", "name": "the-chemical-structure-consequences-of-beta-lactams", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-chemical-structure-consequences-of-beta-lactams"}, "pazzi-chapel-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap/pazzi-chapel-quiz/", "id": "pazzi-chapel-quiz", "display_name": "Brunelleschi, Pazzi Chapel (quiz)", "title": "Brunelleschi, Pazzi Chapel (quiz)", "all_assessment_items": ["{\"sha\": \"37ed41ee7c1bd45272579fbadf7a695cf8e6a048\", \"live\": true, \"id\": \"x8eecaf6a8f4bcf6f\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d5e3d52bda0c64d7636a58ecf6b6338ff44d4605\", \"live\": true, \"id\": \"xf5200352f968f8fb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"284346e83b35e696f76ed3812b7c840ff7ad2155\", \"live\": true, \"id\": \"x18e3bfb806de6351\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6daf320f8ce9847fa0483edc4c589eb72a1f1ac9\", \"live\": true, \"id\": \"x7deaa8ee2833c3ed\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "pazzi-chapel-quiz", "kind": "Exercise", "name": "pazzi-chapel-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pazzi-chapel-quiz"}, "adding-probability": {"uses_assessment_items": true, "path": "khan/math/probability/independent-dependent-probability/addition_rule_probability/adding-probability/", "id": "adding-probability", "display_name": "Adding probabilities", "title": "Adding probabilities", "all_assessment_items": ["{\"sha\": \"cf243431a7bae6116ae648e71c3bd229543dd1d9\", \"live\": true, \"id\": \"xa5fe16b6ae62c338\"}", "{\"sha\": \"f0ac7fc0fb70be571b5c01ae922261d91fe242aa\", \"live\": true, \"id\": \"xe259b3eeb55525de\"}", "{\"sha\": \"dd6017b3ba9a6f2ca9003e11e04fc333b84b4e2b\", \"live\": true, \"id\": \"x40e42aabf015b538\"}", "{\"sha\": \"56a64a33574a68b74a33068e59625a2e2b6a45d2\", \"live\": true, \"id\": \"x7ac77d78ca983571\"}", "{\"sha\": \"9e1f54c38f25bea36f227b5ad66f2cf679a738f0\", \"live\": true, \"id\": \"x789112555c72acee\"}", "{\"sha\": \"98122fdaf6a8855d6ea67b7feb29860771fd710d\", \"live\": true, \"id\": \"x33d718ea1fd3cfc7\"}", "{\"sha\": \"8d485d5cc9a8089a62b657afa4950b38f302b022\", \"live\": true, \"id\": \"xc771c53bc2d2034d\"}", "{\"sha\": \"e068f9e4ac369f0d26f4d9fdaef11c06437791ac\", \"live\": true, \"id\": \"x4a2bd3e5a6bdd64e\"}", "{\"sha\": \"58f61ab62ccce581ab06c05146a1ecfa9b23022d\", \"live\": true, \"id\": \"xab951da7e21453fb\"}", "{\"sha\": \"e9278d05d38d05a0c4eab2821373be605573c275\", \"live\": true, \"id\": \"xbdddaf4529163f69\"}", "{\"sha\": \"25d96aa75071eee4ddf920bd8119f986d48d238c\", \"live\": true, \"id\": \"x41bb3ce8d278db01\"}", "{\"sha\": \"dd20a68fc6b724fced03fcbf84a2e854a4113f85\", \"live\": true, \"id\": \"xbd2a35bd3e9303f2\"}", "{\"sha\": \"0b0e2478a843d9c4abf3f8b3f8e6e92e62f24c57\", \"live\": true, \"id\": \"xaded2f8e75189c1e\"}", "{\"sha\": \"11b2f5b9f78865d55aee1d3b5b3b743dff658171\", \"live\": true, \"id\": \"x2f76774d6d2502e3\"}", "{\"sha\": \"6cda1380c7ead8a3579891dd736201b9bf095670\", \"live\": true, \"id\": \"x5a8409cddf03a231\"}", "{\"sha\": \"774f7f0ce1c6b105bd1ffb29f5ec1244b3b35ac7\", \"live\": true, \"id\": \"x1bb4b8799df188f1\"}", "{\"sha\": \"f5170e778f150934079b470f9ffd1a51269469d6\", \"live\": true, \"id\": \"x03926290c8967a5a\"}", "{\"sha\": \"98cc4c5983e8125f3422c087fafe71e83925763d\", \"live\": true, \"id\": \"xfe7f428eff3860d4\"}", "{\"sha\": \"b132c68485a0c76ae145da4c32cc6bcc4db4b2e2\", \"live\": true, \"id\": \"xbbd482439c17b7ed\"}", "{\"sha\": \"5a37ec6c5eb58951799cddc8b9ed2001944692bb\", \"live\": true, \"id\": \"x2cd1e7713870f489\"}", "{\"sha\": \"45a4f1820fd142f51ed70c421779dff683829794\", \"live\": true, \"id\": \"xb3b1a99250099a16\"}", "{\"sha\": \"14533eed26c0d38f8af7e4bf23fc9f54315751a5\", \"live\": true, \"id\": \"x392b2bdb2362f3c3\"}", "{\"sha\": \"e62caff51df3e1d62deeb327ef1c2928825cd9e4\", \"live\": true, \"id\": \"x97125a8e0a392700\"}", "{\"sha\": \"bd5c2315e0234e90adf62d04a37edb0785c3dc84\", \"live\": true, \"id\": \"xba11ff47e307c170\"}", "{\"sha\": \"c5151716096e87c6b487310109512aa018747f86\", \"live\": true, \"id\": \"x1e2874c029eee694\"}", "{\"sha\": \"74949d5663e9987b6b1c814b8817ed3a5e8e0726\", \"live\": true, \"id\": \"x81d1c211442e56b6\"}", "{\"sha\": \"aaaa94fcd97c8143a9df9d322ce17ac0a85e1caa\", \"live\": true, \"id\": \"xf68e1cd1135e18ba\"}", "{\"sha\": \"047688925e93b6a74842856cfd7b606fb0b9c1e2\", \"live\": true, \"id\": \"x7eff32bc659b8452\"}", "{\"sha\": \"3ca6af0f57933b07f7596b0c476e924801f81feb\", \"live\": true, \"id\": \"xb0aaa3cb85f5bc16\"}", "{\"sha\": \"5171a41a46083870778e55df0d606c27dc94606a\", \"live\": true, \"id\": \"xf7b4c4b0ca9122a4\"}"], "description": "", "basepoints": 10.0, "slug": "adding-probability", "kind": "Exercise", "name": "adding-probability", "seconds_per_fast_problem": 4.0, "prerequisites": ["describing-subsets-of-sample-spaces"], "exercise_id": "adding-probability"}, "geometric-series-of-constants": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/sequences_series_approx_calc/seq_series_review/geometric-series-of-constants/", "id": "geometric-series-of-constants", "display_name": "Infinite geometric series", "title": "Infinite geometric series", "all_assessment_items": ["{\"sha\": \"e2c96b0e564b1469f8e6630452a1c9977566cb3c\", \"live\": true, \"id\": \"xcd446f0d1814fa17\", \"perseus_api_major_version\": null}", "{\"sha\": \"2952e6a77d180d0846e5e3e6b7a9598bf39be048\", \"live\": true, \"id\": \"xb33a221f282a3b0e\", \"perseus_api_major_version\": null}", "{\"sha\": \"78683ef53e7d38d129df147f96a3de46889938d4\", \"live\": true, \"id\": \"x9bba983cd4228c23\", \"perseus_api_major_version\": null}", "{\"sha\": \"e1882a44297ad5ce6a85f6496f182e4b4341f614\", \"live\": true, \"id\": \"x6dbf8f938e82544e\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab9f96221d74c45e256b3b8e82d372e13773be22\", \"live\": true, \"id\": \"x5273c46e43a9634f\", \"perseus_api_major_version\": null}", "{\"sha\": \"14a4a2bace34b573f67c01ea328f1897c9209e32\", \"live\": true, \"id\": \"x03853cbb94d26336\", \"perseus_api_major_version\": null}", "{\"sha\": \"3eb351d3a588c8d7ddb4758910d5a0b0ec3b6053\", \"live\": true, \"id\": \"xe32488733578902e\", \"perseus_api_major_version\": null}", "{\"sha\": \"31f54e35af7c64741b98d942e79e1d5e1e1bade5\", \"live\": true, \"id\": \"x291d668d7b9e51a3\", \"perseus_api_major_version\": null}", "{\"sha\": \"b813bbba019e5e4f17190a300606bd11dd911c1f\", \"live\": true, \"id\": \"x27654488b2628ab8\", \"perseus_api_major_version\": null}", "{\"sha\": \"1b2739099ac6365b9b00a5bb48e8fef062f90bf0\", \"live\": true, \"id\": \"x7f8b163c69688f95\", \"perseus_api_major_version\": 0}", "{\"sha\": \"4876a7b4486f5af8dae0b7a150bc8d5410b59a81\", \"live\": true, \"id\": \"xfa78f0d5b3ab91ea\", \"perseus_api_major_version\": null}", "{\"sha\": \"7c00e207933b94f1026cafaf4ad11e7bd93dcfeb\", \"live\": true, \"id\": \"x3b7736f762ec386f\", \"perseus_api_major_version\": null}", "{\"sha\": \"d89c34101c273a7cd5f72acbbb26dd81741ccd12\", \"live\": true, \"id\": \"x1b69fa90ddf5c939\", \"perseus_api_major_version\": null}", "{\"sha\": \"31bb6e079229f7fb2f62a8e456d1e2127d3a0c29\", \"live\": true, \"id\": \"x5c15ebfa3d9b07b0\", \"perseus_api_major_version\": null}", "{\"sha\": \"f6eb7f732d30b5f45c4b5461892003ab41adb1c1\", \"live\": true, \"id\": \"x10488ca748f67efe\", \"perseus_api_major_version\": null}", "{\"sha\": \"92ffef3abfa2d0b25dfaacc43948c511767ffe6b\", \"live\": true, \"id\": \"x03f816c3b7b18e8b\", \"perseus_api_major_version\": null}", "{\"sha\": \"61e2ce8881aa35564424a2811911daf0895dd2bb\", \"live\": true, \"id\": \"xe0d27a21b49fb1ae\", \"perseus_api_major_version\": null}", "{\"sha\": \"097a638dbc92b7f28701978fd3fd64a003535486\", \"live\": true, \"id\": \"x5fcd44beadd61e7f\", \"perseus_api_major_version\": null}", "{\"sha\": \"3d0cff71677645888575625c96f4be3289c26ab3\", \"live\": true, \"id\": \"x0d8e28999c6d55f9\", \"perseus_api_major_version\": null}", "{\"sha\": \"ebbe245b621e3899453a9da2ebaaef35d8059405\", \"live\": true, \"id\": \"xe31d964e9b1e8e45\", \"perseus_api_major_version\": null}", "{\"sha\": \"dd4259714d76ccf6b7c8ce03cc1127473254a606\", \"live\": true, \"id\": \"x6f33a876df1d23a0\", \"perseus_api_major_version\": null}", "{\"sha\": \"57b87376d75ac9523b7e09d037dc454e45f925d5\", \"live\": true, \"id\": \"xb0ca2d0e0056ad2f\", \"perseus_api_major_version\": null}", "{\"sha\": \"917883f7b1d1d0d991e61fb3d47b12b39c2037c7\", \"live\": true, \"id\": \"x049a04b1416b0ecb\", \"perseus_api_major_version\": null}", "{\"sha\": \"feb2977f9581c3a6ea0fb335459f7e4f34999b27\", \"live\": true, \"id\": \"x30e1094fe64d2ffd\", \"perseus_api_major_version\": null}", "{\"sha\": \"496136774f6152f3acc37bcc9d1827586c9c9b74\", \"live\": true, \"id\": \"x43a3a7ef23b45a6c\", \"perseus_api_major_version\": null}", "{\"sha\": \"603f37df8b01852c69f8ef53aebad588a72ba87c\", \"live\": true, \"id\": \"xd3e1e3e7570c1d9e\", \"perseus_api_major_version\": null}", "{\"sha\": \"fbb1e09340048f7ef2dadddb4e392e4ba8336d8a\", \"live\": true, \"id\": \"xb0c879a801b13f86\", \"perseus_api_major_version\": null}", "{\"sha\": \"771ab5fc47033de13cd73f50df7970545e1b10b5\", \"live\": true, \"id\": \"xff33adcee7ddf33a\", \"perseus_api_major_version\": null}", "{\"sha\": \"6ed2a7d86dbddaf092fb4cb23c5a3ac894fd7121\", \"live\": true, \"id\": \"x4db9c6442478d141\", \"perseus_api_major_version\": null}", "{\"sha\": \"1db94ef59cd0c31f0df043db4f97b198e4b0d8c2\", \"live\": true, \"id\": \"xab8ab7123845788e\", \"perseus_api_major_version\": null}", "{\"sha\": \"f55e06539e971e3d42f7192d942754bb6ffe99ad\", \"live\": true, \"id\": \"x4d3a27f040662f9e\", \"perseus_api_major_version\": null}"], "description": "Applying the formula for an infinite geometric series", "basepoints": 26.0, "slug": "geometric-series-of-constants", "kind": "Exercise", "name": "geometric-series-of-constants", "seconds_per_fast_problem": 37.0, "prerequisites": ["understanding-series"], "exercise_id": "geometric-series-of-constants"}, "domain_and_range_0.5": {"uses_assessment_items": true, "path": "khan/math/algebra2/functions_and_graphs/domain_range/domain_and_range_05/", "id": "domain_and_range_0.5", "display_name": "Domain and range from graph", "title": "Domain and range from graph", "all_assessment_items": ["{\"sha\": \"a7581331d59d091ff0c42d7759682172f2ee46b2\", \"live\": true, \"id\": \"xe3cc170ca9c289cb\"}", "{\"sha\": \"b9b67c34bb53bf95db7c36bf63786223df5b9477\", \"live\": true, \"id\": \"x484f3c5e3b12b7d6\"}", "{\"sha\": \"c5ccc23fe3ed0e74edeeb1c5d5035344bf4d3ffa\", \"live\": true, \"id\": \"x73a756efbe0b777c\"}", "{\"sha\": \"2267f87bf0b2bfd1d5061aa06dca6a35cb2805e0\", \"live\": true, \"id\": \"xa9f708cb23f1f3db\"}", "{\"sha\": \"14392aca944da468fe355a56948a9d80c964cb6e\", \"live\": true, \"id\": \"x6e670ec55b2bccac\"}", "{\"sha\": \"2bc6c667cc75fa34d6c5e6360182839b2d2fc9ad\", \"live\": true, \"id\": \"xbd9fa7f628f875b1\"}", "{\"sha\": \"8487a0f31819a12df2069ed3a18ccb68a203ef33\", \"live\": true, \"id\": \"xca26ace4b2ca282f\"}", "{\"sha\": \"50182b68d619b863ca17cb18c7eee7ebbac87ee8\", \"live\": true, \"id\": \"x0b1cbe8dcbdc4d39\"}", "{\"sha\": \"3491818be1f384eee4d6a44d1c748c43b299264d\", \"live\": true, \"id\": \"xb1621908ea2334db\"}", "{\"sha\": \"9fe1c4614409b4b38463613e6b8d7885ca7f452b\", \"live\": true, \"id\": \"x55218203b578a7ec\"}", "{\"sha\": \"2c34c8dd3f7f675559449d769707bd22c25d4188\", \"live\": true, \"id\": \"xf62b3e7e8d3117cd\"}", "{\"sha\": \"490c24de835e923b93551a670d93b819b332048b\", \"live\": true, \"id\": \"x67466b3f6aca6cdd\"}", "{\"sha\": \"8a1d5489030bc72558ec42efc8a430d726e9a456\", \"live\": true, \"id\": \"xbfd7e17f011e3576\"}", "{\"sha\": \"378634e6f5af43ffb026b0e3cb0ff96e7a93ad1c\", \"live\": true, \"id\": \"x3d2aa8524cb47c1f\"}", "{\"sha\": \"e42664d587d62a2d4209ebdf0ff5c4dfeb501c27\", \"live\": true, \"id\": \"xc73184bf2d1fec3a\"}", "{\"sha\": \"80420ebafb5107d740c90fdc2b0754aa228fbd94\", \"live\": true, \"id\": \"xc2ba00b0f07213cc\"}", "{\"sha\": \"2ad5e568ed19e1a26763565079980ea9020eaf74\", \"live\": true, \"id\": \"x8318fa72291bb345\"}", "{\"sha\": \"f8b5f04c0e4aa6688b7869208d1366ea33349248\", \"live\": true, \"id\": \"x95a447b7b16b14f6\"}", "{\"sha\": \"6273e7730bcaa6478b9ee0c4cfa0719506b77c7d\", \"live\": true, \"id\": \"xaa64300c96cf62aa\"}", "{\"sha\": \"438739b271b5f927f14e4951431ce0152692e76c\", \"live\": true, \"id\": \"x7c6b633fd1260d56\"}"], "description": "Given the graph of a function, determine its domain or range.", "basepoints": 16.0, "slug": "domain_and_range_05", "kind": "Exercise", "name": "domain_and_range_0.5", "seconds_per_fast_problem": 9.0, "prerequisites": ["views_of_a_function"], "exercise_id": "domain_and_range_0.5"}, "quiz-": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/life/life-and-big-history/quiz-/", "id": "quiz-", "display_name": "Quiz: What Is Life?", "title": "Quiz: What Is Life?", "all_assessment_items": ["{\"sha\": \"8fadad2f894ff0bcc603c016488dff60791c92b9\", \"live\": true, \"id\": \"x8a294cbb66603341\"}", "{\"sha\": \"ccdcb1f9343b22d10312781453de3e33d7c2fc2d\", \"live\": true, \"id\": \"xa6308ce071a32019\"}", "{\"sha\": \"17c8578fbbfd9f870805cb23327df5f0291ae2c8\", \"live\": true, \"id\": \"x410ef21fa25259ef\"}", "{\"sha\": \"0c5282cc3e570078d85d5dc6a7ee606eaf87d35d\", \"live\": true, \"id\": \"x7b8351812069338a\"}", "{\"sha\": \"7fc3e4cd24697fe88c2685bbd96f083885a009b2\", \"live\": true, \"id\": \"x7134c903df9784e2\"}"], "description": "Quiz 5.0", "basepoints": 10.0, "slug": "quiz-", "kind": "Exercise", "name": "quiz-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-"}, "mean_median_and_mode": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-data-management-probability/on-statistics/mean_median_and_mode/", "id": "mean_median_and_mode", "display_name": "Mean, median, and mode", "title": "Mean, median, and mode", "description": "", "basepoints": 16.0, "slug": "mean_median_and_mode", "kind": "Exercise", "name": "mean_median_and_mode", "seconds_per_fast_problem": 9.0, "prerequisites": ["division_3"], "exercise_id": "mean_median_and_mode"}, "aldehydes-and-ketones": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/aldehydes-and-ketones/", "id": "aldehydes-and-ketones", "display_name": "Aldehydes and ketones", "title": "Aldehydes and ketones", "all_assessment_items": ["{\"sha\": \"bab1e6dcdc9a317cb3776db35be12de8d543f82d\", \"live\": true, \"id\": \"xd2fca9ebf64bc570\"}", "{\"sha\": \"59e9ed51d22d4e1583d4d1d62f3ee7a72747ba74\", \"live\": true, \"id\": \"xce2ae0d539cc5c8d\"}", "{\"sha\": \"49bc863994f1227f7efdc11a4d0e94bd957cf112\", \"live\": true, \"id\": \"x82558be3e4c92111\"}", "{\"sha\": \"2149035bcb10c6a97422d379d200d0d124052975\", \"live\": true, \"id\": \"x6168e3085ff8fbb4\"}", "{\"sha\": \"de9883e0794ce88bf53961d4cb041d1f74628131\", \"live\": true, \"id\": \"xe7f2cb747a46d6a0\"}"], "description": "Aldehydes and ketones", "basepoints": 10.0, "slug": "aldehydes-and-ketones", "kind": "Exercise", "name": "aldehydes-and-ketones", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "aldehydes-and-ketones"}, "race--socioeconomic-status--and-nutrition": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/race-socioeconomic-status-and-nutrition/", "id": "race--socioeconomic-status--and-nutrition", "display_name": "Race, socioeconomic status, and nutrition", "title": "Race, socioeconomic status, and nutrition", "all_assessment_items": ["{\"sha\": \"af666656a8608b7a90727e5485aba4b909451589\", \"live\": true, \"id\": \"xcfd3eb2bb852cc19\"}", "{\"sha\": \"6fcbd68bee77ca020d2ba9a5d7bb99e257b20d55\", \"live\": true, \"id\": \"xe7440e83d15a6a6f\"}", "{\"sha\": \"e0ac66020ee5b7de0ba1dfcf268a55c73caac957\", \"live\": true, \"id\": \"x58311b395fbdaf05\"}", "{\"sha\": \"b0ddb4629606a09f32cd0e139394cf2a467ec1c0\", \"live\": true, \"id\": \"x0c6f0ecfbf37667d\"}", "{\"sha\": \"1d65e184a7918aad5a1b81a3f5a46707dbfb8539\", \"live\": true, \"id\": \"xca751f16d8cd7654\"}"], "description": "", "basepoints": 10.0, "slug": "race-socioeconomic-status-and-nutrition", "kind": "Exercise", "name": "race--socioeconomic-status--and-nutrition", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "race--socioeconomic-status--and-nutrition"}, "clinical-vignette-of-an-adult-psychiatric-patient-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/clinical-vignette-of-an-adult-psychiatric-patient-/", "id": "clinical-vignette-of-an-adult-psychiatric-patient-", "display_name": "Clinical vignette of an adult psychiatric patient", "title": "Clinical vignette of an adult psychiatric patient", "all_assessment_items": ["{\"sha\": \"45bd07e41773f774d4f191dcffdc4cd996d21b08\", \"live\": true, \"id\": \"x30abb5d3c8250b35\"}", "{\"sha\": \"fe20cb6174c21e00b8e257ac315effb306c5be90\", \"live\": true, \"id\": \"x79ba36f9ca238547\"}", "{\"sha\": \"6c71abb8bdf01e5b801cf0363f61eb4a0fdb8891\", \"live\": true, \"id\": \"x7720cc8aabe44110\"}", "{\"sha\": \"93c9d393a329cc5ef555b7d9f9b0fdc8106abfae\", \"live\": true, \"id\": \"x38afb814b4150083\"}", "{\"sha\": \"319e1e570e709db6dfff843d4999f7b26c3a6108\", \"live\": true, \"id\": \"xd94b8dc9b67e5952\"}"], "description": "Questions related to psychological disorders", "basepoints": 10.0, "slug": "clinical-vignette-of-an-adult-psychiatric-patient-", "kind": "Exercise", "name": "clinical-vignette-of-an-adult-psychiatric-patient-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "clinical-vignette-of-an-adult-psychiatric-patient-"}, "quiz-film-meets-art": {"uses_assessment_items": true, "id": "quiz-film-meets-art", "display_name": "Quiz: Film meets art", "title": "Quiz: Film meets art", "all_assessment_items": ["{\"sha\": \"2d41b6aa3c8243a3a4c8f32de32c48398064f02f\", \"live\": true, \"id\": \"x09badbbaea1b786a\"}", "{\"sha\": \"39b5f72642c0ca5fdff1cc5dd6a97a99d20ea4d6\", \"live\": true, \"id\": \"xb444b946628c6e99\"}"], "description": "Test your knowledge of terms and materials in the \"Film meets art\" tutorial.", "basepoints": 10.0, "path": "quiz-film-meets-art/", "slug": "quiz-film-meets-art", "kind": "Exercise", "name": "quiz-film-meets-art", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-film-meets-art"}, "derivatives-of-inverse-functions": {"uses_assessment_items": true, "path": "khan/math/differential-calculus/taking-derivatives/derivatives-inverse-functions/derivatives-of-inverse-functions/", "id": "derivatives-of-inverse-functions", "display_name": "Derivatives of inverse functions", "title": "Derivatives of inverse functions", "all_assessment_items": ["{\"sha\": \"029062ed732222e949f15fa533dc49c8a55bd6af\", \"live\": true, \"id\": \"x7ba497eaefa88012\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"268a80c3934d0f341a30510d9d0ef7bfa24386ab\", \"live\": true, \"id\": \"x70ad738a6ef22cd9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"631b2b06c36758bde9b9e22b40910dba77ce718f\", \"live\": true, \"id\": \"xfccc7fd6ba897c39\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7abd801f37cc99a356d91d4e8b0ee3b8e9dd2329\", \"live\": true, \"id\": \"xc841288d218d86ac\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ff349f9f64bd85f66e8be5ac471a888e9f597108\", \"live\": true, \"id\": \"xea7f059b6d953540\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b4a85e6fafdb9c1d4ecdaf1f164809d1fecee2db\", \"live\": true, \"id\": \"x5dc1df5dc8d3bb3d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8282117c74b3e379100f58059aed723cf929fbbe\", \"live\": true, \"id\": \"x424a7a8933fcdaf1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7cf9e58d1f50bf7189cc67e3215ec891d2e44cf8\", \"live\": true, \"id\": \"x0a0db5b6893f67af\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"83f7b0cc2d00e2157b17d27d1698a125005652f8\", \"live\": true, \"id\": \"xeea7f3bb223fc8cc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3e3060b698b71a02848e0ad1a73c9b4740877cfe\", \"live\": true, \"id\": \"x018c92e7260ca86b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"558829921c3114cc1781df88f0c95eb8632ad976\", \"live\": true, \"id\": \"xdc1efe6adb812f33\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"224a6f6585b8f3a4a22c1ec3dcb01de3ec0826c5\", \"live\": true, \"id\": \"x51fbd0ef7a9af89b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4592760c2571c7422d6be0f2d2517940e62f4cbd\", \"live\": true, \"id\": \"xe927832acf026af1\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f87afc7b6d270558c3ca7148fb915a58dacd3206\", \"live\": true, \"id\": \"x7f7281ac5900aa27\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0e4189208ba131d1e7c7fc062a27fcb85a6fc1d1\", \"live\": true, \"id\": \"x97231bb76cb87af7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1b6d6540d226ddfbfd22c3bdca0de05c97ba8fe6\", \"live\": true, \"id\": \"x35fa757d8d1f4ef3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c313d5801acef197c874a4586959b28548d85c07\", \"live\": true, \"id\": \"xb81f98c3281f1a07\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dd904fc15d5c49e70458bee78c2f8d2d95968ca8\", \"live\": true, \"id\": \"xf74a563e8ed9b3f7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"64ef1586a1097bcb804c2b09280e4125628d949f\", \"live\": true, \"id\": \"x15af0c23708efa02\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2c2fbad21d6c9971b0af82c1a978a8d4876a2afd\", \"live\": true, \"id\": \"x5b77b0f54a732800\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2f1eb14c0adefd19896485c0083ae3925d3445f\", \"live\": true, \"id\": \"xd26a3c2b86b40869\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"698dac05a30ca685951f7496a4409917b6b22ae5\", \"live\": true, \"id\": \"xf6ba9e23cf6af580\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0ba765ea49140642e101905d752a57bafbfada11\", \"live\": true, \"id\": \"x83d8a1a6e35bd291\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"56c36a4dbdaa3dd6157dbbeb25ddc78d9d8340f0\", \"live\": true, \"id\": \"xa6ab5a3b9f0d1a93\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4de6f83bcb392b5287412e40c99cb81a7ee76a34\", \"live\": true, \"id\": \"x6afee531f8ef8199\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5a5752809523609b72e7834ec9cd29aae9f79b78\", \"live\": true, \"id\": \"xafbc597a6676ab53\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"543362073c6be995bc92cce4ec0d01a38f7547e8\", \"live\": true, \"id\": \"xb8082d6dd2daeca7\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9feb6cdf764dc97862824e6c9f2a55338c9dc502\", \"live\": true, \"id\": \"x98ed783d29e79fa3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16a436b56a67f6e58648331d1e770ea990df397a\", \"live\": true, \"id\": \"x719e2f7b55f09610\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e88af837ec5d9256e96838ef82ef77f9e9dcf329\", \"live\": true, \"id\": \"xf7e64498a41e5c02\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Derivatives of inverse functions including inverse trig", "basepoints": 10.0, "slug": "derivatives-of-inverse-functions", "kind": "Exercise", "name": "derivatives-of-inverse-functions", "seconds_per_fast_problem": 4.0, "prerequisites": ["implicit-differentiation"], "exercise_id": "derivatives-of-inverse-functions"}, "separable-differential-equations": {"uses_assessment_items": true, "path": "khan/math/differential-equations/first-order-differential-equations/separable-equations/separable-differential-equations/", "id": "separable-differential-equations", "display_name": "Separable differential equations", "title": "Separable differential equations", "all_assessment_items": ["{\"sha\": \"9d5424786bb98f96e4de70bf33ce43610938b707\", \"live\": true, \"id\": \"x15204ba5cf3fc295\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c5ee93da4bddc1159ed5732dba70e77e2d460e9c\", \"live\": true, \"id\": \"x2b7d2d863cee23e5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f03c2e38438742ae54df80be87e92376269d65c5\", \"live\": true, \"id\": \"x1e3ae95e0ccf0d45\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b98da293ccbc236a4a96f3d865d39fa2e87d3962\", \"live\": true, \"id\": \"x95f958e7af958cbc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d7719ed081148d040169a3153b0d97b52e566182\", \"live\": true, \"id\": \"xb06b06a898f9aa86\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1e214c003396c040a08cf38a140129240664cc13\", \"live\": true, \"id\": \"x8fe3852079069a3c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f8ca42076ed9d33c3124f167e18bb212db3bb720\", \"live\": true, \"id\": \"x1bfbf158dbc291da\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"de828a53d81b4e2ab2cf87ff75cb4e38e5beae4c\", \"live\": true, \"id\": \"xe3573aaf0365fc97\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4d43c73e5ea43667e4b0976d943aa3dd02688b18\", \"live\": true, \"id\": \"x90487ae6788dc13d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a1ce5e98a81371bfc8b2896f6a3f190fb2bc768c\", \"live\": true, \"id\": \"xbde4fa004ff3aaae\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"753453134ec63623aff453f3ce2d783062576e7f\", \"live\": true, \"id\": \"x3e8558e68f95f102\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9c5fad846498e4faf7ad96f5e010b3956b47de0e\", \"live\": true, \"id\": \"x6223dcd86abc5542\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"15b65485247fd4eaf6a401eab4caa96d3219bd03\", \"live\": true, \"id\": \"x665834cd27f783f2\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cc72f88757ad346d3d4788405261567c1ad3308b\", \"live\": true, \"id\": \"xe883cf320dfcc769\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f26970f92f4599f69dd172158628a03a1f504774\", \"live\": true, \"id\": \"xd4f3917532413823\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9d0f4516b946e7ed21c8de5be502f807d2aaac81\", \"live\": true, \"id\": \"xe23943da9a1244f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4704249a7dfc99024161371e72ffcd110e300ac3\", \"live\": true, \"id\": \"x6e4f01bc533fce60\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6c4c67754d14a31faafbfdb95e2df5bbcfd82c86\", \"live\": true, \"id\": \"xe7a9d912b21c9779\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2991f6db7fd70a391da1053d127046e1b28e7aa5\", \"live\": true, \"id\": \"x00eed9a4c8ec2924\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ce78310adfa99728edced74918afd3b515901d28\", \"live\": true, \"id\": \"x54b528e262890157\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f160da942002dc363d0ed6e21d96ce250d6978f9\", \"live\": true, \"id\": \"x56cbb565ce88541c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9cb90b1135ef46595fd087f75a2b156d74e5d163\", \"live\": true, \"id\": \"x625551cc4aadc0df\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"aa83d57e3c780300f2b71ecdf0465021353ad58b\", \"live\": true, \"id\": \"x742e1767f31fcc60\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"94168e69d9fcdbd8c45432c6a83541ad218143a2\", \"live\": true, \"id\": \"xd4531be594d1b7bf\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"11155e3961df049705d9d61f4640f33e3f1e7c77\", \"live\": true, \"id\": \"x1855f870f123bede\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9130b11fd2caf2399f5369b4c38aa16f1d51b16\", \"live\": true, \"id\": \"x63f017535343d4a4\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8e473b54cee7e08563b0ed07c434063ead2dd4a0\", \"live\": true, \"id\": \"x4f9ceb4404d1ab9b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6e77fce4b91e819e2df9e979b9aaf2f5b42b2ba7\", \"live\": true, \"id\": \"x2eabda217fed31cb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c3c4ff2936af9ccf4b96ee193476925b3970622d\", \"live\": true, \"id\": \"x3dc2e9e774d8806f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"277ad35da86ff074d35670a365f13f04bfa779dd\", \"live\": true, \"id\": \"xc6abb578ff329a7a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "separable-differential-equations", "kind": "Exercise", "name": "separable-differential-equations", "seconds_per_fast_problem": 4.0, "prerequisites": ["slope-fields"], "exercise_id": "separable-differential-equations"}, "recognizing-angles": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-geometry-spatial-sense/on-angles-polygons/recognizing-angles/", "id": "recognizing-angles", "display_name": "Recognizing angles", "title": "Recognizing angles", "all_assessment_items": ["{\"sha\": \"b7876a0fd9b92c33ee3313a3f260dd216050798e\", \"live\": true, \"id\": \"x99505a8c2add13dc\"}", "{\"sha\": \"1754855045ed78f99e8b72ec61f417b98a1d8361\", \"live\": true, \"id\": \"x0e83e15c95e4c7ae\"}", "{\"sha\": \"d57c0641509fbf1967782ffd4ad99740b483e980\", \"live\": true, \"id\": \"x9ae3a1077f3753ad\"}", "{\"sha\": \"2804737ff692a6410107336139a9f44345298ec1\", \"live\": true, \"id\": \"x223d0e7d2a5b2a47\"}", "{\"sha\": \"f82ed931ed909d61319c92aeaf760ff09dcbbfcd\", \"live\": true, \"id\": \"x2f44a79536af73dc\"}", "{\"sha\": \"bb8d22afc049bca0c51ec773f99cea8094ddc65b\", \"live\": true, \"id\": \"xd6415dd7997d1e07\"}", "{\"sha\": \"f42b9030916a9b514176a09f2302db686b781b57\", \"live\": true, \"id\": \"xf4a8923c4ac0ee9d\"}", "{\"sha\": \"dca9048cd3192b9f9302a5df807ecdea350cd4d4\", \"live\": true, \"id\": \"x481b68bd34c5732c\"}", "{\"sha\": \"a1e890e9a7ceda2476eadb32e767619153d0eae3\", \"live\": true, \"id\": \"x2fc65db8b87cf133\"}", "{\"sha\": \"143155ea853a225da3c76cab36f7b0501e8c66d9\", \"live\": true, \"id\": \"x1a682a7d8e4aa6c6\"}", "{\"sha\": \"b1dd9476953fee5cd666321cc8798eadfdead8e2\", \"live\": true, \"id\": \"x95914cb5f768b757\"}", "{\"sha\": \"c7446661856ebacdc68555b6d52b7a1834159f5e\", \"live\": true, \"id\": \"x2647d5f36788830e\"}", "{\"sha\": \"0865157af76170ce48e63a41ddfa583d4b75a69f\", \"live\": true, \"id\": \"x92b0b36303538aef\"}", "{\"sha\": \"be9431efc41160c8403264ed403572f9f94bdb79\", \"live\": true, \"id\": \"x6a6688845acefde6\"}", "{\"sha\": \"9e2c27c94859711c4be2aeb7fcadea8bb42c0049\", \"live\": true, \"id\": \"xa7b0ab43939d6f58\"}", "{\"sha\": \"903f8aade8b1baee2ad92b795c2891a59f431874\", \"live\": true, \"id\": \"x0ce5298358546806\"}", "{\"sha\": \"33802b1b5392b518c7fc5e580f382efe08ffa76c\", \"live\": true, \"id\": \"x4a0725398c9e4e7d\"}", "{\"sha\": \"fc3550bf95fb9fc5bb98d5f209253695162be616\", \"live\": true, \"id\": \"x0e6eb24dbc52f16b\"}", "{\"sha\": \"db043282071cfd3716cf2ae02fe8f43604627528\", \"live\": true, \"id\": \"xb32ccc5b3328a1db\"}", "{\"sha\": \"69b496a21ee5aacdf098c934f37554bc4a82878c\", \"live\": true, \"id\": \"x67d0b97324405a0c\"}", "{\"sha\": \"4d57e629c7061e119a9e09c400bc2a4528e18368\", \"live\": true, \"id\": \"x313f4cb3100d2d0d\"}", "{\"sha\": \"c029cf671229922cf50ea89afd1b548fa7f67c41\", \"live\": true, \"id\": \"x295d5935bd857c9a\"}"], "description": "Determine if angles in shapes and pictures are acute, right, or obtuse.", "basepoints": 10.0, "slug": "recognizing-angles", "kind": "Exercise", "name": "recognizing-angles", "seconds_per_fast_problem": 4.0, "prerequisites": ["naming-angles"], "exercise_id": "recognizing-angles"}, "caesar_cipher_decryption": {"uses_assessment_items": false, "path": "khan/computing/computer-science/cryptography/ciphers/caesar_cipher_decryption/", "id": "caesar_cipher_decryption", "display_name": "Caesar cipher decryption", "title": "Caesar cipher decryption", "description": "", "basepoints": 15.0, "slug": "caesar_cipher_decryption", "kind": "Exercise", "name": "caesar_cipher_decryption", "seconds_per_fast_problem": 8.0, "prerequisites": [], "exercise_id": "caesar_cipher_decryption"}, "advanced-muscular-quiz": {"uses_assessment_items": true, "path": "khan/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-muscles/advanced-muscular-quiz/", "id": "advanced-muscular-quiz", "display_name": "Advanced musculatory system quiz", "title": "Advanced musculatory system quiz", "all_assessment_items": ["{\"sha\": \"030d9a4e1fe60df1364b5e23d3a2f16f41e58cad\", \"live\": true, \"id\": \"xfbe29076a5fa5ed3\"}", "{\"sha\": \"a4d7fe731c5856613c40f0441e6b294c8b97e757\", \"live\": true, \"id\": \"x9cf7617897eac0e4\"}", "{\"sha\": \"da0bec8ecd476f807297f863144db39a6a2c2efa\", \"live\": true, \"id\": \"xeeeddede019509a1\"}", "{\"sha\": \"aaa7ec8703d3c998cb8bf3258dedf5dc80923ff4\", \"live\": true, \"id\": \"x0d57bd940f9a9175\"}", "{\"sha\": \"19d875fc9b136e1f4d10bf8929b8864631dbad3a\", \"live\": true, \"id\": \"x92e6d908f7ec3c9d\"}", "{\"sha\": \"bcd8aa780f6170afd12b4a174fc24375dfa74d2b\", \"live\": true, \"id\": \"x2463d4490b7f3e63\"}", "{\"sha\": \"ad59bc49f92ebf0468937ffe37744080ab9d0814\", \"live\": true, \"id\": \"x40509b5b147725d1\"}", "{\"sha\": \"38422addcea579ce9966e9ca9a52dbf31ae6f168\", \"live\": true, \"id\": \"x5d52de56bacf0b5d\"}", "{\"sha\": \"428579a6187b685ab9136db34d0554668d0b4c64\", \"live\": true, \"id\": \"xf6b945b1c5280f7f\"}", "{\"sha\": \"ea5be047c299c9c1da7527531ca0e8830f9edda4\", \"live\": true, \"id\": \"xf88aea93e9c58868\"}", "{\"sha\": \"acec0be2ceb466a262537fc9b087f25a3da54812\", \"live\": true, \"id\": \"xd2b9016a44c6aec2\"}", "{\"sha\": \"fb0934c5f89e33f44dedc7fe3ba3b35e86996439\", \"live\": true, \"id\": \"x4e039a0ce4f36206\"}", "{\"sha\": \"1367c52851891dc3e492ed71e936df6572ec4dce\", \"live\": true, \"id\": \"xa6bddd646605121f\"}", "{\"sha\": \"5a32a52aada4686d3f7dc6ae1b19605f440c3c2f\", \"live\": true, \"id\": \"xaf87d36d807f669a\"}", "{\"sha\": \"99f31b6be6b00b268ae9d9979bfe27193b79d58a\", \"live\": true, \"id\": \"x2dbba2c775149779\"}", "{\"sha\": \"88d3d8661fe3554e5c2549dad8d34153512c49b9\", \"live\": true, \"id\": \"xdd43ad6d4e9af697\"}", "{\"sha\": \"153cb96793487bf63535e9cc28360197ba01ab1f\", \"live\": true, \"id\": \"x2ce4d758304dac98\"}", "{\"sha\": \"8c20fe086c080f19cdd0c4a2a8a542e01f0f2497\", \"live\": true, \"id\": \"x647fb3c269c2399d\"}", "{\"sha\": \"5950cd1179e2677ab8bc9d3882293d6e44056056\", \"live\": true, \"id\": \"xf69bb9e6b7ce178e\"}", "{\"sha\": \"1cfb8b894858ce755840ac51c5996eaafa789d45\", \"live\": true, \"id\": \"x1f48c172c8298d3b\"}"], "description": "Advanced muscular quiz", "basepoints": 10.0, "slug": "advanced-muscular-quiz", "kind": "Exercise", "name": "advanced-muscular-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "advanced-muscular-quiz"}, "area-and-perimeter-of-rectangles-word-problems": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-area-perimeter/basic-geo-area-perimeter-polygon/area-and-perimeter-of-rectangles-word-problems/", "id": "area-and-perimeter-of-rectangles-word-problems", "display_name": "Area and perimeter of rectangles word problems", "title": "Area and perimeter of rectangles word problems", "all_assessment_items": ["{\"sha\": \"3725b4f2ae6fa82c5c6c0216edc5b71226963351\", \"live\": true, \"id\": \"x57ab4fcc439fec5e\"}", "{\"sha\": \"ee37b899fc2c04092daf055e2b48de45f78c6c5f\", \"live\": true, \"id\": \"x372478d8408cc25b\"}", "{\"sha\": \"6dca7dc5b7b5bd1fe29d8a4d8929a8d9203bab77\", \"live\": true, \"id\": \"xf1effd5903db5d7d\"}", "{\"sha\": \"7b1428a2775483dee751e8c87bd87e4105e532b2\", \"live\": true, \"id\": \"xfa6025031cc2ca48\"}", "{\"sha\": \"140e0007b784afd9cccb4a4c0ea0d40141648c26\", \"live\": true, \"id\": \"xf7a70b906008a135\"}", "{\"sha\": \"a75b8367e66316326b847a0aae57d591de08038b\", \"live\": true, \"id\": \"x53e236f44b83d9ed\"}", "{\"sha\": \"696230f7f63e1b6149772d0706f4c0a5f7151b2b\", \"live\": true, \"id\": \"x38943168be62ada7\"}", "{\"sha\": \"218da537bf0c14e2374302fd988fe10b06e2a6ac\", \"live\": true, \"id\": \"x4ceeb03a5293f1a2\"}", "{\"sha\": \"f2f21bc333bb6f5bf0db49034530f9e2726fe214\", \"live\": true, \"id\": \"x623e11ffea2a5866\"}", "{\"sha\": \"5788bc0b07f664d4d2eb7ed011e6856db2f30a7a\", \"live\": true, \"id\": \"x02f5e521487cc035\"}", "{\"sha\": \"5e46a51a2133bafc480e61cbd58b075bab4ef7be\", \"live\": true, \"id\": \"xf3d828e889560b2b\"}", "{\"sha\": \"af5307fc712bb50c386dcd27f8fcdb212d9f4cf1\", \"live\": true, \"id\": \"xfc564c55d591ade6\"}", "{\"sha\": \"be35f964a4bc582f217a752d98e510d8f31df6dd\", \"live\": true, \"id\": \"x5ef3c44523d4a558\"}", "{\"sha\": \"56c9c6074ef552dd4379c6c9c770e3e54dda3a50\", \"live\": true, \"id\": \"x9f9e19dae5a0d14b\"}", "{\"sha\": \"99f1726bf8f5b3d6c8ef6c88d7fecd30b822aa36\", \"live\": true, \"id\": \"x166d205861adbe56\"}", "{\"sha\": \"fa77ff5e31e2d52c7cab9897291eb58e25b30ec0\", \"live\": true, \"id\": \"xb97b6b09efaaef7a\"}", "{\"sha\": \"b16e2939e72a2301fcee9ff7e5e9bc8f72c45dbc\", \"live\": true, \"id\": \"x0bbc8493af4a2c91\"}", "{\"sha\": \"fe5ea996051f8140de72aabd75286696f0aa7caa\", \"live\": true, \"id\": \"x21a55e1f833df845\"}", "{\"sha\": \"0c2a5cec6d9a6bf167ba2968dc7a524d3478f1d0\", \"live\": true, \"id\": \"x97030ef53cdb3e6e\"}", "{\"sha\": \"4245898e99d682f2d18d783273007d86233d50ae\", \"live\": true, \"id\": \"x714e4a7b5fac06d0\"}", "{\"sha\": \"c49fd99355c98ae3b55da9d6eebef0a2aa5fdb1d\", \"live\": true, \"id\": \"x327942ef58880bd1\"}", "{\"sha\": \"27e43cf3acc3e32ab1bccf86cdd5af944ad6b658\", \"live\": true, \"id\": \"x7ee83eb3ef9f8153\"}", "{\"sha\": \"2f47f9e6d6cb5953e85ea436e38a6e21958c4190\", \"live\": true, \"id\": \"x4c493f778e2ba313\"}", "{\"sha\": \"9ab3bf5eed89212825c74eae8a94a56135403bc0\", \"live\": true, \"id\": \"x20edc83173d3e200\"}", "{\"sha\": \"26be7a6bde119020ce0658eebc604805b84cd2bf\", \"live\": true, \"id\": \"x12dbe71d65113a9f\"}", "{\"sha\": \"fecc166a3b9bd7503eb7399e19fbf3462bf78bd2\", \"live\": true, \"id\": \"xe246bad2fead3f78\"}", "{\"sha\": \"92f3216eb735e8830cdeb7874b174b6c5670e6b8\", \"live\": true, \"id\": \"xfbf2fd58673cb4fb\"}", "{\"sha\": \"5a8a417e13edfa23537e7f25223951309dbb4459\", \"live\": true, \"id\": \"xa9ca8e18e639f935\"}", "{\"sha\": \"b3c96587a752da32524e6f3b392efba3a1d29e57\", \"live\": true, \"id\": \"x962be9fc59f53796\"}", "{\"sha\": \"bc29c50702246437b5dc50257a204243740cb9d3\", \"live\": true, \"id\": \"xf182fae3c1352fae\"}"], "description": "Find the missing side length of a rectangle when given its perimeter or area. \u00a0Compare perimeters and areas of rectangles.", "basepoints": 10.0, "slug": "area-and-perimeter-of-rectangles-word-problems", "kind": "Exercise", "name": "area-and-perimeter-of-rectangles-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["perimeter_of_squares_and_rectangles", "area_of_squares_and_rectangles"], "exercise_id": "area-and-perimeter-of-rectangles-word-problems"}, "equiv-expressions-w-neg-and-dist": {"uses_assessment_items": true, "id": "equiv-expressions-w-neg-and-dist", "display_name": "Equivalent expressions with negative numbers and the distributive property", "title": "Equivalent expressions with negative numbers and the distributive property", "all_assessment_items": ["{\"sha\": \"c4460566a3098cf95583c4fde48af223d4992757\", \"live\": true, \"id\": \"x4939f0aab126ac67\"}", "{\"sha\": \"619164a2d4119fc009f5e2401cec6dc4c36789af\", \"live\": true, \"id\": \"x1fe044e4ebe2e971\"}", "{\"sha\": \"52e8c91f39e393845a5c7d21189a5dd341109607\", \"live\": true, \"id\": \"x5daf4cc77f325615\"}", "{\"sha\": \"08779d5b8d91c2dd3ca6ac7ce8fd317e177ebcf1\", \"live\": true, \"id\": \"x42a29b5893a48059\"}", "{\"sha\": \"4b1228961f36827be39210635044a1a23258bc50\", \"live\": true, \"id\": \"x4cddf590f47e6085\"}", "{\"sha\": \"787505ba2c3e3707f90afe4921176ea094aebef9\", \"live\": true, \"id\": \"x124462b6941cc2ec\"}", "{\"sha\": \"10b8c7b77762f461b6cf15dbaa996b6b13f92db8\", \"live\": true, \"id\": \"x3ee734588f24f58e\"}", "{\"sha\": \"7c1b2188419b92fdfc5537fa26bafaf43cabd180\", \"live\": true, \"id\": \"x58eeaa026a3fc90d\"}", "{\"sha\": \"2ecc08b925f82a8a4a25c14d58863a15a765ad58\", \"live\": true, \"id\": \"xdfc4599701468eaf\"}", "{\"sha\": \"20442a1d1250ac745983ba55dec82228cd3b4e69\", \"live\": true, \"id\": \"x0e33979c900bb7e9\"}", "{\"sha\": \"31810b6d45e29ba5d6f150965f248f6e43fcfd84\", \"live\": true, \"id\": \"xf8d9331c94398e73\"}", "{\"sha\": \"71442d25d25f6e6fb7f80bb1af904a75951326fa\", \"live\": true, \"id\": \"x5b76d2665e507d51\"}", "{\"sha\": \"48eb41eb8c66deca1f4fd36ca4f967f059a43f78\", \"live\": true, \"id\": \"x9d9130383fd894b9\"}", "{\"sha\": \"dfa241992dcbc631ac56ddcccf0e800a53780be7\", \"live\": true, \"id\": \"xc8298c7636921a60\"}", "{\"sha\": \"15414d7f14c612ce663f15c3e4ef785ef007f939\", \"live\": true, \"id\": \"x02ed9b2b29b972a5\"}", "{\"sha\": \"d49e70a731e44abc9566c0ec7af8b054333b50d5\", \"live\": true, \"id\": \"x1b9c8ce1699418a4\"}", "{\"sha\": \"f4ebb914475e4b51cf74c7aed0314b12a7cbac98\", \"live\": true, \"id\": \"x1e7cb95afb39ceef\"}", "{\"sha\": \"e534a191d8d73a0faebe77f457de79277c2802cd\", \"live\": true, \"id\": \"x67bfd3a2658cca29\"}", "{\"sha\": \"8b78a8124390e5e3b4c7a8baa2d2f91bcc7825c3\", \"live\": true, \"id\": \"x591188e467b065b6\"}", "{\"sha\": \"1b293c121e02943d7e677f30ce56fa652b5835f3\", \"live\": true, \"id\": \"x1b6260309c55ff11\"}", "{\"sha\": \"d531a322f7726f634ffee7da428c5c0273f73e04\", \"live\": true, \"id\": \"xa04b11fc73dce720\"}", "{\"sha\": \"4b4516e75be802654261994afa557ac97c091d46\", \"live\": true, \"id\": \"xe2ab3b6bce36ce45\"}", "{\"sha\": \"2f164ad1e32a27140e2a0c63452f7e04998e2469\", \"live\": true, \"id\": \"xb7545debf09c286b\"}", "{\"sha\": \"b7305602e52fc508fe0a4ffe36098b691e94fc57\", \"live\": true, \"id\": \"x3e10b91bb9436083\"}", "{\"sha\": \"c3ffcbef84ef3a5b1b584a10607ff2a294459526\", \"live\": true, \"id\": \"x8b2722917795fd43\"}", "{\"sha\": \"e1c7e6dbbda13bc763f7cdc8ae621384f463c525\", \"live\": true, \"id\": \"xbac796e6b2ce9efc\"}", "{\"sha\": \"bcf63f1bef8e917fd99fa93945c3d1d5eab77b32\", \"live\": true, \"id\": \"x9800e6ddcd18dea7\"}", "{\"sha\": \"617bb7f1420ed64291cff0404c493febaa95f0d7\", \"live\": true, \"id\": \"x121b40e390de1213\"}", "{\"sha\": \"b127c337d473a18212dfdee6103b712592eb2795\", \"live\": true, \"id\": \"xc13dbfaf49039b6e\"}", "{\"sha\": \"d94a99f4379c2a992809ff216acdf29d5502f81a\", \"live\": true, \"id\": \"xe9f8babd06efad4b\"}", "{\"sha\": \"76b6aea6d986dce493a268d85058bd3ea717806a\", \"live\": true, \"id\": \"xf231a8d3683d1660\"}", "{\"sha\": \"42bc3a9e0accf3f786324305a3124fc914bf3c21\", \"live\": true, \"id\": \"x8580a7351fb4b6c8\"}", "{\"sha\": \"eb606bc0df27c59e0784392c31ef33e2131bb633\", \"live\": true, \"id\": \"x99ef53f42cd2b637\"}", "{\"sha\": \"afd9f9ce1ec4e24b32727db93e0045dfa3e3fc62\", \"live\": true, \"id\": \"x7d8af2ce40d66ed2\"}", "{\"sha\": \"dd8ac8c56c07a9eee743191fbbf10f8d9afb325d\", \"live\": true, \"id\": \"x9423ed1051c5db1c\"}", "{\"sha\": \"3a11942bff0c320937f050f78696d952cdc8fc15\", \"live\": true, \"id\": \"x0777ea174fb2fead\"}", "{\"sha\": \"dfc7b25053d1cffa0b40f304948688a1026ddf4f\", \"live\": true, \"id\": \"x63f72c47fe125ef3\"}", "{\"sha\": \"e7238a37f2754c3a535ca52145afcd34bb710652\", \"live\": true, \"id\": \"x8ccf85899fec8a75\"}", "{\"sha\": \"4d09ea8c81fae2b371ce61c6a96a456f7a39f06d\", \"live\": true, \"id\": \"x733f680fb3c110b6\"}", "{\"sha\": \"c89776f826b46061a14fec3fb188fab57c5dc465\", \"live\": true, \"id\": \"xf25836370e41d444\"}"], "description": "Practice figuring out which expressions are equivalent by applying your knowledge of negative numbers and the distributive property.", "basepoints": 10.0, "path": "equiv-expressions-w-neg-and-dist/", "slug": "equiv-expressions-w-neg-and-dist", "kind": "Exercise", "name": "equiv-expressions-w-neg-and-dist", "seconds_per_fast_problem": 4.0, "prerequisites": ["factoring_linear_binomials", "manipulating-linear-expressions-with-rational-coefficients"], "exercise_id": "equiv-expressions-w-neg-and-dist"}, "understanding-systems-of-equations-word-problems": {"uses_assessment_items": true, "path": "khan/math/algebra/systems-of-eq-and-ineq/systems_of_linear_equations_word_problems/understanding-systems-of-equations-word-problems/", "id": "understanding-systems-of-equations-word-problems", "display_name": "Systems of linear equations word problems", "title": "Systems of linear equations word problems", "all_assessment_items": ["{\"sha\": \"8a288aaf9e7cb431835229586acd20be8004b8e0\", \"live\": true, \"id\": \"xe9fb04b1f7944965\"}", "{\"sha\": \"35df4700fd6d69e2cfeb5fe84df5a7b2c63bc8ed\", \"live\": true, \"id\": \"x8a1072c58d6146e7\"}", "{\"sha\": \"23e0d02528ba22cc449aab508bd25008a265c6f7\", \"live\": true, \"id\": \"x091843d2d45adb0b\"}", "{\"sha\": \"58778b3e93be6cd43ab5b48564344b266f304c25\", \"live\": true, \"id\": \"xa7e0f03a86a488c6\"}", "{\"sha\": \"118621aea1c5e34599d4a63c4ed58b2e0f341fa7\", \"live\": true, \"id\": \"x7f958c4d28a08c69\"}", "{\"sha\": \"f17d42efc7a1ca8e9f3520aea496e1a01351ee93\", \"live\": true, \"id\": \"xa567b81abecf3575\"}", "{\"sha\": \"0c7a633c4058636a4e7d6a636517bc54f1a27db0\", \"live\": true, \"id\": \"x4735a8e94d0544c6\"}", "{\"sha\": \"ce43a10936575f90c164c5971b52c34c59983542\", \"live\": true, \"id\": \"x036304158bb4f54a\"}", "{\"sha\": \"1f3bbd24fa66c5ce1359cc31313a40accfc499aa\", \"live\": true, \"id\": \"x0c3f28e276f3486b\"}", "{\"sha\": \"fbe5034ced267b7a2d29625c437b3c52734e9bf5\", \"live\": true, \"id\": \"xcd8a177cff826f78\"}", "{\"sha\": \"e83be62a7c22af024a0f2c48c69646aae1ec77a2\", \"live\": true, \"id\": \"x03422f39196b7de0\"}", "{\"sha\": \"fc40b5b0e476c5f2d3db81e86ef6a9a40e2a3cc1\", \"live\": true, \"id\": \"x0a3e1295af3c93df\"}", "{\"sha\": \"b63983799498bf307d9e46d61f4a6859546a309a\", \"live\": true, \"id\": \"xc700661d89fdde77\"}", "{\"sha\": \"66e0cdef4364050a4b1e141b6ee353f95d1f8a44\", \"live\": true, \"id\": \"xfc1fab48a983e484\"}", "{\"sha\": \"da8a36be5dcfb1e92be8881afb135fe1c2d82bb0\", \"live\": true, \"id\": \"x5af08bead7d0b6e7\"}", "{\"sha\": \"de4c7442302b7287c2552625e6716a994a816cfa\", \"live\": true, \"id\": \"x90ec0ad7088fffa0\"}", "{\"sha\": \"a7d234e7d2d7e2500bdc31ef569e75c11921b636\", \"live\": true, \"id\": \"xbbb9f5690f0f025c\"}", "{\"sha\": \"9d0346491fb1950b67883149f0ff6c2b617044f2\", \"live\": true, \"id\": \"x8e720d79ae648337\"}", "{\"sha\": \"7a78f7ebdde8f2c20b976aaeb96bee149966ab9a\", \"live\": true, \"id\": \"xecf925c95d77475f\"}", "{\"sha\": \"05c5de9c5d18988d27cb84f518326ea343f5006b\", \"live\": true, \"id\": \"xa65a1dded6a561dc\"}", "{\"sha\": \"05635ef90015ecc119dacceb9beeb90c1d3580be\", \"live\": true, \"id\": \"x83568bf6ad0006ef\"}", "{\"sha\": \"417a289e73c44e7a2c685709b0e5094c3c04bb27\", \"live\": true, \"id\": \"xc9be21dfd7a01437\"}", "{\"sha\": \"2a546b6490823744d40a9b960ceb302185b2654b\", \"live\": true, \"id\": \"xe1e84d1e5b8e09e1\"}", "{\"sha\": \"c6f25ad5b0bfa3da480dd78c2eafb0acab4f9a9d\", \"live\": true, \"id\": \"x4f7699dc507f31a1\"}", "{\"sha\": \"332bad05beb5cb8b89541bfe561a0d425f28a14d\", \"live\": true, \"id\": \"xc910d81afd0604ca\"}", "{\"sha\": \"468b48d9e3ab427243bc21f04bcc08f1df3630c6\", \"live\": true, \"id\": \"x6a1686ebb9738473\"}", "{\"sha\": \"cafc9a34d20f5463d2ec00802c92a1c17eda1c4e\", \"live\": true, \"id\": \"x4619e78d98612572\"}", "{\"sha\": \"3473fd4ce7217cc26eca219ec56c93cfd86fa31e\", \"live\": true, \"id\": \"xd84204b75c7c0a25\"}", "{\"sha\": \"0e5d3620d1be1dcf70f24c6bd26c0b367a52ff61\", \"live\": true, \"id\": \"xb872da0f28a412e5\"}", "{\"sha\": \"37ccbf9886d19ef6b5e4386f5733cddce1c0c567\", \"live\": true, \"id\": \"xfbf013776deab9ce\"}"], "description": "", "basepoints": 18.0, "slug": "understanding-systems-of-equations-word-problems", "kind": "Exercise", "name": "understanding-systems-of-equations-word-problems", "seconds_per_fast_problem": 12.0, "prerequisites": ["systems_of_equations", "constructing-and-interpreting-linear-functions"], "exercise_id": "understanding-systems-of-equations-word-problems"}, "maiolica-quiz": {"uses_assessment_items": true, "id": "maiolica-quiz", "display_name": "Maiolica quiz", "title": "Maiolica quiz", "all_assessment_items": ["{\"sha\": \"6720cca4d0788ce5fa703a875d3a9d6c82e891f4\", \"live\": true, \"id\": \"x93debcea77222826\"}", "{\"sha\": \"fd5cc1719fea047635fda8fedb4923b3328c66b1\", \"live\": true, \"id\": \"x21f1a8f73c4c9270\"}", "{\"sha\": \"27518ac2ba6d58b9b5e585343712977c360477dc\", \"live\": true, \"id\": \"xd4a733743ecafc13\"}", "{\"sha\": \"6dc727b949e282a740e64dc2b41eaf4a93ef1aa0\", \"live\": true, \"id\": \"x69f5a1fe5936bf40\"}", "{\"sha\": \"e131d595ecc5a8967dc3565723d9fb0042be0485\", \"live\": true, \"id\": \"x999e0002bb3788ff\"}", "{\"sha\": \"ff670a268bcad7bce30dc5640112a71a8ccc785e\", \"live\": true, \"id\": \"x26d0f5ad7ae4cf8b\"}", "{\"sha\": \"a232e2ddddb71f2bbb90701e2ae740b30e97dfb0\", \"live\": true, \"id\": \"x888f66b5a83a3356\"}", "{\"sha\": \"63300eb02b88aa915aefb5fdff4de241968aea4f\", \"live\": true, \"id\": \"xf3c5e60550df7f7c\"}", "{\"sha\": \"e1e131e56e42c14d9d45d5e2ff27151b42830877\", \"live\": true, \"id\": \"x1c4e28066a1e8402\"}", "{\"sha\": \"b9227d25060e99e15ce730f3bfeb1dc47d58d561\", \"live\": true, \"id\": \"x69b4636986564128\"}"], "description": "Test your knowledge of the history, function, and production of maiolica.", "basepoints": 12.0, "path": "maiolica-quiz/", "slug": "maiolica-quiz", "kind": "Exercise", "name": "maiolica-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "maiolica-quiz"}, "changes-in-empathy-throughout-medical-school-and-residency": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/changes-in-empathy-throughout-medical-school-and-residency/", "id": "changes-in-empathy-throughout-medical-school-and-residency", "display_name": "Changes in empathy throughout medical school and residency", "title": "Changes in empathy throughout medical school and residency", "all_assessment_items": ["{\"sha\": \"1730d3e7d09c70cbe1f1e9c7b1daf8d8103001d2\", \"live\": true, \"id\": \"xcbffaf0a27d74b16\", \"perseus_api_major_version\": 3}", "{\"sha\": \"4d72def56fe392d9ba5a84a962b6acf5d8afbb5a\", \"live\": true, \"id\": \"x6577beacc04162d7\", \"perseus_api_major_version\": 3}", "{\"sha\": \"f991adbb99ee57df06a0fb675186d0e514d6ad12\", \"live\": true, \"id\": \"x8b880a73ae175b31\", \"perseus_api_major_version\": 3}", "{\"sha\": \"697d2eaa886f6271c2770536e3dbbcaebd77dd6b\", \"live\": true, \"id\": \"xf3ae932a49294e81\", \"perseus_api_major_version\": 3}", "{\"sha\": \"689e0e1c721a6645dc825fee36e5990ddc73ebc5\", \"live\": true, \"id\": \"x83c9026dba2e4f0a\", \"perseus_api_major_version\": 3}"], "description": "Questions related to personality.", "basepoints": 10.0, "slug": "changes-in-empathy-throughout-medical-school-and-residency", "kind": "Exercise", "name": "changes-in-empathy-throughout-medical-school-and-residency", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "changes-in-empathy-throughout-medical-school-and-residency"}, "complex_plane_operations": {"uses_assessment_items": false, "path": "khan/math/precalculus/imaginary_complex_precalc/complex_num_precalc/complex_plane_operations/", "id": "complex_plane_operations", "display_name": "Complex plane operations", "title": "Complex plane operations", "description": "Add or subtract numbers in the complex plane.", "basepoints": 19.0, "slug": "complex_plane_operations", "kind": "Exercise", "name": "complex_plane_operations", "seconds_per_fast_problem": 15.0, "prerequisites": ["the_complex_plane", "adding_and_subtracting_complex_numbers"], "exercise_id": "complex_plane_operations"}, "impressionism": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/avant-garde-france/impressionism/impressionism/", "id": "impressionism", "display_name": "Impressionism", "title": "Impressionism", "all_assessment_items": ["{\"sha\": \"b76f17fffcf1c75dbe2e7d82a1210954bfebdd64\", \"live\": true, \"id\": \"x150ab26c\"}", "{\"sha\": \"68e80a1aecdddae978e8c5816e2bc5a2456a8201\", \"live\": true, \"id\": \"xc205cf8a45b25a72\"}", "{\"sha\": \"d76351af564e4c296f5d780cd48b888033acd317\", \"live\": true, \"id\": \"xde676536cdb44620\"}", "{\"sha\": \"0439a1d3a189364035aac5b4476303e00eeaa147\", \"live\": true, \"id\": \"x334451998786857a\"}", "{\"sha\": \"e2526acc6459e9582fc76d2ddd055bc5c9bfbb23\", \"live\": true, \"id\": \"xb0fe644a11360c2c\"}", "{\"sha\": \"33db1a154cf0a1fe0cd4dd868814c682e0e62948\", \"live\": true, \"id\": \"x7103bbe47a14a065\"}", "{\"sha\": \"7e6acbeffdac8fb758ca6a9b56ce4aae5b4c5b32\", \"live\": true, \"id\": \"xd4642b4abb9f5e93\"}", "{\"sha\": \"42afa70835e8a4e40649b88243ed2f3492f8f35f\", \"live\": true, \"id\": \"x2ff74414524e3448\"}", "{\"sha\": \"c6d44966304c00b77ed6f1ce1a4c433a7d64c808\", \"live\": true, \"id\": \"x93072bf42b871f50\"}", "{\"sha\": \"f43c38ca8fd0262328798ce684f8fbdfbd81748c\", \"live\": true, \"id\": \"x94b1007def1fd081\"}", "{\"sha\": \"83bbe49777161734de91deb6b8a750ae4fc3fe19\", \"live\": true, \"id\": \"x23ecdc6518610916\"}", "{\"sha\": \"c5daab085cbf7a677edf8fef615aa59e9b6dfd16\", \"live\": true, \"id\": \"xde1a2523\"}", "{\"sha\": \"cd0c843f8ef8670d2c2f17fe9fdeb4b14b9fc74a\", \"live\": true, \"id\": \"x82a74e2b0312b1bb\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "impressionism", "kind": "Exercise", "name": "impressionism", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "impressionism"}, "graphing_circles_2": {"uses_assessment_items": false, "path": "khan/math/algebra2/conics_precalc/circles-tutorial-precalc/graphing_circles_2/", "id": "graphing_circles_2", "display_name": "Graphing circles 2", "title": "Graphing circles 2", "description": "Graph circles from equations in general form", "basepoints": 24.0, "slug": "graphing_circles_2", "kind": "Exercise", "name": "graphing_circles_2", "seconds_per_fast_problem": 30.0, "prerequisites": ["graphing_circles"], "exercise_id": "graphing_circles_2"}, "law-code-of-hammurabi-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/ancient-mediterranean-ap/ancient-near-east-ap/law-code-of-hammurabi-quiz/", "id": "law-code-of-hammurabi-quiz", "display_name": "Law Code of Hammurabi (quiz)", "title": "Law Code of Hammurabi (quiz)", "all_assessment_items": ["{\"sha\": \"f1ac720f203d3b2b9461e941cf1b134d4c47ced6\", \"live\": true, \"id\": \"x3c354168a48aa3c5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c9361df5c535096044f53990c8b917de8705eb59\", \"live\": true, \"id\": \"x701029cf6ffae9da\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"361c582e73de2386520d05d576762101a72473f8\", \"live\": true, \"id\": \"x1c9911b53d8f47fe\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1723e692b5db05c036febca57db3ba6f8c219037\", \"live\": true, \"id\": \"x3007435a02aec38a\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2264822b26be763e9e42c5d6577b0b8455dd3398\", \"live\": true, \"id\": \"xb6537610fe10d2fb\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "law-code-of-hammurabi-quiz", "kind": "Exercise", "name": "law-code-of-hammurabi-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "law-code-of-hammurabi-quiz"}, "quiz--our-solar-system-and-earth": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/solar-system-and-earth/knowing-solar-system-earth/quiz-our-solar-system-and-earth/", "id": "quiz--our-solar-system-and-earth", "display_name": "Quiz: Our Solar System and Earth", "title": "Quiz: Our Solar System and Earth", "all_assessment_items": ["{\"sha\": \"d2ac391626c849bd2ad5cfb754bbcde868b1d9e3\", \"live\": true, \"id\": \"xe1e4f99e6b0f7eb4\"}", "{\"sha\": \"4839cd47261eebeeb267465fd54c9cf8f7d527bb\", \"live\": true, \"id\": \"x92eb12ee43dd5bf7\"}", "{\"sha\": \"6e363413972e2b4658caefc0ac5815bbff580010\", \"live\": true, \"id\": \"xadf1079146cca0e6\"}", "{\"sha\": \"e388ddab436e15b2ce719b916e35e49f8aa8123f\", \"live\": true, \"id\": \"xb09044d01c37d0ba\"}", "{\"sha\": \"add20f532b43eb0f75bf10a6a5c933b81f905969\", \"live\": true, \"id\": \"xb124cfcd29067802\"}"], "description": "Quiz 4.3", "basepoints": 10.0, "slug": "quiz-our-solar-system-and-earth", "kind": "Exercise", "name": "quiz--our-solar-system-and-earth", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--our-solar-system-and-earth"}, "minimalism-and-the-land": {"uses_assessment_items": true, "path": "khan/humanities/art-1010/minimalism-earthworks/minimalism-and-the-land/", "id": "minimalism-and-the-land", "display_name": "Minimalism and Earthworks (quiz)", "title": "Minimalism and Earthworks (quiz)", "all_assessment_items": ["{\"sha\": \"e7550c09e334ddca350494c757146b3ab9a0f7f0\", \"live\": true, \"id\": \"x2a56dd61050eb215\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ad00e9470f95b49eeb8ae37368442e146e13d32c\", \"live\": true, \"id\": \"xfe102b52374cae87\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d037d3dd1c3b9a49e52e1007fa9d5409455b086a\", \"live\": true, \"id\": \"xd856f94db62c3d30\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6d0577d40feeca6bdc5a9b6cf510daaa9adf58cb\", \"live\": true, \"id\": \"xed6a8bbf07e742cc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"87bcfc2e04536f2330b02de8ec06add8bf614c84\", \"live\": true, \"id\": \"x43b6a0464edb76b3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d8f51611416159d84c3501d977f1384772deb36c\", \"live\": true, \"id\": \"x4fc2a311478e69bb\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "minimalism-and-the-land", "kind": "Exercise", "name": "minimalism-and-the-land", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "minimalism-and-the-land"}, "opposites-on-the-number-line": {"uses_assessment_items": true, "id": "opposites-on-the-number-line", "display_name": "Number opposites 2", "title": "Number opposites 2", "all_assessment_items": ["{\"sha\": \"2c526a9314c9f64f4c1c34d0515d3f37c2fe3fd4\", \"live\": true, \"id\": \"x284843a4991a92f8\"}", "{\"sha\": \"091ec72449338a0d6b9709245a83e62c8045981c\", \"live\": true, \"id\": \"x5655bb2212f9c4f6\"}", "{\"sha\": \"64681d5518c8635c5db40550e3af133076568be8\", \"live\": true, \"id\": \"x8fe2ba5bd29365fa\"}", "{\"sha\": \"d788b19eb071ceb1b7375eadf14342ce7a0dc6c1\", \"live\": true, \"id\": \"x39a61af8ad05dbf0\"}", "{\"sha\": \"158cd117fe7b918ea69c642ae21a6b330eedd9d4\", \"live\": true, \"id\": \"x8027030438192ce3\"}", "{\"sha\": \"49d95c97a6bc270af4446e5b2cbb171ab56c1813\", \"live\": true, \"id\": \"x3311cc449a6c1678\"}", "{\"sha\": \"e3ae1ebb3cec4183e88bbcc00bccebf2959bdac5\", \"live\": true, \"id\": \"x6de182950550dd64\"}", "{\"sha\": \"39fa6803cf5769df9687d843510fca6bfd42135e\", \"live\": true, \"id\": \"x55e3211121f036f2\"}", "{\"sha\": \"71de42c12a14527316e4860a8e5d0f6b9d416629\", \"live\": true, \"id\": \"x8222fc20ba6fe3a5\"}", "{\"sha\": \"bb6c40f491c06992862ef51ed6efa030369f514f\", \"live\": true, \"id\": \"xa71246823a6ae25b\"}", "{\"sha\": \"b99d6d935cb6418e9cf0dfd9ee65e0d9eabeaff3\", \"live\": true, \"id\": \"xfa3d452dc7188e57\"}", "{\"sha\": \"814b4598e065dd003f6406d5957753aeb3eaf4ae\", \"live\": true, \"id\": \"xd480964337323eb4\"}", "{\"sha\": \"863af840fd50236629d2afab6699a25d8c314754\", \"live\": true, \"id\": \"x6074474181886ce3\"}", "{\"sha\": \"d06a134fef3d5d1e3f5ff7a6938b974ba1efa7f8\", \"live\": true, \"id\": \"xbf75d0eff8106412\"}", "{\"sha\": \"0b2eb9150e449429a388aed507496e9aa827508f\", \"live\": true, \"id\": \"xe96e652691e66c86\"}", "{\"sha\": \"ff70f336b77a5666a38a787c5c7f9e7af7536106\", \"live\": true, \"id\": \"x05143cbf5b059fc3\"}", "{\"sha\": \"f67f24b158fbdf6b3e47649d4bb1af4f95263dd5\", \"live\": true, \"id\": \"x7b37c4221d672ec1\"}", "{\"sha\": \"ba4bb1b5849fbf6c9cc46eb42e61dd037b79549a\", \"live\": true, \"id\": \"x46289502b38c626f\"}", "{\"sha\": \"8d33b25508fb716376798294fd5a79374b2b55a2\", \"live\": true, \"id\": \"x22228dc814d6595f\"}", "{\"sha\": \"6e8e30d08df449f15653b5116f8d8ff4282cda86\", \"live\": true, \"id\": \"x54d91d008086bdd4\"}"], "description": "Practice solving more challenging problems finding the opposites of numbers. Numbers are opposites when they're on opposite sides of the number line the same distance from zero.", "basepoints": 10.0, "path": "opposites-on-the-number-line/", "slug": "opposites-on-the-number-line", "kind": "Exercise", "name": "opposites-on-the-number-line", "seconds_per_fast_problem": 4.0, "prerequisites": ["number-opposites"], "exercise_id": "opposites-on-the-number-line"}, "integer_sums": {"uses_assessment_items": false, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/more-equation-practice/integer_sums/", "id": "integer_sums", "display_name": "Equation practice: summing integers", "title": "Equation practice: summing integers", "description": "Find the nth number in a sequence of consecutive numbers based on the sum.", "basepoints": 24.0, "slug": "integer_sums", "kind": "Exercise", "name": "integer_sums", "seconds_per_fast_problem": 29.0, "prerequisites": ["multistep_equations_with_distribution"], "exercise_id": "integer_sums"}, "ghent-altarpiece-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/northern-renaissance1/burgundy-netherlands/ghent-altarpiece-quiz/", "id": "ghent-altarpiece-quiz", "display_name": "Van Eyck, Ghent Altarpiece (quiz)", "title": "Van Eyck, Ghent Altarpiece (quiz)", "all_assessment_items": ["{\"sha\": \"a5c84e7b9bf6c9bfe7395ebe63cd4f0a2ba41b66\", \"live\": true, \"id\": \"x36342b2872a23997\"}", "{\"sha\": \"fc63b6f7b4682d9077952aa20d876772c9755c36\", \"live\": true, \"id\": \"x109ef6745f6772d1\"}", "{\"sha\": \"714ef80d6ddcefe3cf8793ce620a066b4e6a6ade\", \"live\": true, \"id\": \"x513c8352a1560b60\"}", "{\"sha\": \"3e8fccc046eab0bca0c4bbe65d7f7c117a1cc2dd\", \"live\": true, \"id\": \"x9aa1c3d388e2ef01\"}", "{\"sha\": \"4819a0b11429d9479a93d9239b787b6e33945542\", \"live\": true, \"id\": \"x9285266b9ddf2224\"}", "{\"sha\": \"518e43dc7e6115955867b582c154bf3b9204389c\", \"live\": true, \"id\": \"xe39da104991164fe\"}"], "description": "This quiz covers two videos: Jan van Eyck, The Ghent Altarpiece (open), 1432 and Jan can Eyck, The Ghent Altarpeice (open), 1432.", "basepoints": 10.0, "slug": "ghent-altarpiece-quiz", "kind": "Exercise", "name": "ghent-altarpiece-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ghent-altarpiece-quiz"}, "testing-solutions-of-equations-inequalities": {"uses_assessment_items": true, "id": "testing-solutions-of-equations-inequalities", "display_name": "Testing solutions of equations", "title": "Testing solutions of equations", "all_assessment_items": ["{\"sha\": \"1140d64470126543da7dbb7884a5f539278ad67e\", \"live\": true, \"id\": \"xd17bc426fe556dcf\"}", "{\"sha\": \"247670560556416556196d60bdfb03e341cb6734\", \"live\": true, \"id\": \"x9b4a0ae5451f77cf\"}", "{\"sha\": \"4b5632eb934f3e09168cffeb5b0f95750ff99ffe\", \"live\": true, \"id\": \"x5fd8aa821b19eb73\"}", "{\"sha\": \"e984270d533460d2d216d5d4912aeb8c83bfcc7d\", \"live\": true, \"id\": \"x5869c04c666aa736\"}", "{\"sha\": \"44e7c6f6a410be9dd32d2575e8f60c976fb943b1\", \"live\": true, \"id\": \"x693046b47ff10df4\"}", "{\"sha\": \"814c4b7e56398b61a71d491529b9ac4fa3d02a6d\", \"live\": true, \"id\": \"xfe0a5405a7a6e761\"}", "{\"sha\": \"8a319ba79378e01969f2fbe08e1cd87d871fbea8\", \"live\": true, \"id\": \"xabb73d4fc97739c2\"}", "{\"sha\": \"05b31a73999a6dfa00b15a0441adaa7df95f55a8\", \"live\": true, \"id\": \"xd561833b7a7cee79\"}", "{\"sha\": \"103ec45125dfa66e6b8721aa8fea53d4fd181a08\", \"live\": true, \"id\": \"x6ecfd00a00eccf2e\"}", "{\"sha\": \"b8c49e6659cf90f22005f5c1b2f5dd32d2b0540c\", \"live\": true, \"id\": \"x9696ecb1f7444aa7\"}", "{\"sha\": \"e31d375cd8341ff5fd7bcc4bc5fa190a9104e6cf\", \"live\": true, \"id\": \"x4272ec4c1edd4dc5\"}", "{\"sha\": \"fd67c5b1bba7af4a61a3086ff254d5bd93cecb98\", \"live\": true, \"id\": \"x636ad54a6c213a1c\"}", "{\"sha\": \"5ac518c6026a76381ec7496d519200ea18cea0c6\", \"live\": true, \"id\": \"x645908ad79b7f068\"}", "{\"sha\": \"740a3e8bc0f7c3092ff029ade835973a68306da4\", \"live\": true, \"id\": \"x27b00c638ddec018\"}", "{\"sha\": \"294df07c2ac611e60192d8ff52948dc50686f1f8\", \"live\": true, \"id\": \"xed6581559b41b41a\"}", "{\"sha\": \"434c4b3f3bdb70f05273534fdb196dd6148d4056\", \"live\": true, \"id\": \"xc5ca06779d346034\"}", "{\"sha\": \"bc2025b8d4d3598fd371e35a0e7cfc57244cbc0c\", \"live\": true, \"id\": \"x2c92edd091c2f4d9\"}", "{\"sha\": \"61554b6c386f8c8aa716ec7fd769a04338bf959e\", \"live\": true, \"id\": \"xfc28c931cf99e4c0\"}", "{\"sha\": \"567fc403483df336f05dd57d0c8e3edcf7385609\", \"live\": true, \"id\": \"xae6508a15eaa2b2c\"}", "{\"sha\": \"6db54474c1b5d682112d8eb16d1e60812f0f6597\", \"live\": true, \"id\": \"x40bd980ce4c41c52\"}", "{\"sha\": \"579dafd0fd4e75f4f3bbaf1c821e794f8a68abea\", \"live\": true, \"id\": \"x1368e9a1f7b0ee7d\"}", "{\"sha\": \"17e5d2dfa267e90ea9f5543b5428f662265e2d5c\", \"live\": true, \"id\": \"x42808e046818e32c\"}", "{\"sha\": \"e5775383d6dfc6bd82c48a3cbed7bed2d809063a\", \"live\": true, \"id\": \"xd7dc0354ab688b80\"}", "{\"sha\": \"e140dddb7966e4c62711ef2f94848b07ea7db358\", \"live\": true, \"id\": \"x34fed4e0d940ee63\"}", "{\"sha\": \"7645c8e415d7f70c5b575e94d5c924aa1a0337ca\", \"live\": true, \"id\": \"x46bf2f2ab4d272cd\"}", "{\"sha\": \"1fce673d7c03eddde8594f2332121f5c845216c9\", \"live\": true, \"id\": \"x2243b5d50257bf7d\"}", "{\"sha\": \"a9299f57d22da7302336f61304fb61914de47440\", \"live\": true, \"id\": \"xf3d72496a1858b61\"}", "{\"sha\": \"38f7335b652972a241e77a35a0f7f968b151e42e\", \"live\": true, \"id\": \"x8977a2014aa15e41\"}", "{\"sha\": \"1a4d1931cdfa54230942bd2ca52579007aad7591\", \"live\": true, \"id\": \"xf2379dea297dd2db\"}", "{\"sha\": \"e964ceb80e902af17459073374844beee0ef3396\", \"live\": true, \"id\": \"x1b4478c8ffd2d8ec\"}", "{\"sha\": \"8facbc774936d6cb8930a3b6911257911e8d8e5c\", \"live\": true, \"id\": \"x0ba9c6a5995eb3bc\"}", "{\"sha\": \"7803d3cb38346b2a704cac93ac352d8cec2d131c\", \"live\": true, \"id\": \"xa8c662698e994685\"}"], "description": "Practice plugging in values to equations and checking to see if the equations hold true.", "basepoints": 10.0, "path": "testing-solutions-of-equations-inequalities/", "slug": "testing-solutions-of-equations-inequalities", "kind": "Exercise", "name": "testing-solutions-of-equations-inequalities", "seconds_per_fast_problem": 4.0, "prerequisites": ["evaluating_expressions_1"], "exercise_id": "testing-solutions-of-equations-inequalities"}, "absolute_value_equations": {"uses_assessment_items": true, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/absolute-value-equations/absolute_value_equations/", "id": "absolute_value_equations", "display_name": "Absolute value equations", "title": "Absolute value equations", "all_assessment_items": ["{\"sha\": \"248bcdad4a78a597247a57ddef2bb47ac7409e0a\", \"live\": true, \"id\": \"x395f5f1ca6349095\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b0f247a7a45c74f7b13a86db0220ef158bee5421\", \"live\": true, \"id\": \"x78453dbd364e37d7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"802fcadd0b4e8274e42afeb547811b418d345a26\", \"live\": true, \"id\": \"x67c37634e7650c09\", \"perseus_api_major_version\": 0}", "{\"sha\": \"79132a9bda3d96318d7a50848e9567bed024c3a0\", \"live\": true, \"id\": \"xee6d378e90ee139b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a0e37080047cf7771db18d0ba25ee3b721a60e05\", \"live\": true, \"id\": \"x7f539366bc4cd5b7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2e0c4c07c54893d39756e4b2f9a4c821e045de86\", \"live\": true, \"id\": \"x72e88e61da8df39b\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0e6ebae9b8b5d9140e4e736aed149a00665e7d63\", \"live\": true, \"id\": \"x1422e6343f3b7c8a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"584e400a2f77fcc682f9adcb6b8b001b43e0956a\", \"live\": true, \"id\": \"x658b27dffa1822b5\", \"perseus_api_major_version\": 0}", "{\"sha\": \"104d1d167c38171a8d9d9bf6c581ffcadf1f7d87\", \"live\": true, \"id\": \"xb1eb836234b96192\", \"perseus_api_major_version\": 0}", "{\"sha\": \"79dfe650cdd725c56a636fe5f86fb0fc0720526d\", \"live\": true, \"id\": \"x66f22fbb082f6e71\", \"perseus_api_major_version\": 0}", "{\"sha\": \"20c89b243a7f22a2546802b573f6a9cafbbf368a\", \"live\": true, \"id\": \"x3f0ac9fbb5b8c110\", \"perseus_api_major_version\": 0}", "{\"sha\": \"2dd67941ad66cad0ac5a5046c10ecb65b1ea6e7d\", \"live\": true, \"id\": \"x7f90435f64edca31\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a0ea6fdd95414fcbe76407062fdfd6ad6cb74155\", \"live\": true, \"id\": \"x31aa3b5a856ec6d6\", \"perseus_api_major_version\": 0}", "{\"sha\": \"bab5ea5bf93560b89a2a39fe2be5db7372f30cf2\", \"live\": true, \"id\": \"x438fd7db21c2a7dc\", \"perseus_api_major_version\": 0}", "{\"sha\": \"b17a12ed69d2027c4303fcd76bd1f0c166b8e5da\", \"live\": true, \"id\": \"x32c26d6dd52814d7\", \"perseus_api_major_version\": 0}", "{\"sha\": \"fb5b9a792c41919d974d7460ca8fbb6810f22160\", \"live\": true, \"id\": \"x0bb9d8e2b34b2106\", \"perseus_api_major_version\": 0}", "{\"sha\": \"865b2b22b96d9088bb8209a6e3bb8790358a956d\", \"live\": true, \"id\": \"x49b8f19d9ab2a6d9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"519ddbf88f1a0ac2cb60650a3b7d6ca53a14ec9b\", \"live\": true, \"id\": \"x7f8df1de8dfc0f27\", \"perseus_api_major_version\": 0}", "{\"sha\": \"36225f3e4f1c71d9721386f0c12dc88a8b05747b\", \"live\": true, \"id\": \"xfae46bfc8c6c6c43\", \"perseus_api_major_version\": 0}", "{\"sha\": \"91a27926aee7e08d071bc55bfc5379bd8328a199\", \"live\": true, \"id\": \"xf95750e6a7f6d410\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e0c83c33d488edc6947cde41478ad1c0781a45a0\", \"live\": true, \"id\": \"xac426327ef0d0bf2\", \"perseus_api_major_version\": 0}", "{\"sha\": \"c4fd8c2659f5c06570a45097987e6dbb04e197fa\", \"live\": true, \"id\": \"xd34bd2bf3b8706bc\", \"perseus_api_major_version\": 0}", "{\"sha\": \"dd5b3d826a75a8bae9555834e88805666c47e8c8\", \"live\": true, \"id\": \"x4098504b519526ea\", \"perseus_api_major_version\": 0}", "{\"sha\": \"8bb0ab714859af9d1806bed287aef0f4ea7ab90e\", \"live\": true, \"id\": \"x59b92228f15e9c79\", \"perseus_api_major_version\": 0}", "{\"sha\": \"64ee97212e500696d97d083702dd067bd1c4b806\", \"live\": true, \"id\": \"x0b7a9b1080f90f6a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"12d2405fe1ca1859db98baf12ef365b1bad6a057\", \"live\": true, \"id\": \"xfd83123d6f5d1927\", \"perseus_api_major_version\": 0}", "{\"sha\": \"645b2b63b932908a66d0ffb21b10e4b36ae8b9c9\", \"live\": true, \"id\": \"xbb028613fc4332fd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"ced8f4c162e0994fb8c06d940126ecf43f7bd726\", \"live\": true, \"id\": \"x58d5c94919180649\", \"perseus_api_major_version\": 0}", "{\"sha\": \"e25e55c71f517ffba75f37c3b1a693a0c8cf8872\", \"live\": true, \"id\": \"x2281c7743882a55e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"9b4e06c761e61689e1b5da1e94431c73e97f56b9\", \"live\": true, \"id\": \"xde53aa1fe3b489aa\", \"perseus_api_major_version\": 0}"], "description": "Solve absolute value equations. Some have no solution.", "basepoints": 26.0, "slug": "absolute_value_equations", "kind": "Exercise", "name": "absolute_value_equations", "seconds_per_fast_problem": 37.0, "prerequisites": ["multistep_equations_with_distribution", "understanding-the-process-for-solving-linear-equations"], "exercise_id": "absolute_value_equations"}, "the-structure-and-function-of-glycogen-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/the-structure-and-function-of-glycogen-/", "id": "the-structure-and-function-of-glycogen-", "display_name": "The structure and function of glycogen.", "title": "The structure and function of glycogen.", "all_assessment_items": ["{\"sha\": \"9b09f4d7bd1460719857f72b80cdf88eb8ad68b3\", \"live\": true, \"id\": \"xa0abfdff59070dcb\"}", "{\"sha\": \"dbb173092ca7a02101c21b008953c8b59884d1cb\", \"live\": true, \"id\": \"x16f4a815f76304bb\"}", "{\"sha\": \"a7e6a48bcb9e455f7863e959c25b0bea494d6a6f\", \"live\": true, \"id\": \"xcc04649b40489b96\"}", "{\"sha\": \"c819f779b0bf0df42d7531771a65c33e94c2731b\", \"live\": true, \"id\": \"xd1cda6d7da088588\"}", "{\"sha\": \"01cde17a472194fed74ef2486fc3d462d0f0e86d\", \"live\": true, \"id\": \"xf730063b9006f7dc\"}"], "description": "The structure and function of glycogen.", "basepoints": 10.0, "slug": "the-structure-and-function-of-glycogen-", "kind": "Exercise", "name": "the-structure-and-function-of-glycogen-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "the-structure-and-function-of-glycogen-"}, "spiral-jetty-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/modernity-ap/spiral-jetty-quiz/", "id": "spiral-jetty-quiz", "display_name": "Smithson, Spiral Jetty (quiz)", "title": "Smithson, Spiral Jetty (quiz)", "all_assessment_items": ["{\"sha\": \"5e7809cd4796063f1d93ab1a3742488514f49869\", \"live\": true, \"id\": \"x6838b3954c25dbff\"}", "{\"sha\": \"baa381038ba3f9765319f590910a1bcd4d1959aa\", \"live\": true, \"id\": \"x3e6d56b8a2e08b12\"}", "{\"sha\": \"ea3bd1a7d63d7f56d3e593cb5ce633ec5b216db7\", \"live\": true, \"id\": \"x185c4529c08b5422\"}", "{\"sha\": \"c3164e114dcd2ceeffaaddb80a4f3de7553ae050\", \"live\": true, \"id\": \"x61ddd2fb30731e54\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "spiral-jetty-quiz", "kind": "Exercise", "name": "spiral-jetty-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "spiral-jetty-quiz"}, "quiz-stars": {"uses_assessment_items": true, "id": "quiz-stars", "display_name": "Quiz: Stars", "title": "Quiz: Stars", "all_assessment_items": ["{\"sha\": \"9adab436adca862ccc4fb7c504d5bfb78bdaddb2\", \"live\": true, \"id\": \"x273a199d4bc6732f\"}", "{\"sha\": \"5aef5bc7edbe897250633d1fd75a70bba8c870a2\", \"live\": true, \"id\": \"xd916bda417ce41ec\"}", "{\"sha\": \"05dd5c2b3be36f94a3cd3df89a6e0c885de2e8ca\", \"live\": true, \"id\": \"x7193c8985fac86a2\"}", "{\"sha\": \"422982a1d65f5c1ca091467bbdc8cc00e73c0185\", \"live\": true, \"id\": \"xb20da07824100451\"}", "{\"sha\": \"7bd3e38208ec454135f1a365dd25f1076b877769\", \"live\": true, \"id\": \"xea2103b6da141370\"}", "{\"sha\": \"80a83b33477400981fb1064e8dfd0533a77ee400\", \"live\": true, \"id\": \"xcc2df7dc25b17af3\"}", "{\"sha\": \"ddb98603dc328ded4ba1cce2161f12b73a94735b\", \"live\": true, \"id\": \"x687470d29e47113e\"}", "{\"sha\": \"873d5c71bdd92c6306ef0081e274927be8abbb51\", \"live\": true, \"id\": \"xdc10465283446b94\"}"], "description": "", "basepoints": 10.0, "path": "quiz-stars/", "slug": "quiz-stars", "kind": "Exercise", "name": "quiz-stars", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-stars"}, "classifying-shapes-by-line-and-angle-types": {"uses_assessment_items": true, "path": "khan/math/basic-geo/basic-geo-shapes/basic-geo-classifying-shapes/classifying-shapes-by-line-and-angle-types/", "id": "classifying-shapes-by-line-and-angle-types", "display_name": "Classifying shapes by line and angle types", "title": "Classifying shapes by line and angle types", "all_assessment_items": ["{\"sha\": \"3a477462bb71c09a0b25cb14a5d3ce06322ddc44\", \"live\": true, \"id\": \"x7927f11b767514fc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6411b7b20e5b07cdf6ee9baa480bc2bb46e98a6d\", \"live\": true, \"id\": \"x015af70da7727f80\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa8fc85e23b2d8dfe3f7abef5bbac228d4e68c4a\", \"live\": true, \"id\": \"x8ab51ebff76b7b71\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"88c30373d265db799ede1117563a7b9a33f62f42\", \"live\": true, \"id\": \"xa9bca82444e48676\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"23086a67f17405b9e93d9bf931ad4daf36923872\", \"live\": true, \"id\": \"xe0d2f3126fe2f18d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1a57c94336f4feda22ca450428a42b4732c426ea\", \"live\": true, \"id\": \"x625fd132e3d1fb8c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7bc432f8bae8e91790ea024152f61da62d572387\", \"live\": true, \"id\": \"x013ec94572f40612\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ec6cf7ee65f2bb6600c3feccadd907f95e0894e5\", \"live\": true, \"id\": \"x5629721fad2f98a0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7c5903e2f44d64c8e31a1c3f7285105af1f83074\", \"live\": true, \"id\": \"xdf677d355cf98231\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4320f0be15d709e42bf916388a3e13aaf62e1530\", \"live\": true, \"id\": \"x2bc49b2699cc890e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"14b03707ad029b2d7ce3a488d85ea9b69471d5ac\", \"live\": true, \"id\": \"x0db4b92b65c97371\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e2b34a951938d97a7b88c92fe68f1db2fb7a1faa\", \"live\": true, \"id\": \"x721fceebd1d323d2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e8f77d9efbe2d5c822f6b75edb7c0736feec3f7\", \"live\": true, \"id\": \"xb61d3c4a0fc99897\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"43d0ebbad1ad7d5df75d87a01c131dba2da9e439\", \"live\": true, \"id\": \"x3e2edb1526dc4efc\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"16895cf36956c8138a4c49da75b999b69375432f\", \"live\": true, \"id\": \"x45abd64d52dd173b\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2bd6de22d42f0d8f2b0e223e270df87cfc839b74\", \"live\": true, \"id\": \"x27aea8c63f9bc556\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2469abcacfd6a929eef3192f1a3ec43c891c34bc\", \"live\": true, \"id\": \"xe67c4298cc39f407\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"367e820328ed34b9741a90688954f28dc2e467d1\", \"live\": true, \"id\": \"x86ed4058d37b653d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c08e37cbef35ff63cfc439ee6828bc9586ed60d4\", \"live\": true, \"id\": \"xc9a08e438dc1e20f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"61c26d5fbc2862d7ac54b88ea1e5ce0602075941\", \"live\": true, \"id\": \"xd7aab48ce7221955\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"81e1494eaeef4585dc0c4fecc1f2be5a9757c908\", \"live\": true, \"id\": \"x134da82dcae224f9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"888f4b88cb05d87ad613d575565d10cc73cb6800\", \"live\": true, \"id\": \"xf48f7c83eae36508\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"90f93157d975ece4e6e567b7651f8a5e5ce3152b\", \"live\": true, \"id\": \"x5c9360f835aabca5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be5a639f501df869ab4e99bea0faa3e4312638e0\", \"live\": true, \"id\": \"xabc13ac997f943bd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f923d98b969a2a61222938837b1f644f0ecba153\", \"live\": true, \"id\": \"xd6759940d63f0ecd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6bcd779152252c20466153b411bc7702bde96637\", \"live\": true, \"id\": \"x386c27c44312579f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"39a26ccd43f765c06134fba1593c11dd75f57645\", \"live\": true, \"id\": \"x16d30b6ecc9d46ba\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa5e7e976858ae6258f95ca1a71e7d0d3c9cfc1d\", \"live\": true, \"id\": \"xf07d3863079a2fa0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2e48ae3b70baef26c6efa6c0b991dceeb4a5c1c5\", \"live\": true, \"id\": \"xab814c0bdd23ef28\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8ede51cfce50917ce55730dfc191377ecf814afa\", \"live\": true, \"id\": \"x1973a1bd400ca775\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"00a7cb6d769b93772ca36a32728280373aafc650\", \"live\": true, \"id\": \"xf2f379906493699d\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f2ef6dccfc383123da38e8d56289e9d612c724b3\", \"live\": true, \"id\": \"x24d50dbce8e569b5\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Classify shapes based on pictures or attributes, such as angle types and side-lengths.\u00a0", "basepoints": 10.0, "slug": "classifying-shapes-by-line-and-angle-types", "kind": "Exercise", "name": "classifying-shapes-by-line-and-angle-types", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing-triangles", "recognizing-parallel-and-perpendicular-lines"], "exercise_id": "classifying-shapes-by-line-and-angle-types"}, "compare-groups-through-10": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-counting-topic/cc-early-math-comparing-numbers/compare-groups-through-10/", "id": "compare-groups-through-10", "display_name": "Comparing numbers of objects", "title": "Comparing numbers of objects", "all_assessment_items": ["{\"sha\": \"6c440306b8d488e4698c2cd33e189d245fccf3a1\", \"live\": true, \"id\": \"x1e39a29456a5a99b\"}", "{\"sha\": \"839f2c056c175260b1dae11b83440d7a3adf2ecd\", \"live\": true, \"id\": \"xdc624f78a85bd398\"}", "{\"sha\": \"d81a83b00099b4868ea21d27e0a0220d68e1a631\", \"live\": true, \"id\": \"xb7db9361cebb0705\"}", "{\"sha\": \"6c60520044c5cbc1330f3c7d263600d522a67857\", \"live\": true, \"id\": \"xed03a0001b03a525\"}", "{\"sha\": \"fcfc78cb63594b154874bad65f36da7747bbe8b1\", \"live\": true, \"id\": \"x0aea98d9f0b9523b\"}", "{\"sha\": \"686f7233cfffd0aed10f1df0b93917fcf31ad3c5\", \"live\": true, \"id\": \"xbe27e0465196b1b9\"}", "{\"sha\": \"f8c3b79db90528fc95ae5506ff4eac60ec79203c\", \"live\": true, \"id\": \"x27a5f799006e22fa\"}", "{\"sha\": \"51b892dd69c3635fe0bd3c6d9cb51b15b81f7a28\", \"live\": true, \"id\": \"xec3b285f2f63e540\"}", "{\"sha\": \"530f4552210384b327790d7929156fa8f00666dd\", \"live\": true, \"id\": \"xfd0f98895b6bda30\"}", "{\"sha\": \"67cc3b557e093c4a233cb96a197146c5896abb34\", \"live\": true, \"id\": \"x0a3eb4a56a1b57d8\"}", "{\"sha\": \"c923fd114accfc951d225dc5101c72232405deba\", \"live\": true, \"id\": \"x43eb72191a921be7\"}", "{\"sha\": \"1f2852d3792dfd696f0033b20932e4b1872ac02e\", \"live\": true, \"id\": \"xbc2f1084e54b66b5\"}", "{\"sha\": \"76ca7a36b21208fa740f122399f23a4ba8713082\", \"live\": true, \"id\": \"x613677aebb7a65ae\"}", "{\"sha\": \"6998ddc87d3dcdad61237240619e859257235868\", \"live\": true, \"id\": \"xc02e1080f86a93b2\"}", "{\"sha\": \"0fe5dc3d487064db257a049c68b4946d210c5f00\", \"live\": true, \"id\": \"x3a49e6186dd35ef0\"}", "{\"sha\": \"b03ea31cec1ea3d93cf83e098e99fad486fabfc3\", \"live\": true, \"id\": \"xea6c9b5a504fe410\"}", "{\"sha\": \"605091ed7b46d69c9a5ef541cf9f8567d9c24f5c\", \"live\": true, \"id\": \"x1d71ec2415618a41\"}", "{\"sha\": \"7ef64722029b874067e00332c82d711918516b3e\", \"live\": true, \"id\": \"xe728a83ef50dd144\"}", "{\"sha\": \"fc6e0366de641aa545c710139f5cbbd8e8abfc1b\", \"live\": true, \"id\": \"xe11ec0f6022f3980\"}", "{\"sha\": \"7dbcb611b6faa96d54b60c826eea9bed35d5dc33\", \"live\": true, \"id\": \"xc920cf60a44167ba\"}"], "description": "Practice counting which group has more objects.", "basepoints": 10.0, "slug": "compare-groups-through-10", "kind": "Exercise", "name": "compare-groups-through-10", "seconds_per_fast_problem": 4.0, "prerequisites": ["counting-out-1-20-objects"], "exercise_id": "compare-groups-through-10"}, "understanding-logs-as-inverse-exponentials": {"uses_assessment_items": true, "path": "khan/math/algebra2/logarithms-tutorial/logarithm_basics/understanding-logs-as-inverse-exponentials/", "id": "understanding-logs-as-inverse-exponentials", "display_name": "Understanding logarithms as inverse exponentials", "title": "Understanding logarithms as inverse exponentials", "all_assessment_items": ["{\"sha\": \"81f594057e4701a966e857bcf3dacef3b4b7bc4a\", \"live\": true, \"id\": \"x8596622eb212a80e\"}", "{\"sha\": \"00ca7167f1123b96ad7b899b94b2fd8d96e85427\", \"live\": true, \"id\": \"x8e61389a0d6b35a2\"}", "{\"sha\": \"0d2fe43cb967c9ad2343d7101af96a34920ead67\", \"live\": true, \"id\": \"xc3b8ddfcd13edbfc\"}", "{\"sha\": \"6a504e915a1f075e0ab27017dc4bf31410ad6eed\", \"live\": true, \"id\": \"x4e4396ea6963df1c\"}", "{\"sha\": \"99fdd5f9ae058d69e11911226eb0ab2bff3d352c\", \"live\": true, \"id\": \"x86c756d40f348365\"}", "{\"sha\": \"354aafee871859eeceb4ae7107898a9bdbc03515\", \"live\": true, \"id\": \"x5b8c3856b9521bf8\"}", "{\"sha\": \"d0d554faa8589403a2d3de11ff9d4f1a38daf3c6\", \"live\": true, \"id\": \"xce65108db90d4904\"}", "{\"sha\": \"f9291f7461adf55e68cdd5bc18e4e749e6dc973a\", \"live\": true, \"id\": \"xf36a9ae278bdfad5\"}", "{\"sha\": \"8b79583b8f664caaec843214a30b29eb9169ca72\", \"live\": true, \"id\": \"x7fc42bff7efd038e\"}", "{\"sha\": \"156e21df9f1728071bad2edb514c97225154cffc\", \"live\": true, \"id\": \"x68a289baf9875746\"}", "{\"sha\": \"5e9569b5719de0b868e230b52420d9b42c27e8b1\", \"live\": true, \"id\": \"x8ffca42584d9425c\"}", "{\"sha\": \"bfa4ba7cac66973380a32ec52769a3a9bae17d32\", \"live\": true, \"id\": \"x9b3db11c22721e9d\"}", "{\"sha\": \"c909acd0a72799d6d7a94ff352e4b62aa7b71e40\", \"live\": true, \"id\": \"xa9a4c1e28c55c59c\"}", "{\"sha\": \"2688f32e81416c75691422082a2e0343c2070cb6\", \"live\": true, \"id\": \"x744efd9205595d98\"}", "{\"sha\": \"0f69918c5f250ef5cbead0fec0863316e1b4764b\", \"live\": true, \"id\": \"xf5d7a432bc9b4adc\"}", "{\"sha\": \"0c0fe32902cf6f9be3e0f84907ff8570c34e20fa\", \"live\": true, \"id\": \"x93223df3759ce707\"}", "{\"sha\": \"9847195f71c26621328d387ec1cf19fa086b04e3\", \"live\": true, \"id\": \"x4f4d3c6bd7e0d7e4\"}", "{\"sha\": \"d7dcbcd848e02936a7461aa864d416686ca04506\", \"live\": true, \"id\": \"x263160b714b08865\"}", "{\"sha\": \"e06458df2f247a241d6da102f7faf37daddab9ff\", \"live\": true, \"id\": \"xdf749179426ce5b5\"}", "{\"sha\": \"dc5fc4142d72e90301c6abe4ba3445ef47709cb6\", \"live\": true, \"id\": \"xfe14be18c2c6859c\"}", "{\"sha\": \"612fdf5a2439cc08c563d4f9b2fb39e3a0fc3da7\", \"live\": true, \"id\": \"x7653f02eb1eddff2\"}", "{\"sha\": \"a83a09e3d9cbdb7ab363713d02f9495aa8c5cd60\", \"live\": true, \"id\": \"xd18328f51e200fa1\"}", "{\"sha\": \"d03071da3ea5f2837e86077edb11f74d196721b7\", \"live\": true, \"id\": \"x74ced04f3f5f372e\"}", "{\"sha\": \"f6c4f9ebd0cea2da95572d326bd56dad33cdeb62\", \"live\": true, \"id\": \"x46306d5ed9884414\"}"], "description": "", "basepoints": 10.0, "slug": "understanding-logs-as-inverse-exponentials", "kind": "Exercise", "name": "understanding-logs-as-inverse-exponentials", "seconds_per_fast_problem": 4.0, "prerequisites": ["using-logarithms-to-solve-exponential-equations", "understanding-inverse-functions"], "exercise_id": "understanding-logs-as-inverse-exponentials"}, "quiz--css-specificity-rules": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/html-css/more-css-selectors/quiz-css-specificity-rules/", "id": "quiz--css-specificity-rules", "display_name": "Quiz: CSS specificity", "title": "Quiz: CSS specificity", "all_assessment_items": ["{\"sha\": \"1d0dcd8f841fdcfb7082a9c9c68e2c6790d0964e\", \"live\": true, \"id\": \"x525f64df98c8a6e2\"}", "{\"sha\": \"df80fab6d51fd29d27efb9fae1688fbb4e79ac66\", \"live\": true, \"id\": \"xd47312bafb9c1447\"}", "{\"sha\": \"1a1ca3e914e70fc454efcf88614863ed4d9d8188\", \"live\": true, \"id\": \"x27c80bc8e30ba934\"}"], "description": "Test your knowledge of CSS specificity rules.", "basepoints": 10.0, "slug": "quiz-css-specificity-rules", "kind": "Exercise", "name": "quiz--css-specificity-rules", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz--css-specificity-rules"}, "understanding_moving_the_decimal": {"uses_assessment_items": false, "path": "khan/math/on-sixth-grade-math/on-number-sense-numeration/on-place-decimal-operations/understanding_moving_the_decimal/", "id": "understanding_moving_the_decimal", "display_name": "Understanding moving the decimal", "title": "Understanding moving the decimal", "description": "Give the number of tens a number is being multiplied or divided by when the decimal is moved to the left or right.", "basepoints": 13.0, "slug": "understanding_moving_the_decimal", "kind": "Exercise", "name": "understanding_moving_the_decimal", "seconds_per_fast_problem": 6.0, "prerequisites": ["powers-of-ten"], "exercise_id": "understanding_moving_the_decimal"}, "renal-regulation-of-blood-pressure---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/renal-regulation-of-blood-pressure-passage-2/", "id": "renal-regulation-of-blood-pressure---passage-2", "display_name": "Syndrome of Inappropriate Antidiuretic Hormone", "title": "Syndrome of Inappropriate Antidiuretic Hormone", "all_assessment_items": ["{\"sha\": \"37074a594510d7c7949c876904a3903f0291dcb0\", \"live\": true, \"id\": \"x65085002b166c5c6\"}", "{\"sha\": \"10075366ed262fdf6aa9ef92721f0e4dcaa28948\", \"live\": true, \"id\": \"xbb004021b574b561\"}", "{\"sha\": \"c007d07dd6e8546321c9971c472c82304cdf0d8c\", \"live\": true, \"id\": \"x83f6d37436ae179d\"}", "{\"sha\": \"184338f9c5be053b9328917deae17b521afc57d6\", \"live\": true, \"id\": \"x59726a10e14ed261\"}", "{\"sha\": \"dcb6dfd06d227e5dad0b46073608818a915b3046\", \"live\": true, \"id\": \"x9e5792d9b741ced2\"}"], "description": "questions", "basepoints": 10.0, "slug": "renal-regulation-of-blood-pressure-passage-2", "kind": "Exercise", "name": "renal-regulation-of-blood-pressure---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "renal-regulation-of-blood-pressure---passage-2"}, "review-loops": {"uses_assessment_items": true, "path": "khan/computing/computer-programming/programming/looping/review-loops/", "id": "review-loops", "display_name": "Quiz: While Loops", "title": "Quiz: While Loops", "all_assessment_items": ["{\"sha\": \"41fc39c5dc66f156050d7fd8aa1a1f0151dac189\", \"live\": true, \"id\": \"xdd957593c269619e\"}", "{\"sha\": \"860459011ae987c95a362e6ea0139c4e31bfc9d0\", \"live\": true, \"id\": \"x3a71b1c90f068f29\"}", "{\"sha\": \"a632f7875fe396f7771fbb2dfc0ad1c2dda2d9cd\", \"live\": true, \"id\": \"x06acc4c2c24d4307\"}", "{\"sha\": \"c7b35b2b0c3b4089b60189dbcb94a1812726c470\", \"live\": true, \"id\": \"x64320a4870d66f77\"}", "{\"sha\": \"55eb67d3530e3bac40101d60c14ff521708aca48\", \"live\": true, \"id\": \"xd26803b9b7e8b36f\"}", "{\"sha\": \"41983348eb7285a043fe2ce21c189c8c6dcbeaed\", \"live\": true, \"id\": \"x24c52b550fdfa9bb\"}"], "description": "", "basepoints": 10.0, "slug": "review-loops", "kind": "Exercise", "name": "review-loops", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "review-loops"}, "self-identity---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/self-identity-passage-1/", "id": "self-identity---passage-1", "display_name": "Alternative education models and child development", "title": "Alternative education models and child development", "all_assessment_items": ["{\"sha\": \"5c6a6e574460e6366c321dc7a553150014c75fe6\", \"live\": true, \"id\": \"xa523fbd8b755951c\"}", "{\"sha\": \"8441e40ea218818266c1b8eedfe4caba1a0133c3\", \"live\": true, \"id\": \"x0dbb8844eaa05db3\"}", "{\"sha\": \"2f029d153798c91e1bfb73ebed98bdf3ef08372b\", \"live\": true, \"id\": \"x1c280466090d0cea\"}", "{\"sha\": \"133bd89ba3a37c62d0c2a13f07d3620513091011\", \"live\": true, \"id\": \"xb1da620f34d6a542\"}", "{\"sha\": \"0b11761616fadf40f6cb5a187a97808888ce2c04\", \"live\": true, \"id\": \"x00f710e97bbee387\"}"], "description": "", "basepoints": 10.0, "slug": "self-identity-passage-1", "kind": "Exercise", "name": "self-identity---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "self-identity---passage-1"}, "ww1-secondary-fronts": {"uses_assessment_items": true, "path": "khan/humanities/history/euro-hist/other-fronts-ww1/ww1-secondary-fronts/", "id": "ww1-secondary-fronts", "display_name": "Secondary fronts of WWI", "title": "Secondary fronts of WWI", "all_assessment_items": ["{\"sha\": \"e104baf21a30629c042c708d613988b5afd2eef5\", \"live\": true, \"id\": \"x018290a2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a8c72370ace23a344c38b571fc48c185b32ff5a3\", \"live\": true, \"id\": \"x1a723367\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c6d5c07533ceb82f7ffcab8e3bd58b05200dc403\", \"live\": true, \"id\": \"x48d7a627\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"08f92f5fa0e2178836e5f81122b0c530db5b2879\", \"live\": true, \"id\": \"x66bcfc70\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"be8187dce757bd3cb1d1443965018f105a4bda20\", \"live\": true, \"id\": \"x7d4648dd\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"07d3777e9e4356c517376966a0db9ce3519509e1\", \"live\": true, \"id\": \"xb4eee937\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"022b8863af48ff4fdd45a8441b8897799b3bc33e\", \"live\": true, \"id\": \"xfe173042\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "ww1-secondary-fronts", "kind": "Exercise", "name": "ww1-secondary-fronts", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "ww1-secondary-fronts"}, "introduction-to-critical-thinking-part-2": {"uses_assessment_items": true, "path": "khan/partner-content/wi-phi/critical-thinking/introduction-to-critical-thinking-part-2/", "id": "introduction-to-critical-thinking-part-2", "display_name": "Introduction to critical thinking, part 2", "title": "Introduction to critical thinking, part 2", "all_assessment_items": ["{\"sha\": \"00cc83ff53e241f9a9ea400f97c9772b80fe46f7\", \"live\": true, \"id\": \"x510f2f0421c784db\"}", "{\"sha\": \"8eaf2fc98ae1b4e3fa61a491e4bf14389e5253cd\", \"live\": true, \"id\": \"x36a0a5d3b49d849c\"}", "{\"sha\": \"de0691ab5d93c67ea95d68e8c38955044e572869\", \"live\": true, \"id\": \"x84ba306116631b78\"}", "{\"sha\": \"5051c8a917a0b322e41084a84a16e587564f8d6d\", \"live\": true, \"id\": \"x9f27fd6bfd15ca92\"}", "{\"sha\": \"8dc059b9056721e15c7e7aa6e5d75bb1f9e03713\", \"live\": true, \"id\": \"x261fa41bc753d25b\"}", "{\"sha\": \"8836876f591d94aacee061081baed95d8a2b475d\", \"live\": true, \"id\": \"x84e202937dd2019d\"}"], "description": "Test your knowledge of the fundamentals of critical thinking!", "basepoints": 10.0, "slug": "introduction-to-critical-thinking-part-2", "kind": "Exercise", "name": "introduction-to-critical-thinking-part-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "introduction-to-critical-thinking-part-2"}, "orders-of-magnitude": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/exponents-radicals/orders-of-magnitude/orders-of-magnitude/", "id": "orders-of-magnitude", "display_name": "Multiplication and division with powers of ten", "title": "Multiplication and division with powers of ten", "all_assessment_items": ["{\"sha\": \"c88b8394b0a30f688dcdb9dde53b2d41eff5e3ec\", \"live\": true, \"id\": \"xdc2579d3c5e21b3d\"}", "{\"sha\": \"daa72807cba075238b2dae5f6bbd2e57c29788a5\", \"live\": true, \"id\": \"x52281a600fb65b34\"}", "{\"sha\": \"ef1ef8cd24000fb8bb800c1b4fd1d7a33f5fcb56\", \"live\": true, \"id\": \"xa7571b007ba0b51e\"}", "{\"sha\": \"801732fd41f68784621890a372ce5875003a00fd\", \"live\": true, \"id\": \"x9d6e63b67f4000d2\"}", "{\"sha\": \"fbc0a3887cc0adb91c9a4f165d22f7989a36bffc\", \"live\": true, \"id\": \"x980fb451746e8301\"}", "{\"sha\": \"9264753575398da3354f12cdf60cefcca640b62b\", \"live\": true, \"id\": \"x4e17826c5cf88ed3\"}", "{\"sha\": \"0e72ae9038556b9f6cca878a4a1416673691ba80\", \"live\": true, \"id\": \"x7bcda147e3efe62b\"}", "{\"sha\": \"dde104d7b179a7823488c397456384d91c42360b\", \"live\": true, \"id\": \"x98a36e9a494f7b6b\"}", "{\"sha\": \"6cfd42df568d30f3d7828d8410483462a680faf3\", \"live\": true, \"id\": \"x1e79eacf9d64e0e9\"}", "{\"sha\": \"8a16dae251aa27db5e19f72ab3a8c0a724091bff\", \"live\": true, \"id\": \"xe1928a5575008dc7\"}", "{\"sha\": \"2117e6f0e28e2b00b218c1270530bf815b1669db\", \"live\": true, \"id\": \"x8fbacd183b64849f\"}", "{\"sha\": \"cbb021b9cee3d095bb548a3b6794d153c5f2d5cd\", \"live\": true, \"id\": \"x58926a3c0925dd09\"}", "{\"sha\": \"eb1ce1084d639a6435259e8ee6261d246a237015\", \"live\": true, \"id\": \"xaea6252319d121b5\"}", "{\"sha\": \"f4b65647b2d815aea9f59c43d3c48dde53c9e17e\", \"live\": true, \"id\": \"x8b66ec8e717fa8bf\"}", "{\"sha\": \"5214434790d4dd357ceae492238bbb69d94fced0\", \"live\": true, \"id\": \"xd5af7c7e912da3e2\"}", "{\"sha\": \"8a7f6a6063abf830ea0af360d1db602a6c7c4d28\", \"live\": true, \"id\": \"xc8aa1d99ee7c9ae5\"}", "{\"sha\": \"e102c4cf6583b6f47be744a35d46c26f7ac4226e\", \"live\": true, \"id\": \"xbe1ea41b4aae994d\"}", "{\"sha\": \"ea189bab13fbace92cb21ea242a651a43281187a\", \"live\": true, \"id\": \"xf83d783952982f2b\"}", "{\"sha\": \"71260f30fb8d8462b98dc0c71a1d4145b5df9da8\", \"live\": true, \"id\": \"x88a963cc641c88d0\"}", "{\"sha\": \"44e7174b03095f347745d684d216517d18ca5568\", \"live\": true, \"id\": \"x313d91b62d03d979\"}"], "description": "Practice solving multiplication and division problems that involve powers of ten.", "basepoints": 20.0, "slug": "orders-of-magnitude", "kind": "Exercise", "name": "orders-of-magnitude", "seconds_per_fast_problem": 17.0, "prerequisites": ["exponent_rules"], "exercise_id": "orders-of-magnitude"}, "daguerreotypes-salted-paper-prints-quiz": {"uses_assessment_items": true, "id": "daguerreotypes-salted-paper-prints-quiz", "display_name": "Daguerreotypes and salted paper prints quiz", "title": "Daguerreotypes and salted paper prints quiz", "all_assessment_items": ["{\"sha\": \"3a33cf60eb95b1b62c2d1900a592d691e88f792c\", \"live\": true, \"id\": \"x758f9112c7c09d61\"}", "{\"sha\": \"ccd7c78230a98b7e26a38ca40c8187dd1cb834c7\", \"live\": true, \"id\": \"x3b79ad80691d5852\"}", "{\"sha\": \"5e1537c3b0627f46710f4070538c5fc07827c28b\", \"live\": true, \"id\": \"xf4d4ebfc13ff8e04\"}", "{\"sha\": \"02aad313838f441ad8d9bd0fcda6f657adc6be5e\", \"live\": true, \"id\": \"x9c81ee79ef2994c8\"}", "{\"sha\": \"af436558e2521a6b93f6ba951b83fe603760e905\", \"live\": true, \"id\": \"xd82ef5df6cc24378\"}", "{\"sha\": \"00f15010a539cd73bf40e18e917681155251d093\", \"live\": true, \"id\": \"x998ee2e390150275\"}", "{\"sha\": \"c6275ba84ba737158bf8fdace6a5958ff89da286\", \"live\": true, \"id\": \"x3b46aa00103c6f38\"}", "{\"sha\": \"71d5f7a7a63231cdde7c5c8436c69fb2e53e3d83\", \"live\": true, \"id\": \"xd11a4fc4c3f158a5\"}", "{\"sha\": \"a6a0e641d7debfc4cf8b0367b6dbd9da3bb54745\", \"live\": true, \"id\": \"xc07d8632ff0b0b2c\"}", "{\"sha\": \"8dd8295548da2e5b30d7aee4b52bad26e33381a6\", \"live\": true, \"id\": \"x9f2b1279a1a54580\"}"], "description": "A quiz on Daguerreotypes and salted paper prints", "basepoints": 12.0, "path": "daguerreotypes-salted-paper-prints-quiz/", "slug": "daguerreotypes-salted-paper-prints-quiz", "kind": "Exercise", "name": "daguerreotypes-salted-paper-prints-quiz", "seconds_per_fast_problem": 5.0, "prerequisites": [], "exercise_id": "daguerreotypes-salted-paper-prints-quiz"}, "fractions_as_division_by_a_multiple_of_10": {"uses_assessment_items": false, "id": "fractions_as_division_by_a_multiple_of_10", "display_name": "Fractions as division by a multiple of 10", "title": "Fractions as division by a multiple of 10", "description": "Practice rewriting fractions as decimals by finding equivalent fractions with denominators of 100.", "basepoints": 10.0, "path": "fractions_as_division_by_a_multiple_of_10/", "slug": "fractions_as_division_by_a_multiple_of_10", "kind": "Exercise", "name": "fractions_as_division_by_a_multiple_of_10", "seconds_per_fast_problem": 4.0, "prerequisites": ["converting_fractions_to_decimals_0.5"], "exercise_id": "fractions_as_division_by_a_multiple_of_10"}, "adding_fractions_0.5": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/fractions-pre-alg/fractions-unlike-denom-pre-alg/adding_fractions_05/", "id": "adding_fractions_0.5", "display_name": "Adding fractions with 10 and 100 as denominators", "title": "Adding fractions with 10 and 100 as denominators", "description": "Practice adding fractions that have denominators of 10 and 100.", "basepoints": 10.0, "slug": "adding_fractions_05", "kind": "Exercise", "name": "adding_fractions_0.5", "seconds_per_fast_problem": 4.0, "prerequisites": ["adding_fractions_with_common_denominators", "equivalent-fractions-with-denominators-of-10-and-100"], "exercise_id": "adding_fractions_0.5"}, "romanticism-in-france": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/romanticism/romanticism-in-france/romanticism-in-france/", "id": "romanticism-in-france", "display_name": "Romanticism in France (quiz)", "title": "Romanticism in France (quiz)", "all_assessment_items": ["{\"sha\": \"76e26a51384ec7f122df0d833f92847dbe3f9020\", \"live\": true, \"id\": \"x08497b73d21022a5\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b4496a0e2d895724b74a9770167f81b91c1493f5\", \"live\": true, \"id\": \"x545c0041f66738b4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4162bcfc58628748fcffc6fb4f141a10f85d55de\", \"live\": true, \"id\": \"xcc2ce5419b50397b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2f75a2f24e966a013031ed59b7129afabc735933\", \"live\": true, \"id\": \"x2548baa1ec4c2a61\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8b28cd5ec91a71388bfef9e771d414fc75437b7e\", \"live\": true, \"id\": \"x5733b36ee1bc7ccf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"17117dfc7968c3d271c16762ad077772278436e8\", \"live\": true, \"id\": \"x9fd6679e55c7338c\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"246002d980a736e458f17d151dcf92077ef3f22b\", \"live\": true, \"id\": \"x026aa962bfae98c9\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e9c66295b0697bf04ff8e78103c77f76f4a366fd\", \"live\": true, \"id\": \"xf7a84a13d2886e22\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a1071e4c72688f99a724b46c03ec4edba657bbc9\", \"live\": true, \"id\": \"xbd2b147e9c7c4ccf\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f976589c195d6eb91f4a2f25339e8b652401f402\", \"live\": true, \"id\": \"xd30c08932367a7c3\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "romanticism-in-france", "kind": "Exercise", "name": "romanticism-in-france", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "romanticism-in-france"}, "understanding-fractions-as-division--word-problems": {"uses_assessment_items": true, "id": "understanding-fractions-as-division--word-problems", "display_name": "Understanding fractions as division: word problems", "title": "Understanding fractions as division: word problems", "all_assessment_items": ["{\"sha\": \"11c18530136b5b0e6fcb7c89e3773ad806c9f45c\", \"live\": true, \"id\": \"x60e29342b7dad934\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2c41ef81b2bc7c197ded6abef84ae7cc79cdf542\", \"live\": true, \"id\": \"x040c5ae4\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"413fb61ef523331c3fc904fa44b824d85475c783\", \"live\": true, \"id\": \"x60e97372\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"09defc32c3566bb3974458cf486f2067e45baf27\", \"live\": true, \"id\": \"xdbfdd9ac3ce72f07\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"d3133a0762c6b82c254542c4565b7ac25231ac18\", \"live\": true, \"id\": \"xbd4381fd9b988def\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a8e20b0fe5e71d71259993a948af069d2278c797\", \"live\": true, \"id\": \"x328be921\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"a91be3c0bdb89b5cdf9d8a10a354483756066f5c\", \"live\": true, \"id\": \"x966e0d03\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"ca64433e4bb643cd89d93f061f317bace40dd85d\", \"live\": true, \"id\": \"x8df8fbf9\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"40f8bf12f7cc9465d8336d8b2c75e65ca1a44478\", \"live\": true, \"id\": \"x8c761688\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5b0a0d9705d1ae5ce039c46bd3b08d52ff67023d\", \"live\": true, \"id\": \"x6d701273\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"6065da31855cb72f0c3036197e31d646e21f2898\", \"live\": true, \"id\": \"x12c0e934\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a6c0d935cb6e0ea289040ce285a389fef4c29029\", \"live\": true, \"id\": \"xdee49b7cae41a8b3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d763adf0beb9680d82a170b430d1b90f02eb55aa\", \"live\": true, \"id\": \"x9df04011\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1071314b72fcf7b15f1cc951148b477a19e0fecf\", \"live\": true, \"id\": \"x2505ae73\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"dd2d146b4898ae6e5abac4dd1710c801e9bfc7d4\", \"live\": true, \"id\": \"xe766cee4e163cf1d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6011c45a97b518ed413cfef5018e62885663a0e4\", \"live\": true, \"id\": \"x3134781d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"70a3f4f9f79c023e691725ea29bc60b9c8d638df\", \"live\": true, \"id\": \"xd8b56e481695b9da\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6e399ec534001193c7b9eafa870da1d214bea2c6\", \"live\": true, \"id\": \"x6faf3a15\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cf596889ef3d57204a8d54d300492de2f5c8e31a\", \"live\": true, \"id\": \"xbf919fe0\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"8433cbc8bb39c7d9676e2c32fe6c4768b2e614a2\", \"live\": true, \"id\": \"x4a87f3fba4918f22\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"142fd719a9fbc391ae8f4408a988e4a2c260d1e2\", \"live\": true, \"id\": \"x33e4917ee109f629\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": true}", "{\"sha\": \"c231db91f95c244308420924b5c5ef174425bcf4\", \"live\": true, \"id\": \"xa4ed899072b121d0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"7f862165eb08f924828fcecd18d279dcee864f44\", \"live\": true, \"id\": \"x563f5d40840535eb\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"dc5b028742a4cdadeb7536d621edd30d1222a3b3\", \"live\": true, \"id\": \"x41c8ff24b6921f52\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f7b73130888591b684d74ac3f4e661e884ea3e81\", \"live\": true, \"id\": \"xcb398d9a\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"ce5d484da53c845519b4c95fb5166d78dea6fbf8\", \"live\": true, \"id\": \"x3e649293\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"6b576d0ed169860f481dcf0debd2f343a5cf6f4f\", \"live\": true, \"id\": \"x21e43f49\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}", "{\"sha\": \"501baaa5764bce4cd1d68e0932752dadc8c03cfd\", \"live\": true, \"id\": \"xe3f13274\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": true}"], "description": "Once your recognize the relationship between fractions and division, solving these word problems will be a cinch.", "basepoints": 10.0, "path": "understanding-fractions-as-division-word-problems/", "slug": "understanding-fractions-as-division-word-problems", "kind": "Exercise", "name": "understanding-fractions-as-division--word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["understanding-fractions-as-division"], "exercise_id": "understanding-fractions-as-division--word-problems"}, "quiz-the-big-bang": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/big-bang/the-big-bang/quiz-the-big-bang/", "id": "quiz-the-big-bang", "display_name": "Quiz: The Big Bang", "title": "Quiz: The Big Bang", "all_assessment_items": ["{\"sha\": \"e8ae3686e72bacd3d36da938b189ef148f31eb1c\", \"live\": true, \"id\": \"x2977b5405d81d0d3\"}", "{\"sha\": \"fd9b8e7b947e2223e40da59c81a82a6350d95bc7\", \"live\": true, \"id\": \"xfc1ebe65a9155991\"}", "{\"sha\": \"3fdba8e80ac3310370b3289b59f8000c103b8acd\", \"live\": true, \"id\": \"xc98f0bd03ed3f786\"}", "{\"sha\": \"a3d0f0b590e4a3e99e0a69447ff906bd1017d0ba\", \"live\": true, \"id\": \"x414fabc34974bb3a\"}", "{\"sha\": \"3bb6aa9822da93d232abd90ae7e2d5252f627596\", \"live\": true, \"id\": \"xcbeebd6294ebb167\"}"], "description": "Quiz 2.1", "basepoints": 10.0, "slug": "quiz-the-big-bang", "kind": "Exercise", "name": "quiz-the-big-bang", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-the-big-bang"}, "art-and-the-french-state": {"uses_assessment_items": true, "path": "khan/humanities/becoming-modern/avant-garde-france/second-empire/art-and-the-french-state/", "id": "art-and-the-french-state", "display_name": "Art and the French State", "title": "Art and the French State", "all_assessment_items": ["{\"sha\": \"44ee1ef2b7f057653d6082b6406b911e7610eb2a\", \"live\": true, \"id\": \"xea16f3ec568d2856\", \"perseus_api_major_version\": null}", "{\"sha\": \"fe5ac10b698e415147232e27b685410933ba2f58\", \"live\": true, \"id\": \"xa7ec61dd69a87864\", \"perseus_api_major_version\": null}", "{\"sha\": \"94e4f4cb864542e13a2343c359a60bf2b4aa9b6e\", \"live\": true, \"id\": \"xb86b3fab385bca7c\", \"perseus_api_major_version\": null}", "{\"sha\": \"bdd04071192fb327c844da41717125d46fb1e9fb\", \"live\": true, \"id\": \"x1fa2a2385fba75e9\", \"perseus_api_major_version\": null}", "{\"sha\": \"aadd35d3a678fbc8d8678de1e8fffaeeb6991117\", \"live\": true, \"id\": \"x2acfbe32d1a0c08c\", \"perseus_api_major_version\": null}", "{\"sha\": \"618015f644f299c5de4c708478e783e5a790d44f\", \"live\": true, \"id\": \"x0f78376372ba57ec\", \"perseus_api_major_version\": null}", "{\"sha\": \"f50dbfc408ee4964752ea5cb851bcd7d412e1b63\", \"live\": true, \"id\": \"x235af48010c034a3\", \"perseus_api_major_version\": 3}", "{\"sha\": \"22f23d083b17b560682ab68aff1f8dfdbc2ea64f\", \"live\": true, \"id\": \"x3384aec69e7776ee\", \"perseus_api_major_version\": null}"], "description": "Test your knowledge!", "basepoints": 10.0, "slug": "art-and-the-french-state", "kind": "Exercise", "name": "art-and-the-french-state", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "art-and-the-french-state"}, "fibulae-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world/fibulae-quiz/", "id": "fibulae-quiz", "display_name": "Fibulae (quiz)", "title": "Fibulae (quiz)", "all_assessment_items": ["{\"sha\": \"3540703512ddd5c93656a85fad23b63fb3d678bb\", \"live\": true, \"id\": \"x0916601c1a7a94be\"}", "{\"sha\": \"14016abf4c9b1a1d815c64c97b93a0c69a73eb7d\", \"live\": true, \"id\": \"x6c6a78f41d854c67\"}", "{\"sha\": \"ff2eabd4e649e6bcb163e7807a07059812666591\", \"live\": true, \"id\": \"xde430cd9772cd258\"}", "{\"sha\": \"d1dc7b0f2487e8d2d63f654e0d6580ed8d7b2d13\", \"live\": true, \"id\": \"x781a308f9bfc9241\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "fibulae-quiz", "kind": "Exercise", "name": "fibulae-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fibulae-quiz"}, "delacroix-s-liberty-leading-the-people-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/delacroix-s-liberty-leading-the-people-quiz/", "id": "delacroix-s-liberty-leading-the-people-quiz", "display_name": "Delacroix, Liberty Leading the People (quiz)", "title": "Delacroix, Liberty Leading the People (quiz)", "all_assessment_items": ["{\"sha\": \"002fa80472a2f81130f3efd96294d7e4bdad5761\", \"live\": true, \"id\": \"x6108c8a0d6be0cde\"}", "{\"sha\": \"ad98d7de4744e5c15f25ad76cd08b758b65d7d23\", \"live\": true, \"id\": \"x051bd9a3f9eaebd4\"}", "{\"sha\": \"0347573b3c382bc575c9afe4b40a2c212744c541\", \"live\": true, \"id\": \"x7766736dcce78551\"}", "{\"sha\": \"4229c5393d27bffdb7fbb6c0ffd680c1d93be2ea\", \"live\": true, \"id\": \"xaf0cad6692be83cc\"}", "{\"sha\": \"aaa65c464ff23871ebb7c238b867f40f6e07603b\", \"live\": true, \"id\": \"x29def8d94ee238e5\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "delacroix-s-liberty-leading-the-people-quiz", "kind": "Exercise", "name": "delacroix-s-liberty-leading-the-people-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "delacroix-s-liberty-leading-the-people-quiz"}, "completing_the_square_in_quadratic_expressions": {"uses_assessment_items": false, "path": "khan/math/algebra/quadratics/completing_the_square/completing_the_square_in_quadratic_expressions/", "id": "completing_the_square_in_quadratic_expressions", "display_name": "Completing the square in quadratic expressions", "title": "Completing the square in quadratic expressions", "description": "", "basepoints": 12.0, "slug": "completing_the_square_in_quadratic_expressions", "kind": "Exercise", "name": "completing_the_square_in_quadratic_expressions", "seconds_per_fast_problem": 5.0, "prerequisites": ["factoring_polynomials_1"], "exercise_id": "completing_the_square_in_quadratic_expressions"}, "duccio-s-maesta-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/duccio-s-maesta-quiz/", "id": "duccio-s-maesta-quiz", "display_name": "Duccio, Maesta (quiz)", "title": "Duccio, Maesta (quiz)", "all_assessment_items": ["{\"sha\": \"2f6780abf5b8ccef47e3f94594403c3fe9dd8b3d\", \"live\": true, \"id\": \"x4f3c618e7e69ad1f\"}", "{\"sha\": \"e33e2f959456120c756ae48f0713108228929be1\", \"live\": true, \"id\": \"xe8370ff901e31455\"}", "{\"sha\": \"61f5bf78ed6149dc0d2cffdccd6e520d6ed4fda2\", \"live\": true, \"id\": \"xf4406dd6e7de0a92\"}", "{\"sha\": \"0fd6be4b503fe2491c14fdf1cef77140337a8182\", \"live\": true, \"id\": \"xffd67635abd82eaf\"}", "{\"sha\": \"0673b921a9372f9a5bc52691673319679458db3d\", \"live\": true, \"id\": \"x3408bbe5ec33ebc2\"}", "{\"sha\": \"91c163b76ae544b17374697a4f0d6a2853ef0017\", \"live\": true, \"id\": \"x7092cb73ce7a0602\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "duccio-s-maesta-quiz", "kind": "Exercise", "name": "duccio-s-maesta-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "duccio-s-maesta-quiz"}, "nude-woman--venus-of-willendorf--quiz": {"uses_assessment_items": true, "path": "khan/humanities/prehistoric-art/paleolithic-art/nude-woman-venus-of-willendorf-quiz/", "id": "nude-woman--venus-of-willendorf--quiz", "display_name": "Nude woman (Venus of Willendorf) (quiz)", "title": "Nude woman (Venus of Willendorf) (quiz)", "all_assessment_items": ["{\"sha\": \"2dcf84acf591e51907426d3ebd5dd0fa8e96ba3f\", \"live\": true, \"id\": \"x381583b2d11b87ec\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1e456373f011be8886312be57826443948f074d9\", \"live\": true, \"id\": \"xa07af04f2ab56125\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0c6512ef5b854ac5be75015438233b58578c1b72\", \"live\": true, \"id\": \"x0a2765ce8f780310\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"07a742b1fc4b66f59a53bf4b2064ad75db8f300a\", \"live\": true, \"id\": \"x8a7c11f41cd60b45\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"679dedb58911b4e722e25dacc0be17a54a9eac7b\", \"live\": true, \"id\": \"xc1399d0afd1cc6a7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "nude-woman-venus-of-willendorf-quiz", "kind": "Exercise", "name": "nude-woman--venus-of-willendorf--quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "nude-woman--venus-of-willendorf--quiz"}, "interpreting-and-comparing-data-distributions": {"uses_assessment_items": true, "path": "khan/math/probability/descriptive-statistics/central_tendency/interpreting-and-comparing-data-distributions/", "id": "interpreting-and-comparing-data-distributions", "display_name": "Interpreting and comparing data distributions", "title": "Interpreting and comparing data distributions", "all_assessment_items": ["{\"sha\": \"ea61db33a2eb12f3de34e07928d3a1d43e816f7a\", \"live\": true, \"id\": \"x681668dbd29e9097\"}", "{\"sha\": \"119aed53c0929541b7436b22ef55f14ecbcf66cc\", \"live\": true, \"id\": \"xf6922c391e1f0183\"}", "{\"sha\": \"a864a85bc0d3fe3effcf2831a3981079ac71304c\", \"live\": true, \"id\": \"x3fadc6b861a5e1ed\"}", "{\"sha\": \"635cbaf4e1ce7bd8e835f49f21d34dc38015276a\", \"live\": true, \"id\": \"xe02676b8953e8c8c\"}", "{\"sha\": \"c7f0d3533b6235136b1f58f986c7eb67fd7c667c\", \"live\": true, \"id\": \"x5ff619481aef0013\"}", "{\"sha\": \"3b80eba849f61871e18b29cbda2e18100169f162\", \"live\": true, \"id\": \"x2ec1d0bddadfefdb\"}", "{\"sha\": \"ca1418ec9528fb0a1ccbaafb788df62abac7bebc\", \"live\": true, \"id\": \"x3db7996448df3a86\"}", "{\"sha\": \"4a0e53d0dfccac8c0353f70c90bb5a504bc3b137\", \"live\": true, \"id\": \"xd0d11e8871da704e\"}", "{\"sha\": \"77796d74703c14dd14ee7898a39f52381e62ae2b\", \"live\": true, \"id\": \"x05e7c83d198411a4\"}", "{\"sha\": \"c11577c9cfce2fce81db1bcc9a32c193da90638c\", \"live\": true, \"id\": \"xfd90abfe884662a5\"}", "{\"sha\": \"42fda7972c7af0a94ed1347080070e5ce43e3af3\", \"live\": true, \"id\": \"x32c10a89f768e2e5\"}", "{\"sha\": \"fadefeedcd60bee0dd59a3ad1bd89a419b13c383\", \"live\": true, \"id\": \"x89ca96e50269da6f\"}", "{\"sha\": \"72dde90cc413e6a042072e86e73eb0abb2a64d18\", \"live\": true, \"id\": \"x33c367a941600de8\"}", "{\"sha\": \"9c8db588bf71b95ae3c4d746a10a831d0e2b8e3c\", \"live\": true, \"id\": \"xec7aeabba6e467bd\"}", "{\"sha\": \"1e2e62fe704c0b4b54856e460a2af08bece637d5\", \"live\": true, \"id\": \"x99abcd3cde97d2e3\"}", "{\"sha\": \"14b8b028b7899f05e112074d6f34ee1ef42ebebb\", \"live\": true, \"id\": \"xc8697ee66b3942d6\"}", "{\"sha\": \"23c085cd18858ca0172bac8e1922834a69800dcb\", \"live\": true, \"id\": \"xd43682971d4b2539\"}", "{\"sha\": \"79f2a0ae709b76d5a84ab1353bf39ec7f269d531\", \"live\": true, \"id\": \"xeadd0c8dad2b8ac3\"}", "{\"sha\": \"6920ec7983d8d8a7d01123e287d8cfd302c75e60\", \"live\": true, \"id\": \"x4fd67b4c55d23370\"}", "{\"sha\": \"14b08c996a226f5065aa4e2d1351e20e466b7edd\", \"live\": true, \"id\": \"xf6a862ac83c2b89c\"}", "{\"sha\": \"a8a434aa6eb2d0038af2a016e63d83163a0e772d\", \"live\": true, \"id\": \"xce77c3af7b3a314c\"}", "{\"sha\": \"bfb3e1d4b1d34d4b2d5bbe65d64cab4c8b7c94ea\", \"live\": true, \"id\": \"x8e8aed26f04993fc\"}", "{\"sha\": \"2f4bca7296ac250a752e0e22a1caf92c1f8c65e0\", \"live\": true, \"id\": \"x31bedc1433b517c8\"}", "{\"sha\": \"cf0d07c6b6d38a879c495ce9aae26681e57030e4\", \"live\": true, \"id\": \"xcd3cbf555b5196a8\"}", "{\"sha\": \"cf15a900f48780d0b6d8a42e35df6b9b4318e622\", \"live\": true, \"id\": \"x29697aafc51cccd4\"}", "{\"sha\": \"7e0ef6985876f8e15aa7e4dfc8e0ce1278b79ff9\", \"live\": true, \"id\": \"x947e6bf0691c14ac\"}", "{\"sha\": \"2d0342d71e5bf3902c6ba7a52563a47b8d6d23dd\", \"live\": true, \"id\": \"xf65cca5dd12dbe4c\"}", "{\"sha\": \"c88bb20a1220ba2ad8403785cdf689b2ed1e04d8\", \"live\": true, \"id\": \"x0efc1fbfc8758f25\"}", "{\"sha\": \"6d4e59507bbb16d1ebd080640fccb4a4e9eb8a34\", \"live\": true, \"id\": \"x0b9b4b6ce5132285\"}", "{\"sha\": \"382ef899dd575afb23a788a3651827618ee2371d\", \"live\": true, \"id\": \"x62e7fb0e0b894fec\"}"], "description": "", "basepoints": 10.0, "slug": "interpreting-and-comparing-data-distributions", "kind": "Exercise", "name": "interpreting-and-comparing-data-distributions", "seconds_per_fast_problem": 4.0, "prerequisites": ["mean_median_and_mode", "standard_deviation"], "exercise_id": "interpreting-and-comparing-data-distributions"}, "equations-w-square-and-cube-roots": {"uses_assessment_items": true, "id": "equations-w-square-and-cube-roots", "display_name": "Equations with square roots and cube roots", "title": "Equations with square roots and cube roots", "all_assessment_items": ["{\"sha\": \"23e9599a77810d4f5f350310b164d3ad98de41d1\", \"live\": true, \"id\": \"x57404c32d60e9bd0\"}", "{\"sha\": \"20e9ae66a69501cb231e5ba1f26cf5c26cebbc33\", \"live\": true, \"id\": \"x81ce20a4e90eb1e3\"}", "{\"sha\": \"fa2a689b2c299fe582dd42e5e6429a6ae0b47a6f\", \"live\": true, \"id\": \"xdd622cbab9003af6\"}", "{\"sha\": \"eef3aac474a49131d877226c75946d9d7361fd99\", \"live\": true, \"id\": \"xa1d3f302d41eb1a0\"}", "{\"sha\": \"730037647eee10060d16a85b4b3ec83849196690\", \"live\": true, \"id\": \"x711b392a10d2760b\"}", "{\"sha\": \"fd16d70a5692a383c84a1971c4afe1953f33701e\", \"live\": true, \"id\": \"x85186d535623187f\"}", "{\"sha\": \"669ee9d4f40dfa1c01a0fb4166264be4ae3a6fc2\", \"live\": true, \"id\": \"x87358b6bc5a5b916\"}", "{\"sha\": \"686dfa8fe863dde02413c210c8e53bb02646c132\", \"live\": true, \"id\": \"x9a25df0ea6b00eb6\"}", "{\"sha\": \"1a90e9d5881ff1c6a0838ab8c7916fadc9c6b1eb\", \"live\": true, \"id\": \"xec9ec152582cd71f\"}", "{\"sha\": \"7faa05f4443c610ceb4a1f4c39bda1a118aef859\", \"live\": true, \"id\": \"xa9aef8c009c5ff51\"}", "{\"sha\": \"55ea7517a6c14e7c1baa3f4f9e4bdc6bf97aae50\", \"live\": true, \"id\": \"x82b26b135ec6509c\"}", "{\"sha\": \"d945c9a77928ef8c6a25475c839a7a085bd3b302\", \"live\": true, \"id\": \"x2db0d4c22c41115b\"}", "{\"sha\": \"e7007550391cd08feeca055fb9d69ff6807181ce\", \"live\": true, \"id\": \"xa9c1aa40add04909\"}", "{\"sha\": \"47c3d234df0fcd1f58af8751b7a8add559cc7da1\", \"live\": true, \"id\": \"x0d1bf161a49943ab\"}", "{\"sha\": \"c718e8bba9ff57c7ec29e21a2fdf5a6b21f93b69\", \"live\": true, \"id\": \"x0a4b64a430b0ca19\"}", "{\"sha\": \"d82b703c177255bb7ef264f586f37c418c15194b\", \"live\": true, \"id\": \"xe8642e3af9cfe28f\"}", "{\"sha\": \"9da2a53cd6fc7cab089d26b835494d26aacba0f8\", \"live\": true, \"id\": \"x070d1db1c069af8d\"}", "{\"sha\": \"27445bf7e54994a1304d6267c3a85cea142230dd\", \"live\": true, \"id\": \"xbd14b1fad00c4d54\"}", "{\"sha\": \"34c204cf797af987ee71fc66473f35b07719e05f\", \"live\": true, \"id\": \"xbd6571c638e924a4\"}", "{\"sha\": \"40e38bfba0264cf7af209424aa9383a6e1b760f8\", \"live\": true, \"id\": \"xa0e918080f08c365\"}", "{\"sha\": \"6669756126dcd7afadee0a89e8d10dd67c9c5210\", \"live\": true, \"id\": \"x6e1edb7a239114a2\"}", "{\"sha\": \"7330f55509a473ac24f0068b544fe8d663372d33\", \"live\": true, \"id\": \"xd72a844464fa491d\"}", "{\"sha\": \"19fb5aa1d1444da2188b4fc4fb8049b22885559d\", \"live\": true, \"id\": \"x37c344aa56599f61\"}", "{\"sha\": \"69a38fe6452ccc8b3c0eca4950b0dcf40ec76466\", \"live\": true, \"id\": \"xec64fd669aa8c19b\"}", "{\"sha\": \"05c6d449ed0f0924c23b4a98abc0b7e362574fbc\", \"live\": true, \"id\": \"x370da5b46c01bed0\"}", "{\"sha\": \"ddd2cd3ba822dfb7210b2da7eb1b7e3bd79a2207\", \"live\": true, \"id\": \"x08b5724b506cb9b6\"}", "{\"sha\": \"f64ffbbcdb48d801e0e78c91cca11f93e1242dd0\", \"live\": true, \"id\": \"x6f347f69372e8db2\"}", "{\"sha\": \"4c3ac7c3d8ea2873024732393aaa727badfe0183\", \"live\": true, \"id\": \"xd9814d5250c7c091\"}", "{\"sha\": \"178f971f071c94bd486d2e47574f837314a06ab1\", \"live\": true, \"id\": \"x051f92d7a948b936\"}", "{\"sha\": \"3a907f162ba6092d2734fbe8f3b32f7d59c5ab51\", \"live\": true, \"id\": \"xefef8ef217af64a0\"}", "{\"sha\": \"303d5ad0503f7c7b2653c623b9bbabd44d1496ab\", \"live\": true, \"id\": \"x958a86e4248201d1\"}"], "description": "Practice solving equations by squaring or cubing both sides.", "basepoints": 10.0, "path": "equations-w-square-and-cube-roots/", "slug": "equations-w-square-and-cube-roots", "kind": "Exercise", "name": "equations-w-square-and-cube-roots", "seconds_per_fast_problem": 4.0, "prerequisites": ["cube_roots", "square_roots"], "exercise_id": "equations-w-square-and-cube-roots"}, "multiplying_fractions_by_integers": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/fractions-pre-alg/multiplying-fractions-pre-alg/multiplying_fractions_by_integers/", "id": "multiplying_fractions_by_integers", "display_name": "Multiplying fractions by whole numbers", "title": "Multiplying fractions by whole numbers", "all_assessment_items": ["{\"sha\": \"fe5ff8a444df70d92726d682e1ed4c78618adb86\", \"live\": true, \"id\": \"xf106e34a5ae3ea4d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c70adc4667c02c076446fd97a4a2f14b6206d17d\", \"live\": true, \"id\": \"x70cef33394bfb18d\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7b32f923cd8b67be1019426a102612cc6f158bcc\", \"live\": true, \"id\": \"x76d5ec3d88d62a85\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7cd1a183264dc16dcea9dc1c3e7530f04aa4144e\", \"live\": true, \"id\": \"xa7b81b9e863a9acf\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7a38e8585a01a9e986ff7e1a1b116085da6eef7a\", \"live\": true, \"id\": \"xc454b275e3adc1c2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2a1180a8b80d5f05f16cb768851727e7f3f1a1ca\", \"live\": true, \"id\": \"x2e32279905f09625\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"502f1a51c118500c3ffdadaea7607ba561e84ed3\", \"live\": true, \"id\": \"xf1f1579fcc638102\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c4fbabd417e84dd32726abc5f4beb1315fa746e5\", \"live\": true, \"id\": \"xd19bb30226945228\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"3fa8cec87ab5d43020cb90d6204393ff93b4c1bd\", \"live\": true, \"id\": \"x9f3895699087e8ef\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"7f956512c33a29aa3230300de94625d7034f7cf7\", \"live\": true, \"id\": \"x9c472f1dd5142ac3\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f5242dcbe2d52a078f1ffffd8494cab8e49cf631\", \"live\": true, \"id\": \"x16237d123ce6469e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0da0d4cf00e8eaef3a32e7c207c1641bd4fefdac\", \"live\": true, \"id\": \"x3a532f87d2a2052e\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1fe11d57090a46cfbcec9c02d7d15391e98fede8\", \"live\": true, \"id\": \"x4a42495d21216cb4\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"b26f913d35e510f9da7c7d6a3ace33c5b32f8384\", \"live\": true, \"id\": \"xcfc486259bef4405\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5b4be9badf67daaa82fb9fc823b357871e36031d\", \"live\": true, \"id\": \"x691bf63a69f0e7ed\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d60df75b0546e0154c613c4d3f95d5def46ef45a\", \"live\": true, \"id\": \"x0b1ad056af307485\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f88cd6dbb8bcb2046b32ff37c56c102adcf2ec31\", \"live\": true, \"id\": \"x4df573bba8973a39\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"8349ca20a05b3228c06a87e18741c5fcdc6ebf6d\", \"live\": true, \"id\": \"xcbc03ad7363363b9\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"165e7058795897290e1db1fac30fc7a5f791fbf2\", \"live\": true, \"id\": \"x3a7144064acf5641\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"4bc78a98411b785570acddb50225b9b90f2192be\", \"live\": true, \"id\": \"x8c86b9504b6b5210\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "Practice multiplying a whole number times a fraction.", "basepoints": 14.0, "slug": "multiplying_fractions_by_integers", "kind": "Exercise", "name": "multiplying_fractions_by_integers", "seconds_per_fast_problem": 7.0, "prerequisites": ["multiplying-unit-fractions-and-whole-numbers"], "exercise_id": "multiplying_fractions_by_integers"}, "one_step_equations": {"uses_assessment_items": true, "path": "khan/math/on-sixth-grade-math/on-patterning-algebra/on-variables-expressions/one_step_equations/", "id": "one_step_equations", "display_name": "One-step equations with addition and subtraction", "title": "One-step equations with addition and subtraction", "all_assessment_items": ["{\"sha\": \"71d1a431e6f85e9551cc8d90478a50f403bba060\", \"live\": true, \"id\": \"x615825c24953f4d9\"}", "{\"sha\": \"9d9d1417c598996da415afbdfad6aa56ede425ab\", \"live\": true, \"id\": \"x47384deb99c07a75\"}", "{\"sha\": \"0451ba58232addc30d5b1ef5aa0e01ebc8dc15ae\", \"live\": true, \"id\": \"xd3604fb92d4dbb7e\"}", "{\"sha\": \"58f1b50cb00c257f360ee0ad1cac88e021462456\", \"live\": true, \"id\": \"xfeee621bab9b32e0\"}", "{\"sha\": \"aa1cd31267ce551ce522ae0e0e03289f3e53949f\", \"live\": true, \"id\": \"xe104b77532e2cd3f\"}", "{\"sha\": \"4bcb8706e0f93b8122b025f80662ba605e5a6c62\", \"live\": true, \"id\": \"xb8f05399c37e290a\"}", "{\"sha\": \"31d8b0a3a6110324601acd32daca76587884388d\", \"live\": true, \"id\": \"xac6ec0428c0d634c\"}", "{\"sha\": \"db74dc6681b4e7d2b93392c342fd16f9c90f53a5\", \"live\": true, \"id\": \"x40f47dcc440e51bc\"}", "{\"sha\": \"a910e66f42d85f069ab5cd5f22b1dc661576cfc0\", \"live\": true, \"id\": \"xc80638e185bb213d\"}", "{\"sha\": \"c7ad8d4c8156f674c4aa14920f2e8b0dadf3fc71\", \"live\": true, \"id\": \"x6bd34751a891916e\"}", "{\"sha\": \"7d0a1c897ca85d73e738e221fb07f521368ca9a3\", \"live\": true, \"id\": \"xa72cd2ae9e5423a6\"}", "{\"sha\": \"4c7744131b3b8286f7a3ed741352494d10c656fd\", \"live\": true, \"id\": \"x507dfc7f00e013d6\"}", "{\"sha\": \"3f0772a829918e61b6937d8ea0cd9ed75322d028\", \"live\": true, \"id\": \"x93c092440d63bfc0\"}", "{\"sha\": \"de2f9b7d0abcb5472dce08eb8ef7dae03365097f\", \"live\": true, \"id\": \"x0cdb854d3b347dcc\"}", "{\"sha\": \"ddffe58391b70b2dba70cf71d1c39810bb6eb6bd\", \"live\": true, \"id\": \"x5f8e5c76fcb84b80\"}", "{\"sha\": \"e14633c55dae6d7b2852ecd8e149daf574c19ab3\", \"live\": true, \"id\": \"x4d7719e99a1521af\"}", "{\"sha\": \"a1b2fa2bc2c6e4cffffaea01efec055ded2d0a71\", \"live\": true, \"id\": \"x95f0a81725777da9\"}", "{\"sha\": \"29bc9e9112276f06fbfac05a3bca97520fb0db5d\", \"live\": true, \"id\": \"x982182955fcdcbfc\"}", "{\"sha\": \"eb277ef7ef978d8e10a334769cfcbed1e264f1c6\", \"live\": true, \"id\": \"x5a9410b589798ace\"}", "{\"sha\": \"ba1e35ff642d6518255007d9831d8c19d05628d1\", \"live\": true, \"id\": \"xc0240ec2721ffb82\"}", "{\"sha\": \"b1d9456b6dcb13ca15aae356100dda3ba050e028\", \"live\": true, \"id\": \"xf93b032ccb0c67bd\"}", "{\"sha\": \"e9382c561b14993ec5e95720c2d39d5566b7d811\", \"live\": true, \"id\": \"xe8b4bd1b9246d50e\"}", "{\"sha\": \"550581079cecbc7dcc72b85fb1089198d1f749db\", \"live\": true, \"id\": \"xf044ccfadb403da6\"}", "{\"sha\": \"591fb861d591b8649c7a22efaf71f646e3a3749f\", \"live\": true, \"id\": \"x796d5631cc58ee76\"}", "{\"sha\": \"5882c837ddabace3b529f7f6f306d664dc203cef\", \"live\": true, \"id\": \"x10200b586b4db22e\"}", "{\"sha\": \"e7e7cbd66c6ff2947b1ce7e54333047d054afa15\", \"live\": true, \"id\": \"x39695d430437b664\"}", "{\"sha\": \"f6af155e0c4362ff1ea102ca57690175a7158557\", \"live\": true, \"id\": \"x4e4f84766ae6b679\"}", "{\"sha\": \"5b08b3d7ac5eff676248f9078c3f0c3940a3734e\", \"live\": true, \"id\": \"x80392d8d335369fd\"}", "{\"sha\": \"7ab156188746dcea2b4a7d7ed7977b0f13ec000f\", \"live\": true, \"id\": \"xe1eaaa39c8ffca8a\"}", "{\"sha\": \"9b7913ec6deeab2922feadee50a4dda6b68dd833\", \"live\": true, \"id\": \"x58f50d4cc9351983\"}", "{\"sha\": \"632606c190c95b4f361b77a4b50199b5cbdb7189\", \"live\": true, \"id\": \"x6ed4feb035549c70\"}", "{\"sha\": \"871e749f26dac5bb7856f06e4756bf9fc03e20de\", \"live\": true, \"id\": \"x1bda0206234fb73a\"}"], "description": "Practice solving equations in one step by adding or subtracting a value from both sides.", "basepoints": 15.0, "slug": "one_step_equations", "kind": "Exercise", "name": "one_step_equations", "seconds_per_fast_problem": 8.0, "prerequisites": ["one_step_equation_intuition"], "exercise_id": "one_step_equations"}, "pleural-effusion-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/pleural-effusion-quiz/", "id": "pleural-effusion-quiz", "display_name": "NCLEX-RN questions on pleural effusion 1", "title": "NCLEX-RN questions on pleural effusion 1", "all_assessment_items": ["{\"sha\": \"465f419ba53fc3c964aa3ef1b45e5480b1401a37\", \"live\": true, \"id\": \"x77f3c8b506294b69\"}", "{\"sha\": \"6f6ddb37f5dce6278f49821b866dedd89622ffd8\", \"live\": true, \"id\": \"x0cad4165ca6f402e\"}", "{\"sha\": \"27e5517b00dd700e8259b937a7f043b11a5034ae\", \"live\": true, \"id\": \"xae1491b52b491bf2\"}", "{\"sha\": \"57a4acb749b6f1ea5e5f4a460439b0038516267b\", \"live\": true, \"id\": \"xddf5e9420cfdfc3d\"}", "{\"sha\": \"60f921b1d656277dca5af9c3e9e7f7140ba43e74\", \"live\": true, \"id\": \"x04926357d44d4f4d\"}", "{\"sha\": \"ab32f4672bc2e1e3c40e93b5ec5e39363c802d9f\", \"live\": true, \"id\": \"x291bd4cbf2685358\"}", "{\"sha\": \"a90cc42788478ba8c1a734192559170215ac4af7\", \"live\": true, \"id\": \"xf3fbfa7537970ae1\"}", "{\"sha\": \"3e56c99e6a0803b29d8defef073f70a40806fa8e\", \"live\": true, \"id\": \"x12f0196ff1934ade\"}", "{\"sha\": \"92024c535440a2f969b7939225a40683fd302719\", \"live\": true, \"id\": \"x16e1fc3e2c5a7956\"}", "{\"sha\": \"9c9bf11b8a331ee96a42943ae7516daae10c1625\", \"live\": true, \"id\": \"x13230096118a6f9f\"}"], "description": "Questions related to pleural effusion", "basepoints": 10.0, "slug": "pleural-effusion-quiz", "kind": "Exercise", "name": "pleural-effusion-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pleural-effusion-quiz"}, "principles-of-bioenergetics---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/principles-of-bioenergetics-passage-2/", "id": "principles-of-bioenergetics---passage-2", "display_name": "Control of glucose levels", "title": "Control of glucose levels", "all_assessment_items": ["{\"sha\": \"7c36c9a6393a8de0ebb60381183636d3ff2dc791\", \"live\": true, \"id\": \"xf64da1cb7b381568\"}", "{\"sha\": \"ca755956c148f7fac4ae7c306f4ec00038a997da\", \"live\": true, \"id\": \"xa714e311e17d420d\"}", "{\"sha\": \"71ee13ad4453497988edac39687e2a6d7768c35d\", \"live\": true, \"id\": \"xf8c33fb99033b37c\"}", "{\"sha\": \"7149c1f38d71db5b0db8a3099c0841a49da83203\", \"live\": true, \"id\": \"x3ab55816847ae8e9\"}", "{\"sha\": \"dc58107151dab2a198fc6495214df3053a15dca7\", \"live\": true, \"id\": \"x7ef0e8caca9fb461\"}"], "description": "", "basepoints": 10.0, "slug": "principles-of-bioenergetics-passage-2", "kind": "Exercise", "name": "principles-of-bioenergetics---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "principles-of-bioenergetics---passage-2"}, "simplifying_radicals": {"uses_assessment_items": false, "path": "khan/math/algebra/exponent-equations/simplifying-radical-expressions/simplifying_radicals/", "id": "simplifying_radicals", "display_name": "Simplifying square roots", "title": "Simplifying square roots", "description": "Express radicals in simplest form.", "basepoints": 18.0, "slug": "simplifying_radicals", "kind": "Exercise", "name": "simplifying_radicals", "seconds_per_fast_problem": 12.0, "prerequisites": ["square_roots", "properties-of-integer-exponents"], "exercise_id": "simplifying_radicals"}, "manipulating-formulas": {"uses_assessment_items": true, "path": "khan/math/algebra/solving-linear-equations-and-inequalities/solving_for_variable/manipulating-formulas/", "id": "manipulating-formulas", "display_name": "Manipulating formulas", "title": "Manipulating formulas", "all_assessment_items": ["{\"sha\": \"c6a8cf24c8e8b5b71262fe08b5ed242126bb4674\", \"live\": true, \"id\": \"x35c40f5a95fe064d\"}", "{\"sha\": \"cb761bfa1ace7a5b3a8ac571facdad3067ca2b15\", \"live\": true, \"id\": \"x409862422d0159bb\"}", "{\"sha\": \"cf64560f853005a68cb624d42919deccf95b6123\", \"live\": true, \"id\": \"xa99d3f804f0a89bd\"}", "{\"sha\": \"e6d154a843af079ee51a56934d4ab202c9dddbf9\", \"live\": true, \"id\": \"x15bc072ddf36c089\"}", "{\"sha\": \"efbdc4e5e7deb32a2033d623cf910dd4dcba20a0\", \"live\": true, \"id\": \"xffae91b9aa6ada19\"}", "{\"sha\": \"bf3440b401effad4cb747d4de97d2d5cd26f58be\", \"live\": true, \"id\": \"x05f7b66ed84b2823\"}", "{\"sha\": \"69b50ce53f3d4903c752ad5d1c44fab81c6810e8\", \"live\": true, \"id\": \"xdf84be106311d8cc\"}", "{\"sha\": \"79b2732e237a9ceb9b2e7ed60ebec823a4ca590c\", \"live\": true, \"id\": \"xd127111c29cd8be5\"}", "{\"sha\": \"aa19d0e8fae79e5705bb3c6fca894a20bfd9b97d\", \"live\": true, \"id\": \"x2884524f7fe39341\"}", "{\"sha\": \"c74dd785e7a5459456a348fab0cb24eec50c7d19\", \"live\": true, \"id\": \"x264f78f35d52676d\"}", "{\"sha\": \"41c058a8ea97dc7af8f8ad6e95ba960259d5192f\", \"live\": true, \"id\": \"x0a97bae0e40591c1\"}", "{\"sha\": \"154e750b0d2ff8910a12d5b4fa98f635a0d017a4\", \"live\": true, \"id\": \"x308a2814fe7dad0a\"}", "{\"sha\": \"6d9819196617f311c3234d5869fffc72a3e227f0\", \"live\": true, \"id\": \"xd739325c75cf2232\"}", "{\"sha\": \"a5cbe0949b0f049fe11b9624c465ec29bc0228b1\", \"live\": true, \"id\": \"x66129cd94530222f\"}", "{\"sha\": \"956c585e97a3f96096028409c8165097f0e6b0c3\", \"live\": true, \"id\": \"xc9be29a2e6dc47b8\"}", "{\"sha\": \"61250367970b8ff3f9b7905d1f2e17b4df1dcc71\", \"live\": true, \"id\": \"x56b046cb4c5790c8\"}", "{\"sha\": \"768ef13becdc3602f975c425d782999ff33a1673\", \"live\": true, \"id\": \"xc81556d02b404c1d\"}", "{\"sha\": \"5a12c45bf61612f6dca95a90de80ab76d9df0e18\", \"live\": true, \"id\": \"x7738c20308473c15\"}", "{\"sha\": \"a6449df2716d947a639e0827d378c4da86dffa17\", \"live\": true, \"id\": \"x25a50aad22c85b7f\"}", "{\"sha\": \"444ace6146e990ada0ddd575c4eb40fc81dad49b\", \"live\": true, \"id\": \"xc44690d9a4845688\"}", "{\"sha\": \"f23b3746a17254fc48f121dc4fbc91d93fa81094\", \"live\": true, \"id\": \"xce6b1c14b7e27d17\"}", "{\"sha\": \"4fad3435daf169b905dcdbf869f2ad4c0d7a6072\", \"live\": true, \"id\": \"x1db7deaf44f8729d\"}", "{\"sha\": \"b7ac0e5ec5a5d86bfb0a68218e4b1983234827ef\", \"live\": true, \"id\": \"xb4db47260ac43efa\"}", "{\"sha\": \"5bcb1a500c9f709ad29ff12cacacaa2abe60d76f\", \"live\": true, \"id\": \"x8412c490d273f4fa\"}", "{\"sha\": \"ff1abac6e4e7dbdbddd5476ad96bd95f46d85135\", \"live\": true, \"id\": \"x8fb20f7d8f461b79\"}", "{\"sha\": \"f623d08975344028cbb869a35a7c27b3fa045fc4\", \"live\": true, \"id\": \"x4b9b3843f21efb5a\"}", "{\"sha\": \"75987297b35440d1691989882b9130578479600b\", \"live\": true, \"id\": \"x1083190660ff4068\"}", "{\"sha\": \"244b5a8ef331ea271fff1d803e7d361a465f047c\", \"live\": true, \"id\": \"x5b329ab49bff3955\"}", "{\"sha\": \"c3f17e036c87e87c69071d195511199d9d0a9d90\", \"live\": true, \"id\": \"xba698da216cde021\"}", "{\"sha\": \"85c14e47e6f39ac3897751c5086ac0096c3a18ba\", \"live\": true, \"id\": \"xe77897020d2cdceb\"}"], "description": "", "basepoints": 26.0, "slug": "manipulating-formulas", "kind": "Exercise", "name": "manipulating-formulas", "seconds_per_fast_problem": 38.0, "prerequisites": ["solving_for_a_variable"], "exercise_id": "manipulating-formulas"}, "comparing_fractions_with_the_same_denominator": {"uses_assessment_items": false, "id": "comparing_fractions_with_the_same_denominator", "display_name": "Comparing fractions with the same denominator", "title": "Comparing fractions with the same denominator", "description": "Compare two fractions that have the same denominator using greater and less than symbols.", "basepoints": 5.0, "path": "comparing_fractions_with_the_same_denominator/", "slug": "comparing_fractions_with_the_same_denominator", "kind": "Exercise", "name": "comparing_fractions_with_the_same_denominator", "seconds_per_fast_problem": 0.0, "prerequisites": ["fractions_on_the_number_line_2", "recognizing_fractions", "comparing-fractions-with-the-same-numerator-or-denominator"], "exercise_id": "comparing_fractions_with_the_same_denominator"}, "inheritance-patterns-in-flowering-plants": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/inheritance-patterns-in-flowering-plants/", "id": "inheritance-patterns-in-flowering-plants", "display_name": "Inheritance patterns in flowering plants", "title": "Inheritance patterns in flowering plants", "all_assessment_items": ["{\"sha\": \"d260412de7f6002f71499420e60cecfc0bacf81e\", \"live\": true, \"id\": \"x8ab726793c73b5f0\"}", "{\"sha\": \"43f7b5b23de0759e4970c86ec8a8ee81026dee1f\", \"live\": true, \"id\": \"xf5403bc89e0955a0\"}", "{\"sha\": \"7e9fbed687948123f3521bc41d565f5ce1a2f076\", \"live\": true, \"id\": \"x1d34667e8d750643\"}", "{\"sha\": \"58bf713cc1b4eb49889f0b1886e14353192327b3\", \"live\": true, \"id\": \"x9c1bd6bb94070d27\"}", "{\"sha\": \"b9da0c662149e4f19a189d5b7a97e17bc0beb693\", \"live\": true, \"id\": \"xfbd6b01c799e1939\"}"], "description": "Questions related to Mendelian inhertiance", "basepoints": 10.0, "slug": "inheritance-patterns-in-flowering-plants", "kind": "Exercise", "name": "inheritance-patterns-in-flowering-plants", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "inheritance-patterns-in-flowering-plants"}, "masaccio-s-tribute-money-quiz": {"uses_assessment_items": true, "path": "khan/humanities/renaissance-reformation/early-renaissance1/painting-in-florence/masaccio-s-tribute-money-quiz/", "id": "masaccio-s-tribute-money-quiz", "display_name": "Masaccio, Tribute Money (quiz)", "title": "Masaccio, Tribute Money (quiz)", "all_assessment_items": ["{\"sha\": \"d0529f39ec6f5399b4e861deebaa2872a7f722d0\", \"live\": true, \"id\": \"x8d88dd9ffc27159d\"}", "{\"sha\": \"3c29a0266968aae15cde585636379846f7483306\", \"live\": true, \"id\": \"xd6ac56def839c761\"}", "{\"sha\": \"c599fa6ff7285d93e2bcd804bbfc2d063517da82\", \"live\": true, \"id\": \"x8f561cbfafd29f3f\"}", "{\"sha\": \"61f400404fedfdf77950f22b37b6bf9562ea1ed6\", \"live\": true, \"id\": \"x2bbe0b310326b9ba\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "masaccio-s-tribute-money-quiz", "kind": "Exercise", "name": "masaccio-s-tribute-money-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "masaccio-s-tribute-money-quiz"}, "non-cyanotic-heart-diseases-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/nclex-rn/nclex-practice-questions/nclex-rn-questions/non-cyanotic-heart-diseases-quiz/", "id": "non-cyanotic-heart-diseases-quiz", "display_name": "NCLEX-RN questions on acyanotic heart diseases 1", "title": "NCLEX-RN questions on acyanotic heart diseases 1", "all_assessment_items": ["{\"sha\": \"18e31778bfb6991103362bfdf46cd9ef16179fc3\", \"live\": true, \"id\": \"x5cac3d1b34f95542\"}", "{\"sha\": \"942c661c9ffad922ee447ea7e0fc054c6f3ac936\", \"live\": true, \"id\": \"xbd36261bd193c0f7\"}", "{\"sha\": \"2145d473c07c4fbfeecb2411bc96203f64220e47\", \"live\": true, \"id\": \"xda48bb8399581c63\"}", "{\"sha\": \"23c5aa0a33b16222ba0bc611801ec5054348ed40\", \"live\": true, \"id\": \"x6baa46afaf7a3012\"}", "{\"sha\": \"f4d731bb4b6cb0fa261eae9e29280574fdd4552a\", \"live\": true, \"id\": \"x681c33413207e409\"}", "{\"sha\": \"53fb3396cc750ad34c2121a0bcedf51ea5b65eb9\", \"live\": true, \"id\": \"xbdcd631edef4a216\"}", "{\"sha\": \"38e04769bff95c2b4212cafb81d2dc9279c8088f\", \"live\": true, \"id\": \"x7ad7d0b17436a7c3\"}", "{\"sha\": \"26f881c3c78c1fbad0e98877b9651df2bfa9b70f\", \"live\": true, \"id\": \"xc5b3e69d2b854bf7\"}", "{\"sha\": \"49231977f2a688d65a07a6bb04a7ccb363717aff\", \"live\": true, \"id\": \"x82b15fac4858748c\"}", "{\"sha\": \"96860c3f9497a57f137e84ad68a13a2bbf42280e\", \"live\": true, \"id\": \"xd70d9641b53ce2ce\"}"], "description": "NCLEX-RN questions related to non-cyanotic heart diseases.", "basepoints": 10.0, "slug": "non-cyanotic-heart-diseases-quiz", "kind": "Exercise", "name": "non-cyanotic-heart-diseases-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "non-cyanotic-heart-diseases-quiz"}, "recognizing-triangles": {"uses_assessment_items": true, "path": "khan/math/geometry/congruent-triangles/isoscleles_equil/recognizing-triangles/", "id": "recognizing-triangles", "display_name": "Recognizing triangle types", "title": "Recognizing triangle types", "all_assessment_items": ["{\"sha\": \"b86e62a08205f56a4bf64324bde94f52e378b85a\", \"live\": true, \"id\": \"x612c1ef48069aaa4\", \"perseus_api_major_version\": null}", "{\"sha\": \"8372bf2ea2de1269a5cd4a1f6673436870e7d2d4\", \"live\": true, \"id\": \"x242a21ea6275adc5\", \"perseus_api_major_version\": null}", "{\"sha\": \"4baf31a425ea70b0136b01d9620536e3662c294e\", \"live\": true, \"id\": \"x436690c903e3ce27\", \"perseus_api_major_version\": null}", "{\"sha\": \"ba594d3ffd49eb447ff9db41434add1191f06104\", \"live\": true, \"id\": \"xb7125a61193fa0a6\", \"perseus_api_major_version\": null}", "{\"sha\": \"a0f06365ae87522c82dfb30723f352ed88cce337\", \"live\": true, \"id\": \"xa45f1b446943b3ad\", \"perseus_api_major_version\": null}", "{\"sha\": \"36ded393f719e203f37bc29d3425f070dfac4bcb\", \"live\": true, \"id\": \"x10ae6315d8f4ac4b\", \"perseus_api_major_version\": null}", "{\"sha\": \"6ae158dfff8fe98d46cc6840ac0144aa96474418\", \"live\": true, \"id\": \"xc1d7afe3907cf4a8\", \"perseus_api_major_version\": null}", "{\"sha\": \"e953ea989d8c48d6c23ed462a7fc8fee72f8020b\", \"live\": true, \"id\": \"xab019c242f99b7b7\", \"perseus_api_major_version\": null}", "{\"sha\": \"1521002e6cb219e0fd79d91fd1d7a9f10f47b31f\", \"live\": true, \"id\": \"x91ccfec9a5f7d5cb\", \"perseus_api_major_version\": null}", "{\"sha\": \"d5b56a992548b9d65af118c8a8d0365cb0fc1c9e\", \"live\": true, \"id\": \"x2a0b0e1f3c0f806e\", \"perseus_api_major_version\": null}", "{\"sha\": \"fd544a473965677b035558a28f84e938938a57ab\", \"live\": true, \"id\": \"x7a9401a6d0a90b14\", \"perseus_api_major_version\": null}", "{\"sha\": \"003503b6ac9c61975fcfaba816327e397d9fe868\", \"live\": true, \"id\": \"x02705387fb2cbf96\", \"perseus_api_major_version\": null}", "{\"sha\": \"4ca37a1a415c6803f26bc864eac57fbe7972c564\", \"live\": true, \"id\": \"xcd50d834a9bd7bae\", \"perseus_api_major_version\": null}", "{\"sha\": \"8959f3005c77cedd79c77d6d0df1b2b5234f9340\", \"live\": true, \"id\": \"xa86e60ce792ff226\", \"perseus_api_major_version\": null}", "{\"sha\": \"e3ed7b5dad5a3b8764dcefb235a9934c80d1b6a1\", \"live\": true, \"id\": \"xc98df27736b304a0\", \"perseus_api_major_version\": null}", "{\"sha\": \"7a5a0717da4da3f7cc6d8d62443875a835009213\", \"live\": true, \"id\": \"x2861878ddb7bbd5d\", \"perseus_api_major_version\": null}", "{\"sha\": \"6ce457974ab694bd44b6f75bc29a9005d07dfac1\", \"live\": true, \"id\": \"xc4118462e7076e7a\", \"perseus_api_major_version\": null}", "{\"sha\": \"b67c096987289b70b42746201684d7707b3012e9\", \"live\": true, \"id\": \"x0d2386cc70124726\", \"perseus_api_major_version\": null}", "{\"sha\": \"36aaf920bd2bac79f1763fa089f39b6411680275\", \"live\": true, \"id\": \"xff6a80b10d6ecb09\", \"perseus_api_major_version\": null}", "{\"sha\": \"1d2115faf84770a3f64d823671dbb7efce84f44d\", \"live\": true, \"id\": \"x44be86b0fa98b125\", \"perseus_api_major_version\": null}", "{\"sha\": \"ab7d110562bd1d328af723f148f6a783f8920a16\", \"live\": true, \"id\": \"xd48f5a5631c1ad9d\", \"perseus_api_major_version\": null}", "{\"sha\": \"c890e2c1107ddf0337a209bf18194e3286d29fd0\", \"live\": true, \"id\": \"x933d1e8759c2b513\", \"perseus_api_major_version\": null}", "{\"sha\": \"a5dc9a73c39d4cf7dfff1237e4593d7849918350\", \"live\": true, \"id\": \"xd0228b79e54907a8\", \"perseus_api_major_version\": null}", "{\"sha\": \"39421efbcc0d01c2fbba26d41b6a81ff0e0e9e23\", \"live\": true, \"id\": \"xba2e021830fa5494\", \"perseus_api_major_version\": 0}", "{\"sha\": \"d30a9eff1d927acfa720b5661f41bb3b022c2d82\", \"live\": true, \"id\": \"x9ffa83c7a0524c9e\", \"perseus_api_major_version\": 0}", "{\"sha\": \"5042f22489b29146e51aa401f67fd7c201bd7818\", \"live\": true, \"id\": \"x397e9482fbc52ddd\", \"perseus_api_major_version\": 0}", "{\"sha\": \"db6d327221762d8521daa2a59098928dc090fa0c\", \"live\": true, \"id\": \"xf947fa65974c903a\", \"perseus_api_major_version\": 0}", "{\"sha\": \"a69264cff1ab1a73918d4a050b3aed9362a0de7a\", \"live\": true, \"id\": \"xc46d66229d1ded74\", \"perseus_api_major_version\": 0}", "{\"sha\": \"0f764b0ad8c994bbf85e27d79a506b79f544790b\", \"live\": true, \"id\": \"xe0bd516f296366b9\", \"perseus_api_major_version\": 0}", "{\"sha\": \"801c6a4d9b10f9c035c00a92aac54252b73788ee\", \"live\": true, \"id\": \"x7bdb8928625b6172\", \"perseus_api_major_version\": 0}"], "description": "Identify triangles by their angles as acute, right, or obtuse. \u00a0Identify triangles by their side-lengths as equilateral, isosceles, or scalene.", "basepoints": 10.0, "slug": "recognizing-triangles", "kind": "Exercise", "name": "recognizing-triangles", "seconds_per_fast_problem": 4.0, "prerequisites": ["drawing-right--acute--and-obtuse-angles"], "exercise_id": "recognizing-triangles"}, "overview-of-metabolism---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/overview-of-metabolism-passage-2/", "id": "overview-of-metabolism---passage-2", "display_name": "Studying metabolism with galvanic cells", "title": "Studying metabolism with galvanic cells", "all_assessment_items": ["{\"sha\": \"a1611e09f638f267cc6e7af4b4fb261000f7aa2b\", \"live\": true, \"id\": \"xfaee8b7f06e25641\", \"perseus_api_major_version\": 3}", "{\"sha\": \"1a97ebed5670b2be43376a85e22e87260831e833\", \"live\": true, \"id\": \"x892442fb40157ece\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d34eb58ea3832eb6b3aa035614ea2c7cbd59c0f0\", \"live\": true, \"id\": \"x1390a767fe94ef0f\", \"perseus_api_major_version\": 3}", "{\"sha\": \"3ec61ca7e866fbf90b32cf61874e229037d2abb9\", \"live\": true, \"id\": \"x3821fd38826895cf\", \"perseus_api_major_version\": 3}", "{\"sha\": \"81db75009a81dd9b79901efc65a3cffa96ccd269\", \"live\": true, \"id\": \"xa743beedab9bf7f1\", \"perseus_api_major_version\": 3}"], "description": "", "basepoints": 10.0, "slug": "overview-of-metabolism-passage-2", "kind": "Exercise", "name": "overview-of-metabolism---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "overview-of-metabolism---passage-2"}, "adding_decimals": {"uses_assessment_items": false, "path": "khan/math/pre-algebra/decimals-pre-alg/adding-decimals-pre-alg/adding_decimals/", "id": "adding_decimals", "display_name": "Adding decimals 1", "title": "Adding decimals 1", "description": "Add two numbers that are written to the ones, tenths, or hundredths place.\u00a0", "basepoints": 19.0, "slug": "adding_decimals", "kind": "Exercise", "name": "adding_decimals", "seconds_per_fast_problem": 15.0, "prerequisites": ["adding_decimals_0.5"], "exercise_id": "adding_decimals"}, "telling-time-word-problems": {"uses_assessment_items": true, "id": "telling-time-word-problems", "display_name": "Telling time word problems", "title": "Telling time word problems", "all_assessment_items": ["{\"sha\": \"b7e16c0fb3f433d72adad2de167b8a79fef5b2bf\", \"live\": true, \"id\": \"x559893e2458ce571\", \"perseus_api_major_version\": null}", "{\"sha\": \"e953dcfc88a563a7275bcd883316b0ef2de842d3\", \"live\": true, \"id\": \"x86022d513641f4f9\", \"perseus_api_major_version\": null}", "{\"sha\": \"661e1fe593fef9aed7477b326eeae59b713434f7\", \"live\": true, \"id\": \"x0d9a34036f89f740\", \"perseus_api_major_version\": null}", "{\"sha\": \"50dcac2a868c28e2b593ae68e0654039cf0004ef\", \"live\": true, \"id\": \"xb436f24924a01dfc\", \"perseus_api_major_version\": null}", "{\"sha\": \"71f478678a8eefb3138ccaa253cad9adf5e61def\", \"live\": true, \"id\": \"x93f6fa3c5dcb0708\", \"perseus_api_major_version\": null}", "{\"sha\": \"e8acdfe61cea0d7aadca378863697a99f1703d0b\", \"live\": true, \"id\": \"x274e97cb40e03711\", \"perseus_api_major_version\": null}", "{\"sha\": \"ae60444bde1c9340326a3cc991da2845c2abd4c3\", \"live\": true, \"id\": \"x501db2d2a2aa364d\", \"perseus_api_major_version\": null}", "{\"sha\": \"c83707783fb66ece4f0548c477c376a2b5d17258\", \"live\": true, \"id\": \"xaaa946df86ac8cbc\", \"perseus_api_major_version\": null}", "{\"sha\": \"0fe1da8abd5c9bb9313a4dcfb8b235d052d821f1\", \"live\": true, \"id\": \"xa2d0d42763972b9a\", \"perseus_api_major_version\": null}", "{\"sha\": \"dc64409de91ed46884eb7053e4cd56d001856511\", \"live\": true, \"id\": \"x602e663aaae8448d\", \"perseus_api_major_version\": null}", "{\"sha\": \"3e466c3fbe3d7694c10e5fb5294ae5e639f58735\", \"live\": true, \"id\": \"xcc02f479fa03cdd3\", \"perseus_api_major_version\": null}", "{\"sha\": \"d329a50c3edb442e1fca88e5f515f16053db6e41\", \"live\": true, \"id\": \"x72212b11c74f5372\", \"perseus_api_major_version\": null}", "{\"sha\": \"745faa5fa58ec6b980eeb950b3fd00d7595eb08d\", \"live\": true, \"id\": \"xfeb2d3b616530668\", \"perseus_api_major_version\": null}", "{\"sha\": \"a00066816dece37c8ed8494a4ec0d5e0c49eb5e5\", \"live\": true, \"id\": \"x8e0eb6b3550a2ec6\", \"perseus_api_major_version\": null}", "{\"sha\": \"913ca6b20cc18535331ebdb5a8b53516617b8552\", \"live\": true, \"id\": \"x6ca9ae2632497124\", \"perseus_api_major_version\": null}", "{\"sha\": \"e47d5995434e07eff589b8a46efab1494b5c9143\", \"live\": true, \"id\": \"xd61745c06e57836c\", \"perseus_api_major_version\": null}", "{\"sha\": \"dc9bef9ae480d95cba41afe9cf5258b56d4ca57e\", \"live\": true, \"id\": \"x73e69938963db72c\", \"perseus_api_major_version\": null}", "{\"sha\": \"7f8dd11f28a43f97a66a7766ba45154cf1e0d6bb\", \"live\": true, \"id\": \"x152b509d30504e90\", \"perseus_api_major_version\": null}", "{\"sha\": \"964cf087851ece2f7aa1ad3a590fe0603f82769a\", \"live\": true, \"id\": \"x1df50d06c1a1f40a\", \"perseus_api_major_version\": null}", "{\"sha\": \"96767b9911c4947f50d924e368d30189a55aca20\", \"live\": true, \"id\": \"xdcf2824581fa422e\", \"perseus_api_major_version\": null}"], "description": "Solve a word problem to find the duration of an event. \u00a0Select the analog or digital clock that matches the time an event ends.", "basepoints": 10.0, "path": "telling-time-word-problems/", "slug": "telling-time-word-problems", "kind": "Exercise", "name": "telling-time-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["telling-time-word-problems-with-the-number-line"], "exercise_id": "telling-time-word-problems"}, "quiz-1-4-origin-stories": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/what-is-big-history/origin-stories/quiz-1-4-origin-stories/", "id": "quiz-1-4-origin-stories", "display_name": "Quiz: Origin Stories", "title": "Quiz: Origin Stories", "all_assessment_items": ["{\"sha\": \"e74b57fc2cd5b8dbccf5455ba32f093cd9d608b7\", \"live\": true, \"id\": \"x927f5d8e9b8052b9\"}", "{\"sha\": \"f3f1436faba608f50b207872c28c7c5739ff4c79\", \"live\": true, \"id\": \"xfe015bb5f09a0d9b\"}", "{\"sha\": \"b63f36bee157f8fa7f72914a69b63e19eaebeb68\", \"live\": true, \"id\": \"x987fe68c56c6a665\"}", "{\"sha\": \"3f06e4a1bb732f24aeaea1b9d636ada10e80995e\", \"live\": true, \"id\": \"xcc3e05425452cefd\"}", "{\"sha\": \"ef0c5bd5e2a66f201b2ce28eab2b4ab88bb0cbb7\", \"live\": true, \"id\": \"xe5558084ec7db9cf\"}"], "description": "Quiz 1.2", "basepoints": 10.0, "slug": "quiz-1-4-origin-stories", "kind": "Exercise", "name": "quiz-1-4-origin-stories", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-1-4-origin-stories"}, "quiz-1-5-ways-of-knowing": {"uses_assessment_items": true, "path": "khan/partner-content/big-history-project/what-is-big-history/what-are-disciplines/quiz-1-5-ways-of-knowing/", "id": "quiz-1-5-ways-of-knowing", "display_name": "Quiz: What Are Disciplines?", "title": "Quiz: What Are Disciplines?", "all_assessment_items": ["{\"sha\": \"649fd10dce46bf6b95cf19a7a578482b9d9f003e\", \"live\": true, \"id\": \"xdc956156bc7fd5d0\"}", "{\"sha\": \"5f492ad890e855d01b6621e1acdb5e3a7230c2a5\", \"live\": true, \"id\": \"x3f3100a7a836cede\"}", "{\"sha\": \"1a7f11b00b7fd12f743a0767933dcf51db6f6cd0\", \"live\": true, \"id\": \"xb388b4ebcc102c98\"}", "{\"sha\": \"5396023cba792b406b3f2e2e1a93ebb60643dcfb\", \"live\": true, \"id\": \"x301ea4bd679b3b9e\"}", "{\"sha\": \"ed1c78feecaf75e24545a89fbe31240913f6c1c6\", \"live\": true, \"id\": \"x5a889dccc145473a\"}"], "description": "Quiz 1.3", "basepoints": 10.0, "slug": "quiz-1-5-ways-of-knowing", "kind": "Exercise", "name": "quiz-1-5-ways-of-knowing", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "quiz-1-5-ways-of-knowing"}, "pure-tone-audiometry-in-diagnosing-hearing-loss": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/pure-tone-audiometry-in-diagnosing-hearing-loss/", "id": "pure-tone-audiometry-in-diagnosing-hearing-loss", "display_name": "Pure Tone Audiometry in Diagnosing Hearing Loss", "title": "Pure Tone Audiometry in Diagnosing Hearing Loss", "all_assessment_items": ["{\"sha\": \"a87db6478f1d15e3d8dec73716035dbe92c6719f\", \"live\": true, \"id\": \"xd2c68351c055b0d3\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ae8a3b92d22bbaf122d11ee4f71280abba39560f\", \"live\": true, \"id\": \"xdf9d5fce11ebc9f7\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"03dd827224d5524994718479178186f1313104a7\", \"live\": true, \"id\": \"xb2ec16d848356190\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d66a8d3be8bcb81733a83209b5adcc7324f0c94c\", \"live\": true, \"id\": \"xfa057140296b417d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"82cb7add4b50a26457702f92b27ce0e8571ea7f5\", \"live\": true, \"id\": \"xbae88dd8c191a0d6\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Pure Tone Audiometry in Diagnosing Hearing Loss", "basepoints": 10.0, "slug": "pure-tone-audiometry-in-diagnosing-hearing-loss", "kind": "Exercise", "name": "pure-tone-audiometry-in-diagnosing-hearing-loss", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "pure-tone-audiometry-in-diagnosing-hearing-loss"}, "two-step-equations-with-decimals-and-fractions": {"uses_assessment_items": true, "id": "two-step-equations-with-decimals-and-fractions", "display_name": "Two-step equations with decimals and fractions", "title": "Two-step equations with decimals and fractions", "all_assessment_items": ["{\"sha\": \"a509ec5d8d893ff47a062b71b6ca78d60576292e\", \"live\": true, \"id\": \"x1ba1260e56f45b9d\"}", "{\"sha\": \"24912e69a01a7036b246c614fc9edcfeaa85eacb\", \"live\": true, \"id\": \"xcd53aaadf5e333d7\"}", "{\"sha\": \"f922976a7d28530a4cb53537cf7d5abdde804841\", \"live\": true, \"id\": \"x325cb34fc7401eab\"}", "{\"sha\": \"a3d987f834d95cdb822415bf53871b20a844d1e4\", \"live\": true, \"id\": \"xc89a7aaa27cae9a0\"}", "{\"sha\": \"51ba636739a6249e284275a2536cf784098d4368\", \"live\": true, \"id\": \"x9456c500b24bbafa\"}", "{\"sha\": \"e0875a440f44d08551ce58f1f79fcf3233e4c14a\", \"live\": true, \"id\": \"x3be755a2d0a1a0d0\"}", "{\"sha\": \"6056380ea1841943b146d55cafa667c15b38fbf3\", \"live\": true, \"id\": \"xc530cde1fae13e25\"}", "{\"sha\": \"4ee2530fce3ae3f7a6cf043bb115e708c82ad61a\", \"live\": true, \"id\": \"x79c78409308a6815\"}", "{\"sha\": \"89035a4f5eef0c4da71dcfad3d849d7f50fea724\", \"live\": true, \"id\": \"xa1af05473146eb4a\"}", "{\"sha\": \"301601947873b61adb86be68a376b64a9d322728\", \"live\": true, \"id\": \"xd4e0f1419fb627c5\"}", "{\"sha\": \"bd5cbfc5c6c4e31f9fb41d67c5ab5339fb187570\", \"live\": true, \"id\": \"xe79e72cdde21e5df\"}", "{\"sha\": \"6dcfc0439c249fc8a58da3ee0c03d709867ac278\", \"live\": true, \"id\": \"x7738b38a9d18d86a\"}", "{\"sha\": \"48e2098ba04235c2105362b8713866d3ea34b261\", \"live\": true, \"id\": \"x85f4e8ec230fba31\"}", "{\"sha\": \"9bdac22b81c2a8048bf205d0c23a6d0584f8f824\", \"live\": true, \"id\": \"xe8c3a389112f600a\"}", "{\"sha\": \"645edbbf1a36377d346f99c03e47d7d2164f6ff5\", \"live\": true, \"id\": \"xf38260ecd3781c39\"}", "{\"sha\": \"a784d51200f0a4ba19b5fb43c40c2287b17e5395\", \"live\": true, \"id\": \"xc018f9c46d7faaa1\"}", "{\"sha\": \"703312f5e36eb7b225ad6264e775e5ae47a5969c\", \"live\": true, \"id\": \"x2fb9d04d8b43b398\"}", "{\"sha\": \"ef1b5f97c7b85259c910b38f959d20089b7d47b7\", \"live\": true, \"id\": \"xeecc39fa8863b2ef\"}", "{\"sha\": \"bf7c791f2d7104e577949e703cb631035728e7be\", \"live\": true, \"id\": \"xaaf2853b5e0eb693\"}", "{\"sha\": \"846d914d1724169f3ce640b1a0ffb1a3f200fdbc\", \"live\": true, \"id\": \"x20517cef8dfdaf92\"}"], "description": "Practice solving equations that take two steps to solve. These problems involve arithmetic with fractions and decimals.", "basepoints": 10.0, "path": "two-step-equations-with-decimals-and-fractions/", "slug": "two-step-equations-with-decimals-and-fractions", "kind": "Exercise", "name": "two-step-equations-with-decimals-and-fractions", "seconds_per_fast_problem": 4.0, "prerequisites": ["linear_equations_2"], "exercise_id": "two-step-equations-with-decimals-and-fractions"}, "mideast-ww1": {"uses_assessment_items": true, "path": "khan/humanities/history/euro-hist/middle-east-20th-century/mideast-ww1/", "id": "mideast-ww1", "display_name": "The Middle East during and after WWI", "title": "The Middle East during and after WWI", "all_assessment_items": ["{\"sha\": \"229fd39a37d9c611c4a9e6b45f8b64d5d4bb739f\", \"live\": true, \"id\": \"xb511ff30\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bfdc4c32452a24ae03497394034999828e788800\", \"live\": true, \"id\": \"x162943dc\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"9f01083b207bc6bc347b472a09cc4fb99dd00977\", \"live\": true, \"id\": \"x057b1df8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0f14b654a8183ca1dfa4e90c8b269b92802ada7f\", \"live\": true, \"id\": \"x26968821\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"a18bc2a18830ab505d02819fab1f592810bdba49\", \"live\": true, \"id\": \"x72a2519d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"2779994f58c8efe954e2299127628af833bc5bff\", \"live\": true, \"id\": \"x21da7cde\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cdb08764292feb3f2c0c133c81712f3fcb2253b4\", \"live\": true, \"id\": \"x431cfbde\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"af7d312cca0bd65e23718cd8aa1f0bc240ea9cf7\", \"live\": true, \"id\": \"xe69b34bf\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "", "basepoints": 10.0, "slug": "mideast-ww1", "kind": "Exercise", "name": "mideast-ww1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "mideast-ww1"}, "converting_fractions_to_decimals": {"uses_assessment_items": false, "path": "khan/math/algebra-basics/core-algebra-foundations/algebra-foundations-decimal-operations/converting_fractions_to_decimals/", "id": "converting_fractions_to_decimals", "display_name": "Converting fractions to decimals", "title": "Converting fractions to decimals", "description": "Practice converting a fraction to a decimal.", "basepoints": 20.0, "slug": "converting_fractions_to_decimals", "kind": "Exercise", "name": "converting_fractions_to_decimals", "seconds_per_fast_problem": 16.0, "prerequisites": ["understanding-fractions-as-division", "dividing_decimals_0.5"], "exercise_id": "converting_fractions_to_decimals"}, "length-word-problems": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-word-problems/length-word-problems/", "id": "length-word-problems", "display_name": "Length word problems", "title": "Length word problems", "all_assessment_items": ["{\"sha\": \"a24e1346039a538061d1c7bd8457d4191f64c5bf\", \"live\": true, \"id\": \"xf69c0c3478634b40\"}", "{\"sha\": \"d56f27f9f5b5113c13d92780e5327358fdb4e1e8\", \"live\": true, \"id\": \"x2163f904412830ad\"}", "{\"sha\": \"de53e400dab70bd2f708343abf049734dba3497e\", \"live\": true, \"id\": \"xf70a920b8ae742a7\"}", "{\"sha\": \"18cb1a014d195b6d41495ca767b7447514856ecf\", \"live\": true, \"id\": \"xe27e2a3d075e78c8\"}", "{\"sha\": \"3f356d44a77dbac2713dc6daca0b4e656204a2d0\", \"live\": true, \"id\": \"x5a70518b774151ac\"}", "{\"sha\": \"9f56b765da880abbd4d371868d59754943460b82\", \"live\": true, \"id\": \"xd508aa477e7c19c8\"}", "{\"sha\": \"f44b7b0ef76c1e0ab29f2b2c117d0deb130f0637\", \"live\": true, \"id\": \"x9cdc065684e3fa34\"}", "{\"sha\": \"cb29be8f300c401490818bab59c515e58b0e1492\", \"live\": true, \"id\": \"xf2dfe8fefe583d1d\"}", "{\"sha\": \"c54330595d9a5e79335bf922ff6d3f1e162ef6cd\", \"live\": true, \"id\": \"x06b81913875b7661\"}", "{\"sha\": \"9d1e3a7e24e1ec2462d524a7966cd828a80d5f4d\", \"live\": true, \"id\": \"xbb712120977dec5f\"}", "{\"sha\": \"9f41598c72c80ab32d108ecea53b1213140e2260\", \"live\": true, \"id\": \"xc67e4831fe4ae1f3\"}", "{\"sha\": \"9528b4e8e55ecbe236bb47d54585e26132e5e90a\", \"live\": true, \"id\": \"x533d1e6628abd630\"}", "{\"sha\": \"b4cb7d361390879b4eff25df881c485901ce3024\", \"live\": true, \"id\": \"x29c5ce76066fc01b\"}", "{\"sha\": \"e86782d02ce60d79662d8e637d48b2b4ae5db111\", \"live\": true, \"id\": \"x80c42c303462cb74\"}", "{\"sha\": \"b574e30957d33efcf3aecc532143473cacc0b384\", \"live\": true, \"id\": \"xaeb4bcf92374d0e4\"}", "{\"sha\": \"1963d9466c24c3d04c4313866b24363403a63e9a\", \"live\": true, \"id\": \"x43a6df2e94fb4c00\"}", "{\"sha\": \"f865130e81f15e4fb76efff641336498c2bfc382\", \"live\": true, \"id\": \"xd212301720b3853c\"}", "{\"sha\": \"59c0cc4fc83aff0c45ac432e6a415a5f59b93489\", \"live\": true, \"id\": \"x5266a59c463a1967\"}", "{\"sha\": \"63f592b763a0565bc5ff9040200d0f231f7b7e21\", \"live\": true, \"id\": \"x23ff46a572d8c5dc\"}", "{\"sha\": \"9ebc6aa85aa40949b4240424b76d6189a1dbdf0d\", \"live\": true, \"id\": \"x15fd65157d706783\"}"], "description": "Add and subtract lengths to solve word problems.", "basepoints": 10.0, "slug": "length-word-problems", "kind": "Exercise", "name": "length-word-problems", "seconds_per_fast_problem": 4.0, "prerequisites": ["subtraction_3", "measuring-lengths-1", "comparing-lengths"], "exercise_id": "length-word-problems"}, "graphs-of-antiderivatives": {"uses_assessment_items": true, "path": "khan/math/integral-calculus/indefinite-definite-integrals/indefinite_integrals/graphs-of-antiderivatives/", "id": "graphs-of-antiderivatives", "display_name": "Graphs of antiderivatives", "title": "Graphs of antiderivatives", "all_assessment_items": ["{\"sha\": \"3ee8b987375ad1d1ec21fb2881ccbfbeb7baad30\", \"live\": true, \"id\": \"xf175fee3a8e411c2\"}", "{\"sha\": \"4917121f756f9cdf16286b92e9816173aed4ae7b\", \"live\": true, \"id\": \"xdd15c08a88e4a81c\"}", "{\"sha\": \"2b6ed31bca7dbf0403f2f79a4568d95f2238f367\", \"live\": true, \"id\": \"x459de9618500579a\"}", "{\"sha\": \"689f9410eb9ffb376d406c1e1b891c5c4b202192\", \"live\": true, \"id\": \"x38c4de9edc1443ab\"}", "{\"sha\": \"35bd8f85d98a3af2365b334d2709f5d691474114\", \"live\": true, \"id\": \"xfdd6a429a7298c93\"}", "{\"sha\": \"f3d13b570ef337d8e18ef98e83f6dd7734976fc2\", \"live\": true, \"id\": \"x14b805beaefc13ec\"}", "{\"sha\": \"5bf5cf08888acfb9ece8ac13398d4d24a2a310f5\", \"live\": true, \"id\": \"xe1cecfde05a26ca4\"}", "{\"sha\": \"2c82bce1161626edfa43674e197b5d6a0e5ec62a\", \"live\": true, \"id\": \"x4816676eea953d2d\"}", "{\"sha\": \"f0607643ae257e226e9734fa43a2e70f01fbd57a\", \"live\": true, \"id\": \"xb2bfcaeb4583e95a\"}", "{\"sha\": \"d5eb7c10ecf3be391de09da4925720f86ef0b693\", \"live\": true, \"id\": \"xb4f384bbdcc8b82d\"}", "{\"sha\": \"770b39474bcb261b6654ed44800c899aa44e8854\", \"live\": true, \"id\": \"x5c45d4a57b2e91a5\"}"], "description": "Identify the graphs of antiderivatives", "basepoints": 10.0, "slug": "graphs-of-antiderivatives", "kind": "Exercise", "name": "graphs-of-antiderivatives", "seconds_per_fast_problem": 4.0, "prerequisites": ["antiderivatives"], "exercise_id": "graphs-of-antiderivatives"}, "can-tickling-help-us-understand-some-symptoms-of-schizophrenia-": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/social-sciences-practice/social-science-practice-tut/can-tickling-help-us-understand-some-symptoms-of-schizophrenia-/", "id": "can-tickling-help-us-understand-some-symptoms-of-schizophrenia-", "display_name": "Can tickling help us understand some symptoms of schizophrenia?", "title": "Can tickling help us understand some symptoms of schizophrenia?", "all_assessment_items": ["{\"sha\": \"fd3bbf8662921cfce503267df4f611a8c0c49170\", \"live\": true, \"id\": \"x28cc4bff44251b40\"}", "{\"sha\": \"3c8e558e3630cd5e93991785055dcf174339c3ae\", \"live\": true, \"id\": \"x82b712d1689f76fe\"}", "{\"sha\": \"945b749a38d0f13e833d93095dd88e9b8d397c8f\", \"live\": true, \"id\": \"xda1b75af867c7884\"}", "{\"sha\": \"b06f7d2819be37e90386b64a7d719688ded0a808\", \"live\": true, \"id\": \"x18dde3f6594a3761\"}", "{\"sha\": \"dc3b1f4155f283153328b267a82bc7f89c7662ad\", \"live\": true, \"id\": \"x50cde506f6c4d4b4\"}"], "description": "Can tickling help us understand some symptoms of schizophrenia?", "basepoints": 10.0, "slug": "can-tickling-help-us-understand-some-symptoms-of-schizophrenia-", "kind": "Exercise", "name": "can-tickling-help-us-understand-some-symptoms-of-schizophrenia-", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "can-tickling-help-us-understand-some-symptoms-of-schizophrenia-"}, "identifying-whole--integer--and-rational-numbers": {"uses_assessment_items": true, "id": "identifying-whole--integer--and-rational-numbers", "display_name": "Classifying numbers", "title": "Classifying numbers", "all_assessment_items": ["{\"sha\": \"2228c7aef11a02b3dc968a12d8eb1e58c253467a\", \"live\": true, \"id\": \"x66d63e4abe1dfaf2\"}", "{\"sha\": \"b5e4881a35cc678114c3f5fe4fe7653d6500a336\", \"live\": true, \"id\": \"x7ce101cabec5cdaf\"}", "{\"sha\": \"cd32fc326bc489ba52326f9aff49db4cc3daa784\", \"live\": true, \"id\": \"xdcbb745868c1b4cb\"}", "{\"sha\": \"aabcf96e22a988d4cde978c0a16b6742b8c94349\", \"live\": true, \"id\": \"x28cb32aaa5d0259e\"}", "{\"sha\": \"756148f131fefd4ac7a3b06d07004e84feb7987a\", \"live\": true, \"id\": \"x6255669b3d9ab6d6\"}", "{\"sha\": \"34cdce537776db8f011a475c4a25e24576d737d2\", \"live\": true, \"id\": \"x2152fd96f79e723c\"}", "{\"sha\": \"6735ef1fd743c50d74089df917635003c60200b6\", \"live\": true, \"id\": \"x375c6b70e36bc615\"}", "{\"sha\": \"8f5430c1617a03013d956785c040c69c0c884fbb\", \"live\": true, \"id\": \"x825c2cf2d25ec443\"}", "{\"sha\": \"d5bb33e3fa549547792a816d74575accb701ca56\", \"live\": true, \"id\": \"xef4549f10f404866\"}", "{\"sha\": \"a2ef469e5b55fe59ba38e0d771a7c73a732e1040\", \"live\": true, \"id\": \"x91dc171ee8b20e36\"}", "{\"sha\": \"2e22bd3bc3b3dd97fe365d717a502f21f4ba90cf\", \"live\": true, \"id\": \"xd564d30c9159a2e6\"}", "{\"sha\": \"13c81a12cb093080aad66606994fb67998e8bde4\", \"live\": true, \"id\": \"xf050921a9611f228\"}", "{\"sha\": \"b7c935dce4aa3b044944637a5bd163c515f48550\", \"live\": true, \"id\": \"x3e8fedb71b1e51fd\"}", "{\"sha\": \"cf5ab3e4fa186061db954c9dac064e71c61236a3\", \"live\": true, \"id\": \"x466f0d5ce5678fac\"}", "{\"sha\": \"f8fa258d24923583e17a8107719b4e5ecc650427\", \"live\": true, \"id\": \"x68d7f4af4e971c6d\"}", "{\"sha\": \"90043e9f57717b169589ffcda147331f855c5469\", \"live\": true, \"id\": \"xbe934912e12c5ab6\"}", "{\"sha\": \"db4566514af61489cb483a8242ce189ec8ff9333\", \"live\": true, \"id\": \"x12b441d833e0c1ba\"}", "{\"sha\": \"17a156dfa088d01c965f1b19258c988b7eb16b20\", \"live\": true, \"id\": \"xd1c8be81cb860278\"}", "{\"sha\": \"7007154961e2aead14964ec7de36cb14d96d3303\", \"live\": true, \"id\": \"xf0c565f294b2052b\"}", "{\"sha\": \"ae5fd35a98176e2fc6d9cdfbe9ac43d13e43ea1d\", \"live\": true, \"id\": \"x83e88b9323860b93\"}", "{\"sha\": \"fd0424ce8493c70f9243fef9c43571515e7116ad\", \"live\": true, \"id\": \"xdbc796bbfae0d675\"}", "{\"sha\": \"9cc74dcb6cd50ef2f3c23468f5458dcdd5f5646d\", \"live\": true, \"id\": \"x4ce2718d8df8d850\"}", "{\"sha\": \"3fc9a3812f8bb30fc813ebc0d24dcd00f01c0577\", \"live\": true, \"id\": \"x2c9b16b8b9e92b45\"}", "{\"sha\": \"8f469668a75a7befcc91d900161305dcc74ebeee\", \"live\": true, \"id\": \"xb628bbfc325f846c\"}", "{\"sha\": \"27131cfdc7eec2747c207194eabc1bd666bd7a2b\", \"live\": true, \"id\": \"x45a25c334d59d206\"}", "{\"sha\": \"59083d9379f8b25945057917581c75e646025b6b\", \"live\": true, \"id\": \"x985d9f80ed9d96f9\"}", "{\"sha\": \"43f335cb03fa42d14cf191846b0ceae37247c8c6\", \"live\": true, \"id\": \"x6213ed7739657907\"}", "{\"sha\": \"ce3ff5742610b5a94a2937d4d5abc97a872126bf\", \"live\": true, \"id\": \"x6d13edf2ba2e3c59\"}", "{\"sha\": \"5207bf7218d5c2eb5bde11c9e296a30226a4ff16\", \"live\": true, \"id\": \"xec6ce65615a8dd4d\"}", "{\"sha\": \"a0f68c0aba66811f3cd3609db360507875ce5736\", \"live\": true, \"id\": \"x1edbcfe58048cb6b\"}", "{\"sha\": \"ef6df21f5610f844dba795322643ff0d2fb6dbcf\", \"live\": true, \"id\": \"x0bb6014ed95d2f76\"}", "{\"sha\": \"1974cca25ce63f328d52871f6b7d88a5a26a1cf2\", \"live\": true, \"id\": \"xb5e4df18ba7e166f\"}", "{\"sha\": \"263b07376572f4ca88f2e30768b423eaede9c9f2\", \"live\": true, \"id\": \"xc88ac544a6f29837\"}", "{\"sha\": \"fe1e33ee76c6fd77dfc6f10a02a99dc03eef6032\", \"live\": true, \"id\": \"xaa1d7e791260fcfc\"}"], "description": "Practice classifying numbers as whole, integer, rational, and irrational.", "basepoints": 10.0, "path": "identifying-whole-integer-and-rational-numbers/", "slug": "identifying-whole-integer-and-rational-numbers", "kind": "Exercise", "name": "identifying-whole--integer--and-rational-numbers", "seconds_per_fast_problem": 4.0, "prerequisites": ["recognizing-rational-and-irrational-numbers"], "exercise_id": "identifying-whole--integer--and-rational-numbers"}, "kritios-boy-quiz": {"uses_assessment_items": true, "path": "khan/humanities/ancient-art-civilizations/greek-art/early-classical/kritios-boy-quiz/", "id": "kritios-boy-quiz", "display_name": "Kritios Boy Quiz", "title": "Kritios Boy Quiz", "all_assessment_items": ["{\"sha\": \"c3a9e3efe58eae65005fd924c45c3a14434010a7\", \"live\": true, \"id\": \"x9793ee99f9271683\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5e6431ed04312778c3a7eefa8ed518c1397a8f60\", \"live\": true, \"id\": \"xc632e80e45c06798\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fdd1405bf07bd2eb10c9e7e611d56d1a0dc6645d\", \"live\": true, \"id\": \"x84b4c73bf5d68459\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"d0ef89a50a23c923978cb2d6b9452a9460a9d237\", \"live\": true, \"id\": \"x8d8bb1a42b3edc0e\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"27af1a6b0f423c8b7e1cf054f60d16b2603b854c\", \"live\": true, \"id\": \"x16ff3a577ba98012\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge about this object.", "basepoints": 10.0, "slug": "kritios-boy-quiz", "kind": "Exercise", "name": "kritios-boy-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "kritios-boy-quiz"}, "atoms--nuclear-decay--electronic-structure--and-atomic-chemical-behavior": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/atoms-nuclear-decay-electronic-structure-and-atomic-chemical-behavior/", "id": "atoms--nuclear-decay--electronic-structure--and-atomic-chemical-behavior", "display_name": "Alcohol production and absorption", "title": "Alcohol production and absorption", "all_assessment_items": ["{\"sha\": \"4555d75d1b9cfba87e739e9f715b8be1ba4dcda4\", \"live\": true, \"id\": \"xdefc0259f47e8d96\", \"perseus_api_major_version\": 3}", "{\"sha\": \"d4faa654140f055f3340b87ab1ead8a719180822\", \"live\": true, \"id\": \"x3decd21bc802e1cd\", \"perseus_api_major_version\": 3}", "{\"sha\": \"c6f5d13e1ee103ef7cca8091e71a3928178f590d\", \"live\": true, \"id\": \"x082ed5eabb6b89ad\", \"perseus_api_major_version\": 3}", "{\"sha\": \"6ea7c0c25bcc1d390c87bbac553caf08e1ca6d04\", \"live\": true, \"id\": \"x98bea71d78aaa1a0\", \"perseus_api_major_version\": 3}", "{\"sha\": \"125a17986ef2209cf5925c957947a6a4e0a0aad2\", \"live\": true, \"id\": \"x6aa48230ec69f36d\", \"perseus_api_major_version\": 3}"], "description": "Alcohol production and absorption", "basepoints": 10.0, "slug": "atoms-nuclear-decay-electronic-structure-and-atomic-chemical-behavior", "kind": "Exercise", "name": "atoms--nuclear-decay--electronic-structure--and-atomic-chemical-behavior", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "atoms--nuclear-decay--electronic-structure--and-atomic-chemical-behavior"}, "renal-system---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/renal-system-passage-1/", "id": "renal-system---passage-1", "display_name": "Hair dye chemicals and cancer", "title": "Hair dye chemicals and cancer", "all_assessment_items": ["{\"sha\": \"abf6da2cfb6af088d4247c37e78f00858762ee3b\", \"live\": true, \"id\": \"x5f38c7895affca03\"}", "{\"sha\": \"b7e832ad77bb5ecda5d16d9e9e0643ee783c249c\", \"live\": true, \"id\": \"x8524fce0546fff72\"}", "{\"sha\": \"f6ee17ef1d462db50a8c13fc5a642a41129e6b5b\", \"live\": true, \"id\": \"xcaf42c06d4e3917c\"}", "{\"sha\": \"2026445eea022e2a5620efb4da72aee47bf820f7\", \"live\": true, \"id\": \"xa33f5ca9104ec87c\"}", "{\"sha\": \"2d04e14ceceb22f7409bc55a1ab947a37b6fb952\", \"live\": true, \"id\": \"xdabf2e60a0a3f983\"}"], "description": "Renal system - Passage 1", "basepoints": 10.0, "slug": "renal-system-passage-1", "kind": "Exercise", "name": "renal-system---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "renal-system---passage-1"}, "renal-system---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/biological-sciences-practice/biological-sciences-practice-tut/renal-system-passage-2/", "id": "renal-system---passage-2", "display_name": "Measuring kidney function", "title": "Measuring kidney function", "all_assessment_items": ["{\"sha\": \"2942745b9fa292bc452f4099988f80a8db05bd8f\", \"live\": true, \"id\": \"xe3c8355ccab7d1b5\"}", "{\"sha\": \"1f9397fe28c43a568b400ba234aca4a18451bce6\", \"live\": true, \"id\": \"xf7ff01fa9ca05d7e\"}", "{\"sha\": \"314d0c69f2db698435cc291bef199aef666e55b7\", \"live\": true, \"id\": \"xdcc1f0630d702ced\"}", "{\"sha\": \"da5a09593360557e9f2c3bb4f16b475e01298691\", \"live\": true, \"id\": \"x46ee5f685391c323\"}", "{\"sha\": \"15e0afe79bdd44032b02f03682b879aadb6cbf1f\", \"live\": true, \"id\": \"x0ef2301340191c60\"}"], "description": "Renal system - Passage 2", "basepoints": 10.0, "slug": "renal-system-passage-2", "kind": "Exercise", "name": "renal-system---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "renal-system---passage-2"}, "function-notation-in-context": {"uses_assessment_items": true, "path": "khan/math/algebra/algebra-functions/functions-and-function-notation/function-notation-in-context/", "id": "function-notation-in-context", "display_name": "Interpreting function notation in context", "title": "Interpreting function notation in context", "all_assessment_items": ["{\"sha\": \"2c428312c07d1c7841198ecc40df895d2df08124\", \"live\": true, \"id\": \"xe5f2de39b5648f48\"}", "{\"sha\": \"4dee248649b21bf96495b2c20618ac7adc33c564\", \"live\": true, \"id\": \"x3341ffd5b077b6e4\"}", "{\"sha\": \"6c851f9d809068a328a7fbe6f7c4c681218febfd\", \"live\": true, \"id\": \"x1dbd13370b306986\"}", "{\"sha\": \"6c7398ec98c1221239118ac3cc551e6a0716cb0e\", \"live\": true, \"id\": \"xf3ddfe7779b96e0f\"}", "{\"sha\": \"20f4e7ba3461ded71bb1637c026518a38b5c3944\", \"live\": true, \"id\": \"x7f4f24f60dd2aa21\"}", "{\"sha\": \"2c8884b3f1fc9251645da875ea69ab0e86b4e2c5\", \"live\": true, \"id\": \"xee636d425c94ca59\"}", "{\"sha\": \"779993d644747cf34620e3b35fb7897824341b22\", \"live\": true, \"id\": \"xca95b7d18495ba6f\"}", "{\"sha\": \"88f36308ca7657e44a776ddb3331ec9f925ba3fc\", \"live\": true, \"id\": \"x8e050986fa8e5a96\"}", "{\"sha\": \"690cbe054b0bfdbf5d1462f64fc2be3e5330751a\", \"live\": true, \"id\": \"x297f369930e40016\"}", "{\"sha\": \"810010f47f81e4be6c5d027419689e7f01f95568\", \"live\": true, \"id\": \"x01579eed0e03569d\"}", "{\"sha\": \"1b186ead7283822c3cf6eb478605d5e60f472063\", \"live\": true, \"id\": \"x6bf1e405a7582b89\"}", "{\"sha\": \"bd5e0a20b4e26f2253a93a62d346bc4f20923e13\", \"live\": true, \"id\": \"x762db7ac4e20cf74\"}", "{\"sha\": \"c0c66efd46909c4320778f937345c76a4cefb16d\", \"live\": true, \"id\": \"x1992656e4d19d788\"}", "{\"sha\": \"7ee3a29b0d21e839de22690e08c272f420848eb4\", \"live\": true, \"id\": \"x5ead89b48714858e\"}", "{\"sha\": \"140c46189d1c12aa80ecc98ec6d25d78b729ae7c\", \"live\": true, \"id\": \"x8a0154fe91284293\"}", "{\"sha\": \"f9fb9475c93e687b0942e624d888e9752abd8636\", \"live\": true, \"id\": \"x6eb9a8ecbcb4e5a6\"}", "{\"sha\": \"9aeaabfdc5689b0684009457c8dce151e04180c1\", \"live\": true, \"id\": \"x0226b65413adecf3\"}", "{\"sha\": \"e031c3db3cee354e439417b413a0de59a94471cf\", \"live\": true, \"id\": \"x378585da408ec04c\"}", "{\"sha\": \"c613a575df2f85d0bfaf021f4f858f4c6753245f\", \"live\": true, \"id\": \"x034ec83590ecfce6\"}", "{\"sha\": \"a6305bdb13cb1c404a7774fdd45b1ed4d4259c13\", \"live\": true, \"id\": \"x6c2e07f21550ecf8\"}"], "description": "", "basepoints": 10.0, "slug": "function-notation-in-context", "kind": "Exercise", "name": "function-notation-in-context", "seconds_per_fast_problem": 4.0, "prerequisites": ["functions_2"], "exercise_id": "function-notation-in-context"}, "enzymes---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/enzymes-passage-2/", "id": "enzymes---passage-2", "display_name": "Lactate dehydrogenase and exhausted athletes", "title": "Lactate dehydrogenase and exhausted athletes", "all_assessment_items": ["{\"sha\": \"e4a604c6dffdf9463f31585085f7ffa4d4c4234a\", \"live\": true, \"id\": \"xbfdf6bef3b02b5f8\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ab50d4fc5ea149ae89dd7c73e5dbd57a9fbfb8d6\", \"live\": true, \"id\": \"xe44338ccb3053d88\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cd5a4b7ae08bf9d6d5ab7c5febc3d9e9d4a8d53b\", \"live\": true, \"id\": \"xc80f8faf0269711d\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf7fda3e72460504ce8c95eb8ade0d18b03bdbb9\", \"live\": true, \"id\": \"xf6e0f859a5a19d56\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"563e49b3374a5360ab90cbcf768b2514d91c96d9\", \"live\": true, \"id\": \"x8e0c65fd2c6eb37e\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "MCAT style passage and questions", "basepoints": 10.0, "slug": "enzymes-passage-2", "kind": "Exercise", "name": "enzymes---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "enzymes---passage-2"}, "enzymes---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/enzymes-passage-1/", "id": "enzymes---passage-1", "display_name": "The influence of histones on genetic inheritance", "title": "The influence of histones on genetic inheritance", "all_assessment_items": ["{\"sha\": \"decb4151b819493f2f31e665d3889eee4236ec27\", \"live\": true, \"id\": \"xdb65de6562dc5e2b\"}", "{\"sha\": \"47b31eb2ab2b1311ba103bab3060e10c8a9b70d7\", \"live\": true, \"id\": \"x2e8cb9a22e727691\"}", "{\"sha\": \"3904037cd16e8a27a103e11e640f9995c43f96e7\", \"live\": true, \"id\": \"xb4ad3be1b02c556c\"}", "{\"sha\": \"ea73bcd60e79e409233337ec4a247a192e98205e\", \"live\": true, \"id\": \"x9d50b0abb7d24dab\"}", "{\"sha\": \"71b8e98041a617f4c236a6dd745951690022d08f\", \"live\": true, \"id\": \"x51a2ab28d0d50382\"}"], "description": "This passage will test your knowledge on enzymes", "basepoints": 10.0, "slug": "enzymes-passage-1", "kind": "Exercise", "name": "enzymes---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "enzymes---passage-1"}, "translating-expressions-with-parentheses": {"uses_assessment_items": true, "path": "khan/math/pre-algebra/applying-math-reasoning-topic/constructing-numeric-expressions/translating-expressions-with-parentheses/", "id": "translating-expressions-with-parentheses", "display_name": "Translating expressions with parentheses", "title": "Translating expressions with parentheses", "all_assessment_items": ["{\"sha\": \"9797077985a74b888e303a4ffcd4041c5683ea95\", \"live\": true, \"id\": \"xc89b0e506751a1bd\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"0380ef61cc95887a387f8aa613bd65c0dc539972\", \"live\": true, \"id\": \"xa3d53f5645808374\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"12793313798700908994a80386e359885db94023\", \"live\": true, \"id\": \"x8318dde58e5e284a\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"2cbf329e07c035dddf8b6c6c10e7028acc21a0bc\", \"live\": true, \"id\": \"x32f7a4fbcae4e47b\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"f1e3750894b0b6f18cb4bb5fae803352bb2681e3\", \"live\": true, \"id\": \"xe402ae1c6806c4a6\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"1eb25c871c3973b1cf379be84428d458fc8f972e\", \"live\": true, \"id\": \"x210d89054a709711\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"29766dbd325c056920d4122c942faacf3a3da0e4\", \"live\": true, \"id\": \"xd01ee32cdcc06366\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"cf14e3aa0b341595dee3beceb6eac1612246e099\", \"live\": true, \"id\": \"x9c7ba2c688dfb53f\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"9d1384b418bfb5a61785efb639b17d654e6c2a06\", \"live\": true, \"id\": \"xd2a4d9254e0f3008\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"b1dcb86e6c6ec5f0daa7d20229ae571b8593854b\", \"live\": true, \"id\": \"x14875326a6636295\", \"perseus_api_major_version\": 2, \"requires_screen_or_mouse\": true}", "{\"sha\": \"af885ceb21c5581249399dd825054efbb1128261\", \"live\": true, \"id\": \"x742a3d196c16df89\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"c03dd1478ca1abda74ceb7a9600bb69b980a9360\", \"live\": true, \"id\": \"xc26f4ef659d43277\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e33a0e419329998fe75c7396b4758e90fbfa8e57\", \"live\": true, \"id\": \"xdb3b32f2bf98ee4f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"bec64c4885715320e1c495e9aa29b93d230b981a\", \"live\": true, \"id\": \"x970c41249193bf71\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"db418935ed074da36f400e87cfa0fb72ad92be45\", \"live\": true, \"id\": \"x023112af1e7a5561\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"ebf8c814806bd17380d9c258c21056f39d628f59\", \"live\": true, \"id\": \"x96a43d03e539ebad\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e7f0892206e0d53ee19e868c98645b40884e76b6\", \"live\": true, \"id\": \"x5e2cf1e311c50d0a\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"0027263e561f205e9c28dc97b49681e375129aea\", \"live\": true, \"id\": \"xa9129a0e5fb2fba0\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"cf0237224f32fc596e79704e28d789bd52bf1407\", \"live\": true, \"id\": \"x8e84b28fd9a758d2\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}", "{\"sha\": \"e357bcbc55cef46fde26dd786a00e6e9e6af9c36\", \"live\": true, \"id\": \"x06288208ac6f568f\", \"perseus_api_major_version\": null, \"requires_screen_or_mouse\": false}"], "description": "Practice changing expressions from words to math.", "basepoints": 10.0, "slug": "translating-expressions-with-parentheses", "kind": "Exercise", "name": "translating-expressions-with-parentheses", "seconds_per_fast_problem": 4.0, "prerequisites": ["expressions-with-parentheses"], "exercise_id": "translating-expressions-with-parentheses"}, "simone-martini-s-annunciation-quiz": {"uses_assessment_items": true, "path": "khan/humanities/medieval-world/late-gothic-italy/siena-late-gothic/simone-martini-s-annunciation-quiz/", "id": "simone-martini-s-annunciation-quiz", "display_name": "Simone Martini's Annunciation (quiz)", "title": "Simone Martini's Annunciation (quiz)", "all_assessment_items": ["{\"sha\": \"282258aca9b7fec48c4a34dd1ffa6c36318a4efa\", \"live\": true, \"id\": \"xd9544bd15b75fd42\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"09ed2dc9dff78ca84fcd5cf8430fc8147db4bc0a\", \"live\": true, \"id\": \"xaa06ccede7a15136\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"1ab3474d19250bec154cdc1cf28d41b8b4f75716\", \"live\": true, \"id\": \"xb1ed854d8ddb5ea2\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5a6861fe1ed48ab52401de89ef175fc5d72cc116\", \"live\": true, \"id\": \"xba7dfeff85117c3b\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "simone-martini-s-annunciation-quiz", "kind": "Exercise", "name": "simone-martini-s-annunciation-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "simone-martini-s-annunciation-quiz"}, "david-s-oath-of-the-horatii-quiz": {"uses_assessment_items": true, "path": "khan/test-prep/ap-art-history/later-europe-and-americas/enlightenment-revolution/david-s-oath-of-the-horatii-quiz/", "id": "david-s-oath-of-the-horatii-quiz", "display_name": "David's Oath of the Horatii Quiz", "title": "David's Oath of the Horatii Quiz", "all_assessment_items": ["{\"sha\": \"ececa7992a0aa447f1d6235e474d5322402240dd\", \"live\": true, \"id\": \"x262bfc233a5a9c30\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"fa49cf86b9a796a6ef4baa3ed15fc1c80203d1cc\", \"live\": true, \"id\": \"xf6c9cde8d0760912\", \"perseus_api_major_version\": 3, \"requires_screen_or_mouse\": false}", "{\"sha\": \"f453dba79ede1b92c8590f4aeca9ca53dbe25ab1\", \"live\": true, \"id\": \"x38b04867ea431ee0\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}", "{\"sha\": \"5993f1b3f49c10a91060e6fa5e0f1af4ba18b3ed\", \"live\": true, \"id\": \"xa458e2f920d085bc\", \"perseus_api_major_version\": 0, \"requires_screen_or_mouse\": false}"], "description": "This quiz is for the video David, Oath of the Horatii.", "basepoints": 10.0, "slug": "david-s-oath-of-the-horatii-quiz", "kind": "Exercise", "name": "david-s-oath-of-the-horatii-quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "david-s-oath-of-the-horatii-quiz"}, "fluids-at-rest---passage-2": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/fluids-at-rest-passage-2/", "id": "fluids-at-rest---passage-2", "display_name": "Coronary heart disease and blood pressure", "title": "Coronary heart disease and blood pressure", "all_assessment_items": ["{\"sha\": \"30adf6181daade892bd57a91c61dbdbea9cd2ec4\", \"live\": true, \"id\": \"xe75930b8f7d17fee\"}", "{\"sha\": \"0cf7f20446f456e0f2f73e62c945deee7e4063bf\", \"live\": true, \"id\": \"xe069a7708fd22a85\"}", "{\"sha\": \"12c833f6a567df867ef2ba25f9322ba5bb8311ed\", \"live\": true, \"id\": \"x7d9bf49ed6c5b921\"}", "{\"sha\": \"b246ba8fcc4394d1a8346da4055ccb5972977603\", \"live\": true, \"id\": \"x1f205a8fe1e6e233\"}", "{\"sha\": \"4baf17cfa96861774ad11a76fff137bcfcef5317\", \"live\": true, \"id\": \"x1bce9da5dc63a56d\"}"], "description": "This passage will test your knowledge on fluids at rest", "basepoints": 10.0, "slug": "fluids-at-rest-passage-2", "kind": "Exercise", "name": "fluids-at-rest---passage-2", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fluids-at-rest---passage-2"}, "addition-and-subtraction-word-problems-within-20--level-4": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-more-fewer-20/addition-and-subtraction-word-problems-within-20-level-4/", "id": "addition-and-subtraction-word-problems-within-20--level-4", "display_name": "Word problems with \"more\" and \"fewer\" 2", "title": "Word problems with \"more\" and \"fewer\" 2", "all_assessment_items": ["{\"sha\": \"0f3f8aa753dfedc486d2beafce981b3cdad99c17\", \"live\": true, \"id\": \"x328a72c64265b6c8\"}", "{\"sha\": \"dfbccd6463436d5a1f6c084082f7ac61fa4443a5\", \"live\": true, \"id\": \"xda0a7a8d044f8a5e\"}", "{\"sha\": \"4008094611fad6f35bd570b39b2a6fa34c4b0f60\", \"live\": true, \"id\": \"xc913f67502825300\"}", "{\"sha\": \"6daf5ccfc6c1eb30babd8b9a0dc0fd5a5c277288\", \"live\": true, \"id\": \"x6c5af6421cd912bd\"}", "{\"sha\": \"36298b30ac3999ff01262b5b6bec419885de540d\", \"live\": true, \"id\": \"x0a219c1c266cb5de\"}", "{\"sha\": \"e1369eeea21b489a35d56d61d7195b1de55099c9\", \"live\": true, \"id\": \"x5c5b8437850c2178\"}", "{\"sha\": \"db799ae1c42680f7b6453bdfabdc1beeab861098\", \"live\": true, \"id\": \"x817aa06adbd2d963\"}", "{\"sha\": \"5c9647b95b351aeabf04d9febd95f686d4a45e27\", \"live\": true, \"id\": \"x8dc88aba57be0df7\"}", "{\"sha\": \"3e8bfd2e5173e3644f7a242fdb9e2c88e64b65f7\", \"live\": true, \"id\": \"x7cb0bf9999039f82\"}", "{\"sha\": \"533e6bb5f31e044ab271f35db313215a2bf0714d\", \"live\": true, \"id\": \"xa24ced665c374552\"}", "{\"sha\": \"d3fd1776257c264a1c6e77a0f43559bda4c84808\", \"live\": true, \"id\": \"xe8a09f8c4bd0c5fd\"}", "{\"sha\": \"e5f571c6031def7f3342f2ca74aeca1777a10c22\", \"live\": true, \"id\": \"x16f45101540e0530\"}", "{\"sha\": \"fb6bdfdd1888738f8fc01c0b86dadbee7f175f8d\", \"live\": true, \"id\": \"x04e2dedf42a8f296\"}", "{\"sha\": \"5dda4ee59d732e8cdb337d23733c5d9fcfb003e1\", \"live\": true, \"id\": \"xfe1a297dca3f0098\"}", "{\"sha\": \"6f2bd5d44a74711ce5350015f4599c19de0a5743\", \"live\": true, \"id\": \"x2f7f175dd5fc729f\"}", "{\"sha\": \"c2dba9fb90c69f989cd86ad1a406bb2f95ac49c8\", \"live\": true, \"id\": \"x41cd8d55a9447005\"}", "{\"sha\": \"2dcdde0ffdadd13756ed683917e8b7de3d972153\", \"live\": true, \"id\": \"xf38199b9d06566aa\"}", "{\"sha\": \"4b1dd087240567ffc514a59c5a0eaaa966084157\", \"live\": true, \"id\": \"x3a56da2eb4e9d2ed\"}", "{\"sha\": \"aeeb3792d976e111f29f701250b1af3fd882ff89\", \"live\": true, \"id\": \"x7d880118bc87a938\"}", "{\"sha\": \"62569cd3c879063e96fddd2989ece1727689100d\", \"live\": true, \"id\": \"xed3f2e1ed31d48dc\"}", "{\"sha\": \"3481630622796da088bffb8804d4480feca0af49\", \"live\": true, \"id\": \"x0074884e5e7908e6\"}", "{\"sha\": \"eb00374c10c21559f31700f6f17c4a1aea9fed47\", \"live\": true, \"id\": \"x7d5b4d489cd2e7af\"}", "{\"sha\": \"27bea4dbbdfb74c1a033b0d387f4ce4cf46e029e\", \"live\": true, \"id\": \"x781505b6e54bd56d\"}", "{\"sha\": \"417f32f91cc7fe973c04ae52915628b473bc64b9\", \"live\": true, \"id\": \"xfb1a0e4e39d03583\"}", "{\"sha\": \"fc6b70254e4300c0a203b19a4e95b0711ee27189\", \"live\": true, \"id\": \"xc5aed519a555fda3\"}", "{\"sha\": \"f4a50ec5e6189e3c109d2d8486c249fc85774a46\", \"live\": true, \"id\": \"x46baeb0a89953539\"}", "{\"sha\": \"16be44bae5f57434a1d7191d8846cc9a35f8e91d\", \"live\": true, \"id\": \"xa212c59ba18e8c8c\"}", "{\"sha\": \"9c9748c9c1f22af5129086f223bb9273358699af\", \"live\": true, \"id\": \"x4a5015c993eabd79\"}", "{\"sha\": \"ba9393de747539481abad0c961dadf6eb6fd2bfa\", \"live\": true, \"id\": \"xfe561f02ce549a59\"}", "{\"sha\": \"bd3fa1b85f3ed7ad878511f181c80cc13a67fdef\", \"live\": true, \"id\": \"x08359acaed4c4943\"}", "{\"sha\": \"f8ec7fa42250feb4210ffafa5aa45eefbc105762\", \"live\": true, \"id\": \"x6e88ce0426f0795b\"}", "{\"sha\": \"100609e8c60409e8c2020a94509af5cfb4b1a720\", \"live\": true, \"id\": \"xbd29f203f35cf6f3\"}", "{\"sha\": \"3c8f566014e9102bf3c0c9d31dd0b011cc1bbcd6\", \"live\": true, \"id\": \"x6b82232a105dbaf2\"}", "{\"sha\": \"d69c346ea5859fea63c2e2dd4e826f53ebdb3d46\", \"live\": true, \"id\": \"xe44c36d7a872e3fe\"}", "{\"sha\": \"53bd3d2093a604f227b43a7e51b2f7ca518fb61c\", \"live\": true, \"id\": \"x99af1a340ef562b5\"}", "{\"sha\": \"c45da1c94d2cf880aaba03f7f0b3dacdbee62df9\", \"live\": true, \"id\": \"x4b9fad5f118fad78\"}", "{\"sha\": \"d19bf592594c0f3c0f70d010fa941c28bf3b105c\", \"live\": true, \"id\": \"xe4429f47b4e78315\"}", "{\"sha\": \"969ec67c6a3140f33aa0826c31fdde68798d3a55\", \"live\": true, \"id\": \"x64888982d356b81d\"}", "{\"sha\": \"f05b0471ac7c76b957f1c8b4cdc39e88330c5f78\", \"live\": true, \"id\": \"x44f4a8b96e19ec8c\"}", "{\"sha\": \"65babfe16366397099b5bea7a38fbc7ac774c920\", \"live\": true, \"id\": \"x785e619c74d59d55\"}", "{\"sha\": \"2820e14f45de104b29c350f8f626ff274d889a65\", \"live\": true, \"id\": \"x2feefa82d8459f65\"}", "{\"sha\": \"01d2e837e5be77b9acad92e193759fbe30d8547c\", \"live\": true, \"id\": \"xd07675268b2db40b\"}", "{\"sha\": \"43e282ccd1c3511e07dc046310aaa99f621b2781\", \"live\": true, \"id\": \"x6e722f5cd84570b0\"}", "{\"sha\": \"5984080808b4989e215b6944a71402354db9f9aa\", \"live\": true, \"id\": \"x93cbf61b273d63b9\"}", "{\"sha\": \"93a93376a3cea7854406796c2f92757bc76210bc\", \"live\": true, \"id\": \"x3d495a9352802d82\"}", "{\"sha\": \"5f485b56a0c1d26d68e20bb371316e471ef6edea\", \"live\": true, \"id\": \"x61a388ae4b6676cd\"}", "{\"sha\": \"757995131b0346b7c7d14d89b70ea8d44f4ffc08\", \"live\": true, \"id\": \"xaef8fa8311cdb119\"}", "{\"sha\": \"0a9445f4864c572a873054cd9592d2f42b7ea3b4\", \"live\": true, \"id\": \"x33e88bc6e6c3494f\"}", "{\"sha\": \"1505ad9d3deab02d811d27007327443f3cd1edba\", \"live\": true, \"id\": \"x6618f716f5b874a7\"}", "{\"sha\": \"a3447e57c4e8a9e4ebea4340dd63afbdde28477c\", \"live\": true, \"id\": \"x92b45d3727c4412d\"}", "{\"sha\": \"bbd486117b1e7ca9e4e96d0bfc52fe9bd209310e\", \"live\": true, \"id\": \"x695576404942cf66\"}", "{\"sha\": \"755431be976d9551a40503cf200bdcb61654fd21\", \"live\": true, \"id\": \"x2ae6e028e5beb647\"}", "{\"sha\": \"c4f20b0b451b66ef24ddfee550cd7f851d45d6af\", \"live\": true, \"id\": \"x1e14c1d888b5b420\"}", "{\"sha\": \"3336764de3995936cfc50de3045968bbe345c5c1\", \"live\": true, \"id\": \"x93d7813604ad45b4\"}", "{\"sha\": \"e2cb1210058e65db6336392772140b5c0107258a\", \"live\": true, \"id\": \"xfd371dc9a65ccfac\"}", "{\"sha\": \"ebeb40f125e8dde033100c0e45c3ca2eeccdb07f\", \"live\": true, \"id\": \"x2ca00ad7c54f39e1\"}", "{\"sha\": \"f15014405d9bad6bd42136d5c41ac645d52ca5c4\", \"live\": true, \"id\": \"x4ffd8ab9db158a2a\"}", "{\"sha\": \"462e34b0bf8d320e5308c3d9e3283f0bcf9ed7e2\", \"live\": true, \"id\": \"xbc212ef929cb5307\"}", "{\"sha\": \"d73b22f136bcabfa46dca60df5f9a68d770cd4fc\", \"live\": true, \"id\": \"x2f173c12819917b9\"}", "{\"sha\": \"6de5a6ca843faf1c15f0df6121d67999ebf2609e\", \"live\": true, \"id\": \"x27dc5ddfef699495\"}"], "description": "Practice solving more word problems by finding how many more (or fewer) objects there are.\u00a0Numbers used are 20 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-20-level-4", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-20--level-4", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-and-subtraction-word-problems-within-20--level-3"], "exercise_id": "addition-and-subtraction-word-problems-within-20--level-4"}, "fluids-at-rest---passage-1": {"uses_assessment_items": true, "path": "khan/test-prep/mcat/physical-sciences-practice/physical-sciences-practice-tut/fluids-at-rest-passage-1/", "id": "fluids-at-rest---passage-1", "display_name": "A scale under water", "title": "A scale under water", "all_assessment_items": ["{\"sha\": \"86eebde59b99fd9c833be4adbd0a476527042001\", \"live\": true, \"id\": \"x9b44a7eed913c1ed\"}", "{\"sha\": \"331945a8d1378d52315e3b787745287b58ee9ab6\", \"live\": true, \"id\": \"xe819c7e880fb0edd\"}", "{\"sha\": \"f44d6e58e09a769444a5eaff6385eeecd1428366\", \"live\": true, \"id\": \"x6cef2a373d0e6581\"}", "{\"sha\": \"c6dea5cead3a98546465f2fa9f70b62efb335a4b\", \"live\": true, \"id\": \"x672f1c9ba88d01a5\"}", "{\"sha\": \"ddd77c13055241afc949ad84cc58a6c52fc6c88d\", \"live\": true, \"id\": \"x8757b5fc9969ec80\"}"], "description": "This passage will test your knowledge on fluids at rest\u00a0", "basepoints": 10.0, "slug": "fluids-at-rest-passage-1", "kind": "Exercise", "name": "fluids-at-rest---passage-1", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "fluids-at-rest---passage-1"}, "addition-and-subtraction-word-problems-within-20--level-2": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-within-20/addition-and-subtraction-word-problems-within-20-level-2/", "id": "addition-and-subtraction-word-problems-within-20--level-2", "display_name": "Addition and subtraction word problems 2", "title": "Addition and subtraction word problems 2", "all_assessment_items": ["{\"sha\": \"fd59726103624687bb71743692b803cafbfe56d0\", \"live\": true, \"id\": \"xb3fb66c33d378bae\"}", "{\"sha\": \"b796d0b0571332e0a50d1230c71cf2b02e86d705\", \"live\": true, \"id\": \"xb0b75489da16b240\"}", "{\"sha\": \"b5079bf90197186dbfcda407fc75afc4f9f82c7b\", \"live\": true, \"id\": \"xf55da9c07581af0e\"}", "{\"sha\": \"98ec8556fd9c1685659e0dce7e6a4917b4362e5c\", \"live\": true, \"id\": \"xd1e9229bad9a069c\"}", "{\"sha\": \"125ff9de6459fcebe06aa5dbcf44af6c89979f85\", \"live\": true, \"id\": \"x868c9c13737df363\"}", "{\"sha\": \"521bdb5bb8c97779f6462374ea300635f5bccbdf\", \"live\": true, \"id\": \"x582692b8a8562204\"}", "{\"sha\": \"67b4958bd6185b296d94bef79d33fcc74c78dc2e\", \"live\": true, \"id\": \"xe87e6f798aecbf27\"}", "{\"sha\": \"d97d14f13d61048f589cd443f9327ebf9b36b57a\", \"live\": true, \"id\": \"xa0db185ad360051f\"}", "{\"sha\": \"9e1b5a6f709e81ad0a66f894dbe445111b083d9e\", \"live\": true, \"id\": \"xd968aabbca239d8e\"}", "{\"sha\": \"d6fbbfd06384931158445e7efb77a2ab95cd48be\", \"live\": true, \"id\": \"x2502bb16c944dcac\"}", "{\"sha\": \"3aa5a94fea929d2533dc5361c4fc73cb68212c34\", \"live\": true, \"id\": \"xdec49005b8cc5dab\"}", "{\"sha\": \"d35761bf1dbb6d317a6469a747327e78c8706f64\", \"live\": true, \"id\": \"xce7933d9b94500fa\"}", "{\"sha\": \"1be109b2d2bd5d742bb3ef8747b8200fd709d927\", \"live\": true, \"id\": \"x05697a3e348d43ab\"}", "{\"sha\": \"92cec9824fb69082b21a549f5ce2cd8494cff4bb\", \"live\": true, \"id\": \"xa972ad557af9afd6\"}", "{\"sha\": \"ad21d63e1f0b2bd947cb029bdbec5929197db844\", \"live\": true, \"id\": \"x5f8430144a7c0be1\"}", "{\"sha\": \"3bddbaa65d3eb9db844eece0def530754a525e71\", \"live\": true, \"id\": \"xb0398d292a9aec6e\"}", "{\"sha\": \"82725929d36ce31ab590dc59fd6f80df4ca23001\", \"live\": true, \"id\": \"x6b201c85aaf86619\"}", "{\"sha\": \"5e21a16f13ab976ac90be6ea8495fb6a5a9f6dd7\", \"live\": true, \"id\": \"x1193dcc9fdfa3042\"}", "{\"sha\": \"b72ff6973cf7c11824ac534f9b0f2142e6394490\", \"live\": true, \"id\": \"x0aea255490ba691f\"}", "{\"sha\": \"b4703845b4bf697bb5c778a6579aec08b9ea83e8\", \"live\": true, \"id\": \"xea30bbf806b5dcf3\"}", "{\"sha\": \"0c3d6483514dc0e5c8aa9a87b6060e24ae6ad673\", \"live\": true, \"id\": \"xb7288afaac5e0e27\"}", "{\"sha\": \"5cef5d9650d166ad397b687d310521c5d9170026\", \"live\": true, \"id\": \"x164577352377ab6e\"}", "{\"sha\": \"d0f1c00b7dee6e08fdc06d2a110fe60d92d14abc\", \"live\": true, \"id\": \"xf9d055a7597bd17f\"}", "{\"sha\": \"37da050a670e726ab86bb1e09fc9a59956eb1b71\", \"live\": true, \"id\": \"x8405fe065debf063\"}", "{\"sha\": \"5be7e0818d789af8818cd40ca30b4314ec7e850e\", \"live\": true, \"id\": \"xb303295739de0097\"}", "{\"sha\": \"3ebbfd23b6edb611f014417821318a3adc741ef6\", \"live\": true, \"id\": \"xcdd83e8ba32d54b1\"}", "{\"sha\": \"4adaf338899488aa7dba19822ebf7fe393b905d4\", \"live\": true, \"id\": \"x1f3b3bda040f21cb\"}", "{\"sha\": \"b95e40f05f013328d48a4543211ba704034bd064\", \"live\": true, \"id\": \"x16c90094bfbea99e\"}", "{\"sha\": \"eb220b140fd6aceb712669a59c9a15c5cfae519a\", \"live\": true, \"id\": \"xd20187348343225c\"}", "{\"sha\": \"6021426e799f3bc67701e8f9641ce7e165ee8c7e\", \"live\": true, \"id\": \"x4ba8c867e4f57636\"}", "{\"sha\": \"2edbae1598a2240b8f7a4f9248686d730b6c50de\", \"live\": true, \"id\": \"x8c902b11c79322f9\"}", "{\"sha\": \"e7ac8be505166948fa2e189a29bca77f4a7bd1d3\", \"live\": true, \"id\": \"x6a05bbce2327a1a7\"}", "{\"sha\": \"07767545d2de434232e5f545416719bb35d47c3b\", \"live\": true, \"id\": \"xc5f86bcd49efe887\"}", "{\"sha\": \"bb8b1d778fd4e5b6ea4f02f2c763fca596ad36bd\", \"live\": true, \"id\": \"xeb60fbe1742ad853\"}", "{\"sha\": \"4bcc7fc3dc89284b00403248a1c43d5c86562e05\", \"live\": true, \"id\": \"x4e00872c83c8ac50\"}", "{\"sha\": \"98c0e2cdbdbfc09831666176711f5b126f40fd15\", \"live\": true, \"id\": \"x98df2f8df8a2c5a0\"}", "{\"sha\": \"96fdd31d2c607cda00d72e878bb6242f2f80b8b3\", \"live\": true, \"id\": \"x6c49f2d64fb69377\"}", "{\"sha\": \"ccaf0431b2ae12fc6137f177f0a736f09bdd787b\", \"live\": true, \"id\": \"xfdcceace0bf7bc5b\"}", "{\"sha\": \"a0246f879f821a3cd7c0911295d8b48140d1acb0\", \"live\": true, \"id\": \"xcbca1a8c5f024bc8\"}", "{\"sha\": \"80a8a7a8788aac807534f2cf6a15ce4c28aded4e\", \"live\": true, \"id\": \"xc1960874334128a7\"}", "{\"sha\": \"f37b3767a22cb2be092822eaffea94a8d8964bf4\", \"live\": true, \"id\": \"x65cb62ac26ee42fc\"}", "{\"sha\": \"a1c6ae324952eb20e8fd07201580b020b0744302\", \"live\": true, \"id\": \"x8952cbc7a1b13e24\"}", "{\"sha\": \"ff48cb2e0057e3d27235357c1e1cc1a67d01b767\", \"live\": true, \"id\": \"xb8dae46611760b24\"}", "{\"sha\": \"eb5438f3f37bf8ead9b9f95f67b570b9cb0af3c5\", \"live\": true, \"id\": \"x2a289c61c576eca5\"}", "{\"sha\": \"023bea0c558f5349eb9af906c2eaf12528915f66\", \"live\": true, \"id\": \"x84e93130ceb11dcc\"}", "{\"sha\": \"1d9bd9fcccaabcef292639f89430e4bb533e7a45\", \"live\": true, \"id\": \"x15afd0431e7bcdda\"}", "{\"sha\": \"17795901983c637f0825780041a4bceb7a478b30\", \"live\": true, \"id\": \"x29bc65b9fb4624d9\"}", "{\"sha\": \"4d1f80c8b216436e830f3484e3cac86d3a2de7a7\", \"live\": true, \"id\": \"xdc65efdc86171e01\"}", "{\"sha\": \"56fdf62bcdf9929d2ab8d650d07ee9f0df73c3a4\", \"live\": true, \"id\": \"xbe53f05594522135\"}", "{\"sha\": \"0f950e01ff19b4e4d6cf227acfa213f9965bfb92\", \"live\": true, \"id\": \"x3bd9a43f2e1dcfb6\"}", "{\"sha\": \"55e3e3be77087675fba6796aab3e37984bf3557f\", \"live\": true, \"id\": \"xd205e42cde36f1af\"}", "{\"sha\": \"cd58b3af985a989ba696b6a594433b7d6022ca55\", \"live\": true, \"id\": \"x5834928709fbc032\"}", "{\"sha\": \"b8cafb9ad13f44e8d4044c81031b09165f570b02\", \"live\": true, \"id\": \"x493159c1e49c7f52\"}", "{\"sha\": \"7a2fd059330dcc52b649b3d58b78ec21ebaaf6dc\", \"live\": true, \"id\": \"xa7addba4e14d6f52\"}", "{\"sha\": \"9b0ec7eeeacdf0879760115d98a5d30290f13c35\", \"live\": true, \"id\": \"xee22828171a1ad3d\"}", "{\"sha\": \"6e308e43740a6fa6c0d9b233085dd4cee2163efa\", \"live\": true, \"id\": \"xa313332dd563d5e0\"}", "{\"sha\": \"32447865864eb5ccfed751e57ab183d1281cedfa\", \"live\": true, \"id\": \"x58c1b43454e5466c\"}", "{\"sha\": \"2bac950baa280d7e05928b2395349874451c4c2b\", \"live\": true, \"id\": \"x7a9d3387509530b8\"}", "{\"sha\": \"5a86f6bdf5c9ae493d83f674be132de5da20f082\", \"live\": true, \"id\": \"x6c038932846ee0ee\"}"], "description": "Practice solving more challenging word problems with addition and subtraction. The problems are more challenging because you have to think about a missing number in an addition or subtraction problem. Numbers used are 20 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-20-level-2", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-20--level-2", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-and-subtraction-word-problems-within-20--level-1"], "exercise_id": "addition-and-subtraction-word-problems-within-20--level-2"}, "addition-and-subtraction-word-problems-within-20--level-3": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-more-fewer-20/addition-and-subtraction-word-problems-within-20-level-3/", "id": "addition-and-subtraction-word-problems-within-20--level-3", "display_name": "Word problems with \"more\" and \"fewer\" 1", "title": "Word problems with \"more\" and \"fewer\" 1", "all_assessment_items": ["{\"sha\": \"a1d8c5418b378c27e67c9619560252760a758a6d\", \"live\": true, \"id\": \"x4e08a12b4c7b34d3\"}", "{\"sha\": \"80e49cbd5916428240f97f6fcf98a61aafe3fd6a\", \"live\": true, \"id\": \"x09428bf2d0f2646b\"}", "{\"sha\": \"0c014cd99fb46702581867c294ef0b545515aac0\", \"live\": true, \"id\": \"x19044c84a54754ac\"}", "{\"sha\": \"d6cdf93d7035bd3484412477b375b99ac5c83d3a\", \"live\": true, \"id\": \"x957e86dfd0266996\"}", "{\"sha\": \"7967bde6ea8a73e6916562cfcf014813fc0a005a\", \"live\": true, \"id\": \"xc690bcb7b7aa3739\"}", "{\"sha\": \"b60f9f4beb719f92cc539e864618a03c9cfd0c98\", \"live\": true, \"id\": \"x44dff65de6fce303\"}", "{\"sha\": \"70311ac82a818cbf3fbbbfec409a43517d993866\", \"live\": true, \"id\": \"xc5bd760967c0d9f9\"}", "{\"sha\": \"8a372e862fe22a093c5b7dcc9dc19d4a91768783\", \"live\": true, \"id\": \"x9a7ccd09e53faf81\"}", "{\"sha\": \"1afc92bf20cbab3eac6ce540bd722c504dade08c\", \"live\": true, \"id\": \"xdb247c867e650896\"}", "{\"sha\": \"28df9c93c3bd25210a65c707ad6dfedfc26bbbb8\", \"live\": true, \"id\": \"xf28847b7f85f3af5\"}", "{\"sha\": \"2017b04c4becedbcb8e657c65253ce542f0a24a9\", \"live\": true, \"id\": \"xe76f646015b14789\"}", "{\"sha\": \"5e70f35a1ca345b557b06bbadd97ac06c6ae7008\", \"live\": true, \"id\": \"x6d333a913f0d344c\"}", "{\"sha\": \"ac09ce89c5c4cbb5afd53b0c801eeabc6ed8b7ba\", \"live\": true, \"id\": \"x753f3c25c07cf182\"}", "{\"sha\": \"103ba8f74ad3f1e95f53dcb379a48c59e3b38688\", \"live\": true, \"id\": \"x698269fb31a69891\"}", "{\"sha\": \"85844341f3133e769a02c77e3972f2d2177090ab\", \"live\": true, \"id\": \"xeb76c3c07175e12a\"}", "{\"sha\": \"1a4d4c00304197d360c9e8d58d2f6a54bfe3cd0f\", \"live\": true, \"id\": \"x3523faa93d0c06e8\"}", "{\"sha\": \"aa84a069891cf39ef2dbef51343fc869122db9f6\", \"live\": true, \"id\": \"x24bb8a4530a773f8\"}", "{\"sha\": \"afd8d97528aa42bae747bd8dda7a9b74699f89c5\", \"live\": true, \"id\": \"x392cc5b1c84ea00d\"}", "{\"sha\": \"b8263f870127c00af9305a0fdfe2c52cf5272a68\", \"live\": true, \"id\": \"xcdb9fe00af061a00\"}", "{\"sha\": \"1c6abf3e684c841c6f792f8725ef72b9fdcdc328\", \"live\": true, \"id\": \"x574bbb9c2c80b30b\"}", "{\"sha\": \"92d6aab7bcc5dbd83c33b8baa152b6f8efca72f8\", \"live\": true, \"id\": \"x5dd4625e055bdf44\"}", "{\"sha\": \"b1a80d29a1bdec0683cb645ea9a23814c1297f1f\", \"live\": true, \"id\": \"x07ab8e2254749952\"}", "{\"sha\": \"f60ea50e5725ab04901bf5e69c9c06f06058140a\", \"live\": true, \"id\": \"xc431da648a44e016\"}", "{\"sha\": \"9d05b59a46d14152b4280b7f0bbd0c1fc0d7b35c\", \"live\": true, \"id\": \"x6c9fd678e2427288\"}", "{\"sha\": \"0da0d904d62cfb790bb17422734e059a8d52c52e\", \"live\": true, \"id\": \"x81cbaaff3c2564fe\"}", "{\"sha\": \"9237a58026b71b7267ccae9376ec2a8f7492f22b\", \"live\": true, \"id\": \"xd119cbd3b321149d\"}", "{\"sha\": \"1521a87573149df54b427332b2dcf8c74af2d3c2\", \"live\": true, \"id\": \"x4a5c6dbae5e6c1a4\"}", "{\"sha\": \"d21dc566d05feadecf5777094a80cbd36d188e8b\", \"live\": true, \"id\": \"xa88dd61482ded89c\"}", "{\"sha\": \"fbad39fbfb94074bbcb0d6bac10dbafb6b9991cd\", \"live\": true, \"id\": \"xa56a726d80faf7ef\"}", "{\"sha\": \"e57e4b7db37e0734c0ef98ccaea30ae290316a98\", \"live\": true, \"id\": \"xc40f72ea47814be7\"}", "{\"sha\": \"a65bf43583d9fd5c6e5b6132ed3809a6c3a9bc55\", \"live\": true, \"id\": \"x60cfd159a5f93387\"}", "{\"sha\": \"5471319e9ad164eb02464121fb1b7ad45cd6d05e\", \"live\": true, \"id\": \"x1495e5387846cbbe\"}", "{\"sha\": \"eff596574e46724967b598bf3303ccfa95c3f22f\", \"live\": true, \"id\": \"x00605a6b2f88c36f\"}", "{\"sha\": \"ef263b599e82aa92c88e5b93418d484344f846a7\", \"live\": true, \"id\": \"x4ae83b86923dbb29\"}", "{\"sha\": \"2105ba8e309d118e39189956a211f6d9e5b978dc\", \"live\": true, \"id\": \"xdef3aabaa7bd655c\"}", "{\"sha\": \"7aaa0d62a2a31c637326805492f8b965fab5775e\", \"live\": true, \"id\": \"x19e2c44236e33447\"}", "{\"sha\": \"32955c0b17aa8b344e8c2e9e25f668e43ee186ef\", \"live\": true, \"id\": \"x251062b9264d6863\"}", "{\"sha\": \"df74f36825178969a58b952c6ad6aa3259515cf6\", \"live\": true, \"id\": \"xe04445b35afaded9\"}", "{\"sha\": \"2c1f5de92afb57acd8788795471ab53d21865ae6\", \"live\": true, \"id\": \"x7662d033c0d136aa\"}", "{\"sha\": \"5cba4dec825d1846a4f24517dd143f49626399f9\", \"live\": true, \"id\": \"x5ac0407524b91c43\"}", "{\"sha\": \"4d4ed8b69237b2119f4250e0ba36cf77eb71966b\", \"live\": true, \"id\": \"x15572c6f41c31b25\"}", "{\"sha\": \"de1dbcd83e2d9d0f4019873470b001862453cee8\", \"live\": true, \"id\": \"xdd1fe414d0e30966\"}"], "description": "Practice solving word problems by finding how many more (or fewer) objects there are. Numbers used are 20 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-20-level-3", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-20--level-3", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-and-subtraction-word-problems-within-20--level-2"], "exercise_id": "addition-and-subtraction-word-problems-within-20--level-3"}, "addition-and-subtraction-word-problems-within-20--level-1": {"uses_assessment_items": true, "path": "khan/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-within-20/addition-and-subtraction-word-problems-within-20-level-1/", "id": "addition-and-subtraction-word-problems-within-20--level-1", "display_name": "Addition and subtraction word problems 1", "title": "Addition and subtraction word problems 1", "all_assessment_items": ["{\"sha\": \"1eac1741ed9b97bf414c7251eaa85360624ad19c\", \"live\": true, \"id\": \"x7574d7f26703a35e\"}", "{\"sha\": \"1311cbea86f1affc431e630591a2bde87695409b\", \"live\": true, \"id\": \"xdff91595e71607e0\"}", "{\"sha\": \"0c9a5fd0628cca946679862029ba55c1a57e8373\", \"live\": true, \"id\": \"x34933ff0a8b68eb4\"}", "{\"sha\": \"10f6e97b6ebf553adf57e722f3c693d4a4ad661f\", \"live\": true, \"id\": \"x84520b47fd14b4c1\"}", "{\"sha\": \"dcc6f765565541d8e133a431f13a25327a331743\", \"live\": true, \"id\": \"xa286f6053d2efc42\"}", "{\"sha\": \"12bf0d72b5c2bf5231d0ac6851b8a48883bc0659\", \"live\": true, \"id\": \"xc1986366119b6590\"}", "{\"sha\": \"95b16dadd8a78b4817e09f53d8ece82d5da5d08d\", \"live\": true, \"id\": \"x668d0cc7ed4f1d49\"}", "{\"sha\": \"46f476d94680cbd275d4afcdcd24a8802b032d28\", \"live\": true, \"id\": \"x08890fa7a522d066\"}", "{\"sha\": \"84b165ac4e319b67e9c08b066ecb0f7a3e6616f6\", \"live\": true, \"id\": \"xb98923d7b52f7d46\"}", "{\"sha\": \"597c3b161a9b7b1d887d663b3204e364e44fd398\", \"live\": true, \"id\": \"x62a7f681b162fec7\"}", "{\"sha\": \"e092700e329006f3649180dd677fa92c543374c3\", \"live\": true, \"id\": \"x2b9d73040cf2d447\"}", "{\"sha\": \"273088cd484aead38fe9917613a95e4f7f36edce\", \"live\": true, \"id\": \"x58aef458b7fff8f3\"}", "{\"sha\": \"a51ec945e6fd3bcc27418994f1d53725fdd103e4\", \"live\": true, \"id\": \"x540d7bdd07dcadf8\"}", "{\"sha\": \"64abcddd59b7f4554e7941bae7e6a5abbd442021\", \"live\": true, \"id\": \"xccbfd7d83a3cfbad\"}", "{\"sha\": \"d2ff26bbcb1f9e5a787950dfebbff7f641875d4b\", \"live\": true, \"id\": \"xae8291cde8e2e1ea\"}", "{\"sha\": \"7410de1b3ea4efeba4827fef7b9967dfd2c565e0\", \"live\": true, \"id\": \"x4e490c35e76d7b0a\"}", "{\"sha\": \"df103cf86ad8c9f6389a9d452f78f47b8b427c8a\", \"live\": true, \"id\": \"x6d11d5d636f52464\"}", "{\"sha\": \"ea026cb623a394d35170b4160146d2e9d2a4b277\", \"live\": true, \"id\": \"x40d20dd9834bc92c\"}", "{\"sha\": \"7db2290e94b97e0646124fef95045bcb68378280\", \"live\": true, \"id\": \"x2452dfd2198d4721\"}", "{\"sha\": \"86074ccc1cbf7f0f1dbb92c5af604e7cc9b7ffec\", \"live\": true, \"id\": \"x0d85012c0151245b\"}", "{\"sha\": \"b3589e2bca9cc2867c3a778079505cb354f93fb2\", \"live\": true, \"id\": \"xa322018e7f706303\"}", "{\"sha\": \"d33cf8170c172d99fee2c1fe1b7377a4df389683\", \"live\": true, \"id\": \"xf3fdc9000cfcdf5c\"}", "{\"sha\": \"6148bd4aaa090f40f602b4de30f9218bd7d3ab37\", \"live\": true, \"id\": \"xd44de4755ea58436\"}", "{\"sha\": \"4c7208eb25bb7c24a263ce1748972a1f4f020579\", \"live\": true, \"id\": \"x20176ecfc7682fcd\"}", "{\"sha\": \"d02156fb2df089fc0b7235de16f282f8b4e9038e\", \"live\": true, \"id\": \"x5918e44d53343d87\"}", "{\"sha\": \"4ddb961bff5dda384e0d1ddb7f9c74c09417e518\", \"live\": true, \"id\": \"x792ac59ef4ec152a\"}", "{\"sha\": \"9a7de1322330be2d97b5a35a4110e2f486a81672\", \"live\": true, \"id\": \"xa3a0590cefbab122\"}", "{\"sha\": \"58b4ef6b9efa7034a21e36891a78f582733fc04f\", \"live\": true, \"id\": \"x282ea4cdd7741745\"}", "{\"sha\": \"162177c54ced5fb2005a2e9714ee6f4884393088\", \"live\": true, \"id\": \"x469aa1040fc959c6\"}", "{\"sha\": \"3cfd698df64247e2fcf373d30c65d80fe0abba59\", \"live\": true, \"id\": \"x6609205003d31a0e\"}", "{\"sha\": \"e01a331c99f50b78993b86da4cb0b64afbafb4ee\", \"live\": true, \"id\": \"x5341cadf732628fd\"}", "{\"sha\": \"e15e2c67fccbdd0c9c180c24cb121eb7690561db\", \"live\": true, \"id\": \"xb816cf1239a198fc\"}", "{\"sha\": \"fe6bd89829819380adec086a2c626b141b670123\", \"live\": true, \"id\": \"x3d364905827f7630\"}", "{\"sha\": \"b4869c61e5d7fa659274905499e4923d5699c356\", \"live\": true, \"id\": \"xed687db72951f44d\"}", "{\"sha\": \"19be92a2239a3b9ba1dc610a7e8e84cc7da7a161\", \"live\": true, \"id\": \"x515f21eee0a051df\"}", "{\"sha\": \"79f17559b42990c1e741ef6ff5012c822b49f464\", \"live\": true, \"id\": \"x3e07b8d490c46203\"}", "{\"sha\": \"6215febb284b7545b75e9df64cb479b42d2cf6e7\", \"live\": true, \"id\": \"x1bf83cefa426ed29\"}", "{\"sha\": \"63018b185aae8990c5a46858f3edff13632112e1\", \"live\": true, \"id\": \"x27db44139858526a\"}", "{\"sha\": \"710cfddb6481f39205eac22a0060a6ba3ab458db\", \"live\": true, \"id\": \"x9a1b124ee659e4bd\"}", "{\"sha\": \"17072369440e12021645d378fca6b1214087ce88\", \"live\": true, \"id\": \"x5fce1add62801eac\"}", "{\"sha\": \"a6d0e75dbf38d013e58a56ae1941b28469c70efc\", \"live\": true, \"id\": \"x04b3d98ddc667018\"}", "{\"sha\": \"5b6c18b4c4b1f066bfd5fdacb31347265790e763\", \"live\": true, \"id\": \"x078accb9e715b8a5\"}", "{\"sha\": \"570eb0cd890a3947bf3e46ab82902fec866692d7\", \"live\": true, \"id\": \"xaf21f64788482cc2\"}", "{\"sha\": \"a52209933ca7cafe5f5a42194a253d455d0a64a4\", \"live\": true, \"id\": \"x160ad8cd1e33f425\"}", "{\"sha\": \"8579c0799dc4d1d6fdd4258a37cb42ee199a281d\", \"live\": true, \"id\": \"x82530a9cdb67da8c\"}", "{\"sha\": \"abf765a34047315fac2e302022a05669e90633fa\", \"live\": true, \"id\": \"xaaaccfa38e8242d6\"}", "{\"sha\": \"6a2a054051d39a10d4c09a042920e2de24629932\", \"live\": true, \"id\": \"x4e449fedde6607fe\"}"], "description": "Practice adding and subtracting to solve word problems. Numbers used are 20 or less.", "basepoints": 10.0, "slug": "addition-and-subtraction-word-problems-within-20-level-1", "kind": "Exercise", "name": "addition-and-subtraction-word-problems-within-20--level-1", "seconds_per_fast_problem": 4.0, "prerequisites": ["addition-word-problems-within-10", "subtraction-word-problems-within-10", "addition_2", "subtraction_2"], "exercise_id": "addition-and-subtraction-word-problems-within-20--level-1"}, "walker--darkytown-rebellion--quiz": {"uses_assessment_items": true, "path": "khan/humanities/global-culture/identity-body/identity-body-united-states/walker-darkytown-rebellion-quiz/", "id": "walker--darkytown-rebellion--quiz", "display_name": "Walker, Darkytown Rebellion (quiz)", "title": "Walker, Darkytown Rebellion (quiz)", "all_assessment_items": ["{\"sha\": \"855c0791ac2054e38167ba62cd82923a6a34cd88\", \"live\": true, \"id\": \"x483a9b5ca7d4a472\"}", "{\"sha\": \"30fb0f9582f988a1f71d26bd8055337aff347bef\", \"live\": true, \"id\": \"xe1e1a69ae5dab669\"}", "{\"sha\": \"594ba4fccf80f639a83e80b6c58797ab73f6960a\", \"live\": true, \"id\": \"x325ea004caf0a69d\"}", "{\"sha\": \"a45cd9cf9a8815791f761a82b1403c37cefa79b6\", \"live\": true, \"id\": \"x0869b1295c493753\"}"], "description": "Test your knowledge.", "basepoints": 10.0, "slug": "walker-darkytown-rebellion-quiz", "kind": "Exercise", "name": "walker--darkytown-rebellion--quiz", "seconds_per_fast_problem": 4.0, "prerequisites": [], "exercise_id": "walker--darkytown-rebellion--quiz"}, "multiplying-dependent-probabilities": {"uses_assessment_items": true, "path": "khan/math/probability/independent-dependent-probability/dependent_probability/multiplying-dependent-probabilities/", "id": "multiplying-dependent-probabilities", "display_name": "Multiplying dependent probabilities", "title": "Multiplying dependent probabilities", "all_assessment_items": ["{\"sha\": \"ffc05207db60feb6b039619133a1a1066b24bea5\", \"live\": true, \"id\": \"xfcc949d86038f669\"}", "{\"sha\": \"57b2b4d402a3d244af50ac108951fcdd2b43cc06\", \"live\": true, \"id\": \"x3458aa06f07432bb\"}", "{\"sha\": \"feb0df88c614b42596fb2287c330335e695e77fe\", \"live\": true, \"id\": \"xbf96886967b0d184\"}", "{\"sha\": \"85ef530657d7f34e96f814a4fe480867b480479e\", \"live\": true, \"id\": \"x49913ff7f3650962\"}", "{\"sha\": \"59b09f0f7b2fc4e3e4e1f64bcb5991ad9e8a6e8d\", \"live\": true, \"id\": \"xfcb4b58dfab7ad60\"}", "{\"sha\": \"123ae26aff55cdb01b75401f94d8767faf331eca\", \"live\": true, \"id\": \"x9d292266bd410d08\"}", "{\"sha\": \"7133935ca6884421c16df5482e7c471642429fc3\", \"live\": true, \"id\": \"xa0983914fb96ab8a\"}", "{\"sha\": \"79cc425780e69daca3cf1223d1b12bd58511920f\", \"live\": true, \"id\": \"xa219296613244608\"}", "{\"sha\": \"ae09c0830655aff5a74957d1232946a0119a4213\", \"live\": true, \"id\": \"x08258963893f7152\"}", "{\"sha\": \"8ed45fd3b54e7fd1b9c3e0b8483e3af683feeb4c\", \"live\": true, \"id\": \"xcdf8affa6dde0f42\"}", "{\"sha\": \"2e609bd34ebf50b3cd49c6b4c613f5ddd798760c\", \"live\": true, \"id\": \"x73b4ea9fc14ec01d\"}", "{\"sha\": \"30126fa9702e72acb6763799abc84cefe151db8f\", \"live\": true, \"id\": \"x3ef331b0ffba34fe\"}", "{\"sha\": \"d793d1dd31e674bc47c5a4b6985af510735cb3b1\", \"live\": true, \"id\": \"x09500036286b84ee\"}", "{\"sha\": \"1f30682fd4ff677bbcb0c07dfdbd934b188c973a\", \"live\": true, \"id\": \"xc45ac2b0b8eb4c0d\"}", "{\"sha\": \"b45e8934c47cd63668efe156e7a1f6ef5dc39220\", \"live\": true, \"id\": \"x9eca730aa7cdb854\"}", "{\"sha\": \"f42226ebb62ff44fe2e484d9974b2c677fc856f4\", \"live\": true, \"id\": \"xb27014a4ef92f0d3\"}", "{\"sha\": \"5ec275b22275038e46bd9efabd008dcff15646e9\", \"live\": true, \"id\": \"x7829dd4633ff6d58\"}", "{\"sha\": \"8af6c192bceab59217f455d2a75e89413857eeab\", \"live\": true, \"id\": \"xb070c4ff22dc6859\"}", "{\"sha\": \"63da0d8704155d06670c9ebd360989266526e8b0\", \"live\": true, \"id\": \"x2958378d0854797c\"}", "{\"sha\": \"ea9895b0152a6bca6887bec40cb9a3743ce9f0fc\", \"live\": true, \"id\": \"x1c29240d3d4d9e18\"}", "{\"sha\": \"3a1cb02ddd9da7b2763d4e392288aca49736349d\", \"live\": true, \"id\": \"x82d027224b774e90\"}", "{\"sha\": \"5c22a729fdb1b7918bb2e7c959452ff3fdfba30d\", \"live\": true, \"id\": \"x379d9ef605afdc8f\"}", "{\"sha\": \"a8581269086107be4c0580c39eb58c977d5d0856\", \"live\": true, \"id\": \"xf1bbc74cdc4d5308\"}", "{\"sha\": \"8dabd6e776cef37fc72b5f58a3c2ac1886c83d3f\", \"live\": true, \"id\": \"x8bccfc48ebca90ea\"}", "{\"sha\": \"6f3e40eeecc6babf90dfb1fa45fdc2b8d7d3283c\", \"live\": true, \"id\": \"xb37037ec0145fe3d\"}", "{\"sha\": \"86f66722c87d68f9c4b22c261039c9e12b978486\", \"live\": true, \"id\": \"xbcdd0f11585013ce\"}", "{\"sha\": \"4011d15130a384ce3a27ac3160fcb09432baa374\", \"live\": true, \"id\": \"x248ccab39c1bec33\"}", "{\"sha\": \"475557486e19ed65b74f326fd02f0095ef2cdf90\", \"live\": true, \"id\": \"x961d3c6352e97b45\"}", "{\"sha\": \"524779dbf533dd2345aedaab17a4b8a373f97b26\", \"live\": true, \"id\": \"x44d039874c2b7505\"}", "{\"sha\": \"1f5e2a526ca6e5bc2d38e4249a0685a7058cc3c2\", \"live\": true, \"id\": \"xd4b2748b3bb43547\"}"], "description": "", "basepoints": 10.0, "slug": "multiplying-dependent-probabilities", "kind": "Exercise", "name": "multiplying-dependent-probabilities", "seconds_per_fast_problem": 4.0, "prerequisites": ["identifying-dependent-and-independent-events", "dependent_probability"], "exercise_id": "multiplying-dependent-probabilities"}, "modular-multiplication": {"uses_assessment_items": true, "path": "khan/computing/computer-science/cryptography/modarithmetic/modular-multiplication/", "id": "modular-multiplication", "display_name": "Modular multiplication", "title": "Modular multiplication", "all_assessment_items": ["{\"sha\": \"da8f751b2b7107d9fbabbfb9afaa0c3041d36d11\", \"live\": true, \"id\": \"x5ae9497035414aed\"}", "{\"sha\": \"6babe32e608ddc58158911f941d209035935fc88\", \"live\": true, \"id\": \"xc26cda3fbc3a91d5\"}", "{\"sha\": \"3201702dc38dfccda23c3bb9557d1a4a018f6176\", \"live\": true, \"id\": \"x155a549285b4e577\"}", "{\"sha\": \"860aa22757ee50e7d4f55cdcf33d6229ec118e59\", \"live\": true, \"id\": \"x5af1aa6c49829471\"}", "{\"sha\": \"8ec33db58e2f51a97ac9c2